Merge "Enable kotlin explicitApi for android projects" into androidx-main
diff --git a/annotation/annotation-experimental-lint/integration-tests/lint-baseline.xml b/annotation/annotation-experimental-lint/integration-tests/lint-baseline.xml
index 1aea458..efad4c2 100644
--- a/annotation/annotation-experimental-lint/integration-tests/lint-baseline.xml
+++ b/annotation/annotation-experimental-lint/integration-tests/lint-baseline.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<issues format="6" by="lint 8.5.0-alpha06" type="baseline" client="gradle" dependencies="false" name="AGP (8.5.0-alpha06)" variant="all" version="8.5.0-alpha06">
+<issues format="6" by="lint 8.6.0-alpha03" type="baseline" client="gradle" dependencies="false" name="AGP (8.6.0-alpha03)" variant="all" version="8.6.0-alpha03">
 
     <issue
         id="ExperimentalAnnotationRetention"
@@ -40,7 +40,7 @@
     <issue
         id="ExperimentalPropertyAnnotation"
         message="This property does not have all required annotations to correctly mark it as experimental."
-        errorLine1="    @ExperimentalKotlinAnnotation"
+        errorLine1="    @ExperimentalKotlinAnnotation var field: Int = -1"
         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
         <location
             file="src/main/java/sample/kotlin/AnnotatedKotlinMembers.kt"/>
@@ -49,7 +49,7 @@
     <issue
         id="ExperimentalPropertyAnnotation"
         message="This property does not have all required annotations to correctly mark it as experimental."
-        errorLine1="    @ExperimentalKotlinAnnotation"
+        errorLine1="    @ExperimentalKotlinAnnotation var field: Int = -1"
         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
         <location
             file="src/main/java/sample/optin/AnnotatedKotlinMembers.kt"/>
@@ -58,7 +58,7 @@
     <issue
         id="ExperimentalPropertyAnnotation"
         message="This property does not have all required annotations to correctly mark it as experimental."
-        errorLine1="    @set:ExperimentalKotlinAnnotation"
+        errorLine1="    @set:ExperimentalKotlinAnnotation var fieldWithSetMarker: Int = -1"
         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
         <location
             file="src/main/java/sample/kotlin/AnnotatedKotlinMembers.kt"/>
@@ -67,7 +67,7 @@
     <issue
         id="ExperimentalPropertyAnnotation"
         message="This property does not have all required annotations to correctly mark it as experimental."
-        errorLine1="    @set:ExperimentalKotlinAnnotation"
+        errorLine1="    @set:ExperimentalKotlinAnnotation var fieldWithSetMarker: Int = -1"
         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
         <location
             file="src/main/java/sample/optin/AnnotatedKotlinMembers.kt"/>
@@ -76,8 +76,8 @@
     <issue
         id="ExperimentalPropertyAnnotation"
         message="This property does not have all required annotations to correctly mark it as experimental."
-        errorLine1="        @ExperimentalKotlinAnnotation"
-        errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+        errorLine1="        @JvmStatic @ExperimentalKotlinAnnotation val fieldStatic: Int = -1"
+        errorLine2="                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
         <location
             file="src/main/java/sample/kotlin/AnnotatedKotlinMembers.kt"/>
     </issue>
@@ -85,8 +85,8 @@
     <issue
         id="ExperimentalPropertyAnnotation"
         message="This property does not have all required annotations to correctly mark it as experimental."
-        errorLine1="        @ExperimentalKotlinAnnotation"
-        errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+        errorLine1="        @JvmStatic @ExperimentalKotlinAnnotation val fieldStatic: Int = -1"
+        errorLine2="                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
         <location
             file="src/main/java/sample/optin/AnnotatedKotlinMembers.kt"/>
     </issue>
@@ -382,6 +382,24 @@
     <issue
         id="UnsafeOptInUsageError"
         message="This declaration is opt-in and its usage should be marked with `@sample.optin.ExperimentalJavaAnnotation` or `@OptIn(markerClass = sample.optin.ExperimentalJavaAnnotation.class)`"
+        errorLine1="        return param;"
+        errorLine2="               ~~~~~">
+        <location
+            file="src/main/java/sample/optin/RegressionTestJava313686921.java"/>
+    </issue>
+
+    <issue
+        id="UnsafeOptInUsageError"
+        message="This declaration is opt-in and its usage should be marked with `@sample.optin.ExperimentalJavaAnnotation` or `@OptIn(markerClass = sample.optin.ExperimentalJavaAnnotation.class)`"
+        errorLine1="        unsafeAnnotatedAnnotationUsageOnMethod(&quot;param&quot;);"
+        errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
+        <location
+            file="src/main/java/sample/optin/RegressionTestJava313686921.java"/>
+    </issue>
+
+    <issue
+        id="UnsafeOptInUsageError"
+        message="This declaration is opt-in and its usage should be marked with `@sample.optin.ExperimentalJavaAnnotation` or `@OptIn(markerClass = sample.optin.ExperimentalJavaAnnotation.class)`"
         errorLine1="        player.accessor"
         errorLine2="               ~~~~~~~~">
         <location
diff --git a/annotation/annotation-experimental-lint/integration-tests/src/main/java/sample/optin/RegressionTestJava313686921.java b/annotation/annotation-experimental-lint/integration-tests/src/main/java/sample/optin/RegressionTestJava313686921.java
new file mode 100644
index 0000000..c944de7
--- /dev/null
+++ b/annotation/annotation-experimental-lint/integration-tests/src/main/java/sample/optin/RegressionTestJava313686921.java
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package sample.optin;
+
+import android.annotation.SuppressLint;
+
+/** @noinspection unused*/
+@SuppressLint("UnknownNullness")
+public class RegressionTestJava313686921 {
+    @ExperimentalJavaAnnotation
+    public @interface AnnotatedJavaAnnotation {}
+
+    /**
+     * Unsafe usage due to the experimental annotation on the annotation
+     */
+    public Object unsafeAnnotatedAnnotationUsageOnParam(@AnnotatedJavaAnnotation Object param) {
+        return param;
+    }
+
+    /**
+     * Unsafe usage due to the experimental annotation on the annotation
+     */
+    @AnnotatedJavaAnnotation
+    public Object unsafeAnnotatedAnnotationUsageOnMethod(Object param) {
+        return param;
+    }
+
+    void usage() {
+        unsafeAnnotatedAnnotationUsageOnMethod("param");
+    }
+
+    @AnnotatedJavaAnnotation
+    static class UnsafeAnnotatedAnnotationUsageOnClass {}
+}
diff --git a/annotation/annotation-experimental-lint/integration-tests/src/main/java/sample/optin/RegressionTestKotlin313686921.kt b/annotation/annotation-experimental-lint/integration-tests/src/main/java/sample/optin/RegressionTestKotlin313686921.kt
new file mode 100644
index 0000000..ddb0abf
--- /dev/null
+++ b/annotation/annotation-experimental-lint/integration-tests/src/main/java/sample/optin/RegressionTestKotlin313686921.kt
@@ -0,0 +1,23 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package sample.optin
+
+@ExperimentalJavaAnnotation annotation class AnnotatedKotlinAnnotation
+
+fun unsafeAnnotatedAnnotationUsage(@AnnotatedKotlinAnnotation param: Any): Any {
+    return param
+}
diff --git a/annotation/annotation-experimental-lint/src/main/java/androidx/annotation/experimental/lint/ExperimentalDetector.kt b/annotation/annotation-experimental-lint/src/main/java/androidx/annotation/experimental/lint/ExperimentalDetector.kt
index 6dd39ef..a3e960e 100644
--- a/annotation/annotation-experimental-lint/src/main/java/androidx/annotation/experimental/lint/ExperimentalDetector.kt
+++ b/annotation/annotation-experimental-lint/src/main/java/androidx/annotation/experimental/lint/ExperimentalDetector.kt
@@ -520,7 +520,11 @@
         }
 
         // Check whether the usage actually considered experimental.
-        val decl = referenced.toUElement() ?: usage.getReferencedElement() ?: return
+        val decl =
+            referenced as? UElement
+                ?: referenced.toUElement()
+                ?: usage.getReferencedElement()
+                ?: return
         if (!decl.isExperimentalityRequired(context, annotationFqName)) {
             return
         }
@@ -572,7 +576,7 @@
         annotationFqName: String,
     ): Boolean {
         // Is the element itself experimental?
-        if (isDeclarationAnnotatedWith(annotationFqName)) {
+        if (isDeclarationAnnotatedWith(context.evaluator, annotationFqName)) {
             return true
         }
 
@@ -592,7 +596,10 @@
         // which is landed on the backing field if any
         if (sourcePsi is KtProperty && this is UMethod) {
             val backingField = (uastParent as? UClass)?.fields?.find { it.sourcePsi == sourcePsi }
-            if (backingField?.isDeclarationAnnotatedWith(annotationFqName) == true) {
+            if (
+                backingField?.isDeclarationAnnotatedWith(context.evaluator, annotationFqName) ==
+                    true
+            ) {
                 return true
             }
         }
@@ -617,7 +624,7 @@
         return config.getOption(ISSUE_ERROR, "opt-in")?.contains(annotationFqName) == true ||
             config.getOption(ISSUE_WARNING, "opt-in")?.contains(annotationFqName) == true ||
             anyParentMatches({ element ->
-                element.isDeclarationAnnotatedWith(annotationFqName) ||
+                element.isDeclarationAnnotatedWith(context.evaluator, annotationFqName) ||
                     element.isDeclarationAnnotatedWithOptInOf(annotationFqName, optInFqNames)
             }) ||
             context.evaluator.getPackage(this)?.let { element ->
@@ -662,8 +669,8 @@
         val elementLabel =
             when (element) {
                 is UMethod -> "'${element.name}'"
-                is UClass -> "containing class '${element.name}'"
                 is UAnonymousClass -> "containing anonymous class"
+                is UClass -> "containing class '${element.name}'"
                 else -> throw IllegalArgumentException("Unsupported element type")
             }
 
@@ -842,11 +849,11 @@
             } // or referenced
         is USimpleNameReferenceExpression ->
             resolve().let { field -> field as? PsiField ?: field as? PsiMethod } // or referenced
+        is UEnumConstant -> resolveMethod() // or referenced
         is UCallExpression ->
             resolve() ?: classReference?.resolve() // referenced is empty for constructor
         is UCallableReferenceExpression -> resolve() as? PsiMethod // or referenced
         is UAnnotation -> null
-        is UEnumConstant -> resolveMethod() // or referenced
         is UArrayAccessExpression -> (receiver as? UReferenceExpression)?.resolve() // or referenced
         is UVariable -> this
         else -> null
@@ -893,10 +900,25 @@
         }
     }
 
-/** Returns whether the element declaration is annotated with the specified annotation. */
+/**
+ * Returns whether the element declaration is annotated with the specified annotation or annotated
+ * with annotation that is annotated with the specified annotation
+ */
 private fun UElement.isDeclarationAnnotatedWith(
+    evaluator: JavaEvaluator,
     annotationFqName: String,
-) = (this as? UAnnotated)?.findAnnotation(annotationFqName) != null
+): Boolean {
+    return (this as? UAnnotated)?.uAnnotations?.firstOrNull { uAnnotation ->
+        // Directly annotated
+        if (uAnnotation.qualifiedName == annotationFqName) return@firstOrNull true
+
+        // Annotated with an annotation that is annotated with the specified annotation
+        val cls = uAnnotation.resolve()
+        if (cls == null || !cls.isAnnotationType) return@firstOrNull false
+        val metaAnnotations = evaluator.getAllAnnotations(cls, inHierarchy = false)
+        metaAnnotations.find { it.qualifiedName == annotationFqName } != null
+    } != null
+}
 
 /**
  * Returns whether the element declaration is annotated with any of the specified opt-in annotations
diff --git a/annotation/annotation-experimental-lint/src/test/kotlin/androidx/annotation/experimental/lint/RequiresOptInDetectorTest.kt b/annotation/annotation-experimental-lint/src/test/kotlin/androidx/annotation/experimental/lint/RequiresOptInDetectorTest.kt
index d86c0af..0d98302 100644
--- a/annotation/annotation-experimental-lint/src/test/kotlin/androidx/annotation/experimental/lint/RequiresOptInDetectorTest.kt
+++ b/annotation/annotation-experimental-lint/src/test/kotlin/androidx/annotation/experimental/lint/RequiresOptInDetectorTest.kt
@@ -582,6 +582,61 @@
         check(*input).expect(expected)
     }
 
+    /**
+     * Regression test for b/313686921 where warnings were not shown for usages of
+     * experimentally-annotated annotations.
+     */
+    @Test
+    fun regressionTestJava313686921() {
+        val input =
+            arrayOf(
+                javaSample("sample.optin.ExperimentalJavaAnnotation"),
+                javaSample("sample.optin.RegressionTestJava313686921")
+            )
+
+        /* ktlint-disable max-line-length */
+        val expected =
+            """
+src/sample/optin/RegressionTestJava313686921.java:31: Error: This declaration is opt-in and its usage should be marked with @sample.optin.ExperimentalJavaAnnotation or @OptIn(markerClass = sample.optin.ExperimentalJavaAnnotation.class) [UnsafeOptInUsageError]
+        return param;
+               ~~~~~
+src/sample/optin/RegressionTestJava313686921.java:43: Error: This declaration is opt-in and its usage should be marked with @sample.optin.ExperimentalJavaAnnotation or @OptIn(markerClass = sample.optin.ExperimentalJavaAnnotation.class) [UnsafeOptInUsageError]
+        unsafeAnnotatedAnnotationUsageOnMethod("param");
+        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+2 errors, 0 warnings
+        """
+                .trimIndent()
+        /* ktlint-enable max-line-length */
+
+        check(*input).expect(expected)
+    }
+
+    /**
+     * Regression test for b/313686921 where warnings were not shown for usages of
+     * experimentally-annotated annotations.
+     */
+    @Test
+    fun regressionTestKotlin313686921() {
+        val input =
+            arrayOf(
+                javaSample("sample.optin.ExperimentalJavaAnnotation"),
+                ktSample("sample.optin.RegressionTestKotlin313686921")
+            )
+
+        /* ktlint-disable max-line-length */
+        val expected =
+            """
+src/sample/optin/AnnotatedKotlinAnnotation.kt:22: Error: This declaration is opt-in and its usage should be marked with @sample.optin.ExperimentalJavaAnnotation or @OptIn(markerClass = sample.optin.ExperimentalJavaAnnotation.class) [UnsafeOptInUsageError]
+    return param
+           ~~~~~
+1 errors, 0 warnings
+        """
+                .trimIndent()
+        /* ktlint-enable max-line-length */
+
+        check(*input).expect(expected)
+    }
+
     /* ktlint-disable max-line-length */
     companion object {
         /**
diff --git a/benchmark/baseline-profile-gradle-plugin/src/main/kotlin/androidx/baselineprofile/gradle/producer/BaselineProfileProducerPlugin.kt b/benchmark/baseline-profile-gradle-plugin/src/main/kotlin/androidx/baselineprofile/gradle/producer/BaselineProfileProducerPlugin.kt
index 20223bc..9e0f2ba 100644
--- a/benchmark/baseline-profile-gradle-plugin/src/main/kotlin/androidx/baselineprofile/gradle/producer/BaselineProfileProducerPlugin.kt
+++ b/benchmark/baseline-profile-gradle-plugin/src/main/kotlin/androidx/baselineprofile/gradle/producer/BaselineProfileProducerPlugin.kt
@@ -228,9 +228,11 @@
 
         // Makes sure that only the non obfuscated build type variant selected is enabled
         val buildType = variantBuilder.buildType
+
+        val isBaselineProfileBuildType = buildType in baselineProfileExtendedToOriginalTypeMap.keys
+        val isBenchmarkBuildType = buildType in benchmarkExtendedToOriginalTypeMap.keys
         variantBuilder.enable =
-            buildType in baselineProfileExtendedToOriginalTypeMap.keys ||
-                buildType in benchmarkExtendedToOriginalTypeMap.keys
+            variantBuilder.enable && (isBaselineProfileBuildType || isBenchmarkBuildType)
     }
 
     override fun onTestVariants(variant: TestVariant) {
diff --git a/benchmark/benchmark-common/src/androidTest/assets/macro-legacy-trivialscrollbench.json b/benchmark/benchmark-common/src/androidTest/assets/macro-legacy-trivialscrollbench.json
index b393060..9f828f4 100644
--- a/benchmark/benchmark-common/src/androidTest/assets/macro-legacy-trivialscrollbench.json
+++ b/benchmark/benchmark-common/src/androidTest/assets/macro-legacy-trivialscrollbench.json
@@ -18,7 +18,8 @@
         "memTotalBytes": 1903734784,
         "sustainedPerformanceModeEnabled": false,
         "osCodenameAbbreviated": "V",
-        "artMainlineVersion": 350090000
+        "artMainlineVersion": 350090000,
+        "compilationMode": "verify"
     },
     "benchmarks": [
         {
diff --git a/benchmark/benchmark-common/src/androidTest/assets/micro-legacy-trivialbench.json b/benchmark/benchmark-common/src/androidTest/assets/micro-legacy-trivialbench.json
index 12905f8..db96d0f 100644
--- a/benchmark/benchmark-common/src/androidTest/assets/micro-legacy-trivialbench.json
+++ b/benchmark/benchmark-common/src/androidTest/assets/micro-legacy-trivialbench.json
@@ -18,7 +18,8 @@
         "memTotalBytes": 1903734784,
         "sustainedPerformanceModeEnabled": false,
         "osCodenameAbbreviated": "V",
-        "artMainlineVersion": 350090000
+        "artMainlineVersion": 350090000,
+        "compilationMode": "verify"
     },
     "benchmarks": [
         {
diff --git a/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ResultWriterTest.kt b/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ResultWriterTest.kt
index 35981f6..3b38d13 100644
--- a/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ResultWriterTest.kt
+++ b/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ResultWriterTest.kt
@@ -109,7 +109,8 @@
                     "memTotalBytes": ${MemInfo.memTotalBytes},
                     "sustainedPerformanceModeEnabled": $sustainedPerformanceModeInUse,
                     "artMainlineVersion": ${context.artMainlineVersion},
-                    "osCodenameAbbreviated": "${context.osCodenameAbbreviated}"
+                    "osCodenameAbbreviated": "${context.osCodenameAbbreviated}",
+                    "compilationMode": "${PackageInfo.compilationMode}"
                 },
                 "benchmarks": [
                     {
diff --git a/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ShellTest.kt b/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ShellTest.kt
index bc8d142..2e17242 100644
--- a/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ShellTest.kt
+++ b/benchmark/benchmark-common/src/androidTest/java/androidx/benchmark/ShellTest.kt
@@ -419,6 +419,26 @@
         }
     }
 
+    @Test
+    fun getCompilationMode() {
+        val status = Shell.getCompilationMode(Packages.TEST)
+        assertTrue(
+            actual =
+                status in
+                    listOf(
+                        // Api 21-23
+                        "speed",
+                        // Api 24-25
+                        "interpret-only",
+                        // Api 26-27
+                        "quicken",
+                        // Api 28 and above
+                        "run-from-apk"
+                    ),
+            message = "Unexpected status value: $status",
+        )
+    }
+
     @RequiresApi(21)
     private fun pidof(packageName: String): Int? {
         return Shell.getPidsForProcess(packageName).firstOrNull()
diff --git a/benchmark/benchmark-common/src/main/java/androidx/benchmark/PackageInfo.kt b/benchmark/benchmark-common/src/main/java/androidx/benchmark/PackageInfo.kt
new file mode 100644
index 0000000..a6c2179
--- /dev/null
+++ b/benchmark/benchmark-common/src/main/java/androidx/benchmark/PackageInfo.kt
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package androidx.benchmark
+
+import androidx.test.platform.app.InstrumentationRegistry
+
+internal object PackageInfo {
+
+    val targetPackage: String =
+        InstrumentationRegistry.getInstrumentation().targetContext.packageName
+
+    val compilationMode: String by lazy { Shell.getCompilationMode(targetPackage) }
+}
diff --git a/benchmark/benchmark-common/src/main/java/androidx/benchmark/Shell.kt b/benchmark/benchmark-common/src/main/java/androidx/benchmark/Shell.kt
index 7e79866..a288c9e 100644
--- a/benchmark/benchmark-common/src/main/java/androidx/benchmark/Shell.kt
+++ b/benchmark/benchmark-common/src/main/java/androidx/benchmark/Shell.kt
@@ -39,6 +39,9 @@
  */
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 object Shell {
+
+    private const val COMPILATION_PROFILE_UNKNOWN = "unknown"
+
     /**
      * Returns true if the line from ps output contains the given process/package name.
      *
@@ -109,7 +112,6 @@
      * Note: Does not check for stderr, as this method is used during ShellImpl init, so stderr not
      * yet available
      */
-    @RequiresApi(21)
     internal fun getChecksum(path: String): String {
         val sum =
             if (Build.VERSION.SDK_INT >= 23) {
@@ -133,7 +135,6 @@
     }
 
     /** Waits for the file size of the [path] to be table for at least [stableIterations]. */
-    @RequiresApi(21)
     @SuppressLint("BanThreadSleep") // Need polling to wait for file content to be flushed
     fun waitForFileFlush(
         path: String,
@@ -180,7 +181,6 @@
     }
 
     /** Gets the file size for a given path. */
-    @RequiresApi(21)
     internal fun getFileSizeUnsafe(path: String): Long {
         // API 23 comes with the helpful stat command
         val fileSize =
@@ -203,7 +203,6 @@
      *
      * @return `null` when the file [path] cannot be found.
      */
-    @RequiresApi(21)
     private fun getFileSizeLsUnsafe(path: String): String? {
         val result = ShellImpl.executeCommandUnsafe("ls -l $path")
         return if (result.isBlank()) null else result.split(Regex("\\s+"))[3]
@@ -215,7 +214,6 @@
      * Note: this operation does checksum validation of dst, since it's used during setup of the
      * shell script used to capture stderr, so stderr isn't available.
      */
-    @RequiresApi(21)
     private fun moveToTmpAndMakeExecutable(src: String, dst: String) {
         ShellImpl.executeCommandUnsafe("cp $src $dst")
         if (Build.VERSION.SDK_INT >= 23) {
@@ -247,7 +245,6 @@
      * Note: this operation does not validate command success, since it's used during setup of shell
      * scripting code used to parse stderr. This means callers should validate.
      */
-    @RequiresApi(21)
     fun createRunnableExecutable(name: String, inputStream: InputStream): String {
         // dirUsableByAppAndShell is writable, but we can't execute there (as of Q),
         // so we copy to /data/local/tmp
@@ -281,12 +278,10 @@
      * Returns true if the shell session is rooted or su is usable, and thus root commands can be
      * run (e.g. atrace commands with root-only tags)
      */
-    @RequiresApi(21)
     fun isSessionRooted(): Boolean {
         return ShellImpl.isSessionRooted || ShellImpl.isSuAvailable
     }
 
-    @RequiresApi(21)
     fun getprop(propertyName: String): String {
         return executeScriptCaptureStdout("getprop $propertyName").trim()
     }
@@ -307,7 +302,6 @@
      * @param stdin String to pass in as stdin to first command in script
      * @return Stdout string
      */
-    @RequiresApi(21)
     fun executeScriptSilent(script: String, stdin: String? = null) {
         val output = executeScriptCaptureStdoutStderr(script, stdin)
         check(output.isBlank()) { "Expected no stdout/stderr from $script, saw $output" }
@@ -329,7 +323,6 @@
      * @param stdin String to pass in as stdin to first command in script
      * @return Stdout string
      */
-    @RequiresApi(21)
     @CheckResult
     fun executeScriptCaptureStdout(script: String, stdin: String? = null): String {
         val output = executeScriptCaptureStdoutStderr(script, stdin)
@@ -337,6 +330,62 @@
         return output.stdout
     }
 
+    @CheckResult
+    fun getCompilationMode(packageName: String): String {
+        if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.M) return "speed"
+        val dump = executeScriptCaptureStdout("cmd package dump $packageName").trim()
+        return when (Build.VERSION.SDK_INT) {
+            in 24..27 -> {
+
+                // Example output (shortened for lint):
+                // Dexopt state:
+                //  [com.android.settings]
+                //    path: /system/priv-app/Settings/Settings.apk
+                //      arm64: .../Settings.odex[status=kOatUpToDate, compilation_filter=quicken]
+                //
+                // We want to extract compilation_filter=`quicken`
+
+                val keyValues =
+                    "Dexopt state:.*status:[^\\[]+\\[([^\\]]+)\\]"
+                        .toRegex(RegexOption.DOT_MATCHES_ALL)
+                        .find(dump)
+                        ?.groups
+                        ?.get(1)
+                        ?.value ?: COMPILATION_PROFILE_UNKNOWN
+                val dexOptStatus =
+                    keyValues
+                        .replace("\n", "")
+                        .replace(" ", "")
+                        .split(",")
+                        .mapNotNull {
+                            val kv = it.split("=")
+                            if (kv.size != 2) return@mapNotNull null
+                            kv[0] to kv[1]
+                        }
+                        .toMap()
+                dexOptStatus["compilation_filter"] ?: COMPILATION_PROFILE_UNKNOWN
+            }
+            else -> {
+
+                // Example output (shortened for lint):
+                // Dexopt state:
+                //  [com.android.settings]
+                //    path: .../SettingsGoogle.apk
+                //      arm64: [status=verify] [reason=vdex] [primary-abi]
+                //        [location is .../SettingsGoogle.vdex]
+                //
+                // We want to extract status=`verify`
+
+                "Dexopt state:.*\\[status=([^\\]]+)\\]"
+                    .toRegex(RegexOption.DOT_MATCHES_ALL)
+                    .find(dump)
+                    ?.groups
+                    ?.get(1)
+                    ?.value ?: COMPILATION_PROFILE_UNKNOWN
+            }
+        }
+    }
+
     /**
      * Returns one apk (or more, if multi-apk/bundle) path for the given package
      *
@@ -354,7 +403,6 @@
      * java -jar bundletool.jar install-apks --apks=out.apks
      * ```
      */
-    @RequiresApi(21)
     @CheckResult
     fun pmPath(packageName: String): List<String> {
         return executeScriptCaptureStdout("pm path $packageName").split("\n").mapNotNull {
@@ -395,7 +443,6 @@
      * @param stdin String to pass in as stdin to first command in script
      * @return Output object containing stdout and stderr of full script, and stderr of last command
      */
-    @RequiresApi(21)
     @CheckResult
     fun executeScriptCaptureStdoutStderr(script: String, stdin: String? = null): Output {
         return trace("executeScript $script".take(127)) {
@@ -409,7 +456,6 @@
      *
      * Only use this function if you do not care about failure / errors.
      */
-    @RequiresApi(21)
     @CheckResult
     fun executeCommandCaptureStdoutOnly(command: String): String {
         return ShellImpl.executeCommandUnsafe(command)
@@ -423,17 +469,14 @@
      * @param stdin String to pass in as stdin to first command in script
      * @return ShellScript that can be started.
      */
-    @RequiresApi(21)
     fun createShellScript(script: String, stdin: String? = null): ShellScript {
         return ShellImpl.createShellScript(script = script, stdin = stdin)
     }
 
-    @RequiresApi(21)
     fun isPackageAlive(packageName: String): Boolean {
         return getPidsForProcess(packageName).isNotEmpty()
     }
 
-    @RequiresApi(21)
     fun getPidsForProcess(processName: String): List<Int> {
         if (Build.VERSION.SDK_INT >= 23) {
             return pgrepLF(pattern = processName).mapNotNull { (pid, fullProcessName) ->
@@ -484,7 +527,6 @@
             }
     }
 
-    @RequiresApi(21)
     fun getRunningProcessesForPackage(packageName: String): List<String> {
         require(!packageName.contains(":")) { "Package $packageName must not contain ':'" }
 
@@ -521,7 +563,6 @@
      *
      * Both must match in order to return true.
      */
-    @RequiresApi(21)
     fun isProcessAlive(pid: Int, processName: String): Boolean {
         // unsafe, since this behavior is well tested, and performance here is important
         // See [ShellBehaviorTest#ps]
@@ -530,12 +571,10 @@
         }
     }
 
-    @RequiresApi(21)
     data class ProcessPid(val processName: String, val pid: Int) {
         fun isAlive() = isProcessAlive(pid, processName)
     }
 
-    @RequiresApi(21)
     fun terminateProcessesAndWait(
         waitPollPeriodMs: Long,
         waitPollMaxCount: Int,
@@ -552,7 +591,6 @@
         )
     }
 
-    @RequiresApi(21)
     fun terminateProcessesAndWait(
         waitPollPeriodMs: Long,
         waitPollMaxCount: Int,
@@ -579,12 +617,10 @@
         throw IllegalStateException("Failed to stop $runningProcesses")
     }
 
-    @RequiresApi(21)
     fun pathExists(absoluteFilePath: String): Boolean {
         return ShellImpl.executeCommandUnsafe("ls $absoluteFilePath").trim() == absoluteFilePath
     }
 
-    @RequiresApi(21)
     fun amBroadcast(broadcastArguments: String): Int? {
         // unsafe here for perf, since we validate the return value so we don't need to check stderr
         return ShellImpl.executeCommandUnsafe("am broadcast $broadcastArguments")
@@ -593,7 +629,6 @@
             .toIntOrNull()
     }
 
-    @RequiresApi(21)
     fun disablePackages(appPackages: List<String>) {
         // Additionally use `am force-stop` to force JobScheduler to drop all jobs.
         val command =
@@ -607,7 +642,6 @@
         executeScriptCaptureStdoutStderr(command)
     }
 
-    @RequiresApi(21)
     fun enablePackages(appPackages: List<String>) {
         val command =
             appPackages.joinToString(separator = "\n") { appPackage -> "pm enable $appPackage" }
@@ -626,7 +660,6 @@
         ShellImpl.executeCommandUnsafe("cmd package bg-dexopt-job --enable")
     }
 
-    @RequiresApi(21)
     fun isSELinuxEnforced(): Boolean {
         return when (val value = executeScriptCaptureStdout("getenforce").trim()) {
             "Permissive" -> false
@@ -637,7 +670,6 @@
     }
 }
 
-@RequiresApi(Build.VERSION_CODES.LOLLIPOP)
 private object ShellImpl {
     init {
         require(Looper.getMainLooper().thread != Thread.currentThread()) {
@@ -656,7 +688,9 @@
 
     init {
         // b/268107648: UiAutomation always runs on user 0 so shell cannot access other user data.
-        if (UserInfo.currentUserId > 0) {
+        // This behavior was introduced with FUSE on api 30. Before then, shell could access any
+        // user data.
+        if (UserInfo.currentUserId > 0 && Build.VERSION.SDK_INT >= 30) {
             throw IllegalStateException(
                 "Benchmark and Baseline Profile generation are not currently " +
                     "supported on AAOS and multiuser environment when a secondary user is " +
@@ -735,7 +769,6 @@
 }
 
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-@RequiresApi(Build.VERSION_CODES.LOLLIPOP)
 class ShellScript
 internal constructor(
     private val stdinFile: File?,
@@ -825,7 +858,6 @@
 }
 
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-@RequiresApi(Build.VERSION_CODES.LOLLIPOP)
 class StartedShellScript
 internal constructor(
     private val stdoutDescriptor: ParcelFileDescriptor,
diff --git a/benchmark/benchmark-common/src/main/java/androidx/benchmark/json/BenchmarkData.kt b/benchmark/benchmark-common/src/main/java/androidx/benchmark/json/BenchmarkData.kt
index 29cdaab..c74aae7 100644
--- a/benchmark/benchmark-common/src/main/java/androidx/benchmark/json/BenchmarkData.kt
+++ b/benchmark/benchmark-common/src/main/java/androidx/benchmark/json/BenchmarkData.kt
@@ -20,6 +20,7 @@
 import androidx.benchmark.DeviceInfo
 import androidx.benchmark.IsolationActivity
 import androidx.benchmark.MemInfo
+import androidx.benchmark.PackageInfo
 import androidx.benchmark.Profiler
 import androidx.benchmark.ResultWriter
 import com.squareup.moshi.JsonClass
@@ -50,6 +51,7 @@
         val sustainedPerformanceModeEnabled: Boolean,
         val artMainlineVersion: Long, // -1 if not found
         val osCodenameAbbreviated: String,
+        val compilationMode: String,
         // Note: Convention is to add new entries at bottom
     ) {
         /** Default constructor populates with current run state */
@@ -71,6 +73,7 @@
                             android.os.Build.ID
                         }
                         .substring(0, 1),
+                compilationMode = PackageInfo.compilationMode
             )
 
         /**
diff --git a/benchmark/integration-tests/macrobenchmark/src/main/java/androidx/benchmark/integration/macrobenchmark/CompilationModeTest.kt b/benchmark/integration-tests/macrobenchmark/src/main/java/androidx/benchmark/integration/macrobenchmark/CompilationModeTest.kt
index 1d9fe23..8157ba2 100644
--- a/benchmark/integration-tests/macrobenchmark/src/main/java/androidx/benchmark/integration/macrobenchmark/CompilationModeTest.kt
+++ b/benchmark/integration-tests/macrobenchmark/src/main/java/androidx/benchmark/integration/macrobenchmark/CompilationModeTest.kt
@@ -110,30 +110,7 @@
             check(device.wait(Until.hasObject(By.text(EXPECTED_TEXT)), 3000))
         }
 
-    private fun getCompilationMode(): String {
-        val dump =
-            Shell.executeScriptCaptureStdoutStderr("cmd package dump $TARGET_PACKAGE_NAME")
-                .stdout
-                .trim()
-
-        // Find `Dexopt state:` line
-        var firstMarkerFound = false
-        for (line in dump.lines()) {
-
-            // Looks for first marker
-            if (!firstMarkerFound && line.trim() == FIRST_MARKER) {
-                firstMarkerFound = true
-                continue
-            }
-
-            // Looks for second marker
-            if (firstMarkerFound && line.trim().contains(SECOND_MARKER)) {
-                return line.substringAfter(SECOND_MARKER).substringBefore("]")
-            }
-        }
-
-        return COMPILATION_PROFILE_UNKNOWN
-    }
+    private fun getCompilationMode() = Shell.getCompilationMode(TARGET_PACKAGE_NAME)
 
     @SmallTest
     @Test
@@ -181,10 +158,5 @@
 
         // Screen assert
         private const val EXPECTED_TEXT = "FULL DISPLAY"
-
-        // Compilation mode
-        private const val FIRST_MARKER = "Dexopt state:"
-        private const val SECOND_MARKER = "[status="
-        private const val COMPILATION_PROFILE_UNKNOWN = "unknown"
     }
 }
diff --git a/buildSrc/imports/compose-icons/build.gradle b/buildSrc/imports/compose-icons/build.gradle
deleted file mode 100644
index 2c17324..0000000
--- a/buildSrc/imports/compose-icons/build.gradle
+++ /dev/null
@@ -1,6 +0,0 @@
-apply from: "../../shared.gradle"
-
-sourceSets {
-    main.java.srcDirs += "${supportRootFolder}/compose/material/material/icons/generator/src/main" +
-            "/kotlin"
-}
diff --git a/buildSrc/plugins/build.gradle b/buildSrc/plugins/build.gradle
index 446e26a..64cc36d 100644
--- a/buildSrc/plugins/build.gradle
+++ b/buildSrc/plugins/build.gradle
@@ -5,7 +5,6 @@
     api project(":imports:baseline-profile-gradle-plugin")
     api project(":imports:benchmark-darwin-plugin")
     api project(":imports:benchmark-gradle-plugin")
-    api project(":imports:compose-icons")
     api project(":imports:glance-layout-generator")
     api project(":imports:inspection-gradle-plugin")
     api project(":imports:room-gradle-plugin")
diff --git a/buildSrc/private/src/main/kotlin/androidx/build/ProjectParser.kt b/buildSrc/private/src/main/kotlin/androidx/build/ProjectParser.kt
index 9d0c0fe..7a9a8ce 100644
--- a/buildSrc/private/src/main/kotlin/androidx/build/ProjectParser.kt
+++ b/buildSrc/private/src/main/kotlin/androidx/build/ProjectParser.kt
@@ -91,12 +91,6 @@
 }
 
 fun Project.parseBuildFile(buildFile: File): ProjectParser.ParsedProject {
-    if (buildFile.path.contains("compose/material/material-icons-extended-")) {
-        // These projects all read from this Gradle script
-        return parseBuildFile(
-            File(buildFile.parentFile.parentFile, "material-icons-extended/generate.gradle")
-        )
-    }
     val parserProvider =
         project.rootProject.gradle.sharedServices.registerIfAbsent(
             "ProjectParser",
diff --git a/buildSrc/private/src/main/kotlin/androidx/build/dependencyTracker/AffectedModuleDetector.kt b/buildSrc/private/src/main/kotlin/androidx/build/dependencyTracker/AffectedModuleDetector.kt
index ca16cf2..1b18bf8 100644
--- a/buildSrc/private/src/main/kotlin/androidx/build/dependencyTracker/AffectedModuleDetector.kt
+++ b/buildSrc/private/src/main/kotlin/androidx/build/dependencyTracker/AffectedModuleDetector.kt
@@ -524,12 +524,6 @@
                     ":benchmark:benchmark-macro",
                     ":benchmark:integration-tests:macrobenchmark-target"
                 ), // link benchmark-macro's correctness test and its target
-                // Changing generator code changes the output for generated icons, which are tested
-                // in material-icons-extended.
-                setOf(
-                    ":compose:material:material:icons:generator",
-                    ":compose:material:material-icons-extended"
-                ),
                 setOf(
                     ":profileinstaller:integration-tests:profile-verification",
                     ":profileinstaller:integration-tests:profile-verification-sample",
diff --git a/buildSrc/settings.gradle b/buildSrc/settings.gradle
index 4e48a6c..2d30648 100644
--- a/buildSrc/settings.gradle
+++ b/buildSrc/settings.gradle
@@ -31,7 +31,6 @@
 include ":imports:baseline-profile-gradle-plugin"
 include ":imports:inspection-gradle-plugin"
 include ":imports:room-gradle-plugin"
-include ":imports:compose-icons"
 include ":imports:glance-layout-generator"
 include ":imports:stableaidl-gradle-plugin"
 
diff --git a/buildSrc/settingsScripts/project-dependency-graph.groovy b/buildSrc/settingsScripts/project-dependency-graph.groovy
index 5fccfd5..049095f 100644
--- a/buildSrc/settingsScripts/project-dependency-graph.groovy
+++ b/buildSrc/settingsScripts/project-dependency-graph.groovy
@@ -266,9 +266,6 @@
                     links.add(":compose:compiler:compiler")
                     links.add(":compose:lint:internal-lint-checks")
                 }
-                if (iconGenerator.matcher(line).find()) {
-                    links.add(":compose:material:material:icons:generator")
-                }
                 if (publishedLibrary.matcher(line).find()) {
                     publishedLibraryProjects.add(projectPath)
                 }
@@ -293,7 +290,6 @@
     private static Pattern multilineProjectReference = Pattern.compile("project\\(\$")
     private static Pattern inspection = Pattern.compile("packageInspector\\(project, \"(.*)\"\\)")
     private static Pattern composePlugin = Pattern.compile("id\\(\"AndroidXComposePlugin\"\\)")
-    private static Pattern iconGenerator = Pattern.compile("IconGenerationTask\\.register")
     private static Pattern publishedLibrary = Pattern.compile(
             "(type = LibraryType\\.(PUBLISHED_LIBRARY|GRADLE_PLUGIN|ANNOTATION_PROCESSOR|PUBLISHED_LIBRARY_ONLY_USED_BY_KOTLIN_CONSUMERS)|" +
                     "publish = Publish\\.SNAPSHOT_AND_RELEASE)"
diff --git a/buildSrc/shared-dependencies.gradle b/buildSrc/shared-dependencies.gradle
index 678e5de..27e03e3 100644
--- a/buildSrc/shared-dependencies.gradle
+++ b/buildSrc/shared-dependencies.gradle
@@ -47,8 +47,7 @@
     implementation(libs.apacheCommonIo) // used in CheckApiEquivalenceTask.kt
 
     implementation(libs.protobufGradlePlugin) // needed to compile inspection plugin
-    implementation(libs.kotlinPoet) // needed to compile material-icon-generator
-    implementation(libs.xmlpull) // needed to compile material-icon-generator
+    implementation(libs.kotlinPoet) // needed to compile glance-layout-generator
 
     implementation(libs.protobuf) // needed to compile baseline-profile gradle plugins
     implementation(libs.agpTestingPlatformCoreProto) // needed to compile baseline-profile gradle plugins
diff --git a/camera/camera-camera2-pipe-integration/src/main/java/androidx/camera/camera2/pipe/integration/adapter/CameraUseCaseAdapter.kt b/camera/camera-camera2-pipe-integration/src/main/java/androidx/camera/camera2/pipe/integration/adapter/CameraUseCaseAdapter.kt
index 731a966..11cafba 100644
--- a/camera/camera-camera2-pipe-integration/src/main/java/androidx/camera/camera2/pipe/integration/adapter/CameraUseCaseAdapter.kt
+++ b/camera/camera-camera2-pipe-integration/src/main/java/androidx/camera/camera2/pipe/integration/adapter/CameraUseCaseAdapter.kt
@@ -79,6 +79,10 @@
         when (captureType) {
             CaptureType.IMAGE_CAPTURE,
             CaptureType.PREVIEW,
+            // Uses TEMPLATE_PREVIEW instead of TEMPLATE_RECORD for StreamSharing. Since there
+            // is a issue that captured results being stretched when requested for recording on
+            // some models, it would be safer to request for preview, which is also better
+            // tested. More detail please see b/297167569.
             CaptureType.STREAM_SHARING,
             CaptureType.METERING_REPEATING,
             CaptureType.IMAGE_ANALYSIS ->
@@ -99,6 +103,8 @@
                     else CameraDevice.TEMPLATE_STILL_CAPTURE
             CaptureType.PREVIEW,
             CaptureType.IMAGE_ANALYSIS,
+            // Uses TEMPLATE_PREVIEW instead of TEMPLATE_RECORD for StreamSharing to align with
+            // SessionConfig's setup. More detail please see b/297167569.
             CaptureType.STREAM_SHARING,
             CaptureType.METERING_REPEATING ->
                 captureBuilder.templateType = CameraDevice.TEMPLATE_PREVIEW
diff --git a/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/CameraBackend.kt b/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/CameraBackend.kt
index 6b1be6e..df87e19 100644
--- a/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/CameraBackend.kt
+++ b/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/CameraBackend.kt
@@ -40,7 +40,7 @@
         }
 
         class CameraAvailable(val cameraId: CameraId) : CameraStatus() {
-            override fun toString(): String = "CameraAvailable(camera=$cameraId)"
+            override fun toString(): String = "CameraAvailable(camera=$cameraId"
         }
     }
 }
diff --git a/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Camera2CameraController.kt b/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Camera2CameraController.kt
index de4d5aa..a18ec53 100644
--- a/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Camera2CameraController.kt
+++ b/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Camera2CameraController.kt
@@ -94,8 +94,11 @@
             }
             lastCameraError = null
             val camera =
-                virtualCameraManager.open(config.camera, config.sharedCameraIds, graphListener) { _
-                    ->
+                virtualCameraManager.open(
+                    config.camera,
+                    config.sharedCameraIds,
+                    graphListener,
+                ) { _ ->
                     isForeground
                 }
             if (camera == null) {
@@ -117,7 +120,7 @@
                     cameraSurfaceManager,
                     timeSource,
                     config.flags,
-                    scope,
+                    scope
                 )
             currentSession = session
 
@@ -170,22 +173,10 @@
                 ControllerState.ERROR ->
                     if (
                         cameraStatus is CameraStatus.CameraAvailable &&
-                            lastCameraError != CameraError.ERROR_GRAPH_CONFIG
+                            lastCameraError == CameraError.ERROR_CAMERA_DEVICE
                     ) {
                         shouldRestart = true
                     }
-                ControllerState.STARTED ->
-                    if (cameraStatus is CameraStatus.CameraAvailable) {
-                        // On certain platforms with non-compliant camera HALs, we don't get
-                        // onError() or onDisconnected() callbacks. Therefore, we should still retry
-                        // when we (unexpectedly) get notified that a camera is available.
-                        //
-                        // Please see b/340583179 for details.
-                        Log.warn {
-                            "Got $cameraStatus when controller is started, attempting restart"
-                        }
-                        shouldRestart = true
-                    }
             }
             if (!shouldRestart) {
                 Log.debug {
diff --git a/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Exceptions.kt b/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Exceptions.kt
index f7532e5..8039abf 100644
--- a/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Exceptions.kt
+++ b/camera/camera-camera2-pipe/src/main/java/androidx/camera/camera2/pipe/compat/Exceptions.kt
@@ -55,19 +55,9 @@
     } catch (e: Exception) {
         Log.warn { "Unexpected error: " + e.message }
         when (e) {
-            is CameraAccessException -> {
-                cameraErrorListener.onCameraError(
-                    cameraId,
-                    CameraError.from(e),
-                    // CameraAccessException indicates the task failed because the camera is
-                    // unavailable, such as when the camera is in use or disconnected. Such errors
-                    // can be recovered when the camera becomes available.
-                    willAttemptRetry = true,
-                )
-                return null
-            }
             is IllegalArgumentException,
             is IllegalStateException,
+            is CameraAccessException,
             is SecurityException,
             is UnsupportedOperationException,
             is NullPointerException -> {
diff --git a/camera/camera-camera2/api/1.4.0-beta02.txt b/camera/camera-camera2/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..2962218
--- /dev/null
+++ b/camera/camera-camera2/api/1.4.0-beta02.txt
@@ -0,0 +1,54 @@
+// Signature format: 4.0
+package androidx.camera.camera2 {
+
+  public final class Camera2Config {
+    method public static androidx.camera.core.CameraXConfig defaultConfig();
+  }
+
+}
+
+package androidx.camera.camera2.interop {
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public final class Camera2CameraControl {
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> addCaptureRequestOptions(androidx.camera.camera2.interop.CaptureRequestOptions);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> clearCaptureRequestOptions();
+    method public static androidx.camera.camera2.interop.Camera2CameraControl from(androidx.camera.core.CameraControl);
+    method public androidx.camera.camera2.interop.CaptureRequestOptions getCaptureRequestOptions();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setCaptureRequestOptions(androidx.camera.camera2.interop.CaptureRequestOptions);
+  }
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public final class Camera2CameraInfo {
+    method public static androidx.camera.camera2.interop.Camera2CameraInfo from(androidx.camera.core.CameraInfo);
+    method public <T> T? getCameraCharacteristic(android.hardware.camera2.CameraCharacteristics.Key<T!>);
+    method public String getCameraId();
+  }
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public final class Camera2Interop {
+  }
+
+  public static final class Camera2Interop.Extender<T> {
+    ctor public Camera2Interop.Extender(androidx.camera.core.ExtendableBuilder<T!>);
+    method public <ValueT> androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>, ValueT);
+    method public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setDeviceStateCallback(android.hardware.camera2.CameraDevice.StateCallback);
+    method @RequiresApi(28) public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setPhysicalCameraId(String);
+    method public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setSessionCaptureCallback(android.hardware.camera2.CameraCaptureSession.CaptureCallback);
+    method public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setSessionStateCallback(android.hardware.camera2.CameraCaptureSession.StateCallback);
+    method @RequiresApi(33) public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setStreamUseCase(long);
+  }
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public class CaptureRequestOptions {
+    method public <ValueT> ValueT? getCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>);
+  }
+
+  public static final class CaptureRequestOptions.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.camera2.interop.CaptureRequestOptions!> {
+    ctor public CaptureRequestOptions.Builder();
+    method public androidx.camera.camera2.interop.CaptureRequestOptions build();
+    method public <ValueT> androidx.camera.camera2.interop.CaptureRequestOptions.Builder clearCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>);
+    method public <ValueT> androidx.camera.camera2.interop.CaptureRequestOptions.Builder setCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>, ValueT);
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalCamera2Interop {
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-camera2/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-camera2/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-camera2/api/restricted_1.4.0-beta02.txt b/camera/camera-camera2/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..2962218
--- /dev/null
+++ b/camera/camera-camera2/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,54 @@
+// Signature format: 4.0
+package androidx.camera.camera2 {
+
+  public final class Camera2Config {
+    method public static androidx.camera.core.CameraXConfig defaultConfig();
+  }
+
+}
+
+package androidx.camera.camera2.interop {
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public final class Camera2CameraControl {
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> addCaptureRequestOptions(androidx.camera.camera2.interop.CaptureRequestOptions);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> clearCaptureRequestOptions();
+    method public static androidx.camera.camera2.interop.Camera2CameraControl from(androidx.camera.core.CameraControl);
+    method public androidx.camera.camera2.interop.CaptureRequestOptions getCaptureRequestOptions();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setCaptureRequestOptions(androidx.camera.camera2.interop.CaptureRequestOptions);
+  }
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public final class Camera2CameraInfo {
+    method public static androidx.camera.camera2.interop.Camera2CameraInfo from(androidx.camera.core.CameraInfo);
+    method public <T> T? getCameraCharacteristic(android.hardware.camera2.CameraCharacteristics.Key<T!>);
+    method public String getCameraId();
+  }
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public final class Camera2Interop {
+  }
+
+  public static final class Camera2Interop.Extender<T> {
+    ctor public Camera2Interop.Extender(androidx.camera.core.ExtendableBuilder<T!>);
+    method public <ValueT> androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>, ValueT);
+    method public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setDeviceStateCallback(android.hardware.camera2.CameraDevice.StateCallback);
+    method @RequiresApi(28) public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setPhysicalCameraId(String);
+    method public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setSessionCaptureCallback(android.hardware.camera2.CameraCaptureSession.CaptureCallback);
+    method public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setSessionStateCallback(android.hardware.camera2.CameraCaptureSession.StateCallback);
+    method @RequiresApi(33) public androidx.camera.camera2.interop.Camera2Interop.Extender<T!> setStreamUseCase(long);
+  }
+
+  @SuppressCompatibility @androidx.camera.camera2.interop.ExperimentalCamera2Interop public class CaptureRequestOptions {
+    method public <ValueT> ValueT? getCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>);
+  }
+
+  public static final class CaptureRequestOptions.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.camera2.interop.CaptureRequestOptions!> {
+    ctor public CaptureRequestOptions.Builder();
+    method public androidx.camera.camera2.interop.CaptureRequestOptions build();
+    method public <ValueT> androidx.camera.camera2.interop.CaptureRequestOptions.Builder clearCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>);
+    method public <ValueT> androidx.camera.camera2.interop.CaptureRequestOptions.Builder setCaptureRequestOption(android.hardware.camera2.CaptureRequest.Key<ValueT!>, ValueT);
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalCamera2Interop {
+  }
+
+}
+
diff --git a/camera/camera-camera2/src/main/java/androidx/camera/camera2/internal/TemplateTypeUtil.java b/camera/camera-camera2/src/main/java/androidx/camera/camera2/internal/TemplateTypeUtil.java
index bbbdbfc..6f1fd28 100644
--- a/camera/camera-camera2/src/main/java/androidx/camera/camera2/internal/TemplateTypeUtil.java
+++ b/camera/camera-camera2/src/main/java/androidx/camera/camera2/internal/TemplateTypeUtil.java
@@ -49,6 +49,10 @@
             case VIDEO_CAPTURE:
                 return CameraDevice.TEMPLATE_RECORD;
             case STREAM_SHARING:
+                // Uses TEMPLATE_PREVIEW instead of TEMPLATE_RECORD. Since there is a issue that
+                // captured results being stretched when requested for recording on some models,
+                // it would be safer to request for preview, which is also better tested. More
+                // detail please see b/297167569.
             case PREVIEW:
             case IMAGE_ANALYSIS:
             default:
@@ -72,6 +76,8 @@
             case VIDEO_CAPTURE:
                 return CameraDevice.TEMPLATE_RECORD;
             case STREAM_SHARING:
+                // Uses TEMPLATE_PREVIEW instead of TEMPLATE_RECORD to align with
+                // getSessionConfigTemplateType method. More detail please see b/297167569.
             case PREVIEW:
             case IMAGE_ANALYSIS:
             default:
diff --git a/camera/camera-core/api/1.4.0-beta02.txt b/camera/camera-core/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..c44c05c
--- /dev/null
+++ b/camera/camera-core/api/1.4.0-beta02.txt
@@ -0,0 +1,738 @@
+// Signature format: 4.0
+package androidx.camera.core {
+
+  public class AspectRatio {
+    field public static final int RATIO_16_9 = 1; // 0x1
+    field public static final int RATIO_4_3 = 0; // 0x0
+    field public static final int RATIO_DEFAULT = -1; // 0xffffffff
+  }
+
+  public interface Camera {
+    method public androidx.camera.core.CameraControl getCameraControl();
+    method public androidx.camera.core.CameraInfo getCameraInfo();
+  }
+
+  public interface CameraControl {
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> cancelFocusAndMetering();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> enableTorch(boolean);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Integer!> setExposureCompensationIndex(int);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setLinearZoom(@FloatRange(from=0.0f, to=1.0f) float);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setZoomRatio(float);
+    method public com.google.common.util.concurrent.ListenableFuture<androidx.camera.core.FocusMeteringResult!> startFocusAndMetering(androidx.camera.core.FocusMeteringAction);
+  }
+
+  public static final class CameraControl.OperationCanceledException extends java.lang.Exception {
+  }
+
+  public abstract class CameraEffect {
+    ctor protected CameraEffect(int, java.util.concurrent.Executor, androidx.camera.core.ImageProcessor, androidx.core.util.Consumer<java.lang.Throwable!>);
+    ctor protected CameraEffect(int, java.util.concurrent.Executor, androidx.camera.core.SurfaceProcessor, androidx.core.util.Consumer<java.lang.Throwable!>);
+    method public androidx.core.util.Consumer<java.lang.Throwable!> getErrorListener();
+    method public java.util.concurrent.Executor getExecutor();
+    method public androidx.camera.core.SurfaceProcessor? getSurfaceProcessor();
+    method public int getTargets();
+    field public static final int IMAGE_CAPTURE = 4; // 0x4
+    field public static final int PREVIEW = 1; // 0x1
+    field public static final int VIDEO_CAPTURE = 2; // 0x2
+  }
+
+  public interface CameraFilter {
+    method public java.util.List<androidx.camera.core.CameraInfo!> filter(java.util.List<androidx.camera.core.CameraInfo!>);
+  }
+
+  public interface CameraInfo {
+    method public androidx.camera.core.CameraSelector getCameraSelector();
+    method public androidx.lifecycle.LiveData<androidx.camera.core.CameraState!> getCameraState();
+    method public androidx.camera.core.ExposureState getExposureState();
+    method @FloatRange(from=0, fromInclusive=false) public default float getIntrinsicZoomRatio();
+    method public default int getLensFacing();
+    method public default java.util.Set<androidx.camera.core.CameraInfo!> getPhysicalCameraInfos();
+    method public int getSensorRotationDegrees();
+    method public int getSensorRotationDegrees(int);
+    method public default java.util.Set<android.util.Range<java.lang.Integer!>!> getSupportedFrameRateRanges();
+    method public androidx.lifecycle.LiveData<java.lang.Integer!> getTorchState();
+    method public androidx.lifecycle.LiveData<androidx.camera.core.ZoomState!> getZoomState();
+    method public boolean hasFlashUnit();
+    method public default boolean isFocusMeteringSupported(androidx.camera.core.FocusMeteringAction);
+    method public default boolean isLogicalMultiCameraSupported();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalZeroShutterLag public default boolean isZslSupported();
+    method public static boolean mustPlayShutterSound();
+    method public default java.util.Set<androidx.camera.core.DynamicRange!> querySupportedDynamicRanges(java.util.Set<androidx.camera.core.DynamicRange!>);
+  }
+
+  public final class CameraInfoUnavailableException extends java.lang.Exception {
+  }
+
+  public interface CameraProvider {
+    method public java.util.List<androidx.camera.core.CameraInfo!> getAvailableCameraInfos();
+    method public boolean hasCamera(androidx.camera.core.CameraSelector) throws androidx.camera.core.CameraInfoUnavailableException;
+  }
+
+  public final class CameraSelector {
+    method public java.util.List<androidx.camera.core.CameraInfo!> filter(java.util.List<androidx.camera.core.CameraInfo!>);
+    method public String? getPhysicalCameraId();
+    field public static final androidx.camera.core.CameraSelector DEFAULT_BACK_CAMERA;
+    field public static final androidx.camera.core.CameraSelector DEFAULT_FRONT_CAMERA;
+    field public static final int LENS_FACING_BACK = 1; // 0x1
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalLensFacing public static final int LENS_FACING_EXTERNAL = 2; // 0x2
+    field public static final int LENS_FACING_FRONT = 0; // 0x0
+    field public static final int LENS_FACING_UNKNOWN = -1; // 0xffffffff
+  }
+
+  public static final class CameraSelector.Builder {
+    ctor public CameraSelector.Builder();
+    method public androidx.camera.core.CameraSelector.Builder addCameraFilter(androidx.camera.core.CameraFilter);
+    method public androidx.camera.core.CameraSelector build();
+    method public androidx.camera.core.CameraSelector.Builder requireLensFacing(int);
+    method public androidx.camera.core.CameraSelector.Builder setPhysicalCameraId(String);
+  }
+
+  @com.google.auto.value.AutoValue public abstract class CameraState {
+    ctor public CameraState();
+    method public static androidx.camera.core.CameraState create(androidx.camera.core.CameraState.Type);
+    method public static androidx.camera.core.CameraState create(androidx.camera.core.CameraState.Type, androidx.camera.core.CameraState.StateError?);
+    method public abstract androidx.camera.core.CameraState.StateError? getError();
+    method public abstract androidx.camera.core.CameraState.Type getType();
+    field public static final int ERROR_CAMERA_DISABLED = 5; // 0x5
+    field public static final int ERROR_CAMERA_FATAL_ERROR = 6; // 0x6
+    field public static final int ERROR_CAMERA_IN_USE = 2; // 0x2
+    field public static final int ERROR_DO_NOT_DISTURB_MODE_ENABLED = 7; // 0x7
+    field public static final int ERROR_MAX_CAMERAS_IN_USE = 1; // 0x1
+    field public static final int ERROR_OTHER_RECOVERABLE_ERROR = 3; // 0x3
+    field public static final int ERROR_STREAM_CONFIG = 4; // 0x4
+  }
+
+  public enum CameraState.ErrorType {
+    enum_constant public static final androidx.camera.core.CameraState.ErrorType CRITICAL;
+    enum_constant public static final androidx.camera.core.CameraState.ErrorType RECOVERABLE;
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class CameraState.StateError {
+    ctor public CameraState.StateError();
+    method public static androidx.camera.core.CameraState.StateError create(int);
+    method public static androidx.camera.core.CameraState.StateError create(int, Throwable?);
+    method public abstract Throwable? getCause();
+    method public abstract int getCode();
+    method public androidx.camera.core.CameraState.ErrorType getType();
+  }
+
+  public enum CameraState.Type {
+    enum_constant public static final androidx.camera.core.CameraState.Type CLOSED;
+    enum_constant public static final androidx.camera.core.CameraState.Type CLOSING;
+    enum_constant public static final androidx.camera.core.CameraState.Type OPEN;
+    enum_constant public static final androidx.camera.core.CameraState.Type OPENING;
+    enum_constant public static final androidx.camera.core.CameraState.Type PENDING_OPEN;
+  }
+
+  public class CameraUnavailableException extends java.lang.Exception {
+    ctor public CameraUnavailableException(int);
+    ctor public CameraUnavailableException(int, String?);
+    ctor public CameraUnavailableException(int, String?, Throwable?);
+    ctor public CameraUnavailableException(int, Throwable?);
+    method public int getReason();
+    field public static final int CAMERA_DISABLED = 1; // 0x1
+    field public static final int CAMERA_DISCONNECTED = 2; // 0x2
+    field public static final int CAMERA_ERROR = 3; // 0x3
+    field public static final int CAMERA_IN_USE = 4; // 0x4
+    field public static final int CAMERA_MAX_IN_USE = 5; // 0x5
+    field public static final int CAMERA_UNAVAILABLE_DO_NOT_DISTURB = 6; // 0x6
+    field public static final int CAMERA_UNKNOWN_ERROR = 0; // 0x0
+  }
+
+  public final class CameraXConfig {
+    method public androidx.camera.core.CameraSelector? getAvailableCamerasLimiter(androidx.camera.core.CameraSelector?);
+    method public java.util.concurrent.Executor? getCameraExecutor(java.util.concurrent.Executor?);
+    method public long getCameraOpenRetryMaxTimeoutInMillisWhileResuming();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public androidx.camera.core.RetryPolicy getCameraProviderInitRetryPolicy();
+    method public int getMinimumLoggingLevel();
+    method public android.os.Handler? getSchedulerHandler(android.os.Handler?);
+  }
+
+  public static final class CameraXConfig.Builder {
+    method public androidx.camera.core.CameraXConfig build();
+    method public static androidx.camera.core.CameraXConfig.Builder fromConfig(androidx.camera.core.CameraXConfig);
+    method public androidx.camera.core.CameraXConfig.Builder setAvailableCamerasLimiter(androidx.camera.core.CameraSelector);
+    method public androidx.camera.core.CameraXConfig.Builder setCameraExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.core.CameraXConfig.Builder setCameraOpenRetryMaxTimeoutInMillisWhileResuming(long);
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public androidx.camera.core.CameraXConfig.Builder setCameraProviderInitRetryPolicy(androidx.camera.core.RetryPolicy);
+    method public androidx.camera.core.CameraXConfig.Builder setMinimumLoggingLevel(@IntRange(from=android.util.Log.DEBUG, to=android.util.Log.ERROR) int);
+    method public androidx.camera.core.CameraXConfig.Builder setSchedulerHandler(android.os.Handler);
+  }
+
+  public static interface CameraXConfig.Provider {
+    method public androidx.camera.core.CameraXConfig getCameraXConfig();
+  }
+
+  public class ConcurrentCamera {
+    ctor public ConcurrentCamera(java.util.List<androidx.camera.core.Camera!>);
+    method public java.util.List<androidx.camera.core.Camera!> getCameras();
+  }
+
+  public static final class ConcurrentCamera.SingleCameraConfig {
+    ctor public ConcurrentCamera.SingleCameraConfig(androidx.camera.core.CameraSelector, androidx.camera.core.UseCaseGroup, androidx.lifecycle.LifecycleOwner);
+    method public androidx.camera.core.CameraSelector getCameraSelector();
+    method public androidx.lifecycle.LifecycleOwner getLifecycleOwner();
+    method public androidx.camera.core.UseCaseGroup getUseCaseGroup();
+  }
+
+  public final class DisplayOrientedMeteringPointFactory extends androidx.camera.core.MeteringPointFactory {
+    ctor public DisplayOrientedMeteringPointFactory(android.view.Display, androidx.camera.core.CameraInfo, float, float);
+  }
+
+  public final class DynamicRange {
+    ctor public DynamicRange(int, int);
+    method public int getBitDepth();
+    method public int getEncoding();
+    field public static final int BIT_DEPTH_10_BIT = 10; // 0xa
+    field public static final int BIT_DEPTH_8_BIT = 8; // 0x8
+    field public static final int BIT_DEPTH_UNSPECIFIED = 0; // 0x0
+    field public static final androidx.camera.core.DynamicRange DOLBY_VISION_10_BIT;
+    field public static final androidx.camera.core.DynamicRange DOLBY_VISION_8_BIT;
+    field public static final int ENCODING_DOLBY_VISION = 6; // 0x6
+    field public static final int ENCODING_HDR10 = 4; // 0x4
+    field public static final int ENCODING_HDR10_PLUS = 5; // 0x5
+    field public static final int ENCODING_HDR_UNSPECIFIED = 2; // 0x2
+    field public static final int ENCODING_HLG = 3; // 0x3
+    field public static final int ENCODING_SDR = 1; // 0x1
+    field public static final int ENCODING_UNSPECIFIED = 0; // 0x0
+    field public static final androidx.camera.core.DynamicRange HDR10_10_BIT;
+    field public static final androidx.camera.core.DynamicRange HDR10_PLUS_10_BIT;
+    field public static final androidx.camera.core.DynamicRange HDR_UNSPECIFIED_10_BIT;
+    field public static final androidx.camera.core.DynamicRange HLG_10_BIT;
+    field public static final androidx.camera.core.DynamicRange SDR;
+    field public static final androidx.camera.core.DynamicRange UNSPECIFIED;
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalGetImage {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalImageCaptureOutputFormat {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalLensFacing {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalMirrorMode {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalRetryPolicy {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalUseCaseApi {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalZeroShutterLag {
+  }
+
+  public interface ExposureState {
+    method public int getExposureCompensationIndex();
+    method public android.util.Range<java.lang.Integer!> getExposureCompensationRange();
+    method public android.util.Rational getExposureCompensationStep();
+    method public boolean isExposureCompensationSupported();
+  }
+
+  public interface ExtendableBuilder<T> {
+    method public T build();
+  }
+
+  public final class FocusMeteringAction {
+    method public long getAutoCancelDurationInMillis();
+    method public java.util.List<androidx.camera.core.MeteringPoint!> getMeteringPointsAe();
+    method public java.util.List<androidx.camera.core.MeteringPoint!> getMeteringPointsAf();
+    method public java.util.List<androidx.camera.core.MeteringPoint!> getMeteringPointsAwb();
+    method public boolean isAutoCancelEnabled();
+    field public static final int FLAG_AE = 2; // 0x2
+    field public static final int FLAG_AF = 1; // 0x1
+    field public static final int FLAG_AWB = 4; // 0x4
+  }
+
+  public static class FocusMeteringAction.Builder {
+    ctor public FocusMeteringAction.Builder(androidx.camera.core.MeteringPoint);
+    ctor public FocusMeteringAction.Builder(androidx.camera.core.MeteringPoint, int);
+    method public androidx.camera.core.FocusMeteringAction.Builder addPoint(androidx.camera.core.MeteringPoint);
+    method public androidx.camera.core.FocusMeteringAction.Builder addPoint(androidx.camera.core.MeteringPoint, int);
+    method public androidx.camera.core.FocusMeteringAction build();
+    method public androidx.camera.core.FocusMeteringAction.Builder disableAutoCancel();
+    method public androidx.camera.core.FocusMeteringAction.Builder setAutoCancelDuration(@IntRange(from=1) long, java.util.concurrent.TimeUnit);
+  }
+
+  public final class FocusMeteringResult {
+    method public boolean isFocusSuccessful();
+  }
+
+  public final class ImageAnalysis extends androidx.camera.core.UseCase {
+    method public void clearAnalyzer();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalUseCaseApi public java.util.concurrent.Executor? getBackgroundExecutor();
+    method public int getBackpressureStrategy();
+    method public int getImageQueueDepth();
+    method public int getOutputImageFormat();
+    method public androidx.camera.core.ResolutionInfo? getResolutionInfo();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getResolutionSelector();
+    method public int getTargetRotation();
+    method public boolean isOutputImageRotationEnabled();
+    method public void setAnalyzer(java.util.concurrent.Executor, androidx.camera.core.ImageAnalysis.Analyzer);
+    method public void setTargetRotation(int);
+    field public static final int COORDINATE_SYSTEM_ORIGINAL = 0; // 0x0
+    field public static final int COORDINATE_SYSTEM_SENSOR = 2; // 0x2
+    field public static final int COORDINATE_SYSTEM_VIEW_REFERENCED = 1; // 0x1
+    field public static final int OUTPUT_IMAGE_FORMAT_RGBA_8888 = 2; // 0x2
+    field public static final int OUTPUT_IMAGE_FORMAT_YUV_420_888 = 1; // 0x1
+    field public static final int STRATEGY_BLOCK_PRODUCER = 1; // 0x1
+    field public static final int STRATEGY_KEEP_ONLY_LATEST = 0; // 0x0
+  }
+
+  public static interface ImageAnalysis.Analyzer {
+    method public void analyze(androidx.camera.core.ImageProxy);
+    method public default android.util.Size? getDefaultTargetResolution();
+    method public default int getTargetCoordinateSystem();
+    method public default void updateTransform(android.graphics.Matrix?);
+  }
+
+  public static final class ImageAnalysis.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.core.ImageAnalysis!> {
+    ctor public ImageAnalysis.Builder();
+    method public androidx.camera.core.ImageAnalysis build();
+    method public androidx.camera.core.ImageAnalysis.Builder setBackgroundExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.core.ImageAnalysis.Builder setBackpressureStrategy(int);
+    method public androidx.camera.core.ImageAnalysis.Builder setImageQueueDepth(int);
+    method public androidx.camera.core.ImageAnalysis.Builder setOutputImageFormat(int);
+    method @RequiresApi(23) public androidx.camera.core.ImageAnalysis.Builder setOutputImageRotationEnabled(boolean);
+    method public androidx.camera.core.ImageAnalysis.Builder setResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method @Deprecated public androidx.camera.core.ImageAnalysis.Builder setTargetAspectRatio(int);
+    method public androidx.camera.core.ImageAnalysis.Builder setTargetName(String);
+    method @Deprecated public androidx.camera.core.ImageAnalysis.Builder setTargetResolution(android.util.Size);
+    method public androidx.camera.core.ImageAnalysis.Builder setTargetRotation(int);
+  }
+
+  public final class ImageCapture extends androidx.camera.core.UseCase {
+    method public int getCaptureMode();
+    method public int getFlashMode();
+    method public static androidx.camera.core.ImageCaptureCapabilities getImageCaptureCapabilities(androidx.camera.core.CameraInfo);
+    method @IntRange(from=1, to=100) public int getJpegQuality();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public int getOutputFormat();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getPostviewResolutionSelector();
+    method public androidx.camera.core.ImageCaptureLatencyEstimate getRealtimeCaptureLatencyEstimate();
+    method public androidx.camera.core.ResolutionInfo? getResolutionInfo();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getResolutionSelector();
+    method public androidx.camera.core.ImageCapture.ScreenFlash? getScreenFlash();
+    method public int getTargetRotation();
+    method public boolean isPostviewEnabled();
+    method public void setCropAspectRatio(android.util.Rational);
+    method public void setFlashMode(int);
+    method public void setScreenFlash(androidx.camera.core.ImageCapture.ScreenFlash?);
+    method public void setTargetRotation(int);
+    method public void takePicture(androidx.camera.core.ImageCapture.OutputFileOptions, java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageSavedCallback);
+    method public void takePicture(java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageCapturedCallback);
+    field public static final int CAPTURE_MODE_MAXIMIZE_QUALITY = 0; // 0x0
+    field public static final int CAPTURE_MODE_MINIMIZE_LATENCY = 1; // 0x1
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalZeroShutterLag public static final int CAPTURE_MODE_ZERO_SHUTTER_LAG = 2; // 0x2
+    field public static final int ERROR_CAMERA_CLOSED = 3; // 0x3
+    field public static final int ERROR_CAPTURE_FAILED = 2; // 0x2
+    field public static final int ERROR_FILE_IO = 1; // 0x1
+    field public static final int ERROR_INVALID_CAMERA = 4; // 0x4
+    field public static final int ERROR_UNKNOWN = 0; // 0x0
+    field public static final int FLASH_MODE_AUTO = 0; // 0x0
+    field public static final int FLASH_MODE_OFF = 2; // 0x2
+    field public static final int FLASH_MODE_ON = 1; // 0x1
+    field public static final int FLASH_MODE_SCREEN = 3; // 0x3
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public static final int OUTPUT_FORMAT_JPEG = 0; // 0x0
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public static final int OUTPUT_FORMAT_JPEG_ULTRA_HDR = 1; // 0x1
+  }
+
+  public static final class ImageCapture.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.core.ImageCapture!> {
+    ctor public ImageCapture.Builder();
+    method public androidx.camera.core.ImageCapture build();
+    method public androidx.camera.core.ImageCapture.Builder setCaptureMode(int);
+    method public androidx.camera.core.ImageCapture.Builder setFlashMode(int);
+    method public androidx.camera.core.ImageCapture.Builder setIoExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.core.ImageCapture.Builder setJpegQuality(@IntRange(from=1, to=100) int);
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public androidx.camera.core.ImageCapture.Builder setOutputFormat(int);
+    method public androidx.camera.core.ImageCapture.Builder setPostviewEnabled(boolean);
+    method public androidx.camera.core.ImageCapture.Builder setPostviewResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method public androidx.camera.core.ImageCapture.Builder setResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method public androidx.camera.core.ImageCapture.Builder setScreenFlash(androidx.camera.core.ImageCapture.ScreenFlash);
+    method @Deprecated public androidx.camera.core.ImageCapture.Builder setTargetAspectRatio(int);
+    method public androidx.camera.core.ImageCapture.Builder setTargetName(String);
+    method @Deprecated public androidx.camera.core.ImageCapture.Builder setTargetResolution(android.util.Size);
+    method public androidx.camera.core.ImageCapture.Builder setTargetRotation(int);
+  }
+
+  public static final class ImageCapture.Metadata {
+    ctor public ImageCapture.Metadata();
+    method public android.location.Location? getLocation();
+    method public boolean isReversedHorizontal();
+    method public boolean isReversedVertical();
+    method public void setLocation(android.location.Location?);
+    method public void setReversedHorizontal(boolean);
+    method public void setReversedVertical(boolean);
+  }
+
+  public abstract static class ImageCapture.OnImageCapturedCallback {
+    ctor public ImageCapture.OnImageCapturedCallback();
+    method public void onCaptureProcessProgressed(int);
+    method public void onCaptureStarted();
+    method public void onCaptureSuccess(androidx.camera.core.ImageProxy);
+    method public void onError(androidx.camera.core.ImageCaptureException);
+    method public void onPostviewBitmapAvailable(android.graphics.Bitmap);
+  }
+
+  public static interface ImageCapture.OnImageSavedCallback {
+    method public default void onCaptureProcessProgressed(int);
+    method public default void onCaptureStarted();
+    method public void onError(androidx.camera.core.ImageCaptureException);
+    method public void onImageSaved(androidx.camera.core.ImageCapture.OutputFileResults);
+    method public default void onPostviewBitmapAvailable(android.graphics.Bitmap);
+  }
+
+  public static final class ImageCapture.OutputFileOptions {
+  }
+
+  public static final class ImageCapture.OutputFileOptions.Builder {
+    ctor public ImageCapture.OutputFileOptions.Builder(android.content.ContentResolver, android.net.Uri, android.content.ContentValues);
+    ctor public ImageCapture.OutputFileOptions.Builder(java.io.File);
+    ctor public ImageCapture.OutputFileOptions.Builder(java.io.OutputStream);
+    method public androidx.camera.core.ImageCapture.OutputFileOptions build();
+    method public androidx.camera.core.ImageCapture.OutputFileOptions.Builder setMetadata(androidx.camera.core.ImageCapture.Metadata);
+  }
+
+  public static class ImageCapture.OutputFileResults {
+    method public android.net.Uri? getSavedUri();
+  }
+
+  public static interface ImageCapture.ScreenFlash {
+    method @UiThread public void apply(long, androidx.camera.core.ImageCapture.ScreenFlashListener);
+    method @UiThread public void clear();
+  }
+
+  public static interface ImageCapture.ScreenFlashListener {
+    method public void onCompleted();
+  }
+
+  public interface ImageCaptureCapabilities {
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public java.util.Set<java.lang.Integer!> getSupportedOutputFormats();
+    method public boolean isCaptureProcessProgressSupported();
+    method public boolean isPostviewSupported();
+  }
+
+  public class ImageCaptureException extends java.lang.Exception {
+    ctor public ImageCaptureException(int, String, Throwable?);
+    method public int getImageCaptureError();
+  }
+
+  public final class ImageCaptureExtKt {
+    method public static suspend Object? takePicture(androidx.camera.core.ImageCapture, androidx.camera.core.ImageCapture.OutputFileOptions outputFileOptions, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onCaptureStarted, optional kotlin.jvm.functions.Function1<? super java.lang.Integer,kotlin.Unit>? onCaptureProcessProgressed, optional kotlin.jvm.functions.Function1<? super android.graphics.Bitmap,kotlin.Unit>? onPostviewBitmapAvailable, kotlin.coroutines.Continuation<? super androidx.camera.core.ImageCapture.OutputFileResults>);
+    method public static suspend Object? takePicture(androidx.camera.core.ImageCapture, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onCaptureStarted, optional kotlin.jvm.functions.Function1<? super java.lang.Integer,kotlin.Unit>? onCaptureProcessProgressed, optional kotlin.jvm.functions.Function1<? super android.graphics.Bitmap,kotlin.Unit>? onPostviewBitmapAvailable, kotlin.coroutines.Continuation<? super androidx.camera.core.ImageProxy>);
+  }
+
+  public class ImageCaptureLatencyEstimate {
+    ctor public ImageCaptureLatencyEstimate(long, long);
+    method public long getCaptureLatencyMillis();
+    method public long getProcessingLatencyMillis();
+    method public long getTotalCaptureLatencyMillis();
+    field public static final long UNDEFINED_CAPTURE_LATENCY = -1L; // 0xffffffffffffffffL
+    field public static final androidx.camera.core.ImageCaptureLatencyEstimate UNDEFINED_IMAGE_CAPTURE_LATENCY;
+    field public static final long UNDEFINED_PROCESSING_LATENCY = -1L; // 0xffffffffffffffffL
+  }
+
+  public interface ImageInfo {
+    method public int getRotationDegrees();
+    method public default android.graphics.Matrix getSensorToBufferTransformMatrix();
+    method public long getTimestamp();
+  }
+
+  public interface ImageProcessor {
+    method public androidx.camera.core.ImageProcessor.Response process(androidx.camera.core.ImageProcessor.Request) throws androidx.camera.core.ProcessingException;
+  }
+
+  public static interface ImageProcessor.Request {
+    method public androidx.camera.core.ImageProxy getInputImage();
+    method public int getOutputFormat();
+  }
+
+  public static interface ImageProcessor.Response {
+    method public androidx.camera.core.ImageProxy getOutputImage();
+  }
+
+  public interface ImageProxy extends java.lang.AutoCloseable {
+    method public void close();
+    method public android.graphics.Rect getCropRect();
+    method public int getFormat();
+    method public int getHeight();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalGetImage public android.media.Image? getImage();
+    method public androidx.camera.core.ImageInfo getImageInfo();
+    method public androidx.camera.core.ImageProxy.PlaneProxy![] getPlanes();
+    method public int getWidth();
+    method public void setCropRect(android.graphics.Rect?);
+    method public default android.graphics.Bitmap toBitmap();
+  }
+
+  public static interface ImageProxy.PlaneProxy {
+    method public java.nio.ByteBuffer getBuffer();
+    method public int getPixelStride();
+    method public int getRowStride();
+  }
+
+  public class InitializationException extends java.lang.Exception {
+    ctor public InitializationException(String?);
+    ctor public InitializationException(String?, Throwable?);
+    ctor public InitializationException(Throwable?);
+  }
+
+  public class MeteringPoint {
+    method public float getSize();
+  }
+
+  public abstract class MeteringPointFactory {
+    method public final androidx.camera.core.MeteringPoint createPoint(float, float);
+    method public final androidx.camera.core.MeteringPoint createPoint(float, float, float);
+    method public static float getDefaultPointSize();
+  }
+
+  public class MirrorMode {
+    field public static final int MIRROR_MODE_OFF = 0; // 0x0
+    field public static final int MIRROR_MODE_ON = 1; // 0x1
+    field public static final int MIRROR_MODE_ON_FRONT_ONLY = 2; // 0x2
+  }
+
+  public final class Preview extends androidx.camera.core.UseCase {
+    method public androidx.camera.core.DynamicRange getDynamicRange();
+    method public static androidx.camera.core.PreviewCapabilities getPreviewCapabilities(androidx.camera.core.CameraInfo);
+    method public androidx.camera.core.ResolutionInfo? getResolutionInfo();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getResolutionSelector();
+    method public android.util.Range<java.lang.Integer!> getTargetFrameRate();
+    method public int getTargetRotation();
+    method public boolean isPreviewStabilizationEnabled();
+    method @UiThread public void setSurfaceProvider(androidx.camera.core.Preview.SurfaceProvider?);
+    method @UiThread public void setSurfaceProvider(java.util.concurrent.Executor, androidx.camera.core.Preview.SurfaceProvider?);
+    method public void setTargetRotation(int);
+  }
+
+  public static final class Preview.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.core.Preview!> {
+    ctor public Preview.Builder();
+    method public androidx.camera.core.Preview build();
+    method public androidx.camera.core.Preview.Builder setDynamicRange(androidx.camera.core.DynamicRange);
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalMirrorMode public androidx.camera.core.Preview.Builder setMirrorMode(int);
+    method public androidx.camera.core.Preview.Builder setPreviewStabilizationEnabled(boolean);
+    method public androidx.camera.core.Preview.Builder setResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method @Deprecated public androidx.camera.core.Preview.Builder setTargetAspectRatio(int);
+    method public androidx.camera.core.Preview.Builder setTargetFrameRate(android.util.Range<java.lang.Integer!>);
+    method public androidx.camera.core.Preview.Builder setTargetName(String);
+    method @Deprecated public androidx.camera.core.Preview.Builder setTargetResolution(android.util.Size);
+    method public androidx.camera.core.Preview.Builder setTargetRotation(int);
+  }
+
+  public static interface Preview.SurfaceProvider {
+    method public void onSurfaceRequested(androidx.camera.core.SurfaceRequest);
+  }
+
+  public interface PreviewCapabilities {
+    method public boolean isStabilizationSupported();
+  }
+
+  public class ProcessingException extends java.lang.Exception {
+    ctor public ProcessingException();
+  }
+
+  public class ResolutionInfo {
+    ctor public ResolutionInfo(android.util.Size, android.graphics.Rect, int);
+    method public android.graphics.Rect getCropRect();
+    method public android.util.Size getResolution();
+    method public int getRotationDegrees();
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public interface RetryPolicy {
+    method public static long getDefaultRetryTimeoutInMillis();
+    method public default long getTimeoutInMillis();
+    method public androidx.camera.core.RetryPolicy.RetryConfig onRetryDecisionRequested(androidx.camera.core.RetryPolicy.ExecutionState);
+    field public static final androidx.camera.core.RetryPolicy DEFAULT;
+    field public static final androidx.camera.core.RetryPolicy NEVER;
+    field public static final androidx.camera.core.RetryPolicy RETRY_UNAVAILABLE_CAMERA;
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static final class RetryPolicy.Builder {
+    ctor public RetryPolicy.Builder(androidx.camera.core.RetryPolicy);
+    method public androidx.camera.core.RetryPolicy build();
+    method public androidx.camera.core.RetryPolicy.Builder setTimeoutInMillis(long);
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static interface RetryPolicy.ExecutionState {
+    method public Throwable? getCause();
+    method public long getExecutedTimeInMillis();
+    method public int getNumOfAttempts();
+    method public int getStatus();
+    field public static final int STATUS_CAMERA_UNAVAILABLE = 2; // 0x2
+    field public static final int STATUS_CONFIGURATION_FAIL = 1; // 0x1
+    field public static final int STATUS_UNKNOWN_ERROR = 0; // 0x0
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static final class RetryPolicy.RetryConfig {
+    method public static long getDefaultRetryDelayInMillis();
+    method public long getRetryDelayInMillis();
+    method public boolean shouldRetry();
+    field public static final androidx.camera.core.RetryPolicy.RetryConfig DEFAULT_DELAY_RETRY;
+    field public static final androidx.camera.core.RetryPolicy.RetryConfig MINI_DELAY_RETRY;
+    field public static final androidx.camera.core.RetryPolicy.RetryConfig NOT_RETRY;
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static final class RetryPolicy.RetryConfig.Builder {
+    ctor public RetryPolicy.RetryConfig.Builder();
+    method public androidx.camera.core.RetryPolicy.RetryConfig build();
+    method public androidx.camera.core.RetryPolicy.RetryConfig.Builder setRetryDelayInMillis(@IntRange(from=100, to=2000) long);
+    method public androidx.camera.core.RetryPolicy.RetryConfig.Builder setShouldRetry(boolean);
+  }
+
+  public class SurfaceOrientedMeteringPointFactory extends androidx.camera.core.MeteringPointFactory {
+    ctor public SurfaceOrientedMeteringPointFactory(float, float);
+    ctor public SurfaceOrientedMeteringPointFactory(float, float, androidx.camera.core.UseCase);
+  }
+
+  public interface SurfaceOutput extends java.io.Closeable {
+    method public void close();
+    method public default android.graphics.Matrix getSensorToBufferTransform();
+    method public android.util.Size getSize();
+    method public android.view.Surface getSurface(java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.core.SurfaceOutput.Event!>);
+    method public int getTargets();
+    method public void updateTransformMatrix(float[], float[]);
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class SurfaceOutput.Event {
+    method public abstract int getEventCode();
+    method public abstract androidx.camera.core.SurfaceOutput getSurfaceOutput();
+    field public static final int EVENT_REQUEST_CLOSE = 0; // 0x0
+  }
+
+  public interface SurfaceProcessor {
+    method public void onInputSurface(androidx.camera.core.SurfaceRequest) throws androidx.camera.core.ProcessingException;
+    method public void onOutputSurface(androidx.camera.core.SurfaceOutput) throws androidx.camera.core.ProcessingException;
+  }
+
+  public final class SurfaceRequest {
+    method public void addRequestCancellationListener(java.util.concurrent.Executor, Runnable);
+    method public void clearTransformationInfoListener();
+    method public androidx.camera.core.DynamicRange getDynamicRange();
+    method public android.util.Size getResolution();
+    method public boolean invalidate();
+    method public void provideSurface(android.view.Surface, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.core.SurfaceRequest.Result!>);
+    method public void setTransformationInfoListener(java.util.concurrent.Executor, androidx.camera.core.SurfaceRequest.TransformationInfoListener);
+    method public boolean willNotProvideSurface();
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class SurfaceRequest.Result {
+    method public abstract int getResultCode();
+    method public abstract android.view.Surface getSurface();
+    field public static final int RESULT_INVALID_SURFACE = 2; // 0x2
+    field public static final int RESULT_REQUEST_CANCELLED = 1; // 0x1
+    field public static final int RESULT_SURFACE_ALREADY_PROVIDED = 3; // 0x3
+    field public static final int RESULT_SURFACE_USED_SUCCESSFULLY = 0; // 0x0
+    field public static final int RESULT_WILL_NOT_PROVIDE_SURFACE = 4; // 0x4
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class SurfaceRequest.TransformationInfo {
+    method public abstract android.graphics.Rect getCropRect();
+    method public abstract int getRotationDegrees();
+    method public abstract android.graphics.Matrix getSensorToBufferTransform();
+    method public abstract boolean hasCameraTransform();
+    method public abstract boolean isMirroring();
+  }
+
+  public static interface SurfaceRequest.TransformationInfoListener {
+    method public void onTransformationInfoUpdate(androidx.camera.core.SurfaceRequest.TransformationInfo);
+  }
+
+  public class TorchState {
+    field public static final int OFF = 0; // 0x0
+    field public static final int ON = 1; // 0x1
+  }
+
+  public abstract class UseCase {
+    method public static int snapToSurfaceRotation(@IntRange(from=0, to=359) int);
+  }
+
+  public final class UseCaseGroup {
+    method public java.util.List<androidx.camera.core.CameraEffect!> getEffects();
+    method public java.util.List<androidx.camera.core.UseCase!> getUseCases();
+    method public androidx.camera.core.ViewPort? getViewPort();
+  }
+
+  public static final class UseCaseGroup.Builder {
+    ctor public UseCaseGroup.Builder();
+    method public androidx.camera.core.UseCaseGroup.Builder addEffect(androidx.camera.core.CameraEffect);
+    method public androidx.camera.core.UseCaseGroup.Builder addUseCase(androidx.camera.core.UseCase);
+    method public androidx.camera.core.UseCaseGroup build();
+    method public androidx.camera.core.UseCaseGroup.Builder setViewPort(androidx.camera.core.ViewPort);
+  }
+
+  public final class ViewPort {
+    method public android.util.Rational getAspectRatio();
+    method public int getLayoutDirection();
+    method public int getRotation();
+    method public int getScaleType();
+    field public static final int FILL_CENTER = 1; // 0x1
+    field public static final int FILL_END = 2; // 0x2
+    field public static final int FILL_START = 0; // 0x0
+    field public static final int FIT = 3; // 0x3
+  }
+
+  public static final class ViewPort.Builder {
+    ctor public ViewPort.Builder(android.util.Rational, int);
+    method public androidx.camera.core.ViewPort build();
+    method public androidx.camera.core.ViewPort.Builder setLayoutDirection(int);
+    method public androidx.camera.core.ViewPort.Builder setScaleType(int);
+  }
+
+  public interface ZoomState {
+    method public float getLinearZoom();
+    method public float getMaxZoomRatio();
+    method public float getMinZoomRatio();
+    method public float getZoomRatio();
+  }
+
+}
+
+package androidx.camera.core.resolutionselector {
+
+  public final class AspectRatioStrategy {
+    ctor public AspectRatioStrategy(int, int);
+    method public int getFallbackRule();
+    method public int getPreferredAspectRatio();
+    field public static final int FALLBACK_RULE_AUTO = 1; // 0x1
+    field public static final int FALLBACK_RULE_NONE = 0; // 0x0
+    field public static final androidx.camera.core.resolutionselector.AspectRatioStrategy RATIO_16_9_FALLBACK_AUTO_STRATEGY;
+    field public static final androidx.camera.core.resolutionselector.AspectRatioStrategy RATIO_4_3_FALLBACK_AUTO_STRATEGY;
+  }
+
+  public interface ResolutionFilter {
+    method public java.util.List<android.util.Size!> filter(java.util.List<android.util.Size!>, int);
+  }
+
+  public final class ResolutionSelector {
+    method public int getAllowedResolutionMode();
+    method public androidx.camera.core.resolutionselector.AspectRatioStrategy getAspectRatioStrategy();
+    method public androidx.camera.core.resolutionselector.ResolutionFilter? getResolutionFilter();
+    method public androidx.camera.core.resolutionselector.ResolutionStrategy? getResolutionStrategy();
+    field public static final int PREFER_CAPTURE_RATE_OVER_HIGHER_RESOLUTION = 0; // 0x0
+    field public static final int PREFER_HIGHER_RESOLUTION_OVER_CAPTURE_RATE = 1; // 0x1
+  }
+
+  public static final class ResolutionSelector.Builder {
+    ctor public ResolutionSelector.Builder();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector build();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setAllowedResolutionMode(int);
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setAspectRatioStrategy(androidx.camera.core.resolutionselector.AspectRatioStrategy);
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setResolutionFilter(androidx.camera.core.resolutionselector.ResolutionFilter);
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setResolutionStrategy(androidx.camera.core.resolutionselector.ResolutionStrategy);
+  }
+
+  public final class ResolutionStrategy {
+    ctor public ResolutionStrategy(android.util.Size, int);
+    method public android.util.Size? getBoundSize();
+    method public int getFallbackRule();
+    field public static final int FALLBACK_RULE_CLOSEST_HIGHER = 2; // 0x2
+    field public static final int FALLBACK_RULE_CLOSEST_HIGHER_THEN_LOWER = 1; // 0x1
+    field public static final int FALLBACK_RULE_CLOSEST_LOWER = 4; // 0x4
+    field public static final int FALLBACK_RULE_CLOSEST_LOWER_THEN_HIGHER = 3; // 0x3
+    field public static final int FALLBACK_RULE_NONE = 0; // 0x0
+    field public static final androidx.camera.core.resolutionselector.ResolutionStrategy HIGHEST_AVAILABLE_STRATEGY;
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-core/api/res-1.4.0-beta02.txt
similarity index 100%
rename from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
rename to camera/camera-core/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-core/api/restricted_1.4.0-beta02.txt b/camera/camera-core/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..c44c05c
--- /dev/null
+++ b/camera/camera-core/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,738 @@
+// Signature format: 4.0
+package androidx.camera.core {
+
+  public class AspectRatio {
+    field public static final int RATIO_16_9 = 1; // 0x1
+    field public static final int RATIO_4_3 = 0; // 0x0
+    field public static final int RATIO_DEFAULT = -1; // 0xffffffff
+  }
+
+  public interface Camera {
+    method public androidx.camera.core.CameraControl getCameraControl();
+    method public androidx.camera.core.CameraInfo getCameraInfo();
+  }
+
+  public interface CameraControl {
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> cancelFocusAndMetering();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> enableTorch(boolean);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Integer!> setExposureCompensationIndex(int);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setLinearZoom(@FloatRange(from=0.0f, to=1.0f) float);
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setZoomRatio(float);
+    method public com.google.common.util.concurrent.ListenableFuture<androidx.camera.core.FocusMeteringResult!> startFocusAndMetering(androidx.camera.core.FocusMeteringAction);
+  }
+
+  public static final class CameraControl.OperationCanceledException extends java.lang.Exception {
+  }
+
+  public abstract class CameraEffect {
+    ctor protected CameraEffect(int, java.util.concurrent.Executor, androidx.camera.core.ImageProcessor, androidx.core.util.Consumer<java.lang.Throwable!>);
+    ctor protected CameraEffect(int, java.util.concurrent.Executor, androidx.camera.core.SurfaceProcessor, androidx.core.util.Consumer<java.lang.Throwable!>);
+    method public androidx.core.util.Consumer<java.lang.Throwable!> getErrorListener();
+    method public java.util.concurrent.Executor getExecutor();
+    method public androidx.camera.core.SurfaceProcessor? getSurfaceProcessor();
+    method public int getTargets();
+    field public static final int IMAGE_CAPTURE = 4; // 0x4
+    field public static final int PREVIEW = 1; // 0x1
+    field public static final int VIDEO_CAPTURE = 2; // 0x2
+  }
+
+  public interface CameraFilter {
+    method public java.util.List<androidx.camera.core.CameraInfo!> filter(java.util.List<androidx.camera.core.CameraInfo!>);
+  }
+
+  public interface CameraInfo {
+    method public androidx.camera.core.CameraSelector getCameraSelector();
+    method public androidx.lifecycle.LiveData<androidx.camera.core.CameraState!> getCameraState();
+    method public androidx.camera.core.ExposureState getExposureState();
+    method @FloatRange(from=0, fromInclusive=false) public default float getIntrinsicZoomRatio();
+    method public default int getLensFacing();
+    method public default java.util.Set<androidx.camera.core.CameraInfo!> getPhysicalCameraInfos();
+    method public int getSensorRotationDegrees();
+    method public int getSensorRotationDegrees(int);
+    method public default java.util.Set<android.util.Range<java.lang.Integer!>!> getSupportedFrameRateRanges();
+    method public androidx.lifecycle.LiveData<java.lang.Integer!> getTorchState();
+    method public androidx.lifecycle.LiveData<androidx.camera.core.ZoomState!> getZoomState();
+    method public boolean hasFlashUnit();
+    method public default boolean isFocusMeteringSupported(androidx.camera.core.FocusMeteringAction);
+    method public default boolean isLogicalMultiCameraSupported();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalZeroShutterLag public default boolean isZslSupported();
+    method public static boolean mustPlayShutterSound();
+    method public default java.util.Set<androidx.camera.core.DynamicRange!> querySupportedDynamicRanges(java.util.Set<androidx.camera.core.DynamicRange!>);
+  }
+
+  public final class CameraInfoUnavailableException extends java.lang.Exception {
+  }
+
+  public interface CameraProvider {
+    method public java.util.List<androidx.camera.core.CameraInfo!> getAvailableCameraInfos();
+    method public boolean hasCamera(androidx.camera.core.CameraSelector) throws androidx.camera.core.CameraInfoUnavailableException;
+  }
+
+  public final class CameraSelector {
+    method public java.util.List<androidx.camera.core.CameraInfo!> filter(java.util.List<androidx.camera.core.CameraInfo!>);
+    method public String? getPhysicalCameraId();
+    field public static final androidx.camera.core.CameraSelector DEFAULT_BACK_CAMERA;
+    field public static final androidx.camera.core.CameraSelector DEFAULT_FRONT_CAMERA;
+    field public static final int LENS_FACING_BACK = 1; // 0x1
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalLensFacing public static final int LENS_FACING_EXTERNAL = 2; // 0x2
+    field public static final int LENS_FACING_FRONT = 0; // 0x0
+    field public static final int LENS_FACING_UNKNOWN = -1; // 0xffffffff
+  }
+
+  public static final class CameraSelector.Builder {
+    ctor public CameraSelector.Builder();
+    method public androidx.camera.core.CameraSelector.Builder addCameraFilter(androidx.camera.core.CameraFilter);
+    method public androidx.camera.core.CameraSelector build();
+    method public androidx.camera.core.CameraSelector.Builder requireLensFacing(int);
+    method public androidx.camera.core.CameraSelector.Builder setPhysicalCameraId(String);
+  }
+
+  @com.google.auto.value.AutoValue public abstract class CameraState {
+    ctor public CameraState();
+    method public static androidx.camera.core.CameraState create(androidx.camera.core.CameraState.Type);
+    method public static androidx.camera.core.CameraState create(androidx.camera.core.CameraState.Type, androidx.camera.core.CameraState.StateError?);
+    method public abstract androidx.camera.core.CameraState.StateError? getError();
+    method public abstract androidx.camera.core.CameraState.Type getType();
+    field public static final int ERROR_CAMERA_DISABLED = 5; // 0x5
+    field public static final int ERROR_CAMERA_FATAL_ERROR = 6; // 0x6
+    field public static final int ERROR_CAMERA_IN_USE = 2; // 0x2
+    field public static final int ERROR_DO_NOT_DISTURB_MODE_ENABLED = 7; // 0x7
+    field public static final int ERROR_MAX_CAMERAS_IN_USE = 1; // 0x1
+    field public static final int ERROR_OTHER_RECOVERABLE_ERROR = 3; // 0x3
+    field public static final int ERROR_STREAM_CONFIG = 4; // 0x4
+  }
+
+  public enum CameraState.ErrorType {
+    enum_constant public static final androidx.camera.core.CameraState.ErrorType CRITICAL;
+    enum_constant public static final androidx.camera.core.CameraState.ErrorType RECOVERABLE;
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class CameraState.StateError {
+    ctor public CameraState.StateError();
+    method public static androidx.camera.core.CameraState.StateError create(int);
+    method public static androidx.camera.core.CameraState.StateError create(int, Throwable?);
+    method public abstract Throwable? getCause();
+    method public abstract int getCode();
+    method public androidx.camera.core.CameraState.ErrorType getType();
+  }
+
+  public enum CameraState.Type {
+    enum_constant public static final androidx.camera.core.CameraState.Type CLOSED;
+    enum_constant public static final androidx.camera.core.CameraState.Type CLOSING;
+    enum_constant public static final androidx.camera.core.CameraState.Type OPEN;
+    enum_constant public static final androidx.camera.core.CameraState.Type OPENING;
+    enum_constant public static final androidx.camera.core.CameraState.Type PENDING_OPEN;
+  }
+
+  public class CameraUnavailableException extends java.lang.Exception {
+    ctor public CameraUnavailableException(int);
+    ctor public CameraUnavailableException(int, String?);
+    ctor public CameraUnavailableException(int, String?, Throwable?);
+    ctor public CameraUnavailableException(int, Throwable?);
+    method public int getReason();
+    field public static final int CAMERA_DISABLED = 1; // 0x1
+    field public static final int CAMERA_DISCONNECTED = 2; // 0x2
+    field public static final int CAMERA_ERROR = 3; // 0x3
+    field public static final int CAMERA_IN_USE = 4; // 0x4
+    field public static final int CAMERA_MAX_IN_USE = 5; // 0x5
+    field public static final int CAMERA_UNAVAILABLE_DO_NOT_DISTURB = 6; // 0x6
+    field public static final int CAMERA_UNKNOWN_ERROR = 0; // 0x0
+  }
+
+  public final class CameraXConfig {
+    method public androidx.camera.core.CameraSelector? getAvailableCamerasLimiter(androidx.camera.core.CameraSelector?);
+    method public java.util.concurrent.Executor? getCameraExecutor(java.util.concurrent.Executor?);
+    method public long getCameraOpenRetryMaxTimeoutInMillisWhileResuming();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public androidx.camera.core.RetryPolicy getCameraProviderInitRetryPolicy();
+    method public int getMinimumLoggingLevel();
+    method public android.os.Handler? getSchedulerHandler(android.os.Handler?);
+  }
+
+  public static final class CameraXConfig.Builder {
+    method public androidx.camera.core.CameraXConfig build();
+    method public static androidx.camera.core.CameraXConfig.Builder fromConfig(androidx.camera.core.CameraXConfig);
+    method public androidx.camera.core.CameraXConfig.Builder setAvailableCamerasLimiter(androidx.camera.core.CameraSelector);
+    method public androidx.camera.core.CameraXConfig.Builder setCameraExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.core.CameraXConfig.Builder setCameraOpenRetryMaxTimeoutInMillisWhileResuming(long);
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public androidx.camera.core.CameraXConfig.Builder setCameraProviderInitRetryPolicy(androidx.camera.core.RetryPolicy);
+    method public androidx.camera.core.CameraXConfig.Builder setMinimumLoggingLevel(@IntRange(from=android.util.Log.DEBUG, to=android.util.Log.ERROR) int);
+    method public androidx.camera.core.CameraXConfig.Builder setSchedulerHandler(android.os.Handler);
+  }
+
+  public static interface CameraXConfig.Provider {
+    method public androidx.camera.core.CameraXConfig getCameraXConfig();
+  }
+
+  public class ConcurrentCamera {
+    ctor public ConcurrentCamera(java.util.List<androidx.camera.core.Camera!>);
+    method public java.util.List<androidx.camera.core.Camera!> getCameras();
+  }
+
+  public static final class ConcurrentCamera.SingleCameraConfig {
+    ctor public ConcurrentCamera.SingleCameraConfig(androidx.camera.core.CameraSelector, androidx.camera.core.UseCaseGroup, androidx.lifecycle.LifecycleOwner);
+    method public androidx.camera.core.CameraSelector getCameraSelector();
+    method public androidx.lifecycle.LifecycleOwner getLifecycleOwner();
+    method public androidx.camera.core.UseCaseGroup getUseCaseGroup();
+  }
+
+  public final class DisplayOrientedMeteringPointFactory extends androidx.camera.core.MeteringPointFactory {
+    ctor public DisplayOrientedMeteringPointFactory(android.view.Display, androidx.camera.core.CameraInfo, float, float);
+  }
+
+  public final class DynamicRange {
+    ctor public DynamicRange(int, int);
+    method public int getBitDepth();
+    method public int getEncoding();
+    field public static final int BIT_DEPTH_10_BIT = 10; // 0xa
+    field public static final int BIT_DEPTH_8_BIT = 8; // 0x8
+    field public static final int BIT_DEPTH_UNSPECIFIED = 0; // 0x0
+    field public static final androidx.camera.core.DynamicRange DOLBY_VISION_10_BIT;
+    field public static final androidx.camera.core.DynamicRange DOLBY_VISION_8_BIT;
+    field public static final int ENCODING_DOLBY_VISION = 6; // 0x6
+    field public static final int ENCODING_HDR10 = 4; // 0x4
+    field public static final int ENCODING_HDR10_PLUS = 5; // 0x5
+    field public static final int ENCODING_HDR_UNSPECIFIED = 2; // 0x2
+    field public static final int ENCODING_HLG = 3; // 0x3
+    field public static final int ENCODING_SDR = 1; // 0x1
+    field public static final int ENCODING_UNSPECIFIED = 0; // 0x0
+    field public static final androidx.camera.core.DynamicRange HDR10_10_BIT;
+    field public static final androidx.camera.core.DynamicRange HDR10_PLUS_10_BIT;
+    field public static final androidx.camera.core.DynamicRange HDR_UNSPECIFIED_10_BIT;
+    field public static final androidx.camera.core.DynamicRange HLG_10_BIT;
+    field public static final androidx.camera.core.DynamicRange SDR;
+    field public static final androidx.camera.core.DynamicRange UNSPECIFIED;
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalGetImage {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalImageCaptureOutputFormat {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalLensFacing {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalMirrorMode {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalRetryPolicy {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalUseCaseApi {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalZeroShutterLag {
+  }
+
+  public interface ExposureState {
+    method public int getExposureCompensationIndex();
+    method public android.util.Range<java.lang.Integer!> getExposureCompensationRange();
+    method public android.util.Rational getExposureCompensationStep();
+    method public boolean isExposureCompensationSupported();
+  }
+
+  public interface ExtendableBuilder<T> {
+    method public T build();
+  }
+
+  public final class FocusMeteringAction {
+    method public long getAutoCancelDurationInMillis();
+    method public java.util.List<androidx.camera.core.MeteringPoint!> getMeteringPointsAe();
+    method public java.util.List<androidx.camera.core.MeteringPoint!> getMeteringPointsAf();
+    method public java.util.List<androidx.camera.core.MeteringPoint!> getMeteringPointsAwb();
+    method public boolean isAutoCancelEnabled();
+    field public static final int FLAG_AE = 2; // 0x2
+    field public static final int FLAG_AF = 1; // 0x1
+    field public static final int FLAG_AWB = 4; // 0x4
+  }
+
+  public static class FocusMeteringAction.Builder {
+    ctor public FocusMeteringAction.Builder(androidx.camera.core.MeteringPoint);
+    ctor public FocusMeteringAction.Builder(androidx.camera.core.MeteringPoint, int);
+    method public androidx.camera.core.FocusMeteringAction.Builder addPoint(androidx.camera.core.MeteringPoint);
+    method public androidx.camera.core.FocusMeteringAction.Builder addPoint(androidx.camera.core.MeteringPoint, int);
+    method public androidx.camera.core.FocusMeteringAction build();
+    method public androidx.camera.core.FocusMeteringAction.Builder disableAutoCancel();
+    method public androidx.camera.core.FocusMeteringAction.Builder setAutoCancelDuration(@IntRange(from=1) long, java.util.concurrent.TimeUnit);
+  }
+
+  public final class FocusMeteringResult {
+    method public boolean isFocusSuccessful();
+  }
+
+  public final class ImageAnalysis extends androidx.camera.core.UseCase {
+    method public void clearAnalyzer();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalUseCaseApi public java.util.concurrent.Executor? getBackgroundExecutor();
+    method public int getBackpressureStrategy();
+    method public int getImageQueueDepth();
+    method public int getOutputImageFormat();
+    method public androidx.camera.core.ResolutionInfo? getResolutionInfo();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getResolutionSelector();
+    method public int getTargetRotation();
+    method public boolean isOutputImageRotationEnabled();
+    method public void setAnalyzer(java.util.concurrent.Executor, androidx.camera.core.ImageAnalysis.Analyzer);
+    method public void setTargetRotation(int);
+    field public static final int COORDINATE_SYSTEM_ORIGINAL = 0; // 0x0
+    field public static final int COORDINATE_SYSTEM_SENSOR = 2; // 0x2
+    field public static final int COORDINATE_SYSTEM_VIEW_REFERENCED = 1; // 0x1
+    field public static final int OUTPUT_IMAGE_FORMAT_RGBA_8888 = 2; // 0x2
+    field public static final int OUTPUT_IMAGE_FORMAT_YUV_420_888 = 1; // 0x1
+    field public static final int STRATEGY_BLOCK_PRODUCER = 1; // 0x1
+    field public static final int STRATEGY_KEEP_ONLY_LATEST = 0; // 0x0
+  }
+
+  public static interface ImageAnalysis.Analyzer {
+    method public void analyze(androidx.camera.core.ImageProxy);
+    method public default android.util.Size? getDefaultTargetResolution();
+    method public default int getTargetCoordinateSystem();
+    method public default void updateTransform(android.graphics.Matrix?);
+  }
+
+  public static final class ImageAnalysis.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.core.ImageAnalysis!> {
+    ctor public ImageAnalysis.Builder();
+    method public androidx.camera.core.ImageAnalysis build();
+    method public androidx.camera.core.ImageAnalysis.Builder setBackgroundExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.core.ImageAnalysis.Builder setBackpressureStrategy(int);
+    method public androidx.camera.core.ImageAnalysis.Builder setImageQueueDepth(int);
+    method public androidx.camera.core.ImageAnalysis.Builder setOutputImageFormat(int);
+    method @RequiresApi(23) public androidx.camera.core.ImageAnalysis.Builder setOutputImageRotationEnabled(boolean);
+    method public androidx.camera.core.ImageAnalysis.Builder setResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method @Deprecated public androidx.camera.core.ImageAnalysis.Builder setTargetAspectRatio(int);
+    method public androidx.camera.core.ImageAnalysis.Builder setTargetName(String);
+    method @Deprecated public androidx.camera.core.ImageAnalysis.Builder setTargetResolution(android.util.Size);
+    method public androidx.camera.core.ImageAnalysis.Builder setTargetRotation(int);
+  }
+
+  public final class ImageCapture extends androidx.camera.core.UseCase {
+    method public int getCaptureMode();
+    method public int getFlashMode();
+    method public static androidx.camera.core.ImageCaptureCapabilities getImageCaptureCapabilities(androidx.camera.core.CameraInfo);
+    method @IntRange(from=1, to=100) public int getJpegQuality();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public int getOutputFormat();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getPostviewResolutionSelector();
+    method public androidx.camera.core.ImageCaptureLatencyEstimate getRealtimeCaptureLatencyEstimate();
+    method public androidx.camera.core.ResolutionInfo? getResolutionInfo();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getResolutionSelector();
+    method public androidx.camera.core.ImageCapture.ScreenFlash? getScreenFlash();
+    method public int getTargetRotation();
+    method public boolean isPostviewEnabled();
+    method public void setCropAspectRatio(android.util.Rational);
+    method public void setFlashMode(int);
+    method public void setScreenFlash(androidx.camera.core.ImageCapture.ScreenFlash?);
+    method public void setTargetRotation(int);
+    method public void takePicture(androidx.camera.core.ImageCapture.OutputFileOptions, java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageSavedCallback);
+    method public void takePicture(java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageCapturedCallback);
+    field public static final int CAPTURE_MODE_MAXIMIZE_QUALITY = 0; // 0x0
+    field public static final int CAPTURE_MODE_MINIMIZE_LATENCY = 1; // 0x1
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalZeroShutterLag public static final int CAPTURE_MODE_ZERO_SHUTTER_LAG = 2; // 0x2
+    field public static final int ERROR_CAMERA_CLOSED = 3; // 0x3
+    field public static final int ERROR_CAPTURE_FAILED = 2; // 0x2
+    field public static final int ERROR_FILE_IO = 1; // 0x1
+    field public static final int ERROR_INVALID_CAMERA = 4; // 0x4
+    field public static final int ERROR_UNKNOWN = 0; // 0x0
+    field public static final int FLASH_MODE_AUTO = 0; // 0x0
+    field public static final int FLASH_MODE_OFF = 2; // 0x2
+    field public static final int FLASH_MODE_ON = 1; // 0x1
+    field public static final int FLASH_MODE_SCREEN = 3; // 0x3
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public static final int OUTPUT_FORMAT_JPEG = 0; // 0x0
+    field @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public static final int OUTPUT_FORMAT_JPEG_ULTRA_HDR = 1; // 0x1
+  }
+
+  public static final class ImageCapture.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.core.ImageCapture!> {
+    ctor public ImageCapture.Builder();
+    method public androidx.camera.core.ImageCapture build();
+    method public androidx.camera.core.ImageCapture.Builder setCaptureMode(int);
+    method public androidx.camera.core.ImageCapture.Builder setFlashMode(int);
+    method public androidx.camera.core.ImageCapture.Builder setIoExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.core.ImageCapture.Builder setJpegQuality(@IntRange(from=1, to=100) int);
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public androidx.camera.core.ImageCapture.Builder setOutputFormat(int);
+    method public androidx.camera.core.ImageCapture.Builder setPostviewEnabled(boolean);
+    method public androidx.camera.core.ImageCapture.Builder setPostviewResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method public androidx.camera.core.ImageCapture.Builder setResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method public androidx.camera.core.ImageCapture.Builder setScreenFlash(androidx.camera.core.ImageCapture.ScreenFlash);
+    method @Deprecated public androidx.camera.core.ImageCapture.Builder setTargetAspectRatio(int);
+    method public androidx.camera.core.ImageCapture.Builder setTargetName(String);
+    method @Deprecated public androidx.camera.core.ImageCapture.Builder setTargetResolution(android.util.Size);
+    method public androidx.camera.core.ImageCapture.Builder setTargetRotation(int);
+  }
+
+  public static final class ImageCapture.Metadata {
+    ctor public ImageCapture.Metadata();
+    method public android.location.Location? getLocation();
+    method public boolean isReversedHorizontal();
+    method public boolean isReversedVertical();
+    method public void setLocation(android.location.Location?);
+    method public void setReversedHorizontal(boolean);
+    method public void setReversedVertical(boolean);
+  }
+
+  public abstract static class ImageCapture.OnImageCapturedCallback {
+    ctor public ImageCapture.OnImageCapturedCallback();
+    method public void onCaptureProcessProgressed(int);
+    method public void onCaptureStarted();
+    method public void onCaptureSuccess(androidx.camera.core.ImageProxy);
+    method public void onError(androidx.camera.core.ImageCaptureException);
+    method public void onPostviewBitmapAvailable(android.graphics.Bitmap);
+  }
+
+  public static interface ImageCapture.OnImageSavedCallback {
+    method public default void onCaptureProcessProgressed(int);
+    method public default void onCaptureStarted();
+    method public void onError(androidx.camera.core.ImageCaptureException);
+    method public void onImageSaved(androidx.camera.core.ImageCapture.OutputFileResults);
+    method public default void onPostviewBitmapAvailable(android.graphics.Bitmap);
+  }
+
+  public static final class ImageCapture.OutputFileOptions {
+  }
+
+  public static final class ImageCapture.OutputFileOptions.Builder {
+    ctor public ImageCapture.OutputFileOptions.Builder(android.content.ContentResolver, android.net.Uri, android.content.ContentValues);
+    ctor public ImageCapture.OutputFileOptions.Builder(java.io.File);
+    ctor public ImageCapture.OutputFileOptions.Builder(java.io.OutputStream);
+    method public androidx.camera.core.ImageCapture.OutputFileOptions build();
+    method public androidx.camera.core.ImageCapture.OutputFileOptions.Builder setMetadata(androidx.camera.core.ImageCapture.Metadata);
+  }
+
+  public static class ImageCapture.OutputFileResults {
+    method public android.net.Uri? getSavedUri();
+  }
+
+  public static interface ImageCapture.ScreenFlash {
+    method @UiThread public void apply(long, androidx.camera.core.ImageCapture.ScreenFlashListener);
+    method @UiThread public void clear();
+  }
+
+  public static interface ImageCapture.ScreenFlashListener {
+    method public void onCompleted();
+  }
+
+  public interface ImageCaptureCapabilities {
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalImageCaptureOutputFormat public java.util.Set<java.lang.Integer!> getSupportedOutputFormats();
+    method public boolean isCaptureProcessProgressSupported();
+    method public boolean isPostviewSupported();
+  }
+
+  public class ImageCaptureException extends java.lang.Exception {
+    ctor public ImageCaptureException(int, String, Throwable?);
+    method public int getImageCaptureError();
+  }
+
+  public final class ImageCaptureExtKt {
+    method public static suspend Object? takePicture(androidx.camera.core.ImageCapture, androidx.camera.core.ImageCapture.OutputFileOptions outputFileOptions, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onCaptureStarted, optional kotlin.jvm.functions.Function1<? super java.lang.Integer,kotlin.Unit>? onCaptureProcessProgressed, optional kotlin.jvm.functions.Function1<? super android.graphics.Bitmap,kotlin.Unit>? onPostviewBitmapAvailable, kotlin.coroutines.Continuation<? super androidx.camera.core.ImageCapture.OutputFileResults>);
+    method public static suspend Object? takePicture(androidx.camera.core.ImageCapture, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onCaptureStarted, optional kotlin.jvm.functions.Function1<? super java.lang.Integer,kotlin.Unit>? onCaptureProcessProgressed, optional kotlin.jvm.functions.Function1<? super android.graphics.Bitmap,kotlin.Unit>? onPostviewBitmapAvailable, kotlin.coroutines.Continuation<? super androidx.camera.core.ImageProxy>);
+  }
+
+  public class ImageCaptureLatencyEstimate {
+    ctor public ImageCaptureLatencyEstimate(long, long);
+    method public long getCaptureLatencyMillis();
+    method public long getProcessingLatencyMillis();
+    method public long getTotalCaptureLatencyMillis();
+    field public static final long UNDEFINED_CAPTURE_LATENCY = -1L; // 0xffffffffffffffffL
+    field public static final androidx.camera.core.ImageCaptureLatencyEstimate UNDEFINED_IMAGE_CAPTURE_LATENCY;
+    field public static final long UNDEFINED_PROCESSING_LATENCY = -1L; // 0xffffffffffffffffL
+  }
+
+  public interface ImageInfo {
+    method public int getRotationDegrees();
+    method public default android.graphics.Matrix getSensorToBufferTransformMatrix();
+    method public long getTimestamp();
+  }
+
+  public interface ImageProcessor {
+    method public androidx.camera.core.ImageProcessor.Response process(androidx.camera.core.ImageProcessor.Request) throws androidx.camera.core.ProcessingException;
+  }
+
+  public static interface ImageProcessor.Request {
+    method public androidx.camera.core.ImageProxy getInputImage();
+    method public int getOutputFormat();
+  }
+
+  public static interface ImageProcessor.Response {
+    method public androidx.camera.core.ImageProxy getOutputImage();
+  }
+
+  public interface ImageProxy extends java.lang.AutoCloseable {
+    method public void close();
+    method public android.graphics.Rect getCropRect();
+    method public int getFormat();
+    method public int getHeight();
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalGetImage public android.media.Image? getImage();
+    method public androidx.camera.core.ImageInfo getImageInfo();
+    method public androidx.camera.core.ImageProxy.PlaneProxy![] getPlanes();
+    method public int getWidth();
+    method public void setCropRect(android.graphics.Rect?);
+    method public default android.graphics.Bitmap toBitmap();
+  }
+
+  public static interface ImageProxy.PlaneProxy {
+    method public java.nio.ByteBuffer getBuffer();
+    method public int getPixelStride();
+    method public int getRowStride();
+  }
+
+  public class InitializationException extends java.lang.Exception {
+    ctor public InitializationException(String?);
+    ctor public InitializationException(String?, Throwable?);
+    ctor public InitializationException(Throwable?);
+  }
+
+  public class MeteringPoint {
+    method public float getSize();
+  }
+
+  public abstract class MeteringPointFactory {
+    method public final androidx.camera.core.MeteringPoint createPoint(float, float);
+    method public final androidx.camera.core.MeteringPoint createPoint(float, float, float);
+    method public static float getDefaultPointSize();
+  }
+
+  public class MirrorMode {
+    field public static final int MIRROR_MODE_OFF = 0; // 0x0
+    field public static final int MIRROR_MODE_ON = 1; // 0x1
+    field public static final int MIRROR_MODE_ON_FRONT_ONLY = 2; // 0x2
+  }
+
+  public final class Preview extends androidx.camera.core.UseCase {
+    method public androidx.camera.core.DynamicRange getDynamicRange();
+    method public static androidx.camera.core.PreviewCapabilities getPreviewCapabilities(androidx.camera.core.CameraInfo);
+    method public androidx.camera.core.ResolutionInfo? getResolutionInfo();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector? getResolutionSelector();
+    method public android.util.Range<java.lang.Integer!> getTargetFrameRate();
+    method public int getTargetRotation();
+    method public boolean isPreviewStabilizationEnabled();
+    method @UiThread public void setSurfaceProvider(androidx.camera.core.Preview.SurfaceProvider?);
+    method @UiThread public void setSurfaceProvider(java.util.concurrent.Executor, androidx.camera.core.Preview.SurfaceProvider?);
+    method public void setTargetRotation(int);
+  }
+
+  public static final class Preview.Builder implements androidx.camera.core.ExtendableBuilder<androidx.camera.core.Preview!> {
+    ctor public Preview.Builder();
+    method public androidx.camera.core.Preview build();
+    method public androidx.camera.core.Preview.Builder setDynamicRange(androidx.camera.core.DynamicRange);
+    method @SuppressCompatibility @androidx.camera.core.ExperimentalMirrorMode public androidx.camera.core.Preview.Builder setMirrorMode(int);
+    method public androidx.camera.core.Preview.Builder setPreviewStabilizationEnabled(boolean);
+    method public androidx.camera.core.Preview.Builder setResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector);
+    method @Deprecated public androidx.camera.core.Preview.Builder setTargetAspectRatio(int);
+    method public androidx.camera.core.Preview.Builder setTargetFrameRate(android.util.Range<java.lang.Integer!>);
+    method public androidx.camera.core.Preview.Builder setTargetName(String);
+    method @Deprecated public androidx.camera.core.Preview.Builder setTargetResolution(android.util.Size);
+    method public androidx.camera.core.Preview.Builder setTargetRotation(int);
+  }
+
+  public static interface Preview.SurfaceProvider {
+    method public void onSurfaceRequested(androidx.camera.core.SurfaceRequest);
+  }
+
+  public interface PreviewCapabilities {
+    method public boolean isStabilizationSupported();
+  }
+
+  public class ProcessingException extends java.lang.Exception {
+    ctor public ProcessingException();
+  }
+
+  public class ResolutionInfo {
+    ctor public ResolutionInfo(android.util.Size, android.graphics.Rect, int);
+    method public android.graphics.Rect getCropRect();
+    method public android.util.Size getResolution();
+    method public int getRotationDegrees();
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public interface RetryPolicy {
+    method public static long getDefaultRetryTimeoutInMillis();
+    method public default long getTimeoutInMillis();
+    method public androidx.camera.core.RetryPolicy.RetryConfig onRetryDecisionRequested(androidx.camera.core.RetryPolicy.ExecutionState);
+    field public static final androidx.camera.core.RetryPolicy DEFAULT;
+    field public static final androidx.camera.core.RetryPolicy NEVER;
+    field public static final androidx.camera.core.RetryPolicy RETRY_UNAVAILABLE_CAMERA;
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static final class RetryPolicy.Builder {
+    ctor public RetryPolicy.Builder(androidx.camera.core.RetryPolicy);
+    method public androidx.camera.core.RetryPolicy build();
+    method public androidx.camera.core.RetryPolicy.Builder setTimeoutInMillis(long);
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static interface RetryPolicy.ExecutionState {
+    method public Throwable? getCause();
+    method public long getExecutedTimeInMillis();
+    method public int getNumOfAttempts();
+    method public int getStatus();
+    field public static final int STATUS_CAMERA_UNAVAILABLE = 2; // 0x2
+    field public static final int STATUS_CONFIGURATION_FAIL = 1; // 0x1
+    field public static final int STATUS_UNKNOWN_ERROR = 0; // 0x0
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static final class RetryPolicy.RetryConfig {
+    method public static long getDefaultRetryDelayInMillis();
+    method public long getRetryDelayInMillis();
+    method public boolean shouldRetry();
+    field public static final androidx.camera.core.RetryPolicy.RetryConfig DEFAULT_DELAY_RETRY;
+    field public static final androidx.camera.core.RetryPolicy.RetryConfig MINI_DELAY_RETRY;
+    field public static final androidx.camera.core.RetryPolicy.RetryConfig NOT_RETRY;
+  }
+
+  @SuppressCompatibility @androidx.camera.core.ExperimentalRetryPolicy public static final class RetryPolicy.RetryConfig.Builder {
+    ctor public RetryPolicy.RetryConfig.Builder();
+    method public androidx.camera.core.RetryPolicy.RetryConfig build();
+    method public androidx.camera.core.RetryPolicy.RetryConfig.Builder setRetryDelayInMillis(@IntRange(from=100, to=2000) long);
+    method public androidx.camera.core.RetryPolicy.RetryConfig.Builder setShouldRetry(boolean);
+  }
+
+  public class SurfaceOrientedMeteringPointFactory extends androidx.camera.core.MeteringPointFactory {
+    ctor public SurfaceOrientedMeteringPointFactory(float, float);
+    ctor public SurfaceOrientedMeteringPointFactory(float, float, androidx.camera.core.UseCase);
+  }
+
+  public interface SurfaceOutput extends java.io.Closeable {
+    method public void close();
+    method public default android.graphics.Matrix getSensorToBufferTransform();
+    method public android.util.Size getSize();
+    method public android.view.Surface getSurface(java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.core.SurfaceOutput.Event!>);
+    method public int getTargets();
+    method public void updateTransformMatrix(float[], float[]);
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class SurfaceOutput.Event {
+    method public abstract int getEventCode();
+    method public abstract androidx.camera.core.SurfaceOutput getSurfaceOutput();
+    field public static final int EVENT_REQUEST_CLOSE = 0; // 0x0
+  }
+
+  public interface SurfaceProcessor {
+    method public void onInputSurface(androidx.camera.core.SurfaceRequest) throws androidx.camera.core.ProcessingException;
+    method public void onOutputSurface(androidx.camera.core.SurfaceOutput) throws androidx.camera.core.ProcessingException;
+  }
+
+  public final class SurfaceRequest {
+    method public void addRequestCancellationListener(java.util.concurrent.Executor, Runnable);
+    method public void clearTransformationInfoListener();
+    method public androidx.camera.core.DynamicRange getDynamicRange();
+    method public android.util.Size getResolution();
+    method public boolean invalidate();
+    method public void provideSurface(android.view.Surface, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.core.SurfaceRequest.Result!>);
+    method public void setTransformationInfoListener(java.util.concurrent.Executor, androidx.camera.core.SurfaceRequest.TransformationInfoListener);
+    method public boolean willNotProvideSurface();
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class SurfaceRequest.Result {
+    method public abstract int getResultCode();
+    method public abstract android.view.Surface getSurface();
+    field public static final int RESULT_INVALID_SURFACE = 2; // 0x2
+    field public static final int RESULT_REQUEST_CANCELLED = 1; // 0x1
+    field public static final int RESULT_SURFACE_ALREADY_PROVIDED = 3; // 0x3
+    field public static final int RESULT_SURFACE_USED_SUCCESSFULLY = 0; // 0x0
+    field public static final int RESULT_WILL_NOT_PROVIDE_SURFACE = 4; // 0x4
+  }
+
+  @com.google.auto.value.AutoValue public abstract static class SurfaceRequest.TransformationInfo {
+    method public abstract android.graphics.Rect getCropRect();
+    method public abstract int getRotationDegrees();
+    method public abstract android.graphics.Matrix getSensorToBufferTransform();
+    method public abstract boolean hasCameraTransform();
+    method public abstract boolean isMirroring();
+  }
+
+  public static interface SurfaceRequest.TransformationInfoListener {
+    method public void onTransformationInfoUpdate(androidx.camera.core.SurfaceRequest.TransformationInfo);
+  }
+
+  public class TorchState {
+    field public static final int OFF = 0; // 0x0
+    field public static final int ON = 1; // 0x1
+  }
+
+  public abstract class UseCase {
+    method public static int snapToSurfaceRotation(@IntRange(from=0, to=359) int);
+  }
+
+  public final class UseCaseGroup {
+    method public java.util.List<androidx.camera.core.CameraEffect!> getEffects();
+    method public java.util.List<androidx.camera.core.UseCase!> getUseCases();
+    method public androidx.camera.core.ViewPort? getViewPort();
+  }
+
+  public static final class UseCaseGroup.Builder {
+    ctor public UseCaseGroup.Builder();
+    method public androidx.camera.core.UseCaseGroup.Builder addEffect(androidx.camera.core.CameraEffect);
+    method public androidx.camera.core.UseCaseGroup.Builder addUseCase(androidx.camera.core.UseCase);
+    method public androidx.camera.core.UseCaseGroup build();
+    method public androidx.camera.core.UseCaseGroup.Builder setViewPort(androidx.camera.core.ViewPort);
+  }
+
+  public final class ViewPort {
+    method public android.util.Rational getAspectRatio();
+    method public int getLayoutDirection();
+    method public int getRotation();
+    method public int getScaleType();
+    field public static final int FILL_CENTER = 1; // 0x1
+    field public static final int FILL_END = 2; // 0x2
+    field public static final int FILL_START = 0; // 0x0
+    field public static final int FIT = 3; // 0x3
+  }
+
+  public static final class ViewPort.Builder {
+    ctor public ViewPort.Builder(android.util.Rational, int);
+    method public androidx.camera.core.ViewPort build();
+    method public androidx.camera.core.ViewPort.Builder setLayoutDirection(int);
+    method public androidx.camera.core.ViewPort.Builder setScaleType(int);
+  }
+
+  public interface ZoomState {
+    method public float getLinearZoom();
+    method public float getMaxZoomRatio();
+    method public float getMinZoomRatio();
+    method public float getZoomRatio();
+  }
+
+}
+
+package androidx.camera.core.resolutionselector {
+
+  public final class AspectRatioStrategy {
+    ctor public AspectRatioStrategy(int, int);
+    method public int getFallbackRule();
+    method public int getPreferredAspectRatio();
+    field public static final int FALLBACK_RULE_AUTO = 1; // 0x1
+    field public static final int FALLBACK_RULE_NONE = 0; // 0x0
+    field public static final androidx.camera.core.resolutionselector.AspectRatioStrategy RATIO_16_9_FALLBACK_AUTO_STRATEGY;
+    field public static final androidx.camera.core.resolutionselector.AspectRatioStrategy RATIO_4_3_FALLBACK_AUTO_STRATEGY;
+  }
+
+  public interface ResolutionFilter {
+    method public java.util.List<android.util.Size!> filter(java.util.List<android.util.Size!>, int);
+  }
+
+  public final class ResolutionSelector {
+    method public int getAllowedResolutionMode();
+    method public androidx.camera.core.resolutionselector.AspectRatioStrategy getAspectRatioStrategy();
+    method public androidx.camera.core.resolutionselector.ResolutionFilter? getResolutionFilter();
+    method public androidx.camera.core.resolutionselector.ResolutionStrategy? getResolutionStrategy();
+    field public static final int PREFER_CAPTURE_RATE_OVER_HIGHER_RESOLUTION = 0; // 0x0
+    field public static final int PREFER_HIGHER_RESOLUTION_OVER_CAPTURE_RATE = 1; // 0x1
+  }
+
+  public static final class ResolutionSelector.Builder {
+    ctor public ResolutionSelector.Builder();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector build();
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setAllowedResolutionMode(int);
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setAspectRatioStrategy(androidx.camera.core.resolutionselector.AspectRatioStrategy);
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setResolutionFilter(androidx.camera.core.resolutionselector.ResolutionFilter);
+    method public androidx.camera.core.resolutionselector.ResolutionSelector.Builder setResolutionStrategy(androidx.camera.core.resolutionselector.ResolutionStrategy);
+  }
+
+  public final class ResolutionStrategy {
+    ctor public ResolutionStrategy(android.util.Size, int);
+    method public android.util.Size? getBoundSize();
+    method public int getFallbackRule();
+    field public static final int FALLBACK_RULE_CLOSEST_HIGHER = 2; // 0x2
+    field public static final int FALLBACK_RULE_CLOSEST_HIGHER_THEN_LOWER = 1; // 0x1
+    field public static final int FALLBACK_RULE_CLOSEST_LOWER = 4; // 0x4
+    field public static final int FALLBACK_RULE_CLOSEST_LOWER_THEN_HIGHER = 3; // 0x3
+    field public static final int FALLBACK_RULE_NONE = 0; // 0x0
+    field public static final androidx.camera.core.resolutionselector.ResolutionStrategy HIGHEST_AVAILABLE_STRATEGY;
+  }
+
+}
+
diff --git a/camera/camera-core/src/main/java/androidx/camera/core/impl/SessionConfig.java b/camera/camera-core/src/main/java/androidx/camera/core/impl/SessionConfig.java
index 518779a..a069bf3 100644
--- a/camera/camera-core/src/main/java/androidx/camera/core/impl/SessionConfig.java
+++ b/camera/camera-core/src/main/java/androidx/camera/core/impl/SessionConfig.java
@@ -52,15 +52,6 @@
  */
 public final class SessionConfig {
     public static final int DEFAULT_SESSION_TYPE = SessionConfiguration.SESSION_REGULAR;
-    // Current supported session template values and the bigger index in the list, the
-    // priority is higher.
-    private static final List<Integer> SUPPORTED_TEMPLATE_PRIORITY = Arrays.asList(
-            CameraDevice.TEMPLATE_PREVIEW,
-            // TODO(230673983): Based on the framework assumptions, we prioritize video capture
-            //  and disable ZSL (fallback to regular) if both use cases are bound.
-            CameraDevice.TEMPLATE_ZERO_SHUTTER_LAG,
-            CameraDevice.TEMPLATE_RECORD
-    );
     /** The set of {@link OutputConfig} that data from the camera will be put into. */
     private final List<OutputConfig> mOutputConfigs;
     /** The {@link OutputConfig} for the postview. */
@@ -354,12 +345,6 @@
         return mRepeatingCaptureConfig;
     }
 
-    /** Returns the one which has higher priority. */
-    public static int getHigherPriorityTemplateType(int type1, int type2) {
-        return SUPPORTED_TEMPLATE_PRIORITY.indexOf(type1)
-                >= SUPPORTED_TEMPLATE_PRIORITY.indexOf(type2) ? type1 : type2;
-    }
-
     public enum SessionError {
         /**
          * A {@link DeferrableSurface} contained in the config needs to be reset.
@@ -815,6 +800,16 @@
      * the parameters for the {@link SessionConfig} are compatible with each other
      */
     public static final class ValidatingBuilder extends BaseBuilder {
+        // Current supported session template values and the bigger index in the list, the
+        // priority is higher.
+        private static final List<Integer> SUPPORTED_TEMPLATE_PRIORITY = Arrays.asList(
+                CameraDevice.TEMPLATE_PREVIEW,
+                // TODO(230673983): Based on the framework assumptions, we prioritize video capture
+                //  and disable ZSL (fallback to regular) if both use cases are bound.
+                CameraDevice.TEMPLATE_ZERO_SHUTTER_LAG,
+                CameraDevice.TEMPLATE_RECORD
+        );
+
         private static final String TAG = "ValidatingBuilder";
         private final SurfaceSorter mSurfaceSorter = new SurfaceSorter();
         private boolean mValid = true;
@@ -840,7 +835,7 @@
             if (captureConfig.getTemplateType() != CaptureConfig.TEMPLATE_TYPE_NONE) {
                 mTemplateSet = true;
                 mCaptureConfigBuilder.setTemplateType(
-                        getHigherPriorityTemplateType(captureConfig.getTemplateType(),
+                        selectTemplateType(captureConfig.getTemplateType(),
                                 mCaptureConfigBuilder.getTemplateType()));
             }
 
@@ -993,5 +988,10 @@
                     mSessionType,
                     mPostviewOutputConfig);
         }
+
+        private int selectTemplateType(int type1, int type2) {
+            return SUPPORTED_TEMPLATE_PRIORITY.indexOf(type1)
+                    >= SUPPORTED_TEMPLATE_PRIORITY.indexOf(type2) ? type1 : type2;
+        }
     }
 }
diff --git a/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceEdge.java b/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceEdge.java
index 4308061..26d1f14 100644
--- a/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceEdge.java
+++ b/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceEdge.java
@@ -55,10 +55,13 @@
 import androidx.camera.core.impl.utils.futures.Futures;
 import androidx.camera.core.streamsharing.StreamSharing;
 import androidx.concurrent.futures.CallbackToFutureAdapter;
+import androidx.core.util.Consumer;
 
 import com.google.common.util.concurrent.ListenableFuture;
 
+import java.util.ArrayList;
 import java.util.HashSet;
+import java.util.List;
 import java.util.Set;
 
 /**
@@ -133,6 +136,9 @@
     // never be used again.
     private boolean mIsClosed = false;
 
+    private final List<Consumer<TransformationInfo>> mTransformationUpdatesListeners =
+            new ArrayList<>();
+
     /**
      * Please see the getters to understand the parameters.
      */
@@ -506,13 +512,33 @@
         });
     }
 
+    /**
+     * Adds a listener to receive transformation info updates.
+     */
+    public void addTransformationUpdateListener(@NonNull Consumer<TransformationInfo> consumer) {
+        checkNotNull(consumer);
+        mTransformationUpdatesListeners.add(consumer);
+    }
+
+    /**
+     * Removes a listener to stop receiving transformation info updates.
+     */
+    public void removeTransformationUpdateListener(@NonNull Consumer<TransformationInfo> consumer) {
+        checkNotNull(consumer);
+        mTransformationUpdatesListeners.remove(consumer);
+    }
+
     @MainThread
     private void notifyTransformationInfoUpdate() {
         checkMainThread();
+        TransformationInfo transformationInfo = TransformationInfo.of(
+                mCropRect, mRotationDegrees, mTargetRotation, hasCameraTransform(),
+                mSensorToBufferTransform, mMirroring);
         if (mProviderSurfaceRequest != null) {
-            mProviderSurfaceRequest.updateTransformationInfo(TransformationInfo.of(
-                    mCropRect, mRotationDegrees, mTargetRotation, hasCameraTransform(),
-                    mSensorToBufferTransform, mMirroring));
+            mProviderSurfaceRequest.updateTransformationInfo(transformationInfo);
+        }
+        for (Consumer<TransformationInfo> listener : mTransformationUpdatesListeners) {
+            listener.accept(transformationInfo);
         }
     }
 
diff --git a/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceProcessorNode.java b/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceProcessorNode.java
index 9633686..300fd86 100644
--- a/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceProcessorNode.java
+++ b/camera/camera-core/src/main/java/androidx/camera/core/processing/SurfaceProcessorNode.java
@@ -119,8 +119,10 @@
         for (OutConfig config : input.getOutConfigs()) {
             mOutput.put(config, transformSingleOutput(inputSurface, config));
         }
-        sendSurfaceRequest(inputSurface, mOutput);
+
+        sendSurfaceRequest(inputSurface);
         sendSurfaceOutputs(inputSurface, mOutput);
+        setUpRotationUpdates(inputSurface, mOutput);
         return mOutput;
     }
 
@@ -182,12 +184,9 @@
     /**
      * Creates {@link SurfaceRequest} and send it to {@link SurfaceProcessor}.
      */
-    private void sendSurfaceRequest(@NonNull SurfaceEdge input,
-            @NonNull Map<OutConfig, SurfaceEdge> outputs) {
-        SurfaceRequest surfaceRequest = input.createSurfaceRequest(mCameraInternal);
-        setUpRotationUpdates(surfaceRequest, outputs);
+    private void sendSurfaceRequest(@NonNull SurfaceEdge input) {
         try {
-            mSurfaceProcessor.onInputSurface(surfaceRequest);
+            mSurfaceProcessor.onInputSurface(input.createSurfaceRequest(mCameraInternal));
         } catch (ProcessingException e) {
             Logger.e(TAG, "Failed to send SurfaceRequest to SurfaceProcessor.", e);
         }
@@ -254,13 +253,13 @@
      * <p>Currently, we only propagates the rotation. When the
      * input edge's rotation changes, we re-calculate the delta and notify the output edge.
      *
-     * @param inputSurfaceRequest {@link SurfaceRequest} of the input edge.
-     * @param outputs             the output edges.
+     * @param inputEdge the input edge.
+     * @param outputs   the output edges.
      */
     void setUpRotationUpdates(
-            @NonNull SurfaceRequest inputSurfaceRequest,
+            @NonNull SurfaceEdge inputEdge,
             @NonNull Map<OutConfig, SurfaceEdge> outputs) {
-        inputSurfaceRequest.setTransformationInfoListener(mainThreadExecutor(), info -> {
+        inputEdge.addTransformationUpdateListener(info -> {
             for (Map.Entry<OutConfig, SurfaceEdge> output : outputs.entrySet()) {
                 // To obtain the rotation degrees delta, the rotation performed by the node must be
                 // eliminated.
diff --git a/camera/camera-core/src/main/java/androidx/camera/core/streamsharing/StreamSharing.java b/camera/camera-core/src/main/java/androidx/camera/core/streamsharing/StreamSharing.java
index b3e2cac..f86e539 100644
--- a/camera/camera-core/src/main/java/androidx/camera/core/streamsharing/StreamSharing.java
+++ b/camera/camera-core/src/main/java/androidx/camera/core/streamsharing/StreamSharing.java
@@ -19,11 +19,9 @@
 import static androidx.camera.core.CameraEffect.PREVIEW;
 import static androidx.camera.core.CameraEffect.VIDEO_CAPTURE;
 import static androidx.camera.core.MirrorMode.MIRROR_MODE_ON_FRONT_ONLY;
-import static androidx.camera.core.impl.CaptureConfig.TEMPLATE_TYPE_NONE;
 import static androidx.camera.core.impl.ImageFormatConstants.INTERNAL_DEFINED_IMAGE_FORMAT_PRIVATE;
 import static androidx.camera.core.impl.ImageInputConfig.OPTION_INPUT_FORMAT;
 import static androidx.camera.core.impl.ImageOutputConfig.OPTION_MIRROR_MODE;
-import static androidx.camera.core.impl.SessionConfig.getHigherPriorityTemplateType;
 import static androidx.camera.core.impl.UseCaseConfig.OPTION_CAPTURE_TYPE;
 import static androidx.camera.core.impl.utils.Threads.checkMainThread;
 import static androidx.camera.core.impl.utils.TransformUtils.getRotatedSize;
@@ -275,7 +273,6 @@
         SessionConfig.Builder builder = SessionConfig.Builder.createFrom(config,
                 streamSpec.getResolution());
 
-        propagateChildrenTemplate(builder);
         propagateChildrenCamera2Interop(streamSpec.getResolution(), builder);
 
         builder.addSurface(mCameraEdge.getDeferrableSurface(),
@@ -292,21 +289,6 @@
         return builder.build();
     }
 
-    private void propagateChildrenTemplate(@NonNull SessionConfig.Builder builder) {
-        int targetTemplate = TEMPLATE_TYPE_NONE;
-        for (UseCase child : getChildren()) {
-            targetTemplate = getHigherPriorityTemplateType(targetTemplate, getChildTemplate(child));
-        }
-        if (targetTemplate != TEMPLATE_TYPE_NONE) {
-            builder.setTemplateType(targetTemplate);
-        }
-    }
-
-    private static int getChildTemplate(@NonNull UseCase useCase) {
-        return useCase.getCurrentConfig().getDefaultSessionConfig().getTemplateType();
-    }
-
-
     /**
      * Propagates children Camera2interop settings.
      */
diff --git a/camera/camera-core/src/test/java/androidx/camera/core/processing/SurfaceProcessorNodeTest.kt b/camera/camera-core/src/test/java/androidx/camera/core/processing/SurfaceProcessorNodeTest.kt
index 432b845..1378dac 100644
--- a/camera/camera-core/src/test/java/androidx/camera/core/processing/SurfaceProcessorNodeTest.kt
+++ b/camera/camera-core/src/test/java/androidx/camera/core/processing/SurfaceProcessorNodeTest.kt
@@ -440,7 +440,8 @@
         assertThat(videoSurfaceOutput.size).isEqualTo(VIDEO_SIZE)
         assertThat(videoSurfaceOutput.inputCropRect).isEqualTo(VIDEO_CROP_RECT)
         assertThat(videoTransformInfo.cropRect).isEqualTo(sizeToRect(VIDEO_SIZE))
-        assertThat(videoTransformInfo.rotationDegrees).isEqualTo(270)
+        assertThat(videoTransformInfo.rotationDegrees)
+            .isEqualTo(INPUT_ROTATION_DEGREES - VIDEO_ROTATION_DEGREES)
         assertThat(videoSurfaceOutput.inputSize).isEqualTo(INPUT_SIZE)
         assertThat(videoSurfaceOutput.isMirroring).isTrue()
         assertThat(videoSurfaceOutput.camera).isNotNull()
diff --git a/camera/camera-core/src/test/java/androidx/camera/core/streamsharing/StreamSharingTest.kt b/camera/camera-core/src/test/java/androidx/camera/core/streamsharing/StreamSharingTest.kt
index 69fd488..fe7dc4b 100644
--- a/camera/camera-core/src/test/java/androidx/camera/core/streamsharing/StreamSharingTest.kt
+++ b/camera/camera-core/src/test/java/androidx/camera/core/streamsharing/StreamSharingTest.kt
@@ -22,8 +22,6 @@
 import android.graphics.SurfaceTexture
 import android.hardware.camera2.CameraCaptureSession
 import android.hardware.camera2.CameraDevice
-import android.hardware.camera2.CameraDevice.TEMPLATE_PREVIEW
-import android.hardware.camera2.CameraDevice.TEMPLATE_RECORD
 import android.os.Build
 import android.os.Looper.getMainLooper
 import android.util.Size
@@ -799,36 +797,4 @@
             )
             .isEqualTo(StabilizationMode.ON)
     }
-
-    @Test
-    fun propagateChildrenTemplate_noVideoCapture() {
-        // Arrange.
-        val preview = Preview.Builder().build()
-        val imageCapture = ImageCapture.Builder().build()
-        streamSharing = StreamSharing(camera, setOf(preview, imageCapture), useCaseConfigFactory)
-        streamSharing.bindToCamera(camera, null, defaultConfig)
-
-        // Act: update stream specification.
-        streamSharing.onSuggestedStreamSpecUpdated(StreamSpec.builder(size).build())
-
-        // Assert:
-        assertThat(streamSharing.sessionConfig.templateType).isEqualTo(TEMPLATE_PREVIEW)
-    }
-
-    @Test
-    fun propagateChildrenTemplate_hasVideoCapture() {
-        // Arrange.
-        val preview = Preview.Builder().build()
-        val imageCapture = ImageCapture.Builder().build()
-        val videoCapture = VideoCapture.withOutput(Recorder.Builder().build())
-        streamSharing =
-            StreamSharing(camera, setOf(preview, imageCapture, videoCapture), useCaseConfigFactory)
-        streamSharing.bindToCamera(camera, null, defaultConfig)
-
-        // Act: update stream specification.
-        streamSharing.onSuggestedStreamSpecUpdated(StreamSpec.builder(size).build())
-
-        // Assert:
-        assertThat(streamSharing.sessionConfig.templateType).isEqualTo(TEMPLATE_RECORD)
-    }
 }
diff --git a/camera/camera-effects-still-portrait/api/1.4.0-beta02.txt b/camera/camera-effects-still-portrait/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..e6f50d0
--- /dev/null
+++ b/camera/camera-effects-still-portrait/api/1.4.0-beta02.txt
@@ -0,0 +1 @@
+// Signature format: 4.0
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-effects-still-portrait/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-effects-still-portrait/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-effects-still-portrait/api/restricted_1.4.0-beta02.txt b/camera/camera-effects-still-portrait/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..e6f50d0
--- /dev/null
+++ b/camera/camera-effects-still-portrait/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1 @@
+// Signature format: 4.0
diff --git a/camera/camera-effects/api/1.4.0-beta02.txt b/camera/camera-effects/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..414b558
--- /dev/null
+++ b/camera/camera-effects/api/1.4.0-beta02.txt
@@ -0,0 +1,30 @@
+// Signature format: 4.0
+package androidx.camera.effects {
+
+  @com.google.auto.value.AutoValue public abstract class Frame {
+    ctor public Frame();
+    method public abstract android.graphics.Rect getCropRect();
+    method public android.graphics.Canvas getOverlayCanvas();
+    method @IntRange(from=0, to=359) public abstract int getRotationDegrees();
+    method public abstract android.graphics.Matrix getSensorToBufferTransform();
+    method public abstract android.util.Size getSize();
+    method public abstract long getTimestampNanos();
+    method public abstract boolean isMirroring();
+  }
+
+  public class OverlayEffect extends androidx.camera.core.CameraEffect implements java.lang.AutoCloseable {
+    ctor public OverlayEffect(int, int, android.os.Handler, androidx.core.util.Consumer<java.lang.Throwable!>);
+    method public void clearOnDrawListener();
+    method public void close();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Integer!> drawFrameAsync(long);
+    method public android.os.Handler getHandler();
+    method public int getQueueDepth();
+    method public void setOnDrawListener(androidx.arch.core.util.Function<androidx.camera.effects.Frame!,java.lang.Boolean!>);
+    field public static final int RESULT_CANCELLED_BY_CALLER = 4; // 0x4
+    field public static final int RESULT_FRAME_NOT_FOUND = 2; // 0x2
+    field public static final int RESULT_INVALID_SURFACE = 3; // 0x3
+    field public static final int RESULT_SUCCESS = 1; // 0x1
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-effects/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-effects/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-effects/api/restricted_1.4.0-beta02.txt b/camera/camera-effects/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..414b558
--- /dev/null
+++ b/camera/camera-effects/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,30 @@
+// Signature format: 4.0
+package androidx.camera.effects {
+
+  @com.google.auto.value.AutoValue public abstract class Frame {
+    ctor public Frame();
+    method public abstract android.graphics.Rect getCropRect();
+    method public android.graphics.Canvas getOverlayCanvas();
+    method @IntRange(from=0, to=359) public abstract int getRotationDegrees();
+    method public abstract android.graphics.Matrix getSensorToBufferTransform();
+    method public abstract android.util.Size getSize();
+    method public abstract long getTimestampNanos();
+    method public abstract boolean isMirroring();
+  }
+
+  public class OverlayEffect extends androidx.camera.core.CameraEffect implements java.lang.AutoCloseable {
+    ctor public OverlayEffect(int, int, android.os.Handler, androidx.core.util.Consumer<java.lang.Throwable!>);
+    method public void clearOnDrawListener();
+    method public void close();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Integer!> drawFrameAsync(long);
+    method public android.os.Handler getHandler();
+    method public int getQueueDepth();
+    method public void setOnDrawListener(androidx.arch.core.util.Function<androidx.camera.effects.Frame!,java.lang.Boolean!>);
+    field public static final int RESULT_CANCELLED_BY_CALLER = 4; // 0x4
+    field public static final int RESULT_FRAME_NOT_FOUND = 2; // 0x2
+    field public static final int RESULT_INVALID_SURFACE = 3; // 0x3
+    field public static final int RESULT_SUCCESS = 1; // 0x1
+  }
+
+}
+
diff --git a/camera/camera-extensions/api/1.4.0-beta02.txt b/camera/camera-extensions/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..c454cfc
--- /dev/null
+++ b/camera/camera-extensions/api/1.4.0-beta02.txt
@@ -0,0 +1,35 @@
+// Signature format: 4.0
+package androidx.camera.extensions {
+
+  public interface CameraExtensionsControl {
+    method public default void setExtensionStrength(@IntRange(from=0, to=100) int);
+  }
+
+  public interface CameraExtensionsInfo {
+    method public default androidx.lifecycle.LiveData<java.lang.Integer!>? getCurrentExtensionMode();
+    method public default androidx.lifecycle.LiveData<java.lang.Integer!>? getExtensionStrength();
+    method public default boolean isCurrentExtensionModeAvailable();
+    method public default boolean isExtensionStrengthAvailable();
+  }
+
+  public final class ExtensionMode {
+    field public static final int AUTO = 5; // 0x5
+    field public static final int BOKEH = 1; // 0x1
+    field public static final int FACE_RETOUCH = 4; // 0x4
+    field public static final int HDR = 2; // 0x2
+    field public static final int NIGHT = 3; // 0x3
+    field public static final int NONE = 0; // 0x0
+  }
+
+  public final class ExtensionsManager {
+    method public androidx.camera.extensions.CameraExtensionsControl? getCameraExtensionsControl(androidx.camera.core.CameraControl);
+    method public androidx.camera.extensions.CameraExtensionsInfo getCameraExtensionsInfo(androidx.camera.core.CameraInfo);
+    method public android.util.Range<java.lang.Long!>? getEstimatedCaptureLatencyRange(androidx.camera.core.CameraSelector, int);
+    method public androidx.camera.core.CameraSelector getExtensionEnabledCameraSelector(androidx.camera.core.CameraSelector, int);
+    method public static com.google.common.util.concurrent.ListenableFuture<androidx.camera.extensions.ExtensionsManager!> getInstanceAsync(android.content.Context, androidx.camera.core.CameraProvider);
+    method public boolean isExtensionAvailable(androidx.camera.core.CameraSelector, int);
+    method public boolean isImageAnalysisSupported(androidx.camera.core.CameraSelector, int);
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-extensions/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-extensions/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-extensions/api/restricted_1.4.0-beta02.txt b/camera/camera-extensions/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..c454cfc
--- /dev/null
+++ b/camera/camera-extensions/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,35 @@
+// Signature format: 4.0
+package androidx.camera.extensions {
+
+  public interface CameraExtensionsControl {
+    method public default void setExtensionStrength(@IntRange(from=0, to=100) int);
+  }
+
+  public interface CameraExtensionsInfo {
+    method public default androidx.lifecycle.LiveData<java.lang.Integer!>? getCurrentExtensionMode();
+    method public default androidx.lifecycle.LiveData<java.lang.Integer!>? getExtensionStrength();
+    method public default boolean isCurrentExtensionModeAvailable();
+    method public default boolean isExtensionStrengthAvailable();
+  }
+
+  public final class ExtensionMode {
+    field public static final int AUTO = 5; // 0x5
+    field public static final int BOKEH = 1; // 0x1
+    field public static final int FACE_RETOUCH = 4; // 0x4
+    field public static final int HDR = 2; // 0x2
+    field public static final int NIGHT = 3; // 0x3
+    field public static final int NONE = 0; // 0x0
+  }
+
+  public final class ExtensionsManager {
+    method public androidx.camera.extensions.CameraExtensionsControl? getCameraExtensionsControl(androidx.camera.core.CameraControl);
+    method public androidx.camera.extensions.CameraExtensionsInfo getCameraExtensionsInfo(androidx.camera.core.CameraInfo);
+    method public android.util.Range<java.lang.Long!>? getEstimatedCaptureLatencyRange(androidx.camera.core.CameraSelector, int);
+    method public androidx.camera.core.CameraSelector getExtensionEnabledCameraSelector(androidx.camera.core.CameraSelector, int);
+    method public static com.google.common.util.concurrent.ListenableFuture<androidx.camera.extensions.ExtensionsManager!> getInstanceAsync(android.content.Context, androidx.camera.core.CameraProvider);
+    method public boolean isExtensionAvailable(androidx.camera.core.CameraSelector, int);
+    method public boolean isImageAnalysisSupported(androidx.camera.core.CameraSelector, int);
+  }
+
+}
+
diff --git a/camera/camera-feature-combination-query-play-services/api/1.4.0-beta02.txt b/camera/camera-feature-combination-query-play-services/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..e6f50d0
--- /dev/null
+++ b/camera/camera-feature-combination-query-play-services/api/1.4.0-beta02.txt
@@ -0,0 +1 @@
+// Signature format: 4.0
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-feature-combination-query-play-services/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-feature-combination-query-play-services/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-feature-combination-query-play-services/api/restricted_1.4.0-beta02.txt b/camera/camera-feature-combination-query-play-services/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..e6f50d0
--- /dev/null
+++ b/camera/camera-feature-combination-query-play-services/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1 @@
+// Signature format: 4.0
diff --git a/camera/camera-feature-combination-query/api/1.4.0-beta02.txt b/camera/camera-feature-combination-query/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..e6f50d0
--- /dev/null
+++ b/camera/camera-feature-combination-query/api/1.4.0-beta02.txt
@@ -0,0 +1 @@
+// Signature format: 4.0
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-feature-combination-query/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-feature-combination-query/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-feature-combination-query/api/restricted_1.4.0-beta02.txt b/camera/camera-feature-combination-query/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..e6f50d0
--- /dev/null
+++ b/camera/camera-feature-combination-query/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1 @@
+// Signature format: 4.0
diff --git a/camera/camera-lifecycle/api/1.4.0-beta02.txt b/camera/camera-lifecycle/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..a73d56a
--- /dev/null
+++ b/camera/camera-lifecycle/api/1.4.0-beta02.txt
@@ -0,0 +1,36 @@
+// Signature format: 4.0
+package androidx.camera.lifecycle {
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalCameraProviderConfiguration {
+  }
+
+  public final class ProcessCameraProvider implements androidx.camera.core.CameraProvider {
+    method @MainThread public androidx.camera.core.Camera bindToLifecycle(androidx.lifecycle.LifecycleOwner lifecycleOwner, androidx.camera.core.CameraSelector cameraSelector, androidx.camera.core.UseCase?... useCases);
+    method @MainThread public androidx.camera.core.Camera bindToLifecycle(androidx.lifecycle.LifecycleOwner lifecycleOwner, androidx.camera.core.CameraSelector cameraSelector, androidx.camera.core.UseCaseGroup useCaseGroup);
+    method @MainThread public androidx.camera.core.ConcurrentCamera bindToLifecycle(java.util.List<androidx.camera.core.ConcurrentCamera.SingleCameraConfig?> singleCameraConfigs);
+    method @SuppressCompatibility @androidx.camera.lifecycle.ExperimentalCameraProviderConfiguration public static void configureInstance(androidx.camera.core.CameraXConfig cameraXConfig);
+    method public java.util.List<androidx.camera.core.CameraInfo> getAvailableCameraInfos();
+    method public java.util.List<java.util.List<androidx.camera.core.CameraInfo>> getAvailableConcurrentCameraInfos();
+    method public static com.google.common.util.concurrent.ListenableFuture<androidx.camera.lifecycle.ProcessCameraProvider> getInstance(android.content.Context context);
+    method @kotlin.jvm.Throws(exceptionClasses=CameraInfoUnavailableException::class) public boolean hasCamera(androidx.camera.core.CameraSelector cameraSelector) throws androidx.camera.core.CameraInfoUnavailableException;
+    method public boolean isBound(androidx.camera.core.UseCase useCase);
+    method @MainThread public boolean isConcurrentCameraModeOn();
+    method @VisibleForTesting public com.google.common.util.concurrent.ListenableFuture<java.lang.Void> shutdownAsync();
+    method @MainThread public void unbind(androidx.camera.core.UseCase?... useCases);
+    method @MainThread public void unbindAll();
+    property public final java.util.List<java.util.List<androidx.camera.core.CameraInfo>> availableConcurrentCameraInfos;
+    property @MainThread public final boolean isConcurrentCameraModeOn;
+    field public static final androidx.camera.lifecycle.ProcessCameraProvider.Companion Companion;
+  }
+
+  public static final class ProcessCameraProvider.Companion {
+    method @SuppressCompatibility @androidx.camera.lifecycle.ExperimentalCameraProviderConfiguration public void configureInstance(androidx.camera.core.CameraXConfig cameraXConfig);
+    method public com.google.common.util.concurrent.ListenableFuture<androidx.camera.lifecycle.ProcessCameraProvider> getInstance(android.content.Context context);
+  }
+
+  public final class ProcessCameraProviderExtKt {
+    method public static suspend Object? awaitInstance(androidx.camera.lifecycle.ProcessCameraProvider.Companion, android.content.Context context, kotlin.coroutines.Continuation<? super androidx.camera.lifecycle.ProcessCameraProvider>);
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-lifecycle/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-lifecycle/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-lifecycle/api/restricted_1.4.0-beta02.txt b/camera/camera-lifecycle/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..a73d56a
--- /dev/null
+++ b/camera/camera-lifecycle/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,36 @@
+// Signature format: 4.0
+package androidx.camera.lifecycle {
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalCameraProviderConfiguration {
+  }
+
+  public final class ProcessCameraProvider implements androidx.camera.core.CameraProvider {
+    method @MainThread public androidx.camera.core.Camera bindToLifecycle(androidx.lifecycle.LifecycleOwner lifecycleOwner, androidx.camera.core.CameraSelector cameraSelector, androidx.camera.core.UseCase?... useCases);
+    method @MainThread public androidx.camera.core.Camera bindToLifecycle(androidx.lifecycle.LifecycleOwner lifecycleOwner, androidx.camera.core.CameraSelector cameraSelector, androidx.camera.core.UseCaseGroup useCaseGroup);
+    method @MainThread public androidx.camera.core.ConcurrentCamera bindToLifecycle(java.util.List<androidx.camera.core.ConcurrentCamera.SingleCameraConfig?> singleCameraConfigs);
+    method @SuppressCompatibility @androidx.camera.lifecycle.ExperimentalCameraProviderConfiguration public static void configureInstance(androidx.camera.core.CameraXConfig cameraXConfig);
+    method public java.util.List<androidx.camera.core.CameraInfo> getAvailableCameraInfos();
+    method public java.util.List<java.util.List<androidx.camera.core.CameraInfo>> getAvailableConcurrentCameraInfos();
+    method public static com.google.common.util.concurrent.ListenableFuture<androidx.camera.lifecycle.ProcessCameraProvider> getInstance(android.content.Context context);
+    method @kotlin.jvm.Throws(exceptionClasses=CameraInfoUnavailableException::class) public boolean hasCamera(androidx.camera.core.CameraSelector cameraSelector) throws androidx.camera.core.CameraInfoUnavailableException;
+    method public boolean isBound(androidx.camera.core.UseCase useCase);
+    method @MainThread public boolean isConcurrentCameraModeOn();
+    method @VisibleForTesting public com.google.common.util.concurrent.ListenableFuture<java.lang.Void> shutdownAsync();
+    method @MainThread public void unbind(androidx.camera.core.UseCase?... useCases);
+    method @MainThread public void unbindAll();
+    property public final java.util.List<java.util.List<androidx.camera.core.CameraInfo>> availableConcurrentCameraInfos;
+    property @MainThread public final boolean isConcurrentCameraModeOn;
+    field public static final androidx.camera.lifecycle.ProcessCameraProvider.Companion Companion;
+  }
+
+  public static final class ProcessCameraProvider.Companion {
+    method @SuppressCompatibility @androidx.camera.lifecycle.ExperimentalCameraProviderConfiguration public void configureInstance(androidx.camera.core.CameraXConfig cameraXConfig);
+    method public com.google.common.util.concurrent.ListenableFuture<androidx.camera.lifecycle.ProcessCameraProvider> getInstance(android.content.Context context);
+  }
+
+  public final class ProcessCameraProviderExtKt {
+    method public static suspend Object? awaitInstance(androidx.camera.lifecycle.ProcessCameraProvider.Companion, android.content.Context context, kotlin.coroutines.Continuation<? super androidx.camera.lifecycle.ProcessCameraProvider>);
+  }
+
+}
+
diff --git a/camera/camera-mlkit-vision/api/1.4.0-beta02.txt b/camera/camera-mlkit-vision/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..0cfc1f5
--- /dev/null
+++ b/camera/camera-mlkit-vision/api/1.4.0-beta02.txt
@@ -0,0 +1,20 @@
+// Signature format: 4.0
+package androidx.camera.mlkit.vision {
+
+  public class MlKitAnalyzer implements androidx.camera.core.ImageAnalysis.Analyzer {
+    ctor public MlKitAnalyzer(java.util.List<com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>!>, int, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.mlkit.vision.MlKitAnalyzer.Result!>);
+    method public final void analyze(androidx.camera.core.ImageProxy);
+    method public final android.util.Size getDefaultTargetResolution();
+    method public final int getTargetCoordinateSystem();
+    method public final void updateTransform(android.graphics.Matrix?);
+  }
+
+  public static final class MlKitAnalyzer.Result {
+    ctor public MlKitAnalyzer.Result(java.util.Map<com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>!,java.lang.Object!>, long, java.util.Map<com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>!,java.lang.Throwable!>);
+    method public Throwable? getThrowable(com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>);
+    method public long getTimestamp();
+    method public <T> T? getValue(com.google.mlkit.vision.interfaces.Detector<T!>);
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-mlkit-vision/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-mlkit-vision/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-mlkit-vision/api/restricted_1.4.0-beta02.txt b/camera/camera-mlkit-vision/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..0cfc1f5
--- /dev/null
+++ b/camera/camera-mlkit-vision/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,20 @@
+// Signature format: 4.0
+package androidx.camera.mlkit.vision {
+
+  public class MlKitAnalyzer implements androidx.camera.core.ImageAnalysis.Analyzer {
+    ctor public MlKitAnalyzer(java.util.List<com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>!>, int, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.mlkit.vision.MlKitAnalyzer.Result!>);
+    method public final void analyze(androidx.camera.core.ImageProxy);
+    method public final android.util.Size getDefaultTargetResolution();
+    method public final int getTargetCoordinateSystem();
+    method public final void updateTransform(android.graphics.Matrix?);
+  }
+
+  public static final class MlKitAnalyzer.Result {
+    ctor public MlKitAnalyzer.Result(java.util.Map<com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>!,java.lang.Object!>, long, java.util.Map<com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>!,java.lang.Throwable!>);
+    method public Throwable? getThrowable(com.google.mlkit.vision.interfaces.Detector<? extends java.lang.Object!>);
+    method public long getTimestamp();
+    method public <T> T? getValue(com.google.mlkit.vision.interfaces.Detector<T!>);
+  }
+
+}
+
diff --git a/camera/camera-testing/src/main/java/androidx/camera/testing/impl/fakes/FakeUseCaseConfigFactory.java b/camera/camera-testing/src/main/java/androidx/camera/testing/impl/fakes/FakeUseCaseConfigFactory.java
index f364c4e..c4e1248 100644
--- a/camera/camera-testing/src/main/java/androidx/camera/testing/impl/fakes/FakeUseCaseConfigFactory.java
+++ b/camera/camera-testing/src/main/java/androidx/camera/testing/impl/fakes/FakeUseCaseConfigFactory.java
@@ -91,6 +91,10 @@
             case VIDEO_CAPTURE:
                 return CameraDevice.TEMPLATE_RECORD;
             case STREAM_SHARING:
+                // Uses TEMPLATE_PREVIEW instead of TEMPLATE_RECORD. Since there is a issue that
+                // captured results being stretched when requested for recording on some models,
+                // it would be safer to request for preview, which is also better tested. More
+                // detail please see b/297167569.
             case PREVIEW:
             case IMAGE_ANALYSIS:
             default:
diff --git a/camera/camera-video/api/1.4.0-beta02.txt b/camera/camera-video/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..beba6c4
--- /dev/null
+++ b/camera/camera-video/api/1.4.0-beta02.txt
@@ -0,0 +1,220 @@
+// Signature format: 4.0
+package androidx.camera.video {
+
+  @com.google.auto.value.AutoValue public abstract class AudioStats {
+    method public double getAudioAmplitude();
+    method public abstract int getAudioState();
+    method public abstract Throwable? getErrorCause();
+    method public boolean hasAudio();
+    method public boolean hasError();
+    field public static final double AUDIO_AMPLITUDE_NONE = 0.0;
+    field public static final int AUDIO_STATE_ACTIVE = 0; // 0x0
+    field public static final int AUDIO_STATE_DISABLED = 1; // 0x1
+    field public static final int AUDIO_STATE_ENCODER_ERROR = 3; // 0x3
+    field public static final int AUDIO_STATE_MUTED = 5; // 0x5
+    field public static final int AUDIO_STATE_SOURCE_ERROR = 4; // 0x4
+    field public static final int AUDIO_STATE_SOURCE_SILENCED = 2; // 0x2
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalAudioApi {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalPersistentRecording {
+  }
+
+  public class FallbackStrategy {
+    method public static androidx.camera.video.FallbackStrategy higherQualityOrLowerThan(androidx.camera.video.Quality);
+    method public static androidx.camera.video.FallbackStrategy higherQualityThan(androidx.camera.video.Quality);
+    method public static androidx.camera.video.FallbackStrategy lowerQualityOrHigherThan(androidx.camera.video.Quality);
+    method public static androidx.camera.video.FallbackStrategy lowerQualityThan(androidx.camera.video.Quality);
+  }
+
+  public final class FileDescriptorOutputOptions extends androidx.camera.video.OutputOptions {
+    method public android.os.ParcelFileDescriptor getParcelFileDescriptor();
+  }
+
+  public static final class FileDescriptorOutputOptions.Builder {
+    ctor public FileDescriptorOutputOptions.Builder(android.os.ParcelFileDescriptor);
+    method public androidx.camera.video.FileDescriptorOutputOptions build();
+    method public androidx.camera.video.FileDescriptorOutputOptions.Builder setDurationLimitMillis(@IntRange(from=0) long);
+    method public androidx.camera.video.FileDescriptorOutputOptions.Builder setFileSizeLimit(@IntRange(from=0) long);
+    method public androidx.camera.video.FileDescriptorOutputOptions.Builder setLocation(android.location.Location?);
+  }
+
+  public final class FileOutputOptions extends androidx.camera.video.OutputOptions {
+    method public java.io.File getFile();
+  }
+
+  public static final class FileOutputOptions.Builder {
+    ctor public FileOutputOptions.Builder(java.io.File);
+    method public androidx.camera.video.FileOutputOptions build();
+    method public androidx.camera.video.FileOutputOptions.Builder setDurationLimitMillis(@IntRange(from=0) long);
+    method public androidx.camera.video.FileOutputOptions.Builder setFileSizeLimit(@IntRange(from=0) long);
+    method public androidx.camera.video.FileOutputOptions.Builder setLocation(android.location.Location?);
+  }
+
+  public final class MediaStoreOutputOptions extends androidx.camera.video.OutputOptions {
+    method public android.net.Uri getCollectionUri();
+    method public android.content.ContentResolver getContentResolver();
+    method public android.content.ContentValues getContentValues();
+    field public static final android.content.ContentValues EMPTY_CONTENT_VALUES;
+  }
+
+  public static final class MediaStoreOutputOptions.Builder {
+    ctor public MediaStoreOutputOptions.Builder(android.content.ContentResolver, android.net.Uri);
+    method public androidx.camera.video.MediaStoreOutputOptions build();
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setContentValues(android.content.ContentValues);
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setDurationLimitMillis(@IntRange(from=0) long);
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setFileSizeLimit(@IntRange(from=0) long);
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setLocation(android.location.Location?);
+  }
+
+  public abstract class OutputOptions {
+    method @IntRange(from=0) public long getDurationLimitMillis();
+    method @IntRange(from=0) public long getFileSizeLimit();
+    method public android.location.Location? getLocation();
+    field public static final int DURATION_UNLIMITED = 0; // 0x0
+    field public static final int FILE_SIZE_UNLIMITED = 0; // 0x0
+  }
+
+  @com.google.auto.value.AutoValue public abstract class OutputResults {
+    ctor public OutputResults();
+    method public abstract android.net.Uri getOutputUri();
+  }
+
+  public final class PendingRecording {
+    method @SuppressCompatibility @androidx.camera.video.ExperimentalPersistentRecording public androidx.camera.video.PendingRecording asPersistentRecording();
+    method @CheckResult public androidx.camera.video.Recording start(java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @RequiresPermission(android.Manifest.permission.RECORD_AUDIO) public androidx.camera.video.PendingRecording withAudioEnabled();
+  }
+
+  public class Quality {
+    field public static final androidx.camera.video.Quality FHD;
+    field public static final androidx.camera.video.Quality HD;
+    field public static final androidx.camera.video.Quality HIGHEST;
+    field public static final androidx.camera.video.Quality LOWEST;
+    field public static final androidx.camera.video.Quality SD;
+    field public static final androidx.camera.video.Quality UHD;
+  }
+
+  public final class QualitySelector {
+    method public static androidx.camera.video.QualitySelector from(androidx.camera.video.Quality);
+    method public static androidx.camera.video.QualitySelector from(androidx.camera.video.Quality, androidx.camera.video.FallbackStrategy);
+    method public static androidx.camera.video.QualitySelector fromOrderedList(java.util.List<androidx.camera.video.Quality!>);
+    method public static androidx.camera.video.QualitySelector fromOrderedList(java.util.List<androidx.camera.video.Quality!>, androidx.camera.video.FallbackStrategy);
+    method public static android.util.Size? getResolution(androidx.camera.core.CameraInfo, androidx.camera.video.Quality);
+    method @Deprecated public static java.util.List<androidx.camera.video.Quality!> getSupportedQualities(androidx.camera.core.CameraInfo);
+    method @Deprecated public static boolean isQualitySupported(androidx.camera.core.CameraInfo, androidx.camera.video.Quality);
+  }
+
+  public final class Recorder implements androidx.camera.video.VideoOutput {
+    method public int getAspectRatio();
+    method public java.util.concurrent.Executor? getExecutor();
+    method public androidx.camera.video.QualitySelector getQualitySelector();
+    method public int getTargetVideoEncodingBitRate();
+    method public static androidx.camera.video.VideoCapabilities getVideoCapabilities(androidx.camera.core.CameraInfo);
+    method public static androidx.camera.video.VideoCapabilities getVideoCapabilities(androidx.camera.core.CameraInfo, int);
+    method public int getVideoCapabilitiesSource();
+    method public void onSurfaceRequested(androidx.camera.core.SurfaceRequest);
+    method @RequiresApi(26) public androidx.camera.video.PendingRecording prepareRecording(android.content.Context, androidx.camera.video.FileDescriptorOutputOptions);
+    method public androidx.camera.video.PendingRecording prepareRecording(android.content.Context, androidx.camera.video.FileOutputOptions);
+    method public androidx.camera.video.PendingRecording prepareRecording(android.content.Context, androidx.camera.video.MediaStoreOutputOptions);
+    field public static final androidx.camera.video.QualitySelector DEFAULT_QUALITY_SELECTOR;
+    field public static final int VIDEO_CAPABILITIES_SOURCE_CAMCORDER_PROFILE = 0; // 0x0
+    field public static final int VIDEO_CAPABILITIES_SOURCE_CODEC_CAPABILITIES = 1; // 0x1
+  }
+
+  public static final class Recorder.Builder {
+    ctor public Recorder.Builder();
+    method public androidx.camera.video.Recorder build();
+    method public androidx.camera.video.Recorder.Builder setAspectRatio(int);
+    method public androidx.camera.video.Recorder.Builder setExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.video.Recorder.Builder setQualitySelector(androidx.camera.video.QualitySelector);
+    method public androidx.camera.video.Recorder.Builder setTargetVideoEncodingBitRate(@IntRange(from=1) int);
+    method public androidx.camera.video.Recorder.Builder setVideoCapabilitiesSource(int);
+  }
+
+  public final class Recording implements java.lang.AutoCloseable {
+    method public void close();
+    method @SuppressCompatibility @androidx.camera.video.ExperimentalPersistentRecording public boolean isPersistent();
+    method public void mute(boolean);
+    method public void pause();
+    method public void resume();
+    method public void stop();
+  }
+
+  @com.google.auto.value.AutoValue public abstract class RecordingStats {
+    method public abstract androidx.camera.video.AudioStats getAudioStats();
+    method public abstract long getNumBytesRecorded();
+    method public abstract long getRecordedDurationNanos();
+  }
+
+  public interface VideoCapabilities {
+    method public java.util.Set<androidx.camera.core.DynamicRange!> getSupportedDynamicRanges();
+    method public java.util.List<androidx.camera.video.Quality!> getSupportedQualities(androidx.camera.core.DynamicRange);
+    method public boolean isQualitySupported(androidx.camera.video.Quality, androidx.camera.core.DynamicRange);
+    method public default boolean isStabilizationSupported();
+  }
+
+  public final class VideoCapture<T extends androidx.camera.video.VideoOutput> extends androidx.camera.core.UseCase {
+    method public androidx.camera.core.DynamicRange getDynamicRange();
+    method public int getMirrorMode();
+    method public T getOutput();
+    method public android.util.Range<java.lang.Integer!> getTargetFrameRate();
+    method public int getTargetRotation();
+    method public boolean isVideoStabilizationEnabled();
+    method public void setTargetRotation(int);
+    method public static <T extends androidx.camera.video.VideoOutput> androidx.camera.video.VideoCapture<T!> withOutput(T);
+  }
+
+  public static final class VideoCapture.Builder<T extends androidx.camera.video.VideoOutput> implements androidx.camera.core.ExtendableBuilder<androidx.camera.video.VideoCapture!> {
+    ctor public VideoCapture.Builder(T);
+    method public androidx.camera.video.VideoCapture<T!> build();
+    method public androidx.camera.video.VideoCapture.Builder<T!> setDynamicRange(androidx.camera.core.DynamicRange);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setMirrorMode(int);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setTargetFrameRate(android.util.Range<java.lang.Integer!>);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setTargetRotation(int);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setVideoStabilizationEnabled(boolean);
+  }
+
+  public interface VideoOutput {
+    method public void onSurfaceRequested(androidx.camera.core.SurfaceRequest);
+  }
+
+  public abstract class VideoRecordEvent {
+    method public androidx.camera.video.OutputOptions getOutputOptions();
+    method public androidx.camera.video.RecordingStats getRecordingStats();
+  }
+
+  public static final class VideoRecordEvent.Finalize extends androidx.camera.video.VideoRecordEvent {
+    method public Throwable? getCause();
+    method public int getError();
+    method public androidx.camera.video.OutputResults getOutputResults();
+    method public boolean hasError();
+    field public static final int ERROR_DURATION_LIMIT_REACHED = 9; // 0x9
+    field public static final int ERROR_ENCODING_FAILED = 6; // 0x6
+    field public static final int ERROR_FILE_SIZE_LIMIT_REACHED = 2; // 0x2
+    field public static final int ERROR_INSUFFICIENT_STORAGE = 3; // 0x3
+    field public static final int ERROR_INVALID_OUTPUT_OPTIONS = 5; // 0x5
+    field public static final int ERROR_NONE = 0; // 0x0
+    field public static final int ERROR_NO_VALID_DATA = 8; // 0x8
+    field public static final int ERROR_RECORDER_ERROR = 7; // 0x7
+    field public static final int ERROR_RECORDING_GARBAGE_COLLECTED = 10; // 0xa
+    field public static final int ERROR_SOURCE_INACTIVE = 4; // 0x4
+    field public static final int ERROR_UNKNOWN = 1; // 0x1
+  }
+
+  public static final class VideoRecordEvent.Pause extends androidx.camera.video.VideoRecordEvent {
+  }
+
+  public static final class VideoRecordEvent.Resume extends androidx.camera.video.VideoRecordEvent {
+  }
+
+  public static final class VideoRecordEvent.Start extends androidx.camera.video.VideoRecordEvent {
+  }
+
+  public static final class VideoRecordEvent.Status extends androidx.camera.video.VideoRecordEvent {
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-video/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-video/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-video/api/restricted_1.4.0-beta02.txt b/camera/camera-video/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..beba6c4
--- /dev/null
+++ b/camera/camera-video/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,220 @@
+// Signature format: 4.0
+package androidx.camera.video {
+
+  @com.google.auto.value.AutoValue public abstract class AudioStats {
+    method public double getAudioAmplitude();
+    method public abstract int getAudioState();
+    method public abstract Throwable? getErrorCause();
+    method public boolean hasAudio();
+    method public boolean hasError();
+    field public static final double AUDIO_AMPLITUDE_NONE = 0.0;
+    field public static final int AUDIO_STATE_ACTIVE = 0; // 0x0
+    field public static final int AUDIO_STATE_DISABLED = 1; // 0x1
+    field public static final int AUDIO_STATE_ENCODER_ERROR = 3; // 0x3
+    field public static final int AUDIO_STATE_MUTED = 5; // 0x5
+    field public static final int AUDIO_STATE_SOURCE_ERROR = 4; // 0x4
+    field public static final int AUDIO_STATE_SOURCE_SILENCED = 2; // 0x2
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalAudioApi {
+  }
+
+  @SuppressCompatibility @RequiresOptIn @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) public @interface ExperimentalPersistentRecording {
+  }
+
+  public class FallbackStrategy {
+    method public static androidx.camera.video.FallbackStrategy higherQualityOrLowerThan(androidx.camera.video.Quality);
+    method public static androidx.camera.video.FallbackStrategy higherQualityThan(androidx.camera.video.Quality);
+    method public static androidx.camera.video.FallbackStrategy lowerQualityOrHigherThan(androidx.camera.video.Quality);
+    method public static androidx.camera.video.FallbackStrategy lowerQualityThan(androidx.camera.video.Quality);
+  }
+
+  public final class FileDescriptorOutputOptions extends androidx.camera.video.OutputOptions {
+    method public android.os.ParcelFileDescriptor getParcelFileDescriptor();
+  }
+
+  public static final class FileDescriptorOutputOptions.Builder {
+    ctor public FileDescriptorOutputOptions.Builder(android.os.ParcelFileDescriptor);
+    method public androidx.camera.video.FileDescriptorOutputOptions build();
+    method public androidx.camera.video.FileDescriptorOutputOptions.Builder setDurationLimitMillis(@IntRange(from=0) long);
+    method public androidx.camera.video.FileDescriptorOutputOptions.Builder setFileSizeLimit(@IntRange(from=0) long);
+    method public androidx.camera.video.FileDescriptorOutputOptions.Builder setLocation(android.location.Location?);
+  }
+
+  public final class FileOutputOptions extends androidx.camera.video.OutputOptions {
+    method public java.io.File getFile();
+  }
+
+  public static final class FileOutputOptions.Builder {
+    ctor public FileOutputOptions.Builder(java.io.File);
+    method public androidx.camera.video.FileOutputOptions build();
+    method public androidx.camera.video.FileOutputOptions.Builder setDurationLimitMillis(@IntRange(from=0) long);
+    method public androidx.camera.video.FileOutputOptions.Builder setFileSizeLimit(@IntRange(from=0) long);
+    method public androidx.camera.video.FileOutputOptions.Builder setLocation(android.location.Location?);
+  }
+
+  public final class MediaStoreOutputOptions extends androidx.camera.video.OutputOptions {
+    method public android.net.Uri getCollectionUri();
+    method public android.content.ContentResolver getContentResolver();
+    method public android.content.ContentValues getContentValues();
+    field public static final android.content.ContentValues EMPTY_CONTENT_VALUES;
+  }
+
+  public static final class MediaStoreOutputOptions.Builder {
+    ctor public MediaStoreOutputOptions.Builder(android.content.ContentResolver, android.net.Uri);
+    method public androidx.camera.video.MediaStoreOutputOptions build();
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setContentValues(android.content.ContentValues);
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setDurationLimitMillis(@IntRange(from=0) long);
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setFileSizeLimit(@IntRange(from=0) long);
+    method public androidx.camera.video.MediaStoreOutputOptions.Builder setLocation(android.location.Location?);
+  }
+
+  public abstract class OutputOptions {
+    method @IntRange(from=0) public long getDurationLimitMillis();
+    method @IntRange(from=0) public long getFileSizeLimit();
+    method public android.location.Location? getLocation();
+    field public static final int DURATION_UNLIMITED = 0; // 0x0
+    field public static final int FILE_SIZE_UNLIMITED = 0; // 0x0
+  }
+
+  @com.google.auto.value.AutoValue public abstract class OutputResults {
+    ctor public OutputResults();
+    method public abstract android.net.Uri getOutputUri();
+  }
+
+  public final class PendingRecording {
+    method @SuppressCompatibility @androidx.camera.video.ExperimentalPersistentRecording public androidx.camera.video.PendingRecording asPersistentRecording();
+    method @CheckResult public androidx.camera.video.Recording start(java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @RequiresPermission(android.Manifest.permission.RECORD_AUDIO) public androidx.camera.video.PendingRecording withAudioEnabled();
+  }
+
+  public class Quality {
+    field public static final androidx.camera.video.Quality FHD;
+    field public static final androidx.camera.video.Quality HD;
+    field public static final androidx.camera.video.Quality HIGHEST;
+    field public static final androidx.camera.video.Quality LOWEST;
+    field public static final androidx.camera.video.Quality SD;
+    field public static final androidx.camera.video.Quality UHD;
+  }
+
+  public final class QualitySelector {
+    method public static androidx.camera.video.QualitySelector from(androidx.camera.video.Quality);
+    method public static androidx.camera.video.QualitySelector from(androidx.camera.video.Quality, androidx.camera.video.FallbackStrategy);
+    method public static androidx.camera.video.QualitySelector fromOrderedList(java.util.List<androidx.camera.video.Quality!>);
+    method public static androidx.camera.video.QualitySelector fromOrderedList(java.util.List<androidx.camera.video.Quality!>, androidx.camera.video.FallbackStrategy);
+    method public static android.util.Size? getResolution(androidx.camera.core.CameraInfo, androidx.camera.video.Quality);
+    method @Deprecated public static java.util.List<androidx.camera.video.Quality!> getSupportedQualities(androidx.camera.core.CameraInfo);
+    method @Deprecated public static boolean isQualitySupported(androidx.camera.core.CameraInfo, androidx.camera.video.Quality);
+  }
+
+  public final class Recorder implements androidx.camera.video.VideoOutput {
+    method public int getAspectRatio();
+    method public java.util.concurrent.Executor? getExecutor();
+    method public androidx.camera.video.QualitySelector getQualitySelector();
+    method public int getTargetVideoEncodingBitRate();
+    method public static androidx.camera.video.VideoCapabilities getVideoCapabilities(androidx.camera.core.CameraInfo);
+    method public static androidx.camera.video.VideoCapabilities getVideoCapabilities(androidx.camera.core.CameraInfo, int);
+    method public int getVideoCapabilitiesSource();
+    method public void onSurfaceRequested(androidx.camera.core.SurfaceRequest);
+    method @RequiresApi(26) public androidx.camera.video.PendingRecording prepareRecording(android.content.Context, androidx.camera.video.FileDescriptorOutputOptions);
+    method public androidx.camera.video.PendingRecording prepareRecording(android.content.Context, androidx.camera.video.FileOutputOptions);
+    method public androidx.camera.video.PendingRecording prepareRecording(android.content.Context, androidx.camera.video.MediaStoreOutputOptions);
+    field public static final androidx.camera.video.QualitySelector DEFAULT_QUALITY_SELECTOR;
+    field public static final int VIDEO_CAPABILITIES_SOURCE_CAMCORDER_PROFILE = 0; // 0x0
+    field public static final int VIDEO_CAPABILITIES_SOURCE_CODEC_CAPABILITIES = 1; // 0x1
+  }
+
+  public static final class Recorder.Builder {
+    ctor public Recorder.Builder();
+    method public androidx.camera.video.Recorder build();
+    method public androidx.camera.video.Recorder.Builder setAspectRatio(int);
+    method public androidx.camera.video.Recorder.Builder setExecutor(java.util.concurrent.Executor);
+    method public androidx.camera.video.Recorder.Builder setQualitySelector(androidx.camera.video.QualitySelector);
+    method public androidx.camera.video.Recorder.Builder setTargetVideoEncodingBitRate(@IntRange(from=1) int);
+    method public androidx.camera.video.Recorder.Builder setVideoCapabilitiesSource(int);
+  }
+
+  public final class Recording implements java.lang.AutoCloseable {
+    method public void close();
+    method @SuppressCompatibility @androidx.camera.video.ExperimentalPersistentRecording public boolean isPersistent();
+    method public void mute(boolean);
+    method public void pause();
+    method public void resume();
+    method public void stop();
+  }
+
+  @com.google.auto.value.AutoValue public abstract class RecordingStats {
+    method public abstract androidx.camera.video.AudioStats getAudioStats();
+    method public abstract long getNumBytesRecorded();
+    method public abstract long getRecordedDurationNanos();
+  }
+
+  public interface VideoCapabilities {
+    method public java.util.Set<androidx.camera.core.DynamicRange!> getSupportedDynamicRanges();
+    method public java.util.List<androidx.camera.video.Quality!> getSupportedQualities(androidx.camera.core.DynamicRange);
+    method public boolean isQualitySupported(androidx.camera.video.Quality, androidx.camera.core.DynamicRange);
+    method public default boolean isStabilizationSupported();
+  }
+
+  public final class VideoCapture<T extends androidx.camera.video.VideoOutput> extends androidx.camera.core.UseCase {
+    method public androidx.camera.core.DynamicRange getDynamicRange();
+    method public int getMirrorMode();
+    method public T getOutput();
+    method public android.util.Range<java.lang.Integer!> getTargetFrameRate();
+    method public int getTargetRotation();
+    method public boolean isVideoStabilizationEnabled();
+    method public void setTargetRotation(int);
+    method public static <T extends androidx.camera.video.VideoOutput> androidx.camera.video.VideoCapture<T!> withOutput(T);
+  }
+
+  public static final class VideoCapture.Builder<T extends androidx.camera.video.VideoOutput> implements androidx.camera.core.ExtendableBuilder<androidx.camera.video.VideoCapture!> {
+    ctor public VideoCapture.Builder(T);
+    method public androidx.camera.video.VideoCapture<T!> build();
+    method public androidx.camera.video.VideoCapture.Builder<T!> setDynamicRange(androidx.camera.core.DynamicRange);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setMirrorMode(int);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setTargetFrameRate(android.util.Range<java.lang.Integer!>);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setTargetRotation(int);
+    method public androidx.camera.video.VideoCapture.Builder<T!> setVideoStabilizationEnabled(boolean);
+  }
+
+  public interface VideoOutput {
+    method public void onSurfaceRequested(androidx.camera.core.SurfaceRequest);
+  }
+
+  public abstract class VideoRecordEvent {
+    method public androidx.camera.video.OutputOptions getOutputOptions();
+    method public androidx.camera.video.RecordingStats getRecordingStats();
+  }
+
+  public static final class VideoRecordEvent.Finalize extends androidx.camera.video.VideoRecordEvent {
+    method public Throwable? getCause();
+    method public int getError();
+    method public androidx.camera.video.OutputResults getOutputResults();
+    method public boolean hasError();
+    field public static final int ERROR_DURATION_LIMIT_REACHED = 9; // 0x9
+    field public static final int ERROR_ENCODING_FAILED = 6; // 0x6
+    field public static final int ERROR_FILE_SIZE_LIMIT_REACHED = 2; // 0x2
+    field public static final int ERROR_INSUFFICIENT_STORAGE = 3; // 0x3
+    field public static final int ERROR_INVALID_OUTPUT_OPTIONS = 5; // 0x5
+    field public static final int ERROR_NONE = 0; // 0x0
+    field public static final int ERROR_NO_VALID_DATA = 8; // 0x8
+    field public static final int ERROR_RECORDER_ERROR = 7; // 0x7
+    field public static final int ERROR_RECORDING_GARBAGE_COLLECTED = 10; // 0xa
+    field public static final int ERROR_SOURCE_INACTIVE = 4; // 0x4
+    field public static final int ERROR_UNKNOWN = 1; // 0x1
+  }
+
+  public static final class VideoRecordEvent.Pause extends androidx.camera.video.VideoRecordEvent {
+  }
+
+  public static final class VideoRecordEvent.Resume extends androidx.camera.video.VideoRecordEvent {
+  }
+
+  public static final class VideoRecordEvent.Start extends androidx.camera.video.VideoRecordEvent {
+  }
+
+  public static final class VideoRecordEvent.Status extends androidx.camera.video.VideoRecordEvent {
+  }
+
+}
+
diff --git a/camera/camera-view/api/1.4.0-beta02.txt b/camera/camera-view/api/1.4.0-beta02.txt
new file mode 100644
index 0000000..9e6b4e8
--- /dev/null
+++ b/camera/camera-view/api/1.4.0-beta02.txt
@@ -0,0 +1,199 @@
+// Signature format: 4.0
+package androidx.camera.view {
+
+  public abstract class CameraController {
+    method @MainThread public void clearEffects();
+    method @MainThread public void clearImageAnalysisAnalyzer();
+    method @MainThread public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> enableTorch(boolean);
+    method @MainThread public androidx.camera.core.CameraControl? getCameraControl();
+    method @MainThread public androidx.camera.core.CameraInfo? getCameraInfo();
+    method @MainThread public androidx.camera.core.CameraSelector getCameraSelector();
+    method @MainThread public java.util.concurrent.Executor? getImageAnalysisBackgroundExecutor();
+    method @MainThread public int getImageAnalysisBackpressureStrategy();
+    method @MainThread public int getImageAnalysisImageQueueDepth();
+    method @MainThread public int getImageAnalysisOutputImageFormat();
+    method @MainThread public androidx.camera.core.resolutionselector.ResolutionSelector? getImageAnalysisResolutionSelector();
+    method @Deprecated @MainThread public androidx.camera.view.CameraController.OutputSize? getImageAnalysisTargetSize();
+    method @MainThread public int getImageCaptureFlashMode();
+    method @MainThread public java.util.concurrent.Executor? getImageCaptureIoExecutor();
+    method @MainThread public int getImageCaptureMode();
+    method @MainThread public androidx.camera.core.resolutionselector.ResolutionSelector? getImageCaptureResolutionSelector();
+    method @Deprecated @MainThread public androidx.camera.view.CameraController.OutputSize? getImageCaptureTargetSize();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> getInitializationFuture();
+    method @MainThread public androidx.camera.core.resolutionselector.ResolutionSelector? getPreviewResolutionSelector();
+    method @Deprecated @MainThread public androidx.camera.view.CameraController.OutputSize? getPreviewTargetSize();
+    method @MainThread public androidx.lifecycle.LiveData<java.lang.Integer!> getTapToFocusState();
+    method @MainThread public androidx.lifecycle.LiveData<java.lang.Integer!> getTorchState();
+    method @MainThread public androidx.camera.core.DynamicRange getVideoCaptureDynamicRange();
+    method @MainThread public int getVideoCaptureMirrorMode();
+    method @MainThread public androidx.camera.video.QualitySelector getVideoCaptureQualitySelector();
+    method @MainThread public android.util.Range<java.lang.Integer!> getVideoCaptureTargetFrameRate();
+    method @MainThread public androidx.lifecycle.LiveData<androidx.camera.core.ZoomState!> getZoomState();
+    method @MainThread public boolean hasCamera(androidx.camera.core.CameraSelector);
+    method @MainThread public boolean isImageAnalysisEnabled();
+    method @MainThread public boolean isImageCaptureEnabled();
+    method @MainThread public boolean isPinchToZoomEnabled();
+    method @MainThread public boolean isRecording();
+    method @MainThread public boolean isTapToFocusEnabled();
+    method @MainThread public boolean isVideoCaptureEnabled();
+    method @MainThread public void setCameraSelector(androidx.camera.core.CameraSelector);
+    method @MainThread public void setEffects(java.util.Set<androidx.camera.core.CameraEffect!>);
+    method @MainThread public void setEnabledUseCases(int);
+    method @MainThread public void setImageAnalysisAnalyzer(java.util.concurrent.Executor, androidx.camera.core.ImageAnalysis.Analyzer);
+    method @MainThread public void setImageAnalysisBackgroundExecutor(java.util.concurrent.Executor?);
+    method @MainThread public void setImageAnalysisBackpressureStrategy(int);
+    method @MainThread public void setImageAnalysisImageQueueDepth(int);
+    method @MainThread public void setImageAnalysisOutputImageFormat(int);
+    method @MainThread public void setImageAnalysisResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector?);
+    method @Deprecated @MainThread public void setImageAnalysisTargetSize(androidx.camera.view.CameraController.OutputSize?);
+    method @MainThread public void setImageCaptureFlashMode(int);
+    method @MainThread public void setImageCaptureIoExecutor(java.util.concurrent.Executor?);
+    method @MainThread public void setImageCaptureMode(int);
+    method @MainThread public void setImageCaptureResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector?);
+    method @Deprecated @MainThread public void setImageCaptureTargetSize(androidx.camera.view.CameraController.OutputSize?);
+    method @MainThread public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setLinearZoom(@FloatRange(from=0.0f, to=1.0f) float);
+    method @MainThread public void setPinchToZoomEnabled(boolean);
+    method @MainThread public void setPreviewResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector?);
+    method @Deprecated @MainThread public void setPreviewTargetSize(androidx.camera.view.CameraController.OutputSize?);
+    method @MainThread public void setTapToFocusEnabled(boolean);
+    method @MainThread public void setVideoCaptureDynamicRange(androidx.camera.core.DynamicRange);
+    method @MainThread public void setVideoCaptureMirrorMode(int);
+    method @MainThread public void setVideoCaptureQualitySelector(androidx.camera.video.QualitySelector);
+    method @MainThread public void setVideoCaptureTargetFrameRate(android.util.Range<java.lang.Integer!>);
+    method @MainThread public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setZoomRatio(float);
+    method @MainThread @RequiresApi(26) public androidx.camera.video.Recording startRecording(androidx.camera.video.FileDescriptorOutputOptions, androidx.camera.view.video.AudioConfig, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @MainThread public androidx.camera.video.Recording startRecording(androidx.camera.video.FileOutputOptions, androidx.camera.view.video.AudioConfig, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @MainThread public androidx.camera.video.Recording startRecording(androidx.camera.video.MediaStoreOutputOptions, androidx.camera.view.video.AudioConfig, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @MainThread public void takePicture(androidx.camera.core.ImageCapture.OutputFileOptions, java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageSavedCallback);
+    method @MainThread public void takePicture(java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageCapturedCallback);
+    field @Deprecated public static final int COORDINATE_SYSTEM_VIEW_REFERENCED = 1; // 0x1
+    field public static final int IMAGE_ANALYSIS = 2; // 0x2
+    field public static final int IMAGE_CAPTURE = 1; // 0x1
+    field public static final int TAP_TO_FOCUS_FAILED = 4; // 0x4
+    field public static final int TAP_TO_FOCUS_FOCUSED = 2; // 0x2
+    field public static final int TAP_TO_FOCUS_NOT_FOCUSED = 3; // 0x3
+    field public static final int TAP_TO_FOCUS_NOT_STARTED = 0; // 0x0
+    field public static final int TAP_TO_FOCUS_STARTED = 1; // 0x1
+    field public static final int VIDEO_CAPTURE = 4; // 0x4
+  }
+
+  @Deprecated public static final class CameraController.OutputSize {
+    ctor @Deprecated public CameraController.OutputSize(android.util.Size);
+    ctor @Deprecated public CameraController.OutputSize(int);
+    method @Deprecated public int getAspectRatio();
+    method @Deprecated public android.util.Size? getResolution();
+    field @Deprecated public static final int UNASSIGNED_ASPECT_RATIO = -1; // 0xffffffff
+  }
+
+  public final class LifecycleCameraController extends androidx.camera.view.CameraController {
+    ctor public LifecycleCameraController(android.content.Context);
+    method @MainThread public void bindToLifecycle(androidx.lifecycle.LifecycleOwner);
+    method @MainThread public void unbind();
+  }
+
+  public final class PreviewView extends android.widget.FrameLayout {
+    ctor @UiThread public PreviewView(android.content.Context);
+    ctor @UiThread public PreviewView(android.content.Context, android.util.AttributeSet?);
+    ctor @UiThread public PreviewView(android.content.Context, android.util.AttributeSet?, int);
+    ctor @UiThread public PreviewView(android.content.Context, android.util.AttributeSet?, int, int);
+    method @UiThread public android.graphics.Bitmap? getBitmap();
+    method @UiThread public androidx.camera.view.CameraController? getController();
+    method @UiThread public androidx.camera.view.PreviewView.ImplementationMode getImplementationMode();
+    method @UiThread public androidx.camera.core.MeteringPointFactory getMeteringPointFactory();
+    method @SuppressCompatibility public androidx.camera.view.transform.OutputTransform? getOutputTransform();
+    method public androidx.lifecycle.LiveData<androidx.camera.view.PreviewView.StreamState!> getPreviewStreamState();
+    method @UiThread public androidx.camera.view.PreviewView.ScaleType getScaleType();
+    method @UiThread public android.graphics.Matrix? getSensorToViewTransform();
+    method @UiThread public androidx.camera.core.Preview.SurfaceProvider getSurfaceProvider();
+    method @UiThread public androidx.camera.core.ViewPort? getViewPort();
+    method @UiThread public androidx.camera.core.ViewPort? getViewPort(int);
+    method @UiThread public void setController(androidx.camera.view.CameraController?);
+    method @UiThread public void setImplementationMode(androidx.camera.view.PreviewView.ImplementationMode);
+    method @UiThread public void setScaleType(androidx.camera.view.PreviewView.ScaleType);
+    method @UiThread public void setScreenFlashWindow(android.view.Window?);
+  }
+
+  public enum PreviewView.ImplementationMode {
+    enum_constant public static final androidx.camera.view.PreviewView.ImplementationMode COMPATIBLE;
+    enum_constant public static final androidx.camera.view.PreviewView.ImplementationMode PERFORMANCE;
+  }
+
+  public enum PreviewView.ScaleType {
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FILL_CENTER;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FILL_END;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FILL_START;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FIT_CENTER;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FIT_END;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FIT_START;
+  }
+
+  public enum PreviewView.StreamState {
+    enum_constant public static final androidx.camera.view.PreviewView.StreamState IDLE;
+    enum_constant public static final androidx.camera.view.PreviewView.StreamState STREAMING;
+  }
+
+  public final class RotationProvider {
+    ctor public RotationProvider(android.content.Context);
+    method @CheckResult public boolean addListener(java.util.concurrent.Executor, androidx.camera.view.RotationProvider.Listener);
+    method public void removeListener(androidx.camera.view.RotationProvider.Listener);
+  }
+
+  public static interface RotationProvider.Listener {
+    method public void onRotationChanged(int);
+  }
+
+  public final class ScreenFlashView extends android.view.View {
+    ctor @UiThread public ScreenFlashView(android.content.Context);
+    ctor @UiThread public ScreenFlashView(android.content.Context, android.util.AttributeSet?);
+    ctor @UiThread public ScreenFlashView(android.content.Context, android.util.AttributeSet?, int);
+    ctor @UiThread public ScreenFlashView(android.content.Context, android.util.AttributeSet?, int, int);
+    method @UiThread public androidx.camera.core.ImageCapture.ScreenFlash? getScreenFlash();
+    method @UiThread public void setController(androidx.camera.view.CameraController?);
+    method @UiThread public void setScreenFlashWindow(android.view.Window?);
+  }
+
+}
+
+package androidx.camera.view.transform {
+
+  @SuppressCompatibility public final class CoordinateTransform {
+    ctor public CoordinateTransform(androidx.camera.view.transform.OutputTransform, androidx.camera.view.transform.OutputTransform);
+    method public void mapPoint(android.graphics.PointF);
+    method public void mapPoints(float[]);
+    method public void mapRect(android.graphics.RectF);
+    method public void transform(android.graphics.Matrix);
+  }
+
+  @SuppressCompatibility public final class FileTransformFactory {
+    ctor public FileTransformFactory();
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(android.content.ContentResolver, android.net.Uri) throws java.io.IOException;
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(java.io.File) throws java.io.IOException;
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(java.io.InputStream) throws java.io.IOException;
+    method public boolean isUsingExifOrientation();
+    method public void setUsingExifOrientation(boolean);
+  }
+
+  @SuppressCompatibility public final class ImageProxyTransformFactory {
+    ctor public ImageProxyTransformFactory();
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(androidx.camera.core.ImageProxy);
+    method public boolean isUsingCropRect();
+    method public boolean isUsingRotationDegrees();
+    method public void setUsingCropRect(boolean);
+    method public void setUsingRotationDegrees(boolean);
+  }
+
+  @SuppressCompatibility public final class OutputTransform {
+  }
+
+}
+
+package androidx.camera.view.video {
+
+  public class AudioConfig {
+    method @RequiresPermission(android.Manifest.permission.RECORD_AUDIO) public static androidx.camera.view.video.AudioConfig create(boolean);
+    method public boolean getAudioEnabled();
+    field public static final androidx.camera.view.video.AudioConfig AUDIO_DISABLED;
+  }
+
+}
+
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta02.txt b/camera/camera-view/api/res-1.4.0-beta02.txt
similarity index 100%
copy from compose/material/material-icons-core/api/res-1.4.0-beta02.txt
copy to camera/camera-view/api/res-1.4.0-beta02.txt
diff --git a/camera/camera-view/api/restricted_1.4.0-beta02.txt b/camera/camera-view/api/restricted_1.4.0-beta02.txt
new file mode 100644
index 0000000..9e6b4e8
--- /dev/null
+++ b/camera/camera-view/api/restricted_1.4.0-beta02.txt
@@ -0,0 +1,199 @@
+// Signature format: 4.0
+package androidx.camera.view {
+
+  public abstract class CameraController {
+    method @MainThread public void clearEffects();
+    method @MainThread public void clearImageAnalysisAnalyzer();
+    method @MainThread public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> enableTorch(boolean);
+    method @MainThread public androidx.camera.core.CameraControl? getCameraControl();
+    method @MainThread public androidx.camera.core.CameraInfo? getCameraInfo();
+    method @MainThread public androidx.camera.core.CameraSelector getCameraSelector();
+    method @MainThread public java.util.concurrent.Executor? getImageAnalysisBackgroundExecutor();
+    method @MainThread public int getImageAnalysisBackpressureStrategy();
+    method @MainThread public int getImageAnalysisImageQueueDepth();
+    method @MainThread public int getImageAnalysisOutputImageFormat();
+    method @MainThread public androidx.camera.core.resolutionselector.ResolutionSelector? getImageAnalysisResolutionSelector();
+    method @Deprecated @MainThread public androidx.camera.view.CameraController.OutputSize? getImageAnalysisTargetSize();
+    method @MainThread public int getImageCaptureFlashMode();
+    method @MainThread public java.util.concurrent.Executor? getImageCaptureIoExecutor();
+    method @MainThread public int getImageCaptureMode();
+    method @MainThread public androidx.camera.core.resolutionselector.ResolutionSelector? getImageCaptureResolutionSelector();
+    method @Deprecated @MainThread public androidx.camera.view.CameraController.OutputSize? getImageCaptureTargetSize();
+    method public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> getInitializationFuture();
+    method @MainThread public androidx.camera.core.resolutionselector.ResolutionSelector? getPreviewResolutionSelector();
+    method @Deprecated @MainThread public androidx.camera.view.CameraController.OutputSize? getPreviewTargetSize();
+    method @MainThread public androidx.lifecycle.LiveData<java.lang.Integer!> getTapToFocusState();
+    method @MainThread public androidx.lifecycle.LiveData<java.lang.Integer!> getTorchState();
+    method @MainThread public androidx.camera.core.DynamicRange getVideoCaptureDynamicRange();
+    method @MainThread public int getVideoCaptureMirrorMode();
+    method @MainThread public androidx.camera.video.QualitySelector getVideoCaptureQualitySelector();
+    method @MainThread public android.util.Range<java.lang.Integer!> getVideoCaptureTargetFrameRate();
+    method @MainThread public androidx.lifecycle.LiveData<androidx.camera.core.ZoomState!> getZoomState();
+    method @MainThread public boolean hasCamera(androidx.camera.core.CameraSelector);
+    method @MainThread public boolean isImageAnalysisEnabled();
+    method @MainThread public boolean isImageCaptureEnabled();
+    method @MainThread public boolean isPinchToZoomEnabled();
+    method @MainThread public boolean isRecording();
+    method @MainThread public boolean isTapToFocusEnabled();
+    method @MainThread public boolean isVideoCaptureEnabled();
+    method @MainThread public void setCameraSelector(androidx.camera.core.CameraSelector);
+    method @MainThread public void setEffects(java.util.Set<androidx.camera.core.CameraEffect!>);
+    method @MainThread public void setEnabledUseCases(int);
+    method @MainThread public void setImageAnalysisAnalyzer(java.util.concurrent.Executor, androidx.camera.core.ImageAnalysis.Analyzer);
+    method @MainThread public void setImageAnalysisBackgroundExecutor(java.util.concurrent.Executor?);
+    method @MainThread public void setImageAnalysisBackpressureStrategy(int);
+    method @MainThread public void setImageAnalysisImageQueueDepth(int);
+    method @MainThread public void setImageAnalysisOutputImageFormat(int);
+    method @MainThread public void setImageAnalysisResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector?);
+    method @Deprecated @MainThread public void setImageAnalysisTargetSize(androidx.camera.view.CameraController.OutputSize?);
+    method @MainThread public void setImageCaptureFlashMode(int);
+    method @MainThread public void setImageCaptureIoExecutor(java.util.concurrent.Executor?);
+    method @MainThread public void setImageCaptureMode(int);
+    method @MainThread public void setImageCaptureResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector?);
+    method @Deprecated @MainThread public void setImageCaptureTargetSize(androidx.camera.view.CameraController.OutputSize?);
+    method @MainThread public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setLinearZoom(@FloatRange(from=0.0f, to=1.0f) float);
+    method @MainThread public void setPinchToZoomEnabled(boolean);
+    method @MainThread public void setPreviewResolutionSelector(androidx.camera.core.resolutionselector.ResolutionSelector?);
+    method @Deprecated @MainThread public void setPreviewTargetSize(androidx.camera.view.CameraController.OutputSize?);
+    method @MainThread public void setTapToFocusEnabled(boolean);
+    method @MainThread public void setVideoCaptureDynamicRange(androidx.camera.core.DynamicRange);
+    method @MainThread public void setVideoCaptureMirrorMode(int);
+    method @MainThread public void setVideoCaptureQualitySelector(androidx.camera.video.QualitySelector);
+    method @MainThread public void setVideoCaptureTargetFrameRate(android.util.Range<java.lang.Integer!>);
+    method @MainThread public com.google.common.util.concurrent.ListenableFuture<java.lang.Void!> setZoomRatio(float);
+    method @MainThread @RequiresApi(26) public androidx.camera.video.Recording startRecording(androidx.camera.video.FileDescriptorOutputOptions, androidx.camera.view.video.AudioConfig, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @MainThread public androidx.camera.video.Recording startRecording(androidx.camera.video.FileOutputOptions, androidx.camera.view.video.AudioConfig, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @MainThread public androidx.camera.video.Recording startRecording(androidx.camera.video.MediaStoreOutputOptions, androidx.camera.view.video.AudioConfig, java.util.concurrent.Executor, androidx.core.util.Consumer<androidx.camera.video.VideoRecordEvent!>);
+    method @MainThread public void takePicture(androidx.camera.core.ImageCapture.OutputFileOptions, java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageSavedCallback);
+    method @MainThread public void takePicture(java.util.concurrent.Executor, androidx.camera.core.ImageCapture.OnImageCapturedCallback);
+    field @Deprecated public static final int COORDINATE_SYSTEM_VIEW_REFERENCED = 1; // 0x1
+    field public static final int IMAGE_ANALYSIS = 2; // 0x2
+    field public static final int IMAGE_CAPTURE = 1; // 0x1
+    field public static final int TAP_TO_FOCUS_FAILED = 4; // 0x4
+    field public static final int TAP_TO_FOCUS_FOCUSED = 2; // 0x2
+    field public static final int TAP_TO_FOCUS_NOT_FOCUSED = 3; // 0x3
+    field public static final int TAP_TO_FOCUS_NOT_STARTED = 0; // 0x0
+    field public static final int TAP_TO_FOCUS_STARTED = 1; // 0x1
+    field public static final int VIDEO_CAPTURE = 4; // 0x4
+  }
+
+  @Deprecated public static final class CameraController.OutputSize {
+    ctor @Deprecated public CameraController.OutputSize(android.util.Size);
+    ctor @Deprecated public CameraController.OutputSize(int);
+    method @Deprecated public int getAspectRatio();
+    method @Deprecated public android.util.Size? getResolution();
+    field @Deprecated public static final int UNASSIGNED_ASPECT_RATIO = -1; // 0xffffffff
+  }
+
+  public final class LifecycleCameraController extends androidx.camera.view.CameraController {
+    ctor public LifecycleCameraController(android.content.Context);
+    method @MainThread public void bindToLifecycle(androidx.lifecycle.LifecycleOwner);
+    method @MainThread public void unbind();
+  }
+
+  public final class PreviewView extends android.widget.FrameLayout {
+    ctor @UiThread public PreviewView(android.content.Context);
+    ctor @UiThread public PreviewView(android.content.Context, android.util.AttributeSet?);
+    ctor @UiThread public PreviewView(android.content.Context, android.util.AttributeSet?, int);
+    ctor @UiThread public PreviewView(android.content.Context, android.util.AttributeSet?, int, int);
+    method @UiThread public android.graphics.Bitmap? getBitmap();
+    method @UiThread public androidx.camera.view.CameraController? getController();
+    method @UiThread public androidx.camera.view.PreviewView.ImplementationMode getImplementationMode();
+    method @UiThread public androidx.camera.core.MeteringPointFactory getMeteringPointFactory();
+    method @SuppressCompatibility public androidx.camera.view.transform.OutputTransform? getOutputTransform();
+    method public androidx.lifecycle.LiveData<androidx.camera.view.PreviewView.StreamState!> getPreviewStreamState();
+    method @UiThread public androidx.camera.view.PreviewView.ScaleType getScaleType();
+    method @UiThread public android.graphics.Matrix? getSensorToViewTransform();
+    method @UiThread public androidx.camera.core.Preview.SurfaceProvider getSurfaceProvider();
+    method @UiThread public androidx.camera.core.ViewPort? getViewPort();
+    method @UiThread public androidx.camera.core.ViewPort? getViewPort(int);
+    method @UiThread public void setController(androidx.camera.view.CameraController?);
+    method @UiThread public void setImplementationMode(androidx.camera.view.PreviewView.ImplementationMode);
+    method @UiThread public void setScaleType(androidx.camera.view.PreviewView.ScaleType);
+    method @UiThread public void setScreenFlashWindow(android.view.Window?);
+  }
+
+  public enum PreviewView.ImplementationMode {
+    enum_constant public static final androidx.camera.view.PreviewView.ImplementationMode COMPATIBLE;
+    enum_constant public static final androidx.camera.view.PreviewView.ImplementationMode PERFORMANCE;
+  }
+
+  public enum PreviewView.ScaleType {
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FILL_CENTER;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FILL_END;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FILL_START;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FIT_CENTER;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FIT_END;
+    enum_constant public static final androidx.camera.view.PreviewView.ScaleType FIT_START;
+  }
+
+  public enum PreviewView.StreamState {
+    enum_constant public static final androidx.camera.view.PreviewView.StreamState IDLE;
+    enum_constant public static final androidx.camera.view.PreviewView.StreamState STREAMING;
+  }
+
+  public final class RotationProvider {
+    ctor public RotationProvider(android.content.Context);
+    method @CheckResult public boolean addListener(java.util.concurrent.Executor, androidx.camera.view.RotationProvider.Listener);
+    method public void removeListener(androidx.camera.view.RotationProvider.Listener);
+  }
+
+  public static interface RotationProvider.Listener {
+    method public void onRotationChanged(int);
+  }
+
+  public final class ScreenFlashView extends android.view.View {
+    ctor @UiThread public ScreenFlashView(android.content.Context);
+    ctor @UiThread public ScreenFlashView(android.content.Context, android.util.AttributeSet?);
+    ctor @UiThread public ScreenFlashView(android.content.Context, android.util.AttributeSet?, int);
+    ctor @UiThread public ScreenFlashView(android.content.Context, android.util.AttributeSet?, int, int);
+    method @UiThread public androidx.camera.core.ImageCapture.ScreenFlash? getScreenFlash();
+    method @UiThread public void setController(androidx.camera.view.CameraController?);
+    method @UiThread public void setScreenFlashWindow(android.view.Window?);
+  }
+
+}
+
+package androidx.camera.view.transform {
+
+  @SuppressCompatibility public final class CoordinateTransform {
+    ctor public CoordinateTransform(androidx.camera.view.transform.OutputTransform, androidx.camera.view.transform.OutputTransform);
+    method public void mapPoint(android.graphics.PointF);
+    method public void mapPoints(float[]);
+    method public void mapRect(android.graphics.RectF);
+    method public void transform(android.graphics.Matrix);
+  }
+
+  @SuppressCompatibility public final class FileTransformFactory {
+    ctor public FileTransformFactory();
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(android.content.ContentResolver, android.net.Uri) throws java.io.IOException;
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(java.io.File) throws java.io.IOException;
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(java.io.InputStream) throws java.io.IOException;
+    method public boolean isUsingExifOrientation();
+    method public void setUsingExifOrientation(boolean);
+  }
+
+  @SuppressCompatibility public final class ImageProxyTransformFactory {
+    ctor public ImageProxyTransformFactory();
+    method public androidx.camera.view.transform.OutputTransform getOutputTransform(androidx.camera.core.ImageProxy);
+    method public boolean isUsingCropRect();
+    method public boolean isUsingRotationDegrees();
+    method public void setUsingCropRect(boolean);
+    method public void setUsingRotationDegrees(boolean);
+  }
+
+  @SuppressCompatibility public final class OutputTransform {
+  }
+
+}
+
+package androidx.camera.view.video {
+
+  public class AudioConfig {
+    method @RequiresPermission(android.Manifest.permission.RECORD_AUDIO) public static androidx.camera.view.video.AudioConfig create(boolean);
+    method public boolean getAudioEnabled();
+    field public static final androidx.camera.view.video.AudioConfig AUDIO_DISABLED;
+  }
+
+}
+
diff --git a/camera/camera-viewfinder-compose/build.gradle b/camera/camera-viewfinder-compose/build.gradle
index 19dea01..38fad1e 100644
--- a/camera/camera-viewfinder-compose/build.gradle
+++ b/camera/camera-viewfinder-compose/build.gradle
@@ -41,7 +41,7 @@
 
     androidTestImplementation(project(":compose:ui:ui-test-junit4"))
     androidTestImplementation(project(":compose:test-utils"))
-    androidTestImplementation(project(":compose:material:material-icons-core"))
+    androidTestImplementation("androidx.compose.material:material-icons-core:1.6.7")
     androidTestImplementation(project(":camera:camera-testing"))
     androidTestImplementation(libs.testRules)
     androidTestImplementation(libs.testRunner)
diff --git a/camera/integration-tests/uiwidgetstestapp/src/androidTest/java/androidx/camera/integration/uiwidgets/viewpager/ViewPager2ActivityTest.kt b/camera/integration-tests/uiwidgetstestapp/src/androidTest/java/androidx/camera/integration/uiwidgets/viewpager/ViewPager2ActivityTest.kt
index 5c3893c..044f7f4 100644
--- a/camera/integration-tests/uiwidgetstestapp/src/androidTest/java/androidx/camera/integration/uiwidgets/viewpager/ViewPager2ActivityTest.kt
+++ b/camera/integration-tests/uiwidgetstestapp/src/androidTest/java/androidx/camera/integration/uiwidgets/viewpager/ViewPager2ActivityTest.kt
@@ -206,7 +206,7 @@
 
             scenario.moveToState(State.CREATED)
             scenario.moveToState(State.RESUMED)
-            mDevice.waitForIdle(ACTION_IDLE_TIMEOUT)
+            InstrumentationRegistry.getInstrumentation().waitForIdleSync()
 
             // After resume, switch back to CameraFragment, to check Preview in stream state
             onView(withId(ViewPager2Activity.CAMERA_VIEW_ID)).perform(click())
diff --git a/car/app/app-samples/navigation/common/src/main/java/androidx/car/app/sample/navigation/common/nav/NavigationService.java b/car/app/app-samples/navigation/common/src/main/java/androidx/car/app/sample/navigation/common/nav/NavigationService.java
index ea47c1f..123a13e 100644
--- a/car/app/app-samples/navigation/common/src/main/java/androidx/car/app/sample/navigation/common/nav/NavigationService.java
+++ b/car/app/app-samples/navigation/common/src/main/java/androidx/car/app/sample/navigation/common/nav/NavigationService.java
@@ -195,6 +195,7 @@
     /** Clears the currently used {@link CarContext}. */
     public void clearCarContext() {
         mCarContext = null;
+        mNavigationManager.clearNavigationManagerCallback();
         mNavigationManager = null;
     }
 
diff --git a/car/app/app/src/main/java/androidx/car/app/CarAppBinder.java b/car/app/app/src/main/java/androidx/car/app/CarAppBinder.java
index 719cf7a..6fd80a5 100644
--- a/car/app/app/src/main/java/androidx/car/app/CarAppBinder.java
+++ b/car/app/app/src/main/java/androidx/car/app/CarAppBinder.java
@@ -369,6 +369,12 @@
         return mHandshakeInfo;
     }
 
+    @VisibleForTesting
+    @Nullable
+    CarAppService getCarAppService() {
+        return mService;
+    }
+
     @Nullable
     Session getCurrentSession() {
         return mCurrentSession;
diff --git a/car/app/app/src/main/java/androidx/car/app/CarAppService.java b/car/app/app/src/main/java/androidx/car/app/CarAppService.java
index bf653a6..7e460b9 100644
--- a/car/app/app/src/main/java/androidx/car/app/CarAppService.java
+++ b/car/app/app/src/main/java/androidx/car/app/CarAppService.java
@@ -220,7 +220,7 @@
             synchronized (mBinders) {
                 CarAppBinder binder = mBinders.remove(sessionInfo);
                 if (binder != null) {
-                    binder.onDestroyLifecycle();
+                    binder.destroy();
                 }
             }
         });
diff --git a/car/app/app/src/main/java/androidx/car/app/HostDispatcher.java b/car/app/app/src/main/java/androidx/car/app/HostDispatcher.java
index aa6566f..2378d04 100644
--- a/car/app/app/src/main/java/androidx/car/app/HostDispatcher.java
+++ b/car/app/app/src/main/java/androidx/car/app/HostDispatcher.java
@@ -145,68 +145,76 @@
         }
 
         IInterface host;
-        switch (hostType) {
-            case CarContext.APP_SERVICE:
-                if (mAppHost == null) {
-                    mAppHost =
-                            RemoteUtils.dispatchCallToHostForResult("getHost(App)", () ->
-                                    IAppHost.Stub.asInterface(requireNonNull(mCarHost).getHost(
-                                            CarContext.APP_SERVICE)));
-                }
-                host = mAppHost;
-                break;
-            case CarContext.CONSTRAINT_SERVICE:
-                if (mConstraintHost == null) {
-                    mConstraintHost =
-                            RemoteUtils.dispatchCallToHostForResult("getHost(Constraints)", () ->
-                                    IConstraintHost.Stub.asInterface(
-                                            requireNonNull(mCarHost).getHost(
-                                                    CarContext.CONSTRAINT_SERVICE)));
-                }
-                host = mConstraintHost;
-                break;
-            case CarContext.SUGGESTION_SERVICE:
-                if (mSuggestionHost == null) {
-                    mSuggestionHost =
-                            RemoteUtils.dispatchCallToHostForResult(
-                                    "getHost(Suggestion)", () ->
-                                            ISuggestionHost.Stub.asInterface(
+        try {
+            switch (hostType) {
+                case CarContext.APP_SERVICE:
+                    if (mAppHost == null) {
+                        mAppHost =
+                                RemoteUtils.dispatchCallToHostForResult("getHost(App)", () ->
+                                        IAppHost.Stub.asInterface(requireNonNull(mCarHost).getHost(
+                                                CarContext.APP_SERVICE)));
+                    }
+                    host = mAppHost;
+                    break;
+                case CarContext.CONSTRAINT_SERVICE:
+                    if (mConstraintHost == null) {
+                        mConstraintHost =
+                                RemoteUtils.dispatchCallToHostForResult(
+                                        "getHost(Constraints)", () ->
+                                            IConstraintHost.Stub.asInterface(
                                                     requireNonNull(mCarHost).getHost(
-                                                            CarContext.SUGGESTION_SERVICE))
-                            );
-                }
-                host = mSuggestionHost;
-                break;
-            case CarContext.MEDIA_PLAYBACK_SERVICE:
-                if (mPlaybackMediaHost == null) {
-                    mPlaybackMediaHost =
-                            RemoteUtils.dispatchCallToHostForResult(
-                                    "getHost(Media)", () ->
-                                            IMediaPlaybackHost.Stub.asInterface(
-                                                    requireNonNull(mCarHost).getHost(
-                                                            CarContext.MEDIA_PLAYBACK_SERVICE))
-                            );
-                }
-                host = mPlaybackMediaHost;
-                break;
-            case CarContext.NAVIGATION_SERVICE:
-                if (mNavigationHost == null) {
-                    mNavigationHost =
-                            RemoteUtils.dispatchCallToHostForResult(
-                                    "getHost(Navigation)", () ->
-                                            INavigationHost.Stub.asInterface(
-                                                    requireNonNull(mCarHost).getHost(
-                                                            CarContext.NAVIGATION_SERVICE))
-                            );
-                }
-                host = mNavigationHost;
-                break;
-            case CarContext.CAR_SERVICE:
-                host = mCarHost;
-                break;
-            default:
-                throw new InvalidParameterException("Invalid host type: " + hostType);
+                                                            CarContext.CONSTRAINT_SERVICE)));
+                    }
+                    host = mConstraintHost;
+                    break;
+                case CarContext.SUGGESTION_SERVICE:
+                    if (mSuggestionHost == null) {
+                        mSuggestionHost =
+                                RemoteUtils.dispatchCallToHostForResult(
+                                        "getHost(Suggestion)", () ->
+                                                ISuggestionHost.Stub.asInterface(
+                                                        requireNonNull(mCarHost).getHost(
+                                                                CarContext.SUGGESTION_SERVICE))
+                                );
+                    }
+                    host = mSuggestionHost;
+                    break;
+                case CarContext.MEDIA_PLAYBACK_SERVICE:
+                    if (mPlaybackMediaHost == null) {
+                        mPlaybackMediaHost =
+                                RemoteUtils.dispatchCallToHostForResult(
+                                        "getHost(Media)", () ->
+                                                IMediaPlaybackHost.Stub.asInterface(
+                                                        requireNonNull(mCarHost).getHost(
+                                                                CarContext.MEDIA_PLAYBACK_SERVICE))
+                                );
+                    }
+                    host = mPlaybackMediaHost;
+                    break;
+                case CarContext.NAVIGATION_SERVICE:
+                    if (mNavigationHost == null) {
+                        mNavigationHost =
+                                RemoteUtils.dispatchCallToHostForResult(
+                                        "getHost(Navigation)", () ->
+                                                INavigationHost.Stub.asInterface(
+                                                        requireNonNull(mCarHost).getHost(
+                                                                CarContext.NAVIGATION_SERVICE))
+                                );
+                    }
+                    host = mNavigationHost;
+                    break;
+                case CarContext.CAR_SERVICE:
+                    host = mCarHost;
+                    break;
+                default:
+                    throw new InvalidParameterException("Invalid host type: " + hostType);
+            }
+        } catch (HostException e) {
+            Log.e(LogTags.TAG_DISPATCH, "Host threw an exception when attempting to retrieve "
+                    + "host service");
+            return null;
         }
+
         return host;
     }
 }
diff --git a/car/app/app/src/main/java/androidx/car/app/utils/RemoteUtils.java b/car/app/app/src/main/java/androidx/car/app/utils/RemoteUtils.java
index 9a85eff..d0e2466 100644
--- a/car/app/app/src/main/java/androidx/car/app/utils/RemoteUtils.java
+++ b/car/app/app/src/main/java/androidx/car/app/utils/RemoteUtils.java
@@ -37,7 +37,10 @@
 import androidx.car.app.annotations.RequiresCarApi;
 import androidx.car.app.serialization.Bundleable;
 import androidx.car.app.serialization.BundlerException;
+import androidx.lifecycle.DefaultLifecycleObserver;
 import androidx.lifecycle.Lifecycle;
+import androidx.lifecycle.LifecycleObserver;
+import androidx.lifecycle.LifecycleOwner;
 
 /**
  * Assorted utilities to deal with serialization of remote calls.
@@ -266,11 +269,22 @@
 
     private static class SurfaceCallbackStub extends ISurfaceCallback.Stub {
         private final Lifecycle mLifecycle;
-        private final SurfaceCallback mSurfaceCallback;
+        @Nullable
+        private SurfaceCallback mSurfaceCallback;
 
         SurfaceCallbackStub(Lifecycle lifecycle, SurfaceCallback surfaceCallback) {
             mLifecycle = lifecycle;
             mSurfaceCallback = surfaceCallback;
+
+            LifecycleObserver observer = new DefaultLifecycleObserver() {
+                @Override
+                public void onDestroy(@NonNull LifecycleOwner owner) {
+                    mSurfaceCallback = null;
+                    owner.getLifecycle().removeObserver(this);
+                }
+            };
+
+            lifecycle.addObserver(observer);
         }
 
         @Override
@@ -280,8 +294,10 @@
                     callback,
                     "onSurfaceAvailable",
                     () -> {
-                        mSurfaceCallback.onSurfaceAvailable(
-                                (SurfaceContainer) surfaceContainer.get());
+                        if (mSurfaceCallback != null) {
+                            mSurfaceCallback.onSurfaceAvailable(
+                                    (SurfaceContainer) surfaceContainer.get());
+                        }
                         return null;
                     });
         }
@@ -293,7 +309,9 @@
                     callback,
                     "onVisibleAreaChanged",
                     () -> {
-                        mSurfaceCallback.onVisibleAreaChanged(visibleArea);
+                        if (mSurfaceCallback != null) {
+                            mSurfaceCallback.onVisibleAreaChanged(visibleArea);
+                        }
                         return null;
                     });
         }
@@ -303,7 +321,9 @@
             dispatchCallFromHost(
                     mLifecycle, callback,
                     "onStableAreaChanged", () -> {
-                        mSurfaceCallback.onStableAreaChanged(stableArea);
+                        if (mSurfaceCallback != null) {
+                            mSurfaceCallback.onStableAreaChanged(stableArea);
+                        }
                         return null;
                     });
         }
@@ -315,8 +335,10 @@
                     callback,
                     "onSurfaceDestroyed",
                     () -> {
-                        mSurfaceCallback.onSurfaceDestroyed(
-                                (SurfaceContainer) surfaceContainer.get());
+                        if (mSurfaceCallback != null) {
+                            mSurfaceCallback.onSurfaceDestroyed(
+                                    (SurfaceContainer) surfaceContainer.get());
+                        }
                         return null;
                     });
         }
@@ -324,7 +346,9 @@
         @Override
         public void onScroll(float distanceX, float distanceY) {
             dispatchCallFromHost(mLifecycle, "onScroll", () -> {
-                mSurfaceCallback.onScroll(distanceX, distanceY);
+                if (mSurfaceCallback != null) {
+                    mSurfaceCallback.onScroll(distanceX, distanceY);
+                }
                 return null;
             });
         }
@@ -332,7 +356,9 @@
         @Override
         public void onFling(float velocityX, float velocityY) {
             dispatchCallFromHost(mLifecycle, "onFling", () -> {
-                mSurfaceCallback.onFling(velocityX, velocityY);
+                if (mSurfaceCallback != null) {
+                    mSurfaceCallback.onFling(velocityX, velocityY);
+                }
                 return null;
             });
         }
@@ -340,7 +366,9 @@
         @Override
         public void onScale(float focusX, float focusY, float scaleFactor) {
             dispatchCallFromHost(mLifecycle, "onScale", () -> {
-                mSurfaceCallback.onScale(focusX, focusY, scaleFactor);
+                if (mSurfaceCallback != null) {
+                    mSurfaceCallback.onScale(focusX, focusY, scaleFactor);
+                }
                 return null;
             });
         }
@@ -348,7 +376,9 @@
         @Override
         public void onClick(float x, float y) throws RemoteException {
             dispatchCallFromHost(mLifecycle, "onClick", () -> {
-                mSurfaceCallback.onClick(x, y);
+                if (mSurfaceCallback != null) {
+                    mSurfaceCallback.onClick(x, y);
+                }
                 return null;
             });
         }
diff --git a/car/app/app/src/test/java/androidx/car/app/CarAppServiceTest.java b/car/app/app/src/test/java/androidx/car/app/CarAppServiceTest.java
index 607f0a9..d081585 100644
--- a/car/app/app/src/test/java/androidx/car/app/CarAppServiceTest.java
+++ b/car/app/app/src/test/java/androidx/car/app/CarAppServiceTest.java
@@ -81,7 +81,7 @@
     }
 
     @Test
-    public void onUnbind_destroysSession() {
+    public void onUnbind_destroysSessionAndRemovesReferenceToService() {
         Intent bindIntent = new Intent();
         SessionInfo clusterSessionInfo = new SessionInfo(DISPLAY_TYPE_CLUSTER, "test-id");
         SessionInfoIntentEncoder.encode(clusterSessionInfo, bindIntent);
@@ -89,9 +89,11 @@
 
         assertThat(binder.getCurrentSession()).isNotNull();
         assertThat(mCarAppService.getSession(clusterSessionInfo)).isNotNull();
+        assertThat(binder.getCarAppService()).isNotNull();
         assertThat(mCarAppService.onUnbind(bindIntent)).isTrue();
 
         assertThat(binder.getCurrentSession()).isNull();
+        assertThat(binder.getCarAppService()).isNull();
         assertThat(mCarAppService.getSession(clusterSessionInfo)).isNull();
     }
 
diff --git a/car/app/app/src/test/java/androidx/car/app/HostDispatcherTest.java b/car/app/app/src/test/java/androidx/car/app/HostDispatcherTest.java
index 9a86e5f..168642d 100644
--- a/car/app/app/src/test/java/androidx/car/app/HostDispatcherTest.java
+++ b/car/app/app/src/test/java/androidx/car/app/HostDispatcherTest.java
@@ -208,9 +208,9 @@
         mHostDispatcher.resetHosts();
 
         mHostDispatcher.setCarHost(mMockCarHost);
-        doThrow(new IllegalStateException()).when(mMockCarHost).getHost(any());
+        doThrow(new RemoteException()).when(mMockCarHost).getHost(any());
 
-        assertThrows(HostException.class, () -> mHostDispatcher.getHost(CarContext.APP_SERVICE));
+        assertThrows(RemoteException.class, () -> mHostDispatcher.getHost(CarContext.APP_SERVICE));
     }
 
     @Test
@@ -235,10 +235,10 @@
     }
 
     @Test
-    public void getHost_appHost_hostThrowsRuntimeException_throwsHostException()
+    public void getHost_appHost_hostThrowsRuntimeException_returnsNull()
             throws RemoteException {
         when(mMockCarHost.getHost(any())).thenThrow(new IllegalStateException());
-        assertThrows(HostException.class, () -> mHostDispatcher.getHost(CarContext.APP_SERVICE));
+        assertThat(mHostDispatcher.getHost(CarContext.APP_SERVICE)).isEqualTo(null);
     }
 
     @Test
@@ -255,14 +255,12 @@
     }
 
     @Test
-    public void getHost_suggestionHost_hostThrowsRuntimeException_throwsHostException()
+    public void getHost_suggestionHost_hostThrowsRuntimeException_returnsNull()
             throws RemoteException {
         when(mMockCarHost.getHost(any())).thenThrow(new IllegalStateException());
-        assertThrows(HostException.class,
-                () -> mHostDispatcher.getHost(CarContext.SUGGESTION_SERVICE));
+        assertThat(mHostDispatcher.getHost(CarContext.SUGGESTION_SERVICE)).isEqualTo(null);
     }
 
-    //
     @Test
     public void getHost_suggestionHost_returnsProperHostService() throws RemoteException {
         assertThat(mHostDispatcher.getHost(CarContext.SUGGESTION_SERVICE)).isEqualTo(
@@ -277,11 +275,11 @@
     }
 
     @Test
-    public void getHost_navigationHost_hostThrowsRuntimeException_throwsHostException()
+    public void getHost_navigationHost_hostThrowsRuntimeException_returnsNull()
             throws RemoteException {
         when(mMockCarHost.getHost(any())).thenThrow(new IllegalStateException());
-        assertThrows(HostException.class,
-                () -> mHostDispatcher.getHost(CarContext.NAVIGATION_SERVICE));
+        assertThat(mHostDispatcher.getHost(CarContext.NAVIGATION_SERVICE)).isEqualTo(null);
+
     }
 
     @Test
diff --git a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeBytecodeCodegenTest.kt b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeBytecodeCodegenTest.kt
index ff151ea..62534ea 100644
--- a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeBytecodeCodegenTest.kt
+++ b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeBytecodeCodegenTest.kt
@@ -21,6 +21,7 @@
 import org.junit.Assume.assumeFalse
 import org.junit.Test
 
+/* ktlint-disable max-line-length */
 class ComposeBytecodeCodegenTest(useFir: Boolean) : AbstractCodegenTest(useFir) {
 
     @Test
@@ -620,4 +621,38 @@
             fun ReceiveValue(value: Int) { }
         """
     )
+
+    @Test
+    fun testDefaultParametersInVirtualFunctions() = validateBytecode(
+        """
+            import androidx.compose.runtime.*
+
+            interface Test {
+                @Composable fun foo(param: Int = remember { 0 })
+                @Composable fun bar(param: Int = remember { 0 }): Int = param
+            }
+
+            class TestImpl : Test {
+                @Composable override fun foo(param: Int) {}
+                @Composable override fun bar(param: Int): Int {
+                    return super.bar(param)
+                }
+            }
+
+            @Composable fun CallWithDefaults(test: Test) {
+                test.foo()
+                test.foo(0)
+                test.bar()
+                test.bar(0)
+            }
+        """,
+        validate = {
+            assertTrue(
+                it.contains(
+                    "INVOKESTATIC test/Test%ComposeDefaultImpls.foo%default (ILtest/Test;Landroidx/compose/runtime/Composer;II)V"
+                ),
+                "default static functions should be generated in ComposeDefaultsImpl class"
+            )
+        }
+    )
 }
diff --git a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeCrossModuleTests.kt b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeCrossModuleTests.kt
index c34fb73..8e95869 100644
--- a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeCrossModuleTests.kt
+++ b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposeCrossModuleTests.kt
@@ -1224,6 +1224,60 @@
         )
     }
 
+    @Test
+    fun defaultParametersInFakeOverrideVirtualComposableFunctions() {
+        compile(
+            mapOf(
+                "Base" to mapOf(
+                    "base/Base.kt" to """
+                    package base
+
+                    import androidx.compose.runtime.Composable
+
+                    open class Test {
+                        @Composable open fun Test(content: @Composable () -> Unit = {}) = content()
+                        open fun runTest(content: @Composable () -> Unit = {}) {}
+                    }
+                    """
+                ),
+                "Intermediate" to mapOf(
+                    "intermediate/Intermediate.kt" to """
+                    package intermediate
+
+                    import androidx.compose.runtime.Composable
+                    import base.Test
+
+                    open class DeviceTest : Test() {
+                        @Composable open fun DeviceTest(content: @Composable () -> Unit = {}) = content()
+                    }
+                    """
+                ),
+                "Main" to mapOf(
+                    "Main.kt" to """
+                    package main
+
+                    import base.Test
+                    import intermediate.DeviceTest
+                    import androidx.compose.runtime.Composable
+
+                    class MainTest : DeviceTest()
+
+                    @Composable fun CallWithDefaults(test: Test, deviceTest: DeviceTest, mainTest: MainTest) {
+                        test.runTest {
+                            test.Test()
+                            test.Test { }
+                            deviceTest.Test()
+                            deviceTest.DeviceTest()
+                            mainTest.Test()
+                            mainTest.DeviceTest()
+                        }
+                    }
+                    """
+                )
+            )
+        )
+    }
+
     private fun compile(
         modules: Map<String, Map<String, String>>,
         dumpClasses: Boolean = false,
diff --git a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposerParamTransformTests.kt b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposerParamTransformTests.kt
index b7ceccb..074b91a 100644
--- a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposerParamTransformTests.kt
+++ b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/ComposerParamTransformTests.kt
@@ -248,7 +248,7 @@
                     object : IrElementVisitorVoid {
                         override fun visitSimpleFunction(declaration: IrSimpleFunction) {
                             val composer = declaration.valueParameters.firstOrNull {
-                                it.name == KtxNameConventions.COMPOSER_PARAMETER
+                                it.name == ComposeNames.COMPOSER_PARAMETER
                             }
                             val oldComposer = currentComposer
                             if (composer != null) currentComposer = composer
@@ -265,7 +265,7 @@
                             val value = expression.symbol.owner
                             if (
                                 value is IrValueParameter && value.name ==
-                                KtxNameConventions.COMPOSER_PARAMETER
+                                ComposeNames.COMPOSER_PARAMETER
                             ) {
                                 assertEquals(
                                     "Composer unexpectedly captured",
diff --git a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/DefaultParamTransformTests.kt b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/DefaultParamTransformTests.kt
index 97fdd6e..4ce52b2 100644
--- a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/DefaultParamTransformTests.kt
+++ b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/DefaultParamTransformTests.kt
@@ -28,14 +28,12 @@
         dumpTree: Boolean = false
     ) = verifyGoldenComposeIrTransform(
         """
-            import androidx.compose.runtime.Composable
-            import androidx.compose.runtime.NonRestartableComposable
+            import androidx.compose.runtime.*
 
             $checked
         """.trimIndent(),
         """
-            import androidx.compose.runtime.Composable
-            import androidx.compose.runtime.NonRestartableComposable
+            import androidx.compose.runtime.*
 
             $unchecked
 
@@ -405,4 +403,149 @@
             }
         """
     )
+
+    @Test
+    fun testDefaultParamOnInterface() = defaultParams(
+        unchecked = """""",
+        checked = """
+            interface Test {
+                @Composable fun foo(param: Int = remember { 0 })
+                @Composable fun bar(param: Int = remember { 0 }): Int = param
+            }
+
+            interface TestBetween : Test {
+                 @Composable fun betweenFoo(param: Int = remember { 0 })
+                 @Composable fun betweenFooDefault(param: Int = remember { 0 }) {}
+                 @Composable fun betweenBar(param: Int = remember { 0 }): Int = param
+            }
+
+            class TestImpl : TestBetween {
+                @Composable override fun foo(param: Int) {}
+                @Composable override fun bar(param: Int): Int {
+                    return super.bar(param)
+                }
+                @Composable override fun betweenFoo(param: Int) {}
+            }
+
+            @Composable fun CallWithDefaults(test: Test, testBetween: TestBetween, testImpl: TestImpl) {
+                test.foo()
+                test.foo(0)
+                test.bar()
+                test.bar(0)
+
+                testBetween.foo()
+                testBetween.foo(0)
+                testBetween.bar()
+                testBetween.bar(0)
+                testBetween.betweenFoo()
+                testBetween.betweenFoo(0)
+                testBetween.betweenFooDefault()
+                testBetween.betweenFooDefault(0)
+                testBetween.betweenBar()
+                testBetween.betweenBar(0)
+
+                testImpl.foo()
+                testImpl.foo(0)
+                testImpl.bar()
+                testImpl.bar(0)
+                testImpl.betweenFoo()
+                testImpl.betweenFoo(0)
+                testImpl.betweenFooDefault()
+                testImpl.betweenFooDefault(0)
+                testImpl.betweenBar()
+                testImpl.betweenBar(0)
+            }
+        """
+    )
+
+    @Test
+    fun testDefaultParamOverrideOpenFunction() = defaultParams(
+        unchecked = """""",
+        checked = """
+            @Composable fun CallWithDefaults(test: Test) {
+                test.foo()
+                test.foo(0)
+                test.bar()
+                test.bar(0)
+            }
+
+            open class Test {
+                @Composable open fun foo(param: Int = remember { 0 }) {}
+                @Composable open fun bar(param: Int = remember { 0 }): Int = param
+            }
+
+            class TestImpl : Test() {
+                @Composable override fun foo(param: Int) {}
+                @Composable override fun bar(param: Int): Int {
+                    return super.bar(param)
+                }
+            }
+        """
+    )
+
+    @Test
+    fun testDefaultParamOverrideExtensionReceiver() = defaultParams(
+        unchecked = "",
+        checked = """
+            interface Test {
+                @Composable fun Int.foo(param: Int = remember { 0 })
+                @Composable fun Int.bar(param: Int = remember { 0 }): Int = param
+            }
+
+            class TestImpl : Test {
+                @Composable override fun Int.foo(param: Int) {}
+                @Composable override fun Int.bar(param: Int): Int = 0
+            }
+
+            @Composable fun CallWithDefaults(test: Test) {
+                with(test) {
+                    42.foo()
+                    42.foo(0)
+                    42.bar()
+                    42.bar(0)
+                }
+            }
+        """
+    )
+
+    @Test
+    fun testDefaultParamFakeOverride() = defaultParams(
+        unchecked = "",
+        checked = """
+            open class Test {
+                @Composable open fun foo(param: Int = remember { 0 }) {}
+                @Composable open fun bar(param: Int = remember { 0 }): Int = param
+            }
+
+            class TestImpl : Test() {
+                @Composable override fun foo(param: Int) {}
+            }
+
+            @Composable fun CallWithDefaults(test: Test) {
+                test.foo()
+                test.foo(0)
+                test.bar()
+                test.bar(0)
+            }
+        """
+    )
+
+    @Test
+    fun testDefaultParamComposableLambda() = defaultParams(
+        unchecked = """
+            @Composable fun Text(value: String) {}
+        """,
+        checked = """
+            private interface DefaultParamInterface {
+                @Composable fun Content(
+                    content: @Composable () -> Unit = @Composable { ComposedContent { Text("default") } }
+                )
+                @Composable fun ComposedContent(
+                    content: @Composable () -> Unit = @Composable { Text("default") }
+                ) {
+                    content()
+                }
+            }
+        """,
+    )
 }
diff --git a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/analysis/ComposableDeclarationCheckerTests.kt b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/analysis/ComposableDeclarationCheckerTests.kt
index be507df..7652f0c 100644
--- a/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/analysis/ComposableDeclarationCheckerTests.kt
+++ b/compose/compiler/compiler-hosted/integration-tests/src/jvmTest/kotlin/androidx/compose/compiler/plugins/kotlin/analysis/ComposableDeclarationCheckerTests.kt
@@ -278,7 +278,7 @@
             """
             import androidx.compose.runtime.Composable
             interface A {
-                @Composable fun foo(x: Int = <!ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE!>0<!>)
+                @Composable fun foo(x: Int = 0)
             }
         """
         )
@@ -290,7 +290,7 @@
             """
             import androidx.compose.runtime.Composable
             interface A {
-                @Composable fun foo(x: Int = <!ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE!>0<!>) {}
+                @Composable fun foo(x: Int = 0) {}
             }
         """
         )
@@ -302,7 +302,7 @@
             """
             import androidx.compose.runtime.Composable
             abstract class A {
-                @Composable abstract fun foo(x: Int = <!ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE!>0<!>)
+                @Composable abstract fun foo(x: Int = 0)
             }
         """
         )
@@ -314,7 +314,7 @@
             """
             import androidx.compose.runtime.Composable
             open class A {
-                @Composable open fun foo(x: Int = <!ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE!>0<!>) {}
+                @Composable open fun foo(x: Int = 0) {}
             }
         """
         )
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = false\135.txt"
index 339eec7..1ca97cc 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = true\135.txt"
index 339eec7..1ca97cc 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test30Parameters\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = false\135.txt"
index 481cf0d..807268d 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = true\135.txt"
index 481cf0d..807268d 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31ParametersWithSomeUnstable\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = false\135.txt"
index b48332c..1d797f5 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = true\135.txt"
index b48332c..1d797f5 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/test31Parameters\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = false\135.txt"
index f8184ab..9422000 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = true\135.txt"
index f8184ab..9422000 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testComposableWithAndWithoutDefaultParams\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = false\135.txt"
index 7fe2adb..a1ea7df 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 open class Foo {
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = true\135.txt"
index 7fe2adb..a1ea7df 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsForFakeOverridesSuperMethods\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 open class Foo {
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = false\135.txt"
index 55e3722..39d4c98 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @NonRestartableComposable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = true\135.txt"
index 55e3722..39d4c98 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultArgsOnInvoke\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @NonRestartableComposable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamComposableLambda\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamComposableLambda\133useFir = false\135.txt"
new file mode 100644
index 0000000..21bb3c4
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamComposableLambda\133useFir = false\135.txt"
@@ -0,0 +1,163 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+private interface DefaultParamInterface {
+    @Composable fun Content(
+        content: @Composable () -> Unit = @Composable { ComposedContent { Text("default") } }
+    )
+    @Composable fun ComposedContent(
+        content: @Composable () -> Unit = @Composable { Text("default") }
+    ) {
+        content()
+    }
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+private interface DefaultParamInterface {
+  @Composable
+  abstract fun Content(content: Function2<Composer, Int, Unit>, %composer: Composer?, %changed: Int)
+  @Composable
+  @ComposableInferredTarget(scheme = "[0[0]]")
+  open fun ComposedContent(content: Function2<Composer, Int, Unit>, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(ComposedContent)<conten...>:Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    content(%composer, 0b1110 and %changed)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[_][0]]")
+    fun ComposedContent%default(content: Function2<Composer, Int, Unit>?, %this%: DefaultParamInterface, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(ComposedContent%default):Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changedInstance(content)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          content = ComposableSingletons%TestKt.lambda-1
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.ComposedContent(content, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        ComposedContent%default(content, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[_][0]]")
+    fun Content%default(content: Function2<Composer, Int, Unit>?, %this%: DefaultParamInterface, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(Content%default)<{>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changedInstance(content)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          content = rememberComposableLambda(<>, true, { %composer: Composer?, %changed: Int ->
+            sourceInformation(%composer, "C<Compos...>:Test.kt")
+            if (%changed and 0b0011 != 0b0010 || !%composer.skipping) {
+              if (isTraceInProgress()) {
+                traceEventStart(<>, %changed, -1, <>)
+              }
+              ComposedContent%default(ComposableSingletons%TestKt.lambda-2, %this%, %composer, 0b0110, 0)
+              if (isTraceInProgress()) {
+                traceEventEnd()
+              }
+            } else {
+              %composer.skipToGroupEnd()
+            }
+          }, %composer, 0b00110110)
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.Content(content, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        Content%default(content, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+  }
+}
+internal object ComposableSingletons%TestKt {
+  val lambda-1: Function2<Composer, Int, Unit> = composableLambdaInstance(<>, false) { %composer: Composer?, %changed: Int ->
+    sourceInformation(%composer, "C<Text("...>:Test.kt")
+    if (%changed and 0b0011 != 0b0010 || !%composer.skipping) {
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      Text("default", %composer, 0b0110)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+    } else {
+      %composer.skipToGroupEnd()
+    }
+  }
+  val lambda-2: Function2<Composer, Int, Unit> = composableLambdaInstance(<>, false) { %composer: Composer?, %changed: Int ->
+    sourceInformation(%composer, "C<Text("...>:Test.kt")
+    if (%changed and 0b0011 != 0b0010 || !%composer.skipping) {
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      Text("default", %composer, 0b0110)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+    } else {
+      %composer.skipToGroupEnd()
+    }
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamComposableLambda\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamComposableLambda\133useFir = true\135.txt"
new file mode 100644
index 0000000..21bb3c4
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamComposableLambda\133useFir = true\135.txt"
@@ -0,0 +1,163 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+private interface DefaultParamInterface {
+    @Composable fun Content(
+        content: @Composable () -> Unit = @Composable { ComposedContent { Text("default") } }
+    )
+    @Composable fun ComposedContent(
+        content: @Composable () -> Unit = @Composable { Text("default") }
+    ) {
+        content()
+    }
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+private interface DefaultParamInterface {
+  @Composable
+  abstract fun Content(content: Function2<Composer, Int, Unit>, %composer: Composer?, %changed: Int)
+  @Composable
+  @ComposableInferredTarget(scheme = "[0[0]]")
+  open fun ComposedContent(content: Function2<Composer, Int, Unit>, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(ComposedContent)<conten...>:Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    content(%composer, 0b1110 and %changed)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[_][0]]")
+    fun ComposedContent%default(content: Function2<Composer, Int, Unit>?, %this%: DefaultParamInterface, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(ComposedContent%default):Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changedInstance(content)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          content = ComposableSingletons%TestKt.lambda-1
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.ComposedContent(content, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        ComposedContent%default(content, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[_][0]]")
+    fun Content%default(content: Function2<Composer, Int, Unit>?, %this%: DefaultParamInterface, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(Content%default)<{>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changedInstance(content)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          content = rememberComposableLambda(<>, true, { %composer: Composer?, %changed: Int ->
+            sourceInformation(%composer, "C<Compos...>:Test.kt")
+            if (%changed and 0b0011 != 0b0010 || !%composer.skipping) {
+              if (isTraceInProgress()) {
+                traceEventStart(<>, %changed, -1, <>)
+              }
+              ComposedContent%default(ComposableSingletons%TestKt.lambda-2, %this%, %composer, 0b0110, 0)
+              if (isTraceInProgress()) {
+                traceEventEnd()
+              }
+            } else {
+              %composer.skipToGroupEnd()
+            }
+          }, %composer, 0b00110110)
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.Content(content, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        Content%default(content, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+  }
+}
+internal object ComposableSingletons%TestKt {
+  val lambda-1: Function2<Composer, Int, Unit> = composableLambdaInstance(<>, false) { %composer: Composer?, %changed: Int ->
+    sourceInformation(%composer, "C<Text("...>:Test.kt")
+    if (%changed and 0b0011 != 0b0010 || !%composer.skipping) {
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      Text("default", %composer, 0b0110)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+    } else {
+      %composer.skipToGroupEnd()
+    }
+  }
+  val lambda-2: Function2<Composer, Int, Unit> = composableLambdaInstance(<>, false) { %composer: Composer?, %changed: Int ->
+    sourceInformation(%composer, "C<Text("...>:Test.kt")
+    if (%changed and 0b0011 != 0b0010 || !%composer.skipping) {
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      Text("default", %composer, 0b0110)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+    } else {
+      %composer.skipToGroupEnd()
+    }
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamFakeOverride\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamFakeOverride\133useFir = false\135.txt"
new file mode 100644
index 0000000..8142220
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamFakeOverride\133useFir = false\135.txt"
@@ -0,0 +1,163 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+open class Test {
+    @Composable open fun foo(param: Int = remember { 0 }) {}
+    @Composable open fun bar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : Test() {
+    @Composable override fun foo(param: Int) {}
+}
+
+@Composable fun CallWithDefaults(test: Test) {
+    test.foo()
+    test.foo(0)
+    test.bar()
+    test.bar(0)
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+@StabilityInferred(parameters = 1)
+open class Test {
+  @Composable
+  open fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  open fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+  class ComposeDefaultImpls {
+    @Composable
+    fun foo%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (%composer.changed(%this%)) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun bar%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : Test {
+  @Composable
+  override fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  static val %stable: Int = 0
+}
+@Composable
+fun CallWithDefaults(test: Test, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)<foo()>,<foo(0)>,<bar()>,<bar(0)>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (%composer.changed(test)) 0b0100 else 0b0010
+  }
+  if (%dirty and 0b0011 != 0b0010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    foo%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    foo%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    bar%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    bar%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamFakeOverride\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamFakeOverride\133useFir = true\135.txt"
new file mode 100644
index 0000000..8142220
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamFakeOverride\133useFir = true\135.txt"
@@ -0,0 +1,163 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+open class Test {
+    @Composable open fun foo(param: Int = remember { 0 }) {}
+    @Composable open fun bar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : Test() {
+    @Composable override fun foo(param: Int) {}
+}
+
+@Composable fun CallWithDefaults(test: Test) {
+    test.foo()
+    test.foo(0)
+    test.bar()
+    test.bar(0)
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+@StabilityInferred(parameters = 1)
+open class Test {
+  @Composable
+  open fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  open fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+  class ComposeDefaultImpls {
+    @Composable
+    fun foo%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (%composer.changed(%this%)) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun bar%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : Test {
+  @Composable
+  override fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  static val %stable: Int = 0
+}
+@Composable
+fun CallWithDefaults(test: Test, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)<foo()>,<foo(0)>,<bar()>,<bar(0)>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (%composer.changed(test)) 0b0100 else 0b0010
+  }
+  if (%dirty and 0b0011 != 0b0010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    foo%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    foo%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    bar%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    bar%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOnInterface\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOnInterface\133useFir = false\135.txt"
new file mode 100644
index 0000000..7a19662
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOnInterface\133useFir = false\135.txt"
@@ -0,0 +1,397 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+interface Test {
+    @Composable fun foo(param: Int = remember { 0 })
+    @Composable fun bar(param: Int = remember { 0 }): Int = param
+}
+
+interface TestBetween : Test {
+     @Composable fun betweenFoo(param: Int = remember { 0 })
+     @Composable fun betweenFooDefault(param: Int = remember { 0 }) {}
+     @Composable fun betweenBar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : TestBetween {
+    @Composable override fun foo(param: Int) {}
+    @Composable override fun bar(param: Int): Int {
+        return super.bar(param)
+    }
+    @Composable override fun betweenFoo(param: Int) {}
+}
+
+@Composable fun CallWithDefaults(test: Test, testBetween: TestBetween, testImpl: TestImpl) {
+    test.foo()
+    test.foo(0)
+    test.bar()
+    test.bar(0)
+
+    testBetween.foo()
+    testBetween.foo(0)
+    testBetween.bar()
+    testBetween.bar(0)
+    testBetween.betweenFoo()
+    testBetween.betweenFoo(0)
+    testBetween.betweenFooDefault()
+    testBetween.betweenFooDefault(0)
+    testBetween.betweenBar()
+    testBetween.betweenBar(0)
+
+    testImpl.foo()
+    testImpl.foo(0)
+    testImpl.bar()
+    testImpl.bar(0)
+    testImpl.betweenFoo()
+    testImpl.betweenFoo(0)
+    testImpl.betweenFooDefault()
+    testImpl.betweenFooDefault(0)
+    testImpl.betweenBar()
+    testImpl.betweenBar(0)
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+interface Test {
+  @Composable
+  abstract fun foo(param: Int, %composer: Composer?, %changed: Int)
+  @Composable
+  open fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun foo%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun bar%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+interface TestBetween : Test {
+  @Composable
+  abstract fun betweenFoo(param: Int, %composer: Composer?, %changed: Int)
+  @Composable
+  open fun betweenFooDefault(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(betweenFooDefault):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  open fun betweenBar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(betweenBar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    fun betweenFoo%default(param: Int, %this%: TestBetween, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(betweenFoo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.betweenFoo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        betweenFoo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun betweenFooDefault%default(param: Int, %this%: TestBetween, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(betweenFooDefault%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.betweenFooDefault(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        betweenFooDefault%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun betweenBar%default(param: Int, %this%: TestBetween, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(betweenBar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.betweenBar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : TestBetween {
+  @Composable
+  override fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  override fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar)<bar(pa...>:Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = super<TestBetween>.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  @Composable
+  override fun betweenFoo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(betweenFoo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  static val %stable: Int = 0
+}
+@Composable
+@ComposableInferredTarget(scheme = "[0[0]]")
+fun CallWithDefaults(test: Test, testBetween: TestBetween, testImpl: TestImpl, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)<foo()>,<foo(0)>,<bar()>,<bar(0)>,<foo()>,<foo(0)>,<bar()>,<bar(0)>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<foo()>,<foo(0)>,<bar()>,<bar(0)>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (if (%changed and 0b1000 == 0) {
+      %composer.changed(test)
+    } else {
+      %composer.changedInstance(test)
+    }
+    ) 0b0100 else 0b0010
+  }
+  if (%changed and 0b00110000 == 0) {
+    %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+      %composer.changed(testBetween)
+    } else {
+      %composer.changedInstance(testBetween)
+    }
+    ) 0b00100000 else 0b00010000
+  }
+  if (%changed and 0b000110000000 == 0) {
+    %dirty = %dirty or if (%composer.changed(testImpl)) 0b000100000000 else 0b10000000
+  }
+  if (%dirty and 0b10010011 != 0b10010010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    foo%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    foo%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    bar%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    bar%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    foo%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    foo%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    bar%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    bar%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    betweenFoo%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    betweenFoo%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    betweenFooDefault%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    betweenFooDefault%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    betweenBar%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    betweenBar%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    foo%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    foo%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    bar%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    bar%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    betweenFoo%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    betweenFoo%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    betweenFooDefault%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    betweenFooDefault%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    betweenBar%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    betweenBar%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, testBetween, testImpl, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOnInterface\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOnInterface\133useFir = true\135.txt"
new file mode 100644
index 0000000..7a19662
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOnInterface\133useFir = true\135.txt"
@@ -0,0 +1,397 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+interface Test {
+    @Composable fun foo(param: Int = remember { 0 })
+    @Composable fun bar(param: Int = remember { 0 }): Int = param
+}
+
+interface TestBetween : Test {
+     @Composable fun betweenFoo(param: Int = remember { 0 })
+     @Composable fun betweenFooDefault(param: Int = remember { 0 }) {}
+     @Composable fun betweenBar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : TestBetween {
+    @Composable override fun foo(param: Int) {}
+    @Composable override fun bar(param: Int): Int {
+        return super.bar(param)
+    }
+    @Composable override fun betweenFoo(param: Int) {}
+}
+
+@Composable fun CallWithDefaults(test: Test, testBetween: TestBetween, testImpl: TestImpl) {
+    test.foo()
+    test.foo(0)
+    test.bar()
+    test.bar(0)
+
+    testBetween.foo()
+    testBetween.foo(0)
+    testBetween.bar()
+    testBetween.bar(0)
+    testBetween.betweenFoo()
+    testBetween.betweenFoo(0)
+    testBetween.betweenFooDefault()
+    testBetween.betweenFooDefault(0)
+    testBetween.betweenBar()
+    testBetween.betweenBar(0)
+
+    testImpl.foo()
+    testImpl.foo(0)
+    testImpl.bar()
+    testImpl.bar(0)
+    testImpl.betweenFoo()
+    testImpl.betweenFoo(0)
+    testImpl.betweenFooDefault()
+    testImpl.betweenFooDefault(0)
+    testImpl.betweenBar()
+    testImpl.betweenBar(0)
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+interface Test {
+  @Composable
+  abstract fun foo(param: Int, %composer: Composer?, %changed: Int)
+  @Composable
+  open fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun foo%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun bar%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+interface TestBetween : Test {
+  @Composable
+  abstract fun betweenFoo(param: Int, %composer: Composer?, %changed: Int)
+  @Composable
+  open fun betweenFooDefault(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(betweenFooDefault):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  open fun betweenBar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(betweenBar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    fun betweenFoo%default(param: Int, %this%: TestBetween, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(betweenFoo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.betweenFoo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        betweenFoo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun betweenFooDefault%default(param: Int, %this%: TestBetween, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(betweenFooDefault%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.betweenFooDefault(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        betweenFooDefault%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun betweenBar%default(param: Int, %this%: TestBetween, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(betweenBar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.betweenBar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : TestBetween {
+  @Composable
+  override fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  override fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar)<bar(pa...>:Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = super<TestBetween>.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  @Composable
+  override fun betweenFoo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(betweenFoo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  static val %stable: Int = 0
+}
+@Composable
+@ComposableInferredTarget(scheme = "[0[0]]")
+fun CallWithDefaults(test: Test, testBetween: TestBetween, testImpl: TestImpl, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)<foo()>,<foo(0)>,<bar()>,<bar(0)>,<foo()>,<foo(0)>,<bar()>,<bar(0)>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<foo()>,<foo(0)>,<bar()>,<bar(0)>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>,<betwee...>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (if (%changed and 0b1000 == 0) {
+      %composer.changed(test)
+    } else {
+      %composer.changedInstance(test)
+    }
+    ) 0b0100 else 0b0010
+  }
+  if (%changed and 0b00110000 == 0) {
+    %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+      %composer.changed(testBetween)
+    } else {
+      %composer.changedInstance(testBetween)
+    }
+    ) 0b00100000 else 0b00010000
+  }
+  if (%changed and 0b000110000000 == 0) {
+    %dirty = %dirty or if (%composer.changed(testImpl)) 0b000100000000 else 0b10000000
+  }
+  if (%dirty and 0b10010011 != 0b10010010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    foo%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    foo%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    bar%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    bar%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    foo%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    foo%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    bar%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    bar%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    betweenFoo%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    betweenFoo%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    betweenFooDefault%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    betweenFooDefault%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    betweenBar%default(0, testBetween, %composer, 0b01110000 and %dirty, 0b0001)
+    betweenBar%default(0, testBetween, %composer, 0b0110 or 0b01110000 and %dirty, 0)
+    foo%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    foo%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    bar%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    bar%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    betweenFoo%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    betweenFoo%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    betweenFooDefault%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    betweenFooDefault%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    betweenBar%default(0, testImpl, %composer, 0b01110000 and %dirty shr 0b0011, 0b0001)
+    betweenBar%default(0, testImpl, %composer, 0b0110 or 0b01110000 and %dirty shr 0b0011, 0)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, testBetween, testImpl, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideExtensionReceiver\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideExtensionReceiver\133useFir = false\135.txt"
new file mode 100644
index 0000000..df51bbd
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideExtensionReceiver\133useFir = false\135.txt"
@@ -0,0 +1,190 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+interface Test {
+    @Composable fun Int.foo(param: Int = remember { 0 })
+    @Composable fun Int.bar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : Test {
+    @Composable override fun Int.foo(param: Int) {}
+    @Composable override fun Int.bar(param: Int): Int = 0
+}
+
+@Composable fun CallWithDefaults(test: Test) {
+    with(test) {
+        42.foo()
+        42.foo(0)
+        42.bar()
+        42.bar(0)
+    }
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+interface Test {
+  @Composable
+  abstract fun Int.foo(param: Int, %composer: Composer?, %changed: Int)
+  @Composable
+  open fun Int.bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun foo%default(param: Int, %this%: Test, %this%: Int, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%default and 0b0100 != 0) {
+        %dirty = %dirty or 0b000110000000
+      } else if (%changed and 0b000110000000 == 0) {
+        %dirty = %dirty or if (%composer.changed(%this%)) 0b000100000000 else 0b10000000
+      }
+      if (%dirty and 0b10010011 != 0b10010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty shr 0b0110 or 0b01110000 and %dirty shl 0b0011 or 0b001110000000 and %dirty shl 0b0011)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun bar%default(param: Int, %this%: Test, %this%: Int, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed shr 0b0110 or 0b01110000 and %changed shl 0b0011 or 0b001110000000 and %changed shl 0b0011)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : Test {
+  @Composable
+  override fun Int.foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  override fun Int.bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = 0
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+}
+@Composable
+@ComposableInferredTarget(scheme = "[0[0]]")
+fun CallWithDefaults(test: Test, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)*<foo()>,<foo(0)>,<bar()>,<bar(0)>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (if (%changed and 0b1000 == 0) {
+      %composer.changed(test)
+    } else {
+      %composer.changedInstance(test)
+    }
+    ) 0b0100 else 0b0010
+  }
+  if (%dirty and 0b0011 != 0b0010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    val tmp0_group = with(test) {
+      foo%default(0, %this%with, 42, %composer, 0b000110000000, 0b0001)
+      foo%default(0, %this%with, 42, %composer, 0b000110000110, 0)
+      bar%default(0, %this%with, 42, %composer, 0b000110000000, 0b0001)
+      val tmp0_return = bar%default(0, %this%with, 42, %composer, 0b000110000110, 0)
+      tmp0_return
+    }
+    tmp0_group
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideExtensionReceiver\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideExtensionReceiver\133useFir = true\135.txt"
new file mode 100644
index 0000000..df51bbd
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideExtensionReceiver\133useFir = true\135.txt"
@@ -0,0 +1,190 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+interface Test {
+    @Composable fun Int.foo(param: Int = remember { 0 })
+    @Composable fun Int.bar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : Test {
+    @Composable override fun Int.foo(param: Int) {}
+    @Composable override fun Int.bar(param: Int): Int = 0
+}
+
+@Composable fun CallWithDefaults(test: Test) {
+    with(test) {
+        42.foo()
+        42.foo(0)
+        42.bar()
+        42.bar(0)
+    }
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+interface Test {
+  @Composable
+  abstract fun Int.foo(param: Int, %composer: Composer?, %changed: Int)
+  @Composable
+  open fun Int.bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  class ComposeDefaultImpls {
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun foo%default(param: Int, %this%: Test, %this%: Int, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (if (%changed and 0b01000000 == 0) {
+          %composer.changed(%this%)
+        } else {
+          %composer.changedInstance(%this%)
+        }
+        ) 0b00100000 else 0b00010000
+      }
+      if (%default and 0b0100 != 0) {
+        %dirty = %dirty or 0b000110000000
+      } else if (%changed and 0b000110000000 == 0) {
+        %dirty = %dirty or if (%composer.changed(%this%)) 0b000100000000 else 0b10000000
+      }
+      if (%dirty and 0b10010011 != 0b10010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty shr 0b0110 or 0b01110000 and %dirty shl 0b0011 or 0b001110000000 and %dirty shl 0b0011)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    @ComposableInferredTarget(scheme = "[0[0]]")
+    fun bar%default(param: Int, %this%: Test, %this%: Int, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed shr 0b0110 or 0b01110000 and %changed shl 0b0011 or 0b001110000000 and %changed shl 0b0011)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : Test {
+  @Composable
+  override fun Int.foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  override fun Int.bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = 0
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+}
+@Composable
+@ComposableInferredTarget(scheme = "[0[0]]")
+fun CallWithDefaults(test: Test, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)*<foo()>,<foo(0)>,<bar()>,<bar(0)>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (if (%changed and 0b1000 == 0) {
+      %composer.changed(test)
+    } else {
+      %composer.changedInstance(test)
+    }
+    ) 0b0100 else 0b0010
+  }
+  if (%dirty and 0b0011 != 0b0010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    val tmp0_group = with(test) {
+      foo%default(0, %this%with, 42, %composer, 0b000110000000, 0b0001)
+      foo%default(0, %this%with, 42, %composer, 0b000110000110, 0)
+      bar%default(0, %this%with, 42, %composer, 0b000110000000, 0b0001)
+      val tmp0_return = bar%default(0, %this%with, 42, %composer, 0b000110000110, 0)
+      tmp0_return
+    }
+    tmp0_group
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideOpenFunction\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideOpenFunction\133useFir = false\135.txt"
new file mode 100644
index 0000000..09a5238
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideOpenFunction\133useFir = false\135.txt"
@@ -0,0 +1,180 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+@Composable fun CallWithDefaults(test: Test) {
+    test.foo()
+    test.foo(0)
+    test.bar()
+    test.bar(0)
+}
+
+open class Test {
+    @Composable open fun foo(param: Int = remember { 0 }) {}
+    @Composable open fun bar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : Test() {
+    @Composable override fun foo(param: Int) {}
+    @Composable override fun bar(param: Int): Int {
+        return super.bar(param)
+    }
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+@Composable
+fun CallWithDefaults(test: Test, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)<foo()>,<foo(0)>,<bar()>,<bar(0)>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (%composer.changed(test)) 0b0100 else 0b0010
+  }
+  if (%dirty and 0b0011 != 0b0010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    foo%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    foo%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    bar%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    bar%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
+@StabilityInferred(parameters = 1)
+open class Test {
+  @Composable
+  open fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  open fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+  class ComposeDefaultImpls {
+    @Composable
+    fun foo%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (%composer.changed(%this%)) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun bar%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : Test {
+  @Composable
+  override fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  override fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar)<bar(pa...>:Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = super<Test>.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideOpenFunction\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideOpenFunction\133useFir = true\135.txt"
new file mode 100644
index 0000000..09a5238
--- /dev/null
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testDefaultParamOverrideOpenFunction\133useFir = true\135.txt"
@@ -0,0 +1,180 @@
+//
+// Source
+// ------------------------------------------
+
+import androidx.compose.runtime.*
+
+
+@Composable fun CallWithDefaults(test: Test) {
+    test.foo()
+    test.foo(0)
+    test.bar()
+    test.bar(0)
+}
+
+open class Test {
+    @Composable open fun foo(param: Int = remember { 0 }) {}
+    @Composable open fun bar(param: Int = remember { 0 }): Int = param
+}
+
+class TestImpl : Test() {
+    @Composable override fun foo(param: Int) {}
+    @Composable override fun bar(param: Int): Int {
+        return super.bar(param)
+    }
+}
+
+//
+// Transformed IR
+// ------------------------------------------
+
+@Composable
+fun CallWithDefaults(test: Test, %composer: Composer?, %changed: Int) {
+  %composer = %composer.startRestartGroup(<>)
+  sourceInformation(%composer, "C(CallWithDefaults)<foo()>,<foo(0)>,<bar()>,<bar(0)>:Test.kt")
+  val %dirty = %changed
+  if (%changed and 0b0110 == 0) {
+    %dirty = %dirty or if (%composer.changed(test)) 0b0100 else 0b0010
+  }
+  if (%dirty and 0b0011 != 0b0010 || !%composer.skipping) {
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %dirty, -1, <>)
+    }
+    foo%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    foo%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    bar%default(0, test, %composer, 0b01110000 and %dirty shl 0b0011, 0b0001)
+    bar%default(0, test, %composer, 0b0110 or 0b01110000 and %dirty shl 0b0011, 0)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+  } else {
+    %composer.skipToGroupEnd()
+  }
+  %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+    CallWithDefaults(test, %composer, updateChangedFlags(%changed or 0b0001))
+  }
+}
+@StabilityInferred(parameters = 1)
+open class Test {
+  @Composable
+  open fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  open fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = param
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+  class ComposeDefaultImpls {
+    @Composable
+    fun foo%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int) {
+      %composer = %composer.startRestartGroup(<>)
+      sourceInformation(%composer, "C(foo%default)<rememb...>:Test.kt")
+      val %dirty = %changed
+      if (%default and 0b0001 != 0) {
+        %dirty = %dirty or 0b0110
+      } else if (%changed and 0b0110 == 0) {
+        %dirty = %dirty or if (%composer.changed(param)) 0b0100 else 0b0010
+      }
+      if (%default and 0b0010 != 0) {
+        %dirty = %dirty or 0b00110000
+      } else if (%changed and 0b00110000 == 0) {
+        %dirty = %dirty or if (%composer.changed(%this%)) 0b00100000 else 0b00010000
+      }
+      if (%dirty and 0b00010011 != 0b00010010 || !%composer.skipping) {
+        if (%default and 0b0001 != 0) {
+          param = <block>{
+            sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+            val tmp0_group = %composer.cache(false) {
+              0
+            }
+            sourceInformationMarkerEnd(%composer)
+            tmp0_group
+          }
+        }
+        if (isTraceInProgress()) {
+          traceEventStart(<>, %dirty, -1, <>)
+        }
+        %this%.foo(param, %composer, 0b1110 and %dirty or 0b01110000 and %dirty)
+        if (isTraceInProgress()) {
+          traceEventEnd()
+        }
+      } else {
+        %composer.skipToGroupEnd()
+      }
+      %composer.endRestartGroup()?.updateScope { %composer: Composer?, %force: Int ->
+        foo%default(param, %this%, %composer, updateChangedFlags(%changed or 0b0001), %default)
+      }
+    }
+    @Composable
+    fun bar%default(param: Int, %this%: Test, %composer: Composer?, %changed: Int, %default: Int): Int {
+      sourceInformationMarkerStart(%composer, <>, "C(bar%default)<rememb...>:Test.kt")
+      if (%default and 0b0001 != 0) {
+        param = <block>{
+          sourceInformationMarkerStart(%composer, <>, "CC(remember):Test.kt#9igjgp")
+          val tmp0_group = %composer.cache(false) {
+            0
+          }
+          sourceInformationMarkerEnd(%composer)
+          tmp0_group
+        }
+      }
+      if (isTraceInProgress()) {
+        traceEventStart(<>, %changed, -1, <>)
+      }
+      %this%.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+      if (isTraceInProgress()) {
+        traceEventEnd()
+      }
+      sourceInformationMarkerEnd(%composer)
+    }
+  }
+}
+@StabilityInferred(parameters = 1)
+class TestImpl : Test {
+  @Composable
+  override fun foo(param: Int, %composer: Composer?, %changed: Int) {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(foo):Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+  }
+  @Composable
+  override fun bar(param: Int, %composer: Composer?, %changed: Int): Int {
+    %composer.startReplaceGroup(<>)
+    sourceInformation(%composer, "C(bar)<bar(pa...>:Test.kt")
+    if (isTraceInProgress()) {
+      traceEventStart(<>, %changed, -1, <>)
+    }
+    val tmp0 = super<Test>.bar(param, %composer, 0b1110 and %changed or 0b01110000 and %changed)
+    if (isTraceInProgress()) {
+      traceEventEnd()
+    }
+    %composer.endReplaceGroup()
+    return tmp0
+  }
+  static val %stable: Int = 0
+}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = false\135.txt"
index 51fd17f..26cb03d 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = true\135.txt"
index 51fd17f..26cb03d 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testEarlierParameterReferences\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = false\135.txt"
index e2607bd..d3518d2 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = true\135.txt"
index e2607bd..d3518d2 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testInlineClassDefaultParameter\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = false\135.txt"
index 8195d4f..26e9516 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = true\135.txt"
index 8195d4f..26e9516 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testNonStaticDefaultExpressions\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = false\135.txt"
index 32355cb..c206c22 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = true\135.txt"
index 32355cb..c206c22 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testParameterHoles\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 @Composable
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = false\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = false\135.txt"
index 5f59357..a2dae97 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = false\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = false\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 inline fun Bar(unused: @Composable () -> Unit = { }) {}
diff --git "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = true\135.txt" "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = true\135.txt"
index 5f59357..a2dae97 100644
--- "a/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = true\135.txt"
+++ "b/compose/compiler/compiler-hosted/integration-tests/src/test/resources/golden/androidx.compose.compiler.plugins.kotlin.DefaultParamTransformTests/testUnusedDefaultComposableLambda\133useFir = true\135.txt"
@@ -2,8 +2,7 @@
 // Source
 // ------------------------------------------
 
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.NonRestartableComposable
+import androidx.compose.runtime.*
 
 
 inline fun Bar(unused: @Composable () -> Unit = { }) {}
diff --git a/compose/compiler/compiler-hosted/runtime-tests/src/commonTest/kotlin/androidx/compose/compiler/test/DefaultParamCompositionTests.kt b/compose/compiler/compiler-hosted/runtime-tests/src/commonTest/kotlin/androidx/compose/compiler/test/DefaultParamCompositionTests.kt
new file mode 100644
index 0000000..76b557b
--- /dev/null
+++ b/compose/compiler/compiler-hosted/runtime-tests/src/commonTest/kotlin/androidx/compose/compiler/test/DefaultParamCompositionTests.kt
@@ -0,0 +1,101 @@
+/*
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package androidx.compose.compiler.test
+
+import androidx.compose.runtime.Composable
+import androidx.compose.runtime.mock.Text
+import androidx.compose.runtime.mock.compositionTest
+import androidx.compose.runtime.mock.validate
+import kotlin.test.Test
+
+class DefaultParamCompositionTests {
+    @Test
+    fun defaultParamInterfaceImpl() = compositionTest {
+        val instance = DefaultParamInterfaceImpl()
+        compose {
+            instance.Content()
+            instance.ComposedContent()
+            instance.Content { Text("provided") }
+            instance.ComposedContent { Text("provided") }
+        }
+
+        validate {
+            Text("default")
+            Text("default")
+            Text("provided")
+            Text("provided")
+        }
+    }
+
+    @Test
+    fun defaultParamClsImpl() = compositionTest {
+        val instance = DefaultParamAbstractImpl()
+        compose {
+            instance.Content()
+            instance.ComposedContent()
+            instance.Content { Text("provided") }
+            instance.ComposedContent { Text("provided") }
+        }
+
+        validate {
+            Text("default")
+            Text("default")
+            Text("provided")
+            Text("provided")
+        }
+    }
+}
+
+private interface DefaultParamInterface {
+    @Composable fun Content(
+        content: @Composable () -> Unit = @Composable { ComposedContent() }
+    )
+    @Composable fun ComposedContent(
+        content: @Composable () -> Unit = @Composable { Text("default") }
+    ) {
+        content()
+    }
+}
+
+private class DefaultParamInterfaceImpl : DefaultParamInterface {
+    @Composable override fun Content(content: @Composable () -> Unit) {
+        content()
+    }
+    @Composable override fun ComposedContent(content: @Composable () -> Unit) {
+        super.ComposedContent(content)
+    }
+}
+
+private abstract class DefaultParamAbstract {
+    @Composable abstract fun Content(
+        content: @Composable () -> Unit = @Composable { ComposedContent() }
+    )
+    @Composable open fun ComposedContent(
+        content: @Composable () -> Unit = @Composable { Text("default") }
+    ) {
+        content()
+    }
+}
+
+private class DefaultParamAbstractImpl : DefaultParamAbstract() {
+    @Composable override fun Content(content: @Composable () -> Unit) {
+        content()
+    }
+    @Composable override fun ComposedContent(content: @Composable () -> Unit) {
+        super.ComposedContent(content)
+    }
+}
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/BuildMetrics.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/BuildMetrics.kt
index 06ceb0d..43b7431 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/BuildMetrics.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/BuildMetrics.kt
@@ -247,7 +247,7 @@
                     is IrField -> decl
                     else -> continue
                 }
-                if (field.name == KtxNameConventions.STABILITY_FLAG) continue
+                if (field.name == ComposeNames.STABILITY_FLAG) continue
                 append("  ")
                 val fieldStability = stabilityOf(field.type)
                 append("${fieldStability.simpleHumanReadable()} ")
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeFqNames.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeFqNames.kt
index 0d3efcb..4b290b8 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeFqNames.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeFqNames.kt
@@ -73,22 +73,22 @@
     val isLiveLiteralsEnabled =
         internalTopLevelCallableId("isLiveLiteralsEnabled")
     val isTraceInProgress =
-        topLevelCallableId(KtxNameConventions.IS_TRACE_IN_PROGRESS)
+        topLevelCallableId(ComposeNames.IS_TRACE_IN_PROGRESS)
     val liveLiteral = internalTopLevelCallableId("liveLiteral")
     val remember = topLevelCallableId("remember")
     val sourceInformation =
-        topLevelCallableId(KtxNameConventions.SOURCEINFORMATION)
+        topLevelCallableId(ComposeNames.SOURCEINFORMATION)
     val sourceInformationMarkerEnd =
-        topLevelCallableId(KtxNameConventions.SOURCEINFORMATIONMARKEREND)
+        topLevelCallableId(ComposeNames.SOURCEINFORMATIONMARKEREND)
     val sourceInformationMarkerStart =
-        topLevelCallableId(KtxNameConventions.SOURCEINFORMATIONMARKERSTART)
-    val traceEventEnd = topLevelCallableId(KtxNameConventions.TRACE_EVENT_END)
-    val traceEventStart = topLevelCallableId(KtxNameConventions.TRACE_EVENT_START)
-    val updateChangedFlags = topLevelCallableId(KtxNameConventions.UPDATE_CHANGED_FLAGS)
+        topLevelCallableId(ComposeNames.SOURCEINFORMATIONMARKERSTART)
+    val traceEventEnd = topLevelCallableId(ComposeNames.TRACE_EVENT_END)
+    val traceEventStart = topLevelCallableId(ComposeNames.TRACE_EVENT_START)
+    val updateChangedFlags = topLevelCallableId(ComposeNames.UPDATE_CHANGED_FLAGS)
     val rememberComposableLambda =
-        internalTopLevelCallableId(KtxNameConventions.REMEMBER_COMPOSABLE_LAMBDA)
+        internalTopLevelCallableId(ComposeNames.REMEMBER_COMPOSABLE_LAMBDA)
     val rememberComposableLambdaN =
-        internalTopLevelCallableId(KtxNameConventions.REMEMBER_COMPOSABLE_LAMBDAN)
+        internalTopLevelCallableId(ComposeNames.REMEMBER_COMPOSABLE_LAMBDAN)
 }
 
 object ComposeFqNames {
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeIrGenerationExtension.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeIrGenerationExtension.kt
index cb3eec3..28bc215 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeIrGenerationExtension.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeIrGenerationExtension.kt
@@ -20,6 +20,7 @@
 import androidx.compose.compiler.plugins.kotlin.analysis.StabilityInferencer
 import androidx.compose.compiler.plugins.kotlin.k1.ComposeDescriptorSerializerContext
 import androidx.compose.compiler.plugins.kotlin.lower.ClassStabilityTransformer
+import androidx.compose.compiler.plugins.kotlin.lower.ComposableDefaultParamLowering
 import androidx.compose.compiler.plugins.kotlin.lower.ComposableFunInterfaceLowering
 import androidx.compose.compiler.plugins.kotlin.lower.ComposableFunctionBodyTransformer
 import androidx.compose.compiler.plugins.kotlin.lower.ComposableLambdaAnnotator
@@ -150,6 +151,19 @@
 
         functionKeyTransformer.lower(moduleFragment)
 
+        if (!useK2) {
+            CopyDefaultValuesFromExpectLowering(pluginContext).lower(moduleFragment)
+        }
+
+        // Generate default wrappers for virtual functions
+        ComposableDefaultParamLowering(
+            pluginContext,
+            symbolRemapper,
+            metrics,
+            stabilityInferencer,
+            featureFlags
+        ).lower(moduleFragment)
+
         // Memoize normal lambdas and wrap composable lambdas
         ComposerLambdaMemoization(
             pluginContext,
@@ -159,10 +173,6 @@
             featureFlags,
         ).lower(moduleFragment)
 
-        if (!useK2) {
-            CopyDefaultValuesFromExpectLowering(pluginContext).lower(moduleFragment)
-        }
-
         val mangler = when {
             pluginContext.platform.isJs() -> JsManglerIr
             else -> null
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeNames.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeNames.kt
new file mode 100644
index 0000000..7d24b7b
--- /dev/null
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/ComposeNames.kt
@@ -0,0 +1,29 @@
+package androidx.compose.compiler.plugins.kotlin
+
+import org.jetbrains.kotlin.name.Name
+
+object ComposeNames {
+    val COMPOSER = Name.identifier("composer")
+    val COMPOSER_PARAMETER = Name.identifier("\$composer")
+    val CHANGED_PARAMETER = Name.identifier("\$changed")
+    val FORCE_PARAMETER = Name.identifier("\$force")
+    val STABILITY_FLAG = Name.identifier("\$stable")
+    val STABILITY_PROP_FLAG = Name.identifier("\$stableprop")
+    val DEFAULT_PARAMETER = Name.identifier("\$default")
+    val JOINKEY = Name.identifier("joinKey")
+    val STARTRESTARTGROUP = Name.identifier("startRestartGroup")
+    val ENDRESTARTGROUP = Name.identifier("endRestartGroup")
+    val UPDATE_SCOPE = Name.identifier("updateScope")
+    val SOURCEINFORMATION = "sourceInformation"
+    val SOURCEINFORMATIONMARKERSTART = "sourceInformationMarkerStart"
+    val IS_TRACE_IN_PROGRESS = "isTraceInProgress"
+    val TRACE_EVENT_START = "traceEventStart"
+    val TRACE_EVENT_END = "traceEventEnd"
+    val SOURCEINFORMATIONMARKEREND = "sourceInformationMarkerEnd"
+    val UPDATE_CHANGED_FLAGS = "updateChangedFlags"
+    val CURRENTMARKER = Name.identifier("currentMarker")
+    val ENDTOMARKER = Name.identifier("endToMarker")
+    val REMEMBER_COMPOSABLE_LAMBDA = "rememberComposableLambda"
+    val REMEMBER_COMPOSABLE_LAMBDAN = "rememberComposableLambdaN"
+    val DEFAULT_IMPLS = Name.identifier("ComposeDefaultImpls")
+}
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/KtxNameConventions.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/KtxNameConventions.kt
deleted file mode 100644
index 2985efb..0000000
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/KtxNameConventions.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package androidx.compose.compiler.plugins.kotlin
-
-import org.jetbrains.kotlin.name.Name
-
-object KtxNameConventions {
-    val COMPOSER = Name.identifier("composer")
-    val COMPOSER_PARAMETER = Name.identifier("\$composer")
-    val CHANGED_PARAMETER = Name.identifier("\$changed")
-    val FORCE_PARAMETER = Name.identifier("\$force")
-    val STABILITY_FLAG = Name.identifier("\$stable")
-    val STABILITY_PROP_FLAG = Name.identifier("\$stableprop")
-    val DEFAULT_PARAMETER = Name.identifier("\$default")
-    val JOINKEY = Name.identifier("joinKey")
-    val STARTRESTARTGROUP = Name.identifier("startRestartGroup")
-    val ENDRESTARTGROUP = Name.identifier("endRestartGroup")
-    val UPDATE_SCOPE = Name.identifier("updateScope")
-    val SOURCEINFORMATION = "sourceInformation"
-    val SOURCEINFORMATIONMARKERSTART = "sourceInformationMarkerStart"
-    val IS_TRACE_IN_PROGRESS = "isTraceInProgress"
-    val TRACE_EVENT_START = "traceEventStart"
-    val TRACE_EVENT_END = "traceEventEnd"
-    val SOURCEINFORMATIONMARKEREND = "sourceInformationMarkerEnd"
-    val UPDATE_CHANGED_FLAGS = "updateChangedFlags"
-    val CURRENTMARKER = Name.identifier("currentMarker")
-    val ENDTOMARKER = Name.identifier("endToMarker")
-    val REMEMBER_COMPOSABLE_LAMBDA = "rememberComposableLambda"
-    val REMEMBER_COMPOSABLE_LAMBDAN = "rememberComposableLambdaN"
-}
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/analysis/ComposeWritableSlices.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/analysis/ComposeWritableSlices.kt
index b669a2e..e18f037 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/analysis/ComposeWritableSlices.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/analysis/ComposeWritableSlices.kt
@@ -30,4 +30,6 @@
         BasicWritableSlice(RewritePolicy.DO_NOTHING)
     val FUNCTION_METRICS: WritableSlice<IrAttributeContainer, FunctionMetrics> =
         BasicWritableSlice(RewritePolicy.DO_NOTHING)
+    val IS_VIRTUAL_WITH_DEFAULT_PARAM: WritableSlice<IrAttributeContainer, Boolean> =
+        BasicWritableSlice(RewritePolicy.DO_NOTHING)
 }
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposableDeclarationChecker.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposableDeclarationChecker.kt
index febc112..7145d1e 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposableDeclarationChecker.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposableDeclarationChecker.kt
@@ -24,7 +24,6 @@
 import org.jetbrains.kotlin.descriptors.ClassDescriptor
 import org.jetbrains.kotlin.descriptors.DeclarationDescriptor
 import org.jetbrains.kotlin.descriptors.FunctionDescriptor
-import org.jetbrains.kotlin.descriptors.Modality
 import org.jetbrains.kotlin.descriptors.ModuleDescriptor
 import org.jetbrains.kotlin.descriptors.PropertyAccessorDescriptor
 import org.jetbrains.kotlin.descriptors.PropertyDescriptor
@@ -141,19 +140,6 @@
             }
         }
 
-        if (
-            hasComposableAnnotation &&
-                (descriptor.modality == Modality.ABSTRACT || descriptor.modality == Modality.OPEN)
-        ) {
-            declaration.valueParameters.forEach {
-                val defaultValue = it.defaultValue
-                if (defaultValue != null) {
-                    context.trace.report(
-                        ComposeErrors.ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE.on(defaultValue)
-                    )
-                }
-            }
-        }
         val params = descriptor.valueParameters
         val ktparams = declaration.valueParameters
         if (params.size == ktparams.size) {
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrorMessages.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrorMessages.kt
index 6c9ff16..a031d53 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrorMessages.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrorMessages.kt
@@ -90,10 +90,6 @@
             "Composable function cannot be annotated as suspend"
         )
         MAP.put(
-            ComposeErrors.ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE,
-            "Overridable Composable functions with default values are not currently supported"
-        )
-        MAP.put(
             ComposeErrors.COMPOSABLE_FUN_MAIN,
             "Composable main functions are not currently supported"
         )
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrors.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrors.kt
index 14ac370..127ec56 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrors.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k1/ComposeErrors.kt
@@ -72,12 +72,6 @@
         )
 
     @JvmField
-    val ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE =
-        DiagnosticFactory0.create<PsiElement>(
-            Severity.ERROR
-        )
-
-    @JvmField
     val COMPOSABLE_FUN_MAIN =
         DiagnosticFactory0.create<PsiElement>(
             Severity.ERROR
@@ -90,12 +84,6 @@
         )
 
     @JvmField
-    val CALLED_IN_INCORRECT_CONTEXT =
-        DiagnosticFactory1.create<PsiElement, String>(
-            Severity.ERROR
-        )
-
-    @JvmField
     val MISSING_DISALLOW_COMPOSABLE_CALLS_ANNOTATION =
         DiagnosticFactory3.create<
             PsiElement,
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposableFunctionChecker.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposableFunctionChecker.kt
index 0a6c7a3..2d4c3998c 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposableFunctionChecker.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposableFunctionChecker.kt
@@ -23,8 +23,6 @@
 import org.jetbrains.kotlin.fir.analysis.diagnostics.FirErrors
 import org.jetbrains.kotlin.fir.declarations.FirFunction
 import org.jetbrains.kotlin.fir.declarations.getSingleExpectForActualOrNull
-import org.jetbrains.kotlin.fir.declarations.utils.isAbstract
-import org.jetbrains.kotlin.fir.declarations.utils.isOpen
 import org.jetbrains.kotlin.fir.declarations.utils.isOperator
 import org.jetbrains.kotlin.fir.declarations.utils.isSuspend
 import org.jetbrains.kotlin.fir.declarations.utils.nameOrSpecialName
@@ -70,18 +68,6 @@
             reporter.reportOn(declaration.source, ComposeErrors.COMPOSABLE_SUSPEND_FUN, context)
         }
 
-        // Check that there are no default arguments in abstract composable functions
-        if (declaration.isAbstract || declaration.isOpen) {
-            for (valueParameter in declaration.valueParameters) {
-                val defaultValue = valueParameter.defaultValue ?: continue
-                reporter.reportOn(
-                    defaultValue.source,
-                    ComposeErrors.ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE,
-                    context
-                )
-            }
-        }
-
         // Composable main functions are not allowed.
         if (declaration.symbol.isMain(context.session)) {
             reporter.reportOn(declaration.source, ComposeErrors.COMPOSABLE_FUN_MAIN, context)
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrorMessages.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrorMessages.kt
index badc328..0a9b030 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrorMessages.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrorMessages.kt
@@ -61,11 +61,6 @@
         )
 
         map.put(
-            ComposeErrors.ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE,
-            "Overridable Composable functions with default values are not currently supported"
-        )
-
-        map.put(
             ComposeErrors.COMPOSABLE_SUSPEND_FUN,
             "Composable function cannot be annotated as suspend"
         )
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrors.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrors.kt
index 2c2ceaa..4da5a19 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrors.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/k2/ComposeErrors.kt
@@ -65,8 +65,6 @@
         FirValueParameterSymbol, // marked
         FirCallableSymbol<*>>()
 
-    val ABSTRACT_COMPOSABLE_DEFAULT_PARAMETER_VALUE by error0<PsiElement>()
-
     val COMPOSABLE_SUSPEND_FUN by error0<PsiElement>(
         SourceElementPositioningStrategies.DECLARATION_NAME
     )
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/AbstractComposeLowering.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/AbstractComposeLowering.kt
index f7435dc..00b809e 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/AbstractComposeLowering.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/AbstractComposeLowering.kt
@@ -19,10 +19,10 @@
 import androidx.compose.compiler.plugins.kotlin.ComposeCallableIds
 import androidx.compose.compiler.plugins.kotlin.ComposeClassIds
 import androidx.compose.compiler.plugins.kotlin.ComposeFqNames
+import androidx.compose.compiler.plugins.kotlin.ComposeNames
 import androidx.compose.compiler.plugins.kotlin.FeatureFlag
 import androidx.compose.compiler.plugins.kotlin.FeatureFlags
 import androidx.compose.compiler.plugins.kotlin.FunctionMetrics
-import androidx.compose.compiler.plugins.kotlin.KtxNameConventions
 import androidx.compose.compiler.plugins.kotlin.ModuleMetrics
 import androidx.compose.compiler.plugins.kotlin.analysis.ComposeWritableSlices
 import androidx.compose.compiler.plugins.kotlin.analysis.KnownStableConstructs
@@ -32,6 +32,7 @@
 import androidx.compose.compiler.plugins.kotlin.analysis.knownStable
 import androidx.compose.compiler.plugins.kotlin.analysis.knownUnstable
 import androidx.compose.compiler.plugins.kotlin.irTrace
+import androidx.compose.compiler.plugins.kotlin.lower.decoys.copyWithNewTypeParams
 import com.intellij.openapi.progress.ProcessCanceledException
 import org.jetbrains.kotlin.backend.common.extensions.IrPluginContext
 import org.jetbrains.kotlin.backend.jvm.ir.isInlineClassType
@@ -71,6 +72,7 @@
 import org.jetbrains.kotlin.ir.expressions.IrConstructorCall
 import org.jetbrains.kotlin.ir.expressions.IrContainerExpression
 import org.jetbrains.kotlin.ir.expressions.IrExpression
+import org.jetbrains.kotlin.ir.expressions.IrExpressionBody
 import org.jetbrains.kotlin.ir.expressions.IrFunctionExpression
 import org.jetbrains.kotlin.ir.expressions.IrGetEnumValue
 import org.jetbrains.kotlin.ir.expressions.IrGetField
@@ -127,7 +129,10 @@
 import org.jetbrains.kotlin.ir.util.DeepCopySymbolRemapper
 import org.jetbrains.kotlin.ir.util.SYNTHETIC_OFFSET
 import org.jetbrains.kotlin.ir.util.addChild
+import org.jetbrains.kotlin.ir.util.copyTo
+import org.jetbrains.kotlin.ir.util.copyTypeParametersFrom
 import org.jetbrains.kotlin.ir.util.defaultType
+import org.jetbrains.kotlin.ir.util.dump
 import org.jetbrains.kotlin.ir.util.fqNameForIrSerialization
 import org.jetbrains.kotlin.ir.util.functions
 import org.jetbrains.kotlin.ir.util.getArgumentsWithIr
@@ -140,8 +145,10 @@
 import org.jetbrains.kotlin.ir.util.parentClassOrNull
 import org.jetbrains.kotlin.ir.util.primaryConstructor
 import org.jetbrains.kotlin.ir.util.properties
+import org.jetbrains.kotlin.ir.util.remapTypeParameters
 import org.jetbrains.kotlin.ir.util.statements
 import org.jetbrains.kotlin.ir.visitors.IrElementTransformerVoid
+import org.jetbrains.kotlin.ir.visitors.transformChildrenVoid
 import org.jetbrains.kotlin.load.kotlin.computeJvmDescriptor
 import org.jetbrains.kotlin.name.CallableId
 import org.jetbrains.kotlin.name.ClassId
@@ -893,11 +900,11 @@
     }
 
     private fun IrClass.uniqueStabilityFieldName(): Name = Name.identifier(
-        kotlinFqName.asString().replace(".", "_") + KtxNameConventions.STABILITY_FLAG
+        kotlinFqName.asString().replace(".", "_") + ComposeNames.STABILITY_FLAG
     )
 
     private fun IrClass.uniqueStabilityPropertyName(): Name = Name.identifier(
-        kotlinFqName.asString().replace(".", "_") + KtxNameConventions.STABILITY_PROP_FLAG
+        kotlinFqName.asString().replace(".", "_") + ComposeNames.STABILITY_PROP_FLAG
     )
 
     fun IrClass.makeStabilityField(): IrField {
@@ -912,7 +919,7 @@
         return context.irFactory.buildField {
             startOffset = SYNTHETIC_OFFSET
             endOffset = SYNTHETIC_OFFSET
-            name = KtxNameConventions.STABILITY_FLAG
+            name = ComposeNames.STABILITY_FLAG
             isStatic = true
             isFinal = true
             type = context.irBuiltIns.intType
@@ -1438,6 +1445,94 @@
             symbol.owner.valueParameters.size
         )
     }
+
+    internal fun IrFunction.copyParametersFrom(original: IrFunction) {
+        val newFunction = this
+        // here generic value parameters will be applied
+        newFunction.copyTypeParametersFrom(original)
+
+        // ..but we need to remap the return type as well
+        newFunction.returnType = newFunction.returnType.remapTypeParameters(
+            source = original,
+            target = newFunction
+        )
+        newFunction.valueParameters = original.valueParameters.map {
+            val name = dexSafeName(it.name)
+            it.copyTo(
+                newFunction,
+                name = name,
+                type = it.type.remapTypeParameters(original, newFunction),
+                // remapping the type parameters explicitly
+                defaultValue = it.defaultValue?.copyWithNewTypeParams(original, newFunction)
+            )
+        }
+        newFunction.dispatchReceiverParameter =
+            original.dispatchReceiverParameter?.copyTo(newFunction)
+        newFunction.extensionReceiverParameter =
+            original.extensionReceiverParameter?.copyWithNewTypeParams(original, newFunction)
+
+        newFunction.valueParameters.forEach {
+            it.defaultValue?.transformDefaultValue(
+                originalFunction = original,
+                newFunction = newFunction
+            )
+        }
+    }
+
+    /**
+     *  Expressions for default values can use other parameters.
+     *  In such cases we need to ensure that default values expressions use parameters of the new
+     *  function (new/copied value parameters).
+     *
+     *  Example:
+     *  fun Foo(a: String, b: String = a) {...}
+     */
+    private fun IrExpressionBody.transformDefaultValue(
+        originalFunction: IrFunction,
+        newFunction: IrFunction
+    ) {
+        transformChildrenVoid(object : IrElementTransformerVoid() {
+            override fun visitGetValue(expression: IrGetValue): IrExpression {
+                val original = super.visitGetValue(expression)
+                val valueParameter =
+                    (expression.symbol.owner as? IrValueParameter) ?: return original
+
+                val parameterIndex = valueParameter.index
+                if (valueParameter.parent != originalFunction) {
+                    return super.visitGetValue(expression)
+                }
+                if (parameterIndex < 0) {
+                    when (valueParameter) {
+                        originalFunction.dispatchReceiverParameter -> {
+                            return IrGetValueImpl(
+                                expression.startOffset,
+                                expression.endOffset,
+                                newFunction.dispatchReceiverParameter!!.symbol,
+                                expression.origin
+                            )
+                        }
+                        originalFunction.extensionReceiverParameter -> {
+                            return IrGetValueImpl(
+                                expression.startOffset,
+                                expression.endOffset,
+                                newFunction.extensionReceiverParameter!!.symbol,
+                                expression.origin
+                            )
+                        }
+                        else -> {
+                            error("Cannot copy parameter: ${valueParameter.dump()}")
+                        }
+                    }
+                }
+                return IrGetValueImpl(
+                    expression.startOffset,
+                    expression.endOffset,
+                    newFunction.valueParameters[parameterIndex].symbol,
+                    expression.origin
+                )
+            }
+        })
+    }
 }
 
 private val unsafeSymbolsRegex = "[ <>]".toRegex()
@@ -1451,7 +1546,7 @@
 }
 
 fun IrValueParameter.isComposerParam(): Boolean =
-    name == KtxNameConventions.COMPOSER_PARAMETER && type.classFqName == ComposeFqNames.Composer
+    name == ComposeNames.COMPOSER_PARAMETER && type.classFqName == ComposeFqNames.Composer
 
 // FIXME: There is a `functionN` factory in `IrBuiltIns`, but it currently produces unbound symbols.
 //        We can switch to this and remove this function once KT-54230 is fixed.
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableDefaultParamLowering.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableDefaultParamLowering.kt
new file mode 100644
index 0000000..beb7621
--- /dev/null
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableDefaultParamLowering.kt
@@ -0,0 +1,270 @@
+/*
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package androidx.compose.compiler.plugins.kotlin.lower
+
+import androidx.compose.compiler.plugins.kotlin.ComposeNames
+import androidx.compose.compiler.plugins.kotlin.FeatureFlags
+import androidx.compose.compiler.plugins.kotlin.ModuleMetrics
+import androidx.compose.compiler.plugins.kotlin.analysis.ComposeWritableSlices
+import androidx.compose.compiler.plugins.kotlin.analysis.StabilityInferencer
+import androidx.compose.compiler.plugins.kotlin.irTrace
+import org.jetbrains.kotlin.backend.common.extensions.IrPluginContext
+import org.jetbrains.kotlin.backend.common.lower.DeclarationIrBuilder
+import org.jetbrains.kotlin.descriptors.Modality
+import org.jetbrains.kotlin.ir.IrStatement
+import org.jetbrains.kotlin.ir.builders.declarations.buildClass
+import org.jetbrains.kotlin.ir.builders.irBlockBody
+import org.jetbrains.kotlin.ir.declarations.IrClass
+import org.jetbrains.kotlin.ir.declarations.IrDeclarationOrigin
+import org.jetbrains.kotlin.ir.declarations.IrModuleFragment
+import org.jetbrains.kotlin.ir.declarations.IrSimpleFunction
+import org.jetbrains.kotlin.ir.expressions.IrCall
+import org.jetbrains.kotlin.ir.expressions.IrExpression
+import org.jetbrains.kotlin.ir.symbols.impl.IrSimpleFunctionSymbolImpl
+import org.jetbrains.kotlin.ir.util.DeepCopySymbolRemapper
+import org.jetbrains.kotlin.ir.util.addChild
+import org.jetbrains.kotlin.ir.util.copyAnnotationsFrom
+import org.jetbrains.kotlin.ir.util.createImplicitParameterDeclarationWithWrappedDescriptor
+import org.jetbrains.kotlin.name.Name
+
+/**
+ * Replaces abstract/open function calls with default parameters with a wrapper that will contain
+ * the default parameter preamble and make a virtual call to correct override.
+ *
+ * Given:
+ * ```
+ * abstract class Test {
+ *     @Composable open fun doSomething(arg1: Int = remember { 0 }) {}
+ * }
+ *
+ * @Composable fun callWithDefaults(instance: Test) {
+ *     instance.doSomething()
+ *     instance.doSomething(0)
+ * }
+ * ```
+ *
+ * Generates:
+ * ```
+ * abstract class Test {
+ *     @Composable open fun doSomething(arg1: Int) {}
+ *
+ *     class ComposeDefaultsImpl {
+ *          /* static */ fun doSomething$composable$default(
+ *              instance: Test,
+ *              arg1: Int = remember { 0 },
+ *          ) {
+ *              return instance.doSomething(arg1)
+ *          }
+ *     }
+ * }
+ *
+ *
+ * @Composable fun callWithDefaults(
+ *     instance: Test,
+ *     $composer: Composer,
+ *     $changed: Int
+ * ) {
+ *     Test$DefaultsImpl.doSomething(instance)
+ *     Test$DefaultsImpl.doSomething(instance, 0)
+ * }
+ *```
+ */
+class ComposableDefaultParamLowering(
+    context: IrPluginContext,
+    symbolRemapper: DeepCopySymbolRemapper,
+    metrics: ModuleMetrics,
+    stabilityInferencer: StabilityInferencer,
+    featureFlags: FeatureFlags,
+) : AbstractComposeLowering(context, symbolRemapper, metrics, stabilityInferencer, featureFlags) {
+    private val originalToTransformed = mutableMapOf<IrSimpleFunction, IrSimpleFunction>()
+
+    override fun lower(module: IrModuleFragment) {
+        module.transformChildrenVoid()
+    }
+
+    override fun visitSimpleFunction(declaration: IrSimpleFunction): IrStatement {
+        if (declaration in originalToTransformed) {
+            // Make sure that calls in declaration body are not transformed the second time
+            return declaration
+        }
+
+        if (!declaration.isVirtualFunctionWithDefaultParam()) {
+            return super.visitSimpleFunction(declaration)
+        }
+
+        declaration.transformIfNeeded()
+
+        return super.visitSimpleFunction(declaration)
+    }
+
+    override fun visitCall(expression: IrCall): IrExpression {
+        if (expression.superQualifierSymbol != null) {
+            return super.visitCall(expression)
+        }
+
+        val callee = expression.symbol.owner
+        if (!callee.hasComposableAnnotation()) {
+            return super.visitCall(expression)
+        }
+
+        val wrapper = callee.findOverriddenFunWithDefaultParam()?.transformIfNeeded()
+        if (wrapper == null) {
+            return super.visitCall(expression)
+        }
+
+        val newCall = irCall(
+            wrapper,
+            expression.startOffset,
+            expression.endOffset
+        ).also { newCall ->
+            var argCount = expression.valueArgumentsCount
+            for (i in 0 until argCount) {
+                newCall.putValueArgument(i, expression.getValueArgument(i))
+            }
+            if (expression.dispatchReceiver != null) {
+                newCall.putValueArgument(argCount++, expression.dispatchReceiver)
+            }
+            if (expression.extensionReceiver != null) {
+                newCall.putValueArgument(argCount, expression.extensionReceiver)
+            }
+        }
+
+        return super.visitCall(newCall)
+    }
+
+    private fun IrSimpleFunction.transformIfNeeded(): IrSimpleFunction {
+        if (this in originalToTransformed) return originalToTransformed[this]!!
+
+        val wrapper = makeDefaultParameterWrapper(this)
+        originalToTransformed[this] = wrapper
+        // add to the set of transformed functions to ensure it is not transformed twice
+        originalToTransformed[wrapper] = wrapper
+        when (val parent = parent) {
+            is IrClass -> getOrCreateDefaultImpls(parent).addChild(wrapper)
+            else -> error("Cannot add wrapper function to $parent")
+        }
+
+        context.irTrace.record(
+            ComposeWritableSlices.IS_VIRTUAL_WITH_DEFAULT_PARAM,
+            this,
+            true
+        )
+
+        valueParameters.forEach {
+            it.defaultValue = null
+        }
+
+        return wrapper
+    }
+
+    private fun IrSimpleFunction.findOverriddenFunWithDefaultParam(): IrSimpleFunction? {
+        if (this in originalToTransformed) {
+            return this
+        }
+
+        if (isVirtualFunctionWithDefaultParam()) {
+            return this
+        }
+
+        overriddenSymbols.forEach {
+            val matchingOverride = it.owner.findOverriddenFunWithDefaultParam()
+            if (matchingOverride != null) {
+                return matchingOverride
+            }
+        }
+
+        return null
+    }
+
+    private fun IrSimpleFunction.isVirtualFunctionWithDefaultParam() =
+        hasComposableAnnotation() &&
+            !isExpect &&
+            (modality == Modality.OPEN || modality == Modality.ABSTRACT) && // virtual function
+            overriddenSymbols.isEmpty() && // first in the chain of overrides
+            valueParameters.any { it.defaultValue != null } // has a default parameter
+
+    private fun makeDefaultParameterWrapper(
+        source: IrSimpleFunction
+    ): IrSimpleFunction {
+        val wrapper = context.irFactory.createSimpleFunction(
+            startOffset = source.startOffset,
+            endOffset = source.endOffset,
+            origin = IrDeclarationOrigin.DEFINED,
+            name = Name.identifier("${source.name.asString()}\$default"),
+            visibility = source.visibility,
+            isInline = false,
+            isExpect = false,
+            returnType = source.returnType,
+            modality = Modality.FINAL,
+            symbol = IrSimpleFunctionSymbolImpl(),
+            isTailrec = source.isTailrec,
+            isSuspend = false,
+            isOperator = false,
+            isInfix = false,
+        )
+        wrapper.copyAnnotationsFrom(source)
+        wrapper.copyParametersFrom(source)
+        wrapper.valueParameters.forEach {
+            it.defaultValue?.transformChildrenVoid()
+        }
+        // move receiver parameters to value parameters
+        val dispatcherReceiver = wrapper.dispatchReceiverParameter
+        var index = wrapper.valueParameters.size
+        if (dispatcherReceiver != null) {
+            dispatcherReceiver.index = index++
+            wrapper.valueParameters += dispatcherReceiver
+            wrapper.dispatchReceiverParameter = null
+        }
+        val extensionReceiver = wrapper.extensionReceiverParameter
+        if (extensionReceiver != null) {
+            extensionReceiver.index = index
+            wrapper.valueParameters += extensionReceiver
+            wrapper.extensionReceiverParameter = null
+        }
+
+        wrapper.body = DeclarationIrBuilder(
+            context,
+            wrapper.symbol
+        ).irBlockBody {
+            +irCall(
+                source.symbol,
+                dispatchReceiver = dispatcherReceiver?.let(::irGet),
+                extensionReceiver = extensionReceiver?.let(::irGet),
+                args = Array(source.valueParameters.size) {
+                    irGet(wrapper.valueParameters[it])
+                }
+            )
+        }
+
+        return wrapper
+    }
+
+    private fun getOrCreateDefaultImpls(parent: IrClass): IrClass {
+        val cls = parent.declarations.find {
+            it is IrClass && it.name == ComposeNames.DEFAULT_IMPLS
+        } as? IrClass
+
+        return cls ?: context.irFactory.buildClass {
+            startOffset = parent.startOffset
+            endOffset = parent.endOffset
+            name = ComposeNames.DEFAULT_IMPLS
+        }.apply {
+            parent.addChild(this)
+            createImplicitParameterDeclarationWithWrappedDescriptor()
+        }
+    }
+}
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableFunctionBodyTransformer.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableFunctionBodyTransformer.kt
index 2df54fe..333f631 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableFunctionBodyTransformer.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableFunctionBodyTransformer.kt
@@ -18,10 +18,10 @@
 
 import androidx.compose.compiler.plugins.kotlin.ComposeCallableIds
 import androidx.compose.compiler.plugins.kotlin.ComposeFqNames
+import androidx.compose.compiler.plugins.kotlin.ComposeNames
 import androidx.compose.compiler.plugins.kotlin.FeatureFlag
 import androidx.compose.compiler.plugins.kotlin.FeatureFlags
 import androidx.compose.compiler.plugins.kotlin.FunctionMetrics
-import androidx.compose.compiler.plugins.kotlin.KtxNameConventions
 import androidx.compose.compiler.plugins.kotlin.ModuleMetrics
 import androidx.compose.compiler.plugins.kotlin.analysis.ComposeWritableSlices
 import androidx.compose.compiler.plugins.kotlin.analysis.Stability
@@ -529,14 +529,14 @@
         composerIrClass
             .functions
             .first {
-                it.name == KtxNameConventions.STARTRESTARTGROUP && it.valueParameters.size == 1
+                it.name == ComposeNames.STARTRESTARTGROUP && it.valueParameters.size == 1
             }
     }
 
     private val currentMarkerProperty: IrProperty? by guardedLazy {
         composerIrClass.properties
             .firstOrNull {
-                it.name == KtxNameConventions.CURRENTMARKER
+                it.name == ComposeNames.CURRENTMARKER
             }
     }
 
@@ -544,7 +544,7 @@
         composerIrClass
             .functions
             .firstOrNull {
-                it.name == KtxNameConventions.ENDTOMARKER && it.valueParameters.size == 1
+                it.name == ComposeNames.ENDTOMARKER && it.valueParameters.size == 1
             }
     }
 
@@ -555,7 +555,7 @@
         composerIrClass
             .functions
             .first {
-                it.name == KtxNameConventions.ENDRESTARTGROUP && it.valueParameters.size == 0
+                it.name == ComposeNames.ENDRESTARTGROUP && it.valueParameters.size == 0
             }
     }
 
@@ -626,7 +626,7 @@
             ?.owner
             ?.functions
             ?.singleOrNull {
-                it.name == KtxNameConventions.UPDATE_SCOPE &&
+                it.name == ComposeNames.UPDATE_SCOPE &&
                     it.valueParameters.first().type.arguments.size == 3
             }
             ?: error("new updateScope not found in result type of endRestartGroup")
@@ -650,7 +650,7 @@
     private val joinKeyFunction by guardedLazy {
         composerIrClass.functions
             .first {
-                it.name == KtxNameConventions.JOINKEY && it.valueParameters.size == 2
+                it.name == ComposeNames.JOINKEY && it.valueParameters.size == 2
             }
     }
 
@@ -776,6 +776,13 @@
         // ComposerParamTransformer and has a synthetic "composer param" as its last parameter
         if (composerParam() == null) return false
 
+        // Virtual functions with default params are called through wrapper generated in
+        // ComposableDefaultParamLowering. The restartable group is moved to the wrapper, while
+        // the function itself is no longer restartable.
+        if (isVirtualFunctionWithDefaultParam()) {
+            return false
+        }
+
         // Check if the descriptor has restart scope calls resolved
         // Lambdas should be ignored. All composable lambdas are wrapped by a restartable
         // function wrapper by ComposerLambdaMemoization which supplies the startRestartGroup/
@@ -783,6 +790,11 @@
         return origin != IrDeclarationOrigin.LOCAL_FUNCTION_FOR_LAMBDA
     }
 
+    private fun IrFunction.isVirtualFunctionWithDefaultParam(): Boolean =
+        this is IrSimpleFunction &&
+            (context.irTrace[ComposeWritableSlices.IS_VIRTUAL_WITH_DEFAULT_PARAM, this] == true ||
+                overriddenSymbols.any { it.owner.isVirtualFunctionWithDefaultParam() })
+
     private val IrFunction.hasNonRestartableAnnotation: Boolean
         get() = hasAnnotation(ComposeFqNames.NonRestartableComposable)
 
@@ -822,9 +834,10 @@
         // An outer group is required if we are a lambda or dynamic method or the runtime doesn't
         // support remember after call. A outer group is explicitly elided by readonly and has
         // explicit groups.
-        var outerGroupRequired = (!isReadOnly && !hasExplicitGroups &&
-            !useNonSkippingGroupOptimization) || declaration.isLambda() ||
-            declaration.isOverridableOrOverrides
+        var outerGroupRequired =
+            (!isReadOnly && !hasExplicitGroups && !useNonSkippingGroupOptimization) ||
+                declaration.isLambda() ||
+                declaration.isOverridableOrOverrides
 
         val skipPreamble = mutableStatementContainer()
         val bodyPreamble = mutableStatementContainer()
@@ -1341,32 +1354,6 @@
         return parametersScope
     }
 
-    // Conservatively determine if a default group might be used. This must return true if
-    // if the scopes's hasDefaultGroup will be true after calling
-    // buildPreambleStatementsAndReturnIfSkippingPossible but can be true in cases where it is
-    // false. If they disagree the worst case is that intrisnic remember is disabled when it could
-    // have been enabled.
-    private fun mightUseDefaultGroup(
-        isSkippableDeclaration: Boolean,
-        scope: Scope.FunctionScope,
-        defaultParam: IrDefaultBitMaskValue?
-    ): Boolean {
-        if (!isSkippableDeclaration) return false
-        if (defaultParam == null) return false
-        val parameters = scope.allTrackedParams
-
-        // if any parameter we are tracking has a non-static default value then we will probably
-        // create a default group.
-        return parameters.any { it.defaultValue?.expression?.isStatic() == false }
-    }
-
-    // Like mightUseDefaultGroup(), this is an intentionally conservative value that must be true
-    // when ever a varargs group could be generated but can be true when it is not.
-    private fun mightUseVarArgsGroup(
-        isSkippableDeclaration: Boolean,
-        scope: Scope.FunctionScope
-    ) = isSkippableDeclaration && scope.allTrackedParams.any { it.isVararg }
-
     private fun buildPreambleStatementsAndReturnIfSkippingPossible(
         sourceElement: IrElement,
         skipPreamble: IrStatementContainer,
@@ -1764,13 +1751,13 @@
         ) { fn ->
             fn.parent = function
             val newComposer = fn.addValueParameter(
-                KtxNameConventions.COMPOSER_PARAMETER.identifier,
+                ComposeNames.COMPOSER_PARAMETER.identifier,
                 composerIrClass.defaultType
                     .replaceArgumentsWithStarProjections()
                     .makeNullable()
             )
             fn.addValueParameter(
-                KtxNameConventions.FORCE_PARAMETER,
+                ComposeNames.FORCE_PARAMETER,
                 builtIns.intType
             )
             fn.body = DeclarationIrBuilder(context, fn.symbol).irBlockBody {
@@ -2994,7 +2981,7 @@
         val numRealValueParams: Int
 
         val hasDefaults = ownerFn.valueParameters.any {
-            it.name == KtxNameConventions.DEFAULT_PARAMETER
+            it.name == ComposeNames.DEFAULT_PARAMETER
         }
         if (!hasDefaults && expression.isInvoke()) {
             // in the case of an invoke without any defaults, all of the parameters are going to
@@ -3015,11 +3002,11 @@
             // Context receiver params are value parameters and will precede real params, calculate
             // the amount of real params by finding the index off the last real param (if any) and
             // offsetting it by the amount of context receiver params.
-            val indexOfLastRealParam = ownerFn.valueParameters.indexOfLast {
-                !it.name.asString().startsWith('$')
+            val composerParamIndex = ownerFn.valueParameters.indexOfFirst {
+                it.name == ComposeNames.COMPOSER_PARAMETER
             }
-            numRealValueParams = if (indexOfLastRealParam != -1) {
-                (indexOfLastRealParam + 1) - numContextParams
+            numRealValueParams = if (composerParamIndex != -1) {
+                composerParamIndex - numContextParams
             } else {
                 0
             }
@@ -3471,7 +3458,7 @@
 
                 val value = expression.symbol.owner
                 return if (
-                    value is IrValueParameter && value.name == KtxNameConventions.COMPOSER_PARAMETER
+                    value is IrValueParameter && value.name == ComposeNames.COMPOSER_PARAMETER
                 ) {
                     irCurrentComposer()
                 } else {
@@ -4066,11 +4053,11 @@
                 for (param in function.valueParameters) {
                     val paramName = param.name.asString()
                     when {
-                        paramName == KtxNameConventions.COMPOSER_PARAMETER.identifier ->
+                        paramName == ComposeNames.COMPOSER_PARAMETER.identifier ->
                             composerParameter = param
-                        paramName.startsWith(KtxNameConventions.DEFAULT_PARAMETER.identifier) ->
+                        paramName.startsWith(ComposeNames.DEFAULT_PARAMETER.identifier) ->
                             defaultParams += param
-                        paramName.startsWith(KtxNameConventions.CHANGED_PARAMETER.identifier) ->
+                        paramName.startsWith(ComposeNames.CHANGED_PARAMETER.identifier) ->
                             changedParams += param
                         paramName.startsWith("\$context_receiver_") ||
                         paramName.startsWith("\$name\$for\$destructuring") ||
@@ -4270,7 +4257,11 @@
             open fun calculateSourceInfo(sourceInformationEnabled: Boolean): String? {
                 return if (sourceInformationEnabled && sourceLocations.isNotEmpty()) {
                     val locations = sourceLocations
-                        .filter { !it.used }
+                        .filter {
+                            !it.used &&
+                                it.element.startOffset != UNDEFINED_OFFSET &&
+                                it.element.endOffset != UNDEFINED_OFFSET
+                        }
                         .distinct()
                     var markedRepeatable = false
                     val fileEntry = fileScope?.declaration?.fileEntry
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableTargetAnnotationsTransformer.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableTargetAnnotationsTransformer.kt
index 7b55a1e..3acf39b 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableTargetAnnotationsTransformer.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposableTargetAnnotationsTransformer.kt
@@ -18,8 +18,8 @@
 
 import androidx.compose.compiler.plugins.kotlin.ComposeClassIds
 import androidx.compose.compiler.plugins.kotlin.ComposeFqNames
+import androidx.compose.compiler.plugins.kotlin.ComposeNames
 import androidx.compose.compiler.plugins.kotlin.FeatureFlags
-import androidx.compose.compiler.plugins.kotlin.KtxNameConventions
 import androidx.compose.compiler.plugins.kotlin.ModuleMetrics
 import androidx.compose.compiler.plugins.kotlin.analysis.ComposeWritableSlices
 import androidx.compose.compiler.plugins.kotlin.analysis.StabilityInferencer
@@ -553,7 +553,7 @@
      * referenced directly in this module.
      */
     private val IrFunction.isComposable get() =
-        valueParameters.any { it.name == KtxNameConventions.COMPOSER_PARAMETER } ||
+        valueParameters.any { it.name == ComposeNames.COMPOSER_PARAMETER } ||
             annotations.hasAnnotation(ComposeFqNames.Composable)
 
     private val IrType.isSamComposable get() =
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposerParamTransformer.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposerParamTransformer.kt
index 33ef235..5acd183 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposerParamTransformer.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/ComposerParamTransformer.kt
@@ -16,8 +16,8 @@
 
 package androidx.compose.compiler.plugins.kotlin.lower
 
+import androidx.compose.compiler.plugins.kotlin.ComposeNames
 import androidx.compose.compiler.plugins.kotlin.FeatureFlags
-import androidx.compose.compiler.plugins.kotlin.KtxNameConventions
 import androidx.compose.compiler.plugins.kotlin.ModuleMetrics
 import androidx.compose.compiler.plugins.kotlin.analysis.StabilityInferencer
 import androidx.compose.compiler.plugins.kotlin.lower.decoys.copyWithNewTypeParams
@@ -496,7 +496,7 @@
     }
 
     private fun IrSimpleFunction.copyWithComposerParam(): IrSimpleFunction {
-        assert(explicitParameters.lastOrNull()?.name != KtxNameConventions.COMPOSER_PARAMETER) {
+        assert(explicitParameters.lastOrNull()?.name != ComposeNames.COMPOSER_PARAMETER) {
             "Attempted to add composer param to $this, but it has already been added."
         }
         return copy().also { fn ->
@@ -540,14 +540,14 @@
 
             // $composer
             val composerParam = fn.addValueParameter {
-                name = KtxNameConventions.COMPOSER_PARAMETER
+                name = ComposeNames.COMPOSER_PARAMETER
                 type = composerType.makeNullable()
                 origin = IrDeclarationOrigin.DEFINED
                 isAssignable = true
             }
 
             // $changed[n]
-            val changed = KtxNameConventions.CHANGED_PARAMETER.identifier
+            val changed = ComposeNames.CHANGED_PARAMETER.identifier
             for (i in 0 until changedParamCount(realParams, fn.thisParamCount)) {
                 fn.addValueParameter(
                     if (i == 0) changed else "$changed$i",
@@ -557,7 +557,7 @@
 
             // $default[n]
             if (oldFn.requiresDefaultParameter()) {
-                val defaults = KtxNameConventions.DEFAULT_PARAMETER.identifier
+                val defaults = ComposeNames.DEFAULT_PARAMETER.identifier
                 for (i in 0 until defaultParamCount(currentParams)) {
                     fn.addValueParameter(
                         if (i == 0) defaults else "$defaults$i",
@@ -684,7 +684,7 @@
      */
     private fun IrFunction.externallyTransformed(): Boolean =
         decoysEnabled && valueParameters.firstOrNull {
-            it.name == KtxNameConventions.COMPOSER_PARAMETER
+            it.name == ComposeNames.COMPOSER_PARAMETER
         } != null
 
     /**
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/IrSourcePrinter.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/IrSourcePrinter.kt
index c242640..25cc2fc 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/IrSourcePrinter.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/IrSourcePrinter.kt
@@ -16,7 +16,7 @@
 
 package androidx.compose.compiler.plugins.kotlin.lower
 
-import androidx.compose.compiler.plugins.kotlin.KtxNameConventions
+import androidx.compose.compiler.plugins.kotlin.ComposeNames
 import androidx.compose.compiler.plugins.kotlin.hasComposableAnnotation
 import java.util.Locale
 import org.jetbrains.kotlin.descriptors.DescriptorVisibilities
@@ -91,6 +91,7 @@
 import org.jetbrains.kotlin.ir.expressions.IrWhen
 import org.jetbrains.kotlin.ir.expressions.IrWhileLoop
 import org.jetbrains.kotlin.ir.expressions.impl.IrIfThenElseImpl
+import org.jetbrains.kotlin.ir.symbols.IrClassSymbol
 import org.jetbrains.kotlin.ir.symbols.IrReturnTargetSymbol
 import org.jetbrains.kotlin.ir.symbols.IrTypeAliasSymbol
 import org.jetbrains.kotlin.ir.types.IrDynamicType
@@ -465,7 +466,7 @@
             return
         }
 
-        expression.printExplicitReceiver(".")
+        expression.printExplicitReceiver(".", expression.superQualifierSymbol)
 
         val prop = (function as? IrSimpleFunction)?.correspondingPropertySymbol?.owner
 
@@ -490,7 +491,10 @@
         }
     }
 
-    private fun IrMemberAccessExpression<*>.printExplicitReceiver(suffix: String? = null) {
+    private fun IrMemberAccessExpression<*>.printExplicitReceiver(
+        suffix: String? = null,
+        superQualifierSymbol: IrClassSymbol? = null
+    ) {
         val dispatchReceiver = dispatchReceiver
         val extensionReceiver = extensionReceiver
         val dispatchIsSpecial = dispatchReceiver.let {
@@ -500,7 +504,10 @@
             it is IrGetValue && it.symbol.owner.name.isSpecial
         }
 
-        if (dispatchReceiver != null && !dispatchIsSpecial) {
+        if (superQualifierSymbol != null) {
+            print("super<${superQualifierSymbol.owner.name}>")
+            suffix?.let(::print)
+        } else if (dispatchReceiver != null && !dispatchIsSpecial) {
             dispatchReceiver.print()
             suffix?.let(::print)
         } else if (extensionReceiver != null && !extensionIsSpecial) {
@@ -564,8 +571,8 @@
                         print(" = ")
                     }
                     when {
-                        name.startsWith(KtxNameConventions.DEFAULT_PARAMETER.identifier) ||
-                            name.startsWith(KtxNameConventions.CHANGED_PARAMETER.identifier) -> {
+                        name.startsWith(ComposeNames.DEFAULT_PARAMETER.identifier) ||
+                            name.startsWith(ComposeNames.CHANGED_PARAMETER.identifier) -> {
                             withIntsAsBinaryLiterals {
                                 arg.print()
                             }
diff --git a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/decoys/CreateDecoysTransformer.kt b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/decoys/CreateDecoysTransformer.kt
index 845a671..0cc8ca9 100644
--- a/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/decoys/CreateDecoysTransformer.kt
+++ b/compose/compiler/compiler-hosted/src/main/java/androidx/compose/compiler/plugins/kotlin/lower/decoys/CreateDecoysTransformer.kt
@@ -37,21 +37,13 @@
 import org.jetbrains.kotlin.ir.declarations.IrFunction
 import org.jetbrains.kotlin.ir.declarations.IrModuleFragment
 import org.jetbrains.kotlin.ir.declarations.IrSimpleFunction
-import org.jetbrains.kotlin.ir.declarations.IrValueParameter
-import org.jetbrains.kotlin.ir.expressions.IrExpression
-import org.jetbrains.kotlin.ir.expressions.IrExpressionBody
-import org.jetbrains.kotlin.ir.expressions.IrGetValue
 import org.jetbrains.kotlin.ir.expressions.impl.IrConstructorCallImpl
 import org.jetbrains.kotlin.ir.util.DeepCopySymbolRemapper
 import org.jetbrains.kotlin.ir.util.addChild
 import org.jetbrains.kotlin.ir.util.constructors
-import org.jetbrains.kotlin.ir.util.copyTo
-import org.jetbrains.kotlin.ir.util.copyTypeParametersFrom
 import org.jetbrains.kotlin.ir.util.defaultType
 import org.jetbrains.kotlin.ir.util.hasDefaultValue
 import org.jetbrains.kotlin.ir.util.patchDeclarationParents
-import org.jetbrains.kotlin.ir.util.remapTypeParameters
-import org.jetbrains.kotlin.ir.visitors.IrElementTransformerVoid
 import org.jetbrains.kotlin.ir.visitors.transformChildrenVoid
 import org.jetbrains.kotlin.name.Name
 
@@ -205,72 +197,15 @@
         }
         newFunction.origin = original.origin
 
-        // here generic value parameters will be applied
-        newFunction.copyTypeParametersFrom(original)
-
-        // ..but we need to remap the return type as well
-        newFunction.returnType = newFunction.returnType.remapTypeParameters(
-            source = original,
-            target = newFunction
-        )
-        newFunction.valueParameters = original.valueParameters.map {
-            val name = dexSafeName(it.name).asString()
-            it.copyTo(
-                newFunction,
-                // remove leading $ in params to avoid confusing other transforms
-                name = Name.identifier(name.dropWhile { it == '$' }),
-                type = it.type.remapTypeParameters(original, newFunction),
-                // remapping the type parameters explicitly
-                defaultValue = it.defaultValue?.copyWithNewTypeParams(original, newFunction)
-            )
-        }
-        newFunction.dispatchReceiverParameter =
-            original.dispatchReceiverParameter?.copyTo(newFunction)
-        newFunction.extensionReceiverParameter =
-            original.extensionReceiverParameter?.copyWithNewTypeParams(original, newFunction)
+        newFunction.addDecoyImplementationAnnotation(newName.asString(), original.getSignatureId())
+        newFunction.copyParametersFrom(original)
 
         newFunction.body = original.moveBodyTo(newFunction)
             ?.copyWithNewTypeParams(original, newFunction)
 
-        newFunction.addDecoyImplementationAnnotation(newName.asString(), original.getSignatureId())
-
-        newFunction.valueParameters.forEach {
-            it.defaultValue?.transformDefaultValue(
-                originalFunction = original,
-                newFunction = newFunction
-            )
-        }
-
         return newFunction
     }
 
-    /**
-     *  Expressions for default values can use other parameters.
-     *  In such cases we need to ensure that default values expressions use parameters of the new
-     *  function (new/copied value parameters).
-     *
-     *  Example:
-     *  fun Foo(a: String, b: String = a) {...}
-     */
-    private fun IrExpressionBody.transformDefaultValue(
-        originalFunction: IrFunction,
-        newFunction: IrFunction
-    ) {
-        transformChildrenVoid(object : IrElementTransformerVoid() {
-            override fun visitGetValue(expression: IrGetValue): IrExpression {
-                val original = super.visitGetValue(expression)
-                val valueParameter =
-                    (expression.symbol.owner as? IrValueParameter) ?: return original
-
-                val parameterIndex = valueParameter.index
-                if (parameterIndex < 0 || valueParameter.parent != originalFunction) {
-                    return super.visitGetValue(expression)
-                }
-                return irGet(newFunction.valueParameters[parameterIndex])
-            }
-        })
-    }
-
     private fun IrFunction.stubBody() {
         body = DeclarationIrBuilder(context, symbol).irBlockBody {
             + irReturn(
diff --git a/compose/foundation/foundation/api/current.txt b/compose/foundation/foundation/api/current.txt
index 60aba66..c179e32 100644
--- a/compose/foundation/foundation/api/current.txt
+++ b/compose/foundation/foundation/api/current.txt
@@ -453,7 +453,7 @@
     property @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public static final androidx.compose.runtime.ProvidableCompositionLocal<androidx.compose.foundation.gestures.BringIntoViewSpec> LocalBringIntoViewSpec;
   }
 
-  @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public interface Drag2DScope {
+  public interface Drag2DScope {
     method public void dragBy(long pixels);
   }
 
@@ -479,13 +479,12 @@
   }
 
   public final class Draggable2DKt {
-    method @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public static androidx.compose.foundation.gestures.Draggable2DState Draggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
-    method @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Stable public static androidx.compose.ui.Modifier draggable2D(androidx.compose.ui.Modifier, androidx.compose.foundation.gestures.Draggable2DState state, optional boolean enabled, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional boolean startDragImmediately, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDragStarted, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.unit.Velocity,kotlin.Unit> onDragStopped, optional boolean reverseDirection);
-    method @Deprecated @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Stable public static androidx.compose.ui.Modifier draggable2D(androidx.compose.ui.Modifier, androidx.compose.foundation.gestures.Draggable2DState state, optional boolean enabled, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional boolean startDragImmediately, optional kotlin.jvm.functions.Function3<? super kotlinx.coroutines.CoroutineScope,? super androidx.compose.ui.geometry.Offset,? super kotlin.coroutines.Continuation<? super kotlin.Unit>,? extends java.lang.Object?> onDragStarted, optional kotlin.jvm.functions.Function3<? super kotlinx.coroutines.CoroutineScope,? super androidx.compose.ui.unit.Velocity,? super kotlin.coroutines.Continuation<? super kotlin.Unit>,? extends java.lang.Object?> onDragStopped, optional boolean reverseDirection);
-    method @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Composable public static androidx.compose.foundation.gestures.Draggable2DState rememberDraggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
+    method public static androidx.compose.foundation.gestures.Draggable2DState Draggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
+    method @androidx.compose.runtime.Stable public static androidx.compose.ui.Modifier draggable2D(androidx.compose.ui.Modifier, androidx.compose.foundation.gestures.Draggable2DState state, optional boolean enabled, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional boolean startDragImmediately, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDragStarted, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.unit.Velocity,kotlin.Unit> onDragStopped, optional boolean reverseDirection);
+    method @androidx.compose.runtime.Composable public static androidx.compose.foundation.gestures.Draggable2DState rememberDraggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
   }
 
-  @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public interface Draggable2DState {
+  public interface Draggable2DState {
     method public void dispatchRawDelta(long delta);
     method public suspend Object? drag(optional androidx.compose.foundation.MutatePriority dragPriority, kotlin.jvm.functions.Function2<? super androidx.compose.foundation.gestures.Drag2DScope,? super kotlin.coroutines.Continuation<? super kotlin.Unit>,? extends java.lang.Object?> block, kotlin.coroutines.Continuation<? super kotlin.Unit>);
   }
diff --git a/compose/foundation/foundation/api/restricted_current.txt b/compose/foundation/foundation/api/restricted_current.txt
index 53d81cf..ab30fb8 100644
--- a/compose/foundation/foundation/api/restricted_current.txt
+++ b/compose/foundation/foundation/api/restricted_current.txt
@@ -455,7 +455,7 @@
     property @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public static final androidx.compose.runtime.ProvidableCompositionLocal<androidx.compose.foundation.gestures.BringIntoViewSpec> LocalBringIntoViewSpec;
   }
 
-  @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public interface Drag2DScope {
+  public interface Drag2DScope {
     method public void dragBy(long pixels);
   }
 
@@ -481,13 +481,12 @@
   }
 
   public final class Draggable2DKt {
-    method @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public static androidx.compose.foundation.gestures.Draggable2DState Draggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
-    method @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Stable public static androidx.compose.ui.Modifier draggable2D(androidx.compose.ui.Modifier, androidx.compose.foundation.gestures.Draggable2DState state, optional boolean enabled, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional boolean startDragImmediately, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDragStarted, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.unit.Velocity,kotlin.Unit> onDragStopped, optional boolean reverseDirection);
-    method @Deprecated @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Stable public static androidx.compose.ui.Modifier draggable2D(androidx.compose.ui.Modifier, androidx.compose.foundation.gestures.Draggable2DState state, optional boolean enabled, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional boolean startDragImmediately, optional kotlin.jvm.functions.Function3<? super kotlinx.coroutines.CoroutineScope,? super androidx.compose.ui.geometry.Offset,? super kotlin.coroutines.Continuation<? super kotlin.Unit>,? extends java.lang.Object?> onDragStarted, optional kotlin.jvm.functions.Function3<? super kotlinx.coroutines.CoroutineScope,? super androidx.compose.ui.unit.Velocity,? super kotlin.coroutines.Continuation<? super kotlin.Unit>,? extends java.lang.Object?> onDragStopped, optional boolean reverseDirection);
-    method @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi @androidx.compose.runtime.Composable public static androidx.compose.foundation.gestures.Draggable2DState rememberDraggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
+    method public static androidx.compose.foundation.gestures.Draggable2DState Draggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
+    method @androidx.compose.runtime.Stable public static androidx.compose.ui.Modifier draggable2D(androidx.compose.ui.Modifier, androidx.compose.foundation.gestures.Draggable2DState state, optional boolean enabled, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional boolean startDragImmediately, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDragStarted, optional kotlin.jvm.functions.Function1<? super androidx.compose.ui.unit.Velocity,kotlin.Unit> onDragStopped, optional boolean reverseDirection);
+    method @androidx.compose.runtime.Composable public static androidx.compose.foundation.gestures.Draggable2DState rememberDraggable2DState(kotlin.jvm.functions.Function1<? super androidx.compose.ui.geometry.Offset,kotlin.Unit> onDelta);
   }
 
-  @SuppressCompatibility @androidx.compose.foundation.ExperimentalFoundationApi public interface Draggable2DState {
+  public interface Draggable2DState {
     method public void dispatchRawDelta(long delta);
     method public suspend Object? drag(optional androidx.compose.foundation.MutatePriority dragPriority, kotlin.jvm.functions.Function2<? super androidx.compose.foundation.gestures.Drag2DScope,? super kotlin.coroutines.Continuation<? super kotlin.Unit>,? extends java.lang.Object?> block, kotlin.coroutines.Continuation<? super kotlin.Unit>);
   }
diff --git a/compose/foundation/foundation/samples/src/main/java/androidx/compose/foundation/samples/Draggable2DSamples.kt b/compose/foundation/foundation/samples/src/main/java/androidx/compose/foundation/samples/Draggable2DSamples.kt
index 41caf82..bfc11d3 100644
--- a/compose/foundation/foundation/samples/src/main/java/androidx/compose/foundation/samples/Draggable2DSamples.kt
+++ b/compose/foundation/foundation/samples/src/main/java/androidx/compose/foundation/samples/Draggable2DSamples.kt
@@ -17,7 +17,6 @@
 package androidx.compose.foundation.samples
 
 import androidx.annotation.Sampled
-import androidx.compose.foundation.ExperimentalFoundationApi
 import androidx.compose.foundation.background
 import androidx.compose.foundation.gestures.draggable2D
 import androidx.compose.foundation.gestures.rememberDraggable2DState
@@ -38,7 +37,6 @@
 import androidx.compose.ui.unit.dp
 import kotlin.math.roundToInt
 
-@OptIn(ExperimentalFoundationApi::class)
 @Sampled
 @Composable
 fun Draggable2DSample() {
diff --git a/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/text/selection/gestures/TextField1SelectionGesturesTest.kt b/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/text/selection/gestures/TextField1SelectionGesturesTest.kt
index 3c1c716..4919e1f 100644
--- a/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/text/selection/gestures/TextField1SelectionGesturesTest.kt
+++ b/compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/text/selection/gestures/TextField1SelectionGesturesTest.kt
@@ -18,6 +18,7 @@
 
 import androidx.compose.foundation.layout.fillMaxWidth
 import androidx.compose.foundation.text.BasicTextField
+import androidx.compose.foundation.text.input.InputMethodInterceptor
 import androidx.compose.foundation.text.selection.gestures.util.TextField1SelectionAsserter
 import androidx.compose.foundation.text.selection.gestures.util.TextFieldSelectionAsserter
 import androidx.compose.runtime.Composable
@@ -36,6 +37,7 @@
     initialText: String,
     private val layoutDirection: LayoutDirection,
 ) : TextFieldSelectionGesturesTest<TextFieldValue>() {
+    private val inputMethodInterceptor = InputMethodInterceptor(rule)
     private var textFieldValue by mutableStateOf(TextFieldValue(initialText))
 
     override var textContent: String
@@ -62,16 +64,18 @@
     @Composable
     override fun Content() {
         CompositionLocalProvider(LocalLayoutDirection provides layoutDirection) {
-            BasicTextField(
-                value = textFieldValue,
-                onValueChange = { textFieldValue = it },
-                readOnly = readOnly,
-                enabled = enabled,
-                textStyle = TextStyle(fontFamily = fontFamily, fontSize = fontSize),
-                modifier = Modifier
-                    .fillMaxWidth()
-                    .testTag(pointerAreaTag),
-            )
+            inputMethodInterceptor.Content {
+                BasicTextField(
+                    value = textFieldValue,
+                    onValueChange = { textFieldValue = it },
+                    readOnly = readOnly,
+                    enabled = enabled,
+                    textStyle = TextStyle(fontFamily = fontFamily, fontSize = fontSize),
+                    modifier = Modifier
+                        .fillMaxWidth()
+                        .testTag(pointerAreaTag),
+                )
+            }
         }
     }
 }
diff --git a/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/gestures/Draggable2D.kt b/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/gestures/Draggable2D.kt
index 9c1d734..f12fb1a 100644
--- a/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/gestures/Draggable2D.kt
+++ b/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/gestures/Draggable2D.kt
@@ -16,7 +16,6 @@
 
 package androidx.compose.foundation.gestures
 
-import androidx.compose.foundation.ExperimentalFoundationApi
 import androidx.compose.foundation.MutatePriority
 import androidx.compose.foundation.MutatorMutex
 import androidx.compose.foundation.gestures.DragEvent.DragDelta
@@ -34,13 +33,11 @@
 import androidx.compose.ui.unit.Velocity
 import kotlinx.coroutines.CoroutineScope
 import kotlinx.coroutines.coroutineScope
-import kotlinx.coroutines.launch
 
 /**
  * State of Draggable2D. Allows for granular control of how deltas are consumed by the user as well
  * as to write custom drag methods using [drag] suspend function.
  */
-@ExperimentalFoundationApi
 interface Draggable2DState {
     /**
      * Call this function to take control of drag logic.
@@ -80,7 +77,6 @@
 /**
  * Scope used for suspending drag blocks
  */
-@ExperimentalFoundationApi
 interface Drag2DScope {
     /**
      * Attempts to drag by [pixels] px.
@@ -101,7 +97,6 @@
  *
  * @param onDelta callback invoked when drag occurs. The callback receives the delta in pixels.
  */
-@ExperimentalFoundationApi
 fun Draggable2DState(onDelta: (Offset) -> Unit): Draggable2DState =
     DefaultDraggable2DState(onDelta)
 
@@ -116,7 +111,6 @@
  *
  * @param onDelta callback invoked when drag occurs. The callback receives the delta in pixels.
  */
-@ExperimentalFoundationApi
 @Composable
 fun rememberDraggable2DState(onDelta: (Offset) -> Unit): Draggable2DState {
     val onDeltaState = rememberUpdatedState(onDelta)
@@ -150,7 +144,6 @@
  * @param reverseDirection reverse the direction of the scroll, so top to bottom scroll will
  * behave like bottom to top and left to right will behave like right to left.
  */
-@ExperimentalFoundationApi
 @Stable
 fun Modifier.draggable2D(
     state: Draggable2DState,
@@ -170,144 +163,6 @@
     reverseDirection = reverseDirection
 )
 
-/**
- * Configure touch dragging for the UI element in both orientations. The drag distance
- * reported to [Draggable2DState], allowing users to react to the drag delta and update their state.
- *
- * The common common usecase for this component is when you need to be able to drag something
- * inside the component on the screen and represent this state via one float value
- *
- * If you are implementing dragging in a single orientation, consider using [draggable].
- *
- * @sample androidx.compose.foundation.samples.Draggable2DSample
- *
- * @param state [Draggable2DState] state of the draggable2D. Defines how drag events will be
- * interpreted by the user land logic.
- * @param enabled whether or not drag is enabled
- * @param interactionSource [MutableInteractionSource] that will be used to emit
- * [DragInteraction.Start] when this draggable is being dragged.
- * @param startDragImmediately when set to true, draggable2D will start dragging immediately and
- * prevent other gesture detectors from reacting to "down" events (in order to block composed
- * press-based gestures). This is intended to allow end users to "catch" an animating widget by
- * pressing on it. It's useful to set it when value you're dragging is settling / animating.
- * @param onDragStarted callback that will be invoked when drag is about to start at the starting
- * position, allowing user to suspend and perform preparation for drag, if desired.This suspend
- * function is invoked with the draggable2D scope, allowing for async processing, if desired. Note
- * that the scope used here is the one provided by the draggable2D node, for long-running work that
- * needs to outlast the modifier being in the composition you should use a scope that fits the
- * lifecycle needed.
- * @param onDragStopped callback that will be invoked when drag is finished, allowing the
- * user to react on velocity and process it. This suspend function is invoked with the draggable2D
- * scope, allowing for async processing, if desired. Note that the scope used here is the one
- * provided by the draggable2D scope, for long-running work that needs to outlast the modifier being
- * in the composition you should use a scope that fits the lifecycle needed.
- * @param reverseDirection reverse the direction of the scroll, so top to bottom scroll will
- * behave like bottom to top and left to right will behave like right to left.
- */
-@Deprecated(
-    "Please use overload without the suspend onDragStarted onDragStopped and callbacks",
-    level = DeprecationLevel.HIDDEN
-)
-@ExperimentalFoundationApi
-@Stable
-fun Modifier.draggable2D(
-    state: Draggable2DState,
-    enabled: Boolean = true,
-    interactionSource: MutableInteractionSource? = null,
-    startDragImmediately: Boolean = false,
-    onDragStarted: suspend CoroutineScope.(startedPosition: Offset) -> Unit = NoOpOnDragStarted,
-    onDragStopped: suspend CoroutineScope.(velocity: Velocity) -> Unit = NoOpOnDragStopped,
-    reverseDirection: Boolean = false
-): Modifier = this then Draggable2DCompatElement(
-    state = state,
-    enabled = enabled,
-    interactionSource = interactionSource,
-    startDragImmediately = startDragImmediately,
-    onDragStarted = onDragStarted,
-    onDragStopped = onDragStopped,
-    reverseDirection = reverseDirection
-)
-
-@OptIn(ExperimentalFoundationApi::class)
-internal class Draggable2DCompatElement(
-    private val state: Draggable2DState,
-    private val enabled: Boolean,
-    private val interactionSource: MutableInteractionSource?,
-    private val startDragImmediately: Boolean,
-    private val onDragStarted: suspend CoroutineScope.(startedPosition: Offset) -> Unit,
-    private val onDragStopped: suspend CoroutineScope.(velocity: Velocity) -> Unit,
-    private val reverseDirection: Boolean
-) : ModifierNodeElement<Draggable2DNode>() {
-    override fun create(): Draggable2DNode = Draggable2DNode(
-        state,
-        CanDrag,
-        enabled,
-        interactionSource,
-        startDragImmediately,
-        reverseDirection,
-        onDragStarted = onDragStarted,
-        onDragStopped = onDragStopped,
-    )
-
-    override fun update(node: Draggable2DNode) {
-        node.update(
-            state,
-            CanDrag,
-            enabled,
-            interactionSource,
-            startDragImmediately,
-            reverseDirection,
-            onDragStarted = onDragStarted,
-            onDragStopped = onDragStopped,
-        )
-    }
-
-    override fun equals(other: Any?): Boolean {
-        if (this === other) return true
-        if (other === null) return false
-        if (this::class != other::class) return false
-
-        other as Draggable2DCompatElement
-
-        if (state != other.state) return false
-        if (enabled != other.enabled) return false
-        if (interactionSource != other.interactionSource) return false
-        if (startDragImmediately != other.startDragImmediately) return false
-        if (onDragStarted !== other.onDragStarted) return false
-        if (onDragStopped !== other.onDragStopped) return false
-        if (reverseDirection != other.reverseDirection) return false
-
-        return true
-    }
-
-    override fun hashCode(): Int {
-        var result = state.hashCode()
-        result = 31 * result + enabled.hashCode()
-        result = 31 * result + (interactionSource?.hashCode() ?: 0)
-        result = 31 * result + startDragImmediately.hashCode()
-        result = 31 * result + onDragStarted.hashCode()
-        result = 31 * result + onDragStopped.hashCode()
-        result = 31 * result + reverseDirection.hashCode()
-        return result
-    }
-
-    override fun InspectorInfo.inspectableProperties() {
-        name = "draggable2D"
-        properties["enabled"] = enabled
-        properties["interactionSource"] = interactionSource
-        properties["startDragImmediately"] = startDragImmediately
-        properties["onDragStarted"] = onDragStarted
-        properties["onDragStopped"] = onDragStopped
-        properties["reverseDirection"] = reverseDirection
-        properties["state"] = state
-    }
-
-    companion object {
-        val CanDrag: (PointerInputChange) -> Boolean = { true }
-    }
-}
-
-@OptIn(ExperimentalFoundationApi::class)
 internal class Draggable2DElement(
     private val state: Draggable2DState,
     private val enabled: Boolean,
@@ -324,8 +179,8 @@
         interactionSource,
         startDragImmediately,
         reverseDirection,
-        onDragStart = onDragStarted,
-        onDragStop = onDragStopped,
+        onDragStarted,
+        onDragStopped,
     )
 
     override fun update(node: Draggable2DNode) {
@@ -336,8 +191,8 @@
             interactionSource,
             startDragImmediately,
             reverseDirection,
-            onDragStart = onDragStarted,
-            onDragStop = onDragStopped,
+            onDragStarted,
+            onDragStopped,
         )
     }
 
@@ -386,7 +241,6 @@
     }
 }
 
-@OptIn(ExperimentalFoundationApi::class)
 internal class Draggable2DNode(
     private var state: Draggable2DState,
     canDrag: (PointerInputChange) -> Boolean,
@@ -394,14 +248,8 @@
     interactionSource: MutableInteractionSource?,
     private var startDragImmediately: Boolean,
     private var reverseDirection: Boolean,
-    // keeping both lambdas for compatibility
-    private var onDragStarted: suspend CoroutineScope.(startedPosition: Offset) -> Unit =
-        NoOpOnDragStarted,
-    private var onDragStart: (startedPosition: Offset) -> Unit =
-        NoOpOnDragStart,
-    private var onDragStopped: suspend CoroutineScope.(velocity: Velocity) -> Unit =
-        NoOpOnDragStopped,
-    private var onDragStop: (velocity: Velocity) -> Unit = NoOpOnDragStop,
+    private var onDragStarted: (startedPosition: Offset) -> Unit,
+    private var onDragStopped: (velocity: Velocity) -> Unit,
 ) : DragGestureNode(
     canDrag = canDrag,
     enabled = enabled,
@@ -420,21 +268,11 @@
     }
 
     override fun onDragStarted(startedPosition: Offset) {
-        onDragStart.invoke(startedPosition)
-        // do not launch if callback is no no-op
-        if (!isAttached || onDragStarted === NoOpOnDragStarted) return
-        coroutineScope.launch {
-            this@Draggable2DNode.onDragStarted(this, startedPosition)
-        }
+        onDragStarted.invoke(startedPosition)
     }
 
     override fun onDragStopped(velocity: Velocity) {
-        onDragStop.invoke(velocity)
-        // do not launch if callback is no no-op
-        if (!isAttached || onDragStopped === NoOpOnDragStopped) return
-        coroutineScope.launch {
-            this@Draggable2DNode.onDragStopped(this, velocity.reverseIfNeeded())
-        }
+        onDragStopped.invoke(velocity)
     }
 
     override fun startDragImmediately(): Boolean = startDragImmediately
@@ -446,12 +284,8 @@
         interactionSource: MutableInteractionSource?,
         startDragImmediately: Boolean,
         reverseDirection: Boolean,
-        onDragStarted: suspend CoroutineScope.(startedPosition: Offset) -> Unit =
-            this.onDragStarted,
-        onDragStopped: suspend CoroutineScope.(velocity: Velocity) -> Unit =
-            this.onDragStopped,
-        onDragStart: (startedPosition: Offset) -> Unit = this.onDragStart,
-        onDragStop: (velocity: Velocity) -> Unit = this.onDragStop,
+        onDragStarted: (startedPosition: Offset) -> Unit,
+        onDragStopped: (velocity: Velocity) -> Unit,
     ) {
         var resetPointerInputHandling = false
         if (this.state != state) {
@@ -465,8 +299,7 @@
 
         this.onDragStarted = onDragStarted
         this.onDragStopped = onDragStopped
-        this.onDragStart = onDragStart
-        this.onDragStop = onDragStop
+
         this.startDragImmediately = startDragImmediately
 
         update(
@@ -482,7 +315,6 @@
     private fun Offset.reverseIfNeeded() = if (reverseDirection) this * -1f else this * 1f
 }
 
-@OptIn(ExperimentalFoundationApi::class)
 private class DefaultDraggable2DState(val onDelta: (Offset) -> Unit) : Draggable2DState {
     private val drag2DScope: Drag2DScope = object : Drag2DScope {
         override fun dragBy(pixels: Offset) = onDelta(pixels)
diff --git a/compose/integration-tests/demos/build.gradle b/compose/integration-tests/demos/build.gradle
index 5b3f0fa..50175f1 100644
--- a/compose/integration-tests/demos/build.gradle
+++ b/compose/integration-tests/demos/build.gradle
@@ -31,7 +31,7 @@
     implementation(project(":compose:foundation:foundation-layout"))
     implementation(project(":compose:integration-tests:demos:common"))
     implementation(project(":compose:material:material"))
-    implementation(project(":compose:material:material-icons-extended"))
+    implementation("androidx.compose.material:material-icons-extended:1.6.7")
     implementation(project(":compose:material3:material3"))
     implementation(project(":compose:runtime:runtime"))
     implementation(project(":compose:ui:ui"))
diff --git a/compose/integration-tests/hero/hero-implementation/build.gradle b/compose/integration-tests/hero/hero-implementation/build.gradle
index fabe1431..361a49e 100644
--- a/compose/integration-tests/hero/hero-implementation/build.gradle
+++ b/compose/integration-tests/hero/hero-implementation/build.gradle
@@ -49,7 +49,7 @@
     implementation(project(":compose:foundation:foundation"))
     implementation(project(":compose:material:material"))
     implementation(project(":compose:material3:material3"))
-    implementation(project(":compose:material:material-icons-core"))
+    implementation("androidx.compose.material:material-icons-core:1.6.7")
     implementation(project(":compose:runtime:runtime"))
     implementation(project(":compose:runtime:runtime-tracing"))
     implementation(project(":compose:ui:ui"))
diff --git a/compose/material/material-icons-core/api/1.0.0-beta02.txt b/compose/material/material-icons-core/api/1.0.0-beta02.txt
deleted file mode 100644
index 07db090..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta02.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta03.txt b/compose/material/material-icons-core/api/1.0.0-beta03.txt
deleted file mode 100644
index 07db090..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta03.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta04.txt b/compose/material/material-icons-core/api/1.0.0-beta04.txt
deleted file mode 100644
index 07db090..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta04.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta05.txt b/compose/material/material-icons-core/api/1.0.0-beta05.txt
deleted file mode 100644
index 07db090..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta05.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta06.txt b/compose/material/material-icons-core/api/1.0.0-beta06.txt
deleted file mode 100644
index 07db090..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta06.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta07.txt b/compose/material/material-icons-core/api/1.0.0-beta07.txt
deleted file mode 100644
index 07db090..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta07.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta08.txt b/compose/material/material-icons-core/api/1.0.0-beta08.txt
deleted file mode 100644
index 530c740..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta08.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta09.txt b/compose/material/material-icons-core/api/1.0.0-beta09.txt
deleted file mode 100644
index 530c740..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta09.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.0.0-beta10.txt b/compose/material/material-icons-core/api/1.0.0-beta10.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.0.0-beta10.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.1.0-beta02.txt b/compose/material/material-icons-core/api/1.1.0-beta02.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.1.0-beta02.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.1.0-beta03.txt b/compose/material/material-icons-core/api/1.1.0-beta03.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.1.0-beta03.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.1.0-beta04.txt b/compose/material/material-icons-core/api/1.1.0-beta04.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.1.0-beta04.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.1.0-beta05.txt b/compose/material/material-icons-core/api/1.1.0-beta05.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.1.0-beta05.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.2.0-beta01.txt b/compose/material/material-icons-core/api/1.2.0-beta01.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.2.0-beta01.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.2.0-beta02.txt b/compose/material/material-icons-core/api/1.2.0-beta02.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.2.0-beta02.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.2.0-beta03.txt b/compose/material/material-icons-core/api/1.2.0-beta03.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.2.0-beta03.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.2.0-beta04.txt b/compose/material/material-icons-core/api/1.2.0-beta04.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.2.0-beta04.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.3.0-beta01.txt b/compose/material/material-icons-core/api/1.3.0-beta01.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.3.0-beta01.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.3.0-beta02.txt b/compose/material/material-icons-core/api/1.3.0-beta02.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.3.0-beta02.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.3.0-beta03.txt b/compose/material/material-icons-core/api/1.3.0-beta03.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.3.0-beta03.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.3.0-beta04.txt b/compose/material/material-icons-core/api/1.3.0-beta04.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.3.0-beta04.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.4.0-beta01.txt b/compose/material/material-icons-core/api/1.4.0-beta01.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.4.0-beta01.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.4.0-beta02.txt b/compose/material/material-icons-core/api/1.4.0-beta02.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.4.0-beta02.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.5.0-beta01.txt b/compose/material/material-icons-core/api/1.5.0-beta01.txt
deleted file mode 100644
index b95d770..0000000
--- a/compose/material/material-icons-core/api/1.5.0-beta01.txt
+++ /dev/null
@@ -1,1036 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.6.0-beta01.txt b/compose/material/material-icons-core/api/1.6.0-beta01.txt
deleted file mode 100644
index c80a502..0000000
--- a/compose/material/material-icons-core/api/1.6.0-beta01.txt
+++ /dev/null
@@ -1,1223 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.7.0-beta01.txt b/compose/material/material-icons-core/api/1.7.0-beta01.txt
deleted file mode 100644
index c80a502..0000000
--- a/compose/material/material-icons-core/api/1.7.0-beta01.txt
+++ /dev/null
@@ -1,1223 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/1.7.0-beta02.txt b/compose/material/material-icons-core/api/1.7.0-beta02.txt
deleted file mode 100644
index c80a502..0000000
--- a/compose/material/material-icons-core/api/1.7.0-beta02.txt
+++ /dev/null
@@ -1,1223 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/current.txt b/compose/material/material-icons-core/api/current.txt
deleted file mode 100644
index c80a502..0000000
--- a/compose/material/material-icons-core/api/current.txt
+++ /dev/null
@@ -1,1223 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta02.txt b/compose/material/material-icons-core/api/res-1.0.0-beta02.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta02.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta03.txt b/compose/material/material-icons-core/api/res-1.0.0-beta03.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta03.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta04.txt b/compose/material/material-icons-core/api/res-1.0.0-beta04.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta04.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta05.txt b/compose/material/material-icons-core/api/res-1.0.0-beta05.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta05.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta06.txt b/compose/material/material-icons-core/api/res-1.0.0-beta06.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta06.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta07.txt b/compose/material/material-icons-core/api/res-1.0.0-beta07.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta07.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta08.txt b/compose/material/material-icons-core/api/res-1.0.0-beta08.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta08.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta09.txt b/compose/material/material-icons-core/api/res-1.0.0-beta09.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta09.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.0.0-beta10.txt b/compose/material/material-icons-core/api/res-1.0.0-beta10.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.0.0-beta10.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.1.0-beta02.txt b/compose/material/material-icons-core/api/res-1.1.0-beta02.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.1.0-beta02.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.1.0-beta03.txt b/compose/material/material-icons-core/api/res-1.1.0-beta03.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.1.0-beta03.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.1.0-beta04.txt b/compose/material/material-icons-core/api/res-1.1.0-beta04.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.1.0-beta04.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.1.0-beta05.txt b/compose/material/material-icons-core/api/res-1.1.0-beta05.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.1.0-beta05.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.2.0-beta01.txt b/compose/material/material-icons-core/api/res-1.2.0-beta01.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.2.0-beta01.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.2.0-beta02.txt b/compose/material/material-icons-core/api/res-1.2.0-beta02.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.2.0-beta02.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.2.0-beta03.txt b/compose/material/material-icons-core/api/res-1.2.0-beta03.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.2.0-beta03.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.2.0-beta04.txt b/compose/material/material-icons-core/api/res-1.2.0-beta04.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.2.0-beta04.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.3.0-beta01.txt b/compose/material/material-icons-core/api/res-1.3.0-beta01.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.3.0-beta01.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.3.0-beta02.txt b/compose/material/material-icons-core/api/res-1.3.0-beta02.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.3.0-beta02.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.3.0-beta03.txt b/compose/material/material-icons-core/api/res-1.3.0-beta03.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.3.0-beta03.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.3.0-beta04.txt b/compose/material/material-icons-core/api/res-1.3.0-beta04.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.3.0-beta04.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.4.0-beta01.txt b/compose/material/material-icons-core/api/res-1.4.0-beta01.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.4.0-beta01.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.5.0-beta01.txt b/compose/material/material-icons-core/api/res-1.5.0-beta01.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.5.0-beta01.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.6.0-beta01.txt b/compose/material/material-icons-core/api/res-1.6.0-beta01.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.6.0-beta01.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.7.0-beta01.txt b/compose/material/material-icons-core/api/res-1.7.0-beta01.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.7.0-beta01.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-1.7.0-beta02.txt b/compose/material/material-icons-core/api/res-1.7.0-beta02.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-1.7.0-beta02.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/res-current.txt b/compose/material/material-icons-core/api/res-current.txt
deleted file mode 100644
index e69de29..0000000
--- a/compose/material/material-icons-core/api/res-current.txt
+++ /dev/null
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta02.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta02.txt
deleted file mode 100644
index 1c3ad24..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta02.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta03.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta03.txt
deleted file mode 100644
index 1c3ad24..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta03.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta04.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta04.txt
deleted file mode 100644
index 1c3ad24..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta04.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta05.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta05.txt
deleted file mode 100644
index 1c3ad24..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta05.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta06.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta06.txt
deleted file mode 100644
index 1c3ad24..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta06.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta07.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta07.txt
deleted file mode 100644
index 1c3ad24..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta07.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional androidx.compose.ui.graphics.PathFillType pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta08.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta08.txt
deleted file mode 100644
index 6ac0ceb5..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta08.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta09.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta09.txt
deleted file mode 100644
index 6ac0ceb5..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta09.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.0.0-beta10.txt b/compose/material/material-icons-core/api/restricted_1.0.0-beta10.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.0.0-beta10.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.1.0-beta02.txt b/compose/material/material-icons-core/api/restricted_1.1.0-beta02.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.1.0-beta02.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.1.0-beta03.txt b/compose/material/material-icons-core/api/restricted_1.1.0-beta03.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.1.0-beta03.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.1.0-beta04.txt b/compose/material/material-icons-core/api/restricted_1.1.0-beta04.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.1.0-beta04.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.1.0-beta05.txt b/compose/material/material-icons-core/api/restricted_1.1.0-beta05.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.1.0-beta05.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.2.0-beta01.txt b/compose/material/material-icons-core/api/restricted_1.2.0-beta01.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.2.0-beta01.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.2.0-beta02.txt b/compose/material/material-icons-core/api/restricted_1.2.0-beta02.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.2.0-beta02.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.2.0-beta03.txt b/compose/material/material-icons-core/api/restricted_1.2.0-beta03.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.2.0-beta03.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.2.0-beta04.txt b/compose/material/material-icons-core/api/restricted_1.2.0-beta04.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.2.0-beta04.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.3.0-beta01.txt b/compose/material/material-icons-core/api/restricted_1.3.0-beta01.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.3.0-beta01.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.3.0-beta02.txt b/compose/material/material-icons-core/api/restricted_1.3.0-beta02.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.3.0-beta02.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.3.0-beta03.txt b/compose/material/material-icons-core/api/restricted_1.3.0-beta03.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.3.0-beta03.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.3.0-beta04.txt b/compose/material/material-icons-core/api/restricted_1.3.0-beta04.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.3.0-beta04.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.4.0-beta01.txt b/compose/material/material-icons-core/api/restricted_1.4.0-beta01.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.4.0-beta01.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.4.0-beta02.txt b/compose/material/material-icons-core/api/restricted_1.4.0-beta02.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.4.0-beta02.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.5.0-beta01.txt b/compose/material/material-icons-core/api/restricted_1.5.0-beta01.txt
deleted file mode 100644
index 619d449..0000000
--- a/compose/material/material-icons-core/api/restricted_1.5.0-beta01.txt
+++ /dev/null
@@ -1,1037 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.6.0-beta01.txt b/compose/material/material-icons-core/api/restricted_1.6.0-beta01.txt
deleted file mode 100644
index 06acb8e..0000000
--- a/compose/material/material-icons-core/api/restricted_1.6.0-beta01.txt
+++ /dev/null
@@ -1,1224 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.7.0-beta01.txt b/compose/material/material-icons-core/api/restricted_1.7.0-beta01.txt
deleted file mode 100644
index 06acb8e..0000000
--- a/compose/material/material-icons-core/api/restricted_1.7.0-beta01.txt
+++ /dev/null
@@ -1,1224 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_1.7.0-beta02.txt b/compose/material/material-icons-core/api/restricted_1.7.0-beta02.txt
deleted file mode 100644
index 06acb8e..0000000
--- a/compose/material/material-icons-core/api/restricted_1.7.0-beta02.txt
+++ /dev/null
@@ -1,1224 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/api/restricted_current.txt b/compose/material/material-icons-core/api/restricted_current.txt
deleted file mode 100644
index 06acb8e..0000000
--- a/compose/material/material-icons-core/api/restricted_current.txt
+++ /dev/null
@@ -1,1224 +0,0 @@
-// Signature format: 4.0
-package androidx.compose.material.icons {
-
-  public final class Icons {
-    method public androidx.compose.material.icons.Icons.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.Filled Default;
-    field public static final androidx.compose.material.icons.Icons INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored {
-    method public androidx.compose.material.icons.Icons.AutoMirrored.Filled getDefault();
-    property public final androidx.compose.material.icons.Icons.AutoMirrored.Filled Default;
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Filled {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Filled INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Outlined {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Outlined INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Rounded {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Rounded INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.Sharp {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.Sharp INSTANCE;
-  }
-
-  public static final class Icons.AutoMirrored.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.AutoMirrored.TwoTone INSTANCE;
-  }
-
-  public static final class Icons.Filled {
-    field public static final androidx.compose.material.icons.Icons.Filled INSTANCE;
-  }
-
-  public static final class Icons.Outlined {
-    field public static final androidx.compose.material.icons.Icons.Outlined INSTANCE;
-  }
-
-  public static final class Icons.Rounded {
-    field public static final androidx.compose.material.icons.Icons.Rounded INSTANCE;
-  }
-
-  public static final class Icons.Sharp {
-    field public static final androidx.compose.material.icons.Icons.Sharp INSTANCE;
-  }
-
-  public static final class Icons.TwoTone {
-    field public static final androidx.compose.material.icons.Icons.TwoTone INSTANCE;
-  }
-
-  public final class IconsKt {
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, optional boolean autoMirror, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method @Deprecated public static inline androidx.compose.ui.graphics.vector.ImageVector materialIcon(String name, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.ImageVector.Builder,androidx.compose.ui.graphics.vector.ImageVector.Builder> block);
-    method public static inline androidx.compose.ui.graphics.vector.ImageVector.Builder materialPath(androidx.compose.ui.graphics.vector.ImageVector.Builder, optional float fillAlpha, optional float strokeAlpha, optional int pathFillType, kotlin.jvm.functions.Function1<? super androidx.compose.ui.graphics.vector.PathBuilder,kotlin.Unit> pathBuilder);
-    field @kotlin.PublishedApi internal static final float MaterialIconDimension = 24.0f;
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.filled {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.outlined {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.rounded {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.sharp {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.automirrored.twotone {
-
-  public final class ArrowBackKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class ListKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-  public final class SendKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.AutoMirrored.TwoTone);
-  }
-
-}
-
-package androidx.compose.material.icons.filled {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Filled);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Filled);
-  }
-
-}
-
-package androidx.compose.material.icons.outlined {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Outlined);
-  }
-
-}
-
-package androidx.compose.material.icons.rounded {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Rounded);
-  }
-
-}
-
-package androidx.compose.material.icons.sharp {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.Sharp);
-  }
-
-}
-
-package androidx.compose.material.icons.twotone {
-
-  public final class AccountBoxKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountBox(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AccountCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAccountCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAddCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class AddKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getAdd(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowBackKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowBack(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowDropDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getArrowDropDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ArrowForwardKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getArrowForward(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class BuildKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getBuild(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CallKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCall(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckCircleKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheckCircle(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CheckKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCheck(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ClearKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClear(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CloseKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getClose(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class CreateKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getCreate(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DateRangeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDateRange(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DeleteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDelete(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class DoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getDone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EditKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEdit(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class EmailKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getEmail(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ExitToAppKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getExitToApp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteBorderKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavoriteBorder(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class FavoriteKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getFavorite(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class HomeKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getHome(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class InfoKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getInfo(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowDownKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowDown(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowLeftKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowLeft(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowRightKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowRight(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class KeyboardArrowUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getKeyboardArrowUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ListKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getList(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LocationOnKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLocationOn(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class LockKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getLock(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MailOutlineKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMailOutline(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MenuKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMenu(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class MoreVertKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getMoreVert(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class NotificationsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getNotifications(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PersonKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPerson(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PhoneKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPhone(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlaceKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlace(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class PlayArrowKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getPlayArrow(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class RefreshKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getRefresh(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SearchKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSearch(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SendKt {
-    method @Deprecated public static androidx.compose.ui.graphics.vector.ImageVector getSend(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class SettingsKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getSettings(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShareKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShare(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ShoppingCartKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getShoppingCart(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class StarKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getStar(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class ThumbUpKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getThumbUp(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-  public final class WarningKt {
-    method public static androidx.compose.ui.graphics.vector.ImageVector getWarning(androidx.compose.material.icons.Icons.TwoTone);
-  }
-
-}
-
diff --git a/compose/material/material-icons-core/build.gradle b/compose/material/material-icons-core/build.gradle
deleted file mode 100644
index f720873..0000000
--- a/compose/material/material-icons-core/build.gradle
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/**
- * This file was created using the `create_project.py` script located in the
- * `<AndroidX root>/development/project-creator` directory.
- *
- * Please use that script when creating a new project, rather than copying an existing project and
- * modifying its settings.
- */
-import androidx.build.LibraryType
-import androidx.build.PlatformIdentifier
-import androidx.compose.material.icons.generator.tasks.IconGenerationTask
-
-plugins {
-    id("AndroidXPlugin")
-    id("com.android.library")
-    id("AndroidXComposePlugin")
-}
-
-androidXMultiplatform {
-    android()
-    desktop()
-
-    defaultPlatform(PlatformIdentifier.ANDROID)
-
-    sourceSets {
-        commonMain {
-            dependencies {
-                implementation(libs.kotlinStdlibCommon)
-                api("androidx.compose.ui:ui:1.6.0")
-            }
-        }
-
-        commonTest {
-            dependencies {
-            }
-        }
-
-        jvmMain {
-            dependsOn(commonMain)
-            dependencies {
-                implementation(libs.kotlinStdlib)
-            }
-        }
-
-        skikoMain {
-            dependsOn(commonMain)
-            dependencies {
-            }
-        }
-
-        androidMain {
-            dependsOn(jvmMain)
-            dependencies {
-            }
-        }
-
-        desktopMain {
-            dependsOn(skikoMain)
-            dependsOn(jvmMain)
-            dependencies {
-            }
-        }
-
-        jvmTest {
-            dependsOn(commonTest)
-            dependencies {
-            }
-        }
-
-        androidInstrumentedTest {
-            dependsOn(jvmTest)
-            dependencies {
-            }
-        }
-
-        androidUnitTest {
-            dependsOn(jvmTest)
-            dependencies {
-            }
-        }
-
-        desktopTest {
-            dependsOn(jvmTest)
-            dependencies {
-            }
-        }
-    }
-}
-
-IconGenerationTask.registerCoreIconProject(
-        project,
-        android,
-        true
-)
-
-androidx {
-    name = "Compose Material Icons Core"
-    type = LibraryType.PUBLISHED_LIBRARY_ONLY_USED_BY_KOTLIN_CONSUMERS
-    mavenVersion = LibraryVersions.COMPOSE
-    inceptionYear = "2020"
-    description = "Compose Material Design core icons. This module contains the most commonly used set of Material icons."
-    legacyDisableKotlinStrictApiMode = true
-    samples(project(":compose:material:material-icons-core:material-icons-core-samples"))
-}
-
-android {
-    namespace "androidx.compose.material.icons"
-}
diff --git a/compose/material/material-icons-core/samples/build.gradle b/compose/material/material-icons-core/samples/build.gradle
deleted file mode 100644
index c2120d47..0000000
--- a/compose/material/material-icons-core/samples/build.gradle
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/**
- * This file was created using the `create_project.py` script located in the
- * `<AndroidX root>/development/project-creator` directory.
- *
- * Please use that script when creating a new project, rather than copying an existing project and
- * modifying its settings.
- */
-import androidx.build.LibraryType
-
-plugins {
-    id("AndroidXPlugin")
-    id("com.android.library")
-    id("AndroidXComposePlugin")
-    id("org.jetbrains.kotlin.android")
-}
-
-dependencies {
-
-    implementation(libs.kotlinStdlib)
-
-    compileOnly(project(":annotation:annotation-sampled"))
-
-    implementation(project(":compose:material:material"))
-    implementation(project(":compose:material:material-icons-core"))
-    implementation("androidx.compose.runtime:runtime:1.2.1")
-}
-
-androidx {
-    name = "Compose UI Core Material Icons Samples"
-    type = LibraryType.SAMPLES
-    mavenVersion = LibraryVersions.COMPOSE
-    inceptionYear = "2019"
-    description = "Contains the sample code for the Androidx Compose UI Core Material Icons"
-}
-
-android {
-    namespace "androidx.compose.material.icons.samples"
-}
diff --git a/compose/material/material-icons-core/samples/src/main/java/androidx/compose/material/icons/samples/IconSamples.kt b/compose/material/material-icons-core/samples/src/main/java/androidx/compose/material/icons/samples/IconSamples.kt
deleted file mode 100644
index 7793cc0..0000000
--- a/compose/material/material-icons-core/samples/src/main/java/androidx/compose/material/icons/samples/IconSamples.kt
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.samples
-
-import androidx.annotation.Sampled
-import androidx.compose.foundation.layout.Box
-import androidx.compose.material.Icon
-import androidx.compose.material.icons.Icons
-import androidx.compose.material.icons.automirrored.outlined.ArrowForward
-import androidx.compose.material.icons.rounded.Menu
-import androidx.compose.runtime.Composable
-import androidx.compose.ui.Modifier
-import androidx.compose.ui.draw.paint
-import androidx.compose.ui.graphics.vector.ImageVector
-import androidx.compose.ui.graphics.vector.rememberVectorPainter
-
-@Sampled
-@Composable
-@Suppress("LocalVariableName")
-fun AppIcons() {
-    val MyAppIcons = Icons.Rounded
-    SomeComposable(icon = MyAppIcons.Menu)
-}
-
-@Sampled
-@Composable
-fun DrawIcon() {
-    Icon(Icons.Rounded.Menu, contentDescription = "Localized description")
-}
-
-@Sampled
-@Composable
-fun AutoMirroredIcon() {
-    // This icon will be mirrored when the LayoutDirection is Rtl.
-    Icon(Icons.AutoMirrored.Outlined.ArrowForward, contentDescription = "Localized description")
-}
-
-@Composable
-private fun SomeComposable(icon: ImageVector) {
-    Box(Modifier.paint(rememberVectorPainter(icon)))
-}
diff --git a/compose/material/material-icons-core/src/commonMain/kotlin/androidx/compose/material/icons/Icons.kt b/compose/material/material-icons-core/src/commonMain/kotlin/androidx/compose/material/icons/Icons.kt
deleted file mode 100644
index 30f8b7d..0000000
--- a/compose/material/material-icons-core/src/commonMain/kotlin/androidx/compose/material/icons/Icons.kt
+++ /dev/null
@@ -1,257 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons
-
-import androidx.compose.material.icons.Icons.Filled
-import androidx.compose.material.icons.Icons.Outlined
-import androidx.compose.material.icons.Icons.Rounded
-import androidx.compose.material.icons.Icons.Sharp
-import androidx.compose.material.icons.Icons.TwoTone
-import androidx.compose.ui.graphics.Color
-import androidx.compose.ui.graphics.PathFillType
-import androidx.compose.ui.graphics.SolidColor
-import androidx.compose.ui.graphics.StrokeCap
-import androidx.compose.ui.graphics.StrokeJoin
-import androidx.compose.ui.graphics.vector.DefaultFillType
-import androidx.compose.ui.graphics.vector.ImageVector
-import androidx.compose.ui.graphics.vector.PathBuilder
-import androidx.compose.ui.graphics.vector.path
-import androidx.compose.ui.unit.dp
-
-/**
- * <a href="https://material.io/design/iconography/system-icons.html" class="external" target="_blank">Material Design system icons</a>
- * as seen on
- * <a href="https://fonts.google.com/icons" class="external" target="_blank">Google Fonts</a>.
- *
- * ![Iconography image](https://developer.android.com/images/reference/androidx/compose/material/icons/iconography.png)
- *
- * There are five distinct icon themes: [Filled], [Outlined], [Rounded], [TwoTone], and [Sharp].
- * Each theme contains the same icons, but with a distinct visual style. You should typically
- * choose one theme and use it across your application for consistency. For example, you may want
- * to use a property or a typealias to refer to a specific theme, so it can be accessed in a
- * semantically meaningful way from inside other composables.
- *
- * @sample androidx.compose.material.icons.samples.AppIcons
- *
- * Icons maintain the same names defined by Material, but with their snake_case name converted to
- * PascalCase. For example: add_alarm becomes AddAlarm.
- *
- * Note: Icons that start with a number, such as `360`, are prefixed with a '_', becoming '_360'.
- *
- * To draw an icon, you can use an [androidx.compose.material.Icon]. This component applies tint
- * and provides layout size matching the icon.
- *
- * @sample androidx.compose.material.icons.samples.DrawIcon
- *
- * Note that only the most commonly used icons are provided by default. You can add a dependency on
- * androidx.compose.material:material-icons-extended to access every icon, but note that due to
- * the very large size of this dependency you should make sure to use R8 / ProGuard to remove
- * unused icons from your application.
- */
-object Icons {
-    /**
-     * [Filled icons](https://material.io/resources/icons/?style=baseline) (previously the only
-     * available theme, also known as the baseline theme) are the default icon theme. You can
-     * also use [Default] as an alias for these icons.
-     */
-    object Filled
-
-    /**
-     * [Outlined icons](https://material.io/resources/icons/?style=outline) make use of a thin
-     * stroke and empty space inside for a lighter appearance.
-     */
-    object Outlined
-
-    /**
-     * [Rounded icons](https://material.io/resources/icons/?style=round) use a corner radius that
-     * pairs well with brands that use heavier typography, curved logos, or circular elements to
-     * express their style.
-     */
-    object Rounded
-
-    /**
-     * [Two-Tone icons](https://material.io/resources/icons/?style=twotone) display corners with
-     * straight edges, for a crisp style that remains legible even at smaller scales. These
-     * rectangular shapes can support brand styles that are not well-reflected by rounded shapes.
-     */
-    object TwoTone
-
-    /**
-     * [Sharp icons](https://material.io/resources/icons/?style=sharp) display corners with
-     * straight edges, for a crisp style that remains legible even at smaller scales. These
-     * rectangular shapes can support brand styles that are not well-reflected by rounded shapes.
-     */
-    object Sharp
-
-    /**
-     * <a href="https://material.io/design/iconography/system-icons.html" class="external" target="_blank">Material Design system icons</a>
-     * as seen on
-     * <a href="https://fonts.google.com/icons" class="external" target="_blank">Google Fonts</a>.
-     *
-     * ![Iconography image](https://developer.android.com/images/reference/androidx/compose/material/icons/iconography.png)
-     *
-     * Languages such as Arabic and Hebrew are read from right-to-left (RTL). For RTL languages,
-     * some of the icons should be mirrored when their direction matches other UI elements in RTL
-     * mode.
-     * The [AutoMirrored] icons are a subset of [Icons] that will automatically mirror themselves
-     * when displayed in an RTL layout.
-     *
-     * See also
-     * <a href="https://developers.google.com/fonts/docs/material_icons#which_icons_should_be_mirrored_for_rtl" class="external" target="_blank">Icons in RTL</a>.
-     *
-     * There are five distinct icon themes: [AutoMirrored.Filled], [AutoMirrored.Outlined],
-     * [AutoMirrored.Rounded], [AutoMirrored.TwoTone], and [AutoMirrored.Sharp].
-     * Each theme contains the same icons, but with a distinct visual style. You should typically
-     * choose one theme and use it across your application for consistency. For example, you may
-     * want to use a property or a typealias to refer to a specific theme, so it can be accessed in
-     * a semantically meaningful way from inside other composables.
-     *
-     * Icons maintain the same names defined by Material, but with their snake_case name converted
-     * to PascalCase. For example: add_alarm becomes AddAlarm.
-     *
-     * Note: Icons that start with a number, such as `360`, are prefixed with a '_', becoming
-     * '_360'.
-     *
-     * To draw an icon, you can use an [androidx.compose.material.Icon]. This component applies tint
-     * and provides layout size matching the icon.
-     *
-     * @sample androidx.compose.material.icons.samples.AutoMirroredIcon
-     *
-     * Note that only the most commonly used icons are provided by default. You can add a dependency
-     * on androidx.compose.material:material-icons-extended to access every icon, but note that due
-     * to the very large size of this dependency you should make sure to use R8 / ProGuard to remove
-     * unused icons from your application.
-     */
-    object AutoMirrored {
-        /**
-         * [Filled icons](https://material.io/resources/icons/?style=baseline)are the default icon
-         * theme. You can also use [Default] as an alias for these icons.
-         */
-        object Filled
-
-        /**
-         * [Outlined icons](https://material.io/resources/icons/?style=outline) make use of a thin
-         * stroke and empty space inside for a lighter appearance.
-         */
-        object Outlined
-
-        /**
-         * [Rounded icons](https://material.io/resources/icons/?style=round) use a corner radius
-         * that pairs well with brands that use heavier typography, curved logos, or circular
-         * elements to express their style.
-         */
-        object Rounded
-
-        /**
-         * [Two-Tone icons](https://material.io/resources/icons/?style=twotone) display corners with
-         * straight edges, for a crisp style that remains legible even at smaller scales. These
-         * rectangular shapes can support brand styles that are not well-reflected by rounded
-         * shapes.
-         */
-        object TwoTone
-
-        /**
-         * [Sharp icons](https://material.io/resources/icons/?style=sharp) display corners with
-         * straight edges, for a crisp style that remains legible even at smaller scales. These
-         * rectangular shapes can support brand styles that are not well-reflected by rounded
-         * shapes.
-         */
-        object Sharp
-
-        /**
-         * Alias for [AutoMirrored.Filled], the baseline icon theme.
-         */
-        val Default = Filled
-    }
-
-    /**
-     * Alias for [Filled], the baseline icon theme.
-     */
-    val Default = Filled
-}
-
-/**
- * Utility delegate to construct a Material icon with default size information.
- * This is used by generated icons, and should not be used manually.
- *
- * @param name the full name of the generated icon
- * @param block builder lambda to add paths to this vector asset
- */
-@Deprecated(
-    "Maintained for binary compatibility. Use version with autoMirror instead.",
-    level = DeprecationLevel.HIDDEN
-)
-inline fun materialIcon(
-    name: String,
-    block: ImageVector.Builder.() -> ImageVector.Builder
-): ImageVector = materialIcon(name = name, autoMirror = false, block = block)
-
-/**
- * Utility delegate to construct a Material icon with default size information.
- * This is used by generated icons, and should not be used manually.
- *
- * @param name the full name of the generated icon
- * @param autoMirror determines if the vector asset should automatically be mirrored for right to
- * left locales
- * @param block builder lambda to add paths to this vector asset
- */
-inline fun materialIcon(
-    name: String,
-    autoMirror: Boolean = false,
-    block: ImageVector.Builder.() -> ImageVector.Builder
-): ImageVector = ImageVector.Builder(
-    name = name,
-    defaultWidth = MaterialIconDimension.dp,
-    defaultHeight = MaterialIconDimension.dp,
-    viewportWidth = MaterialIconDimension,
-    viewportHeight = MaterialIconDimension,
-    autoMirror = autoMirror
-).block().build()
-
-/**
- * Adds a vector path to this icon with Material defaults.
- *
- * @param fillAlpha fill alpha for this path
- * @param strokeAlpha stroke alpha for this path
- * @param pathFillType [PathFillType] for this path
- * @param pathBuilder builder lambda to add commands to this path
- */
-inline fun ImageVector.Builder.materialPath(
-    fillAlpha: Float = 1f,
-    strokeAlpha: Float = 1f,
-    pathFillType: PathFillType = DefaultFillType,
-    pathBuilder: PathBuilder.() -> Unit
-) =
-// TODO: b/146213225
-// Some of these defaults are already set when parsing from XML, but do not currently exist
-    // when added programmatically. We should unify these and simplify them where possible.
-    path(
-        fill = SolidColor(Color.Black),
-        fillAlpha = fillAlpha,
-        stroke = null,
-        strokeAlpha = strokeAlpha,
-        strokeLineWidth = 1f,
-        strokeLineCap = StrokeCap.Butt,
-        strokeLineJoin = StrokeJoin.Bevel,
-        strokeLineMiter = 1f,
-        pathFillType = pathFillType,
-        pathBuilder = pathBuilder
-    )
-
-// All Material icons (currently) are 24dp by 24dp, with a viewport size of 24 by 24.
-@PublishedApi
-internal const val MaterialIconDimension = 24f
diff --git a/compose/material/material-icons-core/src/commonMain/kotlin/androidx/compose/material/icons/compose-material-icons-documentation.md b/compose/material/material-icons-core/src/commonMain/kotlin/androidx/compose/material/icons/compose-material-icons-documentation.md
deleted file mode 100644
index b19061b..0000000
--- a/compose/material/material-icons-core/src/commonMain/kotlin/androidx/compose/material/icons/compose-material-icons-documentation.md
+++ /dev/null
@@ -1,44 +0,0 @@
-# Module root
-
-Compose Material Icons
-
-# Package androidx.compose.material.icons
-
-This is the entry point for using Material Icons in Compose, designed to provide icons that match those described at <a href="https://fonts.google.com/icons" class="external" target="_blank">fonts.google.com/icons</a>.
-
-![Icons image](https://developer.android.com/images/reference/androidx/compose/material/icons/iconography.png)
-
-In this page, you'll find documentation for types, properties, and functions available in the `androidx.compose.material.icons` package.
-
-The most commonly used set of Material icons are provided by `androidx.compose.material:material-icons-core` - this library is also provided as an API dependency by `androidx.compose.material:material`.
-
-A separate library, `androidx.compose.material:material-icons-extended`, contains the full set of Material icons. Due to the very large size of this library, make sure to use R8/Proguard to strip unused icons if you are including this library as a direct dependency. Alternatively you can make a local copy (by copy and pasting) the icon(s) you wish to keep, or using Android Studio's 'Import vector asset' feature.
-
-## Overview
-
-### System icons
-
-<a href="https://material.io/design/iconography/system-icons.html" class="external" target="_blank">System icons</a> symbolize common actions, files, devices, and directories.
-
-|      | **APIs** | **Description** | **Preview** |
-| ---- | -------- | --------------- | :---------: |
-| **Icons** | [Icons] | Icons | |
-| **Default** | [Icons.Default] | Default icons | ![Default icon image](https://developer.android.com/images/reference/androidx/compose/material/icons/icon-filled.svg) |
-| **Filled** | [Icons.Filled] | Filled icons | ![Filled icon image](https://developer.android.com/images/reference/androidx/compose/material/icons/icon-filled.svg) |
-| **Outlined** | [Icons.Outlined] | Outlined icons | ![Outlined icon image](https://developer.android.com/images/reference/androidx/compose/material/icons/icon-outlined.svg) |
-| **Rounded** | [Icons.Rounded] | Rounded icons | ![Rounded icon image](https://developer.android.com/images/reference/androidx/compose/material/icons/icon-rounded.svg) |
-| **Two tone** | [Icons.TwoTone] | Two tone icons | ![Two tone icon image](https://developer.android.com/images/reference/androidx/compose/material/icons/icon-two-tone.svg) |
-| **Sharp** | [Icons.Sharp] | Sharp icons | ![Sharp icon image](https://developer.android.com/images/reference/androidx/compose/material/icons/icon-sharp.svg) |
-
-**Note:** [Icons.Default] is an alias for [Icons.Filled].
-
-### Related components
-
-|      | **APIs** | **Description** |
-| ---- | -------- | --------------- |
-| **Icon** | [androidx.compose.material.Icon] | Icon |
-|  | [androidx.compose.material3.Icon] | M3 icon |
-| **Icon button** | [androidx.compose.material.IconButton] | Icon button |
-|  | [androidx.compose.material3.IconButton] | M3 icon button |
-| **Icon toggle button** | [androidx.compose.material.IconToggleButton] | Icon toggle button |
-|  | [androidx.compose.material3.IconToggleButton] | M3 icon toggle button |
diff --git a/compose/material/material-icons-extended/build.gradle b/compose/material/material-icons-extended/build.gradle
deleted file mode 100644
index 01a08c0..0000000
--- a/compose/material/material-icons-extended/build.gradle
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/**
- * This file was created using the `create_project.py` script located in the
- * `<AndroidX root>/development/project-creator` directory.
- *
- * Please use that script when creating a new project, rather than copying an existing project and
- * modifying its settings.
- */
-import androidx.build.LibraryType
-import androidx.build.PlatformIdentifier
-import androidx.build.RunApiTasks
-import androidx.compose.material.icons.generator.tasks.IconGenerationTask
-
-plugins {
-    id("AndroidXPlugin")
-    id("com.android.library")
-    id("AndroidXComposePlugin")
-}
-
-IconGenerationTask.registerExtendedIconMainProject(
-        project,
-        android
-)
-
-androidXMultiplatform {
-    android()
-    desktop()
-
-    defaultPlatform(PlatformIdentifier.ANDROID)
-
-    sourceSets {
-        commonMain {
-            dependencies {
-                api(project(":compose:material:material-icons-core"))
-                implementation(libs.kotlinStdlibCommon)
-            }
-        }
-
-        commonTest {
-            dependencies {
-            }
-        }
-
-        jvmMain {
-            dependsOn(commonMain)
-            dependencies {
-            }
-        }
-
-        skikoMain {
-            dependsOn(commonMain)
-            dependencies {
-            }
-        }
-
-        androidMain {
-            dependsOn(jvmMain)
-            dependencies {
-            }
-        }
-
-        desktopMain {
-            dependsOn(skikoMain)
-            dependsOn(jvmMain)
-            dependencies {
-            }
-        }
-
-        jvmTest {
-            dependsOn(commonTest)
-            dependencies {
-            }
-        }
-
-        androidInstrumentedTest {
-            dependsOn(jvmTest)
-            dependencies {
-                implementation("androidx.compose.foundation:foundation:1.6.0")
-                implementation("androidx.compose.foundation:foundation-layout:1.6.0")
-                implementation("androidx.compose.ui:ui:1.6.0")
-                implementation(project(":test:screenshot:screenshot"))
-                implementation(project(":compose:ui:ui-test-junit4"))
-                implementation(project(":compose:test-utils"))
-                implementation("androidx.activity:activity-compose:1.3.1")
-
-                implementation(libs.testRules)
-                implementation(libs.testRunner)
-                implementation(libs.junit)
-                implementation(libs.kotlinReflect)
-                implementation(libs.truth)
-            }
-        }
-
-        androidUnitTest {
-            dependsOn(jvmTest)
-            dependencies {
-            }
-        }
-
-        desktopTest {
-            dependsOn(jvmTest)
-            dependencies {
-            }
-        }
-    }
-}
-
-IconGenerationTask.registerExtendedIconThemeProject(project, android)
-
-androidx {
-    name = "Compose Material Icons Extended"
-    type = LibraryType.PUBLISHED_LIBRARY_ONLY_USED_BY_KOTLIN_CONSUMERS
-    mavenVersion = LibraryVersions.COMPOSE
-    // This module has a large number (5000+) of generated source files and so doc generation /
-    // API tracking will simply take too long
-    runApiTasks = new RunApiTasks.No("Five thousand generated source files")
-    inceptionYear = "2020"
-    description = "Compose Material Design extended icons. This module contains all Material icons. It is a very large dependency and should not be included directly."
-}
-
-android {
-    namespace "androidx.compose.material.icons.extended"
-}
-
-afterEvaluate {
-    // Workaround for b/337776938
-    if (!project.hasProperty("android.injected.invoked.from.ide")) {
-        tasks.named("lintAnalyzeDebugAndroidTest").configure {
-            it.dependsOn("generateTestFilesDebugAndroidTest")
-        }
-        tasks.named("generateDebugAndroidTestLintModel").configure {
-            it.dependsOn("generateTestFilesDebugAndroidTest")
-        }
-    }
-}
diff --git a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/BaseIconComparisonTest.kt b/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/BaseIconComparisonTest.kt
deleted file mode 100644
index f97de49..0000000
--- a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/BaseIconComparisonTest.kt
+++ /dev/null
@@ -1,321 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons
-
-import android.graphics.Bitmap
-import android.os.Build
-import android.view.View
-import androidx.activity.ComponentActivity
-import androidx.activity.compose.setContent
-import androidx.compose.foundation.layout.Box
-import androidx.compose.foundation.layout.Row
-import androidx.compose.foundation.layout.size
-import androidx.compose.runtime.Composable
-import androidx.compose.runtime.CompositionLocalProvider
-import androidx.compose.ui.Alignment
-import androidx.compose.ui.Modifier
-import androidx.compose.ui.draw.paint
-import androidx.compose.ui.graphics.Color
-import androidx.compose.ui.graphics.ColorFilter
-import androidx.compose.ui.graphics.asAndroidBitmap
-import androidx.compose.ui.graphics.vector.ImageVector
-import androidx.compose.ui.graphics.vector.VectorGroup
-import androidx.compose.ui.graphics.vector.VectorPath
-import androidx.compose.ui.graphics.vector.rememberVectorPainter
-import androidx.compose.ui.platform.LocalContext
-import androidx.compose.ui.platform.LocalDensity
-import androidx.compose.ui.platform.LocalLayoutDirection
-import androidx.compose.ui.platform.testTag
-import androidx.compose.ui.res.vectorResource
-import androidx.compose.ui.test.captureToImage
-import androidx.compose.ui.test.junit4.createAndroidComposeRule
-import androidx.compose.ui.test.onNodeWithTag
-import androidx.compose.ui.unit.LayoutDirection
-import androidx.test.filters.SdkSuppress
-import androidx.test.screenshot.matchers.MSSIMMatcher
-import com.google.common.truth.Truth
-import kotlin.reflect.KProperty0
-import kotlin.reflect.jvm.javaGetter
-import org.junit.Rule
-
-const val ProgrammaticTestTag = "programmatic"
-const val ProgrammaticRtlTestTag = "programmatic_rtl"
-const val XmlTestTag = "Xml"
-const val XmlRtlTestTag = "Xml_rtl"
-
-/**
- * Base class for Material [androidx.compose.material.icons.Icons] tests.
- */
-@SdkSuppress(minSdkVersion = Build.VERSION_CODES.O)
-abstract class BaseIconComparisonTest {
-
-    @get:Rule
-    val rule = createAndroidComposeRule<ComponentActivity>()
-
-    private val matcher = MSSIMMatcher(threshold = 0.99)
-
-    fun compareImageVectors(iconSublist: List<Pair<KProperty0<ImageVector>, String>>) {
-        iconSublist.forEach { (property, drawableName) ->
-            var xmlVector: ImageVector? = null
-            val programmaticVector = property.get()
-
-            rule.activityRule.scenario.onActivity {
-                it.setContent {
-                    xmlVector = drawableName.toImageVector()
-                    DrawVectors(programmaticVector, xmlVector!!)
-                }
-            }
-
-            rule.waitForIdle()
-
-            val iconName = property.javaGetter!!.declaringClass.canonicalName!!
-
-            // The XML inflated ImageVector doesn't have a name, and we set a name in the
-            // programmatic ImageVector. This doesn't affect how the ImageVector is drawn, so we
-            // make sure the names match so the comparison does not fail.
-            // Also, match the autoMirror value of the XML vector to that of the programmatic
-            // ImageVector. The set of icons that are passed into the test includes deprecated icons
-            // that were generated from the same set of XML vectors used to create the auto-mirrored
-            // icons. These XMLs have an `autoMirrored` attribute where applicable, so with this
-            // copy we specifically ensure that the XML flag is turned off when compared to
-            // deprecated icons that were generated while ignoring the flag for backward
-            // compatibility.
-            xmlVector = xmlVector!!.copy(
-                name = programmaticVector.name,
-                autoMirror = programmaticVector.autoMirror
-            )
-
-            assertImageVectorsAreEqual(xmlVector!!, programmaticVector, iconName)
-
-            matcher.assertBitmapsAreEqual(
-                rule.onNodeWithTag(XmlTestTag).captureToImage().asAndroidBitmap(),
-                rule.onNodeWithTag(ProgrammaticTestTag).captureToImage().asAndroidBitmap(),
-                iconName
-            )
-
-            if (programmaticVector.autoMirror) {
-                matcher.assertBitmapsAreEqual(
-                    rule.onNodeWithTag(XmlRtlTestTag).captureToImage().asAndroidBitmap(),
-                    rule.onNodeWithTag(ProgrammaticRtlTestTag).captureToImage().asAndroidBitmap(),
-                    iconName
-                )
-            }
-
-            // Dispose between composing each pair of icons to ensure correctness
-            rule.activityRule.scenario.onActivity {
-                it.setContentView(View(it))
-            }
-        }
-    }
-}
-
-/**
- * Helper method to copy the existing [ImageVector] modifying the name
- * for use in equality checks.
- */
-private fun ImageVector.copy(name: String, autoMirror: Boolean): ImageVector {
-    val builder = ImageVector.Builder(
-        name,
-        defaultWidth,
-        defaultHeight,
-        viewportWidth,
-        viewportHeight,
-        tintColor,
-        tintBlendMode,
-        autoMirror
-    )
-    val root = this.root
-    // Stack of vector groups and current child index being traversed
-    val stack = ArrayList<Pair<Int, VectorGroup>>()
-    stack.add(Pair(0, root))
-
-    while (!stack.isEmpty()) {
-        val current = stack[stack.size - 1]
-        var currentIndex = current.first
-        var currentGroup = current.second
-        while (currentIndex < currentGroup.size) {
-            val vectorNode = currentGroup[currentIndex]
-            when (vectorNode) {
-                is VectorGroup -> {
-                    // keep track of the current index to continue parsing groups
-                    // when we eventually "pop" the stack of groups
-                    stack.add(Pair(currentIndex + 1, currentGroup))
-                    builder.addGroup(
-                        name = vectorNode.name,
-                        rotate = vectorNode.rotation,
-                        pivotX = vectorNode.pivotX,
-                        pivotY = vectorNode.pivotY,
-                        scaleX = vectorNode.scaleX,
-                        scaleY = vectorNode.scaleY,
-                        translationX = vectorNode.translationX,
-                        translationY = vectorNode.translationY,
-                        clipPathData = vectorNode.clipPathData
-                    )
-                    currentGroup = vectorNode
-                    currentIndex = 0
-                }
-
-                is VectorPath -> {
-                    builder.addPath(
-                        name = vectorNode.name,
-                        pathData = vectorNode.pathData,
-                        pathFillType = vectorNode.pathFillType,
-                        fill = vectorNode.fill,
-                        fillAlpha = vectorNode.fillAlpha,
-                        stroke = vectorNode.stroke,
-                        strokeAlpha = vectorNode.strokeAlpha,
-                        strokeLineWidth = vectorNode.strokeLineWidth,
-                        strokeLineCap = vectorNode.strokeLineCap,
-                        strokeLineJoin = vectorNode.strokeLineJoin,
-                        strokeLineMiter = vectorNode.strokeLineMiter,
-                        trimPathStart = vectorNode.trimPathStart,
-                        trimPathEnd = vectorNode.trimPathEnd,
-                        trimPathOffset = vectorNode.trimPathOffset
-                    )
-                }
-            }
-            currentIndex++
-        }
-        // "pop" the most recent group after we have examined each of the children
-        stack.removeAt(stack.size - 1)
-    }
-    return builder.build()
-}
-
-/**
- * @return the [ImageVector] matching the drawable with [this] name.
- */
-@Composable
-private fun String.toImageVector(): ImageVector {
-    val context = LocalContext.current
-    val resId = context.resources.getIdentifier(this, "drawable", context.packageName)
-    return ImageVector.vectorResource(resId)
-}
-
-/**
- * Compares two [ImageVector]s and ensures that they are deeply equal, comparing all children
- * recursively.
- */
-private fun assertImageVectorsAreEqual(
-    xmlVector: ImageVector,
-    programmaticVector: ImageVector,
-    iconName: String
-) {
-    try {
-        Truth.assertThat(programmaticVector).isEqualTo(xmlVector)
-    } catch (e: AssertionError) {
-        val message = "ImageVector comparison failed for $iconName\n" + e.localizedMessage
-        throw AssertionError(message, e)
-    }
-}
-
-/**
- * Compares each pixel in two bitmaps, asserting they are equal.
- */
-private fun MSSIMMatcher.assertBitmapsAreEqual(
-    xmlBitmap: Bitmap,
-    programmaticBitmap: Bitmap,
-    iconName: String
-) {
-    try {
-        Truth.assertThat(programmaticBitmap.width).isEqualTo(xmlBitmap.width)
-        Truth.assertThat(programmaticBitmap.height).isEqualTo(xmlBitmap.height)
-    } catch (e: AssertionError) {
-        val message = "Bitmap comparison failed for $iconName\n" + e.localizedMessage
-        throw AssertionError(message, e)
-    }
-
-    val xmlPixelArray = with(xmlBitmap) {
-        val pixels = IntArray(width * height)
-        getPixels(pixels, 0, width, 0, 0, width, height)
-        pixels
-    }
-
-    val programmaticPixelArray = with(programmaticBitmap) {
-        val pixels = IntArray(width * height)
-        getPixels(pixels, 0, width, 0, 0, width, height)
-        pixels
-    }
-
-    val result = this.compareBitmaps(
-        xmlPixelArray, programmaticPixelArray,
-        programmaticBitmap.width, programmaticBitmap.height
-    )
-
-    if (!result.matches) {
-        throw AssertionError(
-            "Bitmap comparison failed for $iconName, stats: " +
-                "${result.comparisonStatistics}\n"
-        )
-    }
-}
-
-/**
- * Renders both vectors in a column using the corresponding [ProgrammaticTestTag] and
- * [XmlTestTag] for [programmaticVector] and [xmlVector].
- */
-@Composable
-private fun DrawVectors(programmaticVector: ImageVector, xmlVector: ImageVector) {
-    Box {
-        // Ideally these icons would be 24 dp, but due to density changes across devices we test
-        // against in CI, on some devices using DP here causes there to be anti-aliasing issues.
-        // Using ipx directly ensures that we will always have a consistent layout / drawing
-        // story, so anti-aliasing should be identical.
-        val layoutSize = with(LocalDensity.current) {
-            Modifier.size(72.toDp())
-        }
-        Row(Modifier.align(Alignment.Center)) {
-            Box(
-                modifier = layoutSize
-                    .paint(
-                        rememberVectorPainter(programmaticVector),
-                        colorFilter = ColorFilter.tint(Color.Red)
-                    )
-                    .testTag(ProgrammaticTestTag)
-            )
-            Box(
-                modifier = layoutSize
-                    .paint(
-                        rememberVectorPainter(xmlVector),
-                        colorFilter = ColorFilter.tint(Color.Red)
-                    )
-                    .testTag(XmlTestTag)
-            )
-            if (programmaticVector.autoMirror) {
-                // Compose in RTL.
-                CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Rtl) {
-                    Box(
-                        modifier = layoutSize
-                            .paint(
-                                rememberVectorPainter(programmaticVector),
-                                colorFilter = ColorFilter.tint(Color.Red)
-                            )
-                            .testTag(ProgrammaticRtlTestTag)
-                    )
-                    Box(
-                        modifier = layoutSize
-                            .paint(
-                                rememberVectorPainter(xmlVector),
-                                colorFilter = ColorFilter.tint(Color.Red)
-                            )
-                            .testTag(XmlRtlTestTag)
-                    )
-                }
-            }
-        }
-    }
-}
diff --git a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/CoreAutoMirroredIconComparisonTest.kt b/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/CoreAutoMirroredIconComparisonTest.kt
deleted file mode 100644
index 5ccf3bf..0000000
--- a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/CoreAutoMirroredIconComparisonTest.kt
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright 2023 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons
-
-import android.os.Build
-import androidx.compose.ui.graphics.vector.ImageVector
-import androidx.test.filters.LargeTest
-import androidx.test.filters.SdkSuppress
-import kotlin.reflect.KProperty0
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.junit.runners.Parameterized
-
-/**
- * Test to ensure equality (both structurally, and visually) between programmatically generated core
- * Material [androidx.compose.material.icons.Icons.AutoMirrored] and their XML source.
- */
-@Suppress("unused")
-@SdkSuppress(minSdkVersion = Build.VERSION_CODES.O)
-@LargeTest
-@RunWith(Parameterized::class)
-class CoreAutoMirroredIconComparisonTest(
-    private val iconSublist: List<Pair<KProperty0<ImageVector>, String>>,
-    private val debugParameterName: String
-) : BaseIconComparisonTest() {
-
-    companion object {
-
-        @JvmStatic
-        @Parameterized.Parameters(name = "{1}")
-        fun initIconSublist(): Array<Array<Any>> {
-            return arrayOf(arrayOf(AllCoreAutoMirroredIcons, "1 of 1"))
-        }
-    }
-
-    @Test
-    fun compareImageVectors() {
-        compareImageVectors(iconSublist)
-    }
-}
diff --git a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/CoreIconComparisonTest.kt b/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/CoreIconComparisonTest.kt
deleted file mode 100644
index 4e4c5c86..0000000
--- a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/CoreIconComparisonTest.kt
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright 2023 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons
-
-import android.os.Build
-import androidx.compose.ui.graphics.vector.ImageVector
-import androidx.test.filters.LargeTest
-import androidx.test.filters.SdkSuppress
-import kotlin.math.ceil
-import kotlin.math.roundToInt
-import kotlin.reflect.KProperty0
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.junit.runners.Parameterized
-
-/**
- * Test to ensure equality (both structurally, and visually) between programmatically generated core
- * Material [androidx.compose.material.icons.Icons] and their XML source.
- */
-@Suppress("unused")
-@SdkSuppress(minSdkVersion = Build.VERSION_CODES.O)
-@LargeTest
-@RunWith(Parameterized::class)
-class CoreIconComparisonTest(
-    private val iconSublist: List<Pair<KProperty0<ImageVector>, String>>,
-    private val debugParameterName: String
-) : BaseIconComparisonTest() {
-
-    companion object {
-        /**
-         * Arbitrarily split [AllCoreIcons] into equal parts. This is needed as one test with the
-         * whole of [AllCoreIcons] will exceed the timeout allowed for a test in CI, so we split it
-         * up to stay under the limit.
-         *
-         * Additionally, we run large batches of comparisons per method, instead of one icon per
-         * method, so that we can re-use the same Activity instance between test runs. Most of the
-         * cost of a simple test like this is in Activity instantiation so re-using the same
-         * activity reduces time to run this test ~tenfold.
-         */
-        @JvmStatic
-        @Parameterized.Parameters(name = "{1}")
-        fun initIconSublist(): Array<Array<Any>> {
-            val numberOfChunks = 4
-            val listSize = ceil(AllCoreIcons.size / numberOfChunks.toFloat()).roundToInt()
-            val subLists = AllCoreIcons.chunked(listSize)
-            return subLists.mapIndexed { index, list ->
-                arrayOf(list, "${index + 1} of $numberOfChunks")
-            }.toTypedArray()
-        }
-    }
-
-    @Test
-    fun compareImageVectors() {
-        compareImageVectors(iconSublist)
-    }
-}
diff --git a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/ExtendedAutoMirroredIconComparisonTest.kt b/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/ExtendedAutoMirroredIconComparisonTest.kt
deleted file mode 100644
index 38d07e5..0000000
--- a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/ExtendedAutoMirroredIconComparisonTest.kt
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Copyright 2023 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons
-
-import android.os.Build
-import androidx.compose.ui.graphics.vector.ImageVector
-import androidx.test.filters.LargeTest
-import androidx.test.filters.SdkSuppress
-import kotlin.math.ceil
-import kotlin.math.roundToInt
-import kotlin.reflect.KProperty0
-import org.junit.Ignore
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.junit.runners.Parameterized
-
-/**
- * Test to ensure equality (both structurally, and visually) between programmatically generated
- * extended Material [androidx.compose.material.icons.Icons.AutoMirrored] and their XML source.
- */
-@Suppress("unused")
-@SdkSuppress(minSdkVersion = Build.VERSION_CODES.O)
-@LargeTest
-@RunWith(Parameterized::class)
-class ExtendedAutoMirroredIconComparisonTest(
-    private val iconSublist: List<Pair<KProperty0<ImageVector>, String>>,
-    private val debugParameterName: String
-) : BaseIconComparisonTest() {
-
-    companion object {
-        /**
-         * Arbitrarily split [AllExtendedAutoMirroredIcons] into equal parts. This is needed as one
-         * test with the whole of [AllExtendedAutoMirroredIcons] will exceed the timeout allowed for
-         * a test in CI, so we split it up to stay under the limit.
-         *
-         * Additionally, we run large batches of comparisons per method, instead of one icon per
-         * method, so that we can re-use the same Activity instance between test runs. Most of the
-         * cost of a simple test like this is in Activity instantiation so re-using the same
-         * activity reduces time to run this test ~tenfold.
-         */
-        @JvmStatic
-        @Parameterized.Parameters(name = "{1}")
-        fun initIconSublist(): Array<Array<Any>> {
-            val numberOfChunks = 4
-            val listSize =
-                ceil(AllExtendedAutoMirroredIcons.size / numberOfChunks.toFloat()).roundToInt()
-            val subLists = AllExtendedAutoMirroredIcons.chunked(listSize)
-            return subLists.mapIndexed { index, list ->
-                arrayOf(list, "${index + 1} of $numberOfChunks")
-            }.toTypedArray()
-        }
-    }
-
-    @Ignore(
-        "For performance reasons, and to be able to disable the extended icons tests on " +
-            "AOSP. Make sure to execute locally after updating the extended Material icons."
-    )
-    @Test
-    fun compareImageVectors() {
-        compareImageVectors(iconSublist)
-    }
-}
diff --git a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/ExtendedIconComparisonTest.kt b/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/ExtendedIconComparisonTest.kt
deleted file mode 100644
index c7dff96..0000000
--- a/compose/material/material-icons-extended/src/androidInstrumentedTest/kotlin/androidx/compose/material/icons/ExtendedIconComparisonTest.kt
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright 2023 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons
-
-import android.os.Build
-import androidx.compose.ui.graphics.vector.ImageVector
-import androidx.test.filters.LargeTest
-import androidx.test.filters.SdkSuppress
-import kotlin.math.ceil
-import kotlin.math.roundToInt
-import kotlin.reflect.KProperty0
-import org.junit.Ignore
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.junit.runners.Parameterized
-
-/**
- * Test to ensure equality (both structurally, and visually) between programmatically generated
- * extended Material [androidx.compose.material.icons.Icons] and their XML source.
- */
-@Suppress("unused")
-@SdkSuppress(minSdkVersion = Build.VERSION_CODES.O)
-@LargeTest
-@RunWith(Parameterized::class)
-class ExtendedIconComparisonTest(
-    private val iconSublist: List<Pair<KProperty0<ImageVector>, String>>,
-    private val debugParameterName: String
-) : BaseIconComparisonTest() {
-
-    companion object {
-        /**
-         * Arbitrarily split [AllExtendedIcons] into equal parts. This is needed as one test with
-         * the whole of [AllExtendedIcons] will exceed the timeout allowed for a test in CI, so we
-         * split it up to stay under the limit.
-         *
-         * Additionally, we run large batches of comparisons per method, instead of one icon per
-         * method, so that we can re-use the same Activity instance between test runs. Most of the
-         * cost of a simple test like this is in Activity instantiation so re-using the same
-         * activity reduces time to run this test ~tenfold.
-         */
-        @JvmStatic
-        @Parameterized.Parameters(name = "{1}")
-        fun initIconSublist(): Array<Array<Any>> {
-            val numberOfChunks = 6
-            val listSize = ceil(AllExtendedIcons.size / numberOfChunks.toFloat()).roundToInt()
-            val subLists = AllExtendedIcons.chunked(listSize)
-            return subLists.mapIndexed { index, list ->
-                arrayOf(list, "${index + 1} of $numberOfChunks")
-            }.toTypedArray()
-        }
-    }
-
-    @Ignore(
-        "For performance reasons, and to be able to disable the extended icons tests on " +
-            "AOSP. Make sure to execute locally after updating the extended Material icons."
-    )
-    @Test
-    fun compareImageVectors() {
-        compareImageVectors(iconSublist)
-    }
-}
diff --git a/compose/material/material/build.gradle b/compose/material/material/build.gradle
index 31c1ece..3415437 100644
--- a/compose/material/material/build.gradle
+++ b/compose/material/material/build.gradle
@@ -43,7 +43,7 @@
                 api("androidx.compose.animation:animation-core:1.6.0")
                 api(project(":compose:foundation:foundation"))
                 api(project(":compose:ui:ui-text"))
-                api(project(":compose:material:material-icons-core"))
+                api("androidx.compose.material:material-icons-core:1.6.7")
                 api(project(":compose:material:material-ripple"))
                 api(project(":compose:runtime:runtime"))
                 api("androidx.compose.ui:ui:1.6.0")
diff --git a/compose/material/material/icons/README.md b/compose/material/material/icons/README.md
deleted file mode 100644
index a561f99..0000000
--- a/compose/material/material/icons/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Material Iconography
-
-## Modules / components
-Material iconography is split across these modules:
-
- 1. The `generator` module, in `generator/` - this module processes and generates Kotlin source files as part of the build step of the other modules. This module is not shipped as an artifact, and caches its outputs based on the input icons (found in `generator/raw-icons`).
- 2. `material-icons-core` , in `core/` - this module contains _core_ icons, the set of most-commonly-used icons used by applications, including the icons that are required by Material components themselves, such as the menu icon. This module is fairly small and is depended on by `material`.
- 3. `material-icons-extended`, in `extended/` - this module contains every icon that is not in `material-icons-core`, and has a transitive `api` dependency on `material-icons-core`, so depending on this module will provide every single Material icon (over 5000 at the time of writing). Due to the excessive size of this module, this module should ***NOT*** be included as a direct dependency of any other library, and should only be used if Proguard / R8 is enabled.
-
-## Icon Generation
-
-Generation is split into a few distinct steps:
-
-1. Icons are downloaded (manually) using the Google Fonts API, using the script in the `generator` module. This downloads vector drawables for every single Material icon to the `raw-icons` folder.
-2. During compilation of the core and extended modules, these icons are processed to remove theme attributes that we cannot generate code for, checked to ensure that all icons exist in all themes, and then an API tracking file similar to API files in other modules is generated. This API file tracks what icons we have processed / will generate code, and the build will fail at this point if there are differences between the checked in API file and the generated API file.
-3. Once these icons are processed, we then parse each file, create a Vector-like representation, and convert this to `VectorAssetBuilder` commands that during run time will create a matching source code representation of this XML file. We then write this generated Kotlin file to the output directory, where it will be compiled as part of the `core` / `extended` module's source code, as if it was manually written and checked in. Each XML file creates a corresponding Kotlin file, containing a `by lazy` property representing that icon. For more information on using the generated icons, see `androidx.compose.material.icons.Icons`.
-
-## Adding new icons
-To add new icons, simply use the icon downloading script at `generator/download_material_icons.py`, run any Gradle command that will trigger compilation of the icon modules (such as `./gradlew buildOnServer`), and follow the message in the build failure asking to confirm API changes by updating the API tracking file.
-
-## Icon Testing
-1. Similar to how we generate Kotlin source for each icon, we also generate a 'testing manifest' that contains a list of all the source drawables, matched to their generated code representations. This allows us to run screenshot comparison tests (`CoreIconComparisonTest`, and `ExtendedIconComparisonTest`) that compare each pixel of the generated and source drawables, to ensure we generated the correct code, and that any changes in parsing logic that causes inconsistencies with our generation logic is caught in CI.
-2. Note that, for performance reasons, the `ExtendedIconComparisonTest` is marked with `@Ignore` and will not run on a regular test execution. **It's important to run this test locally after every icons update**.
-
-## Useful files
-
- - `generator/download_material_icons.py` - script to download icons from Google Fonts API
- - `IconGenerationTask` - base Gradle task for generating icons / associated testing resources as part of the build. See subclasses for specific task logic.
- - `IconProcessor` - processes raw XML files in `generator/raw-icons`, creates a list of all icons that we will generate source for and ensures the API surface of these icons has not changed. (We do not run Metalava (or lint) on the extended module due to the extreme size of the module (5000+ source files) - running Metalava here would take hours.)
- - `IconParser` - simple XML parser that parses the processed XML files into Vector representations.
- - `VectorAssetGenerator` - converts icons parsed by `IconParser` into Kotlin source files that represent the icon.
diff --git a/compose/material/material/icons/generator/api/automirrored_icons.txt b/compose/material/material/icons/generator/api/automirrored_icons.txt
deleted file mode 100644
index 5b90c3f..0000000
--- a/compose/material/material/icons/generator/api/automirrored_icons.txt
+++ /dev/null
@@ -1,725 +0,0 @@
-Filled.Accessible
-Filled.AccessibleForward
-Filled.AddToHomeScreen
-Filled.AirplaneTicket
-Filled.AlignHorizontalLeft
-Filled.AlignHorizontalRight
-Filled.AltRoute
-Filled.Announcement
-Filled.ArrowBack
-Filled.ArrowBackIos
-Filled.ArrowForward
-Filled.ArrowForwardIos
-Filled.ArrowLeft
-Filled.ArrowRight
-Filled.ArrowRightAlt
-Filled.Article
-Filled.Assignment
-Filled.AssignmentReturn
-Filled.AssistantDirection
-Filled.Backspace
-Filled.BatteryUnknown
-Filled.BluetoothSearching
-Filled.BrandingWatermark
-Filled.CallMade
-Filled.CallMerge
-Filled.CallMissed
-Filled.CallMissedOutgoing
-Filled.CallReceived
-Filled.CallSplit
-Filled.Chat
-Filled.ChromeReaderMode
-Filled.Comment
-Filled.CompareArrows
-Filled.ContactSupport
-Filled.DirectionsBike
-Filled.DirectionsRun
-Filled.DirectionsWalk
-Filled.DriveFileMove
-Filled.Dvr
-Filled.EventNote
-Filled.ExitToApp
-Filled.FactCheck
-Filled.FeaturedPlayList
-Filled.FeaturedVideo
-Filled.Feed
-Filled.FollowTheSigns
-Filled.FormatAlignLeft
-Filled.FormatAlignRight
-Filled.FormatIndentDecrease
-Filled.FormatIndentIncrease
-Filled.FormatListBulleted
-Filled.FormatTextdirectionLToR
-Filled.FormatTextdirectionRToL
-Filled.Forward
-Filled.ForwardToInbox
-Filled.Grading
-Filled.Help
-Filled.HelpCenter
-Filled.HelpOutline
-Filled.Input
-Filled.InsertComment
-Filled.InsertDriveFile
-Filled.KeyboardArrowLeft
-Filled.KeyboardArrowRight
-Filled.KeyboardBackspace
-Filled.KeyboardReturn
-Filled.KeyboardTab
-Filled.Label
-Filled.LabelImportant
-Filled.LabelOff
-Filled.LastPage
-Filled.Launch
-Filled.LibraryBooks
-Filled.List
-Filled.ListAlt
-Filled.LiveHelp
-Filled.Login
-Filled.Logout
-Filled.ManageSearch
-Filled.MenuBook
-Filled.MenuOpen
-Filled.MergeType
-Filled.Message
-Filled.MissedVideoCall
-Filled.MobileScreenShare
-Filled.More
-Filled.MultilineChart
-Filled.NavigateBefore
-Filled.NavigateNext
-Filled.NextPlan
-Filled.NextWeek
-Filled.NotListedLocation
-Filled.Note
-Filled.NoteAdd
-Filled.Notes
-Filled.OfflineShare
-Filled.OpenInNew
-Filled.Outbound
-Filled.PhoneCallback
-Filled.PhoneForwarded
-Filled.PhoneMissed
-Filled.PlaylistAdd
-Filled.PlaylistAddCheck
-Filled.PlaylistPlay
-Filled.QueueMusic
-Filled.ReadMore
-Filled.ReceiptLong
-Filled.Redo
-Filled.Reply
-Filled.ReplyAll
-Filled.RotateLeft
-Filled.RotateRight
-Filled.Rtt
-Filled.Rule
-Filled.ScheduleSend
-Filled.ScreenShare
-Filled.Segment
-Filled.Send
-Filled.SendAndArchive
-Filled.SendToMobile
-Filled.ShortText
-Filled.Shortcut
-Filled.ShowChart
-Filled.Sort
-Filled.SpeakerNotes
-Filled.StarHalf
-Filled.StickyNote2
-Filled.StopScreenShare
-Filled.Subject
-Filled.TextSnippet
-Filled.Toc
-Filled.TrendingDown
-Filled.TrendingFlat
-Filled.TrendingUp
-Filled.Undo
-Filled.ViewList
-Filled.ViewQuilt
-Filled.ViewSidebar
-Filled.VolumeDown
-Filled.VolumeMute
-Filled.VolumeOff
-Filled.VolumeUp
-Filled.WrapText
-Filled.Wysiwyg
-Filled._360
-Outlined.Accessible
-Outlined.AccessibleForward
-Outlined.AddToHomeScreen
-Outlined.AirplaneTicket
-Outlined.AlignHorizontalLeft
-Outlined.AlignHorizontalRight
-Outlined.AltRoute
-Outlined.Announcement
-Outlined.ArrowBack
-Outlined.ArrowBackIos
-Outlined.ArrowForward
-Outlined.ArrowForwardIos
-Outlined.ArrowLeft
-Outlined.ArrowRight
-Outlined.ArrowRightAlt
-Outlined.Article
-Outlined.Assignment
-Outlined.AssignmentReturn
-Outlined.AssistantDirection
-Outlined.Backspace
-Outlined.BatteryUnknown
-Outlined.BluetoothSearching
-Outlined.BrandingWatermark
-Outlined.CallMade
-Outlined.CallMerge
-Outlined.CallMissed
-Outlined.CallMissedOutgoing
-Outlined.CallReceived
-Outlined.CallSplit
-Outlined.Chat
-Outlined.ChromeReaderMode
-Outlined.Comment
-Outlined.CompareArrows
-Outlined.ContactSupport
-Outlined.DirectionsBike
-Outlined.DirectionsRun
-Outlined.DirectionsWalk
-Outlined.DriveFileMove
-Outlined.Dvr
-Outlined.EventNote
-Outlined.ExitToApp
-Outlined.FactCheck
-Outlined.FeaturedPlayList
-Outlined.FeaturedVideo
-Outlined.Feed
-Outlined.FollowTheSigns
-Outlined.FormatAlignLeft
-Outlined.FormatAlignRight
-Outlined.FormatIndentDecrease
-Outlined.FormatIndentIncrease
-Outlined.FormatListBulleted
-Outlined.FormatTextdirectionLToR
-Outlined.FormatTextdirectionRToL
-Outlined.Forward
-Outlined.ForwardToInbox
-Outlined.Grading
-Outlined.Help
-Outlined.HelpCenter
-Outlined.HelpOutline
-Outlined.Input
-Outlined.InsertComment
-Outlined.InsertDriveFile
-Outlined.KeyboardArrowLeft
-Outlined.KeyboardArrowRight
-Outlined.KeyboardBackspace
-Outlined.KeyboardReturn
-Outlined.KeyboardTab
-Outlined.Label
-Outlined.LabelImportant
-Outlined.LabelOff
-Outlined.LastPage
-Outlined.Launch
-Outlined.LibraryBooks
-Outlined.List
-Outlined.ListAlt
-Outlined.LiveHelp
-Outlined.Login
-Outlined.Logout
-Outlined.ManageSearch
-Outlined.MenuBook
-Outlined.MenuOpen
-Outlined.MergeType
-Outlined.Message
-Outlined.MissedVideoCall
-Outlined.MobileScreenShare
-Outlined.More
-Outlined.MultilineChart
-Outlined.NavigateBefore
-Outlined.NavigateNext
-Outlined.NextPlan
-Outlined.NextWeek
-Outlined.NotListedLocation
-Outlined.Note
-Outlined.NoteAdd
-Outlined.Notes
-Outlined.OfflineShare
-Outlined.OpenInNew
-Outlined.Outbound
-Outlined.PhoneCallback
-Outlined.PhoneForwarded
-Outlined.PhoneMissed
-Outlined.PlaylistAdd
-Outlined.PlaylistAddCheck
-Outlined.PlaylistPlay
-Outlined.QueueMusic
-Outlined.ReadMore
-Outlined.ReceiptLong
-Outlined.Redo
-Outlined.Reply
-Outlined.ReplyAll
-Outlined.RotateLeft
-Outlined.RotateRight
-Outlined.Rtt
-Outlined.Rule
-Outlined.ScheduleSend
-Outlined.ScreenShare
-Outlined.Segment
-Outlined.Send
-Outlined.SendAndArchive
-Outlined.SendToMobile
-Outlined.ShortText
-Outlined.Shortcut
-Outlined.ShowChart
-Outlined.Sort
-Outlined.SpeakerNotes
-Outlined.StarHalf
-Outlined.StickyNote2
-Outlined.StopScreenShare
-Outlined.Subject
-Outlined.TextSnippet
-Outlined.Toc
-Outlined.TrendingDown
-Outlined.TrendingFlat
-Outlined.TrendingUp
-Outlined.Undo
-Outlined.ViewList
-Outlined.ViewQuilt
-Outlined.ViewSidebar
-Outlined.VolumeDown
-Outlined.VolumeMute
-Outlined.VolumeOff
-Outlined.VolumeUp
-Outlined.WrapText
-Outlined.Wysiwyg
-Outlined._360
-Rounded.Accessible
-Rounded.AccessibleForward
-Rounded.AddToHomeScreen
-Rounded.AirplaneTicket
-Rounded.AlignHorizontalLeft
-Rounded.AlignHorizontalRight
-Rounded.AltRoute
-Rounded.Announcement
-Rounded.ArrowBack
-Rounded.ArrowBackIos
-Rounded.ArrowForward
-Rounded.ArrowForwardIos
-Rounded.ArrowLeft
-Rounded.ArrowRight
-Rounded.ArrowRightAlt
-Rounded.Article
-Rounded.Assignment
-Rounded.AssignmentReturn
-Rounded.AssistantDirection
-Rounded.Backspace
-Rounded.BatteryUnknown
-Rounded.BluetoothSearching
-Rounded.BrandingWatermark
-Rounded.CallMade
-Rounded.CallMerge
-Rounded.CallMissed
-Rounded.CallMissedOutgoing
-Rounded.CallReceived
-Rounded.CallSplit
-Rounded.Chat
-Rounded.ChromeReaderMode
-Rounded.Comment
-Rounded.CompareArrows
-Rounded.ContactSupport
-Rounded.DirectionsBike
-Rounded.DirectionsRun
-Rounded.DirectionsWalk
-Rounded.DriveFileMove
-Rounded.Dvr
-Rounded.EventNote
-Rounded.ExitToApp
-Rounded.FactCheck
-Rounded.FeaturedPlayList
-Rounded.FeaturedVideo
-Rounded.Feed
-Rounded.FollowTheSigns
-Rounded.FormatAlignLeft
-Rounded.FormatAlignRight
-Rounded.FormatIndentDecrease
-Rounded.FormatIndentIncrease
-Rounded.FormatListBulleted
-Rounded.FormatTextdirectionLToR
-Rounded.FormatTextdirectionRToL
-Rounded.Forward
-Rounded.ForwardToInbox
-Rounded.Grading
-Rounded.Help
-Rounded.HelpCenter
-Rounded.HelpOutline
-Rounded.Input
-Rounded.InsertComment
-Rounded.InsertDriveFile
-Rounded.KeyboardArrowLeft
-Rounded.KeyboardArrowRight
-Rounded.KeyboardBackspace
-Rounded.KeyboardReturn
-Rounded.KeyboardTab
-Rounded.Label
-Rounded.LabelImportant
-Rounded.LabelOff
-Rounded.LastPage
-Rounded.Launch
-Rounded.LibraryBooks
-Rounded.List
-Rounded.ListAlt
-Rounded.LiveHelp
-Rounded.Login
-Rounded.Logout
-Rounded.ManageSearch
-Rounded.MenuBook
-Rounded.MenuOpen
-Rounded.MergeType
-Rounded.Message
-Rounded.MissedVideoCall
-Rounded.MobileScreenShare
-Rounded.More
-Rounded.MultilineChart
-Rounded.NavigateBefore
-Rounded.NavigateNext
-Rounded.NextPlan
-Rounded.NextWeek
-Rounded.NotListedLocation
-Rounded.Note
-Rounded.NoteAdd
-Rounded.Notes
-Rounded.OfflineShare
-Rounded.OpenInNew
-Rounded.Outbound
-Rounded.PhoneCallback
-Rounded.PhoneForwarded
-Rounded.PhoneMissed
-Rounded.PlaylistAdd
-Rounded.PlaylistAddCheck
-Rounded.PlaylistPlay
-Rounded.QueueMusic
-Rounded.ReadMore
-Rounded.ReceiptLong
-Rounded.Redo
-Rounded.Reply
-Rounded.ReplyAll
-Rounded.RotateLeft
-Rounded.RotateRight
-Rounded.Rtt
-Rounded.Rule
-Rounded.ScheduleSend
-Rounded.ScreenShare
-Rounded.Segment
-Rounded.Send
-Rounded.SendAndArchive
-Rounded.SendToMobile
-Rounded.ShortText
-Rounded.Shortcut
-Rounded.ShowChart
-Rounded.Sort
-Rounded.SpeakerNotes
-Rounded.StarHalf
-Rounded.StickyNote2
-Rounded.StopScreenShare
-Rounded.Subject
-Rounded.TextSnippet
-Rounded.Toc
-Rounded.TrendingDown
-Rounded.TrendingFlat
-Rounded.TrendingUp
-Rounded.Undo
-Rounded.ViewList
-Rounded.ViewQuilt
-Rounded.ViewSidebar
-Rounded.VolumeDown
-Rounded.VolumeMute
-Rounded.VolumeOff
-Rounded.VolumeUp
-Rounded.WrapText
-Rounded.Wysiwyg
-Rounded._360
-Sharp.Accessible
-Sharp.AccessibleForward
-Sharp.AddToHomeScreen
-Sharp.AirplaneTicket
-Sharp.AlignHorizontalLeft
-Sharp.AlignHorizontalRight
-Sharp.AltRoute
-Sharp.Announcement
-Sharp.ArrowBack
-Sharp.ArrowBackIos
-Sharp.ArrowForward
-Sharp.ArrowForwardIos
-Sharp.ArrowLeft
-Sharp.ArrowRight
-Sharp.ArrowRightAlt
-Sharp.Article
-Sharp.Assignment
-Sharp.AssignmentReturn
-Sharp.AssistantDirection
-Sharp.Backspace
-Sharp.BatteryUnknown
-Sharp.BluetoothSearching
-Sharp.BrandingWatermark
-Sharp.CallMade
-Sharp.CallMerge
-Sharp.CallMissed
-Sharp.CallMissedOutgoing
-Sharp.CallReceived
-Sharp.CallSplit
-Sharp.Chat
-Sharp.ChromeReaderMode
-Sharp.Comment
-Sharp.CompareArrows
-Sharp.ContactSupport
-Sharp.DirectionsBike
-Sharp.DirectionsRun
-Sharp.DirectionsWalk
-Sharp.DriveFileMove
-Sharp.Dvr
-Sharp.EventNote
-Sharp.ExitToApp
-Sharp.FactCheck
-Sharp.FeaturedPlayList
-Sharp.FeaturedVideo
-Sharp.Feed
-Sharp.FollowTheSigns
-Sharp.FormatAlignLeft
-Sharp.FormatAlignRight
-Sharp.FormatIndentDecrease
-Sharp.FormatIndentIncrease
-Sharp.FormatListBulleted
-Sharp.FormatTextdirectionLToR
-Sharp.FormatTextdirectionRToL
-Sharp.Forward
-Sharp.ForwardToInbox
-Sharp.Grading
-Sharp.Help
-Sharp.HelpCenter
-Sharp.HelpOutline
-Sharp.Input
-Sharp.InsertComment
-Sharp.InsertDriveFile
-Sharp.KeyboardArrowLeft
-Sharp.KeyboardArrowRight
-Sharp.KeyboardBackspace
-Sharp.KeyboardReturn
-Sharp.KeyboardTab
-Sharp.Label
-Sharp.LabelImportant
-Sharp.LabelOff
-Sharp.LastPage
-Sharp.Launch
-Sharp.LibraryBooks
-Sharp.List
-Sharp.ListAlt
-Sharp.LiveHelp
-Sharp.Login
-Sharp.Logout
-Sharp.ManageSearch
-Sharp.MenuBook
-Sharp.MenuOpen
-Sharp.MergeType
-Sharp.Message
-Sharp.MissedVideoCall
-Sharp.MobileScreenShare
-Sharp.More
-Sharp.MultilineChart
-Sharp.NavigateBefore
-Sharp.NavigateNext
-Sharp.NextPlan
-Sharp.NextWeek
-Sharp.NotListedLocation
-Sharp.Note
-Sharp.NoteAdd
-Sharp.Notes
-Sharp.OfflineShare
-Sharp.OpenInNew
-Sharp.Outbound
-Sharp.PhoneCallback
-Sharp.PhoneForwarded
-Sharp.PhoneMissed
-Sharp.PlaylistAdd
-Sharp.PlaylistAddCheck
-Sharp.PlaylistPlay
-Sharp.QueueMusic
-Sharp.ReadMore
-Sharp.ReceiptLong
-Sharp.Redo
-Sharp.Reply
-Sharp.ReplyAll
-Sharp.RotateLeft
-Sharp.RotateRight
-Sharp.Rtt
-Sharp.Rule
-Sharp.ScheduleSend
-Sharp.ScreenShare
-Sharp.Segment
-Sharp.Send
-Sharp.SendAndArchive
-Sharp.SendToMobile
-Sharp.ShortText
-Sharp.Shortcut
-Sharp.ShowChart
-Sharp.Sort
-Sharp.SpeakerNotes
-Sharp.StarHalf
-Sharp.StickyNote2
-Sharp.StopScreenShare
-Sharp.Subject
-Sharp.TextSnippet
-Sharp.Toc
-Sharp.TrendingDown
-Sharp.TrendingFlat
-Sharp.TrendingUp
-Sharp.Undo
-Sharp.ViewList
-Sharp.ViewQuilt
-Sharp.ViewSidebar
-Sharp.VolumeDown
-Sharp.VolumeMute
-Sharp.VolumeOff
-Sharp.VolumeUp
-Sharp.WrapText
-Sharp.Wysiwyg
-Sharp._360
-TwoTone.Accessible
-TwoTone.AccessibleForward
-TwoTone.AddToHomeScreen
-TwoTone.AirplaneTicket
-TwoTone.AlignHorizontalLeft
-TwoTone.AlignHorizontalRight
-TwoTone.AltRoute
-TwoTone.Announcement
-TwoTone.ArrowBack
-TwoTone.ArrowBackIos
-TwoTone.ArrowForward
-TwoTone.ArrowForwardIos
-TwoTone.ArrowLeft
-TwoTone.ArrowRight
-TwoTone.ArrowRightAlt
-TwoTone.Article
-TwoTone.Assignment
-TwoTone.AssignmentReturn
-TwoTone.AssistantDirection
-TwoTone.Backspace
-TwoTone.BatteryUnknown
-TwoTone.BluetoothSearching
-TwoTone.BrandingWatermark
-TwoTone.CallMade
-TwoTone.CallMerge
-TwoTone.CallMissed
-TwoTone.CallMissedOutgoing
-TwoTone.CallReceived
-TwoTone.CallSplit
-TwoTone.Chat
-TwoTone.ChromeReaderMode
-TwoTone.Comment
-TwoTone.CompareArrows
-TwoTone.ContactSupport
-TwoTone.DirectionsBike
-TwoTone.DirectionsRun
-TwoTone.DirectionsWalk
-TwoTone.DriveFileMove
-TwoTone.Dvr
-TwoTone.EventNote
-TwoTone.ExitToApp
-TwoTone.FactCheck
-TwoTone.FeaturedPlayList
-TwoTone.FeaturedVideo
-TwoTone.Feed
-TwoTone.FollowTheSigns
-TwoTone.FormatAlignLeft
-TwoTone.FormatAlignRight
-TwoTone.FormatIndentDecrease
-TwoTone.FormatIndentIncrease
-TwoTone.FormatListBulleted
-TwoTone.FormatTextdirectionLToR
-TwoTone.FormatTextdirectionRToL
-TwoTone.Forward
-TwoTone.ForwardToInbox
-TwoTone.Grading
-TwoTone.Help
-TwoTone.HelpCenter
-TwoTone.HelpOutline
-TwoTone.Input
-TwoTone.InsertComment
-TwoTone.InsertDriveFile
-TwoTone.KeyboardArrowLeft
-TwoTone.KeyboardArrowRight
-TwoTone.KeyboardBackspace
-TwoTone.KeyboardReturn
-TwoTone.KeyboardTab
-TwoTone.Label
-TwoTone.LabelImportant
-TwoTone.LabelOff
-TwoTone.LastPage
-TwoTone.Launch
-TwoTone.LibraryBooks
-TwoTone.List
-TwoTone.ListAlt
-TwoTone.LiveHelp
-TwoTone.Login
-TwoTone.Logout
-TwoTone.ManageSearch
-TwoTone.MenuBook
-TwoTone.MenuOpen
-TwoTone.MergeType
-TwoTone.Message
-TwoTone.MissedVideoCall
-TwoTone.MobileScreenShare
-TwoTone.More
-TwoTone.MultilineChart
-TwoTone.NavigateBefore
-TwoTone.NavigateNext
-TwoTone.NextPlan
-TwoTone.NextWeek
-TwoTone.NotListedLocation
-TwoTone.Note
-TwoTone.NoteAdd
-TwoTone.Notes
-TwoTone.OfflineShare
-TwoTone.OpenInNew
-TwoTone.Outbound
-TwoTone.PhoneCallback
-TwoTone.PhoneForwarded
-TwoTone.PhoneMissed
-TwoTone.PlaylistAdd
-TwoTone.PlaylistAddCheck
-TwoTone.PlaylistPlay
-TwoTone.QueueMusic
-TwoTone.ReadMore
-TwoTone.ReceiptLong
-TwoTone.Redo
-TwoTone.Reply
-TwoTone.ReplyAll
-TwoTone.RotateLeft
-TwoTone.RotateRight
-TwoTone.Rtt
-TwoTone.Rule
-TwoTone.ScheduleSend
-TwoTone.ScreenShare
-TwoTone.Segment
-TwoTone.Send
-TwoTone.SendAndArchive
-TwoTone.SendToMobile
-TwoTone.ShortText
-TwoTone.Shortcut
-TwoTone.ShowChart
-TwoTone.Sort
-TwoTone.SpeakerNotes
-TwoTone.StarHalf
-TwoTone.StickyNote2
-TwoTone.StopScreenShare
-TwoTone.Subject
-TwoTone.TextSnippet
-TwoTone.Toc
-TwoTone.TrendingDown
-TwoTone.TrendingFlat
-TwoTone.TrendingUp
-TwoTone.Undo
-TwoTone.ViewList
-TwoTone.ViewQuilt
-TwoTone.ViewSidebar
-TwoTone.VolumeDown
-TwoTone.VolumeMute
-TwoTone.VolumeOff
-TwoTone.VolumeUp
-TwoTone.WrapText
-TwoTone.Wysiwyg
-TwoTone._360
\ No newline at end of file
diff --git a/compose/material/material/icons/generator/api/icons.txt b/compose/material/material/icons/generator/api/icons.txt
deleted file mode 100644
index b23fe4c..0000000
--- a/compose/material/material/icons/generator/api/icons.txt
+++ /dev/null
@@ -1,9935 +0,0 @@
-Filled.Abc
-Filled.AcUnit
-Filled.AccessAlarm
-Filled.AccessAlarms
-Filled.AccessTime
-Filled.AccessTimeFilled
-Filled.Accessibility
-Filled.AccessibilityNew
-Filled.AccountBalance
-Filled.AccountBalanceWallet
-Filled.AccountBox
-Filled.AccountCircle
-Filled.AccountTree
-Filled.AdUnits
-Filled.Adb
-Filled.Add
-Filled.AddAPhoto
-Filled.AddAlarm
-Filled.AddAlert
-Filled.AddBox
-Filled.AddBusiness
-Filled.AddCard
-Filled.AddChart
-Filled.AddCircle
-Filled.AddCircleOutline
-Filled.AddComment
-Filled.AddHome
-Filled.AddHomeWork
-Filled.AddIcCall
-Filled.AddLink
-Filled.AddLocation
-Filled.AddLocationAlt
-Filled.AddModerator
-Filled.AddPhotoAlternate
-Filled.AddReaction
-Filled.AddRoad
-Filled.AddShoppingCart
-Filled.AddTask
-Filled.AddToDrive
-Filled.AddToPhotos
-Filled.AddToQueue
-Filled.Addchart
-Filled.AdfScanner
-Filled.Adjust
-Filled.AdminPanelSettings
-Filled.AdsClick
-Filled.Agriculture
-Filled.Air
-Filled.AirlineSeatFlat
-Filled.AirlineSeatFlatAngled
-Filled.AirlineSeatIndividualSuite
-Filled.AirlineSeatLegroomExtra
-Filled.AirlineSeatLegroomNormal
-Filled.AirlineSeatLegroomReduced
-Filled.AirlineSeatReclineExtra
-Filled.AirlineSeatReclineNormal
-Filled.AirlineStops
-Filled.Airlines
-Filled.AirplanemodeActive
-Filled.AirplanemodeInactive
-Filled.Airplay
-Filled.AirportShuttle
-Filled.Alarm
-Filled.AlarmAdd
-Filled.AlarmOff
-Filled.AlarmOn
-Filled.Album
-Filled.AlignHorizontalCenter
-Filled.AlignVerticalBottom
-Filled.AlignVerticalCenter
-Filled.AlignVerticalTop
-Filled.AllInbox
-Filled.AllInclusive
-Filled.AllOut
-Filled.AlternateEmail
-Filled.AmpStories
-Filled.Analytics
-Filled.Anchor
-Filled.Android
-Filled.Animation
-Filled.Aod
-Filled.Apartment
-Filled.Api
-Filled.AppBlocking
-Filled.AppRegistration
-Filled.AppSettingsAlt
-Filled.AppShortcut
-Filled.Approval
-Filled.Apps
-Filled.AppsOutage
-Filled.Architecture
-Filled.Archive
-Filled.AreaChart
-Filled.ArrowBackIosNew
-Filled.ArrowCircleDown
-Filled.ArrowCircleLeft
-Filled.ArrowCircleRight
-Filled.ArrowCircleUp
-Filled.ArrowDownward
-Filled.ArrowDropDown
-Filled.ArrowDropDownCircle
-Filled.ArrowDropUp
-Filled.ArrowOutward
-Filled.ArrowUpward
-Filled.ArtTrack
-Filled.AspectRatio
-Filled.Assessment
-Filled.AssignmentInd
-Filled.AssignmentLate
-Filled.AssignmentReturned
-Filled.AssignmentTurnedIn
-Filled.AssistWalker
-Filled.Assistant
-Filled.AssistantPhoto
-Filled.AssuredWorkload
-Filled.Atm
-Filled.AttachEmail
-Filled.AttachFile
-Filled.AttachMoney
-Filled.Attachment
-Filled.Attractions
-Filled.Attribution
-Filled.AudioFile
-Filled.Audiotrack
-Filled.AutoAwesome
-Filled.AutoAwesomeMosaic
-Filled.AutoAwesomeMotion
-Filled.AutoDelete
-Filled.AutoFixHigh
-Filled.AutoFixNormal
-Filled.AutoFixOff
-Filled.AutoGraph
-Filled.AutoMode
-Filled.AutoStories
-Filled.AutofpsSelect
-Filled.Autorenew
-Filled.AvTimer
-Filled.BabyChangingStation
-Filled.BackHand
-Filled.Backpack
-Filled.Backup
-Filled.BackupTable
-Filled.Badge
-Filled.BakeryDining
-Filled.Balance
-Filled.Balcony
-Filled.Ballot
-Filled.BarChart
-Filled.BatchPrediction
-Filled.Bathroom
-Filled.Bathtub
-Filled.Battery0Bar
-Filled.Battery1Bar
-Filled.Battery2Bar
-Filled.Battery3Bar
-Filled.Battery4Bar
-Filled.Battery5Bar
-Filled.Battery6Bar
-Filled.BatteryAlert
-Filled.BatteryChargingFull
-Filled.BatteryFull
-Filled.BatterySaver
-Filled.BatteryStd
-Filled.BeachAccess
-Filled.Bed
-Filled.BedroomBaby
-Filled.BedroomChild
-Filled.BedroomParent
-Filled.Bedtime
-Filled.BedtimeOff
-Filled.Beenhere
-Filled.Bento
-Filled.BikeScooter
-Filled.Biotech
-Filled.Blender
-Filled.Blind
-Filled.Blinds
-Filled.BlindsClosed
-Filled.Block
-Filled.Bloodtype
-Filled.Bluetooth
-Filled.BluetoothAudio
-Filled.BluetoothConnected
-Filled.BluetoothDisabled
-Filled.BluetoothDrive
-Filled.BlurCircular
-Filled.BlurLinear
-Filled.BlurOff
-Filled.BlurOn
-Filled.Bolt
-Filled.Book
-Filled.BookOnline
-Filled.Bookmark
-Filled.BookmarkAdd
-Filled.BookmarkAdded
-Filled.BookmarkBorder
-Filled.BookmarkRemove
-Filled.Bookmarks
-Filled.BorderAll
-Filled.BorderBottom
-Filled.BorderClear
-Filled.BorderColor
-Filled.BorderHorizontal
-Filled.BorderInner
-Filled.BorderLeft
-Filled.BorderOuter
-Filled.BorderRight
-Filled.BorderStyle
-Filled.BorderTop
-Filled.BorderVertical
-Filled.Boy
-Filled.BreakfastDining
-Filled.Brightness1
-Filled.Brightness2
-Filled.Brightness3
-Filled.Brightness4
-Filled.Brightness5
-Filled.Brightness6
-Filled.Brightness7
-Filled.BrightnessAuto
-Filled.BrightnessHigh
-Filled.BrightnessLow
-Filled.BrightnessMedium
-Filled.BroadcastOnHome
-Filled.BroadcastOnPersonal
-Filled.BrokenImage
-Filled.BrowseGallery
-Filled.BrowserNotSupported
-Filled.BrowserUpdated
-Filled.BrunchDining
-Filled.Brush
-Filled.BubbleChart
-Filled.BugReport
-Filled.Build
-Filled.BuildCircle
-Filled.Bungalow
-Filled.BurstMode
-Filled.BusAlert
-Filled.Business
-Filled.BusinessCenter
-Filled.Cabin
-Filled.Cable
-Filled.Cached
-Filled.Cake
-Filled.Calculate
-Filled.CalendarMonth
-Filled.CalendarToday
-Filled.CalendarViewDay
-Filled.CalendarViewMonth
-Filled.CalendarViewWeek
-Filled.Call
-Filled.CallEnd
-Filled.CallToAction
-Filled.Camera
-Filled.CameraAlt
-Filled.CameraEnhance
-Filled.CameraFront
-Filled.CameraIndoor
-Filled.CameraOutdoor
-Filled.CameraRear
-Filled.CameraRoll
-Filled.Cameraswitch
-Filled.Campaign
-Filled.Cancel
-Filled.CancelPresentation
-Filled.CancelScheduleSend
-Filled.CandlestickChart
-Filled.CarCrash
-Filled.CarRental
-Filled.CarRepair
-Filled.CardGiftcard
-Filled.CardMembership
-Filled.CardTravel
-Filled.Carpenter
-Filled.Cases
-Filled.Casino
-Filled.Cast
-Filled.CastConnected
-Filled.CastForEducation
-Filled.Castle
-Filled.CatchingPokemon
-Filled.Category
-Filled.Celebration
-Filled.CellTower
-Filled.CellWifi
-Filled.CenterFocusStrong
-Filled.CenterFocusWeak
-Filled.Chair
-Filled.ChairAlt
-Filled.Chalet
-Filled.ChangeCircle
-Filled.ChangeHistory
-Filled.ChargingStation
-Filled.ChatBubble
-Filled.ChatBubbleOutline
-Filled.Check
-Filled.CheckBox
-Filled.CheckBoxOutlineBlank
-Filled.CheckCircle
-Filled.CheckCircleOutline
-Filled.Checklist
-Filled.ChecklistRtl
-Filled.Checkroom
-Filled.ChevronLeft
-Filled.ChevronRight
-Filled.ChildCare
-Filled.ChildFriendly
-Filled.Church
-Filled.Circle
-Filled.CircleNotifications
-Filled.Class
-Filled.CleanHands
-Filled.CleaningServices
-Filled.Clear
-Filled.ClearAll
-Filled.Close
-Filled.CloseFullscreen
-Filled.ClosedCaption
-Filled.ClosedCaptionDisabled
-Filled.ClosedCaptionOff
-Filled.Cloud
-Filled.CloudCircle
-Filled.CloudDone
-Filled.CloudDownload
-Filled.CloudOff
-Filled.CloudQueue
-Filled.CloudSync
-Filled.CloudUpload
-Filled.Co2
-Filled.CoPresent
-Filled.Code
-Filled.CodeOff
-Filled.Coffee
-Filled.CoffeeMaker
-Filled.Collections
-Filled.CollectionsBookmark
-Filled.ColorLens
-Filled.Colorize
-Filled.CommentBank
-Filled.CommentsDisabled
-Filled.Commit
-Filled.Commute
-Filled.Compare
-Filled.CompassCalibration
-Filled.Compost
-Filled.Compress
-Filled.Computer
-Filled.ConfirmationNumber
-Filled.ConnectWithoutContact
-Filled.ConnectedTv
-Filled.ConnectingAirports
-Filled.Construction
-Filled.ContactEmergency
-Filled.ContactMail
-Filled.ContactPage
-Filled.ContactPhone
-Filled.Contactless
-Filled.Contacts
-Filled.ContentCopy
-Filled.ContentCut
-Filled.ContentPaste
-Filled.ContentPasteGo
-Filled.ContentPasteOff
-Filled.ContentPasteSearch
-Filled.Contrast
-Filled.ControlCamera
-Filled.ControlPoint
-Filled.ControlPointDuplicate
-Filled.Cookie
-Filled.CopyAll
-Filled.Copyright
-Filled.Coronavirus
-Filled.CorporateFare
-Filled.Cottage
-Filled.Countertops
-Filled.Create
-Filled.CreateNewFolder
-Filled.CreditCard
-Filled.CreditCardOff
-Filled.CreditScore
-Filled.Crib
-Filled.CrisisAlert
-Filled.Crop
-Filled.Crop169
-Filled.Crop32
-Filled.Crop54
-Filled.Crop75
-Filled.CropDin
-Filled.CropFree
-Filled.CropLandscape
-Filled.CropOriginal
-Filled.CropPortrait
-Filled.CropRotate
-Filled.CropSquare
-Filled.CrueltyFree
-Filled.Css
-Filled.CurrencyBitcoin
-Filled.CurrencyExchange
-Filled.CurrencyFranc
-Filled.CurrencyLira
-Filled.CurrencyPound
-Filled.CurrencyRuble
-Filled.CurrencyRupee
-Filled.CurrencyYen
-Filled.CurrencyYuan
-Filled.Curtains
-Filled.CurtainsClosed
-Filled.Cyclone
-Filled.Dangerous
-Filled.DarkMode
-Filled.Dashboard
-Filled.DashboardCustomize
-Filled.DataArray
-Filled.DataExploration
-Filled.DataObject
-Filled.DataSaverOff
-Filled.DataSaverOn
-Filled.DataThresholding
-Filled.DataUsage
-Filled.Dataset
-Filled.DatasetLinked
-Filled.DateRange
-Filled.Deblur
-Filled.Deck
-Filled.Dehaze
-Filled.Delete
-Filled.DeleteForever
-Filled.DeleteOutline
-Filled.DeleteSweep
-Filled.DeliveryDining
-Filled.DensityLarge
-Filled.DensityMedium
-Filled.DensitySmall
-Filled.DepartureBoard
-Filled.Description
-Filled.Deselect
-Filled.DesignServices
-Filled.Desk
-Filled.DesktopAccessDisabled
-Filled.DesktopMac
-Filled.DesktopWindows
-Filled.Details
-Filled.DeveloperBoard
-Filled.DeveloperBoardOff
-Filled.DeveloperMode
-Filled.DeviceHub
-Filled.DeviceThermostat
-Filled.DeviceUnknown
-Filled.Devices
-Filled.DevicesFold
-Filled.DevicesOther
-Filled.DialerSip
-Filled.Dialpad
-Filled.Diamond
-Filled.Difference
-Filled.Dining
-Filled.DinnerDining
-Filled.Directions
-Filled.DirectionsBoat
-Filled.DirectionsBoatFilled
-Filled.DirectionsBus
-Filled.DirectionsBusFilled
-Filled.DirectionsCar
-Filled.DirectionsCarFilled
-Filled.DirectionsOff
-Filled.DirectionsRailway
-Filled.DirectionsRailwayFilled
-Filled.DirectionsSubway
-Filled.DirectionsSubwayFilled
-Filled.DirectionsTransit
-Filled.DirectionsTransitFilled
-Filled.DirtyLens
-Filled.DisabledByDefault
-Filled.DisabledVisible
-Filled.DiscFull
-Filled.Discount
-Filled.DisplaySettings
-Filled.Diversity1
-Filled.Diversity2
-Filled.Diversity3
-Filled.Dns
-Filled.DoDisturb
-Filled.DoDisturbAlt
-Filled.DoDisturbOff
-Filled.DoDisturbOn
-Filled.DoNotDisturb
-Filled.DoNotDisturbAlt
-Filled.DoNotDisturbOff
-Filled.DoNotDisturbOn
-Filled.DoNotDisturbOnTotalSilence
-Filled.DoNotStep
-Filled.DoNotTouch
-Filled.Dock
-Filled.DocumentScanner
-Filled.Domain
-Filled.DomainAdd
-Filled.DomainDisabled
-Filled.DomainVerification
-Filled.Done
-Filled.DoneAll
-Filled.DoneOutline
-Filled.DonutLarge
-Filled.DonutSmall
-Filled.DoorBack
-Filled.DoorFront
-Filled.DoorSliding
-Filled.Doorbell
-Filled.DoubleArrow
-Filled.DownhillSkiing
-Filled.Download
-Filled.DownloadDone
-Filled.DownloadForOffline
-Filled.Downloading
-Filled.Drafts
-Filled.DragHandle
-Filled.DragIndicator
-Filled.Draw
-Filled.DriveEta
-Filled.DriveFileMoveRtl
-Filled.DriveFileRenameOutline
-Filled.DriveFolderUpload
-Filled.Dry
-Filled.DryCleaning
-Filled.Duo
-Filled.DynamicFeed
-Filled.DynamicForm
-Filled.EMobiledata
-Filled.Earbuds
-Filled.EarbudsBattery
-Filled.East
-Filled.Eco
-Filled.EdgesensorHigh
-Filled.EdgesensorLow
-Filled.Edit
-Filled.EditAttributes
-Filled.EditCalendar
-Filled.EditLocation
-Filled.EditLocationAlt
-Filled.EditNote
-Filled.EditNotifications
-Filled.EditOff
-Filled.EditRoad
-Filled.Egg
-Filled.EggAlt
-Filled.Eject
-Filled.Elderly
-Filled.ElderlyWoman
-Filled.ElectricBike
-Filled.ElectricBolt
-Filled.ElectricCar
-Filled.ElectricMeter
-Filled.ElectricMoped
-Filled.ElectricRickshaw
-Filled.ElectricScooter
-Filled.ElectricalServices
-Filled.Elevator
-Filled.Email
-Filled.Emergency
-Filled.EmergencyRecording
-Filled.EmergencyShare
-Filled.EmojiEmotions
-Filled.EmojiEvents
-Filled.EmojiFlags
-Filled.EmojiFoodBeverage
-Filled.EmojiNature
-Filled.EmojiObjects
-Filled.EmojiPeople
-Filled.EmojiSymbols
-Filled.EmojiTransportation
-Filled.EnergySavingsLeaf
-Filled.Engineering
-Filled.EnhancedEncryption
-Filled.Equalizer
-Filled.Error
-Filled.ErrorOutline
-Filled.Escalator
-Filled.EscalatorWarning
-Filled.Euro
-Filled.EuroSymbol
-Filled.EvStation
-Filled.Event
-Filled.EventAvailable
-Filled.EventBusy
-Filled.EventRepeat
-Filled.EventSeat
-Filled.Expand
-Filled.ExpandCircleDown
-Filled.ExpandLess
-Filled.ExpandMore
-Filled.Explicit
-Filled.Explore
-Filled.ExploreOff
-Filled.Exposure
-Filled.ExposureNeg1
-Filled.ExposureNeg2
-Filled.ExposurePlus1
-Filled.ExposurePlus2
-Filled.ExposureZero
-Filled.Extension
-Filled.ExtensionOff
-Filled.Face
-Filled.Face2
-Filled.Face3
-Filled.Face4
-Filled.Face5
-Filled.Face6
-Filled.FaceRetouchingNatural
-Filled.FaceRetouchingOff
-Filled.Facebook
-Filled.Factory
-Filled.FamilyRestroom
-Filled.FastForward
-Filled.FastRewind
-Filled.Fastfood
-Filled.Favorite
-Filled.FavoriteBorder
-Filled.Fax
-Filled.Feedback
-Filled.Female
-Filled.Fence
-Filled.Festival
-Filled.FiberDvr
-Filled.FiberManualRecord
-Filled.FiberNew
-Filled.FiberPin
-Filled.FiberSmartRecord
-Filled.FileCopy
-Filled.FileDownload
-Filled.FileDownloadDone
-Filled.FileDownloadOff
-Filled.FileOpen
-Filled.FilePresent
-Filled.FileUpload
-Filled.Filter
-Filled.Filter1
-Filled.Filter2
-Filled.Filter3
-Filled.Filter4
-Filled.Filter5
-Filled.Filter6
-Filled.Filter7
-Filled.Filter8
-Filled.Filter9
-Filled.Filter9Plus
-Filled.FilterAlt
-Filled.FilterAltOff
-Filled.FilterBAndW
-Filled.FilterCenterFocus
-Filled.FilterDrama
-Filled.FilterFrames
-Filled.FilterHdr
-Filled.FilterList
-Filled.FilterListOff
-Filled.FilterNone
-Filled.FilterTiltShift
-Filled.FilterVintage
-Filled.FindInPage
-Filled.FindReplace
-Filled.Fingerprint
-Filled.FireExtinguisher
-Filled.FireHydrantAlt
-Filled.FireTruck
-Filled.Fireplace
-Filled.FirstPage
-Filled.FitScreen
-Filled.Fitbit
-Filled.FitnessCenter
-Filled.Flag
-Filled.FlagCircle
-Filled.Flaky
-Filled.Flare
-Filled.FlashAuto
-Filled.FlashOff
-Filled.FlashOn
-Filled.FlashlightOff
-Filled.FlashlightOn
-Filled.Flatware
-Filled.Flight
-Filled.FlightClass
-Filled.FlightLand
-Filled.FlightTakeoff
-Filled.Flip
-Filled.FlipCameraAndroid
-Filled.FlipCameraIos
-Filled.FlipToBack
-Filled.FlipToFront
-Filled.Flood
-Filled.Flourescent
-Filled.Fluorescent
-Filled.FlutterDash
-Filled.FmdBad
-Filled.FmdGood
-Filled.Folder
-Filled.FolderCopy
-Filled.FolderDelete
-Filled.FolderOff
-Filled.FolderOpen
-Filled.FolderShared
-Filled.FolderSpecial
-Filled.FolderZip
-Filled.FontDownload
-Filled.FontDownloadOff
-Filled.FoodBank
-Filled.Forest
-Filled.ForkLeft
-Filled.ForkRight
-Filled.FormatAlignCenter
-Filled.FormatAlignJustify
-Filled.FormatBold
-Filled.FormatClear
-Filled.FormatColorFill
-Filled.FormatColorReset
-Filled.FormatColorText
-Filled.FormatItalic
-Filled.FormatLineSpacing
-Filled.FormatListNumbered
-Filled.FormatListNumberedRtl
-Filled.FormatOverline
-Filled.FormatPaint
-Filled.FormatQuote
-Filled.FormatShapes
-Filled.FormatSize
-Filled.FormatStrikethrough
-Filled.FormatUnderlined
-Filled.Fort
-Filled.Forum
-Filled.Forward10
-Filled.Forward30
-Filled.Forward5
-Filled.Foundation
-Filled.FreeBreakfast
-Filled.FreeCancellation
-Filled.FrontHand
-Filled.Fullscreen
-Filled.FullscreenExit
-Filled.Functions
-Filled.GMobiledata
-Filled.GTranslate
-Filled.Gamepad
-Filled.Games
-Filled.Garage
-Filled.GasMeter
-Filled.Gavel
-Filled.GeneratingTokens
-Filled.Gesture
-Filled.GetApp
-Filled.Gif
-Filled.GifBox
-Filled.Girl
-Filled.Gite
-Filled.GolfCourse
-Filled.GppBad
-Filled.GppGood
-Filled.GppMaybe
-Filled.GpsFixed
-Filled.GpsNotFixed
-Filled.GpsOff
-Filled.Grade
-Filled.Gradient
-Filled.Grain
-Filled.GraphicEq
-Filled.Grass
-Filled.Grid3x3
-Filled.Grid4x4
-Filled.GridGoldenratio
-Filled.GridOff
-Filled.GridOn
-Filled.GridView
-Filled.Group
-Filled.GroupAdd
-Filled.GroupOff
-Filled.GroupRemove
-Filled.GroupWork
-Filled.Groups
-Filled.Groups2
-Filled.Groups3
-Filled.HMobiledata
-Filled.HPlusMobiledata
-Filled.Hail
-Filled.Handshake
-Filled.Handyman
-Filled.Hardware
-Filled.Hd
-Filled.HdrAuto
-Filled.HdrAutoSelect
-Filled.HdrEnhancedSelect
-Filled.HdrOff
-Filled.HdrOffSelect
-Filled.HdrOn
-Filled.HdrOnSelect
-Filled.HdrPlus
-Filled.HdrStrong
-Filled.HdrWeak
-Filled.Headphones
-Filled.HeadphonesBattery
-Filled.Headset
-Filled.HeadsetMic
-Filled.HeadsetOff
-Filled.Healing
-Filled.HealthAndSafety
-Filled.Hearing
-Filled.HearingDisabled
-Filled.HeartBroken
-Filled.HeatPump
-Filled.Height
-Filled.Hevc
-Filled.Hexagon
-Filled.HideImage
-Filled.HideSource
-Filled.HighQuality
-Filled.Highlight
-Filled.HighlightAlt
-Filled.HighlightOff
-Filled.Hiking
-Filled.History
-Filled.HistoryEdu
-Filled.HistoryToggleOff
-Filled.Hive
-Filled.Hls
-Filled.HlsOff
-Filled.HolidayVillage
-Filled.Home
-Filled.HomeMax
-Filled.HomeMini
-Filled.HomeRepairService
-Filled.HomeWork
-Filled.HorizontalDistribute
-Filled.HorizontalRule
-Filled.HorizontalSplit
-Filled.HotTub
-Filled.Hotel
-Filled.HotelClass
-Filled.HourglassBottom
-Filled.HourglassDisabled
-Filled.HourglassEmpty
-Filled.HourglassFull
-Filled.HourglassTop
-Filled.House
-Filled.HouseSiding
-Filled.Houseboat
-Filled.HowToReg
-Filled.HowToVote
-Filled.Html
-Filled.Http
-Filled.Https
-Filled.Hub
-Filled.Hvac
-Filled.IceSkating
-Filled.Icecream
-Filled.Image
-Filled.ImageAspectRatio
-Filled.ImageNotSupported
-Filled.ImageSearch
-Filled.ImagesearchRoller
-Filled.ImportContacts
-Filled.ImportExport
-Filled.ImportantDevices
-Filled.Inbox
-Filled.IncompleteCircle
-Filled.IndeterminateCheckBox
-Filled.Info
-Filled.InsertChart
-Filled.InsertChartOutlined
-Filled.InsertEmoticon
-Filled.InsertInvitation
-Filled.InsertLink
-Filled.InsertPageBreak
-Filled.InsertPhoto
-Filled.Insights
-Filled.InstallDesktop
-Filled.InstallMobile
-Filled.IntegrationInstructions
-Filled.Interests
-Filled.InterpreterMode
-Filled.Inventory
-Filled.Inventory2
-Filled.InvertColors
-Filled.InvertColorsOff
-Filled.IosShare
-Filled.Iron
-Filled.Iso
-Filled.Javascript
-Filled.JoinFull
-Filled.JoinInner
-Filled.JoinLeft
-Filled.JoinRight
-Filled.Kayaking
-Filled.KebabDining
-Filled.Key
-Filled.KeyOff
-Filled.Keyboard
-Filled.KeyboardAlt
-Filled.KeyboardArrowDown
-Filled.KeyboardArrowUp
-Filled.KeyboardCapslock
-Filled.KeyboardCommandKey
-Filled.KeyboardControlKey
-Filled.KeyboardDoubleArrowDown
-Filled.KeyboardDoubleArrowLeft
-Filled.KeyboardDoubleArrowRight
-Filled.KeyboardDoubleArrowUp
-Filled.KeyboardHide
-Filled.KeyboardOptionKey
-Filled.KeyboardVoice
-Filled.KingBed
-Filled.Kitchen
-Filled.Kitesurfing
-Filled.Lan
-Filled.Landscape
-Filled.Landslide
-Filled.Language
-Filled.Laptop
-Filled.LaptopChromebook
-Filled.LaptopMac
-Filled.LaptopWindows
-Filled.Layers
-Filled.LayersClear
-Filled.Leaderboard
-Filled.LeakAdd
-Filled.LeakRemove
-Filled.LeaveBagsAtHome
-Filled.LegendToggle
-Filled.Lens
-Filled.LensBlur
-Filled.LibraryAdd
-Filled.LibraryAddCheck
-Filled.LibraryMusic
-Filled.Light
-Filled.LightMode
-Filled.Lightbulb
-Filled.LightbulbCircle
-Filled.LineAxis
-Filled.LineStyle
-Filled.LineWeight
-Filled.LinearScale
-Filled.Link
-Filled.LinkOff
-Filled.LinkedCamera
-Filled.Liquor
-Filled.LiveTv
-Filled.Living
-Filled.LocalActivity
-Filled.LocalAirport
-Filled.LocalAtm
-Filled.LocalBar
-Filled.LocalCafe
-Filled.LocalCarWash
-Filled.LocalConvenienceStore
-Filled.LocalDining
-Filled.LocalDrink
-Filled.LocalFireDepartment
-Filled.LocalFlorist
-Filled.LocalGasStation
-Filled.LocalGroceryStore
-Filled.LocalHospital
-Filled.LocalHotel
-Filled.LocalLaundryService
-Filled.LocalLibrary
-Filled.LocalMall
-Filled.LocalMovies
-Filled.LocalOffer
-Filled.LocalParking
-Filled.LocalPharmacy
-Filled.LocalPhone
-Filled.LocalPizza
-Filled.LocalPlay
-Filled.LocalPolice
-Filled.LocalPostOffice
-Filled.LocalPrintshop
-Filled.LocalSee
-Filled.LocalShipping
-Filled.LocalTaxi
-Filled.LocationCity
-Filled.LocationDisabled
-Filled.LocationOff
-Filled.LocationOn
-Filled.LocationSearching
-Filled.Lock
-Filled.LockClock
-Filled.LockOpen
-Filled.LockPerson
-Filled.LockReset
-Filled.LogoDev
-Filled.Looks
-Filled.Looks3
-Filled.Looks4
-Filled.Looks5
-Filled.Looks6
-Filled.LooksOne
-Filled.LooksTwo
-Filled.Loop
-Filled.Loupe
-Filled.LowPriority
-Filled.Loyalty
-Filled.LteMobiledata
-Filled.LtePlusMobiledata
-Filled.Luggage
-Filled.LunchDining
-Filled.Lyrics
-Filled.MacroOff
-Filled.Mail
-Filled.MailLock
-Filled.MailOutline
-Filled.Male
-Filled.Man
-Filled.Man2
-Filled.Man3
-Filled.Man4
-Filled.ManageAccounts
-Filled.ManageHistory
-Filled.Map
-Filled.MapsHomeWork
-Filled.MapsUgc
-Filled.Margin
-Filled.MarkAsUnread
-Filled.MarkChatRead
-Filled.MarkChatUnread
-Filled.MarkEmailRead
-Filled.MarkEmailUnread
-Filled.MarkUnreadChatAlt
-Filled.Markunread
-Filled.MarkunreadMailbox
-Filled.Masks
-Filled.Maximize
-Filled.MediaBluetoothOff
-Filled.MediaBluetoothOn
-Filled.Mediation
-Filled.MedicalInformation
-Filled.MedicalServices
-Filled.Medication
-Filled.MeetingRoom
-Filled.Memory
-Filled.Menu
-Filled.Merge
-Filled.Mic
-Filled.MicExternalOff
-Filled.MicExternalOn
-Filled.MicNone
-Filled.MicOff
-Filled.Microwave
-Filled.MilitaryTech
-Filled.Minimize
-Filled.MinorCrash
-Filled.MiscellaneousServices
-Filled.Mms
-Filled.MobileFriendly
-Filled.MobileOff
-Filled.MobiledataOff
-Filled.Mode
-Filled.ModeComment
-Filled.ModeEdit
-Filled.ModeEditOutline
-Filled.ModeFanOff
-Filled.ModeNight
-Filled.ModeOfTravel
-Filled.ModeStandby
-Filled.ModelTraining
-Filled.MonetizationOn
-Filled.Money
-Filled.MoneyOff
-Filled.MoneyOffCsred
-Filled.Monitor
-Filled.MonitorHeart
-Filled.MonitorWeight
-Filled.MonochromePhotos
-Filled.Mood
-Filled.MoodBad
-Filled.Moped
-Filled.MoreHoriz
-Filled.MoreTime
-Filled.MoreVert
-Filled.Mosque
-Filled.MotionPhotosAuto
-Filled.MotionPhotosOff
-Filled.MotionPhotosOn
-Filled.MotionPhotosPause
-Filled.MotionPhotosPaused
-Filled.Motorcycle
-Filled.Mouse
-Filled.MoveDown
-Filled.MoveToInbox
-Filled.MoveUp
-Filled.Movie
-Filled.MovieCreation
-Filled.MovieFilter
-Filled.Moving
-Filled.Mp
-Filled.MultipleStop
-Filled.Museum
-Filled.MusicNote
-Filled.MusicOff
-Filled.MusicVideo
-Filled.MyLocation
-Filled.Nat
-Filled.Nature
-Filled.NaturePeople
-Filled.Navigation
-Filled.NearMe
-Filled.NearMeDisabled
-Filled.NearbyError
-Filled.NearbyOff
-Filled.NestCamWiredStand
-Filled.NetworkCell
-Filled.NetworkCheck
-Filled.NetworkLocked
-Filled.NetworkPing
-Filled.NetworkWifi
-Filled.NetworkWifi1Bar
-Filled.NetworkWifi2Bar
-Filled.NetworkWifi3Bar
-Filled.NewLabel
-Filled.NewReleases
-Filled.Newspaper
-Filled.Nfc
-Filled.NightShelter
-Filled.Nightlife
-Filled.Nightlight
-Filled.NightlightRound
-Filled.NightsStay
-Filled.NoAccounts
-Filled.NoAdultContent
-Filled.NoBackpack
-Filled.NoCell
-Filled.NoCrash
-Filled.NoDrinks
-Filled.NoEncryption
-Filled.NoEncryptionGmailerrorred
-Filled.NoFlash
-Filled.NoFood
-Filled.NoLuggage
-Filled.NoMeals
-Filled.NoMeetingRoom
-Filled.NoPhotography
-Filled.NoSim
-Filled.NoStroller
-Filled.NoTransfer
-Filled.NoiseAware
-Filled.NoiseControlOff
-Filled.NordicWalking
-Filled.North
-Filled.NorthEast
-Filled.NorthWest
-Filled.NotAccessible
-Filled.NotInterested
-Filled.NotStarted
-Filled.NoteAlt
-Filled.NotificationAdd
-Filled.NotificationImportant
-Filled.Notifications
-Filled.NotificationsActive
-Filled.NotificationsNone
-Filled.NotificationsOff
-Filled.NotificationsPaused
-Filled.Numbers
-Filled.OfflineBolt
-Filled.OfflinePin
-Filled.OilBarrel
-Filled.OnDeviceTraining
-Filled.OndemandVideo
-Filled.OnlinePrediction
-Filled.Opacity
-Filled.OpenInBrowser
-Filled.OpenInFull
-Filled.OpenInNewOff
-Filled.OpenWith
-Filled.OtherHouses
-Filled.Outbond
-Filled.Outbox
-Filled.OutdoorGrill
-Filled.Outlet
-Filled.OutlinedFlag
-Filled.Output
-Filled.Padding
-Filled.Pages
-Filled.Pageview
-Filled.Paid
-Filled.Palette
-Filled.PanTool
-Filled.PanToolAlt
-Filled.Panorama
-Filled.PanoramaFishEye
-Filled.PanoramaHorizontal
-Filled.PanoramaHorizontalSelect
-Filled.PanoramaPhotosphere
-Filled.PanoramaPhotosphereSelect
-Filled.PanoramaVertical
-Filled.PanoramaVerticalSelect
-Filled.PanoramaWideAngle
-Filled.PanoramaWideAngleSelect
-Filled.Paragliding
-Filled.Park
-Filled.PartyMode
-Filled.Password
-Filled.Pattern
-Filled.Pause
-Filled.PauseCircle
-Filled.PauseCircleFilled
-Filled.PauseCircleOutline
-Filled.PausePresentation
-Filled.Payment
-Filled.Payments
-Filled.PedalBike
-Filled.Pending
-Filled.PendingActions
-Filled.Pentagon
-Filled.People
-Filled.PeopleAlt
-Filled.PeopleOutline
-Filled.Percent
-Filled.PermCameraMic
-Filled.PermContactCalendar
-Filled.PermDataSetting
-Filled.PermDeviceInformation
-Filled.PermIdentity
-Filled.PermMedia
-Filled.PermPhoneMsg
-Filled.PermScanWifi
-Filled.Person
-Filled.Person2
-Filled.Person3
-Filled.Person4
-Filled.PersonAdd
-Filled.PersonAddAlt
-Filled.PersonAddAlt1
-Filled.PersonAddDisabled
-Filled.PersonOff
-Filled.PersonOutline
-Filled.PersonPin
-Filled.PersonPinCircle
-Filled.PersonRemove
-Filled.PersonRemoveAlt1
-Filled.PersonSearch
-Filled.PersonalInjury
-Filled.PersonalVideo
-Filled.PestControl
-Filled.PestControlRodent
-Filled.Pets
-Filled.Phishing
-Filled.Phone
-Filled.PhoneAndroid
-Filled.PhoneBluetoothSpeaker
-Filled.PhoneDisabled
-Filled.PhoneEnabled
-Filled.PhoneInTalk
-Filled.PhoneIphone
-Filled.PhoneLocked
-Filled.PhonePaused
-Filled.Phonelink
-Filled.PhonelinkErase
-Filled.PhonelinkLock
-Filled.PhonelinkOff
-Filled.PhonelinkRing
-Filled.PhonelinkSetup
-Filled.Photo
-Filled.PhotoAlbum
-Filled.PhotoCamera
-Filled.PhotoCameraBack
-Filled.PhotoCameraFront
-Filled.PhotoFilter
-Filled.PhotoLibrary
-Filled.PhotoSizeSelectActual
-Filled.PhotoSizeSelectLarge
-Filled.PhotoSizeSelectSmall
-Filled.Php
-Filled.Piano
-Filled.PianoOff
-Filled.PictureAsPdf
-Filled.PictureInPicture
-Filled.PictureInPictureAlt
-Filled.PieChart
-Filled.PieChartOutline
-Filled.Pin
-Filled.PinDrop
-Filled.PinEnd
-Filled.PinInvoke
-Filled.Pinch
-Filled.PivotTableChart
-Filled.Pix
-Filled.Place
-Filled.Plagiarism
-Filled.PlayArrow
-Filled.PlayCircle
-Filled.PlayCircleFilled
-Filled.PlayCircleOutline
-Filled.PlayDisabled
-Filled.PlayForWork
-Filled.PlayLesson
-Filled.PlaylistAddCheckCircle
-Filled.PlaylistAddCircle
-Filled.PlaylistRemove
-Filled.Plumbing
-Filled.PlusOne
-Filled.Podcasts
-Filled.PointOfSale
-Filled.Policy
-Filled.Poll
-Filled.Polyline
-Filled.Polymer
-Filled.Pool
-Filled.PortableWifiOff
-Filled.Portrait
-Filled.PostAdd
-Filled.Power
-Filled.PowerInput
-Filled.PowerOff
-Filled.PowerSettingsNew
-Filled.PrecisionManufacturing
-Filled.PregnantWoman
-Filled.PresentToAll
-Filled.Preview
-Filled.PriceChange
-Filled.PriceCheck
-Filled.Print
-Filled.PrintDisabled
-Filled.PriorityHigh
-Filled.PrivacyTip
-Filled.PrivateConnectivity
-Filled.ProductionQuantityLimits
-Filled.Propane
-Filled.PropaneTank
-Filled.Psychology
-Filled.PsychologyAlt
-Filled.Public
-Filled.PublicOff
-Filled.Publish
-Filled.PublishedWithChanges
-Filled.PunchClock
-Filled.PushPin
-Filled.QrCode
-Filled.QrCode2
-Filled.QrCodeScanner
-Filled.QueryBuilder
-Filled.QueryStats
-Filled.QuestionAnswer
-Filled.QuestionMark
-Filled.Queue
-Filled.QueuePlayNext
-Filled.Quickreply
-Filled.Quiz
-Filled.RMobiledata
-Filled.Radar
-Filled.Radio
-Filled.RadioButtonChecked
-Filled.RadioButtonUnchecked
-Filled.RailwayAlert
-Filled.RamenDining
-Filled.RampLeft
-Filled.RampRight
-Filled.RateReview
-Filled.RawOff
-Filled.RawOn
-Filled.RealEstateAgent
-Filled.Receipt
-Filled.RecentActors
-Filled.Recommend
-Filled.RecordVoiceOver
-Filled.Rectangle
-Filled.Recycling
-Filled.Redeem
-Filled.ReduceCapacity
-Filled.Refresh
-Filled.RememberMe
-Filled.Remove
-Filled.RemoveCircle
-Filled.RemoveCircleOutline
-Filled.RemoveDone
-Filled.RemoveFromQueue
-Filled.RemoveModerator
-Filled.RemoveRedEye
-Filled.RemoveRoad
-Filled.RemoveShoppingCart
-Filled.Reorder
-Filled.Repartition
-Filled.Repeat
-Filled.RepeatOn
-Filled.RepeatOne
-Filled.RepeatOneOn
-Filled.Replay
-Filled.Replay10
-Filled.Replay30
-Filled.Replay5
-Filled.ReplayCircleFilled
-Filled.Report
-Filled.ReportGmailerrorred
-Filled.ReportOff
-Filled.ReportProblem
-Filled.RequestPage
-Filled.RequestQuote
-Filled.ResetTv
-Filled.RestartAlt
-Filled.Restaurant
-Filled.RestaurantMenu
-Filled.Restore
-Filled.RestoreFromTrash
-Filled.RestorePage
-Filled.Reviews
-Filled.RiceBowl
-Filled.RingVolume
-Filled.Rocket
-Filled.RocketLaunch
-Filled.RollerShades
-Filled.RollerShadesClosed
-Filled.RollerSkating
-Filled.Roofing
-Filled.Room
-Filled.RoomPreferences
-Filled.RoomService
-Filled.Rotate90DegreesCcw
-Filled.Rotate90DegreesCw
-Filled.RoundaboutLeft
-Filled.RoundaboutRight
-Filled.RoundedCorner
-Filled.Route
-Filled.Router
-Filled.Rowing
-Filled.RssFeed
-Filled.Rsvp
-Filled.RuleFolder
-Filled.RunCircle
-Filled.RunningWithErrors
-Filled.RvHookup
-Filled.SafetyCheck
-Filled.SafetyDivider
-Filled.Sailing
-Filled.Sanitizer
-Filled.Satellite
-Filled.SatelliteAlt
-Filled.Save
-Filled.SaveAlt
-Filled.SaveAs
-Filled.SavedSearch
-Filled.Savings
-Filled.Scale
-Filled.Scanner
-Filled.ScatterPlot
-Filled.Schedule
-Filled.Schema
-Filled.School
-Filled.Science
-Filled.Score
-Filled.Scoreboard
-Filled.ScreenLockLandscape
-Filled.ScreenLockPortrait
-Filled.ScreenLockRotation
-Filled.ScreenRotation
-Filled.ScreenRotationAlt
-Filled.ScreenSearchDesktop
-Filled.Screenshot
-Filled.ScreenshotMonitor
-Filled.ScubaDiving
-Filled.Sd
-Filled.SdCard
-Filled.SdCardAlert
-Filled.SdStorage
-Filled.Search
-Filled.SearchOff
-Filled.Security
-Filled.SecurityUpdate
-Filled.SecurityUpdateGood
-Filled.SecurityUpdateWarning
-Filled.SelectAll
-Filled.SelfImprovement
-Filled.Sell
-Filled.SendTimeExtension
-Filled.SensorDoor
-Filled.SensorOccupied
-Filled.SensorWindow
-Filled.Sensors
-Filled.SensorsOff
-Filled.SentimentDissatisfied
-Filled.SentimentNeutral
-Filled.SentimentSatisfied
-Filled.SentimentSatisfiedAlt
-Filled.SentimentVeryDissatisfied
-Filled.SentimentVerySatisfied
-Filled.SetMeal
-Filled.Settings
-Filled.SettingsAccessibility
-Filled.SettingsApplications
-Filled.SettingsBackupRestore
-Filled.SettingsBluetooth
-Filled.SettingsBrightness
-Filled.SettingsCell
-Filled.SettingsEthernet
-Filled.SettingsInputAntenna
-Filled.SettingsInputComponent
-Filled.SettingsInputComposite
-Filled.SettingsInputHdmi
-Filled.SettingsInputSvideo
-Filled.SettingsOverscan
-Filled.SettingsPhone
-Filled.SettingsPower
-Filled.SettingsRemote
-Filled.SettingsSuggest
-Filled.SettingsSystemDaydream
-Filled.SettingsVoice
-Filled.SevereCold
-Filled.ShapeLine
-Filled.Share
-Filled.ShareLocation
-Filled.Shield
-Filled.ShieldMoon
-Filled.Shop
-Filled.Shop2
-Filled.ShopTwo
-Filled.ShoppingBag
-Filled.ShoppingBasket
-Filled.ShoppingCart
-Filled.ShoppingCartCheckout
-Filled.Shower
-Filled.Shuffle
-Filled.ShuffleOn
-Filled.ShutterSpeed
-Filled.Sick
-Filled.SignLanguage
-Filled.SignalCellular0Bar
-Filled.SignalCellular4Bar
-Filled.SignalCellularAlt
-Filled.SignalCellularAlt1Bar
-Filled.SignalCellularAlt2Bar
-Filled.SignalCellularConnectedNoInternet0Bar
-Filled.SignalCellularConnectedNoInternet4Bar
-Filled.SignalCellularNoSim
-Filled.SignalCellularNodata
-Filled.SignalCellularNull
-Filled.SignalCellularOff
-Filled.SignalWifi0Bar
-Filled.SignalWifi4Bar
-Filled.SignalWifi4BarLock
-Filled.SignalWifiBad
-Filled.SignalWifiConnectedNoInternet4
-Filled.SignalWifiOff
-Filled.SignalWifiStatusbar4Bar
-Filled.SignalWifiStatusbarConnectedNoInternet4
-Filled.SignalWifiStatusbarNull
-Filled.Signpost
-Filled.SimCard
-Filled.SimCardAlert
-Filled.SimCardDownload
-Filled.SingleBed
-Filled.Sip
-Filled.Skateboarding
-Filled.SkipNext
-Filled.SkipPrevious
-Filled.Sledding
-Filled.Slideshow
-Filled.SlowMotionVideo
-Filled.SmartButton
-Filled.SmartDisplay
-Filled.SmartScreen
-Filled.SmartToy
-Filled.Smartphone
-Filled.SmokeFree
-Filled.SmokingRooms
-Filled.Sms
-Filled.SmsFailed
-Filled.SnippetFolder
-Filled.Snooze
-Filled.Snowboarding
-Filled.Snowmobile
-Filled.Snowshoeing
-Filled.Soap
-Filled.SocialDistance
-Filled.SolarPower
-Filled.SortByAlpha
-Filled.Sos
-Filled.SoupKitchen
-Filled.Source
-Filled.South
-Filled.SouthAmerica
-Filled.SouthEast
-Filled.SouthWest
-Filled.Spa
-Filled.SpaceBar
-Filled.SpaceDashboard
-Filled.SpatialAudio
-Filled.SpatialAudioOff
-Filled.SpatialTracking
-Filled.Speaker
-Filled.SpeakerGroup
-Filled.SpeakerNotesOff
-Filled.SpeakerPhone
-Filled.Speed
-Filled.Spellcheck
-Filled.Splitscreen
-Filled.Spoke
-Filled.Sports
-Filled.SportsBar
-Filled.SportsBaseball
-Filled.SportsBasketball
-Filled.SportsCricket
-Filled.SportsEsports
-Filled.SportsFootball
-Filled.SportsGolf
-Filled.SportsGymnastics
-Filled.SportsHandball
-Filled.SportsHockey
-Filled.SportsKabaddi
-Filled.SportsMartialArts
-Filled.SportsMma
-Filled.SportsMotorsports
-Filled.SportsRugby
-Filled.SportsScore
-Filled.SportsSoccer
-Filled.SportsTennis
-Filled.SportsVolleyball
-Filled.Square
-Filled.SquareFoot
-Filled.SsidChart
-Filled.StackedBarChart
-Filled.StackedLineChart
-Filled.Stadium
-Filled.Stairs
-Filled.Star
-Filled.StarBorder
-Filled.StarBorderPurple500
-Filled.StarOutline
-Filled.StarPurple500
-Filled.StarRate
-Filled.Stars
-Filled.Start
-Filled.StayCurrentLandscape
-Filled.StayCurrentPortrait
-Filled.StayPrimaryLandscape
-Filled.StayPrimaryPortrait
-Filled.Stop
-Filled.StopCircle
-Filled.Storage
-Filled.Store
-Filled.StoreMallDirectory
-Filled.Storefront
-Filled.Storm
-Filled.Straight
-Filled.Straighten
-Filled.Stream
-Filled.Streetview
-Filled.StrikethroughS
-Filled.Stroller
-Filled.Style
-Filled.SubdirectoryArrowLeft
-Filled.SubdirectoryArrowRight
-Filled.Subscript
-Filled.Subscriptions
-Filled.Subtitles
-Filled.SubtitlesOff
-Filled.Subway
-Filled.Summarize
-Filled.Superscript
-Filled.SupervisedUserCircle
-Filled.SupervisorAccount
-Filled.Support
-Filled.SupportAgent
-Filled.Surfing
-Filled.SurroundSound
-Filled.SwapCalls
-Filled.SwapHoriz
-Filled.SwapHorizontalCircle
-Filled.SwapVert
-Filled.SwapVerticalCircle
-Filled.Swipe
-Filled.SwipeDown
-Filled.SwipeDownAlt
-Filled.SwipeLeft
-Filled.SwipeLeftAlt
-Filled.SwipeRight
-Filled.SwipeRightAlt
-Filled.SwipeUp
-Filled.SwipeUpAlt
-Filled.SwipeVertical
-Filled.SwitchAccessShortcut
-Filled.SwitchAccessShortcutAdd
-Filled.SwitchAccount
-Filled.SwitchCamera
-Filled.SwitchLeft
-Filled.SwitchRight
-Filled.SwitchVideo
-Filled.Synagogue
-Filled.Sync
-Filled.SyncAlt
-Filled.SyncDisabled
-Filled.SyncLock
-Filled.SyncProblem
-Filled.SystemSecurityUpdate
-Filled.SystemSecurityUpdateGood
-Filled.SystemSecurityUpdateWarning
-Filled.SystemUpdate
-Filled.SystemUpdateAlt
-Filled.Tab
-Filled.TabUnselected
-Filled.TableBar
-Filled.TableChart
-Filled.TableRestaurant
-Filled.TableRows
-Filled.TableView
-Filled.Tablet
-Filled.TabletAndroid
-Filled.TabletMac
-Filled.Tag
-Filled.TagFaces
-Filled.TakeoutDining
-Filled.TapAndPlay
-Filled.Tapas
-Filled.Task
-Filled.TaskAlt
-Filled.TaxiAlert
-Filled.TempleBuddhist
-Filled.TempleHindu
-Filled.Terminal
-Filled.Terrain
-Filled.TextDecrease
-Filled.TextFields
-Filled.TextFormat
-Filled.TextIncrease
-Filled.TextRotateUp
-Filled.TextRotateVertical
-Filled.TextRotationAngledown
-Filled.TextRotationAngleup
-Filled.TextRotationDown
-Filled.TextRotationNone
-Filled.Textsms
-Filled.Texture
-Filled.TheaterComedy
-Filled.Theaters
-Filled.Thermostat
-Filled.ThermostatAuto
-Filled.ThumbDown
-Filled.ThumbDownAlt
-Filled.ThumbDownOffAlt
-Filled.ThumbUp
-Filled.ThumbUpAlt
-Filled.ThumbUpOffAlt
-Filled.ThumbsUpDown
-Filled.Thunderstorm
-Filled.TimeToLeave
-Filled.Timelapse
-Filled.Timeline
-Filled.Timer
-Filled.Timer10
-Filled.Timer10Select
-Filled.Timer3
-Filled.Timer3Select
-Filled.TimerOff
-Filled.TipsAndUpdates
-Filled.TireRepair
-Filled.Title
-Filled.Today
-Filled.ToggleOff
-Filled.ToggleOn
-Filled.Token
-Filled.Toll
-Filled.Tonality
-Filled.Topic
-Filled.Tornado
-Filled.TouchApp
-Filled.Tour
-Filled.Toys
-Filled.TrackChanges
-Filled.Traffic
-Filled.Train
-Filled.Tram
-Filled.Transcribe
-Filled.TransferWithinAStation
-Filled.Transform
-Filled.Transgender
-Filled.TransitEnterexit
-Filled.Translate
-Filled.TravelExplore
-Filled.TripOrigin
-Filled.Troubleshoot
-Filled.Try
-Filled.Tsunami
-Filled.Tty
-Filled.Tune
-Filled.Tungsten
-Filled.TurnLeft
-Filled.TurnRight
-Filled.TurnSharpLeft
-Filled.TurnSharpRight
-Filled.TurnSlightLeft
-Filled.TurnSlightRight
-Filled.TurnedIn
-Filled.TurnedInNot
-Filled.Tv
-Filled.TvOff
-Filled.TwoWheeler
-Filled.TypeSpecimen
-Filled.UTurnLeft
-Filled.UTurnRight
-Filled.Umbrella
-Filled.Unarchive
-Filled.UnfoldLess
-Filled.UnfoldLessDouble
-Filled.UnfoldMore
-Filled.UnfoldMoreDouble
-Filled.Unpublished
-Filled.Unsubscribe
-Filled.Upcoming
-Filled.Update
-Filled.UpdateDisabled
-Filled.Upgrade
-Filled.Upload
-Filled.UploadFile
-Filled.Usb
-Filled.UsbOff
-Filled.Vaccines
-Filled.VapeFree
-Filled.VapingRooms
-Filled.Verified
-Filled.VerifiedUser
-Filled.VerticalAlignBottom
-Filled.VerticalAlignCenter
-Filled.VerticalAlignTop
-Filled.VerticalDistribute
-Filled.VerticalShades
-Filled.VerticalShadesClosed
-Filled.VerticalSplit
-Filled.Vibration
-Filled.VideoCall
-Filled.VideoCameraBack
-Filled.VideoCameraFront
-Filled.VideoChat
-Filled.VideoFile
-Filled.VideoLabel
-Filled.VideoLibrary
-Filled.VideoSettings
-Filled.VideoStable
-Filled.Videocam
-Filled.VideocamOff
-Filled.VideogameAsset
-Filled.VideogameAssetOff
-Filled.ViewAgenda
-Filled.ViewArray
-Filled.ViewCarousel
-Filled.ViewColumn
-Filled.ViewComfy
-Filled.ViewComfyAlt
-Filled.ViewCompact
-Filled.ViewCompactAlt
-Filled.ViewCozy
-Filled.ViewDay
-Filled.ViewHeadline
-Filled.ViewInAr
-Filled.ViewKanban
-Filled.ViewModule
-Filled.ViewStream
-Filled.ViewTimeline
-Filled.ViewWeek
-Filled.Vignette
-Filled.Villa
-Filled.Visibility
-Filled.VisibilityOff
-Filled.VoiceChat
-Filled.VoiceOverOff
-Filled.Voicemail
-Filled.Volcano
-Filled.VolunteerActivism
-Filled.VpnKey
-Filled.VpnKeyOff
-Filled.VpnLock
-Filled.Vrpano
-Filled.Wallet
-Filled.Wallpaper
-Filled.Warehouse
-Filled.Warning
-Filled.WarningAmber
-Filled.Wash
-Filled.Watch
-Filled.WatchLater
-Filled.WatchOff
-Filled.Water
-Filled.WaterDamage
-Filled.WaterDrop
-Filled.WaterfallChart
-Filled.Waves
-Filled.WavingHand
-Filled.WbAuto
-Filled.WbCloudy
-Filled.WbIncandescent
-Filled.WbIridescent
-Filled.WbShade
-Filled.WbSunny
-Filled.WbTwilight
-Filled.Wc
-Filled.Web
-Filled.WebAsset
-Filled.WebAssetOff
-Filled.WebStories
-Filled.Webhook
-Filled.Weekend
-Filled.West
-Filled.Whatsapp
-Filled.Whatshot
-Filled.WheelchairPickup
-Filled.WhereToVote
-Filled.Widgets
-Filled.WidthFull
-Filled.WidthNormal
-Filled.WidthWide
-Filled.Wifi
-Filled.Wifi1Bar
-Filled.Wifi2Bar
-Filled.WifiCalling
-Filled.WifiCalling3
-Filled.WifiChannel
-Filled.WifiFind
-Filled.WifiLock
-Filled.WifiOff
-Filled.WifiPassword
-Filled.WifiProtectedSetup
-Filled.WifiTethering
-Filled.WifiTetheringError
-Filled.WifiTetheringErrorRounded
-Filled.WifiTetheringOff
-Filled.WindPower
-Filled.Window
-Filled.WineBar
-Filled.Woman
-Filled.Woman2
-Filled.Work
-Filled.WorkHistory
-Filled.WorkOff
-Filled.WorkOutline
-Filled.WorkspacePremium
-Filled.Workspaces
-Filled.WrongLocation
-Filled.Yard
-Filled.YoutubeSearchedFor
-Filled.ZoomIn
-Filled.ZoomInMap
-Filled.ZoomOut
-Filled.ZoomOutMap
-Filled._10k
-Filled._10mp
-Filled._11mp
-Filled._123
-Filled._12mp
-Filled._13mp
-Filled._14mp
-Filled._15mp
-Filled._16mp
-Filled._17mp
-Filled._18UpRating
-Filled._18mp
-Filled._19mp
-Filled._1k
-Filled._1kPlus
-Filled._1xMobiledata
-Filled._20mp
-Filled._21mp
-Filled._22mp
-Filled._23mp
-Filled._24mp
-Filled._2k
-Filled._2kPlus
-Filled._2mp
-Filled._30fps
-Filled._30fpsSelect
-Filled._3dRotation
-Filled._3gMobiledata
-Filled._3k
-Filled._3kPlus
-Filled._3mp
-Filled._3p
-Filled._4gMobiledata
-Filled._4gPlusMobiledata
-Filled._4k
-Filled._4kPlus
-Filled._4mp
-Filled._5g
-Filled._5k
-Filled._5kPlus
-Filled._5mp
-Filled._60fps
-Filled._60fpsSelect
-Filled._6FtApart
-Filled._6k
-Filled._6kPlus
-Filled._6mp
-Filled._7k
-Filled._7kPlus
-Filled._7mp
-Filled._8k
-Filled._8kPlus
-Filled._8mp
-Filled._9k
-Filled._9kPlus
-Filled._9mp
-Outlined.Abc
-Outlined.AcUnit
-Outlined.AccessAlarm
-Outlined.AccessAlarms
-Outlined.AccessTime
-Outlined.AccessTimeFilled
-Outlined.Accessibility
-Outlined.AccessibilityNew
-Outlined.AccountBalance
-Outlined.AccountBalanceWallet
-Outlined.AccountBox
-Outlined.AccountCircle
-Outlined.AccountTree
-Outlined.AdUnits
-Outlined.Adb
-Outlined.Add
-Outlined.AddAPhoto
-Outlined.AddAlarm
-Outlined.AddAlert
-Outlined.AddBox
-Outlined.AddBusiness
-Outlined.AddCard
-Outlined.AddChart
-Outlined.AddCircle
-Outlined.AddCircleOutline
-Outlined.AddComment
-Outlined.AddHome
-Outlined.AddHomeWork
-Outlined.AddIcCall
-Outlined.AddLink
-Outlined.AddLocation
-Outlined.AddLocationAlt
-Outlined.AddModerator
-Outlined.AddPhotoAlternate
-Outlined.AddReaction
-Outlined.AddRoad
-Outlined.AddShoppingCart
-Outlined.AddTask
-Outlined.AddToDrive
-Outlined.AddToPhotos
-Outlined.AddToQueue
-Outlined.Addchart
-Outlined.AdfScanner
-Outlined.Adjust
-Outlined.AdminPanelSettings
-Outlined.AdsClick
-Outlined.Agriculture
-Outlined.Air
-Outlined.AirlineSeatFlat
-Outlined.AirlineSeatFlatAngled
-Outlined.AirlineSeatIndividualSuite
-Outlined.AirlineSeatLegroomExtra
-Outlined.AirlineSeatLegroomNormal
-Outlined.AirlineSeatLegroomReduced
-Outlined.AirlineSeatReclineExtra
-Outlined.AirlineSeatReclineNormal
-Outlined.AirlineStops
-Outlined.Airlines
-Outlined.AirplanemodeActive
-Outlined.AirplanemodeInactive
-Outlined.Airplay
-Outlined.AirportShuttle
-Outlined.Alarm
-Outlined.AlarmAdd
-Outlined.AlarmOff
-Outlined.AlarmOn
-Outlined.Album
-Outlined.AlignHorizontalCenter
-Outlined.AlignVerticalBottom
-Outlined.AlignVerticalCenter
-Outlined.AlignVerticalTop
-Outlined.AllInbox
-Outlined.AllInclusive
-Outlined.AllOut
-Outlined.AlternateEmail
-Outlined.AmpStories
-Outlined.Analytics
-Outlined.Anchor
-Outlined.Android
-Outlined.Animation
-Outlined.Aod
-Outlined.Apartment
-Outlined.Api
-Outlined.AppBlocking
-Outlined.AppRegistration
-Outlined.AppSettingsAlt
-Outlined.AppShortcut
-Outlined.Approval
-Outlined.Apps
-Outlined.AppsOutage
-Outlined.Architecture
-Outlined.Archive
-Outlined.AreaChart
-Outlined.ArrowBackIosNew
-Outlined.ArrowCircleDown
-Outlined.ArrowCircleLeft
-Outlined.ArrowCircleRight
-Outlined.ArrowCircleUp
-Outlined.ArrowDownward
-Outlined.ArrowDropDown
-Outlined.ArrowDropDownCircle
-Outlined.ArrowDropUp
-Outlined.ArrowOutward
-Outlined.ArrowUpward
-Outlined.ArtTrack
-Outlined.AspectRatio
-Outlined.Assessment
-Outlined.AssignmentInd
-Outlined.AssignmentLate
-Outlined.AssignmentReturned
-Outlined.AssignmentTurnedIn
-Outlined.AssistWalker
-Outlined.Assistant
-Outlined.AssistantPhoto
-Outlined.AssuredWorkload
-Outlined.Atm
-Outlined.AttachEmail
-Outlined.AttachFile
-Outlined.AttachMoney
-Outlined.Attachment
-Outlined.Attractions
-Outlined.Attribution
-Outlined.AudioFile
-Outlined.Audiotrack
-Outlined.AutoAwesome
-Outlined.AutoAwesomeMosaic
-Outlined.AutoAwesomeMotion
-Outlined.AutoDelete
-Outlined.AutoFixHigh
-Outlined.AutoFixNormal
-Outlined.AutoFixOff
-Outlined.AutoGraph
-Outlined.AutoMode
-Outlined.AutoStories
-Outlined.AutofpsSelect
-Outlined.Autorenew
-Outlined.AvTimer
-Outlined.BabyChangingStation
-Outlined.BackHand
-Outlined.Backpack
-Outlined.Backup
-Outlined.BackupTable
-Outlined.Badge
-Outlined.BakeryDining
-Outlined.Balance
-Outlined.Balcony
-Outlined.Ballot
-Outlined.BarChart
-Outlined.BatchPrediction
-Outlined.Bathroom
-Outlined.Bathtub
-Outlined.Battery0Bar
-Outlined.Battery1Bar
-Outlined.Battery2Bar
-Outlined.Battery3Bar
-Outlined.Battery4Bar
-Outlined.Battery5Bar
-Outlined.Battery6Bar
-Outlined.BatteryAlert
-Outlined.BatteryChargingFull
-Outlined.BatteryFull
-Outlined.BatterySaver
-Outlined.BatteryStd
-Outlined.BeachAccess
-Outlined.Bed
-Outlined.BedroomBaby
-Outlined.BedroomChild
-Outlined.BedroomParent
-Outlined.Bedtime
-Outlined.BedtimeOff
-Outlined.Beenhere
-Outlined.Bento
-Outlined.BikeScooter
-Outlined.Biotech
-Outlined.Blender
-Outlined.Blind
-Outlined.Blinds
-Outlined.BlindsClosed
-Outlined.Block
-Outlined.Bloodtype
-Outlined.Bluetooth
-Outlined.BluetoothAudio
-Outlined.BluetoothConnected
-Outlined.BluetoothDisabled
-Outlined.BluetoothDrive
-Outlined.BlurCircular
-Outlined.BlurLinear
-Outlined.BlurOff
-Outlined.BlurOn
-Outlined.Bolt
-Outlined.Book
-Outlined.BookOnline
-Outlined.Bookmark
-Outlined.BookmarkAdd
-Outlined.BookmarkAdded
-Outlined.BookmarkBorder
-Outlined.BookmarkRemove
-Outlined.Bookmarks
-Outlined.BorderAll
-Outlined.BorderBottom
-Outlined.BorderClear
-Outlined.BorderColor
-Outlined.BorderHorizontal
-Outlined.BorderInner
-Outlined.BorderLeft
-Outlined.BorderOuter
-Outlined.BorderRight
-Outlined.BorderStyle
-Outlined.BorderTop
-Outlined.BorderVertical
-Outlined.Boy
-Outlined.BreakfastDining
-Outlined.Brightness1
-Outlined.Brightness2
-Outlined.Brightness3
-Outlined.Brightness4
-Outlined.Brightness5
-Outlined.Brightness6
-Outlined.Brightness7
-Outlined.BrightnessAuto
-Outlined.BrightnessHigh
-Outlined.BrightnessLow
-Outlined.BrightnessMedium
-Outlined.BroadcastOnHome
-Outlined.BroadcastOnPersonal
-Outlined.BrokenImage
-Outlined.BrowseGallery
-Outlined.BrowserNotSupported
-Outlined.BrowserUpdated
-Outlined.BrunchDining
-Outlined.Brush
-Outlined.BubbleChart
-Outlined.BugReport
-Outlined.Build
-Outlined.BuildCircle
-Outlined.Bungalow
-Outlined.BurstMode
-Outlined.BusAlert
-Outlined.Business
-Outlined.BusinessCenter
-Outlined.Cabin
-Outlined.Cable
-Outlined.Cached
-Outlined.Cake
-Outlined.Calculate
-Outlined.CalendarMonth
-Outlined.CalendarToday
-Outlined.CalendarViewDay
-Outlined.CalendarViewMonth
-Outlined.CalendarViewWeek
-Outlined.Call
-Outlined.CallEnd
-Outlined.CallToAction
-Outlined.Camera
-Outlined.CameraAlt
-Outlined.CameraEnhance
-Outlined.CameraFront
-Outlined.CameraIndoor
-Outlined.CameraOutdoor
-Outlined.CameraRear
-Outlined.CameraRoll
-Outlined.Cameraswitch
-Outlined.Campaign
-Outlined.Cancel
-Outlined.CancelPresentation
-Outlined.CancelScheduleSend
-Outlined.CandlestickChart
-Outlined.CarCrash
-Outlined.CarRental
-Outlined.CarRepair
-Outlined.CardGiftcard
-Outlined.CardMembership
-Outlined.CardTravel
-Outlined.Carpenter
-Outlined.Cases
-Outlined.Casino
-Outlined.Cast
-Outlined.CastConnected
-Outlined.CastForEducation
-Outlined.Castle
-Outlined.CatchingPokemon
-Outlined.Category
-Outlined.Celebration
-Outlined.CellTower
-Outlined.CellWifi
-Outlined.CenterFocusStrong
-Outlined.CenterFocusWeak
-Outlined.Chair
-Outlined.ChairAlt
-Outlined.Chalet
-Outlined.ChangeCircle
-Outlined.ChangeHistory
-Outlined.ChargingStation
-Outlined.ChatBubble
-Outlined.ChatBubbleOutline
-Outlined.Check
-Outlined.CheckBox
-Outlined.CheckBoxOutlineBlank
-Outlined.CheckCircle
-Outlined.CheckCircleOutline
-Outlined.Checklist
-Outlined.ChecklistRtl
-Outlined.Checkroom
-Outlined.ChevronLeft
-Outlined.ChevronRight
-Outlined.ChildCare
-Outlined.ChildFriendly
-Outlined.Church
-Outlined.Circle
-Outlined.CircleNotifications
-Outlined.Class
-Outlined.CleanHands
-Outlined.CleaningServices
-Outlined.Clear
-Outlined.ClearAll
-Outlined.Close
-Outlined.CloseFullscreen
-Outlined.ClosedCaption
-Outlined.ClosedCaptionDisabled
-Outlined.ClosedCaptionOff
-Outlined.Cloud
-Outlined.CloudCircle
-Outlined.CloudDone
-Outlined.CloudDownload
-Outlined.CloudOff
-Outlined.CloudQueue
-Outlined.CloudSync
-Outlined.CloudUpload
-Outlined.Co2
-Outlined.CoPresent
-Outlined.Code
-Outlined.CodeOff
-Outlined.Coffee
-Outlined.CoffeeMaker
-Outlined.Collections
-Outlined.CollectionsBookmark
-Outlined.ColorLens
-Outlined.Colorize
-Outlined.CommentBank
-Outlined.CommentsDisabled
-Outlined.Commit
-Outlined.Commute
-Outlined.Compare
-Outlined.CompassCalibration
-Outlined.Compost
-Outlined.Compress
-Outlined.Computer
-Outlined.ConfirmationNumber
-Outlined.ConnectWithoutContact
-Outlined.ConnectedTv
-Outlined.ConnectingAirports
-Outlined.Construction
-Outlined.ContactEmergency
-Outlined.ContactMail
-Outlined.ContactPage
-Outlined.ContactPhone
-Outlined.Contactless
-Outlined.Contacts
-Outlined.ContentCopy
-Outlined.ContentCut
-Outlined.ContentPaste
-Outlined.ContentPasteGo
-Outlined.ContentPasteOff
-Outlined.ContentPasteSearch
-Outlined.Contrast
-Outlined.ControlCamera
-Outlined.ControlPoint
-Outlined.ControlPointDuplicate
-Outlined.Cookie
-Outlined.CopyAll
-Outlined.Copyright
-Outlined.Coronavirus
-Outlined.CorporateFare
-Outlined.Cottage
-Outlined.Countertops
-Outlined.Create
-Outlined.CreateNewFolder
-Outlined.CreditCard
-Outlined.CreditCardOff
-Outlined.CreditScore
-Outlined.Crib
-Outlined.CrisisAlert
-Outlined.Crop
-Outlined.Crop169
-Outlined.Crop32
-Outlined.Crop54
-Outlined.Crop75
-Outlined.CropDin
-Outlined.CropFree
-Outlined.CropLandscape
-Outlined.CropOriginal
-Outlined.CropPortrait
-Outlined.CropRotate
-Outlined.CropSquare
-Outlined.CrueltyFree
-Outlined.Css
-Outlined.CurrencyBitcoin
-Outlined.CurrencyExchange
-Outlined.CurrencyFranc
-Outlined.CurrencyLira
-Outlined.CurrencyPound
-Outlined.CurrencyRuble
-Outlined.CurrencyRupee
-Outlined.CurrencyYen
-Outlined.CurrencyYuan
-Outlined.Curtains
-Outlined.CurtainsClosed
-Outlined.Cyclone
-Outlined.Dangerous
-Outlined.DarkMode
-Outlined.Dashboard
-Outlined.DashboardCustomize
-Outlined.DataArray
-Outlined.DataExploration
-Outlined.DataObject
-Outlined.DataSaverOff
-Outlined.DataSaverOn
-Outlined.DataThresholding
-Outlined.DataUsage
-Outlined.Dataset
-Outlined.DatasetLinked
-Outlined.DateRange
-Outlined.Deblur
-Outlined.Deck
-Outlined.Dehaze
-Outlined.Delete
-Outlined.DeleteForever
-Outlined.DeleteOutline
-Outlined.DeleteSweep
-Outlined.DeliveryDining
-Outlined.DensityLarge
-Outlined.DensityMedium
-Outlined.DensitySmall
-Outlined.DepartureBoard
-Outlined.Description
-Outlined.Deselect
-Outlined.DesignServices
-Outlined.Desk
-Outlined.DesktopAccessDisabled
-Outlined.DesktopMac
-Outlined.DesktopWindows
-Outlined.Details
-Outlined.DeveloperBoard
-Outlined.DeveloperBoardOff
-Outlined.DeveloperMode
-Outlined.DeviceHub
-Outlined.DeviceThermostat
-Outlined.DeviceUnknown
-Outlined.Devices
-Outlined.DevicesFold
-Outlined.DevicesOther
-Outlined.DialerSip
-Outlined.Dialpad
-Outlined.Diamond
-Outlined.Difference
-Outlined.Dining
-Outlined.DinnerDining
-Outlined.Directions
-Outlined.DirectionsBoat
-Outlined.DirectionsBoatFilled
-Outlined.DirectionsBus
-Outlined.DirectionsBusFilled
-Outlined.DirectionsCar
-Outlined.DirectionsCarFilled
-Outlined.DirectionsOff
-Outlined.DirectionsRailway
-Outlined.DirectionsRailwayFilled
-Outlined.DirectionsSubway
-Outlined.DirectionsSubwayFilled
-Outlined.DirectionsTransit
-Outlined.DirectionsTransitFilled
-Outlined.DirtyLens
-Outlined.DisabledByDefault
-Outlined.DisabledVisible
-Outlined.DiscFull
-Outlined.Discount
-Outlined.DisplaySettings
-Outlined.Diversity1
-Outlined.Diversity2
-Outlined.Diversity3
-Outlined.Dns
-Outlined.DoDisturb
-Outlined.DoDisturbAlt
-Outlined.DoDisturbOff
-Outlined.DoDisturbOn
-Outlined.DoNotDisturb
-Outlined.DoNotDisturbAlt
-Outlined.DoNotDisturbOff
-Outlined.DoNotDisturbOn
-Outlined.DoNotDisturbOnTotalSilence
-Outlined.DoNotStep
-Outlined.DoNotTouch
-Outlined.Dock
-Outlined.DocumentScanner
-Outlined.Domain
-Outlined.DomainAdd
-Outlined.DomainDisabled
-Outlined.DomainVerification
-Outlined.Done
-Outlined.DoneAll
-Outlined.DoneOutline
-Outlined.DonutLarge
-Outlined.DonutSmall
-Outlined.DoorBack
-Outlined.DoorFront
-Outlined.DoorSliding
-Outlined.Doorbell
-Outlined.DoubleArrow
-Outlined.DownhillSkiing
-Outlined.Download
-Outlined.DownloadDone
-Outlined.DownloadForOffline
-Outlined.Downloading
-Outlined.Drafts
-Outlined.DragHandle
-Outlined.DragIndicator
-Outlined.Draw
-Outlined.DriveEta
-Outlined.DriveFileMoveRtl
-Outlined.DriveFileRenameOutline
-Outlined.DriveFolderUpload
-Outlined.Dry
-Outlined.DryCleaning
-Outlined.Duo
-Outlined.DynamicFeed
-Outlined.DynamicForm
-Outlined.EMobiledata
-Outlined.Earbuds
-Outlined.EarbudsBattery
-Outlined.East
-Outlined.Eco
-Outlined.EdgesensorHigh
-Outlined.EdgesensorLow
-Outlined.Edit
-Outlined.EditAttributes
-Outlined.EditCalendar
-Outlined.EditLocation
-Outlined.EditLocationAlt
-Outlined.EditNote
-Outlined.EditNotifications
-Outlined.EditOff
-Outlined.EditRoad
-Outlined.Egg
-Outlined.EggAlt
-Outlined.Eject
-Outlined.Elderly
-Outlined.ElderlyWoman
-Outlined.ElectricBike
-Outlined.ElectricBolt
-Outlined.ElectricCar
-Outlined.ElectricMeter
-Outlined.ElectricMoped
-Outlined.ElectricRickshaw
-Outlined.ElectricScooter
-Outlined.ElectricalServices
-Outlined.Elevator
-Outlined.Email
-Outlined.Emergency
-Outlined.EmergencyRecording
-Outlined.EmergencyShare
-Outlined.EmojiEmotions
-Outlined.EmojiEvents
-Outlined.EmojiFlags
-Outlined.EmojiFoodBeverage
-Outlined.EmojiNature
-Outlined.EmojiObjects
-Outlined.EmojiPeople
-Outlined.EmojiSymbols
-Outlined.EmojiTransportation
-Outlined.EnergySavingsLeaf
-Outlined.Engineering
-Outlined.EnhancedEncryption
-Outlined.Equalizer
-Outlined.Error
-Outlined.ErrorOutline
-Outlined.Escalator
-Outlined.EscalatorWarning
-Outlined.Euro
-Outlined.EuroSymbol
-Outlined.EvStation
-Outlined.Event
-Outlined.EventAvailable
-Outlined.EventBusy
-Outlined.EventRepeat
-Outlined.EventSeat
-Outlined.Expand
-Outlined.ExpandCircleDown
-Outlined.ExpandLess
-Outlined.ExpandMore
-Outlined.Explicit
-Outlined.Explore
-Outlined.ExploreOff
-Outlined.Exposure
-Outlined.ExposureNeg1
-Outlined.ExposureNeg2
-Outlined.ExposurePlus1
-Outlined.ExposurePlus2
-Outlined.ExposureZero
-Outlined.Extension
-Outlined.ExtensionOff
-Outlined.Face
-Outlined.Face2
-Outlined.Face3
-Outlined.Face4
-Outlined.Face5
-Outlined.Face6
-Outlined.FaceRetouchingNatural
-Outlined.FaceRetouchingOff
-Outlined.Facebook
-Outlined.Factory
-Outlined.FamilyRestroom
-Outlined.FastForward
-Outlined.FastRewind
-Outlined.Fastfood
-Outlined.Favorite
-Outlined.FavoriteBorder
-Outlined.Fax
-Outlined.Feedback
-Outlined.Female
-Outlined.Fence
-Outlined.Festival
-Outlined.FiberDvr
-Outlined.FiberManualRecord
-Outlined.FiberNew
-Outlined.FiberPin
-Outlined.FiberSmartRecord
-Outlined.FileCopy
-Outlined.FileDownload
-Outlined.FileDownloadDone
-Outlined.FileDownloadOff
-Outlined.FileOpen
-Outlined.FilePresent
-Outlined.FileUpload
-Outlined.Filter
-Outlined.Filter1
-Outlined.Filter2
-Outlined.Filter3
-Outlined.Filter4
-Outlined.Filter5
-Outlined.Filter6
-Outlined.Filter7
-Outlined.Filter8
-Outlined.Filter9
-Outlined.Filter9Plus
-Outlined.FilterAlt
-Outlined.FilterAltOff
-Outlined.FilterBAndW
-Outlined.FilterCenterFocus
-Outlined.FilterDrama
-Outlined.FilterFrames
-Outlined.FilterHdr
-Outlined.FilterList
-Outlined.FilterListOff
-Outlined.FilterNone
-Outlined.FilterTiltShift
-Outlined.FilterVintage
-Outlined.FindInPage
-Outlined.FindReplace
-Outlined.Fingerprint
-Outlined.FireExtinguisher
-Outlined.FireHydrantAlt
-Outlined.FireTruck
-Outlined.Fireplace
-Outlined.FirstPage
-Outlined.FitScreen
-Outlined.Fitbit
-Outlined.FitnessCenter
-Outlined.Flag
-Outlined.FlagCircle
-Outlined.Flaky
-Outlined.Flare
-Outlined.FlashAuto
-Outlined.FlashOff
-Outlined.FlashOn
-Outlined.FlashlightOff
-Outlined.FlashlightOn
-Outlined.Flatware
-Outlined.Flight
-Outlined.FlightClass
-Outlined.FlightLand
-Outlined.FlightTakeoff
-Outlined.Flip
-Outlined.FlipCameraAndroid
-Outlined.FlipCameraIos
-Outlined.FlipToBack
-Outlined.FlipToFront
-Outlined.Flood
-Outlined.Flourescent
-Outlined.Fluorescent
-Outlined.FlutterDash
-Outlined.FmdBad
-Outlined.FmdGood
-Outlined.Folder
-Outlined.FolderCopy
-Outlined.FolderDelete
-Outlined.FolderOff
-Outlined.FolderOpen
-Outlined.FolderShared
-Outlined.FolderSpecial
-Outlined.FolderZip
-Outlined.FontDownload
-Outlined.FontDownloadOff
-Outlined.FoodBank
-Outlined.Forest
-Outlined.ForkLeft
-Outlined.ForkRight
-Outlined.FormatAlignCenter
-Outlined.FormatAlignJustify
-Outlined.FormatBold
-Outlined.FormatClear
-Outlined.FormatColorFill
-Outlined.FormatColorReset
-Outlined.FormatColorText
-Outlined.FormatItalic
-Outlined.FormatLineSpacing
-Outlined.FormatListNumbered
-Outlined.FormatListNumberedRtl
-Outlined.FormatOverline
-Outlined.FormatPaint
-Outlined.FormatQuote
-Outlined.FormatShapes
-Outlined.FormatSize
-Outlined.FormatStrikethrough
-Outlined.FormatUnderlined
-Outlined.Fort
-Outlined.Forum
-Outlined.Forward10
-Outlined.Forward30
-Outlined.Forward5
-Outlined.Foundation
-Outlined.FreeBreakfast
-Outlined.FreeCancellation
-Outlined.FrontHand
-Outlined.Fullscreen
-Outlined.FullscreenExit
-Outlined.Functions
-Outlined.GMobiledata
-Outlined.GTranslate
-Outlined.Gamepad
-Outlined.Games
-Outlined.Garage
-Outlined.GasMeter
-Outlined.Gavel
-Outlined.GeneratingTokens
-Outlined.Gesture
-Outlined.GetApp
-Outlined.Gif
-Outlined.GifBox
-Outlined.Girl
-Outlined.Gite
-Outlined.GolfCourse
-Outlined.GppBad
-Outlined.GppGood
-Outlined.GppMaybe
-Outlined.GpsFixed
-Outlined.GpsNotFixed
-Outlined.GpsOff
-Outlined.Grade
-Outlined.Gradient
-Outlined.Grain
-Outlined.GraphicEq
-Outlined.Grass
-Outlined.Grid3x3
-Outlined.Grid4x4
-Outlined.GridGoldenratio
-Outlined.GridOff
-Outlined.GridOn
-Outlined.GridView
-Outlined.Group
-Outlined.GroupAdd
-Outlined.GroupOff
-Outlined.GroupRemove
-Outlined.GroupWork
-Outlined.Groups
-Outlined.Groups2
-Outlined.Groups3
-Outlined.HMobiledata
-Outlined.HPlusMobiledata
-Outlined.Hail
-Outlined.Handshake
-Outlined.Handyman
-Outlined.Hardware
-Outlined.Hd
-Outlined.HdrAuto
-Outlined.HdrAutoSelect
-Outlined.HdrEnhancedSelect
-Outlined.HdrOff
-Outlined.HdrOffSelect
-Outlined.HdrOn
-Outlined.HdrOnSelect
-Outlined.HdrPlus
-Outlined.HdrStrong
-Outlined.HdrWeak
-Outlined.Headphones
-Outlined.HeadphonesBattery
-Outlined.Headset
-Outlined.HeadsetMic
-Outlined.HeadsetOff
-Outlined.Healing
-Outlined.HealthAndSafety
-Outlined.Hearing
-Outlined.HearingDisabled
-Outlined.HeartBroken
-Outlined.HeatPump
-Outlined.Height
-Outlined.Hevc
-Outlined.Hexagon
-Outlined.HideImage
-Outlined.HideSource
-Outlined.HighQuality
-Outlined.Highlight
-Outlined.HighlightAlt
-Outlined.HighlightOff
-Outlined.Hiking
-Outlined.History
-Outlined.HistoryEdu
-Outlined.HistoryToggleOff
-Outlined.Hive
-Outlined.Hls
-Outlined.HlsOff
-Outlined.HolidayVillage
-Outlined.Home
-Outlined.HomeMax
-Outlined.HomeMini
-Outlined.HomeRepairService
-Outlined.HomeWork
-Outlined.HorizontalDistribute
-Outlined.HorizontalRule
-Outlined.HorizontalSplit
-Outlined.HotTub
-Outlined.Hotel
-Outlined.HotelClass
-Outlined.HourglassBottom
-Outlined.HourglassDisabled
-Outlined.HourglassEmpty
-Outlined.HourglassFull
-Outlined.HourglassTop
-Outlined.House
-Outlined.HouseSiding
-Outlined.Houseboat
-Outlined.HowToReg
-Outlined.HowToVote
-Outlined.Html
-Outlined.Http
-Outlined.Https
-Outlined.Hub
-Outlined.Hvac
-Outlined.IceSkating
-Outlined.Icecream
-Outlined.Image
-Outlined.ImageAspectRatio
-Outlined.ImageNotSupported
-Outlined.ImageSearch
-Outlined.ImagesearchRoller
-Outlined.ImportContacts
-Outlined.ImportExport
-Outlined.ImportantDevices
-Outlined.Inbox
-Outlined.IncompleteCircle
-Outlined.IndeterminateCheckBox
-Outlined.Info
-Outlined.InsertChart
-Outlined.InsertChartOutlined
-Outlined.InsertEmoticon
-Outlined.InsertInvitation
-Outlined.InsertLink
-Outlined.InsertPageBreak
-Outlined.InsertPhoto
-Outlined.Insights
-Outlined.InstallDesktop
-Outlined.InstallMobile
-Outlined.IntegrationInstructions
-Outlined.Interests
-Outlined.InterpreterMode
-Outlined.Inventory
-Outlined.Inventory2
-Outlined.InvertColors
-Outlined.InvertColorsOff
-Outlined.IosShare
-Outlined.Iron
-Outlined.Iso
-Outlined.Javascript
-Outlined.JoinFull
-Outlined.JoinInner
-Outlined.JoinLeft
-Outlined.JoinRight
-Outlined.Kayaking
-Outlined.KebabDining
-Outlined.Key
-Outlined.KeyOff
-Outlined.Keyboard
-Outlined.KeyboardAlt
-Outlined.KeyboardArrowDown
-Outlined.KeyboardArrowUp
-Outlined.KeyboardCapslock
-Outlined.KeyboardCommandKey
-Outlined.KeyboardControlKey
-Outlined.KeyboardDoubleArrowDown
-Outlined.KeyboardDoubleArrowLeft
-Outlined.KeyboardDoubleArrowRight
-Outlined.KeyboardDoubleArrowUp
-Outlined.KeyboardHide
-Outlined.KeyboardOptionKey
-Outlined.KeyboardVoice
-Outlined.KingBed
-Outlined.Kitchen
-Outlined.Kitesurfing
-Outlined.Lan
-Outlined.Landscape
-Outlined.Landslide
-Outlined.Language
-Outlined.Laptop
-Outlined.LaptopChromebook
-Outlined.LaptopMac
-Outlined.LaptopWindows
-Outlined.Layers
-Outlined.LayersClear
-Outlined.Leaderboard
-Outlined.LeakAdd
-Outlined.LeakRemove
-Outlined.LeaveBagsAtHome
-Outlined.LegendToggle
-Outlined.Lens
-Outlined.LensBlur
-Outlined.LibraryAdd
-Outlined.LibraryAddCheck
-Outlined.LibraryMusic
-Outlined.Light
-Outlined.LightMode
-Outlined.Lightbulb
-Outlined.LightbulbCircle
-Outlined.LineAxis
-Outlined.LineStyle
-Outlined.LineWeight
-Outlined.LinearScale
-Outlined.Link
-Outlined.LinkOff
-Outlined.LinkedCamera
-Outlined.Liquor
-Outlined.LiveTv
-Outlined.Living
-Outlined.LocalActivity
-Outlined.LocalAirport
-Outlined.LocalAtm
-Outlined.LocalBar
-Outlined.LocalCafe
-Outlined.LocalCarWash
-Outlined.LocalConvenienceStore
-Outlined.LocalDining
-Outlined.LocalDrink
-Outlined.LocalFireDepartment
-Outlined.LocalFlorist
-Outlined.LocalGasStation
-Outlined.LocalGroceryStore
-Outlined.LocalHospital
-Outlined.LocalHotel
-Outlined.LocalLaundryService
-Outlined.LocalLibrary
-Outlined.LocalMall
-Outlined.LocalMovies
-Outlined.LocalOffer
-Outlined.LocalParking
-Outlined.LocalPharmacy
-Outlined.LocalPhone
-Outlined.LocalPizza
-Outlined.LocalPlay
-Outlined.LocalPolice
-Outlined.LocalPostOffice
-Outlined.LocalPrintshop
-Outlined.LocalSee
-Outlined.LocalShipping
-Outlined.LocalTaxi
-Outlined.LocationCity
-Outlined.LocationDisabled
-Outlined.LocationOff
-Outlined.LocationOn
-Outlined.LocationSearching
-Outlined.Lock
-Outlined.LockClock
-Outlined.LockOpen
-Outlined.LockPerson
-Outlined.LockReset
-Outlined.LogoDev
-Outlined.Looks
-Outlined.Looks3
-Outlined.Looks4
-Outlined.Looks5
-Outlined.Looks6
-Outlined.LooksOne
-Outlined.LooksTwo
-Outlined.Loop
-Outlined.Loupe
-Outlined.LowPriority
-Outlined.Loyalty
-Outlined.LteMobiledata
-Outlined.LtePlusMobiledata
-Outlined.Luggage
-Outlined.LunchDining
-Outlined.Lyrics
-Outlined.MacroOff
-Outlined.Mail
-Outlined.MailLock
-Outlined.MailOutline
-Outlined.Male
-Outlined.Man
-Outlined.Man2
-Outlined.Man3
-Outlined.Man4
-Outlined.ManageAccounts
-Outlined.ManageHistory
-Outlined.Map
-Outlined.MapsHomeWork
-Outlined.MapsUgc
-Outlined.Margin
-Outlined.MarkAsUnread
-Outlined.MarkChatRead
-Outlined.MarkChatUnread
-Outlined.MarkEmailRead
-Outlined.MarkEmailUnread
-Outlined.MarkUnreadChatAlt
-Outlined.Markunread
-Outlined.MarkunreadMailbox
-Outlined.Masks
-Outlined.Maximize
-Outlined.MediaBluetoothOff
-Outlined.MediaBluetoothOn
-Outlined.Mediation
-Outlined.MedicalInformation
-Outlined.MedicalServices
-Outlined.Medication
-Outlined.MeetingRoom
-Outlined.Memory
-Outlined.Menu
-Outlined.Merge
-Outlined.Mic
-Outlined.MicExternalOff
-Outlined.MicExternalOn
-Outlined.MicNone
-Outlined.MicOff
-Outlined.Microwave
-Outlined.MilitaryTech
-Outlined.Minimize
-Outlined.MinorCrash
-Outlined.MiscellaneousServices
-Outlined.Mms
-Outlined.MobileFriendly
-Outlined.MobileOff
-Outlined.MobiledataOff
-Outlined.Mode
-Outlined.ModeComment
-Outlined.ModeEdit
-Outlined.ModeEditOutline
-Outlined.ModeFanOff
-Outlined.ModeNight
-Outlined.ModeOfTravel
-Outlined.ModeStandby
-Outlined.ModelTraining
-Outlined.MonetizationOn
-Outlined.Money
-Outlined.MoneyOff
-Outlined.MoneyOffCsred
-Outlined.Monitor
-Outlined.MonitorHeart
-Outlined.MonitorWeight
-Outlined.MonochromePhotos
-Outlined.Mood
-Outlined.MoodBad
-Outlined.Moped
-Outlined.MoreHoriz
-Outlined.MoreTime
-Outlined.MoreVert
-Outlined.Mosque
-Outlined.MotionPhotosAuto
-Outlined.MotionPhotosOff
-Outlined.MotionPhotosOn
-Outlined.MotionPhotosPause
-Outlined.MotionPhotosPaused
-Outlined.Motorcycle
-Outlined.Mouse
-Outlined.MoveDown
-Outlined.MoveToInbox
-Outlined.MoveUp
-Outlined.Movie
-Outlined.MovieCreation
-Outlined.MovieFilter
-Outlined.Moving
-Outlined.Mp
-Outlined.MultipleStop
-Outlined.Museum
-Outlined.MusicNote
-Outlined.MusicOff
-Outlined.MusicVideo
-Outlined.MyLocation
-Outlined.Nat
-Outlined.Nature
-Outlined.NaturePeople
-Outlined.Navigation
-Outlined.NearMe
-Outlined.NearMeDisabled
-Outlined.NearbyError
-Outlined.NearbyOff
-Outlined.NestCamWiredStand
-Outlined.NetworkCell
-Outlined.NetworkCheck
-Outlined.NetworkLocked
-Outlined.NetworkPing
-Outlined.NetworkWifi
-Outlined.NetworkWifi1Bar
-Outlined.NetworkWifi2Bar
-Outlined.NetworkWifi3Bar
-Outlined.NewLabel
-Outlined.NewReleases
-Outlined.Newspaper
-Outlined.Nfc
-Outlined.NightShelter
-Outlined.Nightlife
-Outlined.Nightlight
-Outlined.NightlightRound
-Outlined.NightsStay
-Outlined.NoAccounts
-Outlined.NoAdultContent
-Outlined.NoBackpack
-Outlined.NoCell
-Outlined.NoCrash
-Outlined.NoDrinks
-Outlined.NoEncryption
-Outlined.NoEncryptionGmailerrorred
-Outlined.NoFlash
-Outlined.NoFood
-Outlined.NoLuggage
-Outlined.NoMeals
-Outlined.NoMeetingRoom
-Outlined.NoPhotography
-Outlined.NoSim
-Outlined.NoStroller
-Outlined.NoTransfer
-Outlined.NoiseAware
-Outlined.NoiseControlOff
-Outlined.NordicWalking
-Outlined.North
-Outlined.NorthEast
-Outlined.NorthWest
-Outlined.NotAccessible
-Outlined.NotInterested
-Outlined.NotStarted
-Outlined.NoteAlt
-Outlined.NotificationAdd
-Outlined.NotificationImportant
-Outlined.Notifications
-Outlined.NotificationsActive
-Outlined.NotificationsNone
-Outlined.NotificationsOff
-Outlined.NotificationsPaused
-Outlined.Numbers
-Outlined.OfflineBolt
-Outlined.OfflinePin
-Outlined.OilBarrel
-Outlined.OnDeviceTraining
-Outlined.OndemandVideo
-Outlined.OnlinePrediction
-Outlined.Opacity
-Outlined.OpenInBrowser
-Outlined.OpenInFull
-Outlined.OpenInNewOff
-Outlined.OpenWith
-Outlined.OtherHouses
-Outlined.Outbond
-Outlined.Outbox
-Outlined.OutdoorGrill
-Outlined.Outlet
-Outlined.OutlinedFlag
-Outlined.Output
-Outlined.Padding
-Outlined.Pages
-Outlined.Pageview
-Outlined.Paid
-Outlined.Palette
-Outlined.PanTool
-Outlined.PanToolAlt
-Outlined.Panorama
-Outlined.PanoramaFishEye
-Outlined.PanoramaHorizontal
-Outlined.PanoramaHorizontalSelect
-Outlined.PanoramaPhotosphere
-Outlined.PanoramaPhotosphereSelect
-Outlined.PanoramaVertical
-Outlined.PanoramaVerticalSelect
-Outlined.PanoramaWideAngle
-Outlined.PanoramaWideAngleSelect
-Outlined.Paragliding
-Outlined.Park
-Outlined.PartyMode
-Outlined.Password
-Outlined.Pattern
-Outlined.Pause
-Outlined.PauseCircle
-Outlined.PauseCircleFilled
-Outlined.PauseCircleOutline
-Outlined.PausePresentation
-Outlined.Payment
-Outlined.Payments
-Outlined.PedalBike
-Outlined.Pending
-Outlined.PendingActions
-Outlined.Pentagon
-Outlined.People
-Outlined.PeopleAlt
-Outlined.PeopleOutline
-Outlined.Percent
-Outlined.PermCameraMic
-Outlined.PermContactCalendar
-Outlined.PermDataSetting
-Outlined.PermDeviceInformation
-Outlined.PermIdentity
-Outlined.PermMedia
-Outlined.PermPhoneMsg
-Outlined.PermScanWifi
-Outlined.Person
-Outlined.Person2
-Outlined.Person3
-Outlined.Person4
-Outlined.PersonAdd
-Outlined.PersonAddAlt
-Outlined.PersonAddAlt1
-Outlined.PersonAddDisabled
-Outlined.PersonOff
-Outlined.PersonOutline
-Outlined.PersonPin
-Outlined.PersonPinCircle
-Outlined.PersonRemove
-Outlined.PersonRemoveAlt1
-Outlined.PersonSearch
-Outlined.PersonalInjury
-Outlined.PersonalVideo
-Outlined.PestControl
-Outlined.PestControlRodent
-Outlined.Pets
-Outlined.Phishing
-Outlined.Phone
-Outlined.PhoneAndroid
-Outlined.PhoneBluetoothSpeaker
-Outlined.PhoneDisabled
-Outlined.PhoneEnabled
-Outlined.PhoneInTalk
-Outlined.PhoneIphone
-Outlined.PhoneLocked
-Outlined.PhonePaused
-Outlined.Phonelink
-Outlined.PhonelinkErase
-Outlined.PhonelinkLock
-Outlined.PhonelinkOff
-Outlined.PhonelinkRing
-Outlined.PhonelinkSetup
-Outlined.Photo
-Outlined.PhotoAlbum
-Outlined.PhotoCamera
-Outlined.PhotoCameraBack
-Outlined.PhotoCameraFront
-Outlined.PhotoFilter
-Outlined.PhotoLibrary
-Outlined.PhotoSizeSelectActual
-Outlined.PhotoSizeSelectLarge
-Outlined.PhotoSizeSelectSmall
-Outlined.Php
-Outlined.Piano
-Outlined.PianoOff
-Outlined.PictureAsPdf
-Outlined.PictureInPicture
-Outlined.PictureInPictureAlt
-Outlined.PieChart
-Outlined.PieChartOutline
-Outlined.Pin
-Outlined.PinDrop
-Outlined.PinEnd
-Outlined.PinInvoke
-Outlined.Pinch
-Outlined.PivotTableChart
-Outlined.Pix
-Outlined.Place
-Outlined.Plagiarism
-Outlined.PlayArrow
-Outlined.PlayCircle
-Outlined.PlayCircleFilled
-Outlined.PlayCircleOutline
-Outlined.PlayDisabled
-Outlined.PlayForWork
-Outlined.PlayLesson
-Outlined.PlaylistAddCheckCircle
-Outlined.PlaylistAddCircle
-Outlined.PlaylistRemove
-Outlined.Plumbing
-Outlined.PlusOne
-Outlined.Podcasts
-Outlined.PointOfSale
-Outlined.Policy
-Outlined.Poll
-Outlined.Polyline
-Outlined.Polymer
-Outlined.Pool
-Outlined.PortableWifiOff
-Outlined.Portrait
-Outlined.PostAdd
-Outlined.Power
-Outlined.PowerInput
-Outlined.PowerOff
-Outlined.PowerSettingsNew
-Outlined.PrecisionManufacturing
-Outlined.PregnantWoman
-Outlined.PresentToAll
-Outlined.Preview
-Outlined.PriceChange
-Outlined.PriceCheck
-Outlined.Print
-Outlined.PrintDisabled
-Outlined.PriorityHigh
-Outlined.PrivacyTip
-Outlined.PrivateConnectivity
-Outlined.ProductionQuantityLimits
-Outlined.Propane
-Outlined.PropaneTank
-Outlined.Psychology
-Outlined.PsychologyAlt
-Outlined.Public
-Outlined.PublicOff
-Outlined.Publish
-Outlined.PublishedWithChanges
-Outlined.PunchClock
-Outlined.PushPin
-Outlined.QrCode
-Outlined.QrCode2
-Outlined.QrCodeScanner
-Outlined.QueryBuilder
-Outlined.QueryStats
-Outlined.QuestionAnswer
-Outlined.QuestionMark
-Outlined.Queue
-Outlined.QueuePlayNext
-Outlined.Quickreply
-Outlined.Quiz
-Outlined.RMobiledata
-Outlined.Radar
-Outlined.Radio
-Outlined.RadioButtonChecked
-Outlined.RadioButtonUnchecked
-Outlined.RailwayAlert
-Outlined.RamenDining
-Outlined.RampLeft
-Outlined.RampRight
-Outlined.RateReview
-Outlined.RawOff
-Outlined.RawOn
-Outlined.RealEstateAgent
-Outlined.Receipt
-Outlined.RecentActors
-Outlined.Recommend
-Outlined.RecordVoiceOver
-Outlined.Rectangle
-Outlined.Recycling
-Outlined.Redeem
-Outlined.ReduceCapacity
-Outlined.Refresh
-Outlined.RememberMe
-Outlined.Remove
-Outlined.RemoveCircle
-Outlined.RemoveCircleOutline
-Outlined.RemoveDone
-Outlined.RemoveFromQueue
-Outlined.RemoveModerator
-Outlined.RemoveRedEye
-Outlined.RemoveRoad
-Outlined.RemoveShoppingCart
-Outlined.Reorder
-Outlined.Repartition
-Outlined.Repeat
-Outlined.RepeatOn
-Outlined.RepeatOne
-Outlined.RepeatOneOn
-Outlined.Replay
-Outlined.Replay10
-Outlined.Replay30
-Outlined.Replay5
-Outlined.ReplayCircleFilled
-Outlined.Report
-Outlined.ReportGmailerrorred
-Outlined.ReportOff
-Outlined.ReportProblem
-Outlined.RequestPage
-Outlined.RequestQuote
-Outlined.ResetTv
-Outlined.RestartAlt
-Outlined.Restaurant
-Outlined.RestaurantMenu
-Outlined.Restore
-Outlined.RestoreFromTrash
-Outlined.RestorePage
-Outlined.Reviews
-Outlined.RiceBowl
-Outlined.RingVolume
-Outlined.Rocket
-Outlined.RocketLaunch
-Outlined.RollerShades
-Outlined.RollerShadesClosed
-Outlined.RollerSkating
-Outlined.Roofing
-Outlined.Room
-Outlined.RoomPreferences
-Outlined.RoomService
-Outlined.Rotate90DegreesCcw
-Outlined.Rotate90DegreesCw
-Outlined.RoundaboutLeft
-Outlined.RoundaboutRight
-Outlined.RoundedCorner
-Outlined.Route
-Outlined.Router
-Outlined.Rowing
-Outlined.RssFeed
-Outlined.Rsvp
-Outlined.RuleFolder
-Outlined.RunCircle
-Outlined.RunningWithErrors
-Outlined.RvHookup
-Outlined.SafetyCheck
-Outlined.SafetyDivider
-Outlined.Sailing
-Outlined.Sanitizer
-Outlined.Satellite
-Outlined.SatelliteAlt
-Outlined.Save
-Outlined.SaveAlt
-Outlined.SaveAs
-Outlined.SavedSearch
-Outlined.Savings
-Outlined.Scale
-Outlined.Scanner
-Outlined.ScatterPlot
-Outlined.Schedule
-Outlined.Schema
-Outlined.School
-Outlined.Science
-Outlined.Score
-Outlined.Scoreboard
-Outlined.ScreenLockLandscape
-Outlined.ScreenLockPortrait
-Outlined.ScreenLockRotation
-Outlined.ScreenRotation
-Outlined.ScreenRotationAlt
-Outlined.ScreenSearchDesktop
-Outlined.Screenshot
-Outlined.ScreenshotMonitor
-Outlined.ScubaDiving
-Outlined.Sd
-Outlined.SdCard
-Outlined.SdCardAlert
-Outlined.SdStorage
-Outlined.Search
-Outlined.SearchOff
-Outlined.Security
-Outlined.SecurityUpdate
-Outlined.SecurityUpdateGood
-Outlined.SecurityUpdateWarning
-Outlined.SelectAll
-Outlined.SelfImprovement
-Outlined.Sell
-Outlined.SendTimeExtension
-Outlined.SensorDoor
-Outlined.SensorOccupied
-Outlined.SensorWindow
-Outlined.Sensors
-Outlined.SensorsOff
-Outlined.SentimentDissatisfied
-Outlined.SentimentNeutral
-Outlined.SentimentSatisfied
-Outlined.SentimentSatisfiedAlt
-Outlined.SentimentVeryDissatisfied
-Outlined.SentimentVerySatisfied
-Outlined.SetMeal
-Outlined.Settings
-Outlined.SettingsAccessibility
-Outlined.SettingsApplications
-Outlined.SettingsBackupRestore
-Outlined.SettingsBluetooth
-Outlined.SettingsBrightness
-Outlined.SettingsCell
-Outlined.SettingsEthernet
-Outlined.SettingsInputAntenna
-Outlined.SettingsInputComponent
-Outlined.SettingsInputComposite
-Outlined.SettingsInputHdmi
-Outlined.SettingsInputSvideo
-Outlined.SettingsOverscan
-Outlined.SettingsPhone
-Outlined.SettingsPower
-Outlined.SettingsRemote
-Outlined.SettingsSuggest
-Outlined.SettingsSystemDaydream
-Outlined.SettingsVoice
-Outlined.SevereCold
-Outlined.ShapeLine
-Outlined.Share
-Outlined.ShareLocation
-Outlined.Shield
-Outlined.ShieldMoon
-Outlined.Shop
-Outlined.Shop2
-Outlined.ShopTwo
-Outlined.ShoppingBag
-Outlined.ShoppingBasket
-Outlined.ShoppingCart
-Outlined.ShoppingCartCheckout
-Outlined.Shower
-Outlined.Shuffle
-Outlined.ShuffleOn
-Outlined.ShutterSpeed
-Outlined.Sick
-Outlined.SignLanguage
-Outlined.SignalCellular0Bar
-Outlined.SignalCellular4Bar
-Outlined.SignalCellularAlt
-Outlined.SignalCellularAlt1Bar
-Outlined.SignalCellularAlt2Bar
-Outlined.SignalCellularConnectedNoInternet0Bar
-Outlined.SignalCellularConnectedNoInternet4Bar
-Outlined.SignalCellularNoSim
-Outlined.SignalCellularNodata
-Outlined.SignalCellularNull
-Outlined.SignalCellularOff
-Outlined.SignalWifi0Bar
-Outlined.SignalWifi4Bar
-Outlined.SignalWifi4BarLock
-Outlined.SignalWifiBad
-Outlined.SignalWifiConnectedNoInternet4
-Outlined.SignalWifiOff
-Outlined.SignalWifiStatusbar4Bar
-Outlined.SignalWifiStatusbarConnectedNoInternet4
-Outlined.SignalWifiStatusbarNull
-Outlined.Signpost
-Outlined.SimCard
-Outlined.SimCardAlert
-Outlined.SimCardDownload
-Outlined.SingleBed
-Outlined.Sip
-Outlined.Skateboarding
-Outlined.SkipNext
-Outlined.SkipPrevious
-Outlined.Sledding
-Outlined.Slideshow
-Outlined.SlowMotionVideo
-Outlined.SmartButton
-Outlined.SmartDisplay
-Outlined.SmartScreen
-Outlined.SmartToy
-Outlined.Smartphone
-Outlined.SmokeFree
-Outlined.SmokingRooms
-Outlined.Sms
-Outlined.SmsFailed
-Outlined.SnippetFolder
-Outlined.Snooze
-Outlined.Snowboarding
-Outlined.Snowmobile
-Outlined.Snowshoeing
-Outlined.Soap
-Outlined.SocialDistance
-Outlined.SolarPower
-Outlined.SortByAlpha
-Outlined.Sos
-Outlined.SoupKitchen
-Outlined.Source
-Outlined.South
-Outlined.SouthAmerica
-Outlined.SouthEast
-Outlined.SouthWest
-Outlined.Spa
-Outlined.SpaceBar
-Outlined.SpaceDashboard
-Outlined.SpatialAudio
-Outlined.SpatialAudioOff
-Outlined.SpatialTracking
-Outlined.Speaker
-Outlined.SpeakerGroup
-Outlined.SpeakerNotesOff
-Outlined.SpeakerPhone
-Outlined.Speed
-Outlined.Spellcheck
-Outlined.Splitscreen
-Outlined.Spoke
-Outlined.Sports
-Outlined.SportsBar
-Outlined.SportsBaseball
-Outlined.SportsBasketball
-Outlined.SportsCricket
-Outlined.SportsEsports
-Outlined.SportsFootball
-Outlined.SportsGolf
-Outlined.SportsGymnastics
-Outlined.SportsHandball
-Outlined.SportsHockey
-Outlined.SportsKabaddi
-Outlined.SportsMartialArts
-Outlined.SportsMma
-Outlined.SportsMotorsports
-Outlined.SportsRugby
-Outlined.SportsScore
-Outlined.SportsSoccer
-Outlined.SportsTennis
-Outlined.SportsVolleyball
-Outlined.Square
-Outlined.SquareFoot
-Outlined.SsidChart
-Outlined.StackedBarChart
-Outlined.StackedLineChart
-Outlined.Stadium
-Outlined.Stairs
-Outlined.Star
-Outlined.StarBorder
-Outlined.StarBorderPurple500
-Outlined.StarOutline
-Outlined.StarPurple500
-Outlined.StarRate
-Outlined.Stars
-Outlined.Start
-Outlined.StayCurrentLandscape
-Outlined.StayCurrentPortrait
-Outlined.StayPrimaryLandscape
-Outlined.StayPrimaryPortrait
-Outlined.Stop
-Outlined.StopCircle
-Outlined.Storage
-Outlined.Store
-Outlined.StoreMallDirectory
-Outlined.Storefront
-Outlined.Storm
-Outlined.Straight
-Outlined.Straighten
-Outlined.Stream
-Outlined.Streetview
-Outlined.StrikethroughS
-Outlined.Stroller
-Outlined.Style
-Outlined.SubdirectoryArrowLeft
-Outlined.SubdirectoryArrowRight
-Outlined.Subscript
-Outlined.Subscriptions
-Outlined.Subtitles
-Outlined.SubtitlesOff
-Outlined.Subway
-Outlined.Summarize
-Outlined.Superscript
-Outlined.SupervisedUserCircle
-Outlined.SupervisorAccount
-Outlined.Support
-Outlined.SupportAgent
-Outlined.Surfing
-Outlined.SurroundSound
-Outlined.SwapCalls
-Outlined.SwapHoriz
-Outlined.SwapHorizontalCircle
-Outlined.SwapVert
-Outlined.SwapVerticalCircle
-Outlined.Swipe
-Outlined.SwipeDown
-Outlined.SwipeDownAlt
-Outlined.SwipeLeft
-Outlined.SwipeLeftAlt
-Outlined.SwipeRight
-Outlined.SwipeRightAlt
-Outlined.SwipeUp
-Outlined.SwipeUpAlt
-Outlined.SwipeVertical
-Outlined.SwitchAccessShortcut
-Outlined.SwitchAccessShortcutAdd
-Outlined.SwitchAccount
-Outlined.SwitchCamera
-Outlined.SwitchLeft
-Outlined.SwitchRight
-Outlined.SwitchVideo
-Outlined.Synagogue
-Outlined.Sync
-Outlined.SyncAlt
-Outlined.SyncDisabled
-Outlined.SyncLock
-Outlined.SyncProblem
-Outlined.SystemSecurityUpdate
-Outlined.SystemSecurityUpdateGood
-Outlined.SystemSecurityUpdateWarning
-Outlined.SystemUpdate
-Outlined.SystemUpdateAlt
-Outlined.Tab
-Outlined.TabUnselected
-Outlined.TableBar
-Outlined.TableChart
-Outlined.TableRestaurant
-Outlined.TableRows
-Outlined.TableView
-Outlined.Tablet
-Outlined.TabletAndroid
-Outlined.TabletMac
-Outlined.Tag
-Outlined.TagFaces
-Outlined.TakeoutDining
-Outlined.TapAndPlay
-Outlined.Tapas
-Outlined.Task
-Outlined.TaskAlt
-Outlined.TaxiAlert
-Outlined.TempleBuddhist
-Outlined.TempleHindu
-Outlined.Terminal
-Outlined.Terrain
-Outlined.TextDecrease
-Outlined.TextFields
-Outlined.TextFormat
-Outlined.TextIncrease
-Outlined.TextRotateUp
-Outlined.TextRotateVertical
-Outlined.TextRotationAngledown
-Outlined.TextRotationAngleup
-Outlined.TextRotationDown
-Outlined.TextRotationNone
-Outlined.Textsms
-Outlined.Texture
-Outlined.TheaterComedy
-Outlined.Theaters
-Outlined.Thermostat
-Outlined.ThermostatAuto
-Outlined.ThumbDown
-Outlined.ThumbDownAlt
-Outlined.ThumbDownOffAlt
-Outlined.ThumbUp
-Outlined.ThumbUpAlt
-Outlined.ThumbUpOffAlt
-Outlined.ThumbsUpDown
-Outlined.Thunderstorm
-Outlined.TimeToLeave
-Outlined.Timelapse
-Outlined.Timeline
-Outlined.Timer
-Outlined.Timer10
-Outlined.Timer10Select
-Outlined.Timer3
-Outlined.Timer3Select
-Outlined.TimerOff
-Outlined.TipsAndUpdates
-Outlined.TireRepair
-Outlined.Title
-Outlined.Today
-Outlined.ToggleOff
-Outlined.ToggleOn
-Outlined.Token
-Outlined.Toll
-Outlined.Tonality
-Outlined.Topic
-Outlined.Tornado
-Outlined.TouchApp
-Outlined.Tour
-Outlined.Toys
-Outlined.TrackChanges
-Outlined.Traffic
-Outlined.Train
-Outlined.Tram
-Outlined.Transcribe
-Outlined.TransferWithinAStation
-Outlined.Transform
-Outlined.Transgender
-Outlined.TransitEnterexit
-Outlined.Translate
-Outlined.TravelExplore
-Outlined.TripOrigin
-Outlined.Troubleshoot
-Outlined.Try
-Outlined.Tsunami
-Outlined.Tty
-Outlined.Tune
-Outlined.Tungsten
-Outlined.TurnLeft
-Outlined.TurnRight
-Outlined.TurnSharpLeft
-Outlined.TurnSharpRight
-Outlined.TurnSlightLeft
-Outlined.TurnSlightRight
-Outlined.TurnedIn
-Outlined.TurnedInNot
-Outlined.Tv
-Outlined.TvOff
-Outlined.TwoWheeler
-Outlined.TypeSpecimen
-Outlined.UTurnLeft
-Outlined.UTurnRight
-Outlined.Umbrella
-Outlined.Unarchive
-Outlined.UnfoldLess
-Outlined.UnfoldLessDouble
-Outlined.UnfoldMore
-Outlined.UnfoldMoreDouble
-Outlined.Unpublished
-Outlined.Unsubscribe
-Outlined.Upcoming
-Outlined.Update
-Outlined.UpdateDisabled
-Outlined.Upgrade
-Outlined.Upload
-Outlined.UploadFile
-Outlined.Usb
-Outlined.UsbOff
-Outlined.Vaccines
-Outlined.VapeFree
-Outlined.VapingRooms
-Outlined.Verified
-Outlined.VerifiedUser
-Outlined.VerticalAlignBottom
-Outlined.VerticalAlignCenter
-Outlined.VerticalAlignTop
-Outlined.VerticalDistribute
-Outlined.VerticalShades
-Outlined.VerticalShadesClosed
-Outlined.VerticalSplit
-Outlined.Vibration
-Outlined.VideoCall
-Outlined.VideoCameraBack
-Outlined.VideoCameraFront
-Outlined.VideoChat
-Outlined.VideoFile
-Outlined.VideoLabel
-Outlined.VideoLibrary
-Outlined.VideoSettings
-Outlined.VideoStable
-Outlined.Videocam
-Outlined.VideocamOff
-Outlined.VideogameAsset
-Outlined.VideogameAssetOff
-Outlined.ViewAgenda
-Outlined.ViewArray
-Outlined.ViewCarousel
-Outlined.ViewColumn
-Outlined.ViewComfy
-Outlined.ViewComfyAlt
-Outlined.ViewCompact
-Outlined.ViewCompactAlt
-Outlined.ViewCozy
-Outlined.ViewDay
-Outlined.ViewHeadline
-Outlined.ViewInAr
-Outlined.ViewKanban
-Outlined.ViewModule
-Outlined.ViewStream
-Outlined.ViewTimeline
-Outlined.ViewWeek
-Outlined.Vignette
-Outlined.Villa
-Outlined.Visibility
-Outlined.VisibilityOff
-Outlined.VoiceChat
-Outlined.VoiceOverOff
-Outlined.Voicemail
-Outlined.Volcano
-Outlined.VolunteerActivism
-Outlined.VpnKey
-Outlined.VpnKeyOff
-Outlined.VpnLock
-Outlined.Vrpano
-Outlined.Wallet
-Outlined.Wallpaper
-Outlined.Warehouse
-Outlined.Warning
-Outlined.WarningAmber
-Outlined.Wash
-Outlined.Watch
-Outlined.WatchLater
-Outlined.WatchOff
-Outlined.Water
-Outlined.WaterDamage
-Outlined.WaterDrop
-Outlined.WaterfallChart
-Outlined.Waves
-Outlined.WavingHand
-Outlined.WbAuto
-Outlined.WbCloudy
-Outlined.WbIncandescent
-Outlined.WbIridescent
-Outlined.WbShade
-Outlined.WbSunny
-Outlined.WbTwilight
-Outlined.Wc
-Outlined.Web
-Outlined.WebAsset
-Outlined.WebAssetOff
-Outlined.WebStories
-Outlined.Webhook
-Outlined.Weekend
-Outlined.West
-Outlined.Whatsapp
-Outlined.Whatshot
-Outlined.WheelchairPickup
-Outlined.WhereToVote
-Outlined.Widgets
-Outlined.WidthFull
-Outlined.WidthNormal
-Outlined.WidthWide
-Outlined.Wifi
-Outlined.Wifi1Bar
-Outlined.Wifi2Bar
-Outlined.WifiCalling
-Outlined.WifiCalling3
-Outlined.WifiChannel
-Outlined.WifiFind
-Outlined.WifiLock
-Outlined.WifiOff
-Outlined.WifiPassword
-Outlined.WifiProtectedSetup
-Outlined.WifiTethering
-Outlined.WifiTetheringError
-Outlined.WifiTetheringErrorRounded
-Outlined.WifiTetheringOff
-Outlined.WindPower
-Outlined.Window
-Outlined.WineBar
-Outlined.Woman
-Outlined.Woman2
-Outlined.Work
-Outlined.WorkHistory
-Outlined.WorkOff
-Outlined.WorkOutline
-Outlined.WorkspacePremium
-Outlined.Workspaces
-Outlined.WrongLocation
-Outlined.Yard
-Outlined.YoutubeSearchedFor
-Outlined.ZoomIn
-Outlined.ZoomInMap
-Outlined.ZoomOut
-Outlined.ZoomOutMap
-Outlined._10k
-Outlined._10mp
-Outlined._11mp
-Outlined._123
-Outlined._12mp
-Outlined._13mp
-Outlined._14mp
-Outlined._15mp
-Outlined._16mp
-Outlined._17mp
-Outlined._18UpRating
-Outlined._18mp
-Outlined._19mp
-Outlined._1k
-Outlined._1kPlus
-Outlined._1xMobiledata
-Outlined._20mp
-Outlined._21mp
-Outlined._22mp
-Outlined._23mp
-Outlined._24mp
-Outlined._2k
-Outlined._2kPlus
-Outlined._2mp
-Outlined._30fps
-Outlined._30fpsSelect
-Outlined._3dRotation
-Outlined._3gMobiledata
-Outlined._3k
-Outlined._3kPlus
-Outlined._3mp
-Outlined._3p
-Outlined._4gMobiledata
-Outlined._4gPlusMobiledata
-Outlined._4k
-Outlined._4kPlus
-Outlined._4mp
-Outlined._5g
-Outlined._5k
-Outlined._5kPlus
-Outlined._5mp
-Outlined._60fps
-Outlined._60fpsSelect
-Outlined._6FtApart
-Outlined._6k
-Outlined._6kPlus
-Outlined._6mp
-Outlined._7k
-Outlined._7kPlus
-Outlined._7mp
-Outlined._8k
-Outlined._8kPlus
-Outlined._8mp
-Outlined._9k
-Outlined._9kPlus
-Outlined._9mp
-Rounded.Abc
-Rounded.AcUnit
-Rounded.AccessAlarm
-Rounded.AccessAlarms
-Rounded.AccessTime
-Rounded.AccessTimeFilled
-Rounded.Accessibility
-Rounded.AccessibilityNew
-Rounded.AccountBalance
-Rounded.AccountBalanceWallet
-Rounded.AccountBox
-Rounded.AccountCircle
-Rounded.AccountTree
-Rounded.AdUnits
-Rounded.Adb
-Rounded.Add
-Rounded.AddAPhoto
-Rounded.AddAlarm
-Rounded.AddAlert
-Rounded.AddBox
-Rounded.AddBusiness
-Rounded.AddCard
-Rounded.AddChart
-Rounded.AddCircle
-Rounded.AddCircleOutline
-Rounded.AddComment
-Rounded.AddHome
-Rounded.AddHomeWork
-Rounded.AddIcCall
-Rounded.AddLink
-Rounded.AddLocation
-Rounded.AddLocationAlt
-Rounded.AddModerator
-Rounded.AddPhotoAlternate
-Rounded.AddReaction
-Rounded.AddRoad
-Rounded.AddShoppingCart
-Rounded.AddTask
-Rounded.AddToDrive
-Rounded.AddToPhotos
-Rounded.AddToQueue
-Rounded.Addchart
-Rounded.AdfScanner
-Rounded.Adjust
-Rounded.AdminPanelSettings
-Rounded.AdsClick
-Rounded.Agriculture
-Rounded.Air
-Rounded.AirlineSeatFlat
-Rounded.AirlineSeatFlatAngled
-Rounded.AirlineSeatIndividualSuite
-Rounded.AirlineSeatLegroomExtra
-Rounded.AirlineSeatLegroomNormal
-Rounded.AirlineSeatLegroomReduced
-Rounded.AirlineSeatReclineExtra
-Rounded.AirlineSeatReclineNormal
-Rounded.AirlineStops
-Rounded.Airlines
-Rounded.AirplanemodeActive
-Rounded.AirplanemodeInactive
-Rounded.Airplay
-Rounded.AirportShuttle
-Rounded.Alarm
-Rounded.AlarmAdd
-Rounded.AlarmOff
-Rounded.AlarmOn
-Rounded.Album
-Rounded.AlignHorizontalCenter
-Rounded.AlignVerticalBottom
-Rounded.AlignVerticalCenter
-Rounded.AlignVerticalTop
-Rounded.AllInbox
-Rounded.AllInclusive
-Rounded.AllOut
-Rounded.AlternateEmail
-Rounded.AmpStories
-Rounded.Analytics
-Rounded.Anchor
-Rounded.Android
-Rounded.Animation
-Rounded.Aod
-Rounded.Apartment
-Rounded.Api
-Rounded.AppBlocking
-Rounded.AppRegistration
-Rounded.AppSettingsAlt
-Rounded.AppShortcut
-Rounded.Approval
-Rounded.Apps
-Rounded.AppsOutage
-Rounded.Architecture
-Rounded.Archive
-Rounded.AreaChart
-Rounded.ArrowBackIosNew
-Rounded.ArrowCircleDown
-Rounded.ArrowCircleLeft
-Rounded.ArrowCircleRight
-Rounded.ArrowCircleUp
-Rounded.ArrowDownward
-Rounded.ArrowDropDown
-Rounded.ArrowDropDownCircle
-Rounded.ArrowDropUp
-Rounded.ArrowOutward
-Rounded.ArrowUpward
-Rounded.ArtTrack
-Rounded.AspectRatio
-Rounded.Assessment
-Rounded.AssignmentInd
-Rounded.AssignmentLate
-Rounded.AssignmentReturned
-Rounded.AssignmentTurnedIn
-Rounded.AssistWalker
-Rounded.Assistant
-Rounded.AssistantPhoto
-Rounded.AssuredWorkload
-Rounded.Atm
-Rounded.AttachEmail
-Rounded.AttachFile
-Rounded.AttachMoney
-Rounded.Attachment
-Rounded.Attractions
-Rounded.Attribution
-Rounded.AudioFile
-Rounded.Audiotrack
-Rounded.AutoAwesome
-Rounded.AutoAwesomeMosaic
-Rounded.AutoAwesomeMotion
-Rounded.AutoDelete
-Rounded.AutoFixHigh
-Rounded.AutoFixNormal
-Rounded.AutoFixOff
-Rounded.AutoGraph
-Rounded.AutoMode
-Rounded.AutoStories
-Rounded.AutofpsSelect
-Rounded.Autorenew
-Rounded.AvTimer
-Rounded.BabyChangingStation
-Rounded.BackHand
-Rounded.Backpack
-Rounded.Backup
-Rounded.BackupTable
-Rounded.Badge
-Rounded.BakeryDining
-Rounded.Balance
-Rounded.Balcony
-Rounded.Ballot
-Rounded.BarChart
-Rounded.BatchPrediction
-Rounded.Bathroom
-Rounded.Bathtub
-Rounded.Battery0Bar
-Rounded.Battery1Bar
-Rounded.Battery2Bar
-Rounded.Battery3Bar
-Rounded.Battery4Bar
-Rounded.Battery5Bar
-Rounded.Battery6Bar
-Rounded.BatteryAlert
-Rounded.BatteryChargingFull
-Rounded.BatteryFull
-Rounded.BatterySaver
-Rounded.BatteryStd
-Rounded.BeachAccess
-Rounded.Bed
-Rounded.BedroomBaby
-Rounded.BedroomChild
-Rounded.BedroomParent
-Rounded.Bedtime
-Rounded.BedtimeOff
-Rounded.Beenhere
-Rounded.Bento
-Rounded.BikeScooter
-Rounded.Biotech
-Rounded.Blender
-Rounded.Blind
-Rounded.Blinds
-Rounded.BlindsClosed
-Rounded.Block
-Rounded.Bloodtype
-Rounded.Bluetooth
-Rounded.BluetoothAudio
-Rounded.BluetoothConnected
-Rounded.BluetoothDisabled
-Rounded.BluetoothDrive
-Rounded.BlurCircular
-Rounded.BlurLinear
-Rounded.BlurOff
-Rounded.BlurOn
-Rounded.Bolt
-Rounded.Book
-Rounded.BookOnline
-Rounded.Bookmark
-Rounded.BookmarkAdd
-Rounded.BookmarkAdded
-Rounded.BookmarkBorder
-Rounded.BookmarkRemove
-Rounded.Bookmarks
-Rounded.BorderAll
-Rounded.BorderBottom
-Rounded.BorderClear
-Rounded.BorderColor
-Rounded.BorderHorizontal
-Rounded.BorderInner
-Rounded.BorderLeft
-Rounded.BorderOuter
-Rounded.BorderRight
-Rounded.BorderStyle
-Rounded.BorderTop
-Rounded.BorderVertical
-Rounded.Boy
-Rounded.BreakfastDining
-Rounded.Brightness1
-Rounded.Brightness2
-Rounded.Brightness3
-Rounded.Brightness4
-Rounded.Brightness5
-Rounded.Brightness6
-Rounded.Brightness7
-Rounded.BrightnessAuto
-Rounded.BrightnessHigh
-Rounded.BrightnessLow
-Rounded.BrightnessMedium
-Rounded.BroadcastOnHome
-Rounded.BroadcastOnPersonal
-Rounded.BrokenImage
-Rounded.BrowseGallery
-Rounded.BrowserNotSupported
-Rounded.BrowserUpdated
-Rounded.BrunchDining
-Rounded.Brush
-Rounded.BubbleChart
-Rounded.BugReport
-Rounded.Build
-Rounded.BuildCircle
-Rounded.Bungalow
-Rounded.BurstMode
-Rounded.BusAlert
-Rounded.Business
-Rounded.BusinessCenter
-Rounded.Cabin
-Rounded.Cable
-Rounded.Cached
-Rounded.Cake
-Rounded.Calculate
-Rounded.CalendarMonth
-Rounded.CalendarToday
-Rounded.CalendarViewDay
-Rounded.CalendarViewMonth
-Rounded.CalendarViewWeek
-Rounded.Call
-Rounded.CallEnd
-Rounded.CallToAction
-Rounded.Camera
-Rounded.CameraAlt
-Rounded.CameraEnhance
-Rounded.CameraFront
-Rounded.CameraIndoor
-Rounded.CameraOutdoor
-Rounded.CameraRear
-Rounded.CameraRoll
-Rounded.Cameraswitch
-Rounded.Campaign
-Rounded.Cancel
-Rounded.CancelPresentation
-Rounded.CancelScheduleSend
-Rounded.CandlestickChart
-Rounded.CarCrash
-Rounded.CarRental
-Rounded.CarRepair
-Rounded.CardGiftcard
-Rounded.CardMembership
-Rounded.CardTravel
-Rounded.Carpenter
-Rounded.Cases
-Rounded.Casino
-Rounded.Cast
-Rounded.CastConnected
-Rounded.CastForEducation
-Rounded.Castle
-Rounded.CatchingPokemon
-Rounded.Category
-Rounded.Celebration
-Rounded.CellTower
-Rounded.CellWifi
-Rounded.CenterFocusStrong
-Rounded.CenterFocusWeak
-Rounded.Chair
-Rounded.ChairAlt
-Rounded.Chalet
-Rounded.ChangeCircle
-Rounded.ChangeHistory
-Rounded.ChargingStation
-Rounded.ChatBubble
-Rounded.ChatBubbleOutline
-Rounded.Check
-Rounded.CheckBox
-Rounded.CheckBoxOutlineBlank
-Rounded.CheckCircle
-Rounded.CheckCircleOutline
-Rounded.Checklist
-Rounded.ChecklistRtl
-Rounded.Checkroom
-Rounded.ChevronLeft
-Rounded.ChevronRight
-Rounded.ChildCare
-Rounded.ChildFriendly
-Rounded.Church
-Rounded.Circle
-Rounded.CircleNotifications
-Rounded.Class
-Rounded.CleanHands
-Rounded.CleaningServices
-Rounded.Clear
-Rounded.ClearAll
-Rounded.Close
-Rounded.CloseFullscreen
-Rounded.ClosedCaption
-Rounded.ClosedCaptionDisabled
-Rounded.ClosedCaptionOff
-Rounded.Cloud
-Rounded.CloudCircle
-Rounded.CloudDone
-Rounded.CloudDownload
-Rounded.CloudOff
-Rounded.CloudQueue
-Rounded.CloudSync
-Rounded.CloudUpload
-Rounded.Co2
-Rounded.CoPresent
-Rounded.Code
-Rounded.CodeOff
-Rounded.Coffee
-Rounded.CoffeeMaker
-Rounded.Collections
-Rounded.CollectionsBookmark
-Rounded.ColorLens
-Rounded.Colorize
-Rounded.CommentBank
-Rounded.CommentsDisabled
-Rounded.Commit
-Rounded.Commute
-Rounded.Compare
-Rounded.CompassCalibration
-Rounded.Compost
-Rounded.Compress
-Rounded.Computer
-Rounded.ConfirmationNumber
-Rounded.ConnectWithoutContact
-Rounded.ConnectedTv
-Rounded.ConnectingAirports
-Rounded.Construction
-Rounded.ContactEmergency
-Rounded.ContactMail
-Rounded.ContactPage
-Rounded.ContactPhone
-Rounded.Contactless
-Rounded.Contacts
-Rounded.ContentCopy
-Rounded.ContentCut
-Rounded.ContentPaste
-Rounded.ContentPasteGo
-Rounded.ContentPasteOff
-Rounded.ContentPasteSearch
-Rounded.Contrast
-Rounded.ControlCamera
-Rounded.ControlPoint
-Rounded.ControlPointDuplicate
-Rounded.Cookie
-Rounded.CopyAll
-Rounded.Copyright
-Rounded.Coronavirus
-Rounded.CorporateFare
-Rounded.Cottage
-Rounded.Countertops
-Rounded.Create
-Rounded.CreateNewFolder
-Rounded.CreditCard
-Rounded.CreditCardOff
-Rounded.CreditScore
-Rounded.Crib
-Rounded.CrisisAlert
-Rounded.Crop
-Rounded.Crop169
-Rounded.Crop32
-Rounded.Crop54
-Rounded.Crop75
-Rounded.CropDin
-Rounded.CropFree
-Rounded.CropLandscape
-Rounded.CropOriginal
-Rounded.CropPortrait
-Rounded.CropRotate
-Rounded.CropSquare
-Rounded.CrueltyFree
-Rounded.Css
-Rounded.CurrencyBitcoin
-Rounded.CurrencyExchange
-Rounded.CurrencyFranc
-Rounded.CurrencyLira
-Rounded.CurrencyPound
-Rounded.CurrencyRuble
-Rounded.CurrencyRupee
-Rounded.CurrencyYen
-Rounded.CurrencyYuan
-Rounded.Curtains
-Rounded.CurtainsClosed
-Rounded.Cyclone
-Rounded.Dangerous
-Rounded.DarkMode
-Rounded.Dashboard
-Rounded.DashboardCustomize
-Rounded.DataArray
-Rounded.DataExploration
-Rounded.DataObject
-Rounded.DataSaverOff
-Rounded.DataSaverOn
-Rounded.DataThresholding
-Rounded.DataUsage
-Rounded.Dataset
-Rounded.DatasetLinked
-Rounded.DateRange
-Rounded.Deblur
-Rounded.Deck
-Rounded.Dehaze
-Rounded.Delete
-Rounded.DeleteForever
-Rounded.DeleteOutline
-Rounded.DeleteSweep
-Rounded.DeliveryDining
-Rounded.DensityLarge
-Rounded.DensityMedium
-Rounded.DensitySmall
-Rounded.DepartureBoard
-Rounded.Description
-Rounded.Deselect
-Rounded.DesignServices
-Rounded.Desk
-Rounded.DesktopAccessDisabled
-Rounded.DesktopMac
-Rounded.DesktopWindows
-Rounded.Details
-Rounded.DeveloperBoard
-Rounded.DeveloperBoardOff
-Rounded.DeveloperMode
-Rounded.DeviceHub
-Rounded.DeviceThermostat
-Rounded.DeviceUnknown
-Rounded.Devices
-Rounded.DevicesFold
-Rounded.DevicesOther
-Rounded.DialerSip
-Rounded.Dialpad
-Rounded.Diamond
-Rounded.Difference
-Rounded.Dining
-Rounded.DinnerDining
-Rounded.Directions
-Rounded.DirectionsBoat
-Rounded.DirectionsBoatFilled
-Rounded.DirectionsBus
-Rounded.DirectionsBusFilled
-Rounded.DirectionsCar
-Rounded.DirectionsCarFilled
-Rounded.DirectionsOff
-Rounded.DirectionsRailway
-Rounded.DirectionsRailwayFilled
-Rounded.DirectionsSubway
-Rounded.DirectionsSubwayFilled
-Rounded.DirectionsTransit
-Rounded.DirectionsTransitFilled
-Rounded.DirtyLens
-Rounded.DisabledByDefault
-Rounded.DisabledVisible
-Rounded.DiscFull
-Rounded.Discount
-Rounded.DisplaySettings
-Rounded.Diversity1
-Rounded.Diversity2
-Rounded.Diversity3
-Rounded.Dns
-Rounded.DoDisturb
-Rounded.DoDisturbAlt
-Rounded.DoDisturbOff
-Rounded.DoDisturbOn
-Rounded.DoNotDisturb
-Rounded.DoNotDisturbAlt
-Rounded.DoNotDisturbOff
-Rounded.DoNotDisturbOn
-Rounded.DoNotDisturbOnTotalSilence
-Rounded.DoNotStep
-Rounded.DoNotTouch
-Rounded.Dock
-Rounded.DocumentScanner
-Rounded.Domain
-Rounded.DomainAdd
-Rounded.DomainDisabled
-Rounded.DomainVerification
-Rounded.Done
-Rounded.DoneAll
-Rounded.DoneOutline
-Rounded.DonutLarge
-Rounded.DonutSmall
-Rounded.DoorBack
-Rounded.DoorFront
-Rounded.DoorSliding
-Rounded.Doorbell
-Rounded.DoubleArrow
-Rounded.DownhillSkiing
-Rounded.Download
-Rounded.DownloadDone
-Rounded.DownloadForOffline
-Rounded.Downloading
-Rounded.Drafts
-Rounded.DragHandle
-Rounded.DragIndicator
-Rounded.Draw
-Rounded.DriveEta
-Rounded.DriveFileMoveRtl
-Rounded.DriveFileRenameOutline
-Rounded.DriveFolderUpload
-Rounded.Dry
-Rounded.DryCleaning
-Rounded.Duo
-Rounded.DynamicFeed
-Rounded.DynamicForm
-Rounded.EMobiledata
-Rounded.Earbuds
-Rounded.EarbudsBattery
-Rounded.East
-Rounded.Eco
-Rounded.EdgesensorHigh
-Rounded.EdgesensorLow
-Rounded.Edit
-Rounded.EditAttributes
-Rounded.EditCalendar
-Rounded.EditLocation
-Rounded.EditLocationAlt
-Rounded.EditNote
-Rounded.EditNotifications
-Rounded.EditOff
-Rounded.EditRoad
-Rounded.Egg
-Rounded.EggAlt
-Rounded.Eject
-Rounded.Elderly
-Rounded.ElderlyWoman
-Rounded.ElectricBike
-Rounded.ElectricBolt
-Rounded.ElectricCar
-Rounded.ElectricMeter
-Rounded.ElectricMoped
-Rounded.ElectricRickshaw
-Rounded.ElectricScooter
-Rounded.ElectricalServices
-Rounded.Elevator
-Rounded.Email
-Rounded.Emergency
-Rounded.EmergencyRecording
-Rounded.EmergencyShare
-Rounded.EmojiEmotions
-Rounded.EmojiEvents
-Rounded.EmojiFlags
-Rounded.EmojiFoodBeverage
-Rounded.EmojiNature
-Rounded.EmojiObjects
-Rounded.EmojiPeople
-Rounded.EmojiSymbols
-Rounded.EmojiTransportation
-Rounded.EnergySavingsLeaf
-Rounded.Engineering
-Rounded.EnhancedEncryption
-Rounded.Equalizer
-Rounded.Error
-Rounded.ErrorOutline
-Rounded.Escalator
-Rounded.EscalatorWarning
-Rounded.Euro
-Rounded.EuroSymbol
-Rounded.EvStation
-Rounded.Event
-Rounded.EventAvailable
-Rounded.EventBusy
-Rounded.EventRepeat
-Rounded.EventSeat
-Rounded.Expand
-Rounded.ExpandCircleDown
-Rounded.ExpandLess
-Rounded.ExpandMore
-Rounded.Explicit
-Rounded.Explore
-Rounded.ExploreOff
-Rounded.Exposure
-Rounded.ExposureNeg1
-Rounded.ExposureNeg2
-Rounded.ExposurePlus1
-Rounded.ExposurePlus2
-Rounded.ExposureZero
-Rounded.Extension
-Rounded.ExtensionOff
-Rounded.Face
-Rounded.Face2
-Rounded.Face3
-Rounded.Face4
-Rounded.Face5
-Rounded.Face6
-Rounded.FaceRetouchingNatural
-Rounded.FaceRetouchingOff
-Rounded.Facebook
-Rounded.Factory
-Rounded.FamilyRestroom
-Rounded.FastForward
-Rounded.FastRewind
-Rounded.Fastfood
-Rounded.Favorite
-Rounded.FavoriteBorder
-Rounded.Fax
-Rounded.Feedback
-Rounded.Female
-Rounded.Fence
-Rounded.Festival
-Rounded.FiberDvr
-Rounded.FiberManualRecord
-Rounded.FiberNew
-Rounded.FiberPin
-Rounded.FiberSmartRecord
-Rounded.FileCopy
-Rounded.FileDownload
-Rounded.FileDownloadDone
-Rounded.FileDownloadOff
-Rounded.FileOpen
-Rounded.FilePresent
-Rounded.FileUpload
-Rounded.Filter
-Rounded.Filter1
-Rounded.Filter2
-Rounded.Filter3
-Rounded.Filter4
-Rounded.Filter5
-Rounded.Filter6
-Rounded.Filter7
-Rounded.Filter8
-Rounded.Filter9
-Rounded.Filter9Plus
-Rounded.FilterAlt
-Rounded.FilterAltOff
-Rounded.FilterBAndW
-Rounded.FilterCenterFocus
-Rounded.FilterDrama
-Rounded.FilterFrames
-Rounded.FilterHdr
-Rounded.FilterList
-Rounded.FilterListOff
-Rounded.FilterNone
-Rounded.FilterTiltShift
-Rounded.FilterVintage
-Rounded.FindInPage
-Rounded.FindReplace
-Rounded.Fingerprint
-Rounded.FireExtinguisher
-Rounded.FireHydrantAlt
-Rounded.FireTruck
-Rounded.Fireplace
-Rounded.FirstPage
-Rounded.FitScreen
-Rounded.Fitbit
-Rounded.FitnessCenter
-Rounded.Flag
-Rounded.FlagCircle
-Rounded.Flaky
-Rounded.Flare
-Rounded.FlashAuto
-Rounded.FlashOff
-Rounded.FlashOn
-Rounded.FlashlightOff
-Rounded.FlashlightOn
-Rounded.Flatware
-Rounded.Flight
-Rounded.FlightClass
-Rounded.FlightLand
-Rounded.FlightTakeoff
-Rounded.Flip
-Rounded.FlipCameraAndroid
-Rounded.FlipCameraIos
-Rounded.FlipToBack
-Rounded.FlipToFront
-Rounded.Flood
-Rounded.Flourescent
-Rounded.Fluorescent
-Rounded.FlutterDash
-Rounded.FmdBad
-Rounded.FmdGood
-Rounded.Folder
-Rounded.FolderCopy
-Rounded.FolderDelete
-Rounded.FolderOff
-Rounded.FolderOpen
-Rounded.FolderShared
-Rounded.FolderSpecial
-Rounded.FolderZip
-Rounded.FontDownload
-Rounded.FontDownloadOff
-Rounded.FoodBank
-Rounded.Forest
-Rounded.ForkLeft
-Rounded.ForkRight
-Rounded.FormatAlignCenter
-Rounded.FormatAlignJustify
-Rounded.FormatBold
-Rounded.FormatClear
-Rounded.FormatColorFill
-Rounded.FormatColorReset
-Rounded.FormatColorText
-Rounded.FormatItalic
-Rounded.FormatLineSpacing
-Rounded.FormatListNumbered
-Rounded.FormatListNumberedRtl
-Rounded.FormatOverline
-Rounded.FormatPaint
-Rounded.FormatQuote
-Rounded.FormatShapes
-Rounded.FormatSize
-Rounded.FormatStrikethrough
-Rounded.FormatUnderlined
-Rounded.Fort
-Rounded.Forum
-Rounded.Forward10
-Rounded.Forward30
-Rounded.Forward5
-Rounded.Foundation
-Rounded.FreeBreakfast
-Rounded.FreeCancellation
-Rounded.FrontHand
-Rounded.Fullscreen
-Rounded.FullscreenExit
-Rounded.Functions
-Rounded.GMobiledata
-Rounded.GTranslate
-Rounded.Gamepad
-Rounded.Games
-Rounded.Garage
-Rounded.GasMeter
-Rounded.Gavel
-Rounded.GeneratingTokens
-Rounded.Gesture
-Rounded.GetApp
-Rounded.Gif
-Rounded.GifBox
-Rounded.Girl
-Rounded.Gite
-Rounded.GolfCourse
-Rounded.GppBad
-Rounded.GppGood
-Rounded.GppMaybe
-Rounded.GpsFixed
-Rounded.GpsNotFixed
-Rounded.GpsOff
-Rounded.Grade
-Rounded.Gradient
-Rounded.Grain
-Rounded.GraphicEq
-Rounded.Grass
-Rounded.Grid3x3
-Rounded.Grid4x4
-Rounded.GridGoldenratio
-Rounded.GridOff
-Rounded.GridOn
-Rounded.GridView
-Rounded.Group
-Rounded.GroupAdd
-Rounded.GroupOff
-Rounded.GroupRemove
-Rounded.GroupWork
-Rounded.Groups
-Rounded.Groups2
-Rounded.Groups3
-Rounded.HMobiledata
-Rounded.HPlusMobiledata
-Rounded.Hail
-Rounded.Handshake
-Rounded.Handyman
-Rounded.Hardware
-Rounded.Hd
-Rounded.HdrAuto
-Rounded.HdrAutoSelect
-Rounded.HdrEnhancedSelect
-Rounded.HdrOff
-Rounded.HdrOffSelect
-Rounded.HdrOn
-Rounded.HdrOnSelect
-Rounded.HdrPlus
-Rounded.HdrStrong
-Rounded.HdrWeak
-Rounded.Headphones
-Rounded.HeadphonesBattery
-Rounded.Headset
-Rounded.HeadsetMic
-Rounded.HeadsetOff
-Rounded.Healing
-Rounded.HealthAndSafety
-Rounded.Hearing
-Rounded.HearingDisabled
-Rounded.HeartBroken
-Rounded.HeatPump
-Rounded.Height
-Rounded.Hevc
-Rounded.Hexagon
-Rounded.HideImage
-Rounded.HideSource
-Rounded.HighQuality
-Rounded.Highlight
-Rounded.HighlightAlt
-Rounded.HighlightOff
-Rounded.Hiking
-Rounded.History
-Rounded.HistoryEdu
-Rounded.HistoryToggleOff
-Rounded.Hive
-Rounded.Hls
-Rounded.HlsOff
-Rounded.HolidayVillage
-Rounded.Home
-Rounded.HomeMax
-Rounded.HomeMini
-Rounded.HomeRepairService
-Rounded.HomeWork
-Rounded.HorizontalDistribute
-Rounded.HorizontalRule
-Rounded.HorizontalSplit
-Rounded.HotTub
-Rounded.Hotel
-Rounded.HotelClass
-Rounded.HourglassBottom
-Rounded.HourglassDisabled
-Rounded.HourglassEmpty
-Rounded.HourglassFull
-Rounded.HourglassTop
-Rounded.House
-Rounded.HouseSiding
-Rounded.Houseboat
-Rounded.HowToReg
-Rounded.HowToVote
-Rounded.Html
-Rounded.Http
-Rounded.Https
-Rounded.Hub
-Rounded.Hvac
-Rounded.IceSkating
-Rounded.Icecream
-Rounded.Image
-Rounded.ImageAspectRatio
-Rounded.ImageNotSupported
-Rounded.ImageSearch
-Rounded.ImagesearchRoller
-Rounded.ImportContacts
-Rounded.ImportExport
-Rounded.ImportantDevices
-Rounded.Inbox
-Rounded.IncompleteCircle
-Rounded.IndeterminateCheckBox
-Rounded.Info
-Rounded.InsertChart
-Rounded.InsertChartOutlined
-Rounded.InsertEmoticon
-Rounded.InsertInvitation
-Rounded.InsertLink
-Rounded.InsertPageBreak
-Rounded.InsertPhoto
-Rounded.Insights
-Rounded.InstallDesktop
-Rounded.InstallMobile
-Rounded.IntegrationInstructions
-Rounded.Interests
-Rounded.InterpreterMode
-Rounded.Inventory
-Rounded.Inventory2
-Rounded.InvertColors
-Rounded.InvertColorsOff
-Rounded.IosShare
-Rounded.Iron
-Rounded.Iso
-Rounded.Javascript
-Rounded.JoinFull
-Rounded.JoinInner
-Rounded.JoinLeft
-Rounded.JoinRight
-Rounded.Kayaking
-Rounded.KebabDining
-Rounded.Key
-Rounded.KeyOff
-Rounded.Keyboard
-Rounded.KeyboardAlt
-Rounded.KeyboardArrowDown
-Rounded.KeyboardArrowUp
-Rounded.KeyboardCapslock
-Rounded.KeyboardCommandKey
-Rounded.KeyboardControlKey
-Rounded.KeyboardDoubleArrowDown
-Rounded.KeyboardDoubleArrowLeft
-Rounded.KeyboardDoubleArrowRight
-Rounded.KeyboardDoubleArrowUp
-Rounded.KeyboardHide
-Rounded.KeyboardOptionKey
-Rounded.KeyboardVoice
-Rounded.KingBed
-Rounded.Kitchen
-Rounded.Kitesurfing
-Rounded.Lan
-Rounded.Landscape
-Rounded.Landslide
-Rounded.Language
-Rounded.Laptop
-Rounded.LaptopChromebook
-Rounded.LaptopMac
-Rounded.LaptopWindows
-Rounded.Layers
-Rounded.LayersClear
-Rounded.Leaderboard
-Rounded.LeakAdd
-Rounded.LeakRemove
-Rounded.LeaveBagsAtHome
-Rounded.LegendToggle
-Rounded.Lens
-Rounded.LensBlur
-Rounded.LibraryAdd
-Rounded.LibraryAddCheck
-Rounded.LibraryMusic
-Rounded.Light
-Rounded.LightMode
-Rounded.Lightbulb
-Rounded.LightbulbCircle
-Rounded.LineAxis
-Rounded.LineStyle
-Rounded.LineWeight
-Rounded.LinearScale
-Rounded.Link
-Rounded.LinkOff
-Rounded.LinkedCamera
-Rounded.Liquor
-Rounded.LiveTv
-Rounded.Living
-Rounded.LocalActivity
-Rounded.LocalAirport
-Rounded.LocalAtm
-Rounded.LocalBar
-Rounded.LocalCafe
-Rounded.LocalCarWash
-Rounded.LocalConvenienceStore
-Rounded.LocalDining
-Rounded.LocalDrink
-Rounded.LocalFireDepartment
-Rounded.LocalFlorist
-Rounded.LocalGasStation
-Rounded.LocalGroceryStore
-Rounded.LocalHospital
-Rounded.LocalHotel
-Rounded.LocalLaundryService
-Rounded.LocalLibrary
-Rounded.LocalMall
-Rounded.LocalMovies
-Rounded.LocalOffer
-Rounded.LocalParking
-Rounded.LocalPharmacy
-Rounded.LocalPhone
-Rounded.LocalPizza
-Rounded.LocalPlay
-Rounded.LocalPolice
-Rounded.LocalPostOffice
-Rounded.LocalPrintshop
-Rounded.LocalSee
-Rounded.LocalShipping
-Rounded.LocalTaxi
-Rounded.LocationCity
-Rounded.LocationDisabled
-Rounded.LocationOff
-Rounded.LocationOn
-Rounded.LocationSearching
-Rounded.Lock
-Rounded.LockClock
-Rounded.LockOpen
-Rounded.LockPerson
-Rounded.LockReset
-Rounded.LogoDev
-Rounded.Looks
-Rounded.Looks3
-Rounded.Looks4
-Rounded.Looks5
-Rounded.Looks6
-Rounded.LooksOne
-Rounded.LooksTwo
-Rounded.Loop
-Rounded.Loupe
-Rounded.LowPriority
-Rounded.Loyalty
-Rounded.LteMobiledata
-Rounded.LtePlusMobiledata
-Rounded.Luggage
-Rounded.LunchDining
-Rounded.Lyrics
-Rounded.MacroOff
-Rounded.Mail
-Rounded.MailLock
-Rounded.MailOutline
-Rounded.Male
-Rounded.Man
-Rounded.Man2
-Rounded.Man3
-Rounded.Man4
-Rounded.ManageAccounts
-Rounded.ManageHistory
-Rounded.Map
-Rounded.MapsHomeWork
-Rounded.MapsUgc
-Rounded.Margin
-Rounded.MarkAsUnread
-Rounded.MarkChatRead
-Rounded.MarkChatUnread
-Rounded.MarkEmailRead
-Rounded.MarkEmailUnread
-Rounded.MarkUnreadChatAlt
-Rounded.Markunread
-Rounded.MarkunreadMailbox
-Rounded.Masks
-Rounded.Maximize
-Rounded.MediaBluetoothOff
-Rounded.MediaBluetoothOn
-Rounded.Mediation
-Rounded.MedicalInformation
-Rounded.MedicalServices
-Rounded.Medication
-Rounded.MeetingRoom
-Rounded.Memory
-Rounded.Menu
-Rounded.Merge
-Rounded.Mic
-Rounded.MicExternalOff
-Rounded.MicExternalOn
-Rounded.MicNone
-Rounded.MicOff
-Rounded.Microwave
-Rounded.MilitaryTech
-Rounded.Minimize
-Rounded.MinorCrash
-Rounded.MiscellaneousServices
-Rounded.Mms
-Rounded.MobileFriendly
-Rounded.MobileOff
-Rounded.MobiledataOff
-Rounded.Mode
-Rounded.ModeComment
-Rounded.ModeEdit
-Rounded.ModeEditOutline
-Rounded.ModeFanOff
-Rounded.ModeNight
-Rounded.ModeOfTravel
-Rounded.ModeStandby
-Rounded.ModelTraining
-Rounded.MonetizationOn
-Rounded.Money
-Rounded.MoneyOff
-Rounded.MoneyOffCsred
-Rounded.Monitor
-Rounded.MonitorHeart
-Rounded.MonitorWeight
-Rounded.MonochromePhotos
-Rounded.Mood
-Rounded.MoodBad
-Rounded.Moped
-Rounded.MoreHoriz
-Rounded.MoreTime
-Rounded.MoreVert
-Rounded.Mosque
-Rounded.MotionPhotosAuto
-Rounded.MotionPhotosOff
-Rounded.MotionPhotosOn
-Rounded.MotionPhotosPause
-Rounded.MotionPhotosPaused
-Rounded.Motorcycle
-Rounded.Mouse
-Rounded.MoveDown
-Rounded.MoveToInbox
-Rounded.MoveUp
-Rounded.Movie
-Rounded.MovieCreation
-Rounded.MovieFilter
-Rounded.Moving
-Rounded.Mp
-Rounded.MultipleStop
-Rounded.Museum
-Rounded.MusicNote
-Rounded.MusicOff
-Rounded.MusicVideo
-Rounded.MyLocation
-Rounded.Nat
-Rounded.Nature
-Rounded.NaturePeople
-Rounded.Navigation
-Rounded.NearMe
-Rounded.NearMeDisabled
-Rounded.NearbyError
-Rounded.NearbyOff
-Rounded.NestCamWiredStand
-Rounded.NetworkCell
-Rounded.NetworkCheck
-Rounded.NetworkLocked
-Rounded.NetworkPing
-Rounded.NetworkWifi
-Rounded.NetworkWifi1Bar
-Rounded.NetworkWifi2Bar
-Rounded.NetworkWifi3Bar
-Rounded.NewLabel
-Rounded.NewReleases
-Rounded.Newspaper
-Rounded.Nfc
-Rounded.NightShelter
-Rounded.Nightlife
-Rounded.Nightlight
-Rounded.NightlightRound
-Rounded.NightsStay
-Rounded.NoAccounts
-Rounded.NoAdultContent
-Rounded.NoBackpack
-Rounded.NoCell
-Rounded.NoCrash
-Rounded.NoDrinks
-Rounded.NoEncryption
-Rounded.NoEncryptionGmailerrorred
-Rounded.NoFlash
-Rounded.NoFood
-Rounded.NoLuggage
-Rounded.NoMeals
-Rounded.NoMeetingRoom
-Rounded.NoPhotography
-Rounded.NoSim
-Rounded.NoStroller
-Rounded.NoTransfer
-Rounded.NoiseAware
-Rounded.NoiseControlOff
-Rounded.NordicWalking
-Rounded.North
-Rounded.NorthEast
-Rounded.NorthWest
-Rounded.NotAccessible
-Rounded.NotInterested
-Rounded.NotStarted
-Rounded.NoteAlt
-Rounded.NotificationAdd
-Rounded.NotificationImportant
-Rounded.Notifications
-Rounded.NotificationsActive
-Rounded.NotificationsNone
-Rounded.NotificationsOff
-Rounded.NotificationsPaused
-Rounded.Numbers
-Rounded.OfflineBolt
-Rounded.OfflinePin
-Rounded.OilBarrel
-Rounded.OnDeviceTraining
-Rounded.OndemandVideo
-Rounded.OnlinePrediction
-Rounded.Opacity
-Rounded.OpenInBrowser
-Rounded.OpenInFull
-Rounded.OpenInNewOff
-Rounded.OpenWith
-Rounded.OtherHouses
-Rounded.Outbond
-Rounded.Outbox
-Rounded.OutdoorGrill
-Rounded.Outlet
-Rounded.OutlinedFlag
-Rounded.Output
-Rounded.Padding
-Rounded.Pages
-Rounded.Pageview
-Rounded.Paid
-Rounded.Palette
-Rounded.PanTool
-Rounded.PanToolAlt
-Rounded.Panorama
-Rounded.PanoramaFishEye
-Rounded.PanoramaHorizontal
-Rounded.PanoramaHorizontalSelect
-Rounded.PanoramaPhotosphere
-Rounded.PanoramaPhotosphereSelect
-Rounded.PanoramaVertical
-Rounded.PanoramaVerticalSelect
-Rounded.PanoramaWideAngle
-Rounded.PanoramaWideAngleSelect
-Rounded.Paragliding
-Rounded.Park
-Rounded.PartyMode
-Rounded.Password
-Rounded.Pattern
-Rounded.Pause
-Rounded.PauseCircle
-Rounded.PauseCircleFilled
-Rounded.PauseCircleOutline
-Rounded.PausePresentation
-Rounded.Payment
-Rounded.Payments
-Rounded.PedalBike
-Rounded.Pending
-Rounded.PendingActions
-Rounded.Pentagon
-Rounded.People
-Rounded.PeopleAlt
-Rounded.PeopleOutline
-Rounded.Percent
-Rounded.PermCameraMic
-Rounded.PermContactCalendar
-Rounded.PermDataSetting
-Rounded.PermDeviceInformation
-Rounded.PermIdentity
-Rounded.PermMedia
-Rounded.PermPhoneMsg
-Rounded.PermScanWifi
-Rounded.Person
-Rounded.Person2
-Rounded.Person3
-Rounded.Person4
-Rounded.PersonAdd
-Rounded.PersonAddAlt
-Rounded.PersonAddAlt1
-Rounded.PersonAddDisabled
-Rounded.PersonOff
-Rounded.PersonOutline
-Rounded.PersonPin
-Rounded.PersonPinCircle
-Rounded.PersonRemove
-Rounded.PersonRemoveAlt1
-Rounded.PersonSearch
-Rounded.PersonalInjury
-Rounded.PersonalVideo
-Rounded.PestControl
-Rounded.PestControlRodent
-Rounded.Pets
-Rounded.Phishing
-Rounded.Phone
-Rounded.PhoneAndroid
-Rounded.PhoneBluetoothSpeaker
-Rounded.PhoneDisabled
-Rounded.PhoneEnabled
-Rounded.PhoneInTalk
-Rounded.PhoneIphone
-Rounded.PhoneLocked
-Rounded.PhonePaused
-Rounded.Phonelink
-Rounded.PhonelinkErase
-Rounded.PhonelinkLock
-Rounded.PhonelinkOff
-Rounded.PhonelinkRing
-Rounded.PhonelinkSetup
-Rounded.Photo
-Rounded.PhotoAlbum
-Rounded.PhotoCamera
-Rounded.PhotoCameraBack
-Rounded.PhotoCameraFront
-Rounded.PhotoFilter
-Rounded.PhotoLibrary
-Rounded.PhotoSizeSelectActual
-Rounded.PhotoSizeSelectLarge
-Rounded.PhotoSizeSelectSmall
-Rounded.Php
-Rounded.Piano
-Rounded.PianoOff
-Rounded.PictureAsPdf
-Rounded.PictureInPicture
-Rounded.PictureInPictureAlt
-Rounded.PieChart
-Rounded.PieChartOutline
-Rounded.Pin
-Rounded.PinDrop
-Rounded.PinEnd
-Rounded.PinInvoke
-Rounded.Pinch
-Rounded.PivotTableChart
-Rounded.Pix
-Rounded.Place
-Rounded.Plagiarism
-Rounded.PlayArrow
-Rounded.PlayCircle
-Rounded.PlayCircleFilled
-Rounded.PlayCircleOutline
-Rounded.PlayDisabled
-Rounded.PlayForWork
-Rounded.PlayLesson
-Rounded.PlaylistAddCheckCircle
-Rounded.PlaylistAddCircle
-Rounded.PlaylistRemove
-Rounded.Plumbing
-Rounded.PlusOne
-Rounded.Podcasts
-Rounded.PointOfSale
-Rounded.Policy
-Rounded.Poll
-Rounded.Polyline
-Rounded.Polymer
-Rounded.Pool
-Rounded.PortableWifiOff
-Rounded.Portrait
-Rounded.PostAdd
-Rounded.Power
-Rounded.PowerInput
-Rounded.PowerOff
-Rounded.PowerSettingsNew
-Rounded.PrecisionManufacturing
-Rounded.PregnantWoman
-Rounded.PresentToAll
-Rounded.Preview
-Rounded.PriceChange
-Rounded.PriceCheck
-Rounded.Print
-Rounded.PrintDisabled
-Rounded.PriorityHigh
-Rounded.PrivacyTip
-Rounded.PrivateConnectivity
-Rounded.ProductionQuantityLimits
-Rounded.Propane
-Rounded.PropaneTank
-Rounded.Psychology
-Rounded.PsychologyAlt
-Rounded.Public
-Rounded.PublicOff
-Rounded.Publish
-Rounded.PublishedWithChanges
-Rounded.PunchClock
-Rounded.PushPin
-Rounded.QrCode
-Rounded.QrCode2
-Rounded.QrCodeScanner
-Rounded.QueryBuilder
-Rounded.QueryStats
-Rounded.QuestionAnswer
-Rounded.QuestionMark
-Rounded.Queue
-Rounded.QueuePlayNext
-Rounded.Quickreply
-Rounded.Quiz
-Rounded.RMobiledata
-Rounded.Radar
-Rounded.Radio
-Rounded.RadioButtonChecked
-Rounded.RadioButtonUnchecked
-Rounded.RailwayAlert
-Rounded.RamenDining
-Rounded.RampLeft
-Rounded.RampRight
-Rounded.RateReview
-Rounded.RawOff
-Rounded.RawOn
-Rounded.RealEstateAgent
-Rounded.Receipt
-Rounded.RecentActors
-Rounded.Recommend
-Rounded.RecordVoiceOver
-Rounded.Rectangle
-Rounded.Recycling
-Rounded.Redeem
-Rounded.ReduceCapacity
-Rounded.Refresh
-Rounded.RememberMe
-Rounded.Remove
-Rounded.RemoveCircle
-Rounded.RemoveCircleOutline
-Rounded.RemoveDone
-Rounded.RemoveFromQueue
-Rounded.RemoveModerator
-Rounded.RemoveRedEye
-Rounded.RemoveRoad
-Rounded.RemoveShoppingCart
-Rounded.Reorder
-Rounded.Repartition
-Rounded.Repeat
-Rounded.RepeatOn
-Rounded.RepeatOne
-Rounded.RepeatOneOn
-Rounded.Replay
-Rounded.Replay10
-Rounded.Replay30
-Rounded.Replay5
-Rounded.ReplayCircleFilled
-Rounded.Report
-Rounded.ReportGmailerrorred
-Rounded.ReportOff
-Rounded.ReportProblem
-Rounded.RequestPage
-Rounded.RequestQuote
-Rounded.ResetTv
-Rounded.RestartAlt
-Rounded.Restaurant
-Rounded.RestaurantMenu
-Rounded.Restore
-Rounded.RestoreFromTrash
-Rounded.RestorePage
-Rounded.Reviews
-Rounded.RiceBowl
-Rounded.RingVolume
-Rounded.Rocket
-Rounded.RocketLaunch
-Rounded.RollerShades
-Rounded.RollerShadesClosed
-Rounded.RollerSkating
-Rounded.Roofing
-Rounded.Room
-Rounded.RoomPreferences
-Rounded.RoomService
-Rounded.Rotate90DegreesCcw
-Rounded.Rotate90DegreesCw
-Rounded.RoundaboutLeft
-Rounded.RoundaboutRight
-Rounded.RoundedCorner
-Rounded.Route
-Rounded.Router
-Rounded.Rowing
-Rounded.RssFeed
-Rounded.Rsvp
-Rounded.RuleFolder
-Rounded.RunCircle
-Rounded.RunningWithErrors
-Rounded.RvHookup
-Rounded.SafetyCheck
-Rounded.SafetyDivider
-Rounded.Sailing
-Rounded.Sanitizer
-Rounded.Satellite
-Rounded.SatelliteAlt
-Rounded.Save
-Rounded.SaveAlt
-Rounded.SaveAs
-Rounded.SavedSearch
-Rounded.Savings
-Rounded.Scale
-Rounded.Scanner
-Rounded.ScatterPlot
-Rounded.Schedule
-Rounded.Schema
-Rounded.School
-Rounded.Science
-Rounded.Score
-Rounded.Scoreboard
-Rounded.ScreenLockLandscape
-Rounded.ScreenLockPortrait
-Rounded.ScreenLockRotation
-Rounded.ScreenRotation
-Rounded.ScreenRotationAlt
-Rounded.ScreenSearchDesktop
-Rounded.Screenshot
-Rounded.ScreenshotMonitor
-Rounded.ScubaDiving
-Rounded.Sd
-Rounded.SdCard
-Rounded.SdCardAlert
-Rounded.SdStorage
-Rounded.Search
-Rounded.SearchOff
-Rounded.Security
-Rounded.SecurityUpdate
-Rounded.SecurityUpdateGood
-Rounded.SecurityUpdateWarning
-Rounded.SelectAll
-Rounded.SelfImprovement
-Rounded.Sell
-Rounded.SendTimeExtension
-Rounded.SensorDoor
-Rounded.SensorOccupied
-Rounded.SensorWindow
-Rounded.Sensors
-Rounded.SensorsOff
-Rounded.SentimentDissatisfied
-Rounded.SentimentNeutral
-Rounded.SentimentSatisfied
-Rounded.SentimentSatisfiedAlt
-Rounded.SentimentVeryDissatisfied
-Rounded.SentimentVerySatisfied
-Rounded.SetMeal
-Rounded.Settings
-Rounded.SettingsAccessibility
-Rounded.SettingsApplications
-Rounded.SettingsBackupRestore
-Rounded.SettingsBluetooth
-Rounded.SettingsBrightness
-Rounded.SettingsCell
-Rounded.SettingsEthernet
-Rounded.SettingsInputAntenna
-Rounded.SettingsInputComponent
-Rounded.SettingsInputComposite
-Rounded.SettingsInputHdmi
-Rounded.SettingsInputSvideo
-Rounded.SettingsOverscan
-Rounded.SettingsPhone
-Rounded.SettingsPower
-Rounded.SettingsRemote
-Rounded.SettingsSuggest
-Rounded.SettingsSystemDaydream
-Rounded.SettingsVoice
-Rounded.SevereCold
-Rounded.ShapeLine
-Rounded.Share
-Rounded.ShareLocation
-Rounded.Shield
-Rounded.ShieldMoon
-Rounded.Shop
-Rounded.Shop2
-Rounded.ShopTwo
-Rounded.ShoppingBag
-Rounded.ShoppingBasket
-Rounded.ShoppingCart
-Rounded.ShoppingCartCheckout
-Rounded.Shower
-Rounded.Shuffle
-Rounded.ShuffleOn
-Rounded.ShutterSpeed
-Rounded.Sick
-Rounded.SignLanguage
-Rounded.SignalCellular0Bar
-Rounded.SignalCellular4Bar
-Rounded.SignalCellularAlt
-Rounded.SignalCellularAlt1Bar
-Rounded.SignalCellularAlt2Bar
-Rounded.SignalCellularConnectedNoInternet0Bar
-Rounded.SignalCellularConnectedNoInternet4Bar
-Rounded.SignalCellularNoSim
-Rounded.SignalCellularNodata
-Rounded.SignalCellularNull
-Rounded.SignalCellularOff
-Rounded.SignalWifi0Bar
-Rounded.SignalWifi4Bar
-Rounded.SignalWifi4BarLock
-Rounded.SignalWifiBad
-Rounded.SignalWifiConnectedNoInternet4
-Rounded.SignalWifiOff
-Rounded.SignalWifiStatusbar4Bar
-Rounded.SignalWifiStatusbarConnectedNoInternet4
-Rounded.SignalWifiStatusbarNull
-Rounded.Signpost
-Rounded.SimCard
-Rounded.SimCardAlert
-Rounded.SimCardDownload
-Rounded.SingleBed
-Rounded.Sip
-Rounded.Skateboarding
-Rounded.SkipNext
-Rounded.SkipPrevious
-Rounded.Sledding
-Rounded.Slideshow
-Rounded.SlowMotionVideo
-Rounded.SmartButton
-Rounded.SmartDisplay
-Rounded.SmartScreen
-Rounded.SmartToy
-Rounded.Smartphone
-Rounded.SmokeFree
-Rounded.SmokingRooms
-Rounded.Sms
-Rounded.SmsFailed
-Rounded.SnippetFolder
-Rounded.Snooze
-Rounded.Snowboarding
-Rounded.Snowmobile
-Rounded.Snowshoeing
-Rounded.Soap
-Rounded.SocialDistance
-Rounded.SolarPower
-Rounded.SortByAlpha
-Rounded.Sos
-Rounded.SoupKitchen
-Rounded.Source
-Rounded.South
-Rounded.SouthAmerica
-Rounded.SouthEast
-Rounded.SouthWest
-Rounded.Spa
-Rounded.SpaceBar
-Rounded.SpaceDashboard
-Rounded.SpatialAudio
-Rounded.SpatialAudioOff
-Rounded.SpatialTracking
-Rounded.Speaker
-Rounded.SpeakerGroup
-Rounded.SpeakerNotesOff
-Rounded.SpeakerPhone
-Rounded.Speed
-Rounded.Spellcheck
-Rounded.Splitscreen
-Rounded.Spoke
-Rounded.Sports
-Rounded.SportsBar
-Rounded.SportsBaseball
-Rounded.SportsBasketball
-Rounded.SportsCricket
-Rounded.SportsEsports
-Rounded.SportsFootball
-Rounded.SportsGolf
-Rounded.SportsGymnastics
-Rounded.SportsHandball
-Rounded.SportsHockey
-Rounded.SportsKabaddi
-Rounded.SportsMartialArts
-Rounded.SportsMma
-Rounded.SportsMotorsports
-Rounded.SportsRugby
-Rounded.SportsScore
-Rounded.SportsSoccer
-Rounded.SportsTennis
-Rounded.SportsVolleyball
-Rounded.Square
-Rounded.SquareFoot
-Rounded.SsidChart
-Rounded.StackedBarChart
-Rounded.StackedLineChart
-Rounded.Stadium
-Rounded.Stairs
-Rounded.Star
-Rounded.StarBorder
-Rounded.StarBorderPurple500
-Rounded.StarOutline
-Rounded.StarPurple500
-Rounded.StarRate
-Rounded.Stars
-Rounded.Start
-Rounded.StayCurrentLandscape
-Rounded.StayCurrentPortrait
-Rounded.StayPrimaryLandscape
-Rounded.StayPrimaryPortrait
-Rounded.Stop
-Rounded.StopCircle
-Rounded.Storage
-Rounded.Store
-Rounded.StoreMallDirectory
-Rounded.Storefront
-Rounded.Storm
-Rounded.Straight
-Rounded.Straighten
-Rounded.Stream
-Rounded.Streetview
-Rounded.StrikethroughS
-Rounded.Stroller
-Rounded.Style
-Rounded.SubdirectoryArrowLeft
-Rounded.SubdirectoryArrowRight
-Rounded.Subscript
-Rounded.Subscriptions
-Rounded.Subtitles
-Rounded.SubtitlesOff
-Rounded.Subway
-Rounded.Summarize
-Rounded.Superscript
-Rounded.SupervisedUserCircle
-Rounded.SupervisorAccount
-Rounded.Support
-Rounded.SupportAgent
-Rounded.Surfing
-Rounded.SurroundSound
-Rounded.SwapCalls
-Rounded.SwapHoriz
-Rounded.SwapHorizontalCircle
-Rounded.SwapVert
-Rounded.SwapVerticalCircle
-Rounded.Swipe
-Rounded.SwipeDown
-Rounded.SwipeDownAlt
-Rounded.SwipeLeft
-Rounded.SwipeLeftAlt
-Rounded.SwipeRight
-Rounded.SwipeRightAlt
-Rounded.SwipeUp
-Rounded.SwipeUpAlt
-Rounded.SwipeVertical
-Rounded.SwitchAccessShortcut
-Rounded.SwitchAccessShortcutAdd
-Rounded.SwitchAccount
-Rounded.SwitchCamera
-Rounded.SwitchLeft
-Rounded.SwitchRight
-Rounded.SwitchVideo
-Rounded.Synagogue
-Rounded.Sync
-Rounded.SyncAlt
-Rounded.SyncDisabled
-Rounded.SyncLock
-Rounded.SyncProblem
-Rounded.SystemSecurityUpdate
-Rounded.SystemSecurityUpdateGood
-Rounded.SystemSecurityUpdateWarning
-Rounded.SystemUpdate
-Rounded.SystemUpdateAlt
-Rounded.Tab
-Rounded.TabUnselected
-Rounded.TableBar
-Rounded.TableChart
-Rounded.TableRestaurant
-Rounded.TableRows
-Rounded.TableView
-Rounded.Tablet
-Rounded.TabletAndroid
-Rounded.TabletMac
-Rounded.Tag
-Rounded.TagFaces
-Rounded.TakeoutDining
-Rounded.TapAndPlay
-Rounded.Tapas
-Rounded.Task
-Rounded.TaskAlt
-Rounded.TaxiAlert
-Rounded.TempleBuddhist
-Rounded.TempleHindu
-Rounded.Terminal
-Rounded.Terrain
-Rounded.TextDecrease
-Rounded.TextFields
-Rounded.TextFormat
-Rounded.TextIncrease
-Rounded.TextRotateUp
-Rounded.TextRotateVertical
-Rounded.TextRotationAngledown
-Rounded.TextRotationAngleup
-Rounded.TextRotationDown
-Rounded.TextRotationNone
-Rounded.Textsms
-Rounded.Texture
-Rounded.TheaterComedy
-Rounded.Theaters
-Rounded.Thermostat
-Rounded.ThermostatAuto
-Rounded.ThumbDown
-Rounded.ThumbDownAlt
-Rounded.ThumbDownOffAlt
-Rounded.ThumbUp
-Rounded.ThumbUpAlt
-Rounded.ThumbUpOffAlt
-Rounded.ThumbsUpDown
-Rounded.Thunderstorm
-Rounded.TimeToLeave
-Rounded.Timelapse
-Rounded.Timeline
-Rounded.Timer
-Rounded.Timer10
-Rounded.Timer10Select
-Rounded.Timer3
-Rounded.Timer3Select
-Rounded.TimerOff
-Rounded.TipsAndUpdates
-Rounded.TireRepair
-Rounded.Title
-Rounded.Today
-Rounded.ToggleOff
-Rounded.ToggleOn
-Rounded.Token
-Rounded.Toll
-Rounded.Tonality
-Rounded.Topic
-Rounded.Tornado
-Rounded.TouchApp
-Rounded.Tour
-Rounded.Toys
-Rounded.TrackChanges
-Rounded.Traffic
-Rounded.Train
-Rounded.Tram
-Rounded.Transcribe
-Rounded.TransferWithinAStation
-Rounded.Transform
-Rounded.Transgender
-Rounded.TransitEnterexit
-Rounded.Translate
-Rounded.TravelExplore
-Rounded.TripOrigin
-Rounded.Troubleshoot
-Rounded.Try
-Rounded.Tsunami
-Rounded.Tty
-Rounded.Tune
-Rounded.Tungsten
-Rounded.TurnLeft
-Rounded.TurnRight
-Rounded.TurnSharpLeft
-Rounded.TurnSharpRight
-Rounded.TurnSlightLeft
-Rounded.TurnSlightRight
-Rounded.TurnedIn
-Rounded.TurnedInNot
-Rounded.Tv
-Rounded.TvOff
-Rounded.TwoWheeler
-Rounded.TypeSpecimen
-Rounded.UTurnLeft
-Rounded.UTurnRight
-Rounded.Umbrella
-Rounded.Unarchive
-Rounded.UnfoldLess
-Rounded.UnfoldLessDouble
-Rounded.UnfoldMore
-Rounded.UnfoldMoreDouble
-Rounded.Unpublished
-Rounded.Unsubscribe
-Rounded.Upcoming
-Rounded.Update
-Rounded.UpdateDisabled
-Rounded.Upgrade
-Rounded.Upload
-Rounded.UploadFile
-Rounded.Usb
-Rounded.UsbOff
-Rounded.Vaccines
-Rounded.VapeFree
-Rounded.VapingRooms
-Rounded.Verified
-Rounded.VerifiedUser
-Rounded.VerticalAlignBottom
-Rounded.VerticalAlignCenter
-Rounded.VerticalAlignTop
-Rounded.VerticalDistribute
-Rounded.VerticalShades
-Rounded.VerticalShadesClosed
-Rounded.VerticalSplit
-Rounded.Vibration
-Rounded.VideoCall
-Rounded.VideoCameraBack
-Rounded.VideoCameraFront
-Rounded.VideoChat
-Rounded.VideoFile
-Rounded.VideoLabel
-Rounded.VideoLibrary
-Rounded.VideoSettings
-Rounded.VideoStable
-Rounded.Videocam
-Rounded.VideocamOff
-Rounded.VideogameAsset
-Rounded.VideogameAssetOff
-Rounded.ViewAgenda
-Rounded.ViewArray
-Rounded.ViewCarousel
-Rounded.ViewColumn
-Rounded.ViewComfy
-Rounded.ViewComfyAlt
-Rounded.ViewCompact
-Rounded.ViewCompactAlt
-Rounded.ViewCozy
-Rounded.ViewDay
-Rounded.ViewHeadline
-Rounded.ViewInAr
-Rounded.ViewKanban
-Rounded.ViewModule
-Rounded.ViewStream
-Rounded.ViewTimeline
-Rounded.ViewWeek
-Rounded.Vignette
-Rounded.Villa
-Rounded.Visibility
-Rounded.VisibilityOff
-Rounded.VoiceChat
-Rounded.VoiceOverOff
-Rounded.Voicemail
-Rounded.Volcano
-Rounded.VolunteerActivism
-Rounded.VpnKey
-Rounded.VpnKeyOff
-Rounded.VpnLock
-Rounded.Vrpano
-Rounded.Wallet
-Rounded.Wallpaper
-Rounded.Warehouse
-Rounded.Warning
-Rounded.WarningAmber
-Rounded.Wash
-Rounded.Watch
-Rounded.WatchLater
-Rounded.WatchOff
-Rounded.Water
-Rounded.WaterDamage
-Rounded.WaterDrop
-Rounded.WaterfallChart
-Rounded.Waves
-Rounded.WavingHand
-Rounded.WbAuto
-Rounded.WbCloudy
-Rounded.WbIncandescent
-Rounded.WbIridescent
-Rounded.WbShade
-Rounded.WbSunny
-Rounded.WbTwilight
-Rounded.Wc
-Rounded.Web
-Rounded.WebAsset
-Rounded.WebAssetOff
-Rounded.WebStories
-Rounded.Webhook
-Rounded.Weekend
-Rounded.West
-Rounded.Whatsapp
-Rounded.Whatshot
-Rounded.WheelchairPickup
-Rounded.WhereToVote
-Rounded.Widgets
-Rounded.WidthFull
-Rounded.WidthNormal
-Rounded.WidthWide
-Rounded.Wifi
-Rounded.Wifi1Bar
-Rounded.Wifi2Bar
-Rounded.WifiCalling
-Rounded.WifiCalling3
-Rounded.WifiChannel
-Rounded.WifiFind
-Rounded.WifiLock
-Rounded.WifiOff
-Rounded.WifiPassword
-Rounded.WifiProtectedSetup
-Rounded.WifiTethering
-Rounded.WifiTetheringError
-Rounded.WifiTetheringErrorRounded
-Rounded.WifiTetheringOff
-Rounded.WindPower
-Rounded.Window
-Rounded.WineBar
-Rounded.Woman
-Rounded.Woman2
-Rounded.Work
-Rounded.WorkHistory
-Rounded.WorkOff
-Rounded.WorkOutline
-Rounded.WorkspacePremium
-Rounded.Workspaces
-Rounded.WrongLocation
-Rounded.Yard
-Rounded.YoutubeSearchedFor
-Rounded.ZoomIn
-Rounded.ZoomInMap
-Rounded.ZoomOut
-Rounded.ZoomOutMap
-Rounded._10k
-Rounded._10mp
-Rounded._11mp
-Rounded._123
-Rounded._12mp
-Rounded._13mp
-Rounded._14mp
-Rounded._15mp
-Rounded._16mp
-Rounded._17mp
-Rounded._18UpRating
-Rounded._18mp
-Rounded._19mp
-Rounded._1k
-Rounded._1kPlus
-Rounded._1xMobiledata
-Rounded._20mp
-Rounded._21mp
-Rounded._22mp
-Rounded._23mp
-Rounded._24mp
-Rounded._2k
-Rounded._2kPlus
-Rounded._2mp
-Rounded._30fps
-Rounded._30fpsSelect
-Rounded._3dRotation
-Rounded._3gMobiledata
-Rounded._3k
-Rounded._3kPlus
-Rounded._3mp
-Rounded._3p
-Rounded._4gMobiledata
-Rounded._4gPlusMobiledata
-Rounded._4k
-Rounded._4kPlus
-Rounded._4mp
-Rounded._5g
-Rounded._5k
-Rounded._5kPlus
-Rounded._5mp
-Rounded._60fps
-Rounded._60fpsSelect
-Rounded._6FtApart
-Rounded._6k
-Rounded._6kPlus
-Rounded._6mp
-Rounded._7k
-Rounded._7kPlus
-Rounded._7mp
-Rounded._8k
-Rounded._8kPlus
-Rounded._8mp
-Rounded._9k
-Rounded._9kPlus
-Rounded._9mp
-Sharp.Abc
-Sharp.AcUnit
-Sharp.AccessAlarm
-Sharp.AccessAlarms
-Sharp.AccessTime
-Sharp.AccessTimeFilled
-Sharp.Accessibility
-Sharp.AccessibilityNew
-Sharp.AccountBalance
-Sharp.AccountBalanceWallet
-Sharp.AccountBox
-Sharp.AccountCircle
-Sharp.AccountTree
-Sharp.AdUnits
-Sharp.Adb
-Sharp.Add
-Sharp.AddAPhoto
-Sharp.AddAlarm
-Sharp.AddAlert
-Sharp.AddBox
-Sharp.AddBusiness
-Sharp.AddCard
-Sharp.AddChart
-Sharp.AddCircle
-Sharp.AddCircleOutline
-Sharp.AddComment
-Sharp.AddHome
-Sharp.AddHomeWork
-Sharp.AddIcCall
-Sharp.AddLink
-Sharp.AddLocation
-Sharp.AddLocationAlt
-Sharp.AddModerator
-Sharp.AddPhotoAlternate
-Sharp.AddReaction
-Sharp.AddRoad
-Sharp.AddShoppingCart
-Sharp.AddTask
-Sharp.AddToDrive
-Sharp.AddToPhotos
-Sharp.AddToQueue
-Sharp.Addchart
-Sharp.AdfScanner
-Sharp.Adjust
-Sharp.AdminPanelSettings
-Sharp.AdsClick
-Sharp.Agriculture
-Sharp.Air
-Sharp.AirlineSeatFlat
-Sharp.AirlineSeatFlatAngled
-Sharp.AirlineSeatIndividualSuite
-Sharp.AirlineSeatLegroomExtra
-Sharp.AirlineSeatLegroomNormal
-Sharp.AirlineSeatLegroomReduced
-Sharp.AirlineSeatReclineExtra
-Sharp.AirlineSeatReclineNormal
-Sharp.AirlineStops
-Sharp.Airlines
-Sharp.AirplanemodeActive
-Sharp.AirplanemodeInactive
-Sharp.Airplay
-Sharp.AirportShuttle
-Sharp.Alarm
-Sharp.AlarmAdd
-Sharp.AlarmOff
-Sharp.AlarmOn
-Sharp.Album
-Sharp.AlignHorizontalCenter
-Sharp.AlignVerticalBottom
-Sharp.AlignVerticalCenter
-Sharp.AlignVerticalTop
-Sharp.AllInbox
-Sharp.AllInclusive
-Sharp.AllOut
-Sharp.AlternateEmail
-Sharp.AmpStories
-Sharp.Analytics
-Sharp.Anchor
-Sharp.Android
-Sharp.Animation
-Sharp.Aod
-Sharp.Apartment
-Sharp.Api
-Sharp.AppBlocking
-Sharp.AppRegistration
-Sharp.AppSettingsAlt
-Sharp.AppShortcut
-Sharp.Approval
-Sharp.Apps
-Sharp.AppsOutage
-Sharp.Architecture
-Sharp.Archive
-Sharp.AreaChart
-Sharp.ArrowBackIosNew
-Sharp.ArrowCircleDown
-Sharp.ArrowCircleLeft
-Sharp.ArrowCircleRight
-Sharp.ArrowCircleUp
-Sharp.ArrowDownward
-Sharp.ArrowDropDown
-Sharp.ArrowDropDownCircle
-Sharp.ArrowDropUp
-Sharp.ArrowOutward
-Sharp.ArrowUpward
-Sharp.ArtTrack
-Sharp.AspectRatio
-Sharp.Assessment
-Sharp.AssignmentInd
-Sharp.AssignmentLate
-Sharp.AssignmentReturned
-Sharp.AssignmentTurnedIn
-Sharp.AssistWalker
-Sharp.Assistant
-Sharp.AssistantPhoto
-Sharp.AssuredWorkload
-Sharp.Atm
-Sharp.AttachEmail
-Sharp.AttachFile
-Sharp.AttachMoney
-Sharp.Attachment
-Sharp.Attractions
-Sharp.Attribution
-Sharp.AudioFile
-Sharp.Audiotrack
-Sharp.AutoAwesome
-Sharp.AutoAwesomeMosaic
-Sharp.AutoAwesomeMotion
-Sharp.AutoDelete
-Sharp.AutoFixHigh
-Sharp.AutoFixNormal
-Sharp.AutoFixOff
-Sharp.AutoGraph
-Sharp.AutoMode
-Sharp.AutoStories
-Sharp.AutofpsSelect
-Sharp.Autorenew
-Sharp.AvTimer
-Sharp.BabyChangingStation
-Sharp.BackHand
-Sharp.Backpack
-Sharp.Backup
-Sharp.BackupTable
-Sharp.Badge
-Sharp.BakeryDining
-Sharp.Balance
-Sharp.Balcony
-Sharp.Ballot
-Sharp.BarChart
-Sharp.BatchPrediction
-Sharp.Bathroom
-Sharp.Bathtub
-Sharp.Battery0Bar
-Sharp.Battery1Bar
-Sharp.Battery2Bar
-Sharp.Battery3Bar
-Sharp.Battery4Bar
-Sharp.Battery5Bar
-Sharp.Battery6Bar
-Sharp.BatteryAlert
-Sharp.BatteryChargingFull
-Sharp.BatteryFull
-Sharp.BatterySaver
-Sharp.BatteryStd
-Sharp.BeachAccess
-Sharp.Bed
-Sharp.BedroomBaby
-Sharp.BedroomChild
-Sharp.BedroomParent
-Sharp.Bedtime
-Sharp.BedtimeOff
-Sharp.Beenhere
-Sharp.Bento
-Sharp.BikeScooter
-Sharp.Biotech
-Sharp.Blender
-Sharp.Blind
-Sharp.Blinds
-Sharp.BlindsClosed
-Sharp.Block
-Sharp.Bloodtype
-Sharp.Bluetooth
-Sharp.BluetoothAudio
-Sharp.BluetoothConnected
-Sharp.BluetoothDisabled
-Sharp.BluetoothDrive
-Sharp.BlurCircular
-Sharp.BlurLinear
-Sharp.BlurOff
-Sharp.BlurOn
-Sharp.Bolt
-Sharp.Book
-Sharp.BookOnline
-Sharp.Bookmark
-Sharp.BookmarkAdd
-Sharp.BookmarkAdded
-Sharp.BookmarkBorder
-Sharp.BookmarkRemove
-Sharp.Bookmarks
-Sharp.BorderAll
-Sharp.BorderBottom
-Sharp.BorderClear
-Sharp.BorderColor
-Sharp.BorderHorizontal
-Sharp.BorderInner
-Sharp.BorderLeft
-Sharp.BorderOuter
-Sharp.BorderRight
-Sharp.BorderStyle
-Sharp.BorderTop
-Sharp.BorderVertical
-Sharp.Boy
-Sharp.BreakfastDining
-Sharp.Brightness1
-Sharp.Brightness2
-Sharp.Brightness3
-Sharp.Brightness4
-Sharp.Brightness5
-Sharp.Brightness6
-Sharp.Brightness7
-Sharp.BrightnessAuto
-Sharp.BrightnessHigh
-Sharp.BrightnessLow
-Sharp.BrightnessMedium
-Sharp.BroadcastOnHome
-Sharp.BroadcastOnPersonal
-Sharp.BrokenImage
-Sharp.BrowseGallery
-Sharp.BrowserNotSupported
-Sharp.BrowserUpdated
-Sharp.BrunchDining
-Sharp.Brush
-Sharp.BubbleChart
-Sharp.BugReport
-Sharp.Build
-Sharp.BuildCircle
-Sharp.Bungalow
-Sharp.BurstMode
-Sharp.BusAlert
-Sharp.Business
-Sharp.BusinessCenter
-Sharp.Cabin
-Sharp.Cable
-Sharp.Cached
-Sharp.Cake
-Sharp.Calculate
-Sharp.CalendarMonth
-Sharp.CalendarToday
-Sharp.CalendarViewDay
-Sharp.CalendarViewMonth
-Sharp.CalendarViewWeek
-Sharp.Call
-Sharp.CallEnd
-Sharp.CallToAction
-Sharp.Camera
-Sharp.CameraAlt
-Sharp.CameraEnhance
-Sharp.CameraFront
-Sharp.CameraIndoor
-Sharp.CameraOutdoor
-Sharp.CameraRear
-Sharp.CameraRoll
-Sharp.Cameraswitch
-Sharp.Campaign
-Sharp.Cancel
-Sharp.CancelPresentation
-Sharp.CancelScheduleSend
-Sharp.CandlestickChart
-Sharp.CarCrash
-Sharp.CarRental
-Sharp.CarRepair
-Sharp.CardGiftcard
-Sharp.CardMembership
-Sharp.CardTravel
-Sharp.Carpenter
-Sharp.Cases
-Sharp.Casino
-Sharp.Cast
-Sharp.CastConnected
-Sharp.CastForEducation
-Sharp.Castle
-Sharp.CatchingPokemon
-Sharp.Category
-Sharp.Celebration
-Sharp.CellTower
-Sharp.CellWifi
-Sharp.CenterFocusStrong
-Sharp.CenterFocusWeak
-Sharp.Chair
-Sharp.ChairAlt
-Sharp.Chalet
-Sharp.ChangeCircle
-Sharp.ChangeHistory
-Sharp.ChargingStation
-Sharp.ChatBubble
-Sharp.ChatBubbleOutline
-Sharp.Check
-Sharp.CheckBox
-Sharp.CheckBoxOutlineBlank
-Sharp.CheckCircle
-Sharp.CheckCircleOutline
-Sharp.Checklist
-Sharp.ChecklistRtl
-Sharp.Checkroom
-Sharp.ChevronLeft
-Sharp.ChevronRight
-Sharp.ChildCare
-Sharp.ChildFriendly
-Sharp.Church
-Sharp.Circle
-Sharp.CircleNotifications
-Sharp.Class
-Sharp.CleanHands
-Sharp.CleaningServices
-Sharp.Clear
-Sharp.ClearAll
-Sharp.Close
-Sharp.CloseFullscreen
-Sharp.ClosedCaption
-Sharp.ClosedCaptionDisabled
-Sharp.ClosedCaptionOff
-Sharp.Cloud
-Sharp.CloudCircle
-Sharp.CloudDone
-Sharp.CloudDownload
-Sharp.CloudOff
-Sharp.CloudQueue
-Sharp.CloudSync
-Sharp.CloudUpload
-Sharp.Co2
-Sharp.CoPresent
-Sharp.Code
-Sharp.CodeOff
-Sharp.Coffee
-Sharp.CoffeeMaker
-Sharp.Collections
-Sharp.CollectionsBookmark
-Sharp.ColorLens
-Sharp.Colorize
-Sharp.CommentBank
-Sharp.CommentsDisabled
-Sharp.Commit
-Sharp.Commute
-Sharp.Compare
-Sharp.CompassCalibration
-Sharp.Compost
-Sharp.Compress
-Sharp.Computer
-Sharp.ConfirmationNumber
-Sharp.ConnectWithoutContact
-Sharp.ConnectedTv
-Sharp.ConnectingAirports
-Sharp.Construction
-Sharp.ContactEmergency
-Sharp.ContactMail
-Sharp.ContactPage
-Sharp.ContactPhone
-Sharp.Contactless
-Sharp.Contacts
-Sharp.ContentCopy
-Sharp.ContentCut
-Sharp.ContentPaste
-Sharp.ContentPasteGo
-Sharp.ContentPasteOff
-Sharp.ContentPasteSearch
-Sharp.Contrast
-Sharp.ControlCamera
-Sharp.ControlPoint
-Sharp.ControlPointDuplicate
-Sharp.Cookie
-Sharp.CopyAll
-Sharp.Copyright
-Sharp.Coronavirus
-Sharp.CorporateFare
-Sharp.Cottage
-Sharp.Countertops
-Sharp.Create
-Sharp.CreateNewFolder
-Sharp.CreditCard
-Sharp.CreditCardOff
-Sharp.CreditScore
-Sharp.Crib
-Sharp.CrisisAlert
-Sharp.Crop
-Sharp.Crop169
-Sharp.Crop32
-Sharp.Crop54
-Sharp.Crop75
-Sharp.CropDin
-Sharp.CropFree
-Sharp.CropLandscape
-Sharp.CropOriginal
-Sharp.CropPortrait
-Sharp.CropRotate
-Sharp.CropSquare
-Sharp.CrueltyFree
-Sharp.Css
-Sharp.CurrencyBitcoin
-Sharp.CurrencyExchange
-Sharp.CurrencyFranc
-Sharp.CurrencyLira
-Sharp.CurrencyPound
-Sharp.CurrencyRuble
-Sharp.CurrencyRupee
-Sharp.CurrencyYen
-Sharp.CurrencyYuan
-Sharp.Curtains
-Sharp.CurtainsClosed
-Sharp.Cyclone
-Sharp.Dangerous
-Sharp.DarkMode
-Sharp.Dashboard
-Sharp.DashboardCustomize
-Sharp.DataArray
-Sharp.DataExploration
-Sharp.DataObject
-Sharp.DataSaverOff
-Sharp.DataSaverOn
-Sharp.DataThresholding
-Sharp.DataUsage
-Sharp.Dataset
-Sharp.DatasetLinked
-Sharp.DateRange
-Sharp.Deblur
-Sharp.Deck
-Sharp.Dehaze
-Sharp.Delete
-Sharp.DeleteForever
-Sharp.DeleteOutline
-Sharp.DeleteSweep
-Sharp.DeliveryDining
-Sharp.DensityLarge
-Sharp.DensityMedium
-Sharp.DensitySmall
-Sharp.DepartureBoard
-Sharp.Description
-Sharp.Deselect
-Sharp.DesignServices
-Sharp.Desk
-Sharp.DesktopAccessDisabled
-Sharp.DesktopMac
-Sharp.DesktopWindows
-Sharp.Details
-Sharp.DeveloperBoard
-Sharp.DeveloperBoardOff
-Sharp.DeveloperMode
-Sharp.DeviceHub
-Sharp.DeviceThermostat
-Sharp.DeviceUnknown
-Sharp.Devices
-Sharp.DevicesFold
-Sharp.DevicesOther
-Sharp.DialerSip
-Sharp.Dialpad
-Sharp.Diamond
-Sharp.Difference
-Sharp.Dining
-Sharp.DinnerDining
-Sharp.Directions
-Sharp.DirectionsBoat
-Sharp.DirectionsBoatFilled
-Sharp.DirectionsBus
-Sharp.DirectionsBusFilled
-Sharp.DirectionsCar
-Sharp.DirectionsCarFilled
-Sharp.DirectionsOff
-Sharp.DirectionsRailway
-Sharp.DirectionsRailwayFilled
-Sharp.DirectionsSubway
-Sharp.DirectionsSubwayFilled
-Sharp.DirectionsTransit
-Sharp.DirectionsTransitFilled
-Sharp.DirtyLens
-Sharp.DisabledByDefault
-Sharp.DisabledVisible
-Sharp.DiscFull
-Sharp.Discount
-Sharp.DisplaySettings
-Sharp.Diversity1
-Sharp.Diversity2
-Sharp.Diversity3
-Sharp.Dns
-Sharp.DoDisturb
-Sharp.DoDisturbAlt
-Sharp.DoDisturbOff
-Sharp.DoDisturbOn
-Sharp.DoNotDisturb
-Sharp.DoNotDisturbAlt
-Sharp.DoNotDisturbOff
-Sharp.DoNotDisturbOn
-Sharp.DoNotDisturbOnTotalSilence
-Sharp.DoNotStep
-Sharp.DoNotTouch
-Sharp.Dock
-Sharp.DocumentScanner
-Sharp.Domain
-Sharp.DomainAdd
-Sharp.DomainDisabled
-Sharp.DomainVerification
-Sharp.Done
-Sharp.DoneAll
-Sharp.DoneOutline
-Sharp.DonutLarge
-Sharp.DonutSmall
-Sharp.DoorBack
-Sharp.DoorFront
-Sharp.DoorSliding
-Sharp.Doorbell
-Sharp.DoubleArrow
-Sharp.DownhillSkiing
-Sharp.Download
-Sharp.DownloadDone
-Sharp.DownloadForOffline
-Sharp.Downloading
-Sharp.Drafts
-Sharp.DragHandle
-Sharp.DragIndicator
-Sharp.Draw
-Sharp.DriveEta
-Sharp.DriveFileMoveRtl
-Sharp.DriveFileRenameOutline
-Sharp.DriveFolderUpload
-Sharp.Dry
-Sharp.DryCleaning
-Sharp.Duo
-Sharp.DynamicFeed
-Sharp.DynamicForm
-Sharp.EMobiledata
-Sharp.Earbuds
-Sharp.EarbudsBattery
-Sharp.East
-Sharp.Eco
-Sharp.EdgesensorHigh
-Sharp.EdgesensorLow
-Sharp.Edit
-Sharp.EditAttributes
-Sharp.EditCalendar
-Sharp.EditLocation
-Sharp.EditLocationAlt
-Sharp.EditNote
-Sharp.EditNotifications
-Sharp.EditOff
-Sharp.EditRoad
-Sharp.Egg
-Sharp.EggAlt
-Sharp.Eject
-Sharp.Elderly
-Sharp.ElderlyWoman
-Sharp.ElectricBike
-Sharp.ElectricBolt
-Sharp.ElectricCar
-Sharp.ElectricMeter
-Sharp.ElectricMoped
-Sharp.ElectricRickshaw
-Sharp.ElectricScooter
-Sharp.ElectricalServices
-Sharp.Elevator
-Sharp.Email
-Sharp.Emergency
-Sharp.EmergencyRecording
-Sharp.EmergencyShare
-Sharp.EmojiEmotions
-Sharp.EmojiEvents
-Sharp.EmojiFlags
-Sharp.EmojiFoodBeverage
-Sharp.EmojiNature
-Sharp.EmojiObjects
-Sharp.EmojiPeople
-Sharp.EmojiSymbols
-Sharp.EmojiTransportation
-Sharp.EnergySavingsLeaf
-Sharp.Engineering
-Sharp.EnhancedEncryption
-Sharp.Equalizer
-Sharp.Error
-Sharp.ErrorOutline
-Sharp.Escalator
-Sharp.EscalatorWarning
-Sharp.Euro
-Sharp.EuroSymbol
-Sharp.EvStation
-Sharp.Event
-Sharp.EventAvailable
-Sharp.EventBusy
-Sharp.EventRepeat
-Sharp.EventSeat
-Sharp.Expand
-Sharp.ExpandCircleDown
-Sharp.ExpandLess
-Sharp.ExpandMore
-Sharp.Explicit
-Sharp.Explore
-Sharp.ExploreOff
-Sharp.Exposure
-Sharp.ExposureNeg1
-Sharp.ExposureNeg2
-Sharp.ExposurePlus1
-Sharp.ExposurePlus2
-Sharp.ExposureZero
-Sharp.Extension
-Sharp.ExtensionOff
-Sharp.Face
-Sharp.Face2
-Sharp.Face3
-Sharp.Face4
-Sharp.Face5
-Sharp.Face6
-Sharp.FaceRetouchingNatural
-Sharp.FaceRetouchingOff
-Sharp.Facebook
-Sharp.Factory
-Sharp.FamilyRestroom
-Sharp.FastForward
-Sharp.FastRewind
-Sharp.Fastfood
-Sharp.Favorite
-Sharp.FavoriteBorder
-Sharp.Fax
-Sharp.Feedback
-Sharp.Female
-Sharp.Fence
-Sharp.Festival
-Sharp.FiberDvr
-Sharp.FiberManualRecord
-Sharp.FiberNew
-Sharp.FiberPin
-Sharp.FiberSmartRecord
-Sharp.FileCopy
-Sharp.FileDownload
-Sharp.FileDownloadDone
-Sharp.FileDownloadOff
-Sharp.FileOpen
-Sharp.FilePresent
-Sharp.FileUpload
-Sharp.Filter
-Sharp.Filter1
-Sharp.Filter2
-Sharp.Filter3
-Sharp.Filter4
-Sharp.Filter5
-Sharp.Filter6
-Sharp.Filter7
-Sharp.Filter8
-Sharp.Filter9
-Sharp.Filter9Plus
-Sharp.FilterAlt
-Sharp.FilterAltOff
-Sharp.FilterBAndW
-Sharp.FilterCenterFocus
-Sharp.FilterDrama
-Sharp.FilterFrames
-Sharp.FilterHdr
-Sharp.FilterList
-Sharp.FilterListOff
-Sharp.FilterNone
-Sharp.FilterTiltShift
-Sharp.FilterVintage
-Sharp.FindInPage
-Sharp.FindReplace
-Sharp.Fingerprint
-Sharp.FireExtinguisher
-Sharp.FireHydrantAlt
-Sharp.FireTruck
-Sharp.Fireplace
-Sharp.FirstPage
-Sharp.FitScreen
-Sharp.Fitbit
-Sharp.FitnessCenter
-Sharp.Flag
-Sharp.FlagCircle
-Sharp.Flaky
-Sharp.Flare
-Sharp.FlashAuto
-Sharp.FlashOff
-Sharp.FlashOn
-Sharp.FlashlightOff
-Sharp.FlashlightOn
-Sharp.Flatware
-Sharp.Flight
-Sharp.FlightClass
-Sharp.FlightLand
-Sharp.FlightTakeoff
-Sharp.Flip
-Sharp.FlipCameraAndroid
-Sharp.FlipCameraIos
-Sharp.FlipToBack
-Sharp.FlipToFront
-Sharp.Flood
-Sharp.Flourescent
-Sharp.Fluorescent
-Sharp.FlutterDash
-Sharp.FmdBad
-Sharp.FmdGood
-Sharp.Folder
-Sharp.FolderCopy
-Sharp.FolderDelete
-Sharp.FolderOff
-Sharp.FolderOpen
-Sharp.FolderShared
-Sharp.FolderSpecial
-Sharp.FolderZip
-Sharp.FontDownload
-Sharp.FontDownloadOff
-Sharp.FoodBank
-Sharp.Forest
-Sharp.ForkLeft
-Sharp.ForkRight
-Sharp.FormatAlignCenter
-Sharp.FormatAlignJustify
-Sharp.FormatBold
-Sharp.FormatClear
-Sharp.FormatColorFill
-Sharp.FormatColorReset
-Sharp.FormatColorText
-Sharp.FormatItalic
-Sharp.FormatLineSpacing
-Sharp.FormatListNumbered
-Sharp.FormatListNumberedRtl
-Sharp.FormatOverline
-Sharp.FormatPaint
-Sharp.FormatQuote
-Sharp.FormatShapes
-Sharp.FormatSize
-Sharp.FormatStrikethrough
-Sharp.FormatUnderlined
-Sharp.Fort
-Sharp.Forum
-Sharp.Forward10
-Sharp.Forward30
-Sharp.Forward5
-Sharp.Foundation
-Sharp.FreeBreakfast
-Sharp.FreeCancellation
-Sharp.FrontHand
-Sharp.Fullscreen
-Sharp.FullscreenExit
-Sharp.Functions
-Sharp.GMobiledata
-Sharp.GTranslate
-Sharp.Gamepad
-Sharp.Games
-Sharp.Garage
-Sharp.GasMeter
-Sharp.Gavel
-Sharp.GeneratingTokens
-Sharp.Gesture
-Sharp.GetApp
-Sharp.Gif
-Sharp.GifBox
-Sharp.Girl
-Sharp.Gite
-Sharp.GolfCourse
-Sharp.GppBad
-Sharp.GppGood
-Sharp.GppMaybe
-Sharp.GpsFixed
-Sharp.GpsNotFixed
-Sharp.GpsOff
-Sharp.Grade
-Sharp.Gradient
-Sharp.Grain
-Sharp.GraphicEq
-Sharp.Grass
-Sharp.Grid3x3
-Sharp.Grid4x4
-Sharp.GridGoldenratio
-Sharp.GridOff
-Sharp.GridOn
-Sharp.GridView
-Sharp.Group
-Sharp.GroupAdd
-Sharp.GroupOff
-Sharp.GroupRemove
-Sharp.GroupWork
-Sharp.Groups
-Sharp.Groups2
-Sharp.Groups3
-Sharp.HMobiledata
-Sharp.HPlusMobiledata
-Sharp.Hail
-Sharp.Handshake
-Sharp.Handyman
-Sharp.Hardware
-Sharp.Hd
-Sharp.HdrAuto
-Sharp.HdrAutoSelect
-Sharp.HdrEnhancedSelect
-Sharp.HdrOff
-Sharp.HdrOffSelect
-Sharp.HdrOn
-Sharp.HdrOnSelect
-Sharp.HdrPlus
-Sharp.HdrStrong
-Sharp.HdrWeak
-Sharp.Headphones
-Sharp.HeadphonesBattery
-Sharp.Headset
-Sharp.HeadsetMic
-Sharp.HeadsetOff
-Sharp.Healing
-Sharp.HealthAndSafety
-Sharp.Hearing
-Sharp.HearingDisabled
-Sharp.HeartBroken
-Sharp.HeatPump
-Sharp.Height
-Sharp.Hevc
-Sharp.Hexagon
-Sharp.HideImage
-Sharp.HideSource
-Sharp.HighQuality
-Sharp.Highlight
-Sharp.HighlightAlt
-Sharp.HighlightOff
-Sharp.Hiking
-Sharp.History
-Sharp.HistoryEdu
-Sharp.HistoryToggleOff
-Sharp.Hive
-Sharp.Hls
-Sharp.HlsOff
-Sharp.HolidayVillage
-Sharp.Home
-Sharp.HomeMax
-Sharp.HomeMini
-Sharp.HomeRepairService
-Sharp.HomeWork
-Sharp.HorizontalDistribute
-Sharp.HorizontalRule
-Sharp.HorizontalSplit
-Sharp.HotTub
-Sharp.Hotel
-Sharp.HotelClass
-Sharp.HourglassBottom
-Sharp.HourglassDisabled
-Sharp.HourglassEmpty
-Sharp.HourglassFull
-Sharp.HourglassTop
-Sharp.House
-Sharp.HouseSiding
-Sharp.Houseboat
-Sharp.HowToReg
-Sharp.HowToVote
-Sharp.Html
-Sharp.Http
-Sharp.Https
-Sharp.Hub
-Sharp.Hvac
-Sharp.IceSkating
-Sharp.Icecream
-Sharp.Image
-Sharp.ImageAspectRatio
-Sharp.ImageNotSupported
-Sharp.ImageSearch
-Sharp.ImagesearchRoller
-Sharp.ImportContacts
-Sharp.ImportExport
-Sharp.ImportantDevices
-Sharp.Inbox
-Sharp.IncompleteCircle
-Sharp.IndeterminateCheckBox
-Sharp.Info
-Sharp.InsertChart
-Sharp.InsertChartOutlined
-Sharp.InsertEmoticon
-Sharp.InsertInvitation
-Sharp.InsertLink
-Sharp.InsertPageBreak
-Sharp.InsertPhoto
-Sharp.Insights
-Sharp.InstallDesktop
-Sharp.InstallMobile
-Sharp.IntegrationInstructions
-Sharp.Interests
-Sharp.InterpreterMode
-Sharp.Inventory
-Sharp.Inventory2
-Sharp.InvertColors
-Sharp.InvertColorsOff
-Sharp.IosShare
-Sharp.Iron
-Sharp.Iso
-Sharp.Javascript
-Sharp.JoinFull
-Sharp.JoinInner
-Sharp.JoinLeft
-Sharp.JoinRight
-Sharp.Kayaking
-Sharp.KebabDining
-Sharp.Key
-Sharp.KeyOff
-Sharp.Keyboard
-Sharp.KeyboardAlt
-Sharp.KeyboardArrowDown
-Sharp.KeyboardArrowUp
-Sharp.KeyboardCapslock
-Sharp.KeyboardCommandKey
-Sharp.KeyboardControlKey
-Sharp.KeyboardDoubleArrowDown
-Sharp.KeyboardDoubleArrowLeft
-Sharp.KeyboardDoubleArrowRight
-Sharp.KeyboardDoubleArrowUp
-Sharp.KeyboardHide
-Sharp.KeyboardOptionKey
-Sharp.KeyboardVoice
-Sharp.KingBed
-Sharp.Kitchen
-Sharp.Kitesurfing
-Sharp.Lan
-Sharp.Landscape
-Sharp.Landslide
-Sharp.Language
-Sharp.Laptop
-Sharp.LaptopChromebook
-Sharp.LaptopMac
-Sharp.LaptopWindows
-Sharp.Layers
-Sharp.LayersClear
-Sharp.Leaderboard
-Sharp.LeakAdd
-Sharp.LeakRemove
-Sharp.LeaveBagsAtHome
-Sharp.LegendToggle
-Sharp.Lens
-Sharp.LensBlur
-Sharp.LibraryAdd
-Sharp.LibraryAddCheck
-Sharp.LibraryMusic
-Sharp.Light
-Sharp.LightMode
-Sharp.Lightbulb
-Sharp.LightbulbCircle
-Sharp.LineAxis
-Sharp.LineStyle
-Sharp.LineWeight
-Sharp.LinearScale
-Sharp.Link
-Sharp.LinkOff
-Sharp.LinkedCamera
-Sharp.Liquor
-Sharp.LiveTv
-Sharp.Living
-Sharp.LocalActivity
-Sharp.LocalAirport
-Sharp.LocalAtm
-Sharp.LocalBar
-Sharp.LocalCafe
-Sharp.LocalCarWash
-Sharp.LocalConvenienceStore
-Sharp.LocalDining
-Sharp.LocalDrink
-Sharp.LocalFireDepartment
-Sharp.LocalFlorist
-Sharp.LocalGasStation
-Sharp.LocalGroceryStore
-Sharp.LocalHospital
-Sharp.LocalHotel
-Sharp.LocalLaundryService
-Sharp.LocalLibrary
-Sharp.LocalMall
-Sharp.LocalMovies
-Sharp.LocalOffer
-Sharp.LocalParking
-Sharp.LocalPharmacy
-Sharp.LocalPhone
-Sharp.LocalPizza
-Sharp.LocalPlay
-Sharp.LocalPolice
-Sharp.LocalPostOffice
-Sharp.LocalPrintshop
-Sharp.LocalSee
-Sharp.LocalShipping
-Sharp.LocalTaxi
-Sharp.LocationCity
-Sharp.LocationDisabled
-Sharp.LocationOff
-Sharp.LocationOn
-Sharp.LocationSearching
-Sharp.Lock
-Sharp.LockClock
-Sharp.LockOpen
-Sharp.LockPerson
-Sharp.LockReset
-Sharp.LogoDev
-Sharp.Looks
-Sharp.Looks3
-Sharp.Looks4
-Sharp.Looks5
-Sharp.Looks6
-Sharp.LooksOne
-Sharp.LooksTwo
-Sharp.Loop
-Sharp.Loupe
-Sharp.LowPriority
-Sharp.Loyalty
-Sharp.LteMobiledata
-Sharp.LtePlusMobiledata
-Sharp.Luggage
-Sharp.LunchDining
-Sharp.Lyrics
-Sharp.MacroOff
-Sharp.Mail
-Sharp.MailLock
-Sharp.MailOutline
-Sharp.Male
-Sharp.Man
-Sharp.Man2
-Sharp.Man3
-Sharp.Man4
-Sharp.ManageAccounts
-Sharp.ManageHistory
-Sharp.Map
-Sharp.MapsHomeWork
-Sharp.MapsUgc
-Sharp.Margin
-Sharp.MarkAsUnread
-Sharp.MarkChatRead
-Sharp.MarkChatUnread
-Sharp.MarkEmailRead
-Sharp.MarkEmailUnread
-Sharp.MarkUnreadChatAlt
-Sharp.Markunread
-Sharp.MarkunreadMailbox
-Sharp.Masks
-Sharp.Maximize
-Sharp.MediaBluetoothOff
-Sharp.MediaBluetoothOn
-Sharp.Mediation
-Sharp.MedicalInformation
-Sharp.MedicalServices
-Sharp.Medication
-Sharp.MeetingRoom
-Sharp.Memory
-Sharp.Menu
-Sharp.Merge
-Sharp.Mic
-Sharp.MicExternalOff
-Sharp.MicExternalOn
-Sharp.MicNone
-Sharp.MicOff
-Sharp.Microwave
-Sharp.MilitaryTech
-Sharp.Minimize
-Sharp.MinorCrash
-Sharp.MiscellaneousServices
-Sharp.Mms
-Sharp.MobileFriendly
-Sharp.MobileOff
-Sharp.MobiledataOff
-Sharp.Mode
-Sharp.ModeComment
-Sharp.ModeEdit
-Sharp.ModeEditOutline
-Sharp.ModeFanOff
-Sharp.ModeNight
-Sharp.ModeOfTravel
-Sharp.ModeStandby
-Sharp.ModelTraining
-Sharp.MonetizationOn
-Sharp.Money
-Sharp.MoneyOff
-Sharp.MoneyOffCsred
-Sharp.Monitor
-Sharp.MonitorHeart
-Sharp.MonitorWeight
-Sharp.MonochromePhotos
-Sharp.Mood
-Sharp.MoodBad
-Sharp.Moped
-Sharp.MoreHoriz
-Sharp.MoreTime
-Sharp.MoreVert
-Sharp.Mosque
-Sharp.MotionPhotosAuto
-Sharp.MotionPhotosOff
-Sharp.MotionPhotosOn
-Sharp.MotionPhotosPause
-Sharp.MotionPhotosPaused
-Sharp.Motorcycle
-Sharp.Mouse
-Sharp.MoveDown
-Sharp.MoveToInbox
-Sharp.MoveUp
-Sharp.Movie
-Sharp.MovieCreation
-Sharp.MovieFilter
-Sharp.Moving
-Sharp.Mp
-Sharp.MultipleStop
-Sharp.Museum
-Sharp.MusicNote
-Sharp.MusicOff
-Sharp.MusicVideo
-Sharp.MyLocation
-Sharp.Nat
-Sharp.Nature
-Sharp.NaturePeople
-Sharp.Navigation
-Sharp.NearMe
-Sharp.NearMeDisabled
-Sharp.NearbyError
-Sharp.NearbyOff
-Sharp.NestCamWiredStand
-Sharp.NetworkCell
-Sharp.NetworkCheck
-Sharp.NetworkLocked
-Sharp.NetworkPing
-Sharp.NetworkWifi
-Sharp.NetworkWifi1Bar
-Sharp.NetworkWifi2Bar
-Sharp.NetworkWifi3Bar
-Sharp.NewLabel
-Sharp.NewReleases
-Sharp.Newspaper
-Sharp.Nfc
-Sharp.NightShelter
-Sharp.Nightlife
-Sharp.Nightlight
-Sharp.NightlightRound
-Sharp.NightsStay
-Sharp.NoAccounts
-Sharp.NoAdultContent
-Sharp.NoBackpack
-Sharp.NoCell
-Sharp.NoCrash
-Sharp.NoDrinks
-Sharp.NoEncryption
-Sharp.NoEncryptionGmailerrorred
-Sharp.NoFlash
-Sharp.NoFood
-Sharp.NoLuggage
-Sharp.NoMeals
-Sharp.NoMeetingRoom
-Sharp.NoPhotography
-Sharp.NoSim
-Sharp.NoStroller
-Sharp.NoTransfer
-Sharp.NoiseAware
-Sharp.NoiseControlOff
-Sharp.NordicWalking
-Sharp.North
-Sharp.NorthEast
-Sharp.NorthWest
-Sharp.NotAccessible
-Sharp.NotInterested
-Sharp.NotStarted
-Sharp.NoteAlt
-Sharp.NotificationAdd
-Sharp.NotificationImportant
-Sharp.Notifications
-Sharp.NotificationsActive
-Sharp.NotificationsNone
-Sharp.NotificationsOff
-Sharp.NotificationsPaused
-Sharp.Numbers
-Sharp.OfflineBolt
-Sharp.OfflinePin
-Sharp.OilBarrel
-Sharp.OnDeviceTraining
-Sharp.OndemandVideo
-Sharp.OnlinePrediction
-Sharp.Opacity
-Sharp.OpenInBrowser
-Sharp.OpenInFull
-Sharp.OpenInNewOff
-Sharp.OpenWith
-Sharp.OtherHouses
-Sharp.Outbond
-Sharp.Outbox
-Sharp.OutdoorGrill
-Sharp.Outlet
-Sharp.OutlinedFlag
-Sharp.Output
-Sharp.Padding
-Sharp.Pages
-Sharp.Pageview
-Sharp.Paid
-Sharp.Palette
-Sharp.PanTool
-Sharp.PanToolAlt
-Sharp.Panorama
-Sharp.PanoramaFishEye
-Sharp.PanoramaHorizontal
-Sharp.PanoramaHorizontalSelect
-Sharp.PanoramaPhotosphere
-Sharp.PanoramaPhotosphereSelect
-Sharp.PanoramaVertical
-Sharp.PanoramaVerticalSelect
-Sharp.PanoramaWideAngle
-Sharp.PanoramaWideAngleSelect
-Sharp.Paragliding
-Sharp.Park
-Sharp.PartyMode
-Sharp.Password
-Sharp.Pattern
-Sharp.Pause
-Sharp.PauseCircle
-Sharp.PauseCircleFilled
-Sharp.PauseCircleOutline
-Sharp.PausePresentation
-Sharp.Payment
-Sharp.Payments
-Sharp.PedalBike
-Sharp.Pending
-Sharp.PendingActions
-Sharp.Pentagon
-Sharp.People
-Sharp.PeopleAlt
-Sharp.PeopleOutline
-Sharp.Percent
-Sharp.PermCameraMic
-Sharp.PermContactCalendar
-Sharp.PermDataSetting
-Sharp.PermDeviceInformation
-Sharp.PermIdentity
-Sharp.PermMedia
-Sharp.PermPhoneMsg
-Sharp.PermScanWifi
-Sharp.Person
-Sharp.Person2
-Sharp.Person3
-Sharp.Person4
-Sharp.PersonAdd
-Sharp.PersonAddAlt
-Sharp.PersonAddAlt1
-Sharp.PersonAddDisabled
-Sharp.PersonOff
-Sharp.PersonOutline
-Sharp.PersonPin
-Sharp.PersonPinCircle
-Sharp.PersonRemove
-Sharp.PersonRemoveAlt1
-Sharp.PersonSearch
-Sharp.PersonalInjury
-Sharp.PersonalVideo
-Sharp.PestControl
-Sharp.PestControlRodent
-Sharp.Pets
-Sharp.Phishing
-Sharp.Phone
-Sharp.PhoneAndroid
-Sharp.PhoneBluetoothSpeaker
-Sharp.PhoneDisabled
-Sharp.PhoneEnabled
-Sharp.PhoneInTalk
-Sharp.PhoneIphone
-Sharp.PhoneLocked
-Sharp.PhonePaused
-Sharp.Phonelink
-Sharp.PhonelinkErase
-Sharp.PhonelinkLock
-Sharp.PhonelinkOff
-Sharp.PhonelinkRing
-Sharp.PhonelinkSetup
-Sharp.Photo
-Sharp.PhotoAlbum
-Sharp.PhotoCamera
-Sharp.PhotoCameraBack
-Sharp.PhotoCameraFront
-Sharp.PhotoFilter
-Sharp.PhotoLibrary
-Sharp.PhotoSizeSelectActual
-Sharp.PhotoSizeSelectLarge
-Sharp.PhotoSizeSelectSmall
-Sharp.Php
-Sharp.Piano
-Sharp.PianoOff
-Sharp.PictureAsPdf
-Sharp.PictureInPicture
-Sharp.PictureInPictureAlt
-Sharp.PieChart
-Sharp.PieChartOutline
-Sharp.Pin
-Sharp.PinDrop
-Sharp.PinEnd
-Sharp.PinInvoke
-Sharp.Pinch
-Sharp.PivotTableChart
-Sharp.Pix
-Sharp.Place
-Sharp.Plagiarism
-Sharp.PlayArrow
-Sharp.PlayCircle
-Sharp.PlayCircleFilled
-Sharp.PlayCircleOutline
-Sharp.PlayDisabled
-Sharp.PlayForWork
-Sharp.PlayLesson
-Sharp.PlaylistAddCheckCircle
-Sharp.PlaylistAddCircle
-Sharp.PlaylistRemove
-Sharp.Plumbing
-Sharp.PlusOne
-Sharp.Podcasts
-Sharp.PointOfSale
-Sharp.Policy
-Sharp.Poll
-Sharp.Polyline
-Sharp.Polymer
-Sharp.Pool
-Sharp.PortableWifiOff
-Sharp.Portrait
-Sharp.PostAdd
-Sharp.Power
-Sharp.PowerInput
-Sharp.PowerOff
-Sharp.PowerSettingsNew
-Sharp.PrecisionManufacturing
-Sharp.PregnantWoman
-Sharp.PresentToAll
-Sharp.Preview
-Sharp.PriceChange
-Sharp.PriceCheck
-Sharp.Print
-Sharp.PrintDisabled
-Sharp.PriorityHigh
-Sharp.PrivacyTip
-Sharp.PrivateConnectivity
-Sharp.ProductionQuantityLimits
-Sharp.Propane
-Sharp.PropaneTank
-Sharp.Psychology
-Sharp.PsychologyAlt
-Sharp.Public
-Sharp.PublicOff
-Sharp.Publish
-Sharp.PublishedWithChanges
-Sharp.PunchClock
-Sharp.PushPin
-Sharp.QrCode
-Sharp.QrCode2
-Sharp.QrCodeScanner
-Sharp.QueryBuilder
-Sharp.QueryStats
-Sharp.QuestionAnswer
-Sharp.QuestionMark
-Sharp.Queue
-Sharp.QueuePlayNext
-Sharp.Quickreply
-Sharp.Quiz
-Sharp.RMobiledata
-Sharp.Radar
-Sharp.Radio
-Sharp.RadioButtonChecked
-Sharp.RadioButtonUnchecked
-Sharp.RailwayAlert
-Sharp.RamenDining
-Sharp.RampLeft
-Sharp.RampRight
-Sharp.RateReview
-Sharp.RawOff
-Sharp.RawOn
-Sharp.RealEstateAgent
-Sharp.Receipt
-Sharp.RecentActors
-Sharp.Recommend
-Sharp.RecordVoiceOver
-Sharp.Rectangle
-Sharp.Recycling
-Sharp.Redeem
-Sharp.ReduceCapacity
-Sharp.Refresh
-Sharp.RememberMe
-Sharp.Remove
-Sharp.RemoveCircle
-Sharp.RemoveCircleOutline
-Sharp.RemoveDone
-Sharp.RemoveFromQueue
-Sharp.RemoveModerator
-Sharp.RemoveRedEye
-Sharp.RemoveRoad
-Sharp.RemoveShoppingCart
-Sharp.Reorder
-Sharp.Repartition
-Sharp.Repeat
-Sharp.RepeatOn
-Sharp.RepeatOne
-Sharp.RepeatOneOn
-Sharp.Replay
-Sharp.Replay10
-Sharp.Replay30
-Sharp.Replay5
-Sharp.ReplayCircleFilled
-Sharp.Report
-Sharp.ReportGmailerrorred
-Sharp.ReportOff
-Sharp.ReportProblem
-Sharp.RequestPage
-Sharp.RequestQuote
-Sharp.ResetTv
-Sharp.RestartAlt
-Sharp.Restaurant
-Sharp.RestaurantMenu
-Sharp.Restore
-Sharp.RestoreFromTrash
-Sharp.RestorePage
-Sharp.Reviews
-Sharp.RiceBowl
-Sharp.RingVolume
-Sharp.Rocket
-Sharp.RocketLaunch
-Sharp.RollerShades
-Sharp.RollerShadesClosed
-Sharp.RollerSkating
-Sharp.Roofing
-Sharp.Room
-Sharp.RoomPreferences
-Sharp.RoomService
-Sharp.Rotate90DegreesCcw
-Sharp.Rotate90DegreesCw
-Sharp.RoundaboutLeft
-Sharp.RoundaboutRight
-Sharp.RoundedCorner
-Sharp.Route
-Sharp.Router
-Sharp.Rowing
-Sharp.RssFeed
-Sharp.Rsvp
-Sharp.RuleFolder
-Sharp.RunCircle
-Sharp.RunningWithErrors
-Sharp.RvHookup
-Sharp.SafetyCheck
-Sharp.SafetyDivider
-Sharp.Sailing
-Sharp.Sanitizer
-Sharp.Satellite
-Sharp.SatelliteAlt
-Sharp.Save
-Sharp.SaveAlt
-Sharp.SaveAs
-Sharp.SavedSearch
-Sharp.Savings
-Sharp.Scale
-Sharp.Scanner
-Sharp.ScatterPlot
-Sharp.Schedule
-Sharp.Schema
-Sharp.School
-Sharp.Science
-Sharp.Score
-Sharp.Scoreboard
-Sharp.ScreenLockLandscape
-Sharp.ScreenLockPortrait
-Sharp.ScreenLockRotation
-Sharp.ScreenRotation
-Sharp.ScreenRotationAlt
-Sharp.ScreenSearchDesktop
-Sharp.Screenshot
-Sharp.ScreenshotMonitor
-Sharp.ScubaDiving
-Sharp.Sd
-Sharp.SdCard
-Sharp.SdCardAlert
-Sharp.SdStorage
-Sharp.Search
-Sharp.SearchOff
-Sharp.Security
-Sharp.SecurityUpdate
-Sharp.SecurityUpdateGood
-Sharp.SecurityUpdateWarning
-Sharp.SelectAll
-Sharp.SelfImprovement
-Sharp.Sell
-Sharp.SendTimeExtension
-Sharp.SensorDoor
-Sharp.SensorOccupied
-Sharp.SensorWindow
-Sharp.Sensors
-Sharp.SensorsOff
-Sharp.SentimentDissatisfied
-Sharp.SentimentNeutral
-Sharp.SentimentSatisfied
-Sharp.SentimentSatisfiedAlt
-Sharp.SentimentVeryDissatisfied
-Sharp.SentimentVerySatisfied
-Sharp.SetMeal
-Sharp.Settings
-Sharp.SettingsAccessibility
-Sharp.SettingsApplications
-Sharp.SettingsBackupRestore
-Sharp.SettingsBluetooth
-Sharp.SettingsBrightness
-Sharp.SettingsCell
-Sharp.SettingsEthernet
-Sharp.SettingsInputAntenna
-Sharp.SettingsInputComponent
-Sharp.SettingsInputComposite
-Sharp.SettingsInputHdmi
-Sharp.SettingsInputSvideo
-Sharp.SettingsOverscan
-Sharp.SettingsPhone
-Sharp.SettingsPower
-Sharp.SettingsRemote
-Sharp.SettingsSuggest
-Sharp.SettingsSystemDaydream
-Sharp.SettingsVoice
-Sharp.SevereCold
-Sharp.ShapeLine
-Sharp.Share
-Sharp.ShareLocation
-Sharp.Shield
-Sharp.ShieldMoon
-Sharp.Shop
-Sharp.Shop2
-Sharp.ShopTwo
-Sharp.ShoppingBag
-Sharp.ShoppingBasket
-Sharp.ShoppingCart
-Sharp.ShoppingCartCheckout
-Sharp.Shower
-Sharp.Shuffle
-Sharp.ShuffleOn
-Sharp.ShutterSpeed
-Sharp.Sick
-Sharp.SignLanguage
-Sharp.SignalCellular0Bar
-Sharp.SignalCellular4Bar
-Sharp.SignalCellularAlt
-Sharp.SignalCellularAlt1Bar
-Sharp.SignalCellularAlt2Bar
-Sharp.SignalCellularConnectedNoInternet0Bar
-Sharp.SignalCellularConnectedNoInternet4Bar
-Sharp.SignalCellularNoSim
-Sharp.SignalCellularNodata
-Sharp.SignalCellularNull
-Sharp.SignalCellularOff
-Sharp.SignalWifi0Bar
-Sharp.SignalWifi4Bar
-Sharp.SignalWifi4BarLock
-Sharp.SignalWifiBad
-Sharp.SignalWifiConnectedNoInternet4
-Sharp.SignalWifiOff
-Sharp.SignalWifiStatusbar4Bar
-Sharp.SignalWifiStatusbarConnectedNoInternet4
-Sharp.SignalWifiStatusbarNull
-Sharp.Signpost
-Sharp.SimCard
-Sharp.SimCardAlert
-Sharp.SimCardDownload
-Sharp.SingleBed
-Sharp.Sip
-Sharp.Skateboarding
-Sharp.SkipNext
-Sharp.SkipPrevious
-Sharp.Sledding
-Sharp.Slideshow
-Sharp.SlowMotionVideo
-Sharp.SmartButton
-Sharp.SmartDisplay
-Sharp.SmartScreen
-Sharp.SmartToy
-Sharp.Smartphone
-Sharp.SmokeFree
-Sharp.SmokingRooms
-Sharp.Sms
-Sharp.SmsFailed
-Sharp.SnippetFolder
-Sharp.Snooze
-Sharp.Snowboarding
-Sharp.Snowmobile
-Sharp.Snowshoeing
-Sharp.Soap
-Sharp.SocialDistance
-Sharp.SolarPower
-Sharp.SortByAlpha
-Sharp.Sos
-Sharp.SoupKitchen
-Sharp.Source
-Sharp.South
-Sharp.SouthAmerica
-Sharp.SouthEast
-Sharp.SouthWest
-Sharp.Spa
-Sharp.SpaceBar
-Sharp.SpaceDashboard
-Sharp.SpatialAudio
-Sharp.SpatialAudioOff
-Sharp.SpatialTracking
-Sharp.Speaker
-Sharp.SpeakerGroup
-Sharp.SpeakerNotesOff
-Sharp.SpeakerPhone
-Sharp.Speed
-Sharp.Spellcheck
-Sharp.Splitscreen
-Sharp.Spoke
-Sharp.Sports
-Sharp.SportsBar
-Sharp.SportsBaseball
-Sharp.SportsBasketball
-Sharp.SportsCricket
-Sharp.SportsEsports
-Sharp.SportsFootball
-Sharp.SportsGolf
-Sharp.SportsGymnastics
-Sharp.SportsHandball
-Sharp.SportsHockey
-Sharp.SportsKabaddi
-Sharp.SportsMartialArts
-Sharp.SportsMma
-Sharp.SportsMotorsports
-Sharp.SportsRugby
-Sharp.SportsScore
-Sharp.SportsSoccer
-Sharp.SportsTennis
-Sharp.SportsVolleyball
-Sharp.Square
-Sharp.SquareFoot
-Sharp.SsidChart
-Sharp.StackedBarChart
-Sharp.StackedLineChart
-Sharp.Stadium
-Sharp.Stairs
-Sharp.Star
-Sharp.StarBorder
-Sharp.StarBorderPurple500
-Sharp.StarOutline
-Sharp.StarPurple500
-Sharp.StarRate
-Sharp.Stars
-Sharp.Start
-Sharp.StayCurrentLandscape
-Sharp.StayCurrentPortrait
-Sharp.StayPrimaryLandscape
-Sharp.StayPrimaryPortrait
-Sharp.Stop
-Sharp.StopCircle
-Sharp.Storage
-Sharp.Store
-Sharp.StoreMallDirectory
-Sharp.Storefront
-Sharp.Storm
-Sharp.Straight
-Sharp.Straighten
-Sharp.Stream
-Sharp.Streetview
-Sharp.StrikethroughS
-Sharp.Stroller
-Sharp.Style
-Sharp.SubdirectoryArrowLeft
-Sharp.SubdirectoryArrowRight
-Sharp.Subscript
-Sharp.Subscriptions
-Sharp.Subtitles
-Sharp.SubtitlesOff
-Sharp.Subway
-Sharp.Summarize
-Sharp.Superscript
-Sharp.SupervisedUserCircle
-Sharp.SupervisorAccount
-Sharp.Support
-Sharp.SupportAgent
-Sharp.Surfing
-Sharp.SurroundSound
-Sharp.SwapCalls
-Sharp.SwapHoriz
-Sharp.SwapHorizontalCircle
-Sharp.SwapVert
-Sharp.SwapVerticalCircle
-Sharp.Swipe
-Sharp.SwipeDown
-Sharp.SwipeDownAlt
-Sharp.SwipeLeft
-Sharp.SwipeLeftAlt
-Sharp.SwipeRight
-Sharp.SwipeRightAlt
-Sharp.SwipeUp
-Sharp.SwipeUpAlt
-Sharp.SwipeVertical
-Sharp.SwitchAccessShortcut
-Sharp.SwitchAccessShortcutAdd
-Sharp.SwitchAccount
-Sharp.SwitchCamera
-Sharp.SwitchLeft
-Sharp.SwitchRight
-Sharp.SwitchVideo
-Sharp.Synagogue
-Sharp.Sync
-Sharp.SyncAlt
-Sharp.SyncDisabled
-Sharp.SyncLock
-Sharp.SyncProblem
-Sharp.SystemSecurityUpdate
-Sharp.SystemSecurityUpdateGood
-Sharp.SystemSecurityUpdateWarning
-Sharp.SystemUpdate
-Sharp.SystemUpdateAlt
-Sharp.Tab
-Sharp.TabUnselected
-Sharp.TableBar
-Sharp.TableChart
-Sharp.TableRestaurant
-Sharp.TableRows
-Sharp.TableView
-Sharp.Tablet
-Sharp.TabletAndroid
-Sharp.TabletMac
-Sharp.Tag
-Sharp.TagFaces
-Sharp.TakeoutDining
-Sharp.TapAndPlay
-Sharp.Tapas
-Sharp.Task
-Sharp.TaskAlt
-Sharp.TaxiAlert
-Sharp.TempleBuddhist
-Sharp.TempleHindu
-Sharp.Terminal
-Sharp.Terrain
-Sharp.TextDecrease
-Sharp.TextFields
-Sharp.TextFormat
-Sharp.TextIncrease
-Sharp.TextRotateUp
-Sharp.TextRotateVertical
-Sharp.TextRotationAngledown
-Sharp.TextRotationAngleup
-Sharp.TextRotationDown
-Sharp.TextRotationNone
-Sharp.Textsms
-Sharp.Texture
-Sharp.TheaterComedy
-Sharp.Theaters
-Sharp.Thermostat
-Sharp.ThermostatAuto
-Sharp.ThumbDown
-Sharp.ThumbDownAlt
-Sharp.ThumbDownOffAlt
-Sharp.ThumbUp
-Sharp.ThumbUpAlt
-Sharp.ThumbUpOffAlt
-Sharp.ThumbsUpDown
-Sharp.Thunderstorm
-Sharp.TimeToLeave
-Sharp.Timelapse
-Sharp.Timeline
-Sharp.Timer
-Sharp.Timer10
-Sharp.Timer10Select
-Sharp.Timer3
-Sharp.Timer3Select
-Sharp.TimerOff
-Sharp.TipsAndUpdates
-Sharp.TireRepair
-Sharp.Title
-Sharp.Today
-Sharp.ToggleOff
-Sharp.ToggleOn
-Sharp.Token
-Sharp.Toll
-Sharp.Tonality
-Sharp.Topic
-Sharp.Tornado
-Sharp.TouchApp
-Sharp.Tour
-Sharp.Toys
-Sharp.TrackChanges
-Sharp.Traffic
-Sharp.Train
-Sharp.Tram
-Sharp.Transcribe
-Sharp.TransferWithinAStation
-Sharp.Transform
-Sharp.Transgender
-Sharp.TransitEnterexit
-Sharp.Translate
-Sharp.TravelExplore
-Sharp.TripOrigin
-Sharp.Troubleshoot
-Sharp.Try
-Sharp.Tsunami
-Sharp.Tty
-Sharp.Tune
-Sharp.Tungsten
-Sharp.TurnLeft
-Sharp.TurnRight
-Sharp.TurnSharpLeft
-Sharp.TurnSharpRight
-Sharp.TurnSlightLeft
-Sharp.TurnSlightRight
-Sharp.TurnedIn
-Sharp.TurnedInNot
-Sharp.Tv
-Sharp.TvOff
-Sharp.TwoWheeler
-Sharp.TypeSpecimen
-Sharp.UTurnLeft
-Sharp.UTurnRight
-Sharp.Umbrella
-Sharp.Unarchive
-Sharp.UnfoldLess
-Sharp.UnfoldLessDouble
-Sharp.UnfoldMore
-Sharp.UnfoldMoreDouble
-Sharp.Unpublished
-Sharp.Unsubscribe
-Sharp.Upcoming
-Sharp.Update
-Sharp.UpdateDisabled
-Sharp.Upgrade
-Sharp.Upload
-Sharp.UploadFile
-Sharp.Usb
-Sharp.UsbOff
-Sharp.Vaccines
-Sharp.VapeFree
-Sharp.VapingRooms
-Sharp.Verified
-Sharp.VerifiedUser
-Sharp.VerticalAlignBottom
-Sharp.VerticalAlignCenter
-Sharp.VerticalAlignTop
-Sharp.VerticalDistribute
-Sharp.VerticalShades
-Sharp.VerticalShadesClosed
-Sharp.VerticalSplit
-Sharp.Vibration
-Sharp.VideoCall
-Sharp.VideoCameraBack
-Sharp.VideoCameraFront
-Sharp.VideoChat
-Sharp.VideoFile
-Sharp.VideoLabel
-Sharp.VideoLibrary
-Sharp.VideoSettings
-Sharp.VideoStable
-Sharp.Videocam
-Sharp.VideocamOff
-Sharp.VideogameAsset
-Sharp.VideogameAssetOff
-Sharp.ViewAgenda
-Sharp.ViewArray
-Sharp.ViewCarousel
-Sharp.ViewColumn
-Sharp.ViewComfy
-Sharp.ViewComfyAlt
-Sharp.ViewCompact
-Sharp.ViewCompactAlt
-Sharp.ViewCozy
-Sharp.ViewDay
-Sharp.ViewHeadline
-Sharp.ViewInAr
-Sharp.ViewKanban
-Sharp.ViewModule
-Sharp.ViewStream
-Sharp.ViewTimeline
-Sharp.ViewWeek
-Sharp.Vignette
-Sharp.Villa
-Sharp.Visibility
-Sharp.VisibilityOff
-Sharp.VoiceChat
-Sharp.VoiceOverOff
-Sharp.Voicemail
-Sharp.Volcano
-Sharp.VolunteerActivism
-Sharp.VpnKey
-Sharp.VpnKeyOff
-Sharp.VpnLock
-Sharp.Vrpano
-Sharp.Wallet
-Sharp.Wallpaper
-Sharp.Warehouse
-Sharp.Warning
-Sharp.WarningAmber
-Sharp.Wash
-Sharp.Watch
-Sharp.WatchLater
-Sharp.WatchOff
-Sharp.Water
-Sharp.WaterDamage
-Sharp.WaterDrop
-Sharp.WaterfallChart
-Sharp.Waves
-Sharp.WavingHand
-Sharp.WbAuto
-Sharp.WbCloudy
-Sharp.WbIncandescent
-Sharp.WbIridescent
-Sharp.WbShade
-Sharp.WbSunny
-Sharp.WbTwilight
-Sharp.Wc
-Sharp.Web
-Sharp.WebAsset
-Sharp.WebAssetOff
-Sharp.WebStories
-Sharp.Webhook
-Sharp.Weekend
-Sharp.West
-Sharp.Whatsapp
-Sharp.Whatshot
-Sharp.WheelchairPickup
-Sharp.WhereToVote
-Sharp.Widgets
-Sharp.WidthFull
-Sharp.WidthNormal
-Sharp.WidthWide
-Sharp.Wifi
-Sharp.Wifi1Bar
-Sharp.Wifi2Bar
-Sharp.WifiCalling
-Sharp.WifiCalling3
-Sharp.WifiChannel
-Sharp.WifiFind
-Sharp.WifiLock
-Sharp.WifiOff
-Sharp.WifiPassword
-Sharp.WifiProtectedSetup
-Sharp.WifiTethering
-Sharp.WifiTetheringError
-Sharp.WifiTetheringErrorRounded
-Sharp.WifiTetheringOff
-Sharp.WindPower
-Sharp.Window
-Sharp.WineBar
-Sharp.Woman
-Sharp.Woman2
-Sharp.Work
-Sharp.WorkHistory
-Sharp.WorkOff
-Sharp.WorkOutline
-Sharp.WorkspacePremium
-Sharp.Workspaces
-Sharp.WrongLocation
-Sharp.Yard
-Sharp.YoutubeSearchedFor
-Sharp.ZoomIn
-Sharp.ZoomInMap
-Sharp.ZoomOut
-Sharp.ZoomOutMap
-Sharp._10k
-Sharp._10mp
-Sharp._11mp
-Sharp._123
-Sharp._12mp
-Sharp._13mp
-Sharp._14mp
-Sharp._15mp
-Sharp._16mp
-Sharp._17mp
-Sharp._18UpRating
-Sharp._18mp
-Sharp._19mp
-Sharp._1k
-Sharp._1kPlus
-Sharp._1xMobiledata
-Sharp._20mp
-Sharp._21mp
-Sharp._22mp
-Sharp._23mp
-Sharp._24mp
-Sharp._2k
-Sharp._2kPlus
-Sharp._2mp
-Sharp._30fps
-Sharp._30fpsSelect
-Sharp._3dRotation
-Sharp._3gMobiledata
-Sharp._3k
-Sharp._3kPlus
-Sharp._3mp
-Sharp._3p
-Sharp._4gMobiledata
-Sharp._4gPlusMobiledata
-Sharp._4k
-Sharp._4kPlus
-Sharp._4mp
-Sharp._5g
-Sharp._5k
-Sharp._5kPlus
-Sharp._5mp
-Sharp._60fps
-Sharp._60fpsSelect
-Sharp._6FtApart
-Sharp._6k
-Sharp._6kPlus
-Sharp._6mp
-Sharp._7k
-Sharp._7kPlus
-Sharp._7mp
-Sharp._8k
-Sharp._8kPlus
-Sharp._8mp
-Sharp._9k
-Sharp._9kPlus
-Sharp._9mp
-TwoTone.Abc
-TwoTone.AcUnit
-TwoTone.AccessAlarm
-TwoTone.AccessAlarms
-TwoTone.AccessTime
-TwoTone.AccessTimeFilled
-TwoTone.Accessibility
-TwoTone.AccessibilityNew
-TwoTone.AccountBalance
-TwoTone.AccountBalanceWallet
-TwoTone.AccountBox
-TwoTone.AccountCircle
-TwoTone.AccountTree
-TwoTone.AdUnits
-TwoTone.Adb
-TwoTone.Add
-TwoTone.AddAPhoto
-TwoTone.AddAlarm
-TwoTone.AddAlert
-TwoTone.AddBox
-TwoTone.AddBusiness
-TwoTone.AddCard
-TwoTone.AddChart
-TwoTone.AddCircle
-TwoTone.AddCircleOutline
-TwoTone.AddComment
-TwoTone.AddHome
-TwoTone.AddHomeWork
-TwoTone.AddIcCall
-TwoTone.AddLink
-TwoTone.AddLocation
-TwoTone.AddLocationAlt
-TwoTone.AddModerator
-TwoTone.AddPhotoAlternate
-TwoTone.AddReaction
-TwoTone.AddRoad
-TwoTone.AddShoppingCart
-TwoTone.AddTask
-TwoTone.AddToDrive
-TwoTone.AddToPhotos
-TwoTone.AddToQueue
-TwoTone.Addchart
-TwoTone.AdfScanner
-TwoTone.Adjust
-TwoTone.AdminPanelSettings
-TwoTone.AdsClick
-TwoTone.Agriculture
-TwoTone.Air
-TwoTone.AirlineSeatFlat
-TwoTone.AirlineSeatFlatAngled
-TwoTone.AirlineSeatIndividualSuite
-TwoTone.AirlineSeatLegroomExtra
-TwoTone.AirlineSeatLegroomNormal
-TwoTone.AirlineSeatLegroomReduced
-TwoTone.AirlineSeatReclineExtra
-TwoTone.AirlineSeatReclineNormal
-TwoTone.AirlineStops
-TwoTone.Airlines
-TwoTone.AirplanemodeActive
-TwoTone.AirplanemodeInactive
-TwoTone.Airplay
-TwoTone.AirportShuttle
-TwoTone.Alarm
-TwoTone.AlarmAdd
-TwoTone.AlarmOff
-TwoTone.AlarmOn
-TwoTone.Album
-TwoTone.AlignHorizontalCenter
-TwoTone.AlignVerticalBottom
-TwoTone.AlignVerticalCenter
-TwoTone.AlignVerticalTop
-TwoTone.AllInbox
-TwoTone.AllInclusive
-TwoTone.AllOut
-TwoTone.AlternateEmail
-TwoTone.AmpStories
-TwoTone.Analytics
-TwoTone.Anchor
-TwoTone.Android
-TwoTone.Animation
-TwoTone.Aod
-TwoTone.Apartment
-TwoTone.Api
-TwoTone.AppBlocking
-TwoTone.AppRegistration
-TwoTone.AppSettingsAlt
-TwoTone.AppShortcut
-TwoTone.Approval
-TwoTone.Apps
-TwoTone.AppsOutage
-TwoTone.Architecture
-TwoTone.Archive
-TwoTone.AreaChart
-TwoTone.ArrowBackIosNew
-TwoTone.ArrowCircleDown
-TwoTone.ArrowCircleLeft
-TwoTone.ArrowCircleRight
-TwoTone.ArrowCircleUp
-TwoTone.ArrowDownward
-TwoTone.ArrowDropDown
-TwoTone.ArrowDropDownCircle
-TwoTone.ArrowDropUp
-TwoTone.ArrowOutward
-TwoTone.ArrowUpward
-TwoTone.ArtTrack
-TwoTone.AspectRatio
-TwoTone.Assessment
-TwoTone.AssignmentInd
-TwoTone.AssignmentLate
-TwoTone.AssignmentReturned
-TwoTone.AssignmentTurnedIn
-TwoTone.AssistWalker
-TwoTone.Assistant
-TwoTone.AssistantPhoto
-TwoTone.AssuredWorkload
-TwoTone.Atm
-TwoTone.AttachEmail
-TwoTone.AttachFile
-TwoTone.AttachMoney
-TwoTone.Attachment
-TwoTone.Attractions
-TwoTone.Attribution
-TwoTone.AudioFile
-TwoTone.Audiotrack
-TwoTone.AutoAwesome
-TwoTone.AutoAwesomeMosaic
-TwoTone.AutoAwesomeMotion
-TwoTone.AutoDelete
-TwoTone.AutoFixHigh
-TwoTone.AutoFixNormal
-TwoTone.AutoFixOff
-TwoTone.AutoGraph
-TwoTone.AutoMode
-TwoTone.AutoStories
-TwoTone.AutofpsSelect
-TwoTone.Autorenew
-TwoTone.AvTimer
-TwoTone.BabyChangingStation
-TwoTone.BackHand
-TwoTone.Backpack
-TwoTone.Backup
-TwoTone.BackupTable
-TwoTone.Badge
-TwoTone.BakeryDining
-TwoTone.Balance
-TwoTone.Balcony
-TwoTone.Ballot
-TwoTone.BarChart
-TwoTone.BatchPrediction
-TwoTone.Bathroom
-TwoTone.Bathtub
-TwoTone.Battery0Bar
-TwoTone.Battery1Bar
-TwoTone.Battery2Bar
-TwoTone.Battery3Bar
-TwoTone.Battery4Bar
-TwoTone.Battery5Bar
-TwoTone.Battery6Bar
-TwoTone.BatteryAlert
-TwoTone.BatteryChargingFull
-TwoTone.BatteryFull
-TwoTone.BatterySaver
-TwoTone.BatteryStd
-TwoTone.BeachAccess
-TwoTone.Bed
-TwoTone.BedroomBaby
-TwoTone.BedroomChild
-TwoTone.BedroomParent
-TwoTone.Bedtime
-TwoTone.BedtimeOff
-TwoTone.Beenhere
-TwoTone.Bento
-TwoTone.BikeScooter
-TwoTone.Biotech
-TwoTone.Blender
-TwoTone.Blind
-TwoTone.Blinds
-TwoTone.BlindsClosed
-TwoTone.Block
-TwoTone.Bloodtype
-TwoTone.Bluetooth
-TwoTone.BluetoothAudio
-TwoTone.BluetoothConnected
-TwoTone.BluetoothDisabled
-TwoTone.BluetoothDrive
-TwoTone.BlurCircular
-TwoTone.BlurLinear
-TwoTone.BlurOff
-TwoTone.BlurOn
-TwoTone.Bolt
-TwoTone.Book
-TwoTone.BookOnline
-TwoTone.Bookmark
-TwoTone.BookmarkAdd
-TwoTone.BookmarkAdded
-TwoTone.BookmarkBorder
-TwoTone.BookmarkRemove
-TwoTone.Bookmarks
-TwoTone.BorderAll
-TwoTone.BorderBottom
-TwoTone.BorderClear
-TwoTone.BorderColor
-TwoTone.BorderHorizontal
-TwoTone.BorderInner
-TwoTone.BorderLeft
-TwoTone.BorderOuter
-TwoTone.BorderRight
-TwoTone.BorderStyle
-TwoTone.BorderTop
-TwoTone.BorderVertical
-TwoTone.Boy
-TwoTone.BreakfastDining
-TwoTone.Brightness1
-TwoTone.Brightness2
-TwoTone.Brightness3
-TwoTone.Brightness4
-TwoTone.Brightness5
-TwoTone.Brightness6
-TwoTone.Brightness7
-TwoTone.BrightnessAuto
-TwoTone.BrightnessHigh
-TwoTone.BrightnessLow
-TwoTone.BrightnessMedium
-TwoTone.BroadcastOnHome
-TwoTone.BroadcastOnPersonal
-TwoTone.BrokenImage
-TwoTone.BrowseGallery
-TwoTone.BrowserNotSupported
-TwoTone.BrowserUpdated
-TwoTone.BrunchDining
-TwoTone.Brush
-TwoTone.BubbleChart
-TwoTone.BugReport
-TwoTone.Build
-TwoTone.BuildCircle
-TwoTone.Bungalow
-TwoTone.BurstMode
-TwoTone.BusAlert
-TwoTone.Business
-TwoTone.BusinessCenter
-TwoTone.Cabin
-TwoTone.Cable
-TwoTone.Cached
-TwoTone.Cake
-TwoTone.Calculate
-TwoTone.CalendarMonth
-TwoTone.CalendarToday
-TwoTone.CalendarViewDay
-TwoTone.CalendarViewMonth
-TwoTone.CalendarViewWeek
-TwoTone.Call
-TwoTone.CallEnd
-TwoTone.CallToAction
-TwoTone.Camera
-TwoTone.CameraAlt
-TwoTone.CameraEnhance
-TwoTone.CameraFront
-TwoTone.CameraIndoor
-TwoTone.CameraOutdoor
-TwoTone.CameraRear
-TwoTone.CameraRoll
-TwoTone.Cameraswitch
-TwoTone.Campaign
-TwoTone.Cancel
-TwoTone.CancelPresentation
-TwoTone.CancelScheduleSend
-TwoTone.CandlestickChart
-TwoTone.CarCrash
-TwoTone.CarRental
-TwoTone.CarRepair
-TwoTone.CardGiftcard
-TwoTone.CardMembership
-TwoTone.CardTravel
-TwoTone.Carpenter
-TwoTone.Cases
-TwoTone.Casino
-TwoTone.Cast
-TwoTone.CastConnected
-TwoTone.CastForEducation
-TwoTone.Castle
-TwoTone.CatchingPokemon
-TwoTone.Category
-TwoTone.Celebration
-TwoTone.CellTower
-TwoTone.CellWifi
-TwoTone.CenterFocusStrong
-TwoTone.CenterFocusWeak
-TwoTone.Chair
-TwoTone.ChairAlt
-TwoTone.Chalet
-TwoTone.ChangeCircle
-TwoTone.ChangeHistory
-TwoTone.ChargingStation
-TwoTone.ChatBubble
-TwoTone.ChatBubbleOutline
-TwoTone.Check
-TwoTone.CheckBox
-TwoTone.CheckBoxOutlineBlank
-TwoTone.CheckCircle
-TwoTone.CheckCircleOutline
-TwoTone.Checklist
-TwoTone.ChecklistRtl
-TwoTone.Checkroom
-TwoTone.ChevronLeft
-TwoTone.ChevronRight
-TwoTone.ChildCare
-TwoTone.ChildFriendly
-TwoTone.Church
-TwoTone.Circle
-TwoTone.CircleNotifications
-TwoTone.Class
-TwoTone.CleanHands
-TwoTone.CleaningServices
-TwoTone.Clear
-TwoTone.ClearAll
-TwoTone.Close
-TwoTone.CloseFullscreen
-TwoTone.ClosedCaption
-TwoTone.ClosedCaptionDisabled
-TwoTone.ClosedCaptionOff
-TwoTone.Cloud
-TwoTone.CloudCircle
-TwoTone.CloudDone
-TwoTone.CloudDownload
-TwoTone.CloudOff
-TwoTone.CloudQueue
-TwoTone.CloudSync
-TwoTone.CloudUpload
-TwoTone.Co2
-TwoTone.CoPresent
-TwoTone.Code
-TwoTone.CodeOff
-TwoTone.Coffee
-TwoTone.CoffeeMaker
-TwoTone.Collections
-TwoTone.CollectionsBookmark
-TwoTone.ColorLens
-TwoTone.Colorize
-TwoTone.CommentBank
-TwoTone.CommentsDisabled
-TwoTone.Commit
-TwoTone.Commute
-TwoTone.Compare
-TwoTone.CompassCalibration
-TwoTone.Compost
-TwoTone.Compress
-TwoTone.Computer
-TwoTone.ConfirmationNumber
-TwoTone.ConnectWithoutContact
-TwoTone.ConnectedTv
-TwoTone.ConnectingAirports
-TwoTone.Construction
-TwoTone.ContactEmergency
-TwoTone.ContactMail
-TwoTone.ContactPage
-TwoTone.ContactPhone
-TwoTone.Contactless
-TwoTone.Contacts
-TwoTone.ContentCopy
-TwoTone.ContentCut
-TwoTone.ContentPaste
-TwoTone.ContentPasteGo
-TwoTone.ContentPasteOff
-TwoTone.ContentPasteSearch
-TwoTone.Contrast
-TwoTone.ControlCamera
-TwoTone.ControlPoint
-TwoTone.ControlPointDuplicate
-TwoTone.Cookie
-TwoTone.CopyAll
-TwoTone.Copyright
-TwoTone.Coronavirus
-TwoTone.CorporateFare
-TwoTone.Cottage
-TwoTone.Countertops
-TwoTone.Create
-TwoTone.CreateNewFolder
-TwoTone.CreditCard
-TwoTone.CreditCardOff
-TwoTone.CreditScore
-TwoTone.Crib
-TwoTone.CrisisAlert
-TwoTone.Crop
-TwoTone.Crop169
-TwoTone.Crop32
-TwoTone.Crop54
-TwoTone.Crop75
-TwoTone.CropDin
-TwoTone.CropFree
-TwoTone.CropLandscape
-TwoTone.CropOriginal
-TwoTone.CropPortrait
-TwoTone.CropRotate
-TwoTone.CropSquare
-TwoTone.CrueltyFree
-TwoTone.Css
-TwoTone.CurrencyBitcoin
-TwoTone.CurrencyExchange
-TwoTone.CurrencyFranc
-TwoTone.CurrencyLira
-TwoTone.CurrencyPound
-TwoTone.CurrencyRuble
-TwoTone.CurrencyRupee
-TwoTone.CurrencyYen
-TwoTone.CurrencyYuan
-TwoTone.Curtains
-TwoTone.CurtainsClosed
-TwoTone.Cyclone
-TwoTone.Dangerous
-TwoTone.DarkMode
-TwoTone.Dashboard
-TwoTone.DashboardCustomize
-TwoTone.DataArray
-TwoTone.DataExploration
-TwoTone.DataObject
-TwoTone.DataSaverOff
-TwoTone.DataSaverOn
-TwoTone.DataThresholding
-TwoTone.DataUsage
-TwoTone.Dataset
-TwoTone.DatasetLinked
-TwoTone.DateRange
-TwoTone.Deblur
-TwoTone.Deck
-TwoTone.Dehaze
-TwoTone.Delete
-TwoTone.DeleteForever
-TwoTone.DeleteOutline
-TwoTone.DeleteSweep
-TwoTone.DeliveryDining
-TwoTone.DensityLarge
-TwoTone.DensityMedium
-TwoTone.DensitySmall
-TwoTone.DepartureBoard
-TwoTone.Description
-TwoTone.Deselect
-TwoTone.DesignServices
-TwoTone.Desk
-TwoTone.DesktopAccessDisabled
-TwoTone.DesktopMac
-TwoTone.DesktopWindows
-TwoTone.Details
-TwoTone.DeveloperBoard
-TwoTone.DeveloperBoardOff
-TwoTone.DeveloperMode
-TwoTone.DeviceHub
-TwoTone.DeviceThermostat
-TwoTone.DeviceUnknown
-TwoTone.Devices
-TwoTone.DevicesFold
-TwoTone.DevicesOther
-TwoTone.DialerSip
-TwoTone.Dialpad
-TwoTone.Diamond
-TwoTone.Difference
-TwoTone.Dining
-TwoTone.DinnerDining
-TwoTone.Directions
-TwoTone.DirectionsBoat
-TwoTone.DirectionsBoatFilled
-TwoTone.DirectionsBus
-TwoTone.DirectionsBusFilled
-TwoTone.DirectionsCar
-TwoTone.DirectionsCarFilled
-TwoTone.DirectionsOff
-TwoTone.DirectionsRailway
-TwoTone.DirectionsRailwayFilled
-TwoTone.DirectionsSubway
-TwoTone.DirectionsSubwayFilled
-TwoTone.DirectionsTransit
-TwoTone.DirectionsTransitFilled
-TwoTone.DirtyLens
-TwoTone.DisabledByDefault
-TwoTone.DisabledVisible
-TwoTone.DiscFull
-TwoTone.Discount
-TwoTone.DisplaySettings
-TwoTone.Diversity1
-TwoTone.Diversity2
-TwoTone.Diversity3
-TwoTone.Dns
-TwoTone.DoDisturb
-TwoTone.DoDisturbAlt
-TwoTone.DoDisturbOff
-TwoTone.DoDisturbOn
-TwoTone.DoNotDisturb
-TwoTone.DoNotDisturbAlt
-TwoTone.DoNotDisturbOff
-TwoTone.DoNotDisturbOn
-TwoTone.DoNotDisturbOnTotalSilence
-TwoTone.DoNotStep
-TwoTone.DoNotTouch
-TwoTone.Dock
-TwoTone.DocumentScanner
-TwoTone.Domain
-TwoTone.DomainAdd
-TwoTone.DomainDisabled
-TwoTone.DomainVerification
-TwoTone.Done
-TwoTone.DoneAll
-TwoTone.DoneOutline
-TwoTone.DonutLarge
-TwoTone.DonutSmall
-TwoTone.DoorBack
-TwoTone.DoorFront
-TwoTone.DoorSliding
-TwoTone.Doorbell
-TwoTone.DoubleArrow
-TwoTone.DownhillSkiing
-TwoTone.Download
-TwoTone.DownloadDone
-TwoTone.DownloadForOffline
-TwoTone.Downloading
-TwoTone.Drafts
-TwoTone.DragHandle
-TwoTone.DragIndicator
-TwoTone.Draw
-TwoTone.DriveEta
-TwoTone.DriveFileMoveRtl
-TwoTone.DriveFileRenameOutline
-TwoTone.DriveFolderUpload
-TwoTone.Dry
-TwoTone.DryCleaning
-TwoTone.Duo
-TwoTone.DynamicFeed
-TwoTone.DynamicForm
-TwoTone.EMobiledata
-TwoTone.Earbuds
-TwoTone.EarbudsBattery
-TwoTone.East
-TwoTone.Eco
-TwoTone.EdgesensorHigh
-TwoTone.EdgesensorLow
-TwoTone.Edit
-TwoTone.EditAttributes
-TwoTone.EditCalendar
-TwoTone.EditLocation
-TwoTone.EditLocationAlt
-TwoTone.EditNote
-TwoTone.EditNotifications
-TwoTone.EditOff
-TwoTone.EditRoad
-TwoTone.Egg
-TwoTone.EggAlt
-TwoTone.Eject
-TwoTone.Elderly
-TwoTone.ElderlyWoman
-TwoTone.ElectricBike
-TwoTone.ElectricBolt
-TwoTone.ElectricCar
-TwoTone.ElectricMeter
-TwoTone.ElectricMoped
-TwoTone.ElectricRickshaw
-TwoTone.ElectricScooter
-TwoTone.ElectricalServices
-TwoTone.Elevator
-TwoTone.Email
-TwoTone.Emergency
-TwoTone.EmergencyRecording
-TwoTone.EmergencyShare
-TwoTone.EmojiEmotions
-TwoTone.EmojiEvents
-TwoTone.EmojiFlags
-TwoTone.EmojiFoodBeverage
-TwoTone.EmojiNature
-TwoTone.EmojiObjects
-TwoTone.EmojiPeople
-TwoTone.EmojiSymbols
-TwoTone.EmojiTransportation
-TwoTone.EnergySavingsLeaf
-TwoTone.Engineering
-TwoTone.EnhancedEncryption
-TwoTone.Equalizer
-TwoTone.Error
-TwoTone.ErrorOutline
-TwoTone.Escalator
-TwoTone.EscalatorWarning
-TwoTone.Euro
-TwoTone.EuroSymbol
-TwoTone.EvStation
-TwoTone.Event
-TwoTone.EventAvailable
-TwoTone.EventBusy
-TwoTone.EventRepeat
-TwoTone.EventSeat
-TwoTone.Expand
-TwoTone.ExpandCircleDown
-TwoTone.ExpandLess
-TwoTone.ExpandMore
-TwoTone.Explicit
-TwoTone.Explore
-TwoTone.ExploreOff
-TwoTone.Exposure
-TwoTone.ExposureNeg1
-TwoTone.ExposureNeg2
-TwoTone.ExposurePlus1
-TwoTone.ExposurePlus2
-TwoTone.ExposureZero
-TwoTone.Extension
-TwoTone.ExtensionOff
-TwoTone.Face
-TwoTone.Face2
-TwoTone.Face3
-TwoTone.Face4
-TwoTone.Face5
-TwoTone.Face6
-TwoTone.FaceRetouchingNatural
-TwoTone.FaceRetouchingOff
-TwoTone.Facebook
-TwoTone.Factory
-TwoTone.FamilyRestroom
-TwoTone.FastForward
-TwoTone.FastRewind
-TwoTone.Fastfood
-TwoTone.Favorite
-TwoTone.FavoriteBorder
-TwoTone.Fax
-TwoTone.Feedback
-TwoTone.Female
-TwoTone.Fence
-TwoTone.Festival
-TwoTone.FiberDvr
-TwoTone.FiberManualRecord
-TwoTone.FiberNew
-TwoTone.FiberPin
-TwoTone.FiberSmartRecord
-TwoTone.FileCopy
-TwoTone.FileDownload
-TwoTone.FileDownloadDone
-TwoTone.FileDownloadOff
-TwoTone.FileOpen
-TwoTone.FilePresent
-TwoTone.FileUpload
-TwoTone.Filter
-TwoTone.Filter1
-TwoTone.Filter2
-TwoTone.Filter3
-TwoTone.Filter4
-TwoTone.Filter5
-TwoTone.Filter6
-TwoTone.Filter7
-TwoTone.Filter8
-TwoTone.Filter9
-TwoTone.Filter9Plus
-TwoTone.FilterAlt
-TwoTone.FilterAltOff
-TwoTone.FilterBAndW
-TwoTone.FilterCenterFocus
-TwoTone.FilterDrama
-TwoTone.FilterFrames
-TwoTone.FilterHdr
-TwoTone.FilterList
-TwoTone.FilterListOff
-TwoTone.FilterNone
-TwoTone.FilterTiltShift
-TwoTone.FilterVintage
-TwoTone.FindInPage
-TwoTone.FindReplace
-TwoTone.Fingerprint
-TwoTone.FireExtinguisher
-TwoTone.FireHydrantAlt
-TwoTone.FireTruck
-TwoTone.Fireplace
-TwoTone.FirstPage
-TwoTone.FitScreen
-TwoTone.Fitbit
-TwoTone.FitnessCenter
-TwoTone.Flag
-TwoTone.FlagCircle
-TwoTone.Flaky
-TwoTone.Flare
-TwoTone.FlashAuto
-TwoTone.FlashOff
-TwoTone.FlashOn
-TwoTone.FlashlightOff
-TwoTone.FlashlightOn
-TwoTone.Flatware
-TwoTone.Flight
-TwoTone.FlightClass
-TwoTone.FlightLand
-TwoTone.FlightTakeoff
-TwoTone.Flip
-TwoTone.FlipCameraAndroid
-TwoTone.FlipCameraIos
-TwoTone.FlipToBack
-TwoTone.FlipToFront
-TwoTone.Flood
-TwoTone.Flourescent
-TwoTone.Fluorescent
-TwoTone.FlutterDash
-TwoTone.FmdBad
-TwoTone.FmdGood
-TwoTone.Folder
-TwoTone.FolderCopy
-TwoTone.FolderDelete
-TwoTone.FolderOff
-TwoTone.FolderOpen
-TwoTone.FolderShared
-TwoTone.FolderSpecial
-TwoTone.FolderZip
-TwoTone.FontDownload
-TwoTone.FontDownloadOff
-TwoTone.FoodBank
-TwoTone.Forest
-TwoTone.ForkLeft
-TwoTone.ForkRight
-TwoTone.FormatAlignCenter
-TwoTone.FormatAlignJustify
-TwoTone.FormatBold
-TwoTone.FormatClear
-TwoTone.FormatColorFill
-TwoTone.FormatColorReset
-TwoTone.FormatColorText
-TwoTone.FormatItalic
-TwoTone.FormatLineSpacing
-TwoTone.FormatListNumbered
-TwoTone.FormatListNumberedRtl
-TwoTone.FormatOverline
-TwoTone.FormatPaint
-TwoTone.FormatQuote
-TwoTone.FormatShapes
-TwoTone.FormatSize
-TwoTone.FormatStrikethrough
-TwoTone.FormatUnderlined
-TwoTone.Fort
-TwoTone.Forum
-TwoTone.Forward10
-TwoTone.Forward30
-TwoTone.Forward5
-TwoTone.Foundation
-TwoTone.FreeBreakfast
-TwoTone.FreeCancellation
-TwoTone.FrontHand
-TwoTone.Fullscreen
-TwoTone.FullscreenExit
-TwoTone.Functions
-TwoTone.GMobiledata
-TwoTone.GTranslate
-TwoTone.Gamepad
-TwoTone.Games
-TwoTone.Garage
-TwoTone.GasMeter
-TwoTone.Gavel
-TwoTone.GeneratingTokens
-TwoTone.Gesture
-TwoTone.GetApp
-TwoTone.Gif
-TwoTone.GifBox
-TwoTone.Girl
-TwoTone.Gite
-TwoTone.GolfCourse
-TwoTone.GppBad
-TwoTone.GppGood
-TwoTone.GppMaybe
-TwoTone.GpsFixed
-TwoTone.GpsNotFixed
-TwoTone.GpsOff
-TwoTone.Grade
-TwoTone.Gradient
-TwoTone.Grain
-TwoTone.GraphicEq
-TwoTone.Grass
-TwoTone.Grid3x3
-TwoTone.Grid4x4
-TwoTone.GridGoldenratio
-TwoTone.GridOff
-TwoTone.GridOn
-TwoTone.GridView
-TwoTone.Group
-TwoTone.GroupAdd
-TwoTone.GroupOff
-TwoTone.GroupRemove
-TwoTone.GroupWork
-TwoTone.Groups
-TwoTone.Groups2
-TwoTone.Groups3
-TwoTone.HMobiledata
-TwoTone.HPlusMobiledata
-TwoTone.Hail
-TwoTone.Handshake
-TwoTone.Handyman
-TwoTone.Hardware
-TwoTone.Hd
-TwoTone.HdrAuto
-TwoTone.HdrAutoSelect
-TwoTone.HdrEnhancedSelect
-TwoTone.HdrOff
-TwoTone.HdrOffSelect
-TwoTone.HdrOn
-TwoTone.HdrOnSelect
-TwoTone.HdrPlus
-TwoTone.HdrStrong
-TwoTone.HdrWeak
-TwoTone.Headphones
-TwoTone.HeadphonesBattery
-TwoTone.Headset
-TwoTone.HeadsetMic
-TwoTone.HeadsetOff
-TwoTone.Healing
-TwoTone.HealthAndSafety
-TwoTone.Hearing
-TwoTone.HearingDisabled
-TwoTone.HeartBroken
-TwoTone.HeatPump
-TwoTone.Height
-TwoTone.Hevc
-TwoTone.Hexagon
-TwoTone.HideImage
-TwoTone.HideSource
-TwoTone.HighQuality
-TwoTone.Highlight
-TwoTone.HighlightAlt
-TwoTone.HighlightOff
-TwoTone.Hiking
-TwoTone.History
-TwoTone.HistoryEdu
-TwoTone.HistoryToggleOff
-TwoTone.Hive
-TwoTone.Hls
-TwoTone.HlsOff
-TwoTone.HolidayVillage
-TwoTone.Home
-TwoTone.HomeMax
-TwoTone.HomeMini
-TwoTone.HomeRepairService
-TwoTone.HomeWork
-TwoTone.HorizontalDistribute
-TwoTone.HorizontalRule
-TwoTone.HorizontalSplit
-TwoTone.HotTub
-TwoTone.Hotel
-TwoTone.HotelClass
-TwoTone.HourglassBottom
-TwoTone.HourglassDisabled
-TwoTone.HourglassEmpty
-TwoTone.HourglassFull
-TwoTone.HourglassTop
-TwoTone.House
-TwoTone.HouseSiding
-TwoTone.Houseboat
-TwoTone.HowToReg
-TwoTone.HowToVote
-TwoTone.Html
-TwoTone.Http
-TwoTone.Https
-TwoTone.Hub
-TwoTone.Hvac
-TwoTone.IceSkating
-TwoTone.Icecream
-TwoTone.Image
-TwoTone.ImageAspectRatio
-TwoTone.ImageNotSupported
-TwoTone.ImageSearch
-TwoTone.ImagesearchRoller
-TwoTone.ImportContacts
-TwoTone.ImportExport
-TwoTone.ImportantDevices
-TwoTone.Inbox
-TwoTone.IncompleteCircle
-TwoTone.IndeterminateCheckBox
-TwoTone.Info
-TwoTone.InsertChart
-TwoTone.InsertChartOutlined
-TwoTone.InsertEmoticon
-TwoTone.InsertInvitation
-TwoTone.InsertLink
-TwoTone.InsertPageBreak
-TwoTone.InsertPhoto
-TwoTone.Insights
-TwoTone.InstallDesktop
-TwoTone.InstallMobile
-TwoTone.IntegrationInstructions
-TwoTone.Interests
-TwoTone.InterpreterMode
-TwoTone.Inventory
-TwoTone.Inventory2
-TwoTone.InvertColors
-TwoTone.InvertColorsOff
-TwoTone.IosShare
-TwoTone.Iron
-TwoTone.Iso
-TwoTone.Javascript
-TwoTone.JoinFull
-TwoTone.JoinInner
-TwoTone.JoinLeft
-TwoTone.JoinRight
-TwoTone.Kayaking
-TwoTone.KebabDining
-TwoTone.Key
-TwoTone.KeyOff
-TwoTone.Keyboard
-TwoTone.KeyboardAlt
-TwoTone.KeyboardArrowDown
-TwoTone.KeyboardArrowUp
-TwoTone.KeyboardCapslock
-TwoTone.KeyboardCommandKey
-TwoTone.KeyboardControlKey
-TwoTone.KeyboardDoubleArrowDown
-TwoTone.KeyboardDoubleArrowLeft
-TwoTone.KeyboardDoubleArrowRight
-TwoTone.KeyboardDoubleArrowUp
-TwoTone.KeyboardHide
-TwoTone.KeyboardOptionKey
-TwoTone.KeyboardVoice
-TwoTone.KingBed
-TwoTone.Kitchen
-TwoTone.Kitesurfing
-TwoTone.Lan
-TwoTone.Landscape
-TwoTone.Landslide
-TwoTone.Language
-TwoTone.Laptop
-TwoTone.LaptopChromebook
-TwoTone.LaptopMac
-TwoTone.LaptopWindows
-TwoTone.Layers
-TwoTone.LayersClear
-TwoTone.Leaderboard
-TwoTone.LeakAdd
-TwoTone.LeakRemove
-TwoTone.LeaveBagsAtHome
-TwoTone.LegendToggle
-TwoTone.Lens
-TwoTone.LensBlur
-TwoTone.LibraryAdd
-TwoTone.LibraryAddCheck
-TwoTone.LibraryMusic
-TwoTone.Light
-TwoTone.LightMode
-TwoTone.Lightbulb
-TwoTone.LightbulbCircle
-TwoTone.LineAxis
-TwoTone.LineStyle
-TwoTone.LineWeight
-TwoTone.LinearScale
-TwoTone.Link
-TwoTone.LinkOff
-TwoTone.LinkedCamera
-TwoTone.Liquor
-TwoTone.LiveTv
-TwoTone.Living
-TwoTone.LocalActivity
-TwoTone.LocalAirport
-TwoTone.LocalAtm
-TwoTone.LocalBar
-TwoTone.LocalCafe
-TwoTone.LocalCarWash
-TwoTone.LocalConvenienceStore
-TwoTone.LocalDining
-TwoTone.LocalDrink
-TwoTone.LocalFireDepartment
-TwoTone.LocalFlorist
-TwoTone.LocalGasStation
-TwoTone.LocalGroceryStore
-TwoTone.LocalHospital
-TwoTone.LocalHotel
-TwoTone.LocalLaundryService
-TwoTone.LocalLibrary
-TwoTone.LocalMall
-TwoTone.LocalMovies
-TwoTone.LocalOffer
-TwoTone.LocalParking
-TwoTone.LocalPharmacy
-TwoTone.LocalPhone
-TwoTone.LocalPizza
-TwoTone.LocalPlay
-TwoTone.LocalPolice
-TwoTone.LocalPostOffice
-TwoTone.LocalPrintshop
-TwoTone.LocalSee
-TwoTone.LocalShipping
-TwoTone.LocalTaxi
-TwoTone.LocationCity
-TwoTone.LocationDisabled
-TwoTone.LocationOff
-TwoTone.LocationOn
-TwoTone.LocationSearching
-TwoTone.Lock
-TwoTone.LockClock
-TwoTone.LockOpen
-TwoTone.LockPerson
-TwoTone.LockReset
-TwoTone.LogoDev
-TwoTone.Looks
-TwoTone.Looks3
-TwoTone.Looks4
-TwoTone.Looks5
-TwoTone.Looks6
-TwoTone.LooksOne
-TwoTone.LooksTwo
-TwoTone.Loop
-TwoTone.Loupe
-TwoTone.LowPriority
-TwoTone.Loyalty
-TwoTone.LteMobiledata
-TwoTone.LtePlusMobiledata
-TwoTone.Luggage
-TwoTone.LunchDining
-TwoTone.Lyrics
-TwoTone.MacroOff
-TwoTone.Mail
-TwoTone.MailLock
-TwoTone.MailOutline
-TwoTone.Male
-TwoTone.Man
-TwoTone.Man2
-TwoTone.Man3
-TwoTone.Man4
-TwoTone.ManageAccounts
-TwoTone.ManageHistory
-TwoTone.Map
-TwoTone.MapsHomeWork
-TwoTone.MapsUgc
-TwoTone.Margin
-TwoTone.MarkAsUnread
-TwoTone.MarkChatRead
-TwoTone.MarkChatUnread
-TwoTone.MarkEmailRead
-TwoTone.MarkEmailUnread
-TwoTone.MarkUnreadChatAlt
-TwoTone.Markunread
-TwoTone.MarkunreadMailbox
-TwoTone.Masks
-TwoTone.Maximize
-TwoTone.MediaBluetoothOff
-TwoTone.MediaBluetoothOn
-TwoTone.Mediation
-TwoTone.MedicalInformation
-TwoTone.MedicalServices
-TwoTone.Medication
-TwoTone.MeetingRoom
-TwoTone.Memory
-TwoTone.Menu
-TwoTone.Merge
-TwoTone.Mic
-TwoTone.MicExternalOff
-TwoTone.MicExternalOn
-TwoTone.MicNone
-TwoTone.MicOff
-TwoTone.Microwave
-TwoTone.MilitaryTech
-TwoTone.Minimize
-TwoTone.MinorCrash
-TwoTone.MiscellaneousServices
-TwoTone.Mms
-TwoTone.MobileFriendly
-TwoTone.MobileOff
-TwoTone.MobiledataOff
-TwoTone.Mode
-TwoTone.ModeComment
-TwoTone.ModeEdit
-TwoTone.ModeEditOutline
-TwoTone.ModeFanOff
-TwoTone.ModeNight
-TwoTone.ModeOfTravel
-TwoTone.ModeStandby
-TwoTone.ModelTraining
-TwoTone.MonetizationOn
-TwoTone.Money
-TwoTone.MoneyOff
-TwoTone.MoneyOffCsred
-TwoTone.Monitor
-TwoTone.MonitorHeart
-TwoTone.MonitorWeight
-TwoTone.MonochromePhotos
-TwoTone.Mood
-TwoTone.MoodBad
-TwoTone.Moped
-TwoTone.MoreHoriz
-TwoTone.MoreTime
-TwoTone.MoreVert
-TwoTone.Mosque
-TwoTone.MotionPhotosAuto
-TwoTone.MotionPhotosOff
-TwoTone.MotionPhotosOn
-TwoTone.MotionPhotosPause
-TwoTone.MotionPhotosPaused
-TwoTone.Motorcycle
-TwoTone.Mouse
-TwoTone.MoveDown
-TwoTone.MoveToInbox
-TwoTone.MoveUp
-TwoTone.Movie
-TwoTone.MovieCreation
-TwoTone.MovieFilter
-TwoTone.Moving
-TwoTone.Mp
-TwoTone.MultipleStop
-TwoTone.Museum
-TwoTone.MusicNote
-TwoTone.MusicOff
-TwoTone.MusicVideo
-TwoTone.MyLocation
-TwoTone.Nat
-TwoTone.Nature
-TwoTone.NaturePeople
-TwoTone.Navigation
-TwoTone.NearMe
-TwoTone.NearMeDisabled
-TwoTone.NearbyError
-TwoTone.NearbyOff
-TwoTone.NestCamWiredStand
-TwoTone.NetworkCell
-TwoTone.NetworkCheck
-TwoTone.NetworkLocked
-TwoTone.NetworkPing
-TwoTone.NetworkWifi
-TwoTone.NetworkWifi1Bar
-TwoTone.NetworkWifi2Bar
-TwoTone.NetworkWifi3Bar
-TwoTone.NewLabel
-TwoTone.NewReleases
-TwoTone.Newspaper
-TwoTone.Nfc
-TwoTone.NightShelter
-TwoTone.Nightlife
-TwoTone.Nightlight
-TwoTone.NightlightRound
-TwoTone.NightsStay
-TwoTone.NoAccounts
-TwoTone.NoAdultContent
-TwoTone.NoBackpack
-TwoTone.NoCell
-TwoTone.NoCrash
-TwoTone.NoDrinks
-TwoTone.NoEncryption
-TwoTone.NoEncryptionGmailerrorred
-TwoTone.NoFlash
-TwoTone.NoFood
-TwoTone.NoLuggage
-TwoTone.NoMeals
-TwoTone.NoMeetingRoom
-TwoTone.NoPhotography
-TwoTone.NoSim
-TwoTone.NoStroller
-TwoTone.NoTransfer
-TwoTone.NoiseAware
-TwoTone.NoiseControlOff
-TwoTone.NordicWalking
-TwoTone.North
-TwoTone.NorthEast
-TwoTone.NorthWest
-TwoTone.NotAccessible
-TwoTone.NotInterested
-TwoTone.NotStarted
-TwoTone.NoteAlt
-TwoTone.NotificationAdd
-TwoTone.NotificationImportant
-TwoTone.Notifications
-TwoTone.NotificationsActive
-TwoTone.NotificationsNone
-TwoTone.NotificationsOff
-TwoTone.NotificationsPaused
-TwoTone.Numbers
-TwoTone.OfflineBolt
-TwoTone.OfflinePin
-TwoTone.OilBarrel
-TwoTone.OnDeviceTraining
-TwoTone.OndemandVideo
-TwoTone.OnlinePrediction
-TwoTone.Opacity
-TwoTone.OpenInBrowser
-TwoTone.OpenInFull
-TwoTone.OpenInNewOff
-TwoTone.OpenWith
-TwoTone.OtherHouses
-TwoTone.Outbond
-TwoTone.Outbox
-TwoTone.OutdoorGrill
-TwoTone.Outlet
-TwoTone.OutlinedFlag
-TwoTone.Output
-TwoTone.Padding
-TwoTone.Pages
-TwoTone.Pageview
-TwoTone.Paid
-TwoTone.Palette
-TwoTone.PanTool
-TwoTone.PanToolAlt
-TwoTone.Panorama
-TwoTone.PanoramaFishEye
-TwoTone.PanoramaHorizontal
-TwoTone.PanoramaHorizontalSelect
-TwoTone.PanoramaPhotosphere
-TwoTone.PanoramaPhotosphereSelect
-TwoTone.PanoramaVertical
-TwoTone.PanoramaVerticalSelect
-TwoTone.PanoramaWideAngle
-TwoTone.PanoramaWideAngleSelect
-TwoTone.Paragliding
-TwoTone.Park
-TwoTone.PartyMode
-TwoTone.Password
-TwoTone.Pattern
-TwoTone.Pause
-TwoTone.PauseCircle
-TwoTone.PauseCircleFilled
-TwoTone.PauseCircleOutline
-TwoTone.PausePresentation
-TwoTone.Payment
-TwoTone.Payments
-TwoTone.PedalBike
-TwoTone.Pending
-TwoTone.PendingActions
-TwoTone.Pentagon
-TwoTone.People
-TwoTone.PeopleAlt
-TwoTone.PeopleOutline
-TwoTone.Percent
-TwoTone.PermCameraMic
-TwoTone.PermContactCalendar
-TwoTone.PermDataSetting
-TwoTone.PermDeviceInformation
-TwoTone.PermIdentity
-TwoTone.PermMedia
-TwoTone.PermPhoneMsg
-TwoTone.PermScanWifi
-TwoTone.Person
-TwoTone.Person2
-TwoTone.Person3
-TwoTone.Person4
-TwoTone.PersonAdd
-TwoTone.PersonAddAlt
-TwoTone.PersonAddAlt1
-TwoTone.PersonAddDisabled
-TwoTone.PersonOff
-TwoTone.PersonOutline
-TwoTone.PersonPin
-TwoTone.PersonPinCircle
-TwoTone.PersonRemove
-TwoTone.PersonRemoveAlt1
-TwoTone.PersonSearch
-TwoTone.PersonalInjury
-TwoTone.PersonalVideo
-TwoTone.PestControl
-TwoTone.PestControlRodent
-TwoTone.Pets
-TwoTone.Phishing
-TwoTone.Phone
-TwoTone.PhoneAndroid
-TwoTone.PhoneBluetoothSpeaker
-TwoTone.PhoneDisabled
-TwoTone.PhoneEnabled
-TwoTone.PhoneInTalk
-TwoTone.PhoneIphone
-TwoTone.PhoneLocked
-TwoTone.PhonePaused
-TwoTone.Phonelink
-TwoTone.PhonelinkErase
-TwoTone.PhonelinkLock
-TwoTone.PhonelinkOff
-TwoTone.PhonelinkRing
-TwoTone.PhonelinkSetup
-TwoTone.Photo
-TwoTone.PhotoAlbum
-TwoTone.PhotoCamera
-TwoTone.PhotoCameraBack
-TwoTone.PhotoCameraFront
-TwoTone.PhotoFilter
-TwoTone.PhotoLibrary
-TwoTone.PhotoSizeSelectActual
-TwoTone.PhotoSizeSelectLarge
-TwoTone.PhotoSizeSelectSmall
-TwoTone.Php
-TwoTone.Piano
-TwoTone.PianoOff
-TwoTone.PictureAsPdf
-TwoTone.PictureInPicture
-TwoTone.PictureInPictureAlt
-TwoTone.PieChart
-TwoTone.PieChartOutline
-TwoTone.Pin
-TwoTone.PinDrop
-TwoTone.PinEnd
-TwoTone.PinInvoke
-TwoTone.Pinch
-TwoTone.PivotTableChart
-TwoTone.Pix
-TwoTone.Place
-TwoTone.Plagiarism
-TwoTone.PlayArrow
-TwoTone.PlayCircle
-TwoTone.PlayCircleFilled
-TwoTone.PlayCircleOutline
-TwoTone.PlayDisabled
-TwoTone.PlayForWork
-TwoTone.PlayLesson
-TwoTone.PlaylistAddCheckCircle
-TwoTone.PlaylistAddCircle
-TwoTone.PlaylistRemove
-TwoTone.Plumbing
-TwoTone.PlusOne
-TwoTone.Podcasts
-TwoTone.PointOfSale
-TwoTone.Policy
-TwoTone.Poll
-TwoTone.Polyline
-TwoTone.Polymer
-TwoTone.Pool
-TwoTone.PortableWifiOff
-TwoTone.Portrait
-TwoTone.PostAdd
-TwoTone.Power
-TwoTone.PowerInput
-TwoTone.PowerOff
-TwoTone.PowerSettingsNew
-TwoTone.PrecisionManufacturing
-TwoTone.PregnantWoman
-TwoTone.PresentToAll
-TwoTone.Preview
-TwoTone.PriceChange
-TwoTone.PriceCheck
-TwoTone.Print
-TwoTone.PrintDisabled
-TwoTone.PriorityHigh
-TwoTone.PrivacyTip
-TwoTone.PrivateConnectivity
-TwoTone.ProductionQuantityLimits
-TwoTone.Propane
-TwoTone.PropaneTank
-TwoTone.Psychology
-TwoTone.PsychologyAlt
-TwoTone.Public
-TwoTone.PublicOff
-TwoTone.Publish
-TwoTone.PublishedWithChanges
-TwoTone.PunchClock
-TwoTone.PushPin
-TwoTone.QrCode
-TwoTone.QrCode2
-TwoTone.QrCodeScanner
-TwoTone.QueryBuilder
-TwoTone.QueryStats
-TwoTone.QuestionAnswer
-TwoTone.QuestionMark
-TwoTone.Queue
-TwoTone.QueuePlayNext
-TwoTone.Quickreply
-TwoTone.Quiz
-TwoTone.RMobiledata
-TwoTone.Radar
-TwoTone.Radio
-TwoTone.RadioButtonChecked
-TwoTone.RadioButtonUnchecked
-TwoTone.RailwayAlert
-TwoTone.RamenDining
-TwoTone.RampLeft
-TwoTone.RampRight
-TwoTone.RateReview
-TwoTone.RawOff
-TwoTone.RawOn
-TwoTone.RealEstateAgent
-TwoTone.Receipt
-TwoTone.RecentActors
-TwoTone.Recommend
-TwoTone.RecordVoiceOver
-TwoTone.Rectangle
-TwoTone.Recycling
-TwoTone.Redeem
-TwoTone.ReduceCapacity
-TwoTone.Refresh
-TwoTone.RememberMe
-TwoTone.Remove
-TwoTone.RemoveCircle
-TwoTone.RemoveCircleOutline
-TwoTone.RemoveDone
-TwoTone.RemoveFromQueue
-TwoTone.RemoveModerator
-TwoTone.RemoveRedEye
-TwoTone.RemoveRoad
-TwoTone.RemoveShoppingCart
-TwoTone.Reorder
-TwoTone.Repartition
-TwoTone.Repeat
-TwoTone.RepeatOn
-TwoTone.RepeatOne
-TwoTone.RepeatOneOn
-TwoTone.Replay
-TwoTone.Replay10
-TwoTone.Replay30
-TwoTone.Replay5
-TwoTone.ReplayCircleFilled
-TwoTone.Report
-TwoTone.ReportGmailerrorred
-TwoTone.ReportOff
-TwoTone.ReportProblem
-TwoTone.RequestPage
-TwoTone.RequestQuote
-TwoTone.ResetTv
-TwoTone.RestartAlt
-TwoTone.Restaurant
-TwoTone.RestaurantMenu
-TwoTone.Restore
-TwoTone.RestoreFromTrash
-TwoTone.RestorePage
-TwoTone.Reviews
-TwoTone.RiceBowl
-TwoTone.RingVolume
-TwoTone.Rocket
-TwoTone.RocketLaunch
-TwoTone.RollerShades
-TwoTone.RollerShadesClosed
-TwoTone.RollerSkating
-TwoTone.Roofing
-TwoTone.Room
-TwoTone.RoomPreferences
-TwoTone.RoomService
-TwoTone.Rotate90DegreesCcw
-TwoTone.Rotate90DegreesCw
-TwoTone.RoundaboutLeft
-TwoTone.RoundaboutRight
-TwoTone.RoundedCorner
-TwoTone.Route
-TwoTone.Router
-TwoTone.Rowing
-TwoTone.RssFeed
-TwoTone.Rsvp
-TwoTone.RuleFolder
-TwoTone.RunCircle
-TwoTone.RunningWithErrors
-TwoTone.RvHookup
-TwoTone.SafetyCheck
-TwoTone.SafetyDivider
-TwoTone.Sailing
-TwoTone.Sanitizer
-TwoTone.Satellite
-TwoTone.SatelliteAlt
-TwoTone.Save
-TwoTone.SaveAlt
-TwoTone.SaveAs
-TwoTone.SavedSearch
-TwoTone.Savings
-TwoTone.Scale
-TwoTone.Scanner
-TwoTone.ScatterPlot
-TwoTone.Schedule
-TwoTone.Schema
-TwoTone.School
-TwoTone.Science
-TwoTone.Score
-TwoTone.Scoreboard
-TwoTone.ScreenLockLandscape
-TwoTone.ScreenLockPortrait
-TwoTone.ScreenLockRotation
-TwoTone.ScreenRotation
-TwoTone.ScreenRotationAlt
-TwoTone.ScreenSearchDesktop
-TwoTone.Screenshot
-TwoTone.ScreenshotMonitor
-TwoTone.ScubaDiving
-TwoTone.Sd
-TwoTone.SdCard
-TwoTone.SdCardAlert
-TwoTone.SdStorage
-TwoTone.Search
-TwoTone.SearchOff
-TwoTone.Security
-TwoTone.SecurityUpdate
-TwoTone.SecurityUpdateGood
-TwoTone.SecurityUpdateWarning
-TwoTone.SelectAll
-TwoTone.SelfImprovement
-TwoTone.Sell
-TwoTone.SendTimeExtension
-TwoTone.SensorDoor
-TwoTone.SensorOccupied
-TwoTone.SensorWindow
-TwoTone.Sensors
-TwoTone.SensorsOff
-TwoTone.SentimentDissatisfied
-TwoTone.SentimentNeutral
-TwoTone.SentimentSatisfied
-TwoTone.SentimentSatisfiedAlt
-TwoTone.SentimentVeryDissatisfied
-TwoTone.SentimentVerySatisfied
-TwoTone.SetMeal
-TwoTone.Settings
-TwoTone.SettingsAccessibility
-TwoTone.SettingsApplications
-TwoTone.SettingsBackupRestore
-TwoTone.SettingsBluetooth
-TwoTone.SettingsBrightness
-TwoTone.SettingsCell
-TwoTone.SettingsEthernet
-TwoTone.SettingsInputAntenna
-TwoTone.SettingsInputComponent
-TwoTone.SettingsInputComposite
-TwoTone.SettingsInputHdmi
-TwoTone.SettingsInputSvideo
-TwoTone.SettingsOverscan
-TwoTone.SettingsPhone
-TwoTone.SettingsPower
-TwoTone.SettingsRemote
-TwoTone.SettingsSuggest
-TwoTone.SettingsSystemDaydream
-TwoTone.SettingsVoice
-TwoTone.SevereCold
-TwoTone.ShapeLine
-TwoTone.Share
-TwoTone.ShareLocation
-TwoTone.Shield
-TwoTone.ShieldMoon
-TwoTone.Shop
-TwoTone.Shop2
-TwoTone.ShopTwo
-TwoTone.ShoppingBag
-TwoTone.ShoppingBasket
-TwoTone.ShoppingCart
-TwoTone.ShoppingCartCheckout
-TwoTone.Shower
-TwoTone.Shuffle
-TwoTone.ShuffleOn
-TwoTone.ShutterSpeed
-TwoTone.Sick
-TwoTone.SignLanguage
-TwoTone.SignalCellular0Bar
-TwoTone.SignalCellular4Bar
-TwoTone.SignalCellularAlt
-TwoTone.SignalCellularAlt1Bar
-TwoTone.SignalCellularAlt2Bar
-TwoTone.SignalCellularConnectedNoInternet0Bar
-TwoTone.SignalCellularConnectedNoInternet4Bar
-TwoTone.SignalCellularNoSim
-TwoTone.SignalCellularNodata
-TwoTone.SignalCellularNull
-TwoTone.SignalCellularOff
-TwoTone.SignalWifi0Bar
-TwoTone.SignalWifi4Bar
-TwoTone.SignalWifi4BarLock
-TwoTone.SignalWifiBad
-TwoTone.SignalWifiConnectedNoInternet4
-TwoTone.SignalWifiOff
-TwoTone.SignalWifiStatusbar4Bar
-TwoTone.SignalWifiStatusbarConnectedNoInternet4
-TwoTone.SignalWifiStatusbarNull
-TwoTone.Signpost
-TwoTone.SimCard
-TwoTone.SimCardAlert
-TwoTone.SimCardDownload
-TwoTone.SingleBed
-TwoTone.Sip
-TwoTone.Skateboarding
-TwoTone.SkipNext
-TwoTone.SkipPrevious
-TwoTone.Sledding
-TwoTone.Slideshow
-TwoTone.SlowMotionVideo
-TwoTone.SmartButton
-TwoTone.SmartDisplay
-TwoTone.SmartScreen
-TwoTone.SmartToy
-TwoTone.Smartphone
-TwoTone.SmokeFree
-TwoTone.SmokingRooms
-TwoTone.Sms
-TwoTone.SmsFailed
-TwoTone.SnippetFolder
-TwoTone.Snooze
-TwoTone.Snowboarding
-TwoTone.Snowmobile
-TwoTone.Snowshoeing
-TwoTone.Soap
-TwoTone.SocialDistance
-TwoTone.SolarPower
-TwoTone.SortByAlpha
-TwoTone.Sos
-TwoTone.SoupKitchen
-TwoTone.Source
-TwoTone.South
-TwoTone.SouthAmerica
-TwoTone.SouthEast
-TwoTone.SouthWest
-TwoTone.Spa
-TwoTone.SpaceBar
-TwoTone.SpaceDashboard
-TwoTone.SpatialAudio
-TwoTone.SpatialAudioOff
-TwoTone.SpatialTracking
-TwoTone.Speaker
-TwoTone.SpeakerGroup
-TwoTone.SpeakerNotesOff
-TwoTone.SpeakerPhone
-TwoTone.Speed
-TwoTone.Spellcheck
-TwoTone.Splitscreen
-TwoTone.Spoke
-TwoTone.Sports
-TwoTone.SportsBar
-TwoTone.SportsBaseball
-TwoTone.SportsBasketball
-TwoTone.SportsCricket
-TwoTone.SportsEsports
-TwoTone.SportsFootball
-TwoTone.SportsGolf
-TwoTone.SportsGymnastics
-TwoTone.SportsHandball
-TwoTone.SportsHockey
-TwoTone.SportsKabaddi
-TwoTone.SportsMartialArts
-TwoTone.SportsMma
-TwoTone.SportsMotorsports
-TwoTone.SportsRugby
-TwoTone.SportsScore
-TwoTone.SportsSoccer
-TwoTone.SportsTennis
-TwoTone.SportsVolleyball
-TwoTone.Square
-TwoTone.SquareFoot
-TwoTone.SsidChart
-TwoTone.StackedBarChart
-TwoTone.StackedLineChart
-TwoTone.Stadium
-TwoTone.Stairs
-TwoTone.Star
-TwoTone.StarBorder
-TwoTone.StarBorderPurple500
-TwoTone.StarOutline
-TwoTone.StarPurple500
-TwoTone.StarRate
-TwoTone.Stars
-TwoTone.Start
-TwoTone.StayCurrentLandscape
-TwoTone.StayCurrentPortrait
-TwoTone.StayPrimaryLandscape
-TwoTone.StayPrimaryPortrait
-TwoTone.Stop
-TwoTone.StopCircle
-TwoTone.Storage
-TwoTone.Store
-TwoTone.StoreMallDirectory
-TwoTone.Storefront
-TwoTone.Storm
-TwoTone.Straight
-TwoTone.Straighten
-TwoTone.Stream
-TwoTone.Streetview
-TwoTone.StrikethroughS
-TwoTone.Stroller
-TwoTone.Style
-TwoTone.SubdirectoryArrowLeft
-TwoTone.SubdirectoryArrowRight
-TwoTone.Subscript
-TwoTone.Subscriptions
-TwoTone.Subtitles
-TwoTone.SubtitlesOff
-TwoTone.Subway
-TwoTone.Summarize
-TwoTone.Superscript
-TwoTone.SupervisedUserCircle
-TwoTone.SupervisorAccount
-TwoTone.Support
-TwoTone.SupportAgent
-TwoTone.Surfing
-TwoTone.SurroundSound
-TwoTone.SwapCalls
-TwoTone.SwapHoriz
-TwoTone.SwapHorizontalCircle
-TwoTone.SwapVert
-TwoTone.SwapVerticalCircle
-TwoTone.Swipe
-TwoTone.SwipeDown
-TwoTone.SwipeDownAlt
-TwoTone.SwipeLeft
-TwoTone.SwipeLeftAlt
-TwoTone.SwipeRight
-TwoTone.SwipeRightAlt
-TwoTone.SwipeUp
-TwoTone.SwipeUpAlt
-TwoTone.SwipeVertical
-TwoTone.SwitchAccessShortcut
-TwoTone.SwitchAccessShortcutAdd
-TwoTone.SwitchAccount
-TwoTone.SwitchCamera
-TwoTone.SwitchLeft
-TwoTone.SwitchRight
-TwoTone.SwitchVideo
-TwoTone.Synagogue
-TwoTone.Sync
-TwoTone.SyncAlt
-TwoTone.SyncDisabled
-TwoTone.SyncLock
-TwoTone.SyncProblem
-TwoTone.SystemSecurityUpdate
-TwoTone.SystemSecurityUpdateGood
-TwoTone.SystemSecurityUpdateWarning
-TwoTone.SystemUpdate
-TwoTone.SystemUpdateAlt
-TwoTone.Tab
-TwoTone.TabUnselected
-TwoTone.TableBar
-TwoTone.TableChart
-TwoTone.TableRestaurant
-TwoTone.TableRows
-TwoTone.TableView
-TwoTone.Tablet
-TwoTone.TabletAndroid
-TwoTone.TabletMac
-TwoTone.Tag
-TwoTone.TagFaces
-TwoTone.TakeoutDining
-TwoTone.TapAndPlay
-TwoTone.Tapas
-TwoTone.Task
-TwoTone.TaskAlt
-TwoTone.TaxiAlert
-TwoTone.TempleBuddhist
-TwoTone.TempleHindu
-TwoTone.Terminal
-TwoTone.Terrain
-TwoTone.TextDecrease
-TwoTone.TextFields
-TwoTone.TextFormat
-TwoTone.TextIncrease
-TwoTone.TextRotateUp
-TwoTone.TextRotateVertical
-TwoTone.TextRotationAngledown
-TwoTone.TextRotationAngleup
-TwoTone.TextRotationDown
-TwoTone.TextRotationNone
-TwoTone.Textsms
-TwoTone.Texture
-TwoTone.TheaterComedy
-TwoTone.Theaters
-TwoTone.Thermostat
-TwoTone.ThermostatAuto
-TwoTone.ThumbDown
-TwoTone.ThumbDownAlt
-TwoTone.ThumbDownOffAlt
-TwoTone.ThumbUp
-TwoTone.ThumbUpAlt
-TwoTone.ThumbUpOffAlt
-TwoTone.ThumbsUpDown
-TwoTone.Thunderstorm
-TwoTone.TimeToLeave
-TwoTone.Timelapse
-TwoTone.Timeline
-TwoTone.Timer
-TwoTone.Timer10
-TwoTone.Timer10Select
-TwoTone.Timer3
-TwoTone.Timer3Select
-TwoTone.TimerOff
-TwoTone.TipsAndUpdates
-TwoTone.TireRepair
-TwoTone.Title
-TwoTone.Today
-TwoTone.ToggleOff
-TwoTone.ToggleOn
-TwoTone.Token
-TwoTone.Toll
-TwoTone.Tonality
-TwoTone.Topic
-TwoTone.Tornado
-TwoTone.TouchApp
-TwoTone.Tour
-TwoTone.Toys
-TwoTone.TrackChanges
-TwoTone.Traffic
-TwoTone.Train
-TwoTone.Tram
-TwoTone.Transcribe
-TwoTone.TransferWithinAStation
-TwoTone.Transform
-TwoTone.Transgender
-TwoTone.TransitEnterexit
-TwoTone.Translate
-TwoTone.TravelExplore
-TwoTone.TripOrigin
-TwoTone.Troubleshoot
-TwoTone.Try
-TwoTone.Tsunami
-TwoTone.Tty
-TwoTone.Tune
-TwoTone.Tungsten
-TwoTone.TurnLeft
-TwoTone.TurnRight
-TwoTone.TurnSharpLeft
-TwoTone.TurnSharpRight
-TwoTone.TurnSlightLeft
-TwoTone.TurnSlightRight
-TwoTone.TurnedIn
-TwoTone.TurnedInNot
-TwoTone.Tv
-TwoTone.TvOff
-TwoTone.TwoWheeler
-TwoTone.TypeSpecimen
-TwoTone.UTurnLeft
-TwoTone.UTurnRight
-TwoTone.Umbrella
-TwoTone.Unarchive
-TwoTone.UnfoldLess
-TwoTone.UnfoldLessDouble
-TwoTone.UnfoldMore
-TwoTone.UnfoldMoreDouble
-TwoTone.Unpublished
-TwoTone.Unsubscribe
-TwoTone.Upcoming
-TwoTone.Update
-TwoTone.UpdateDisabled
-TwoTone.Upgrade
-TwoTone.Upload
-TwoTone.UploadFile
-TwoTone.Usb
-TwoTone.UsbOff
-TwoTone.Vaccines
-TwoTone.VapeFree
-TwoTone.VapingRooms
-TwoTone.Verified
-TwoTone.VerifiedUser
-TwoTone.VerticalAlignBottom
-TwoTone.VerticalAlignCenter
-TwoTone.VerticalAlignTop
-TwoTone.VerticalDistribute
-TwoTone.VerticalShades
-TwoTone.VerticalShadesClosed
-TwoTone.VerticalSplit
-TwoTone.Vibration
-TwoTone.VideoCall
-TwoTone.VideoCameraBack
-TwoTone.VideoCameraFront
-TwoTone.VideoChat
-TwoTone.VideoFile
-TwoTone.VideoLabel
-TwoTone.VideoLibrary
-TwoTone.VideoSettings
-TwoTone.VideoStable
-TwoTone.Videocam
-TwoTone.VideocamOff
-TwoTone.VideogameAsset
-TwoTone.VideogameAssetOff
-TwoTone.ViewAgenda
-TwoTone.ViewArray
-TwoTone.ViewCarousel
-TwoTone.ViewColumn
-TwoTone.ViewComfy
-TwoTone.ViewComfyAlt
-TwoTone.ViewCompact
-TwoTone.ViewCompactAlt
-TwoTone.ViewCozy
-TwoTone.ViewDay
-TwoTone.ViewHeadline
-TwoTone.ViewInAr
-TwoTone.ViewKanban
-TwoTone.ViewModule
-TwoTone.ViewStream
-TwoTone.ViewTimeline
-TwoTone.ViewWeek
-TwoTone.Vignette
-TwoTone.Villa
-TwoTone.Visibility
-TwoTone.VisibilityOff
-TwoTone.VoiceChat
-TwoTone.VoiceOverOff
-TwoTone.Voicemail
-TwoTone.Volcano
-TwoTone.VolunteerActivism
-TwoTone.VpnKey
-TwoTone.VpnKeyOff
-TwoTone.VpnLock
-TwoTone.Vrpano
-TwoTone.Wallet
-TwoTone.Wallpaper
-TwoTone.Warehouse
-TwoTone.Warning
-TwoTone.WarningAmber
-TwoTone.Wash
-TwoTone.Watch
-TwoTone.WatchLater
-TwoTone.WatchOff
-TwoTone.Water
-TwoTone.WaterDamage
-TwoTone.WaterDrop
-TwoTone.WaterfallChart
-TwoTone.Waves
-TwoTone.WavingHand
-TwoTone.WbAuto
-TwoTone.WbCloudy
-TwoTone.WbIncandescent
-TwoTone.WbIridescent
-TwoTone.WbShade
-TwoTone.WbSunny
-TwoTone.WbTwilight
-TwoTone.Wc
-TwoTone.Web
-TwoTone.WebAsset
-TwoTone.WebAssetOff
-TwoTone.WebStories
-TwoTone.Webhook
-TwoTone.Weekend
-TwoTone.West
-TwoTone.Whatsapp
-TwoTone.Whatshot
-TwoTone.WheelchairPickup
-TwoTone.WhereToVote
-TwoTone.Widgets
-TwoTone.WidthFull
-TwoTone.WidthNormal
-TwoTone.WidthWide
-TwoTone.Wifi
-TwoTone.Wifi1Bar
-TwoTone.Wifi2Bar
-TwoTone.WifiCalling
-TwoTone.WifiCalling3
-TwoTone.WifiChannel
-TwoTone.WifiFind
-TwoTone.WifiLock
-TwoTone.WifiOff
-TwoTone.WifiPassword
-TwoTone.WifiProtectedSetup
-TwoTone.WifiTethering
-TwoTone.WifiTetheringError
-TwoTone.WifiTetheringErrorRounded
-TwoTone.WifiTetheringOff
-TwoTone.WindPower
-TwoTone.Window
-TwoTone.WineBar
-TwoTone.Woman
-TwoTone.Woman2
-TwoTone.Work
-TwoTone.WorkHistory
-TwoTone.WorkOff
-TwoTone.WorkOutline
-TwoTone.WorkspacePremium
-TwoTone.Workspaces
-TwoTone.WrongLocation
-TwoTone.Yard
-TwoTone.YoutubeSearchedFor
-TwoTone.ZoomIn
-TwoTone.ZoomInMap
-TwoTone.ZoomOut
-TwoTone.ZoomOutMap
-TwoTone._10k
-TwoTone._10mp
-TwoTone._11mp
-TwoTone._123
-TwoTone._12mp
-TwoTone._13mp
-TwoTone._14mp
-TwoTone._15mp
-TwoTone._16mp
-TwoTone._17mp
-TwoTone._18UpRating
-TwoTone._18mp
-TwoTone._19mp
-TwoTone._1k
-TwoTone._1kPlus
-TwoTone._1xMobiledata
-TwoTone._20mp
-TwoTone._21mp
-TwoTone._22mp
-TwoTone._23mp
-TwoTone._24mp
-TwoTone._2k
-TwoTone._2kPlus
-TwoTone._2mp
-TwoTone._30fps
-TwoTone._30fpsSelect
-TwoTone._3dRotation
-TwoTone._3gMobiledata
-TwoTone._3k
-TwoTone._3kPlus
-TwoTone._3mp
-TwoTone._3p
-TwoTone._4gMobiledata
-TwoTone._4gPlusMobiledata
-TwoTone._4k
-TwoTone._4kPlus
-TwoTone._4mp
-TwoTone._5g
-TwoTone._5k
-TwoTone._5kPlus
-TwoTone._5mp
-TwoTone._60fps
-TwoTone._60fpsSelect
-TwoTone._6FtApart
-TwoTone._6k
-TwoTone._6kPlus
-TwoTone._6mp
-TwoTone._7k
-TwoTone._7kPlus
-TwoTone._7mp
-TwoTone._8k
-TwoTone._8kPlus
-TwoTone._8mp
-TwoTone._9k
-TwoTone._9kPlus
-TwoTone._9mp
\ No newline at end of file
diff --git a/compose/material/material/icons/generator/build.gradle b/compose/material/material/icons/generator/build.gradle
deleted file mode 100644
index c7aa06a..0000000
--- a/compose/material/material/icons/generator/build.gradle
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/**
- * This file was created using the `create_project.py` script located in the
- * `<AndroidX root>/development/project-creator` directory.
- *
- * Please use that script when creating a new project, rather than copying an existing project and
- * modifying its settings.
- */
-import androidx.build.LibraryType
-import androidx.build.Publish
-import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
-
-plugins {
-    id("AndroidXPlugin")
-    id("kotlin")
-}
-
-dependencies {
-    implementation(gradleApi())
-
-    implementation(libs.androidGradlePluginz)
-    implementation(libs.guava)
-    implementation(libs.kotlinGradlePluginz)
-    implementation(libs.kotlinStdlib)
-    implementation(libs.kotlinPoet)
-    implementation(libs.xmlpull)
-    implementation(libs.xpp3)
-
-    testImplementation(libs.junit)
-    testImplementation(libs.truth)
-}
-
-androidx {
-    name = "Material Icon Generator"
-    type = LibraryType.OTHER_CODE_PROCESSOR
-    publish = Publish.NONE
-    inceptionYear = "2020"
-    description = "Generator module that parses XML drawables to generate programmatic " +
-            "representations of Material Icons."
-}
diff --git a/compose/material/material/icons/generator/download_material_icons.py b/compose/material/material/icons/generator/download_material_icons.py
deleted file mode 100644
index 3e6215a..0000000
--- a/compose/material/material/icons/generator/download_material_icons.py
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/usr/bin/env python3
-
-"""
-Script to download Android vector drawables from fonts.google.com into the raw-icons directory.
-Usage: python3 download_material_icons.py
-"""
-
-import urllib.request
-import json
-import pathlib
-import os
-import os.path
-
-# Mapping from font themes to our preferred theme names
-THEME_MAPPING = {
-    'materialicons' : 'filled',
-    'materialiconsoutlined' : 'outlined',
-    'materialiconsround' : 'rounded',
-    'materialiconstwotone' : 'twotone',
-    'materialiconssharp' : 'sharp'
-}
-
-METADATA_URL = 'http://fonts.google.com/metadata/icons'
-
-ICONS_DIR = 'raw-icons'
-
-def get_metadata():
-    """Returns the metadata file that contains all the available icons"""
-    with urllib.request.urlopen(METADATA_URL) as response:
-        # The first line contains )]}' used for protection against XSS attacks
-        sanitized_response = b'\n'.join(response.readlines()[1:])
-        return json.loads(sanitized_response)
-
-def download_icon(name, url, theme):
-    """Downloads and saves this url to the correct icon file for the given theme"""
-    with urllib.request.urlopen(url) as response:
-        icon = response.read()
-        # E.g raw-icons/filled/menu.xml
-        filepath = ICONS_DIR + '/' + theme + '/' + name + '.xml'
-        print("Writing to: ", filepath)
-        # Ensure all parent directories exist
-        pathlib.Path(filepath).parent.mkdir(parents=True, exist_ok=True)
-        with open(filepath, 'wb') as output:
-            output.write(icon)
-
-def get_icon_info(family_name, icons, host, asset_url_pattern):
-    """Returns a list containing tuples of icon names and their URLs"""
-    icon_info = []
-    for icon in icons:
-        if family_name not in icon['unsupported_families']:
-            name = icon['name']
-            url_params = {
-                'family' : family_name,
-                'icon' : name,
-                'version' : icon['version'],
-                'asset' : '24px.xml'
-            }
-            info = (name, 'http://' + host + asset_url_pattern.format(**url_params))
-            icon_info.append(info)
-    return icon_info
-
-def main():
-    """Do the thing"""
-    metadata = get_metadata()
-    asset_url_pattern = metadata['asset_url_pattern']
-    host = metadata['host']
-    icons = metadata['icons']
-    for family in metadata['families']:
-        family_name = family.lower().replace(" ", "")
-        icon_info = get_icon_info(family_name, icons, host, asset_url_pattern)
-        theme = THEME_MAPPING[family_name]
-        for info in icon_info:
-            name = info[0]
-            url = info[1]
-            download_icon(name, url, theme)
-
-if __name__ == '__main__':
-    # Change into script directory
-    os.chdir(os.path.dirname(os.path.abspath(__file__)))
-    main()
diff --git a/compose/material/material/icons/generator/raw-icons/LICENSE.txt b/compose/material/material/icons/generator/raw-icons/LICENSE.txt
deleted file mode 100644
index e454a52..0000000
--- a/compose/material/material/icons/generator/raw-icons/LICENSE.txt
+++ /dev/null
@@ -1,178 +0,0 @@
-
-                                 Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.
-
-   END OF TERMS AND CONDITIONS
-
diff --git a/compose/material/material/icons/generator/raw-icons/filled/10k.xml b/compose/material/material/icons/generator/raw-icons/filled/10k.xml
deleted file mode 100644
index 2d2f979..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/10k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10.5h1.5v3L10,13.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM7.5,15L6,15v-4.5L4.5,10.5L4.5,9h3v6zM13,14c0,0.55 -0.45,1 -1,1L9.5,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1L12,9c0.55,0 1,0.45 1,1v4zM19.5,15h-1.75L16,12.75L16,15h-1.5L14.5,9L16,9v2.25L17.75,9h1.75l-2.25,3 2.25,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/10mp.xml b/compose/material/material/icons/generator/raw-icons/filled/10mp.xml
deleted file mode 100644
index a3ff7f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/10mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7L15,7v3h-1.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM16.5,10.5c0,0.55 -0.45,1 -1,1L13,11.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/11mp.xml b/compose/material/material/icons/generator/raw-icons/filled/11mp.xml
deleted file mode 100644
index 8b6a00c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/11mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM11,5.5v6L9.5,11.5L9.5,7L8,7L8,5.5h3zM16,5.5v6h-1.5L14.5,7L13,7L13,5.5h3zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/123.xml b/compose/material/material/icons/generator/raw-icons/filled/123.xml
deleted file mode 100644
index e64bdfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/123.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15H5.5v-4.5H4V9h3V15zM13.5,13.5h-3v-1h2c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H9v1.5h3v1h-2c-0.55,0 -1,0.45 -1,1V15h4.5V13.5zM19.5,14v-4c0,-0.55 -0.45,-1 -1,-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15 19.5,14.55 19.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/12mp.xml b/compose/material/material/icons/generator/raw-icons/filled/12mp.xml
deleted file mode 100644
index 128d1de..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/12mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM15.5,9h-2v1h3v1.5L12,11.5L12,9c0,-0.55 0.45,-1 1,-1h2L15,7h-3L12,5.5h3.5c0.55,0 1,0.45 1,1L16.5,8c0,0.55 -0.45,1 -1,1zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/13mp.xml b/compose/material/material/icons/generator/raw-icons/filled/13mp.xml
deleted file mode 100644
index b528ad8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/13mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM16.5,10.5c0,0.55 -0.45,1 -1,1L12,11.5L12,10h3L15,9h-2L13,8h2L15,7h-3L12,5.5h3.5c0.55,0 1,0.45 1,1v4zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/14mp.xml b/compose/material/material/icons/generator/raw-icons/filled/14mp.xml
deleted file mode 100644
index 6c1827e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/14mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM17.5,10h-1v1.5L15,11.5L15,10h-3L12,5.5h1.5v3L15,8.5v-3h1.5v3h1L17.5,10zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/15mp.xml b/compose/material/material/icons/generator/raw-icons/filled/15mp.xml
deleted file mode 100644
index 25f755a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/15mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM16.5,7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1L12,11.5L12,10h3L15,9h-3L12,5.5h4.5L16.5,7zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/16mp.xml b/compose/material/material/icons/generator/raw-icons/filled/16mp.xml
deleted file mode 100644
index 816657e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/16mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9L15,9v1.5h-1.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM13,11.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3.5L16.5,7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1L13,11.5zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/17mp.xml b/compose/material/material/icons/generator/raw-icons/filled/17mp.xml
deleted file mode 100644
index da4fe5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/17mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM15,11.5h-1.75L14.62,7L12,7L12,5.5h3.5c0.67,0 1.15,0.65 0.96,1.29L15,11.5zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/18_up_rating.xml b/compose/material/material/icons/generator/raw-icons/filled/18_up_rating.xml
deleted file mode 100644
index 9157dca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/18_up_rating.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,15H8.5v-4.5H7V9h3V15zM16,14c0,0.55 -0.45,1 -1,1h-2.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H15c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/18mp.xml b/compose/material/material/icons/generator/raw-icons/filled/18mp.xml
deleted file mode 100644
index 1eb22b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/18mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,5.5v6L8.5,11.5L8.5,7L7,7L7,5.5h3zM16.5,10.5c0,0.55 -0.45,1 -1,1L13,11.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4zM13.5,10.5L15,10.5L15,9h-1.5v1.5zM13.5,8L15,8L15,6.5h-1.5L13.5,8zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/19mp.xml b/compose/material/material/icons/generator/raw-icons/filled/19mp.xml
deleted file mode 100644
index b844769..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/19mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,10h3L15,9h-2c-0.55,0 -1,-0.45 -1,-1L12,6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1L12,11.5L12,10zM13.5,8L15,8L15,6.5h-1.5L13.5,8zM7,5.5h3v6L8.5,11.5L8.5,7L7,7L7,5.5zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/1k.xml b/compose/material/material/icons/generator/raw-icons/filled/1k.xml
deleted file mode 100644
index 62a8605..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/1k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM10.5,15L9,15v-4.5L7.5,10.5L7.5,9h3v6zM17.5,15h-1.75L14,12.75L14,15h-1.5L12.5,9L14,9v2.25L15.75,9h1.75l-2.25,3 2.25,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/1k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/1k_plus.xml
deleted file mode 100644
index cc46ef7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/1k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,15L7.5,15v-4.5L6,10.5L6,9h3v6zM13.75,15L12,12.75L12,15h-1.5L10.5,9L12,9v2.25L13.75,9h1.75l-2.25,3 2.25,3h-1.75zM19.5,12.5L18,12.5L18,14h-1v-1.5h-1.5v-1L17,11.5L17,10h1v1.5h1.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/1x_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/1x_mobiledata.xml
deleted file mode 100644
index 2b10b9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/1x_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h4v10H6V9H4V7zM15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2,-3.34l2,3.34H19L15.83,11.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/20mp.xml b/compose/material/material/icons/generator/raw-icons/filled/20mp.xml
deleted file mode 100644
index 1ac951e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/20mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7L16,7v3h-1.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM17.5,10.5c0,0.55 -0.45,1 -1,1L14,11.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4zM10,9L8,9v1h3v1.5L6.5,11.5L6.5,9c0,-0.55 0.45,-1 1,-1h2L9.5,7h-3L6.5,5.5L10,5.5c0.55,0 1,0.45 1,1L11,8c0,0.55 -0.45,1 -1,1zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/21mp.xml b/compose/material/material/icons/generator/raw-icons/filled/21mp.xml
deleted file mode 100644
index ede00d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/21mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM11,9L9,9v1h3v1.5L7.5,11.5L7.5,9c0,-0.55 0.45,-1 1,-1h2L10.5,7h-3L7.5,5.5L11,5.5c0.55,0 1,0.45 1,1L12,8c0,0.55 -0.45,1 -1,1zM14,5.5h3v6h-1.5L15.5,7L14,7L14,5.5zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/22mp.xml b/compose/material/material/icons/generator/raw-icons/filled/22mp.xml
deleted file mode 100644
index c7722fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/22mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,9L8,9v1h3v1.5L6.5,11.5L6.5,9c0,-0.55 0.45,-1 1,-1h2L9.5,7h-3L6.5,5.5L10,5.5c0.55,0 1,0.45 1,1L11,8c0,0.55 -0.45,1 -1,1zM16.5,9h-2v1h3v1.5L13,11.5L13,9c0,-0.55 0.45,-1 1,-1h2L16,7h-3L13,5.5h3.5c0.55,0 1,0.45 1,1L17.5,8c0,0.55 -0.45,1 -1,1zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/23mp.xml b/compose/material/material/icons/generator/raw-icons/filled/23mp.xml
deleted file mode 100644
index 881d29e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/23mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,9L8,9v1h3v1.5L6.5,11.5L6.5,9c0,-0.55 0.45,-1 1,-1h2L9.5,7h-3L6.5,5.5L10,5.5c0.55,0 1,0.45 1,1L11,8c0,0.55 -0.45,1 -1,1zM17.5,10.5c0,0.55 -0.45,1 -1,1L13,11.5L13,10h3L16,9h-2L14,8h2L16,7h-3L13,5.5h3.5c0.55,0 1,0.45 1,1v4zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/24mp.xml b/compose/material/material/icons/generator/raw-icons/filled/24mp.xml
deleted file mode 100644
index 79b07e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/24mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM10,9L8,9v1h3v1.5L6.5,11.5L6.5,9c0,-0.55 0.45,-1 1,-1h2L9.5,7h-3L6.5,5.5L10,5.5c0.55,0 1,0.45 1,1L11,8c0,0.55 -0.45,1 -1,1zM18.5,10h-1v1.5L16,11.5L16,10h-3L13,5.5h1.5v3L16,8.5v-3h1.5v3h1L18.5,10zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/2k.xml b/compose/material/material/icons/generator/raw-icons/filled/2k.xml
deleted file mode 100644
index bb0221f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/2k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM10,12.5L8,12.5v1h3L11,15L6.5,15v-2.5c0,-0.55 0.45,-1 1,-1h2v-1h-3L6.5,9L10,9c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/2k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/2k_plus.xml
deleted file mode 100644
index e14853c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/2k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9.5,11.5c0,0.55 -0.45,1 -1,1h-2v1h3L9.5,15L5,15v-2.5c0,-0.55 0.45,-1 1,-1h2v-1L5,10.5L5,9h3.5c0.55,0 1,0.45 1,1v1.5zM14.25,15l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15h-1.75zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/2mp.xml b/compose/material/material/icons/generator/raw-icons/filled/2mp.xml
deleted file mode 100644
index 73bae3c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/2mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM13.5,9h-2v1h3v1.5L10,11.5L10,9c0,-0.55 0.45,-1 1,-1h2L13,7h-3L10,5.5h3.5c0.55,0 1,0.45 1,1L14.5,8c0,0.55 -0.45,1 -1,1zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/30fps.xml b/compose/material/material/icons/generator/raw-icons/filled/30fps.xml
deleted file mode 100644
index b8e01c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/30fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H2zM19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/30fps_select.xml b/compose/material/material/icons/generator/raw-icons/filled/30fps_select.xml
deleted file mode 100644
index eb660f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/30fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0 2,-0.9 2,-2v-1.5C11,9.67 10.83,9 10,9c0.83,0 1,-0.67 1,-1.5V6c0,-1.1 -0.9,-2 -2,-2H4zM18,4c1.1,0 2,0.9 2,2v6c0,1.1 -0.9,2 -2,2h-3c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2H18zM18,6h-3v6h3V6zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/360.xml b/compose/material/material/icons/generator/raw-icons/filled/360.xml
deleted file mode 100644
index 8be05d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/360.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7C6.48,7 2,9.24 2,12c0,2.24 2.94,4.13 7,4.77V20l4,-4 -4,-4v2.73c-3.15,-0.56 -5,-1.9 -5,-2.73 0,-1.06 3.04,-3 8,-3s8,1.94 8,3c0,0.73 -1.46,1.89 -4,2.53v2.05c3.53,-0.77 6,-2.53 6,-4.58 0,-2.76 -4.48,-5 -10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/3d_rotation.xml b/compose/material/material/icons/generator/raw-icons/filled/3d_rotation.xml
deleted file mode 100644
index 1cf7f19..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/3d_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.81 -1.33,1.32zM8.41,14.96c-0.19,0 -0.37,-0.03 -0.52,-0.08 -0.16,-0.06 -0.29,-0.13 -0.4,-0.24 -0.11,-0.1 -0.2,-0.22 -0.26,-0.37 -0.06,-0.14 -0.09,-0.3 -0.09,-0.47h-1.3c0,0.36 0.07,0.68 0.21,0.95 0.14,0.27 0.33,0.5 0.56,0.69 0.24,0.18 0.51,0.32 0.82,0.41 0.3,0.1 0.62,0.15 0.96,0.15 0.37,0 0.72,-0.05 1.03,-0.15 0.32,-0.1 0.6,-0.25 0.83,-0.44s0.42,-0.43 0.55,-0.72c0.13,-0.29 0.2,-0.61 0.2,-0.97 0,-0.19 -0.02,-0.38 -0.07,-0.56 -0.05,-0.18 -0.12,-0.35 -0.23,-0.51 -0.1,-0.16 -0.24,-0.3 -0.4,-0.43 -0.17,-0.13 -0.37,-0.23 -0.61,-0.31 0.2,-0.09 0.37,-0.2 0.52,-0.33 0.15,-0.13 0.27,-0.27 0.37,-0.42 0.1,-0.15 0.17,-0.3 0.22,-0.46 0.05,-0.16 0.07,-0.32 0.07,-0.48 0,-0.36 -0.06,-0.68 -0.18,-0.96 -0.12,-0.28 -0.29,-0.51 -0.51,-0.69 -0.2,-0.19 -0.47,-0.33 -0.77,-0.43C9.1,8.05 8.76,8 8.39,8c-0.36,0 -0.69,0.05 -1,0.16 -0.3,0.11 -0.57,0.26 -0.79,0.45 -0.21,0.19 -0.38,0.41 -0.51,0.67 -0.12,0.26 -0.18,0.54 -0.18,0.85h1.3c0,-0.17 0.03,-0.32 0.09,-0.45s0.14,-0.25 0.25,-0.34c0.11,-0.09 0.23,-0.17 0.38,-0.22 0.15,-0.05 0.3,-0.08 0.48,-0.08 0.4,0 0.7,0.1 0.89,0.31 0.19,0.2 0.29,0.49 0.29,0.86 0,0.18 -0.03,0.34 -0.08,0.49 -0.05,0.15 -0.14,0.27 -0.25,0.37 -0.11,0.1 -0.25,0.18 -0.41,0.24 -0.16,0.06 -0.36,0.09 -0.58,0.09L7.5,11.4v1.03h0.77c0.22,0 0.42,0.02 0.6,0.07s0.33,0.13 0.45,0.23c0.12,0.11 0.22,0.24 0.29,0.4 0.07,0.16 0.1,0.35 0.1,0.57 0,0.41 -0.12,0.72 -0.35,0.93 -0.23,0.23 -0.55,0.33 -0.95,0.33zM16.96,9.04c-0.32,-0.33 -0.7,-0.59 -1.14,-0.77 -0.43,-0.18 -0.92,-0.27 -1.46,-0.27L12,8v8h2.3c0.55,0 1.06,-0.09 1.51,-0.27 0.45,-0.18 0.84,-0.43 1.16,-0.76 0.32,-0.33 0.57,-0.73 0.74,-1.19 0.17,-0.47 0.26,-0.99 0.26,-1.57v-0.4c0,-0.58 -0.09,-1.1 -0.26,-1.57 -0.18,-0.47 -0.43,-0.87 -0.75,-1.2zM16.57,12.2c0,0.42 -0.05,0.79 -0.14,1.13 -0.1,0.33 -0.24,0.62 -0.43,0.85 -0.19,0.23 -0.43,0.41 -0.71,0.53 -0.29,0.12 -0.62,0.18 -0.99,0.18h-0.91L13.39,9.12h0.97c0.72,0 1.27,0.23 1.64,0.69 0.38,0.46 0.57,1.12 0.57,1.99v0.4zM12,0l-0.66,0.03 3.81,3.81 1.33,-1.33c3.27,1.55 5.61,4.72 5.96,8.48h1.5C23.44,4.84 18.29,0 12,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/3g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/3g_mobiledata.xml
deleted file mode 100644
index b64df94..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/3g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0 2,-0.9 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5c0.83,0 1.5,-0.67 1.5,-1.5V9c0,-1.1 -0.9,-2 -2,-2H3zM21,11v4c0,1.1 -0.9,2 -2,2h-5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h5c1.1,0 2,0.9 2,2h-7v6h5v-2h-2.5v-2H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/3k.xml b/compose/material/material/icons/generator/raw-icons/filled/3k.xml
deleted file mode 100644
index cf08409..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/3k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM11,14c0,0.55 -0.45,1 -1,1L6.5,15v-1.5h3v-1h-2v-1h2v-1h-3L6.5,9L10,9c0.55,0 1,0.45 1,1v4zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/3k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/3k_plus.xml
deleted file mode 100644
index ed37026..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/3k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9.5,14c0,0.55 -0.45,1 -1,1L5,15v-1.5h3v-1L6,12.5v-1h2v-1L5,10.5L5,9h3.5c0.55,0 1,0.45 1,1v4zM16,15h-1.75l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/3mp.xml b/compose/material/material/icons/generator/raw-icons/filled/3mp.xml
deleted file mode 100644
index 2fe134b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/3mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM14.5,10.5c0,0.55 -0.45,1 -1,1L10,11.5L10,10h3L13,9h-2L11,8h2L13,7h-3L10,5.5h3.5c0.55,0 1,0.45 1,1v4zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/3p.xml b/compose/material/material/icons/generator/raw-icons/filled/3p.xml
deleted file mode 100644
index 692021a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/3p.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4.01c-1.1,0 -2,0.9 -2,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,6 12,6zM16,14H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,11.21 11.01,11 12,11c0.99,0 1.93,0.21 2.78,0.58C15.52,11.9 16,12.62 16,13.43V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/4g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/4g_mobiledata.xml
deleted file mode 100644
index 610d682..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/4g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zM17,11v2h2v2h-5V9h7c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/4g_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/4g_plus_mobiledata.xml
deleted file mode 100644
index 5bcd827..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/4g_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11v2h2v2h-4V9h6c0,-1.1 -0.9,-2 -2,-2h-4C9.9,7 9,7.9 9,9v6c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-4H13zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11zM7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/4k.xml b/compose/material/material/icons/generator/raw-icons/filled/4k.xml
deleted file mode 100644
index 1ca8f89..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/4k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,13.5h-1L11,15L9.5,15v-1.5h-3L6.5,9L8,9v3h1.5L9.5,9L11,9v3h1v1.5zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/4k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/4k_plus.xml
deleted file mode 100644
index 9bdfdf87..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/4k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM10.5,13.5h-1L9.5,15L8,15v-1.5L5,13.5L5,9h1.5v3L8,12L8,9h1.5v3h1v1.5zM16,15h-1.75l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/4mp.xml b/compose/material/material/icons/generator/raw-icons/filled/4mp.xml
deleted file mode 100644
index 6d0e7ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/4mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15,10h-1v1.5h-1.5L12.5,10h-3L9.5,5.5L11,5.5v3h1.5v-3L14,5.5v3h1L15,10zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/5g.xml b/compose/material/material/icons/generator/raw-icons/filled/5g.xml
deleted file mode 100644
index 75c6759..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/5g.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h2v2h-5V9h7c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4h-4V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h5v2H3v2h5c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H5V9h5V7H3V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/5k.xml b/compose/material/material/icons/generator/raw-icons/filled/5k.xml
deleted file mode 100644
index 8fab981..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/5k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM11,10.5L8,10.5v1h2c0.55,0 1,0.45 1,1L11,14c0,0.55 -0.45,1 -1,1L6.5,15v-1.5h3v-1h-3L6.5,9L11,9v1.5zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/5k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/5k_plus.xml
deleted file mode 100644
index 75d87cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/5k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9.5,10.5h-3v1h2c0.55,0 1,0.45 1,1L9.5,14c0,0.55 -0.45,1 -1,1L5,15v-1.5h3v-1L5,12.5L5,9h4.5v1.5zM16,15h-1.75l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/5mp.xml b/compose/material/material/icons/generator/raw-icons/filled/5mp.xml
deleted file mode 100644
index c59fc661..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/5mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM14.5,7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1L10,11.5L10,10h3L13,9h-3L10,5.5h4.5L14.5,7zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/60fps.xml b/compose/material/material/icons/generator/raw-icons/filled/60fps.xml
deleted file mode 100644
index 244d3db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/60fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5zM10,8V5H5C3.34,5 2,6.34 2,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3v-3c0,-1.66 -1.34,-3 -3,-3H5V8H10zM8,13v3H5v-3H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/60fps_select.xml b/compose/material/material/icons/generator/raw-icons/filled/60fps_select.xml
deleted file mode 100644
index 57fdf09..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/60fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6v6h-3V6H18zM18,4h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V6C20,4.9 19.1,4 18,4zM11,6V4H6C4.9,4 4,4.9 4,6v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H6V6H11zM9,10v2H6v-2H9zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/6_ft_apart.xml b/compose/material/material/icons/generator/raw-icons/filled/6_ft_apart.xml
deleted file mode 100644
index bd75a6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/6_ft_apart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM10,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C7.93,7.21 6.99,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h8V9.43zM18,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S16.9,6 18,6zM22,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C19.93,7.21 18.99,7 18,7c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,7.9 14,8.62 14,9.43V10h8V9.43zM19,17v-2.01L5,15v2l-3,-3l3,-3v2.01L19,13v-2l3,3L19,17zM10,19v-1H7.5C7.22,18 7,18.22 7,18.5v3C7,21.78 7.22,22 7.5,22h2c0.28,0 0.5,-0.22 0.5,-0.5V20c0,-0.28 -0.22,-0.5 -0.5,-0.5H8V19H10zM9,20.5V21H8v-0.5H9zM17.5,19h-1v3h-1v-3h-1v-1h3V19zM12.5,19v0.5h1v1h-1V22h-1v-4H14v1H12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/6k.xml b/compose/material/material/icons/generator/raw-icons/filled/6k.xml
deleted file mode 100644
index 999b081..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/6k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5L9.5,14L8,14zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM11,10.5L8,10.5v1h2c0.55,0 1,0.45 1,1L11,14c0,0.55 -0.45,1 -1,1L7.5,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1L11,9v1.5zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/6k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/6k_plus.xml
deleted file mode 100644
index ecf66da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/6k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,12.5L8,12.5L8,14L6.5,14zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9.5,10.5h-3v1h2c0.55,0 1,0.45 1,1L9.5,14c0,0.55 -0.45,1 -1,1L6,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3.5v1.5zM16,15h-1.75l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/6mp.xml b/compose/material/material/icons/generator/raw-icons/filled/6mp.xml
deleted file mode 100644
index 7339159..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/6mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9L13,9v1.5h-1.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM11,11.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3.5L14.5,7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1L11,11.5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/7k.xml b/compose/material/material/icons/generator/raw-icons/filled/7k.xml
deleted file mode 100644
index 6538f1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/7k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9.5,15L7.75,15l1.38,-4.5L6.5,10.5L6.5,9L10,9c0.67,0 1.15,0.65 0.96,1.29L9.5,15zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/7k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/7k_plus.xml
deleted file mode 100644
index 008c98c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/7k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM8,15L6.25,15l1.38,-4.5L5,10.5L5,9h3.5c0.67,0 1.15,0.65 0.96,1.29L8,15zM16,15h-1.75l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/7mp.xml b/compose/material/material/icons/generator/raw-icons/filled/7mp.xml
deleted file mode 100644
index 21ec7a26..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/7mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM13,11.5h-1.75L12.62,7L10,7L10,5.5h3.5c0.67,0 1.15,0.65 0.96,1.29L13,11.5zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/8k.xml b/compose/material/material/icons/generator/raw-icons/filled/8k.xml
deleted file mode 100644
index ca50b5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/8k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5L9.5,14L8,14zM8,10h1.5v1.5L8,11.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM11,14c0,0.55 -0.45,1 -1,1L7.5,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1L10,9c0.55,0 1,0.45 1,1v4zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/8k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/8k_plus.xml
deleted file mode 100644
index aeb0392..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/8k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,12.5L8,12.5L8,14L6.5,14zM6.5,10L8,10v1.5L6.5,11.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9.5,14c0,0.55 -0.45,1 -1,1L6,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4zM16,15h-1.75l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/8mp.xml b/compose/material/material/icons/generator/raw-icons/filled/8mp.xml
deleted file mode 100644
index cbeb47a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/8mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9L13,9v1.5h-1.5zM11.5,6.5L13,6.5L13,8h-1.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM14.5,10.5c0,0.55 -0.45,1 -1,1L11,11.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/9k.xml b/compose/material/material/icons/generator/raw-icons/filled/9k.xml
deleted file mode 100644
index de70395..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/9k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10h1.5v1.5L8,11.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM11,14c0,0.55 -0.45,1 -1,1L6.5,15v-1.5h3v-1h-2c-0.55,0 -1,-0.45 -1,-1L6.5,10c0,-0.55 0.45,-1 1,-1L10,9c0.55,0 1,0.45 1,1v4zM18,15h-1.75l-1.75,-2.25L14.5,15L13,15L13,9h1.5v2.25L16.25,9L18,9l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/9k_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/9k_plus.xml
deleted file mode 100644
index 3c222ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/9k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,10L8,10v1.5L6.5,11.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9.5,14c0,0.55 -0.45,1 -1,1L5,15v-1.5h3v-1L6,12.5c-0.55,0 -1,-0.45 -1,-1L5,10c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4zM16,15h-1.75l-1.75,-2.25L12.5,15L11,15L11,9h1.5v2.25L14.25,9L16,9l-2.25,3L16,15zM20,12.5h-1.5L18.5,14h-1v-1.5L16,12.5v-1h1.5L17.5,10h1v1.5L20,11.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/9mp.xml b/compose/material/material/icons/generator/raw-icons/filled/9mp.xml
deleted file mode 100644
index e46f299..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/9mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6.5L13,6.5L13,8h-1.5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,18.5h-1.5L10.5,14h-1v3L8,17v-3L7,14v4.5L5.5,18.5v-5c0,-0.55 0.45,-1 1,-1L11,12.5c0.55,0 1,0.45 1,1v5zM15.5,18.5L14,18.5v-6h3.5c0.55,0 1,0.45 1,1L18.5,16c0,0.55 -0.45,1 -1,1h-2v1.5zM14.5,10.5c0,0.55 -0.45,1 -1,1L10,11.5L10,10h3L13,9h-2c-0.55,0 -1,-0.45 -1,-1L10,6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4zM15.5,14L17,14v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/abc.xml b/compose/material/material/icons/generator/raw-icons/filled/abc.xml
deleted file mode 100644
index 62a67b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/abc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V11zM8,10v5H6.5v-1.5h-2V15H3v-5c0,-0.55 0.45,-1 1,-1h3C7.55,9 8,9.45 8,10zM6.5,10.5h-2V12h2V10.5zM13.5,12c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1h-4V9h4c0.55,0 1,0.45 1,1v1C14.5,11.55 14.05,12 13.5,12zM11,10.5v0.75h2V10.5H11zM13,12.75h-2v0.75h2V12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ac_unit.xml b/compose/material/material/icons/generator/raw-icons/filled/ac_unit.xml
deleted file mode 100644
index 45df675..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ac_unit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11h-4.17l3.24,-3.24 -1.41,-1.42L15,11h-2V9l4.66,-4.66 -1.42,-1.41L13,6.17V2h-2v4.17L7.76,2.93 6.34,4.34 11,9v2H9L4.34,6.34 2.93,7.76 6.17,11H2v2h4.17l-3.24,3.24 1.41,1.42L9,13h2v2l-4.66,4.66 1.42,1.41L11,17.83V22h2v-4.17l3.24,3.24 1.42,-1.41L13,15v-2h2l4.66,4.66 1.41,-1.42L17.83,13H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/access_alarm.xml b/compose/material/material/icons/generator/raw-icons/filled/access_alarm.xml
deleted file mode 100644
index 5c0154b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/access_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37L12.5,8zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/access_alarms.xml b/compose/material/material/icons/generator/raw-icons/filled/access_alarms.xml
deleted file mode 100644
index bbef213..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/access_alarms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.7l-4.6,-3.9 -1.3,1.5 4.6,3.9L22,5.7zM7.9,3.4L6.6,1.9 2,5.7l1.3,1.5 4.6,-3.8zM12.5,8L11,8v6l4.7,2.9 0.8,-1.2 -4,-2.4L12.5,8zM12,4c-5,0 -9,4 -9,9s4,9 9,9 9,-4 9,-9 -4,-9 -9,-9zM12,20c-3.9,0 -7,-3.1 -7,-7s3.1,-7 7,-7 7,3.1 7,7 -3.1,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/access_time.xml b/compose/material/material/icons/generator/raw-icons/filled/access_time.xml
deleted file mode 100644
index 86533bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/access_time.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7H11v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/access_time_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/access_time_filled.xml
deleted file mode 100644
index a021dc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/access_time_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM15.29,16.71L11,12.41V7h2v4.59l3.71,3.71L15.29,16.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/accessibility.xml b/compose/material/material/icons/generator/raw-icons/filled/accessibility.xml
deleted file mode 100644
index f29b9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM21,9h-6v13h-2v-6h-2v6L9,22L9,9L3,9L3,7h18v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/accessibility_new.xml b/compose/material/material/icons/generator/raw-icons/filled/accessibility_new.xml
deleted file mode 100644
index e25d6f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/accessibility_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,6c-2.61,0.7 -5.67,1 -8.5,1s-5.89,-0.3 -8.5,-1L3,8c1.86,0.5 4,0.83 6,1v13h2v-6h2v6h2V9c2,-0.17 4.14,-0.5 6,-1l-0.5,-2zM12,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/accessible.xml b/compose/material/material/icons/generator/raw-icons/filled/accessible.xml
deleted file mode 100644
index e515083..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/accessible.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43c-0.17,-0.19 -0.38,-0.34 -0.61,-0.45 -0.01,0 -0.01,-0.01 -0.02,-0.01L13,7.28c-0.35,-0.2 -0.75,-0.3 -1.19,-0.26C10.76,7.11 10,8.04 10,9.09L10,15c0,1.1 0.9,2 2,2h5v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2h-3v-3.45c1.29,1.07 3.25,1.94 5,1.95zM12.83,18c-0.41,1.16 -1.52,2 -2.83,2 -1.66,0 -3,-1.34 -3,-3 0,-1.31 0.84,-2.41 2,-2.83L9,12.1c-2.28,0.46 -4,2.48 -4,4.9 0,2.76 2.24,5 5,5 2.42,0 4.44,-1.72 4.9,-4h-2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/accessible_forward.xml b/compose/material/material/icons/generator/raw-icons/filled/accessible_forward.xml
deleted file mode 100644
index 86e3050..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/accessible_forward.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4.54m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17h-2c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3 1.35,-3 3,-3v-2c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5zM17,13.5h-1.86l1.67,-3.67C17.42,8.5 16.44,7 14.96,7h-5.2c-0.81,0 -1.54,0.47 -1.87,1.2L7.22,10l1.92,0.53L9.79,9L12,9l-1.83,4.1c-0.6,1.33 0.39,2.9 1.85,2.9L17,16v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/account_balance.xml b/compose/material/material/icons/generator/raw-icons/filled/account_balance.xml
deleted file mode 100644
index 97869be..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/account_balance.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10h3v7h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,10h3v7h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h20v3h-20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h3v7h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1l-10,5l0,2l20,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/account_balance_wallet.xml b/compose/material/material/icons/generator/raw-icons/filled/account_balance_wallet.xml
deleted file mode 100644
index d90de7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/account_balance_wallet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18v1c0,1.1 -0.9,2 -2,2L5,21c-1.11,0 -2,-0.9 -2,-2L3,5c0,-1.1 0.89,-2 2,-2h14c1.1,0 2,0.9 2,2v1h-9c-1.11,0 -2,0.9 -2,2v8c0,1.1 0.89,2 2,2h9zM12,16h10L22,8L12,8v8zM16,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/account_box.xml b/compose/material/material/icons/generator/raw-icons/filled/account_box.xml
deleted file mode 100644
index 32f6b3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/account_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,6c1.93,0 3.5,1.57 3.5,3.5c0,1.93 -1.57,3.5 -3.5,3.5s-3.5,-1.57 -3.5,-3.5C8.5,7.57 10.07,6 12,6zM19,19H5v-0.23c0,-0.62 0.28,-1.2 0.76,-1.58C7.47,15.82 9.64,15 12,15s4.53,0.82 6.24,2.19c0.48,0.38 0.76,0.97 0.76,1.58V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/account_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/account_circle.xml
deleted file mode 100644
index 6476320..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/account_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,6c1.93,0 3.5,1.57 3.5,3.5S13.93,13 12,13s-3.5,-1.57 -3.5,-3.5S10.07,6 12,6zM12,20c-2.03,0 -4.43,-0.82 -6.14,-2.88C7.55,15.8 9.68,15 12,15s4.45,0.8 6.14,2.12C16.43,19.18 14.03,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/account_tree.xml b/compose/material/material/icons/generator/raw-icons/filled/account_tree.xml
deleted file mode 100644
index 0827ee2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/account_tree.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ad_units.xml b/compose/material/material/icons/generator/raw-icons/filled/ad_units.xml
deleted file mode 100644
index 3e27a89..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ad_units.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14zM8,6h8v2L8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/adb.xml b/compose/material/material/icons/generator/raw-icons/filled/adb.xml
deleted file mode 100644
index c96346e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/adb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16c0,3.87 3.13,7 7,7s7,-3.13 7,-7v-4L5,12v4zM16.12,4.37l2.1,-2.1 -0.82,-0.83 -2.3,2.31C14.16,3.28 13.12,3 12,3s-2.16,0.28 -3.09,0.75L6.6,1.44l-0.82,0.83 2.1,2.1C6.14,5.64 5,7.68 5,10v1h14v-1c0,-2.32 -1.14,-4.36 -2.88,-5.63zM9,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add.xml b/compose/material/material/icons/generator/raw-icons/filled/add.xml
deleted file mode 100644
index eb23254..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_a_photo.xml b/compose/material/material/icons/generator/raw-icons/filled/add_a_photo.xml
deleted file mode 100644
index b4f90ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_a_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4V1h2v3h3v2H5v3H3V6H0V4H3zM6,10V7h3V4h7l1.83,2H21c1.1,0 2,0.9 2,2v12c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V10H6zM13,19c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5s-5,2.24 -5,5S10.24,19 13,19zM9.8,14c0,1.77 1.43,3.2 3.2,3.2s3.2,-1.43 3.2,-3.2s-1.43,-3.2 -3.2,-3.2S9.8,12.23 9.8,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_alarm.xml b/compose/material/material/icons/generator/raw-icons/filled/add_alarm.xml
deleted file mode 100644
index 9c88f054..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/add_alert.xml
deleted file mode 100644
index 166065a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.01,21.01c0,1.1 0.89,1.99 1.99,1.99s1.99,-0.89 1.99,-1.99h-3.98zM18.88,16.82L18.88,11c0,-3.25 -2.25,-5.97 -5.29,-6.69v-0.72C13.59,2.71 12.88,2 12,2s-1.59,0.71 -1.59,1.59v0.72C7.37,5.03 5.12,7.75 5.12,11v5.82L3,18.94L3,20h18v-1.06l-2.12,-2.12zM16,13.01h-3v3h-2v-3L8,13.01L8,11h3L11,8h2v3h3v2.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_box.xml b/compose/material/material/icons/generator/raw-icons/filled/add_box.xml
deleted file mode 100644
index 5daa0c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_business.xml b/compose/material/material/icons/generator/raw-icons/filled/add_business.xml
deleted file mode 100644
index 4cd9e2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_business.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h2v-3h1v-2l-1,-5H2l-1,5v2h1v6h9v-6h4V17zM9,18H4v-4h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4h15v2h-15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_card.xml b/compose/material/material/icons/generator/raw-icons/filled/add_card.xml
deleted file mode 100644
index af84bfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h10v-2H4v-6h18V6C22,4.89 21.11,4 20,4zM20,8H4V6h16V8zM24,17v2h-3v3h-2v-3h-3v-2h3v-3h2v3H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/add_chart.xml
deleted file mode 100644
index a7aca25..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9.99h2v7L6,16.99zM14,12.99h2v4h-2zM10,6.99h2v10h-2zM20,7L20,4h-2v3h-3v2h3v3h2L20,9h3L23,7zM18,19L4,19L4,5h12L16,3L4,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5h-2v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/add_circle.xml
deleted file mode 100644
index 2bb63e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/add_circle_outline.xml
deleted file mode 100644
index a1c721d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_comment.xml b/compose/material/material/icons/generator/raw-icons/filled/add_comment.xml
deleted file mode 100644
index 8665bef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18zM17,11h-4v4h-2v-4H7V9h4V5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_home.xml b/compose/material/material/icons/generator/raw-icons/filled/add_home.xml
deleted file mode 100644
index 8286982..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_home.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.7,0 1.37,0.1 2,0.29V9l-8,-6L4,9v12h7.68C11.25,20.09 11,19.08 11,18C11,14.13 14.13,11 18,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_home_work.xml b/compose/material/material/icons/generator/raw-icons/filled/add_home_work.xml
deleted file mode 100644
index bcc11f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_home_work.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.68V11L8,6l-7,5v10h5v-6h4v6h1.68C11.25,20.09 11,19.08 11,18C11,15.21 12.64,12.81 15,11.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,13.11V3H10v1.97l7,5v1.11c0.33,-0.05 0.66,-0.08 1,-0.08C19.96,11 21.73,11.81 23,13.11zM17,7h2v2h-2V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5s2.24,5 5,5S23,20.76 23,18zM17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_ic_call.xml b/compose/material/material/icons/generator/raw-icons/filled/add_ic_call.xml
deleted file mode 100644
index 89bd811..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_ic_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM21,6h-3V3h-2v3h-3v2h3v3h2V8h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_link.xml b/compose/material/material/icons/generator/raw-icons/filled/add_link.xml
deleted file mode 100644
index 819ade4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h8v2L8,13zM20.1,12L22,12c0,-2.76 -2.24,-5 -5,-5h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1zM3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9L7,15.1c-1.71,0 -3.1,-1.39 -3.1,-3.1zM19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_location.xml b/compose/material/material/icons/generator/raw-icons/filled/add_location.xml
deleted file mode 100644
index b310591..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.14,2 5,5.14 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.86 -3.14,-7 -7,-7zM16,10h-3v3h-2v-3L8,10L8,8h3L11,5h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_location_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/add_location_alt.xml
deleted file mode 100644
index d47a005..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_location_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1v3h3v2h-3v3h-2L18,6h-3L15,4h3L18,1h2zM12,13c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM14,3.25L14,7h3v3h2.92c0.05,0.39 0.08,0.79 0.08,1.2 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,6.22 7.8,3 12,3c0.68,0 1.35,0.08 2,0.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_moderator.xml b/compose/material/material/icons/generator/raw-icons/filled/add_moderator.xml
deleted file mode 100644
index d8e2bff..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_moderator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.22,22.61c-0.4,0.15 -0.8,0.29 -1.22,0.39 -5.16,-1.26 -9,-6.45 -9,-12V5l9,-4 9,4v6c0,0.9 -0.11,1.78 -0.3,2.65 -0.81,-0.41 -1.73,-0.65 -2.7,-0.65 -3.31,0 -6,2.69 -6,6 0,1.36 0.46,2.61 1.22,3.61zM19,20v2.99s-1.99,0.01 -2,0V20h-3v-2h3v-3h2v3h3v2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_photo_alternate.xml b/compose/material/material/icons/generator/raw-icons/filled/add_photo_alternate.xml
deleted file mode 100644
index 5044c52..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_photo_alternate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7v2.99s-1.99,0.01 -2,0L17,7h-3s0.01,-1.99 0,-2h3L17,2h2v3h3v2h-3zM16,11L16,8h-3L13,5L5,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-8h-3zM5,19l3,-4 2,3 3,-4 4,5L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_reaction.xml b/compose/material/material/icons/generator/raw-icons/filled/add_reaction.xml
deleted file mode 100644
index 6d40b26..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_reaction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9V7h-2V2.84C14.77,2.3 13.42,2 11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12c0,-1.05 -0.17,-2.05 -0.47,-3H18zM15.5,8C16.33,8 17,8.67 17,9.5S16.33,11 15.5,11S14,10.33 14,9.5S14.67,8 15.5,8zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM12,17.5c-2.33,0 -4.31,-1.46 -5.11,-3.5h10.22C16.31,16.04 14.33,17.5 12,17.5zM22,3h2v2h-2v2h-2V5h-2V3h2V1h2V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_road.xml b/compose/material/material/icons/generator/raw-icons/filled/add_road.xml
deleted file mode 100644
index 0b8771e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/filled/add_shopping_cart.xml
deleted file mode 100644
index 2f8406c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2L13,6h3L16,4h-3L13,1h-2v3L8,4v2h3v3zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM7.17,14.75l0.03,-0.12 0.9,-1.63h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.86,-7.01L19.42,4h-0.01l-1.1,2 -2.76,5L8.53,11l-0.13,-0.27L6.16,6l-0.95,-2 -0.94,-2L1,2v2h2l3.6,7.59 -1.35,2.45c-0.16,0.28 -0.25,0.61 -0.25,0.96 0,1.1 0.9,2 2,2h12v-2L7.42,15c-0.13,0 -0.25,-0.11 -0.25,-0.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_task.xml b/compose/material/material/icons/generator/raw-icons/filled/add_task.xml
deleted file mode 100644
index 295ddfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8c1.57,0 3.04,0.46 4.28,1.25l1.45,-1.45C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c1.73,0 3.36,-0.44 4.78,-1.22l-1.5,-1.5C14.28,19.74 13.17,20 12,20zM19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_to_drive.xml b/compose/material/material/icons/generator/raw-icons/filled/add_to_drive.xml
deleted file mode 100644
index 04de29b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_to_drive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21v-3h3v-2h-3v-3h-2v3h-3v2h3v3H20zM15.03,21.5H5.66c-0.72,0 -1.38,-0.38 -1.73,-1L1.57,16.4c-0.36,-0.62 -0.35,-1.38 0.01,-2L7.92,3.49C8.28,2.88 8.94,2.5 9.65,2.5h4.7c0.71,0 1.37,0.38 1.73,0.99l4.48,7.71C20.06,11.07 19.54,11 19,11c-0.28,0 -0.56,0.02 -0.84,0.06L14.35,4.5h-4.7L3.31,15.41l2.35,4.09h7.89C13.9,20.27 14.4,20.95 15.03,21.5zM13.34,15C13.12,15.63 13,16.3 13,17H7.25l-0.73,-1.27l4.58,-7.98h1.8l2.53,4.42c-0.56,0.42 -1.05,0.93 -1.44,1.51l-2,-3.49L9.25,15H13.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_to_home_screen.xml b/compose/material/material/icons/generator/raw-icons/filled/add_to_home_screen.xml
deleted file mode 100644
index ca546a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_to_home_screen.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L8,1c-1.1,0 -2,0.9 -2,2v3h2V5h10v14H8v-1H6v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM10,15h2V8H5v2h3.59L3,15.59 4.41,17 10,11.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_to_photos.xml b/compose/material/material/icons/generator/raw-icons/filled/add_to_photos.xml
deleted file mode 100644
index bbc546c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_to_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM19,11h-4v4h-2v-4L9,11L9,9h4L13,5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/add_to_queue.xml b/compose/material/material/icons/generator/raw-icons/filled/add_to_queue.xml
deleted file mode 100644
index 0cd5f4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/add_to_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM16,10v2h-3v3h-2v-3L8,12v-2h3L11,7h2v3h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/addchart.xml b/compose/material/material/icons/generator/raw-icons/filled/addchart.xml
deleted file mode 100644
index cec01dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/addchart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5v2h-3v3h-2L17,7h-3L14,5h3L17,2h2v3h3zM19,19L5,19L5,5h6L11,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6h-2v6zM15,13v4h2v-4h-2zM11,17h2L13,9h-2v8zM9,17v-6L7,11v6h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/adf_scanner.xml b/compose/material/material/icons/generator/raw-icons/filled/adf_scanner.xml
deleted file mode 100644
index 5f0eea0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/adf_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-1V4H6v8H5c-1.66,0 -3,1.34 -3,3v5h20v-5C22,13.34 20.66,12 19,12zM16,12H8V6h8V12zM18,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,16.55 18.55,17 18,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/adjust.xml b/compose/material/material/icons/generator/raw-icons/filled/adjust.xml
deleted file mode 100644
index 85c2377..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/adjust.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3 1.34,-3 3,-3 3,1.34 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/admin_panel_settings.xml b/compose/material/material/icons/generator/raw-icons/filled/admin_panel_settings.xml
deleted file mode 100644
index a3ecd48c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/admin_panel_settings.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11c0.34,0 0.67,0.04 1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54 3.2,8.79 7.5,9.82c0.55,-0.13 1.08,-0.32 1.6,-0.55C11.41,19.47 11,18.28 11,17C11,13.69 13.69,11 17,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C21,14.79 19.21,13 17,13zM17,14.38c0.62,0 1.12,0.51 1.12,1.12s-0.51,1.12 -1.12,1.12s-1.12,-0.51 -1.12,-1.12S16.38,14.38 17,14.38zM17,19.75c-0.93,0 -1.74,-0.46 -2.24,-1.17c0.05,-0.72 1.51,-1.08 2.24,-1.08s2.19,0.36 2.24,1.08C18.74,19.29 17.93,19.75 17,19.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ads_click.xml b/compose/material/material/icons/generator/raw-icons/filled/ads_click.xml
deleted file mode 100644
index 79f2284..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ads_click.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.71,17.99C8.53,17.84 6,15.22 6,12c0,-3.31 2.69,-6 6,-6c3.22,0 5.84,2.53 5.99,5.71l-2.1,-0.63C15.48,9.31 13.89,8 12,8c-2.21,0 -4,1.79 -4,4c0,1.89 1.31,3.48 3.08,3.89L11.71,17.99zM22,12c0,0.3 -0.01,0.6 -0.04,0.9l-1.97,-0.59C20,12.21 20,12.1 20,12c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8s3.58,8 8,8c0.1,0 0.21,0 0.31,-0.01l0.59,1.97C12.6,21.99 12.3,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2S22,6.48 22,12zM18.23,16.26L22,15l-10,-3l3,10l1.26,-3.77l4.27,4.27l1.98,-1.98L18.23,16.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/agriculture.xml b/compose/material/material/icons/generator/raw-icons/filled/agriculture.xml
deleted file mode 100644
index d95c86c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/agriculture.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,12c0.93,0 1.78,0.28 2.5,0.76V8c0,-1.1 -0.9,-2 -2,-2h-6.29l-1.06,-1.06l1.41,-1.41l-0.71,-0.71L9.82,6.35l0.71,0.71l1.41,-1.41L13,6.71V9c0,1.1 -0.9,2 -2,2h-0.54c0.95,1.06 1.54,2.46 1.54,4c0,0.34 -0.04,0.67 -0.09,1h3.14C15.3,13.75 17.19,12 19.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S21.43,13 19.5,13zM19.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S20.33,18 19.5,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h5c0,-1.1 -0.9,-2 -2,-2H4C3.45,7 3,7.45 3,8C3,8.55 3.45,9 4,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,13.82l-0.18,-0.47L10.58,13c-0.46,-1.06 -1.28,-1.91 -2.31,-2.43l-0.4,0.89l-0.46,-0.21l0.4,-0.9C7.26,10.13 6.64,10 6,10c-0.53,0 -1.04,0.11 -1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46 -1.91,1.28 -2.43,2.31l0.89,0.4l-0.21,0.46l-0.9,-0.4C1.13,13.74 1,14.36 1,15c0,0.53 0.11,1.04 0.26,1.52l0.91,-0.34l0.18,0.47L1.42,17c0.46,1.06 1.28,1.91 2.31,2.43l0.4,-0.89l0.46,0.21l-0.4,0.9C4.74,19.87 5.36,20 6,20c0.53,0 1.04,-0.11 1.52,-0.26l-0.34,-0.91l0.47,-0.18L8,19.58c1.06,-0.46 1.91,-1.28 2.43,-2.31l-0.89,-0.4l0.21,-0.46l0.9,0.4C10.87,16.26 11,15.64 11,15c0,-0.53 -0.11,-1.04 -0.26,-1.52L9.83,13.82zM7.15,17.77c-1.53,0.63 -3.29,-0.09 -3.92,-1.62c-0.63,-1.53 0.09,-3.29 1.62,-3.92c1.53,-0.63 3.29,0.09 3.92,1.62C9.41,15.38 8.68,17.14 7.15,17.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/air.xml b/compose/material/material/icons/generator/raw-icons/filled/air.xml
deleted file mode 100644
index 4ea67a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/air.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3h2c0,0.55 0.45,1 1,1s1,-0.45 1,-1s-0.45,-1 -1,-1H2v-2h9.5C13.15,14 14.5,15.35 14.5,17zM19,6.5C19,4.57 17.43,3 15.5,3S12,4.57 12,6.5h2C14,5.67 14.67,5 15.5,5S17,5.67 17,6.5S16.33,8 15.5,8H2v2h13.5C17.43,10 19,8.43 19,6.5zM18.5,11H2v2h16.5c0.83,0 1.5,0.67 1.5,1.5S19.33,16 18.5,16v2c1.93,0 3.5,-1.57 3.5,-3.5S20.43,11 18.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_flat.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_flat.xml
deleted file mode 100644
index 879b5b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_flat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11v2L9,13L9,7h9c2.21,0 4,1.79 4,4zM2,14v2h6v2h8v-2h6v-2L2,14zM7.14,12.1c1.16,-1.19 1.14,-3.08 -0.04,-4.24 -1.19,-1.16 -3.08,-1.14 -4.24,0.04 -1.16,1.19 -1.14,3.08 0.04,4.24 1.19,1.16 3.08,1.14 4.24,-0.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_flat_angled.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_flat_angled.xml
deleted file mode 100644
index 06c72bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_flat_angled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.25,14.29l-0.69,1.89L9.2,11.71l2.08,-5.66 8.56,3.09c2.1,0.76 3.18,3.06 2.41,5.15zM1.5,12.14L8,14.48L8,19h8v-1.63L20.52,19l0.69,-1.89 -19.02,-6.86 -0.69,1.89zM7.3,10.2c1.49,-0.72 2.12,-2.51 1.41,-4C7.99,4.71 6.2,4.08 4.7,4.8c-1.49,0.71 -2.12,2.5 -1.4,4 0.71,1.49 2.5,2.12 4,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_individual_suite.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_individual_suite.xml
deleted file mode 100644
index 398df26..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_individual_suite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.65,0 3,-1.35 3,-3S8.65,7 7,7s-3,1.35 -3,3 1.35,3 3,3zM19,7h-8v7L3,14L3,7L1,7v10h22v-6c0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_extra.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_extra.xml
deleted file mode 100644
index c73e458..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12L4,3L2,3v9c0,2.76 2.24,5 5,5h6v-2L7,15c-1.66,0 -3,-1.34 -3,-3zM22.83,17.24c-0.38,-0.72 -1.29,-0.97 -2.03,-0.63l-1.09,0.5 -3.41,-6.98c-0.34,-0.68 -1.03,-1.12 -1.79,-1.12L11,9L11,3L5,3v8c0,1.66 1.34,3 3,3h7l3.41,7 3.72,-1.7c0.77,-0.36 1.1,-1.3 0.7,-2.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_normal.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_normal.xml
deleted file mode 100644
index 268dfd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12L5,3L3,3v9c0,2.76 2.24,5 5,5h6v-2L8,15c-1.66,0 -3,-1.34 -3,-3zM20.5,18L19,18v-7c0,-1.1 -0.9,-2 -2,-2h-5L12,3L6,3v8c0,1.65 1.35,3 3,3h7v7h4.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_reduced.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_reduced.xml
deleted file mode 100644
index 2500187..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_legroom_reduced.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.97,19.2c0.18,0.96 -0.55,1.8 -1.47,1.8H14v-3l1,-4H9c-1.65,0 -3,-1.35 -3,-3V3h6v6h5c1.1,0 2,0.9 2,2l-2,7h1.44c0.73,0 1.39,0.49 1.53,1.2zM5,12V3H3v9c0,2.76 2.24,5 5,5h4v-2H8c-1.66,0 -3,-1.34 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_recline_extra.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_recline_extra.xml
deleted file mode 100644
index 7fb9075..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_recline_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.35,5.64c-0.9,-0.64 -1.12,-1.88 -0.49,-2.79 0.63,-0.9 1.88,-1.12 2.79,-0.49 0.9,0.64 1.12,1.88 0.49,2.79 -0.64,0.9 -1.88,1.12 -2.79,0.49zM16,19L8.93,19c-1.48,0 -2.74,-1.08 -2.96,-2.54L4,7L2,7l1.99,9.76C4.37,19.2 6.47,21 8.94,21L16,21v-2zM16.23,15h-4.88l-1.03,-4.1c1.58,0.89 3.28,1.54 5.15,1.22L15.47,9.99c-1.63,0.31 -3.44,-0.27 -4.69,-1.25L9.14,7.47c-0.23,-0.18 -0.49,-0.3 -0.76,-0.38 -0.32,-0.09 -0.66,-0.12 -0.99,-0.06h-0.02c-1.23,0.22 -2.05,1.39 -1.84,2.61l1.35,5.92C7.16,16.98 8.39,18 9.83,18h6.85l3.82,3 1.5,-1.5 -5.77,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_recline_normal.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_seat_recline_normal.xml
deleted file mode 100644
index 4e7a1b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_seat_recline_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.59,5.41c-0.78,-0.78 -0.78,-2.05 0,-2.83 0.78,-0.78 2.05,-0.78 2.83,0 0.78,0.78 0.78,2.05 0,2.83 -0.79,0.79 -2.05,0.79 -2.83,0zM6,16L6,7L4,7v9c0,2.76 2.24,5 5,5h6v-2L9,19c-1.66,0 -3,-1.34 -3,-3zM20,20.07L14.93,15L11.5,15v-3.68c1.4,1.15 3.6,2.16 5.5,2.16v-2.16c-1.66,0.02 -3.61,-0.87 -4.67,-2.04l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C8.01,7 7,8.01 7,9.25L7,15c0,1.66 1.34,3 3,3h5.07l3.5,3.5L20,20.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airline_stops.xml b/compose/material/material/icons/generator/raw-icons/filled/airline_stops.xml
deleted file mode 100644
index f3b3692..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airline_stops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.21,9.21C15.93,10.78 13.45,13.3 13,17h2v2H9v-2h2c-0.5,-4.5 -4.37,-8 -9,-8V7c4.39,0 8.22,2.55 10,6.3c1.13,-2.43 2.99,-4.25 4.78,-5.52L14,5h7v7L18.21,9.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airlines.xml b/compose/material/material/icons/generator/raw-icons/filled/airlines.xml
deleted file mode 100644
index e578a22..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airlines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4L2,20h17l3,-16H13zM14.5,14c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C17,12.88 15.88,14 14.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airplane_ticket.xml b/compose/material/material/icons/generator/raw-icons/filled/airplane_ticket.xml
deleted file mode 100644
index 81ee06f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airplane_ticket.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.19,4H4C2.9,4 2.01,4.9 2.01,6v4C3.11,10 4,10.9 4,12s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.19,4 20.19,4zM17.73,13.3l-8.86,2.36l-1.66,-2.88l0.93,-0.25l1.26,0.99l2.39,-0.64l-2.4,-4.16l1.4,-0.38l4.01,3.74l2.44,-0.65c0.51,-0.14 1.04,0.17 1.18,0.68C18.55,12.62 18.25,13.15 17.73,13.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airplanemode_active.xml b/compose/material/material/icons/generator/raw-icons/filled/airplanemode_active.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airplanemode_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airplanemode_inactive.xml b/compose/material/material/icons/generator/raw-icons/filled/airplanemode_inactive.xml
deleted file mode 100644
index 4bcfad61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airplanemode_inactive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,7.67V3.5C10.5,2.67 11.17,2 12,2c0.83,0 1.5,0.67 1.5,1.5V9l8.5,5v2l-4.49,-1.32L10.5,7.67zM19.78,22.61l1.41,-1.41L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-2.67L19.78,22.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airplay.xml b/compose/material/material/icons/generator/raw-icons/filled/airplay.xml
deleted file mode 100644
index bafd09a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airplay.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22l12,0l-6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v12c0,1.1 0.9,2 2,2h4v-2H3V5h18v12h-4v2h4c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/airport_shuttle.xml b/compose/material/material/icons/generator/raw-icons/filled/airport_shuttle.xml
deleted file mode 100644
index 4ff0af5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/airport_shuttle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5L3,5c-1.1,0 -2,0.89 -2,2v9h2c0,1.65 1.34,3 3,3s3,-1.35 3,-3h5.5c0,1.65 1.34,3 3,3s3,-1.35 3,-3L23,16v-5l-6,-6zM3,11L3,7h4v4L3,11zM6,17.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM13,11L9,11L9,7h4v4zM17.5,17.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM15,11L15,7h1l4,4h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/alarm.xml b/compose/material/material/icons/generator/raw-icons/filled/alarm.xml
deleted file mode 100644
index 5c0154b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37L12.5,8zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/alarm_add.xml b/compose/material/material/icons/generator/raw-icons/filled/alarm_add.xml
deleted file mode 100644
index 9c88f054..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/alarm_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/alarm_off.xml b/compose/material/material/icons/generator/raw-icons/filled/alarm_off.xml
deleted file mode 100644
index 1243501..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/alarm_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c3.87,0 7,3.13 7,7 0,0.84 -0.16,1.65 -0.43,2.4l1.52,1.52c0.58,-1.19 0.91,-2.51 0.91,-3.92 0,-4.97 -4.03,-9 -9,-9 -1.41,0 -2.73,0.33 -3.92,0.91L9.6,6.43C10.35,6.16 11.16,6 12,6zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM2.92,2.29L1.65,3.57 2.98,4.9l-1.11,0.93 1.42,1.42 1.11,-0.94 0.8,0.8C3.83,8.69 3,10.75 3,13c0,4.97 4.02,9 9,9 2.25,0 4.31,-0.83 5.89,-2.2l2.2,2.2 1.27,-1.27L3.89,3.27l-0.97,-0.98zM16.47,18.39C15.26,19.39 13.7,20 12,20c-3.87,0 -7,-3.13 -7,-7 0,-1.7 0.61,-3.26 1.61,-4.47l9.86,9.86zM8.02,3.28L6.6,1.86l-0.86,0.71 1.42,1.42 0.86,-0.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/alarm_on.xml b/compose/material/material/icons/generator/raw-icons/filled/alarm_on.xml
deleted file mode 100644
index 0295209..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/alarm_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM10.54,14.53L8.41,12.4l-1.06,1.06 3.18,3.18 6,-6 -1.06,-1.06 -4.93,4.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/album.xml b/compose/material/material/icons/generator/raw-icons/filled/album.xml
deleted file mode 100644
index 58c0ba6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,16.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,7.5 12,7.5s4.5,2.01 4.5,4.5 -2.01,4.5 -4.5,4.5zM12,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_center.xml b/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_center.xml
deleted file mode 100644
index 548deed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2l2,0l0,5l8,0l0,3l-8,0l0,4l5,0l0,3l-5,0l0,5l-2,0l0,-5l-5,0l0,-3l5,0l0,-4l-8,0l0,-3l8,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_left.xml b/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_left.xml
deleted file mode 100644
index e1e2594..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,7H6v3h16V7zM16,14H6v3h10V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_right.xml b/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_right.xml
deleted file mode 100644
index 7f71206..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/align_horizontal_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h2v20h-2V2zM2,10h16V7H2V10zM8,17h10v-3H8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/align_vertical_bottom.xml b/compose/material/material/icons/generator/raw-icons/filled/align_vertical_bottom.xml
deleted file mode 100644
index 73c47f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/align_vertical_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,22H2v-2h20V22zM10,2H7v16h3V2zM17,8h-3v10h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/align_vertical_center.xml b/compose/material/material/icons/generator/raw-icons/filled/align_vertical_center.xml
deleted file mode 100644
index ab69d62..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/align_vertical_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11l-5,0l0,-5l-3,0l0,5l-4,0l0,-8l-3,0l0,8l-5.16,0l0,2l5.16,0l0,8l3,0l0,-8l4,0l0,5l3,0l0,-5l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/align_vertical_top.xml b/compose/material/material/icons/generator/raw-icons/filled/align_vertical_top.xml
deleted file mode 100644
index 2f71879..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/align_vertical_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,22h3V6H7V22zM14,16h3V6h-3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/all_inbox.xml b/compose/material/material/icons/generator/raw-icons/filled/all_inbox.xml
deleted file mode 100644
index 42c9483..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/all_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v7c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,9h-4c0,1.62 -1.38,3 -3,3s-3,-1.38 -3,-3L5,9L5,5h14v4zM15,16h6v3c0,1.1 -0.9,2 -2,2L5,21c-1.1,0 -2,-0.9 -2,-2v-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/all_inclusive.xml b/compose/material/material/icons/generator/raw-icons/filled/all_inclusive.xml
deleted file mode 100644
index 5ed30e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/all_inclusive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.6,6.62c-1.44,0 -2.8,0.56 -3.77,1.53L12,10.66 10.48,12h0.01L7.8,14.39c-0.64,0.64 -1.49,0.99 -2.4,0.99 -1.87,0 -3.39,-1.51 -3.39,-3.38S3.53,8.62 5.4,8.62c0.91,0 1.76,0.35 2.44,1.03l1.13,1 1.51,-1.34L9.22,8.2C8.2,7.18 6.84,6.62 5.4,6.62 2.42,6.62 0,9.04 0,12s2.42,5.38 5.4,5.38c1.44,0 2.8,-0.56 3.77,-1.53l2.83,-2.5 0.01,0.01L13.52,12h-0.01l2.69,-2.39c0.64,-0.64 1.49,-0.99 2.4,-0.99 1.87,0 3.39,1.51 3.39,3.38s-1.52,3.38 -3.39,3.38c-0.9,0 -1.76,-0.35 -2.44,-1.03l-1.14,-1.01 -1.51,1.34 1.27,1.12c1.02,1.01 2.37,1.57 3.82,1.57 2.98,0 5.4,-2.41 5.4,-5.38s-2.42,-5.37 -5.4,-5.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/all_out.xml b/compose/material/material/icons/generator/raw-icons/filled/all_out.xml
deleted file mode 100644
index 0ae213c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/all_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.21,4.16l4,4v-4zM20.21,16.16l-4,4h4zM8.21,20.16l-4,-4v4zM4.21,8.16l4,-4h-4zM17.16,7.21c-2.73,-2.73 -7.17,-2.73 -9.9,0s-2.73,7.17 0,9.9 7.17,2.73 9.9,0 2.73,-7.16 0,-9.9zM16.06,16.01c-2.13,2.13 -5.57,2.13 -7.7,0s-2.13,-5.57 0,-7.7 5.57,-2.13 7.7,0 2.13,5.57 0,7.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/alt_route.xml b/compose/material/material/icons/generator/raw-icons/filled/alt_route.xml
deleted file mode 100644
index 75b0f0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/alt_route.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.16l-1.42,1.42c-0.68,-0.69 -1.34,-1.58 -1.79,-2.94l1.94,-0.49C8.83,10.04 9.28,10.65 9.78,11.16zM11,6L7,2L3,6h3.02C6.04,6.81 6.1,7.54 6.21,8.17l1.94,-0.49C8.08,7.2 8.03,6.63 8.02,6H11zM21,6l-4,-4l-4,4h2.99c-0.1,3.68 -1.28,4.75 -2.54,5.88c-0.5,0.44 -1.01,0.92 -1.45,1.55c-0.34,-0.49 -0.73,-0.88 -1.13,-1.24L9.46,13.6C10.39,14.45 11,15.14 11,17c0,0 0,0 0,0h0v5h2v-5c0,0 0,0 0,0c0,-2.02 0.71,-2.66 1.79,-3.63c1.38,-1.24 3.08,-2.78 3.2,-7.37H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/alternate_email.xml b/compose/material/material/icons/generator/raw-icons/filled/alternate_email.xml
deleted file mode 100644
index 13a64aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/alternate_email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10h5v-2h-5c-4.34,0 -8,-3.66 -8,-8s3.66,-8 8,-8 8,3.66 8,8v1.43c0,0.79 -0.71,1.57 -1.5,1.57s-1.5,-0.78 -1.5,-1.57L17,12c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5 2.24,5 5,5c1.38,0 2.64,-0.56 3.54,-1.47 0.65,0.89 1.77,1.47 2.96,1.47 1.97,0 3.5,-1.6 3.5,-3.57L22,12c0,-5.52 -4.48,-10 -10,-10zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/amp_stories.xml b/compose/material/material/icons/generator/raw-icons/filled/amp_stories.xml
deleted file mode 100644
index 0a96a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/amp_stories.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,4h10v15h-10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h2v11h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h2v11h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/analytics.xml b/compose/material/material/icons/generator/raw-icons/filled/analytics.xml
deleted file mode 100644
index 8f33e46..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/analytics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,17L7,17v-5h2v5zM13,17h-2v-3h2v3zM13,12h-2v-2h2v2zM17,17h-2L15,7h2v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/anchor.xml b/compose/material/material/icons/generator/raw-icons/filled/anchor.xml
deleted file mode 100644
index 7ad4f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/anchor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15l1.55,1.55c-0.96,1.69 -3.33,3.04 -5.55,3.37V11h3V9h-3V7.82C14.16,7.4 15,6.3 15,5c0,-1.65 -1.35,-3 -3,-3S9,3.35 9,5c0,1.3 0.84,2.4 2,2.82V9H8v2h3v8.92c-2.22,-0.33 -4.59,-1.68 -5.55,-3.37L7,15l-4,-3v3c0,3.88 4.92,7 9,7s9,-3.12 9,-7v-3L17,15zM12,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/android.xml b/compose/material/material/icons/generator/raw-icons/filled/android.xml
deleted file mode 100644
index 28c533f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.6,9.48l1.84,-3.18c0.16,-0.31 0.04,-0.69 -0.26,-0.85c-0.29,-0.15 -0.65,-0.06 -0.83,0.22l-1.88,3.24c-2.86,-1.21 -6.08,-1.21 -8.94,0L5.65,5.67c-0.19,-0.29 -0.58,-0.38 -0.87,-0.2C4.5,5.65 4.41,6.01 4.56,6.3L6.4,9.48C3.3,11.25 1.28,14.44 1,18h22C22.72,14.44 20.7,11.25 17.6,9.48zM7,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25S8.25,13.31 8.25,14C8.25,14.69 7.69,15.25 7,15.25zM17,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25C18.25,14.69 17.69,15.25 17,15.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/animation.xml b/compose/material/material/icons/generator/raw-icons/filled/animation.xml
deleted file mode 100644
index cd47805..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/animation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2c-2.71,0 -5.05,1.54 -6.22,3.78 -1.28,0.67 -2.34,1.72 -3,3C3.54,9.95 2,12.29 2,15c0,3.87 3.13,7 7,7 2.71,0 5.05,-1.54 6.22,-3.78 1.28,-0.67 2.34,-1.72 3,-3C20.46,14.05 22,11.71 22,9c0,-3.87 -3.13,-7 -7,-7zM9,20c-2.76,0 -5,-2.24 -5,-5 0,-1.12 0.37,-2.16 1,-3 0,3.87 3.13,7 7,7 -0.84,0.63 -1.88,1 -3,1zM12,17c-2.76,0 -5,-2.24 -5,-5 0,-1.12 0.37,-2.16 1,-3 0,3.86 3.13,6.99 7,7 -0.84,0.63 -1.88,1 -3,1zM16.7,13.7c-0.53,0.19 -1.1,0.3 -1.7,0.3 -2.76,0 -5,-2.24 -5,-5 0,-0.6 0.11,-1.17 0.3,-1.7 0.53,-0.19 1.1,-0.3 1.7,-0.3 2.76,0 5,2.24 5,5 0,0.6 -0.11,1.17 -0.3,1.7zM19,12c0,-3.86 -3.13,-6.99 -7,-7 0.84,-0.63 1.87,-1 3,-1 2.76,0 5,2.24 5,5 0,1.12 -0.37,2.16 -1,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/announcement.xml b/compose/material/material/icons/generator/raw-icons/filled/announcement.xml
deleted file mode 100644
index eb061b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/announcement.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM13,11h-2L11,5h2v6zM13,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/aod.xml b/compose/material/material/icons/generator/raw-icons/filled/aod.xml
deleted file mode 100644
index 9892369..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/aod.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM8,10h8v1.5H8V10zM9,13h6v1.5H9V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/apartment.xml b/compose/material/material/icons/generator/raw-icons/filled/apartment.xml
deleted file mode 100644
index d5b846b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/apartment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11V3H7v4H3v14h8v-4h2v4h8V11H17zM7,19H5v-2h2V19zM7,15H5v-2h2V15zM7,11H5V9h2V11zM11,15H9v-2h2V15zM11,11H9V9h2V11zM11,7H9V5h2V7zM15,15h-2v-2h2V15zM15,11h-2V9h2V11zM15,7h-2V5h2V7zM19,19h-2v-2h2V19zM19,15h-2v-2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/api.xml b/compose/material/material/icons/generator/raw-icons/filled/api.xml
deleted file mode 100644
index b7f8f017..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/api.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12l-2,2l-2,-2l2,-2L14,12zM12,6l2.12,2.12l2.5,-2.5L12,1L7.38,5.62l2.5,2.5L12,6zM6,12l2.12,-2.12l-2.5,-2.5L1,12l4.62,4.62l2.5,-2.5L6,12zM18,12l-2.12,2.12l2.5,2.5L23,12l-4.62,-4.62l-2.5,2.5L18,12zM12,18l-2.12,-2.12l-2.5,2.5L12,23l4.62,-4.62l-2.5,-2.5L12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/app_blocking.xml b/compose/material/material/icons/generator/raw-icons/filled/app_blocking.xml
deleted file mode 100644
index c0988cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/app_blocking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM15.5,12c0,-1.38 1.12,-2.5 2.5,-2.5 0.42,0 0.8,0.11 1.15,0.29l-3.36,3.36c-0.18,-0.35 -0.29,-0.73 -0.29,-1.15zM18,14.5c-0.42,0 -0.8,-0.11 -1.15,-0.29l3.36,-3.36c0.18,0.35 0.29,0.73 0.29,1.15 0,1.38 -1.12,2.5 -2.5,2.5zM17,18L7,18L7,6h10v1h2L19,3c0,-1.1 -0.9,-2 -2,-2L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/app_registration.xml b/compose/material/material/icons/generator/raw-icons/filled/app_registration.xml
deleted file mode 100644
index 5cd0652..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/app_registration.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12.42l0,-2.42l-4,0l0,4l2.42,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.88,11.29l-1.17,-1.17c-0.16,-0.16 -0.42,-0.16 -0.58,0L18.25,11L20,12.75l0.88,-0.88C21.04,11.71 21.04,11.45 20.88,11.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18.25l0,1.75l1.75,0l6.67,-6.67l-1.75,-1.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h4v4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/app_settings_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/app_settings_alt.xml
deleted file mode 100644
index 17c1c03..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/app_settings_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.81,12.74l-0.82,-0.63v-0.22l0.8,-0.63c0.16,-0.12 0.2,-0.34 0.1,-0.51l-0.85,-1.48c-0.07,-0.13 -0.21,-0.2 -0.35,-0.2 -0.05,0 -0.1,0.01 -0.15,0.03l-0.95,0.38c-0.08,-0.05 -0.11,-0.07 -0.19,-0.11l-0.15,-1.01c-0.03,-0.21 -0.2,-0.36 -0.4,-0.36h-1.71c-0.2,0 -0.37,0.15 -0.4,0.34l-0.14,1.01c-0.03,0.02 -0.07,0.03 -0.1,0.05l-0.09,0.06 -0.95,-0.38c-0.05,-0.02 -0.1,-0.03 -0.15,-0.03 -0.14,0 -0.27,0.07 -0.35,0.2l-0.85,1.48c-0.1,0.17 -0.06,0.39 0.1,0.51l0.8,0.63v0.23l-0.8,0.63c-0.16,0.12 -0.2,0.34 -0.1,0.51l0.85,1.48c0.07,0.13 0.21,0.2 0.35,0.2 0.05,0 0.1,-0.01 0.15,-0.03l0.95,-0.37c0.08,0.05 0.12,0.07 0.2,0.11l0.15,1.01c0.03,0.2 0.2,0.34 0.4,0.34h1.71c0.2,0 0.37,-0.15 0.4,-0.34l0.15,-1.01c0.03,-0.02 0.07,-0.03 0.1,-0.05l0.09,-0.06 0.95,0.38c0.05,0.02 0.1,0.03 0.15,0.03 0.14,0 0.27,-0.07 0.35,-0.2l0.85,-1.48c0.1,-0.17 0.06,-0.39 -0.1,-0.51zM18,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM17,17h2v4c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V3c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2v4h-2V6H7v12h10v-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/app_shortcut.xml b/compose/material/material/icons/generator/raw-icons/filled/app_shortcut.xml
deleted file mode 100644
index 8488b9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/app_shortcut.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,9.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62l-0.62,-1.38l-0.62,1.38l-1.38,0.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8l-1.25,2.75l-2.75,1.25l2.75,1.25l1.25,2.75l1.25,-2.75l2.75,-1.25l-2.75,-1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13l-0.62,1.38l-1.38,0.62l1.38,0.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/approval.xml b/compose/material/material/icons/generator/raw-icons/filled/approval.xml
deleted file mode 100644
index 40f426a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/approval.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16v6h16v-6c0,-1.1 -0.9,-2 -2,-2L6,14c-1.1,0 -2,0.9 -2,2zM18,18L6,18v-2h12v2zM12,2C9.24,2 7,4.24 7,7l5,7 5,-7c0,-2.76 -2.24,-5 -5,-5zM12,11L9,7c0,-1.66 1.34,-3 3,-3s3,1.34 3,3l-3,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/apps.xml b/compose/material/material/icons/generator/raw-icons/filled/apps.xml
deleted file mode 100644
index 374e8f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/apps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4L8,4L4,4v4zM10,20h4v-4h-4v4zM4,20h4v-4L4,16v4zM4,14h4v-4L4,10v4zM10,14h4v-4h-4v4zM16,4v4h4L20,4h-4zM10,8h4L14,4h-4v4zM16,14h4v-4h-4v4zM16,20h4v-4h-4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/apps_outage.xml b/compose/material/material/icons/generator/raw-icons/filled/apps_outage.xml
deleted file mode 100644
index bd84f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/apps_outage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4V4H4V8zM10,20h4v-4h-4V20zM4,20h4v-4H4V20zM4,14h4v-4H4V14zM10,14h4v-4h-4V14zM16,20h4v-4h-4V20zM19,0c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S21.76,0 19,0zM19.5,8h-1V7h1V8zM19.5,6h-1V2h1V6zM16,14h4v-2.07C19.67,11.98 19.34,12 19,12c-1.07,0 -2.09,-0.24 -3,-0.68V14zM10,4v4h2.68C12.24,7.09 12,6.07 12,5c0,-0.34 0.02,-0.67 0.07,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/architecture.xml b/compose/material/material/icons/generator/raw-icons/filled/architecture.xml
deleted file mode 100644
index 3a8298e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/architecture.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.36,18.78L6.61,21l1.62,-1.54l2.77,-7.6c-0.68,-0.17 -1.28,-0.51 -1.77,-0.98L6.36,18.78z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.77,10.88c-0.49,0.47 -1.1,0.81 -1.77,0.98l2.77,7.6L17.39,21l0.26,-2.22L14.77,10.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.3 -0.84,-2.4 -2,-2.82V3h-2v2.18C9.84,5.6 9,6.7 9,8c0,1.66 1.34,3 3,3S15,9.66 15,8zM12,9c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,8.55 12.55,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/archive.xml b/compose/material/material/icons/generator/raw-icons/filled/archive.xml
deleted file mode 100644
index 6500188..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/archive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.54,5.23l-1.39,-1.68C18.88,3.21 18.47,3 18,3H6c-0.47,0 -0.88,0.21 -1.16,0.55L3.46,5.23C3.17,5.57 3,6.02 3,6.5V19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6.5c0,-0.48 -0.17,-0.93 -0.46,-1.27zM12,17.5L6.5,12H10v-2h4v2h3.5L12,17.5zM5.12,5l0.81,-1h12l0.94,1H5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/area_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/area_chart.xml
deleted file mode 100644
index 1572332..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/area_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13v7h18v-1.5l-9,-7L8,17L3,13zM3,7l4,3l5,-7l5,4h4v8.97l-9.4,-7.31l-3.98,5.48L3,10.44V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_back.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_back.xml
deleted file mode 100644
index 2a31b2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_back.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_back_ios.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_back_ios.xml
deleted file mode 100644
index 6d14799..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_back_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.67,3.87L9.9,2.1 0,12l9.9,9.9 1.77,-1.77L3.54,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_back_ios_new.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_back_ios_new.xml
deleted file mode 100644
index c056a2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_back_ios_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.77,3.77l-1.77,-1.77l-10,10l10,10l1.77,-1.77l-8.23,-8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_down.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_down.xml
deleted file mode 100644
index baca592..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13,12l0,-4h-2l0,4H8l4,4l4,-4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_left.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_left.xml
deleted file mode 100644
index 779fb53..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12zM12,11l4,0v2l-4,0l0,3l-4,-4l4,-4L12,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_right.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_right.xml
deleted file mode 100644
index 2be8590..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,5.52 4.48,10 10,10S22,17.52 22,12zM12,13l-4,0v-2l4,0V8l4,4l-4,4V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_up.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_up.xml
deleted file mode 100644
index d37ba61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_circle_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20M12,22c5.52,0 10,-4.48 10,-10c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22L12,22zM11,12l0,4h2l0,-4h3l-4,-4l-4,4H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_downward.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_downward.xml
deleted file mode 100644
index 8f9be44..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_downward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12l-1.41,-1.41L13,16.17V4h-2v12.17l-5.58,-5.59L4,12l8,8 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_down.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_down.xml
deleted file mode 100644
index ce58346..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10l5,5 5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_down_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_down_circle.xml
deleted file mode 100644
index 60c7210..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_down_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,14l-4,-4h8l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_up.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_up.xml
deleted file mode 100644
index e88c221..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_drop_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14l5,-5 5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_forward.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_forward.xml
deleted file mode 100644
index d5e3ac8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4l-1.41,1.41L16.17,11H4v2h12.17l-5.58,5.59L12,20l8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_forward_ios.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_forward_ios.xml
deleted file mode 100644
index a71005d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_forward_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.23,20.23l1.77,1.77l10,-10l-10,-10l-1.77,1.77l8.23,8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_left.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_left.xml
deleted file mode 100644
index fad3985..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7l-5,5 5,5V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_outward.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_outward.xml
deleted file mode 100644
index 842e1d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_outward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6l0,2l8.59,0l-9.59,9.59l1.41,1.41l9.59,-9.59l0,8.59l2,0l0,-12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_right.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_right.xml
deleted file mode 100644
index 11d5c2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17l5,-5 -5,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_right_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_right_alt.xml
deleted file mode 100644
index 9ee39e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_right_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,11H4v2h12.01v3L20,12l-3.99,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/arrow_upward.xml b/compose/material/material/icons/generator/raw-icons/filled/arrow_upward.xml
deleted file mode 100644
index 07b7a83..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/arrow_upward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12l1.41,1.41L11,7.83V20h2V7.83l5.58,5.59L20,12l-8,-8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/art_track.xml b/compose/material/material/icons/generator/raw-icons/filled/art_track.xml
deleted file mode 100644
index b752553..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/art_track.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-8v-2h8v2zM22,7h-8v2h8L22,7zM14,17h8v-2h-8v2zM12,9v6c0,1.1 -0.9,2 -2,2L4,17c-1.1,0 -2,-0.9 -2,-2L2,9c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2zM10.5,15l-2.25,-3 -1.75,2.26 -1.25,-1.51L3.5,15h7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/article.xml b/compose/material/material/icons/generator/raw-icons/filled/article.xml
deleted file mode 100644
index e58bca6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/article.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14,17L7,17v-2h7v2zM17,13L7,13v-2h10v2zM17,9L7,9L7,7h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/filled/aspect_ratio.xml
deleted file mode 100644
index 97cb262a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-2v3h-3v2h5v-5zM7,9h3L10,7L5,7v5h2L7,9zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assessment.xml b/compose/material/material/icons/generator/raw-icons/filled/assessment.xml
deleted file mode 100644
index 3c3b83f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assessment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assignment.xml b/compose/material/material/icons/generator/raw-icons/filled/assignment.xml
deleted file mode 100644
index a6c37673..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assignment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM14,17L7,17v-2h7v2zM17,13L7,13v-2h10v2zM17,9L7,9L7,7h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assignment_ind.xml b/compose/material/material/icons/generator/raw-icons/filled/assignment_ind.xml
deleted file mode 100644
index d3ebec9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assignment_ind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,7c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM18,19L6,19v-1.4c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1L18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assignment_late.xml b/compose/material/material/icons/generator/raw-icons/filled/assignment_late.xml
deleted file mode 100644
index 48c2d11..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assignment_late.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM13,18h-2v-2h2v2zM13,14h-2L11,8h2v6zM12,5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assignment_return.xml b/compose/material/material/icons/generator/raw-icons/filled/assignment_return.xml
deleted file mode 100644
index 80d617e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assignment_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16,15h-4v3l-5,-5 5,-5v3h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assignment_returned.xml b/compose/material/material/icons/generator/raw-icons/filled/assignment_returned.xml
deleted file mode 100644
index d423e5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assignment_returned.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,18l-5,-5h3L10,9h4v4h3l-5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assignment_turned_in.xml b/compose/material/material/icons/generator/raw-icons/filled/assignment_turned_in.xml
deleted file mode 100644
index 5d5680e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assignment_turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM10,17l-4,-4 1.41,-1.41L10,14.17l6.59,-6.59L18,9l-8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assist_walker.xml b/compose/material/material/icons/generator/raw-icons/filled/assist_walker.xml
deleted file mode 100644
index cca770a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assist_walker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,4.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,17.72l-0.64,-6.37C19.06,10.58 18.41,10 17.64,10H16c-1.5,-0.02 -2.86,-0.54 -3.76,-1.44l-2,-1.98C10.08,6.42 9.62,6 8.83,6C8.32,6 7.81,6.2 7.42,6.59L4.08,9.91c-0.53,0.68 -0.51,1.57 -0.21,2.13l1.43,2.8l-3.15,4.05l1.57,1.24l3.68,-4.73l-0.17,-1.36L8,14.75V20h2v-6.12l-2.12,-2.12l2.36,-2.36c0.94,0.94 1.72,1.82 3.59,2.32L13,20h1.5l0.41,-3.5h3.18l0.14,1.22c-0.44,0.26 -0.73,0.74 -0.73,1.28c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5C20.5,18.46 20.21,17.98 19.77,17.72zM15.09,15l0.41,-3.5h2l0.41,3.5H15.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assistant.xml b/compose/material/material/icons/generator/raw-icons/filled/assistant.xml
deleted file mode 100644
index 9aca27f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assistant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h4l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM13.88,12.88L12,17l-1.88,-4.12L6,11l4.12,-1.88L12,5l1.88,4.12L18,11l-4.12,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assistant_direction.xml b/compose/material/material/icons/generator/raw-icons/filled/assistant_direction.xml
deleted file mode 100644
index 10a7b06..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assistant_direction.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10L9,10c-0.6,0 -1,0.4 -1,1v4h2v-3h4v2.5l3.5,-3.5L14,7.5L14,10zM12,1C5.9,1 1,5.9 1,12s4.9,11 11,11 11,-4.9 11,-11S18.1,1 12,1zM19.73,12.58l-7.19,7.22c-0.35,0.27 -0.79,0.27 -1.15,0L4.2,12.58c-0.27,-0.36 -0.27,-0.8 0,-1.16l7.19,-7.22c0.35,-0.27 0.79,-0.27 1.15,0l7.19,7.22c0.36,0.27 0.36,0.8 0,1.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assistant_photo.xml b/compose/material/material/icons/generator/raw-icons/filled/assistant_photo.xml
deleted file mode 100644
index 026653c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assistant_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.4,6L14,4H5v17h2v-7h5.6l0.4,2h7V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/assured_workload.xml b/compose/material/material/icons/generator/raw-icons/filled/assured_workload.xml
deleted file mode 100644
index 9ed305c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/assured_workload.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6l-10,-5l-10,5l0,2l20,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19v2h12.4c-0.21,-0.64 -0.32,-1.31 -0.36,-2H2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12.26l0,-2.26l-2,0l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14l-4,2v2.55c0,2.52 1.71,4.88 4,5.45c2.29,-0.57 4,-2.93 4,-5.45V16L20,14zM19.28,21l-2.03,-2.03l1.06,-1.06l0.97,0.97l2.41,-2.38l1.06,1.06L19.28,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/atm.xml b/compose/material/material/icons/generator/raw-icons/filled/atm.xml
deleted file mode 100644
index 5f65fc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9v1.5h2.25L10.25,15h1.5v-4.5L14,10.5L14,9zM6,9L3,9c-0.55,0 -1,0.45 -1,1v5h1.5v-1.5h2L5.5,15L7,15v-5c0,-0.55 -0.45,-1 -1,-1zM5.5,12h-2v-1.5h2L5.5,12zM21,9h-4.5c-0.55,0 -1,0.45 -1,1v5L17,15v-4.5h1L18,14h1.5v-3.51h1L20.5,15L22,15v-5c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/attach_email.xml b/compose/material/material/icons/generator/raw-icons/filled/attach_email.xml
deleted file mode 100644
index 654c919..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/attach_email.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10V4c0,-1.1 -0.9,-2 -2,-2H3C1.9,2 1.01,2.9 1.01,4L1,16c0,1.1 0.9,2 2,2h11v-5c0,-1.66 1.34,-3 3,-3H21zM11,11L3,6V4l8,5l8,-5v2L11,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14v4c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V18h2v-4.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S15,12.12 15,13.5V18c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-4H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/attach_file.xml b/compose/material/material/icons/generator/raw-icons/filled/attach_file.xml
deleted file mode 100644
index a396022..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/attach_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,6v11.5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5v10.5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6H10v9.5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5V5c0,-2.21 -1.79,-4 -4,-4S7,2.79 7,5v12.5c0,3.04 2.46,5.5 5.5,5.5s5.5,-2.46 5.5,-5.5V6h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/attach_money.xml b/compose/material/material/icons/generator/raw-icons/filled/attach_money.xml
deleted file mode 100644
index fecf031..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/attach_money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.8,10.9c-2.27,-0.59 -3,-1.2 -3,-2.15 0,-1.09 1.01,-1.85 2.7,-1.85 1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-1.94,0.42 -3.5,1.68 -3.5,3.61 0,2.31 1.91,3.46 4.7,4.13 2.5,0.6 3,1.48 3,2.41 0,0.69 -0.49,1.79 -2.7,1.79 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c1.95,-0.37 3.5,-1.5 3.5,-3.55 0,-2.84 -2.43,-3.81 -4.7,-4.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/attachment.xml b/compose/material/material/icons/generator/raw-icons/filled/attachment.xml
deleted file mode 100644
index 52c055b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/attachment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12.5C2,9.46 4.46,7 7.5,7H18c2.21,0 4,1.79 4,4s-1.79,4 -4,4H9.5C8.12,15 7,13.88 7,12.5S8.12,10 9.5,10H17v2H9.41c-0.55,0 -0.55,1 0,1H18c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2H7.5C5.57,9 4,10.57 4,12.5S5.57,16 7.5,16H17v2H7.5C4.46,18 2,15.54 2,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/attractions.xml b/compose/material/material/icons/generator/raw-icons/filled/attractions.xml
deleted file mode 100644
index 40e78da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/attractions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.43,18.75C10.8,18.29 11.37,18 12,18c0.63,0 1.19,0.29 1.56,0.75c0.39,-0.09 0.76,-0.21 1.12,-0.36l-1.42,-3.18c-0.39,0.15 -0.82,0.23 -1.26,0.23c-0.46,0 -0.9,-0.09 -1.3,-0.25l-1.43,3.19C9.65,18.54 10.03,18.67 10.43,18.75zM5.15,10c-0.16,0.59 -0.25,1.21 -0.25,1.85c0,0.75 0.12,1.47 0.33,2.15c0.63,0.05 1.22,0.4 1.56,0.99c0.33,0.57 0.35,1.23 0.11,1.79c0.27,0.27 0.56,0.53 0.87,0.76l1.52,-3.39v0c-0.47,-0.58 -0.75,-1.32 -0.75,-2.13c0,-1.89 1.55,-3.41 3.46,-3.41c1.91,0 3.46,1.53 3.46,3.41c0,0.82 -0.29,1.57 -0.78,2.16l1.5,3.35c0.32,-0.24 0.62,-0.5 0.9,-0.79c-0.22,-0.55 -0.2,-1.2 0.12,-1.75c0.33,-0.57 0.9,-0.92 1.52,-0.99c0.22,-0.68 0.34,-1.41 0.34,-2.16c0,-0.64 -0.09,-1.27 -0.25,-1.86c-0.64,-0.04 -1.26,-0.39 -1.6,-1c-0.36,-0.62 -0.35,-1.36 -0.03,-1.95c-0.91,-0.98 -2.1,-1.71 -3.44,-2.05C13.39,5.6 12.74,6 12,6c-0.74,0 -1.39,-0.41 -1.74,-1.01C8.92,5.33 7.73,6.04 6.82,7.02C7.15,7.62 7.17,8.37 6.8,9C6.45,9.62 5.81,9.97 5.15,10zM3.85,9.58C3.07,8.98 2.83,7.88 3.34,7c0.51,-0.88 1.58,-1.23 2.49,-0.85c1.11,-1.17 2.56,-2.03 4.18,-2.42C10.15,2.75 10.99,2 12,2c1.01,0 1.85,0.75 1.98,1.73c1.63,0.39 3.07,1.24 4.18,2.42c0.91,-0.38 1.99,-0.03 2.49,0.85c0.51,0.88 0.27,1.98 -0.51,2.58c0.23,0.77 0.35,1.58 0.35,2.42s-0.12,1.65 -0.35,2.42c0.78,0.6 1.02,1.7 0.51,2.58c-0.51,0.88 -1.58,1.23 -2.49,0.85c-0.4,0.43 -0.85,0.81 -1.34,1.15l1.34,3H16.3l-0.97,-2.17c-0.43,0.18 -0.88,0.33 -1.34,0.44C13.85,21.25 13.01,22 12,22c-1.01,0 -1.85,-0.75 -1.98,-1.73C9.54,20.15 9.08,20 8.64,19.81L7.66,22H5.78l1.36,-3.03c-0.47,-0.33 -0.91,-0.71 -1.3,-1.12C4.92,18.23 3.85,17.88 3.34,17c-0.51,-0.88 -0.27,-1.98 0.51,-2.58C3.62,13.65 3.5,12.84 3.5,12S3.62,10.35 3.85,9.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/attribution.xml b/compose/material/material/icons/generator/raw-icons/filled/attribution.xml
deleted file mode 100644
index 20f6c6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/attribution.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.5c-0.91,0 -2.75,0.46 -2.75,1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88C14.75,8.97 12.91,8.5 12,8.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/audio_file.xml b/compose/material/material/icons/generator/raw-icons/filled/audio_file.xml
deleted file mode 100644
index 5810b4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/audio_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM16,13h-3v3.75c0,1.24 -1.01,2.25 -2.25,2.25S8.5,17.99 8.5,16.75c0,-1.24 1.01,-2.25 2.25,-2.25c0.46,0 0.89,0.14 1.25,0.38V11h4V13zM13,9V3.5L18.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/audiotrack.xml b/compose/material/material/icons/generator/raw-icons/filled/audiotrack.xml
deleted file mode 100644
index bd8e9da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/audiotrack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v9.28c-0.47,-0.17 -0.97,-0.28 -1.5,-0.28C8.01,12 6,14.01 6,16.5S8.01,21 10.5,21c2.31,0 4.2,-1.75 4.45,-4H15V6h4V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_awesome.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_awesome.xml
deleted file mode 100644
index 977fad3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_awesome.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9l1.25,-2.75L23,5l-2.75,-1.25L19,1l-1.25,2.75L15,5l2.75,1.25L19,9zM11.5,9.5L9,4 6.5,9.5 1,12l5.5,2.5L9,20l2.5,-5.5L17,12l-5.5,-2.5zM19,15l-1.25,2.75L15,19l2.75,1.25L19,23l1.25,-2.75L23,19l-2.75,-1.25L19,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_awesome_mosaic.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_awesome_mosaic.xml
deleted file mode 100644
index bc3b66c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_awesome_mosaic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.89,2 2,2h6L11,3L5,3c-1.11,0 -2,0.9 -2,2zM19,3h-6v8h8L21,5c0,-1.1 -0.9,-2 -2,-2zM13,21h6c1.1,0 2,-0.9 2,-2v-6h-8v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_awesome_motion.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_awesome_motion.xml
deleted file mode 100644
index db987690..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_awesome_motion.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L4,2c-1.11,0 -2,0.9 -2,2v10h2L4,4h10L14,2zM18,6L8,6c-1.11,0 -2,0.9 -2,2v10h2L8,8h10L18,6zM20,10h-8c-1.11,0 -2,0.9 -2,2v8c0,1.1 0.89,2 2,2h8c1.1,0 2,-0.9 2,-2v-8c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_delete.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_delete.xml
deleted file mode 100644
index 625508a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_delete.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2l-3.5,0l-1,-1l-5,0l-1,1l-3.5,0l0,2l14,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9c-0.7,0 -1.37,0.1 -2,0.29V5H2v12c0,1.1 0.9,2 2,2h5.68c1.12,2.36 3.53,4 6.32,4c3.87,0 7,-3.13 7,-7C23,12.13 19.87,9 16,9zM16,21c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S18.76,21 16,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12l-1.5,0l0,5l3.6,2.1l0.8,-1.2l-2.9,-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_fix_high.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_fix_high.xml
deleted file mode 100644
index cc4e7fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_fix_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,5.6L10,7 8.6,4.5 10,2 7.5,3.4 5,2l1.4,2.5L5,7zM19.5,15.4L17,14l1.4,2.5L17,19l2.5,-1.4L22,19l-1.4,-2.5L22,14zM22,2l-2.5,1.4L17,2l1.4,2.5L17,7l2.5,-1.4L22,7l-1.4,-2.5zM14.37,7.29c-0.39,-0.39 -1.02,-0.39 -1.41,0L1.29,18.96c-0.39,0.39 -0.39,1.02 0,1.41l2.34,2.34c0.39,0.39 1.02,0.39 1.41,0L16.7,11.05c0.39,-0.39 0.39,-1.02 0,-1.41l-2.33,-2.35zM13.34,12.78l-2.12,-2.12 2.44,-2.44 2.12,2.12 -2.44,2.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_fix_normal.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_fix_normal.xml
deleted file mode 100644
index 0ecaee6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_fix_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2l-2.5,1.4L17,2l1.4,2.5L17,7l2.5,-1.4L22,7l-1.4,-2.5zM14.37,7.29c-0.39,-0.39 -1.02,-0.39 -1.41,0L1.29,18.96c-0.39,0.39 -0.39,1.02 0,1.41l2.34,2.34c0.39,0.39 1.02,0.39 1.41,0L16.7,11.05c0.39,-0.39 0.39,-1.02 0,-1.41l-2.33,-2.35zM13.34,12.78l-2.12,-2.12 2.44,-2.44 2.12,2.12 -2.44,2.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_fix_off.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_fix_off.xml
deleted file mode 100644
index 1ec375c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_fix_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,1l-2.5,1.4L18,1l1.4,2.5L18,6l2.5,-1.4L23,6l-1.4,-2.5L23,1zM14.66,7.22l2.12,2.12 -2.44,2.44 0.81,0.81 2.55,-2.55c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0L11.4,8.84l0.81,0.81 2.45,-2.43zM13.88,13.87l-3.75,-3.75 -6.86,-6.86L2,4.53l6.86,6.86 -6.57,6.57c-0.39,0.39 -0.39,1.02 0,1.41l2.34,2.34c0.39,0.39 1.02,0.39 1.41,0l6.57,-6.57L19.47,22l1.27,-1.27 -6.86,-6.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_graph.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_graph.xml
deleted file mode 100644
index 2b7174e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_graph.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.94L12,9l2.06,-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94zM4,14l0.94,-2.06L7,11l-2.06,-0.94L4,8l-0.94,2.06L1,11l2.06,0.94L4,14zM8.5,9l1.09,-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9zM4.5,20.5l6,-6.01l4,4L23,8.93l-1.41,-1.41l-7.09,7.97l-4,-4L3,19L4.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_mode.xml
deleted file mode 100644
index fc54b2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_mode.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.03,3.56c-1.67,-1.39 -3.74,-2.3 -6.03,-2.51v2.01c1.73,0.19 3.31,0.88 4.61,1.92L19.03,3.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3.06V1.05C8.71,1.25 6.64,2.17 4.97,3.56l1.42,1.42C7.69,3.94 9.27,3.25 11,3.06z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.98,6.39L3.56,4.97C2.17,6.64 1.26,8.71 1.05,11h2.01C3.25,9.27 3.94,7.69 4.98,6.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11h2.01c-0.21,-2.29 -1.12,-4.36 -2.51,-6.03l-1.42,1.42C20.06,7.69 20.75,9.27 20.94,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l3.44,1.56l1.56,3.44l1.56,-3.44l3.44,-1.56l-3.44,-1.56l-1.56,-3.44l-1.56,3.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c-3.11,0 -5.85,-1.59 -7.46,-4H7v-2H1v6h2v-2.7c1.99,2.84 5.27,4.7 9,4.7c4.87,0 9,-3.17 10.44,-7.56l-1.96,-0.45C19.25,18.48 15.92,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/auto_stories.xml b/compose/material/material/icons/generator/raw-icons/filled/auto_stories.xml
deleted file mode 100644
index 113139d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/auto_stories.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1l-5,5v11l5,-4.5L19,1zM1,6v14.65c0,0.25 0.25,0.5 0.5,0.5 0.1,0 0.15,-0.05 0.25,-0.05C3.1,20.45 5.05,20 6.5,20c1.95,0 4.05,0.4 5.5,1.5L12,6c-1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6zM23,19.5L23,6c-0.6,-0.45 -1.25,-0.75 -2,-1v13.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5 -1.7,0 -4.15,0.65 -5.5,1.5v2c1.35,-0.85 3.8,-1.5 5.5,-1.5 1.65,0 3.35,0.3 4.75,1.05 0.1,0.05 0.15,0.05 0.25,0.05 0.25,0 0.5,-0.25 0.5,-0.5v-1.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/autofps_select.xml b/compose/material/material/icons/generator/raw-icons/filled/autofps_select.xml
deleted file mode 100644
index 43e257a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/autofps_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,6.3l-0.06,0l-1.02,2.89l2.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6S6,5.69 6,9S8.69,15 12,15zM11.37,5h1.25l2.63,7h-1.21l-0.63,-1.79h-2.83L9.96,12H8.74L11.37,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h6v5h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/autorenew.xml b/compose/material/material/icons/generator/raw-icons/filled/autorenew.xml
deleted file mode 100644
index 3c6d07f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/autorenew.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6v3l4,-4 -4,-4v3c-4.42,0 -8,3.58 -8,8 0,1.57 0.46,3.03 1.24,4.26L6.7,14.8c-0.45,-0.83 -0.7,-1.79 -0.7,-2.8 0,-3.31 2.69,-6 6,-6zM18.76,7.74L17.3,9.2c0.44,0.84 0.7,1.79 0.7,2.8 0,3.31 -2.69,6 -6,6v-3l-4,4 4,4v-3c4.42,0 8,-3.58 8,-8 0,-1.57 -0.46,-3.03 -1.24,-4.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/av_timer.xml b/compose/material/material/icons/generator/raw-icons/filled/av_timer.xml
deleted file mode 100644
index 6fc780c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/av_timer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17c0,0.55 0.45,1 1,1s1,-0.45 1,-1 -0.45,-1 -1,-1 -1,0.45 -1,1zM11,3v4h2L13,5.08c3.39,0.49 6,3.39 6,6.92 0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-1.68 0.59,-3.22 1.58,-4.42L12,13l1.41,-1.41 -6.8,-6.8v0.02C4.42,6.45 3,9.05 3,12c0,4.97 4.02,9 9,9 4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9h-1zM18,12c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1 0.45,1 1,1 1,-0.45 1,-1zM6,12c0,0.55 0.45,1 1,1s1,-0.45 1,-1 -0.45,-1 -1,-1 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/baby_changing_station.xml b/compose/material/material/icons/generator/raw-icons/filled/baby_changing_station.xml
deleted file mode 100644
index 890da27..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/baby_changing_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58,-4.63C4.96,6.25 6.22,5.69 7.3,6.18l4.15,1.83L14,8zM8,1C6.9,1 6,1.9 6,3s0.9,2 2,2s2,-0.9 2,-2S9.1,1 8,1zM9,19h12v-2H9V19zM19.5,16c0.83,0 1.5,-0.67 1.5,-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S18,13.67 18,14.5C18,15.33 18.67,16 19.5,16zM13,12c0,-0.55 -0.45,-1 -1,-1H9v2h2v1c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-3h-2v2h-2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/back_hand.xml b/compose/material/material/icons/generator/raw-icons/filled/back_hand.xml
deleted file mode 100644
index 83d8cf71..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/back_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,24c-3.26,0 -6.19,-1.99 -7.4,-5.02l-3.03,-7.61C2.26,10.58 3,9.79 3.81,10.05l0.79,0.26c0.56,0.18 1.02,0.61 1.24,1.16L7.25,15H8V3.25C8,2.56 8.56,2 9.25,2s1.25,0.56 1.25,1.25V12h1V1.25C11.5,0.56 12.06,0 12.75,0S14,0.56 14,1.25V12h1V2.75c0,-0.69 0.56,-1.25 1.25,-1.25c0.69,0 1.25,0.56 1.25,1.25V12h1V5.75c0,-0.69 0.56,-1.25 1.25,-1.25S21,5.06 21,5.75V16C21,20.42 17.42,24 13,24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/backpack.xml b/compose/material/material/icons/generator/raw-icons/filled/backpack.xml
deleted file mode 100644
index 51e59f30..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8v12c0,1.1 -0.9,2 -2,2H6c-1.1,0 -2,-0.9 -2,-2V8c0,-1.86 1.28,-3.41 3,-3.86V2h3v2h4V2h3v2.14C18.72,4.59 20,6.14 20,8zM6,12v2h10v2h2v-4H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/backspace.xml b/compose/material/material/icons/generator/raw-icons/filled/backspace.xml
deleted file mode 100644
index dceebaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0,12l5.41,8.11c0.36,0.53 0.9,0.89 1.59,0.89h15c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM19,15.59L17.59,17 14,13.41 10.41,17 9,15.59 12.59,12 9,8.41 10.41,7 14,10.59 17.59,7 19,8.41 15.41,12 19,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/backup.xml b/compose/material/material/icons/generator/raw-icons/filled/backup.xml
deleted file mode 100644
index 2896516..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/backup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM14,13v4h-4v-4H7l5,-5 5,5h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/backup_table.xml b/compose/material/material/icons/generator/raw-icons/filled/backup_table.xml
deleted file mode 100644
index f937840..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/backup_table.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6v14H6v2h14c1.1,0 2,-0.9 2,-2V6H20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,2H4C2.9,2 2,2.9 2,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2 16,2zM9,16H4v-5h5V16zM16,16h-5v-5h5V16zM16,9H4V4h12V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/badge.xml b/compose/material/material/icons/generator/raw-icons/filled/badge.xml
deleted file mode 100644
index 670ff7fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/badge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM9,12c0.83,0 1.5,0.67 1.5,1.5S9.83,15 9,15s-1.5,-0.67 -1.5,-1.5S8.17,12 9,12zM12,18H6v-0.75c0,-1 2,-1.5 3,-1.5s3,0.5 3,1.5V18zM13,9h-2V4h2V9zM18,16.5h-4V15h4V16.5zM18,13.5h-4V12h4V13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bakery_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/bakery_dining.xml
deleted file mode 100644
index f7145b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bakery_dining.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.28,16.34C18.07,15.45 17.46,15 17.46,15s0.32,-0.59 0.96,-1.78c0.38,-0.59 1.22,-0.59 1.6,0l0.81,1.26c0.19,0.3 0.21,0.68 0.06,1l-0.22,0.47C20.42,16.49 19.76,16.67 19.28,16.34zM4.72,16.34c-0.48,0.33 -1.13,0.15 -1.39,-0.38L3.1,15.49c-0.15,-0.32 -0.13,-0.7 0.06,-1l0.81,-1.26c0.38,-0.59 1.22,-0.59 1.6,0C6.22,14.41 6.54,15 6.54,15S5.93,15.45 4.72,16.34zM15.36,9.37c0.09,-0.68 0.73,-1.06 1.27,-0.75l1.59,0.9c0.46,0.26 0.63,0.91 0.36,1.41L16.5,15h-1.8L15.36,9.37zM8.63,9.37L9.3,15H7.5l-2.09,-4.08c-0.27,-0.5 -0.1,-1.15 0.36,-1.41l1.59,-0.9C7.89,8.31 8.54,8.69 8.63,9.37zM13.8,15h-3.6L9.46,8.12C9.39,7.53 9.81,7 10.34,7h3.3c0.53,0 0.94,0.53 0.88,1.12L13.8,15z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/balance.xml b/compose/material/material/icons/generator/raw-icons/filled/balance.xml
deleted file mode 100644
index f5c8d81..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/balance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.83c0.85,-0.3 1.53,-0.98 1.83,-1.83H18l-3,7c0,1.66 1.57,3 3.5,3s3.5,-1.34 3.5,-3l-3,-7h2V4h-6.17C14.42,2.83 13.31,2 12,2S9.58,2.83 9.17,4L3,4v2h2l-3,7c0,1.66 1.57,3 3.5,3S9,14.66 9,13L6,6h3.17c0.3,0.85 0.98,1.53 1.83,1.83V19H2v2h20v-2h-9V7.83zM20.37,13h-3.74l1.87,-4.36L20.37,13zM7.37,13H3.63L5.5,8.64L7.37,13zM12,6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,5.55 12.55,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/balcony.xml b/compose/material/material/icons/generator/raw-icons/filled/balcony.xml
deleted file mode 100644
index f058880..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/balcony.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10v2H8v-2H10zM16,12v-2h-2v2H16zM21,14v8H3v-8h1v-4c0,-4.42 3.58,-8 8,-8s8,3.58 8,8v4H21zM7,16H5v4h2V16zM11,16H9v4h2V16zM11,4.08C8.16,4.56 6,7.03 6,10v4h5V4.08zM13,14h5v-4c0,-2.97 -2.16,-5.44 -5,-5.92V14zM15,16h-2v4h2V16zM19,16h-2v4h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ballot.xml b/compose/material/material/icons/generator/raw-icons/filled/ballot.xml
deleted file mode 100644
index d11d2fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ballot.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9.5h5v-2h-5V9.5zM13,16.5h5v-2h-5V16.5zM19,21H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2v14C21,20.1 20.1,21 19,21zM6,11h5V6H6V11zM7,7h3v3H7V7zM6,18h5v-5H6V18zM7,14h3v3H7V14z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bar_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/bar_chart.xml
deleted file mode 100644
index bbc825d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bar_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h4v7h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v16h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/batch_prediction.xml b/compose/material/material/icons/generator/raw-icons/filled/batch_prediction.xml
deleted file mode 100644
index 4ccd035..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/batch_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8H7c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V10C19,8.9 18.1,8 17,8zM13,20.5h-2V19h2V20.5zM13,18h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5c1.93,0 3.5,1.57 3.5,3.5C15.5,15 13,16.5 13,18zM18,6.5H6v0C6,5.67 6.67,5 7.5,5h9C17.33,5 18,5.67 18,6.5L18,6.5zM17,3.5H7v0C7,2.67 7.67,2 8.5,2h7C16.33,2 17,2.67 17,3.5L17,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bathroom.xml b/compose/material/material/icons/generator/raw-icons/filled/bathroom.xml
deleted file mode 100644
index 6022b80..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bathroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM9,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,18 9,18zM9,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,15 9,15zM12,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,18 12,18zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,15 12,15zM15,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,18 15,18zM15,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,15 15,15zM17,12H7v-1c0,-2.76 2.24,-5 5,-5s5,2.24 5,5V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bathtub.xml b/compose/material/material/icons/generator/raw-icons/filled/bathtub.xml
deleted file mode 100644
index 57118c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bathtub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13V4.83C20,3.27 18.73,2 17.17,2c-0.75,0 -1.47,0.3 -2,0.83l-1.25,1.25C13.76,4.03 13.59,4 13.41,4c-0.4,0 -0.77,0.12 -1.08,0.32l2.76,2.76c0.2,-0.31 0.32,-0.68 0.32,-1.08c0,-0.18 -0.03,-0.34 -0.07,-0.51l1.25,-1.25C16.74,4.09 16.95,4 17.17,4C17.63,4 18,4.37 18,4.83V13h-6.85c-0.3,-0.21 -0.57,-0.45 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5C7.93,10.08 7.59,10 7.24,10C6,10.01 5,11.01 5,12.25V13H2v6c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1c1.1,0 2,-0.9 2,-2v-6H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_0_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_0_bar.xml
deleted file mode 100644
index b286b95..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v14h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_1_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_1_bar.xml
deleted file mode 100644
index 88a1766..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v12h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_2_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_2_bar.xml
deleted file mode 100644
index f8b1dd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v10h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_3_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_3_bar.xml
deleted file mode 100644
index edbf58f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v8h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_4_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_4_bar.xml
deleted file mode 100644
index b02d618..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v6h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_5_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_5_bar.xml
deleted file mode 100644
index b9112cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_5_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_6_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_6_bar.xml
deleted file mode 100644
index 137ebed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_6_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v2h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_alert.xml
deleted file mode 100644
index f171af7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,2h-4v2L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM13,14h-2L11,9h2v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_charging_full.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_charging_full.xml
deleted file mode 100644
index 8e9c13f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_charging_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4zM11,20v-5.5H9L13,7v5.5h2L11,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_full.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_full.xml
deleted file mode 100644
index 38b8a788..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_saver.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_saver.xml
deleted file mode 100644
index 03da48f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_saver.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2V2h-4v2H8C7.45,4 7,4.45 7,5v16c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1V5C17,4.45 16.55,4 16,4zM15,14h-2v2h-2v-2H9v-2h2v-2h2v2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_std.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_std.xml
deleted file mode 100644
index 38b8a788..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_std.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/battery_unknown.xml b/compose/material/material/icons/generator/raw-icons/filled/battery_unknown.xml
deleted file mode 100644
index 5c246c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/battery_unknown.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,2h-4v2L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM12.95,17.95h-1.9v-1.9h1.9v1.9zM14.3,12.69s-0.38,0.42 -0.67,0.71c-0.48,0.48 -0.83,1.15 -0.83,1.6h-1.6c0,-0.83 0.46,-1.52 0.93,-2l0.93,-0.94c0.27,-0.27 0.44,-0.65 0.44,-1.06 0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5L9,11c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,0.66 -0.27,1.26 -0.7,1.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/beach_access.xml b/compose/material/material/icons/generator/raw-icons/filled/beach_access.xml
deleted file mode 100644
index 587cf03..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/beach_access.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.127,14.56l1.43,-1.43 6.44,6.443L19.57,21zM17.42,8.83l2.86,-2.86c-3.95,-3.95 -10.35,-3.96 -14.3,-0.02 3.93,-1.3 8.31,-0.25 11.44,2.88zM5.95,5.98c-3.94,3.95 -3.93,10.35 0.02,14.3l2.86,-2.86C5.7,14.29 4.65,9.91 5.95,5.98zM5.97,5.96l-0.01,0.01c-0.38,3.01 1.17,6.88 4.3,10.02l5.73,-5.73c-3.13,-3.13 -7.01,-4.68 -10.02,-4.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bed.xml b/compose/material/material/icons/generator/raw-icons/filled/bed.xml
deleted file mode 100644
index 10c9ae8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.78V8c0,-1.65 -1.35,-3 -3,-3h-4c-0.77,0 -1.47,0.3 -2,0.78C11.47,5.3 10.77,5 10,5H6C4.35,5 3,6.35 3,8v2.78C2.39,11.33 2,12.12 2,13v6h2v-2h16v2h2v-6C22,12.12 21.61,11.33 21,10.78zM14,7h4c0.55,0 1,0.45 1,1v2h-6V8C13,7.45 13.45,7 14,7zM5,8c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v2H5V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bedroom_baby.xml b/compose/material/material/icons/generator/raw-icons/filled/bedroom_baby.xml
deleted file mode 100644
index e54e618..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bedroom_baby.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM12,18c-2.64,0 -5.13,-1.03 -7,-2.9l1.06,-1.06c0.34,0.34 0.71,0.65 1.1,0.92L8,13.5V9.51L6.45,10.5l-0.95,-1L7,7.76L6,7h3.65l1.73,3H17v1h-1v2.5l0.84,1.46c0.39,-0.28 0.76,-0.58 1.1,-0.92L19,15.1C17.13,16.97 14.64,18 12,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.69,14.24c-1.74,0.65 -3.66,0.65 -5.4,0l-0.81,1.41l-0.03,0.06c1.1,0.52 2.28,0.79 3.53,0.79s2.45,-0.28 3.55,-0.79l-0.03,-0.06L14.69,14.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bedroom_child.xml b/compose/material/material/icons/generator/raw-icons/filled/bedroom_child.xml
deleted file mode 100644
index 0c80df3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bedroom_child.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.64,12H8.37c-0.48,0 -0.87,0.39 -0.87,0.87h0.01V14h9v-1.13C16.51,12.39 16.12,12 15.64,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM18,17h-1.5v-1.5h-9V17H6v-4.13c0,-1 0.62,-1.85 1.5,-2.2V9c0,-1.1 0.9,-2 2,-2h5c1.1,0 2,0.9 2,2v1.67c0.88,0.35 1.5,1.2 1.5,2.2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bedroom_parent.xml b/compose/material/material/icons/generator/raw-icons/filled/bedroom_parent.xml
deleted file mode 100644
index 2b6c488..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bedroom_parent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12h-9c-0.55,0 -1,0.45 -1,1v1h11v-1C17.5,12.45 17.05,12 16.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,8.5h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,8.5h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM19,17h-1.5v-1.5h-11V17H5v-3.83c0,-0.66 0.25,-1.26 0.65,-1.72V9c0,-1.1 0.9,-2 2,-2H11c0.37,0 0.72,0.12 1,0.32C12.28,7.12 12.63,7 13,7h3.35c1.1,0 2,0.9 2,2v2.45c0.4,0.46 0.65,1.06 0.65,1.72V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bedtime.xml b/compose/material/material/icons/generator/raw-icons/filled/bedtime.xml
deleted file mode 100644
index 19955b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bedtime.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,2.02C6.59,1.82 2,6.42 2,12c0,5.52 4.48,10 10,10c3.71,0 6.93,-2.02 8.66,-5.02C13.15,16.73 8.57,8.55 12.34,2.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bedtime_off.xml b/compose/material/material/icons/generator/raw-icons/filled/bedtime_off.xml
deleted file mode 100644
index 254f440..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bedtime_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.08 2,9.97 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.62 5.51,-1.66l2.27,2.27L21.19,21.19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,2.02c-2.18,-0.07 -4.19,0.55 -5.85,1.64l4.59,4.59C10.81,6.2 11.18,4.03 12.34,2.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/beenhere.xml b/compose/material/material/icons/generator/raw-icons/filled/beenhere.xml
deleted file mode 100644
index f93a26c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/beenhere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L5,1c-1.1,0 -1.99,0.9 -1.99,2L3,15.93c0,0.69 0.35,1.3 0.88,1.66L12,23l8.11,-5.41c0.53,-0.36 0.88,-0.97 0.88,-1.66L21,3c0,-1.1 -0.9,-2 -2,-2zM10,16l-5,-5 1.41,-1.41L10,13.17l7.59,-7.59L19,7l-9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bento.xml b/compose/material/material/icons/generator/raw-icons/filled/bento.xml
deleted file mode 100644
index c175f2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bento.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11V5h4c1.1,0 2,0.9 2,2v4H16zM20,19c1.1,0 2,-0.9 2,-2v-4h-6v6H20zM14,5v14H4c-1.1,0 -2,-0.9 -2,-2V7c0,-1.1 0.9,-2 2,-2H14zM9.5,12c0,-0.83 -0.67,-1.5 -1.5,-1.5S6.5,11.17 6.5,12s0.67,1.5 1.5,1.5S9.5,12.83 9.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bike_scooter.xml b/compose/material/material/icons/generator/raw-icons/filled/bike_scooter.xml
deleted file mode 100644
index d896141d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bike_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14h0.74L8.82,5.56C8.61,4.65 7.8,4 6.87,4H3v2h3.87l1.42,6.25c0,0 -0.01,0 -0.01,0C6.12,12.9 4.47,14.73 4.09,17H0v2h6v-1C6,15.79 7.79,14 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-0.82l-1.35,-3.69C16.55,3.52 15.8,3 14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58 -0.75,1.25 -0.9,2h-2.79l0.46,2h2.33c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,10.2 21.8,8 19,8zM19,16c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,15 10,15zM10,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S10.55,19 10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/biotech.xml b/compose/material/material/icons/generator/raw-icons/filled/biotech.xml
deleted file mode 100644
index ede4cebf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/biotech.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19c-1.1,0 -2,0.9 -2,2h14c0,-1.1 -0.9,-2 -2,-2h-4v-2h3c1.1,0 2,-0.9 2,-2h-8c-1.66,0 -3,-1.34 -3,-3c0,-1.09 0.59,-2.04 1.46,-2.56C8.17,9.03 8,8.54 8,8c0,-0.21 0.04,-0.42 0.09,-0.62C6.28,8.13 5,9.92 5,12c0,2.76 2.24,5 5,5v2H7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.56,5.51C11.91,5.54 13,6.64 13,8c0,0.75 -0.33,1.41 -0.85,1.87l0.59,1.62l0.94,-0.34l0.34,0.94l1.88,-0.68l-0.34,-0.94l0.94,-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,8m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blender.xml b/compose/material/material/icons/generator/raw-icons/filled/blender.xml
deleted file mode 100644
index 8d23555..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h2.23l0.64,4.13C6.74,16.05 6,17.43 6,19v1c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-1C18,17.43 17.26,16.05 16.13,15.13zM5,9V5h1.31l0.62,4H5zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,19 12,19zM14.29,14H9.72L8.33,5h7.34L14.29,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blind.xml b/compose/material/material/icons/generator/raw-icons/filled/blind.xml
deleted file mode 100644
index 803b7dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blind.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,3.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.13,7.12c-0.17,-0.35 -0.44,-0.65 -0.8,-0.85C10.72,5.91 9.99,5.93 9.4,6.24l0,-0.01L4,9.3V14h2v-3.54l1.5,-0.85C7.18,10.71 7,11.85 7,13v5.33L4.4,21.8L6,23l3,-4l0.22,-3.54L11,18v5h2v-6.5l-1.97,-2.81c-0.04,-0.52 -0.14,-1.76 0.45,-3.4c0.75,1.14 1.88,1.98 3.2,2.41L20.63,23l0.87,-0.5L16.02,13H17v-2c-0.49,0 -2.88,0.17 -4.08,-2.21"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blinds.xml b/compose/material/material/icons/generator/raw-icons/filled/blinds.xml
deleted file mode 100644
index 02afa6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blinds.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM16,9h2v2h-2V9zM14,11H6V9h8V11zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-6h8v1.82c-0.45,0.32 -0.75,0.84 -0.75,1.43c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75c0,-0.59 -0.3,-1.12 -0.75,-1.43V13h2v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blinds_closed.xml b/compose/material/material/icons/generator/raw-icons/filled/blinds_closed.xml
deleted file mode 100644
index e03dcb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blinds_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h11.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM18,11h-2V9h2V11zM14,11H6V9h8V11zM14,13v2H6v-2H14zM16,13h2v2h-2V13zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-2h8v2H6zM16,19v-2h2v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/block.xml b/compose/material/material/icons/generator/raw-icons/filled/block.xml
deleted file mode 100644
index 9fefeec..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/block.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-4.42 3.58,-8 8,-8 1.85,0 3.55,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4,13.85 4,12zM12,20c-1.85,0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20,10.15 20,12c0,4.42 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bloodtype.xml b/compose/material/material/icons/generator/raw-icons/filled/bloodtype.xml
deleted file mode 100644
index 1452af0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bloodtype.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM15,18H9v-2h6V18zM15,13h-2v2h-2v-2H9v-2h2V9h2v2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bluetooth.xml b/compose/material/material/icons/generator/raw-icons/filled/bluetooth.xml
deleted file mode 100644
index 1e9621b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_audio.xml b/compose/material/material/icons/generator/raw-icons/filled/bluetooth_audio.xml
deleted file mode 100644
index 3ac2dc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_audio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33 0,-0.82 -0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_connected.xml b/compose/material/material/icons/generator/raw-icons/filled/bluetooth_connected.xml
deleted file mode 100644
index 95db32a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l-2,-2 -2,2 2,2 2,-2zM17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88zM19,10l-2,2 2,2 2,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/bluetooth_disabled.xml
deleted file mode 100644
index 111179b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.88,1.88 -1.6,1.6 1.41,1.41 3.02,-3.02L12,2h-1v5.03l2,2v-3.2zM5.41,4L4,5.41 10.59,12 5,17.59 6.41,19 11,14.41V22h1l4.29,-4.29 2.3,2.29L20,18.59 5.41,4zM13,18.17v-3.76l1.88,1.88L13,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_drive.xml b/compose/material/material/icons/generator/raw-icons/filled/bluetooth_drive.xml
deleted file mode 100644
index c584c44..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_drive.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10H4.81l1.04,-3H15V5H5.5C4.84,5 4.29,5.42 4.08,6.01L2,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8h-3C15.9,12 15,11.1 15,10zM6.5,16C5.67,16 5,15.33 5,14.5S5.67,13 6.5,13S8,13.67 8,14.5S7.33,16 6.5,16zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.85L19.15,1h-0.5v3.79l-2.3,-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3,-2.3V11h0.5L22,8.14L19.85,6L22,3.85zM19.65,2.91l0.94,0.94l-0.94,0.94V2.91zM20.59,8.14l-0.94,0.94V7.2L20.59,8.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_searching.xml b/compose/material/material/icons/generator/raw-icons/filled/bluetooth_searching.xml
deleted file mode 100644
index 5f9dd59..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bluetooth_searching.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33 0,-0.82 -0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blur_circular.xml b/compose/material/material/icons/generator/raw-icons/filled/blur_circular.xml
deleted file mode 100644
index 4945404..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blur_circular.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM10,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM7,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM7,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM17,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM14,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blur_linear.xml b/compose/material/material/icons/generator/raw-icons/filled/blur_linear.xml
deleted file mode 100644
index 23a6781..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blur_linear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM9,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM3,21h18v-2L3,19v2zM5,9.5c0.83,0 1.5,-0.67 1.5,-1.5S5.83,6.5 5,6.5 3.5,7.17 3.5,8 4.17,9.5 5,9.5zM5,13.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM17,16.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,3v2h18L21,3L3,3zM17,8.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,12.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM13,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blur_off.xml b/compose/material/material/icons/generator/raw-icons/filled/blur_off.xml
deleted file mode 100644
index 5f408f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blur_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13.8,11.48l0.2,0.02c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5l0.02,0.2c0.09,0.67 0.61,1.19 1.28,1.28zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM18,15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM18,11c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM18,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM2.5,5.27l3.78,3.78L6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l2.81,2.81c-0.71,0.11 -1.25,0.73 -1.25,1.47 0,0.83 0.67,1.5 1.5,1.5 0.74,0 1.36,-0.54 1.47,-1.25l2.81,2.81c-0.09,-0.03 -0.18,-0.06 -0.28,-0.06 -0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l3.78,3.78L20,20.23 3.77,4 2.5,5.27zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/blur_on.xml b/compose/material/material/icons/generator/raw-icons/filled/blur_on.xml
deleted file mode 100644
index 121ad7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/blur_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM6,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bolt.xml b/compose/material/material/icons/generator/raw-icons/filled/bolt.xml
deleted file mode 100644
index 0c51762..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h-1l1,-7H7.5c-0.58,0 -0.57,-0.32 -0.38,-0.66 0.19,-0.34 0.05,-0.08 0.07,-0.12C8.48,10.94 10.42,7.54 13,3h1l-1,7h3.5c0.49,0 0.56,0.33 0.47,0.51l-0.07,0.15C12.96,17.55 11,21 11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/book.xml b/compose/material/material/icons/generator/raw-icons/filled/book.xml
deleted file mode 100644
index 4a4cbea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/book.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2zM6,4h5v8l-2.5,-1.5L6,12V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/book_online.xml b/compose/material/material/icons/generator/raw-icons/filled/book_online.xml
deleted file mode 100644
index 75849a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/book_online.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM7,18V6h10v12H7zM16,11V9.14C16,8.51 15.55,8 15,8H9C8.45,8 8,8.51 8,9.14l0,1.96c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1l0,1.76C8,15.49 8.45,16 9,16h6c0.55,0 1,-0.51 1,-1.14V13c-0.55,0 -1,-0.45 -1,-1C15,11.45 15.45,11 16,11zM12.5,14.5h-1v-1h1V14.5zM12.5,12.5h-1v-1h1V12.5zM12.5,10.5h-1v-1h1V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bookmark.xml b/compose/material/material/icons/generator/raw-icons/filled/bookmark.xml
deleted file mode 100644
index 7e480e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bookmark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3H7c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bookmark_add.xml b/compose/material/material/icons/generator/raw-icons/filled/bookmark_add.xml
deleted file mode 100644
index 48b41e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bookmark_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7zM19,21l-7,-3l-7,3V5c0,-1.1 0.9,-2 2,-2l7,0c-0.63,0.84 -1,1.87 -1,3c0,2.76 2.24,5 5,5c0.34,0 0.68,-0.03 1,-0.1V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bookmark_added.xml b/compose/material/material/icons/generator/raw-icons/filled/bookmark_added.xml
deleted file mode 100644
index 79ada3c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bookmark_added.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,21l-7,-3l-7,3V5c0,-1.1 0.9,-2 2,-2l7,0c-0.63,0.84 -1,1.87 -1,3c0,2.76 2.24,5 5,5c0.34,0 0.68,-0.03 1,-0.1V21zM17.83,9L15,6.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L17.83,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bookmark_border.xml b/compose/material/material/icons/generator/raw-icons/filled/bookmark_border.xml
deleted file mode 100644
index 61dc4cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bookmark_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bookmark_remove.xml b/compose/material/material/icons/generator/raw-icons/filled/bookmark_remove.xml
deleted file mode 100644
index a9c861d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bookmark_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-6V5h6V7zM19,10.9c-0.32,0.07 -0.66,0.1 -1,0.1c-2.76,0 -5,-2.24 -5,-5c0,-1.13 0.37,-2.16 1,-3L7,3C5.9,3 5,3.9 5,5v16l7,-3l7,3V10.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bookmarks.xml b/compose/material/material/icons/generator/raw-icons/filled/bookmarks.xml
deleted file mode 100644
index bcb76cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bookmarks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18l2,1V3c0,-1.1 -0.9,-2 -2,-2H8.99C7.89,1 7,1.9 7,3h10c1.1,0 2,0.9 2,2v13zM15,5H5c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3V7c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_all.xml b/compose/material/material/icons/generator/raw-icons/filled/border_all.xml
deleted file mode 100644
index 55d7d5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18L21,3L3,3zM11,19L5,19v-6h6v6zM11,11L5,11L5,5h6v6zM19,19h-6v-6h6v6zM19,11h-6L13,5h6v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_bottom.xml b/compose/material/material/icons/generator/raw-icons/filled/border_bottom.xml
deleted file mode 100644
index 4664baa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11L7,11v2h2v-2zM13,15h-2v2h2v-2zM9,3L7,3v2h2L9,3zM13,11h-2v2h2v-2zM5,3L3,3v2h2L5,3zM13,7h-2v2h2L13,7zM17,11h-2v2h2v-2zM13,3h-2v2h2L13,3zM17,3h-2v2h2L17,3zM19,13h2v-2h-2v2zM19,17h2v-2h-2v2zM5,7L3,7v2h2L5,7zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM5,11L3,11v2h2v-2zM3,21h18v-2L3,19v2zM5,15L3,15v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_clear.xml b/compose/material/material/icons/generator/raw-icons/filled/border_clear.xml
deleted file mode 100644
index 0c48776..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM7,21h2v-2L7,19v2zM11,17h2v-2h-2v2zM11,21h2v-2h-2v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM11,13h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM11,9h2L13,7h-2v2zM19,3v2h2L21,3h-2zM11,5h2L13,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_color.xml b/compose/material/material/icons/generator/raw-icons/filled/border_color.xml
deleted file mode 100644
index ba618ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_color.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,24H2v-4h20V24zM13.06,5.19l3.75,3.75L7.75,18H4v-3.75L13.06,5.19zM17.88,7.87l-3.75,-3.75l1.83,-1.83c0.39,-0.39 1.02,-0.39 1.41,0l2.34,2.34c0.39,0.39 0.39,1.02 0,1.41L17.88,7.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_horizontal.xml b/compose/material/material/icons/generator/raw-icons/filled/border_horizontal.xml
deleted file mode 100644
index b9a7572..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM7,21h2v-2L7,19v2zM5,3L3,3v2h2L5,3zM9,3L7,3v2h2L9,3zM17,3h-2v2h2L17,3zM13,7h-2v2h2L13,7zM13,3h-2v2h2L13,3zM19,17h2v-2h-2v2zM11,21h2v-2h-2v2zM3,13h18v-2L3,11v2zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM11,17h2v-2h-2v2zM15,21h2v-2h-2v2zM19,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_inner.xml b/compose/material/material/icons/generator/raw-icons/filled/border_inner.xml
deleted file mode 100644
index 3d6be42..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_inner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM7,21h2v-2L7,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM5,3L3,3v2h2L5,3zM17,3h-2v2h2L17,3zM19,9h2L21,7h-2v2zM19,3v2h2L21,3h-2zM15,21h2v-2h-2v2zM13,3h-2v8L3,11v2h8v8h2v-8h8v-2h-8L13,3zM19,21h2v-2h-2v2zM19,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_left.xml b/compose/material/material/icons/generator/raw-icons/filled/border_left.xml
deleted file mode 100644
index 5986173..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2v-2h-2v2zM11,17h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2zM11,13h2v-2h-2v2zM7,21h2v-2L7,19v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM3,21h2L5,3L3,3v18zM19,9h2L21,7h-2v2zM15,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_outer.xml b/compose/material/material/icons/generator/raw-icons/filled/border_outer.xml
deleted file mode 100644
index 02e7c70..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_outer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v2h2L13,7zM13,11h-2v2h2v-2zM17,11h-2v2h2v-2zM3,3v18h18L21,3L3,3zM19,19L5,19L5,5h14v14zM13,15h-2v2h2v-2zM9,11L7,11v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_right.xml b/compose/material/material/icons/generator/raw-icons/filled/border_right.xml
deleted file mode 100644
index 4bb0955..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM3,5h2L5,3L3,3v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM3,21h2v-2L3,19v2zM11,21h2v-2h-2v2zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM15,13h2v-2h-2v2zM19,3v18h2L21,3h-2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM11,13h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_style.xml b/compose/material/material/icons/generator/raw-icons/filled/border_style.xml
deleted file mode 100644
index c80ce5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM11,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM3,3v18h2L5,5h16L21,3L3,3zM19,9h2L21,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_top.xml b/compose/material/material/icons/generator/raw-icons/filled/border_top.xml
deleted file mode 100644
index 34c32f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM11,13h2v-2h-2v2zM11,21h2v-2h-2v2zM3,17h2v-2L3,15v2zM3,21h2v-2L3,19v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,13h2v-2h-2v2zM3,3v2h18L21,3L3,3zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM11,9h2L13,7h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/border_vertical.xml b/compose/material/material/icons/generator/raw-icons/filled/border_vertical.xml
deleted file mode 100644
index 0a896af..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/border_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM3,13h2v-2L3,11v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM7,5h2L9,3L7,3v2zM19,17h2v-2h-2v2zM11,21h2L13,3h-2v18zM19,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM15,5h2L17,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/boy.xml b/compose/material/material/icons/generator/raw-icons/filled/boy.xml
deleted file mode 100644
index 0e61c95..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/boy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,20v-5h1v-4.5c0,-1.1 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.9 -2,2V15h1v5H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/branding_watermark.xml b/compose/material/material/icons/generator/raw-icons/filled/branding_watermark.xml
deleted file mode 100644
index 79e9427..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/branding_watermark.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19h-9v-6h9v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/breakfast_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/breakfast_dining.xml
deleted file mode 100644
index 26e6fff..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/breakfast_dining.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3H6C3.79,3 2,4.79 2,7c0,1.48 0.81,2.75 2,3.45V19c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-8.55c1.19,-0.69 2,-1.97 2,-3.45C22,4.79 20.21,3 18,3zM14,15h-4v-4h4V15z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_1.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_1.xml
deleted file mode 100644
index 5d957c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_2.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_2.xml
deleted file mode 100644
index ed61adf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,2c-1.82,0 -3.53,0.5 -5,1.35C7.99,5.08 10,8.3 10,12s-2.01,6.92 -5,8.65C6.47,21.5 8.18,22 10,22c5.52,0 10,-4.48 10,-10S15.52,2 10,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_3.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_3.xml
deleted file mode 100644
index 847d29d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,2c-1.05,0 -2.05,0.16 -3,0.46 4.06,1.27 7,5.06 7,9.54 0,4.48 -2.94,8.27 -7,9.54 0.95,0.3 1.95,0.46 3,0.46 5.52,0 10,-4.48 10,-10S14.52,2 9,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_4.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_4.xml
deleted file mode 100644
index 38668e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69L23.31,12 20,8.69zM12,18c-0.89,0 -1.74,-0.2 -2.5,-0.55C11.56,16.5 13,14.42 13,12s-1.44,-4.5 -3.5,-5.45C10.26,6.2 11.11,6 12,6c3.31,0 6,2.69 6,6s-2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_5.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_5.xml
deleted file mode 100644
index 7573d6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_6.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_6.xml
deleted file mode 100644
index ca8893c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18V6c3.31,0 6,2.69 6,6s-2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_7.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_7.xml
deleted file mode 100644
index 5c2a285..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_auto.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_auto.xml
deleted file mode 100644
index 5d6c10e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.85,12.65h2.3L12,9l-1.15,3.65zM20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69L23.31,12 20,8.69zM14.3,16l-0.7,-2h-3.2l-0.7,2H7.8L11,7h2l3.2,9h-1.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_high.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_high.xml
deleted file mode 100644
index 5c2a285..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_low.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_low.xml
deleted file mode 100644
index 7573d6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brightness_medium.xml b/compose/material/material/icons/generator/raw-icons/filled/brightness_medium.xml
deleted file mode 100644
index ca8893c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brightness_medium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18V6c3.31,0 6,2.69 6,6s-2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/broadcast_on_home.xml b/compose/material/material/icons/generator/raw-icons/filled/broadcast_on_home.xml
deleted file mode 100644
index 83c5ebb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/broadcast_on_home.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2H4v2h16v2.59c0.73,0.29 1.4,0.69 2,1.17V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9H3c-0.5,0 -1,0.5 -1,1v9c0,0.5 0.5,1 1,1h5c0.5,0 1,-0.5 1,-1v-9C9,9.5 8.5,9 8,9zM7,18H4v-7h3V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,16.97c0.3,-0.23 0.5,-0.57 0.5,-0.97c0,-0.69 -0.56,-1.25 -1.25,-1.25s-1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5V16.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13.5c1.38,0 2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16c0,-2.21 -1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77C14.5,14.62 15.62,13.5 17,13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/broadcast_on_personal.xml b/compose/material/material/icons/generator/raw-icons/filled/broadcast_on_personal.xml
deleted file mode 100644
index ddc8dafc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/broadcast_on_personal.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8c0.7,0 1.38,0.1 2.02,0.27L12,3L4,9v12h6.76C9.66,19.63 9,17.89 9,16C9,11.58 12.58,8 17,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14.75c-0.69,0 -1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5v-5.03c0.3,-0.23 0.5,-0.57 0.5,-0.97C18.25,15.31 17.69,14.75 17,14.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16C21,13.79 19.21,12 17,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/broken_image.xml b/compose/material/material/icons/generator/raw-icons/filled/broken_image.xml
deleted file mode 100644
index 0636b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/broken_image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5v6.59l-3,-3.01 -4,4.01 -4,-4 -4,4 -3,-3.01L3,5c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2zM18,11.42l3,3.01L21,19c0,1.1 -0.9,2 -2,2L5,21c-1.1,0 -2,-0.9 -2,-2v-6.58l3,2.99 4,-4 4,4 4,-3.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/browse_gallery.xml b/compose/material/material/icons/generator/raw-icons/filled/browse_gallery.xml
deleted file mode 100644
index 68b17c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/browse_gallery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9S13.97,3 9,3zM11.79,16.21L8,12.41V7h2v4.59l3.21,3.21L11.79,16.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,3.52v2.16C20.36,6.8 22,9.21 22,12c0,2.79 -1.64,5.2 -4.01,6.32v2.16C21.48,19.24 24,15.91 24,12C24,8.09 21.48,4.76 17.99,3.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/browser_not_supported.xml b/compose/material/material/icons/generator/raw-icons/filled/browser_not_supported.xml
deleted file mode 100644
index 1ff1fbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/browser_not_supported.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6v10.5l1.95,1.95C20.98,18.3 21,18.15 21,18V6c0,-1.1 -0.9,-2 -2,-2H6.5l2,2H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1 0.9,2 2,2h12.36l2.06,2.06l1.27,-1.27L3.22,3.32zM15,18H5V7.64L15.36,18H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/browser_updated.xml b/compose/material/material/icons/generator/raw-icons/filled/browser_updated.xml
deleted file mode 100644
index 44147da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/browser_updated.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13v3c0,1.1 -0.9,2 -2,2h-3l1,1v2H6v-2l1,-1H4c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2l8,0v2L4,5v11h16v-3H22zM15,15l-5,-5h4V3h2v7h4L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brunch_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/brunch_dining.xml
deleted file mode 100644
index 2fe03c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brunch_dining.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h2V4h-2V8zM15.51,22H2.49C2.22,22 2,21.78 2,21.5V20h14v1.5C16,21.78 15.78,22 15.51,22zM18,15.89l-0.4,-0.42c-1.02,-1.08 -1.6,-2.52 -1.6,-4V2h6v9.51c0,1.46 -0.54,2.87 -1.53,3.94L20,15.97V20h2v2h-4V15.89zM7,16v-2h4v2h4.5c0.28,0 0.5,0.22 0.5,0.5v1c0,0.28 -0.22,0.5 -0.5,0.5h-13C2.22,18 2,17.78 2,17.5v-1C2,16.22 2.22,16 2.5,16H7z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/brush.xml b/compose/material/material/icons/generator/raw-icons/filled/brush.xml
deleted file mode 100644
index 4f14c93..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/brush.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14c-1.66,0 -3,1.34 -3,3 0,1.31 -1.16,2 -2,2 0.92,1.22 2.49,2 4,2 2.21,0 4,-1.79 4,-4 0,-1.66 -1.34,-3 -3,-3zM20.71,4.63l-1.34,-1.34c-0.39,-0.39 -1.02,-0.39 -1.41,0L9,12.25 11.75,15l8.96,-8.96c0.39,-0.39 0.39,-1.02 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bubble_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/bubble_chart.xml
deleted file mode 100644
index db1a432..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bubble_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.2,14.4m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.8,18m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,8.8m-4.8,0a4.8,4.8 0,1 1,9.6 0a4.8,4.8 0,1 1,-9.6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bug_report.xml b/compose/material/material/icons/generator/raw-icons/filled/bug_report.xml
deleted file mode 100644
index 7853f61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bug_report.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-2.81c-0.45,-0.78 -1.07,-1.45 -1.82,-1.96L17,4.41 15.59,3l-2.17,2.17C12.96,5.06 12.49,5 12,5c-0.49,0 -0.96,0.06 -1.41,0.17L8.41,3 7,4.41l1.62,1.63C7.88,6.55 7.26,7.22 6.81,8L4,8v2h2.09c-0.05,0.33 -0.09,0.66 -0.09,1v1L4,12v2h2v1c0,0.34 0.04,0.67 0.09,1L4,16v2h2.81c1.04,1.79 2.97,3 5.19,3s4.15,-1.21 5.19,-3L20,18v-2h-2.09c0.05,-0.33 0.09,-0.66 0.09,-1v-1h2v-2h-2v-1c0,-0.34 -0.04,-0.67 -0.09,-1L20,10L20,8zM14,16h-4v-2h4v2zM14,12h-4v-2h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/build.xml b/compose/material/material/icons/generator/raw-icons/filled/build.xml
deleted file mode 100644
index f82c622..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/build.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.7,19l-9.1,-9.1c0.9,-2.3 0.4,-5 -1.5,-6.9 -2,-2 -5,-2.4 -7.4,-1.3L9,6 6,9 1.6,4.7C0.4,7.1 0.9,10.1 2.9,12.1c1.9,1.9 4.6,2.4 6.9,1.5l9.1,9.1c0.4,0.4 1,0.4 1.4,0l2.3,-2.3c0.5,-0.4 0.5,-1.1 0.1,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/build_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/build_circle.xml
deleted file mode 100644
index 7bf0257..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/build_circle.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM16.9,15.49l-1.4,1.4c-0.2,0.2 -0.51,0.2 -0.71,0l-3.41,-3.41c-1.22,0.43 -2.64,0.17 -3.62,-0.81c-1.11,-1.11 -1.3,-2.79 -0.59,-4.1l2.35,2.35l1.41,-1.41L8.58,7.17c1.32,-0.71 2.99,-0.52 4.1,0.59c0.98,0.98 1.24,2.4 0.81,3.62l3.41,3.41C17.09,14.98 17.09,15.3 16.9,15.49z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bungalow.xml b/compose/material/material/icons/generator/raw-icons/filled/bungalow.xml
deleted file mode 100644
index f9bd865..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bungalow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4.2,15.5l1.7,1.06L7,14.8V21h4v-5h2v5h4v-6.21l1.1,1.77l1.7,-1.06L12,3zM13,14h-2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/burst_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/burst_mode.xml
deleted file mode 100644
index e2bbd9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/burst_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h2v14L1,19zM5,5h2v14L5,19zM22,5L10,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L23,6c0,-0.55 -0.45,-1 -1,-1zM11,17l2.5,-3.15L15.29,16l2.5,-3.22L21,17L11,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/bus_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/bus_alert.xml
deleted file mode 100644
index e334ed5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/bus_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1a7,7 0,0 0,-5.78 3.05l0.02,-0.03C9.84,4 9.42,4 9,4c-4.42,0 -8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22L2,22a1,1 0,0 0,1 1h1a1,1 0,0 0,1 -1v-1h8v1a1,1 0,0 0,1 1h1a1,1 0,0 0,1 -1v-1.78c0.61,-0.55 1,-1.34 1,-2.22v-3.08A7,7 0,0 0,16 1zM4.5,19a1.5,1.5 0,1 1,0 -3,1.5 1.5,0 0,1 0,3zM3,13L3,8h6c0,1.96 0.81,3.73 2.11,5L3,13zM13.5,19a1.5,1.5 0,1 1,0 -3,1.5 1.5,0 0,1 0,3zM16,13a5,5 0,1 1,0 -10,5 5,0 0,1 0,10zM15,4h2v5h-2zM15,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/business.xml b/compose/material/material/icons/generator/raw-icons/filled/business.xml
deleted file mode 100644
index 23ee37d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/business.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,3L2,3v18h20L22,7L12,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/business_center.xml b/compose/material/material/icons/generator/raw-icons/filled/business_center.xml
deleted file mode 100644
index 708fa59..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/business_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16v-1L3.01,15L3,19c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2v-4h-7v1h-4zM20,7h-4.01L15.99,5l-2,-2h-4l-2,2v2L4,7c-1.1,0 -2,0.9 -2,2v3c0,1.11 0.89,2 2,2h6v-2h4v2h6c1.1,0 2,-0.9 2,-2L22,9c0,-1.1 -0.9,-2 -2,-2zM14,7h-4L10,5h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cabin.xml b/compose/material/material/icons/generator/raw-icons/filled/cabin.xml
deleted file mode 100644
index 3aeca47..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cabin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10zM12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM13.94,7h-3.89L12,5.52L13.94,7zM7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9zM18,13v2H6v-2H18zM6,19v-2h12v2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cable.xml b/compose/material/material/icons/generator/raw-icons/filled/cable.xml
deleted file mode 100644
index 04071ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1h-1v4c0,0.55 0.45,1 1,1h1v7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V7c0,-2.21 -1.79,-4 -4,-4S5,4.79 5,7v7H4c-0.55,0 -1,0.45 -1,1v4h1v1c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-1h1v-4c0,-0.55 -0.45,-1 -1,-1H7V7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v10c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-7h1c0.55,0 1,-0.45 1,-1V5H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cached.xml b/compose/material/material/icons/generator/raw-icons/filled/cached.xml
deleted file mode 100644
index e4d5311..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cached.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8l-4,4h3c0,3.31 -2.69,6 -6,6 -1.01,0 -1.97,-0.25 -2.8,-0.7l-1.46,1.46C8.97,19.54 10.43,20 12,20c4.42,0 8,-3.58 8,-8h3l-4,-4zM6,12c0,-3.31 2.69,-6 6,-6 1.01,0 1.97,0.25 2.8,0.7l1.46,-1.46C15.03,4.46 13.57,4 12,4c-4.42,0 -8,3.58 -8,8H1l4,4 4,-4H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cake.xml b/compose/material/material/icons/generator/raw-icons/filled/cake.xml
deleted file mode 100644
index 4150bf8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c1.11,0 2,-0.9 2,-2 0,-0.38 -0.1,-0.73 -0.29,-1.03L12,0l-1.71,2.97c-0.19,0.3 -0.29,0.65 -0.29,1.03 0,1.1 0.9,2 2,2zM16.6,15.99l-1.07,-1.07 -1.08,1.07c-1.3,1.3 -3.58,1.31 -4.89,0l-1.07,-1.07 -1.09,1.07C6.75,16.64 5.88,17 4.96,17c-0.73,0 -1.4,-0.23 -1.96,-0.61L3,21c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-4.61c-0.56,0.38 -1.23,0.61 -1.96,0.61 -0.92,0 -1.79,-0.36 -2.44,-1.01zM18,9h-5L13,7h-2v2L6,9c-1.66,0 -3,1.34 -3,3v1.54c0,1.08 0.88,1.96 1.96,1.96 0.52,0 1.02,-0.2 1.38,-0.57l2.14,-2.13 2.13,2.13c0.74,0.74 2.03,0.74 2.77,0l2.14,-2.13 2.13,2.13c0.37,0.37 0.86,0.57 1.38,0.57 1.08,0 1.96,-0.88 1.96,-1.96L20.99,12C21,10.34 19.66,9 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/calculate.xml b/compose/material/material/icons/generator/raw-icons/filled/calculate.xml
deleted file mode 100644
index d6a3574..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/calculate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06,-1.06l1.41,-1.41L13.03,7.06zM6.25,7.72h5v1.5h-5V7.72zM11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zM18,17.25h-5v-1.5h5V17.25zM18,14.75h-5v-1.5h5V14.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/calendar_month.xml b/compose/material/material/icons/generator/raw-icons/filled/calendar_month.xml
deleted file mode 100644
index 964ec03..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/calendar_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,20H5V10h14V20zM9,14H7v-2h2V14zM13,14h-2v-2h2V14zM17,14h-2v-2h2V14zM9,18H7v-2h2V18zM13,18h-2v-2h2V18zM17,18h-2v-2h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/calendar_today.xml b/compose/material/material/icons/generator/raw-icons/filled/calendar_today.xml
deleted file mode 100644
index 1cf969c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/calendar_today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-1L19,1h-2v2L7,3L7,1L5,1v2L4,3c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,21L4,21L4,8h16v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/calendar_view_day.xml b/compose/material/material/icons/generator/raw-icons/filled/calendar_view_day.xml
deleted file mode 100644
index c21ecc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/calendar_view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v2L3,19zM3,10h18v5L3,15zM3,6h18v2L3,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/calendar_view_month.xml b/compose/material/material/icons/generator/raw-icons/filled/calendar_view_month.xml
deleted file mode 100644
index 2cbab23..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/calendar_view_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM8,11H4V6h4V11zM14,11h-4V6h4V11zM20,11h-4V6h4V11zM8,18H4v-5h4V18zM14,18h-4v-5h4V18zM20,18h-4v-5h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/calendar_view_week.xml b/compose/material/material/icons/generator/raw-icons/filled/calendar_view_week.xml
deleted file mode 100644
index a22cb40..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/calendar_view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM13,6h2.5v12H13V6zM11,18H8.5V6H11V18zM4,6h2.5v12H4V6zM20,18h-2.5V6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call.xml b/compose/material/material/icons/generator/raw-icons/filled/call.xml
deleted file mode 100644
index 567e303..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.01,15.38c-1.23,0 -2.42,-0.2 -3.53,-0.56 -0.35,-0.12 -0.74,-0.03 -1.01,0.24l-1.57,1.97c-2.83,-1.35 -5.48,-3.9 -6.89,-6.83l1.95,-1.66c0.27,-0.28 0.35,-0.67 0.24,-1.02 -0.37,-1.11 -0.56,-2.3 -0.56,-3.53 0,-0.54 -0.45,-0.99 -0.99,-0.99H4.19C3.65,3 3,3.24 3,3.99 3,13.28 10.73,21 20.01,21c0.71,0 0.99,-0.63 0.99,-1.18v-3.45c0,-0.54 -0.45,-0.99 -0.99,-0.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_end.xml b/compose/material/material/icons/generator/raw-icons/filled/call_end.xml
deleted file mode 100644
index dd6ff40..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-1.6,0 -3.15,0.25 -4.6,0.72v3.1c0,0.39 -0.23,0.74 -0.56,0.9 -0.98,0.49 -1.87,1.12 -2.66,1.85 -0.18,0.18 -0.43,0.28 -0.7,0.28 -0.28,0 -0.53,-0.11 -0.71,-0.29L0.29,13.08c-0.18,-0.17 -0.29,-0.42 -0.29,-0.7 0,-0.28 0.11,-0.53 0.29,-0.71C3.34,8.78 7.46,7 12,7s8.66,1.78 11.71,4.67c0.18,0.18 0.29,0.43 0.29,0.71 0,0.28 -0.11,0.53 -0.29,0.71l-2.48,2.48c-0.18,0.18 -0.43,0.29 -0.71,0.29 -0.27,0 -0.52,-0.11 -0.7,-0.28 -0.79,-0.74 -1.69,-1.36 -2.67,-1.85 -0.33,-0.16 -0.56,-0.5 -0.56,-0.9v-3.1C15.15,9.25 13.6,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_made.xml b/compose/material/material/icons/generator/raw-icons/filled/call_made.xml
deleted file mode 100644
index 2183fbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_made.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v2h6.59L4,18.59 5.41,20 17,8.41V15h2V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_merge.xml b/compose/material/material/icons/generator/raw-icons/filled/call_merge.xml
deleted file mode 100644
index 360a589..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_merge.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20.41L18.41,19 15,15.59 13.59,17 17,20.41zM7.5,8H11v5.59L5.59,19 7,20.41l6,-6V8h3.5L12,3.5 7.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_missed.xml b/compose/material/material/icons/generator/raw-icons/filled/call_missed.xml
deleted file mode 100644
index 28958d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,7L12,14.59 6.41,9H11V7H3v8h2v-4.59l7,7 9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_missed_outgoing.xml b/compose/material/material/icons/generator/raw-icons/filled/call_missed_outgoing.xml
deleted file mode 100644
index 8a5e2fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_missed_outgoing.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8.41l9,9l7,-7V15h2V7h-8v2h4.59L12,14.59L4.41,7L3,8.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_received.xml b/compose/material/material/icons/generator/raw-icons/filled/call_received.xml
deleted file mode 100644
index 05192f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_received.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5.41L18.59,4 7,15.59V9H5v10h10v-2H8.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_split.xml b/compose/material/material/icons/generator/raw-icons/filled/call_split.xml
deleted file mode 100644
index cd42f43..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_split.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4l2.29,2.29 -2.88,2.88 1.42,1.42 2.88,-2.88L20,10L20,4zM10,4L4,4v6l2.29,-2.29 4.71,4.7L11,20h2v-8.41l-5.29,-5.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/call_to_action.xml b/compose/material/material/icons/generator/raw-icons/filled/call_to_action.xml
deleted file mode 100644
index c7576c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/call_to_action.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19v-3h18v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera.xml b/compose/material/material/icons/generator/raw-icons/filled/camera.xml
deleted file mode 100644
index c0d3501..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.4,10.5l4.77,-8.26C13.47,2.09 12.75,2 12,2c-2.4,0 -4.6,0.85 -6.32,2.25l3.66,6.35 0.06,-0.1zM21.54,9c-0.92,-2.92 -3.15,-5.26 -6,-6.34L11.88,9h9.66zM21.8,10h-7.49l0.29,0.5 4.76,8.25C21,16.97 22,14.61 22,12c0,-0.69 -0.07,-1.35 -0.2,-2zM8.54,12l-3.9,-6.75C3.01,7.03 2,9.39 2,12c0,0.69 0.07,1.35 0.2,2h7.49l-1.15,-2zM2.46,15c0.92,2.92 3.15,5.26 6,6.34L12.12,15L2.46,15zM13.73,15l-3.9,6.76c0.7,0.15 1.42,0.24 2.17,0.24 2.4,0 4.6,-0.85 6.32,-2.25l-3.66,-6.35 -0.93,1.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/camera_alt.xml
deleted file mode 100644
index 13186de..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera_enhance.xml b/compose/material/material/icons/generator/raw-icons/filled/camera_enhance.xml
deleted file mode 100644
index a37e39d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera_enhance.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2h-3.17L15,3L9,3zM12,18c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17l1.25,-2.75L16,13l-2.75,-1.25L12,9l-1.25,2.75L8,13l2.75,1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera_front.xml b/compose/material/material/icons/generator/raw-icons/filled/camera_front.xml
deleted file mode 100644
index ed81114..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20L5,20v2h5v2l3,-3 -3,-3v2zM14,20v2h5v-2h-5zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -1.99,0.9 -1.99,2S10.9,8 12,8zM17,0L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2c0,-1.1 -0.9,-2 -2,-2zM7,2h10v10.5c0,-1.67 -3.33,-2.5 -5,-2.5s-5,0.83 -5,2.5L7,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera_indoor.xml b/compose/material/material/icons/generator/raw-icons/filled/camera_indoor.xml
deleted file mode 100644
index 9eafa11..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera_indoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM16,16.06L14,15v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v1l2,-1.06V16.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera_outdoor.xml b/compose/material/material/icons/generator/raw-icons/filled/camera_outdoor.xml
deleted file mode 100644
index f8e2f36..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera_outdoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1l2,1.06v-4.12L18,14V13zM12,3L4,9v12h16v-2H6v-9l6,-4.5l6,4.5v1h2V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera_rear.xml b/compose/material/material/icons/generator/raw-icons/filled/camera_rear.xml
deleted file mode 100644
index d56179e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera_rear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20L5,20v2h5v2l3,-3 -3,-3v2zM14,20v2h5v-2h-5zM17,0L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2c0,-1.1 -0.9,-2 -2,-2zM12,6c-1.11,0 -2,-0.9 -2,-2s0.89,-2 1.99,-2 2,0.9 2,2C14,5.1 13.1,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/camera_roll.xml b/compose/material/material/icons/generator/raw-icons/filled/camera_roll.xml
deleted file mode 100644
index 21fa9c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/camera_roll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5c0,-1.1 -0.9,-2 -2,-2h-1L11,2c0,-0.55 -0.45,-1 -1,-1L6,1c-0.55,0 -1,0.45 -1,1v1L4,3c-1.1,0 -2,0.9 -2,2v15c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2h8L22,5h-8zM12,18h-2v-2h2v2zM12,9h-2L10,7h2v2zM16,18h-2v-2h2v2zM16,9h-2L14,7h2v2zM20,18h-2v-2h2v2zM20,9h-2L18,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cameraswitch.xml b/compose/material/material/icons/generator/raw-icons/filled/cameraswitch.xml
deleted file mode 100644
index 6264f1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cameraswitch.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h-1l-1,-1h-4L9,7H8C6.9,7 6,7.9 6,9v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V9C18,7.9 17.1,7 16,7zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.57,0.51l4.48,4.48V2.04c4.72,0.47 8.48,4.23 8.95,8.95c0,0 2,0 2,0C23.34,3.02 15.49,-1.59 8.57,0.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.95,21.96C6.23,21.49 2.47,17.73 2,13.01c0,0 -2,0 -2,0c0.66,7.97 8.51,12.58 15.43,10.48l-4.48,-4.48V21.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/campaign.xml b/compose/material/material/icons/generator/raw-icons/filled/campaign.xml
deleted file mode 100644
index 09e6986..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/campaign.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11v2h4v-2h-4zM16,17.61c0.96,0.71 2.21,1.65 3.2,2.39 0.4,-0.53 0.8,-1.07 1.2,-1.6 -0.99,-0.74 -2.24,-1.68 -3.2,-2.4 -0.4,0.54 -0.8,1.08 -1.2,1.61zM20.4,5.6c-0.4,-0.53 -0.8,-1.07 -1.2,-1.6 -0.99,0.74 -2.24,1.68 -3.2,2.4 0.4,0.53 0.8,1.07 1.2,1.6 0.96,-0.72 2.21,-1.65 3.2,-2.4zM4,9c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v4h2v-4h1l5,3L13,6L8,9L4,9zM15.5,12c0,-1.33 -0.58,-2.53 -1.5,-3.35v6.69c0.92,-0.81 1.5,-2.01 1.5,-3.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cancel.xml b/compose/material/material/icons/generator/raw-icons/filled/cancel.xml
deleted file mode 100644
index 1ab7bac..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cancel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM17,15.59L15.59,17 12,13.41 8.41,17 7,15.59 10.59,12 7,8.41 8.41,7 12,10.59 15.59,7 17,8.41 13.41,12 17,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cancel_presentation.xml b/compose/material/material/icons/generator/raw-icons/filled/cancel_presentation.xml
deleted file mode 100644
index 1c2db696..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cancel_presentation.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19.1H3V5h18v14.1zM21,3H3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,8L12,10.59 9.41,8 8,9.41 10.59,12 8,14.59 9.41,16 12,13.41 14.59,16 16,14.59 13.41,12 16,9.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cancel_schedule_send.xml b/compose/material/material/icons/generator/raw-icons/filled/cancel_schedule_send.xml
deleted file mode 100644
index a16ccf7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cancel_schedule_send.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9c-0.42,0 -0.83,0.04 -1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07,-3.46C9.59,21.19 12.71,24 16.5,24c4.14,0 7.5,-3.36 7.5,-7.5S20.64,9 16.5,9zM16.5,22c-3.03,0 -5.5,-2.47 -5.5,-5.5s2.47,-5.5 5.5,-5.5s5.5,2.47 5.5,5.5S19.53,22 16.5,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.27,14.03l-1.77,1.76l-1.77,-1.76l-0.7,0.7l1.76,1.77l-1.76,1.77l0.7,0.7l1.77,-1.76l1.77,1.76l0.7,-0.7l-1.76,-1.77l1.76,-1.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/candlestick_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/candlestick_chart.xml
deleted file mode 100644
index c2270e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/candlestick_chart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4l-2,0l0,2l-2,0l0,12l2,0l0,2l2,0l0,-2l2,0l0,-12l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8l-2,0l0,-4l-2,0l0,4l-2,0l0,7l2,0l0,5l2,0l0,-5l2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/car_crash.xml b/compose/material/material/icons/generator/raw-icons/filled/car_crash.xml
deleted file mode 100644
index 0f7a7d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/car_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,7h-1V3h1V7zM18.5,8v1h-1V8H18.5zM17.91,13c0.06,0.16 0.09,0.33 0.09,0.5c0,0.83 -0.67,1.5 -1.5,1.5S15,14.33 15,13.5c0,-0.39 0.15,-0.74 0.39,-1.01c-1.63,-0.66 -2.96,-1.91 -3.71,-3.49H5.81l1.04,-3H11c0,-0.69 0.1,-1.37 0.29,-2H6.5C5.84,4 5.29,4.42 5.08,5.01L3,11v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-6.68C19.95,12.83 18.84,13.01 17.91,13zM7.5,15C6.67,15 6,14.33 6,13.5S6.67,12 7.5,12S9,12.67 9,13.5S8.33,15 7.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/car_rental.xml b/compose/material/material/icons/generator/raw-icons/filled/car_rental.xml
deleted file mode 100644
index 0dc4410..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/car_rental.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,9H7.61C7.18,9 6.8,9.28 6.66,9.68l-1.66,5v6.81C5,21.78 5.23,22 5.5,22h1C6.78,22 7,21.78 7,21.5V20h10v1.5c0,0.28 0.22,0.5 0.5,0.5h1c0.28,0 0.5,-0.22 0.5,-0.5v-6.81l-1.66,-5C17.2,9.28 16.82,9 16.39,9zM7.78,18c-0.68,0 -1.22,-0.54 -1.22,-1.22s0.54,-1.22 1.22,-1.22S9,16.11 9,16.78S8.46,18 7.78,18zM16.22,18C15.55,18 15,17.46 15,16.78s0.54,-1.22 1.22,-1.22s1.22,0.54 1.22,1.22S16.9,18 16.22,18zM6.29,14l1.33,-4h8.78l1.33,4H6.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,3C10.41,1.83 9.3,1 8,1C6.34,1 5,2.34 5,4c0,1.65 1.34,3 3,3c1.3,0 2.41,-0.84 2.83,-2H16v2h2V5h1V3H10.83zM8,5C7.45,5 7,4.55 7,4s0.45,-1 1,-1s1,0.45 1,1S8.55,5 8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/car_repair.xml b/compose/material/material/icons/generator/raw-icons/filled/car_repair.xml
deleted file mode 100644
index 691f3ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/car_repair.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.22,12c0.68,0 1.22,-0.54 1.22,-1.22c0,-0.67 -0.54,-1.22 -1.22,-1.22S15,10.11 15,10.78C15,11.46 15.55,12 16.22,12zM6.56,10.78c0,0.67 0.54,1.22 1.22,1.22S9,11.46 9,10.78c0,-0.67 -0.54,-1.22 -1.22,-1.22S6.56,10.11 6.56,10.78zM7.61,4L6.28,8h11.43l-1.33,-4H7.61zM16.28,3c0,0 0.54,0.01 0.92,0.54c0.02,0.02 0.03,0.04 0.05,0.07c0.07,0.11 0.14,0.24 0.19,0.4C17.66,4.66 19,8.69 19,8.69v6.5c0,0.45 -0.35,0.81 -0.78,0.81h-0.44C17.35,16 17,15.64 17,15.19V14H7v1.19C7,15.64 6.65,16 6.22,16H5.78C5.35,16 5,15.64 5,15.19v-6.5c0,0 1.34,-4.02 1.55,-4.69c0.05,-0.16 0.12,-0.28 0.19,-0.4C6.77,3.58 6.78,3.56 6.8,3.54C7.18,3.01 7.72,3 7.72,3H16.28zM4,17.01h16V19h-7v3h-2v-3H4V17.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/card_giftcard.xml b/compose/material/material/icons/generator/raw-icons/filled/card_giftcard.xml
deleted file mode 100644
index d5b3e1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/card_giftcard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 11,8.76l1,-1.36 1,1.36L15.38,12 17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/card_membership.xml b/compose/material/material/icons/generator/raw-icons/filled/card_membership.xml
deleted file mode 100644
index 030c8abc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/card_membership.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h4v5l4,-2 4,2v-5h4c1.11,0 2,-0.89 2,-2L22,4c0,-1.11 -0.89,-2 -2,-2zM20,15L4,15v-2h16v2zM20,10L4,10L4,4h16v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/card_travel.xml b/compose/material/material/icons/generator/raw-icons/filled/card_travel.xml
deleted file mode 100644
index 179d890..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/card_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-3L17,4c0,-1.11 -0.89,-2 -2,-2L9,2c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM9,4h6v2L9,6L9,4zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h3v2h2L9,8h6v2h2L17,8h3v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/carpenter.xml b/compose/material/material/icons/generator/raw-icons/filled/carpenter.xml
deleted file mode 100644
index eb9516a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/carpenter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78 -0.78,2.05 0,2.83l1.41,1.41c0.78,0.78 2.05,0.78 2.83,0l4.24,-4.24C20.51,16.28 20.51,15.01 19.73,14.23zM14.07,19.88l-1.41,-1.41l4.24,-4.24l1.41,1.41L14.07,19.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cases.xml b/compose/material/material/icons/generator/raw-icons/filled/cases.xml
deleted file mode 100644
index 94a7cf8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cases.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6L18,4l-2,-2h-5L9,4v2L5,6v11s1,2 2,2h13s2,-0.98 2,-2L22,6h-4zM4,9L2,9v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2L4,20L4,9zM11,5c0,-0.55 0.53,-1 1,-1h3c0.46,0 1,0.54 1,1v1h-5L11,5zM5,6h17v11c0,1.1 -0.9,2 -2,2L7,19c-1.1,0 -2,-0.9 -2,-2L5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/casino.xml b/compose/material/material/icons/generator/raw-icons/filled/casino.xml
deleted file mode 100644
index cd14a3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/casino.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM7.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,15 7.5,15s1.5,0.67 1.5,1.5S8.33,18 7.5,18zM7.5,9C6.67,9 6,8.33 6,7.5S6.67,6 7.5,6 9,6.67 9,7.5 8.33,9 7.5,9zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16.5,9c-0.83,0 -1.5,-0.67 -1.5,-1.5S15.67,6 16.5,6s1.5,0.67 1.5,1.5S17.33,9 16.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cast.xml b/compose/material/material/icons/generator/raw-icons/filled/cast.xml
deleted file mode 100644
index dceb6e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cast_connected.xml b/compose/material/material/icons/generator/raw-icons/filled/cast_connected.xml
deleted file mode 100644
index 0e44ec6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cast_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM19,7L5,7v1.63c3.96,1.28 7.09,4.41 8.37,8.37L19,17L19,7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11zM21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cast_for_education.xml b/compose/material/material/icons/generator/raw-icons/filled/cast_for_education.xml
deleted file mode 100644
index b5179df..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cast_for_education.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v3h2V5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3zM1,18v3h3C4,19.34 2.66,18 1,18zM1,14v2c2.76,0 5,2.24 5,5h2C8,17.13 4.87,14 1,14zM1,10v2c4.97,0 9,4.03 9,9h2C12,14.92 7.07,10 1,10zM11,11.09v2L14.5,15l3.5,-1.91v-2L14.5,13L11,11.09zM14.5,6L9,9l5.5,3L20,9L14.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/castle.xml b/compose/material/material/icons/generator/raw-icons/filled/castle.xml
deleted file mode 100644
index c38a5a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/castle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h9V9H21zM11,12H9V9h2V12zM15,12h-2V9h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/catching_pokemon.xml b/compose/material/material/icons/generator/raw-icons/filled/catching_pokemon.xml
deleted file mode 100644
index d24ae6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/catching_pokemon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12c0,1.38 -1.12,2.5 -2.5,2.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5C13.38,9.5 14.5,10.62 14.5,12zM22,12c0,5.52 -4.48,10 -10,10C6.48,22 2,17.52 2,12S6.48,2 12,2C17.52,2 22,6.48 22,12zM20,12h-4c0,-2.21 -1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4H4c0,4.41 3.59,8 8,8C16.41,20 20,16.41 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/category.xml b/compose/material/material/icons/generator/raw-icons/filled/category.xml
deleted file mode 100644
index b45741e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/category.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2l-5.5,9h11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,17.5m-4.5,0a4.5,4.5 0,1 1,9 0a4.5,4.5 0,1 1,-9 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13.5h8v8H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/celebration.xml b/compose/material/material/icons/generator/raw-icons/filled/celebration.xml
deleted file mode 100644
index e232c68..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/celebration.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22l14,-5l-9,-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.53,12.53l5.59,-5.59c0.49,-0.49 1.28,-0.49 1.77,0l0.59,0.59l1.06,-1.06l-0.59,-0.59c-1.07,-1.07 -2.82,-1.07 -3.89,0l-5.59,5.59L14.53,12.53z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.06,6.88L9.47,7.47l1.06,1.06l0.59,-0.59c1.07,-1.07 1.07,-2.82 0,-3.89l-0.59,-0.59L9.47,4.53l0.59,0.59C10.54,5.6 10.54,6.4 10.06,6.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.88l-1.59,1.59l1.06,1.06l1.59,-1.59c0.49,-0.49 1.28,-0.49 1.77,0l1.61,1.61l1.06,-1.06l-1.61,-1.61C19.87,10.81 18.13,10.81 17.06,11.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.06,5.88l-3.59,3.59l1.06,1.06l3.59,-3.59c1.07,-1.07 1.07,-2.82 0,-3.89l-1.59,-1.59l-1.06,1.06l1.59,1.59C15.54,4.6 15.54,5.4 15.06,5.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cell_tower.xml b/compose/material/material/icons/generator/raw-icons/filled/cell_tower.xml
deleted file mode 100644
index a36ceb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cell_tower.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.3,14.7l1.2,-1.2c-1,-1 -1.5,-2.3 -1.5,-3.5c0,-1.3 0.5,-2.6 1.5,-3.5L7.3,5.3c-1.3,1.3 -2,3 -2,4.7S6,13.4 7.3,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,2.9l-1.2,1.2c1.6,1.6 2.4,3.8 2.4,5.9c0,2.1 -0.8,4.3 -2.4,5.9l1.2,1.2c2,-2 2.9,-4.5 2.9,-7.1C22,7.4 21,4.9 19.1,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.1,4.1L4.9,2.9C3,4.9 2,7.4 2,10c0,2.6 1,5.1 2.9,7.1l1.2,-1.2c-1.6,-1.6 -2.4,-3.8 -2.4,-5.9C3.7,7.9 4.5,5.7 6.1,4.1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.7,14.7c1.3,-1.3 2,-3 2,-4.7c-0.1,-1.7 -0.7,-3.4 -2,-4.7l-1.2,1.2c1,1 1.5,2.3 1.5,3.5c0,1.3 -0.5,2.6 -1.5,3.5L16.7,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10c0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,8.62 9.5,10c0,0.76 0.34,1.42 0.87,1.88L7,22h2l0.67,-2h4.67L15,22h2l-3.37,-10.12C14.16,11.42 14.5,10.76 14.5,10zM10.33,18L12,13l1.67,5H10.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cell_wifi.xml b/compose/material/material/icons/generator/raw-icons/filled/cell_wifi.xml
deleted file mode 100644
index 100d69c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cell_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.98L6,22h12h4V5.97L18,9.98zM20,20h-2v-7.22l2,-2V20zM5.22,7.22L3.93,5.93c3.9,-3.91 10.24,-3.91 14.15,0l-1.29,1.29C13.6,4.03 8.41,4.03 5.22,7.22zM12.93,11.07L11,13l-1.93,-1.93C10.14,10.01 11.86,10.01 12.93,11.07zM14.22,9.79c-1.78,-1.77 -4.66,-1.77 -6.43,0L6.5,8.5c2.48,-2.48 6.52,-2.48 9,0L14.22,9.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/center_focus_strong.xml b/compose/material/material/icons/generator/raw-icons/filled/center_focus_strong.xml
deleted file mode 100644
index d83caeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/center_focus_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/center_focus_weak.xml b/compose/material/material/icons/generator/raw-icons/filled/center_focus_weak.xml
deleted file mode 100644
index eb56c21..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/center_focus_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chair.xml b/compose/material/material/icons/generator/raw-icons/filled/chair.xml
deleted file mode 100644
index 6f8a880..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chair.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11v2h10v-2c0,-1.86 1.28,-3.41 3,-3.86V6c0,-1.65 -1.35,-3 -3,-3H7C5.35,3 4,4.35 4,6v1.14C5.72,7.59 7,9.14 7,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9c-1.1,0 -2,0.9 -2,2v4H5v-4c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v5c0,1.65 1.35,3 3,3v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1c1.65,0 3,-1.35 3,-3v-5C23,9.9 22.1,9 21,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chair_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/chair_alt.xml
deleted file mode 100644
index d192dd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chair_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v3c0,1.1 0.9,2 2,2h1v2H7c-1.1,0 -2,0.9 -2,2v7h2v-3h10v3h2v-7c0,-1.1 -0.9,-2 -2,-2h-1v-2H17zM7,8V5h10v3H7zM17,16H7v-2h10V16zM14,12h-4v-2h4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chalet.xml b/compose/material/material/icons/generator/raw-icons/filled/chalet.xml
deleted file mode 100644
index 27ef7f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chalet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5l7.5,7.5l-1.41,1.41L15,15.33V20h-4v-5H9v5H5v-4.67l-1.09,1.09L2.5,15L10,7.5zM22,6.5h-1.19l0.75,-0.75l-0.71,-0.71L19.39,6.5H18.5V5.61l1.45,-1.45l-0.71,-0.71L18.5,4.19V3h-1v1.19l-0.75,-0.75l-0.71,0.71l1.45,1.45V6.5h-0.89l-1.45,-1.45l-0.71,0.71l0.75,0.75H14v1h1.19l-0.75,0.75l0.71,0.71l1.45,-1.45h0.89v0.89l-1.45,1.45l0.71,0.71l0.75,-0.75V11h1V9.81l0.75,0.75l0.71,-0.71L18.5,8.39V7.5h0.89l1.45,1.45l0.71,-0.71L20.81,7.5H22V6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/change_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/change_circle.xml
deleted file mode 100644
index babda22..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/change_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12.06,19v-2.01c-0.02,0 -0.04,0 -0.06,0c-1.28,0 -2.56,-0.49 -3.54,-1.46c-1.71,-1.71 -1.92,-4.35 -0.64,-6.29l1.1,1.1c-0.71,1.33 -0.53,3.01 0.59,4.13c0.7,0.7 1.62,1.03 2.54,1.01v-2.14l2.83,2.83L12.06,19zM16.17,14.76l-1.1,-1.1c0.71,-1.33 0.53,-3.01 -0.59,-4.13C13.79,8.84 12.9,8.5 12,8.5c-0.02,0 -0.04,0 -0.06,0v2.15L9.11,7.83L11.94,5v2.02c1.3,-0.02 2.61,0.45 3.6,1.45C17.24,10.17 17.45,12.82 16.17,14.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/change_history.xml b/compose/material/material/icons/generator/raw-icons/filled/change_history.xml
deleted file mode 100644
index 2aee492..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/change_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.77L18.39,18H5.61L12,7.77M12,4L2,20h20L12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/charging_station.xml b/compose/material/material/icons/generator/raw-icons/filled/charging_station.xml
deleted file mode 100644
index 8fef4f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/charging_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11l-3,6v-4h-2l3,-6v4H14.5zM7,1h10c1.1,0 2,0.9 2,2v18c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V3C5,1.9 5.9,1 7,1zM7,6v12h10V6H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chat.xml b/compose/material/material/icons/generator/raw-icons/filled/chat.xml
deleted file mode 100644
index 4f82dd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM6,9h12v2L6,11L6,9zM14,14L6,14v-2h8v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chat_bubble.xml b/compose/material/material/icons/generator/raw-icons/filled/chat_bubble.xml
deleted file mode 100644
index c91a7ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chat_bubble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chat_bubble_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/chat_bubble_outline.xml
deleted file mode 100644
index e0a11fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chat_bubble_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L6,16l-2,2L4,4h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/check.xml b/compose/material/material/icons/generator/raw-icons/filled/check.xml
deleted file mode 100644
index 0432fa6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/check_box.xml b/compose/material/material/icons/generator/raw-icons/filled/check_box.xml
deleted file mode 100644
index cbb9c3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.11,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2zM10,17l-5,-5 1.41,-1.41L10,14.17l7.59,-7.59L19,8l-9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/check_box_outline_blank.xml b/compose/material/material/icons/generator/raw-icons/filled/check_box_outline_blank.xml
deleted file mode 100644
index 8c7ac2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/check_box_outline_blank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5h14m0,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/check_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/check_circle.xml
deleted file mode 100644
index 5e111ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,17l-5,-5 1.41,-1.41L10,14.17l7.59,-7.59L19,8l-9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/check_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/check_circle_outline.xml
deleted file mode 100644
index 73e5237..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/check_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,7.58L10,14.17l-3.59,-3.58L5,12l5,5 8,-8zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/checklist.xml b/compose/material/material/icons/generator/raw-icons/filled/checklist.xml
deleted file mode 100644
index 64e7ee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/checklist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-9v2h9V7zM22,15h-9v2h9V15zM5.54,11L2,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,11zM5.54,19L2,15.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/checklist_rtl.xml b/compose/material/material/icons/generator/raw-icons/filled/checklist_rtl.xml
deleted file mode 100644
index eb4422c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/checklist_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7H2v2h9V7zM11,15H2v2h9V15zM16.34,11l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,5.34L16.34,11zM16.34,19l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,13.34L16.34,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/checkroom.xml b/compose/material/material/icons/generator/raw-icons/filled/checkroom.xml
deleted file mode 100644
index b1e0d52..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/checkroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.6,18.2L13,11.75v-0.91c1.65,-0.49 2.8,-2.17 2.43,-4.05c-0.26,-1.31 -1.3,-2.4 -2.61,-2.7C10.54,3.57 8.5,5.3 8.5,7.5h2C10.5,6.67 11.17,6 12,6s1.5,0.67 1.5,1.5c0,0.84 -0.69,1.52 -1.53,1.5C11.43,8.99 11,9.45 11,9.99v1.76L2.4,18.2C1.63,18.78 2.04,20 3,20h9h9C21.96,20 22.37,18.78 21.6,18.2zM6,18l6,-4.5l6,4.5H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chevron_left.xml b/compose/material/material/icons/generator/raw-icons/filled/chevron_left.xml
deleted file mode 100644
index 09598f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chevron_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chevron_right.xml b/compose/material/material/icons/generator/raw-icons/filled/chevron_right.xml
deleted file mode 100644
index fd2878a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chevron_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6L8.59,7.41 13.17,12l-4.58,4.59L10,18l6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/child_care.xml b/compose/material/material/icons/generator/raw-icons/filled/child_care.xml
deleted file mode 100644
index a436ef8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/child_care.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.94,12.66c0.04,-0.21 0.06,-0.43 0.06,-0.66s-0.02,-0.45 -0.06,-0.66c-0.25,-1.51 -1.36,-2.74 -2.81,-3.17 -0.53,-1.12 -1.28,-2.1 -2.19,-2.91C16.36,3.85 14.28,3 12,3s-4.36,0.85 -5.94,2.26c-0.92,0.81 -1.67,1.8 -2.19,2.91 -1.45,0.43 -2.56,1.65 -2.81,3.17 -0.04,0.21 -0.06,0.43 -0.06,0.66s0.02,0.45 0.06,0.66c0.25,1.51 1.36,2.74 2.81,3.17 0.52,1.11 1.27,2.09 2.17,2.89C7.62,20.14 9.71,21 12,21s4.38,-0.86 5.97,-2.28c0.9,-0.8 1.65,-1.79 2.17,-2.89 1.44,-0.43 2.55,-1.65 2.8,-3.17zM19,14c-0.1,0 -0.19,-0.02 -0.29,-0.03 -0.2,0.67 -0.49,1.29 -0.86,1.86C16.6,17.74 14.45,19 12,19s-4.6,-1.26 -5.85,-3.17c-0.37,-0.57 -0.66,-1.19 -0.86,-1.86 -0.1,0.01 -0.19,0.03 -0.29,0.03 -1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2c0.1,0 0.19,0.02 0.29,0.03 0.2,-0.67 0.49,-1.29 0.86,-1.86C7.4,6.26 9.55,5 12,5s4.6,1.26 5.85,3.17c0.37,0.57 0.66,1.19 0.86,1.86 0.1,-0.01 0.19,-0.03 0.29,-0.03 1.1,0 2,0.9 2,2s-0.9,2 -2,2zM7.5,14c0.76,1.77 2.49,3 4.5,3s3.74,-1.23 4.5,-3h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/child_friendly.xml b/compose/material/material/icons/generator/raw-icons/filled/child_friendly.xml
deleted file mode 100644
index 7eb0a87..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/child_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2v8h8c0,-4.42 -3.58,-8 -8,-8zM19.32,15.89C20.37,14.54 21,12.84 21,11L6.44,11l-0.95,-2L2,9v2h2.22s1.89,4.07 2.12,4.42c-1.1,0.59 -1.84,1.75 -1.84,3.08C4.5,20.43 6.07,22 8,22c1.76,0 3.22,-1.3 3.46,-3h2.08c0.24,1.7 1.7,3 3.46,3 1.93,0 3.5,-1.57 3.5,-3.5 0,-1.04 -0.46,-1.97 -1.18,-2.61zM8,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.17,17 8,17s1.5,0.67 1.5,1.5S8.83,20 8,20zM17,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.17,17 17,17s1.5,0.67 1.5,1.5S17.83,20 17,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/chrome_reader_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/chrome_reader_mode.xml
deleted file mode 100644
index d069c4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/chrome_reader_mode.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12h7v1.5h-7zM13,9.5h7L20,11h-7zM13,14.5h7L20,16h-7zM21,4L3,4c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM21,19h-9L12,6h9v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/church.xml b/compose/material/material/icons/generator/raw-icons/filled/church.xml
deleted file mode 100644
index dbf88ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/church.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12.22V9l-5,-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h8v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h8v-8L18,12.22zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,13.5 12,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/circle.xml b/compose/material/material/icons/generator/raw-icons/filled/circle.xml
deleted file mode 100644
index fd2756c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/circle_notifications.xml b/compose/material/material/icons/generator/raw-icons/filled/circle_notifications.xml
deleted file mode 100644
index 027a377..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/circle_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3c0,0.83 -0.67,1.5 -1.5,1.5zM17,16L7,16v-1l1,-1v-2.61C8,9.27 9.03,7.47 11,7v-0.5c0,-0.57 0.43,-1 1,-1s1,0.43 1,1L13,7c1.97,0.47 3,2.28 3,4.39L16,14l1,1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/class.xml b/compose/material/material/icons/generator/raw-icons/filled/class.xml
deleted file mode 100644
index 4a4cbea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2zM6,4h5v8l-2.5,-1.5L6,12V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/clean_hands.xml b/compose/material/material/icons/generator/raw-icons/filled/clean_hands.xml
deleted file mode 100644
index fd9bf83..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/clean_hands.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63,-1.37L14.99,7l1.37,-0.63L16.99,5M11,6.13V4h2c0.57,0 1.1,0.17 1.55,0.45l1.43,-1.43C15.15,2.39 14.13,2 13,2c-1.48,0 -5.5,0 -5.5,0v2H9v2.14C7.23,6.51 5.81,7.8 5.26,9.5h3.98L15,11.65v-0.62C15,8.61 13.28,6.59 11,6.13zM1,22h4V11H1V22zM20,17h-7l-2.09,-0.73l0.33,-0.94L13,16h2.82c0.65,0 1.18,-0.53 1.18,-1.18l0,0c0,-0.49 -0.31,-0.93 -0.77,-1.11L8.97,11H7v9.02L14,22l8,-3l0,0C21.99,17.9 21.11,17 20,17zM20,14c1.1,0 2,-0.9 2,-2c0,-1.1 -2,-4 -2,-4s-2,2.9 -2,4C18,13.1 18.9,14 20,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cleaning_services.xml b/compose/material/material/icons/generator/raw-icons/filled/cleaning_services.xml
deleted file mode 100644
index ac0c243..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cleaning_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h-1V3c0,-1.1 -0.9,-2 -2,-2h-2C9.9,1 9,1.9 9,3v8H8c-2.76,0 -5,2.24 -5,5v7h18v-7C21,13.24 18.76,11 16,11zM19,21h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H9v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H5v-5c0,-1.65 1.35,-3 3,-3h8c1.65,0 3,1.35 3,3V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/clear.xml b/compose/material/material/icons/generator/raw-icons/filled/clear.xml
deleted file mode 100644
index 16d6d37..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/clear_all.xml b/compose/material/material/icons/generator/raw-icons/filled/clear_all.xml
deleted file mode 100644
index dc649f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/clear_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h14v-2L5,11v2zM3,17h14v-2L3,15v2zM7,7v2h14L21,7L7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/close.xml b/compose/material/material/icons/generator/raw-icons/filled/close.xml
deleted file mode 100644
index 16d6d37..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/close.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/close_fullscreen.xml b/compose/material/material/icons/generator/raw-icons/filled/close_fullscreen.xml
deleted file mode 100644
index b884325..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/close_fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41zM3.41,22l5.29,-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/closed_caption.xml b/compose/material/material/icons/generator/raw-icons/filled/closed_caption.xml
deleted file mode 100644
index 2eb3fb01..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/closed_caption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM11,11L9.5,11v-0.5h-2v3h2L9.5,13L11,13v1c0,0.55 -0.45,1 -1,1L7,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1zM18,11h-1.5v-0.5h-2v3h2L16.5,13L18,13v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/closed_caption_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/closed_caption_disabled.xml
deleted file mode 100644
index c624dad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/closed_caption_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H19c1.1,0 2,0.9 2,2v12c0,0.05 -0.01,0.1 -0.02,0.16l-3.38,-3.38C17.84,14.59 18,14.32 18,14v-1h-1.5v0.5h-0.17l-1.83,-1.83V10.5h2V11H18v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v0.17L6.83,4zM19.78,22.61L17.17,20H5c-1.11,0 -2,-0.9 -2,-2V6c0,-0.05 0.02,-0.1 0.02,-0.15L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM11,13.83L10.17,13H9.5v0.5h-2v-3h0.17L6.4,9.22C6.16,9.41 6,9.68 6,10v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1V13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/closed_caption_off.xml b/compose/material/material/icons/generator/raw-icons/filled/closed_caption_off.xml
deleted file mode 100644
index f65d196..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/closed_caption_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,5.5v13h-15v-13h15zM19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM11,11L9.5,11v-0.5h-2v3h2L9.5,13L11,13v1c0,0.55 -0.45,1 -1,1L7,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1zM18,11h-1.5v-0.5h-2v3h2L16.5,13L18,13v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud.xml
deleted file mode 100644
index 6f2f5cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud_circle.xml
deleted file mode 100644
index 36f5874..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM16.5,16L8,16c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3l0.14,0.01C8.58,8.28 10.13,7 12,7c2.21,0 4,1.79 4,4h0.5c1.38,0 2.5,1.12 2.5,2.5S17.88,16 16.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud_done.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud_done.xml
deleted file mode 100644
index 4ba3a6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM10,17l-3.5,-3.5 1.41,-1.41L10,14.17 15.18,9l1.41,1.41L10,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud_download.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud_download.xml
deleted file mode 100644
index 5cf9f5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM17,13l-5,5 -5,-5h3V9h4v4h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud_off.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud_off.xml
deleted file mode 100644
index 7688eca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4c-1.48,0 -2.85,0.43 -4.01,1.17l1.46,1.46C10.21,6.23 11.08,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3 0,1.13 -0.64,2.11 -1.56,2.62l1.45,1.45C23.16,18.16 24,16.68 24,15c0,-2.64 -2.05,-4.78 -4.65,-4.96zM3,5.27l2.75,2.74C2.56,8.15 0,10.77 0,14c0,3.31 2.69,6 6,6h11.73l2,2L21,20.73 4.27,4 3,5.27zM7.73,10l8,8H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h1.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud_queue.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud_queue.xml
deleted file mode 100644
index 8f71d61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h0.71C7.37,7.69 9.48,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3s-1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud_sync.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud_sync.xml
deleted file mode 100644
index 2947d30..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud_sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,14.98c-0.02,0 -0.03,0 -0.05,0.01C21.2,13.3 19.76,12 18,12c-1.4,0 -2.6,0.83 -3.16,2.02C13.26,14.1 12,15.4 12,17c0,1.66 1.34,3 3,3l6.5,-0.02c1.38,0 2.5,-1.12 2.5,-2.5S22.88,14.98 21.5,14.98zM10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,6h-2.73c1.43,1.26 2.41,3.01 2.66,5l-2.02,0C17.68,9.64 16.98,8.45 16,7.56V10h-2V4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cloud_upload.xml b/compose/material/material/icons/generator/raw-icons/filled/cloud_upload.xml
deleted file mode 100644
index 2896516..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cloud_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM14,13v4h-4v-4H7l5,-5 5,5h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/co2.xml b/compose/material/material/icons/generator/raw-icons/filled/co2.xml
deleted file mode 100644
index 28a144a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/co2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-4C15,9.45 14.55,9 14,9zM13.5,13.5h-2v-3h2V13.5zM8,13v1c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H6.5v-0.5h-2v3h2V13H8zM20.5,15.5h-2v1h3V18H17v-2.5c0,-0.55 0.45,-1 1,-1h2v-1h-3V12h3.5c0.55,0 1,0.45 1,1v1.5C21.5,15.05 21.05,15.5 20.5,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/co_present.xml b/compose/material/material/icons/generator/raw-icons/filled/co_present.xml
deleted file mode 100644
index 3371488..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/co_present.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v8h2V5h18v16c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,16.56C13.71,15.7 11.53,15 9,15c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,17.07 1,18.1 1,19.22V22h16v-2.78C17,18.1 16.39,17.07 15.39,16.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/code.xml b/compose/material/material/icons/generator/raw-icons/filled/code.xml
deleted file mode 100644
index b97ee53..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/code.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.4,16.6L4.8,12l4.6,-4.6L8,6l-6,6 6,6 1.4,-1.4zM14.6,16.6l4.6,-4.6 -4.6,-4.6L16,6l6,6 -6,6 -1.4,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/code_off.xml b/compose/material/material/icons/generator/raw-icons/filled/code_off.xml
deleted file mode 100644
index d2cf633..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/code_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.17,12l-4.58,-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12zM1.39,4.22l4.19,4.19L2,12l6,6l1.41,-1.41L4.83,12L7,9.83l12.78,12.78l1.41,-1.41L2.81,2.81L1.39,4.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/coffee.xml b/compose/material/material/icons/generator/raw-icons/filled/coffee.xml
deleted file mode 100644
index 9d5f5fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/coffee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,3H6C4.9,3 4,3.9 4,5v5.71c0,3.83 2.95,7.18 6.78,7.29c3.96,0.12 7.22,-3.06 7.22,-7v-1h0.5c1.93,0 3.5,-1.57 3.5,-3.5S20.43,3 18.5,3zM16,5v3H6V5H16zM18.5,8H18V5h0.5C19.33,5 20,5.67 20,6.5S19.33,8 18.5,8zM4,19h16v2H4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/coffee_maker.xml b/compose/material/material/icons/generator/raw-icons/filled/coffee_maker.xml
deleted file mode 100644
index d7c93d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/coffee_maker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6V4h2V2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h14v-2h-4.03C17.2,19.09 18,17.64 18,16v-5H8v5c0,1.64 0.81,3.09 2.03,4H6V4h2v2c0,0.55 0.45,1 1,1h8C17.55,7 18,6.55 18,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/collections.xml b/compose/material/material/icons/generator/raw-icons/filled/collections.xml
deleted file mode 100644
index ee0f693..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/collections.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zM11,12l2.03,2.71L16,11l4,5L8,16l3,-4zM2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/collections_bookmark.xml b/compose/material/material/icons/generator/raw-icons/filled/collections_bookmark.xml
deleted file mode 100644
index fcff54e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/collections_bookmark.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,12l-2.5,-1.5L15,12L15,4h5v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/color_lens.xml b/compose/material/material/icons/generator/raw-icons/filled/color_lens.xml
deleted file mode 100644
index 4bf1550..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/color_lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.39 -0.15,-0.74 -0.39,-1.01 -0.23,-0.26 -0.38,-0.61 -0.38,-0.99 0,-0.83 0.67,-1.5 1.5,-1.5L16,16c2.76,0 5,-2.24 5,-5 0,-4.42 -4.03,-8 -9,-8zM6.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,9 6.5,9 8,9.67 8,10.5 7.33,12 6.5,12zM9.5,8C8.67,8 8,7.33 8,6.5S8.67,5 9.5,5s1.5,0.67 1.5,1.5S10.33,8 9.5,8zM14.5,8c-0.83,0 -1.5,-0.67 -1.5,-1.5S13.67,5 14.5,5s1.5,0.67 1.5,1.5S15.33,8 14.5,8zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/colorize.xml b/compose/material/material/icons/generator/raw-icons/filled/colorize.xml
deleted file mode 100644
index 8adfae3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/colorize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.12,3.12 -1.93,-1.91 -1.41,1.41 1.42,1.42L3,16.25V21h4.75l8.92,-8.92 1.42,1.42 1.41,-1.41 -1.92,-1.92 3.12,-3.12c0.4,-0.4 0.4,-1.03 0.01,-1.42zM6.92,19L5,17.08l8.06,-8.06 1.92,1.92L6.92,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/comment.xml b/compose/material/material/icons/generator/raw-icons/filled/comment.xml
deleted file mode 100644
index 0f2b83f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/comment_bank.xml b/compose/material/material/icons/generator/raw-icons/filled/comment_bank.xml
deleted file mode 100644
index 46c8734..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/comment_bank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM19,13l-2.5,-1.5L14,13V5h5V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/comments_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/comments_disabled.xml
deleted file mode 100644
index 6e41c58..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/comments_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,14H18v-2h-3.17l-1,-1H18V9h-6.17l-1,-1H18V6H8.83l-4,-4H20c1.1,0 2,0.9 2,2v15.17L16.83,14zM2.1,2.1L0.69,3.51L2,4.83V16c0,1.1 0.9,2 2,2h11.17l5.31,5.31l1.41,-1.41L2.1,2.1zM6,9h0.17l2,2H6V9zM6,14v-2h3.17l2,2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/commit.xml b/compose/material/material/icons/generator/raw-icons/filled/commit.xml
deleted file mode 100644
index 926bce2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/commit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.9,11L16.9,11c-0.46,-2.28 -2.48,-4 -4.9,-4s-4.44,1.72 -4.9,4h0H2v2h5.1h0c0.46,2.28 2.48,4 4.9,4s4.44,-1.72 4.9,-4h0H22v-2H16.9zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/commute.xml b/compose/material/material/icons/generator/raw-icons/filled/commute.xml
deleted file mode 100644
index 3d808c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/commute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L5,4C3.34,4 2,5.34 2,7v8c0,1.66 1.34,3 3,3l-1,1v1h1l2,-2.03L9,18v-5L4,13L4,5.98L13,6v2h2L15,7c0,-1.66 -1.34,-3 -3,-3zM5,14c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20.57,9.66c-0.14,-0.4 -0.52,-0.66 -0.97,-0.66h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66L10,13.77l0.01,5.51c0,0.38 0.31,0.72 0.69,0.72h0.62c0.38,0 0.68,-0.38 0.68,-0.76L12,18h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72l0.01,-1.37v-4.14l-1.43,-4.11zM12.41,10h7.19l1.03,3h-9.25l1.03,-3zM12,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM20,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/compare.xml b/compose/material/material/icons/generator/raw-icons/filled/compare.xml
deleted file mode 100644
index 945852b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/compare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h5v2h2L12,1h-2v2zM10,18L5,18l5,-6v6zM19,3h-5v2h5v13l-5,-6v9h5c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/compare_arrows.xml b/compose/material/material/icons/generator/raw-icons/filled/compare_arrows.xml
deleted file mode 100644
index 9f2ab69..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/compare_arrows.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.01,14H2v2h7.01v3L13,15l-3.99,-4V14zM14.99,13v-3H22V8h-7.01V5L11,9L14.99,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/compass_calibration.xml b/compose/material/material/icons/generator/raw-icons/filled/compass_calibration.xml
deleted file mode 100644
index 2639de2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/compass_calibration.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.07c1.95,0 3.72,0.79 5,2.07l5,-5C19.44,4.59 15.9,3 12,3S4.56,4.59 2,7.15l5,5c1.28,-1.28 3.05,-2.08 5,-2.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/compost.xml b/compose/material/material/icons/generator/raw-icons/filled/compost.xml
deleted file mode 100644
index b06253a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/compost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,11.81c-0.23,-0.38 -0.37,-0.83 -0.37,-1.31C12.5,9.12 13.62,8 15,8l1,0c1.51,0 2,-1 2,-1s0.55,6 -3,6c-0.49,0 -0.94,-0.14 -1.32,-0.38c-0.24,0.64 -0.59,1.76 -0.76,2.96c1.26,0.22 2.28,0.89 2.77,1.77c1.69,-1.17 2.81,-3.13 2.81,-5.35h3c0,5.24 -4.26,9.5 -9.5,9.5S2.5,17.24 2.5,12S6.76,2.5 12,2.5V0l4,4l-4,4V5.5c-3.58,0 -6.5,2.92 -6.5,6.5c0,2.21 1.11,4.17 2.81,5.35c0.51,-0.92 1.63,-1.62 2.98,-1.8c-0.09,-0.69 -0.26,-1.42 -0.49,-2.03C10.45,13.82 10,14 9.5,14c-1.1,0 -2,-0.9 -2,-2v-0.99c0,-0.56 -0.19,-1.09 -0.5,-1.51c0,0 4.45,-0.23 4.5,2.5c0,0.29 -0.06,0.56 -0.17,0.8C10.91,12.48 10.47,12.2 10,12c0.58,0.43 1.37,1.37 2,2.6c0.67,-1.62 1.68,-3.27 3,-4.6C14.24,10.52 13.53,11.12 12.87,11.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/compress.xml b/compose/material/material/icons/generator/raw-icons/filled/compress.xml
deleted file mode 100644
index e53e965..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/compress.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19h3v3h2v-3h3l-4,-4 -4,4zM16,4h-3L13,1h-2v3L8,4l4,4 4,-4zM4,9v2h16L20,9L4,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12h16v2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/computer.xml b/compose/material/material/icons/generator/raw-icons/filled/computer.xml
deleted file mode 100644
index d6a11d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/computer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,6c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2H0v2h24v-2h-4zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/confirmation_number.xml b/compose/material/material/icons/generator/raw-icons/filled/confirmation_number.xml
deleted file mode 100644
index 7b81878..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/confirmation_number.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10V6c0,-1.11 -0.9,-2 -2,-2H4C2.9,4 2.01,4.89 2.01,6v4C3.11,10 4,10.9 4,12s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2S20.9,10 22,10zM13,17.5h-2v-2h2V17.5zM13,13h-2v-2h2V13zM13,8.5h-2v-2h2V8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/connect_without_contact.xml b/compose/material/material/icons/generator/raw-icons/filled/connect_without_contact.xml
deleted file mode 100644
index 709fe2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/connect_without_contact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14H9c0,-4.97 4.03,-9 9,-9v2C14.13,7 11,10.13 11,14zM18,11V9c-2.76,0 -5,2.24 -5,5h2C15,12.34 16.34,11 18,11zM7,4c0,-1.11 -0.89,-2 -2,-2S3,2.89 3,4s0.89,2 2,2S7,5.11 7,4zM11.45,4.5h-2C9.21,5.92 7.99,7 6.5,7h-3C2.67,7 2,7.67 2,8.5V11h6V8.74C9.86,8.15 11.25,6.51 11.45,4.5zM19,17c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S17.89,17 19,17zM20.5,18h-3c-1.49,0 -2.71,-1.08 -2.95,-2.5h-2c0.2,2.01 1.59,3.65 3.45,4.24V22h6v-2.5C22,18.67 21.33,18 20.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/connected_tv.xml b/compose/material/material/icons/generator/raw-icons/filled/connected_tv.xml
deleted file mode 100644
index b843a7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/connected_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM4,14v2h2c0,-1.11 -0.89,-2 -2,-2zM4,11v1.43c1.97,0 3.57,1.6 3.57,3.57L9,16c0,-2.76 -2.24,-5 -5,-5zM4,8v1.45c3.61,0 6.55,2.93 6.55,6.55L12,16c0,-4.42 -3.59,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/connecting_airports.xml b/compose/material/material/icons/generator/raw-icons/filled/connecting_airports.xml
deleted file mode 100644
index 12357c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/connecting_airports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3l2.6,-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1l-0.75,-1H15.4zM5.75,7L5,6H4l0.6,2L4,10h1l0.75,-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L8.4,2.6H7.3L8.6,7H5.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/construction.xml b/compose/material/material/icons/generator/raw-icons/filled/construction.xml
deleted file mode 100644
index 2c31758..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/construction.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.783,15.172l2.121,-2.121l5.996,5.996l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c1.93,0 3.5,-1.57 3.5,-3.5c0,-0.58 -0.16,-1.12 -0.41,-1.6l-2.7,2.7L16.4,6.11l2.7,-2.7C18.62,3.16 18.08,3 17.5,3C15.57,3 14,4.57 14,6.5c0,0.41 0.08,0.8 0.21,1.16l-1.85,1.85l-1.78,-1.78l0.71,-0.71L9.88,5.61L12,3.49c-1.17,-1.17 -3.07,-1.17 -4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71,-0.71V9.15l1.41,1.41l0.71,-0.71l1.78,1.78l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92 17.09,10 17.5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contact_emergency.xml b/compose/material/material/icons/generator/raw-icons/filled/contact_emergency.xml
deleted file mode 100644
index fc1965d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contact_emergency.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5C24,3.9 23.1,3 22,3zM9,8c1.65,0 3,1.35 3,3s-1.35,3 -3,3s-3,-1.35 -3,-3S7.35,8 9,8zM2.08,19c1.38,-2.39 3.96,-4 6.92,-4s5.54,1.61 6.92,4H2.08zM20.97,9.85l-0.75,1.3l-1.47,-0.85V12h-1.5v-1.7l-1.47,0.85l-0.75,-1.3L16.5,9l-1.47,-0.85l0.75,-1.3l1.47,0.85V6h1.5v1.7l1.47,-0.85l0.75,1.3L19.5,9L20.97,9.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contact_mail.xml b/compose/material/material/icons/generator/raw-icons/filled/contact_mail.xml
deleted file mode 100644
index 01c931d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contact_mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8L21,7l-3,2 -3,-2v1l3,2 3,-2zM22,3L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM8,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM14,18L2,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1zM22,12h-8L14,6h8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contact_page.xml b/compose/material/material/icons/generator/raw-icons/filled/contact_page.xml
deleted file mode 100644
index 3905bf0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contact_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM12,10c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,10.9 10.9,10 12,10zM16,18H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,15.21 11.01,15 12,15c0.99,0 1.93,0.21 2.78,0.58C15.52,15.9 16,16.62 16,17.43V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contact_phone.xml b/compose/material/material/icons/generator/raw-icons/filled/contact_phone.xml
deleted file mode 100644
index a190094..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contact_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM8,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM14,18L2,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1zM17.85,14h1.64L21,16l-1.99,1.99c-1.31,-0.98 -2.28,-2.38 -2.73,-3.99 -0.18,-0.64 -0.28,-1.31 -0.28,-2s0.1,-1.36 0.28,-2c0.45,-1.62 1.42,-3.01 2.73,-3.99L21,8l-1.51,2h-1.64c-0.22,0.63 -0.35,1.3 -0.35,2s0.13,1.37 0.35,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contact_support.xml b/compose/material/material/icons/generator/raw-icons/filled/contact_support.xml
deleted file mode 100644
index b4098ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contact_support.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,2C6.81,2 3,5.81 3,10.5S6.81,19 11.5,19h0.5v3c4.86,-2.34 8,-7 8,-11.5C20,5.81 16.19,2 11.5,2zM12.5,16.5h-2v-2h2v2zM12.5,13h-2c0,-3.25 3,-3 3,-5 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2h-2c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.5 -3,2.75 -3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contactless.xml b/compose/material/material/icons/generator/raw-icons/filled/contactless.xml
deleted file mode 100644
index 00a0d8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contactless.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM8.46,14.45L7.1,13.83c0.28,-0.61 0.41,-1.24 0.4,-1.86c-0.01,-0.63 -0.14,-1.24 -0.4,-1.8l1.36,-0.63c0.35,0.75 0.53,1.56 0.54,2.4C9.01,12.8 8.83,13.64 8.46,14.45zM11.53,16.01l-1.3,-0.74c0.52,-0.92 0.78,-1.98 0.78,-3.15c0,-1.19 -0.27,-2.33 -0.8,-3.4l1.34,-0.67c0.64,1.28 0.96,2.65 0.96,4.07C12.51,13.55 12.18,14.86 11.53,16.01zM14.67,17.33l-1.35,-0.66c0.78,-1.6 1.18,-3.18 1.18,-4.69c0,-1.51 -0.4,-3.07 -1.18,-4.64l1.34,-0.67C15.56,8.45 16,10.23 16,11.98C16,13.72 15.56,15.52 14.67,17.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contacts.xml b/compose/material/material/icons/generator/raw-icons/filled/contacts.xml
deleted file mode 100644
index 547afc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,0L4,0v2h16L20,0zM4,24h16v-2L4,22v2zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,6.75c1.24,0 2.25,1.01 2.25,2.25s-1.01,2.25 -2.25,2.25S9.75,10.24 9.75,9 10.76,6.75 12,6.75zM17,17L7,17v-1.5c0,-1.67 3.33,-2.5 5,-2.5s5,0.83 5,2.5L17,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/content_copy.xml b/compose/material/material/icons/generator/raw-icons/filled/content_copy.xml
deleted file mode 100644
index 855a9be..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/content_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM19,5L8,5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h11c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,21L8,21L8,7h11v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/content_cut.xml b/compose/material/material/icons/generator/raw-icons/filled/content_cut.xml
deleted file mode 100644
index fae4c82..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/content_cut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.64,7.64c0.23,-0.5 0.36,-1.05 0.36,-1.64 0,-2.21 -1.79,-4 -4,-4S2,3.79 2,6s1.79,4 4,4c0.59,0 1.14,-0.13 1.64,-0.36L10,12l-2.36,2.36C7.14,14.13 6.59,14 6,14c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4c0,-0.59 -0.13,-1.14 -0.36,-1.64L12,14l7,7h3v-1L9.64,7.64zM6,8c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM6,20c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM12,12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5 0.5,0.22 0.5,0.5 -0.22,0.5 -0.5,0.5zM19,3l-6,6 2,2 7,-7L22,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/content_paste.xml b/compose/material/material/icons/generator/raw-icons/filled/content_paste.xml
deleted file mode 100644
index 2d8f09a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/content_paste.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/content_paste_go.xml b/compose/material/material/icons/generator/raw-icons/filled/content_paste_go.xml
deleted file mode 100644
index daa5d3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/content_paste_go.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v6h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h5v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.01,13l-1.42,1.41l1.58,1.58l-6.17,0l0,2l6.17,0l-1.58,1.59l1.42,1.41l3.99,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/content_paste_off.xml b/compose/material/material/icons/generator/raw-icons/filled/content_paste_off.xml
deleted file mode 100644
index 817cf7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/content_paste_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61L21.19,21.19zM5,19V7.83L16.17,19H5zM17,8V5h2v11.17l2,2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5.83l5,5H17zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/content_paste_search.xml b/compose/material/material/icons/generator/raw-icons/filled/content_paste_search.xml
deleted file mode 100644
index 5b73c13..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/content_paste_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v5h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h5v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.3,18.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S12,14 12,16.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l2.7,2.7l1.4,-1.4L20.3,18.9zM16.5,19c-1.4,0 -2.5,-1.1 -2.5,-2.5c0,-1.4 1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5C19,17.9 17.9,19 16.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/contrast.xml b/compose/material/material/icons/generator/raw-icons/filled/contrast.xml
deleted file mode 100644
index 8210b18..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/contrast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2S2,6.48 2,12S6.48,22 12,22zM13,4.07c3.94,0.49 7,3.85 7,7.93s-3.05,7.44 -7,7.93V4.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/control_camera.xml b/compose/material/material/icons/generator/raw-icons/filled/control_camera.xml
deleted file mode 100644
index a04059e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/control_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.54,5.54L13.77,7.3 12,5.54 10.23,7.3 8.46,5.54 12,2zM18.46,15.54l-1.76,-1.77L18.46,12l-1.76,-1.77 1.76,-1.77L22,12zM8.46,18.46l1.77,-1.76L12,18.46l1.77,-1.76 1.77,1.76L12,22zM5.54,8.46l1.76,1.77L5.54,12l1.76,1.77 -1.76,1.77L2,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/control_point.xml b/compose/material/material/icons/generator/raw-icons/filled/control_point.xml
deleted file mode 100644
index 58800d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/control_point.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/control_point_duplicate.xml b/compose/material/material/icons/generator/raw-icons/filled/control_point_duplicate.xml
deleted file mode 100644
index fa6005d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/control_point_duplicate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM2,12c0,-2.79 1.64,-5.2 4.01,-6.32L6.01,3.52C2.52,4.76 0,8.09 0,12s2.52,7.24 6.01,8.48v-2.16C3.64,17.2 2,14.79 2,12zM15,3c-4.96,0 -9,4.04 -9,9s4.04,9 9,9 9,-4.04 9,-9 -4.04,-9 -9,-9zM15,19c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cookie.xml b/compose/material/material/icons/generator/raw-icons/filled/cookie.xml
deleted file mode 100644
index 956a14b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cookie.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,10.99c-1.79,-0.03 -3.7,-1.95 -2.68,-4.22c-2.98,1 -5.77,-1.59 -5.19,-4.56C6.95,0.71 2,6.58 2,12c0,5.52 4.48,10 10,10C17.89,22 22.54,16.92 21.95,10.99zM8.5,15C7.67,15 7,14.33 7,13.5S7.67,12 8.5,12s1.5,0.67 1.5,1.5S9.33,15 8.5,15zM10.5,10C9.67,10 9,9.33 9,8.5S9.67,7 10.5,7S12,7.67 12,8.5S11.33,10 10.5,10zM15,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,15.55 15.55,16 15,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/copy_all.xml b/compose/material/material/icons/generator/raw-icons/filled/copy_all.xml
deleted file mode 100644
index e80c13a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/copy_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H9C7.9,2 7,2.9 7,4v12c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,16H9V4h9V16zM3,15v-2h2v2H3zM3,9.5h2v2H3V9.5zM10,20h2v2h-2V20zM3,18.5v-2h2v2H3zM5,22c-1.1,0 -2,-0.9 -2,-2h2V22zM8.5,22h-2v-2h2V22zM13.5,22L13.5,22l0,-2h2v0C15.5,21.1 14.6,22 13.5,22zM5,6L5,6l0,2H3v0C3,6.9 3.9,6 5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/copyright.xml b/compose/material/material/icons/generator/raw-icons/filled/copyright.xml
deleted file mode 100644
index 7cb1adc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/copyright.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.88,9.14c1.28,0.06 1.61,1.15 1.63,1.66h1.79c-0.08,-1.98 -1.49,-3.19 -3.45,-3.19C9.64,7.61 8,9 8,12.14c0,1.94 0.93,4.24 3.84,4.24c2.22,0 3.41,-1.65 3.44,-2.95h-1.79c-0.03,0.59 -0.45,1.38 -1.63,1.44C10.55,14.83 10,13.81 10,12.14C10,9.25 11.28,9.16 11.88,9.14zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/coronavirus.xml b/compose/material/material/icons/generator/raw-icons/filled/coronavirus.xml
deleted file mode 100644
index 12bf7a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/coronavirus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.25,10.5c-0.41,0 -0.75,0.34 -0.75,0.75h-1.54c-0.15,-1.37 -0.69,-2.63 -1.52,-3.65l1.09,-1.09l0.01,0.01c0.29,0.29 0.77,0.29 1.06,0s0.29,-0.77 0,-1.06L18.54,4.4c-0.29,-0.29 -0.77,-0.29 -1.06,0c-0.29,0.29 -0.29,0.76 -0.01,1.05l-1.09,1.09c-1.02,-0.82 -2.27,-1.36 -3.64,-1.51V3.5h0.01c0.41,0 0.75,-0.34 0.75,-0.75C13.5,2.34 13.16,2 12.75,2h-1.5c-0.41,0 -0.75,0.34 -0.75,0.75c0,0.41 0.33,0.74 0.74,0.75v1.55C9.87,5.19 8.62,5.74 7.6,6.56L6.51,5.47l0.01,-0.01c0.29,-0.29 0.29,-0.77 0,-1.06c-0.29,-0.29 -0.77,-0.29 -1.06,0L4.4,5.46c-0.29,0.29 -0.29,0.77 0,1.06c0.29,0.29 0.76,0.29 1.05,0.01l1.09,1.09c-0.82,1.02 -1.36,2.26 -1.5,3.63H3.5c0,-0.41 -0.34,-0.75 -0.75,-0.75C2.34,10.5 2,10.84 2,11.25v1.5c0,0.41 0.34,0.75 0.75,0.75c0.41,0 0.75,-0.34 0.75,-0.75h1.54c0.15,1.37 0.69,2.61 1.5,3.63l-1.09,1.09c-0.29,-0.29 -0.76,-0.28 -1.05,0.01c-0.29,0.29 -0.29,0.77 0,1.06l1.06,1.06c0.29,0.29 0.77,0.29 1.06,0c0.29,-0.29 0.29,-0.77 0,-1.06l-0.01,-0.01l1.09,-1.09c1.02,0.82 2.26,1.36 3.63,1.51v1.55c-0.41,0.01 -0.74,0.34 -0.74,0.75c0,0.41 0.34,0.75 0.75,0.75h1.5c0.41,0 0.75,-0.34 0.75,-0.75c0,-0.41 -0.34,-0.75 -0.75,-0.75h-0.01v-1.54c1.37,-0.14 2.62,-0.69 3.64,-1.51l1.09,1.09c-0.29,0.29 -0.28,0.76 0.01,1.05c0.29,0.29 0.77,0.29 1.06,0l1.06,-1.06c0.29,-0.29 0.29,-0.77 0,-1.06c-0.29,-0.29 -0.77,-0.29 -1.06,0l-0.01,0.01l-1.09,-1.09c0.82,-1.02 1.37,-2.27 1.52,-3.65h1.54c0,0.41 0.34,0.75 0.75,0.75c0.41,0 0.75,-0.34 0.75,-0.75v-1.5C22,10.84 21.66,10.5 21.25,10.5zM13.75,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S13.2,8 13.75,8zM12,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,12.55 12.55,13 12,13zM10.25,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S9.7,8 10.25,8zM8.5,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9.5,12.55 9.05,13 8.5,13zM10.25,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C11.25,15.55 10.8,16 10.25,16zM13.75,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C14.75,15.55 14.3,16 13.75,16zM14.5,12c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S14.5,12.55 14.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/corporate_fare.xml b/compose/material/material/icons/generator/raw-icons/filled/corporate_fare.xml
deleted file mode 100644
index 9ad3b6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/corporate_fare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h20V7H12zM10,19H4v-2h6V19zM10,15H4v-2h6V15zM10,11H4V9h6V11zM10,7H4V5h6V7zM20,19h-8V9h8V19zM18,11h-4v2h4V11zM18,15h-4v2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cottage.xml b/compose/material/material/icons/generator/raw-icons/filled/cottage.xml
deleted file mode 100644
index db9752e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cottage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h7v-6h2v6h7v-9.38l1.79,1.36L23,11.4L12,3zM10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/countertops.xml b/compose/material/material/icons/generator/raw-icons/filled/countertops.xml
deleted file mode 100644
index e94fab6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/countertops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10V7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3h2c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1v3H8c1.1,0 2,-0.9 2,-2V4H4v4c0,1.1 0.9,2 2,2H2v2h2v8h16v-8h2v-2H18zM13,18h-2v-6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/create.xml b/compose/material/material/icons/generator/raw-icons/filled/create.xml
deleted file mode 100644
index 2844baf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/create.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/create_new_folder.xml b/compose/material/material/icons/generator/raw-icons/filled/create_new_folder.xml
deleted file mode 100644
index 78c16228..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/create_new_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM19,14h-3v3h-2v-3h-3v-2h3L14,9h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/credit_card.xml b/compose/material/material/icons/generator/raw-icons/filled/credit_card.xml
deleted file mode 100644
index 9c0fb1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/credit_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/credit_card_off.xml b/compose/material/material/icons/generator/raw-icons/filled/credit_card_off.xml
deleted file mode 100644
index 34fbc70..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/credit_card_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,21.9L2.1,2.1L0.69,3.51l1.55,1.55C2.09,5.34 2.01,5.66 2.01,6L2,18c0,1.11 0.89,2 2,2h13.17l3.31,3.31L21.9,21.9zM4,12V8h1.17l4,4H4zM6.83,4H20c1.11,0 2,0.89 2,2v12c0,0.34 -0.08,0.66 -0.23,0.94L14.83,12H20V8h-9.17L6.83,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/credit_score.xml b/compose/material/material/icons/generator/raw-icons/filled/credit_score.xml
deleted file mode 100644
index 7726a78..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/credit_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h5v-2H4v-6h18V6C22,4.89 21.11,4 20,4zM20,8H4V6h16V8zM14.93,19.17l-2.83,-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41,-1.41L14.93,19.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crib.xml b/compose/material/material/icons/generator/raw-icons/filled/crib.xml
deleted file mode 100644
index a3b6b77..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crib.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9h-6V4H8C5.79,4 4,5.79 4,8v6c0,1.1 0.9,2 2,2h2v2.93c-0.61,-0.35 -1.16,-0.78 -1.65,-1.27l-1.42,1.42C6.74,20.88 9.24,22 12,22c2.76,0 5.26,-1.12 7.07,-2.93l-1.42,-1.42c-0.49,0.49 -1.05,0.92 -1.65,1.27V16h2c1.1,0 2,-0.9 2,-2v-3C20,9.9 19.1,9 18,9zM14,19.75C13.36,19.91 12.69,20 12,20c-0.69,0 -1.36,-0.09 -2,-0.25V16h4V19.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crisis_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/crisis_alert.xml
deleted file mode 100644
index 1aa1128..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crisis_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,2.5c0,1.5 -1.5,6 -1.5,6h-2c0,0 -1.5,-4.5 -1.5,-6C9.5,1.12 10.62,0 12,0S14.5,1.12 14.5,2.5zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM16.08,5.11c0.18,-0.75 0.33,-1.47 0.39,-2.06C19.75,4.69 22,8.08 22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-3.92 2.25,-7.31 5.53,-8.95C7.6,3.64 7.74,4.37 7.92,5.11C5.58,6.51 4,9.07 4,12c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,9.07 18.42,6.51 16.08,5.11zM18,12c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2 0.98,-3.77 2.48,-4.86c0.23,0.81 0.65,2.07 0.65,2.07C8.43,9.93 8,10.92 8,12c0,2.21 1.79,4 4,4s4,-1.79 4,-4c0,-1.08 -0.43,-2.07 -1.13,-2.79c0,0 0.41,-1.22 0.65,-2.07C17.02,8.23 18,10 18,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop.xml b/compose/material/material/icons/generator/raw-icons/filled/crop.xml
deleted file mode 100644
index 56a8102..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2V7c0,-1.1 -0.9,-2 -2,-2H9v2h8v8zM7,17V1H5v4H1v2h4v10c0,1.1 0.9,2 2,2h10v4h2v-4h4v-2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_16_9.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_16_9.xml
deleted file mode 100644
index 7bc13cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_16_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H5C3.9,7 3,7.9 3,9v6c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,15H5V9h14V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_3_2.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_3_2.xml
deleted file mode 100644
index acaa273..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_3_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6H5C3.9,6 3,6.9 3,8v8c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM19,16H5V8h14V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_5_4.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_5_4.xml
deleted file mode 100644
index e9fc8e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_5_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.9,4 3,4.9 3,6v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,18H5V6h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_7_5.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_7_5.xml
deleted file mode 100644
index d151917..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_7_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C3.9,5 3,5.9 3,7v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7C21,5.9 20.1,5 19,5zM19,17H5V7h14V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_din.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_din.xml
deleted file mode 100644
index 941565a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_din.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_free.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_free.xml
deleted file mode 100644
index c43776a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v4h2L5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2zM5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_landscape.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_landscape.xml
deleted file mode 100644
index 9ebb272..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_original.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_original.xml
deleted file mode 100644
index 16bed25..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_original.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM13.96,12.29l-2.75,3.54 -1.96,-2.36L6.5,17h11l-3.54,-4.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_portrait.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_portrait.xml
deleted file mode 100644
index 967824b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,5c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_rotate.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_rotate.xml
deleted file mode 100644
index ec20d79..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_rotate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.47,21.49C4.2,19.93 1.86,16.76 1.5,13L0,13c0.51,6.16 5.66,11 11.95,11 0.23,0 0.44,-0.02 0.66,-0.03L8.8,20.15l-1.33,1.34zM12.05,0c-0.23,0 -0.44,0.02 -0.66,0.04l3.81,3.81 1.33,-1.33C19.8,4.07 22.14,7.24 22.5,11L24,11c-0.51,-6.16 -5.66,-11 -11.95,-11zM16,14h2L18,8c0,-1.11 -0.9,-2 -2,-2h-6v2h6v6zM8,16L8,4L6,4v2L4,6v2h2v8c0,1.1 0.89,2 2,2h8v2h2v-2h2v-2L8,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/crop_square.xml b/compose/material/material/icons/generator/raw-icons/filled/crop_square.xml
deleted file mode 100644
index 419cdf9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/crop_square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4L6,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,6c0,-1.1 -0.9,-2 -2,-2zM18,18L6,18L6,6h12v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cruelty_free.xml b/compose/material/material/icons/generator/raw-icons/filled/cruelty_free.xml
deleted file mode 100644
index 4fc1fef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cruelty_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.84,14.52c-0.26,-0.19 -0.62,-0.63 -0.79,-0.84C17.24,12.01 19,8.87 19,5c0,-1.95 -0.74,-3 -2,-3c-1.54,0 -3.96,2.06 -5,5.97C10.96,4.06 8.54,2 7,2C5.74,2 5,3.05 5,5c0,3.87 1.76,7.01 2.95,8.68c-0.17,0.21 -0.53,0.65 -0.79,0.84c-0.5,0.41 -1.66,1.37 -1.66,2.98c0,2.21 1.79,4 4,4c1.55,0 2.5,-0.56 2.5,-0.56s0.95,0.56 2.5,0.56c2.21,0 4,-1.79 4,-4C18.5,15.89 17.34,14.93 16.84,14.52zM9.35,12.2C8.34,10.7 7,8.12 7,5c0,-0.49 0.06,-0.8 0.12,-0.97c0.94,0.31 3.24,2.71 3.38,7.64C10.03,11.79 9.66,11.97 9.35,12.2zM10.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S11,15.59 11,16C11,16.41 10.78,16.75 10.5,16.75zM12,19.5c-0.55,0 -1,-0.72 -1,-1c0,-0.28 0.45,-0.5 1,-0.5s1,0.22 1,0.5C13,18.78 12.55,19.5 12,19.5zM13.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S14,15.59 14,16C14,16.41 13.78,16.75 13.5,16.75zM13.5,11.67c0.14,-4.93 2.44,-7.33 3.38,-7.64C16.94,4.2 17,4.51 17,5c0,3.12 -1.34,5.7 -2.35,7.2C14.34,11.97 13.97,11.79 13.5,11.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/css.xml b/compose/material/material/icons/generator/raw-icons/filled/css.xml
deleted file mode 100644
index 3fdd1d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/css.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,14v-1H11v0.5h2v-1h-2.5c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H13v-0.5h-2v1h2.5c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1h-3C9.95,15 9.5,14.55 9.5,14zM17,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1h-2.5v-1h2V11H21v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2.5v1h-2V13H16v1C16,14.55 16.45,15 17,15zM8,10c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1H6.5v0.5h-2v-3h2V11H8V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_bitcoin.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_bitcoin.xml
deleted file mode 100644
index 8fcc49e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_bitcoin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.57C17.65,10.88 18,9.98 18,9c0,-1.86 -1.27,-3.43 -3,-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2c2.21,0 4,-1.79 4,-4C19,13.55 18.22,12.27 17.06,11.57zM10,7h4c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-4V7zM15,17h-5v-4h5c1.1,0 2,0.9 2,2S16.1,17 15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_exchange.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_exchange.xml
deleted file mode 100644
index 672b0ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_exchange.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.89,11.1c-1.78,-0.59 -2.64,-0.96 -2.64,-1.9c0,-1.02 1.11,-1.39 1.81,-1.39c1.31,0 1.79,0.99 1.9,1.34l1.58,-0.67C15.39,8.03 14.72,6.56 13,6.24V5h-2v1.26C8.52,6.82 8.51,9.12 8.51,9.22c0,2.27 2.25,2.91 3.35,3.31c1.58,0.56 2.28,1.07 2.28,2.03c0,1.13 -1.05,1.61 -1.98,1.61c-1.82,0 -2.34,-1.87 -2.4,-2.09L8.1,14.75c0.63,2.19 2.28,2.78 2.9,2.96V19h2v-1.24c0.4,-0.09 2.9,-0.59 2.9,-3.22C15.9,13.15 15.29,11.93 12.89,11.1zM3,21H1v-6h6v2l-2.48,0c1.61,2.41 4.36,4 7.48,4c4.97,0 9,-4.03 9,-9h2c0,6.08 -4.92,11 -11,11c-3.72,0 -7.01,-1.85 -9,-4.67L3,21zM1,12C1,5.92 5.92,1 12,1c3.72,0 7.01,1.85 9,4.67L21,3h2v6h-6V7l2.48,0C17.87,4.59 15.12,3 12,3c-4.97,0 -9,4.03 -9,9H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_franc.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_franc.xml
deleted file mode 100644
index 679d05e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_franc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5l0,-2l-11,0l0,13l-2,0l0,2l2,0l0,3l2,0l0,-3l4,0l0,-2l-4,0l0,-3l8,0l0,-2l-8,0l0,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_lira.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_lira.xml
deleted file mode 100644
index 857ee0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_lira.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0 5,-2.24 5,-5h2c0,3.87 -3.13,7 -7,7H9v-5.16l-3,1.88l0,-2.36l3,-1.88v-2.36L6,13l0,-2.36L9,8.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_pound.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_pound.xml
deleted file mode 100644
index 7297f11..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_pound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,21c1.93,0 3.62,-1.17 4,-3l-1.75,-0.88C16,18.21 15.33,19 14,19l-4.9,0c0.83,-1 1.5,-2.34 1.5,-4c0,-0.35 -0.03,-0.69 -0.08,-1L14,14v-2l-4.18,0C9,10.42 8,9.6 8,8c0,-1.93 1.57,-3.5 3.5,-3.5c1.5,0 2.79,0.95 3.28,2.28L16.63,6c-0.8,-2.05 -2.79,-3.5 -5.13,-3.5C8.46,2.5 6,4.96 6,8c0,1.78 0.79,2.9 1.49,4L6,12v2l2.47,0c0.08,0.31 0.13,0.64 0.13,1c0,2.7 -2.6,4 -2.6,4v2H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_ruble.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_ruble.xml
deleted file mode 100644
index 15154683..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_ruble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0 5.5,-2.46 5.5,-5.5C19,5.46 16.54,3 13.5,3zM13.5,12H9V5h4.5C15.43,5 17,6.57 17,8.5S15.43,12 13.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_rupee.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_rupee.xml
deleted file mode 100644
index 422698e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_rupee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.66,7C13.1,5.82 11.9,5 10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58 0.84,1.26 1.05,2L18,7v2l-2.02,0c-0.25,2.8 -2.61,5 -5.48,5H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0 3.22,-1.3 3.46,-3L6,9V7L13.66,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_yen.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_yen.xml
deleted file mode 100644
index 16f26eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_yen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,11l4.08,0l0,2l-5,0l0,2l5,0l0,2l-5,0l0,4l-2,0l0,-4l-5,0l0,-2l5,0l0,-2l-5,0l0,-2l4.08,0l-5.08,-8l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/currency_yuan.xml b/compose/material/material/icons/generator/raw-icons/filled/currency_yuan.xml
deleted file mode 100644
index 5fe3115..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/currency_yuan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.28,12l4.72,0l0,2l-5,0l0,7l-2,0l0,-7l-5,0l0,-2l4.72,0l-5.72,-9l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/curtains.xml b/compose/material/material/icons/generator/raw-icons/filled/curtains.xml
deleted file mode 100644
index ead7608..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/curtains.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM8.19,12c2.04,-1.35 3.5,-3.94 3.76,-7h0.09c0.26,3.06 1.72,5.65 3.76,7c-2.04,1.35 -3.5,3.94 -3.76,7h-0.09C11.69,15.94 10.23,13.35 8.19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/curtains_closed.xml b/compose/material/material/icons/generator/raw-icons/filled/curtains_closed.xml
deleted file mode 100644
index f951c6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/curtains_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM11,5h2v14h-2V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/cyclone.xml b/compose/material/material/icons/generator/raw-icons/filled/cyclone.xml
deleted file mode 100644
index dd08136a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/cyclone.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4C16,9.79 14.21,8 12,8zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.47V5.35C20.05,4.77 16.56,4 12,4C9.85,4 7.89,4.86 6.46,6.24C6.59,5.39 6.86,3.84 7.47,2H5.35C4.77,3.95 4,7.44 4,12c0,2.15 0.86,4.11 2.24,5.54c-0.85,-0.14 -2.4,-0.4 -4.24,-1.01v2.12C3.95,19.23 7.44,20 12,20c2.15,0 4.11,-0.86 5.54,-2.24c-0.14,0.85 -0.4,2.4 -1.01,4.24h2.12C19.23,20.05 20,16.56 20,12c0,-2.15 -0.86,-4.11 -2.24,-5.54C18.61,6.59 20.16,6.86 22,7.47zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S15.31,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dangerous.xml b/compose/material/material/icons/generator/raw-icons/filled/dangerous.xml
deleted file mode 100644
index 2fcffef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dangerous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM17,15.74L15.74,17 12,13.26 8.26,17 7,15.74 10.74,12 7,8.26 8.26,7 12,10.74 15.74,7 17,8.26 13.26,12 17,15.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dark_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/dark_mode.xml
deleted file mode 100644
index e539116..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dark_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9c0,-0.46 -0.04,-0.92 -0.1,-1.36c-0.98,1.37 -2.58,2.26 -4.4,2.26c-2.98,0 -5.4,-2.42 -5.4,-5.4c0,-1.81 0.89,-3.42 2.26,-4.4C12.92,3.04 12.46,3 12,3L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dashboard.xml b/compose/material/material/icons/generator/raw-icons/filled/dashboard.xml
deleted file mode 100644
index a882fd8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h8L11,3L3,3v10zM3,21h8v-6L3,15v6zM13,21h8L21,11h-8v10zM13,3v6h8L21,3h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dashboard_customize.xml b/compose/material/material/icons/generator/raw-icons/filled/dashboard_customize.xml
deleted file mode 100644
index dcfbbd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dashboard_customize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h8v8L3,11zM13,3h8v8h-8zM3,13h8v8L3,21zM18,13h-2v3h-3v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/data_array.xml b/compose/material/material/icons/generator/raw-icons/filled/data_array.xml
deleted file mode 100644
index 3f9d0b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/data_array.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4l0,2l3,0l0,12l-3,0l0,2l5,0l0,-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20l5,0l0,-2l-3,0l0,-12l3,0l0,-2l-5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/data_exploration.xml b/compose/material/material/icons/generator/raw-icons/filled/data_exploration.xml
deleted file mode 100644
index d0abfdd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/data_exploration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,1.33 0.26,2.61 0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29,-2.79l-4.4,4.4C5.52,20.26 8.56,22 12,22h8c1.1,0 2,-0.9 2,-2v-8C22,6.48 17.52,2 12,2zM19.5,20.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.05,20.5 19.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/data_object.xml b/compose/material/material/icons/generator/raw-icons/filled/data_object.xml
deleted file mode 100644
index a924fe6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/data_object.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7v2c0,0.55 -0.45,1 -1,1H2v4h1c0.55,0 1,0.45 1,1v2c0,1.65 1.35,3 3,3h3v-2H7c-0.55,0 -1,-0.45 -1,-1v-2c0,-1.3 -0.84,-2.42 -2,-2.83v-0.34C5.16,11.42 6,10.3 6,9V7c0,-0.55 0.45,-1 1,-1h3V4H7C5.35,4 4,5.35 4,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10c-0.55,0 -1,-0.45 -1,-1V7c0,-1.65 -1.35,-3 -3,-3h-3v2h3c0.55,0 1,0.45 1,1v2c0,1.3 0.84,2.42 2,2.83v0.34c-1.16,0.41 -2,1.52 -2,2.83v2c0,0.55 -0.45,1 -1,1h-3v2h3c1.65,0 3,-1.35 3,-3v-2c0,-0.55 0.45,-1 1,-1h1v-4H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/data_saver_off.xml b/compose/material/material/icons/generator/raw-icons/filled/data_saver_off.xml
deleted file mode 100644
index 7a0a8be..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/data_saver_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/data_saver_on.xml b/compose/material/material/icons/generator/raw-icons/filled/data_saver_on.xml
deleted file mode 100644
index cd4a458..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/data_saver_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11zM13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/data_thresholding.xml b/compose/material/material/icons/generator/raw-icons/filled/data_thresholding.xml
deleted file mode 100644
index e58901d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/data_thresholding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10.67,8.17l2,2l3.67,-3.67l1.41,1.41L12.67,13l-2,-2l-3,3l-1.41,-1.41L10.67,8.17zM5,16h1.72L5,17.72V16zM5.84,19l3,-3h1.83l-3,3H5.84zM9.8,19l3,-3h1.62l-3,3H9.8zM13.53,19l3,-3h1.62l-3,3H13.53zM19,19h-1.73L19,17.27V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/data_usage.xml b/compose/material/material/icons/generator/raw-icons/filled/data_usage.xml
deleted file mode 100644
index e1919ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/data_usage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92 0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53c0.56,-1.24 0.88,-2.62 0.88,-4.07 0,-5.18 -3.95,-9.45 -9,-9.95zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-3.53 2.61,-6.43 6,-6.92V2.05c-5.06,0.5 -9,4.76 -9,9.95 0,5.52 4.47,10 9.99,10 3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dataset.xml b/compose/material/material/icons/generator/raw-icons/filled/dataset.xml
deleted file mode 100644
index a19cab0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dataset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,17H7v-4h4V17zM11,11H7V7h4V11zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dataset_linked.xml b/compose/material/material/icons/generator/raw-icons/filled/dataset_linked.xml
deleted file mode 100644
index 3f2aa35..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dataset_linked.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.09,17H7v-4h3.69c0.95,-0.63 2.09,-1 3.31,-1h6c0.34,0 0.67,0.04 1,0.09V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h3.81C8.3,20.12 8,19.09 8,18C8,17.66 8.04,17.33 8.09,17zM13,7h4v4h-4V7zM7,7h4v4H7V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c0,-1.1 0.9,-2 2,-2h2v-2h-2c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4h2v-2h-2C12.9,20 12,19.1 12,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14h-2v2h2c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-2v2h2c2.21,0 4,-1.79 4,-4C24,15.79 22.21,14 20,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/date_range.xml b/compose/material/material/icons/generator/raw-icons/filled/date_range.xml
deleted file mode 100644
index 4394703..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/date_range.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11L7,11v2h2v-2zM13,11h-2v2h2v-2zM17,11h-2v2h2v-2zM19,4h-1L18,2h-2v2L8,4L8,2L6,2v2L5,4c-1.11,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,20L5,20L5,9h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/deblur.xml b/compose/material/material/icons/generator/raw-icons/filled/deblur.xml
deleted file mode 100644
index 3c8ea52..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/deblur.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v18c4.97,0 9,-4.03 9,-9C21,7.03 16.97,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/deck.xml b/compose/material/material/icons/generator/raw-icons/filled/deck.xml
deleted file mode 100644
index c6af7a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/deck.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9l-10,-7l-10,7l9,0l0,13l2,0l0,-13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.14,12l-1.96,0.37l0.82,4.37l0,5.26l2,0l0.02,-4l1.98,0l0,4l2,0l0,-6l-4.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,16l-4.1,0l0,6l2,0l0,-4l1.98,0l0.02,4l2,0l0,-5.26l0.82,-4.37l-1.96,-0.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dehaze.xml b/compose/material/material/icons/generator/raw-icons/filled/dehaze.xml
deleted file mode 100644
index d8b1022..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dehaze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,15.5v2h20v-2L2,15.5zM2,10.5v2h20v-2L2,10.5zM2,5.5v2h20v-2L2,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/delete.xml b/compose/material/material/icons/generator/raw-icons/filled/delete.xml
deleted file mode 100644
index 3c4030b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/delete_forever.xml b/compose/material/material/icons/generator/raw-icons/filled/delete_forever.xml
deleted file mode 100644
index b0b1d8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/delete_forever.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/delete_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/delete_outline.xml
deleted file mode 100644
index 5fb767e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/delete_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8,9h8v10L8,19L8,9zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/delete_sweep.xml b/compose/material/material/icons/generator/raw-icons/filled/delete_sweep.xml
deleted file mode 100644
index 22560a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/delete_sweep.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16h4v2h-4zM15,8h7v2h-7zM15,12h6v2h-6zM3,18c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2L13,8L3,8v10zM14,5h-3l-1,-1L6,4L5,5L2,5v2h12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/delivery_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/delivery_dining.xml
deleted file mode 100644
index 7e7cc0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/delivery_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35V7zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/density_large.xml b/compose/material/material/icons/generator/raw-icons/filled/density_large.xml
deleted file mode 100644
index d542113..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/density_large.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/density_medium.xml b/compose/material/material/icons/generator/raw-icons/filled/density_medium.xml
deleted file mode 100644
index c06902b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/density_medium.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/density_small.xml b/compose/material/material/icons/generator/raw-icons/filled/density_small.xml
deleted file mode 100644
index eb68a8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/density_small.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,20h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/departure_board.xml b/compose/material/material/icons/generator/raw-icons/filled/departure_board.xml
deleted file mode 100644
index 5621bf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/departure_board.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1c-2.4,0 -4.52,1.21 -5.78,3.05 0.01,-0.01 0.01,-0.02 0.02,-0.03C9.84,4 9.42,4 9,4c-4.42,0 -8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22L2,22c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1.78c0.61,-0.55 1,-1.34 1,-2.22v-3.08c3.39,-0.49 6,-3.39 6,-6.92 0,-3.87 -3.13,-7 -7,-7zM4.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5S3.67,16 4.5,16s1.5,0.67 1.5,1.5S5.33,19 4.5,19zM3,13L3,8h6c0,1.96 0.81,3.73 2.11,5L3,13zM13.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,13c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM16.5,4L15,4v5l3.62,2.16 0.75,-1.23 -2.87,-1.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/description.xml b/compose/material/material/icons/generator/raw-icons/filled/description.xml
deleted file mode 100644
index a8c3eac..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/description.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM16,18L8,18v-2h8v2zM16,14L8,14v-2h8v2zM13,9L13,3.5L18.5,9L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/deselect.xml b/compose/material/material/icons/generator/raw-icons/filled/deselect.xml
deleted file mode 100644
index bf594e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/deselect.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2H3V13zM7,21h2v-2H7V21zM13,3h-2v2h2V3zM19,3v2h2C21,3.9 20.1,3 19,3zM5,21v-2H3C3,20.1 3.9,21 5,21zM3,17h2v-2H3V17zM11,21h2v-2h-2V21zM19,13h2v-2h-2V13zM19,9h2V7h-2V9zM15,5h2V3h-2V5zM7.83,5L7,4.17V3h2v2H7.83zM19.83,17L19,16.17V15h2v2H19.83zM21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19zM9,15v-3.17L12.17,15H9zM15,12.17V9h-3.17l-2,-2H17v7.17L15,12.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/design_services.xml b/compose/material/material/icons/generator/raw-icons/filled/design_services.xml
deleted file mode 100644
index 5e507a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/design_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,11.51l1.57,-1.57l-3.75,-3.75l-1.57,1.57L8.35,3.63c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l4.13,4.13L3,17.25V21h3.75l4.76,-4.76l4.13,4.13c0.95,0.95 2.23,0.6 2.83,0l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83L16.24,11.51zM9.18,11.07L5.04,6.94l1.89,-1.9c0,0 0,0 0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19,-1.19l1.45,1.45L9.18,11.07zM17.06,18.96l-4.13,-4.13l1.9,-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19,-1.19l1.27,1.27L17.06,18.96z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.47,-0.47 -1.12,-0.29 -1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/desk.xml b/compose/material/material/icons/generator/raw-icons/filled/desk.xml
deleted file mode 100644
index c6f9813..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/desk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6v12h2V8h10v10h2v-2h4v2h2V6H2zM20,8v2h-4V8H20zM16,14v-2h4v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/desktop_access_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/desktop_access_disabled.xml
deleted file mode 100644
index 9bd4754..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/desktop_access_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,16c0,1.1 -0.9,2 -2,2h-1l-2,-2h3L21,4L6,4L4,2h17c1.1,0 2,0.9 2,2v12zM17.5,18l-2,-2zM14.9,18l6,6 1.3,-1.3 -4.7,-4.7 -2,-2L1.2,1.8 0,3.1l1,1L1,16c0,1.1 0.9,2 2,2h7v2L8,20v2h8v-2h-2v-2h0.9zM3,16L3,6.1l9.9,9.9L3,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/desktop_mac.xml b/compose/material/material/icons/generator/raw-icons/filled/desktop_mac.xml
deleted file mode 100644
index d90cbc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/desktop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v11c0,1.1 0.9,2 2,2h6l-2,2v1h8v-1l-2,-2h6c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/desktop_windows.xml b/compose/material/material/icons/generator/raw-icons/filled/desktop_windows.xml
deleted file mode 100644
index bd4cb0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/desktop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v10c0,1.1 0.9,2 2,2h6v2H8v2h8v-2h-2v-2h6c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/details.xml b/compose/material/material/icons/generator/raw-icons/filled/details.xml
deleted file mode 100644
index 91fe861..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/details.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,21h20L12,3zM13,8.92L18.6,19H13V8.92zM11,8.92V19H5.4L11,8.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/developer_board.xml b/compose/material/material/icons/generator/raw-icons/filled/developer_board.xml
deleted file mode 100644
index 100c0e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/developer_board.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9L22,7h-2L20,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-2h2v-2h-2v-2h2v-2h-2L20,9h2zM18,19L4,19L4,5h14v14zM6,13h5v4L6,17zM12,7h4v3h-4zM6,7h5v5L6,12zM12,11h4v6h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/developer_board_off.xml b/compose/material/material/icons/generator/raw-icons/filled/developer_board_off.xml
deleted file mode 100644
index a9827ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/developer_board_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0,-1.1 -0.9,-2 -2,-2H5.83L7.83,5zM12,9.17V7h4v3h-3.17L12,9.17zM9.83,7H11v1.17L9.83,7zM13.83,11H16v2.17L13.83,11zM18,21c0.06,0 0.11,0 0.16,-0.01l2.32,2.32l1.41,-1.41L2.1,2.1L0.69,3.51l1.32,1.32C2,4.89 2,4.94 2,5v14c0,1.1 0.9,2 2,2H18zM4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/developer_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/developer_mode.xml
deleted file mode 100644
index ded6b03..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/developer_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v2h2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1c-1.1,0 -2,0.9 -2,2v4h2L7,5zM15.41,16.59L20,12l-4.59,-4.59L14,8.83 17.17,12 14,15.17l1.41,1.42zM10,15.17L6.83,12 10,8.83 8.59,7.41 4,12l4.59,4.59L10,15.17zM17,19L7,19v-2L5,17v4c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/device_hub.xml b/compose/material/material/icons/generator/raw-icons/filled/device_hub.xml
deleted file mode 100644
index 3490a5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/device_hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16l-4,-4V8.82C14.16,8.4 15,7.3 15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6c0,1.3 0.84,2.4 2,2.82V12l-4,4H3v5h5v-3.05l4,-4.2 4,4.2V21h5v-5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/device_thermostat.xml b/compose/material/material/icons/generator/raw-icons/filled/device_thermostat.xml
deleted file mode 100644
index b67ee87..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/device_thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4 0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-1.63 -0.79,-3.09 -2,-4zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h-1v1h1v2h-1v1h1v2h-2L11,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/device_unknown.xml b/compose/material/material/icons/generator/raw-icons/filled/device_unknown.xml
deleted file mode 100644
index ea3c4c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/device_unknown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14zM12,6.72c-1.96,0 -3.5,1.52 -3.5,3.47h1.75c0,-0.93 0.82,-1.75 1.75,-1.75s1.75,0.82 1.75,1.75c0,1.75 -2.63,1.57 -2.63,4.45h1.76c0,-1.96 2.62,-2.19 2.62,-4.45 0,-1.96 -1.54,-3.47 -3.5,-3.47zM11.12,15.52h1.76v1.76h-1.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/devices.xml b/compose/material/material/icons/generator/raw-icons/filled/devices.xml
deleted file mode 100644
index 7be6491..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h18L22,4L4,4c-1.1,0 -2,0.9 -2,2v11L0,17v3h14v-3L4,17L4,6zM23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/devices_fold.xml b/compose/material/material/icons/generator/raw-icons/filled/devices_fold.xml
deleted file mode 100644
index 2eeceae..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/devices_fold.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-3c0,-1.43 -1.47,-2.4 -2.79,-1.84l-3,1.29C10.48,2.76 10,3.49 10,4.29V19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,19h-5.33l1.12,-0.48C16.52,18.2 17,17.48 17,16.68V5h3V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/devices_other.xml b/compose/material/material/icons/generator/raw-icons/filled/devices_other.xml
deleted file mode 100644
index 36305fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/devices_other.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h18L21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h4v-2L3,18L3,6zM13,12L9,12v1.78c-0.61,0.55 -1,1.33 -1,2.22s0.39,1.67 1,2.22L9,20h4v-1.78c0.61,-0.55 1,-1.34 1,-2.22s-0.39,-1.67 -1,-2.22L13,12zM11,17.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM22,8h-6c-0.5,0 -1,0.5 -1,1v10c0,0.5 0.5,1 1,1h6c0.5,0 1,-0.5 1,-1L23,9c0,-0.5 -0.5,-1 -1,-1zM21,18h-4v-8h4v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dialer_sip.xml b/compose/material/material/icons/generator/raw-icons/filled/dialer_sip.xml
deleted file mode 100644
index 9d87c05..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dialer_sip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3h-1v5h1L17,3zM15,5h-2L13,4h2L15,3h-3v3h2v1h-2v1h3L15,5zM18,3v5h1L19,6h2L21,3h-3zM20,5h-1L19,4h1v1zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.01,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.27,-0.26 0.35,-0.65 0.24,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dialpad.xml b/compose/material/material/icons/generator/raw-icons/filled/dialpad.xml
deleted file mode 100644
index a9a5544..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dialpad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/diamond.xml b/compose/material/material/icons/generator/raw-icons/filled/diamond.xml
deleted file mode 100644
index cc68727..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/diamond.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.16,3l-0.32,0l-2.63,5.25l5.58,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.46,8.25l5.16,0l-2.62,-5.25l-5.16,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.38,9.75l-8.63,0l0,10.35z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,20.1l0,-10.35l-8.63,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.54,8.25l2.62,-5.25l-5.16,0l-2.62,5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/difference.xml b/compose/material/material/icons/generator/raw-icons/filled/difference.xml
deleted file mode 100644
index 6d3869f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/difference.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,23H4c-1.1,0 -2,-0.9 -2,-2V7h2v14h14V23zM15,1H8C6.9,1 6.01,1.9 6.01,3L6,17c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V7L15,1zM16.5,15h-6v-2h6V15zM16.5,9h-2v2h-2V9h-2V7h2V5h2v2h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dining.xml b/compose/material/material/icons/generator/raw-icons/filled/dining.xml
deleted file mode 100644
index b4ce030..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM11,10.3c0,0.93 -0.64,1.71 -1.5,1.93V19H8v-6.77c-0.86,-0.22 -1.5,-1 -1.5,-1.93V6.5C6.5,6.22 6.72,6 7,6s0.5,0.22 0.5,0.5V9h0.75V6.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V9H10V6.5C10,6.22 10.23,6 10.5,6C10.78,6 11,6.22 11,6.5V10.3zM15.58,12.59l-0.08,0.03V19H14v-6.38l-0.08,-0.04c-0.97,-0.47 -1.67,-1.7 -1.67,-3.18c0,-1.88 1.13,-3.4 2.5,-3.4c1.38,0 2.5,1.53 2.5,3.41C17.25,10.89 16.55,12.12 15.58,12.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dinner_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/dinner_dining.xml
deleted file mode 100644
index 0c85849..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dinner_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h20l-2,2H4L2,19zM5,6h1v1H5V6zM5,4h1v1H5V4zM9,4v1H7V4H9zM9,7H7V6h2V7zM6,15.23c-0.36,0.11 -0.69,0.28 -1,0.47V8h1V15.23zM4,16.52C3.62,16.96 3.32,17.45 3.16,18h16.82c0.01,-0.16 0.03,-0.33 0.03,-0.5c0,-3.04 -2.46,-5.5 -5.5,-5.5c-2.29,0 -4.25,1.4 -5.08,3.4C8.84,15.15 8.19,15 7.5,15c-0.17,0 -0.33,0.02 -0.5,0.04V8h2c1.03,0.06 1.9,-0.96 2,-2h10V5H11c-0.1,-1.05 -0.97,-1.97 -2,-2H3v1h1v1H3v1h1v1H3v1h1V16.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions.xml b/compose/material/material/icons/generator/raw-icons/filled/directions.xml
deleted file mode 100644
index 1a80181..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,10.59l-7.99,-8c-0.78,-0.78 -2.05,-0.78 -2.83,0l-8.01,8c-0.78,0.78 -0.78,2.05 0,2.83l8.01,8c0.78,0.78 2.05,0.78 2.83,0l7.99,-8C22.2,12.63 22.2,11.37 21.41,10.59zM13.5,14.5V12H10v3H8v-4c0,-0.55 0.45,-1 1,-1h4.5V7.5L17,11L13.5,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_bike.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_bike.xml
deleted file mode 100644
index ab98d3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_bike.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM5,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5zM10.8,10.5l2.4,-2.4 0.8,0.8c1.3,1.3 3,2.1 5.1,2.1L19.1,9c-1.5,0 -2.7,-0.6 -3.6,-1.5l-1.9,-1.9c-0.5,-0.4 -1,-0.6 -1.6,-0.6s-1.1,0.2 -1.4,0.6L7.8,8.4c-0.4,0.4 -0.6,0.9 -0.6,1.4 0,0.6 0.2,1.1 0.6,1.4L11,14v5h2v-6.2l-2.2,-2.3zM19,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM19,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_boat.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_boat.xml
deleted file mode 100644
index 201d192..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_boat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21c-1.39,0 -2.78,-0.47 -4,-1.32 -2.44,1.71 -5.56,1.71 -8,0C6.78,20.53 5.39,21 4,21H2v2h2c1.38,0 2.74,-0.35 4,-0.99 2.52,1.29 5.48,1.29 8,0 1.26,0.65 2.62,0.99 4,0.99h2v-2h-2zM3.95,19H4c1.6,0 3.02,-0.88 4,-2 0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l1.89,-6.68c0.08,-0.26 0.06,-0.54 -0.06,-0.78s-0.34,-0.42 -0.6,-0.5L20,10.62V6c0,-1.1 -0.9,-2 -2,-2h-3V1H9v3H6c-1.1,0 -2,0.9 -2,2v4.62l-1.29,0.42c-0.26,0.08 -0.48,0.26 -0.6,0.5s-0.15,0.52 -0.06,0.78L3.95,19zM6,6h12v3.97L12,8 6,9.97V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_boat_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_boat_filled.xml
deleted file mode 100644
index 3f67bb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_boat_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21c-1.39,0 -2.78,-0.47 -4,-1.32c-2.44,1.71 -5.56,1.71 -8,0C6.78,20.53 5.39,21 4,21H2v2h2c1.38,0 2.74,-0.35 4,-0.99c2.52,1.29 5.48,1.29 8,0c1.26,0.65 2.62,0.99 4,0.99h2v-2H20zM3.95,19H4c1.6,0 3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l1.9,-6.68c0.11,-0.37 0.04,-1.06 -0.66,-1.28L20,10.62V6c0,-1.1 -0.9,-2 -2,-2h-3V1H9v3H6C4.9,4 4,4.9 4,6v4.62l-1.29,0.42c-0.63,0.19 -0.81,0.84 -0.66,1.28L3.95,19zM6,6h12v3.97L12,8L6,9.97V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_bus.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_bus.xml
deleted file mode 100644
index 19cd372..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_bus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16c0,0.88 0.39,1.67 1,2.22L5,20c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1.78c0.61,-0.55 1,-1.34 1,-2.22L20,6c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11L6,11L6,6h12v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_bus_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_bus_filled.xml
deleted file mode 100644
index dd835b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_bus_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5c0,0.95 0.38,1.81 1,2.44V20c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-2.06c0.62,-0.63 1,-1.49 1,-2.44V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10H6V7h12V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_car.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_car.xml
deleted file mode 100644
index db200d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_car.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.5,-4.5h11L19,11L5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_car_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_car_filled.xml
deleted file mode 100644
index 4d64a2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_car_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11C5.84,5 5.29,5.42 5.08,6.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,6.01zM7.5,16C6.67,16 6,15.33 6,14.5S6.67,13 7.5,13S9,13.67 9,14.5S8.33,16 7.5,16zM16.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,16 16.5,16zM5.81,10l1.04,-3h10.29l1.04,3H5.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_off.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_off.xml
deleted file mode 100644
index 445f47b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.83,10h0.67V7.5L17,11l-1.59,1.59L18.83,16l2.59,-2.59c0.78,-0.78 0.78,-2.05 0,-2.83l-7.99,-8c-0.78,-0.78 -2.05,-0.78 -2.83,0L8,5.17L12.83,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L5.17,8l-2.59,2.59c-0.78,0.78 -0.78,2.05 0,2.83l8.01,8c0.78,0.78 2.05,0.78 2.83,0L16,18.83l3.78,3.78l1.41,-1.41L2.81,2.81zM10,15H8v-4c0,-0.05 0.02,-0.09 0.03,-0.14L10,12.83V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_railway.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_railway.xml
deleted file mode 100644
index 71562d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_railway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,5c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10.5zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM18,10L6,10L6,5h12v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_railway_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_railway_filled.xml
deleted file mode 100644
index 3bf7845..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_railway_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S11.17,13 12,13s1.5,0.67 1.5,1.5S12.83,16 12,16zM18,10H6V7h12V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_run.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_run.xml
deleted file mode 100644
index 077904a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_run.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,5.48c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.89,19.38l1,-4.4 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3c1.3,1.5 3.3,2.5 5.5,2.5v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.4,-0.6 -1,-1 -1.7,-1 -0.3,0 -0.5,0.1 -0.8,0.1l-5.2,2.2v4.7h2v-3.4l1.8,-0.7 -1.6,8.1 -4.9,-1 -0.4,2 7,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_subway.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_subway.xml
deleted file mode 100644
index f244191..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_subway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.42,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,11L6,11L6,6h5v5zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11h-5L13,6h5v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_subway_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_subway_filled.xml
deleted file mode 100644
index 4ee50aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_subway_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM11,10H6V7h5V10zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_transit.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_transit.xml
deleted file mode 100644
index f244191..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_transit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.42,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,11L6,11L6,6h5v5zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11h-5L13,6h5v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_transit_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_transit_filled.xml
deleted file mode 100644
index 4ee50aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_transit_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM11,10H6V7h5V10zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/directions_walk.xml b/compose/material/material/icons/generator/raw-icons/filled/directions_walk.xml
deleted file mode 100644
index b726e4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/directions_walk.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.8,8.9L7,23h2.1l1.8,-8 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.4,-0.6 -1,-1 -1.7,-1 -0.3,0 -0.5,0.1 -0.8,0.1L6,8.3V13h2V9.6l1.8,-0.7"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dirty_lens.xml b/compose/material/material/icons/generator/raw-icons/filled/dirty_lens.xml
deleted file mode 100644
index e58dca6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dirty_lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.95,19L20,19L20,7L4,7v12h7.24c0.14,-0.98 0.42,-2.05 -0.16,-2.43 -0.89,-0.59 -1.27,2.06 -2.8,1.35 -1.39,-1.12 1.05,-1.29 0.5,-3.27 -0.22,-0.79 -2.28,0.36 -2.4,-1.24 -0.08,-1 1.49,-0.74 1.51,-1.49 0.03,-0.75 -1.03,-1.05 -0.25,-1.91 0.22,-0.24 0.71,-0.26 0.91,-0.19 0.79,0.27 1.55,1.82 2.51,1.19 1.03,-0.66 -1.88,-2.35 0,-2.86 1.64,-0.44 1.31,2.08 2.65,2.44 1.94,0.52 2.65,-4.55 4.41,-2.33 1.85,2.33 -3.43,2.27 -2.85,4.01 0.34,1.01 2.15,-1.2 2.76,0.53 0.64,1.83 -3.09,0.82 -3.04,1.66 0.06,0.83 2.41,0.55 1.64,2.12 -1.14,1.86 -3,-1.03 -3.81,0.09 -0.39,0.57 -0.09,1.49 0.13,2.33zM20,5c1.1,0 2,0.9 2,2v12c0,1.1 -0.9,2 -2,2L4,21c-1.1,0 -2,-0.9 -2,-2L2,7c0,-1.1 0.9,-2 2,-2h3.17L9,3h6l1.83,2L20,5zM18.14,18.01c-0.47,0 -0.86,-0.38 -0.86,-0.86s0.38,-0.86 0.86,-0.86c0.47,0 0.86,0.38 0.86,0.86s-0.38,0.86 -0.86,0.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/disabled_by_default.xml b/compose/material/material/icons/generator/raw-icons/filled/disabled_by_default.xml
deleted file mode 100644
index 14e55ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/disabled_by_default.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12L17,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/disabled_visible.xml b/compose/material/material/icons/generator/raw-icons/filled/disabled_visible.xml
deleted file mode 100644
index dfeb407..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/disabled_visible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,12.34C22,12.23 22,12.11 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,5.17 3.93,9.43 8.96,9.95c-0.93,-0.73 -1.72,-1.64 -2.32,-2.68C5.9,18 4,15.22 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l5.66,5.66c0.56,-0.4 1.17,-0.73 1.82,-1L7.1,5.69C8.45,4.63 10.15,4 12,4c4.24,0 7.7,3.29 7.98,7.45C20.69,11.67 21.37,11.97 21.99,12.34zM17,13c-3.18,0 -5.9,1.87 -7,4.5c1.1,2.63 3.82,4.5 7,4.5s5.9,-1.87 7,-4.5C22.9,14.87 20.18,13 17,13zM17,20c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C19.5,18.88 18.38,20 17,20zM18.5,17.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5S18.5,16.67 18.5,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/disc_full.xml b/compose/material/material/icons/generator/raw-icons/filled/disc_full.xml
deleted file mode 100644
index e316960..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/disc_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16h2v-2h-2v2zM20,7v5h2L22,7h-2zM10,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM10,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/discount.xml b/compose/material/material/icons/generator/raw-icons/filled/discount.xml
deleted file mode 100644
index 1512ef8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/discount.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.79,21L3,11.21v2c0,0.53 0.21,1.04 0.59,1.41l7.79,7.79c0.78,0.78 2.05,0.78 2.83,0l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83L12.79,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.38,17.41c0.78,0.78 2.05,0.78 2.83,0l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83l-7.79,-7.79C12.25,0.21 11.74,0 11.21,0H5C3.9,0 3,0.9 3,2v6.21c0,0.53 0.21,1.04 0.59,1.41L11.38,17.41zM7.25,3C7.94,3 8.5,3.56 8.5,4.25S7.94,5.5 7.25,5.5S6,4.94 6,4.25S6.56,3 7.25,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/display_settings.xml b/compose/material/material/icons/generator/raw-icons/filled/display_settings.xml
deleted file mode 100644
index 63b842f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/display_settings.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9.75l1.5,0l0,-1.5l-1.5,0l0,-1.25l-1.5,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15l1.5,0l0,-4l-1.5,0l0,1.25l-1.5,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/diversity_1.xml b/compose/material/material/icons/generator/raw-icons/filled/diversity_1.xml
deleted file mode 100644
index e99d32f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/diversity_1.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,17.58C0.48,17.9 0,18.62 0,19.43V21l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,17.04 4.39,17 4,17C3.01,17 2.07,17.21 1.22,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,17.58C21.93,17.21 20.99,17 20,17c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V21l4.5,0v-1.57C24,18.62 23.52,17.9 22.78,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,16.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,17.13 6,18.21 6,19.39V21h12v-1.61C18,18.21 17.32,17.13 16.24,16.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,10.34 9,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.48,10.86C2.17,10.1 2,9.36 2,8.6C2,6.02 4.02,4 6.6,4c2.68,0 3.82,1.74 5.4,3.59C13.57,5.76 14.7,4 17.4,4C19.98,4 22,6.02 22,8.6c0,0.76 -0.17,1.5 -0.48,2.26c0.65,0.31 1.18,0.82 1.53,1.44C23.65,11.1 24,9.88 24,8.6C24,4.9 21.1,2 17.4,2c-2.09,0 -4.09,0.97 -5.4,2.51C10.69,2.97 8.69,2 6.6,2C2.9,2 0,4.9 0,8.6c0,1.28 0.35,2.5 0.96,3.7C1.31,11.68 1.84,11.17 2.48,10.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/diversity_2.xml b/compose/material/material/icons/generator/raw-icons/filled/diversity_2.xml
deleted file mode 100644
index b333db5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/diversity_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,15.9l1.42,-1.42C8.79,12.05 7,10.41 7,8.85C7,7.8 7.8,7 8.85,7c1.11,0 1.54,0.65 2.68,2h0.93c1.12,-1.31 1.53,-2 2.68,-2c0.87,0 1.55,0.54 1.77,1.32c0.35,-0.04 0.68,-0.06 1,-0.06c0.36,0 0.7,0.03 1.03,0.08C18.7,6.43 17.13,5 15.15,5c-0.12,0 -0.23,0.03 -0.35,0.04C14.92,4.71 15,4.37 15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4c0,0.37 0.08,0.71 0.2,1.04C9.08,5.03 8.97,5 8.85,5C6.69,5 5,6.69 5,8.85C5,11.27 7.04,13.16 10.1,15.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.24c-0.32,-0.18 -0.66,-0.29 -1,-0.35c0.07,-0.1 0.15,-0.18 0.21,-0.28c1.08,-1.87 0.46,-4.18 -1.41,-5.26c-2.09,-1.21 -4.76,-0.39 -8.65,0.9l0.52,1.94c3.47,-1.14 5.79,-1.88 7.14,-1.1c0.91,0.53 1.2,1.61 0.68,2.53c-0.56,0.96 -1.33,1 -3.07,1.32l-0.47,0.81c0.58,1.62 0.97,2.33 0.39,3.32c-0.53,0.91 -1.61,1.2 -2.53,0.68c-0.06,-0.03 -0.11,-0.09 -0.17,-0.13c-0.3,0.67 -0.64,1.24 -1.03,1.73c0.07,0.04 0.13,0.09 0.2,0.14c1.87,1.08 4.18,0.46 5.26,-1.41c0.06,-0.1 0.09,-0.21 0.14,-0.32c0.22,0.27 0.48,0.51 0.8,0.69c1.43,0.83 3.27,0.34 4.1,-1.1S23.93,17.06 22.5,16.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.32,14.01c-0.74,3.58 -1.27,5.95 -2.62,6.73c-0.91,0.53 -2,0.24 -2.53,-0.68c-0.56,-0.96 -0.2,-1.66 0.39,-3.32L7.1,15.93c-1.7,-0.31 -2.5,-0.33 -3.07,-1.32c-0.53,-0.91 -0.24,-2 0.68,-2.53c0.09,-0.05 0.19,-0.08 0.29,-0.11c-0.35,-0.56 -0.64,-1.17 -0.82,-1.85c-0.16,0.07 -0.32,0.14 -0.48,0.23c-1.87,1.08 -2.49,3.39 -1.41,5.26c0.06,0.1 0.14,0.18 0.21,0.28c-0.34,0.06 -0.68,0.17 -1,0.35c-1.43,0.83 -1.93,2.66 -1.1,4.1s2.66,1.93 4.1,1.1c0.32,-0.18 0.58,-0.42 0.8,-0.69c0.05,0.11 0.08,0.22 0.14,0.32c1.08,1.87 3.39,2.49 5.26,1.41c2.09,-1.21 2.71,-3.93 3.55,-7.94L12.32,14.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/diversity_3.xml b/compose/material/material/icons/generator/raw-icons/filled/diversity_3.xml
deleted file mode 100644
index bb41d74..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/diversity_3.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.32,13.01c0.96,0.02 1.85,0.5 2.45,1.34C9.5,15.38 10.71,16 12,16c1.29,0 2.5,-0.62 3.23,-1.66c0.6,-0.84 1.49,-1.32 2.45,-1.34C16.96,11.78 14.08,11 12,11C9.93,11 7.04,11.78 6.32,13.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13L4,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C1,11.66 2.34,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13L20,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C17,11.66 18.34,13 20,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,5.34 9,7C9,8.66 10.34,10 12,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-3.27c-0.77,0 -1.35,0.45 -1.68,0.92C16.01,14.98 14.69,17 12,17c-1.43,0 -3.03,-0.64 -4.05,-2.08C7.56,14.37 6.95,14 6.27,14H3c-1.1,0 -2,0.9 -2,2v4h7v-2.26c1.15,0.8 2.54,1.26 4,1.26s2.85,-0.46 4,-1.26V20h7v-4C23,14.9 22.1,14 21,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dns.xml b/compose/material/material/icons/generator/raw-icons/filled/dns.xml
deleted file mode 100644
index 1d51bf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dns.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13H4c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1zM7,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM20,3H4c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1V4c0,-0.55 -0.45,-1 -1,-1zM7,9c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_disturb.xml b/compose/material/material/icons/generator/raw-icons/filled/do_disturb.xml
deleted file mode 100644
index 16a9b46..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8c1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12C20,16.4 16.4,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/do_disturb_alt.xml
deleted file mode 100644
index cb2d8a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.55 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/filled/do_disturb_off.xml
deleted file mode 100644
index 7bc6f27..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_disturb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v2h-1.17l4.51,4.51C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66L13.83,11H17zM1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81L1.39,4.22zM7,11h1.17l2,2H7V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/filled/do_disturb_on.xml
deleted file mode 100644
index ceea451..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM17,13H7v-2h10V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb.xml b/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_alt.xml
deleted file mode 100644
index 3354d6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8 1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12c0,4.4 -3.6,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_off.xml
deleted file mode 100644
index 2bd3d4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v2h-1.46l4.68,4.68C21.34,16.07 22,14.11 22,12c0,-5.52 -4.48,-10 -10,-10 -2.11,0 -4.07,0.66 -5.68,1.78L13.54,11H17zM2.27,2.27L1,3.54l2.78,2.78C2.66,7.93 2,9.89 2,12c0,5.52 4.48,10 10,10 2.11,0 4.07,-0.66 5.68,-1.78L20.46,23l1.27,-1.27L11,11 2.27,2.27zM7,13v-2h1.46l2,2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_on.xml
deleted file mode 100644
index 2c986ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13L7,13v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_on_total_silence.xml b/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_on_total_silence.xml
deleted file mode 100644
index 1bfaa5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_not_disturb_on_total_silence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM12,6c-3.3,0 -6,2.7 -6,6s2.7,6 6,6s6,-2.7 6,-6S15.4,6 12,6zM15,13H9v-2h6V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_not_step.xml b/compose/material/material/icons/generator/raw-icons/filled/do_not_step.xml
deleted file mode 100644
index 4fa74a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_not_step.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l7.9,7.9c0.18,0.2 0.18,0.5 -0.01,0.7c-0.1,0.1 -0.23,0.15 -0.35,0.15s-0.26,-0.05 -0.35,-0.15L6.87,11.1c-0.11,0.4 -0.26,0.78 -0.45,1.12l1.4,1.4c0.2,0.2 0.2,0.51 0,0.71c-0.1,0.1 -0.23,0.15 -0.35,0.15s-0.26,-0.05 -0.35,-0.15l-1.27,-1.27c-0.24,0.29 -0.5,0.56 -0.77,0.8l1.28,1.28c0.2,0.2 0.2,0.51 0,0.71C6.26,15.95 6.13,16 6,16s-0.26,-0.05 -0.35,-0.15l-1.38,-1.38c-0.69,0.46 -1.39,0.79 -1.97,1.02C1.52,15.8 1,16.53 1,17.37V20h9.5l3.33,-3.33l5.94,5.94l1.41,-1.41L2.81,2.81L1.39,4.22zM18.51,15.68l-1.41,-1.41l4.48,-4.48L23,11.2L18.51,15.68zM20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2L20.88,9.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/do_not_touch.xml b/compose/material/material/icons/generator/raw-icons/filled/do_not_touch.xml
deleted file mode 100644
index 4067d1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/do_not_touch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10.17l-2.5,-2.5V2.25C10.5,1.56 11.06,1 11.75,1S13,1.56 13,2.25V10.17zM20,12.75V11V5.25C20,4.56 19.44,4 18.75,4S17.5,4.56 17.5,5.25V11h-1V3.25C16.5,2.56 15.94,2 15.25,2S14,2.56 14,3.25v7.92l6,6V12.75zM9.5,4.25C9.5,3.56 8.94,3 8.25,3c-0.67,0 -1.2,0.53 -1.24,1.18L9.5,6.67V4.25zM13,10.17l-2.5,-2.5V2.25C10.5,1.56 11.06,1 11.75,1S13,1.56 13,2.25V10.17zM20,12.75V11V5.25C20,4.56 19.44,4 18.75,4S17.5,4.56 17.5,5.25V11h-1V3.25C16.5,2.56 15.94,2 15.25,2S14,2.56 14,3.25v7.92l6,6V12.75zM9.5,4.25C9.5,3.56 8.94,3 8.25,3c-0.67,0 -1.2,0.53 -1.24,1.18L9.5,6.67V4.25zM21.19,21.19L2.81,2.81L1.39,4.22l5.63,5.63L7,9.83v4.3c-1.11,-0.64 -2.58,-1.47 -2.6,-1.48c-0.17,-0.09 -0.34,-0.14 -0.54,-0.14c-0.26,0 -0.5,0.09 -0.7,0.26C3.12,12.78 2,13.88 2,13.88l6.8,7.18c0.57,0.6 1.35,0.94 2.18,0.94H17c0.62,0 1.18,-0.19 1.65,-0.52l-0.02,-0.02l1.15,1.15L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dock.xml b/compose/material/material/icons/generator/raw-icons/filled/dock.xml
deleted file mode 100644
index 0bb97b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,23h8v-2L8,21v2zM16,1.01L8,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,3c0,-1.1 -0.9,-1.99 -2,-1.99zM16,15L8,15L8,5h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/document_scanner.xml b/compose/material/material/icons/generator/raw-icons/filled/document_scanner.xml
deleted file mode 100644
index 24daa20..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/document_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3H4v3H2V1h5V3zM22,6V1h-5v2h3v3H22zM7,21H4v-3H2v5h5V21zM20,18v3h-3v2h5v-5H20zM19,18c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2V18zM15,8H9v2h6V8zM15,11H9v2h6V11zM15,14H9v2h6V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/domain.xml b/compose/material/material/icons/generator/raw-icons/filled/domain.xml
deleted file mode 100644
index 06b4137..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/domain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h20V7H12zM6,19H4v-2h2V19zM6,15H4v-2h2V15zM6,11H4V9h2V11zM6,7H4V5h2V7zM10,19H8v-2h2V19zM10,15H8v-2h2V15zM10,11H8V9h2V11zM10,7H8V5h2V7zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2V9h8V19zM18,11h-2v2h2V11zM18,15h-2v2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/domain_add.xml b/compose/material/material/icons/generator/raw-icons/filled/domain_add.xml
deleted file mode 100644
index cddd4ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/domain_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12zM6,19H4v-2h2V19zM6,15H4v-2h2V15zM6,11H4V9h2V11zM6,7H4V5h2V7zM10,19H8v-2h2V19zM10,15H8v-2h2V15zM10,11H8V9h2V11zM10,7H8V5h2V7zM24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24zM18,11h-2v2h2V11zM18,15h-2v2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/domain_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/domain_disabled.xml
deleted file mode 100644
index 6efd03e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/domain_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5h2v2h-0.9L12,9.9L12,9h8v8.9l2,2L22,7L12,7L12,3L5.1,3L8,5.9zM16,11h2v2h-2zM1.3,1.8L0.1,3.1 2,5v16h16l3,3 1.3,-1.3 -21,-20.9zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM12,19v-2h2l2,2h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/domain_verification.xml b/compose/material/material/icons/generator/raw-icons/filled/domain_verification.xml
deleted file mode 100644
index 1220bdd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/domain_verification.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,10.88l-1.42,-1.42l-4.24,4.25l-2.12,-2.13l-1.42,1.42l3.54,3.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.89,4 3,4.9 3,6v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.11,4 19,4zM19,18H5V8h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/done.xml b/compose/material/material/icons/generator/raw-icons/filled/done.xml
deleted file mode 100644
index 899cbb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/done_all.xml b/compose/material/material/icons/generator/raw-icons/filled/done_all.xml
deleted file mode 100644
index 648f00d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/done_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7l-1.41,-1.41 -6.34,6.34 1.41,1.41L18,7zM22.24,5.59L11.66,16.17 7.48,12l-1.41,1.41L11.66,19l12,-12 -1.42,-1.41zM0.41,13.41L6,19l1.41,-1.41L1.83,12 0.41,13.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/done_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/done_outline.xml
deleted file mode 100644
index 685f743..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/done_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,5.03l1.4,1.4L8.43,19.17l-5.6,-5.6 1.4,-1.4 4.2,4.2L19.77,5.03m0,-2.83L8.43,13.54l-4.2,-4.2L0,13.57 8.43,22 24,6.43 19.77,2.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/donut_large.xml b/compose/material/material/icons/generator/raw-icons/filled/donut_large.xml
deleted file mode 100644
index 738f6f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/donut_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5.08V2C6,2.5 2,6.81 2,12s4,9.5 9,10v-3.08c-3,-0.48 -6,-3.4 -6,-6.92S8,5.56 11,5.08zM18.97,11H22c-0.47,-5 -4,-8.53 -9,-9v3.08C16,5.51 18.54,8 18.97,11zM13,18.92V22c5,-0.47 8.53,-4 9,-9h-3.03C18.54,16 16,18.49 13,18.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/donut_small.xml b/compose/material/material/icons/generator/raw-icons/filled/donut_small.xml
deleted file mode 100644
index 79d9639..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/donut_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9.16V2c-5,0.5 -9,4.79 -9,10s4,9.5 9,10v-7.16c-1,-0.41 -2,-1.52 -2,-2.84s1,-2.43 2,-2.84zM14.86,11H22c-0.48,-4.75 -4,-8.53 -9,-9v7.16c1,0.3 1.52,0.98 1.86,1.84zM13,14.84V22c5,-0.47 8.52,-4.25 9,-9h-7.14c-0.34,0.86 -0.86,1.54 -1.86,1.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/door_back.xml b/compose/material/material/icons/generator/raw-icons/filled/door_back.xml
deleted file mode 100644
index ae3fbbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/door_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H3v2h18v-2H19zM11,13H9v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/door_front.xml b/compose/material/material/icons/generator/raw-icons/filled/door_front.xml
deleted file mode 100644
index a335010..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/door_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H3v2h18v-2H19zM15,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/door_sliding.xml b/compose/material/material/icons/generator/raw-icons/filled/door_sliding.xml
deleted file mode 100644
index fee3a6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/door_sliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2h-5.25v16h-1.5V3H6C4.9,3 4,3.9 4,5v14H3v2h18v-2H20zM10,13H8v-2h2V13zM16,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/doorbell.xml b/compose/material/material/icons/generator/raw-icons/filled/doorbell.xml
deleted file mode 100644
index 8942f8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/doorbell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM12,17.5c-0.55,0 -1,-0.45 -1,-1h2C13,17.05 12.55,17.5 12,17.5zM16,16H8v-1h1v-2.34c0,-1.54 0.82,-2.82 2.25,-3.16V9.25c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75V9.5C14.19,9.84 15,11.12 15,12.66V15h1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/double_arrow.xml b/compose/material/material/icons/generator/raw-icons/filled/double_arrow.xml
deleted file mode 100644
index f38e6bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/double_arrow.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/downhill_skiing.xml b/compose/material/material/icons/generator/raw-icons/filled/downhill_skiing.xml
deleted file mode 100644
index 311a4a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/downhill_skiing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18.5,3.4 18.5,4.5zM15.78,20.9l0.76,0.27c0.62,0.21 1.27,0.33 1.96,0.33c0.84,0 1.65,-0.18 2.38,-0.5L22,22.13C20.95,22.68 19.76,23 18.5,23c-0.86,0 -1.68,-0.14 -2.45,-0.41L2,17.47l0.5,-1.41l6.9,2.51l1.72,-4.44L7.55,10.4C6.66,9.46 6.88,7.93 8,7.28l3.48,-2.01c1.1,-0.64 2.52,-0.1 2.91,1.11l0.33,1.08c0.44,1.42 1.48,2.57 2.83,3.14L18.07,9l1.43,0.46l-1.12,3.45c-2.45,-0.4 -4.48,-2.07 -5.38,-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1,-6.44h0l0,0c0.46,0.18 0.94,0.31 1.44,0.41L15.78,20.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/download.xml b/compose/material/material/icons/generator/raw-icons/filled/download.xml
deleted file mode 100644
index 1f61509..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14v-2H5V20zM19,9h-4V3H9v6H5l7,7L19,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/download_done.xml b/compose/material/material/icons/generator/raw-icons/filled/download_done.xml
deleted file mode 100644
index a63575b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/download_done.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.13,5.41l-1.41,-1.41l-9.19,9.19l-4.25,-4.24l-1.41,1.41l5.66,5.66z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2h-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/download_for_offline.xml b/compose/material/material/icons/generator/raw-icons/filled/download_for_offline.xml
deleted file mode 100644
index f00ed59..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/download_for_offline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM11,10V6h2v4h3l-4,4l-4,-4H11zM17,17H7v-2h10V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/downloading.xml b/compose/material/material/icons/generator/raw-icons/filled/downloading.xml
deleted file mode 100644
index 33ee314..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/downloading.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.32,4.26C16.84,3.05 15.01,2.25 13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.32,4.26zM19.93,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1C19.17,8.21 19.75,9.54 19.93,11zM18.31,16.9l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32h-2.02C19.75,14.46 19.17,15.79 18.31,16.9zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43C15.79,19.17 14.46,19.75 13,19.93zM13,12V7h-2v5H7l5,5l5,-5H13zM11,19.93v2.02c-5.05,-0.5 -9,-4.76 -9,-9.95s3.95,-9.45 9,-9.95v2.02C7.05,4.56 4,7.92 4,12S7.05,19.44 11,19.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drafts.xml b/compose/material/material/icons/generator/raw-icons/filled/drafts.xml
deleted file mode 100644
index b16a79b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drafts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,8c0,-0.72 -0.37,-1.35 -0.94,-1.7L12,1 2.95,6.3C2.38,6.65 2,7.28 2,8v10c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2l-0.01,-10zM12,13L3.74,7.84 12,3l8.26,4.84L12,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drag_handle.xml b/compose/material/material/icons/generator/raw-icons/filled/drag_handle.xml
deleted file mode 100644
index 88fe5b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drag_handle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9H4v2h16V9zM4,15h16v-2H4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drag_indicator.xml b/compose/material/material/icons/generator/raw-icons/filled/drag_indicator.xml
deleted file mode 100644
index 6dcde80..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drag_indicator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2 0.9,-2 2,-2 2,0.9 2,2zM9,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM9,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM15,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/draw.xml b/compose/material/material/icons/generator/raw-icons/filled/draw.xml
deleted file mode 100644
index 1a5c1e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/draw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.85,10.39l1.06,-1.06c0.78,-0.78 0.78,-2.05 0,-2.83L18.5,5.09c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.06,1.06L18.85,10.39zM13.19,7.56L4,16.76V21h4.24l9.19,-9.19L13.19,7.56zM19,17.5c0,2.19 -2.54,3.5 -5,3.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1c1.54,0 3,-0.73 3,-1.5c0,-0.47 -0.48,-0.87 -1.23,-1.2l1.48,-1.48C18.32,15.45 19,16.29 19,17.5zM4.58,13.35C3.61,12.79 3,12.06 3,11c0,-1.8 1.89,-2.63 3.56,-3.36C7.59,7.18 9,6.56 9,6c0,-0.41 -0.78,-1 -2,-1C5.74,5 5.2,5.61 5.17,5.64C4.82,6.05 4.19,6.1 3.77,5.76C3.36,5.42 3.28,4.81 3.62,4.38C3.73,4.24 4.76,3 7,3c2.24,0 4,1.32 4,3c0,1.87 -1.93,2.72 -3.64,3.47C6.42,9.88 5,10.5 5,11c0,0.31 0.43,0.6 1.07,0.86L4.58,13.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drive_eta.xml b/compose/material/material/icons/generator/raw-icons/filled/drive_eta.xml
deleted file mode 100644
index 1c3d74b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drive_eta.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,11v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,12 6.5,12s1.5,0.67 1.5,1.5S7.33,15 6.5,15zM17.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,10l1.5,-4.5h11L19,10L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drive_file_move.xml b/compose/material/material/icons/generator/raw-icons/filled/drive_file_move.xml
deleted file mode 100644
index 4fe08f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drive_file_move.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM14,18v-3h-4v-4h4L14,8l5,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drive_file_move_rtl.xml b/compose/material/material/icons/generator/raw-icons/filled/drive_file_move_rtl.xml
deleted file mode 100644
index c654468..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drive_file_move_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM12,17l-4,-4l4,-4v3h4v2h-4V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drive_file_rename_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/drive_file_rename_outline.xml
deleted file mode 100644
index cc02b91..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drive_file_rename_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,5.8L17.2,4.59c-0.78,-0.78 -2.05,-0.78 -2.83,0l-2.68,2.68L3,15.96V20h4.04l8.74,-8.74 2.63,-2.63c0.79,-0.78 0.79,-2.05 0,-2.83zM6.21,18H5v-1.21l8.66,-8.66 1.21,1.21L6.21,18zM11,20l4,-4h6v4H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/drive_folder_upload.xml b/compose/material/material/icons/generator/raw-icons/filled/drive_folder_upload.xml
deleted file mode 100644
index b4253cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/drive_folder_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8h16v10zM8,13.01l1.41,1.41L11,12.84L11,17h2v-4.16l1.59,1.59L16,13.01 12.01,9 8,13.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dry.xml b/compose/material/material/icons/generator/raw-icons/filled/dry.xml
deleted file mode 100644
index 42e6256..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dry.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L14.98,9h1.91l0.06,-0.43C17.16,7.21 16.68,5.86 15.65,4.86zM19.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L18.98,9h1.91l0.06,-0.43C21.16,7.21 20.68,5.86 19.65,4.86zM9.12,5l-7.18,6.79C1.34,12.35 1,13.14 1,13.97V20c0,1.66 1.34,3 3,3h6.25H12h5.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1h8.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25S19.44,10 18.75,10H8.86c0.64,-1.11 1.48,-2.58 1.49,-2.61c0.09,-0.16 0.14,-0.33 0.14,-0.53c0,-0.26 -0.09,-0.5 -0.26,-0.7C10.22,6.12 9.12,5 9.12,5L9.12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dry_cleaning.xml b/compose/material/material/icons/generator/raw-icons/filled/dry_cleaning.xml
deleted file mode 100644
index 6289b40..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dry_cleaning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.56,11.36L13,8.44V7c0,-0.55 -0.45,-1 -1,-1l0,0c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1h2c0,-1.84 -1.66,-3.3 -3.56,-2.95C10.26,2.27 9.29,3.22 9.06,4.4C8.76,5.96 9.66,7.34 11,7.82v0.63l-6.56,2.92C3.56,11.75 3,12.62 3,13.57v0.01C3,14.92 4.08,16 5.42,16H7v6h10v-6h1.58c1.34,0 2.42,-1.08 2.42,-2.42v-0.01C21,12.62 20.44,11.75 19.56,11.36zM18.58,14H17v-1H7v1H5.42C5.19,14 5,13.81 5,13.57c0,-0.17 0.1,-0.32 0.25,-0.38l6.75,-3l6.75,3C18.9,13.26 19,13.41 19,13.58C19,13.81 18.81,14 18.58,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/duo.xml b/compose/material/material/icons/generator/raw-icons/filled/duo.xml
deleted file mode 100644
index acc6429..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/duo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h-8C6.38,2 2,6.66 2,12.28 2,17.5 6.49,22 11.72,22 17.39,22 22,17.62 22,12L22,4c0,-1.1 -0.9,-2 -2,-2zM17,15l-3,-2v2L7,15L7,9h7v2l3,-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dvr.xml b/compose/material/material/icons/generator/raw-icons/filled/dvr.xml
deleted file mode 100644
index 468a1f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dvr.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM19,8L8,8v2h11L19,8zM19,12L8,12v2h11v-2zM7,8L5,8v2h2L7,8zM7,12L5,12v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dynamic_feed.xml b/compose/material/material/icons/generator/raw-icons/filled/dynamic_feed.xml
deleted file mode 100644
index 7ebb5b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dynamic_feed.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8H6v7c0,1.1 0.9,2 2,2h9v-2H8V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-8c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,11h-8V7h8V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12H2v7c0,1.1 0.9,2 2,2h9v-2H4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/dynamic_form.xml b/compose/material/material/icons/generator/raw-icons/filled/dynamic_form.xml
deleted file mode 100644
index dcabd30..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/dynamic_form.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20v-9h-2V4h7l-2,5h2L17,20zM15,13v7H4c-1.1,0 -2,-0.9 -2,-2v-3c0,-1.1 0.9,-2 2,-2H15zM6.25,15.75h-1.5v1.5h1.5V15.75zM13,4v7H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2H13zM6.25,6.75h-1.5v1.5h1.5V6.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/e_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/e_mobiledata.xml
deleted file mode 100644
index 724ce8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/e_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/earbuds.xml b/compose/material/material/icons/generator/raw-icons/filled/earbuds.xml
deleted file mode 100644
index 969892c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/earbuds.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.2,3.01C4.44,2.89 3,4.42 3,6.19L3,16c0,2.76 2.24,5 5,5h0c2.76,0 5,-2.24 5,-5V8c0,-1.66 1.34,-3 3,-3h0c1.66,0 3,1.34 3,3v7l-0.83,0c-1.61,0 -3.06,1.18 -3.17,2.79c-0.12,1.69 1.16,3.1 2.8,3.21c1.76,0.12 3.2,-1.42 3.2,-3.18L21,8c0,-2.76 -2.24,-5 -5,-5h0c-2.76,0 -5,2.24 -5,5v8c0,1.66 -1.34,3 -3,3l0,0c-1.66,0 -3,-1.34 -3,-3V9l0.83,0C7.44,9 8.89,7.82 9,6.21C9.11,4.53 7.83,3.11 6.2,3.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/earbuds_battery.xml b/compose/material/material/icons/generator/raw-icons/filled/earbuds_battery.xml
deleted file mode 100644
index 7f9946e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/earbuds_battery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1V6h-2v1h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.62,6C8.76,6 7.25,7.51 7.25,9.38v5.25c0,1.04 -0.84,1.88 -1.88,1.88S3.5,15.66 3.5,14.62v-4.7C3.66,9.97 3.83,10 4,10c1.1,0 2,-0.9 2,-2S5.1,6 4,6S2,6.9 2,8c0,0.04 0,6.62 0,6.62C2,16.49 3.51,18 5.38,18s3.38,-1.51 3.38,-3.38V9.38c0,-1.04 0.84,-1.88 1.88,-1.88s1.88,0.84 1.88,1.88v4.7C12.34,14.03 12.17,14 12,14c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2c0,-0.04 0,-6.62 0,-6.62C14,7.51 12.49,6 10.62,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/east.xml b/compose/material/material/icons/generator/raw-icons/filled/east.xml
deleted file mode 100644
index 5a9661d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7,-7L15,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/eco.xml b/compose/material/material/icons/generator/raw-icons/filled/eco.xml
deleted file mode 100644
index 4244037..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/eco.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.05,8.05c-2.73,2.73 -2.73,7.15 -0.02,9.88c1.47,-3.4 4.09,-6.24 7.36,-7.93c-2.77,2.34 -4.71,5.61 -5.39,9.32c2.6,1.23 5.8,0.78 7.95,-1.37C19.43,14.47 20,4 20,4S9.53,4.57 6.05,8.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edgesensor_high.xml b/compose/material/material/icons/generator/raw-icons/filled/edgesensor_high.xml
deleted file mode 100644
index bbaca7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edgesensor_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7h2v7H3V7zM0,10h2v7H0V10zM22,7h2v7h-2V7zM19,10h2v7h-2V10zM16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,17H8V7h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edgesensor_low.xml b/compose/material/material/icons/generator/raw-icons/filled/edgesensor_low.xml
deleted file mode 100644
index 3bbf321..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edgesensor_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v7H2V7zM20,10h2v7h-2V10zM16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,17H8V7h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit.xml b/compose/material/material/icons/generator/raw-icons/filled/edit.xml
deleted file mode 100644
index 2844baf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_attributes.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_attributes.xml
deleted file mode 100644
index 4b4cc7db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_attributes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,7H6.37C3.96,7 2,9.24 2,12s1.96,5 4.37,5h11.26c2.41,0 4.37,-2.24 4.37,-5s-1.96,-5 -4.37,-5zM7.24,14.46l-2.57,-2.57 0.7,-0.7 1.87,1.87 3.52,-3.52 0.7,0.7 -4.22,4.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_calendar.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_calendar.xml
deleted file mode 100644
index 94f975a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22H5c-1.11,0 -2,-0.9 -2,-2L3.01,6c0,-1.1 0.88,-2 1.99,-2h1V2h2v2h8V2h2v2h1c1.1,0 2,0.9 2,2v6h-2v-2H5v10h7V22zM22.13,16.99l0.71,-0.71c0.39,-0.39 0.39,-1.02 0,-1.41l-0.71,-0.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.71,0.71L22.13,16.99zM21.42,17.7l-5.3,5.3H14v-2.12l5.3,-5.3L21.42,17.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_location.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_location.xml
deleted file mode 100644
index 5c42b4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.14,2 5,5.14 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.86 -3.14,-7 -7,-7zM10.44,12L9,12v-1.44l3.35,-3.34 1.43,1.43L10.44,12zM14.89,7.55l-0.7,0.7 -1.44,-1.44 0.7,-0.7c0.15,-0.15 0.39,-0.15 0.54,0l0.9,0.9c0.15,0.15 0.15,0.39 0,0.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_location_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_location_alt.xml
deleted file mode 100644
index 5f8983c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_location_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.95,13H9V8.05l5.61,-5.61C13.78,2.16 12.9,2 12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-1.01 -0.16,-1.94 -0.45,-2.8L13.95,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11l2.12,0l6.16,-6.16l-2.12,-2.12l-6.16,6.16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,2L20,1.29C19.8,1.1 19.55,1 19.29,1c-0.13,0 -0.48,0.07 -0.71,0.29l-0.72,0.72l2.12,2.12l0.72,-0.72C21.1,3.02 21.1,2.39 20.71,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_note.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_note.xml
deleted file mode 100644
index 1641196..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2H3V10zM3,8h11V6H3V8zM3,16h7v-2H3V16zM18.01,12.87l0.71,-0.71c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71c0.39,0.39 0.39,1.02 0,1.41l-0.71,0.71L18.01,12.87zM17.3,13.58l-5.3,5.3V21h2.12l5.3,-5.3L17.3,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_notifications.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_notifications.xml
deleted file mode 100644
index 08242a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25zM20.85,5.81l-1.06,-1.06c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.85,0.85l1.77,1.77l0.85,-0.85C21.05,6.32 21.05,6 20.85,5.81zM18,12.2V17h2v2H4v-2h2v-7c0,-2.79 1.91,-5.14 4.5,-5.8V3.5C10.5,2.67 11.17,2 12,2s1.5,0.67 1.5,1.5v0.7c0.82,0.21 1.57,0.59 2.21,1.09L10.6,10.4V15h4.6L18,12.2zM10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_off.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_off.xml
deleted file mode 100644
index 3413bca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.126,8.125l1.937,-1.937 3.747,3.747 -1.937,1.938zM20.71,5.63l-2.34,-2.34a1,1 0,0 0,-1.41 0l-1.83,1.83 3.75,3.75L20.71,7a1,1 0,0 0,0 -1.37zM2,5l6.63,6.63L3,17.25V21h3.75l5.63,-5.62L18,21l2,-2L4,3 2,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/edit_road.xml b/compose/material/material/icons/generator/raw-icons/filled/edit_road.xml
deleted file mode 100644
index 83b375d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/edit_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-2,0l0,7.9l2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.56,12.59l-1.15,-1.15c-0.59,-0.59 -1.54,-0.59 -2.12,0L14,16.73V20h3.27l5.29,-5.29C23.15,14.12 23.15,13.17 22.56,12.59zM16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/egg.xml b/compose/material/material/icons/generator/raw-icons/filled/egg.xml
deleted file mode 100644
index aaf2ab7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/egg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.5,3 5,9.33 5,14c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,9.33 15.5,3 12,3zM13,18c-3,0 -5,-1.99 -5,-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,2.92 2.42,3 3,3c0.55,0 1,0.45 1,1S13.55,18 13,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/egg_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/egg_alt.xml
deleted file mode 100644
index 6aefa17..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/egg_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9C17,7 15.99,2 9.97,2C4.95,2 1.94,6 2,11.52C2.06,17.04 6.96,19 9.97,19c2.01,0 2.01,3 6.02,3C19,22 22,19 22,15.02C22,12 21.01,11 19,9zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/eject.xml b/compose/material/material/icons/generator/raw-icons/filled/eject.xml
deleted file mode 100644
index de6d3d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/eject.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h14v2L5,19zM12,5L5.33,15h13.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/elderly.xml b/compose/material/material/icons/generator/raw-icons/filled/elderly.xml
deleted file mode 100644
index dc601c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/elderly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM20,12.5V23h-1V12.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S18,12.22 18,12.5v1h-1v-0.69c-1.46,-0.38 -2.7,-1.29 -3.51,-2.52C13.18,11.16 13,12.07 13,13c0,0.23 0.02,0.46 0.03,0.69L15,16.5V23h-2v-5l-1.78,-2.54L11,19l-3,4l-1.6,-1.2L9,18.33V13c0,-1.15 0.18,-2.29 0.5,-3.39L8,10.46V14H6V9.3l5.4,-3.07l0,0.01c0.59,-0.31 1.32,-0.33 1.94,0.03c0.36,0.21 0.63,0.51 0.8,0.85l0,0l0.79,1.67C15.58,10.1 16.94,11 18.5,11C19.33,11 20,11.67 20,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/elderly_woman.xml b/compose/material/material/icons/generator/raw-icons/filled/elderly_woman.xml
deleted file mode 100644
index 895ad06..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/elderly_woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,11c-1.56,0 -2.92,-0.9 -3.58,-2.21l-0.79,-1.67l0,0C14.12,7.1 13.63,6 12.34,6l0,0C8.72,6 6,16.69 6,19h2.5l-2.1,2.8L8,23l3,-4h2v4h2v-4.03L13,13l0.49,-2.71c0.81,1.23 2.05,2.14 3.51,2.52v0.69h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V23h1V12.5C20,11.67 19.33,11 18.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.6,2.91c-0.06,0.19 -0.1,0.38 -0.1,0.59c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2c-0.21,0 -0.4,0.04 -0.59,0.1C12.76,1.25 12.41,1 12,1c-0.55,0 -1,0.45 -1,1C11,2.41 11.25,2.76 11.6,2.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electric_bike.xml b/compose/material/material/icons/generator/raw-icons/filled/electric_bike.xml
deleted file mode 100644
index d23d67e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electric_bike.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-0.82l-1.7,-4.68C16.19,1.53 15.44,1 14.6,1H12v2h2.6l1.46,4h-4.81l-0.36,-1H12V4H7v2h1.75l1.82,5H9.9C9.46,8.77 7.59,7.12 5.25,7.01C2.45,6.87 0,9.2 0,12c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,9.2 21.8,7 19,7zM7.82,13c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,11h-1.4l-0.73,-2H15C14.56,9.58 14.24,10.25 14.1,11zM19,15c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67C18.94,9.01 18.97,9 19,9c1.68,0 3,1.32 3,3S20.68,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electric_bolt.xml b/compose/material/material/icons/generator/raw-icons/filled/electric_bolt.xml
deleted file mode 100644
index e7ae85c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electric_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.69,2.21L4.33,11.49c-0.64,0.58 -0.28,1.65 0.58,1.73L13,14l-4.85,6.76c-0.22,0.31 -0.19,0.74 0.08,1.01h0c0.3,0.3 0.77,0.31 1.08,0.02l10.36,-9.28c0.64,-0.58 0.28,-1.65 -0.58,-1.73L11,10l4.85,-6.76c0.22,-0.31 0.19,-0.74 -0.08,-1.01l0,0C15.47,1.93 15,1.92 14.69,2.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electric_car.xml b/compose/material/material/icons/generator/raw-icons/filled/electric_car.xml
deleted file mode 100644
index b1458d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electric_car.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,2.01C18.72,1.42 18.16,1 17.5,1h-11C5.84,1 5.29,1.42 5.08,2.01L3,8v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1V8L18.92,2.01zM6.5,12C5.67,12 5,11.33 5,10.5S5.67,9 6.5,9S8,9.67 8,10.5S7.33,12 6.5,12zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9S19,9.67 19,10.5S18.33,12 17.5,12zM5,7l1.5,-4.5h11L19,7H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electric_meter.xml b/compose/material/material/icons/generator/raw-icons/filled/electric_meter.xml
deleted file mode 100644
index 884bf46..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electric_meter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.96,0 -9,4.04 -9,9c0,3.91 2.51,7.24 6,8.47V22h2v-2.06c0.33,0.04 0.66,0.06 1,0.06s0.67,-0.02 1,-0.06V22h2v-2.53c3.49,-1.24 6,-4.57 6,-8.47C21,6.04 16.96,2 12,2zM14.25,14l-3,3l-1.5,-1.5L11,14.25L9.75,13l3,-3l1.5,1.5L13,12.75L14.25,14zM16,9H8V7h8V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electric_moped.xml b/compose/material/material/icons/generator/raw-icons/filled/electric_moped.xml
deleted file mode 100644
index dbc128b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electric_moped.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,8.35V5zM7,15c-0.55,0 -1,-0.45 -1,-1h2C8,14.55 7.55,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,11 19,11zM19,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electric_rickshaw.xml b/compose/material/material/icons/generator/raw-icons/filled/electric_rickshaw.xml
deleted file mode 100644
index 0acdc18..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electric_rickshaw.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.18V9.72c0,-0.47 -0.16,-0.92 -0.46,-1.28L16.6,3.72C16.22,3.26 15.66,3 15.06,3H3C1.9,3 1,3.9 1,5v8c0,1.1 0.9,2 2,2h0.18C3.6,16.16 4.7,17 6,17s2.4,-0.84 2.82,-2h8.37c0.41,1.16 1.51,2 2.82,2c1.66,0 3,-1.34 3,-3C23,12.7 22.16,11.6 21,11.18zM18.4,9H16V6.12L18.4,9zM3,5h4v4H3V5zM6,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S6.55,15 6,15zM9,13v-2h3V9H9V5h5v8H9zM20,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,15 20,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electric_scooter.xml b/compose/material/material/icons/generator/raw-icons/filled/electric_scooter.xml
deleted file mode 100644
index 82e1522..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electric_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.82,16H15v-1c0,-2.21 1.79,-4 4,-4h0.74l-1.9,-8.44C17.63,1.65 16.82,1 15.89,1H12v2h3.89l1.4,6.25c0,0 -0.01,0 -0.01,0c-2.16,0.65 -3.81,2.48 -4.19,4.75H7.82c-0.48,-1.34 -1.86,-2.24 -3.42,-1.94c-1.18,0.23 -2.13,1.2 -2.35,2.38C1.7,16.34 3.16,18 5,18C6.3,18 7.4,17.16 7.82,16zM5,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S5.55,16 5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,12 19,12zM19,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/electrical_services.xml b/compose/material/material/icons/generator/raw-icons/filled/electrical_services.xml
deleted file mode 100644
index 95d5b61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/electrical_services.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14c0,-0.55 -0.45,-1 -1,-1h-2v2h2C20.55,15 21,14.55 21,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17h-2v2h2c0.55,0 1,-0.45 1,-1C21,17.45 20.55,17 20,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14h-2v4h2c0,1.1 0.9,2 2,2h3v-8h-3C12.9,12 12,12.9 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13c0,-1.1 0.9,-2 2,-2h1.5c1.93,0 3.5,-1.57 3.5,-3.5S10.43,4 8.5,4H5C4.45,4 4,4.45 4,5c0,0.55 0.45,1 1,1h3.5C9.33,6 10,6.67 10,7.5S9.33,9 8.5,9H7c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4h2v-2H7C5.9,15 5,14.1 5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/elevator.xml b/compose/material/material/icons/generator/raw-icons/filled/elevator.xml
deleted file mode 100644
index ad21aeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/elevator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM8.5,6c0.69,0 1.25,0.56 1.25,1.25c0,0.69 -0.56,1.25 -1.25,1.25S7.25,7.94 7.25,7.25C7.25,6.56 7.81,6 8.5,6zM11,14h-1v4H7v-4H6v-2.5c0,-1.1 0.9,-2 2,-2h1c1.1,0 2,0.9 2,2V14zM15.5,17L13,13h5L15.5,17zM13,11l2.5,-4l2.5,4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/email.xml b/compose/material/material/icons/generator/raw-icons/filled/email.xml
deleted file mode 100644
index 6943b4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emergency.xml b/compose/material/material/icons/generator/raw-icons/filled/emergency.xml
deleted file mode 100644
index 0c5a61b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emergency.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.79,9.23l-2,-3.46l-4.79,2.77l0,-5.54l-4,0l0,5.54l-4.79,-2.77l-2,3.46l4.79,2.77l-4.79,2.77l2,3.46l4.79,-2.77l0,5.54l4,0l0,-5.54l4.79,2.77l2,-3.46l-4.79,-2.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emergency_recording.xml b/compose/material/material/icons/generator/raw-icons/filled/emergency_recording.xml
deleted file mode 100644
index c7cad37..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emergency_recording.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM12,12l3,1.73l-1,1.73l-3,-1.73V17H9v-3.27l-3,1.73l-1,-1.73L8,12l-3,-1.73l1,-1.73l3,1.73V7h2v3.27l3,-1.73l1,1.73L12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emergency_share.xml b/compose/material/material/icons/generator/raw-icons/filled/emergency_share.xml
deleted file mode 100644
index 933fa67..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emergency_share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-3.15,0 -6,2.41 -6,6.15c0,2.49 2,5.44 6,8.85c4,-3.41 6,-6.36 6,-8.85C18,11.41 15.15,9 12,9zM12,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,16.5 12,16.5zM12,4c1.93,0 3.68,0.78 4.95,2.05l-1.41,1.41C14.63,6.56 13.38,6 12,6S9.37,6.56 8.46,7.46L7.05,6.05C8.32,4.78 10.07,4 12,4zM19.78,3.23l-1.41,1.41C16.74,3.01 14.49,2 12.01,2S7.27,3.01 5.64,4.63L4.22,3.22C6.22,1.23 8.97,0 12.01,0S17.79,1.23 19.78,3.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_emotions.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_emotions.xml
deleted file mode 100644
index 6a85a99..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_emotions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12C22,6.48 17.52,2 11.99,2zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM12,18c-2.28,0 -4.22,-1.66 -5,-4h10C16.22,16.34 14.28,18 12,18zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8S17,8.67 17,9.5S16.33,11 15.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_events.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_events.xml
deleted file mode 100644
index dbf6358..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_events.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5h-2V3H7v2H5C3.9,5 3,5.9 3,7v1c0,2.55 1.92,4.63 4.39,4.94c0.63,1.5 1.98,2.63 3.61,2.96V19H7v2h10v-2h-4v-3.1c1.63,-0.33 2.98,-1.46 3.61,-2.96C19.08,12.63 21,10.55 21,8V7C21,5.9 20.1,5 19,5zM5,8V7h2v3.82C5.84,10.4 5,9.3 5,8zM19,8c0,1.3 -0.84,2.4 -2,2.82V7h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_flags.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_flags.xml
deleted file mode 100644
index f649522..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_flags.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l-1,-2H7V5.72C7.6,5.38 8,4.74 8,4c0,-1.1 -0.9,-2 -2,-2S4,2.9 4,4c0,0.74 0.4,1.38 1,1.72V21h2v-4h5l1,2h7V9H14zM18,17h-4l-1,-2H7V9h5l1,2h5V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_food_beverage.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_food_beverage.xml
deleted file mode 100644
index 536f106..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_food_beverage.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H9v2.4l1.81,1.45C10.93,6.94 11,7.09 11,7.24v4.26c0,0.28 -0.22,0.5 -0.5,0.5h-4C6.22,12 6,11.78 6,11.5V7.24c0,-0.15 0.07,-0.3 0.19,-0.39L8,5.4V3H4v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.9 2,-2V5C22,3.89 21.11,3 20,3zM20,8h-2V5h2V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h16v2h-16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_nature.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_nature.xml
deleted file mode 100644
index cf2e467..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_nature.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.94,4.88C21.76,4.35 21.25,4 20.68,4c-0.03,0 -0.06,0 -0.09,0H19.6l-0.31,-0.97C19.15,2.43 18.61,2 18,2h0c-0.61,0 -1.15,0.43 -1.29,1.04L16.4,4h-0.98c-0.03,0 -0.06,0 -0.09,0c-0.57,0 -1.08,0.35 -1.26,0.88c-0.19,0.56 0.04,1.17 0.56,1.48l0.87,0.52L15.1,8.12c-0.23,0.58 -0.04,1.25 0.45,1.62C15.78,9.91 16.06,10 16.33,10c0.31,0 0.61,-0.11 0.86,-0.32L18,8.98l0.81,0.7C19.06,9.89 19.36,10 19.67,10c0.27,0 0.55,-0.09 0.78,-0.26c0.5,-0.37 0.68,-1.04 0.45,-1.62l-0.39,-1.24l0.87,-0.52C21.89,6.05 22.12,5.44 21.94,4.88zM18,7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,6.55 18.55,7 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,10.51c-0.43,-0.43 -0.94,-0.73 -1.49,-0.93V8h-1v1.38c-0.11,-0.01 -0.23,-0.03 -0.34,-0.03c-1.02,0 -2.05,0.39 -2.83,1.17c-0.16,0.16 -0.3,0.34 -0.43,0.53L6,10.52c-1.56,-0.55 -3.28,0.27 -3.83,1.82c0,0 0,0 0,0c-0.27,0.75 -0.23,1.57 0.12,2.29c0.23,0.48 0.58,0.87 1,1.16c-0.38,1.35 -0.06,2.85 1,3.91c1.06,1.06 2.57,1.38 3.91,1c0.29,0.42 0.68,0.77 1.16,1C9.78,21.9 10.21,22 10.65,22c0.34,0 0.68,-0.06 1.01,-0.17c0,0 0,0 0,0c1.56,-0.55 2.38,-2.27 1.82,-3.85l-0.52,-1.37c0.18,-0.13 0.36,-0.27 0.53,-0.43c0.87,-0.87 1.24,-2.04 1.14,-3.17H16v-1h-1.59C14.22,11.46 13.92,10.95 13.49,10.51zM4.67,14.29c-0.25,-0.09 -0.45,-0.27 -0.57,-0.51s-0.13,-0.51 -0.04,-0.76c0.19,-0.52 0.76,-0.79 1.26,-0.61l3.16,1.19C7.33,14.2 5.85,14.71 4.67,14.29zM10.99,19.94c-0.25,0.09 -0.52,0.08 -0.76,-0.04c-0.24,-0.11 -0.42,-0.32 -0.51,-0.57c-0.42,-1.18 0.09,-2.65 0.7,-3.8l1.18,3.13C11.78,19.18 11.51,19.76 10.99,19.94zM12.2,14.6l-0.61,-1.61c0,-0.01 -0.01,-0.02 -0.02,-0.03c-0.02,-0.04 -0.04,-0.08 -0.06,-0.12c-0.02,-0.04 -0.04,-0.07 -0.07,-0.11c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.07,-0.05 -0.11,-0.07c-0.04,-0.02 -0.07,-0.05 -0.12,-0.06c-0.01,0 -0.02,-0.01 -0.03,-0.02L9.4,11.8c0.36,-0.29 0.79,-0.46 1.26,-0.46c0.53,0 1.04,0.21 1.41,0.59C12.8,12.66 12.84,13.81 12.2,14.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_objects.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_objects.xml
deleted file mode 100644
index a980392..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_objects.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-0.46,0 -0.93,0.04 -1.4,0.14C7.84,3.67 5.64,5.9 5.12,8.66c-0.48,2.61 0.48,5.01 2.22,6.56C7.77,15.6 8,16.13 8,16.69V19c0,1.1 0.9,2 2,2h0.28c0.35,0.6 0.98,1 1.72,1s1.38,-0.4 1.72,-1H14c1.1,0 2,-0.9 2,-2v-2.31c0,-0.55 0.22,-1.09 0.64,-1.46C18.09,13.95 19,12.08 19,10C19,6.13 15.87,3 12,3zM14,19h-4v-1h4V19zM14,17h-4v-1h4V17zM12.5,11.41V14h-1v-2.59L9.67,9.59l0.71,-0.71L12,10.5l1.62,-1.62l0.71,0.71L12.5,11.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_people.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_people.xml
deleted file mode 100644
index 54d8c00..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_people.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.89,8.11C15.5,7.72 14.83,7 13.53,7c-0.21,0 -1.42,0 -2.54,0C8.24,6.99 6,4.75 6,2H4c0,3.16 2.11,5.84 5,6.71V22h2v-6h2v6h2V10.05L18.95,14l1.41,-1.41L15.89,8.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_symbols.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_symbols.xml
deleted file mode 100644
index 5c3024a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_symbols.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l2,0l0,-4l3,0l0,-2l-8,0l0,2l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.404,20.182l7.778,-7.778l1.414,1.414l-7.778,7.778z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11c1.38,0 2.5,-1.12 2.5,-2.5V4h3V2h-4v4.51C16.58,6.19 16.07,6 15.5,6C14.12,6 13,7.12 13,8.5C13,9.88 14.12,11 15.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.74,15.96l-1.41,1.41l-0.71,-0.71l0.35,-0.35c0.98,-0.98 0.98,-2.56 0,-3.54c-0.49,-0.49 -1.13,-0.73 -1.77,-0.73c-0.64,0 -1.28,0.24 -1.77,0.73c-0.98,0.98 -0.98,2.56 0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98 -0.98,2.56 0,3.54C4.22,21.76 4.86,22 5.5,22s1.28,-0.24 1.77,-0.73l1.06,-1.06l1.41,1.41l1.41,-1.41l-1.41,-1.41l1.41,-1.41L9.74,15.96zM5.85,14.2c0.12,-0.12 0.26,-0.15 0.35,-0.15s0.23,0.03 0.35,0.15c0.19,0.2 0.19,0.51 0,0.71l-0.35,0.35L5.85,14.9C5.66,14.71 5.66,14.39 5.85,14.2zM5.85,19.85C5.73,19.97 5.59,20 5.5,20s-0.23,-0.03 -0.35,-0.15c-0.19,-0.19 -0.19,-0.51 0,-0.71l1.06,-1.06l0.71,0.71L5.85,19.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/emoji_transportation.xml b/compose/material/material/icons/generator/raw-icons/filled/emoji_transportation.xml
deleted file mode 100644
index 791567a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/emoji_transportation.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,10.66C20.43,10.26 20.05,10 19.6,10h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66L10,14.77l0.01,5.51c0,0.38 0.31,0.72 0.69,0.72h0.62C11.7,21 12,20.62 12,20.24V19h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72L22,18.91v-4.14L20.57,10.66zM12.41,11h7.19l1.03,3h-9.25L12.41,11zM12,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,17 12,17zM20,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,17 20,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l1,0l0,-6l-8,0l0,5l-5,0l0,13l1,0l0,-12l5,0l0,-5l6,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/energy_savings_leaf.xml b/compose/material/material/icons/generator/raw-icons/filled/energy_savings_leaf.xml
deleted file mode 100644
index 7ee93d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/energy_savings_leaf.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.8,0 -9,3.86 -9,9c0,2.12 0.74,4.07 1.97,5.61L3,19.59L4.41,21l1.97,-1.97C7.93,20.26 9.88,21 12,21c2.3,0 4.61,-0.88 6.36,-2.64C20.12,16.61 21,14.3 21,12l0,-9L12,3zM15.83,12.26l-5.16,4.63c-0.16,0.15 -0.41,0.14 -0.56,-0.01c-0.14,-0.14 -0.16,-0.36 -0.04,-0.52l2.44,-3.33l-4.05,-0.4c-0.44,-0.04 -0.63,-0.59 -0.3,-0.89l5.16,-4.63c0.16,-0.15 0.41,-0.14 0.56,0.01c0.14,0.14 0.16,0.36 0.04,0.52l-2.44,3.33l4.05,0.4C15.98,11.41 16.16,11.96 15.83,12.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/engineering.xml b/compose/material/material/icons/generator/raw-icons/filled/engineering.xml
deleted file mode 100644
index efee3ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/engineering.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v2h16v-2C17,16.34 11.67,15 9,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.1,6.84c0.01,-0.11 0.02,-0.22 0.02,-0.34c0,-0.12 -0.01,-0.23 -0.03,-0.34l0.74,-0.58c0.07,-0.05 0.08,-0.15 0.04,-0.22l-0.7,-1.21c-0.04,-0.08 -0.14,-0.1 -0.21,-0.08L21.1,4.42c-0.18,-0.14 -0.38,-0.25 -0.59,-0.34l-0.13,-0.93C20.36,3.06 20.29,3 20.2,3h-1.4c-0.09,0 -0.16,0.06 -0.17,0.15L18.5,4.08c-0.21,0.09 -0.41,0.21 -0.59,0.34l-0.87,-0.35c-0.08,-0.03 -0.17,0 -0.21,0.08l-0.7,1.21c-0.04,0.08 -0.03,0.17 0.04,0.22l0.74,0.58c-0.02,0.11 -0.03,0.23 -0.03,0.34c0,0.11 0.01,0.23 0.03,0.34l-0.74,0.58c-0.07,0.05 -0.08,0.15 -0.04,0.22l0.7,1.21c0.04,0.08 0.14,0.1 0.21,0.08l0.87,-0.35c0.18,0.14 0.38,0.25 0.59,0.34l0.13,0.93C18.64,9.94 18.71,10 18.8,10h1.4c0.09,0 0.16,-0.06 0.17,-0.15l0.13,-0.93c0.21,-0.09 0.41,-0.21 0.59,-0.34l0.87,0.35c0.08,0.03 0.17,0 0.21,-0.08l0.7,-1.21c0.04,-0.08 0.03,-0.17 -0.04,-0.22L22.1,6.84zM19.5,7.75c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25S20.19,7.75 19.5,7.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.92,11.68l-0.5,-0.87c-0.03,-0.06 -0.1,-0.08 -0.15,-0.06l-0.62,0.25c-0.13,-0.1 -0.27,-0.18 -0.42,-0.24l-0.09,-0.66C18.12,10.04 18.06,10 18,10h-1c-0.06,0 -0.11,0.04 -0.12,0.11l-0.09,0.66c-0.15,0.06 -0.29,0.15 -0.42,0.24l-0.62,-0.25c-0.06,-0.02 -0.12,0 -0.15,0.06l-0.5,0.87c-0.03,0.06 -0.02,0.12 0.03,0.16l0.53,0.41c-0.01,0.08 -0.02,0.16 -0.02,0.24c0,0.08 0.01,0.17 0.02,0.24l-0.53,0.41c-0.05,0.04 -0.06,0.11 -0.03,0.16l0.5,0.87c0.03,0.06 0.1,0.08 0.15,0.06l0.62,-0.25c0.13,0.1 0.27,0.18 0.42,0.24l0.09,0.66C16.89,14.96 16.94,15 17,15h1c0.06,0 0.12,-0.04 0.12,-0.11l0.09,-0.66c0.15,-0.06 0.29,-0.15 0.42,-0.24l0.62,0.25c0.06,0.02 0.12,0 0.15,-0.06l0.5,-0.87c0.03,-0.06 0.02,-0.12 -0.03,-0.16l-0.52,-0.41c0.01,-0.08 0.02,-0.16 0.02,-0.24c0,-0.08 -0.01,-0.17 -0.02,-0.24l0.53,-0.41C19.93,11.81 19.94,11.74 19.92,11.68zM17.5,13.33c-0.46,0 -0.83,-0.38 -0.83,-0.83c0,-0.46 0.38,-0.83 0.83,-0.83s0.83,0.38 0.83,0.83C18.33,12.96 17.96,13.33 17.5,13.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.74,9h8.53c0.27,0 0.49,-0.22 0.49,-0.49V8.49c0,-0.27 -0.22,-0.49 -0.49,-0.49H13c0,-1.48 -0.81,-2.75 -2,-3.45V5.5C11,5.78 10.78,6 10.5,6S10,5.78 10,5.5V4.14C9.68,4.06 9.35,4 9,4S8.32,4.06 8,4.14V5.5C8,5.78 7.78,6 7.5,6S7,5.78 7,5.5V4.55C5.81,5.25 5,6.52 5,8H4.74C4.47,8 4.25,8.22 4.25,8.49v0.03C4.25,8.78 4.47,9 4.74,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c1.86,0 3.41,-1.28 3.86,-3H5.14C5.59,11.72 7.14,13 9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/enhanced_encryption.xml b/compose/material/material/icons/generator/raw-icons/filled/enhanced_encryption.xml
deleted file mode 100644
index 6c36aab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/enhanced_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V10c0,-1.1 -0.9,-2 -2,-2zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2H8.9V6zM16,16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/equalizer.xml b/compose/material/material/icons/generator/raw-icons/filled/equalizer.xml
deleted file mode 100644
index 6957708..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/equalizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20h4L14,4h-4v16zM4,20h4v-8L4,12v8zM16,9v11h4L20,9h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/error.xml b/compose/material/material/icons/generator/raw-icons/filled/error.xml
deleted file mode 100644
index b915a34..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/error_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/error_outline.xml
deleted file mode 100644
index adc3b69..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/error_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2zM11,7h2v6h-2zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/escalator.xml b/compose/material/material/icons/generator/raw-icons/filled/escalator.xml
deleted file mode 100644
index 63dbcc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/escalator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2l0,-14C21,3.9 20.1,3 19,3zM17,9h-1.7l-5,9H7c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.17,15 7,15h1.7l5,-9H17c0.83,0 1.5,0.67 1.5,1.5S17.83,9 17,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/escalator_warning.xml b/compose/material/material/icons/generator/raw-icons/filled/escalator_warning.xml
deleted file mode 100644
index 1bb94f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/escalator_warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S5.4,2 6.5,2zM15.5,9.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S17.83,8 17,8S15.5,8.67 15.5,9.5zM18.5,12h-2.84c-0.58,0.01 -1.14,0.32 -1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37 8.69,7.01 8.01,7H5C3.9,7 3,7.9 3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68 19.33,12 18.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/euro.xml b/compose/material/material/icons/generator/raw-icons/filled/euro.xml
deleted file mode 100644
index 1e31e62..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/euro.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15l1,-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15l1,-2H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3l-1,2h4.06C6.02,11.33 6,11.66 6,12s0.02,0.67 0.06,1H3l-1,2h4.52c1.24,3.49 4.56,6 8.48,6c2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77C18.09,17.91 16.62,18.5 15,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/euro_symbol.xml b/compose/material/material/icons/generator/raw-icons/filled/euro_symbol.xml
deleted file mode 100644
index 3a4d518..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/euro_symbol.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15v-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15V9H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3v2h3.06c-0.04,0.33 -0.06,0.66 -0.06,1 0,0.34 0.02,0.67 0.06,1H3v2h3.52c1.24,3.49 4.56,6 8.48,6 2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77c-1.13,0.98 -2.6,1.57 -4.22,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ev_station.xml b/compose/material/material/icons/generator/raw-icons/filled/ev_station.xml
deleted file mode 100644
index bd034645..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ev_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-0.94,0.36 -1.61,1.26 -1.61,2.33 0,1.38 1.12,2.5 2.5,2.5 0.36,0 0.69,-0.08 1,-0.21v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V14c0,-1.1 -0.9,-2 -2,-2h-1V5c0,-1.1 -0.9,-2 -2,-2H6c-1.1,0 -2,0.9 -2,2v16h10v-7.5h1.5v5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5V9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM8,18v-4.5H6L10,6v5h2l-4,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/event.xml b/compose/material/material/icons/generator/raw-icons/filled/event.xml
deleted file mode 100644
index 675f7ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/event.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h-5v5h5v-5zM16,1v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2h-1L18,1h-2zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/event_available.xml b/compose/material/material/icons/generator/raw-icons/filled/event_available.xml
deleted file mode 100644
index 4e6985c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/event_available.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,11.06L15.47,10l-4.88,4.88 -2.12,-2.12 -1.06,1.06L10.59,17l5.94,-5.94zM19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/event_busy.xml b/compose/material/material/icons/generator/raw-icons/filled/event_busy.xml
deleted file mode 100644
index a24c847..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/event_busy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.31,17l2.44,-2.44L14.19,17l1.06,-1.06 -2.44,-2.44 2.44,-2.44L14.19,10l-2.44,2.44L9.31,10l-1.06,1.06 2.44,2.44 -2.44,2.44L9.31,17zM19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/event_note.xml b/compose/material/material/icons/generator/raw-icons/filled/event_note.xml
deleted file mode 100644
index 56c194c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/event_note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10L7,10v2h10v-2zM19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11zM14,14L7,14v2h7v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/event_repeat.xml b/compose/material/material/icons/generator/raw-icons/filled/event_repeat.xml
deleted file mode 100644
index c428245..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/event_repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.9,4 3,4.9 3,6v14c0,1.1 0.9,2 2,2h7v-2H5V10h14v2H21zM15.64,20c0.43,1.45 1.77,2.5 3.36,2.5c1.93,0 3.5,-1.57 3.5,-3.5s-1.57,-3.5 -3.5,-3.5c-0.95,0 -1.82,0.38 -2.45,1l1.45,0V18h-4v-4h1.5l0,1.43C16.4,14.55 17.64,14 19,14c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-2.42,0 -4.44,-1.72 -4.9,-4L15.64,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/event_seat.xml b/compose/material/material/icons/generator/raw-icons/filled/event_seat.xml
deleted file mode 100644
index 30c7f45..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/event_seat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18v3h3v-3h10v3h3v-6H4V18zM19,10h3v3h-3V10zM2,10h3v3H2V10zM17,13H7V5c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/exit_to_app.xml b/compose/material/material/icons/generator/raw-icons/filled/exit_to_app.xml
deleted file mode 100644
index ed42b70..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/exit_to_app.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.09,15.59L11.5,17l5,-5 -5,-5 -1.41,1.41L12.67,11H3v2h9.67l-2.58,2.59zM19,3H5c-1.11,0 -2,0.9 -2,2v4h2V5h14v14H5v-4H3v4c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/expand.xml b/compose/material/material/icons/generator/raw-icons/filled/expand.xml
deleted file mode 100644
index 2ba4071..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/expand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16v2L4,22zM4,2h16v2L4,4zM13,9h3l-4,-4 -4,4h3v6L8,15l4,4 4,-4h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/expand_circle_down.xml b/compose/material/material/icons/generator/raw-icons/filled/expand_circle_down.xml
deleted file mode 100644
index 0ce65fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/expand_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,15.5L7.5,11l1.42,-1.41L12,12.67l3.08,-3.08L16.5,11L12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/expand_less.xml b/compose/material/material/icons/generator/raw-icons/filled/expand_less.xml
deleted file mode 100644
index 1550145..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/expand_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8l-6,6 1.41,1.41L12,10.83l4.59,4.58L18,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/expand_more.xml b/compose/material/material/icons/generator/raw-icons/filled/expand_more.xml
deleted file mode 100644
index adc215c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/expand_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,8.59L12,13.17 7.41,8.59 6,10l6,6 6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/explicit.xml b/compose/material/material/icons/generator/raw-icons/filled/explicit.xml
deleted file mode 100644
index 9f5417d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/explicit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM15,9h-4v2h4v2h-4v2h4v2L9,17L9,7h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/explore.xml b/compose/material/material/icons/generator/raw-icons/filled/explore.xml
deleted file mode 100644
index 0ac168a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.9c-0.61,0 -1.1,0.49 -1.1,1.1s0.49,1.1 1.1,1.1c0.61,0 1.1,-0.49 1.1,-1.1s-0.49,-1.1 -1.1,-1.1zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM14.19,14.19L6,18l3.81,-8.19L18,6l-3.81,8.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/explore_off.xml b/compose/material/material/icons/generator/raw-icons/filled/explore_off.xml
deleted file mode 100644
index ebc73aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/explore_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.19,14.19l-1.41,-1.41 -1.56,-1.56L11,11 9.81,9.81 4.93,4.93 2.27,2.27 1,3.54l2.78,2.78c-0.11,0.16 -0.21,0.32 -0.31,0.48 -0.04,0.07 -0.09,0.14 -0.13,0.21 -0.09,0.15 -0.17,0.31 -0.25,0.47 -0.05,0.1 -0.1,0.21 -0.16,0.32 -0.06,0.14 -0.13,0.28 -0.19,0.43 -0.1,0.24 -0.19,0.48 -0.27,0.73l-0.09,0.3c-0.05,0.2 -0.1,0.39 -0.14,0.59 -0.02,0.11 -0.04,0.22 -0.07,0.33 -0.04,0.2 -0.07,0.4 -0.09,0.61 -0.01,0.1 -0.03,0.2 -0.03,0.3 -0.03,0.29 -0.05,0.6 -0.05,0.91 0,5.52 4.48,10 10,10 0.31,0 0.62,-0.02 0.92,-0.05l0.3,-0.03c0.2,-0.02 0.41,-0.06 0.61,-0.09 0.11,-0.02 0.22,-0.04 0.33,-0.07 0.2,-0.04 0.39,-0.09 0.58,-0.15 0.1,-0.03 0.2,-0.05 0.3,-0.09 0.25,-0.08 0.49,-0.17 0.73,-0.27 0.15,-0.06 0.29,-0.13 0.43,-0.19 0.11,-0.05 0.22,-0.1 0.33,-0.16 0.16,-0.08 0.31,-0.16 0.46,-0.25 0.07,-0.04 0.14,-0.09 0.21,-0.13 0.16,-0.1 0.32,-0.2 0.48,-0.31L20.46,23l1.27,-1.27 -2.66,-2.66 -4.88,-4.88zM6,18l3,-6.46L12.46,15 6,18zM22,12c0,0.31 -0.02,0.62 -0.05,0.92l-0.03,0.3c-0.02,0.2 -0.06,0.41 -0.09,0.61 -0.02,0.11 -0.04,0.22 -0.07,0.33 -0.04,0.2 -0.09,0.39 -0.15,0.58 -0.03,0.1 -0.05,0.21 -0.09,0.31 -0.08,0.25 -0.17,0.49 -0.27,0.73 -0.06,0.15 -0.13,0.29 -0.19,0.43 -0.05,0.11 -0.1,0.22 -0.16,0.33 -0.08,0.16 -0.16,0.31 -0.25,0.46 -0.04,0.07 -0.09,0.14 -0.13,0.21 -0.1,0.16 -0.2,0.32 -0.31,0.48L15,12.46 18,6l-6.46,3 -5.22,-5.22c0.16,-0.11 0.32,-0.21 0.48,-0.31 0.07,-0.04 0.14,-0.09 0.21,-0.13 0.15,-0.09 0.31,-0.17 0.46,-0.25 0.11,-0.05 0.22,-0.1 0.33,-0.16 0.14,-0.06 0.28,-0.13 0.43,-0.19 0.24,-0.1 0.48,-0.19 0.73,-0.27l0.31,-0.09c0.19,-0.05 0.38,-0.11 0.58,-0.15 0.11,-0.02 0.22,-0.04 0.33,-0.07 0.2,-0.04 0.4,-0.07 0.61,-0.09 0.1,-0.01 0.2,-0.03 0.3,-0.03 0.29,-0.02 0.6,-0.04 0.91,-0.04 5.52,0 10,4.48 10,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/exposure.xml b/compose/material/material/icons/generator/raw-icons/filled/exposure.xml
deleted file mode 100644
index 1b7485e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/exposure.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM6,7h5v1.5L6,8.5L6,7zM19,19L5,19L19,5v14zM14.5,16v2L16,18v-2h2v-1.5h-2v-2h-1.5v2h-2L12.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/exposure_neg_1.xml b/compose/material/material/icons/generator/raw-icons/filled/exposure_neg_1.xml
deleted file mode 100644
index 8f4da6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/exposure_neg_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11v2h8v-2L4,11zM19,18h-2L17,7.38L14,8.4L14,6.7L18.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/exposure_neg_2.xml b/compose/material/material/icons/generator/raw-icons/filled/exposure_neg_2.xml
deleted file mode 100644
index 4786fed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/exposure_neg_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17 0.23,-0.39 0.41,-0.78 0.54,-1.17s0.19,-0.79 0.19,-1.18c0,-0.53 -0.09,-1.02 -0.27,-1.46 -0.18,-0.44 -0.44,-0.81 -0.78,-1.11 -0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49 0.27,-0.12 0.6,-0.18 0.96,-0.18 0.31,0 0.58,0.05 0.81,0.15 0.23,0.1 0.43,0.25 0.59,0.43 0.16,0.18 0.28,0.4 0.37,0.65 0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H21v-1.71h-5.95zM2,11v2h8v-2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/exposure_plus_1.xml b/compose/material/material/icons/generator/raw-icons/filled/exposure_plus_1.xml
deleted file mode 100644
index 0e693dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/exposure_plus_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7L8,7v4L4,11v2h4v4h2v-4h4v-2h-4L10,7zM20,18h-2L18,7.38L15,8.4L15,6.7L19.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/exposure_plus_2.xml b/compose/material/material/icons/generator/raw-icons/filled/exposure_plus_2.xml
deleted file mode 100644
index 7d14a23..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/exposure_plus_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17 0.23,-0.39 0.41,-0.78 0.54,-1.17 0.13,-0.39 0.19,-0.79 0.19,-1.18 0,-0.53 -0.09,-1.02 -0.27,-1.46 -0.18,-0.44 -0.44,-0.81 -0.78,-1.11 -0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49 0.27,-0.12 0.6,-0.18 0.96,-0.18 0.31,0 0.58,0.05 0.81,0.15 0.23,0.1 0.43,0.25 0.59,0.43 0.16,0.18 0.28,0.4 0.37,0.65 0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H22v-1.71h-5.95zM8,7H6v4H2v2h4v4h2v-4h4v-2H8V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/exposure_zero.xml b/compose/material/material/icons/generator/raw-icons/filled/exposure_zero.xml
deleted file mode 100644
index 4739476..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/exposure_zero.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.14,12.5c0,1 -0.1,1.85 -0.3,2.55 -0.2,0.7 -0.48,1.27 -0.83,1.7 -0.36,0.44 -0.79,0.75 -1.3,0.95 -0.51,0.2 -1.07,0.3 -1.7,0.3 -0.62,0 -1.18,-0.1 -1.69,-0.3 -0.51,-0.2 -0.95,-0.51 -1.31,-0.95 -0.36,-0.44 -0.65,-1.01 -0.85,-1.7 -0.2,-0.7 -0.3,-1.55 -0.3,-2.55v-2.04c0,-1 0.1,-1.85 0.3,-2.55 0.2,-0.7 0.48,-1.26 0.84,-1.69 0.36,-0.43 0.8,-0.74 1.31,-0.93C10.81,5.1 11.38,5 12,5c0.63,0 1.19,0.1 1.7,0.29 0.51,0.19 0.95,0.5 1.31,0.93 0.36,0.43 0.64,0.99 0.84,1.69 0.2,0.7 0.3,1.54 0.3,2.55v2.04zM14.03,10.14c0,-0.64 -0.05,-1.18 -0.13,-1.62 -0.09,-0.44 -0.22,-0.79 -0.4,-1.06 -0.17,-0.27 -0.39,-0.46 -0.64,-0.58 -0.25,-0.13 -0.54,-0.19 -0.86,-0.19 -0.32,0 -0.61,0.06 -0.86,0.18s-0.47,0.31 -0.64,0.58c-0.17,0.27 -0.31,0.62 -0.4,1.06s-0.13,0.98 -0.13,1.62v2.67c0,0.64 0.05,1.18 0.14,1.62 0.09,0.45 0.23,0.81 0.4,1.09s0.39,0.48 0.64,0.61 0.54,0.19 0.87,0.19c0.33,0 0.62,-0.06 0.87,-0.19s0.46,-0.33 0.63,-0.61c0.17,-0.28 0.3,-0.64 0.39,-1.09 0.09,-0.45 0.13,-0.99 0.13,-1.62v-2.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/extension.xml b/compose/material/material/icons/generator/raw-icons/filled/extension.xml
deleted file mode 100644
index 94055ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/extension.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,11H19V7c0,-1.1 -0.9,-2 -2,-2h-4V3.5C13,2.12 11.88,1 10.5,1S8,2.12 8,3.5V5H4c-1.1,0 -1.99,0.9 -1.99,2v3.8H3.5c1.49,0 2.7,1.21 2.7,2.7s-1.21,2.7 -2.7,2.7H2V20c0,1.1 0.9,2 2,2h3.8v-1.5c0,-1.49 1.21,-2.7 2.7,-2.7 1.49,0 2.7,1.21 2.7,2.7V22H17c1.1,0 2,-0.9 2,-2v-4h1.5c1.38,0 2.5,-1.12 2.5,-2.5S21.88,11 20.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/extension_off.xml b/compose/material/material/icons/generator/raw-icons/filled/extension_off.xml
deleted file mode 100644
index cd00086..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/extension_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.78,22.61l-1.63,-1.63C18.1,20.98 18.05,21 18,21h-3.8c0,-2.71 -2.16,-3 -2.7,-3s-2.7,0.29 -2.7,3H5c-1.1,0 -2,-0.9 -2,-2v-3.8c2.71,0 3,-2.16 3,-2.7c0,-0.54 -0.3,-2.7 -2.99,-2.7V6c0,-0.05 0.02,-0.09 0.02,-0.14L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM20,17.17V15c1.38,0 2.5,-1.12 2.5,-2.5S21.38,10 20,10V6c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H6.83L20,17.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face.xml b/compose/material/material/icons/generator/raw-icons/filled/face.xml
deleted file mode 100644
index eed089b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM15,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-0.29 0.02,-0.58 0.05,-0.86 2.36,-1.05 4.23,-2.98 5.21,-5.37C11.07,8.33 14.05,10 17.42,10c0.78,0 1.53,-0.09 2.25,-0.26 0.21,0.71 0.33,1.47 0.33,2.26 0,4.41 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face_2.xml b/compose/material/material/icons/generator/raw-icons/filled/face_2.xml
deleted file mode 100644
index 4b29f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.97,13.52c0,-0.01 0,-0.02 0,-0.04C23.21,12.38 24,10.78 24,9c0,-3.31 -2.69,-6 -6,-6c-0.26,0 -0.52,0.02 -0.78,0.06C16.19,1.23 14.24,0 12,0S7.81,1.23 6.78,3.06C6.52,3.02 6.26,3 6,3C2.69,3 0,5.69 0,9c0,1.78 0.79,3.38 2.02,4.48c0,0.01 0,0.02 0,0.04C0.79,14.62 0,16.22 0,18c0,3.31 2.69,6 6,6c1.39,0 2.67,-0.48 3.69,-1.28C10.43,22.9 11.2,23 12,23s1.57,-0.1 2.31,-0.28C15.33,23.52 16.61,24 18,24c3.31,0 6,-2.69 6,-6C24,16.22 23.21,14.62 21.97,13.52zM12,21c-4.41,0 -8,-3.59 -8,-8c0,-3.72 2.56,-6.85 6,-7.74c0,0.02 0,0.03 0,0.05c0,3.34 2.72,6.06 6.06,6.06c1.26,0 2.45,-0.39 3.45,-1.09C19.82,11.14 20,12.05 20,13C20,17.41 16.41,21 12,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face_3.xml b/compose/material/material/icons/generator/raw-icons/filled/face_3.xml
deleted file mode 100644
index c7d50ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face_3.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.91,11.96C22.39,6.32 17.66,2 12,2S1.61,6.32 1.09,11.96l-0.9,9.86C0.09,22.99 1.01,24 2.19,24h19.62c1.18,0 2.1,-1.01 1.99,-2.18L22.91,11.96zM4.54,9.13C5.41,9.68 6.43,10 7.5,10C9.36,10 11,9.07 12,7.65C13,9.07 14.64,10 16.5,10c1.07,0 2.09,-0.32 2.96,-0.87C19.8,10.02 20,10.99 20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8C4,10.99 4.2,10.02 4.54,9.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face_4.xml b/compose/material/material/icons/generator/raw-icons/filled/face_4.xml
deleted file mode 100644
index 655df37..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-0.96,0 -1.88,0.14 -2.75,0.39C8.37,0.96 6.8,0 5,0C2.24,0 0,2.24 0,5c0,1.8 0.96,3.37 2.39,4.25C2.14,10.12 2,11.04 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0.01,-0.15c2.6,-0.98 4.68,-2.99 5.74,-5.55C11.58,8.56 14.37,10 17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face_5.xml b/compose/material/material/icons/generator/raw-icons/filled/face_5.xml
deleted file mode 100644
index 525db6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face_5.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.12 0.23,-2.18 0.65,-3.15C4.74,8.94 4.86,9 5,9c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.25 -0.19,-0.45 -0.43,-0.49c0.15,-0.26 0.32,-0.51 0.49,-0.75C5.53,7.34 5.5,7.41 5.5,7.5C5.5,7.78 5.72,8 6,8s0.5,-0.22 0.5,-0.5C6.5,7.22 6.28,7 6,7C5.87,7 5.75,7.05 5.66,7.13c0.52,-0.68 1.15,-1.28 1.86,-1.76C7.51,5.41 7.5,5.45 7.5,5.5C7.5,5.78 7.72,6 8,6s0.5,-0.22 0.5,-0.5c0,-0.24 -0.17,-0.43 -0.4,-0.48c0.16,-0.09 0.32,-0.17 0.49,-0.25C8.68,4.91 8.83,5 9,5c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.03 -0.01,-0.06 -0.02,-0.09c0.39,-0.13 0.79,-0.23 1.21,-0.3C10.58,4.21 10.5,4.34 10.5,4.5C10.5,4.78 10.72,5 11,5s0.5,-0.22 0.5,-0.5c0,-0.21 -0.13,-0.38 -0.3,-0.46C11.46,4.01 11.73,4 12,4s0.54,0.01 0.8,0.04c-0.18,0.08 -0.3,0.25 -0.3,0.46C12.5,4.78 12.72,5 13,5s0.5,-0.22 0.5,-0.5c0,-0.16 -0.08,-0.29 -0.19,-0.38c0.41,0.07 0.82,0.17 1.21,0.3C14.51,4.44 14.5,4.47 14.5,4.5C14.5,4.78 14.72,5 15,5c0.17,0 0.32,-0.09 0.41,-0.23c0.17,0.08 0.33,0.16 0.49,0.25c-0.23,0.05 -0.4,0.24 -0.4,0.48C15.5,5.78 15.72,6 16,6s0.5,-0.22 0.5,-0.5c0,-0.05 -0.01,-0.09 -0.03,-0.13c0.71,0.48 1.34,1.08 1.86,1.76C18.25,7.05 18.13,7 18,7c-0.28,0 -0.5,0.22 -0.5,0.5C17.5,7.78 17.72,8 18,8s0.5,-0.22 0.5,-0.5c0,-0.09 -0.03,-0.16 -0.07,-0.23c0.18,0.24 0.34,0.49 0.49,0.75C18.69,8.05 18.5,8.25 18.5,8.5C18.5,8.78 18.72,9 19,9c0.14,0 0.26,-0.06 0.35,-0.15C19.77,9.82 20,10.88 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face_6.xml b/compose/material/material/icons/generator/raw-icons/filled/face_6.xml
deleted file mode 100644
index 8c34172..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face_6.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.01 0,-0.02 0,-0.03c2.31,-0.22 3.43,-1.59 4.34,-3.41C8.51,8.21 8.85,8 9.24,8h5.53c0.38,0 0.72,0.21 0.89,0.55c0.9,1.8 1.99,3.19 4.34,3.41c0,0.01 0,0.02 0,0.03C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face_retouching_natural.xml b/compose/material/material/icons/generator/raw-icons/filled/face_retouching_natural.xml
deleted file mode 100644
index 6cec852..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face_retouching_natural.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.77,8.58l-0.92,2.01c0.09,0.46 0.15,0.93 0.15,1.41 0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14 2.6,-0.98 4.69,-2.99 5.74,-5.55C11.58,8.56 14.37,10 17.5,10c0.45,0 0.89,-0.04 1.33,-0.1l-0.6,-1.32 -0.88,-1.93 -1.93,-0.88 -2.79,-1.27 2.79,-1.27 0.71,-0.32C14.87,2.33 13.47,2 12,2 6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10c0,-1.47 -0.33,-2.87 -0.9,-4.13l-0.33,0.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.6,5.6L19.5,8l-1.1,-2.4L16,4.5l2.4,-1.1L19.5,1l1.1,2.4L23,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/face_retouching_off.xml b/compose/material/material/icons/generator/raw-icons/filled/face_retouching_off.xml
deleted file mode 100644
index 4c92c0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/face_retouching_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12c0,1.22 -0.28,2.37 -0.77,3.4l1.49,1.49C21.53,15.44 22,13.78 22,12c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.47 -4.89,1.28l5.33,5.33C13.93,9.49 15.65,10 17.5,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.89,3.72l2.19,2.19C2.78,7.6 2,9.71 2,12c0,5.52 4.48,10 10,10c2.29,0 4.4,-0.78 6.09,-2.08l2.19,2.19l1.41,-1.41L3.31,2.31L1.89,3.72zM16.66,18.49C15.35,19.44 13.74,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c1.39,-0.52 2.63,-1.35 3.64,-2.39L16.66,18.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/facebook.xml b/compose/material/material/icons/generator/raw-icons/filled/facebook.xml
deleted file mode 100644
index 308115a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/facebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,4.84 3.44,8.87 8,9.8V15H8v-3h2V9.5C10,7.57 11.57,6 13.5,6H16v3h-2c-0.55,0 -1,0.45 -1,1v2h3v3h-3v6.95C18.05,21.45 22,17.19 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fact_check.xml b/compose/material/material/icons/generator/raw-icons/filled/fact_check.xml
deleted file mode 100644
index e240787..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fact_check.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM10,17H5v-2h5V17zM10,13H5v-2h5V13zM10,9H5V7h5V9zM14.82,15L12,12.16l1.41,-1.41l1.41,1.42L17.99,9l1.42,1.42L14.82,15z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/factory.xml b/compose/material/material/icons/generator/raw-icons/filled/factory.xml
deleted file mode 100644
index fd307ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/factory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10v12H2V10l7,-3v2l5,-2l0,0l0,3H22zM17.2,8.5L18,2h3l0.8,6.5H17.2zM11,18h2v-4h-2V18zM7,18h2v-4H7V18zM17,14h-2v4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/family_restroom.xml b/compose/material/material/icons/generator/raw-icons/filled/family_restroom.xml
deleted file mode 100644
index cb92359..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/family_restroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S16,5.11 16,4zM20,22v-6h2.5l-2.54,-7.63C19.68,7.55 18.92,7 18.06,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37l-0.86,2.58C16.26,11.55 17,12.68 17,14v8H20zM12.5,11.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5S11,9.17 11,10S11.67,11.5 12.5,11.5zM5.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S4.39,6 5.5,6zM7.5,22v-7H9V9c0,-1.1 -0.9,-2 -2,-2H4C2.9,7 2,7.9 2,9v6h1.5v7H7.5zM14,22v-4h1v-4c0,-0.82 -0.68,-1.5 -1.5,-1.5h-2c-0.82,0 -1.5,0.68 -1.5,1.5v4h1v4H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fast_forward.xml b/compose/material/material/icons/generator/raw-icons/filled/fast_forward.xml
deleted file mode 100644
index e3f30c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fast_forward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18l8.5,-6L4,6v12zM13,6v12l8.5,-6L13,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fast_rewind.xml b/compose/material/material/icons/generator/raw-icons/filled/fast_rewind.xml
deleted file mode 100644
index 81f79b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fast_rewind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18L11,6l-8.5,6 8.5,6zM11.5,12l8.5,6L20,6l-8.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fastfood.xml b/compose/material/material/icons/generator/raw-icons/filled/fastfood.xml
deleted file mode 100644
index b270e42..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fastfood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.06,22.99h1.66c0.84,0 1.53,-0.64 1.63,-1.46L23,5.05h-5L18,1h-1.97v4.05h-4.97l0.3,2.34c1.71,0.47 3.31,1.32 4.27,2.26 1.44,1.42 2.43,2.89 2.43,5.29v8.05zM1,21.99L1,21h15.03v0.99c0,0.55 -0.45,1 -1.01,1L2.01,22.99c-0.56,0 -1.01,-0.45 -1.01,-1zM16.03,14.99c0,-8 -15.03,-8 -15.03,0h15.03zM1.02,17h15v2h-15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/favorite.xml b/compose/material/material/icons/generator/raw-icons/filled/favorite.xml
deleted file mode 100644
index 52d4d9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/favorite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21.35l-1.45,-1.32C5.4,15.36 2,12.28 2,8.5 2,5.42 4.42,3 7.5,3c1.74,0 3.41,0.81 4.5,2.09C13.09,3.81 14.76,3 16.5,3 19.58,3 22,5.42 22,8.5c0,3.78 -3.4,6.86 -8.55,11.54L12,21.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/favorite_border.xml b/compose/material/material/icons/generator/raw-icons/filled/favorite_border.xml
deleted file mode 100644
index 3edfe1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/favorite_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-1.74,0 -3.41,0.81 -4.5,2.09C10.91,3.81 9.24,3 7.5,3 4.42,3 2,5.42 2,8.5c0,3.78 3.4,6.86 8.55,11.54L12,21.35l1.45,-1.32C18.6,15.36 22,12.28 22,8.5 22,5.42 19.58,3 16.5,3zM12.1,18.55l-0.1,0.1 -0.1,-0.1C7.14,14.24 4,11.39 4,8.5 4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5 0,2.89 -3.14,5.74 -7.9,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fax.xml b/compose/material/material/icons/generator/raw-icons/filled/fax.xml
deleted file mode 100644
index b1d58ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fax.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-1V4H8v14.5V20h14v-8C22,10.34 20.66,9 19,9zM10,6h6v3h-6V6zM14,17h-4v-5h4V17zM16,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,16.55 16.55,17 16,17zM16,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,13.55 16.55,14 16,14zM19,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,16.55 19.55,17 19,17zM19,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,13.55 19.55,14 19,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,8C3.12,8 2,9.12 2,10.5v8C2,19.88 3.12,21 4.5,21S7,19.88 7,18.5v-8C7,9.12 5.88,8 4.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/featured_play_list.xml b/compose/material/material/icons/generator/raw-icons/filled/featured_play_list.xml
deleted file mode 100644
index cf4360d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/featured_play_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM12,11L3,11L3,9h9v2zM12,7L3,7L3,5h9v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/featured_video.xml b/compose/material/material/icons/generator/raw-icons/filled/featured_video.xml
deleted file mode 100644
index 15c2055..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/featured_video.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM12,12L3,12L3,5h9v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/feed.xml b/compose/material/material/icons/generator/raw-icons/filled/feed.xml
deleted file mode 100644
index 0eea0a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/feed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8L16,3zM7,7h5v2H7V7zM17,17H7v-2h10V17zM17,13H7v-2h10V13zM15,9V5l4,4H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/feedback.xml b/compose/material/material/icons/generator/raw-icons/filled/feedback.xml
deleted file mode 100644
index 170a74b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/feedback.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM13,14h-2v-2h2v2zM13,10h-2L11,6h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/female.xml b/compose/material/material/icons/generator/raw-icons/filled/female.xml
deleted file mode 100644
index bb480ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/female.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,9.5C17.5,6.46 15.04,4 12,4S6.5,6.46 6.5,9.5c0,2.7 1.94,4.93 4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1C15.56,14.43 17.5,12.2 17.5,9.5zM8.5,9.5C8.5,7.57 10.07,6 12,6s3.5,1.57 3.5,3.5S13.93,13 12,13S8.5,11.43 8.5,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fence.xml b/compose/material/material/icons/generator/raw-icons/filled/fence.xml
deleted file mode 100644
index e8fbfb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12v-2h-2V7l-3,-3l-2,2l-2,-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21zM16,6.83l1,1V10h-2V7.83l0.41,-0.41L16,6.83zM12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41,-0.41L12,6.83zM11,14v-2h2v2H11zM13,16v2h-2v-2H13zM7,7.83l1,-1l0.59,0.59L9,7.83V10H7V7.83zM7,12h2v2H7V12zM7,16h2v2H7V16zM17,18h-2v-2h2V18zM17,14h-2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/festival.xml b/compose/material/material/icons/generator/raw-icons/filled/festival.xml
deleted file mode 100644
index 0de7bb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/festival.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.7l0,-1.7l3,0l-1,-1.49l1,-1.51l-5,0l0,4.7l-9,6.3l0,10l7,0l0,-5l3.03,-2l2.97,2l0,5l7,0l0,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fiber_dvr.xml b/compose/material/material/icons/generator/raw-icons/filled/fiber_dvr.xml
deleted file mode 100644
index 873a20c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fiber_dvr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5h2v1h-2V10.5zM4.5,10.5h2v3h-2V10.5zM21,3H3C1.89,3 1,3.89 1,5v14c0,1.1 0.89,2 2,2h18c1.11,0 2,-0.9 2,-2V5C23,3.89 22.11,3 21,3zM8,13.5C8,14.35 7.35,15 6.5,15H3V9h3.5C7.35,9 8,9.65 8,10.5V13.5zM12.62,15h-1.5L9.37,9h1.5l1,3.43l1,-3.43h1.5L12.62,15zM21,11.5c0,0.6 -0.4,1.15 -0.9,1.4L21,15h-1.5l-0.85,-2H17.5v2H16V9h3.5c0.85,0 1.5,0.65 1.5,1.5V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fiber_manual_record.xml b/compose/material/material/icons/generator/raw-icons/filled/fiber_manual_record.xml
deleted file mode 100644
index d191830..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fiber_manual_record.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-8,0a8,8 0,1 1,16 0a8,8 0,1 1,-16 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fiber_new.xml b/compose/material/material/icons/generator/raw-icons/filled/fiber_new.xml
deleted file mode 100644
index af35c19..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fiber_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V6C22,4.89 21.11,4 20,4zM8.5,15H7.3l-2.55,-3.5V15H3.5V9h1.25l2.5,3.5V9H8.5V15zM13.5,10.26H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4V10.26zM20.5,14c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fiber_pin.xml b/compose/material/material/icons/generator/raw-icons/filled/fiber_pin.xml
deleted file mode 100644
index 7152e58..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fiber_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,10.5h2v1h-2zM20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM9,11.5c0,0.85 -0.65,1.5 -1.5,1.5h-2v2L4,15L4,9h3.5c0.85,0 1.5,0.65 1.5,1.5v1zM12.5,15L11,15L11,9h1.5v6zM20,15h-1.2l-2.55,-3.5L16.25,15L15,15L15,9h1.25l2.5,3.5L18.75,9L20,9v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fiber_smart_record.xml b/compose/material/material/icons/generator/raw-icons/filled/fiber_smart_record.xml
deleted file mode 100644
index fae3f76..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fiber_smart_record.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12m-8,0a8,8 0,1 1,16 0a8,8 0,1 1,-16 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4.26v2.09c2.33,0.82 4,3.04 4,5.65s-1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74s-2.55,-6.85 -6,-7.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/file_copy.xml b/compose/material/material/icons/generator/raw-icons/filled/file_copy.xml
deleted file mode 100644
index 0cd5895..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/file_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM15,5l6,6v10c0,1.1 -0.9,2 -2,2L7.99,23C6.89,23 6,22.1 6,21l0.01,-14c0,-1.1 0.89,-2 1.99,-2h7zM14,12h5.5L14,6.5L14,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/file_download.xml b/compose/material/material/icons/generator/raw-icons/filled/file_download.xml
deleted file mode 100644
index 27bb5a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/file_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/file_download_done.xml b/compose/material/material/icons/generator/raw-icons/filled/file_download_done.xml
deleted file mode 100644
index a8299bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/file_download_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2L5,20v-2zM9.6,15.3L5,10.7l2,-1.9 2.6,2.6L17,4l2,2 -9.4,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/file_download_off.xml b/compose/material/material/icons/generator/raw-icons/filled/file_download_off.xml
deleted file mode 100644
index b634de7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/file_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V3h6v6h4l-3.59,3.59L9,6.17zM21.19,21.19L2.81,2.81L1.39,4.22L6.17,9H5l7,7l0.59,-0.59L15.17,18H5v2h12.17l2.61,2.61L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/file_open.xml b/compose/material/material/icons/generator/raw-icons/filled/file_open.xml
deleted file mode 100644
index 2c7c0d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/file_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.89,2 1.99,2H15v-8h5V8L14,2zM13,9V3.5L18.5,9H13zM17,21.66V16h5.66v2h-2.24l2.95,2.95l-1.41,1.41L19,19.41l0,2.24H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/file_present.xml b/compose/material/material/icons/generator/raw-icons/filled/file_present.xml
deleted file mode 100644
index a925758..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/file_present.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,7l-5,-5zM6,20L6,4h8v4h4v12L6,20zM16,10v5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4L8,8.5c0,-1.47 1.26,-2.64 2.76,-2.49 1.3,0.13 2.24,1.32 2.24,2.63L13,15h-2L11,8.5c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5L10,15c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-5h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/file_upload.xml b/compose/material/material/icons/generator/raw-icons/filled/file_upload.xml
deleted file mode 100644
index f92d6ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/file_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6v-6h4l-7,-7 -7,7h4zM5,18h14v2L5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter.xml b/compose/material/material/icons/generator/raw-icons/filled/filter.xml
deleted file mode 100644
index 6a916d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.96,10.29l-2.75,3.54 -1.96,-2.36L8.5,15h11l-3.54,-4.71zM3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_1.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_1.xml
deleted file mode 100644
index 2f8d582..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM14,15h2L16,5h-4v2h2v8zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_2.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_2.xml
deleted file mode 100644
index 3a4ba85..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM17,13h-4v-2h2c1.1,0 2,-0.89 2,-2L17,7c0,-1.11 -0.9,-2 -2,-2h-4v2h4v2h-2c-1.1,0 -2,0.89 -2,2v4h6v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_3.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_3.xml
deleted file mode 100644
index 4ab2a24..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM17,13v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1,0 2,-0.89 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_4.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_4.xml
deleted file mode 100644
index cea3980..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM15,15h2L17,5h-2v4h-2L13,5h-2v6h4v4zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_5.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_5.xml
deleted file mode 100644
index f72f8e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM17,13v-2c0,-1.11 -0.9,-2 -2,-2h-2L13,7h4L17,5h-6v6h4v2h-4v2h4c1.1,0 2,-0.89 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_6.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_6.xml
deleted file mode 100644
index 7d33eab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM13,15h2c1.1,0 2,-0.89 2,-2v-2c0,-1.11 -0.9,-2 -2,-2h-2L13,7h4L17,5h-4c-1.1,0 -2,0.89 -2,2v6c0,1.11 0.9,2 2,2zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_7.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_7.xml
deleted file mode 100644
index b23f4c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM13,15l4,-8L17,5h-6v2h4l-4,8h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_8.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_8.xml
deleted file mode 100644
index acd33ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_8.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM13,15h2c1.1,0 2,-0.89 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.89 -2,2v1.5c0,0.83 0.67,1.5 1.5,1.5 -0.83,0 -1.5,0.67 -1.5,1.5L11,13c0,1.11 0.9,2 2,2zM13,7h2v2h-2L13,7zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_9.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_9.xml
deleted file mode 100644
index 8b18b3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM15,5h-2c-1.1,0 -2,0.89 -2,2v2c0,1.11 0.9,2 2,2h2v2h-4v2h4c1.1,0 2,-0.89 2,-2L17,7c0,-1.11 -0.9,-2 -2,-2zM15,9h-2L13,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_9_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_9_plus.xml
deleted file mode 100644
index 90a643a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_9_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM14,12L14,8c0,-1.11 -0.9,-2 -2,-2h-1c-1.1,0 -2,0.89 -2,2v1c0,1.11 0.9,2 2,2h1v1L9,12v2h3c1.1,0 2,-0.89 2,-2zM11,9L11,8h1v1h-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,9h-2L19,7h-2v2h-2v2h2v2h2v-2h2v6L7,17L7,3h14v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_alt.xml
deleted file mode 100644
index ccb8fd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.25,5.61C6.27,8.2 10,13 10,13v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-6c0,0 3.72,-4.8 5.74,-7.39C20.25,4.95 19.78,4 18.95,4H5.04C4.21,4 3.74,4.95 4.25,5.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_alt_off.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_alt_off.xml
deleted file mode 100644
index f2ddb2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_alt_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.79,5.61C20.3,4.95 19.83,4 19,4H6.83l7.97,7.97L19.79,5.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L10,13v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-2.17l5.78,5.78l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_b_and_w.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_b_and_w.xml
deleted file mode 100644
index f19287c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_b_and_w.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19l-7,-8v8L5,19l7,-8L12,5h7v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_center_focus.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_center_focus.xml
deleted file mode 100644
index 67767f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_center_focus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_drama.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_drama.xml
deleted file mode 100644
index 57e77b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_drama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.61,5.64 5.36,8.04 2.35,8.36 0,10.9 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4h2c0,-2.76 -1.86,-5.08 -4.4,-5.78C8.61,6.88 10.2,6 12,6c3.03,0 5.5,2.47 5.5,5.5v0.5H19c1.65,0 3,1.35 3,3s-1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_frames.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_frames.xml
deleted file mode 100644
index 9c66fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_frames.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-4l-4,-4 -4,4L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,6h4.52l3.52,-3.5L15.52,6L20,6v14zM18,8L6,8v10h12"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_hdr.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_hdr.xml
deleted file mode 100644
index 22347e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_hdr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-3.75,5 2.85,3.8 -1.6,1.2C9.81,13.75 7,10 7,10l-6,8h22L14,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_list.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_list.xml
deleted file mode 100644
index 454bd7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_list.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18h4v-2h-4v2zM3,6v2h18L21,6L3,6zM6,13h12v-2L6,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_list_off.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_list_off.xml
deleted file mode 100644
index 2882f30..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_list_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8H21V6H8.83L10.83,8zM15.83,13H18v-2h-4.17L15.83,13zM14,16.83V18h-4v-2h3.17l-3,-3H6v-2h2.17l-3,-3H3V6h0.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L14,16.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_none.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_none.xml
deleted file mode 100644
index 050d129..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_tilt_shift.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_tilt_shift.xml
deleted file mode 100644
index f7ab736..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_tilt_shift.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4.07L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62zM18.32,4.26C16.84,3.05 15.01,2.25 13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62l1.42,-1.43zM19.93,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1c0.86,1.11 1.44,2.44 1.62,3.9zM5.69,7.1L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9zM4.07,13L2.05,13c0.2,2.01 1,3.84 2.21,5.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89zM15,12c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3 1.34,3 3,3 3,-1.34 3,-3zM18.31,16.9l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32h-2.02c-0.18,1.45 -0.76,2.78 -1.62,3.89zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43c-1.1,0.86 -2.43,1.44 -3.89,1.62zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/filter_vintage.xml b/compose/material/material/icons/generator/raw-icons/filled/filter_vintage.xml
deleted file mode 100644
index 8233677..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/filter_vintage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.7,12.4c-0.28,-0.16 -0.57,-0.29 -0.86,-0.4 0.29,-0.11 0.58,-0.24 0.86,-0.4 1.92,-1.11 2.99,-3.12 3,-5.19 -1.79,-1.03 -4.07,-1.11 -6,0 -0.28,0.16 -0.54,0.35 -0.78,0.54 0.05,-0.31 0.08,-0.63 0.08,-0.95 0,-2.22 -1.21,-4.15 -3,-5.19C10.21,1.85 9,3.78 9,6c0,0.32 0.03,0.64 0.08,0.95 -0.24,-0.2 -0.5,-0.39 -0.78,-0.55 -1.92,-1.11 -4.2,-1.03 -6,0 0,2.07 1.07,4.08 3,5.19 0.28,0.16 0.57,0.29 0.86,0.4 -0.29,0.11 -0.58,0.24 -0.86,0.4 -1.92,1.11 -2.99,3.12 -3,5.19 1.79,1.03 4.07,1.11 6,0 0.28,-0.16 0.54,-0.35 0.78,-0.54 -0.05,0.32 -0.08,0.64 -0.08,0.96 0,2.22 1.21,4.15 3,5.19 1.79,-1.04 3,-2.97 3,-5.19 0,-0.32 -0.03,-0.64 -0.08,-0.95 0.24,0.2 0.5,0.38 0.78,0.54 1.92,1.11 4.2,1.03 6,0 -0.01,-2.07 -1.08,-4.08 -3,-5.19zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/find_in_page.xml b/compose/material/material/icons/generator/raw-icons/filled/find_in_page.xml
deleted file mode 100644
index 5cb9427..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/find_in_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19.59V8l-6,-6H6c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2H18c0.45,0 0.85,-0.15 1.19,-0.4l-4.43,-4.43c-0.8,0.52 -1.74,0.83 -2.76,0.83 -2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5c0,1.02 -0.31,1.96 -0.83,2.75L20,19.59zM9,13c0,1.66 1.34,3 3,3s3,-1.34 3,-3 -1.34,-3 -3,-3 -3,1.34 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/find_replace.xml b/compose/material/material/icons/generator/raw-icons/filled/find_replace.xml
deleted file mode 100644
index c4ad579..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/find_replace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6c1.38,0 2.63,0.56 3.54,1.46L12,10h6L18,4l-2.05,2.05C14.68,4.78 12.93,4 11,4c-3.53,0 -6.43,2.61 -6.92,6L6.1,10c0.46,-2.28 2.48,-4 4.9,-4zM16.64,15.14c0.66,-0.9 1.12,-1.97 1.28,-3.14L15.9,12c-0.46,2.28 -2.48,4 -4.9,4 -1.38,0 -2.63,-0.56 -3.54,-1.46L10,12L4,12v6l2.05,-2.05C7.32,17.22 9.07,18 11,18c1.55,0 2.98,-0.51 4.14,-1.36L20,21.49 21.49,20l-4.85,-4.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fingerprint.xml b/compose/material/material/icons/generator/raw-icons/filled/fingerprint.xml
deleted file mode 100644
index 4ad0310..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fingerprint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.81,4.47c-0.08,0 -0.16,-0.02 -0.23,-0.06C15.66,3.42 14,3 12.01,3c-1.98,0 -3.86,0.47 -5.57,1.41 -0.24,0.13 -0.54,0.04 -0.68,-0.2 -0.13,-0.24 -0.04,-0.55 0.2,-0.68C7.82,2.52 9.86,2 12.01,2c2.13,0 3.99,0.47 6.03,1.52 0.25,0.13 0.34,0.43 0.21,0.67 -0.09,0.18 -0.26,0.28 -0.44,0.28zM3.5,9.72c-0.1,0 -0.2,-0.03 -0.29,-0.09 -0.23,-0.16 -0.28,-0.47 -0.12,-0.7 0.99,-1.4 2.25,-2.5 3.75,-3.27C9.98,4.04 14,4.03 17.15,5.65c1.5,0.77 2.76,1.86 3.75,3.25 0.16,0.22 0.11,0.54 -0.12,0.7 -0.23,0.16 -0.54,0.11 -0.7,-0.12 -0.9,-1.26 -2.04,-2.25 -3.39,-2.94 -2.87,-1.47 -6.54,-1.47 -9.4,0.01 -1.36,0.7 -2.5,1.7 -3.4,2.96 -0.08,0.14 -0.23,0.21 -0.39,0.21zM9.75,21.79c-0.13,0 -0.26,-0.05 -0.35,-0.15 -0.87,-0.87 -1.34,-1.43 -2.01,-2.64 -0.69,-1.23 -1.05,-2.73 -1.05,-4.34 0,-2.97 2.54,-5.39 5.66,-5.39s5.66,2.42 5.66,5.39c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5c0,-2.42 -2.09,-4.39 -4.66,-4.39 -2.57,0 -4.66,1.97 -4.66,4.39 0,1.44 0.32,2.77 0.93,3.85 0.64,1.15 1.08,1.64 1.85,2.42 0.19,0.2 0.19,0.51 0,0.71 -0.11,0.1 -0.24,0.15 -0.37,0.15zM16.92,19.94c-1.19,0 -2.24,-0.3 -3.1,-0.89 -1.49,-1.01 -2.38,-2.65 -2.38,-4.39 0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5c0,1.41 0.72,2.74 1.94,3.56 0.71,0.48 1.54,0.71 2.54,0.71 0.24,0 0.64,-0.03 1.04,-0.1 0.27,-0.05 0.53,0.13 0.58,0.41 0.05,0.27 -0.13,0.53 -0.41,0.58 -0.57,0.11 -1.07,0.12 -1.21,0.12zM14.91,22c-0.04,0 -0.09,-0.01 -0.13,-0.02 -1.59,-0.44 -2.63,-1.03 -3.72,-2.1 -1.4,-1.39 -2.17,-3.24 -2.17,-5.22 0,-1.62 1.38,-2.94 3.08,-2.94 1.7,0 3.08,1.32 3.08,2.94 0,1.07 0.93,1.94 2.08,1.94s2.08,-0.87 2.08,-1.94c0,-3.77 -3.25,-6.83 -7.25,-6.83 -2.84,0 -5.44,1.58 -6.61,4.03 -0.39,0.81 -0.59,1.76 -0.59,2.8 0,0.78 0.07,2.01 0.67,3.61 0.1,0.26 -0.03,0.55 -0.29,0.64 -0.26,0.1 -0.55,-0.04 -0.64,-0.29 -0.49,-1.31 -0.73,-2.61 -0.73,-3.96 0,-1.2 0.23,-2.29 0.68,-3.24 1.33,-2.79 4.28,-4.6 7.51,-4.6 4.55,0 8.25,3.51 8.25,7.83 0,1.62 -1.38,2.94 -3.08,2.94s-3.08,-1.32 -3.08,-2.94c0,-1.07 -0.93,-1.94 -2.08,-1.94s-2.08,0.87 -2.08,1.94c0,1.71 0.66,3.31 1.87,4.51 0.95,0.94 1.86,1.46 3.27,1.85 0.27,0.07 0.42,0.35 0.35,0.61 -0.05,0.23 -0.26,0.38 -0.47,0.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fire_extinguisher.xml b/compose/material/material/icons/generator/raw-icons/filled/fire_extinguisher.xml
deleted file mode 100644
index 1ebb226..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fire_extinguisher.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10v1c0,1.1 -0.9,2 -2,2H9c-1.1,0 -2,-0.9 -2,-2V19zM7,18h10v-5H7V18zM17,3v6l-3.15,-0.66c-0.01,0 -0.01,0.01 -0.02,0.02c1.55,0.62 2.72,1.98 3.07,3.64H7.1c0.34,-1.66 1.52,-3.02 3.07,-3.64c-0.33,-0.26 -0.6,-0.58 -0.8,-0.95L5,6.5v-1l4.37,-0.91C9.87,3.65 10.86,3 12,3c0.7,0 1.34,0.25 1.85,0.66L17,3zM13,6c-0.03,-0.59 -0.45,-1 -1,-1s-1,0.45 -1,1s0.45,1 1,1S13,6.55 13,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fire_hydrant_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/fire_hydrant_alt.xml
deleted file mode 100644
index 7e81f57..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fire_hydrant_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-1V8h2V6h-2.35C16.83,3.67 14.61,2 12,2S7.17,3.67 6.35,6H4v2h2v3H5c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v3H4v2h16v-2h-2v-3h1c1.1,0 2,-0.9 2,-2v-2C21,11.9 20.1,11 19,11zM12,17.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,17.5 12,17.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fire_truck.xml b/compose/material/material/icons/generator/raw-icons/filled/fire_truck.xml
deleted file mode 100644
index f908f13..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fire_truck.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.9,10.69l-1.44,-4.32C21.18,5.55 20.42,5 19.56,5H19V4c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v1h-2c-1.1,0 -2,0.9 -2,2v4H1v5c0,1.1 0.9,2 2,2h1c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4c0,1.66 1.34,3 3,3s3,-1.34 3,-3h3v-6.68C23,11.11 22.97,10.9 22.9,10.69zM7,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,19 7,19zM17,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,19 17,19zM14,11V7h5.56l1.33,4H14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5zM5.25,8.5H3.5v-2h1.75V8.5zM8.5,8.5H6.75v-2H8.5V8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fireplace.xml b/compose/material/material/icons/generator/raw-icons/filled/fireplace.xml
deleted file mode 100644
index 815c62e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fireplace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v20h20V2H2zM11.86,16.96c0.76,-0.24 1.4,-1.04 1.53,-1.63c0.13,-0.56 -0.1,-1.05 -0.2,-1.6c-0.08,-0.46 -0.07,-0.85 0.08,-1.28c0.54,1.21 2.15,1.64 1.98,3.18C15.06,17.33 13.14,18.01 11.86,16.96zM20,20h-2v-2h-2.02c0.63,-0.84 1.02,-1.87 1.02,-3c0,-1.89 -1.09,-2.85 -1.85,-3.37C12.2,9.61 13,7 13,7c-6.73,3.57 -6.02,7.47 -6,8c0.03,0.96 0.49,2.07 1.23,3H6v2H4V4h16V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/first_page.xml b/compose/material/material/icons/generator/raw-icons/filled/first_page.xml
deleted file mode 100644
index 31f30ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/first_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,16.59L13.82,12l4.59,-4.59L17,6l-6,6 6,6zM6,6h2v12H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fit_screen.xml b/compose/material/material/icons/generator/raw-icons/filled/fit_screen.xml
deleted file mode 100644
index 54d4bfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fit_screen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h3c1.1,0 2,0.9 2,2v2h-2L20,6h-3L17,4zM4,8L4,6h3L7,4L4,4c-1.1,0 -2,0.9 -2,2v2h2zM20,16v2h-3v2h3c1.1,0 2,-0.9 2,-2v-2h-2zM7,18L4,18v-2L2,16v2c0,1.1 0.9,2 2,2h3v-2zM18,8L6,8v8h12L18,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fitbit.xml b/compose/material/material/icons/generator/raw-icons/filled/fitbit.xml
deleted file mode 100644
index da71490..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fitbit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.89,13.89c1.04,0 1.89,-0.85 1.89,-1.89s-0.85,-1.89 -1.89,-1.89C18.85,10.11 18,10.96 18,12S18.85,13.89 19.89,13.89zM15.65,13.68c0.93,0 1.68,-0.75 1.68,-1.68s-0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68S14.72,13.68 15.65,13.68zM15.65,9.42c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,8.67 14.72,9.42 15.65,9.42zM15.65,17.93c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,17.17 14.72,17.93 15.65,17.93zM11.41,13.47c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,13.47 11.41,13.47zM11.41,9.21c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,9.21 11.41,9.21zM11.41,17.73c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,17.07 10.59,17.73 11.41,17.73zM11.41,22c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,21.34 10.59,22 11.41,22zM11.41,4.94c0.81,0 1.47,-0.66 1.47,-1.47S12.22,2 11.41,2c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,4.94 11.41,4.94zM7.16,13.26c0.7,0 1.26,-0.57 1.26,-1.26s-0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26S6.46,13.26 7.16,13.26zM7.16,17.51c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,16.94 6.46,17.51 7.16,17.51zM7.16,9.02c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,8.45 6.46,9.02 7.16,9.02zM3.29,13.05c0.58,0 1.05,-0.47 1.05,-1.05s-0.47,-1.05 -1.05,-1.05c-0.58,0 -1.05,0.47 -1.05,1.05S2.71,13.05 3.29,13.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fitness_center.xml b/compose/material/material/icons/generator/raw-icons/filled/fitness_center.xml
deleted file mode 100644
index ad95c88..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fitness_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,14.86L22,13.43 20.57,12 17,15.57 8.43,7 12,3.43 10.57,2 9.14,3.43 7.71,2 5.57,4.14 4.14,2.71 2.71,4.14l1.43,1.43L2,7.71l1.43,1.43L2,10.57 3.43,12 7,8.43 15.57,17 12,20.57 13.43,22l1.43,-1.43L16.29,22l2.14,-2.14 1.43,1.43 1.43,-1.43 -1.43,-1.43L22,16.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flag.xml b/compose/material/material/icons/generator/raw-icons/filled/flag.xml
deleted file mode 100644
index 026653c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.4,6L14,4H5v17h2v-7h5.6l0.4,2h7V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flag_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/flag_circle.xml
deleted file mode 100644
index 311a89e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flag_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM18,15h-5l-1,-2H9.5v5H8V7h6l1,2h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flaky.xml b/compose/material/material/icons/generator/raw-icons/filled/flaky.xml
deleted file mode 100644
index bbaaa70..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flaky.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.05,17.58l-0.01,0.01l-2.4,-2.4l1.06,-1.06l1.35,1.35L16.54,13l1.06,1.06l-3.54,3.54L14.05,17.58zM12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM7.34,6.28l1.41,1.41l1.41,-1.41l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06,-1.06l1.41,-1.41L6.28,7.34L7.34,6.28zM12,20c-2.2,0 -4.2,-0.9 -5.7,-2.3L17.7,6.3C19.1,7.8 20,9.8 20,12C20,16.4 16.4,20 12,20z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flare.xml b/compose/material/material/icons/generator/raw-icons/filled/flare.xml
deleted file mode 100644
index 0698aaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11L1,11v2h6v-2zM9.17,7.76L7.05,5.64 5.64,7.05l2.12,2.12 1.41,-1.41zM13,1h-2v6h2L13,1zM18.36,7.05l-1.41,-1.41 -2.12,2.12 1.41,1.41 2.12,-2.12zM17,11v2h6v-2h-6zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM14.83,16.24l2.12,2.12 1.41,-1.41 -2.12,-2.12 -1.41,1.41zM5.64,16.95l1.41,1.41 2.12,-2.12 -1.41,-1.41 -2.12,2.12zM11,23h2v-6h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flash_auto.xml b/compose/material/material/icons/generator/raw-icons/filled/flash_auto.xml
deleted file mode 100644
index cf9dd59..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flash_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2v12h3v9l7,-12L9,11l4,-9L3,2zM19,2h-2l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L19,2zM16.85,7.65L18,4l1.15,3.65h-2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flash_off.xml b/compose/material/material/icons/generator/raw-icons/filled/flash_off.xml
deleted file mode 100644
index 61f2e83..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flash_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.27,3L2,4.27l5,5V13h3v9l3.58,-6.14L17.73,20 19,18.73 3.27,3zM17,10h-4l4,-8H7v2.18l8.46,8.46L17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flash_on.xml b/compose/material/material/icons/generator/raw-icons/filled/flash_on.xml
deleted file mode 100644
index 168d13a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flash_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,2v11h3v9l7,-12h-4l4,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flashlight_off.xml b/compose/material/material/icons/generator/raw-icons/filled/flashlight_off.xml
deleted file mode 100644
index cc36135..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flashlight_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5l0,-3l-12,0l0,1.17l1.83,1.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11l2,-3l0,-1l-8.17,0l6.17,6.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flashlight_on.xml b/compose/material/material/icons/generator/raw-icons/filled/flashlight_on.xml
deleted file mode 100644
index 90aa7da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flashlight_on.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2h12v3h-12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7v1l2,3v11h8V11l2,-3V7H6zM12,15.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flatware.xml b/compose/material/material/icons/generator/raw-icons/filled/flatware.xml
deleted file mode 100644
index ffb2965..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flatware.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.08c0,1.77 -0.84,3.25 -2,3.82V21h-2V10.9c-1.16,-0.57 -2,-2.05 -2,-3.82C10.01,4.83 11.35,3 13,3C14.66,3 16,4.83 16,7.08zM17,3v18h2v-8h2V7C21,5.24 19.76,3 17,3zM8.28,3c-0.4,0 -0.72,0.32 -0.72,0.72V7H6.72V3.72C6.72,3.32 6.4,3 6,3S5.28,3.32 5.28,3.72V7H4.44V3.72C4.44,3.32 4.12,3 3.72,3S3,3.32 3,3.72V9c0,1.1 0.9,2 2,2v10h2V11c1.1,0 2,-0.9 2,-2V3.72C9,3.32 8.68,3 8.28,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flight.xml b/compose/material/material/icons/generator/raw-icons/filled/flight.xml
deleted file mode 100644
index bd16985..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16v-2l-8,-5V3.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,2.67 10,3.5V9l-8,5v2l8,-2.5V19l-2,1.5V22l3.5,-1 3.5,1v-1.5L13,19v-5.5l8,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flight_class.xml b/compose/material/material/icons/generator/raw-icons/filled/flight_class.xml
deleted file mode 100644
index 37879ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flight_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2V6C18,4.9 17.1,4 16,4zM9.5,16H18v2H9.49c-0.88,0 -1.66,-0.58 -1.92,-1.43L5,8V4h2v4L9.5,16zM8,19h10v2H8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flight_land.xml b/compose/material/material/icons/generator/raw-icons/filled/flight_land.xml
deleted file mode 100644
index 7fcdafe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flight_land.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19V19zM19.34,15.85c0.8,0.21 1.62,-0.26 1.84,-1.06c0.21,-0.8 -0.26,-1.62 -1.06,-1.84l-5.31,-1.42l-2.76,-9.02L10.12,2v8.28L5.15,8.95L4.22,6.63L2.77,6.24v5.17L19.34,15.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flight_takeoff.xml b/compose/material/material/icons/generator/raw-icons/filled/flight_takeoff.xml
deleted file mode 100644
index c591541..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flight_takeoff.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19V19zM22.07,9.64c-0.21,-0.8 -1.04,-1.28 -1.84,-1.06L14.92,10l-6.9,-6.43L6.09,4.08l4.14,7.17l-4.97,1.33l-1.97,-1.54l-1.45,0.39l2.59,4.49c0,0 7.12,-1.9 16.57,-4.43C21.81,11.26 22.28,10.44 22.07,9.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flip.xml b/compose/material/material/icons/generator/raw-icons/filled/flip.xml
deleted file mode 100644
index 2fa3030..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM3,5v14c0,1.1 0.9,2 2,2h4v-2L5,19L5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM11,23h2L13,1h-2v22zM19,17h2v-2h-2v2zM15,5h2L17,3h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flip_camera_android.xml b/compose/material/material/icons/generator/raw-icons/filled/flip_camera_android.xml
deleted file mode 100644
index 951aa1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flip_camera_android.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S9,10.34 9,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10V8H5.09C6.47,5.61 9.05,4 12,4c3.72,0 6.85,2.56 7.74,6h2.06c-0.93,-4.56 -4.96,-8 -9.8,-8C8.73,2 5.82,3.58 4,6.01V4H2v6H8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14v2h2.91c-1.38,2.39 -3.96,4 -6.91,4c-3.72,0 -6.85,-2.56 -7.74,-6H2.2c0.93,4.56 4.96,8 9.8,8c3.27,0 6.18,-1.58 8,-4.01V20h2v-6H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flip_camera_ios.xml b/compose/material/material/icons/generator/raw-icons/filled/flip_camera_ios.xml
deleted file mode 100644
index acdfc23..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flip_camera_ios.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM12,18c-2.76,0 -5,-2.24 -5,-5H5l2.5,-2.5L10,13H8c0,2.21 1.79,4 4,4c0.58,0 1.13,-0.13 1.62,-0.35l0.74,0.74C13.65,17.76 12.86,18 12,18zM16.5,15.5L14,13h2c0,-2.21 -1.79,-4 -4,-4c-0.58,0 -1.13,0.13 -1.62,0.35L9.64,8.62C10.35,8.24 11.14,8 12,8c2.76,0 5,2.24 5,5h2L16.5,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flip_to_back.xml b/compose/material/material/icons/generator/raw-icons/filled/flip_to_back.xml
deleted file mode 100644
index 47d535a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flip_to_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7L7,7v2h2L9,7zM9,11L7,11v2h2v-2zM9,3c-1.11,0 -2,0.9 -2,2h2L9,3zM13,15h-2v2h2v-2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM13,3h-2v2h2L13,3zM9,17v-2L7,15c0,1.1 0.89,2 2,2zM19,13h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,17c1.1,0 2,-0.9 2,-2h-2v2zM5,7L3,7v12c0,1.1 0.89,2 2,2h12v-2L5,19L5,7zM15,5h2L17,3h-2v2zM15,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flip_to_front.xml b/compose/material/material/icons/generator/raw-icons/filled/flip_to_front.xml
deleted file mode 100644
index 0cef2c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flip_to_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM5,21v-2L3,19c0,1.1 0.89,2 2,2zM3,9h2L5,7L3,7v2zM15,21h2v-2h-2v2zM19,3L9,3c-1.11,0 -2,0.9 -2,2v10c0,1.1 0.89,2 2,2h10c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,15L9,15L9,5h10v10zM11,21h2v-2h-2v2zM7,21h2v-2L7,19v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flood.xml b/compose/material/material/icons/generator/raw-icons/filled/flood.xml
deleted file mode 100644
index 33ae3a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flood.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,19c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.22,0 1.4,1 3.33,1c1.93,0 2.1,-1 3.33,-1c1.22,0 1.4,1 3.33,1v-2C20.76,20 20.62,19 18.67,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.68,17.5c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-0.63,0 -1,-0.28 -1.48,-0.55l-2.02,-7.53l2.09,0.85l0.74,-1.86L9.78,2L2,11.61l1.57,1.23l1.39,-1.78l0.93,3.48c-0.18,-0.02 -0.35,-0.05 -0.56,-0.05c-1.95,0 -2.09,1 -3.33,1v2c1.9,0 2.17,-1 3.35,-1C6.54,16.5 6.77,17.5 8.68,17.5zM14.04,10.18l1.42,5.31c-1.34,0.09 -1.47,-0.99 -3.47,-0.99c-0.36,0 -0.65,0.04 -0.91,0.1l-0.91,-3.39L14.04,10.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flourescent.xml b/compose/material/material/icons/generator/raw-icons/filled/flourescent.xml
deleted file mode 100644
index 5a3a920..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flourescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9h14v6h-14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2864,6.3989l1.7897,-1.8024l1.4192,1.4092l-1.7897,1.8024z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4947,6.0091l1.4071,-1.4071l1.789,1.789l-1.4071,1.4071z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4922,18.0762l1.8024,-1.7897l1.4092,1.4192l-1.8024,1.7897z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fluorescent.xml b/compose/material/material/icons/generator/raw-icons/filled/fluorescent.xml
deleted file mode 100644
index 2056c86..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fluorescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9h14v6h-14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.286,6.399l1.79,-1.802l1.419,1.409l-1.79,1.802z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.495,6.009l1.407,-1.407l1.789,1.789l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.492,18.076l1.802,-1.79l1.409,1.419l-1.802,1.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/flutter_dash.xml b/compose/material/material/icons/generator/raw-icons/filled/flutter_dash.xml
deleted file mode 100644
index bfd69ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/flutter_dash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,11.7c0.29,-0.39 0.81,-0.56 1.27,-0.37c0.17,0.07 0.32,0.18 0.43,0.33c0.22,0.28 0.25,0.59 0.22,0.85c-0.05,0.33 -0.25,0.63 -0.54,0.79c0,0 -4.87,2.95 -5.07,2.69S11.07,11.7 11.07,11.7zM22,10c0,2.5 -1,3 -1.5,3c-0.23,0 -0.44,-0.1 -0.62,-0.26c-0.48,3.32 -2.36,5.31 -5.33,5.99c0.11,0.44 0.48,0.77 0.95,0.77l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C15.18,22.07 15,21.71 15,21.26c0,-0.3 0.04,-0.57 0.09,-0.8c-0.78,-0.16 -1.39,-0.78 -1.55,-1.56c-0.49,0.06 -1,0.1 -1.54,0.1c-0.88,0 -1.7,-0.09 -2.45,-0.25C9.53,18.83 9.5,18.91 9.5,19c0,0.55 0.45,1 1,1l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C10.18,22.57 10,22.21 10,21.76c0,-0.3 0.04,-0.57 0.09,-0.8C9.19,20.77 8.5,19.96 8.5,19c0,-0.18 0.03,-0.36 0.08,-0.53c-2.46,-0.86 -4.03,-2.78 -4.46,-5.74C3.94,12.9 3.74,13 3.5,13C3,13 2,12.5 2,10c0,-2.27 1.7,-4.5 3,-4.5c0.43,0 0.49,0.49 0.5,0.85c1.28,-1.78 3.26,-3.02 5.55,-3.29C11.25,2.1 12.13,1.5 13,1.5v1c0,0 0.33,-0.5 1,-0.5c0.67,0 1,0.5 1,0.5c-0.49,0 -0.85,0.35 -0.96,0.77c1.82,0.48 3.39,1.59 4.46,3.08C18.51,5.99 18.57,5.5 19,5.5C20.3,5.5 22,7.73 22,10zM5,11c0,0.81 0.1,1.53 0.25,2.21c0.18,-0.69 0.46,-1.33 0.83,-1.92c-0.21,-0.47 -0.34,-0.99 -0.34,-1.54C5.75,7.68 7.43,6 9.5,6c0.96,0 1.84,0.37 2.5,0.97C12.66,6.37 13.54,6 14.5,6c2.07,0 3.75,1.68 3.75,3.75c0,0.55 -0.12,1.07 -0.34,1.54c0.37,0.59 0.66,1.24 0.84,1.94C18.9,12.55 19,11.82 19,11c0,-3.86 -3.14,-7 -7,-7C8.14,4 5,7.14 5,11zM17.98,15.29c0,-0.1 0.02,-0.19 0.02,-0.29c0,-1.01 -0.26,-1.95 -0.7,-2.78c-0.69,0.78 -1.68,1.28 -2.8,1.28c-0.27,0 -0.54,-0.03 -0.79,-0.09c0.14,-0.23 0.23,-0.49 0.27,-0.77c0.01,-0.07 0.01,-0.13 0.02,-0.19c0.17,0.03 0.33,0.05 0.5,0.05c1.52,0 2.75,-1.23 2.75,-2.75S16.02,7 14.5,7c-0.67,0 -1.32,0.25 -1.83,0.72L12,8.32l-0.67,-0.6C10.82,7.25 10.17,7 9.5,7C7.98,7 6.75,8.23 6.75,9.75c0,1.34 0.96,2.46 2.23,2.7l-0.76,0.83c-0.6,-0.22 -1.12,-0.59 -1.53,-1.05C6.26,13.06 6,14 6,15c0,0.08 0.01,0.15 0.01,0.24C7.13,17.06 9.14,18 12,18C14.88,18 16.88,17.09 17.98,15.29zM16,9.75c0,0.97 -0.67,1.75 -1.5,1.75S13,10.72 13,9.75S13.67,8 14.5,8S16,8.78 16,9.75zM15.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S14.5,8.67 14.5,8.88s0.17,0.38 0.38,0.38S15.25,9.08 15.25,8.88zM11,9.75c0,0.97 -0.67,1.75 -1.5,1.75S8,10.72 8,9.75S8.67,8 9.5,8S11,8.78 11,9.75zM10.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S9.5,8.67 9.5,8.88s0.17,0.38 0.38,0.38S10.25,9.08 10.25,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fmd_bad.xml b/compose/material/material/icons/generator/raw-icons/filled/fmd_bad.xml
deleted file mode 100644
index bb6dfcd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fmd_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2zM13,15h-2v-2h2V15zM13,11h-2V6h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fmd_good.xml b/compose/material/material/icons/generator/raw-icons/filled/fmd_good.xml
deleted file mode 100644
index 2ebdd64..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fmd_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2zM12,12c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C14,11.1 13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder.xml b/compose/material/material/icons/generator/raw-icons/filled/folder.xml
deleted file mode 100644
index dc6b080..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2h-8l-2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder_copy.xml b/compose/material/material/icons/generator/raw-icons/filled/folder_copy.xml
deleted file mode 100644
index c86acbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder_copy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6H1v13c0,1.1 0.9,2 2,2h17v-2H3V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4h-7l-2,-2H7C5.9,2 5.01,2.9 5.01,4L5,15c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder_delete.xml b/compose/material/material/icons/generator/raw-icons/filled/folder_delete.xml
deleted file mode 100644
index d2a914a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder_delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8v10c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2L2.01,6C2.01,4.9 2.9,4 4,4h6l2,2h8C21.1,6 22,6.9 22,8zM16.5,10V9h-2v1H12v1.5h1v4c0,0.83 0.67,1.5 1.5,1.5h2c0.83,0 1.5,-0.67 1.5,-1.5v-4h1V10H16.5zM16.5,15.5h-2v-4h2V15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder_off.xml b/compose/material/material/icons/generator/raw-icons/filled/folder_off.xml
deleted file mode 100644
index 2bd0193..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H6.83l14.93,14.93C21.91,18.65 22,18.34 22,18V8C22,6.9 21.1,6 20,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l1.56,1.56C2.1,5.35 2.01,5.66 2.01,6L2,18c0,1.1 0.9,2 2,2h13.17l3.31,3.31l1.41,-1.41L2.1,2.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder_open.xml b/compose/material/material/icons/generator/raw-icons/filled/folder_open.xml
deleted file mode 100644
index f58b501..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder_shared.xml b/compose/material/material/icons/generator/raw-icons/filled/folder_shared.xml
deleted file mode 100644
index b52b1aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder_shared.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM15,9c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM19,17h-8v-1c0,-1.33 2.67,-2 4,-2s4,0.67 4,2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder_special.xml b/compose/material/material/icons/generator/raw-icons/filled/folder_special.xml
deleted file mode 100644
index 44e3ab8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder_special.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM17.94,17L15,15.28 12.06,17l0.78,-3.33 -2.59,-2.24 3.41,-0.29L15,8l1.34,3.14 3.41,0.29 -2.59,2.24 0.78,3.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/folder_zip.xml b/compose/material/material/icons/generator/raw-icons/filled/folder_zip.xml
deleted file mode 100644
index 2c2d689..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/folder_zip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM18,12h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/follow_the_signs.xml b/compose/material/material/icons/generator/raw-icons/filled/follow_the_signs.xml
deleted file mode 100644
index 78da1c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/follow_the_signs.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S8.4,5.5 9.5,5.5zM5.75,8.9L3,23h2.1l1.75,-8L9,17v6h2v-7.55L8.95,13.4l0.6,-3C10.85,12 12.8,13 15,13v-2c-1.85,0 -3.45,-1 -4.35,-2.45L9.7,6.95C9.35,6.35 8.7,6 8,6C7.75,6 7.5,6.05 7.25,6.15L2,8.3V13h2V9.65L5.75,8.9M13,2v7h3.75v14h1.5V9H22V2H13zM18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/font_download.xml b/compose/material/material/icons/generator/raw-icons/filled/font_download.xml
deleted file mode 100644
index 8fc6a87..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/font_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.93,13.5h4.14L12,7.98zM20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM15.95,18.5l-1.14,-3L9.17,15.5l-1.12,3L5.96,18.5l5.11,-13h1.86l5.11,13h-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/font_download_off.xml b/compose/material/material/icons/generator/raw-icons/filled/font_download_off.xml
deleted file mode 100644
index 0f79816..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/font_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.58,9.75l-0.87,-0.87l0.23,-0.66h0.1L12.58,9.75zM10.35,7.52L10.92,6h2.14l2.55,6.79L22,19.17V4c0,-1.1 -0.9,-2 -2,-2H4.83L10.35,7.52zM20.49,23.31L19.17,22H4c-1.1,0 -2,-0.9 -2,-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM12.1,14.93l-3.3,-3.3L6.41,18h2.08l1.09,-3.07H12.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/food_bank.xml b/compose/material/material/icons/generator/raw-icons/filled/food_bank.xml
deleted file mode 100644
index ee660b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/food_bank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM12.5,12.5c0,0.83 -0.67,1.5 -1.5,1.5v4h-1v-4c-0.83,0 -1.5,-0.67 -1.5,-1.5v-3h1v3H10v-3h1v3h0.5v-3h1V12.5zM15,18h-1v-3.5h-1v-3c0,-1.1 0.9,-2 2,-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/forest.xml b/compose/material/material/icons/generator/raw-icons/filled/forest.xml
deleted file mode 100644
index 4932462..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/forest.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12l-7,-10l-7,10l1.86,0l-3.86,6l7,0l0,4l4,0l0,-4l7,0l-3.86,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.14,12l1.86,0l-7,-10l-2.39,3.41l5.31,7.59l-1.92,0l-0.03,0l3.22,5l4.81,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,19h4v3h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fork_left.xml b/compose/material/material/icons/generator/raw-icons/filled/fork_left.xml
deleted file mode 100644
index 30a26f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fork_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,15.59L8,17l-4,-4l4,-4l1.41,1.41L7.83,12c1.51,-0.33 3.73,0.08 5.17,1.36l0,-6.53l-1.59,1.59L10,7l4,-4l4,4l-1.41,1.41L15,6.83V21l-2,0v-4c-0.73,-2.58 -3.07,-3.47 -5.17,-3L9.41,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fork_right.xml b/compose/material/material/icons/generator/raw-icons/filled/fork_right.xml
deleted file mode 100644
index a3a186d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fork_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,15.59L16,17l4,-4l-4,-4l-1.41,1.41L16.17,12c-1.51,-0.33 -3.73,0.08 -5.17,1.36l0,-6.53l1.59,1.59L14,7l-4,-4L6,7l1.41,1.41L9,6.83V21l2,0v-4c0.73,-2.58 3.07,-3.47 5.17,-3L14.59,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_align_center.xml b/compose/material/material/icons/generator/raw-icons/filled/format_align_center.xml
deleted file mode 100644
index 363e9a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15v2h10v-2L7,15zM3,21h18v-2L3,19v2zM3,13h18v-2L3,11v2zM7,7v2h10L17,7L7,7zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_align_justify.xml b/compose/material/material/icons/generator/raw-icons/filled/format_align_justify.xml
deleted file mode 100644
index e587932..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_align_justify.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM3,17h18v-2L3,15v2zM3,13h18v-2L3,11v2zM3,9h18L21,7L3,7v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_align_left.xml b/compose/material/material/icons/generator/raw-icons/filled/format_align_left.xml
deleted file mode 100644
index 4ff0c3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_align_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15L3,15v2h12v-2zM15,7L3,7v2h12L15,7zM3,13h18v-2L3,11v2zM3,21h18v-2L3,19v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_align_right.xml b/compose/material/material/icons/generator/raw-icons/filled/format_align_right.xml
deleted file mode 100644
index 5828e5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_align_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM9,17h12v-2L9,15v2zM3,13h18v-2L3,11v2zM9,9h12L21,7L9,7v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_bold.xml b/compose/material/material/icons/generator/raw-icons/filled/format_bold.xml
deleted file mode 100644
index 25e5865..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_bold.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.6,10.79c0.97,-0.67 1.65,-1.77 1.65,-2.79 0,-2.26 -1.75,-4 -4,-4L7,4v14h7.04c2.09,0 3.71,-1.7 3.71,-3.79 0,-1.52 -0.86,-2.82 -2.15,-3.42zM10,6.5h3c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5h-3v-3zM13.5,15.5L10,15.5v-3h3.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_clear.xml b/compose/material/material/icons/generator/raw-icons/filled/format_clear.xml
deleted file mode 100644
index 5dfaf55..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.27,5L2,6.27l6.97,6.97L6.5,19h3l1.57,-3.66L16.73,21 18,19.73 3.55,5.27 3.27,5zM6,5v0.18L8.82,8h2.4l-0.72,1.68 2.1,2.1L14.21,8H20V5H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_color_fill.xml b/compose/material/material/icons/generator/raw-icons/filled/format_color_fill.xml
deleted file mode 100644
index f532866..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_color_fill.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59 -0.59,1.54 0,2.12l5.5,5.5C9.23,16.85 9.62,17 10,17s0.77,-0.15 1.06,-0.44l5.5,-5.5C17.15,10.48 17.15,9.53 16.56,8.94zM5.21,10L10,5.21L14.79,10H5.21zM19,11.5c0,0 -2,2.17 -2,3.5c0,1.1 0.9,2 2,2s2,-0.9 2,-2C21,13.67 19,11.5 19,11.5zM2,20h20v4H2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_color_reset.xml b/compose/material/material/icons/generator/raw-icons/filled/format_color_reset.xml
deleted file mode 100644
index 3c68b55..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_color_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14c0,-4 -6,-10.8 -6,-10.8s-1.33,1.51 -2.73,3.52l8.59,8.59c0.09,-0.42 0.14,-0.86 0.14,-1.31zM17.12,17.12L12.5,12.5 5.27,5.27 4,6.55l3.32,3.32C6.55,11.32 6,12.79 6,14c0,3.31 2.69,6 6,6 1.52,0 2.9,-0.57 3.96,-1.5l2.63,2.63 1.27,-1.27 -2.74,-2.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_color_text.xml b/compose/material/material/icons/generator/raw-icons/filled/format_color_text.xml
deleted file mode 100644
index 6cdb775..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_color_text.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v4H2V20zM5.49,17h2.42l1.27,-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17zM9.91,11.39l2.03,-5.79h0.12l2.03,5.79H9.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_indent_decrease.xml b/compose/material/material/icons/generator/raw-icons/filled/format_indent_decrease.xml
deleted file mode 100644
index acd2481..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_indent_decrease.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h10v-2L11,15v2zM3,12l4,4L7,8l-4,4zM3,21h18v-2L3,19v2zM3,3v2h18L21,3L3,3zM11,9h10L21,7L11,7v2zM11,13h10v-2L11,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_indent_increase.xml b/compose/material/material/icons/generator/raw-icons/filled/format_indent_increase.xml
deleted file mode 100644
index 0ce524e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_indent_increase.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM3,8v8l4,-4 -4,-4zM11,17h10v-2L11,15v2zM3,3v2h18L21,3L3,3zM11,9h10L21,7L11,7v2zM11,13h10v-2L11,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_italic.xml b/compose/material/material/icons/generator/raw-icons/filled/format_italic.xml
deleted file mode 100644
index c854767..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_italic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4v3h2.21l-3.42,8H6v3h8v-3h-2.21l3.42,-8H18V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_line_spacing.xml b/compose/material/material/icons/generator/raw-icons/filled/format_line_spacing.xml
deleted file mode 100644
index 24e211d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_line_spacing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7h2.5L5,3.5 1.5,7L4,7v10L1.5,17L5,20.5 8.5,17L6,17L6,7zM10,5v2h12L22,5L10,5zM10,19h12v-2L10,17v2zM10,13h12v-2L10,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_list_bulleted.xml b/compose/material/material/icons/generator/raw-icons/filled/format_list_bulleted.xml
deleted file mode 100644
index 1f7cbc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_list_bulleted.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM4,4.5c-0.83,0 -1.5,0.67 -1.5,1.5S3.17,7.5 4,7.5 5.5,6.83 5.5,6 4.83,4.5 4,4.5zM4,16.5c-0.83,0 -1.5,0.68 -1.5,1.5s0.68,1.5 1.5,1.5 1.5,-0.68 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM7,19h14v-2L7,17v2zM7,13h14v-2L7,11v2zM7,5v2h14L21,5L7,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_list_numbered.xml b/compose/material/material/icons/generator/raw-icons/filled/format_list_numbered.xml
deleted file mode 100644
index c089156..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_list_numbered.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h2v0.5L3,17.5v1h1v0.5L2,19v1h3v-4L2,16v1zM3,8h1L4,4L2,4v1h1v3zM2,11h1.8L2,13.1v0.9h3v-1L3.2,13L5,10.9L5,10L2,10v1zM7,5v2h14L21,5L7,5zM7,19h14v-2L7,17v2zM7,13h14v-2L7,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_list_numbered_rtl.xml b/compose/material/material/icons/generator/raw-icons/filled/format_list_numbered_rtl.xml
deleted file mode 100644
index 94f1439..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_list_numbered_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17h2v0.5h-1v1h1v0.5h-2v1h3v-4h-3zM19,8h1L20,4h-2v1h1zM18,11h1.8L18,13.1v0.9h3v-1h-1.8l1.8,-2.1L21,10h-3zM2,5h14v2L2,7zM2,17h14v2L2,19zM2,11h14v2L2,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_overline.xml b/compose/material/material/icons/generator/raw-icons/filled/format_overline.xml
deleted file mode 100644
index 601edd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_overline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3v2H5V3H19zM12,7c-3.87,0 -7,3.13 -7,7c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,10.13 15.87,7 12,7zM12,18.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,9.5 12,9.5s4.5,2.01 4.5,4.5S14.49,18.5 12,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_paint.xml b/compose/material/material/icons/generator/raw-icons/filled/format_paint.xml
deleted file mode 100644
index ca8f410..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_paint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4V3c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1V6h1v4H9v11c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-9h8V4h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_quote.xml b/compose/material/material/icons/generator/raw-icons/filled/format_quote.xml
deleted file mode 100644
index 7052692..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17h3l2,-4L11,7L5,7v6h3zM14,17h3l2,-4L19,7h-6v6h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_shapes.xml b/compose/material/material/icons/generator/raw-icons/filled/format_shapes.xml
deleted file mode 100644
index 9c5332d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_shapes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,7L23,1h-6v2L7,3L7,1L1,1v6h2v10L1,17v6h6v-2h10v2h6v-6h-2L21,7h2zM3,3h2v2L3,5L3,3zM5,21L3,21v-2h2v2zM17,19L7,19v-2L5,17L5,7h2L7,5h10v2h2v10h-2v2zM21,21h-2v-2h2v2zM19,5L19,3h2v2h-2zM13.73,14h-3.49l-0.73,2L7.89,16l3.4,-9h1.4l3.41,9h-1.63l-0.74,-2zM10.69,12.74h2.61L12,8.91l-1.31,3.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_size.xml b/compose/material/material/icons/generator/raw-icons/filled/format_size.xml
deleted file mode 100644
index 4cfa4c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_size.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v3h5v12h3L17,7h5L22,4L9,4zM3,12h3v7h3v-7h3L12,9L3,9v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_strikethrough.xml b/compose/material/material/icons/generator/raw-icons/filled/format_strikethrough.xml
deleted file mode 100644
index df6860c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_strikethrough.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19h4v-3h-4v3zM5,4v3h5v3h4V7h5V4H5zM3,14h18v-2H3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_textdirection_l_to_r.xml b/compose/material/material/icons/generator/raw-icons/filled/format_textdirection_l_to_r.xml
deleted file mode 100644
index c3ffb03..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_textdirection_l_to_r.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10v5h2L11,4h2v11h2L15,4h2L17,2L9,2C6.79,2 5,3.79 5,6s1.79,4 4,4zM21,18l-4,-4v3L5,17v2h12v3l4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_textdirection_r_to_l.xml b/compose/material/material/icons/generator/raw-icons/filled/format_textdirection_r_to_l.xml
deleted file mode 100644
index 8b49223..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_textdirection_r_to_l.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10v5h2L12,4h2v11h2L16,4h2L18,2h-8C7.79,2 6,3.79 6,6s1.79,4 4,4zM8,17v-3l-4,4 4,4v-3h12v-2L8,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/format_underlined.xml b/compose/material/material/icons/generator/raw-icons/filled/format_underlined.xml
deleted file mode 100644
index e97ab8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/format_underlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c3.31,0 6,-2.69 6,-6L18,3h-2.5v8c0,1.93 -1.57,3.5 -3.5,3.5S8.5,12.93 8.5,11L8.5,3L6,3v8c0,3.31 2.69,6 6,6zM5,19v2h14v-2L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fort.xml b/compose/material/material/icons/generator/raw-icons/filled/fort.xml
deleted file mode 100644
index 4a98c84..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fort.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3v2h-2V3h-2v2h-2V3h-2v4l2,2v1H9V9l2,-2V3H9v2H7V3H5v2H3V3H1v4l2,2v6l-2,2v4h9v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h9v-4l-2,-2V9l2,-2V3H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/forum.xml b/compose/material/material/icons/generator/raw-icons/filled/forum.xml
deleted file mode 100644
index 4bc2544..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/forum.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-2v9L6,15v2c0,0.55 0.45,1 1,1h11l4,4L22,7c0,-0.55 -0.45,-1 -1,-1zM17,12L17,3c0,-0.55 -0.45,-1 -1,-1L3,2c-0.55,0 -1,0.45 -1,1v14l4,-4h10c0.55,0 1,-0.45 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/forward.xml b/compose/material/material/icons/generator/raw-icons/filled/forward.xml
deleted file mode 100644
index fa336c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8V4l8,8 -8,8v-4H4V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/forward_10.xml b/compose/material/material/icons/generator/raw-icons/filled/forward_10.xml
deleted file mode 100644
index 7c2885f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/forward_10.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6s2.69,-6 6,-6v4l5,-5l-5,-5v4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.86,15.94l0,-4.27l-0.09,0l-1.77,0.63l0,0.69l1.01,-0.31l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.25,13.44v0.74c0,1.9 1.31,1.82 1.44,1.82c0.14,0 1.44,0.09 1.44,-1.82v-0.74c0,-1.9 -1.31,-1.82 -1.44,-1.82C13.55,11.62 12.25,11.53 12.25,13.44zM14.29,13.32v0.97c0,0.77 -0.21,1.03 -0.59,1.03c-0.38,0 -0.6,-0.26 -0.6,-1.03v-0.97c0,-0.75 0.22,-1.01 0.59,-1.01C14.07,12.3 14.29,12.57 14.29,13.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/forward_30.xml b/compose/material/material/icons/generator/raw-icons/filled/forward_30.xml
deleted file mode 100644
index 80841bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/forward_30.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6s2.69,-6 6,-6v4l5,-5l-5,-5v4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.06,15.38c-0.29,0 -0.62,-0.17 -0.62,-0.54H8.59c0,0.97 0.9,1.23 1.45,1.23c0.87,0 1.51,-0.46 1.51,-1.25c0,-0.66 -0.45,-0.9 -0.71,-1c0.11,-0.05 0.65,-0.32 0.65,-0.92c0,-0.21 -0.05,-1.22 -1.44,-1.22c-0.62,0 -1.4,0.35 -1.4,1.16h0.85c0,-0.34 0.31,-0.48 0.57,-0.48c0.59,0 0.58,0.5 0.58,0.54c0,0.52 -0.41,0.59 -0.63,0.59H9.56v0.66h0.45c0.65,0 0.7,0.42 0.7,0.64C10.71,15.11 10.5,15.38 10.06,15.38z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.85,11.68c-0.14,0 -1.44,-0.08 -1.44,1.82v0.74c0,1.9 1.31,1.82 1.44,1.82c0.14,0 1.44,0.09 1.44,-1.82V13.5C15.3,11.59 13.99,11.68 13.85,11.68zM14.45,14.35c0,0.77 -0.21,1.03 -0.59,1.03c-0.38,0 -0.6,-0.26 -0.6,-1.03v-0.97c0,-0.75 0.22,-1.01 0.59,-1.01c0.38,0 0.6,0.26 0.6,1.01V14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/forward_5.xml b/compose/material/material/icons/generator/raw-icons/filled/forward_5.xml
deleted file mode 100644
index 4553d89..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/forward_5.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6s2.69,-6 6,-6v4l5,-5l-5,-5v4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8c4.42,0 8,-3.58 8,-8H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,15.38c-0.44,0 -0.58,-0.31 -0.6,-0.56h-0.84c0.03,0.85 0.79,1.25 1.44,1.25c0.93,0 1.44,-0.63 1.44,-1.43c0,-1.33 -0.97,-1.44 -1.3,-1.44c-0.2,0 -0.43,0.05 -0.64,0.16l0.11,-0.92h1.7v-0.71h-2.39l-0.25,2.17l0.67,0.17c0.13,-0.13 0.28,-0.23 0.57,-0.23c0.4,0 0.69,0.23 0.69,0.75C12.62,14.64 12.65,15.38 12.03,15.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/forward_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/filled/forward_to_inbox.xml
deleted file mode 100644
index eb4ed47..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/forward_to_inbox.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h9v-2H4V8l8,5l8,-5v5h2V6C22,4.9 21.1,4 20,4zM12,11L4,6h16L12,11zM19,15l4,4l-4,4v-3h-4v-2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/foundation.xml b/compose/material/material/icons/generator/raw-icons/filled/foundation.xml
deleted file mode 100644
index 5c2d36f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/foundation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12zM7,15v-4.81l4,-3.6V15H7zM13,15V6.59l4,3.6V15H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/free_breakfast.xml b/compose/material/material/icons/generator/raw-icons/filled/free_breakfast.xml
deleted file mode 100644
index 99181cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/free_breakfast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.9 2,-2L22,5c0,-1.11 -0.89,-2 -2,-2zM20,8h-2L18,5h2v3zM4,19h16v2L4,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/free_cancellation.xml b/compose/material/material/icons/generator/raw-icons/filled/free_cancellation.xml
deleted file mode 100644
index 81d1879..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/free_cancellation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.21,20H5V10h14v4.38l2,-2V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h8.21L11.21,20zM16.54,22.5L13,18.96l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,22.5zM10.41,14L12,15.59L10.59,17L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/front_hand.xml b/compose/material/material/icons/generator/raw-icons/filled/front_hand.xml
deleted file mode 100644
index a67ffbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/front_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.75,8c-0.69,0 -1.25,0.56 -1.25,1.25V15H18c-1.65,0 -3,1.35 -3,3h-1c0,-2.04 1.53,-3.72 3.5,-3.97l0,-10.78C17.5,2.56 16.94,2 16.25,2C15.56,2 15,2.56 15,3.25V11h-1V1.25C14,0.56 13.44,0 12.75,0S11.5,0.56 11.5,1.25V11h-1V2.75c0,-0.69 -0.56,-1.25 -1.25,-1.25S8,2.06 8,2.75V12H7V5.75C7,5.06 6.44,4.5 5.75,4.5S4.5,5.06 4.5,5.75v10c0,4.56 3.69,8.25 8.25,8.25S21,20.31 21,15.75v-6.5C21,8.56 20.44,8 19.75,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fullscreen.xml b/compose/material/material/icons/generator/raw-icons/filled/fullscreen.xml
deleted file mode 100644
index 804cebc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14L5,14v5h5v-2L7,17v-3zM5,10h2L7,7h3L10,5L5,5v5zM17,17h-3v2h5v-5h-2v3zM14,5v2h3v3h2L19,5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/fullscreen_exit.xml b/compose/material/material/icons/generator/raw-icons/filled/fullscreen_exit.xml
deleted file mode 100644
index 1efbe0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/fullscreen_exit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h3v3h2v-5L5,14v2zM8,8L5,8v2h5L10,5L8,5v3zM14,19h2v-3h3v-2h-5v5zM16,8L16,5h-2v5h5L19,8h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/functions.xml b/compose/material/material/icons/generator/raw-icons/filled/functions.xml
deleted file mode 100644
index 8bd4c15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/functions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4H6v2l6.5,6L6,18v2h12v-3h-7l5,-5 -5,-5h7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/g_mobiledata.xml
deleted file mode 100644
index f8dfa69..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11v2h2v2H9V9h7c0,-1.1 -0.9,-2 -2,-2H9C7.9,7 7,7.9 7,9v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/g_translate.xml b/compose/material/material/icons/generator/raw-icons/filled/g_translate.xml
deleted file mode 100644
index 3e25e53..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/g_translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L11,4l-1,-3L3,1c-1.1,0 -2,0.9 -2,2v15c0,1.1 0.9,2 2,2h8l1,3h9c1.1,0 2,-0.9 2,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM7,16c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c1.35,0 2.48,0.5 3.35,1.3L9.03,8.57c-0.38,-0.36 -1.04,-0.78 -2.03,-0.78 -1.74,0 -3.15,1.44 -3.15,3.21S5.26,14.21 7,14.21c2.01,0 2.84,-1.44 2.92,-2.41L7,11.8v-1.71h4.68c0.07,0.31 0.12,0.61 0.12,1.02C11.8,13.97 9.89,16 7,16zM13.17,10.58h3.7c-0.43,1.25 -1.11,2.43 -2.05,3.47 -0.31,-0.35 -0.6,-0.72 -0.86,-1.1l-0.79,-2.37zM21.5,20.5c0,0.55 -0.45,1 -1,1L14,21.5l2,-2.5 -1.04,-3.1 3.1,3.1 0.92,-0.92 -3.3,-3.25 0.02,-0.02c1.13,-1.25 1.93,-2.69 2.4,-4.22L20,10.59v-1.3h-4.53L15.47,8h-1.29v1.29h-1.44L11.46,5.5h9.04c0.55,0 1,0.45 1,1v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gamepad.xml b/compose/material/material/icons/generator/raw-icons/filled/gamepad.xml
deleted file mode 100644
index fcf518c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gamepad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7.5V2H9v5.5l3,3 3,-3zM7.5,9H2v6h5.5l3,-3 -3,-3zM9,16.5V22h6v-5.5l-3,-3 -3,3zM16.5,9l-3,3 3,3H22V9h-5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/games.xml b/compose/material/material/icons/generator/raw-icons/filled/games.xml
deleted file mode 100644
index fcf518c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/games.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7.5V2H9v5.5l3,3 3,-3zM7.5,9H2v6h5.5l3,-3 -3,-3zM9,16.5V22h6v-5.5l-3,-3 -3,3zM16.5,9l-3,3 3,3H22V9h-5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/garage.xml b/compose/material/material/icons/generator/raw-icons/filled/garage.xml
deleted file mode 100644
index 740c199..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/garage.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.33,7.5l-0.66,2l8.66,0l-0.66,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM19,17.69c0,0.45 -0.35,0.81 -0.78,0.81h-0.44c-0.44,0 -0.78,-0.36 -0.78,-0.81V16.5H7v1.19c0,0.45 -0.35,0.81 -0.78,0.81H5.78C5.35,18.5 5,18.14 5,17.69v-6.5C5.82,8.72 6.34,7.16 6.56,6.5c0.05,-0.16 0.12,-0.29 0.19,-0.4C6.77,6.08 6.78,6.06 6.8,6.04C7.18,5.51 7.72,5.5 7.72,5.5h8.56c0,0 0.54,0.01 0.92,0.53c0.02,0.03 0.03,0.05 0.05,0.07c0.07,0.11 0.14,0.24 0.19,0.4c0.22,0.66 0.74,2.23 1.56,4.69V17.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gas_meter.xml b/compose/material/material/icons/generator/raw-icons/filled/gas_meter.xml
deleted file mode 100644
index 8334758..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gas_meter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-1V2h-2v2h-2V2H9v2H8C5.79,4 4,5.79 4,8v10c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4V8C20,5.79 18.21,4 16,4zM12,18c-1.38,0 -2.5,-1.1 -2.5,-2.46c0,-1.09 0.43,-1.39 2.5,-3.79c2.05,2.38 2.5,2.7 2.5,3.79C14.5,16.9 13.38,18 12,18zM16,10H8V8h8V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gavel.xml b/compose/material/material/icons/generator/raw-icons/filled/gavel.xml
deleted file mode 100644
index df53184..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gavel.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.25,8.069l2.83,-2.827l14.134,14.15l-2.83,2.827z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.486,3.827l2.828,-2.829l5.658,5.656l-2.828,2.829z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.999,12.315l2.828,-2.828l5.657,5.657l-2.828,2.828z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h12v2h-12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/generating_tokens.xml b/compose/material/material/icons/generator/raw-icons/filled/generating_tokens.xml
deleted file mode 100644
index 8f331f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/generating_tokens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8C17,7.58 13.42,4 9,4zM12,10.5h-2v5H8v-5H6V9h6V10.5zM20.25,3.75L23,5l-2.75,1.25L19,9l-1.25,-2.75L15,5l2.75,-1.25L19,1L20.25,3.75zM20.25,17.75L23,19l-2.75,1.25L19,23l-1.25,-2.75L15,19l2.75,-1.25L19,15L20.25,17.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gesture.xml b/compose/material/material/icons/generator/raw-icons/filled/gesture.xml
deleted file mode 100644
index c3087f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gesture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.59,6.89c0.7,-0.71 1.4,-1.35 1.71,-1.22 0.5,0.2 0,1.03 -0.3,1.52 -0.25,0.42 -2.86,3.89 -2.86,6.31 0,1.28 0.48,2.34 1.34,2.98 0.75,0.56 1.74,0.73 2.64,0.46 1.07,-0.31 1.95,-1.4 3.06,-2.77 1.21,-1.49 2.83,-3.44 4.08,-3.44 1.63,0 1.65,1.01 1.76,1.79 -3.78,0.64 -5.38,3.67 -5.38,5.37 0,1.7 1.44,3.09 3.21,3.09 1.63,0 4.29,-1.33 4.69,-6.1L21,14.88v-2.5h-2.47c-0.15,-1.65 -1.09,-4.2 -4.03,-4.2 -2.25,0 -4.18,1.91 -4.94,2.84 -0.58,0.73 -2.06,2.48 -2.29,2.72 -0.25,0.3 -0.68,0.84 -1.11,0.84 -0.45,0 -0.72,-0.83 -0.36,-1.92 0.35,-1.09 1.4,-2.86 1.85,-3.52 0.78,-1.14 1.3,-1.92 1.3,-3.28C8.95,3.69 7.31,3 6.44,3 5.12,3 3.97,4 3.72,4.25c-0.36,0.36 -0.66,0.66 -0.88,0.93l1.75,1.71zM13.88,18.55c-0.31,0 -0.74,-0.26 -0.74,-0.72 0,-0.6 0.73,-2.2 2.87,-2.76 -0.3,2.69 -1.43,3.48 -2.13,3.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/get_app.xml b/compose/material/material/icons/generator/raw-icons/filled/get_app.xml
deleted file mode 100644
index 27bb5a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/get_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gif.xml b/compose/material/material/icons/generator/raw-icons/filled/gif.xml
deleted file mode 100644
index fe7758d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gif.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9h1.5v6h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9H6c-0.6,0 -1,0.5 -1,1v4c0,0.5 0.4,1 1,1h3c0.6,0 1,-0.5 1,-1v-2H8.5v1.5h-2v-3H10V10C10,9.5 9.6,9 9,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10.5l0,-1.5l-4.5,0l0,6l1.5,0l0,-2l2,0l0,-1.5l-2,0l0,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gif_box.xml b/compose/material/material/icons/generator/raw-icons/filled/gif_box.xml
deleted file mode 100644
index 4654004..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gif_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM9.5,13v-1h1v1c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1h1c0.55,0 1,0.45 1,1h-2v2H9.5zM12.5,14h-1v-4h1V14zM16.5,11h-2v0.5H16v1h-1.5V14h-1v-4h3V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/girl.xml b/compose/material/material/icons/generator/raw-icons/filled/girl.xml
deleted file mode 100644
index 96b3cd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/girl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,16v4h-4v-4H8l2.38,-6.38C10.63,8.95 11.28,8.5 12,8.5s1.37,0.45 1.62,1.12L16,16H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gite.xml b/compose/material/material/icons/generator/raw-icons/filled/gite.xml
deleted file mode 100644
index 2ee3d8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6zM4,12h10v5H4V12zM20,17h-4v-6.17l2,-2v0l2,2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/golf_course.xml b/compose/material/material/icons/generator/raw-icons/filled/golf_course.xml
deleted file mode 100644
index f3593e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/golf_course.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5.92L9,2v18H7v-1.73c-1.79,0.35 -3,0.99 -3,1.73 0,1.1 2.69,2 6,2s6,-0.9 6,-2c0,-0.99 -2.16,-1.81 -5,-1.97V8.98l6,-3.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gpp_bad.xml b/compose/material/material/icons/generator/raw-icons/filled/gpp_bad.xml
deleted file mode 100644
index f32ef25..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gpp_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM15.5,14.09l-1.41,1.41L12,13.42L9.91,15.5L8.5,14.09L10.59,12L8.5,9.91L9.91,8.5L12,10.59l2.09,-2.09l1.41,1.41L13.42,12L15.5,14.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gpp_good.xml b/compose/material/material/icons/generator/raw-icons/filled/gpp_good.xml
deleted file mode 100644
index 5085f4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gpp_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM10.94,15.54L7.4,12l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L10.94,15.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gpp_maybe.xml b/compose/material/material/icons/generator/raw-icons/filled/gpp_maybe.xml
deleted file mode 100644
index 5ce1d87..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gpp_maybe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM13,16h-2v-2h2V16zM13,12h-2V7h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gps_fixed.xml b/compose/material/material/icons/generator/raw-icons/filled/gps_fixed.xml
deleted file mode 100644
index b050330..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gps_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gps_not_fixed.xml b/compose/material/material/icons/generator/raw-icons/filled/gps_not_fixed.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gps_not_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gps_off.xml b/compose/material/material/icons/generator/raw-icons/filled/gps_off.xml
deleted file mode 100644
index 43912e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gps_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06c-1.13,0.12 -2.19,0.46 -3.16,0.97l1.5,1.5C10.16,5.19 11.06,5 12,5c3.87,0 7,3.13 7,7 0,0.94 -0.19,1.84 -0.52,2.65l1.5,1.5c0.5,-0.96 0.84,-2.02 0.97,-3.15L23,13v-2h-2.06zM3,4.27l2.04,2.04C3.97,7.62 3.25,9.23 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21 21,19.73 4.27,3 3,4.27zM16.27,17.54C15.09,18.45 13.61,19 12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grade.xml b/compose/material/material/icons/generator/raw-icons/filled/grade.xml
deleted file mode 100644
index 3383294..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/gradient.xml b/compose/material/material/icons/generator/raw-icons/filled/gradient.xml
deleted file mode 100644
index 9c0113a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/gradient.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v2h-2zM9,11h2v2L9,13zM13,11h2v2h-2zM15,9h2v2h-2zM7,9h2v2L7,11zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,18L7,18v-2h2v2zM13,18h-2v-2h2v2zM17,18h-2v-2h2v2zM19,11h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2L9,15v-2L7,13v2L5,15v-2h2v-2L5,11L5,5h14v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grading.xml b/compose/material/material/icons/generator/raw-icons/filled/grading.xml
deleted file mode 100644
index b5d0218..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grading.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h16v2H4V7zM4,13h16v-2H4V13zM4,17h7v-2H4V17zM4,21h7v-2H4V21zM15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42L18.58,15L15.41,18.17zM4,3v2h16V3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grain.xml b/compose/material/material/icons/generator/raw-icons/filled/grain.xml
deleted file mode 100644
index daf1370..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM14,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM14,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM10,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/graphic_eq.xml b/compose/material/material/icons/generator/raw-icons/filled/graphic_eq.xml
deleted file mode 100644
index 42f814b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/graphic_eq.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18h2L9,6L7,6v12zM11,22h2L13,2h-2v20zM3,14h2v-4L3,10v4zM15,18h2L17,6h-2v12zM19,10v4h2v-4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grass.xml b/compose/material/material/icons/generator/raw-icons/filled/grass.xml
deleted file mode 100644
index aafa3e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grass.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20H2v-2h5.75l0,0C7.02,15.19 4.81,12.99 2,12.26C2.64,12.1 3.31,12 4,12C8.42,12 12,15.58 12,20zM22,12.26C21.36,12.1 20.69,12 20,12c-2.93,0 -5.48,1.58 -6.88,3.93c0.29,0.66 0.53,1.35 0.67,2.07c0.13,0.65 0.2,1.32 0.2,2h2h6v-2h-5.75C16.98,15.19 19.19,12.99 22,12.26zM15.64,11.02c0.78,-2.09 2.23,-3.84 4.09,-5C15.44,6.16 12,9.67 12,14c0,0.01 0,0.02 0,0.02C12.95,12.75 14.2,11.72 15.64,11.02zM11.42,8.85C10.58,6.66 8.88,4.89 6.7,4C8.14,5.86 9,8.18 9,10.71c0,0.21 -0.03,0.41 -0.04,0.61c0.43,0.24 0.83,0.52 1.22,0.82C10.39,10.96 10.83,9.85 11.42,8.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grid_3x3.xml b/compose/material/material/icons/generator/raw-icons/filled/grid_3x3.xml
deleted file mode 100644
index bdc2232..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grid_3x3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grid_4x4.xml b/compose/material/material/icons/generator/raw-icons/filled/grid_4x4.xml
deleted file mode 100644
index 460133b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grid_4x4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22zM7,7h4v4H7V7zM7,17v-4h4v4H7zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grid_goldenratio.xml b/compose/material/material/icons/generator/raw-icons/filled/grid_goldenratio.xml
deleted file mode 100644
index 96956d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grid_goldenratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grid_off.xml b/compose/material/material/icons/generator/raw-icons/filled/grid_off.xml
deleted file mode 100644
index 65b0431..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grid_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4v1.45l2,2L10,4h4v4h-3.45l2,2L14,10v1.45l2,2L16,10h4v4h-3.45l2,2L20,16v1.45l2,2L22,4c0,-1.1 -0.9,-2 -2,-2L4.55,2l2,2L8,4zM16,4h4v4h-4L16,4zM1.27,1.27L0,2.55l2,2L2,20c0,1.1 0.9,2 2,2h15.46l2,2 1.27,-1.27L1.27,1.27zM10,12.55L11.45,14L10,14v-1.45zM4,6.55L5.45,8L4,8L4,6.55zM8,20L4,20v-4h4v4zM8,14L4,14v-4h3.45l0.55,0.55L8,14zM14,20h-4v-4h3.45l0.55,0.54L14,20zM16,20v-1.46L17.46,20L16,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grid_on.xml b/compose/material/material/icons/generator/raw-icons/filled/grid_on.xml
deleted file mode 100644
index cacc82c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grid_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM8,20L4,20v-4h4v4zM8,14L4,14v-4h4v4zM8,8L4,8L4,4h4v4zM14,20h-4v-4h4v4zM14,14h-4v-4h4v4zM14,8h-4L10,4h4v4zM20,20h-4v-4h4v4zM20,14h-4v-4h4v4zM20,8h-4L16,4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/grid_view.xml b/compose/material/material/icons/generator/raw-icons/filled/grid_view.xml
deleted file mode 100644
index f49e647..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/grid_view.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v8h8L11,3L3,3zM9,9L5,9L5,5h4v4zM3,13v8h8v-8L3,13zM9,19L5,19v-4h4v4zM13,3v8h8L21,3h-8zM19,9h-4L15,5h4v4zM13,13v8h8v-8h-8zM19,19h-4v-4h4v4z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/group.xml b/compose/material/material/icons/generator/raw-icons/filled/group.xml
deleted file mode 100644
index 2989eb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/group.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11c1.66,0 2.99,-1.34 2.99,-3S17.66,5 16,5c-1.66,0 -3,1.34 -3,3s1.34,3 3,3zM8,11c1.66,0 2.99,-1.34 2.99,-3S9.66,5 8,5C6.34,5 5,6.34 5,8s1.34,3 3,3zM8,13c-2.33,0 -7,1.17 -7,3.5L1,19h14v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5zM16,13c-0.29,0 -0.62,0.02 -0.97,0.05 1.16,0.84 1.97,1.97 1.97,3.45L17,19h6v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/group_add.xml b/compose/material/material/icons/generator/raw-icons/filled/group_add.xml
deleted file mode 100644
index 2ab0b72..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/group_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9l0,-2l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4S4,5.79 4,8S5.79,12 8,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/group_off.xml b/compose/material/material/icons/generator/raw-icons/filled/group_off.xml
deleted file mode 100644
index 6868f1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/group_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.42 -0.5,-2.73 -1.33,-3.76C14.09,4.1 14.53,4 15,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4c-0.06,0 -0.12,0 -0.18,0l-0.77,-0.77C14.65,10.29 15,9.18 15,8zM22.83,20H23v-3c0,-2.18 -3.58,-3.47 -6.34,-3.87c1.1,0.75 1.95,1.71 2.23,2.94L22.83,20zM7.24,4.41C7.77,4.15 8.37,4 9,4c2.21,0 4,1.79 4,4c0,0.63 -0.15,1.23 -0.41,1.76L7.24,4.41zM9.17,12C9.11,12 9.06,12 9,12c-2.21,0 -4,-1.79 -4,-4c0,-0.06 0,-0.11 0,-0.17L0.69,3.51L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0,-2.66 5.33,-4 8,-4c0.37,0 0.8,0.03 1.25,0.08L9.17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/group_remove.xml b/compose/material/material/icons/generator/raw-icons/filled/group_remove.xml
deleted file mode 100644
index c71530e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/group_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,9v2h-6V9H24zM8,4C5.79,4 4,5.79 4,8s1.79,4 4,4s4,-1.79 4,-4S10.21,4 8,4zM8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13zM12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05zM16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/group_work.xml b/compose/material/material/icons/generator/raw-icons/filled/group_work.xml
deleted file mode 100644
index c4eb7d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/group_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM8,17.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5zM9.5,8c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5S9.5,9.38 9.5,8zM16,17.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/groups.xml b/compose/material/material/icons/generator/raw-icons/filled/groups.xml
deleted file mode 100644
index a6df105..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/groups.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.75c1.63,0 3.07,0.39 4.24,0.9c1.08,0.48 1.76,1.56 1.76,2.73L18,18H6l0,-1.61c0,-1.18 0.68,-2.26 1.76,-2.73C8.93,13.14 10.37,12.75 12,12.75zM4,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C2,12.1 2.9,13 4,13zM5.13,14.1C4.76,14.04 4.39,14 4,14c-0.99,0 -1.93,0.21 -2.78,0.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61C4.5,15.56 4.73,14.78 5.13,14.1zM20,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C18,12.1 18.9,13 20,13zM24,16.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0V16.43zM12,6c1.66,0 3,1.34 3,3c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3C9,7.34 10.34,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/groups_2.xml b/compose/material/material/icons/generator/raw-icons/filled/groups_2.xml
deleted file mode 100644
index de0bfd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/groups_2.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.27,12h3.46c0.93,0 1.63,-0.83 1.48,-1.75l-0.3,-1.79C14.67,7.04 13.44,6 12,6S9.33,7.04 9.09,8.47l-0.3,1.79C8.64,11.17 9.34,12 10.27,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.66,11.11c-0.13,0.26 -0.18,0.57 -0.1,0.88c0.16,0.69 0.76,1.03 1.53,1c0,0 1.49,0 1.95,0c0.83,0 1.51,-0.58 1.51,-1.29c0,-0.14 -0.03,-0.27 -0.07,-0.4c-0.01,-0.03 -0.01,-0.05 0.01,-0.08c0.09,-0.16 0.14,-0.34 0.14,-0.53c0,-0.31 -0.14,-0.6 -0.36,-0.82c-0.03,-0.03 -0.03,-0.06 -0.02,-0.1c0.07,-0.2 0.07,-0.43 0.01,-0.65C6.1,8.69 5.71,8.4 5.27,8.38c-0.03,0 -0.05,-0.01 -0.07,-0.03C5.03,8.14 4.72,8 4.37,8C4.07,8 3.8,8.1 3.62,8.26C3.59,8.29 3.56,8.29 3.53,8.28c-0.14,-0.06 -0.3,-0.09 -0.46,-0.09c-0.65,0 -1.18,0.49 -1.24,1.12c0,0.02 -0.01,0.04 -0.03,0.06c-0.29,0.26 -0.46,0.65 -0.41,1.05c0.03,0.22 0.12,0.43 0.25,0.6C1.67,11.04 1.67,11.08 1.66,11.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11v-0.5c0,-1.1 -0.9,-2 -2,-2h-2c-0.42,0 -0.65,0.48 -0.39,0.81l0.7,0.63C18.12,10.25 18,10.61 18,11c0,1.1 0.9,2 2,2S22,12.1 22,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/groups_3.xml b/compose/material/material/icons/generator/raw-icons/filled/groups_3.xml
deleted file mode 100644
index 66b5e90..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/groups_3.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,7.34 9,9C9,10.66 10.34,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.497,11l2.503,-2.503l2.503,2.503l-2.503,2.503z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9l-2.5,4l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/h_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/h_mobiledata.xml
deleted file mode 100644
index 2e267be..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/h_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/h_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/h_plus_mobiledata.xml
deleted file mode 100644
index 119aa12..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/h_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11zM22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hail.xml b/compose/material/material/icons/generator/raw-icons/filled/hail.xml
deleted file mode 100644
index 1ac6172..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM17,2h2v0.4c-0.1,2.2 -0.8,3.9 -2.3,5.1 -0.5,0.4 -1.1,0.7 -1.7,0.9L15,22h-2v-6h-2v6L9,22L9,10.1c-0.3,0.1 -0.5,0.2 -0.6,0.3 -0.9,0.7 -1.39,1.6 -1.4,3.1v0.5L5,14v-0.5c0,-2 0.71,-3.59 2.11,-4.79C8.21,7.81 10,7 12,7s2.68,-0.46 3.48,-1.06C16.48,5.14 17,4 17,2.5L17,2zM4,16h3v6L4,22v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/handshake.xml b/compose/material/material/icons/generator/raw-icons/filled/handshake.xml
deleted file mode 100644
index d3ece60..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/handshake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.48,10.41c-0.39,0.39 -1.04,0.39 -1.43,0l-4.47,-4.46l-7.05,7.04l-0.66,-0.63c-1.17,-1.17 -1.17,-3.07 0,-4.24l4.24,-4.24c1.17,-1.17 3.07,-1.17 4.24,0L16.48,9C16.87,9.39 16.87,10.02 16.48,10.41zM17.18,8.29c0.78,0.78 0.78,2.05 0,2.83c-1.27,1.27 -2.61,0.22 -2.83,0l-3.76,-3.76l-5.57,5.57c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.42,0l4.62,-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.42,0l4.62,-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l4.62,-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l8.32,-8.34c1.17,-1.17 1.17,-3.07 0,-4.24l-4.24,-4.24c-1.15,-1.15 -3.01,-1.17 -4.18,-0.06L17.18,8.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/handyman.xml b/compose/material/material/icons/generator/raw-icons/filled/handyman.xml
deleted file mode 100644
index 0d8ef6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/handyman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.67,18.17l-5.3,-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39 1.02,0.39 1.41,0l2.12,-2.12C22.06,19.2 22.06,18.56 21.67,18.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,10.19l1.41,-1.41l2.12,2.12c1.17,-1.17 1.17,-3.07 0,-4.24l-3.54,-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3c-0.39,0.39 -0.39,1.02 0,1.41l2.12,2.12c0.39,0.39 1.02,0.39 1.41,0l5.3,-5.3v-2.12l5.15,-5.15L17.34,10.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hardware.xml b/compose/material/material/icons/generator/raw-icons/filled/hardware.xml
deleted file mode 100644
index c4fc509..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hardware.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3l-3,3V3H9C6.24,3 4,5.24 4,8h5v3h6V8l3,3h2V3H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13v7c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-7H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hd.xml b/compose/material/material/icons/generator/raw-icons/filled/hd.xml
deleted file mode 100644
index 3305aaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hd.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM11,15L9.5,15v-2h-2v2L6,15L6,9h1.5v2.5h2L9.5,9L11,9v6zM13,9h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-4L13,9zM14.5,13.5h2v-3h-2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_auto.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_auto.xml
deleted file mode 100644
index ce25cd8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_auto.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.04,8.04l-0.09,0l-1.6,4.55l3.29,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM15.21,17l-0.98,-2.81H9.78l-1,2.81h-1.9l4.13,-11h1.97l4.13,11H15.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_auto_select.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_auto_select.xml
deleted file mode 100644
index 528675fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_auto_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1C18,16.7 17.3,16 16.5,16zM16.5,18.5h-2v-1h2V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18l-2,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l2,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18.5l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0l0,2l1.5,0l0,-2l2,0l0,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.97,5.3l-1.02,2.89l2.1,0l-1.02,-2.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM14.04,11l-0.63,-1.79h-2.83L9.96,11H8.74l2.63,-7h1.25l2.63,7H14.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_enhanced_select.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_enhanced_select.xml
deleted file mode 100644
index b3002c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_enhanced_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6 2.69,-6 6,-6zM12,4C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM13,11h-2L11,9L9,9L9,7h2L11,5h2v2h2v2h-2v2zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2L22,16.5v2h2L24,20zM18,18.5c0,0.6 -0.4,1.1 -0.9,1.4L18,22h-1.5l-0.9,-2h-1.1v2L13,22v-6h3.5c0.8,0 1.5,0.7 1.5,1.5v1zM16.5,18.5v-1h-2v1h2zM3.5,18v-2L5,16v6L3.5,22v-2.5h-2L1.5,22L0,22v-6h1.5v2h2zM10,16c0.8,0 1.5,0.7 1.5,1.5v3c0,0.8 -0.7,1.5 -1.5,1.5L6.5,22v-6L10,16zM10,20.5v-3L8,17.5v3h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_off.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_off.xml
deleted file mode 100644
index 409a646..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,15v-2h1.1l0.9,2L21,15l-0.9,-2.1c0.5,-0.2 0.9,-0.8 0.9,-1.4v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5L16,9v4.9l1.1,1.1h0.4zM17.5,10.5h2v1h-2v-1zM13,10.5v0.4l1.5,1.5v-1.9c0,-0.8 -0.7,-1.5 -1.5,-1.5h-1.9l1.5,1.5h0.4zM9.5,9.5l-7,-7 -1.1,1L6.9,9h-0.4v2h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15v-4.9l1.5,1.5L9.5,15h3.4l7.6,7.6 1.1,-1.1 -12.1,-12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_off_select.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_off_select.xml
deleted file mode 100644
index 3386919..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_off_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98,4.15L9.42,2.59c5.1,-2.42 10.41,2.89 7.99,7.99l-1.56,-1.56C16.66,6.06 13.94,3.34 10.98,4.15zM6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1 2.89,10.41 7.99,7.99l1.66,1.66l1.41,-1.41L6.34,2.34zM8.15,6.98l4.87,4.87C10.06,12.66 7.34,9.94 8.15,6.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_on.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_on.xml
deleted file mode 100644
index 3bf87f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5L16,9v6h1.5v-2h1.1l0.9,2L21,15l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4zM19.5,11.5h-2v-1h2v1zM6.5,11h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15L8,9L6.5,9v2zM13,9L9.5,9v6L13,15c0.8,0 1.5,-0.7 1.5,-1.5v-3c0,-0.8 -0.7,-1.5 -1.5,-1.5zM13,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_on_select.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_on_select.xml
deleted file mode 100644
index d883059..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_on_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4s-4,-1.79 -4,-4S9.79,4 12,4M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_plus.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_plus.xml
deleted file mode 100644
index 218ed5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5h1.5v3h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,15.5c0,0.6 -0.4,1.1 -0.9,1.4L12,19h-1.5l-0.9,-2H8.5v2H7v-6h3.5c0.8,0 1.5,0.7 1.5,1.5V15.5zM12,12h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12V12zM17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zM17.5,10.5c0,0.8 -0.7,1.5 -1.5,1.5h-3V6h3c0.8,0 1.5,0.7 1.5,1.5V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_strong.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_strong.xml
deleted file mode 100644
index 73e3297..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM5,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hdr_weak.xml b/compose/material/material/icons/generator/raw-icons/filled/hdr_weak.xml
deleted file mode 100644
index 0a0eb26..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hdr_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM17,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/headphones.xml b/compose/material/material/icons/generator/raw-icons/filled/headphones.xml
deleted file mode 100644
index be84c72..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/headphones.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9v7c0,1.1 0.9,2 2,2h4v-8H5v-1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v1h-4v8h4c1.1,0 2,-0.9 2,-2v-7C21,7.03 16.97,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/headphones_battery.xml b/compose/material/material/icons/generator/raw-icons/filled/headphones_battery.xml
deleted file mode 100644
index 23bcafa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/headphones_battery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1V6h-2v1h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c-3.31,0 -6,2.69 -6,6v4c0,1.1 0.9,2 2,2h2v-5H3.5v-1c0,-2.48 2.02,-4.5 4.5,-4.5s4.5,2.02 4.5,4.5v1H10v5h2c1.1,0 2,-0.9 2,-2v-4C14,8.69 11.31,6 8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/headset.xml b/compose/material/material/icons/generator/raw-icons/filled/headset.xml
deleted file mode 100644
index 2a1175a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/headset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1c-4.97,0 -9,4.03 -9,9v7c0,1.66 1.34,3 3,3h3v-8H5v-2c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v2h-4v8h3c1.66,0 3,-1.34 3,-3v-7c0,-4.97 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/headset_mic.xml b/compose/material/material/icons/generator/raw-icons/filled/headset_mic.xml
deleted file mode 100644
index 31cc591..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/headset_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1c-4.97,0 -9,4.03 -9,9v7c0,1.66 1.34,3 3,3h3v-8H5v-2c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v2h-4v8h4v1h-7v2h6c1.66,0 3,-1.34 3,-3V10c0,-4.97 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/headset_off.xml b/compose/material/material/icons/generator/raw-icons/filled/headset_off.xml
deleted file mode 100644
index 1e3f66e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/headset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c3.87,0 7,3.13 7,7v2h-2.92L21,17.92V11c0,-4.97 -4.03,-9 -9,-9 -1.95,0 -3.76,0.62 -5.23,1.68l1.44,1.44C9.3,4.41 10.6,4 12,4zM2.27,1.72L1,3l3.33,3.32C3.49,7.68 3,9.29 3,11v7c0,1.66 1.34,3 3,3h3v-8H5v-2c0,-1.17 0.29,-2.26 0.79,-3.22L15,17v4h3c0.3,0 0.59,-0.06 0.86,-0.14L21,23l1.27,-1.27 -20,-20.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/healing.xml b/compose/material/material/icons/generator/raw-icons/filled/healing.xml
deleted file mode 100644
index 7e1fb8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/healing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.73,12.02l3.98,-3.98c0.39,-0.39 0.39,-1.02 0,-1.41l-4.34,-4.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.98,3.98L8,2.29C7.8,2.1 7.55,2 7.29,2c-0.25,0 -0.51,0.1 -0.7,0.29L2.25,6.63c-0.39,0.39 -0.39,1.02 0,1.41l3.98,3.98L2.25,16c-0.39,0.39 -0.39,1.02 0,1.41l4.34,4.34c0.39,0.39 1.02,0.39 1.41,0l3.98,-3.98 3.98,3.98c0.2,0.2 0.45,0.29 0.71,0.29 0.26,0 0.51,-0.1 0.71,-0.29l4.34,-4.34c0.39,-0.39 0.39,-1.02 0,-1.41l-3.99,-3.98zM12,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM7.29,10.96L3.66,7.34l3.63,-3.63 3.62,3.62 -3.62,3.63zM10,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM14,11c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16.66,20.34l-3.63,-3.62 3.63,-3.63 3.62,3.62 -3.62,3.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/health_and_safety.xml b/compose/material/material/icons/generator/raw-icons/filled/health_and_safety.xml
deleted file mode 100644
index a73e54a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/health_and_safety.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hearing.xml b/compose/material/material/icons/generator/raw-icons/filled/hearing.xml
deleted file mode 100644
index 42f6db0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hearing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20c-0.29,0 -0.56,-0.06 -0.76,-0.15 -0.71,-0.37 -1.21,-0.88 -1.71,-2.38 -0.51,-1.56 -1.47,-2.29 -2.39,-3 -0.79,-0.61 -1.61,-1.24 -2.32,-2.53C9.29,10.98 9,9.93 9,9c0,-2.8 2.2,-5 5,-5s5,2.2 5,5h2c0,-3.93 -3.07,-7 -7,-7S7,5.07 7,9c0,1.26 0.38,2.65 1.07,3.9 0.91,1.65 1.98,2.48 2.85,3.15 0.81,0.62 1.39,1.07 1.71,2.05 0.6,1.82 1.37,2.84 2.73,3.55 0.51,0.23 1.07,0.35 1.64,0.35 2.21,0 4,-1.79 4,-4h-2c0,1.1 -0.9,2 -2,2zM7.64,2.64L6.22,1.22C4.23,3.21 3,5.96 3,9s1.23,5.79 3.22,7.78l1.41,-1.41C6.01,13.74 5,11.49 5,9s1.01,-4.74 2.64,-6.36zM11.5,9c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5 -1.12,-2.5 -2.5,-2.5 -2.5,1.12 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hearing_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/hearing_disabled.xml
deleted file mode 100644
index c86d496..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hearing_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.03,3.2C7.15,2.44 8.51,2 10,2c3.93,0 7,3.07 7,7c0,1.26 -0.38,2.65 -1.07,3.9c-0.02,0.04 -0.05,0.08 -0.08,0.13l-1.48,-1.48C14.77,10.69 15,9.8 15,9c0,-2.8 -2.2,-5 -5,-5C9.08,4 8.24,4.26 7.5,4.67L6.03,3.2zM17.21,14.38l1.43,1.43C20.11,13.93 21,11.57 21,9c0,-3.04 -1.23,-5.79 -3.22,-7.78l-1.42,1.42C17.99,4.26 19,6.51 19,9C19,11.02 18.33,12.88 17.21,14.38zM10,6.5c-0.21,0 -0.4,0.03 -0.59,0.08l3.01,3.01C12.47,9.4 12.5,9.21 12.5,9C12.5,7.62 11.38,6.5 10,6.5zM21.19,21.19L2.81,2.81L1.39,4.22l2.13,2.13C3.19,7.16 3,8.05 3,9h2c0,-0.36 0.05,-0.71 0.12,-1.05l6.61,6.61c-0.88,0.68 -1.78,1.41 -2.27,2.9c-0.5,1.5 -1,2.01 -1.71,2.38C7.56,19.94 7.29,20 7,20c-1.1,0 -2,-0.9 -2,-2H3c0,2.21 1.79,4 4,4c0.57,0 1.13,-0.12 1.64,-0.35c1.36,-0.71 2.13,-1.73 2.73,-3.55c0.32,-0.98 0.9,-1.43 1.71,-2.05c0.03,-0.02 0.05,-0.04 0.08,-0.06l6.62,6.62L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/heart_broken.xml b/compose/material/material/icons/generator/raw-icons/filled/heart_broken.xml
deleted file mode 100644
index bf5c730..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/heart_broken.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-0.96,0 -1.9,0.25 -2.73,0.69L12,9h3l-3,10l1,-9h-3l1.54,-5.39C10.47,3.61 9.01,3 7.5,3C4.42,3 2,5.42 2,8.5c0,4.13 4.16,7.18 10,12.5c5.47,-4.94 10,-8.26 10,-12.5C22,5.42 19.58,3 16.5,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/heat_pump.xml b/compose/material/material/icons/generator/raw-icons/filled/heat_pump.xml
deleted file mode 100644
index b9c5ece..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/heat_pump.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12.75,7.08c0.82,0.12 1.57,0.44 2.2,0.91l-2.2,2.2V7.08zM11.25,7.08v3.11l-2.2,-2.2C9.68,7.52 10.43,7.2 11.25,7.08zM7.99,9.05l2.2,2.2H7.08C7.2,10.43 7.52,9.68 7.99,9.05zM7.08,12.75h3.11l-2.2,2.2C7.52,14.32 7.2,13.57 7.08,12.75zM11.25,16.92c-0.82,-0.12 -1.57,-0.44 -2.2,-0.91l2.2,-2.2V16.92zM12,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,12.55 12.55,13 12,13zM12.75,16.92v-3.11l2.2,2.2C14.32,16.48 13.57,16.8 12.75,16.92zM16.01,14.95l-2.2,-2.2h3.11C16.8,13.57 16.48,14.32 16.01,14.95zM13.81,11.25l2.2,-2.2c0.47,0.64 0.79,1.39 0.91,2.2H13.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/height.xml b/compose/material/material/icons/generator/raw-icons/filled/height.xml
deleted file mode 100644
index 4addea0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/height.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.99l3,0l-4,-3.99l-4,3.99l3,0l0,10.02l-3,0l4,3.99l4,-3.99l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/help.xml b/compose/material/material/icons/generator/raw-icons/filled/help.xml
deleted file mode 100644
index 08187d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,19h-2v-2h2v2zM15.07,11.25l-0.9,0.92C13.45,12.9 13,13.5 13,15h-2v-0.5c0,-1.1 0.45,-2.1 1.17,-2.83l1.24,-1.26c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2L8,9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,0.88 -0.36,1.68 -0.93,2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/help_center.xml b/compose/material/material/icons/generator/raw-icons/filled/help_center.xml
deleted file mode 100644
index dd73909..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/help_center.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12.01,18c-0.7,0 -1.26,-0.56 -1.26,-1.26c0,-0.71 0.56,-1.25 1.26,-1.25c0.71,0 1.25,0.54 1.25,1.25C13.25,17.43 12.72,18 12.01,18zM15.02,10.6c-0.76,1.11 -1.48,1.46 -1.87,2.17c-0.16,0.29 -0.22,0.48 -0.22,1.41h-1.82c0,-0.49 -0.08,-1.29 0.31,-1.98c0.49,-0.87 1.42,-1.39 1.96,-2.16c0.57,-0.81 0.25,-2.33 -1.37,-2.33c-1.06,0 -1.58,0.8 -1.8,1.48L8.56,8.49C9.01,7.15 10.22,6 11.99,6c1.48,0 2.49,0.67 3.01,1.52C15.44,8.24 15.7,9.59 15.02,10.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/help_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/help_outline.xml
deleted file mode 100644
index 94242b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/help_outline.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18h2v-2h-2v2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,6c-2.21,0 -4,1.79 -4,4h2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hevc.xml b/compose/material/material/icons/generator/raw-icons/filled/hevc.xml
deleted file mode 100644
index c0bb6f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hevc.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,11l-1,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l1,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11v-1c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-1h-1.5v0.5h-1v-3h1V11H21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,13.5l-0.75,-4.5l-1.5,0l1,6l2.5,0l1,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9l0,6l3.5,0l0,-1.5l-2,0l0,-1l2,0l0,-1.5l-2,0l0,-0.5l2,0l0,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hexagon.xml b/compose/material/material/icons/generator/raw-icons/filled/hexagon.xml
deleted file mode 100644
index 63103a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hexagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2,3l-10.4,0l-5.2,9l5.2,9l10.4,0l5.2,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hide_image.xml b/compose/material/material/icons/generator/raw-icons/filled/hide_image.xml
deleted file mode 100644
index f18434c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hide_image.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c0,-1.1 -0.9,-2 -2,-2H5.83L21,18.17V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61l1.41,-1.41L2.81,2.81zM6,17l3,-4l2.25,3l0.82,-1.1l2.1,2.1H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hide_source.xml b/compose/material/material/icons/generator/raw-icons/filled/hide_source.xml
deleted file mode 100644
index b502aac..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hide_source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l10.94,10.94C14.86,19.59 13.48,20 12,20zM7.94,5.12L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8C10.52,4 9.14,4.41 7.94,5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/high_quality.xml b/compose/material/material/icons/generator/raw-icons/filled/high_quality.xml
deleted file mode 100644
index 2138222..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/high_quality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM11,15L9.5,15v-2h-2v2L6,15L6,9h1.5v2.5h2L9.5,9L11,9v6zM18,14c0,0.55 -0.45,1 -1,1h-0.75v1.5h-1.5L14.75,15L14,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v4zM14.5,13.5h2v-3h-2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/highlight.xml b/compose/material/material/icons/generator/raw-icons/filled/highlight.xml
deleted file mode 100644
index 928c6df..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/highlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14l3,3v5h6v-5l3,-3V9H6V14zM11,2h2v3h-2V2zM3.5,5.88l1.41,-1.41l2.12,2.12L5.62,8L3.5,5.88zM16.96,6.59l2.12,-2.12l1.41,1.41L18.38,8L16.96,6.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/highlight_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/highlight_alt.xml
deleted file mode 100644
index 568d24c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/highlight_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5h-2L15,3h2v2zM15,21h2v-2.59L19.59,21 21,19.59 18.41,17L21,17v-2h-6v6zM19,9h2L21,7h-2v2zM19,13h2v-2h-2v2zM11,21h2v-2h-2v2zM7,5h2L9,3L7,3v2zM3,17h2v-2L3,15v2zM5,21v-2L3,19c0,1.1 0.9,2 2,2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM11,5h2L13,3h-2v2zM3,9h2L5,7L3,7v2zM7,21h2v-2L7,19v2zM3,13h2v-2L3,11v2zM3,5h2L5,3c-1.1,0 -2,0.9 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/highlight_off.xml b/compose/material/material/icons/generator/raw-icons/filled/highlight_off.xml
deleted file mode 100644
index 6a21d0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/highlight_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,8L12,10.59 9.41,8 8,9.41 10.59,12 8,14.59 9.41,16 12,13.41 14.59,16 16,14.59 13.41,12 16,9.41 14.59,8zM12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hiking.xml b/compose/material/material/icons/generator/raw-icons/filled/hiking.xml
deleted file mode 100644
index 5a58088..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hiking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM17.5,10.78c-1.23,-0.37 -2.22,-1.17 -2.8,-2.18l-1,-1.6c-0.41,-0.65 -1.11,-1 -1.84,-1c-0.78,0 -1.59,0.5 -1.78,1.44S7,23 7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3c1,1.15 2.41,2.01 4,2.34V23H19V9h-1.5L17.5,10.78zM7.43,13.13l-2.12,-0.41c-0.54,-0.11 -0.9,-0.63 -0.79,-1.17l0.76,-3.93c0.21,-1.08 1.26,-1.79 2.34,-1.58l1.16,0.23L7.43,13.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/history.xml b/compose/material/material/icons/generator/raw-icons/filled/history.xml
deleted file mode 100644
index 9bc1fc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.28,2.54 0.72,-1.21 -3.5,-2.08L13.5,8L12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/history_edu.xml b/compose/material/material/icons/generator/raw-icons/filled/history_edu.xml
deleted file mode 100644
index 9bae096..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/history_edu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v1.38c-0.83,-0.33 -1.72,-0.5 -2.61,-0.5c-1.79,0 -3.58,0.68 -4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86 1.98,1.31 3.11,1.36V15H6v3c0,1.1 0.9,2 2,2h10c1.66,0 3,-1.34 3,-3V4H9zM7.89,10.41V8.26H5.61L4.57,7.22C5.14,7 5.76,6.88 6.39,6.88c1.34,0 2.59,0.52 3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51 -1.19,0.8 -1.92,0.8C8.75,10.75 8.29,10.63 7.89,10.41zM19,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h-6v-2.59c0.57,-0.23 1.1,-0.57 1.56,-1.03l0.2,-0.2L15.59,14H17v-1.41l-6,-5.97V6h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/history_toggle_off.xml b/compose/material/material/icons/generator/raw-icons/filled/history_toggle_off.xml
deleted file mode 100644
index ece916d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/history_toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.1,19.37l1,1.74c-0.96,0.44 -2.01,0.73 -3.1,0.84v-2.02C13.74,19.84 14.44,19.65 15.1,19.37zM4.07,13H2.05c0.11,1.1 0.4,2.14 0.84,3.1l1.74,-1C4.35,14.44 4.16,13.74 4.07,13zM15.1,4.63l1,-1.74C15.14,2.45 14.1,2.16 13,2.05v2.02C13.74,4.16 14.44,4.35 15.1,4.63zM19.93,11h2.02c-0.11,-1.1 -0.4,-2.14 -0.84,-3.1l-1.74,1C19.65,9.56 19.84,10.26 19.93,11zM8.9,19.37l-1,1.74c0.96,0.44 2.01,0.73 3.1,0.84v-2.02C10.26,19.84 9.56,19.65 8.9,19.37zM11,4.07V2.05c-1.1,0.11 -2.14,0.4 -3.1,0.84l1,1.74C9.56,4.35 10.26,4.16 11,4.07zM18.36,7.17l1.74,-1.01c-0.63,-0.87 -1.4,-1.64 -2.27,-2.27l-1.01,1.74C17.41,6.08 17.92,6.59 18.36,7.17zM4.63,8.9l-1.74,-1C2.45,8.86 2.16,9.9 2.05,11h2.02C4.16,10.26 4.35,9.56 4.63,8.9zM19.93,13c-0.09,0.74 -0.28,1.44 -0.56,2.1l1.74,1c0.44,-0.96 0.73,-2.01 0.84,-3.1H19.93zM16.83,18.36l1.01,1.74c0.87,-0.63 1.64,-1.4 2.27,-2.27l-1.74,-1.01C17.92,17.41 17.41,17.92 16.83,18.36zM7.17,5.64L6.17,3.89C5.29,4.53 4.53,5.29 3.9,6.17l1.74,1.01C6.08,6.59 6.59,6.08 7.17,5.64zM5.64,16.83L3.9,17.83c0.63,0.87 1.4,1.64 2.27,2.27l1.01,-1.74C6.59,17.92 6.08,17.41 5.64,16.83zM13,7h-2v5.41l4.29,4.29l1.41,-1.41L13,11.59V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hive.xml b/compose/material/material/icons/generator/raw-icons/filled/hive.xml
deleted file mode 100644
index e1a58f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hive.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.79,8l1.8,-3l-1.8,-3l-3.58,0l-1.8,3l1.8,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.21,9l-1.8,3l1.8,3l3.58,0l1.8,-3l-1.8,-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.45,11.51l3.59,0l1.79,-3l-1.79,-3l-3.59,0l-1.8,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.04,12.51l-3.59,0l-1.8,3l1.8,3l3.59,0l1.79,-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.55,11.51l1.8,-3l-1.8,-3l-3.59,0l-1.79,3l1.79,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.55,12.51l-3.59,0l-1.79,3l1.79,3l3.59,0l1.8,-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.21,16l-1.8,3l1.8,3l3.58,0l1.8,-3l-1.8,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hls.xml b/compose/material/material/icons/generator/raw-icons/filled/hls.xml
deleted file mode 100644
index 3308a21..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9zM16.5,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1h2V11h1.5v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2V13h-1.5v1C15.5,14.55 15.95,15 16.5,15zM14,15v-1.5h-2.5V9H10v6H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hls_off.xml b/compose/material/material/icons/generator/raw-icons/filled/hls_off.xml
deleted file mode 100644
index f11a05bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hls_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.83,15h1.67c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1h2V11h1.5v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2V13h-1.17L17.83,15zM8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L12.17,15H10v-2.17L8,10.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/holiday_village.xml b/compose/material/material/icons/generator/raw-icons/filled/holiday_village.xml
deleted file mode 100644
index 452f33e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/holiday_village.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20V8.35L13.65,4h-2.83L16,9.18V20H18zM22,20V6.69L19.31,4h-2.83L20,7.52V20H22zM8,4l-6,6v10h5v-5h2v5h5V10L8,4zM9,13H7v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/home.xml b/compose/material/material/icons/generator/raw-icons/filled/home.xml
deleted file mode 100644
index 3a4c7da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20v-6h4v6h5v-8h3L12,3 2,12h3v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/home_max.xml b/compose/material/material/icons/generator/raw-icons/filled/home_max.xml
deleted file mode 100644
index d5ec38b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/home_max.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C2.79,5 1,6.79 1,9v5c0,2.21 1.79,4 4,4h2v1h10v-1h2c2.21,0 4,-1.79 4,-4V9C23,6.79 21.21,5 19,5zM21,14c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/home_mini.xml b/compose/material/material/icons/generator/raw-icons/filled/home_mini.xml
deleted file mode 100644
index 5d9e84e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/home_mini.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5C4.19,5 2,9.48 2,12c0,3.86 3.13,7 6.99,7h6.02c2.69,0 6.99,-2.08 6.99,-7C22,12 22,5 12,5zM12,7c7.64,0 7.99,4.51 8,5H4C4,11.8 4.09,7 12,7zM14.86,17H9.14c-2.1,0 -3.92,-1.24 -4.71,-3h15.15C18.78,15.76 16.96,17 14.86,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/home_repair_service.xml b/compose/material/material/icons/generator/raw-icons/filled/home_repair_service.xml
deleted file mode 100644
index f4916f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/home_repair_service.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16l-2,0l0,-1l-8,0l0,1l-2,0l0,-1l-4,0l0,5l20,0l0,-5l-4,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3V6c0,-1.1 -0.9,-2 -2,-2H9C7.9,4 7,4.9 7,6v2H4c-1.1,0 -2,0.9 -2,2v4h4v-2h2v2h8v-2h2v2h4v-4C22,8.9 21.1,8 20,8zM15,8H9V6h6V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/home_work.xml b/compose/material/material/icons/generator/raw-icons/filled/home_work.xml
deleted file mode 100644
index 2ba7ff2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/home_work.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11l0,10l5,0l0,-6l4,0l0,6l5,0l0,-10l-7,-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10zM19,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/horizontal_distribute.xml b/compose/material/material/icons/generator/raw-icons/filled/horizontal_distribute.xml
deleted file mode 100644
index eb2e40a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/horizontal_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,2h-2v20h2V2zM13.5,7h-3v10h3V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/horizontal_rule.xml b/compose/material/material/icons/generator/raw-icons/filled/horizontal_rule.xml
deleted file mode 100644
index 765877d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/horizontal_rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11h16v2h-16z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/horizontal_split.xml b/compose/material/material/icons/generator/raw-icons/filled/horizontal_split.xml
deleted file mode 100644
index 6e718e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/horizontal_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v-6L3,13v6zM3,11h18L21,9L3,9v2zM3,5v2h18L21,5L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hot_tub.xml b/compose/material/material/icons/generator/raw-icons/filled/hot_tub.xml
deleted file mode 100644
index a64a390..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hot_tub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.15,12c-0.31,-0.22 -0.59,-0.46 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C6.01,9 5,10.01 5,11.25L5,12L2,12v8c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-8L11.15,12zM7,20L5,20v-6h2v6zM11,20L9,20v-6h2v6zM15,20h-2v-6h2v6zM19,20h-2v-6h2v6zM18.65,5.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L18,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71zM14.65,5.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L14,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hotel.xml b/compose/material/material/icons/generator/raw-icons/filled/hotel.xml
deleted file mode 100644
index 966b9cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.66,0 3,-1.34 3,-3S8.66,7 7,7s-3,1.34 -3,3 1.34,3 3,3zM19,7h-8v7L3,14L3,5L1,5v15h2v-3h18v3h2v-9c0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hotel_class.xml b/compose/material/material/icons/generator/raw-icons/filled/hotel_class.xml
deleted file mode 100644
index b2aecb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hotel_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.58,10H1l6.17,4.41L4.83,22L11,17.31L17.18,22l-2.35,-7.59L21,10h-7.58L11,2L8.58,10zM21.36,22l-1.86,-6.01L23.68,13h-3.44l-3.08,2.2l1.46,4.72L21.36,22zM17,8l-1.82,-6l-1.04,3.45L14.91,8H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hourglass_bottom.xml b/compose/material/material/icons/generator/raw-icons/filled/hourglass_bottom.xml
deleted file mode 100644
index bab0c3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hourglass_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,22l-0.01,-6L14,12l3.99,-4.01L18,2H6v6l4,4l-4,3.99V22H18zM8,7.5V4h8v3.5l-4,4L8,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hourglass_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/hourglass_disabled.xml
deleted file mode 100644
index 8d66ecc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hourglass_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4l8,0l0,3.5l-2.84,2.84l1.25,1.25l3.59,-3.58l-0.01,-0.01l0.01,0l0,-6l-12,0l0,1.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41,-1.41L2.1,2.1zM16,20H8v-3.5l2.84,-2.84L16,18.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hourglass_empty.xml b/compose/material/material/icons/generator/raw-icons/filled/hourglass_empty.xml
deleted file mode 100644
index 450dbe5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hourglass_empty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01L6,16.01L6,22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01L18,8L18,2L6,2zM16,16.5L16,20L8,20v-3.5l4,-4 4,4zM12,11.5l-4,-4L8,4h8v3.5l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hourglass_full.xml b/compose/material/material/icons/generator/raw-icons/filled/hourglass_full.xml
deleted file mode 100644
index 780d2b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hourglass_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01H6V22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01H18V2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hourglass_top.xml b/compose/material/material/icons/generator/raw-icons/filled/hourglass_top.xml
deleted file mode 100644
index b84544b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hourglass_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4,-4l4,-3.99V2H6zM16,16.5V20H8v-3.5l4,-4L16,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/house.xml b/compose/material/material/icons/generator/raw-icons/filled/house.xml
deleted file mode 100644
index c199d14..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/house.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3zM10,10c0,-1.1 0.9,-2 2,-2s2,0.9 2,2H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/house_siding.xml b/compose/material/material/icons/generator/raw-icons/filled/house_siding.xml
deleted file mode 100644
index 4bb637b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/house_siding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12zM7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10zM14.57,8H9.43L12,5.69L14.57,8zM7,16v-2h10v2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/houseboat.xml b/compose/material/material/icons/generator/raw-icons/filled/houseboat.xml
deleted file mode 100644
index 08d4dd5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/houseboat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.95,0 -2.1,1 -3.34,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,16 3.24,17 2,17v2c1.9,0 2.17,-1 3.35,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.08,-1 3.32,-1s1.37,1 3.32,1c1.91,0 2.14,-1 3.33,-1c1.18,0 1.45,1 3.35,1v-2c-1.24,0 -1.38,-1 -3.33,-1c-1.91,0 -2.14,1 -3.33,1C14.1,17 13.95,16 12,16zM20.34,11.34l-1.37,1.37C18.78,12.89 18.52,13 18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61L7,9.65V13H5.74c-0.27,0 -0.52,-0.11 -0.71,-0.29l-1.37,-1.37l-1.41,1.41l1.37,1.37C4.18,14.68 4.95,15 5.74,15h12.51c0.8,0 1.56,-0.32 2.12,-0.88l1.37,-1.37L20.34,11.34zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/how_to_reg.xml b/compose/material/material/icons/generator/raw-icons/filled/how_to_reg.xml
deleted file mode 100644
index 4e2a882..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/how_to_reg.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17l3,-2.94c-0.39,-0.04 -0.68,-0.06 -1,-0.06 -2.67,0 -8,1.34 -8,4v2h9l-3,-3zM11,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.47,20.5L12,17l1.4,-1.41 2.07,2.08 5.13,-5.17 1.4,1.41z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/how_to_vote.xml b/compose/material/material/icons/generator/raw-icons/filled/how_to_vote.xml
deleted file mode 100644
index 30d5070..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/how_to_vote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h-0.68l-2,2h1.91L19,17L5,17l1.78,-2h2.05l-2,-2L6,13l-3,3v4c0,1.1 0.89,2 1.99,2L19,22c1.1,0 2,-0.89 2,-2v-4l-3,-3zM17,7.95l-4.95,4.95 -3.54,-3.54 4.95,-4.95L17,7.95zM12.76,2.29L6.39,8.66c-0.39,0.39 -0.39,1.02 0,1.41l4.95,4.95c0.39,0.39 1.02,0.39 1.41,0l6.36,-6.36c0.39,-0.39 0.39,-1.02 0,-1.41L14.16,2.3c-0.38,-0.4 -1.01,-0.4 -1.4,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/html.xml b/compose/material/material/icons/generator/raw-icons/filled/html.xml
deleted file mode 100644
index 7e3acb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/html.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9zM17.5,9H13c-0.55,0 -1,0.45 -1,1v5h1.5v-4.5h1V14H16v-3.51h1V15h1.5v-5C18.5,9.45 18.05,9 17.5,9zM11,9H6v1.5h1.75V15h1.5v-4.5H11V9zM24,15v-1.5h-2.5V9H20v6H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/http.xml b/compose/material/material/icons/generator/raw-icons/filled/http.xml
deleted file mode 100644
index b93de26..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/http.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,11h-2L2.5,9L1,9v6h1.5v-2.5h2L4.5,15L6,15L6,9L4.5,9v2zM7,10.5h1.5L8.5,15L10,15v-4.5h1.5L11.5,9L7,9v1.5zM12.5,10.5L14,10.5L14,15h1.5v-4.5L17,10.5L17,9h-4.5v1.5zM21.5,9L18,9v6h1.5v-2h2c0.8,0 1.5,-0.7 1.5,-1.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5zM21.5,11.5h-2v-1h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/https.xml b/compose/material/material/icons/generator/raw-icons/filled/https.xml
deleted file mode 100644
index d619102..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/https.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM15.1,8L8.9,8L8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hub.xml b/compose/material/material/icons/generator/raw-icons/filled/hub.xml
deleted file mode 100644
index fedb1a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.4,18.2C8.78,18.7 9,19.32 9,20c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3c0.44,0 0.85,0.09 1.23,0.26l1.41,-1.77c-0.92,-1.03 -1.29,-2.39 -1.09,-3.69l-2.03,-0.68C4.98,11.95 4.06,12.5 3,12.5c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3c0,0.07 0,0.14 -0.01,0.21l2.03,0.68c0.64,-1.21 1.82,-2.09 3.22,-2.32l0,-2.16C9.96,5.57 9,4.4 9,3c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,1.4 -0.96,2.57 -2.25,2.91v2.16c1.4,0.23 2.58,1.11 3.22,2.32l2.03,-0.68C18,9.64 18,9.57 18,9.5c0,-1.66 1.34,-3 3,-3s3,1.34 3,3s-1.34,3 -3,3c-1.06,0 -1.98,-0.55 -2.52,-1.37l-2.03,0.68c0.2,1.29 -0.16,2.65 -1.09,3.69l1.41,1.77C17.15,17.09 17.56,17 18,17c1.66,0 3,1.34 3,3s-1.34,3 -3,3s-3,-1.34 -3,-3c0,-0.68 0.22,-1.3 0.6,-1.8l-1.41,-1.77c-1.35,0.75 -3.01,0.76 -4.37,0L8.4,18.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/hvac.xml b/compose/material/material/icons/generator/raw-icons/filled/hvac.xml
deleted file mode 100644
index 54f3b6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/hvac.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c1.01,0 1.91,-0.39 2.62,-1H9.38C10.09,15.61 10.99,16 12,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.56,14h6.89c0.26,-0.45 0.44,-0.96 0.51,-1.5h-7.9C8.12,13.04 8.29,13.55 8.56,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-1.01,0 -1.91,0.39 -2.62,1h5.24C13.91,8.39 13.01,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.56,10c-0.26,0.45 -0.44,0.96 -0.51,1.5h7.9c-0.07,-0.54 -0.24,-1.05 -0.51,-1.5H8.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S15.31,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ice_skating.xml b/compose/material/material/icons/generator/raw-icons/filled/ice_skating.xml
deleted file mode 100644
index fbe9c24..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ice_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8.5C8,8.22 8.22,8 8.5,8h2.52L11,7H8.5C8.22,7 8,6.78 8,6.5C8,6.22 8.22,6 8.5,6H11V3H3v15h3v2H2v2h16c2.76,0 5,-2.24 5,-5h-2c0,1.66 -1.34,3 -3,3h-2v-2h3l0,-2.88c0,-2.1 -1.55,-3.53 -3.03,-3.88l-2.7,-0.67C12.4,10.35 11.7,9.76 11.32,9H8.5C8.22,9 8,8.78 8,8.5zM14,20H8v-2h6V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/icecream.xml b/compose/material/material/icons/generator/raw-icons/filled/icecream.xml
deleted file mode 100644
index 6cfecc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/icecream.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.79,12.4l3.26,6.22l3.17,-6.21c-0.11,-0.08 -0.21,-0.16 -0.3,-0.25C14.08,12.69 13.07,13 12,13s-2.08,-0.31 -2.92,-0.84C8.99,12.25 8.89,12.33 8.79,12.4zM6.83,12.99C5.25,12.9 4,11.6 4,10c0,-1.49 1.09,-2.73 2.52,-2.96C6.75,4.22 9.12,2 12,2s5.25,2.22 5.48,5.04C18.91,7.27 20,8.51 20,10c0,1.59 -1.24,2.9 -2.81,2.99L12.07,23L6.83,12.99z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/image.xml b/compose/material/material/icons/generator/raw-icons/filled/image.xml
deleted file mode 100644
index 8232c4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/image_aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/filled/image_aspect_ratio.xml
deleted file mode 100644
index 6bab9c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/image_aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h-2v2h2v-2zM16,14h-2v2h2v-2zM8,10L6,10v2h2v-2zM12,10h-2v2h2v-2zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/image_not_supported.xml b/compose/material/material/icons/generator/raw-icons/filled/image_not_supported.xml
deleted file mode 100644
index b76d15b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/image_not_supported.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,21.9l-8.49,-8.49l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1 0.9,2 2,2h13.17l2.31,2.31L21.9,21.9zM5,18l3.5,-4.5l2.5,3.01L12.17,15l3,3H5zM21,18.17L5.83,3H19c1.1,0 2,0.9 2,2V18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/image_search.xml b/compose/material/material/icons/generator/raw-icons/filled/image_search.xml
deleted file mode 100644
index 423fe91..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/image_search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13v7L4,20L4,6h5.02c0.05,-0.71 0.22,-1.38 0.48,-2L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5l-2,-2zM16.5,18h-11l2.75,-3.53 1.96,2.36 2.75,-3.54zM19.3,8.89c0.44,-0.7 0.7,-1.51 0.7,-2.39C20,4.01 17.99,2 15.5,2S11,4.01 11,6.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21,13.42 22.42,12 19.3,8.89zM15.5,9C14.12,9 13,7.88 13,6.5S14.12,4 15.5,4 18,5.12 18,6.5 16.88,9 15.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/imagesearch_roller.xml b/compose/material/material/icons/generator/raw-icons/filled/imagesearch_roller.xml
deleted file mode 100644
index d022b7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/imagesearch_roller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/import_contacts.xml b/compose/material/material/icons/generator/raw-icons/filled/import_contacts.xml
deleted file mode 100644
index 99a23c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/import_contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,4.5c-1.95,0 -4.05,0.4 -5.5,1.5c-1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v14.65c0,0.65 0.73,0.45 0.75,0.45C3.1,20.45 5.05,20 6.5,20c1.95,0 4.05,0.4 5.5,1.5c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.65,0 3.35,0.3 4.75,1.05C22.66,21.26 23,20.86 23,20.6V6C21.51,4.88 19.37,4.5 17.5,4.5zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5c-1.7,0 -4.15,0.65 -5.5,1.5V8c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.2,0 2.4,0.15 3.5,0.5V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/import_export.xml b/compose/material/material/icons/generator/raw-icons/filled/import_export.xml
deleted file mode 100644
index bc5c0ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/import_export.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3L5,6.99h3L8,14h2L10,6.99h3L9,3zM16,17.01L16,10h-2v7.01h-3L15,21l4,-3.99h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/important_devices.xml b/compose/material/material/icons/generator/raw-icons/filled/important_devices.xml
deleted file mode 100644
index 64f5520..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/important_devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11.01L18,11c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-9c0,-0.55 -0.45,-0.99 -1,-0.99zM23,20h-5v-7h5v7zM20,2L2,2C0.89,2 0,2.89 0,4v12c0,1.1 0.89,2 2,2h7v2L7,20v2h8v-2h-2v-2h2v-2L2,16L2,4h18v5h2L22,4c0,-1.11 -0.9,-2 -2,-2zM11.97,9L11,6l-0.97,3L7,9l2.47,1.76 -0.94,2.91 2.47,-1.8 2.47,1.8 -0.94,-2.91L15,9h-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/inbox.xml b/compose/material/material/icons/generator/raw-icons/filled/inbox.xml
deleted file mode 100644
index 028c133..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L4.99,3c-1.11,0 -1.98,0.89 -1.98,2L3,19c0,1.1 0.88,2 1.99,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.11 -0.9,-2 -2,-2zM19,15h-4c0,1.66 -1.35,3 -3,3s-3,-1.34 -3,-3L4.99,15L4.99,5L19,5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/incomplete_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/incomplete_circle.xml
deleted file mode 100644
index e7e6e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/incomplete_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-2.76 1.12,-5.26 2.93,-7.07L12,12V2C17.52,2 22,6.48 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/indeterminate_check_box.xml b/compose/material/material/icons/generator/raw-icons/filled/indeterminate_check_box.xml
deleted file mode 100644
index c051293..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/indeterminate_check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM17,13H7v-2h10V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/info.xml b/compose/material/material/icons/generator/raw-icons/filled/info.xml
deleted file mode 100644
index 17255b7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/info.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-6h2v6zM13,9h-2L11,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/input.xml b/compose/material/material/icons/generator/raw-icons/filled/input.xml
deleted file mode 100644
index 421cd06..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/input.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3.01H3c-1.1,0 -2,0.9 -2,2V9h2V4.99h18v14.03H3V15H1v4.01c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98v-14c0,-1.11 -0.9,-2 -2,-2zM11,16l4,-4 -4,-4v3H1v2h10v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_chart.xml
deleted file mode 100644
index 3c3b83f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_chart_outlined.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_chart_outlined.xml
deleted file mode 100644
index cb56dfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_chart_outlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4zM19.5,19.1h-15L4.5,5h15v14.1zM19.5,3h-15c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h15c1.1,0 2,-0.9 2,-2L21.5,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_comment.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_comment.xml
deleted file mode 100644
index 7642cfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4c0,-1.1 -0.9,-2 -2,-2zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_drive_file.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_drive_file.xml
deleted file mode 100644
index 18b3062..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_drive_file.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6L6,2zM13,9L13,3.5L18.5,9L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_emoticon.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_emoticon.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_emoticon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_invitation.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_invitation.xml
deleted file mode 100644
index 675f7ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_invitation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h-5v5h5v-5zM16,1v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2h-1L18,1h-2zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_link.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_link.xml
deleted file mode 100644
index 2c0a73f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9L7,15.1c-1.71,0 -3.1,-1.39 -3.1,-3.1zM8,13h8v-2L8,11v2zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1s-1.39,3.1 -3.1,3.1h-4L13,17h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_page_break.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_page_break.xml
deleted file mode 100644
index 6fb4e2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_page_break.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2v-3H4L4,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8l-6,-6H6C4.9,2 4.01,2.9 4.01,4l0,7H20V8zM13,9V3.5L18.5,9H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insert_photo.xml b/compose/material/material/icons/generator/raw-icons/filled/insert_photo.xml
deleted file mode 100644
index 8232c4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insert_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/insights.xml b/compose/material/material/icons/generator/raw-icons/filled/insights.xml
deleted file mode 100644
index 8421a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/insights.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8c-1.45,0 -2.26,1.44 -1.93,2.51l-3.55,3.56c-0.3,-0.09 -0.74,-0.09 -1.04,0l-2.55,-2.55C12.27,10.45 11.46,9 10,9c-1.45,0 -2.27,1.44 -1.93,2.52l-4.56,4.55C2.44,15.74 1,16.55 1,18c0,1.1 0.9,2 2,2c1.45,0 2.26,-1.44 1.93,-2.51l4.55,-4.56c0.3,0.09 0.74,0.09 1.04,0l2.55,2.55C12.73,16.55 13.54,18 15,18c1.45,0 2.27,-1.44 1.93,-2.52l3.56,-3.55C21.56,12.26 23,11.45 23,10C23,8.9 22.1,8 21,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9l0.94,-2.07l2.06,-0.93l-2.06,-0.93l-0.94,-2.07l-0.92,2.07l-2.08,0.93l2.08,0.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,11l0.5,-2l2,-0.5l-2,-0.5l-0.5,-2l-0.5,2l-2,0.5l2,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/install_desktop.xml b/compose/material/material/icons/generator/raw-icons/filled/install_desktop.xml
deleted file mode 100644
index 5306f45..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/install_desktop.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17H4V5h8V3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2v-3h-2V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14l5,-5l-1.41,-1.41l-2.59,2.58l0,-7.17l-2,0l0,7.17l-2.59,-2.58l-1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/install_mobile.xml b/compose/material/material/icons/generator/raw-icons/filled/install_mobile.xml
deleted file mode 100644
index 7bdb3b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/install_mobile.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h7V1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-5h-2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14l5,-5l-1.41,-1.41l-2.59,2.58l0,-7.17l-2,0l0,7.17l-2.59,-2.58l-1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/integration_instructions.xml b/compose/material/material/icons/generator/raw-icons/filled/integration_instructions.xml
deleted file mode 100644
index 854b451..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/integration_instructions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C4.86,3 4.73,3.01 4.6,3.04C4.21,3.12 3.86,3.32 3.59,3.59c-0.18,0.18 -0.33,0.4 -0.43,0.64C3.06,4.46 3,4.72 3,5v14c0,0.27 0.06,0.54 0.16,0.78c0.1,0.24 0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55C4.73,20.99 4.86,21 5,21h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,14.17l-1.41,1.42L6,12l3.59,-3.59L11,9.83L8.83,12L11,14.17zM12,4.25c-0.41,0 -0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75s0.75,0.34 0.75,0.75S12.41,4.25 12,4.25zM14.41,15.59L13,14.17L15.17,12L13,9.83l1.41,-1.42L18,12L14.41,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/interests.xml b/compose/material/material/icons/generator/raw-icons/filled/interests.xml
deleted file mode 100644
index ab45afd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/interests.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.02,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.23,13 7.02,13zM13,13v8h8v-8H13zM7,2l-5,9h10L7,2zM19.25,2.5c-1.06,0 -1.81,0.56 -2.25,1.17c-0.44,-0.61 -1.19,-1.17 -2.25,-1.17C13.19,2.5 12,3.78 12,5.25c0,2 2.42,3.42 5,5.75c2.58,-2.33 5,-3.75 5,-5.75C22,3.78 20.81,2.5 19.25,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/interpreter_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/interpreter_mode.xml
deleted file mode 100644
index f5c71e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/interpreter_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5v-2.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5V15C22,15.83 21.33,16.5 20.5,16.5zM20,20h1c0,0 0,-1.54 0,-1.54c1.69,-0.24 3,-1.7 3,-3.46h-1c0,1.38 -1.12,2.5 -2.5,2.5S18,16.38 18,15h-1c0,1.76 1.31,3.22 3,3.46C20,18.46 20,20 20,20zM9,12c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4c0.47,0 0.92,0.08 1.34,0.23C9.5,5.26 9,6.57 9,8c0,1.43 0.5,2.74 1.34,3.77C9.92,11.92 9.47,12 9,12zM7.11,13.13C5.79,14.05 5,15.57 5,17.22V20H1v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66C3.85,13.92 5.37,13.37 7.11,13.13zM11,8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S11,10.21 11,8zM18.32,20c-1.67,-0.81 -2.82,-2.52 -2.82,-4.5c0,-0.89 0.23,-1.73 0.64,-2.45C15.77,13.02 15.39,13 15,13c-2.53,0 -4.71,0.7 -6.39,1.56C7.61,15.07 7,16.1 7,17.22V20L18.32,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/inventory.xml b/compose/material/material/icons/generator/raw-icons/filled/inventory.xml
deleted file mode 100644
index aff9a31..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/inventory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1,0 -2,0.9 -2,2v3.01c0,0.72 0.43,1.34 1,1.69L3,20c0,1.1 1.1,2 2,2h14c0.9,0 2,-0.9 2,-2L21,8.7c0.57,-0.35 1,-0.97 1,-1.69L22,4c0,-1.1 -1,-2 -2,-2zM15,14L9,14v-2h6v2zM20,7L4,7L4,4l16,-0.02L20,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/inventory_2.xml b/compose/material/material/icons/generator/raw-icons/filled/inventory_2.xml
deleted file mode 100644
index 42f0755..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/inventory_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C3,2 2,2.9 2,4v3.01C2,7.73 2.43,8.35 3,8.7V20c0,1.1 1.1,2 2,2h14c0.9,0 2,-0.9 2,-2V8.7c0.57,-0.35 1,-0.97 1,-1.69V4C22,2.9 21,2 20,2zM15,14H9v-2h6V14zM20,7H4V4h16V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/invert_colors.xml b/compose/material/material/icons/generator/raw-icons/filled/invert_colors.xml
deleted file mode 100644
index 8f0bc38..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/invert_colors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.81L12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.56 0.62,-3.03 1.75,-4.14L12,4.81M6.35,7.56L6.35,7.56C4.9,8.99 4,10.96 4,13.13C4,17.48 7.58,21 12,21c4.42,0 8,-3.52 8,-7.87c0,-2.17 -0.9,-4.14 -2.35,-5.57l0,0L12,2L6.35,7.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/invert_colors_off.xml b/compose/material/material/icons/generator/raw-icons/filled/invert_colors_off.xml
deleted file mode 100644
index 375722c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/invert_colors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31 -1.6,2.94 -1.6,4.7C4,17.48 7.58,21 12,21c1.75,0 3.36,-0.56 4.67,-1.5l3.1,3.1L21.19,21.19zM12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.19 0.36,-2.32 1.02,-3.28L12,14.83V19zM8.38,5.56L12,2l5.65,5.56l0,0C19.1,8.99 20,10.96 20,13.13c0,1.18 -0.27,2.29 -0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ios_share.xml b/compose/material/material/icons/generator/raw-icons/filled/ios_share.xml
deleted file mode 100644
index f3e5683..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ios_share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5l-1.42,1.42 -1.59,-1.59L12.99,16h-1.98L11.01,4.83L9.42,6.42 8,5l4,-4 4,4zM20,10v11c0,1.1 -0.9,2 -2,2L6,23c-1.11,0 -2,-0.9 -2,-2L4,10c0,-1.11 0.89,-2 2,-2h3v2L6,10v11h12L18,10h-3L15,8h3c1.1,0 2,0.89 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/iron.xml b/compose/material/material/icons/generator/raw-icons/filled/iron.xml
deleted file mode 100644
index 6e85abb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/iron.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6c-1.66,0 -3,1.34 -3,3v4c0,0.55 -0.45,1 -1,1v-4c0,-1.66 -1.34,-3 -3,-3h-4c-1.66,0 -3,1.34 -3,3h2c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v1H6c-2.21,0 -4,1.79 -4,4v3h15v-2c1.66,0 3,-1.34 3,-3V9c0,-0.55 0.45,-1 1,-1h1V6H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/iso.xml b/compose/material/material/icons/generator/raw-icons/filled/iso.xml
deleted file mode 100644
index a98500b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/iso.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM5.5,7.5h2v-2L9,5.5v2h2L11,9L9,9v2L7.5,11L7.5,9h-2L5.5,7.5zM19,19L5,19L19,5v14zM17,17v-1.5h-5L12,17h5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/javascript.xml b/compose/material/material/icons/generator/raw-icons/filled/javascript.xml
deleted file mode 100644
index 81408bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/javascript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14v-1h1.5v0.5h2v-1H13c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1h-1.5v-0.5h-2v1H16c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1h-3C12.45,15 12,14.55 12,14zM9,9v4.5H7.5v-1H6v1C6,14.33 6.67,15 7.5,15H9c0.83,0 1.5,-0.67 1.5,-1.5V9C10.5,9 9.83,9 9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/join_full.xml b/compose/material/material/icons/generator/raw-icons/filled/join_full.xml
deleted file mode 100644
index ca61971..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/join_full.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c2.8,2.34 3.03,5.53 3.03,6.5c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/join_inner.xml b/compose/material/material/icons/generator/raw-icons/filled/join_inner.xml
deleted file mode 100644
index 9b7010f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/join_inner.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.04,16.87C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C9.92,17.99 9.43,17.43 9.04,16.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/join_left.xml b/compose/material/material/icons/generator/raw-icons/filled/join_left.xml
deleted file mode 100644
index d5b460b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/join_left.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/join_right.xml b/compose/material/material/icons/generator/raw-icons/filled/join_right.xml
deleted file mode 100644
index 111631a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/join_right.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7s-3.14,-7 -7,-7c-0.9,0 -1.75,0.19 -2.53,0.5C16.27,7.84 16.5,11.03 16.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19c0.9,0 1.75,-0.19 2.53,-0.5c-0.61,-0.51 -1.1,-1.07 -1.49,-1.63C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7S4.14,19 8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/kayaking.xml b/compose/material/material/icons/generator/raw-icons/filled/kayaking.xml
deleted file mode 100644
index 9860090..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/kayaking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM12,5.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,5.5 12,5.5zM24,17.5c0,0 -1.52,0.71 -3.93,1.37c-0.82,-0.23 -1.53,-0.75 -2.07,-1.37c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.54,0.61 -1.25,1.13 -2.07,1.37C1.52,18.21 0,17.5 0,17.5s2.93,-1.36 7.13,-2.08l1.35,-4.17c0.31,-0.95 1.32,-1.47 2.27,-1.16c0.09,0.03 0.19,0.07 0.27,0.11l0,0l2.47,1.3l2.84,-1.5l1.65,-3.71l-0.51,-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87 24,17.5 24,17.5zM15.02,12.96l-1.52,0.8l-1.75,-0.92l-0.71,2.17C11.36,15.01 11.68,15 12,15c0.71,0 1.4,0.03 2.07,0.08L15.02,12.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/kebab_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/kebab_dining.xml
deleted file mode 100644
index 6e9774a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/kebab_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.75,8H11v5H7.75v1H8.5c1.38,0 2.5,1.12 2.5,2.5c0,1.38 -1.12,2.5 -2.5,2.5H7.75v4h-1.5v-4H5.5C4.12,19 3,17.88 3,16.5C3,15.12 4.12,14 5.5,14h0.75v-1H3V8h3.25V7H5.5C4.12,7 3,5.88 3,4.5C3,3.12 4.12,2 5.5,2h0.75V1h1.5v1H8.5C9.88,2 11,3.12 11,4.5C11,5.88 9.88,7 8.5,7H7.75V8zM17.75,7h0.75C19.88,7 21,5.88 21,4.5C21,3.12 19.88,2 18.5,2h-0.75V1h-1.5v1H15.5C14.12,2 13,3.12 13,4.5C13,5.88 14.12,7 15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0 -2.5,1.12 -2.5,2.5c0,1.38 1.12,2.5 2.5,2.5h0.75v4h1.5v-4h0.75c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.38 -1.12,-2.5 -2.5,-2.5h-0.75v-1H21V8h-3.25V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/key.xml b/compose/material/material/icons/generator/raw-icons/filled/key.xml
deleted file mode 100644
index d8b0448..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10h-8.35C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H13l2,2l2,-2l2,2l4,-4.04L21,10zM7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.65 1.35,-3 3,-3s3,1.35 3,3C10,13.65 8.65,15 7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/key_off.xml b/compose/material/material/icons/generator/raw-icons/filled/key_off.xml
deleted file mode 100644
index 2318203..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.91,14.09L17,14l2,2l4,-4.04L21,10h-8.17L16.91,14.09zM3.98,6.81C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.21,0 4.15,-1.2 5.18,-2.99l7.59,7.59l1.41,-1.41L2.81,2.81L1.39,4.22L3.98,6.81zM9.91,12.74C9.58,14.03 8.4,15 7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.4 0.97,-2.58 2.26,-2.91L9.91,12.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard.xml
deleted file mode 100644
index 533fc15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5L4,5c-1.1,0 -1.99,0.9 -1.99,2L2,17c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM11,8h2v2h-2L11,8zM11,11h2v2h-2v-2zM8,8h2v2L8,10L8,8zM8,11h2v2L8,13v-2zM7,13L5,13v-2h2v2zM7,10L5,10L5,8h2v2zM16,17L8,17v-2h8v2zM16,13h-2v-2h2v2zM16,10h-2L14,8h2v2zM19,13h-2v-2h2v2zM19,10h-2L17,8h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_alt.xml
deleted file mode 100644
index abaeb93..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4H3C1.9,4 1,4.9 1,6v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4zM7,12v2H5v-2H7zM5,10V8h2v2H5zM11,12v2H9v-2H11zM9,10V8h2v2H9zM16,16v1H8v-1H16zM15,12v2h-2v-2H15zM13,10V8h2v2H13zM17,14v-2h2v2H17zM19,10h-2V8h2V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_down.xml
deleted file mode 100644
index 884bee1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,8.59L12,13.17l4.59,-4.58L18,10l-6,6 -6,-6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_left.xml
deleted file mode 100644
index 60a7180..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,16.59L10.83,12l4.58,-4.59L14,6l-6,6 6,6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_right.xml
deleted file mode 100644
index 7f7b33e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.59,16.59L13.17,12 8.59,7.41 10,6l6,6 -6,6 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_up.xml
deleted file mode 100644
index 9b15755..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_arrow_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,15.41L12,10.83l4.59,4.58L18,14l-6,-6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_backspace.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_backspace.xml
deleted file mode 100644
index b7672a0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11H6.83l3.58,-3.59L9,6l-6,6 6,6 1.41,-1.41L6.83,13H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_capslock.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_capslock.xml
deleted file mode 100644
index 519081e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_capslock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.41L16.59,13 18,11.59l-6,-6 -6,6L7.41,13 12,8.41zM6,18h12v-2H6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_command_key.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_command_key.xml
deleted file mode 100644
index ace30b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_command_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,3C15.57,3 14,4.57 14,6.5V8h-4V6.5C10,4.57 8.43,3 6.5,3S3,4.57 3,6.5S4.57,10 6.5,10H8v4H6.5C4.57,14 3,15.57 3,17.5S4.57,21 6.5,21s3.5,-1.57 3.5,-3.5V16h4v1.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S19.43,14 17.5,14H16v-4h1.5c1.93,0 3.5,-1.57 3.5,-3.5S19.43,3 17.5,3L17.5,3zM16,8V6.5C16,5.67 16.67,5 17.5,5S19,5.67 19,6.5S18.33,8 17.5,8H16L16,8zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5V8H6.5L6.5,8zM10,14v-4h4v4H10L10,14zM17.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5V16h1.5c0.83,0 1.5,0.67 1.5,1.5S18.33,19 17.5,19L17.5,19zM6.5,19C5.67,19 5,18.33 5,17.5S5.67,16 6.5,16H8v1.5C8,18.33 7.33,19 6.5,19L6.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_control_key.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_control_key.xml
deleted file mode 100644
index 409e44c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_control_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12l1.41,1.41l5.59,-5.58l5.59,5.58l1.41,-1.41l-7,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_down.xml
deleted file mode 100644
index 985ba4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_down.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.41l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_left.xml
deleted file mode 100644
index b5e455e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_left.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.59,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_right.xml
deleted file mode 100644
index 0a22b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_right.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_up.xml
deleted file mode 100644
index 105da37..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_double_arrow_up.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17.59l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_hide.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_hide.xml
deleted file mode 100644
index dc85d2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_hide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3c-1.1,0 -1.99,0.9 -1.99,2L2,15c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM11,6h2v2h-2L11,6zM11,9h2v2h-2L11,9zM8,6h2v2L8,8L8,6zM8,9h2v2L8,11L8,9zM7,11L5,11L5,9h2v2zM7,8L5,8L5,6h2v2zM16,15L8,15v-2h8v2zM16,11h-2L14,9h2v2zM16,8h-2L14,6h2v2zM19,11h-2L17,9h2v2zM19,8h-2L17,6h2v2zM12,23l4,-4L8,19l4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_option_key.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_option_key.xml
deleted file mode 100644
index 9970f59..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_option_key.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5l-6,0l0,2l4.85,0l6.92,12l6.23,0l0,-2l-5.07,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_return.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_return.xml
deleted file mode 100644
index b3a8cc1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7v4H5.83l3.58,-3.59L8,6l-6,6 6,6 1.41,-1.41L5.83,13H21V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_tab.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_tab.xml
deleted file mode 100644
index 4949420..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_tab.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.59,7.41L15.17,11H1v2h14.17l-3.59,3.59L13,18l6,-6 -6,-6 -1.41,1.41zM20,6v12h2V6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/keyboard_voice.xml b/compose/material/material/icons/generator/raw-icons/filled/keyboard_voice.xml
deleted file mode 100644
index de0050b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/keyboard_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c1.66,0 2.99,-1.34 2.99,-3L15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6v6c0,1.66 1.34,3 3,3zM17.3,12c0,3 -2.54,5.1 -5.3,5.1S6.7,15 6.7,12L5,12c0,3.42 2.72,6.23 6,6.72L11,22h2v-3.28c3.28,-0.48 6,-3.3 6,-6.72h-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/king_bed.xml b/compose/material/material/icons/generator/raw-icons/filled/king_bed.xml
deleted file mode 100644
index 77b1991..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/king_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V7c0,-1.1 -0.9,-2 -2,-2H6C4.9,5 4,5.9 4,7v3c-1.1,0 -2,0.9 -2,2v5h1.33L4,19h1l0.67,-2h12.67L19,19h1l0.67,-2H22v-5C22,10.9 21.1,10 20,10zM11,10H6V7h5V10zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/kitchen.xml b/compose/material/material/icons/generator/raw-icons/filled/kitchen.xml
deleted file mode 100644
index b64d06a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/kitchen.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9V4c0,-1.1 -0.9,-2 -2,-2H6C4.9,2 4,2.9 4,4v5H20zM8,5h2v3H8V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11v9c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-9H4zM10,17H8v-5h2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/kitesurfing.xml b/compose/material/material/icons/generator/raw-icons/filled/kitesurfing.xml
deleted file mode 100644
index 75fb426..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/kitesurfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S6,4.1 6,3zM20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22zM21,13.28c0,1.44 -2.19,3.62 -5.04,5.58C15.65,18.95 15.33,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.94,0 -1.81,-0.41 -2.49,-0.99c0.46,-0.39 0.96,-0.78 1.49,-1.17l-1.55,-2.97C6.15,13.3 6,12.64 6,12V8c0,-1.1 0.9,-2 2,-2h3c1.38,0 2.63,-0.56 3.54,-1.46l1.41,1.41C14.68,7.21 12.93,8 11,8H9.6l0,3.5h2.8l1.69,1.88c1.95,-0.84 3.77,-1.38 5.06,-1.38C19.99,12 21,12.25 21,13.28zM12.2,14.27l-0.7,-0.77L9,13.6l0.83,2.01C10.42,15.23 11.64,14.55 12.2,14.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/label.xml b/compose/material/material/icons/generator/raw-icons/filled/label.xml
deleted file mode 100644
index e2b966a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/label.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,5.84C17.27,5.33 16.67,5 16,5L5,5.01C3.9,5.01 3,5.9 3,7v10c0,1.1 0.9,1.99 2,1.99L16,19c0.67,0 1.27,-0.33 1.63,-0.84L22,12l-4.37,-6.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/label_important.xml b/compose/material/material/icons/generator/raw-icons/filled/label_important.xml
deleted file mode 100644
index 1d095cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/label_important.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18.99l11,0.01c0.67,0 1.27,-0.33 1.63,-0.84L20.5,12l-4.37,-6.16c-0.36,-0.51 -0.96,-0.84 -1.63,-0.84l-11,0.01L8.34,12 3.5,18.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/label_off.xml b/compose/material/material/icons/generator/raw-icons/filled/label_off.xml
deleted file mode 100644
index 87d8566..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/label_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.25,2.75l17,17L19,21l-2,-2H5c-1.1,0 -2,-0.9 -2,-2V7c0,-0.55 0.23,-1.05 0.59,-1.41L2,4l1.25,-1.25zM22,12l-4.37,-6.16C17.27,5.33 16.67,5 16,5H8l11,11 3,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lan.xml b/compose/material/material/icons/generator/raw-icons/filled/lan.xml
deleted file mode 100644
index 6d52813..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,22l8,0l0,-7l-3,0l0,-4l-5,0l0,-2l3,0l0,-7l-8,0l0,7l3,0l0,2l-5,0l0,4l-3,0l0,7l8,0l0,-7l-3,0l0,-2l8,0l0,2l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/landscape.xml b/compose/material/material/icons/generator/raw-icons/filled/landscape.xml
deleted file mode 100644
index 22347e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-3.75,5 2.85,3.8 -1.6,1.2C9.81,13.75 7,10 7,10l-6,8h22L14,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/landslide.xml b/compose/material/material/icons/generator/raw-icons/filled/landslide.xml
deleted file mode 100644
index 3a40aed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/landslide.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.47,13.79l-2.58,-1.03l-6.89,2.29l-4,-1.54l0,2.1l4,1.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.57,11.42l-2.57,-3.42l-6,0l0,3.61l4,1.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19.05l-4,-1.33l0,4.28l20,0l-4.97,-6.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6l0,-5l-5,-1l-3,2l0,4l3,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,7l-2.5,2l0,3l2.5,2l4.5,-2l0,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/language.xml b/compose/material/material/icons/generator/raw-icons/filled/language.xml
deleted file mode 100644
index 3f70646..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM18.92,8h-2.95c-0.32,-1.25 -0.78,-2.45 -1.38,-3.56 1.84,0.63 3.37,1.91 4.33,3.56zM12,4.04c0.83,1.2 1.48,2.53 1.91,3.96h-3.82c0.43,-1.43 1.08,-2.76 1.91,-3.96zM4.26,14C4.1,13.36 4,12.69 4,12s0.1,-1.36 0.26,-2h3.38c-0.08,0.66 -0.14,1.32 -0.14,2 0,0.68 0.06,1.34 0.14,2L4.26,14zM5.08,16h2.95c0.32,1.25 0.78,2.45 1.38,3.56 -1.84,-0.63 -3.37,-1.9 -4.33,-3.56zM8.03,8L5.08,8c0.96,-1.66 2.49,-2.93 4.33,-3.56C8.81,5.55 8.35,6.75 8.03,8zM12,19.96c-0.83,-1.2 -1.48,-2.53 -1.91,-3.96h3.82c-0.43,1.43 -1.08,2.76 -1.91,3.96zM14.34,14L9.66,14c-0.09,-0.66 -0.16,-1.32 -0.16,-2 0,-0.68 0.07,-1.35 0.16,-2h4.68c0.09,0.65 0.16,1.32 0.16,2 0,0.68 -0.07,1.34 -0.16,2zM14.59,19.56c0.6,-1.11 1.06,-2.31 1.38,-3.56h2.95c-0.96,1.65 -2.49,2.93 -4.33,3.56zM16.36,14c0.08,-0.66 0.14,-1.32 0.14,-2 0,-0.68 -0.06,-1.34 -0.14,-2h3.38c0.16,0.64 0.26,1.31 0.26,2s-0.1,1.36 -0.26,2h-3.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/laptop.xml b/compose/material/material/icons/generator/raw-icons/filled/laptop.xml
deleted file mode 100644
index 699cf9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/laptop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v10c0,1.1 0.9,2 2,2H0v2h24v-2H20zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/laptop_chromebook.xml b/compose/material/material/icons/generator/raw-icons/filled/laptop_chromebook.xml
deleted file mode 100644
index efe55f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/laptop_chromebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18L22,3L2,3v15L0,18v2h24v-2h-2zM14,18h-4v-1h4v1zM20,15L4,15L4,5h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/laptop_mac.xml b/compose/material/material/icons/generator/raw-icons/filled/laptop_mac.xml
deleted file mode 100644
index b6b7675..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/laptop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2L0,18c0,1.1 0.9,2 2,2h20c1.1,0 2,-0.9 2,-2h-4zM4,5h16v11L4,16L4,5zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/laptop_windows.xml b/compose/material/material/icons/generator/raw-icons/filled/laptop_windows.xml
deleted file mode 100644
index 08f704e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/laptop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18v-1c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2v1H0v2h24v-2h-4zM4,5h16v10H4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/last_page.xml b/compose/material/material/icons/generator/raw-icons/filled/last_page.xml
deleted file mode 100644
index 4b09f2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/last_page.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.59,7.41L10.18,12l-4.59,4.59L7,18l6,-6 -6,-6zM16,6h2v12h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/launch.xml b/compose/material/material/icons/generator/raw-icons/filled/launch.xml
deleted file mode 100644
index b2dd7f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/launch.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/layers.xml b/compose/material/material/icons/generator/raw-icons/filled/layers.xml
deleted file mode 100644
index 478fe9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/layers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,18.54l-7.37,-5.73L3,14.07l9,7 9,-7 -1.63,-1.27 -7.38,5.74zM12,16l7.36,-5.73L21,9l-9,-7 -9,7 1.63,1.27L12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/layers_clear.xml b/compose/material/material/icons/generator/raw-icons/filled/layers_clear.xml
deleted file mode 100644
index 0a33fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/layers_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.81,14.99l1.19,-0.92 -1.43,-1.43 -1.19,0.92 1.43,1.43zM19.36,10.27L21,9l-9,-7 -2.91,2.27 7.87,7.88 2.4,-1.88zM3.27,1L2,2.27l4.22,4.22L3,9l1.63,1.27L12,16l2.1,-1.63 1.43,1.43L12,18.54l-7.37,-5.73L3,14.07l9,7 4.95,-3.85L20.73,21 22,19.73 3.27,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/leaderboard.xml b/compose/material/material/icons/generator/raw-icons/filled/leaderboard.xml
deleted file mode 100644
index 78b2f8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/leaderboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,21H2V9h5.5V21zM14.75,3h-5.5v18h5.5V3zM22,11h-5.5v10H22V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/leak_add.xml b/compose/material/material/icons/generator/raw-icons/filled/leak_add.xml
deleted file mode 100644
index 975e8fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/leak_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3L3,3v3c1.66,0 3,-1.34 3,-3zM14,3h-2c0,4.97 -4.03,9 -9,9v2c6.08,0 11,-4.93 11,-11zM10,3L8,3c0,2.76 -2.24,5 -5,5v2c3.87,0 7,-3.13 7,-7zM10,21h2c0,-4.97 4.03,-9 9,-9v-2c-6.07,0 -11,4.93 -11,11zM18,21h3v-3c-1.66,0 -3,1.34 -3,3zM14,21h2c0,-2.76 2.24,-5 5,-5v-2c-3.87,0 -7,3.13 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/leak_remove.xml b/compose/material/material/icons/generator/raw-icons/filled/leak_remove.xml
deleted file mode 100644
index 3d93108..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/leak_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3L8,3c0,0.37 -0.04,0.72 -0.12,1.06l1.59,1.59C9.81,4.84 10,3.94 10,3zM3,4.27l2.84,2.84C5.03,7.67 4.06,8 3,8v2c1.61,0 3.09,-0.55 4.27,-1.46L8.7,9.97C7.14,11.24 5.16,12 3,12v2c2.71,0 5.19,-0.99 7.11,-2.62l2.5,2.5C10.99,15.81 10,18.29 10,21h2c0,-2.16 0.76,-4.14 2.03,-5.69l1.43,1.43C14.55,17.91 14,19.39 14,21h2c0,-1.06 0.33,-2.03 0.89,-2.84L19.73,21 21,19.73 4.27,3 3,4.27zM14,3h-2c0,1.5 -0.37,2.91 -1.02,4.16l1.46,1.46C13.42,6.98 14,5.06 14,3zM19.94,16.12c0.34,-0.08 0.69,-0.12 1.06,-0.12v-2c-0.94,0 -1.84,0.19 -2.66,0.52l1.6,1.6zM15.38,11.56l1.46,1.46C18.09,12.37 19.5,12 21,12v-2c-2.06,0 -3.98,0.58 -5.62,1.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/leave_bags_at_home.xml b/compose/material/material/icons/generator/raw-icons/filled/leave_bags_at_home.xml
deleted file mode 100644
index 2ccc64a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/leave_bags_at_home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.83,9h0.92v0.92l1.75,1.75V9H16v4.17l3,3V8c0,-1.1 -0.9,-2 -2,-2h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H8.83L11.83,9zM11,4h2v2h-2V4zM21.19,21.19L2.81,2.81L1.39,4.22l3.63,3.63C5.02,7.9 5,7.95 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1s1,-0.45 1,-1h6c0,0.55 0.45,1 1,1s1,-0.45 1,-1c0.34,0 0.65,-0.09 0.93,-0.24l1.85,1.85L21.19,21.19zM8,18v-7.17l1.5,1.5V18H8zM11.25,18v-3.92l1.5,1.5V18H11.25zM14.5,18v-0.67L15.17,18H14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/legend_toggle.xml b/compose/material/material/icons/generator/raw-icons/filled/legend_toggle.xml
deleted file mode 100644
index ea17c5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/legend_toggle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15H4v-2h16V15zM20,17H4v2h16V17zM15,11l5,-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92,-3.61L15,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lens.xml b/compose/material/material/icons/generator/raw-icons/filled/lens.xml
deleted file mode 100644
index e45ef6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lens_blur.xml b/compose/material/material/icons/generator/raw-icons/filled/lens_blur.xml
deleted file mode 100644
index cb8a385..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lens_blur.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,13 6,13zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,17 6,17zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,9 6,9zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,9.5 3,9.5zM6,5C5.45,5 5,5.45 5,6s0.45,1 1,1s1,-0.45 1,-1S6.55,5 6,5zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5S21.28,9.5 21,9.5s-0.5,0.22 -0.5,0.5S20.72,10.5 21,10.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S13.45,7 14,7zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5S14.28,2.5 14,2.5S13.5,2.72 13.5,3S13.72,3.5 14,3.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,13.5 3,13.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S10.28,20.5 10,20.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5S10.28,2.5 10,2.5S9.5,2.72 9.5,3S9.72,3.5 10,3.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1S9,5.45 9,6S9.45,7 10,7zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,12.5 10,12.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,13 18,13zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,17 18,17zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,9 18,9zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,5 18,5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S21.28,13.5 21,13.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S14.55,17 14,17zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S14.28,20.5 14,20.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,8.5 10,8.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S10.55,17 10,17zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,12.5 14,12.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,8.5 14,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/library_add.xml b/compose/material/material/icons/generator/raw-icons/filled/library_add.xml
deleted file mode 100644
index bbc546c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/library_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM19,11h-4v4h-2v-4L9,11L9,9h4L13,5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/library_add_check.xml b/compose/material/material/icons/generator/raw-icons/filled/library_add_check.xml
deleted file mode 100644
index 01c1586..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/library_add_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM12.47,14L9,10.5l1.4,-1.41 2.07,2.08L17.6,6 19,7.41 12.47,14zM4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/library_books.xml b/compose/material/material/icons/generator/raw-icons/filled/library_books.xml
deleted file mode 100644
index acebe2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/library_books.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM19,11L9,11L9,9h10v2zM15,15L9,15v-2h6v2zM19,7L9,7L9,5h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/library_music.xml b/compose/material/material/icons/generator/raw-icons/filled/library_music.xml
deleted file mode 100644
index 2ba294b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/library_music.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM18,7h-3v5.5c0,1.38 -1.12,2.5 -2.5,2.5S10,13.88 10,12.5s1.12,-2.5 2.5,-2.5c0.57,0 1.08,0.19 1.5,0.51L14,5h4v2zM4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/light.xml b/compose/material/material/icons/generator/raw-icons/filled/light.xml
deleted file mode 100644
index 1eb5c7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/light.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.06V3h-2v3.06c-4.5,0.5 -8,4.31 -8,8.93C3,16.1 3.9,17 5.01,17H8c0,2.21 1.79,4 4,4s4,-1.79 4,-4h2.99C20.1,17 21,16.1 21,14.99C21,10.37 17.5,6.56 13,6.06zM12,15H5c0,-3.86 3.14,-7 7,-7s7,3.14 7,7H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/light_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/light_mode.xml
deleted file mode 100644
index 8880e07..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/light_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7L12,7zM2,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S1.45,13 2,13zM20,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S19.45,13 20,13zM11,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V2c0,-0.55 -0.45,-1 -1,-1S11,1.45 11,2zM11,20v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1C11.45,19 11,19.45 11,20zM5.99,4.58c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0s0.39,-1.03 0,-1.41L5.99,4.58zM18.36,16.95c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0c0.39,-0.39 0.39,-1.03 0,-1.41L18.36,16.95zM19.42,5.99c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L19.42,5.99zM7.05,18.36c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L7.05,18.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lightbulb.xml b/compose/material/material/icons/generator/raw-icons/filled/lightbulb.xml
deleted file mode 100644
index b248073..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lightbulb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,21c0,0.5 0.4,1 1,1h4c0.6,0 1,-0.5 1,-1v-1L9,20v1zM12,2C8.1,2 5,5.1 5,9c0,2.4 1.2,4.5 3,5.7L8,17c0,0.5 0.4,1 1,1h6c0.6,0 1,-0.5 1,-1v-2.3c1.8,-1.3 3,-3.4 3,-5.7 0,-3.9 -3.1,-7 -7,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lightbulb_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/lightbulb_circle.xml
deleted file mode 100644
index a4d538a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lightbulb_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,19c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C13.5,18.33 12.83,19 12,19zM15,16.5H9V15h6V16.5zM14.97,14H9.03C7.8,13.09 7,11.64 7,10c0,-2.76 2.24,-5 5,-5s5,2.24 5,5C17,11.64 16.2,13.09 14.97,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/line_axis.xml b/compose/material/material/icons/generator/raw-icons/filled/line_axis.xml
deleted file mode 100644
index 94bb0ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/line_axis.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.43l-1.41,-1.41l-4.03,4.53l-7.06,-6.55l-7.5,7.51l1.5,1.5l6.14,-6.15l5.59,5.18l-1.73,1.95l-4,-4l-7.5,7.51l1.5,1.5l6,-6.01l4,4l3.19,-3.59l3.9,3.61l1.41,-1.41l-3.98,-3.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/line_style.xml b/compose/material/material/icons/generator/raw-icons/filled/line_style.xml
deleted file mode 100644
index 9261f47..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/line_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,16h5v-2H3V16zM9.5,16h5v-2h-5V16zM16,16h5v-2h-5V16zM3,20h2v-2H3V20zM7,20h2v-2H7V20zM11,20h2v-2h-2V20zM15,20h2v-2h-2V20zM19,20h2v-2h-2V20zM3,12h8v-2H3V12zM13,12h8v-2h-8V12zM3,4v4h18V4H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/line_weight.xml b/compose/material/material/icons/generator/raw-icons/filled/line_weight.xml
deleted file mode 100644
index 1fe7b04..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/line_weight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v-2H3V17zM3,20h18v-1H3V20zM3,13h18v-3H3V13zM3,4v4h18V4H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/linear_scale.xml b/compose/material/material/icons/generator/raw-icons/filled/linear_scale.xml
deleted file mode 100644
index 206db85..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/linear_scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5c-1.03,0 -1.9,0.62 -2.29,1.5h-2.92C13.9,10.12 13.03,9.5 12,9.5s-1.9,0.62 -2.29,1.5H6.79C6.4,10.12 5.53,9.5 4.5,9.5C3.12,9.5 2,10.62 2,12s1.12,2.5 2.5,2.5c1.03,0 1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5s1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5c1.38,0 2.5,-1.12 2.5,-2.5S20.88,9.5 19.5,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/link.xml b/compose/material/material/icons/generator/raw-icons/filled/link.xml
deleted file mode 100644
index 2c0a73f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9L7,15.1c-1.71,0 -3.1,-1.39 -3.1,-3.1zM8,13h8v-2L8,11v2zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1s-1.39,3.1 -3.1,3.1h-4L13,17h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/link_off.xml b/compose/material/material/icons/generator/raw-icons/filled/link_off.xml
deleted file mode 100644
index b3dd1d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/link_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1 0,1.43 -0.98,2.63 -2.31,2.98l1.46,1.46C20.88,15.61 22,13.95 22,12c0,-2.76 -2.24,-5 -5,-5zM16,11h-2.19l2,2L16,13zM2,4.27l3.11,3.11C3.29,8.12 2,9.91 2,12c0,2.76 2.24,5 5,5h4v-1.9L7,15.1c-1.71,0 -3.1,-1.39 -3.1,-3.1 0,-1.59 1.21,-2.9 2.76,-3.07L8.73,11L8,11v2h2.73L13,15.27L13,17h1.73l4.01,4L20,19.74 3.27,3 2,4.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/linked_camera.xml b/compose/material/material/icons/generator/raw-icons/filled/linked_camera.xml
deleted file mode 100644
index 02f1cc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/linked_camera.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3.33c2.58,0 4.67,2.09 4.67,4.67H22c0,-3.31 -2.69,-6 -6,-6v1.33M16,6c1.11,0 2,0.89 2,2h1.33c0,-1.84 -1.49,-3.33 -3.33,-3.33V6"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9c0,-1.11 -0.89,-2 -2,-2L15,4L9,4L7.17,6L4,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9h-5zM12,19c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/liquor.xml b/compose/material/material/icons/generator/raw-icons/filled/liquor.xml
deleted file mode 100644
index de78fe8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/liquor.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14c0,1.3 0.84,2.4 2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4 9,15.3 9,14V6H3V14zM5,8h2v3H5V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.63,8.54l-0.95,-0.32C19.28,8.09 19,7.71 19,7.28V3c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v4.28c0,0.43 -0.28,0.81 -0.68,0.95l-0.95,0.32C11.55,8.82 11,9.58 11,10.44V20c0,1.1 0.9,2 2,2h7c1.1,0 2,-0.9 2,-2v-9.56C22,9.58 21.45,8.82 20.63,8.54zM16,4h1v1h-1V4zM13,10.44l0.95,-0.32C15.18,9.72 16,8.57 16,7.28V7h1v0.28c0,1.29 0.82,2.44 2.05,2.85L20,10.44V12h-7V10.44zM20,20h-7v-2h7V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/list.xml b/compose/material/material/icons/generator/raw-icons/filled/list.xml
deleted file mode 100644
index f20eac3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/list_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/list_alt.xml
deleted file mode 100644
index 91683dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/list_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14L5,19L5,5h14m1.1,-2L3.9,3c-0.5,0 -0.9,0.4 -0.9,0.9v16.2c0,0.4 0.4,0.9 0.9,0.9h16.2c0.4,0 0.9,-0.5 0.9,-0.9L21,3.9c0,-0.5 -0.5,-0.9 -0.9,-0.9zM11,7h6v2h-6L11,7zM11,11h6v2h-6v-2zM11,15h6v2h-6zM7,7h2v2L7,9zM7,11h2v2L7,13zM7,15h2v2L7,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/live_help.xml b/compose/material/material/icons/generator/raw-icons/filled/live_help.xml
deleted file mode 100644
index 4d0d63e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/live_help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h4l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM13,18h-2v-2h2v2zM15.07,10.25l-0.9,0.92C13.45,11.9 13,12.5 13,14h-2v-0.5c0,-1.1 0.45,-2.1 1.17,-2.83l1.24,-1.26c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2L8,8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,0.88 -0.36,1.68 -0.93,2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/live_tv.xml b/compose/material/material/icons/generator/raw-icons/filled/live_tv.xml
deleted file mode 100644
index 4c6cd09..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/live_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-7.59l3.29,-3.29L16,2l-4,4 -4,-4 -0.71,0.71L10.59,6L3,6c-1.1,0 -2,0.89 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.11 -0.9,-2 -2,-2zM21,20L3,20L3,8h18v12zM9,10v8l7,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/living.xml b/compose/material/material/icons/generator/raw-icons/filled/living.xml
deleted file mode 100644
index 6304443..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/living.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,11.5c-0.55,0 -1,0.45 -1,1v2h-7v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1V16c0,0.28 0.22,0.5 0.5,0.5h10c0.28,0 0.5,-0.22 0.5,-0.5v-3.5C17.5,11.95 17.05,11.5 16.5,11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.5V13h4v-0.5c0,-1.3 0.99,-2.35 2.25,-2.47V9c0,-0.83 -0.67,-1.5 -1.5,-1.5h-5.5c-0.83,0 -1.5,0.67 -1.5,1.5v1.03C9.01,10.15 10,11.2 10,12.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM19,16c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2v-3.5c0,-0.92 0.51,-1.72 1.25,-2.15V9c0,-1.66 1.34,-3 3,-3h5.5c1.66,0 3,1.34 3,3v1.35C18.49,10.78 19,11.58 19,12.5V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_activity.xml b/compose/material/material/icons/generator/raw-icons/filled/local_activity.xml
deleted file mode 100644
index 2dd8406..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_activity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.1 0.9,-2 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2zM15.58,16.8L12,14.5l-3.58,2.3 1.08,-4.12 -3.29,-2.69 4.24,-0.25L12,5.8l1.54,3.95 4.24,0.25 -3.29,2.69 1.09,4.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_airport.xml b/compose/material/material/icons/generator/raw-icons/filled/local_airport.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_airport.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_atm.xml b/compose/material/material/icons/generator/raw-icons/filled/local_atm.xml
deleted file mode 100644
index 217942d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h4L15,8h-2L13,7h-2v1h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1L9,14v2h2v1zM20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/local_bar.xml
deleted file mode 100644
index 2a55e49..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5V3H3v2l8,9v5H6v2h12v-2h-5v-5l8,-9zM7.43,7L5.66,5h12.69l-1.78,2H7.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_cafe.xml b/compose/material/material/icons/generator/raw-icons/filled/local_cafe.xml
deleted file mode 100644
index 99181cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_cafe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.9 2,-2L22,5c0,-1.11 -0.89,-2 -2,-2zM20,8h-2L18,5h2v3zM4,19h16v2L4,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_car_wash.xml b/compose/material/material/icons/generator/raw-icons/filled/local_car_wash.xml
deleted file mode 100644
index 4496128..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_car_wash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7c0,0.83 0.67,1.5 1.5,1.5zM12,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7c0,0.83 0.67,1.5 1.5,1.5zM7,5c0.83,0 1.5,-0.67 1.5,-1.5C8.5,2.5 7,0.8 7,0.8S5.5,2.5 5.5,3.5C5.5,4.33 6.17,5 7,5zM18.92,8.01C18.72,7.42 18.16,7 17.5,7h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,14v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,15 6.5,15s1.5,0.67 1.5,1.5S7.33,18 6.5,18zM17.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,13l1.5,-4.5h11L19,13L5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_convenience_store.xml b/compose/material/material/icons/generator/raw-icons/filled/local_convenience_store.xml
deleted file mode 100644
index 5a67b65..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_convenience_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7L19,4L5,4v3L2,7v13h8v-4h4v4h8L22,7h-3zM11,10L9,10v1h2v1L8,12L8,9h2L10,8L8,8L8,7h3v3zM16,12h-1v-2h-2L13,7h1v2h1L15,7h1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/local_dining.xml
deleted file mode 100644
index 4797566..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_drink.xml b/compose/material/material/icons/generator/raw-icons/filled/local_drink.xml
deleted file mode 100644
index 5c81cd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_drink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2l2.01,18.23C5.13,21.23 5.97,22 7,22h10c1.03,0 1.87,-0.77 1.99,-1.77L21,2L3,2zM12,19c-1.66,0 -3,-1.34 -3,-3 0,-2 3,-5.4 3,-5.4s3,3.4 3,5.4c0,1.66 -1.34,3 -3,3zM18.33,8L5.67,8l-0.44,-4h13.53l-0.43,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_fire_department.xml b/compose/material/material/icons/generator/raw-icons/filled/local_fire_department.xml
deleted file mode 100644
index 4bc17cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_fire_department.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.9l-2.13,2.09C9.31,15.55 9,16.28 9,17.06C9,18.68 10.35,20 12,20s3,-1.32 3,-2.94c0,-0.78 -0.31,-1.52 -0.87,-2.07L12,12.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l-0.44,0.55C14.38,8.02 12,7.19 12,5.3V2c0,0 -8,4 -8,11c0,2.92 1.56,5.47 3.89,6.86C7.33,19.07 7,18.1 7,17.06c0,-1.32 0.52,-2.56 1.47,-3.5L12,10.1l3.53,3.47c0.95,0.93 1.47,2.17 1.47,3.5c0,1.02 -0.31,1.96 -0.85,2.75c1.89,-1.15 3.29,-3.06 3.71,-5.3C20.52,10.97 18.79,7.62 16,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_florist.xml b/compose/material/material/icons/generator/raw-icons/filled/local_florist.xml
deleted file mode 100644
index b154a07..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_florist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c4.97,0 9,-4.03 9,-9 -4.97,0 -9,4.03 -9,9zM5.6,10.25c0,1.38 1.12,2.5 2.5,2.5 0.53,0 1.01,-0.16 1.42,-0.44l-0.02,0.19c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5l-0.02,-0.19c0.4,0.28 0.89,0.44 1.42,0.44 1.38,0 2.5,-1.12 2.5,-2.5 0,-1 -0.59,-1.85 -1.43,-2.25 0.84,-0.4 1.43,-1.25 1.43,-2.25 0,-1.38 -1.12,-2.5 -2.5,-2.5 -0.53,0 -1.01,0.16 -1.42,0.44l0.02,-0.19C14.5,2.12 13.38,1 12,1S9.5,2.12 9.5,3.5l0.02,0.19c-0.4,-0.28 -0.89,-0.44 -1.42,-0.44 -1.38,0 -2.5,1.12 -2.5,2.5 0,1 0.59,1.85 1.43,2.25 -0.84,0.4 -1.43,1.25 -1.43,2.25zM12,5.5c1.38,0 2.5,1.12 2.5,2.5s-1.12,2.5 -2.5,2.5S9.5,9.38 9.5,8s1.12,-2.5 2.5,-2.5zM3,13c0,4.97 4.03,9 9,9 0,-4.97 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_gas_station.xml b/compose/material/material/icons/generator/raw-icons/filled/local_gas_station.xml
deleted file mode 100644
index 6a49d12..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_gas_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-0.94,0.36 -1.61,1.26 -1.61,2.33 0,1.38 1.12,2.5 2.5,2.5 0.36,0 0.69,-0.08 1,-0.21v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L17,14c0,-1.1 -0.9,-2 -2,-2h-1L14,5c0,-1.1 -0.9,-2 -2,-2L6,3c-1.1,0 -2,0.9 -2,2v16h10v-7.5h1.5v5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5L20.5,9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM12,10L6,10L6,5h6v5zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_grocery_store.xml b/compose/material/material/icons/generator/raw-icons/filled/local_grocery_store.xml
deleted file mode 100644
index cf0dcc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_grocery_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM1,2v2h2l3.6,7.59 -1.35,2.45c-0.16,0.28 -0.25,0.61 -0.25,0.96 0,1.1 0.9,2 2,2h12v-2L7.42,15c-0.14,0 -0.25,-0.11 -0.25,-0.25l0.03,-0.12 0.9,-1.63h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.08,-0.14 0.12,-0.31 0.12,-0.48 0,-0.55 -0.45,-1 -1,-1L5.21,4l-0.94,-2L1,2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_hospital.xml b/compose/material/material/icons/generator/raw-icons/filled/local_hospital.xml
deleted file mode 100644
index c2c6749..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_hospital.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,14h-4v4h-4v-4L6,14v-4h4L10,6h4v4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_hotel.xml b/compose/material/material/icons/generator/raw-icons/filled/local_hotel.xml
deleted file mode 100644
index 966b9cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.66,0 3,-1.34 3,-3S8.66,7 7,7s-3,1.34 -3,3 1.34,3 3,3zM19,7h-8v7L3,14L3,5L1,5v15h2v-3h18v3h2v-9c0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_laundry_service.xml b/compose/material/material/icons/generator/raw-icons/filled/local_laundry_service.xml
deleted file mode 100644
index 6c50600..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_laundry_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,16.83c1.56,1.56 4.1,1.56 5.66,0 1.56,-1.56 1.56,-4.1 0,-5.66l-5.66,5.66zM18,2.01L6,2c-1.11,0 -2,0.89 -2,2v16c0,1.11 0.89,2 2,2h12c1.11,0 2,-0.89 2,-2L20,4c0,-1.11 -0.89,-1.99 -2,-1.99zM10,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM7,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,20c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_library.xml b/compose/material/material/icons/generator/raw-icons/filled/local_library.xml
deleted file mode 100644
index 95df0ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11.55C9.64,9.35 6.48,8 3,8v11c3.48,0 6.64,1.35 9,3.55 2.36,-2.19 5.52,-3.55 9,-3.55V8c-3.48,0 -6.64,1.35 -9,3.55zM12,8c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3 1.34,3 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_mall.xml b/compose/material/material/icons/generator/raw-icons/filled/local_mall.xml
deleted file mode 100644
index 6e8a152..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_mall.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-2c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6L5,6c-1.1,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,8c0,-1.1 -0.9,-2 -2,-2zM12,3c1.66,0 3,1.34 3,3L9,6c0,-1.66 1.34,-3 3,-3zM12,13c-2.76,0 -5,-2.24 -5,-5h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2c0,2.76 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_movies.xml b/compose/material/material/icons/generator/raw-icons/filled/local_movies.xml
deleted file mode 100644
index afcfb9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_movies.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2L20,3h-2zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_offer.xml b/compose/material/material/icons/generator/raw-icons/filled/local_offer.xml
deleted file mode 100644
index 84660357..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_offer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.58l-9,-9C12.05,2.22 11.55,2 11,2H4c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58 0.55,0 1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-0.55 -0.23,-1.06 -0.59,-1.42zM5.5,7C4.67,7 4,6.33 4,5.5S4.67,4 5.5,4 7,4.67 7,5.5 6.33,7 5.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_parking.xml b/compose/material/material/icons/generator/raw-icons/filled/local_parking.xml
deleted file mode 100644
index 01605cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_parking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3L6,3v18h4v-6h3c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM13.2,11L10,11L10,7h3.2c1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_pharmacy.xml b/compose/material/material/icons/generator/raw-icons/filled/local_pharmacy.xml
deleted file mode 100644
index de50022..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_pharmacy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5h-2.64l1.14,-3.14L17.15,1l-1.46,4L3,5v2l2,6 -2,6v2h18v-2l-2,-6 2,-6L21,5zM16,14h-3v3h-2v-3L8,14v-2h3L11,9h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_phone.xml b/compose/material/material/icons/generator/raw-icons/filled/local_phone.xml
deleted file mode 100644
index e1d37c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.62,10.79c1.44,2.83 3.76,5.14 6.59,6.59l2.2,-2.2c0.27,-0.27 0.67,-0.36 1.02,-0.24 1.12,0.37 2.33,0.57 3.57,0.57 0.55,0 1,0.45 1,1V20c0,0.55 -0.45,1 -1,1 -9.39,0 -17,-7.61 -17,-17 0,-0.55 0.45,-1 1,-1h3.5c0.55,0 1,0.45 1,1 0,1.25 0.2,2.45 0.57,3.57 0.11,0.35 0.03,0.74 -0.25,1.02l-2.2,2.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_pizza.xml b/compose/material/material/icons/generator/raw-icons/filled/local_pizza.xml
deleted file mode 100644
index 625d67b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_pizza.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.43,2 5.23,3.54 3.01,6L12,22l8.99,-16C18.78,3.55 15.57,2 12,2zM7,7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2zM12,15c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_play.xml b/compose/material/material/icons/generator/raw-icons/filled/local_play.xml
deleted file mode 100644
index 2dd8406..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.1 0.9,-2 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2zM15.58,16.8L12,14.5l-3.58,2.3 1.08,-4.12 -3.29,-2.69 4.24,-0.25L12,5.8l1.54,3.95 4.24,0.25 -3.29,2.69 1.09,4.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_police.xml b/compose/material/material/icons/generator/raw-icons/filled/local_police.xml
deleted file mode 100644
index c690ca7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_police.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1zM14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9,-3.87l-3,-2.59l3.96,-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_post_office.xml b/compose/material/material/icons/generator/raw-icons/filled/local_post_office.xml
deleted file mode 100644
index 6943b4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_post_office.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_printshop.xml b/compose/material/material/icons/generator/raw-icons/filled/local_printshop.xml
deleted file mode 100644
index ca0fd01..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_printshop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8L5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12v-4h4v-6c0,-1.66 -1.34,-3 -3,-3zM16,19L8,19v-5h8v5zM19,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,3L6,3v4h12L18,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_see.xml b/compose/material/material/icons/generator/raw-icons/filled/local_see.xml
deleted file mode 100644
index 13186de..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_see.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_shipping.xml b/compose/material/material/icons/generator/raw-icons/filled/local_shipping.xml
deleted file mode 100644
index 1ab1ea57..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_shipping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3L17,4L3,4c-1.1,0 -2,0.9 -2,2v11h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2v-5l-3,-4zM6,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19.5,9.5l1.96,2.5L17,12L17,9.5h2.5zM18,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/local_taxi.xml b/compose/material/material/icons/generator/raw-icons/filled/local_taxi.xml
deleted file mode 100644
index 7b3fb75..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/local_taxi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5L15,5L15,3L9,3v2L6.5,5c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.5,-4.5h11L19,11L5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/location_city.xml b/compose/material/material/icons/generator/raw-icons/filled/location_city.xml
deleted file mode 100644
index de6615f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/location_city.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11L15,5l-3,-3 -3,3v2L3,7v14h18L21,11h-6zM7,19L5,19v-2h2v2zM7,15L5,15v-2h2v2zM7,11L5,11L5,9h2v2zM13,19h-2v-2h2v2zM13,15h-2v-2h2v2zM13,11h-2L11,9h2v2zM13,7h-2L11,5h2v2zM19,19h-2v-2h2v2zM19,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/location_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/location_disabled.xml
deleted file mode 100644
index 43912e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/location_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06c-1.13,0.12 -2.19,0.46 -3.16,0.97l1.5,1.5C10.16,5.19 11.06,5 12,5c3.87,0 7,3.13 7,7 0,0.94 -0.19,1.84 -0.52,2.65l1.5,1.5c0.5,-0.96 0.84,-2.02 0.97,-3.15L23,13v-2h-2.06zM3,4.27l2.04,2.04C3.97,7.62 3.25,9.23 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21 21,19.73 4.27,3 3,4.27zM16.27,17.54C15.09,18.45 13.61,19 12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/location_off.xml b/compose/material/material/icons/generator/raw-icons/filled/location_off.xml
deleted file mode 100644
index 4e3a4be..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/location_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c1.38,0 2.5,1.12 2.5,2.5 0,0.74 -0.33,1.39 -0.83,1.85l3.63,3.63c0.98,-1.86 1.7,-3.8 1.7,-5.48 0,-3.87 -3.13,-7 -7,-7 -1.98,0 -3.76,0.83 -5.04,2.15l3.19,3.19c0.46,-0.52 1.11,-0.84 1.85,-0.84zM16.37,16.1l-4.63,-4.63 -0.11,-0.11L3.27,3 2,4.27l3.18,3.18C5.07,7.95 5,8.47 5,9c0,5.25 7,13 7,13s1.67,-1.85 3.38,-4.35L18.73,21 20,19.73l-3.63,-3.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/location_on.xml b/compose/material/material/icons/generator/raw-icons/filled/location_on.xml
deleted file mode 100644
index e6dfeb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/location_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/location_searching.xml b/compose/material/material/icons/generator/raw-icons/filled/location_searching.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/location_searching.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lock.xml b/compose/material/material/icons/generator/raw-icons/filled/lock.xml
deleted file mode 100644
index d619102..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM15.1,8L8.9,8L8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lock_clock.xml b/compose/material/material/icons/generator/raw-icons/filled/lock_clock.xml
deleted file mode 100644
index 45795cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lock_clock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,14.2l2.9,1.7 -0.8,1.3L13,15v-5h1.5v4.2zM22,14c0,4.41 -3.59,8 -8,8 -2.02,0 -3.86,-0.76 -5.27,-2L4,20c-1.15,0 -2,-0.85 -2,-2L2,9c0,-1.12 0.89,-1.96 2,-2v-0.5C4,4.01 6.01,2 8.5,2c2.34,0 4.24,1.79 4.46,4.08 0.34,-0.05 0.69,-0.08 1.04,-0.08 4.41,0 8,3.59 8,8zM6,7h5v-0.74C10.88,4.99 9.8,4 8.5,4 7.12,4 6,5.12 6,6.5L6,7zM20,14c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6 2.69,6 6,6 6,-2.69 6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lock_open.xml b/compose/material/material/icons/generator/raw-icons/filled/lock_open.xml
deleted file mode 100644
index a11b70e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lock_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6h1.9c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,10h12v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lock_person.xml b/compose/material/material/icons/generator/raw-icons/filled/lock_person.xml
deleted file mode 100644
index 86b3106..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lock_person.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.7,0 1.37,0.1 2,0.29V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h6.26C11.47,20.87 11,19.49 11,18C11,14.13 14.13,11 18,11zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2H8.9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM18,15c0.83,0 1.5,0.67 1.5,1.5S18.83,18 18,18s-1.5,-0.67 -1.5,-1.5S17.17,15 18,15zM18,21c-1.03,0 -1.94,-0.52 -2.48,-1.32C16.25,19.26 17.09,19 18,19s1.75,0.26 2.48,0.68C19.94,20.48 19.03,21 18,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lock_reset.xml b/compose/material/material/icons/generator/raw-icons/filled/lock_reset.xml
deleted file mode 100644
index 7811e9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lock_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9H1l4,4l4,-4H6c0,-3.86 3.14,-7 7,-7s7,3.14 7,7s-3.14,7 -7,7c-1.9,0 -3.62,-0.76 -4.88,-1.99L6.7,18.42C8.32,20.01 10.55,21 13,21c4.97,0 9,-4.03 9,-9S17.97,3 13,3zM15,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C16,11.45 15.55,11 15,11zM14,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/login.xml b/compose/material/material/icons/generator/raw-icons/filled/login.xml
deleted file mode 100644
index 8a3c480..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/login.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5,-5L11,7zM20,19h-8v2h8c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2h-8v2h8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/logo_dev.xml b/compose/material/material/icons/generator/raw-icons/filled/logo_dev.xml
deleted file mode 100644
index 8659d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/logo_dev.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.68,14.98H6V9h1.71c1.28,0 1.71,1.03 1.71,1.71l0,2.56C9.42,13.95 9,14.98 7.68,14.98zM12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25c-0.4,0.01 -0.74,-0.31 -0.75,-0.71V9.75c-0.01,-0.4 0.31,-0.74 0.71,-0.75h2.28l0,1.07h-1.92v1.39H12.38zM16.88,14.23c-0.48,1.11 -1.33,0.89 -1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,10.12H7.14v3.77h0.63c0.14,0 0.28,-0.05 0.42,-0.16c0.14,-0.1 0.21,-0.26 0.21,-0.47v-2.52c0,-0.21 -0.07,-0.37 -0.21,-0.47C8.05,10.17 7.91,10.12 7.77,10.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/logout.xml b/compose/material/material/icons/generator/raw-icons/filled/logout.xml
deleted file mode 100644
index 2059dea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/logout.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7l-1.41,1.41L18.17,11H8v2h10.17l-2.58,2.58L17,17l5,-5zM4,5h8V3H4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h8v-2H4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/looks.xml b/compose/material/material/icons/generator/raw-icons/filled/looks.xml
deleted file mode 100644
index 8cb77cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/looks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c-3.86,0 -7,3.14 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.86 -3.14,-7 -7,-7zM12,6C5.93,6 1,10.93 1,17h2c0,-4.96 4.04,-9 9,-9s9,4.04 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/looks_3.xml b/compose/material/material/icons/generator/raw-icons/filled/looks_3.xml
deleted file mode 100644
index 875c115..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/looks_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.01,3h-14c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21.01,5c0,-1.1 -0.9,-2 -2,-2zM15.01,10.5c0,0.83 -0.67,1.5 -1.5,1.5 0.83,0 1.5,0.67 1.5,1.5L15.01,15c0,1.11 -0.9,2 -2,2h-4v-2h4v-2h-2v-2h2L13.01,9h-4L9.01,7h4c1.1,0 2,0.89 2,2v1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/looks_4.xml b/compose/material/material/icons/generator/raw-icons/filled/looks_4.xml
deleted file mode 100644
index 2af0770..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/looks_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM15,17h-2v-4L9,13L9,7h2v4h2L13,7h2v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/looks_5.xml b/compose/material/material/icons/generator/raw-icons/filled/looks_5.xml
deleted file mode 100644
index 05fdc36d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/looks_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM15,9h-4v2h2c1.1,0 2,0.89 2,2v2c0,1.11 -0.9,2 -2,2L9,17v-2h4v-2L9,13L9,7h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/looks_6.xml b/compose/material/material/icons/generator/raw-icons/filled/looks_6.xml
deleted file mode 100644
index bb6457b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/looks_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v-2h-2v2zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM15,9h-4v2h2c1.1,0 2,0.89 2,2v2c0,1.11 -0.9,2 -2,2h-2c-1.1,0 -2,-0.89 -2,-2L9,9c0,-1.11 0.9,-2 2,-2h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/looks_one.xml b/compose/material/material/icons/generator/raw-icons/filled/looks_one.xml
deleted file mode 100644
index 9da149d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/looks_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14,17h-2L12,9h-2L10,7h4v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/looks_two.xml b/compose/material/material/icons/generator/raw-icons/filled/looks_two.xml
deleted file mode 100644
index c690c16..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/looks_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM15,11c0,1.11 -0.9,2 -2,2h-2v2h4v2L9,17v-4c0,-1.11 0.9,-2 2,-2h2L13,9L9,9L9,7h4c1.1,0 2,0.89 2,2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/loop.xml b/compose/material/material/icons/generator/raw-icons/filled/loop.xml
deleted file mode 100644
index c2f773a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/loop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,1L8,5l4,4L12,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46C19.54,15.03 20,13.57 20,12c0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.24,7.74C4.46,8.97 4,10.43 4,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/loupe.xml b/compose/material/material/icons/generator/raw-icons/filled/loupe.xml
deleted file mode 100644
index 736fb77..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/loupe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10h8c1.1,0 2,-0.9 2,-2v-8c0,-5.51 -4.49,-10 -10,-10zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/low_priority.xml b/compose/material/material/icons/generator/raw-icons/filled/low_priority.xml
deleted file mode 100644
index 6647509..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/low_priority.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5h8v2h-8zM14,10.5h8v2h-8zM14,16h8v2h-8zM2,11.5C2,15.08 4.92,18 8.5,18L9,18v2l3,-3 -3,-3v2h-0.5C6.02,16 4,13.98 4,11.5S6.02,7 8.5,7L12,7L12,5L8.5,5C4.92,5 2,7.92 2,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/loyalty.xml b/compose/material/material/icons/generator/raw-icons/filled/loyalty.xml
deleted file mode 100644
index b4a28d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/loyalty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.58l-9,-9C12.05,2.22 11.55,2 11,2L4,2c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58 0.55,0 1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-0.55 -0.23,-1.06 -0.59,-1.42zM5.5,7C4.67,7 4,6.33 4,5.5S4.67,4 5.5,4 7,4.67 7,5.5 6.33,7 5.5,7zM17.27,15.27L13,19.54l-4.27,-4.27C8.28,14.81 8,14.19 8,13.5c0,-1.38 1.12,-2.5 2.5,-2.5 0.69,0 1.32,0.28 1.77,0.74l0.73,0.72 0.73,-0.73c0.45,-0.45 1.08,-0.73 1.77,-0.73 1.38,0 2.5,1.12 2.5,2.5 0,0.69 -0.28,1.32 -0.73,1.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lte_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/lte_mobiledata.xml
deleted file mode 100644
index 7fc5c97..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lte_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14h3v2H4V8h2V14zM9,10h2v6h2v-6h2V8H9V10zM21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lte_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/lte_plus_mobiledata.xml
deleted file mode 100644
index 64fd585..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lte_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h3v2H1V8h2V14zM5,10h2v6h2v-6h2V8H5V10zM12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/luggage.xml b/compose/material/material/icons/generator/raw-icons/filled/luggage.xml
deleted file mode 100644
index a958af4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H7C5.9,6 5,6.9 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1c1.1,0 2,-0.9 2,-2V8C19,6.9 18.1,6 17,6zM9.5,18H8V9h1.5V18zM12.75,18h-1.5V9h1.5V18zM13.5,6h-3V3.5h3V6zM16,18h-1.5V9H16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lunch_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/lunch_dining.xml
deleted file mode 100644
index a8b4d1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lunch_dining.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10c0.32,-3.28 -4.28,-6 -9.99,-6C6.3,4 1.7,6.72 2.02,10H22z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.35,13.5c0.55,0 0.78,0.14 1.15,0.36c0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36c0.55,0 0.78,0.14 1.15,0.36c0.45,0.27 1.07,0.64 2.18,0.64c1.11,0 1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36c0.55,0 0.78,0.14 1.15,0.36c0.45,0.27 1.07,0.63 2.17,0.64v-1.98c0,0 -0.79,-0.16 -1.16,-0.38c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64c-1.11,0 -1.73,0.37 -2.18,0.64c-0.37,0.23 -0.6,0.36 -1.15,0.36s-0.78,-0.14 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36c-0.55,0 -0.78,-0.14 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64c-1.11,0 -1.73,0.37 -2.18,0.64C2.78,12.37 2.56,12.5 2,12.5v2c1.11,0 1.73,-0.37 2.21,-0.64C4.58,13.63 4.8,13.5 5.35,13.5z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-2H2z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/lyrics.xml b/compose/material/material/icons/generator/raw-icons/filled/lyrics.xml
deleted file mode 100644
index 6ae0343..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/lyrics.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9c0,-2.04 1.24,-3.79 3,-4.57V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9c1.1,0 2,-0.9 2,-2v-2.42C15.24,12.8 14,11.05 14,9zM10,14H6v-2h4V14zM13,11H6V9h7V11zM13,8H6V6h7V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.18C19.69,6.07 19.35,6 19,6c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3V3h2V1h-4V6.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/macro_off.xml b/compose/material/material/icons/generator/raw-icons/filled/macro_off.xml
deleted file mode 100644
index bae1caf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/macro_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,17.15C20.63,15.91 21,14.5 21,13c-1.5,0 -2.91,0.37 -4.15,1.02L19.98,17.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,4.97 4.03,9 9,9C12,17.03 7.97,13 3,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5c1.38,0 2.5,1.12 2.5,2.5c0,0.99 -0.58,1.84 -1.42,2.25l2.48,2.48c0.11,0.02 0.23,0.03 0.35,0.03c1.38,0 2.5,-1.12 2.5,-2.5c0,-1 -0.59,-1.85 -1.43,-2.25c0.84,-0.4 1.43,-1.25 1.43,-2.25c0,-1.38 -1.12,-2.5 -2.5,-2.5c-0.53,0 -1.01,0.16 -1.42,0.44L14.5,3.5C14.5,2.12 13.38,1 12,1S9.5,2.12 9.5,3.5l0.02,0.19C9.12,3.41 8.63,3.25 8.1,3.25c-0.57,0 -1.09,0.2 -1.51,0.52l3.16,3.16C10.16,6.08 11.01,5.5 12,5.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.64,4.64C5.76,9.26 5.6,9.73 5.6,10.25c0,1.38 1.12,2.5 2.5,2.5c0.52,0 0.99,-0.16 1.4,-0.43l0.02,0.02L9.5,12.5c0,1.38 1.12,2.5 2.5,2.5c0.05,0 0.1,-0.01 0.16,-0.02l1.64,1.64C12.67,18.12 12,19.98 12,22c2.02,0 3.88,-0.67 5.38,-1.8l2.4,2.4l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mail.xml b/compose/material/material/icons/generator/raw-icons/filled/mail.xml
deleted file mode 100644
index 6943b4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mail_lock.xml b/compose/material/material/icons/generator/raw-icons/filled/mail_lock.xml
deleted file mode 100644
index 296c9de..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mail_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.97V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h12v-5.03c0,-2.76 2.24,-5 5,-5H22zM20,8l-8,5L4,8V6l8,5l8,-5V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C24,15.45 23.55,15 23,15zM22,15h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mail_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/mail_outline.xml
deleted file mode 100644
index f108062..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mail_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8l8,5 8,-5v10zM12,11L4,6h16l-8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/male.xml b/compose/material/material/icons/generator/raw-icons/filled/male.xml
deleted file mode 100644
index ac67026..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/male.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,11c1.93,0 3.5,1.57 3.5,3.5S11.43,18 9.5,18S6,16.43 6,14.5S7.57,11 9.5,11zM9.5,9C6.46,9 4,11.46 4,14.5S6.46,20 9.5,20s5.5,-2.46 5.5,-5.5c0,-1.16 -0.36,-2.23 -0.97,-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36 10.66,9 9.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/man.xml b/compose/material/material/icons/generator/raw-icons/filled/man.xml
deleted file mode 100644
index c35877e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/man.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2v7h4v-7h2V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/man_2.xml b/compose/material/material/icons/generator/raw-icons/filled/man_2.xml
deleted file mode 100644
index 230adba..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/man_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2.5v7h3v-7H16V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/man_3.xml b/compose/material/material/icons/generator/raw-icons/filled/man_3.xml
deleted file mode 100644
index af7bb64..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/man_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2v7h4v-7h2V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1.751l2.249,2.249l-2.249,2.249l-2.249,-2.249z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/man_4.xml b/compose/material/material/icons/generator/raw-icons/filled/man_4.xml
deleted file mode 100644
index 3f70493..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/man_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.75,7h-3.5C9.04,7 8.11,8.07 8.27,9.26L10,22h4l1.73,-12.74C15.89,8.07 14.96,7 13.75,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/manage_accounts.xml b/compose/material/material/icons/generator/raw-icons/filled/manage_accounts.xml
deleted file mode 100644
index a1fc81a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/manage_accounts.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,13.02C10.45,13.01 10.23,13 10,13c-2.42,0 -4.68,0.67 -6.61,1.82C2.51,15.34 2,16.32 2,17.35V20h9.26C10.47,18.87 10,17.49 10,16C10,14.93 10.25,13.93 10.67,13.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0,-0.22 -0.03,-0.42 -0.06,-0.63l1.14,-1.01l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L18,11h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1.01c-0.03,0.21 -0.06,0.41 -0.06,0.63s0.03,0.42 0.06,0.63l-1.14,1.01l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L16,21h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1.01C20.72,16.42 20.75,16.22 20.75,16zM17,18c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S18.1,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/manage_history.xml b/compose/material/material/icons/generator/raw-icons/filled/manage_history.xml
deleted file mode 100644
index 8fd7758..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/manage_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.69,18.37l1.14,-1l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L20,14h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.08,0.5 -0.08,0.76 0,1.26l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L18,24h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1C22.77,19.13 22.77,18.87 22.69,18.37zM19,21c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S20.1,21 19,21zM11,7v5.41l2.36,2.36l1.04,-1.79L13,11.59V7H11zM21,12c0,-4.97 -4.03,-9 -9,-9C9.17,3 6.65,4.32 5,6.36V4H3v6h6V8H6.26C7.53,6.19 9.63,5 12,5c3.86,0 7,3.14 7,7H21zM10.86,18.91C7.87,18.42 5.51,16.01 5.08,13H3.06c0.5,4.5 4.31,8 8.94,8c0.02,0 0.05,0 0.07,0L10.86,18.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/manage_search.xml b/compose/material/material/icons/generator/raw-icons/filled/manage_search.xml
deleted file mode 100644
index 44aed15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/manage_search.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9H2V7h5V9zM7,12H2v2h5V12zM20.59,19l-3.83,-3.83C15.96,15.69 15.02,16 14,16c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5c0,1.02 -0.31,1.96 -0.83,2.75L22,17.59L20.59,19zM17,11c0,-1.65 -1.35,-3 -3,-3s-3,1.35 -3,3s1.35,3 3,3S17,12.65 17,11zM2,19h10v-2H2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/map.xml b/compose/material/material/icons/generator/raw-icons/filled/map.xml
deleted file mode 100644
index d1274d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,3l-0.16,0.03L15,5.1 9,3 3.36,4.9c-0.21,0.07 -0.36,0.25 -0.36,0.48V20.5c0,0.28 0.22,0.5 0.5,0.5l0.16,-0.03L9,18.9l6,2.1 5.64,-1.9c0.21,-0.07 0.36,-0.25 0.36,-0.48V3.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM15,19l-6,-2.11V5l6,2.11V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/maps_home_work.xml b/compose/material/material/icons/generator/raw-icons/filled/maps_home_work.xml
deleted file mode 100644
index 2ba7ff2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/maps_home_work.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11l0,10l5,0l0,-6l4,0l0,6l5,0l0,-10l-7,-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10zM19,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/maps_ugc.xml b/compose/material/material/icons/generator/raw-icons/filled/maps_ugc.xml
deleted file mode 100644
index 502bf16..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/maps_ugc.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,1.54 0.36,2.98 0.97,4.29L1,23l6.71,-1.97C9.02,21.64 10.46,22 12,22c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2zM16,13h-3v3h-2v-3H8v-2h3V8h2v3h3V13z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/margin.xml b/compose/material/material/icons/generator/raw-icons/filled/margin.xml
deleted file mode 100644
index 8d3f72c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/margin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18L21,3L3,3zM19,19L5,19L5,5h14v14zM11,7h2v2h-2zM7,7h2v2L7,9zM15,7h2v2h-2zM7,11h2v2L7,13zM11,11h2v2h-2zM15,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mark_as_unread.xml b/compose/material/material/icons/generator/raw-icons/filled/mark_as_unread.xml
deleted file mode 100644
index 8b0f5b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mark_as_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.83,7h-2.6L10.5,4 4,7.4L4,17c-1.1,0 -2,-0.9 -2,-2L2,7.17c0,-0.53 0.32,-1.09 0.8,-1.34L10.5,2l7.54,3.83c0.43,0.23 0.73,0.7 0.79,1.17zM20,8L7,8c-1.1,0 -2,0.9 -2,2v9c0,1.1 0.9,2 2,2h13c1.1,0 2,-0.9 2,-2v-9c0,-1.1 -0.9,-2 -2,-2zM20,11.67L13.5,15 7,11.67L7,10l6.5,3.33L20,10v1.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mark_chat_read.xml b/compose/material/material/icons/generator/raw-icons/filled/mark_chat_read.xml
deleted file mode 100644
index 9bd4708..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mark_chat_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,20l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L23,14.34L17.34,20zM12,17c0,-3.87 3.13,-7 7,-7c1.08,0 2.09,0.25 3,0.68V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2,2.9 2,4v18l4,-4h6v0c0,-0.17 0.01,-0.33 0.03,-0.5C12.01,17.34 12,17.17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mark_chat_unread.xml b/compose/material/material/icons/generator/raw-icons/filled/mark_chat_unread.xml
deleted file mode 100644
index cd605e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mark_chat_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.98V16c0,1.1 -0.9,2 -2,2H6l-4,4V4c0,-1.1 0.9,-2 2,-2h10.1C14.04,2.32 14,2.66 14,3c0,2.76 2.24,5 5,5C20.13,8 21.16,7.61 22,6.98zM16,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,1.34 16,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mark_email_read.xml b/compose/material/material/icons/generator/raw-icons/filled/mark_email_read.xml
deleted file mode 100644
index 1ca2602..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mark_email_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c0,-3.87 3.13,-7 7,-7c1.08,0 2.09,0.25 3,0.68V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h8.08C12.03,19.67 12,19.34 12,19zM4,6l8,5l8,-5v2l-8,5L4,8V6zM17.34,22l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L23,16.34L17.34,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mark_email_unread.xml b/compose/material/material/icons/generator/raw-icons/filled/mark_email_unread.xml
deleted file mode 100644
index ca3dba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mark_email_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8.98V18c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10.1C14.04,4.32 14,4.66 14,5c0,1.48 0.65,2.79 1.67,3.71L12,11L4,6v2l8,5l5.3,-3.32C17.84,9.88 18.4,10 19,10C20.13,10 21.16,9.61 22,8.98zM16,5c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,3.34 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mark_unread_chat_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/mark_unread_chat_alt.xml
deleted file mode 100644
index fc8d461..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mark_unread_chat_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8V6h9.03c-1.21,-1.6 -1.08,-3.21 -0.92,-4H4.01c-1.1,0 -2,0.89 -2,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V6.97C21.16,7.61 20.13,8 19,8H6zM14,14H6v-2h8V14zM18,11H6V9h12V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/markunread.xml b/compose/material/material/icons/generator/raw-icons/filled/markunread.xml
deleted file mode 100644
index 6943b4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/markunread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/markunread_mailbox.xml b/compose/material/material/icons/generator/raw-icons/filled/markunread_mailbox.xml
deleted file mode 100644
index de35878..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/markunread_mailbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6H10v6H8V4h6V0H6v6H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/masks.xml b/compose/material/material/icons/generator/raw-icons/filled/masks.xml
deleted file mode 100644
index 04cafc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/masks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,6c-1.31,0 -2.37,1.01 -2.48,2.3C15.14,7.8 14.18,6.5 12,6.5c-2.19,0 -3.14,1.3 -5.02,1.8C6.87,7.02 5.81,6 4.5,6C3.12,6 2,7.12 2,8.5V9c0,6 3.6,7.81 6.52,7.98C9.53,17.62 10.72,18 12,18s2.47,-0.38 3.48,-1.02C18.4,16.81 22,15 22,9V8.5C22,7.12 20.88,6 19.5,6zM3.5,9V8.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3c0,1.28 0.38,2.47 1.01,3.48C4.99,14.27 3.5,12.65 3.5,9zM20.5,9c0,3.65 -1.49,5.27 -3.01,5.98c0.64,-1.01 1.01,-2.2 1.01,-3.48v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V9zM10.69,10.48c-0.44,0.26 -0.96,0.56 -1.69,0.76V10.2c0.48,-0.17 0.84,-0.38 1.18,-0.58C10.72,9.3 11.23,9 12,9s1.27,0.3 1.8,0.62c0.34,0.2 0.71,0.42 1.2,0.59v1.04c-0.75,-0.21 -1.26,-0.51 -1.71,-0.78C12.83,10.2 12.49,10 12,10C11.51,10 11.16,10.2 10.69,10.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/maximize.xml b/compose/material/material/icons/generator/raw-icons/filled/maximize.xml
deleted file mode 100644
index 3d75890..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/maximize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/media_bluetooth_off.xml b/compose/material/material/icons/generator/raw-icons/filled/media_bluetooth_off.xml
deleted file mode 100644
index fbefd8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/media_bluetooth_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V3h6v4h-4v1.17L9,6.17zM19.42,15L22,17.57l-0.8,0.8l-6.78,-6.78l0.8,-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15zM19.17,13.55l1.13,-1.13l-1.13,-1.13V13.55zM21.19,21.19l-1.41,1.41l-3.98,-3.98l-0.58,0.58l-0.85,-0.85l0.58,-0.58L11,13.83V17c0,2.21 -1.78,4 -3.99,4S3,19.21 3,17s1.79,-4 4.01,-4c0.73,0 1.41,0.21 2,0.55v-1.72L1.39,4.22L2.8,2.81L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/media_bluetooth_on.xml b/compose/material/material/icons/generator/raw-icons/filled/media_bluetooth_on.xml
deleted file mode 100644
index 9f09f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/media_bluetooth_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3l0.01,10.55c-0.6,-0.34 -1.28,-0.55 -2,-0.55C4.79,13 3,14.79 3,17s1.79,4 4.01,4S11,19.21 11,17V7h4V3H9zM21,12.43L17.57,9h-0.6v4.55l-2.75,-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75,-2.75V21h0.6L21,17.57L18.42,15L21,12.43zM18.17,11.3l1.13,1.13l-1.13,1.13V11.3zM19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mediation.xml b/compose/material/material/icons/generator/raw-icons/filled/mediation.xml
deleted file mode 100644
index 7db0a14..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mediation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4,4 -1.41,-1.41L18.17,13h-5.23c-0.34,3.1 -2.26,5.72 -4.94,7.05C7.96,21.69 6.64,23 5,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3c0.95,0 1.78,0.45 2.33,1.14 1.9,-1.03 3.26,-2.91 3.58,-5.14h-3.1C7.4,14.16 6.3,15 5,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3c1.3,0 2.4,0.84 2.82,2h3.1c-0.32,-2.23 -1.69,-4.1 -3.59,-5.14C6.78,6.55 5.95,7 5,7 3.34,7 2,5.66 2,4s1.34,-3 3,-3c1.64,0 2.96,1.31 2.99,2.95 2.68,1.33 4.6,3.95 4.94,7.05h5.23l-1.58,-1.59L18,8l4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/medical_information.xml b/compose/material/material/icons/generator/raw-icons/filled/medical_information.xml
deleted file mode 100644
index 509ea4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/medical_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM11,4h2v5h-2V4zM11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16zM13,14.5V13h6v1.5H13zM13,17.5V16h4v1.5H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/medical_services.xml b/compose/material/material/icons/generator/raw-icons/filled/medical_services.xml
deleted file mode 100644
index 5b49a52..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/medical_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4V4c0,-1.1 -0.9,-2 -2,-2h-4C8.9,2 8,2.9 8,4v2H4C2.9,6 2,6.9 2,8v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM10,4h4v2h-4V4zM16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/medication.xml b/compose/material/material/icons/generator/raw-icons/filled/medication.xml
deleted file mode 100644
index c2554c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/medication.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h12v2h-12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6H7C5.9,6 5,6.9 5,8v11c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V8C19,6.9 18.1,6 17,6zM16,15h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/meeting_room.xml b/compose/material/material/icons/generator/raw-icons/filled/meeting_room.xml
deleted file mode 100644
index d14eeed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6v15L3,21v-2h2L5,3h9v1h5v15h2v2h-4L17,6h-3zM10,11v2h2v-2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/memory.xml b/compose/material/material/icons/generator/raw-icons/filled/memory.xml
deleted file mode 100644
index 4b7c5dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/memory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9L9,9v6h6L15,9zM13,13h-2v-2h2v2zM21,11L21,9h-2L19,7c0,-1.1 -0.9,-2 -2,-2h-2L15,3h-2v2h-2L11,3L9,3v2L7,5c-1.1,0 -2,0.9 -2,2v2L3,9v2h2v2L3,13v2h2v2c0,1.1 0.9,2 2,2h2v2h2v-2h2v2h2v-2h2c1.1,0 2,-0.9 2,-2v-2h2v-2h-2v-2h2zM17,17L7,17L7,7h10v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/menu.xml b/compose/material/material/icons/generator/raw-icons/filled/menu.xml
deleted file mode 100644
index 4350ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h18v-2L3,16v2zM3,13h18v-2L3,11v2zM3,6v2h18L21,6L3,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/menu_book.xml b/compose/material/material/icons/generator/raw-icons/filled/menu_book.xml
deleted file mode 100644
index eff1e30..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/menu_book.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.11,-0.35 -2.33,-0.5 -3.5,-0.5c-1.95,0 -4.05,0.4 -5.5,1.5c-1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v14.65c0,0.25 0.25,0.5 0.5,0.5c0.1,0 0.15,-0.05 0.25,-0.05C3.1,20.45 5.05,20 6.5,20c1.95,0 4.05,0.4 5.5,1.5c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.65,0 3.35,0.3 4.75,1.05c0.1,0.05 0.15,0.05 0.25,0.05c0.25,0 0.5,-0.25 0.5,-0.5V6C22.4,5.55 21.75,5.25 21,5zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5c-1.7,0 -4.15,0.65 -5.5,1.5V8c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.2,0 2.4,0.15 3.5,0.5V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5c0.88,0 1.73,0.09 2.5,0.26V9.24C19.21,9.09 18.36,9 17.5,9c-1.7,0 -3.24,0.29 -4.5,0.83v1.66C14.13,10.85 15.7,10.5 17.5,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.49v1.66c1.13,-0.64 2.7,-0.99 4.5,-0.99c0.88,0 1.73,0.09 2.5,0.26V11.9c-0.79,-0.15 -1.64,-0.24 -2.5,-0.24C15.8,11.66 14.26,11.96 13,12.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,14.33c-1.7,0 -3.24,0.29 -4.5,0.83v1.66c1.13,-0.64 2.7,-0.99 4.5,-0.99c0.88,0 1.73,0.09 2.5,0.26v-1.52C19.21,14.41 18.36,14.33 17.5,14.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/menu_open.xml b/compose/material/material/icons/generator/raw-icons/filled/menu_open.xml
deleted file mode 100644
index b3283cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/menu_open.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h13v-2L3,16v2zM3,13h10v-2L3,11v2zM3,6v2h13L16,6L3,6zM21,15.59L17.42,12 21,8.41 19.59,7l-5,5 5,5L21,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/merge.xml b/compose/material/material/icons/generator/raw-icons/filled/merge.xml
deleted file mode 100644
index 07394ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/merge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,21L5,19.59l4.83,-4.83c0.75,-0.75 1.17,-1.77 1.17,-2.83v-5.1L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83v5.1c0,1.06 0.42,2.08 1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/merge_type.xml b/compose/material/material/icons/generator/raw-icons/filled/merge_type.xml
deleted file mode 100644
index 360a589..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/merge_type.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20.41L18.41,19 15,15.59 13.59,17 17,20.41zM7.5,8H11v5.59L5.59,19 7,20.41l6,-6V8h3.5L12,3.5 7.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/message.xml b/compose/material/material/icons/generator/raw-icons/filled/message.xml
deleted file mode 100644
index db7ae13..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/message.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mic.xml b/compose/material/material/icons/generator/raw-icons/filled/mic.xml
deleted file mode 100644
index 791b475..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 2.99,-1.34 2.99,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zM17.3,11c0,3 -2.54,5.1 -5.3,5.1S6.7,14 6.7,11L5,11c0,3.41 2.72,6.23 6,6.72L11,21h2v-3.28c3.28,-0.48 6,-3.3 6,-6.72h-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mic_external_off.xml b/compose/material/material/icons/generator/raw-icons/filled/mic_external_off.xml
deleted file mode 100644
index 97517a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mic_external_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81 1.39,4.22 5.17,8L4,8l1,10h1c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-1.17l5.78,5.78 1.41,-1.42zM12,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2h1l0.56,-5.61L12,14.83L12,18zM14,6v5.17l-2,-2L12,6c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v11.17l-2,-2L18,6c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2zM10,5c0,0.62 -0.2,1.18 -0.52,1.66L5.33,2.51C5.81,2.19 6.38,2 7,2c1.66,0 3,1.34 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mic_external_on.xml b/compose/material/material/icons/generator/raw-icons/filled/mic_external_on.xml
deleted file mode 100644
index ce0beaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mic_external_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.22,7H4.78C4.3,6.47 4,5.77 4,5c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,0.77 -0.3,1.47 -0.78,2zM16,2c2.21,0 4,1.79 4,4v16h-2V6c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v12c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4H5L4,8h6L9,18H8c0,1.1 0.9,2 2,2s2,-0.9 2,-2V6c0,-2.21 1.79,-4 4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mic_none.xml b/compose/material/material/icons/generator/raw-icons/filled/mic_none.xml
deleted file mode 100644
index 2891411..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mic_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 2.99,-1.34 2.99,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zM10.8,4.9c0,-0.66 0.54,-1.2 1.2,-1.2 0.66,0 1.2,0.54 1.2,1.2l-0.01,6.2c0,0.66 -0.53,1.2 -1.19,1.2 -0.66,0 -1.2,-0.54 -1.2,-1.2L10.8,4.9zM17.3,11c0,3 -2.54,5.1 -5.3,5.1S6.7,14 6.7,11L5,11c0,3.41 2.72,6.23 6,6.72L11,21h2v-3.28c3.28,-0.48 6,-3.3 6,-6.72h-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mic_off.xml b/compose/material/material/icons/generator/raw-icons/filled/mic_off.xml
deleted file mode 100644
index 8e199f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mic_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-1.7c0,0.74 -0.16,1.43 -0.43,2.05l1.23,1.23c0.56,-0.98 0.9,-2.09 0.9,-3.28zM14.98,11.17c0,-0.06 0.02,-0.11 0.02,-0.17L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v0.18l5.98,5.99zM4.27,3L3,4.27l6.01,6.01L9.01,11c0,1.66 1.33,3 2.99,3 0.22,0 0.44,-0.03 0.65,-0.08l1.66,1.66c-0.71,0.33 -1.5,0.52 -2.31,0.52 -2.76,0 -5.3,-2.1 -5.3,-5.1L5,11c0,3.41 2.72,6.23 6,6.72L11,21h2v-3.28c0.91,-0.13 1.77,-0.45 2.54,-0.9L19.73,21 21,19.73 4.27,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/microwave.xml b/compose/material/material/icons/generator/raw-icons/filled/microwave.xml
deleted file mode 100644
index 01117b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/microwave.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.8,10.61L5.37,9.19C5.73,8.79 6.59,8 7.75,8c0.8,0 1.39,0.39 1.81,0.67C9.87,8.88 10.07,9 10.25,9c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42c-0.36,0.4 -1.22,1.19 -2.37,1.19c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,10.12 7.94,10 7.75,10C7.38,10 6.95,10.41 6.8,10.61zM7.75,15c0.19,0 0.38,0.12 0.71,0.34c0.42,0.28 1,0.66 1.79,0.66c1.16,0 2.01,-0.79 2.37,-1.19l-1.42,-1.42c-0.15,0.2 -0.59,0.61 -0.95,0.61c-0.18,0 -0.38,-0.12 -0.69,-0.33C9.14,13.39 8.55,13 7.75,13c-1.16,0 -2.02,0.79 -2.38,1.19l1.42,1.42C6.95,15.41 7.38,15 7.75,15zM22,6v12c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h16C21.1,4 22,4.9 22,6zM14,6H4v12h10V6zM19,16c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1C18.55,17 19,16.55 19,16zM19,12c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1C18.55,13 19,12.55 19,12zM19,7h-2v2h2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/military_tech.xml b/compose/material/material/icons/generator/raw-icons/filled/military_tech.xml
deleted file mode 100644
index 693a480..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/military_tech.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.43V2H7v8.43c0,0.35 0.18,0.68 0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22l-0.78,-3.33l2.59,-2.24l-3.41,-0.29l-0.99,-2.34l4.18,-2.51C16.82,11.11 17,10.79 17,10.43zM13,12.23l-1,0.6l-1,-0.6V3h2V12.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/minimize.xml b/compose/material/material/icons/generator/raw-icons/filled/minimize.xml
deleted file mode 100644
index a307ff0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/minimize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h12v2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/minor_crash.xml b/compose/material/material/icons/generator/raw-icons/filled/minor_crash.xml
deleted file mode 100644
index 968359d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/minor_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,9.01C18.72,8.42 18.16,8 17.5,8h-11C5.84,8 5.29,8.42 5.08,9.01L3,15v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,9.01zM6.85,10h10.29l1.04,3H5.81L6.85,10zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM9.41,5L8,6.41l-3,-3L6.41,2L9.41,5zM16,6.41L14.59,5l3,-3L19,3.41L16,6.41zM13,5h-2V0h2V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/miscellaneous_services.xml b/compose/material/material/icons/generator/raw-icons/filled/miscellaneous_services.xml
deleted file mode 100644
index 5bbe6bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/miscellaneous_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,13.71l1.4,-2.42c0.09,-0.15 0.05,-0.34 -0.08,-0.45l-1.48,-1.16c0.03,-0.22 0.05,-0.45 0.05,-0.68s-0.02,-0.46 -0.05,-0.69l1.48,-1.16c0.13,-0.11 0.17,-0.3 0.08,-0.45l-1.4,-2.42c-0.09,-0.15 -0.27,-0.21 -0.43,-0.15L12,4.83c-0.36,-0.28 -0.75,-0.51 -1.18,-0.69l-0.26,-1.85C10.53,2.13 10.38,2 10.21,2h-2.8C7.24,2 7.09,2.13 7.06,2.3L6.8,4.15C6.38,4.33 5.98,4.56 5.62,4.84l-1.74,-0.7c-0.16,-0.06 -0.34,0 -0.43,0.15l-1.4,2.42C1.96,6.86 2,7.05 2.13,7.16l1.48,1.16C3.58,8.54 3.56,8.77 3.56,9s0.02,0.46 0.05,0.69l-1.48,1.16C2,10.96 1.96,11.15 2.05,11.3l1.4,2.42c0.09,0.15 0.27,0.21 0.43,0.15l1.74,-0.7c0.36,0.28 0.75,0.51 1.18,0.69l0.26,1.85C7.09,15.87 7.24,16 7.41,16h2.8c0.17,0 0.32,-0.13 0.35,-0.3l0.26,-1.85c0.42,-0.18 0.82,-0.41 1.18,-0.69l1.74,0.7C13.9,13.92 14.08,13.86 14.17,13.71zM8.81,11c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C10.81,10.1 9.91,11 8.81,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.92,18.67l-0.96,-0.74c0.02,-0.14 0.04,-0.29 0.04,-0.44c0,-0.15 -0.01,-0.3 -0.04,-0.44l0.95,-0.74c0.08,-0.07 0.11,-0.19 0.05,-0.29l-0.9,-1.55c-0.05,-0.1 -0.17,-0.13 -0.28,-0.1l-1.11,0.45c-0.23,-0.18 -0.48,-0.33 -0.76,-0.44l-0.17,-1.18C18.73,13.08 18.63,13 18.53,13h-1.79c-0.11,0 -0.21,0.08 -0.22,0.19l-0.17,1.18c-0.27,0.12 -0.53,0.26 -0.76,0.44l-1.11,-0.45c-0.1,-0.04 -0.22,0 -0.28,0.1l-0.9,1.55c-0.05,0.1 -0.04,0.22 0.05,0.29l0.95,0.74c-0.02,0.14 -0.03,0.29 -0.03,0.44c0,0.15 0.01,0.3 0.03,0.44l-0.95,0.74c-0.08,0.07 -0.11,0.19 -0.05,0.29l0.9,1.55c0.05,0.1 0.17,0.13 0.28,0.1l1.11,-0.45c0.23,0.18 0.48,0.33 0.76,0.44l0.17,1.18c0.02,0.11 0.11,0.19 0.22,0.19h1.79c0.11,0 0.21,-0.08 0.22,-0.19l0.17,-1.18c0.27,-0.12 0.53,-0.26 0.75,-0.44l1.12,0.45c0.1,0.04 0.22,0 0.28,-0.1l0.9,-1.55C22.03,18.86 22,18.74 21.92,18.67zM17.63,18.83c-0.74,0 -1.35,-0.6 -1.35,-1.35s0.6,-1.35 1.35,-1.35s1.35,0.6 1.35,1.35S18.37,18.83 17.63,18.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/missed_video_call.xml b/compose/material/material/icons/generator/raw-icons/filled/missed_video_call.xml
deleted file mode 100644
index b51526f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/missed_video_call.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V7c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4zM10,15l-3.89,-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11,3.1 4.22,-4.22 0.78,0.79 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mms.xml b/compose/material/material/icons/generator/raw-icons/filled/mms.xml
deleted file mode 100644
index 3841880..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2zM5,14l3.5,-4.5 2.5,3.01L14.5,8l4.5,6H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mobile_friendly.xml b/compose/material/material/icons/generator/raw-icons/filled/mobile_friendly.xml
deleted file mode 100644
index 73871f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mobile_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H9c-1.1,0 -2,0.9 -2,2v3h2V4h10v16H9v-2H7v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2zM7.01,13.47l-2.55,-2.55 -1.27,1.27L7,16l7.19,-7.19 -1.27,-1.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mobile_off.xml b/compose/material/material/icons/generator/raw-icons/filled/mobile_off.xml
deleted file mode 100644
index 75397e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mobile_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.76,2.49L1.49,3.76 5,7.27V21c0,1.1 0.9,2 2,2h10c1.02,0 1.85,-0.77 1.98,-1.75l1.72,1.72 1.27,-1.27L2.76,2.49zM7,19V9.27L16.73,19H7zM17,5v9.17l2,2V3c0,-1.1 -0.9,-2 -2,-2H7c-0.85,0 -1.58,0.54 -1.87,1.3L7.83,5H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mobile_screen_share.xml b/compose/material/material/icons/generator/raw-icons/filled/mobile_screen_share.xml
deleted file mode 100644
index 3664704..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mobile_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM12.8,13.22v1.75l3.2,-2.99L12.8,9v1.7c-3.11,0.43 -4.35,2.56 -4.8,4.7 1.11,-1.5 2.58,-2.18 4.8,-2.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mobiledata_off.xml b/compose/material/material/icons/generator/raw-icons/filled/mobiledata_off.xml
deleted file mode 100644
index a283e04..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mobiledata_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l3,0l-4,-4l-4,4l3,0l0,4.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81l-1.42,1.41l6.61,6.61l0,6.18l-3,0.01l4,3.98l4,-4l-3,0.01l0,-4.18l9.78,9.78l1.41,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode.xml b/compose/material/material/icons/generator/raw-icons/filled/mode.xml
deleted file mode 100644
index 715da86..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25l0,3.75l3.75,0l11.06,-11.06l-3.75,-3.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83C21.1,6.65 21.1,6.02 20.71,5.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode_comment.xml b/compose/material/material/icons/generator/raw-icons/filled/mode_comment.xml
deleted file mode 100644
index 2ea2ca6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode_edit.xml b/compose/material/material/icons/generator/raw-icons/filled/mode_edit.xml
deleted file mode 100644
index 2844baf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode_edit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode_edit_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/mode_edit_outline.xml
deleted file mode 100644
index 715da86..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode_edit_outline.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25l0,3.75l3.75,0l11.06,-11.06l-3.75,-3.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83C21.1,6.65 21.1,6.02 20.71,5.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode_fan_off.xml b/compose/material/material/icons/generator/raw-icons/filled/mode_fan_off.xml
deleted file mode 100644
index 5a5e79d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode_fan_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.34,8.36l-2.29,0.82c-0.18,-0.13 -0.38,-0.25 -0.58,-0.34c0.17,-0.83 0.63,-1.58 1.36,-2.06C16.85,5.44 16.18,2 13.39,2c-3.08,0 -4.9,1.47 -5.3,3.26L18.73,15.9c1.5,0.39 3.27,-0.51 3.27,-2.51C22,9 18.99,7.16 16.34,8.36z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L5.27,8.1C3.77,7.7 2,8.61 2,10.61c0,4.4 3.01,6.24 5.66,5.03l2.29,-0.82c0.18,0.13 0.38,0.25 0.58,0.34c-0.17,0.83 -0.63,1.58 -1.36,2.06C7.15,18.56 7.82,22 10.61,22c3.08,0 4.9,-1.47 5.3,-3.26l3.87,3.87l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode_night.xml b/compose/material/material/icons/generator/raw-icons/filled/mode_night.xml
deleted file mode 100644
index 180c1ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode_night.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,2c-1.82,0 -3.53,0.5 -5,1.35c2.99,1.73 5,4.95 5,8.65s-2.01,6.92 -5,8.65C5.97,21.5 7.68,22 9.5,22c5.52,0 10,-4.48 10,-10S15.02,2 9.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode_of_travel.xml b/compose/material/material/icons/generator/raw-icons/filled/mode_of_travel.xml
deleted file mode 100644
index 1cc03da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode_of_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.31,18.9c-0.96,1 -2.06,2.03 -3.31,3.1c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2c4,0 7.64,2.92 7.97,7.5l3.53,0L19,14l-4.5,-4.5l3.47,0C17.65,6.24 15.13,4 12,4c-3.35,0 -6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14c0.64,-0.59 1.23,-1.16 1.77,-1.71c-0.17,-0.34 -0.27,-0.72 -0.27,-1.12c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5S17.38,19 16,19C15.76,19 15.53,18.97 15.31,18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mode_standby.xml b/compose/material/material/icons/generator/raw-icons/filled/mode_standby.xml
deleted file mode 100644
index ef7b898..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mode_standby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,10.34 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/model_training.xml b/compose/material/material/icons/generator/raw-icons/filled/model_training.xml
deleted file mode 100644
index 8158a10..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/model_training.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,13.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5h0C13.93,10 15.5,11.57 15.5,13.5zM13,19.5h-2V21h2V19.5zM19,13c0,1.68 -0.59,3.21 -1.58,4.42l1.42,1.42C20.18,17.27 21,15.23 21,13c0,-2.74 -1.23,-5.19 -3.16,-6.84l-1.42,1.42C17.99,8.86 19,10.82 19,13zM16,5l-4,-4v3c0,0 0,0 0,0c-4.97,0 -9,4.03 -9,9c0,2.23 0.82,4.27 2.16,5.84l1.42,-1.42C5.59,16.21 5,14.68 5,13c0,-3.86 3.14,-7 7,-7c0,0 0,0 0,0v3L16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/monetization_on.xml b/compose/material/material/icons/generator/raw-icons/filled/monetization_on.xml
deleted file mode 100644
index 4b5b299..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/monetization_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13.41,18.09L13.41,20h-2.67v-1.93c-1.71,-0.36 -3.16,-1.46 -3.27,-3.4h1.96c0.1,1.05 0.82,1.87 2.65,1.87 1.96,0 2.4,-0.98 2.4,-1.59 0,-0.83 -0.44,-1.61 -2.67,-2.14 -2.48,-0.6 -4.18,-1.62 -4.18,-3.67 0,-1.72 1.39,-2.84 3.11,-3.21L10.74,4h2.67v1.95c1.86,0.45 2.79,1.86 2.85,3.39L14.3,9.34c-0.05,-1.11 -0.64,-1.87 -2.22,-1.87 -1.5,0 -2.4,0.68 -2.4,1.64 0,0.84 0.65,1.39 2.67,1.91s4.18,1.39 4.18,3.91c-0.01,1.83 -1.38,2.83 -3.12,3.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/money.xml b/compose/material/material/icons/generator/raw-icons/filled/money.xml
deleted file mode 100644
index 99671ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/money.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8h2v8L5,16zM12,8L9,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1L13,9c0,-0.55 -0.45,-1 -1,-1zM11,14h-1v-4h1v4zM18,8h-3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1L19,9c0,-0.55 -0.45,-1 -1,-1zM17,14h-1v-4h1v4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20L22,4L2,4zM4,18L4,6h16v12L4,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/money_off.xml b/compose/material/material/icons/generator/raw-icons/filled/money_off.xml
deleted file mode 100644
index f773dee..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/money_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-0.53,0.12 -1.03,0.3 -1.48,0.54l1.47,1.47c0.41,-0.17 0.91,-0.27 1.51,-0.27zM5.33,4.06L4.06,5.33 7.5,8.77c0,2.08 1.56,3.21 3.91,3.91l3.51,3.51c-0.34,0.48 -1.05,0.91 -2.42,0.91 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c0.96,-0.18 1.82,-0.55 2.45,-1.12l2.22,2.22 1.27,-1.27L5.33,4.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/money_off_csred.xml b/compose/material/material/icons/generator/raw-icons/filled/money_off_csred.xml
deleted file mode 100644
index cb38a55..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/money_off_csred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.53,7.43c0.42,-0.31 0.93,-0.47 1.54,-0.47s1.11,0.16 1.5,0.49c0.39,0.32 0.65,0.7 0.79,1.12l1.89,-0.8c-0.24,-0.71 -0.71,-1.35 -1.4,-1.92c-0.5,-0.4 -1.12,-0.65 -1.85,-0.77V3h-2v2.11c-0.41,0.08 -0.79,0.21 -1.14,0.39c-0.35,0.18 -0.64,0.39 -0.9,0.63l1.43,1.43C10.43,7.52 10.48,7.47 10.53,7.43zM2.81,2.81L1.39,4.22l12.35,12.35C13.31,16.85 12.79,17 12.19,17c-0.71,0 -1.32,-0.23 -1.83,-0.7c-0.5,-0.47 -0.86,-1.07 -1.06,-1.81l-1.98,0.8c0.34,1.17 0.95,2.08 1.83,2.73c0.57,0.42 1.19,0.68 1.85,0.83V21h2v-2.08c0.44,-0.07 0.87,-0.17 1.29,-0.35c0.34,-0.14 0.64,-0.32 0.92,-0.53l4.57,4.57l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/monitor.xml b/compose/material/material/icons/generator/raw-icons/filled/monitor.xml
deleted file mode 100644
index 6a452ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/monitor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2h3l-1,1v2h12v-2l-1,-1h3c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,16L4,16L4,5h16v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/monitor_heart.xml b/compose/material/material/icons/generator/raw-icons/filled/monitor_heart.xml
deleted file mode 100644
index 8e215cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/monitor_heart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.11,12.45L14,10.24l-3.11,6.21C10.73,16.79 10.38,17 10,17s-0.73,-0.21 -0.89,-0.55L7.38,13H2v5c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-5h-6C15.62,13 15.27,12.79 15.11,12.45z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v5h6c0.38,0 0.73,0.21 0.89,0.55L10,13.76l3.11,-6.21c0.34,-0.68 1.45,-0.68 1.79,0L16.62,11H22V6C22,4.9 21.1,4 20,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/monitor_weight.xml b/compose/material/material/icons/generator/raw-icons/filled/monitor_weight.xml
deleted file mode 100644
index 5e84284..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/monitor_weight.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,12c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8.5h1v1h-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,8.5h1v1h-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5h1v1h-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/monochrome_photos.xml b/compose/material/material/icons/generator/raw-icons/filled/monochrome_photos.xml
deleted file mode 100644
index 02aef15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/monochrome_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.2L15,3L9,3L7.2,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,19h-8v-1c-2.8,0 -5,-2.2 -5,-5s2.2,-5 5,-5L12,7h8v12zM17,13c0,-2.8 -2.2,-5 -5,-5v1.8c1.8,0 3.2,1.4 3.2,3.2s-1.4,3.2 -3.2,3.2L12,18c2.8,0 5,-2.2 5,-5zM8.8,13c0,1.8 1.4,3.2 3.2,3.2L12,9.8c-1.8,0 -3.2,1.4 -3.2,3.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mood.xml b/compose/material/material/icons/generator/raw-icons/filled/mood.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mood_bad.xml b/compose/material/material/icons/generator/raw-icons/filled/mood_bad.xml
deleted file mode 100644
index 4b9d1f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mood_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,14c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/moped.xml b/compose/material/material/icons/generator/raw-icons/filled/moped.xml
deleted file mode 100644
index 7e7cc0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/moped.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35V7zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/more.xml b/compose/material/material/icons/generator/raw-icons/filled/more.xml
deleted file mode 100644
index 58800d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/more.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0,12l5.41,8.11c0.36,0.53 0.97,0.89 1.66,0.89L22,21c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM9,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM14,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/more_horiz.xml b/compose/material/material/icons/generator/raw-icons/filled/more_horiz.xml
deleted file mode 100644
index 6439bcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/more_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/more_time.xml b/compose/material/material/icons/generator/raw-icons/filled/more_time.xml
deleted file mode 100644
index 1cfb3c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/more_time.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8l0,6l4.7,2.9l0.8,-1.2l-4,-2.4l0,-5.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,12c0.05,0.33 0.08,0.66 0.08,1c0,3.9 -3.1,7 -7,7s-7,-3.1 -7,-7c0,-3.9 3.1,-7 7,-7c0.7,0 1.37,0.1 2,0.29V4.23C12.36,4.08 11.69,4 11,4c-5,0 -9,4 -9,9s4,9 9,9s9,-4 9,-9c0,-0.34 -0.02,-0.67 -0.06,-1H17.92z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/more_vert.xml b/compose/material/material/icons/generator/raw-icons/filled/more_vert.xml
deleted file mode 100644
index 34b93ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/more_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mosque.xml b/compose/material/material/icons/generator/raw-icons/filled/mosque.xml
deleted file mode 100644
index f6e8106..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mosque.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8h10c0.29,0 0.57,0.06 0.84,0.13C17.93,7.8 18,7.46 18,7.09c0,-1.31 -0.65,-2.53 -1.74,-3.25L12,1L7.74,3.84C6.65,4.56 6,5.78 6,7.09C6,7.46 6.07,7.8 6.16,8.13C6.43,8.06 6.71,8 7,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,7c0,-1.1 -2,-3 -2,-3s-2,1.9 -2,3c0,0.74 0.4,1.38 1,1.72V13h-2v-2c0,-1.1 -0.9,-2 -2,-2H7c-1.1,0 -2,0.9 -2,2v2H3V8.72C3.6,8.38 4,7.74 4,7c0,-1.1 -2,-3 -2,-3S0,5.9 0,7c0,0.74 0.4,1.38 1,1.72V21h9v-4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v4h9V8.72C23.6,8.38 24,7.74 24,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_auto.xml b/compose/material/material/icons/generator/raw-icons/filled/motion_photos_auto.xml
deleted file mode 100644
index 70c32f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99zM12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6s-6,2.69 -6,6S8.69,18 12,18zM11.29,7.5h1.43l3.01,8h-1.39l-0.72,-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_off.xml b/compose/material/material/icons/generator/raw-icons/filled/motion_photos_off.xml
deleted file mode 100644
index 21b2d35..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.84,20.84L3.16,3.16 1.89,4.43l1.89,1.89C2.66,7.93 2,9.89 2,12c0,5.52 4.48,10 10,10 2.11,0 4.07,-0.66 5.68,-1.77l1.89,1.89 1.27,-1.28zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-1.55 0.45,-3 1.22,-4.23l1.46,1.46C6.25,10.06 6,11 6,12c0,3.31 2.69,6 6,6 1,0 1.94,-0.25 2.77,-0.68l1.46,1.46C15,19.55 13.55,20 12,20zM6.32,3.77C7.93,2.66 9.89,2 12,2c5.52,0 10,4.48 10,10 0,2.11 -0.66,4.07 -1.77,5.68l-1.45,-1.45C19.55,15 20,13.55 20,12c0,-4.41 -3.59,-8 -8,-8 -1.55,0 -3,0.45 -4.23,1.22L6.32,3.77zM18,12c0,1 -0.25,1.94 -0.68,2.77L9.23,6.68C10.06,6.25 11,6 12,6c3.31,0 6,2.69 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_on.xml b/compose/material/material/icons/generator/raw-icons/filled/motion_photos_on.xml
deleted file mode 100644
index 95eea80..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM6,12c0,-3.31 2.69,-6 6,-6s6,2.69 6,6s-2.69,6 -6,6S6,15.31 6,12zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_pause.xml b/compose/material/material/icons/generator/raw-icons/filled/motion_photos_pause.xml
deleted file mode 100644
index bf78062..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S15.31,6 12,6zM11,15H9V9h2V15zM15,15h-2V9h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_paused.xml b/compose/material/material/icons/generator/raw-icons/filled/motion_photos_paused.xml
deleted file mode 100644
index bf0fc9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/motion_photos_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-1.19 0.22,-2.32 0.6,-3.38L4.48,9.3C4.17,10.14 4,11.05 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.95,0 -1.85,0.17 -2.69,0.48L8.63,2.59C9.69,2.22 10.82,2 12,2C17.52,2 22,6.48 22,12zM5.5,4C4.67,4 4,4.67 4,5.5S4.67,7 5.5,7S7,6.33 7,5.5S6.33,4 5.5,4zM11,16V8H9v8H11zM15,16V8h-2v8H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/motorcycle.xml b/compose/material/material/icons/generator/raw-icons/filled/motorcycle.xml
deleted file mode 100644
index dfed930..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/motorcycle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c-0.03,0 -0.05,0.01 -0.08,0.01L13.41,6L9,6v2h3.59l2,2h-8.1C4.01,10 2,12.02 2,14.5 2,16.99 4.01,19 6.5,19c2.22,0 4.06,-1.62 4.42,-3.73L13.04,14c-0.02,0.17 -0.04,0.33 -0.04,0.5 0,2.49 2.01,4.5 4.5,4.5s4.5,-2.01 4.5,-4.5 -2.01,-4.5 -4.5,-4.5zM8.84,15.26C8.52,16.27 7.58,17 6.47,17c-1.38,0 -2.5,-1.12 -2.5,-2.5S5.09,12 6.47,12c1.12,0 2.05,0.74 2.37,1.75L6,13.75v1.5l2.84,0.01zM17.47,17c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mouse.xml b/compose/material/material/icons/generator/raw-icons/filled/mouse.xml
deleted file mode 100644
index a19d2dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,1.07L13,9h7c0,-4.08 -3.05,-7.44 -7,-7.93zM4,15c0,4.42 3.58,8 8,8s8,-3.58 8,-8v-4L4,11v4zM11,1.07C7.05,1.56 4,4.92 4,9h7L11,1.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/move_down.xml b/compose/material/material/icons/generator/raw-icons/filled/move_down.xml
deleted file mode 100644
index 3bbdcd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/move_down.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11c0,2.45 1.76,4.47 4.08,4.91l-1.49,-1.49L7,13l4,4.01L7,21l-1.41,-1.41l1.58,-1.58l0,-0.06C3.7,17.54 1,14.58 1,11c0,-3.87 3.13,-7 7,-7h3v2H8C5.24,6 3,8.24 3,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V4h-9v7H22zM20,9h-5V6h5V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/move_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/filled/move_to_inbox.xml
deleted file mode 100644
index 0002cb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/move_to_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L4.99,3c-1.11,0 -1.98,0.9 -1.98,2L3,19c0,1.1 0.88,2 1.99,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,15h-4c0,1.66 -1.35,3 -3,3s-3,-1.34 -3,-3L4.99,15L4.99,5L19,5v10zM16,10h-2L14,7h-4v3L8,10l4,4 4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/move_up.xml b/compose/material/material/icons/generator/raw-icons/filled/move_up.xml
deleted file mode 100644
index c546547..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/move_up.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,-2.45 1.76,-4.47 4.08,-4.91L5.59,9.59L7,11l4,-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46 1,9.42 1,13c0,3.87 3.13,7 7,7h3v-2H8C5.24,18 3,15.76 3,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v7h9v-7H13zM20,18h-5v-3h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/movie.xml b/compose/material/material/icons/generator/raw-icons/filled/movie.xml
deleted file mode 100644
index b43fbf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/movie.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4H8l2,4H7L5,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/movie_creation.xml b/compose/material/material/icons/generator/raw-icons/filled/movie_creation.xml
deleted file mode 100644
index b43fbf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/movie_creation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4H8l2,4H7L5,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/movie_filter.xml b/compose/material/material/icons/generator/raw-icons/filled/movie_filter.xml
deleted file mode 100644
index 697e4c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/movie_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l2,3h-3l-2,-3h-2l2,3h-3l-2,-3L8,4l2,3L7,7L5,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4h-4zM11.25,15.25L10,18l-1.25,-2.75L6,14l2.75,-1.25L10,10l1.25,2.75L14,14l-2.75,1.25zM16.94,11.94L16,14l-0.94,-2.06L13,11l2.06,-0.94L16,8l0.94,2.06L19,11l-2.06,0.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/moving.xml b/compose/material/material/icons/generator/raw-icons/filled/moving.xml
deleted file mode 100644
index 933867f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/moving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.71,9.71L22,12V6h-6l2.29,2.29l-4.17,4.17c-0.39,0.39 -1.02,0.39 -1.41,0l-1.17,-1.17c-1.17,-1.17 -3.07,-1.17 -4.24,0L2,16.59L3.41,18l5.29,-5.29c0.39,-0.39 1.02,-0.39 1.41,0l1.17,1.17c1.17,1.17 3.07,1.17 4.24,0L19.71,9.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/mp.xml b/compose/material/material/icons/generator/raw-icons/filled/mp.xml
deleted file mode 100644
index 8de8cfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM6.5,9L11,9c0.55,0 1,0.45 1,1v5h-1.5v-4.5h-1v3L8,13.5v-3L7,10.5L7,15L5.5,15v-5c0,-0.55 0.45,-1 1,-1zM15.5,15L14,15L14,9h3.5c0.55,0 1,0.45 1,1v2.5c0,0.55 -0.45,1 -1,1h-2L15.5,15zM15.5,12L17,12v-1.5h-1.5L15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/multiline_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/multiline_chart.xml
deleted file mode 100644
index 96a6a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/multiline_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.92l-1.41,-1.41 -2.85,3.21C15.68,6.4 12.83,5 9.61,5 6.72,5 4.07,6.16 2,8l1.42,1.42C5.12,7.93 7.27,7 9.61,7c2.74,0 5.09,1.26 6.77,3.24l-2.88,3.24 -4,-4L2,16.99l1.5,1.5 6,-6.01 4,4 4.05,-4.55c0.75,1.35 1.25,2.9 1.44,4.55H21c-0.22,-2.3 -0.95,-4.39 -2.04,-6.14L22,6.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/multiple_stop.xml b/compose/material/material/icons/generator/raw-icons/filled/multiple_stop.xml
deleted file mode 100644
index c43c84f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/multiple_stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4l4,4l-4,4V9h-4V7h4V4zM10,7C9.45,7 9,7.45 9,8s0.45,1 1,1s1,-0.45 1,-1S10.55,7 10,7zM6,7C5.45,7 5,7.45 5,8s0.45,1 1,1s1,-0.45 1,-1S6.55,7 6,7zM7,17h4v-2H7v-3l-4,4l4,4V17zM14,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C13,16.55 13.45,17 14,17zM18,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C17,16.55 17.45,17 18,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/museum.xml b/compose/material/material/icons/generator/raw-icons/filled/museum.xml
deleted file mode 100644
index cd239cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/museum.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22zM16,18h-2v-4l-2,3l-2,-3v4H8v-7h2l2,3l2,-3h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/music_note.xml b/compose/material/material/icons/generator/raw-icons/filled/music_note.xml
deleted file mode 100644
index 35dcb2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/music_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4V7h4V3h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/music_off.xml b/compose/material/material/icons/generator/raw-icons/filled/music_off.xml
deleted file mode 100644
index 32ac93d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/music_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.27,3L3,4.27l9,9v0.28c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4v-1.73L19.73,21 21,19.73 4.27,3zM14,7h4V3h-6v5.18l2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/music_video.xml b/compose/material/material/icons/generator/raw-icons/filled/music_video.xml
deleted file mode 100644
index 1fe794f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/music_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM8,15c0,-1.66 1.34,-3 3,-3 0.35,0 0.69,0.07 1,0.18L12,6h5v2h-3v7.03c-0.02,1.64 -1.35,2.97 -3,2.97 -1.66,0 -3,-1.34 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/my_location.xml b/compose/material/material/icons/generator/raw-icons/filled/my_location.xml
deleted file mode 100644
index b050330..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/my_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nat.xml b/compose/material/material/icons/generator/raw-icons/filled/nat.xml
deleted file mode 100644
index bc3e7ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nat.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.82,13H11v-2H6.82C6.4,9.84 5.3,9 4,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C5.3,15 6.4,14.16 6.82,13zM4,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C5,12.55 4.55,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-4,-3v2h-4.05C14.45,5.95 10.19,2 5,2v2c4.42,0 8,3.58 8,8s-3.58,8 -8,8v2c5.19,0 9.45,-3.95 9.95,-9H19v2L23,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nature.xml b/compose/material/material/icons/generator/raw-icons/filled/nature.xml
deleted file mode 100644
index fd74dd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nature.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16.12c3.47,-0.41 6.17,-3.36 6.17,-6.95 0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7c0,3.47 2.52,6.34 5.83,6.89V20H5v2h14v-2h-6v-3.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nature_people.xml b/compose/material/material/icons/generator/raw-icons/filled/nature_people.xml
deleted file mode 100644
index 22d0292..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nature_people.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.17,9.17c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7c0,3.47 2.52,6.34 5.83,6.89V20H6v-3h1v-4c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1v4h1v5h16v-2h-3v-3.88c3.47,-0.41 6.17,-3.36 6.17,-6.95zM4.5,11c0.83,0 1.5,-0.67 1.5,-1.5S5.33,8 4.5,8 3,8.67 3,9.5 3.67,11 4.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/navigate_before.xml b/compose/material/material/icons/generator/raw-icons/filled/navigate_before.xml
deleted file mode 100644
index 5ba4301..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/navigate_before.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/navigate_next.xml b/compose/material/material/icons/generator/raw-icons/filled/navigate_next.xml
deleted file mode 100644
index d060b80..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/navigate_next.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6L8.59,7.41 13.17,12l-4.58,4.59L10,18l6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/navigation.xml b/compose/material/material/icons/generator/raw-icons/filled/navigation.xml
deleted file mode 100644
index 88e3b85..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/navigation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4.5,20.29l0.71,0.71L12,18l6.79,3 0.71,-0.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/near_me.xml b/compose/material/material/icons/generator/raw-icons/filled/near_me.xml
deleted file mode 100644
index 957e58c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/near_me.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,10.53v0.98l6.84,2.65L12.48,21h0.98L21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/near_me_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/near_me_disabled.xml
deleted file mode 100644
index de223f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/near_me_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.34L21,3l-3.34,9L12,6.34zM22.61,19.78L4.22,1.39L2.81,2.81l5.07,5.07L3,9.69v1.41l7.07,2.83L12.9,21h1.41l1.81,-4.88l5.07,5.07L22.61,19.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nearby_error.xml b/compose/material/material/icons/generator/raw-icons/filled/nearby_error.xml
deleted file mode 100644
index e36a8db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nearby_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.57l4.42,4.42L12,16.41l-4.42,-4.42L12,7.57zM12,19.19l-7.2,-7.2l7.2,-7.2l6,6V7.16l-4.58,-4.58c-0.78,-0.78 -2.05,-0.78 -2.83,0l-8.01,8c-0.78,0.78 -0.78,2.05 0,2.83l8.01,8c0.78,0.78 2.05,0.78 2.83,0L18,16.82v-3.63L12,19.19zM20,20h2v2h-2V20zM22,10h-2v8h2V10"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nearby_off.xml b/compose/material/material/icons/generator/raw-icons/filled/nearby_off.xml
deleted file mode 100644
index 6e800e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nearby_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,13.42L18.83,16l-1.81,-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58,-2.58c0.78,-0.78 2.05,-0.78 2.83,0l8,8C22.2,11.37 22.2,12.63 21.41,13.42zM21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78 -2.05,0.78 -2.83,0l-8,-8c-0.78,-0.78 -0.78,-2.05 0,-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19zM14.19,17.02l-1.39,-1.39l-0.8,0.8L7.58,12l0.8,-0.8l-1.4,-1.39L4.8,12l7.2,7.2L14.19,17.02zM16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nest_cam_wired_stand.xml b/compose/material/material/icons/generator/raw-icons/filled/nest_cam_wired_stand.xml
deleted file mode 100644
index 787613a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nest_cam_wired_stand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.83,1.01l-4.11,0.42C8.47,1.75 6,4.48 6,7.75s2.47,6 5.72,6.33l1.9,0.19l-0.56,0.85C12.71,15.04 12.36,15 12,15c-2.76,0 -5,2.24 -5,5v2c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-2c0,-1.67 -0.83,-3.15 -2.09,-4.06l0.97,-1.45C17.02,14.56 18,13.66 18,12.5V3C18,1.83 17,0.91 15.83,1.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_cell.xml b/compose/material/material/icons/generator/raw-icons/filled/network_cell.xml
deleted file mode 100644
index 3491dda..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22zM20,20h-3V9.83l3,-3V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_check.xml b/compose/material/material/icons/generator/raw-icons/filled/network_check.xml
deleted file mode 100644
index af7300d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,5c-0.17,0 -0.32,0.09 -0.41,0.23l-0.07,0.15 -5.18,11.65c-0.16,0.29 -0.26,0.61 -0.26,0.96 0,1.11 0.9,2.01 2.01,2.01 0.96,0 1.77,-0.68 1.96,-1.59l0.01,-0.03L16.4,5.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM1,9l2,2c2.88,-2.88 6.79,-4.08 10.53,-3.62l1.19,-2.68C9.89,3.84 4.74,5.27 1,9zM21,11l2,-2c-1.64,-1.64 -3.55,-2.82 -5.59,-3.57l-0.53,2.82c1.5,0.62 2.9,1.53 4.12,2.75zM17,15l2,-2c-0.8,-0.8 -1.7,-1.42 -2.66,-1.89l-0.55,2.92c0.42,0.27 0.83,0.59 1.21,0.97zM5,13l2,2c1.13,-1.13 2.56,-1.79 4.03,-2l1.28,-2.88c-2.63,-0.08 -5.3,0.87 -7.31,2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_locked.xml b/compose/material/material/icons/generator/raw-icons/filled/network_locked.xml
deleted file mode 100644
index ab7f7c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_locked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,10c0.17,0 0.33,0.03 0.5,0.05L20,1L1,20h13v-3c0,-0.89 0.39,-1.68 1,-2.23v-0.27c0,-2.48 2.02,-4.5 4.5,-4.5zM22,16v-1.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S17,13.12 17,14.5L17,16c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM21,16h-3v-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5L21,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_ping.xml b/compose/material/material/icons/generator/raw-icons/filled/network_ping.xml
deleted file mode 100644
index a884b95..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_ping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15,-5.15C18.91,10.95 19.2,11 19.5,11c1.38,0 2.5,-1.12 2.5,-2.5S20.88,6 19.5,6S17,7.12 17,8.5c0,0.35 0.07,0.67 0.2,0.97L12,14.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_wifi.xml b/compose/material/material/icons/generator/raw-icons/filled/network_wifi.xml
deleted file mode 100644
index bc3d1800..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v0l0,0L24,8.98zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-1.43,1.43C17.5,8.94 14.86,8 12,8s-5.5,0.94 -7.65,2.51L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/network_wifi_1_bar.xml
deleted file mode 100644
index 8e1c804..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM15.32,14.84C14.34,14.3 13.2,14 12,14c-1.2,0 -2.34,0.3 -3.32,0.84L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L15.32,14.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/network_wifi_2_bar.xml
deleted file mode 100644
index 5c8d026..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM16.78,13.38C15.4,12.5 13.76,12 12,12c-1.76,0 -3.4,0.5 -4.78,1.38l-4.3,-4.3C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L16.78,13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/network_wifi_3_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/network_wifi_3_bar.xml
deleted file mode 100644
index cf4868a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/network_wifi_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-2.85,2.86C16.46,10.71 14.31,10 12,10c-2.31,0 -4.46,0.71 -6.23,1.93L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/new_label.xml b/compose/material/material/icons/generator/raw-icons/filled/new_label.xml
deleted file mode 100644
index 8a512a72..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/new_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12l-4.37,6.16C16.26,18.68 15.65,19 15,19h-3l0,-6H9v-3H3V7c0,-1.1 0.9,-2 2,-2h10c0.65,0 1.26,0.31 1.63,0.84L21,12zM10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/new_releases.xml b/compose/material/material/icons/generator/raw-icons/filled/new_releases.xml
deleted file mode 100644
index 40ad9444..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/new_releases.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-2.44,-2.78 0.34,-3.68 -3.61,-0.82 -1.89,-3.18L12,3 8.6,1.54 6.71,4.72l-3.61,0.81 0.34,3.68L1,12l2.44,2.78 -0.34,3.69 3.61,0.82 1.89,3.18L12,21l3.4,1.46 1.89,-3.18 3.61,-0.82 -0.34,-3.68L23,12zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/newspaper.xml b/compose/material/material/icons/generator/raw-icons/filled/newspaper.xml
deleted file mode 100644
index ecca0e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/newspaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16c0,1.1 0.9,2 2,2l16,0c1.1,0 2,-0.9 2,-2V3zM11,19H4v-6h7V19zM20,19h-7v-2h7V19zM20,15h-7v-2h7V15zM20,11H4V8h16V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/next_plan.xml b/compose/material/material/icons/generator/raw-icons/filled/next_plan.xml
deleted file mode 100644
index 190436f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/next_plan.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM18,13.97h-5l2.26,-2.26c-0.91,-1.06 -2.25,-1.74 -3.76,-1.74c-2.37,0 -4.35,1.66 -4.86,3.88l-0.96,-0.32c0.64,-2.62 3,-4.56 5.82,-4.56c1.78,0 3.37,0.79 4.47,2.03L18,8.97V13.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/next_week.xml b/compose/material/material/icons/generator/raw-icons/filled/next_week.xml
deleted file mode 100644
index 2faca3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/next_week.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-4V5c0,-0.55 -0.22,-1.05 -0.59,-1.41C15.05,3.22 14.55,3 14,3h-4C8.9,3 8,3.9 8,5v2H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM10,5h4v2h-4V5zM11,18.5l-1,-1l3,-3l-3,-3l1,-1l4,4L11,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nfc.xml b/compose/material/material/icons/generator/raw-icons/filled/nfc.xml
deleted file mode 100644
index 63435db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nfc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,4h16v16zM18,6h-5c-1.1,0 -2,0.9 -2,2v2.28c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72L13,8h3v8L8,16L8,8h2L10,6L6,6v12h12L18,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/night_shelter.xml b/compose/material/material/icons/generator/raw-icons/filled/night_shelter.xml
deleted file mode 100644
index d4f907c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/night_shelter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM9.75,12.5c0.69,0 1.25,0.56 1.25,1.25S10.44,15 9.75,15S8.5,14.44 8.5,13.75S9.06,12.5 9.75,12.5zM17,18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H15c1.1,0 2,0.9 2,2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nightlife.xml b/compose/material/material/icons/generator/raw-icons/filled/nightlife.xml
deleted file mode 100644
index e455755..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nightlife.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5zM10.1,9l1.4,-2H4.49l1.4,2H10.1zM17,5h5v3h-3v9h0c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3c0.35,0 0.69,0.06 1,0.17L17,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nightlight.xml b/compose/material/material/icons/generator/raw-icons/filled/nightlight.xml
deleted file mode 100644
index 11123d678..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nightlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2c1.82,0 3.53,0.5 5,1.35C16.01,5.08 14,8.3 14,12s2.01,6.92 5,8.65C17.53,21.5 15.82,22 14,22C8.48,22 4,17.52 4,12S8.48,2 14,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nightlight_round.xml b/compose/material/material/icons/generator/raw-icons/filled/nightlight_round.xml
deleted file mode 100644
index 758df4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nightlight_round.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,12c0,-3.57 2.2,-6.62 5.31,-7.87 0.89,-0.36 0.75,-1.69 -0.19,-1.9 -1.1,-0.24 -2.27,-0.3 -3.48,-0.14 -4.51,0.6 -8.12,4.31 -8.59,8.83C4.44,16.93 9.13,22 15.01,22c0.73,0 1.43,-0.08 2.12,-0.23 0.95,-0.21 1.1,-1.53 0.2,-1.9 -3.22,-1.29 -5.33,-4.41 -5.32,-7.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nights_stay.xml b/compose/material/material/icons/generator/raw-icons/filled/nights_stay.xml
deleted file mode 100644
index dac2591..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nights_stay.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.1,12.08C8.77,7.57 10.6,3.6 11.63,2.01C6.27,2.2 1.98,6.59 1.98,12c0,0.14 0.02,0.28 0.02,0.42C2.62,12.15 3.29,12 4,12c1.66,0 3.18,0.83 4.1,2.15C9.77,14.63 11,16.17 11,18c0,1.52 -0.87,2.83 -2.12,3.51c0.98,0.32 2.03,0.5 3.11,0.5c3.5,0 6.58,-1.8 8.37,-4.52C18,17.72 13.38,16.52 11.1,12.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16l-0.18,0C6.4,14.84 5.3,14 4,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.62,0 2.49,0 3,0c1.1,0 2,-0.9 2,-2C9,16.9 8.1,16 7,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_accounts.xml b/compose/material/material/icons/generator/raw-icons/filled/no_accounts.xml
deleted file mode 100644
index 8b4850b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_accounts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.18,10.94c0.2,-0.44 0.32,-0.92 0.32,-1.44C15.5,7.57 13.93,6 12,6c-0.52,0 -1,0.12 -1.44,0.32L15.18,10.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,15c-2.32,0 -4.45,0.8 -6.14,2.12C4.7,15.73 4,13.95 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l2.86,2.86c0.21,1.56 1.43,2.79 2.99,2.99l2.2,2.2C13.17,15.05 12.59,15 12,15zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.54 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_adult_content.xml b/compose/material/material/icons/generator/raw-icons/filled/no_adult_content.xml
deleted file mode 100644
index 27a37a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_adult_content.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-1.85 0.63,-3.54 1.69,-4.9L7.59,9h2.83L7.1,5.69C8.46,4.63 10.15,4 12,4c4.41,0 8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.9,-1.9h-2.83l3.31,3.31C15.54,19.37 13.85,20 12,20C7.59,20 4,16.41 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,14l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_backpack.xml b/compose/material/material/icons/generator/raw-icons/filled/no_backpack.xml
deleted file mode 100644
index e53fe75..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l2.76,2.76C4.06,7.31 4,7.64 4,8v12c0,1.1 0.9,2 2,2h12c0.34,0 0.65,-0.09 0.93,-0.24l0.85,0.85L21.19,21.19zM6,14v-2h3.17l2,2H6zM14.83,12L6.98,4.15c0.01,0 0.01,-0.01 0.02,-0.01V2h3v2h4V2h3v2.14c1.72,0.45 3,2 3,3.86v9.17l-2,-2V12H14.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_cell.xml b/compose/material/material/icons/generator/raw-icons/filled/no_cell.xml
deleted file mode 100644
index a1be16d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.83,6l-3.7,-3.7C5.42,1.55 6.15,1 7,1l10,0.01c1.1,0 2,0.89 2,1.99v13.17l-2,-2V6H8.83zM19.78,22.61l-0.91,-0.91C18.58,22.45 17.85,23 17,23H7c-1.1,0 -2,-0.9 -2,-2V7.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM15.17,18L7,9.83V18H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_crash.xml b/compose/material/material/icons/generator/raw-icons/filled/no_crash.xml
deleted file mode 100644
index 3f446ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,9.01C18.72,8.42 18.16,8 17.5,8h-11C5.84,8 5.29,8.42 5.08,9.01L3,15v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,9.01zM6.85,10h10.29l1.04,3H5.81L6.85,10zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM12,6.36L9.17,3.54l1.41,-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_drinks.xml b/compose/material/material/icons/generator/raw-icons/filled/no_drinks.xml
deleted file mode 100644
index e280799..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_drinks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.83,3H21v2l-6.2,6.97L9.83,7h6.74l1.78,-2H7.83L5.83,3zM19.78,22.61L18,20.83V21H6v-2h5v-5l-1.37,-1.54L1.39,4.22l1.41,-1.41L3,3l18.19,18.19L19.78,22.61zM16.17,19L13,15.83V19H16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_encryption.xml b/compose/material/material/icons/generator/raw-icons/filled/no_encryption.xml
deleted file mode 100644
index 8dd643f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,21.78L4.22,5 3,6.22l2.04,2.04C4.42,8.6 4,9.25 4,10v10c0,1.1 0.9,2 2,2h12c0.23,0 0.45,-0.05 0.66,-0.12L19.78,23 21,21.78zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2H9.66L20,18.34V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5 -2.56,0 -4.64,1.93 -4.94,4.4L8.9,7.24V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_encryption_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/filled/no_encryption_gmailerrorred.xml
deleted file mode 100644
index b49f243..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_encryption_gmailerrorred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.27L20,17.17V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5C9.79,1 7.93,2.45 7.27,4.44L8.9,6.07V6zM2.1,2.1L0.69,3.51L5.3,8.13C4.55,8.42 4,9.15 4,10v10c0,1.1 0.9,2 2,2h12c0.34,0 0.65,-0.09 0.93,-0.24l1.56,1.56l1.41,-1.41L2.1,2.1zM12,17c-1.1,0 -2,-0.9 -2,-2c0,-0.59 0.27,-1.12 0.68,-1.49l2.81,2.81C13.12,16.73 12.59,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_flash.xml b/compose/material/material/icons/generator/raw-icons/filled/no_flash.xml
deleted file mode 100644
index 46d02f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_flash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.93,13.93L2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H3.6C2.72,9.4 2,10.12 2,11v9.4C2,21.28 2.72,22 3.6,22h12.8c0.75,0 1.38,-0.52 1.55,-1.22l2.18,2.18l1.41,-1.41L18,18L13.93,13.93zM10,20c-2.21,0 -4,-1.79 -4,-4c0,-1.95 1.4,-3.57 3.25,-3.92l1.57,1.57c-0.26,-0.09 -0.53,-0.15 -0.82,-0.15c-1.38,0 -2.5,1.12 -2.5,2.5c0,1.38 1.12,2.5 2.5,2.5c1.38,0 2.5,-1.12 2.5,-2.5c0,-0.29 -0.06,-0.56 -0.15,-0.82l1.57,1.57C13.57,18.6 11.95,20 10,20zM18,15.17L10.83,8h1.75l1.28,1.4h2.54c0.88,0 1.6,0.72 1.6,1.6V15.17zM20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_food.xml b/compose/material/material/icons/generator/raw-icons/filled/no_food.xml
deleted file mode 100644
index af7c960..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_food.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L11.35,8.52zM1,21v1c0,0.55 0.45,1 1,1h13c0.55,0 1,-0.45 1,-1v-1H1zM21.9,21.9L2.1,2.1L0.69,3.51l5.7,5.7C3.28,9.87 1,11.99 1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_luggage.xml b/compose/material/material/icons/generator/raw-icons/filled/no_luggage.xml
deleted file mode 100644
index ba4f667..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,9v0.92l1.75,1.75V9H16v4.17l3,3V8c0,-1.1 -0.9,-2 -2,-2h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H8.83l3,3H12.75zM10.5,3.5h3V6h-3V3.5zM21.19,21.19L2.81,2.81L1.39,4.22l3.63,3.63C5.02,7.9 5,7.95 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1s1,-0.45 1,-1c0.34,0 0.65,-0.09 0.93,-0.24l1.85,1.85L21.19,21.19zM8,18v-7.17l1.5,1.5V18H8zM12.75,18h-1.5v-3.92l1.5,1.5V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_meals.xml b/compose/material/material/icons/generator/raw-icons/filled/no_meals.xml
deleted file mode 100644
index 8b15d15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_meals.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14V6c0,-1.76 2.24,-4 5,-4v16.17l-2,-2V14H16zM20.49,23.31L10.02,12.85C9.69,12.94 9.36,13 9,13v9H7v-9c-2.21,0 -4,-1.79 -4,-4V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM6.17,9L5,7.83V9H6.17zM9,2H7v2.17l2,2V2zM13,9V2h-2v6.17l1.85,1.85C12.94,9.69 13,9.36 13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_meeting_room.xml b/compose/material/material/icons/generator/raw-icons/filled/no_meeting_room.xml
deleted file mode 100644
index 5e29e15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11h-1v2h2v-1l9.73,9.73L20.46,23 14,16.54L14,21L3,21v-2h2L5,7.54l-4,-4 1.27,-1.27L11,11zM14,11.49L5.51,3L14,3v1h5v12.49l-2,-2L17,6h-3v5.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_photography.xml b/compose/material/material/icons/generator/raw-icons/filled/no_photography.xml
deleted file mode 100644
index 24cd521..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_photography.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.94,8.12L7.48,4.66L9,3h6l1.83,2H20c1.1,0 2,0.9 2,2v12c0,0.05 -0.01,0.1 -0.02,0.16l-5.1,-5.1C16.96,13.71 17,13.36 17,13c0,-2.76 -2.24,-5 -5,-5C11.64,8 11.29,8.04 10.94,8.12zM20.49,23.31L18.17,21H4c-1.1,0 -2,-0.9 -2,-2V7c0,-0.59 0.27,-1.12 0.68,-1.49l-2,-2L2.1,2.1l19.8,19.8L20.49,23.31zM14.49,17.32l-1.5,-1.5C12.67,15.92 12.35,16 12,16c-1.66,0 -3,-1.34 -3,-3c0,-0.35 0.08,-0.67 0.19,-0.98l-1.5,-1.5C7.25,11.24 7,12.09 7,13c0,2.76 2.24,5 5,5C12.91,18 13.76,17.75 14.49,17.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_sim.xml b/compose/material/material/icons/generator/raw-icons/filled/no_sim.xml
deleted file mode 100644
index 8ee1952..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.99,5c0,-1.1 -0.89,-2 -1.99,-2h-7L7.66,5.34 19,16.68 18.99,5zM3.65,3.88L2.38,5.15 5,7.77V19c0,1.1 0.9,2 2,2h10.01c0.35,0 0.67,-0.1 0.96,-0.26l1.88,1.88 1.27,-1.27L3.65,3.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_stroller.xml b/compose/material/material/icons/generator/raw-icons/filled/no_stroller.xml
deleted file mode 100644
index 47b3a12..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_stroller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S4.9,18 6,18zM18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03l-3.5,4.11L17,14.17v-7.9C17.58,5.59 17.97,5 18.65,5C19.42,5 20,5.66 20,6.48V7h2V6.48C22,4.56 20.52,3 18.65,3zM10.67,10.67L2.81,2.81L1.39,4.22l7.97,7.97L6.7,15.31c-0.55,0.65 -0.09,1.65 0.76,1.65h6.66l1.17,1.17C14.54,18.42 14,19.14 14,20c0,1.1 0.9,2 2,2c0.86,0 1.58,-0.54 1.87,-1.3l1.91,1.91l1.41,-1.41l-4.8,-4.8L10.67,10.67zM13.47,5.03c0.27,-0.32 0.58,-0.72 0.98,-1.09c-2.46,-1.19 -5.32,-1.22 -7.81,-0.13l4.25,4.25L13.47,5.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/no_transfer.xml b/compose/material/material/icons/generator/raw-icons/filled/no_transfer.xml
deleted file mode 100644
index d38a3c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/no_transfer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L4,6.83V16c0,0.88 0.39,1.67 1,2.22V20c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.05,0 0.09,-0.02 0.14,-0.03l1.64,1.64L21.19,21.19zM7.5,17C6.67,17 6,16.33 6,15.5C6,14.67 6.67,14 7.5,14S9,14.67 9,15.5C9,16.33 8.33,17 7.5,17zM6,11V8.83L8.17,11H6zM8.83,6L5.78,2.95C7.24,2.16 9.48,2 12,2c4.42,0 8,0.5 8,4v10c0,0.35 -0.08,0.67 -0.19,0.98L13.83,11H18V6H8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/noise_aware.xml b/compose/material/material/icons/generator/raw-icons/filled/noise_aware.xml
deleted file mode 100644
index cc4e0b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/noise_aware.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02c-0.25,-2.25 -2.16,-4 -4.47,-4C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18C14.65,18 16,16.65 16,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,6.58l1.58,1.26c0.35,-0.57 0.77,-1.1 1.24,-1.57L4.85,5.02C4.38,5.49 3.97,6.02 3.6,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.46,4.42L8.59,2.61c-0.63,0.23 -1.24,0.52 -1.8,0.87l0.87,1.81C8.22,4.93 8.82,4.64 9.46,4.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.49,9.26L2.53,8.81c-0.21,0.63 -0.36,1.28 -0.44,1.95l1.96,0.45C4.11,10.53 4.27,9.88 4.49,9.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,6.58c-0.36,-0.56 -0.78,-1.09 -1.25,-1.56l-1.58,1.26c0.48,0.47 0.89,0.99 1.24,1.57L20.4,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.04,12.79l-1.96,0.45c0.08,0.67 0.23,1.33 0.44,1.95l1.97,-0.45C4.27,14.12 4.11,13.47 4.04,12.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.21,3.48c-0.57,-0.35 -1.17,-0.64 -1.8,-0.87l-0.87,1.81c0.64,0.22 1.24,0.51 1.8,0.87L17.21,3.48z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4.07V2.05C12.67,2.02 12.34,2 12,2s-0.67,0.02 -1,0.05v2.02C11.33,4.03 11.66,4 12,4S12.67,4.03 13,4.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19.93v2.02c0.33,0.03 0.66,0.05 1,0.05s0.67,-0.02 1,-0.05v-2.02C12.67,19.97 12.34,20 12,20S11.33,19.97 11,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.51,14.74l1.97,0.45c0.21,-0.63 0.36,-1.28 0.44,-1.95l-1.96,-0.45C19.89,13.47 19.73,14.12 19.51,14.74z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.96,11.21l1.96,-0.45c-0.08,-0.67 -0.23,-1.33 -0.44,-1.95l-1.97,0.45C19.73,9.88 19.89,10.53 19.96,11.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,17.73l1.58,1.26c0.47,-0.48 0.88,-1 1.25,-1.56l-1.58,-1.26C18.47,16.73 18.05,17.26 17.58,17.73z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.79,20.52c0.57,0.35 1.17,0.64 1.8,0.87l0.87,-1.81c-0.64,-0.22 -1.24,-0.51 -1.8,-0.87L6.79,20.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.54,19.58l0.87,1.81c0.63,-0.23 1.24,-0.52 1.8,-0.87l-0.87,-1.81C15.78,19.07 15.18,19.36 14.54,19.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,17.42c0.36,0.56 0.78,1.09 1.25,1.56l1.58,-1.26c-0.48,-0.47 -0.89,-0.99 -1.24,-1.57L3.6,17.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/noise_control_off.xml b/compose/material/material/icons/generator/raw-icons/filled/noise_control_off.xml
deleted file mode 100644
index 4d023ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/noise_control_off.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.44,0 2.79,0.38 3.95,1.05l1.45,-1.45C15.85,2.59 13.99,2 12,2S8.15,2.59 6.59,3.59l1.45,1.45C9.21,4.38 10.56,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,1.44 -0.38,2.79 -1.05,3.95l1.45,1.45C21.41,15.85 22,13.99 22,12s-0.59,-3.85 -1.59,-5.41l-1.45,1.45C19.62,9.21 20,10.56 20,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-1.44,0 -2.79,-0.38 -3.95,-1.05l-1.45,1.45C8.15,21.41 10.01,22 12,22s3.85,-0.59 5.41,-1.59l-1.45,-1.45C14.79,19.62 13.44,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-1.44 0.38,-2.79 1.05,-3.95L3.59,6.59C2.59,8.15 2,10.01 2,12s0.59,3.85 1.59,5.41l1.45,-1.45C4.38,14.79 4,13.44 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18c1.65,0 3,-1.35 3,-3h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02C15.72,7.75 13.81,6 11.5,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/nordic_walking.xml b/compose/material/material/icons/generator/raw-icons/filled/nordic_walking.xml
deleted file mode 100644
index e8e9f6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/nordic_walking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,23h-1.5v-9H19V23zM7.53,14H6l-2,9h1.53L7.53,14zM13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM9.8,8.9L7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L6,8.3V13h2V9.6L9.8,8.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/north.xml b/compose/material/material/icons/generator/raw-icons/filled/north.xml
deleted file mode 100644
index 129add2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/north.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7,-7L5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/north_east.xml b/compose/material/material/icons/generator/raw-icons/filled/north_east.xml
deleted file mode 100644
index 5893394..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/north_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/north_west.xml b/compose/material/material/icons/generator/raw-icons/filled/north_west.xml
deleted file mode 100644
index 5e3792e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/north_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/not_accessible.xml b/compose/material/material/icons/generator/raw-icons/filled/not_accessible.xml
deleted file mode 100644
index 25138ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/not_accessible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11.05l-3.42,-3.42c0.32,-0.34 0.74,-0.57 1.23,-0.61c0.48,-0.04 0.84,0.07 1.2,0.26c0.19,0.1 0.39,0.22 0.63,0.46l1.29,1.43c0.98,1.08 2.53,1.85 4.07,1.83v2C17.25,12.99 15.29,12.12 14,11.05zM12,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2c-1.1,0 -2,0.9 -2,2S10.9,6 12,6zM2.81,2.81L1.39,4.22L10,12.83V15c0,1.1 0.9,2 2,2h2.17l5.61,5.61l1.41,-1.41L2.81,2.81zM10,20c-1.66,0 -3,-1.34 -3,-3c0,-1.31 0.84,-2.41 2,-2.83V12.1c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h-2.07C12.42,19.16 11.31,20 10,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/not_interested.xml b/compose/material/material/icons/generator/raw-icons/filled/not_interested.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/not_interested.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/not_listed_location.xml b/compose/material/material/icons/generator/raw-icons/filled/not_listed_location.xml
deleted file mode 100644
index ef35a39..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/not_listed_location.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.14,2 5,5.14 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.86 -3.14,-7 -7,-7zM12.88,15.75h-1.75L11.13,14h1.75v1.75zM12.88,12.88h-1.75c0,-2.84 2.62,-2.62 2.62,-4.38 0,-0.96 -0.79,-1.75 -1.75,-1.75s-1.75,0.79 -1.75,1.75L8.5,8.5C8.5,6.57 10.07,5 12,5s3.5,1.57 3.5,3.5c0,2.19 -2.62,2.41 -2.62,4.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/not_started.xml b/compose/material/material/icons/generator/raw-icons/filled/not_started.xml
deleted file mode 100644
index 32913a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/not_started.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM11,16H9V8h2V16zM12,16V8l5,4L12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/note.xml b/compose/material/material/icons/generator/raw-icons/filled/note.xml
deleted file mode 100644
index e79b5a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10l-6,-6L4,4c-1.1,0 -2,0.9 -2,2v12.01c0,1.1 0.9,1.99 2,1.99l16,-0.01c1.1,0 2,-0.89 2,-1.99v-8zM15,5.5l5.5,5.5L15,11L15,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/note_add.xml b/compose/material/material/icons/generator/raw-icons/filled/note_add.xml
deleted file mode 100644
index 85ccdd88..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/note_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM16,16h-3v3h-2v-3L8,16v-2h3v-3h2v3h3v2zM13,9L13,3.5L18.5,9L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/note_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/note_alt.xml
deleted file mode 100644
index 133dc02..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/note_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75S12.41,4.25 12,4.25s-0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75zM9.1,17H7v-2.14l5.96,-5.96l2.12,2.12L9.1,17zM16.85,9.27l-1.06,1.06l-2.12,-2.12l1.06,-1.06c0.2,-0.2 0.51,-0.2 0.71,0l1.41,1.41C17.05,8.76 17.05,9.07 16.85,9.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notes.xml b/compose/material/material/icons/generator/raw-icons/filled/notes.xml
deleted file mode 100644
index 7ef43fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h12v-2L3,16v2zM3,6v2h18L21,6L3,6zM3,13h18v-2L3,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notification_add.xml b/compose/material/material/icons/generator/raw-icons/filled/notification_add.xml
deleted file mode 100644
index 57a2422..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notification_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20zM14,9c0,2.61 1.67,4.83 4,5.66L18,17h2v2H4v-2h2v-7c0,-2.79 1.91,-5.14 4.5,-5.8V3.5C10.5,2.67 11.17,2 12,2s1.5,0.67 1.5,1.5v0.7c0.71,0.18 1.36,0.49 1.95,0.9C14.54,6.14 14,7.51 14,9zM24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notification_important.xml b/compose/material/material/icons/generator/raw-icons/filled/notification_important.xml
deleted file mode 100644
index b30ae8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notification_important.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM13,16h-2v-2h2v2zM13,12h-2L11,8h2v4zM12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notifications.xml b/compose/material/material/icons/generator/raw-icons/filled/notifications.xml
deleted file mode 100644
index 21cb88d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notifications_active.xml b/compose/material/material/icons/generator/raw-icons/filled/notifications_active.xml
deleted file mode 100644
index c320422..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notifications_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.58,4.08L6.15,2.65C3.75,4.48 2.17,7.3 2.03,10.5h2c0.15,-2.65 1.51,-4.97 3.55,-6.42zM19.97,10.5h2c-0.15,-3.2 -1.73,-6.02 -4.12,-7.85l-1.42,1.43c2.02,1.45 3.39,3.77 3.54,6.42zM18,11c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2v-5zM12,22c0.14,0 0.27,-0.01 0.4,-0.04 0.65,-0.14 1.18,-0.58 1.44,-1.18 0.1,-0.24 0.15,-0.5 0.15,-0.78h-4c0.01,1.1 0.9,2 2.01,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notifications_none.xml b/compose/material/material/icons/generator/raw-icons/filled/notifications_none.xml
deleted file mode 100644
index 6cd3b42..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notifications_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notifications_off.xml b/compose/material/material/icons/generator/raw-icons/filled/notifications_off.xml
deleted file mode 100644
index f464306..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notifications_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18.69L7.84,6.14 5.27,3.49 4,4.76l2.8,2.8v0.01c-0.52,0.99 -0.8,2.16 -0.8,3.42v5l-2,2v1h13.73l2,2L21,19.72l-1,-1.03zM12,22c1.11,0 2,-0.89 2,-2h-4c0,1.11 0.89,2 2,2zM18,14.68L18,11c0,-3.08 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68c-0.15,0.03 -0.29,0.08 -0.42,0.12 -0.1,0.03 -0.2,0.07 -0.3,0.11h-0.01c-0.01,0 -0.01,0 -0.02,0.01 -0.23,0.09 -0.46,0.2 -0.68,0.31 0,0 -0.01,0 -0.01,0.01L18,14.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/notifications_paused.xml b/compose/material/material/icons/generator/raw-icons/filled/notifications_paused.xml
deleted file mode 100644
index 67aa8df..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/notifications_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.93 6,11v5l-2,2v1h16v-1l-2,-2zM14.5,9.8l-2.8,3.4h2.8L14.5,15h-5v-1.8l2.8,-3.4L9.5,9.8L9.5,8h5v1.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/numbers.xml b/compose/material/material/icons/generator/raw-icons/filled/numbers.xml
deleted file mode 100644
index a9ada94..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/numbers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,10L21,8h-4l1,-4h-2l-1,4h-4l1,-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1,-4h4l-1,4h2l1,-4h4l0.5,-2h-4l1,-4H20.5zM13.5,14h-4l1,-4h4L13.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/offline_bolt.xml b/compose/material/material/icons/generator/raw-icons/filled/offline_bolt.xml
deleted file mode 100644
index b3d2de1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/offline_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2.02c-5.51,0 -9.98,4.47 -9.98,9.98s4.47,9.98 9.98,9.98 9.98,-4.47 9.98,-9.98S17.51,2.02 12,2.02zM11.48,20v-6.26H8L13,4v6.26h3.35L11.48,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/offline_pin.xml b/compose/material/material/icons/generator/raw-icons/filled/offline_pin.xml
deleted file mode 100644
index e3c1048..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/offline_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM17,18H7v-2h10V18zM10.3,14L7,10.7l1.4,-1.4l1.9,1.9l5.3,-5.3L17,7.3L10.3,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/offline_share.xml b/compose/material/material/icons/generator/raw-icons/filled/offline_share.xml
deleted file mode 100644
index c6b407e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/offline_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.6,10.26v1.31L17,9.33 14.6,7.1v1.28c-2.33,0.32 -3.26,1.92 -3.6,3.52 0.83,-1.13 1.93,-1.64 3.6,-1.64zM16,23L6,23c-1.1,0 -2,-0.9 -2,-2L4,5h2v16h10v2zM18,1h-8c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L20,3c0,-1.1 -0.9,-2 -2,-2zM18,16h-8L10,4h8v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/oil_barrel.xml b/compose/material/material/icons/generator/raw-icons/filled/oil_barrel.xml
deleted file mode 100644
index ce9b222f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/oil_barrel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1V5h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-6H20zM12,16c-1.66,0 -3,-1.32 -3,-2.95c0,-1.3 0.52,-1.67 3,-4.55c2.47,2.86 3,3.24 3,4.55C15,14.68 13.66,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/on_device_training.xml b/compose/material/material/icons/generator/raw-icons/filled/on_device_training.xml
deleted file mode 100644
index 0cf8eb8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/on_device_training.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2c0,0.74 0.4,1.38 1,1.72v0.78h2v-0.78c0.6,-0.35 1,-0.98 1,-1.72C14,11.9 13.1,11 12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L6,1C4.9,1 4,1.9 4,3v18c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V3C20,1.9 19.1,1.01 18,1.01zM18,18H6V6h12V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,15.95C16.63,15.12 17,14.11 17,13s-0.37,-2.12 -0.99,-2.95l-1.07,1.07c0.35,0.54 0.56,1.19 0.56,1.88s-0.21,1.34 -0.56,1.88L16.01,15.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.06,14.88C8.71,14.34 8.5,13.69 8.5,13c0,-1.93 1.57,-3.5 3.5,-3.5v1.25l2.25,-2l-2.25,-2V8c-2.76,0 -5,2.24 -5,5c0,1.11 0.37,2.12 0.99,2.95L9.06,14.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ondemand_video.xml b/compose/material/material/icons/generator/raw-icons/filled/ondemand_video.xml
deleted file mode 100644
index 8cdf5de..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ondemand_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM16,11l-7,4L9,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/online_prediction.xml b/compose/material/material/icons/generator/raw-icons/filled/online_prediction.xml
deleted file mode 100644
index a3e63ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/online_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5C8.5,9.57 10.07,8 12,8S15.5,9.57 15.5,11.5zM13,17.5h-2V19h2V17.5zM22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.06,1.06C19.55,7.53 20.5,9.66 20.5,12c0,2.34 -0.95,4.47 -2.49,6.01l1.06,1.06C20.88,17.26 22,14.76 22,12zM3.5,12c0,-2.34 0.95,-4.47 2.49,-6.01L4.93,4.93C3.12,6.74 2,9.24 2,12c0,2.76 1.12,5.26 2.93,7.07l1.06,-1.06C4.45,16.47 3.5,14.34 3.5,12zM17.5,12c0,1.52 -0.62,2.89 -1.61,3.89l1.06,1.06C18.22,15.68 19,13.93 19,12c0,-1.93 -0.78,-3.68 -2.05,-4.95l-1.06,1.06C16.88,9.11 17.5,10.48 17.5,12zM7.05,16.95l1.06,-1.06c-1,-1 -1.61,-2.37 -1.61,-3.89c0,-1.52 0.62,-2.89 1.61,-3.89L7.05,7.05C5.78,8.32 5,10.07 5,12C5,13.93 5.78,15.68 7.05,16.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/opacity.xml b/compose/material/material/icons/generator/raw-icons/filled/opacity.xml
deleted file mode 100644
index 4750e9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/opacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,8L12,2.35 6.34,8C4.78,9.56 4,11.64 4,13.64s0.78,4.11 2.34,5.67 3.61,2.35 5.66,2.35 4.1,-0.79 5.66,-2.35S20,15.64 20,13.64 19.22,9.56 17.66,8zM6,14c0.01,-2 0.62,-3.27 1.76,-4.4L12,5.27l4.24,4.38C17.38,10.77 17.99,12 18,14H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/open_in_browser.xml b/compose/material/material/icons/generator/raw-icons/filled/open_in_browser.xml
deleted file mode 100644
index 40ceddc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/open_in_browser.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h4v-2L5,18L5,8h14v10h-4v2h4c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM12,10l-4,4h3v6h2v-6h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/open_in_full.xml b/compose/material/material/icons/generator/raw-icons/filled/open_in_full.xml
deleted file mode 100644
index e1da4fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/open_in_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l0,-8l-8,0l3.29,3.29l-10,10l-3.29,-3.29l0,8l8,0l-3.29,-3.29l10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/open_in_new.xml b/compose/material/material/icons/generator/raw-icons/filled/open_in_new.xml
deleted file mode 100644
index b2dd7f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/open_in_new.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/open_in_new_off.xml b/compose/material/material/icons/generator/raw-icons/filled/open_in_new_off.xml
deleted file mode 100644
index 6f688d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/open_in_new_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.79,5.8L14,3h7v7l-2.79,-2.8l-4.09,4.09l-1.41,-1.41L16.79,5.8zM19,12v4.17l2,2V12H19zM19.78,22.61L18.17,21H5c-1.11,0 -2,-0.9 -2,-2V5.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.17,19l-4.88,-4.88L9.7,15.71L8.29,14.3l1.59,-1.59L5,7.83V19H16.17zM7.83,5H12V3H5.83L7.83,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/open_with.xml b/compose/material/material/icons/generator/raw-icons/filled/open_with.xml
deleted file mode 100644
index 6f602a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/open_with.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9h4L14,6h3l-5,-5 -5,5h3v3zM9,10L6,10L6,7l-5,5 5,5v-3h3v-4zM23,12l-5,-5v3h-3v4h3v3l5,-5zM14,15h-4v3L7,18l5,5 5,-5h-3v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/other_houses.xml b/compose/material/material/icons/generator/raw-icons/filled/other_houses.xml
deleted file mode 100644
index bed7438..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/other_houses.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM8,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9,14.55 8.55,15 8,15zM12,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,14.55 12.55,15 12,15zM16,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,14.55 16.55,15 16,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/outbond.xml b/compose/material/material/icons/generator/raw-icons/filled/outbond.xml
deleted file mode 100644
index 2f90fb7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/outbond.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/outbound.xml b/compose/material/material/icons/generator/raw-icons/filled/outbound.xml
deleted file mode 100644
index 1805634..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/outbound.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/outbox.xml b/compose/material/material/icons/generator/raw-icons/filled/outbox.xml
deleted file mode 100644
index c22dad0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/outbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L4.99,3c-1.11,0 -1.98,0.9 -1.98,2L3,19c0,1.1 0.88,2 1.99,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,15h-4c0,1.66 -1.35,3 -3,3s-3,-1.34 -3,-3L4.99,15L4.99,5L19,5v10zM8,11h2v3h4v-3h2l-4,-4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/outdoor_grill.xml b/compose/material/material/icons/generator/raw-icons/filled/outdoor_grill.xml
deleted file mode 100644
index c94954e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/outdoor_grill.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,22c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3c-1.3,0 -2.4,0.84 -2.82,2H9.14l1.99,-3.06C11.42,14.98 11.71,15 12,15s0.58,-0.02 0.87,-0.06l1.02,1.57c0.42,-0.53 0.96,-0.95 1.6,-1.21l-0.6,-0.93C17.31,13.27 19,10.84 19,8H5c0,2.84 1.69,5.27 4.12,6.37l-3.95,6.08c-0.3,0.46 -0.17,1.08 0.29,1.38h0c0.46,0.3 1.08,0.17 1.38,-0.29l1,-1.55h6.34C14.6,21.16 15.7,22 17,22zM17,18c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C16,18.45 16.45,18 17,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C9.1,3.54 8.84,3.27 9.06,2H8.07C7.86,3.11 8.1,4.05 8.96,4.96C9.18,5.2 9.75,5.63 9.41,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.89,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96c-0.42,-0.5 -0.68,-0.78 -0.46,-2.04h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C11.67,5.2 12.24,5.63 11.89,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C14.1,3.54 13.84,3.27 14.06,2h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C14.18,5.2 14.75,5.63 14.41,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/outlet.xml b/compose/material/material/icons/generator/raw-icons/filled/outlet.xml
deleted file mode 100644
index a5eeb08..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/outlet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM9,12c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3C10,11.55 9.55,12 9,12zM14,18h-4v-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2V18zM16,11c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/outlined_flag.xml b/compose/material/material/icons/generator/raw-icons/filled/outlined_flag.xml
deleted file mode 100644
index 85663ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/outlined_flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-1,-2L5,4v17h2v-7h5l1,2h7L20,6h-6zM18,14h-4l-1,-2L7,12L7,6h5l1,2h5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/output.xml b/compose/material/material/icons/generator/raw-icons/filled/output.xml
deleted file mode 100644
index 76f041a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/output.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17l5,-5l-5,-5l-1.41,1.41l2.58,2.59l-9.17,0l0,2l9.17,0l-2.58,2.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14v2h2V5c0,-1.1 -0.89,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.11,0 2,-0.9 2,-2v-2h-2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/padding.xml b/compose/material/material/icons/generator/raw-icons/filled/padding.xml
deleted file mode 100644
index c55a9df..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/padding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18L21,3L3,3zM19,19L5,19L5,5h14v14zM11,7h2v2h-2zM7,7h2v2L7,9zM15,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pages.xml b/compose/material/material/icons/generator/raw-icons/filled/pages.xml
deleted file mode 100644
index 7bf7f10..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pages.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v6h5L7,7l4,1L11,3L5,3c-1.1,0 -2,0.9 -2,2zM8,13L3,13v6c0,1.1 0.9,2 2,2h6v-5l-4,1 1,-4zM17,17l-4,-1v5h6c1.1,0 2,-0.9 2,-2v-6h-5l1,4zM19,3h-6v5l4,-1 -1,4h5L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pageview.xml b/compose/material/material/icons/generator/raw-icons/filled/pageview.xml
deleted file mode 100644
index e2877a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pageview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9C10.12,9 9,10.12 9,11.5s1.12,2.5 2.5,2.5 2.5,-1.12 2.5,-2.5S12.88,9 11.5,9zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM16.79,18.21l-2.91,-2.91c-0.69,0.44 -1.51,0.7 -2.39,0.7C9.01,16 7,13.99 7,11.5S9.01,7 11.5,7 16,9.01 16,11.5c0,0.88 -0.26,1.69 -0.7,2.39l2.91,2.9 -1.42,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/paid.xml b/compose/material/material/icons/generator/raw-icons/filled/paid.xml
deleted file mode 100644
index 8023899..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/paid.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12.88,17.76V19h-1.75v-1.29c-0.74,-0.18 -2.39,-0.77 -3.02,-2.96l1.65,-0.67c0.06,0.22 0.58,2.09 2.4,2.09c0.93,0 1.98,-0.48 1.98,-1.61c0,-0.96 -0.7,-1.46 -2.28,-2.03c-1.1,-0.39 -3.35,-1.03 -3.35,-3.31c0,-0.1 0.01,-2.4 2.62,-2.96V5h1.75v1.24c1.84,0.32 2.51,1.79 2.66,2.23l-1.58,0.67c-0.11,-0.35 -0.59,-1.34 -1.9,-1.34c-0.7,0 -1.81,0.37 -1.81,1.39c0,0.95 0.86,1.31 2.64,1.9c2.4,0.83 3.01,2.05 3.01,3.45C15.9,17.17 13.4,17.67 12.88,17.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/palette.xml b/compose/material/material/icons/generator/raw-icons/filled/palette.xml
deleted file mode 100644
index 0d97f03..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/palette.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10c1.38,0 2.5,-1.12 2.5,-2.5c0,-0.61 -0.23,-1.2 -0.64,-1.67c-0.08,-0.1 -0.13,-0.21 -0.13,-0.33c0,-0.28 0.22,-0.5 0.5,-0.5H16c3.31,0 6,-2.69 6,-6C22,6.04 17.51,2 12,2zM17.5,13c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C19,12.33 18.33,13 17.5,13zM14.5,9C13.67,9 13,8.33 13,7.5C13,6.67 13.67,6 14.5,6S16,6.67 16,7.5C16,8.33 15.33,9 14.5,9zM5,11.5C5,10.67 5.67,10 6.5,10S8,10.67 8,11.5C8,12.33 7.33,13 6.5,13S5,12.33 5,11.5zM11,7.5C11,8.33 10.33,9 9.5,9S8,8.33 8,7.5C8,6.67 8.67,6 9.5,6S11,6.67 11,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pan_tool.xml b/compose/material/material/icons/generator/raw-icons/filled/pan_tool.xml
deleted file mode 100644
index 5074d98..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pan_tool.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,5.5V20c0,2.2 -1.8,4 -4,4h-7.3c-1.08,0 -2.1,-0.43 -2.85,-1.19L1,14.83c0,0 1.26,-1.23 1.3,-1.25c0.22,-0.19 0.49,-0.29 0.79,-0.29c0.22,0 0.42,0.06 0.6,0.16C3.73,13.46 8,15.91 8,15.91V4c0,-0.83 0.67,-1.5 1.5,-1.5S11,3.17 11,4v7h1V1.5C12,0.67 12.67,0 13.5,0S15,0.67 15,1.5V11h1V2.5C16,1.67 16.67,1 17.5,1S19,1.67 19,2.5V11h1V5.5C20,4.67 20.67,4 21.5,4S23,4.67 23,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pan_tool_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/pan_tool_alt.xml
deleted file mode 100644
index bc5737e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pan_tool_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,14.82l-0.63,4.46C19.21,20.27 18.36,21 17.37,21h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59L5,15.62l0.83,-0.84c0.24,-0.24 0.58,-0.35 0.92,-0.28L10,15.24V4.5C10,3.67 10.67,3 11.5,3S13,3.67 13,4.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04C19.66,13.14 20.1,13.97 19.98,14.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama.xml
deleted file mode 100644
index 205c518..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18V6c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2zM8.5,12.5l2.5,3.01L14.5,11l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_fish_eye.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_fish_eye.xml
deleted file mode 100644
index 2d4d03b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_fish_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_horizontal.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_horizontal.xml
deleted file mode 100644
index 5822a60..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.54v10.91c-2.6,-0.77 -5.28,-1.16 -8,-1.16 -2.72,0 -5.4,0.39 -8,1.16V6.54c2.6,0.77 5.28,1.16 8,1.16 2.72,0.01 5.4,-0.38 8,-1.16M21.43,4c-0.1,0 -0.2,0.02 -0.31,0.06C18.18,5.16 15.09,5.7 12,5.7c-3.09,0 -6.18,-0.55 -9.12,-1.64 -0.11,-0.04 -0.22,-0.06 -0.31,-0.06 -0.34,0 -0.57,0.23 -0.57,0.63v14.75c0,0.39 0.23,0.62 0.57,0.62 0.1,0 0.2,-0.02 0.31,-0.06 2.94,-1.1 6.03,-1.64 9.12,-1.64 3.09,0 6.18,0.55 9.12,1.64 0.11,0.04 0.21,0.06 0.31,0.06 0.33,0 0.57,-0.23 0.57,-0.63V4.63c0,-0.4 -0.24,-0.63 -0.57,-0.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_horizontal_select.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_horizontal_select.xml
deleted file mode 100644
index 17987fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_horizontal_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.43,4c-0.1,0 -0.2,0.02 -0.31,0.06C18.18,5.16 15.09,5.7 12,5.7s-6.18,-0.55 -9.12,-1.64C2.77,4.02 2.66,4 2.57,4c-0.34,0 -0.57,0.23 -0.57,0.63v14.75c0,0.39 0.23,0.62 0.57,0.62 0.1,0 0.2,-0.02 0.31,-0.06 2.94,-1.1 6.03,-1.64 9.12,-1.64s6.18,0.55 9.12,1.64c0.11,0.04 0.21,0.06 0.31,0.06 0.33,0 0.57,-0.23 0.57,-0.63V4.63c0,-0.4 -0.24,-0.63 -0.57,-0.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_photosphere.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_photosphere.xml
deleted file mode 100644
index 27356c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_photosphere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.4,11.32v2.93c-0.1,0.05 -2.17,0.85 -3.33,1.17 -0.94,0.26 -3.84,0.73 -6.07,0.73 -3.7,0 -7,-0.7 -9.16,-1.8 -0.08,-0.04 -0.16,-0.06 -0.24,-0.1L2.6,9.76c6.02,-2.84 12.6,-2.92 18.8,0v1.56zM12.01,20.2c-2.5,0 -4.87,-1.15 -6.41,-3.12 4.19,1.22 8.57,1.23 12.82,-0.01 -1.54,1.97 -3.9,3.13 -6.41,3.13zM12,3.8c2.6,0 4.91,1.23 6.41,3.12 -4.1,-1.19 -8.48,-1.26 -12.83,0.01C7.08,5.03 9.4,3.8 12,3.8zM22.49,8.51c-0.47,-0.23 -0.93,-0.44 -1.4,-0.64C19.52,4.41 16.05,2 12,2S4.47,4.41 2.9,7.88c-0.47,0.2 -0.93,0.41 -1.4,0.63 -0.31,0.15 -0.5,0.48 -0.5,0.83v5.32c0,0.35 0.19,0.68 0.51,0.83 0.47,0.23 0.93,0.44 1.39,0.64 3.55,7.83 14.65,7.82 18.2,0 0.47,-0.2 0.93,-0.41 1.39,-0.63 0.31,-0.17 0.51,-0.49 0.51,-0.84L23,9.34c0,-0.35 -0.19,-0.68 -0.51,-0.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_photosphere_select.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_photosphere_select.xml
deleted file mode 100644
index 0656a14..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_photosphere_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.49,8.51c-0.47,-0.23 -0.93,-0.44 -1.4,-0.64C19.52,4.41 16.05,2 12,2S4.47,4.41 2.9,7.88c-0.47,0.2 -0.93,0.41 -1.4,0.63 -0.31,0.15 -0.5,0.48 -0.5,0.83v5.32c0,0.35 0.19,0.68 0.51,0.83 0.47,0.23 0.93,0.44 1.39,0.64 3.55,7.83 14.65,7.82 18.2,0 0.47,-0.2 0.93,-0.41 1.39,-0.63 0.31,-0.17 0.51,-0.49 0.51,-0.84V9.34c0,-0.35 -0.19,-0.68 -0.51,-0.83zM12,3.8c2.6,0 4.91,1.23 6.41,3.12 -4.1,-1.19 -8.48,-1.26 -12.83,0.01C7.08,5.03 9.4,3.8 12,3.8zM5.6,17.08c4.19,1.22 8.57,1.23 12.82,-0.01 -1.54,1.97 -3.9,3.13 -6.41,3.13 -2.5,0 -4.87,-1.15 -6.41,-3.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_vertical.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_vertical.xml
deleted file mode 100644
index 5b5c6f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,21.12c-1.1,-2.94 -1.64,-6.03 -1.64,-9.12 0,-3.09 0.55,-6.18 1.64,-9.12 0.04,-0.11 0.06,-0.22 0.06,-0.31 0,-0.34 -0.23,-0.57 -0.63,-0.57H4.63c-0.4,0 -0.63,0.23 -0.63,0.57 0,0.1 0.02,0.2 0.06,0.31C5.16,5.82 5.71,8.91 5.71,12c0,3.09 -0.55,6.18 -1.64,9.12 -0.05,0.11 -0.07,0.22 -0.07,0.31 0,0.33 0.23,0.57 0.63,0.57h14.75c0.39,0 0.63,-0.24 0.63,-0.57 -0.01,-0.1 -0.03,-0.2 -0.07,-0.31zM6.54,20c0.77,-2.6 1.16,-5.28 1.16,-8 0,-2.72 -0.39,-5.4 -1.16,-8h10.91c-0.77,2.6 -1.16,5.28 -1.16,8 0,2.72 0.39,5.4 1.16,8H6.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_vertical_select.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_vertical_select.xml
deleted file mode 100644
index 4f278a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_vertical_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.93,21.12c-1.1,-2.94 -1.64,-6.03 -1.64,-9.12s0.55,-6.18 1.64,-9.12c0.05,-0.11 0.07,-0.22 0.07,-0.31 0,-0.34 -0.24,-0.57 -0.64,-0.57H4.62c-0.4,0 -0.63,0.23 -0.63,0.57 0,0.1 0.02,0.2 0.06,0.31C5.16,5.82 5.7,8.91 5.7,12s-0.55,6.18 -1.64,9.12c-0.05,0.11 -0.07,0.22 -0.07,0.31 0,0.33 0.23,0.57 0.63,0.57h14.75c0.39,0 0.63,-0.24 0.63,-0.57 0,-0.1 -0.02,-0.2 -0.07,-0.31z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_wide_angle.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_wide_angle.xml
deleted file mode 100644
index 35b5621..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_wide_angle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c2.45,0 4.71,0.2 7.29,0.64 0.47,1.78 0.71,3.58 0.71,5.36 0,1.78 -0.24,3.58 -0.71,5.36 -2.58,0.44 -4.84,0.64 -7.29,0.64s-4.71,-0.2 -7.29,-0.64C4.24,15.58 4,13.78 4,12c0,-1.78 0.24,-3.58 0.71,-5.36C7.29,6.2 9.55,6 12,6m0,-2c-2.73,0 -5.22,0.24 -7.95,0.72l-0.93,0.16 -0.25,0.9C2.29,7.85 2,9.93 2,12s0.29,4.15 0.87,6.22l0.25,0.89 0.93,0.16c2.73,0.49 5.22,0.73 7.95,0.73s5.22,-0.24 7.95,-0.72l0.93,-0.16 0.25,-0.89c0.58,-2.08 0.87,-4.16 0.87,-6.23s-0.29,-4.15 -0.87,-6.22l-0.25,-0.89 -0.93,-0.16C17.22,4.24 14.73,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/panorama_wide_angle_select.xml b/compose/material/material/icons/generator/raw-icons/filled/panorama_wide_angle_select.xml
deleted file mode 100644
index 3defc1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/panorama_wide_angle_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-2.73,0 -5.22,0.24 -7.95,0.72l-0.93,0.16 -0.25,0.9C2.29,7.85 2,9.93 2,12s0.29,4.15 0.87,6.22l0.25,0.89 0.93,0.16c2.73,0.49 5.22,0.73 7.95,0.73s5.22,-0.24 7.95,-0.72l0.93,-0.16 0.25,-0.89c0.58,-2.08 0.87,-4.16 0.87,-6.23s-0.29,-4.15 -0.87,-6.22l-0.25,-0.89 -0.93,-0.16C17.22,4.24 14.73,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/paragliding.xml b/compose/material/material/icons/generator/raw-icons/filled/paragliding.xml
deleted file mode 100644
index 2169abc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/paragliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,17 12,17zM8.52,17.94C8.04,17.55 7,16.76 7,14H5c0,2.7 0.93,4.41 2.3,5.5c0.5,0.4 1.1,0.7 1.7,0.9L9,24h6v-3.6c0.6,-0.2 1.2,-0.5 1.7,-0.9c1.37,-1.09 2.3,-2.8 2.3,-5.5h-2c0,2.76 -1.04,3.55 -1.52,3.94C14.68,18.54 14,19 12,19S9.32,18.54 8.52,17.94zM12,0C5.92,0 1,1.9 1,4.25v3.49C1,8.55 1.88,9 2.56,8.57C2.7,8.48 2.84,8.39 3,8.31L5,13h2l1.5,-6.28C9.6,6.58 10.78,6.5 12,6.5s2.4,0.08 3.5,0.22L17,13h2l2,-4.69c0.16,0.09 0.3,0.17 0.44,0.26C22.12,9 23,8.55 23,7.74V4.25C23,1.9 18.08,0 12,0zM5.88,11.24L4.37,7.69c0.75,-0.28 1.6,-0.52 2.53,-0.71L5.88,11.24zM18.12,11.24L17.1,6.98c0.93,0.19 1.78,0.43 2.53,0.71L18.12,11.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/park.xml b/compose/material/material/icons/generator/raw-icons/filled/park.xml
deleted file mode 100644
index 801f84c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/park.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12l2,0l-7,-10l-6.95,10l1.95,0l-3.9,6l6.92,0l0,4l3.96,0l0,-4l7.02,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/party_mode.xml b/compose/material/material/icons/generator/raw-icons/filled/party_mode.xml
deleted file mode 100644
index e1cbb62..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/party_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,7c1.63,0 3.06,0.79 3.98,2L12,9c-1.66,0 -3,1.34 -3,3 0,0.35 0.07,0.69 0.18,1L7.1,13c-0.06,-0.32 -0.1,-0.66 -0.1,-1 0,-2.76 2.24,-5 5,-5zM12,17c-1.63,0 -3.06,-0.79 -3.98,-2L12,15c1.66,0 3,-1.34 3,-3 0,-0.35 -0.07,-0.69 -0.18,-1h2.08c0.07,0.32 0.1,0.66 0.1,1 0,2.76 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/password.xml b/compose/material/material/icons/generator/raw-icons/filled/password.xml
deleted file mode 100644
index 2ca2da8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h20v2H2V17zM3.15,12.95L4,11.47l0.85,1.48l1.3,-0.75L5.3,10.72H7v-1.5H5.3l0.85,-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95zM9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H15v-1.5h-1.7l0.85,-1.47L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2zM23,9.22h-1.7l0.85,-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H23V9.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pattern.xml b/compose/material/material/icons/generator/raw-icons/filled/pattern.xml
deleted file mode 100644
index e72bdb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pattern.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM6,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S4.9,14 6,14zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,8 12,8zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S19.1,10 18,10zM17.98,16c-0.74,0 -1.37,0.4 -1.72,1h-2.54c-0.34,-0.6 -0.98,-1 -1.72,-1s-1.37,0.4 -1.72,1H8.41l3.07,-3.07C11.65,13.97 11.82,14 12,14c1.1,0 2,-0.9 2,-2c0,-0.18 -0.03,-0.35 -0.07,-0.51l3.56,-3.56C17.65,7.97 17.82,8 18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C12.35,10.03 12.18,10 12,10c-1.1,0 -2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C6.35,16.03 6.18,16 6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c0.74,0 1.37,-0.4 1.72,-1h2.57c0.34,0.6 0.98,1 1.72,1s1.37,-0.4 1.72,-1h2.55c0.34,0.6 0.98,1 1.72,1c1.1,0 2,-0.9 2,-2C19.98,16.9 19.08,16 17.98,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pause.xml b/compose/material/material/icons/generator/raw-icons/filled/pause.xml
deleted file mode 100644
index 13d6d2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pause_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/pause_circle.xml
deleted file mode 100644
index 336daab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pause_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM11,16H9V8h2V16zM15,16h-2V8h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pause_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/pause_circle_filled.xml
deleted file mode 100644
index 54f45ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pause_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,16L9,16L9,8h2v8zM15,16h-2L13,8h2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pause_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/pause_circle_outline.xml
deleted file mode 100644
index b929a59..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pause_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h2L11,8L9,8v8zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM13,16h2L15,8h-2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pause_presentation.xml b/compose/material/material/icons/generator/raw-icons/filled/pause_presentation.xml
deleted file mode 100644
index 853efdf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pause_presentation.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19.1H3V5h18v14.1zM21,3H3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8h2v8L9,16zM13,8h2v8h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/payment.xml b/compose/material/material/icons/generator/raw-icons/filled/payment.xml
deleted file mode 100644
index 9c0fb1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/payment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/payments.xml b/compose/material/material/icons/generator/raw-icons/filled/payments.xml
deleted file mode 100644
index f11f1e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/payments.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14L19,6c0,-1.1 -0.9,-2 -2,-2L3,4c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM10,13c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM23,7v11c0,1.1 -0.9,2 -2,2L4,20v-2h17L21,7h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pedal_bike.xml b/compose/material/material/icons/generator/raw-icons/filled/pedal_bike.xml
deleted file mode 100644
index ddb3958..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pedal_bike.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.18,10l-1.7,-4.68C16.19,4.53 15.44,4 14.6,4H12v2h2.6l1.46,4h-4.81l-0.36,-1H12V7H7v2h1.75l1.82,5H9.9c-0.44,-2.23 -2.31,-3.88 -4.65,-3.99C2.45,9.87 0,12.2 0,15c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5c0,-2.8 -2.2,-5 -5,-5H18.18zM7.82,16c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,14h-1.4l-0.73,-2H15C14.56,12.58 14.24,13.25 14.1,14zM19,18c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,18 19,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pending.xml b/compose/material/material/icons/generator/raw-icons/filled/pending.xml
deleted file mode 100644
index ce424ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pending.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM7,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C8.5,12.83 7.83,13.5 7,13.5zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C13.5,12.83 12.83,13.5 12,13.5zM17,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C18.5,12.83 17.83,13.5 17,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pending_actions.xml b/compose/material/material/icons/generator/raw-icons/filled/pending_actions.xml
deleted file mode 100644
index 3829d14..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pending_actions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35zM18,3h-3.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H6C4.9,3 4,3.9 4,5v15c0,1.1 0.9,2 2,2h6.11c-0.59,-0.57 -1.07,-1.25 -1.42,-2H6V5h2v3h8V5h2v5.08c0.71,0.1 1.38,0.31 2,0.6V5C20,3.9 19.1,3 18,3zM12,5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C13,4.55 12.55,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pentagon.xml b/compose/material/material/icons/generator/raw-icons/filled/pentagon.xml
deleted file mode 100644
index 4edc755..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pentagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9l4,12l12,0l4,-12l-10,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/people.xml b/compose/material/material/icons/generator/raw-icons/filled/people.xml
deleted file mode 100644
index 2989eb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/people.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11c1.66,0 2.99,-1.34 2.99,-3S17.66,5 16,5c-1.66,0 -3,1.34 -3,3s1.34,3 3,3zM8,11c1.66,0 2.99,-1.34 2.99,-3S9.66,5 8,5C6.34,5 5,6.34 5,8s1.34,3 3,3zM8,13c-2.33,0 -7,1.17 -7,3.5L1,19h14v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5zM16,13c-0.29,0 -0.62,0.02 -0.97,0.05 1.16,0.84 1.97,1.97 1.97,3.45L17,19h6v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/people_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/people_alt.xml
deleted file mode 100644
index 58169a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/people_alt.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.67,13.13C18.04,14.06 19,15.32 19,17v3h4v-3C23,14.82 19.43,13.53 16.67,13.13z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.47,0 -0.91,0.1 -1.33,0.24C14.5,5.27 15,6.58 15,8s-0.5,2.73 -1.33,3.76C14.09,11.9 14.53,12 15,12z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c-2.67,0 -8,1.34 -8,4v3h16v-3C17,14.34 11.67,13 9,13z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/people_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/people_outline.xml
deleted file mode 100644
index 30d1c94..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/people_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13c-1.2,0 -3.07,0.34 -4.5,1 -1.43,-0.67 -3.3,-1 -4.5,-1C5.33,13 1,14.08 1,16.25L1,19h22v-2.75c0,-2.17 -4.33,-3.25 -6.5,-3.25zM12.5,17.5h-10v-1.25c0,-0.54 2.56,-1.75 5,-1.75s5,1.21 5,1.75v1.25zM21.5,17.5L14,17.5v-1.25c0,-0.46 -0.2,-0.86 -0.52,-1.22 0.88,-0.3 1.96,-0.53 3.02,-0.53 2.44,0 5,1.21 5,1.75v1.25zM7.5,12c1.93,0 3.5,-1.57 3.5,-3.5S9.43,5 7.5,5 4,6.57 4,8.5 5.57,12 7.5,12zM7.5,6.5c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM16.5,12c1.93,0 3.5,-1.57 3.5,-3.5S18.43,5 16.5,5 13,6.57 13,8.5s1.57,3.5 3.5,3.5zM16.5,6.5c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/percent.xml b/compose/material/material/icons/generator/raw-icons/filled/percent.xml
deleted file mode 100644
index f41ca90..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/percent.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,11C9.43,11 11,9.43 11,7.5S9.43,4 7.5,4S4,5.57 4,7.5S5.57,11 7.5,11zM7.5,6C8.33,6 9,6.67 9,7.5S8.33,9 7.5,9S6,8.33 6,7.5S6.67,6 7.5,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.002,18.583l14.587,-14.587l1.414,1.414l-14.587,14.587z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S18.43,13 16.5,13zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,18 16.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_camera_mic.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_camera_mic.xml
deleted file mode 100644
index 1b3715a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_camera_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3L9,3L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7v-2.09c-2.83,-0.48 -5,-2.94 -5,-5.91h2c0,2.21 1.79,4 4,4s4,-1.79 4,-4h2c0,2.97 -2.17,5.43 -5,5.91L13,21h7c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM14,13c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2L10,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_contact_calendar.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_contact_calendar.xml
deleted file mode 100644
index ba2ca10..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_contact_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM18,18L6,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_data_setting.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_data_setting.xml
deleted file mode 100644
index 517b9e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_data_setting.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.99,11.5c0.34,0 0.67,0.03 1,0.07L20,0 0,20h11.56c-0.04,-0.33 -0.07,-0.66 -0.07,-1 0,-4.14 3.36,-7.5 7.5,-7.5zM22.7,19.49c0.02,-0.16 0.04,-0.32 0.04,-0.49 0,-0.17 -0.01,-0.33 -0.04,-0.49l1.06,-0.83c0.09,-0.08 0.12,-0.21 0.06,-0.32l-1,-1.73c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11l-1.24,0.5c-0.26,-0.2 -0.54,-0.37 -0.85,-0.49l-0.19,-1.32c-0.01,-0.12 -0.12,-0.21 -0.24,-0.21h-2c-0.12,0 -0.23,0.09 -0.25,0.21l-0.19,1.32c-0.3,0.13 -0.59,0.29 -0.85,0.49l-1.24,-0.5c-0.11,-0.04 -0.24,0 -0.31,0.11l-1,1.73c-0.06,0.11 -0.04,0.24 0.06,0.32l1.06,0.83c-0.02,0.16 -0.03,0.32 -0.03,0.49 0,0.17 0.01,0.33 0.03,0.49l-1.06,0.83c-0.09,0.08 -0.12,0.21 -0.06,0.32l1,1.73c0.06,0.11 0.19,0.15 0.31,0.11l1.24,-0.5c0.26,0.2 0.54,0.37 0.85,0.49l0.19,1.32c0.02,0.12 0.12,0.21 0.25,0.21h2c0.12,0 0.23,-0.09 0.25,-0.21l0.19,-1.32c0.3,-0.13 0.59,-0.29 0.84,-0.49l1.25,0.5c0.11,0.04 0.24,0 0.31,-0.11l1,-1.73c0.06,-0.11 0.03,-0.24 -0.06,-0.32l-1.07,-0.83zM18.99,20.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_device_information.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_device_information.xml
deleted file mode 100644
index 14dcca1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_device_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v2h2L13,7zM13,11h-2v6h2v-6zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_identity.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_identity.xml
deleted file mode 100644
index 0c04292..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_identity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.9c1.16,0 2.1,0.94 2.1,2.1s-0.94,2.1 -2.1,2.1S9.9,9.16 9.9,8s0.94,-2.1 2.1,-2.1m0,9c2.97,0 6.1,1.46 6.1,2.1v1.1L5.9,18.1L5.9,17c0,-0.64 3.13,-2.1 6.1,-2.1M12,4C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_media.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_media.xml
deleted file mode 100644
index a97d01b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_media.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6L0,6v5h0.01L0,20c0,1.1 0.9,2 2,2h18v-2L2,20L2,6zM22,4h-8l-2,-2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L24,6c0,-1.1 -0.9,-2 -2,-2zM7,15l4.5,-6 3.5,4.51 2.5,-3.01L21,15L7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_phone_msg.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_phone_msg.xml
deleted file mode 100644
index 4cceb9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_phone_msg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.58l2.2,-2.21c0.28,-0.27 0.36,-0.66 0.25,-1.01C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM12,3v10l3,-3h6V3h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/perm_scan_wifi.xml b/compose/material/material/icons/generator/raw-icons/filled/perm_scan_wifi.xml
deleted file mode 100644
index 40bdd1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/perm_scan_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C6.95,3 3.15,4.85 0,7.23L12,22 24,7.25C20.85,4.87 17.05,3 12,3zM13,16h-2v-6h2v6zM11,8L11,6h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person.xml b/compose/material/material/icons/generator/raw-icons/filled/person.xml
deleted file mode 100644
index 6bdced2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_2.xml b/compose/material/material/icons/generator/raw-icons/filled/person_2.xml
deleted file mode 100644
index add7774..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,12h4.44c1.21,0 2.14,-1.06 1.98,-2.26l-0.32,-2.45C15.57,5.39 13.92,4 12,4S8.43,5.39 8.12,7.29L7.8,9.74C7.64,10.94 8.57,12 9.78,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_3.xml b/compose/material/material/icons/generator/raw-icons/filled/person_3.xml
deleted file mode 100644
index a4391aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c0.17,0 3.83,0 4,0c1.66,0 3,-1.34 3,-3c0,-0.73 -0.27,-1.4 -0.71,-1.92C16.42,6.75 16.5,6.38 16.5,6c0,-1.25 -0.77,-2.32 -1.86,-2.77C14,2.48 13.06,2 12,2s-2,0.48 -2.64,1.23C8.27,3.68 7.5,4.75 7.5,6c0,0.38 0.08,0.75 0.21,1.08C7.27,7.6 7,8.27 7,9C7,10.66 8.34,12 10,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_4.xml b/compose/material/material/icons/generator/raw-icons/filled/person_4.xml
deleted file mode 100644
index 301f5c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4c0,-1.37 0,-3.5 0,-3.5C16,3.67 15.33,3 14.5,3c-0.52,0 -0.98,0.27 -1.25,0.67C12.98,3.27 12.52,3 12,3s-0.98,0.27 -1.25,0.67C10.48,3.27 10.02,3 9.5,3C8.67,3 8,3.67 8,4.5c0,0 0,2.12 0,3.5C8,10.21 9.79,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_add.xml b/compose/material/material/icons/generator/raw-icons/filled/person_add.xml
deleted file mode 100644
index 491bf766..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM6,10L6,7L4,7v3L1,10v2h3v3h2v-3h3v-2L6,10zM15,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_add_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/person_add_alt.xml
deleted file mode 100644
index 9b3cc43..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_add_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8s1.79,4 4,4S13,10.21 13,8zM11,8c0,1.1 -0.9,2 -2,2S7,9.1 7,8s0.9,-2 2,-2S11,6.9 11,8zM1,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S1,15.34 1,18zM3,18c0.2,-0.71 3.3,-2 6,-2c2.69,0 5.78,1.28 6,2H3zM20,15v-3h3v-2h-3V7h-2v3h-3v2h3v3H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_add_alt_1.xml b/compose/material/material/icons/generator/raw-icons/filled/person_add_alt_1.xml
deleted file mode 100644
index 61c871a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_add_alt_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8s1.79,4 4,4S13,10.21 13,8zM15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15zM1,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S1,15.34 1,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_add_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/person_add_disabled.xml
deleted file mode 100644
index a2e72c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_add_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,20v-2c0,-2.3 -4.1,-3.7 -6.9,-3.9l6,5.9h0.9zM11.4,14.5C9.2,15.1 7,16.3 7,18v2h9.9l4,4 1.3,-1.3 -21,-20.9L0,3.1l4,4L4,10L1,10v2h3v3h2v-3h2.9l2.5,2.5zM6,10v-0.9l0.9,0.9L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_off.xml b/compose/material/material/icons/generator/raw-icons/filled/person_off.xml
deleted file mode 100644
index 5fbba67..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.65,5.82C9.36,4.72 10.6,4 12,4c2.21,0 4,1.79 4,4c0,1.4 -0.72,2.64 -1.82,3.35L8.65,5.82zM20,17.17c-0.02,-1.1 -0.63,-2.11 -1.61,-2.62c-0.54,-0.28 -1.13,-0.54 -1.77,-0.76L20,17.17zM21.19,21.19L2.81,2.81L1.39,4.22l8.89,8.89c-1.81,0.23 -3.39,0.79 -4.67,1.45C4.61,15.07 4,16.1 4,17.22V20h13.17l2.61,2.61L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/person_outline.xml
deleted file mode 100644
index 0c04292..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.9c1.16,0 2.1,0.94 2.1,2.1s-0.94,2.1 -2.1,2.1S9.9,9.16 9.9,8s0.94,-2.1 2.1,-2.1m0,9c2.97,0 6.1,1.46 6.1,2.1v1.1L5.9,18.1L5.9,17c0,-0.64 3.13,-2.1 6.1,-2.1M12,4C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_pin.xml b/compose/material/material/icons/generator/raw-icons/filled/person_pin.xml
deleted file mode 100644
index fd6018c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.97,0 -9,4.03 -9,9 0,4.17 2.84,7.67 6.69,8.69L12,22l2.31,-2.31C18.16,18.67 21,15.17 21,11c0,-4.97 -4.03,-9 -9,-9zM12,4c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM12,18.3c-2.5,0 -4.71,-1.28 -6,-3.22 0.03,-1.99 4,-3.08 6,-3.08 1.99,0 5.97,1.09 6,3.08 -1.29,1.94 -3.5,3.22 -6,3.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_pin_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/person_pin_circle.xml
deleted file mode 100644
index 8910205..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_pin_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.14,2 5,5.14 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13C19,5.14 15.86,2 12,2zM12,4c1.1,0 2,0.9 2,2c0,1.11 -0.9,2 -2,2s-2,-0.89 -2,-2C10,4.9 10.9,4 12,4zM12,14c-1.67,0 -3.14,-0.85 -4,-2.15c0.02,-1.32 2.67,-2.05 4,-2.05s3.98,0.73 4,2.05C15.14,13.15 13.67,14 12,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_remove.xml b/compose/material/material/icons/generator/raw-icons/filled/person_remove.xml
deleted file mode 100644
index e8f6ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4S6,5.79 6,8s1.79,4 4,4S14,10.21 14,8zM17,10v2h6v-2H17zM2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S2,15.34 2,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_remove_alt_1.xml b/compose/material/material/icons/generator/raw-icons/filled/person_remove_alt_1.xml
deleted file mode 100644
index e8f6ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_remove_alt_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4S6,5.79 6,8s1.79,4 4,4S14,10.21 14,8zM17,10v2h6v-2H17zM2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S2,15.34 2,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/person_search.xml b/compose/material/material/icons/generator/raw-icons/filled/person_search.xml
deleted file mode 100644
index 0a31b15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/person_search.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.35,14.01C7.62,13.91 2,15.27 2,18v2h9.54C9.07,17.24 10.31,14.11 10.35,14.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.43,18.02C19.79,17.43 20,16.74 20,16c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4c0,2.21 1.79,4 4,4c0.74,0 1.43,-0.22 2.02,-0.57L20.59,22L22,20.59L19.43,18.02zM16,18c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C18,17.1 17.1,18 16,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/personal_injury.xml b/compose/material/material/icons/generator/raw-icons/filled/personal_injury.xml
deleted file mode 100644
index 22c5d7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/personal_injury.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S8,8.21 8,6zM17,22h1c1.1,0 2,-0.9 2,-2l0,-4.78c0,-1.12 -0.61,-2.15 -1.61,-2.66c-0.43,-0.22 -0.9,-0.43 -1.39,-0.62L17,22zM12.34,17L15,11.33C14.07,11.12 13.07,11 12,11c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,13.07 4,14.1 4,15.22L4,22h2.34C6.12,21.55 6,21.04 6,20.5C6,18.57 7.57,17 9.5,17H12.34zM10,22l1.41,-3H9.5C8.67,19 8,19.67 8,20.5S8.67,22 9.5,22H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/personal_video.xml b/compose/material/material/icons/generator/raw-icons/filled/personal_video.xml
deleted file mode 100644
index 9951b48..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/personal_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pest_control.xml b/compose/material/material/icons/generator/raw-icons/filled/pest_control.xml
deleted file mode 100644
index 2d1f735..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pest_control.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15v-2h-3.07c-0.05,-0.39 -0.12,-0.77 -0.22,-1.14l2.58,-1.49l-1,-1.73L16.92,10c-0.28,-0.48 -0.62,-0.91 -0.99,-1.29C15.97,8.48 16,8.25 16,8c0,-0.8 -0.24,-1.55 -0.65,-2.18L17,4.17l-1.41,-1.41l-1.72,1.72c-1.68,-0.89 -3.1,-0.33 -3.73,0L8.41,2.76L7,4.17l1.65,1.65C8.24,6.45 8,7.2 8,8c0,0.25 0.03,0.48 0.07,0.72C7.7,9.1 7.36,9.53 7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37 -0.17,0.75 -0.22,1.14H3v2h3.07c0.05,0.39 0.12,0.77 0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81 2.88,3 4.92,3s3.84,-1.19 4.92,-3l2.37,1.37l1,-1.73l-2.58,-1.49c0.1,-0.37 0.17,-0.75 0.22,-1.14H21zM13,17h-2v-6h2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pest_control_rodent.xml b/compose/material/material/icons/generator/raw-icons/filled/pest_control_rodent.xml
deleted file mode 100644
index c141315..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pest_control_rodent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.31,17.38l-2.39,-2.13C19.44,12.89 17.56,11 15.5,11c-1.16,0 -3.5,0.9 -3.5,3.5c0,0.97 0.39,1.84 1.03,2.47l-0.71,0.71C11.5,16.87 11,15.74 11,14.5c0,-1.7 0.96,-3.17 2.35,-3.93c-0.7,-0.36 -1.48,-0.57 -2.28,-0.57c-2.38,0 -4.37,1.65 -4.91,3.87C4.91,13.5 4,12.36 4,11c0,-1.66 1.34,-3 3,-3c0.94,0 1.56,0 2.5,0C10.88,8 12,6.88 12,5.5C12,4.12 10.88,3 9.5,3H8C7.45,3 7,3.45 7,4c0,0.55 0.45,1 1,1h1.5C9.78,5 10,5.22 10,5.5C10,5.78 9.78,6 9.5,6C9.47,6 9,6 7,6c-2.76,0 -5,2.24 -5,5c0,2.42 1.72,4.44 4,4.9v0.03C6,18.73 8.27,21 11.07,21h8.86C21.8,21 22.74,18.66 21.31,17.38zM18,19c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,18.55 18.55,19 18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pets.xml b/compose/material/material/icons/generator/raw-icons/filled/pets.xml
deleted file mode 100644
index 7adc005..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pets.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.86c-0.87,-1.02 -1.6,-1.89 -2.48,-2.91 -0.46,-0.54 -1.05,-1.08 -1.75,-1.32 -0.11,-0.04 -0.22,-0.07 -0.33,-0.09 -0.25,-0.04 -0.52,-0.04 -0.78,-0.04s-0.53,0 -0.79,0.05c-0.11,0.02 -0.22,0.05 -0.33,0.09 -0.7,0.24 -1.28,0.78 -1.75,1.32 -0.87,1.02 -1.6,1.89 -2.48,2.91 -1.31,1.31 -2.92,2.76 -2.62,4.79 0.29,1.02 1.02,2.03 2.33,2.32 0.73,0.15 3.06,-0.44 5.54,-0.44h0.18c2.48,0 4.81,0.58 5.54,0.44 1.31,-0.29 2.04,-1.31 2.33,-2.32 0.31,-2.04 -1.3,-3.49 -2.61,-4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phishing.xml b/compose/material/material/icons/generator/raw-icons/filled/phishing.xml
deleted file mode 100644
index b27a527..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phishing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9c0,-1.3 -0.84,-2.4 -2,-2.82V2h-2v4.18C13.84,6.6 13,7.7 13,9s0.84,2.4 2,2.82V15c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4v-1h3L5,9v6c0,3.31 2.69,6 6,6s6,-2.69 6,-6v-3.18C18.16,11.4 19,10.3 19,9zM16,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S16.55,10 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone.xml b/compose/material/material/icons/generator/raw-icons/filled/phone.xml
deleted file mode 100644
index e1d37c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.62,10.79c1.44,2.83 3.76,5.14 6.59,6.59l2.2,-2.2c0.27,-0.27 0.67,-0.36 1.02,-0.24 1.12,0.37 2.33,0.57 3.57,0.57 0.55,0 1,0.45 1,1V20c0,0.55 -0.45,1 -1,1 -9.39,0 -17,-7.61 -17,-17 0,-0.55 0.45,-1 1,-1h3.5c0.55,0 1,0.45 1,1 0,1.25 0.2,2.45 0.57,3.57 0.11,0.35 0.03,0.74 -0.25,1.02l-2.2,2.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_android.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_android.xml
deleted file mode 100644
index 1791a85..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L8,1C6.34,1 5,2.34 5,4v16c0,1.66 1.34,3 3,3h8c1.66,0 3,-1.34 3,-3L19,4c0,-1.66 -1.34,-3 -3,-3zM14,21h-4v-1h4v1zM17.25,18L6.75,18L6.75,4h10.5v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_bluetooth_speaker.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_bluetooth_speaker.xml
deleted file mode 100644
index dc5b8b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_bluetooth_speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.71,9.5L17,7.21L17,11h0.5l2.85,-2.85L18.21,6l2.15,-2.15L17.5,1L17,1v3.79L14.71,2.5l-0.71,0.71L16.79,6 14,8.79l0.71,0.71zM18,2.91l0.94,0.94 -0.94,0.94L18,2.91zM18,7.21l0.94,0.94 -0.94,0.94L18,7.21zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_callback.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_callback.xml
deleted file mode 100644
index 51bc8a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_callback.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.62,10.79c1.44,2.83 3.76,5.14 6.59,6.59l2.2,-2.2c0.27,-0.27 0.67,-0.36 1.02,-0.24 1.12,0.37 2.33,0.57 3.57,0.57 0.55,0 1,0.45 1,1L21,20c0,0.55 -0.45,1 -1,1 -9.39,0 -17,-7.61 -17,-17 0,-0.55 0.45,-1 1,-1h3.5c0.55,0 1,0.45 1,1 0,1.25 0.2,2.45 0.57,3.57 0.11,0.35 0.03,0.74 -0.25,1.02l-2.2,2.2zM20.16,3.69l-0.71,-0.7L13,9.29L13,5h-1v6h6v-1h-4.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_disabled.xml
deleted file mode 100644
index 3bd8c61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.54l-1.43,-1.43c0.56,-0.73 1.05,-1.5 1.47,-2.32l-2.2,-2.2c-0.28,-0.28 -0.36,-0.67 -0.25,-1.02 0.37,-1.12 0.57,-2.32 0.57,-3.57 0,-0.55 0.45,-1 1,-1L20,3c0.55,0 1,0.45 1,1 0,3.98 -1.37,7.64 -3.66,10.54zM14.52,17.35C11.63,19.64 7.97,21 4,21c-0.55,0 -1,-0.45 -1,-1v-3.49c0,-0.55 0.45,-1 1,-1 1.24,0 2.45,-0.2 3.57,-0.57 0.35,-0.12 0.75,-0.03 1.02,0.24l2.2,2.2c0.81,-0.42 1.58,-0.9 2.3,-1.46L1.39,4.22l1.42,-1.41L21.19,21.2l-1.41,1.41 -5.26,-5.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_enabled.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_enabled.xml
deleted file mode 100644
index f5d418a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_enabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.38,10.79l-2.2,-2.2c-0.28,-0.28 -0.36,-0.67 -0.25,-1.02 0.37,-1.12 0.57,-2.32 0.57,-3.57 0,-0.55 0.45,-1 1,-1H20c0.55,0 1,0.45 1,1 0,9.39 -7.61,17 -17,17 -0.55,0 -1,-0.45 -1,-1v-3.49c0,-0.55 0.45,-1 1,-1 1.24,0 2.45,-0.2 3.57,-0.57 0.35,-0.12 0.75,-0.03 1.02,0.24l2.2,2.2c2.83,-1.45 5.15,-3.76 6.59,-6.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_forwarded.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_forwarded.xml
deleted file mode 100644
index 0a2039f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_forwarded.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11l5,-5 -5,-5v3h-4v4h4v3zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_in_talk.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_in_talk.xml
deleted file mode 100644
index 42e266d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_in_talk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM19,12h2c0,-4.97 -4.03,-9 -9,-9v2c3.87,0 7,3.13 7,7zM15,12h2c0,-2.76 -2.24,-5 -5,-5v2c1.66,0 3,1.34 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_iphone.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_iphone.xml
deleted file mode 100644
index 23ef826..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_iphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,1h-8C6.12,1 5,2.12 5,3.5v17C5,21.88 6.12,23 7.5,23h8c1.38,0 2.5,-1.12 2.5,-2.5v-17C18,2.12 16.88,1 15.5,1zM11.5,22c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,18L7,18L7,4h9v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_locked.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_locked.xml
deleted file mode 100644
index 7fe553c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_locked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1h-1v5h6V5H20zM19,5h-2V4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.63,14.4l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3L4,3C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.56,0.03 1.03,-0.44 1.03,-1l0,-4.15c0,-0.48 -0.34,-0.89 -0.8,-0.98l-3.67,-0.73C16.2,14.07 15.86,14.17 15.63,14.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_missed.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_missed.xml
deleted file mode 100644
index 4d37ecf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,5.5L12,11l7,-7 -1,-1 -6,6 -4.5,-4.5L11,4.5L11,3L5,3v6h1.5L6.5,5.5zM23.71,16.67C20.66,13.78 16.54,12 12,12 7.46,12 3.34,13.78 0.29,16.67c-0.18,0.18 -0.29,0.43 -0.29,0.71s0.11,0.53 0.29,0.71l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.11 0.7,-0.28 0.79,-0.74 1.69,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.5 0.56,-0.9v-3.1c1.45,-0.48 3,-0.73 4.6,-0.73 1.6,0 3.15,0.25 4.6,0.72v3.1c0,0.39 0.23,0.74 0.56,0.9 0.98,0.49 1.87,1.12 2.67,1.85 0.18,0.18 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71s-0.12,-0.52 -0.3,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phone_paused.xml b/compose/material/material/icons/generator/raw-icons/filled/phone_paused.xml
deleted file mode 100644
index 1781d9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phone_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3h-2v7h2L17,3zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM19,3v7h2L21,3h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phonelink.xml b/compose/material/material/icons/generator/raw-icons/filled/phonelink.xml
deleted file mode 100644
index 7be6491..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phonelink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h18L22,4L4,4c-1.1,0 -2,0.9 -2,2v11L0,17v3h14v-3L4,17L4,6zM23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phonelink_erase.xml b/compose/material/material/icons/generator/raw-icons/filled/phonelink_erase.xml
deleted file mode 100644
index 0749108..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phonelink_erase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.2l-1,-1 -4,4 -4,-4 -1,1 4,4 -4,4 1,1 4,-4 4,4 1,-1 -4,-4 4,-4zM19,1H9c-1.1,0 -2,0.9 -2,2v3h2V4h10v16H9v-2H7v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phonelink_lock.xml b/compose/material/material/icons/generator/raw-icons/filled/phonelink_lock.xml
deleted file mode 100644
index 6c5bb39..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phonelink_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L9,1c-1.1,0 -2,0.9 -2,2v3h2L9,4h10v16L9,20v-2L7,18v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L21,3c0,-1.1 -0.9,-2 -2,-2zM10.8,11L10.8,9.5C10.8,8.1 9.4,7 8,7S5.2,8.1 5.2,9.5L5.2,11c-0.6,0 -1.2,0.6 -1.2,1.2v3.5c0,0.7 0.6,1.3 1.2,1.3h5.5c0.7,0 1.3,-0.6 1.3,-1.2v-3.5c0,-0.7 -0.6,-1.3 -1.2,-1.3zM9.5,11h-3L6.5,9.5c0,-0.8 0.7,-1.3 1.5,-1.3s1.5,0.5 1.5,1.3L9.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phonelink_off.xml b/compose/material/material/icons/generator/raw-icons/filled/phonelink_off.xml
deleted file mode 100644
index 73411a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phonelink_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6V4H6.82l2,2H22zM1.92,1.65L0.65,2.92l1.82,1.82C2.18,5.08 2,5.52 2,6v11H0v3h17.73l2.35,2.35 1.27,-1.27L3.89,3.62 1.92,1.65zM4,6.27L14.73,17H4V6.27zM23,8h-6c-0.55,0 -1,0.45 -1,1v4.18l2,2V10h4v7h-2.18l3,3H23c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phonelink_ring.xml b/compose/material/material/icons/generator/raw-icons/filled/phonelink_ring.xml
deleted file mode 100644
index 58634ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phonelink_ring.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.1,7.7l-1,1c1.8,1.8 1.8,4.6 0,6.5l1,1c2.5,-2.3 2.5,-6.1 0,-8.5zM18,9.8l-1,1c0.5,0.7 0.5,1.6 0,2.3l1,1c1.2,-1.2 1.2,-3 0,-4.3zM14,1L4,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L16,3c0,-1.1 -0.9,-2 -2,-2zM14,20L4,20L4,4h10v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/phonelink_setup.xml b/compose/material/material/icons/generator/raw-icons/filled/phonelink_setup.xml
deleted file mode 100644
index c357d18..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/phonelink_setup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.82,12.49c0.02,-0.16 0.04,-0.32 0.04,-0.49 0,-0.17 -0.02,-0.33 -0.04,-0.49l1.08,-0.82c0.1,-0.07 0.12,-0.21 0.06,-0.32l-1.03,-1.73c-0.06,-0.11 -0.2,-0.15 -0.31,-0.11l-1.28,0.5c-0.27,-0.2 -0.56,-0.36 -0.87,-0.49l-0.2,-1.33c0,-0.12 -0.11,-0.21 -0.24,-0.21H5.98c-0.13,0 -0.24,0.09 -0.26,0.21l-0.2,1.32c-0.31,0.12 -0.6,0.3 -0.87,0.49l-1.28,-0.5c-0.12,-0.05 -0.25,0 -0.31,0.11l-1.03,1.73c-0.06,0.12 -0.03,0.25 0.07,0.33l1.08,0.82c-0.02,0.16 -0.03,0.33 -0.03,0.49 0,0.17 0.02,0.33 0.04,0.49l-1.09,0.83c-0.1,0.07 -0.12,0.21 -0.06,0.32l1.03,1.73c0.06,0.11 0.2,0.15 0.31,0.11l1.28,-0.5c0.27,0.2 0.56,0.36 0.87,0.49l0.2,1.32c0.01,0.12 0.12,0.21 0.25,0.21h2.06c0.13,0 0.24,-0.09 0.25,-0.21l0.2,-1.32c0.31,-0.12 0.6,-0.3 0.87,-0.49l1.28,0.5c0.12,0.05 0.25,0 0.31,-0.11l1.03,-1.73c0.06,-0.11 0.04,-0.24 -0.06,-0.32l-1.1,-0.83zM7,13.75c-0.99,0 -1.8,-0.78 -1.8,-1.75s0.81,-1.75 1.8,-1.75 1.8,0.78 1.8,1.75S8,13.75 7,13.75zM18,1.01L8,1c-1.1,0 -2,0.9 -2,2v3h2V5h10v14H8v-1H6v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo.xml b/compose/material/material/icons/generator/raw-icons/filled/photo.xml
deleted file mode 100644
index 8232c4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_album.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_album.xml
deleted file mode 100644
index 651a56d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM11,4h5v7l-2.5,-1.5L11,11V4zM7,18l2.38,-3.17L11,17l2.62,-3.5L17,18H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_camera.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_camera.xml
deleted file mode 100644
index 13186de..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_camera_back.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_camera_back.xml
deleted file mode 100644
index a6cece9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_camera_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5c1.1,0 2,0.9 2,2v12c0,1.1 -0.9,2 -2,2L4,21c-1.1,0 -2,-0.9 -2,-2L2,7c0,-1.1 0.9,-2 2,-2h3.17L9,3h6l1.83,2L20,5zM20,19L20,7L4,7v12h16zM14,12l-3,3.72L9,13l-3,4h12l-4,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_camera_front.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_camera_front.xml
deleted file mode 100644
index ab1bbd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48l4,-3.98v11l-4,-3.98L18,18c0,1.1 -0.9,2 -2,2L4,20c-1.1,0 -2,-0.9 -2,-2L2,6c0,-1.1 0.9,-2 2,-2h12c1.1,0 2,0.9 2,2v4.48zM16,9.69L16,6L4,6v12h12L16,9.69zM10,12c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM10,13c1.34,0 4,0.67 4,2v1L6,16v-1c0,-1.33 2.66,-2 4,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_filter.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_filter.xml
deleted file mode 100644
index a18c703..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.02,10v9L5,19L5,5h9L14,3L5.02,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-9h-2zM17,10l0.94,-2.06L20,7l-2.06,-0.94L17,4l-0.94,2.06L14,7l2.06,0.94zM13.25,10.75L12,8l-1.25,2.75L8,12l2.75,1.25L12,16l1.25,-2.75L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_library.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_library.xml
deleted file mode 100644
index ee0f693..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zM11,12l2.03,2.71L16,11l4,5L8,16l3,-4zM2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_actual.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_actual.xml
deleted file mode 100644
index 81fbb41..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_actual.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C2,3 1,4 1,5v14c0,1.1 0.9,2 2,2h18c1,0 2,-1 2,-2V5c0,-1 -1,-2 -2,-2zM5,17l3.5,-4.5 2.5,3.01L14.5,11l4.5,6H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_large.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_large.xml
deleted file mode 100644
index e6b238f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15h2v2h-2v-2zM21,11h2v2h-2v-2zM23,19h-2v2c1,0 2,-1 2,-2zM13,3h2v2h-2L13,3zM21,7h2v2h-2L21,7zM21,3v2h2c0,-1 -1,-2 -2,-2zM1,7h2v2L1,9L1,7zM17,3h2v2h-2L17,3zM17,19h2v2h-2v-2zM3,3C2,3 1,4 1,5h2L3,3zM9,3h2v2L9,5L9,3zM5,3h2v2L5,5L5,3zM1,11v8c0,1.1 0.9,2 2,2h12L15,11L1,11zM3,19l2.5,-3.21 1.79,2.15 2.5,-3.22L13,19L3,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_small.xml b/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_small.xml
deleted file mode 100644
index 017c1a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/photo_size_select_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15h-2v2h2v-2zM23,11h-2v2h2v-2zM23,19h-2v2c1,0 2,-1 2,-2zM15,3h-2v2h2L15,3zM23,7h-2v2h2L23,7zM21,3v2h2c0,-1 -1,-2 -2,-2zM3,21h8v-6L1,15v4c0,1.1 0.9,2 2,2zM3,7L1,7v2h2L3,7zM15,19h-2v2h2v-2zM19,3h-2v2h2L19,3zM19,19h-2v2h2v-2zM3,3C2,3 1,4 1,5h2L3,3zM3,11L1,11v2h2v-2zM11,3L9,3v2h2L11,3zM7,3L5,3v2h2L7,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/php.xml b/compose/material/material/icons/generator/raw-icons/filled/php.xml
deleted file mode 100644
index 1b65133..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/php.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9zM8,10.5v1C8,12.3 7.3,13 6.5,13h-2v2H3V9h3.5C7.3,9 8,9.7 8,10.5zM6.5,10.5h-2v1h2V10.5zM21.5,10.5v1c0,0.8 -0.7,1.5 -1.5,1.5h-2v2h-1.5V9H20C20.8,9 21.5,9.7 21.5,10.5zM20,10.5h-2v1h2V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/piano.xml b/compose/material/material/icons/generator/raw-icons/filled/piano.xml
deleted file mode 100644
index 2df4e33..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/piano.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM14,14.5h0.25V19h-4.5v-4.5H10c0.55,0 1,-0.45 1,-1V5h2v8.5C13,14.05 13.45,14.5 14,14.5zM5,5h2v8.5c0,0.55 0.45,1 1,1h0.25V19H5V5zM19,19h-3.25v-4.5H16c0.55,0 1,-0.45 1,-1V5h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/piano_off.xml b/compose/material/material/icons/generator/raw-icons/filled/piano_off.xml
deleted file mode 100644
index db02190..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/piano_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61L21.19,21.19zM8.25,19H5V7.83l2,2v3.67c0,0.55 0.45,1 1,1h0.25V19zM9.75,19v-4.5H10c0.46,0 0.82,-0.31 0.94,-0.73l3.31,3.31V19H9.75zM11,8.17L5.83,3H19c1.1,0 2,0.9 2,2v13.17l-2,-2V5h-2v8.5c0,0.19 -0.07,0.36 -0.16,0.51L13,10.17V5h-2V8.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/picture_as_pdf.xml b/compose/material/material/icons/generator/raw-icons/filled/picture_as_pdf.xml
deleted file mode 100644
index 81f1015..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/picture_as_pdf.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM11.5,9.5c0,0.83 -0.67,1.5 -1.5,1.5L9,11v2L7.5,13L7.5,7L10,7c0.83,0 1.5,0.67 1.5,1.5v1zM16.5,11.5c0,0.83 -0.67,1.5 -1.5,1.5h-2.5L12.5,7L15,7c0.83,0 1.5,0.67 1.5,1.5v3zM20.5,8.5L19,8.5v1h1.5L20.5,11L19,11v2h-1.5L17.5,7h3v1.5zM9,9.5h1v-1L9,8.5v1zM4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM14,11.5h1v-3h-1v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/picture_in_picture.xml b/compose/material/material/icons/generator/raw-icons/filled/picture_in_picture.xml
deleted file mode 100644
index 4dee713..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/picture_in_picture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-8v6h8L19,7zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.98h18v14.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/picture_in_picture_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/picture_in_picture_alt.xml
deleted file mode 100644
index 56d441c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/picture_in_picture_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-8v6h8v-6zM23,19L23,4.98C23,3.88 22.1,3 21,3L3,3c-1.1,0 -2,0.88 -2,1.98L1,19c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2zM21,19.02L3,19.02L3,4.97h18v14.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pie_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/pie_chart.xml
deleted file mode 100644
index 5ac9d97..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pie_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2v20c-5.07,-0.5 -9,-4.79 -9,-10s3.93,-9.5 9,-10zM13.03,2v8.99L22,10.99c-0.47,-4.74 -4.24,-8.52 -8.97,-8.99zM13.03,13.01L13.03,22c4.74,-0.47 8.5,-4.25 8.97,-8.99h-8.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pie_chart_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/pie_chart_outline.xml
deleted file mode 100644
index f6fade3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pie_chart_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM13,4.07c3.61,0.45 6.48,3.33 6.93,6.93H13V4.07zM4,12c0,-4.06 3.07,-7.44 7,-7.93v15.87C7.07,19.44 4,16.06 4,12zM13,19.93V13h6.93C19.48,16.61 16.61,19.48 13,19.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pin.xml b/compose/material/material/icons/generator/raw-icons/filled/pin.xml
deleted file mode 100644
index 0dfeccb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM7.64,15H6.49v-4.5l-0.9,0.66l-0.58,-0.89L6.77,9h0.87V15zM13.5,15H9.61v-1.02c1.07,-1.07 1.77,-1.77 2.13,-2.15c0.4,-0.42 0.54,-0.69 0.54,-1.06c0,-0.4 -0.31,-0.72 -0.81,-0.72c-0.52,0 -0.8,0.39 -0.9,0.72l-1.01,-0.42c0.01,-0.02 0.18,-0.76 1,-1.15c0.69,-0.33 1.48,-0.2 1.95,0.03c0.86,0.44 0.91,1.24 0.91,1.48c0,0.64 -0.31,1.26 -0.92,1.86c-0.25,0.25 -0.72,0.71 -1.4,1.39l0.03,0.05h2.37V15zM18.75,14.15C18.67,14.28 18.19,15 16.99,15c-0.04,0 -1.6,0.08 -2.05,-1.51l1.03,-0.41c0.03,0.1 0.19,0.86 1.02,0.86c0.41,0 0.89,-0.28 0.89,-0.77c0,-0.55 -0.48,-0.79 -1.04,-0.79h-0.5v-1h0.46c0.33,0 0.88,-0.14 0.88,-0.72c0,-0.39 -0.31,-0.65 -0.75,-0.65c-0.5,0 -0.74,0.32 -0.85,0.64l-0.99,-0.41C15.2,9.9 15.68,9 16.94,9c1.09,0 1.54,0.64 1.62,0.75c0.33,0.5 0.28,1.16 0.02,1.57c-0.15,0.22 -0.32,0.38 -0.52,0.48v0.07c0.28,0.11 0.51,0.28 0.68,0.52C19.11,12.91 19.07,13.66 18.75,14.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pin_drop.xml b/compose/material/material/icons/generator/raw-icons/filled/pin_drop.xml
deleted file mode 100644
index e7cf33e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pin_drop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c0,-3.31 -2.69,-6 -6,-6S6,4.69 6,8c0,4.5 6,11 6,11s6,-6.5 6,-11zM10,8c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.89,2 -2,2c-1.1,0 -2,-0.9 -2,-2zM5,20v2h14v-2L5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pin_end.xml b/compose/material/material/icons/generator/raw-icons/filled/pin_end.xml
deleted file mode 100644
index 070e4b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pin_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12V6H4v12h10l0,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2v6H20zM19,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.66,0 3,-1.34 3,-3S20.66,14 19,14zM14.66,8H9v5.66l2.12,-2.12l2.83,2.83l1.41,-1.41l-2.83,-2.83L14.66,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pin_invoke.xml b/compose/material/material/icons/generator/raw-icons/filled/pin_invoke.xml
deleted file mode 100644
index 6e78fb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pin_invoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12v6c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10l0,2H4v12h16v-6H22zM22,7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C20.66,10 22,8.66 22,7zM11.47,12.12l-2.83,2.83l1.41,1.41l2.83,-2.83L15,15.66V10H9.34L11.47,12.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pinch.xml b/compose/material/material/icons/generator/raw-icons/filled/pinch.xml
deleted file mode 100644
index a58dd50..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pinch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6zM22.98,16.82l-0.63,4.46C22.21,22.27 21.36,23 20.37,23h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59L8,17.62l0.83,-0.84c0.24,-0.24 0.58,-0.35 0.92,-0.28L13,17.24V6.5C13,5.67 13.67,5 14.5,5S16,5.67 16,6.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04C22.66,15.14 23.1,15.97 22.98,16.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pivot_table_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/pivot_table_chart.xml
deleted file mode 100644
index b361b63..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pivot_table_chart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8h11L21,5c0,-1.1 -0.9,-2 -2,-2h-9v5zM3,8h5L8,3L5,3c-1.1,0 -2,0.9 -2,2v3zM5,21h3L8,10L3,10v9c0,1.1 0.9,2 2,2zM13,22l-4,-4 4,-4zM14,13l4,-4 4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.58,19H13v-2h1.58c1.33,0 2.42,-1.08 2.42,-2.42V13h2v1.58c0,2.44 -1.98,4.42 -4.42,4.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pix.xml b/compose/material/material/icons/generator/raw-icons/filled/pix.xml
deleted file mode 100644
index a1fea47..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pix.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.45,16.52l-3.01,-3.01c-0.11,-0.11 -0.24,-0.13 -0.31,-0.13s-0.2,0.02 -0.31,0.13L8.8,16.53c-0.34,0.34 -0.87,0.89 -2.64,0.89l3.71,3.7c1.17,1.17 3.07,1.17 4.24,0l3.72,-3.71C16.92,17.41 16.16,17.23 15.45,16.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,7.47l3.02,3.02c0.08,0.08 0.2,0.13 0.31,0.13s0.23,-0.05 0.31,-0.13l2.99,-2.99c0.71,-0.74 1.52,-0.91 2.43,-0.91l-3.72,-3.71c-1.17,-1.17 -3.07,-1.17 -4.24,0l-3.71,3.7C7.95,6.58 8.49,7.16 8.8,7.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,9.85l-2.25,-2.26H17.6c-0.54,0 -1.08,0.22 -1.45,0.61l-3,3c-0.28,0.28 -0.65,0.42 -1.02,0.42c-0.36,0 -0.74,-0.15 -1.02,-0.42L8.09,8.17c-0.38,-0.38 -0.9,-0.6 -1.45,-0.6H5.17l-2.29,2.3c-1.17,1.17 -1.17,3.07 0,4.24l2.29,2.3h1.48c0.54,0 1.06,-0.22 1.45,-0.6l3.02,-3.02c0.28,-0.28 0.65,-0.42 1.02,-0.42c0.37,0 0.74,0.14 1.02,0.42l3.01,3.01c0.38,0.38 0.9,0.6 1.45,0.6h1.26l2.25,-2.26C22.3,12.96 22.3,11.04 21.11,9.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/place.xml b/compose/material/material/icons/generator/raw-icons/filled/place.xml
deleted file mode 100644
index e6dfeb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/place.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/plagiarism.xml b/compose/material/material/icons/generator/raw-icons/filled/plagiarism.xml
deleted file mode 100644
index 717c7af..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/plagiarism.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM15.04,19.45l-1.88,-1.88c-1.33,0.71 -3.01,0.53 -4.13,-0.59c-1.37,-1.37 -1.37,-3.58 0,-4.95c1.37,-1.37 3.58,-1.37 4.95,0c1.12,1.12 1.31,2.8 0.59,4.13l1.88,1.88L15.04,19.45zM13,9V3.5L18.5,9H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/play_arrow.xml b/compose/material/material/icons/generator/raw-icons/filled/play_arrow.xml
deleted file mode 100644
index 13c137a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/play_arrow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5v14l11,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/play_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/play_circle.xml
deleted file mode 100644
index bc5dd1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/play_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM9.5,16.5v-9l7,4.5L9.5,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/play_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/play_circle_filled.xml
deleted file mode 100644
index 52f6c50..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/play_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,16.5v-9l6,4.5 -6,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/play_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/play_circle_outline.xml
deleted file mode 100644
index 969804a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/play_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.5l6,-4.5 -6,-4.5v9zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/play_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/play_disabled.xml
deleted file mode 100644
index bb374b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/play_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5.19L8,5l11,7 -2.55,1.63L8,5.19zM20,19.73l-5.11,-5.11L8,7.73 4.27,4 3,5.27l5,5L8,19l5.33,-3.4 5.4,5.4L20,19.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/play_for_work.xml b/compose/material/material/icons/generator/raw-icons/filled/play_for_work.xml
deleted file mode 100644
index 4a713b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/play_for_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5v5.59L7.5,10.59l4.5,4.5 4.5,-4.5L13,10.59L13,5h-2zM6,14c0,3.31 2.69,6 6,6s6,-2.69 6,-6h-2c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4L6,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/play_lesson.xml b/compose/material/material/icons/generator/raw-icons/filled/play_lesson.xml
deleted file mode 100644
index 38c0b0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/play_lesson.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.34,0 0.67,0.03 1,0.08V4c0,-1.1 -0.9,-2 -2,-2H5C3.9,2 3,2.9 3,4v16c0,1.1 0.9,2 2,2h7.26C11.47,20.87 11,19.49 11,18C11,14.13 14.13,11 18,11zM7,11V4h5v7L9.5,9.5L7,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM16.75,20.5v-5l4,2.5L16.75,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/playlist_add.xml b/compose/material/material/icons/generator/raw-icons/filled/playlist_add.xml
deleted file mode 100644
index 21a683b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/playlist_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18zM3,16h7v-2H3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/playlist_add_check.xml b/compose/material/material/icons/generator/raw-icons/filled/playlist_add_check.xml
deleted file mode 100644
index b426cf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/playlist_add_check.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.59,11.93l-4.25,4.24l-2.12,-2.12l-1.41,1.41l3.53,3.54l5.66,-5.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/playlist_add_check_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/playlist_add_check_circle.xml
deleted file mode 100644
index 1c67620..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/playlist_add_check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2zM7,7h7v2H7V7zM7,10h7v2H7V10zM10,15H7v-2h3V15zM14.05,18.36l-2.83,-2.83l1.41,-1.41l1.41,1.41L17.59,12L19,13.41L14.05,18.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/playlist_add_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/playlist_add_circle.xml
deleted file mode 100644
index c2a7236..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/playlist_add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM7,7h7v2H7V7zM10,15H7v-2h3V15zM7,12v-2h7v2H7zM19,15h-2v2h-2v-2h-2v-2h2v-2h2v2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/playlist_play.xml b/compose/material/material/icons/generator/raw-icons/filled/playlist_play.xml
deleted file mode 100644
index 2ca0b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/playlist_play.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13l0,8l6,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/playlist_remove.xml b/compose/material/material/icons/generator/raw-icons/filled/playlist_remove.xml
deleted file mode 100644
index ff81cff..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/playlist_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM3,16h7v-2H3V16zM14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/plumbing.xml b/compose/material/material/icons/generator/raw-icons/filled/plumbing.xml
deleted file mode 100644
index 724c184..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/plumbing.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.28,4.93l-2.12,-2.12c-0.78,-0.78 -2.05,-0.78 -2.83,0L11.5,5.64l2.12,2.12l2.12,-2.12l3.54,3.54C20.45,8 20.45,6.1 19.28,4.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.49,13.77c0.59,0.59 1.54,0.59 2.12,0l2.47,-2.47L7.96,9.17l-2.47,2.47C4.9,12.23 4.9,13.18 5.49,13.77L5.49,13.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18,-3.18C9.85,5.4 8.9,5.4 8.32,5.99c-0.59,0.59 -0.59,1.54 0,2.12l3.18,3.18L10.79,12l-6.36,6.36c-0.78,0.78 -0.78,2.05 0,2.83c0.78,0.78 2.05,0.78 2.83,0L16.45,12c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L15.04,7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/plus_one.xml b/compose/material/material/icons/generator/raw-icons/filled/plus_one.xml
deleted file mode 100644
index b64d3e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/plus_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8L8,8v4L4,12v2h4v4h2v-4h4v-2h-4zM14.5,6.08L14.5,7.9l2.5,-0.5L17,18h2L19,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/podcasts.xml b/compose/material/material/icons/generator/raw-icons/filled/podcasts.xml
deleted file mode 100644
index e8d43dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/podcasts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,0.74 -0.4,1.38 -1,1.72V22h-2v-8.28c-0.6,-0.35 -1,-0.98 -1,-1.72c0,-1.1 0.9,-2 2,-2S14,10.9 14,12zM12,6c-3.31,0 -6,2.69 -6,6c0,1.74 0.75,3.31 1.94,4.4l1.42,-1.42C8.53,14.25 8,13.19 8,12c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.19 -0.53,2.25 -1.36,2.98l1.42,1.42C17.25,15.31 18,13.74 18,12C18,8.69 15.31,6 12,6zM12,2C6.48,2 2,6.48 2,12c0,2.85 1.2,5.41 3.11,7.24l1.42,-1.42C4.98,16.36 4,14.29 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8c0,2.29 -0.98,4.36 -2.53,5.82l1.42,1.42C20.8,17.41 22,14.85 22,12C22,6.48 17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/point_of_sale.xml b/compose/material/material/icons/generator/raw-icons/filled/point_of_sale.xml
deleted file mode 100644
index 9c40b5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/point_of_sale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2H7C5.9,2 5,2.9 5,4v2c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V4C19,2.9 18.1,2 17,2zM17,6H7V4h10V6zM20,22H4c-1.1,0 -2,-0.9 -2,-2v-1h20v1C22,21.1 21.1,22 20,22zM18.53,10.19C18.21,9.47 17.49,9 16.7,9H7.3c-0.79,0 -1.51,0.47 -1.83,1.19L2,18h20L18.53,10.19zM9.5,16h-1C8.22,16 8,15.78 8,15.5C8,15.22 8.22,15 8.5,15h1c0.28,0 0.5,0.22 0.5,0.5C10,15.78 9.78,16 9.5,16zM9.5,14h-1C8.22,14 8,13.78 8,13.5C8,13.22 8.22,13 8.5,13h1c0.28,0 0.5,0.22 0.5,0.5C10,13.78 9.78,14 9.5,14zM9.5,12h-1C8.22,12 8,11.78 8,11.5C8,11.22 8.22,11 8.5,11h1c0.28,0 0.5,0.22 0.5,0.5C10,11.78 9.78,12 9.5,12zM12.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,15.78 12.78,16 12.5,16zM12.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,13.78 12.78,14 12.5,14zM12.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,11.78 12.78,12 12.5,12zM15.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,15.78 15.78,16 15.5,16zM15.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,13.78 15.78,14 15.5,14zM15.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,11.78 15.78,12 15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/policy.xml b/compose/material/material/icons/generator/raw-icons/filled/policy.xml
deleted file mode 100644
index 13a92c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/policy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5l-9,-4L3,5v6c0,5.55 3.84,10.74 9,12c2.3,-0.56 4.33,-1.9 5.88,-3.71l-3.12,-3.12c-1.94,1.29 -4.58,1.07 -6.29,-0.64c-1.95,-1.95 -1.95,-5.12 0,-7.07c1.95,-1.95 5.12,-1.95 7.07,0c1.71,1.71 1.92,4.35 0.64,6.29l2.9,2.9C20.29,15.69 21,13.38 21,11V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/poll.xml b/compose/material/material/icons/generator/raw-icons/filled/poll.xml
deleted file mode 100644
index 3c3b83f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/poll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/polyline.xml b/compose/material/material/icons/generator/raw-icons/filled/polyline.xml
deleted file mode 100644
index 5f5d7a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/polyline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16l0,1.26l-6,-3l0,-3.17l2.7,-3.09l4.3,0l0,-6l-6,0l0,4.9l-2.7,3.1l-4.3,0l0,6l5,0l7,3.5l0,2.5l6,0l0,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/polymer.xml b/compose/material/material/icons/generator/raw-icons/filled/polymer.xml
deleted file mode 100644
index 29b1dcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/polymer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-4L7.11,16.63 4.5,12 9,4H5L0.5,12 5,20h4l7.89,-12.63L19.5,12 15,20h4l4.5,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pool.xml b/compose/material/material/icons/generator/raw-icons/filled/pool.xml
deleted file mode 100644
index 9939902..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pool.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,21c-1.11,0 -1.73,-0.37 -2.18,-0.64 -0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.46,0.27 -1.07,0.64 -2.18,0.64s-1.73,-0.37 -2.18,-0.64c-0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.46,0.27 -1.08,0.64 -2.19,0.64 -1.11,0 -1.73,-0.37 -2.18,-0.64 -0.37,-0.23 -0.6,-0.36 -1.15,-0.36s-0.78,0.13 -1.15,0.36c-0.46,0.27 -1.08,0.64 -2.19,0.64v-2c0.56,0 0.78,-0.13 1.15,-0.36 0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.23 0.59,0.36 1.15,0.36 0.56,0 0.78,-0.13 1.15,-0.36 0.46,-0.27 1.08,-0.64 2.19,-0.64 1.11,0 1.73,0.37 2.18,0.64 0.37,0.22 0.6,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.23 0.59,0.36 1.15,0.36v2zM22,16.5c-1.11,0 -1.73,-0.37 -2.18,-0.64 -0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.45,0.27 -1.07,0.64 -2.18,0.64s-1.73,-0.37 -2.18,-0.64c-0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.45,0.27 -1.07,0.64 -2.18,0.64s-1.73,-0.37 -2.18,-0.64c-0.37,-0.22 -0.6,-0.36 -1.15,-0.36s-0.78,0.13 -1.15,0.36c-0.47,0.27 -1.09,0.64 -2.2,0.64v-2c0.56,0 0.78,-0.13 1.15,-0.36 0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36 0.56,0 0.78,-0.13 1.15,-0.36 0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36v2zM8.67,12c0.56,0 0.78,-0.13 1.15,-0.36 0.46,-0.27 1.08,-0.64 2.19,-0.64 1.11,0 1.73,0.37 2.18,0.64 0.37,0.22 0.6,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.12,-0.07 0.26,-0.15 0.41,-0.23L10.48,5C8.93,3.45 7.5,2.99 5,3v2.5c1.82,-0.01 2.89,0.39 4,1.5l1,1 -3.25,3.25c0.31,0.12 0.56,0.27 0.77,0.39 0.37,0.23 0.59,0.36 1.15,0.36z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/portable_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/filled/portable_wifi_off.xml
deleted file mode 100644
index f1aa61b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/portable_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.56,14.24c0.28,-0.69 0.44,-1.45 0.44,-2.24 0,-3.31 -2.69,-6 -6,-6 -0.79,0 -1.55,0.16 -2.24,0.44l1.62,1.62c0.2,-0.03 0.41,-0.06 0.62,-0.06 2.21,0 4,1.79 4,4 0,0.21 -0.02,0.42 -0.05,0.63l1.61,1.61zM12,4c4.42,0 8,3.58 8,8 0,1.35 -0.35,2.62 -0.95,3.74l1.47,1.47C21.46,15.69 22,13.91 22,12c0,-5.52 -4.48,-10 -10,-10 -1.91,0 -3.69,0.55 -5.21,1.47l1.46,1.46C9.37,4.34 10.65,4 12,4zM3.27,2.5L2,3.77l2.1,2.1C2.79,7.57 2,9.69 2,12c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,17.53 4,14.96 4,12c0,-1.76 0.57,-3.38 1.53,-4.69l1.43,1.44C6.36,9.68 6,10.8 6,12c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-0.65 0.17,-1.25 0.44,-1.79l1.58,1.58L10,12c0,1.1 0.9,2 2,2l0.21,-0.02 0.01,0.01 7.51,7.51L21,20.23 4.27,3.5l-1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/portrait.xml b/compose/material/material/icons/generator/raw-icons/filled/portrait.xml
deleted file mode 100644
index 069cc63..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.25c1.24,0 2.25,-1.01 2.25,-2.25S13.24,7.75 12,7.75 9.75,8.76 9.75,10s1.01,2.25 2.25,2.25zM16.5,16.25c0,-1.5 -3,-2.25 -4.5,-2.25s-4.5,0.75 -4.5,2.25L7.5,17h9v-0.75zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/post_add.xml b/compose/material/material/icons/generator/raw-icons/filled/post_add.xml
deleted file mode 100644
index cd06c37..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/post_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,19.22H5V7h7V5H5C3.9,5 3,5.9 3,7v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-7h-2V19.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-2v3h-3c0.01,0.01 0,2 0,2h3v2.99c0.01,0.01 2,0 2,0V7h3V5h-3V2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l0,2l8,0l0,-2l-3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/power.xml b/compose/material/material/icons/generator/raw-icons/filled/power.xml
deleted file mode 100644
index 5ba527c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,7L16,3h-2v4h-4V3H8v4h-0.01C7,6.99 6,7.99 6,8.99v5.49L9.5,18v3h5v-3l3.5,-3.51v-5.5c0,-1 -1,-2 -1.99,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/power_input.xml b/compose/material/material/icons/generator/raw-icons/filled/power_input.xml
deleted file mode 100644
index 0d03496..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/power_input.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9v2h19L21,9L2,9zM2,15h5v-2L2,13v2zM9,15h5v-2L9,13v2zM16,15h5v-2h-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/power_off.xml b/compose/material/material/icons/generator/raw-icons/filled/power_off.xml
deleted file mode 100644
index ba3f12a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/power_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14.49L18,9c0,-1 -1.01,-2.01 -2,-2L16,3h-2v4h-4L10,3L8,3v2.48l9.51,9.5 0.49,-0.49zM16.24,16.26L7.2,7.2l-0.01,0.01L3.98,4 2.71,5.25l3.36,3.36C6.04,8.74 6,8.87 6,9v5.48L9.5,18v3h5v-3l0.48,-0.48L19.45,22l1.26,-1.28 -4.47,-4.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/power_settings_new.xml b/compose/material/material/icons/generator/raw-icons/filled/power_settings_new.xml
deleted file mode 100644
index 7495b98..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/power_settings_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3h-2v10h2L13,3zM17.83,5.17l-1.42,1.42C17.99,7.86 19,9.81 19,12c0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-2.19 1.01,-4.14 2.58,-5.42L6.17,5.17C4.23,6.82 3,9.26 3,12c0,4.97 4.03,9 9,9s9,-4.03 9,-9c0,-2.74 -1.23,-5.18 -3.17,-6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/precision_manufacturing.xml b/compose/material/material/icons/generator/raw-icons/filled/precision_manufacturing.xml
deleted file mode 100644
index af97744..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/precision_manufacturing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.93,8.21l-3.6,1.68L14,7.7V6.3l2.33,-2.19l3.6,1.68c0.38,0.18 0.82,0.01 1,-0.36c0.18,-0.38 0.01,-0.82 -0.36,-1L16.65,2.6c-0.38,-0.18 -0.83,-0.1 -1.13,0.2l-1.74,1.6C13.6,4.16 13.32,4 13,4c-0.55,0 -1,0.45 -1,1v1H8.82C8.34,4.65 6.98,3.73 5.4,4.07C4.24,4.32 3.25,5.32 3.04,6.5C2.82,7.82 3.5,8.97 4.52,9.58L7.08,18H4v3h13v-3h-3.62L8.41,8.77C8.58,8.53 8.72,8.28 8.82,8H12v1c0,0.55 0.45,1 1,1c0.32,0 0.6,-0.16 0.78,-0.4l1.74,1.6c0.3,0.3 0.75,0.38 1.13,0.2l3.92,-1.83c0.38,-0.18 0.54,-0.62 0.36,-1C20.75,8.2 20.31,8.03 19.93,8.21zM6,8C5.45,8 5,7.55 5,7s0.45,-1 1,-1s1,0.45 1,1S6.55,8 6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/pregnant_woman.xml b/compose/material/material/icons/generator/raw-icons/filled/pregnant_woman.xml
deleted file mode 100644
index 8c170de..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/pregnant_woman.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S9,5.11 9,4zM16,13c-0.01,-1.34 -0.83,-2.51 -2,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3v7h2v5h3v-5h3V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/present_to_all.xml b/compose/material/material/icons/generator/raw-icons/filled/present_to_all.xml
deleted file mode 100644
index 61c6690..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/present_to_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v14c0,1.11 0.89,2 2,2h18c1.11,0 2,-0.89 2,-2L23,5c0,-1.11 -0.89,-2 -2,-2zM21,19.02L3,19.02L3,4.98h18v14.04zM10,12L8,12l4,-4 4,4h-2v4h-4v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/preview.xml b/compose/material/material/icons/generator/raw-icons/filled/preview.xml
deleted file mode 100644
index 2bf3bca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/preview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM13.5,13c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5S13.5,12.17 13.5,13zM12,9c-2.73,0 -5.06,1.66 -6,4c0.94,2.34 3.27,4 6,4s5.06,-1.66 6,-4C17.06,10.66 14.73,9 12,9zM12,15.5c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5c1.38,0 2.5,1.12 2.5,2.5C14.5,14.38 13.38,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/price_change.xml b/compose/material/material/icons/generator/raw-icons/filled/price_change.xml
deleted file mode 100644
index 2e682e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/price_change.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V6C22,4.89 21.11,4 20,4zM12,10H8v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1H8v-1H6v-2h4v-1H7c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h1V7h2v1h2V10zM16,16.25l-2,-2h4L16,16.25zM14,10l2,-2l2,2H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/price_check.xml b/compose/material/material/icons/generator/raw-icons/filled/price_check.xml
deleted file mode 100644
index 69c2064..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/price_check.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13V9c0,-0.55 -0.45,-1 -1,-1H7V6h5V4H9.5V3h-2v1H6C5.45,4 5,4.45 5,5v4c0,0.55 0.45,1 1,1h4v2H5v2h2.5v1h2v-1H11C11.55,14 12,13.55 12,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,12.52l-5.66,5.65l-2.83,-2.83l-1.41,1.42l4.24,4.24l7.07,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/print.xml b/compose/material/material/icons/generator/raw-icons/filled/print.xml
deleted file mode 100644
index ca0fd01..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/print.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8L5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12v-4h4v-6c0,-1.66 -1.34,-3 -3,-3zM16,19L8,19v-5h8v5zM19,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,3L6,3v4h12L18,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/print_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/print_disabled.xml
deleted file mode 100644
index d48c6da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/print_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,17L22,17v-6c0,-1.7 -1.3,-3 -3,-3h-9l9.1,9zM19,10c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM18,7L18,3L6,3v1.1L9,7zM1.2,1.8L0,3l4.9,5C3.3,8.1 2,9.4 2,11v6h4v4h11.9l3,3 1.3,-1.3 -21,-20.9zM8,19v-5h2.9l5,5L8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/priority_high.xml b/compose/material/material/icons/generator/raw-icons/filled/priority_high.xml
deleted file mode 100644
index fd4a832..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/priority_high.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/privacy_tip.xml b/compose/material/material/icons/generator/raw-icons/filled/privacy_tip.xml
deleted file mode 100644
index 99e31f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/privacy_tip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1L12,1zM11,7h2v2h-2V7zM11,11h2v6h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/private_connectivity.xml b/compose/material/material/icons/generator/raw-icons/filled/private_connectivity.xml
deleted file mode 100644
index c291d3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/private_connectivity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.93,11c-0.49,-3.39 -3.4,-6 -6.93,-6s-6.44,2.61 -6.93,6H2v2h3.07c0.49,3.39 3.4,6 6.93,6s6.44,-2.61 6.93,-6H22v-2H18.93zM15,14.5c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1v-1c0,-1.21 1.08,-2.18 2.34,-1.97C13.32,7.69 14,8.61 14,9.61v0.89c0.55,0 1,0.45 1,1V14.5zM12.75,13c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75S12.75,12.59 12.75,13zM13,9.5v1h-2v-1c0,-0.55 0.45,-1 1,-1S13,8.95 13,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/production_quantity_limits.xml b/compose/material/material/icons/generator/raw-icons/filled/production_quantity_limits.xml
deleted file mode 100644
index 125519b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/production_quantity_limits.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h-2V8h2V10zM13,6h-2V1h2V6zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2H7L8.1,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/propane.xml b/compose/material/material/icons/generator/raw-icons/filled/propane.xml
deleted file mode 100644
index 889f1b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/propane.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6h-1V5c0,-1.1 -0.9,-2 -2,-2h-4C8.9,3 8,3.9 8,5v1H7c-3.31,0 -6,2.69 -6,6s2.69,6 6,6v3h2v-3h6v3h2v-3c3.31,0 6,-2.69 6,-6S20.31,6 17,6zM10,5h4v1h-4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/propane_tank.xml b/compose/material/material/icons/generator/raw-icons/filled/propane_tank.xml
deleted file mode 100644
index 88ba74e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/propane_tank.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15v3c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4v-3H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13v-3c0,-1.86 -1.28,-3.41 -3,-3.86V4c0,-1.1 -0.9,-2 -2,-2H9C7.9,2 7,2.9 7,4v2.14c-1.72,0.45 -3,2 -3,3.86v3H20zM9,4h6v2h-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1H9V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/psychology.xml b/compose/material/material/icons/generator/raw-icons/filled/psychology.xml
deleted file mode 100644
index a5a4aaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/psychology.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.57c-0.79,0 -1.43,0.64 -1.43,1.43s0.64,1.43 1.43,1.43s1.43,-0.64 1.43,-1.43S13.79,8.57 13,8.57z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3C9.25,3 6.2,5.94 6.02,9.64L4.1,12.2C3.85,12.53 4.09,13 4.5,13H6v3c0,1.1 0.9,2 2,2h1v3h7v-4.68c2.36,-1.12 4,-3.53 4,-6.32C20,6.13 16.87,3 13,3zM16,10c0,0.13 -0.01,0.26 -0.02,0.39l0.83,0.66c0.08,0.06 0.1,0.16 0.05,0.25l-0.8,1.39c-0.05,0.09 -0.16,0.12 -0.24,0.09l-0.99,-0.4c-0.21,0.16 -0.43,0.29 -0.67,0.39L14,13.83c-0.01,0.1 -0.1,0.17 -0.2,0.17h-1.6c-0.1,0 -0.18,-0.07 -0.2,-0.17l-0.15,-1.06c-0.25,-0.1 -0.47,-0.23 -0.68,-0.39l-0.99,0.4c-0.09,0.03 -0.2,0 -0.25,-0.09l-0.8,-1.39c-0.05,-0.08 -0.03,-0.19 0.05,-0.25l0.84,-0.66C10.01,10.26 10,10.13 10,10c0,-0.13 0.02,-0.27 0.04,-0.39L9.19,8.95c-0.08,-0.06 -0.1,-0.16 -0.05,-0.26l0.8,-1.38c0.05,-0.09 0.15,-0.12 0.24,-0.09l1,0.4c0.2,-0.15 0.43,-0.29 0.67,-0.39l0.15,-1.06C12.02,6.07 12.1,6 12.2,6h1.6c0.1,0 0.18,0.07 0.2,0.17l0.15,1.06c0.24,0.1 0.46,0.23 0.67,0.39l1,-0.4c0.09,-0.03 0.2,0 0.24,0.09l0.8,1.38c0.05,0.09 0.03,0.2 -0.05,0.26l-0.85,0.66C15.99,9.73 16,9.86 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/psychology_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/psychology_alt.xml
deleted file mode 100644
index 1cd3a7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/psychology_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,9.06C19.5,5.73 16.57,3 13,3C9.47,3 6.57,5.61 6.08,9l-1.93,3.48C3.74,13.14 4.22,14 5,14h1l0,2c0,1.1 0.9,2 2,2h1v3h7l0,-4.68C18.62,15.07 20.35,12.24 19.94,9.06zM12.5,14c-0.41,0 -0.74,-0.33 -0.74,-0.74c0,-0.41 0.33,-0.73 0.74,-0.73c0.41,0 0.73,0.32 0.73,0.73C13.23,13.67 12.92,14 12.5,14zM14.26,9.68c-0.44,0.65 -0.86,0.85 -1.09,1.27c-0.09,0.17 -0.13,0.28 -0.13,0.82h-1.06c0,-0.29 -0.04,-0.75 0.18,-1.16c0.28,-0.51 0.83,-0.81 1.14,-1.26c0.33,-0.47 0.15,-1.36 -0.8,-1.36c-0.62,0 -0.92,0.47 -1.05,0.86l-0.96,-0.4C10.76,7.67 11.46,7 12.5,7c0.86,0 1.45,0.39 1.75,0.88C14.51,8.31 14.66,9.1 14.26,9.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/public.xml b/compose/material/material/icons/generator/raw-icons/filled/public.xml
deleted file mode 100644
index 19fb425..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/public.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L9,15v1c0,1.1 0.9,2 2,2v1.93zM17.9,17.39c-0.26,-0.81 -1,-1.39 -1.9,-1.39h-1v-3c0,-0.55 -0.45,-1 -1,-1L8,12v-2h2c0.55,0 1,-0.45 1,-1L11,7h2c1.1,0 2,-0.9 2,-2v-0.41c2.93,1.19 5,4.06 5,7.41 0,2.08 -0.8,3.97 -2.1,5.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/public_off.xml b/compose/material/material/icons/generator/raw-icons/filled/public_off.xml
deleted file mode 100644
index 03f1d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/public_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.87 20,13.48 20,12c0,-3.35 -2.07,-6.22 -5,-7.41V5c0,1.1 -0.9,2 -2,2h-2V8.17zM21.19,21.19l-1.41,1.41l-2.27,-2.27C15.93,21.39 14.04,22 12,22C6.48,22 2,17.52 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41L21.19,21.19zM11,18c-1.1,0 -2,-0.9 -2,-2v-1l-4.79,-4.79C4.08,10.79 4,11.38 4,12c0,4.08 3.05,7.44 7,7.93V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/publish.xml b/compose/material/material/icons/generator/raw-icons/filled/publish.xml
deleted file mode 100644
index 627759d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/publish.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4v2h14L19,4L5,4zM5,14h4v6h6v-6h4l-7,-7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/published_with_changes.xml b/compose/material/material/icons/generator/raw-icons/filled/published_with_changes.xml
deleted file mode 100644
index 2c3609b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/published_with_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,9.53l-7.07,7.07l-4.24,-4.24l1.41,-1.41l2.83,2.83l5.66,-5.66L17.66,9.53zM4,12c0,-2.33 1.02,-4.42 2.62,-5.88L9,8.5v-6H3l2.2,2.2C3.24,6.52 2,9.11 2,12c0,5.19 3.95,9.45 9,9.95v-2.02C7.06,19.44 4,16.07 4,12zM22,12c0,-5.19 -3.95,-9.45 -9,-9.95v2.02c3.94,0.49 7,3.86 7,7.93c0,2.33 -1.02,4.42 -2.62,5.88L15,15.5v6h6l-2.2,-2.2C20.76,17.48 22,14.89 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/punch_clock.xml b/compose/material/material/icons/generator/raw-icons/filled/punch_clock.xml
deleted file mode 100644
index 36f1725..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/punch_clock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-1V1H6v5H5C3.9,6 3,6.9 3,8v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM8,3h8v3H8V3zM12,19c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c2.76,0 5,2.24 5,5S14.76,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.5l-1,0l0,2.71l1.64,1.64l0.71,-0.71l-1.35,-1.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/push_pin.xml b/compose/material/material/icons/generator/raw-icons/filled/push_pin.xml
deleted file mode 100644
index f1e14a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/push_pin.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9V4l1,0c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H7C6.45,2 6,2.45 6,3v0c0,0.55 0.45,1 1,1l1,0v5c0,1.66 -1.34,3 -3,3h0v2h5.97v7l1,1l1,-1v-7H19v-2h0C17.34,12 16,10.66 16,9z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/qr_code.xml b/compose/material/material/icons/generator/raw-icons/filled/qr_code.xml
deleted file mode 100644
index e9366bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/qr_code.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/qr_code_2.xml b/compose/material/material/icons/generator/raw-icons/filled/qr_code_2.xml
deleted file mode 100644
index 6918603..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/qr_code_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h-2v-2h2V21zM13,14h-2v5h2V14zM21,12h-2v4h2V12zM19,10h-2v2h2V10zM7,12H5v2h2V12zM5,10H3v2h2V10zM12,5h2V3h-2V5zM4.5,4.5v3h3v-3H4.5zM9,9H3V3h6V9zM4.5,16.5v3h3v-3H4.5zM9,21H3v-6h6V21zM16.5,4.5v3h3v-3H16.5zM21,9h-6V3h6V9zM19,19v-3l-4,0v2h2v3h4v-2H19zM17,12l-4,0v2h4V12zM13,10H7v2h2v2h2v-2h2V10zM14,9V7h-2V5h-2v4L14,9zM6.75,5.25h-1.5v1.5h1.5V5.25zM6.75,17.25h-1.5v1.5h1.5V17.25zM18.75,5.25h-1.5v1.5h1.5V5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/qr_code_scanner.xml b/compose/material/material/icons/generator/raw-icons/filled/qr_code_scanner.xml
deleted file mode 100644
index 597e8d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/qr_code_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,6.5v3h-3v-3H9.5M11,5H5v6h6V5L11,5zM9.5,14.5v3h-3v-3H9.5M11,13H5v6h6V13L11,13zM17.5,6.5v3h-3v-3H17.5M19,5h-6v6h6V5L19,5zM13,13h1.5v1.5H13V13zM14.5,14.5H16V16h-1.5V14.5zM16,13h1.5v1.5H16V13zM13,16h1.5v1.5H13V16zM14.5,17.5H16V19h-1.5V17.5zM16,16h1.5v1.5H16V16zM17.5,14.5H19V16h-1.5V14.5zM17.5,17.5H19V19h-1.5V17.5zM22,7h-2V4h-3V2h5V7zM22,22v-5h-2v3h-3v2H22zM2,22h5v-2H4v-3H2V22zM2,2v5h2V4h3V2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/query_builder.xml b/compose/material/material/icons/generator/raw-icons/filled/query_builder.xml
deleted file mode 100644
index 86533bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/query_builder.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7H11v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/query_stats.xml b/compose/material/material/icons/generator/raw-icons/filled/query_stats.xml
deleted file mode 100644
index 736d761..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/query_stats.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.88,18.47c0.44,-0.7 0.7,-1.51 0.7,-2.39c0,-2.49 -2.01,-4.5 -4.5,-4.5s-4.5,2.01 -4.5,4.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21.58,23L23,21.58L19.88,18.47zM16.08,18.58c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C18.58,17.46 17.46,18.58 16.08,18.58zM15.72,10.08c-0.74,0.02 -1.45,0.18 -2.1,0.45l-0.55,-0.83l-3.8,6.18l-3.01,-3.52l-3.63,5.81L1,17l5,-8l3,3.5L13,6C13,6 15.72,10.08 15.72,10.08zM18.31,10.58c-0.64,-0.28 -1.33,-0.45 -2.05,-0.49c0,0 5.12,-8.09 5.12,-8.09L23,3.18L18.31,10.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/question_answer.xml b/compose/material/material/icons/generator/raw-icons/filled/question_answer.xml
deleted file mode 100644
index 4bc2544..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/question_answer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-2v9L6,15v2c0,0.55 0.45,1 1,1h11l4,4L22,7c0,-0.55 -0.45,-1 -1,-1zM17,12L17,3c0,-0.55 -0.45,-1 -1,-1L3,2c-0.55,0 -1,0.45 -1,1v14l4,-4h10c0.55,0 1,-0.45 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/question_mark.xml b/compose/material/material/icons/generator/raw-icons/filled/question_mark.xml
deleted file mode 100644
index e8cfd61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/question_mark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,12.85c0.77,-1.39 2.25,-2.21 3.11,-3.44c0.91,-1.29 0.4,-3.7 -2.18,-3.7c-1.69,0 -2.52,1.28 -2.87,2.34L6.54,6.96C7.25,4.83 9.18,3 11.99,3c2.35,0 3.96,1.07 4.78,2.41c0.7,1.15 1.11,3.3 0.03,4.9c-1.2,1.77 -2.35,2.31 -2.97,3.45c-0.25,0.46 -0.35,0.76 -0.35,2.24h-2.89C10.58,15.22 10.46,13.95 11.07,12.85zM14,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2S14,18.9 14,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/queue.xml b/compose/material/material/icons/generator/raw-icons/filled/queue.xml
deleted file mode 100644
index bbc546c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM19,11h-4v4h-2v-4L9,11L9,9h4L13,5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/queue_music.xml b/compose/material/material/icons/generator/raw-icons/filled/queue_music.xml
deleted file mode 100644
index a237d65..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/queue_music.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6H3v2h12V6zM15,10H3v2h12V10zM3,16h8v-2H3V16zM17,6v8.18C16.69,14.07 16.35,14 16,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3V8h3V6H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/queue_play_next.xml b/compose/material/material/icons/generator/raw-icons/filled/queue_play_next.xml
deleted file mode 100644
index 5e561cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/queue_play_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.89,3 1,3.89 1,5v12c0,1.1 0.89,2 2,2h5v2h8v-2h2v-2H3V5h18v8h2V5C23,3.89 22.1,3 21,3zM13,10V7h-2v3H8v2h3v3h2v-3h3v-2H13zM24,18l-4.5,4.5L18,21l3,-3l-3,-3l1.5,-1.5L24,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/quickreply.xml b/compose/material/material/icons/generator/raw-icons/filled/quickreply.xml
deleted file mode 100644
index c40e1b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/quickreply.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9v-8h7V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16l-2.2,0l1.7,-4l-5,0l0,6l2,0l0,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/quiz.xml b/compose/material/material/icons/generator/raw-icons/filled/quiz.xml
deleted file mode 100644
index 3c4f253..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/quiz.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM14.01,15c-0.59,0 -1.05,-0.47 -1.05,-1.05c0,-0.59 0.47,-1.04 1.05,-1.04c0.59,0 1.04,0.45 1.04,1.04C15.04,14.53 14.6,15 14.01,15zM16.51,8.83c-0.63,0.93 -1.23,1.21 -1.56,1.81c-0.13,0.24 -0.18,0.4 -0.18,1.18h-1.52c0,-0.41 -0.06,-1.08 0.26,-1.65c0.41,-0.73 1.18,-1.16 1.63,-1.8c0.48,-0.68 0.21,-1.94 -1.14,-1.94c-0.88,0 -1.32,0.67 -1.5,1.23l-1.37,-0.57C11.51,5.96 12.52,5 13.99,5c1.23,0 2.08,0.56 2.51,1.26C16.87,6.87 17.08,7.99 16.51,8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/r_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/filled/r_mobiledata.xml
deleted file mode 100644
index 72e6709..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/r_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0 2,0.87 2,2v1.33C9,6.13 8.47,6.87 7.8,7.2zM7,4H4v1.33h3V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/radar.xml b/compose/material/material/icons/generator/raw-icons/filled/radar.xml
deleted file mode 100644
index b811ecf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/radar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.74,18.33C21.15,16.6 22,14.4 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10c2.4,0 4.6,-0.85 6.33,-2.26c0.27,-0.22 0.53,-0.46 0.78,-0.71c0.03,-0.03 0.05,-0.06 0.07,-0.08C19.38,18.75 19.57,18.54 19.74,18.33zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.43,-1.43c0.69,-0.98 1.1,-2.17 1.1,-3.46c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6s2.69,6 6,6c1.3,0 2.51,-0.42 3.49,-1.13l1.42,1.42C15.54,19.37 13.85,20 12,20zM13.92,12.51c0.17,-0.66 0.02,-1.38 -0.49,-1.9l-0.02,-0.02c-0.77,-0.77 -2,-0.78 -2.78,-0.04c-0.01,0.01 -0.03,0.02 -0.05,0.04c-0.78,0.78 -0.78,2.05 0,2.83l0.02,0.02c0.52,0.51 1.25,0.67 1.91,0.49l1.51,1.51c-0.6,0.36 -1.29,0.58 -2.04,0.58c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4c0,0.73 -0.21,1.41 -0.56,2L13.92,12.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/radio.xml b/compose/material/material/icons/generator/raw-icons/filled/radio.xml
deleted file mode 100644
index efab45e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/radio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.24,6.15C2.51,6.43 2,7.17 2,8v12c0,1.1 0.89,2 2,2h16c1.11,0 2,-0.9 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2L8.3,6l8.26,-3.34L15.88,1 3.24,6.15zM7,20c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM20,12h-2v-2h-2v2L4,12L4,8h16v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/radio_button_checked.xml b/compose/material/material/icons/generator/raw-icons/filled/radio_button_checked.xml
deleted file mode 100644
index dc38337..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/radio_button_checked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/radio_button_unchecked.xml b/compose/material/material/icons/generator/raw-icons/filled/radio_button_unchecked.xml
deleted file mode 100644
index bcb6fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/radio_button_unchecked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/railway_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/railway_alert.xml
deleted file mode 100644
index b38646e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/railway_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8a7,7 0,0 0,-11.95 -4.95A33.8,33.8 0,0 0,9 3c-4.42,0 -8,0.5 -8,4v10.5A3.5,3.5 0,0 0,4.5 21L3,22.5v0.5h12v-0.5L13.5,21a3.5,3.5 0,0 0,3.5 -3.5v-2.58A7,7 0,0 0,23 8zM3,12L3,7h6.08a6.96,6.96 0,0 0,1.18 5L3,12zM9,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM16.71,12.94l-0.2,0.03L16,13l-0.47,-0.02 -0.16,-0.02 -0.29,-0.04 -0.2,-0.04 -0.22,-0.06a1.55,1.55 0,0 1,-0.23 -0.07l-0.13,-0.05A4.99,4.99 0,0 1,11.1 7c0.04,-0.19 0.09,-0.37 0.15,-0.54l0.05,-0.14 0.15,-0.38 0.07,-0.15 0.2,-0.36 0.07,-0.12 0.3,-0.42 0.02,-0.02c0.24,-0.3 0.52,-0.57 0.82,-0.81l0.01,-0.01 0.46,-0.32 0.03,-0.02A5.25,5.25 0,0 1,16 3a5,5 0,0 1,0.71 9.94zM15,4h2v5h-2zM15,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ramen_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/ramen_dining.xml
deleted file mode 100644
index 84e0a2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ramen_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6H8V4.65l1,-0.12V6zM9,12H8V7h1V12zM6,7h1v5H6V7zM6,4.88l1,-0.12V6H6V4.88zM22,3V2L5,4v8H2c0,3.69 2.47,6.86 6,8.25V22h8v-1.75c3.53,-1.39 6,-4.56 6,-8.25H10V7h12V6H10V4.41L22,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ramp_left.xml b/compose/material/material/icons/generator/raw-icons/filled/ramp_left.xml
deleted file mode 100644
index a70ce96..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ramp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21h-2V6.83L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83V9c0,4.27 4.03,7.13 6,8.27l-1.46,1.46c-1.91,-1.16 -3.44,-2.53 -4.54,-4.02L13,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ramp_right.xml b/compose/material/material/icons/generator/raw-icons/filled/ramp_right.xml
deleted file mode 100644
index d5a12d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ramp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2V6.83l1.59,1.59L16,7l-4,-4L8,7l1.41,1.41L11,6.83V9c0,4.27 -4.03,7.13 -6,8.27l1.46,1.46C8.37,17.56 9.9,16.19 11,14.7L11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rate_review.xml b/compose/material/material/icons/generator/raw-icons/filled/rate_review.xml
deleted file mode 100644
index 499c4be..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rate_review.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM6,14v-2.47l6.88,-6.88c0.2,-0.2 0.51,-0.2 0.71,0l1.77,1.77c0.2,0.2 0.2,0.51 0,0.71L8.47,14L6,14zM18,14h-7.5l2,-2L18,12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/raw_off.xml b/compose/material/material/icons/generator/raw-icons/filled/raw_off.xml
deleted file mode 100644
index c6744b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/raw_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.15,14.32l0.59,-2.36l0.76,3.04l1.48,0l1.5,-6l-1.5,0l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l0.72,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38,-1.5h0.04l9.11,9.11l1.41,-1.41L2.81,2.81L1.39,4.22zM6.5,11.5h-2v-1h2V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/raw_on.xml b/compose/material/material/icons/generator/raw-icons/filled/raw_on.xml
deleted file mode 100644
index 5f73dbd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/raw_on.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-1C8,9.7 7.3,9 6.5,9zM6.5,11.5h-2v-1h2V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.25,9l-1.5,6h1.5l0.38,-1.5h1.75l0.37,1.5h1.5l-1.5,-6H10.25zM11,12l0.25,-1h0.5L12,12H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,9l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l1.5,6l1.48,0l0.76,-3.04l0.76,3.04l1.48,0l1.5,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/read_more.xml b/compose/material/material/icons/generator/raw-icons/filled/read_more.xml
deleted file mode 100644
index feaa455..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/read_more.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l-5,-5l0,4l-6,0l0,2l6,0l0,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/real_estate_agent.xml b/compose/material/material/icons/generator/raw-icons/filled/real_estate_agent.xml
deleted file mode 100644
index 68e6037..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/real_estate_agent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,22h4V11H1V22zM20,17h-7l-2.09,-0.73l0.33,-0.94L13,16h2.82c0.65,0 1.18,-0.53 1.18,-1.18l0,0c0,-0.49 -0.31,-0.93 -0.77,-1.11L8.97,11H7v9.02L14,22l8,-3l0,0C21.99,17.9 21.11,17 20,17zM14,1.5l-7,5V9h2l8.14,3.26C18.26,12.71 19,13.79 19,15h2V6.5L14,1.5zM13.5,10h-1V9h1V10zM13.5,8h-1V7h1V8zM15.5,10h-1V9h1V10zM15.5,8h-1V7h1V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/receipt.xml b/compose/material/material/icons/generator/raw-icons/filled/receipt.xml
deleted file mode 100644
index 457287e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/receipt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17L6,17v-2h12v2zM18,13L6,13v-2h12v2zM18,9L6,9L6,7h12v2zM3,22l1.5,-1.5L6,22l1.5,-1.5L9,22l1.5,-1.5L12,22l1.5,-1.5L15,22l1.5,-1.5L18,22l1.5,-1.5L21,22L21,2l-1.5,1.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2 7.5,3.5 6,2 4.5,3.5 3,2v20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/receipt_long.xml b/compose/material/material/icons/generator/raw-icons/filled/receipt_long.xml
deleted file mode 100644
index dc74c64..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/receipt_long.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3V2L19.5,3.5zM19,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3H8V5h11V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/recent_actors.xml b/compose/material/material/icons/generator/raw-icons/filled/recent_actors.xml
deleted file mode 100644
index b10310d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/recent_actors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5v14h2L23,5h-2zM17,19h2L19,5h-2v14zM14,5L2,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L15,6c0,-0.55 -0.45,-1 -1,-1zM8,7.75c1.24,0 2.25,1.01 2.25,2.25S9.24,12.25 8,12.25 5.75,11.24 5.75,10 6.76,7.75 8,7.75zM12.5,17h-9v-0.75c0,-1.5 3,-2.25 4.5,-2.25s4.5,0.75 4.5,2.25L12.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/recommend.xml b/compose/material/material/icons/generator/raw-icons/filled/recommend.xml
deleted file mode 100644
index 0f47615..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/recommend.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2a10,10 0,1 0,10 10A10,10 0,0 0,12 2zM18,11.8a0.9,0.9 0,0 1,-0.1 0.5l-2.1,4.9a1.34,1.34 0,0 1,-1.3 0.8L9,18a2,2 0,0 1,-2 -2v-5a1.28,1.28 0,0 1,0.4 -1L12,5l0.69,0.69a1.08,1.08 0,0 1,0.3 0.7v0.2L12.41,10L17,10a1,1 0,0 1,1 1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/record_voice_over.xml b/compose/material/material/icons/generator/raw-icons/filled/record_voice_over.xml
deleted file mode 100644
index 97c8c9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/record_voice_over.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM16.76,5.36l-1.68,1.69c0.84,1.18 0.84,2.71 0,3.89l1.68,1.69c2.02,-2.02 2.02,-5.07 0,-7.27zM20.07,2l-1.63,1.63c2.77,3.02 2.77,7.56 0,10.74L20.07,16c3.9,-3.89 3.91,-9.95 0,-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rectangle.xml b/compose/material/material/icons/generator/raw-icons/filled/rectangle.xml
deleted file mode 100644
index 9f72c78..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rectangle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4h20v16h-20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/recycling.xml b/compose/material/material/icons/generator/raw-icons/filled/recycling.xml
deleted file mode 100644
index bd30b8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/recycling.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.77,7.15L7.2,4.78l1.03,-1.71c0.39,-0.65 1.33,-0.65 1.72,0l1.48,2.46l-1.23,2.06L9.2,9.21L5.77,7.15zM21.72,12.97l-1.6,-2.66l-3.46,2L18.87,16H20c0.76,0 1.45,-0.43 1.79,-1.11C21.93,14.61 22,14.31 22,14C22,13.64 21.9,13.29 21.72,12.97zM16,21h1.5c0.76,0 1.45,-0.43 1.79,-1.11L20.74,17H16v-2l-4,4l4,4V21zM10,17H5.7l-0.84,1.41c-0.3,0.5 -0.32,1.12 -0.06,1.65l0,0C5.08,20.63 5.67,21 6.32,21H10V17zM6.12,14.35l1.73,1.04L6.48,9.9L1,11.27l1.7,1.02l-0.41,0.69c-0.35,0.59 -0.38,1.31 -0.07,1.92l1.63,3.26L6.12,14.35zM17.02,5.14l-1.3,-2.17C15.35,2.37 14.7,2 14,2h-3.53l3.12,5.2l-1.72,1.03l5.49,1.37l1.37,-5.49L17.02,5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/redeem.xml b/compose/material/material/icons/generator/raw-icons/filled/redeem.xml
deleted file mode 100644
index d5b3e1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/redeem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 11,8.76l1,-1.36 1,1.36L15.38,12 17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/redo.xml b/compose/material/material/icons/generator/raw-icons/filled/redo.xml
deleted file mode 100644
index 4e218168..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/redo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.4,10.6C16.55,8.99 14.15,8 11.5,8c-4.65,0 -8.58,3.03 -9.96,7.22L3.9,16c1.05,-3.19 4.05,-5.5 7.6,-5.5 1.95,0 3.73,0.72 5.12,1.88L13,16h9V7l-3.6,3.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/reduce_capacity.xml b/compose/material/material/icons/generator/raw-icons/filled/reduce_capacity.xml
deleted file mode 100644
index bd11991..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/reduce_capacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S16,5.1 16,4zM20.78,7.58C19.93,7.21 18.99,7 18,7c-0.67,0 -1.31,0.1 -1.92,0.28C16.66,7.83 17,8.6 17,9.43V10h5V9.43C22,8.62 21.52,7.9 20.78,7.58zM6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM7.92,7.28C7.31,7.1 6.67,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h5V9.43C7,8.6 7.34,7.83 7.92,7.28zM10,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,5.1 10,4zM16,10H8V9.43C8,8.62 8.48,7.9 9.22,7.58C10.07,7.21 11.01,7 12,7c0.99,0 1.93,0.21 2.78,0.58C15.52,7.9 16,8.62 16,9.43V10zM15,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S15,17.1 15,16zM21,22h-8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C15.07,19.21 16.01,19 17,19c0.99,0 1.93,0.21 2.78,0.58C20.52,19.9 21,20.62 21,21.43V22zM5,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S5,17.1 5,16zM11,22H3v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C5.07,19.21 6.01,19 7,19c0.99,0 1.93,0.21 2.78,0.58C10.52,19.9 11,20.62 11,21.43V22zM12.75,13v-2h-1.5v2H9l3,3l3,-3H12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/refresh.xml b/compose/material/material/icons/generator/raw-icons/filled/refresh.xml
deleted file mode 100644
index f2be45bab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/refresh.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remember_me.xml b/compose/material/material/icons/generator/raw-icons/filled/remember_me.xml
deleted file mode 100644
index 81cd2f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remember_me.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,15.21C15.5,14.44 13.8,14 12,14s-3.5,0.44 -5,1.21V6h10V15.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove.xml b/compose/material/material/icons/generator/raw-icons/filled/remove.xml
deleted file mode 100644
index 791a2f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5v-2h14v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_circle.xml
deleted file mode 100644
index 2c986ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13L7,13v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_circle_outline.xml
deleted file mode 100644
index 60b9c1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11v2h10v-2L7,11zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_done.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_done.xml
deleted file mode 100644
index 6471a7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.79,12l5.58,5.59L5.96,19 0.37,13.41 1.79,12zM2.24,4.22L12.9,14.89l-1.28,1.28L7.44,12l-1.41,1.41L11.62,19l2.69,-2.69 4.89,4.89 1.41,-1.41L3.65,2.81 2.24,4.22zM17.14,13.49L23.62,7 22.2,5.59l-6.48,6.48 1.42,1.42zM17.96,7l-1.41,-1.41 -3.65,3.66 1.41,1.41L17.96,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_from_queue.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_from_queue.xml
deleted file mode 100644
index 337b930..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_from_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.89,3 1,3.89 1,5v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5C23,3.89 22.1,3 21,3zM21,17H3V5h18V17zM16,10v2H8v-2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_moderator.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_moderator.xml
deleted file mode 100644
index a45b586..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_moderator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.27,21.73l-3.54,-3.55L5.78,5.23 2.27,1.72 1,2.99 3.01,5H3v6c0,5.55 3.84,10.74 9,12 2.16,-0.53 4.08,-1.76 5.6,-3.41L21,23l1.27,-1.27zM13,9.92l6.67,6.67C20.51,14.87 21,12.96 21,11V5l-9,-4 -5.48,2.44L11,7.92l2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_red_eye.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_red_eye.xml
deleted file mode 100644
index a3e222a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_red_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_road.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_road.xml
deleted file mode 100644
index 8923945..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.41l-1.41,-1.41l-2.09,2.09l-2.09,-2.09l-1.41,1.41l2.09,2.09l-2.09,2.09l1.41,1.41l2.09,-2.09l2.09,2.09l1.41,-1.41l-2.09,-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/remove_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/filled/remove_shopping_cart.xml
deleted file mode 100644
index 4c92e6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/remove_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.73,22.73L2.77,2.77 2,2l-0.73,-0.73L0,2.54l4.39,4.39 2.21,4.66 -1.35,2.45c-0.16,0.28 -0.25,0.61 -0.25,0.96 0,1.1 0.9,2 2,2h7.46l1.38,1.38c-0.5,0.36 -0.83,0.95 -0.83,1.62 0,1.1 0.89,2 1.99,2 0.67,0 1.26,-0.33 1.62,-0.84L21.46,24l1.27,-1.27zM7.42,15c-0.14,0 -0.25,-0.11 -0.25,-0.25l0.03,-0.12 0.9,-1.63h2.36l2,2L7.42,15zM15.55,13c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.08,-0.14 0.12,-0.31 0.12,-0.48 0,-0.55 -0.45,-1 -1,-1L6.54,4l9.01,9zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/reorder.xml b/compose/material/material/icons/generator/raw-icons/filled/reorder.xml
deleted file mode 100644
index 57af84b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/reorder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h18v-2L3,13v2zM3,19h18v-2L3,17v2zM3,11h18L21,9L3,9v2zM3,5v2h18L21,5L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/repartition.xml b/compose/material/material/icons/generator/raw-icons/filled/repartition.xml
deleted file mode 100644
index 69784ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/repartition.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-6H3V21zM10.33,19v-2h3.33v2H10.33zM19,19h-3.33v-2H19V19zM5,17h3.33v2H5V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10l1.42,-1.42L5.83,7H17c1.1,0 2,0.9 2,2s-0.9,2 -2,2H3v2h14c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4H5.83l1.59,-1.59L6,2L2,6L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/repeat.xml b/compose/material/material/icons/generator/raw-icons/filled/repeat.xml
deleted file mode 100644
index 5f598a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/repeat_on.xml b/compose/material/material/icons/generator/raw-icons/filled/repeat_on.xml
deleted file mode 100644
index 1deb9a48..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/repeat_on.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L3,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/repeat_one.xml b/compose/material/material/icons/generator/raw-icons/filled/repeat_one.xml
deleted file mode 100644
index 234c002..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/repeat_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4zM13,15L13,9h-1l-2,1v1h1.5v4L13,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/repeat_one_on.xml b/compose/material/material/icons/generator/raw-icons/filled/repeat_one_on.xml
deleted file mode 100644
index fce2f6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/repeat_one_on.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L3,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4zM13,15L13,9h-1l-2,1v1h1.5v4L13,15z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/replay.xml b/compose/material/material/icons/generator/raw-icons/filled/replay.xml
deleted file mode 100644
index 477731f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/replay.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V1L7,6l5,5V7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6H4c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/replay_10.xml b/compose/material/material/icons/generator/raw-icons/filled/replay_10.xml
deleted file mode 100644
index 881ff45..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/replay_10.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,5V1l-5,5l5,5V7c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6h-2c0,4.42 3.58,8 8,8s8,-3.58 8,-8S16.41,5 11.99,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77,-0.63h0.09V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.17,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57s-0.28,0.26 -0.45,0.33s-0.37,0.1 -0.59,0.1s-0.41,-0.03 -0.59,-0.1s-0.33,-0.18 -0.46,-0.33s-0.23,-0.34 -0.3,-0.57s-0.11,-0.5 -0.11,-0.82V13.5c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57s0.28,-0.26 0.45,-0.33s0.37,-0.1 0.59,-0.1s0.41,0.03 0.59,0.1c0.18,0.07 0.33,0.18 0.46,0.33s0.23,0.34 0.3,0.57s0.11,0.5 0.11,0.82V14.24zM14.32,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31s-0.11,-0.14 -0.19,-0.17s-0.16,-0.05 -0.25,-0.05s-0.18,0.02 -0.25,0.05s-0.14,0.09 -0.19,0.17s-0.09,0.18 -0.12,0.31s-0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32s0.11,0.14 0.19,0.17s0.16,0.05 0.25,0.05s0.18,-0.02 0.25,-0.05s0.14,-0.09 0.19,-0.17s0.09,-0.19 0.11,-0.32s0.04,-0.29 0.04,-0.48V13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/replay_30.xml b/compose/material/material/icons/generator/raw-icons/filled/replay_30.xml
deleted file mode 100644
index 6554f2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/replay_30.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V1L7,6l5,5V7c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6H4c0,4.42 3.58,8 8,8s8,-3.58 8,-8S16.42,5 12,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.56,13.49h0.45c0.21,0 0.37,-0.05 0.48,-0.16s0.16,-0.25 0.16,-0.43c0,-0.08 -0.01,-0.15 -0.04,-0.22s-0.06,-0.12 -0.11,-0.17s-0.11,-0.09 -0.18,-0.11s-0.16,-0.04 -0.25,-0.04c-0.08,0 -0.15,0.01 -0.22,0.03s-0.13,0.05 -0.18,0.1s-0.09,0.09 -0.12,0.15s-0.05,0.13 -0.05,0.2H8.65c0,-0.18 0.04,-0.34 0.11,-0.48s0.17,-0.27 0.3,-0.37s0.27,-0.18 0.44,-0.23s0.35,-0.08 0.54,-0.08c0.21,0 0.41,0.03 0.59,0.08s0.33,0.13 0.46,0.23s0.23,0.23 0.3,0.38s0.11,0.33 0.11,0.53c0,0.09 -0.01,0.18 -0.04,0.27s-0.07,0.17 -0.13,0.25s-0.12,0.15 -0.2,0.22s-0.17,0.12 -0.28,0.17c0.24,0.09 0.42,0.21 0.54,0.39s0.18,0.38 0.18,0.61c0,0.2 -0.04,0.38 -0.12,0.53s-0.18,0.29 -0.32,0.39s-0.29,0.19 -0.48,0.24s-0.38,0.08 -0.6,0.08c-0.18,0 -0.36,-0.02 -0.53,-0.07s-0.33,-0.12 -0.46,-0.23s-0.25,-0.23 -0.33,-0.38s-0.12,-0.34 -0.12,-0.55h0.85c0,0.08 0.02,0.15 0.05,0.22s0.07,0.12 0.13,0.17s0.12,0.09 0.2,0.11s0.16,0.04 0.25,0.04c0.1,0 0.19,-0.01 0.27,-0.04s0.15,-0.07 0.2,-0.12s0.1,-0.11 0.13,-0.18s0.04,-0.15 0.04,-0.24c0,-0.11 -0.02,-0.21 -0.05,-0.29s-0.08,-0.15 -0.14,-0.2s-0.13,-0.09 -0.22,-0.11s-0.18,-0.04 -0.29,-0.04H9.56V13.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.3,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57s-0.28,0.26 -0.45,0.33s-0.37,0.1 -0.59,0.1s-0.41,-0.03 -0.59,-0.1s-0.33,-0.18 -0.46,-0.33s-0.23,-0.34 -0.3,-0.57s-0.11,-0.5 -0.11,-0.82V13.5c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57s0.28,-0.26 0.45,-0.33s0.37,-0.1 0.59,-0.1s0.41,0.03 0.59,0.1s0.33,0.18 0.46,0.33s0.23,0.34 0.3,0.57s0.11,0.5 0.11,0.82V14.24zM14.45,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48c-0.03,-0.13 -0.07,-0.23 -0.12,-0.31s-0.11,-0.14 -0.19,-0.17s-0.16,-0.05 -0.25,-0.05s-0.18,0.02 -0.25,0.05s-0.14,0.09 -0.19,0.17s-0.09,0.18 -0.12,0.31s-0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32s0.11,0.14 0.19,0.17s0.16,0.05 0.25,0.05s0.18,-0.02 0.25,-0.05s0.14,-0.09 0.19,-0.17s0.09,-0.19 0.11,-0.32c0.03,-0.13 0.04,-0.29 0.04,-0.48V13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/replay_5.xml b/compose/material/material/icons/generator/raw-icons/filled/replay_5.xml
deleted file mode 100644
index b731211..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/replay_5.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V1L7,6l5,5V7c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6H4c0,4.42 3.58,8 8,8s8,-3.58 8,-8S16.42,5 12,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.69,13.9l0.25,-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03,-0.02 0.07,-0.03 0.11,-0.05s0.09,-0.04 0.15,-0.05s0.12,-0.03 0.18,-0.04s0.13,-0.02 0.2,-0.02c0.21,0 0.39,0.03 0.55,0.1s0.3,0.16 0.41,0.28s0.2,0.27 0.25,0.45s0.09,0.38 0.09,0.6c0,0.19 -0.03,0.37 -0.09,0.54s-0.15,0.32 -0.27,0.45s-0.27,0.24 -0.45,0.31s-0.39,0.12 -0.64,0.12c-0.18,0 -0.36,-0.03 -0.53,-0.08s-0.32,-0.14 -0.46,-0.24s-0.24,-0.24 -0.32,-0.39s-0.13,-0.33 -0.13,-0.53h0.84c0.02,0.18 0.08,0.32 0.19,0.41s0.25,0.15 0.42,0.15c0.11,0 0.2,-0.02 0.27,-0.06s0.14,-0.1 0.18,-0.17s0.08,-0.15 0.11,-0.25s0.03,-0.2 0.03,-0.31s-0.01,-0.21 -0.04,-0.31s-0.07,-0.17 -0.13,-0.24s-0.13,-0.12 -0.21,-0.15s-0.19,-0.05 -0.3,-0.05c-0.08,0 -0.15,0.01 -0.2,0.02s-0.11,0.03 -0.15,0.05s-0.08,0.05 -0.12,0.07s-0.07,0.06 -0.1,0.09L10.69,13.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/replay_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/filled/replay_circle_filled.xml
deleted file mode 100644
index eb16115..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/replay_circle_filled.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM18,12c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6h2c0,2.21 1.79,4 4,4s4,-1.79 4,-4 -1.79,-4 -4,-4v3L8,7l4,-4v3c3.31,0 6,2.69 6,6z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/reply.xml b/compose/material/material/icons/generator/raw-icons/filled/reply.xml
deleted file mode 100644
index 4c0db01..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/reply.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9V5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/reply_all.xml b/compose/material/material/icons/generator/raw-icons/filled/reply_all.xml
deleted file mode 100644
index 6655ebe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/reply_all.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8L7,5l-7,7 7,7v-3l-4,-4 4,-4zM13,9L13,5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/report.xml b/compose/material/material/icons/generator/raw-icons/filled/report.xml
deleted file mode 100644
index 811e67b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/report.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3L8.27,3L3,8.27v7.46L8.27,21h7.46L21,15.73L21,8.27L15.73,3zM12,17.3c-0.72,0 -1.3,-0.58 -1.3,-1.3 0,-0.72 0.58,-1.3 1.3,-1.3 0.72,0 1.3,0.58 1.3,1.3 0,0.72 -0.58,1.3 -1.3,1.3zM13,13h-2L11,7h2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/report_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/filled/report_gmailerrorred.xml
deleted file mode 100644
index 49531b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/report_gmailerrorred.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/report_off.xml b/compose/material/material/icons/generator/raw-icons/filled/report_off.xml
deleted file mode 100644
index 5d9e913..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/report_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2.92l6.91,6.91 1.09,-1.1L21,8.27L15.73,3L8.27,3L7.18,4.1 11,7.92zM22.27,21.73l-20,-20.01L1,2.99l3.64,3.64L3,8.27v7.46L8.27,21h7.46l1.64,-1.63L21,23l1.27,-1.27zM12,17.3c-0.72,0 -1.3,-0.58 -1.3,-1.3s0.58,-1.3 1.3,-1.3 1.3,0.58 1.3,1.3 -0.58,1.3 -1.3,1.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/report_problem.xml b/compose/material/material/icons/generator/raw-icons/filled/report_problem.xml
deleted file mode 100644
index a02bc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/report_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/request_page.xml b/compose/material/material/icons/generator/raw-icons/filled/request_page.xml
deleted file mode 100644
index 67b9090..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/request_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM15,11h-4v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h1V8h2v1h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/request_quote.xml b/compose/material/material/icons/generator/raw-icons/filled/request_quote.xml
deleted file mode 100644
index 14fa046..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/request_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM15,12h-4v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h1V9h2v1h2V12zM13,8V3.5L17.5,8H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/reset_tv.xml b/compose/material/material/icons/generator/raw-icons/filled/reset_tv.xml
deleted file mode 100644
index c8189b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/reset_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10h-8.01V7L9,11l3.99,4v-3H21v5H3V5h18v3h2V5c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2v-5H23c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/restart_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/restart_alt.xml
deleted file mode 100644
index 2f9f24c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/restart_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V2L8,6l4,4V7c3.31,0 6,2.69 6,6c0,2.97 -2.17,5.43 -5,5.91v2.02c3.95,-0.49 7,-3.85 7,-7.93C20,8.58 16.42,5 12,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c0,-1.65 0.67,-3.15 1.76,-4.24L6.34,7.34C4.9,8.79 4,10.79 4,13c0,4.08 3.05,7.44 7,7.93v-2.02C8.17,18.43 6,15.97 6,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/restaurant.xml b/compose/material/material/icons/generator/raw-icons/filled/restaurant.xml
deleted file mode 100644
index 1894fad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9L9,9L9,2L7,2v7L5,9L5,2L3,2v7c0,2.12 1.66,3.84 3.75,3.97L6.75,22h2.5v-9.03C11.34,12.84 13,11.12 13,9L13,2h-2v7zM16,6v8h2.5v8L21,22L21,2c-2.76,0 -5,2.24 -5,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/restaurant_menu.xml b/compose/material/material/icons/generator/raw-icons/filled/restaurant_menu.xml
deleted file mode 100644
index 4797566..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/restaurant_menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/restore.xml b/compose/material/material/icons/generator/raw-icons/filled/restore.xml
deleted file mode 100644
index 9bc1fc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.28,2.54 0.72,-1.21 -3.5,-2.08L13.5,8L12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/restore_from_trash.xml b/compose/material/material/icons/generator/raw-icons/filled/restore_from_trash.xml
deleted file mode 100644
index c83d969..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/restore_from_trash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-3.5l-1,-1h-5l-1,1L5,4v2h14zM6,7v12c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7zM14,14v4h-4v-4L8,14l4,-4 4,4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/restore_page.xml b/compose/material/material/icons/generator/raw-icons/filled/restore_page.xml
deleted file mode 100644
index f0495ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/restore_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM12,18c-2.05,0 -3.81,-1.24 -4.58,-3h1.71c0.63,0.9 1.68,1.5 2.87,1.5 1.93,0 3.5,-1.57 3.5,-3.5S13.93,9.5 12,9.5c-1.35,0 -2.52,0.78 -3.1,1.9l1.6,1.6h-4L6.5,9l1.3,1.3C8.69,8.92 10.23,8 12,8c2.76,0 5,2.24 5,5s-2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/reviews.xml b/compose/material/material/icons/generator/raw-icons/filled/reviews.xml
deleted file mode 100644
index 0165a39..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/reviews.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM13.57,11.57L12,15l-1.57,-3.43L7,10l3.43,-1.57L12,5l1.57,3.43L17,10L13.57,11.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rice_bowl.xml b/compose/material/material/icons/generator/raw-icons/filled/rice_bowl.xml
deleted file mode 100644
index e41bff6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rice_bowl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12L22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,3.69 2.47,6.86 6,8.25V22h8v-1.75C19.53,18.86 22,15.69 22,12zM20,12h-4V5.08C18.39,6.47 20,9.05 20,12zM14,4.26V12h-4V4.26C10.64,4.1 11.31,4 12,4S13.36,4.1 14,4.26zM4,12c0,-2.95 1.61,-5.53 4,-6.92V12H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ring_volume.xml b/compose/material/material/icons/generator/raw-icons/filled/ring_volume.xml
deleted file mode 100644
index ec928dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ring_volume.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.71,16.67C20.66,13.78 16.54,12 12,12 7.46,12 3.34,13.78 0.29,16.67c-0.18,0.18 -0.29,0.43 -0.29,0.71 0,0.28 0.11,0.53 0.29,0.71l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.11 0.7,-0.28 0.79,-0.74 1.69,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.5 0.56,-0.9v-3.1c1.45,-0.48 3,-0.73 4.6,-0.73s3.15,0.25 4.6,0.72v3.1c0,0.39 0.23,0.74 0.56,0.9 0.98,0.49 1.87,1.12 2.66,1.85 0.18,0.18 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71 0,-0.27 -0.11,-0.52 -0.29,-0.7zM21.16,6.26l-1.41,-1.41 -3.56,3.55 1.41,1.41s3.45,-3.52 3.56,-3.55zM13,2h-2v5h2V2zM6.4,9.81L7.81,8.4 4.26,4.84 2.84,6.26c0.11,0.03 3.56,3.55 3.56,3.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rocket.xml b/compose/material/material/icons/generator/raw-icons/filled/rocket.xml
deleted file mode 100644
index 0763a5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rocket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2.5c0,0 4.5,2.04 4.5,10.5c0,2.49 -1.04,5.57 -1.6,7H9.1c-0.56,-1.43 -1.6,-4.51 -1.6,-7C7.5,4.54 12,2.5 12,2.5zM14,11c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2S14,12.1 14,11zM7.69,20.52c-0.48,-1.23 -1.52,-4.17 -1.67,-6.87l-1.13,0.75C4.33,14.78 4,15.4 4,16.07V22L7.69,20.52zM20,22v-5.93c0,-0.67 -0.33,-1.29 -0.89,-1.66l-1.13,-0.75c-0.15,2.69 -1.2,5.64 -1.67,6.87L20,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rocket_launch.xml b/compose/material/material/icons/generator/raw-icons/filled/rocket_launch.xml
deleted file mode 100644
index c65793b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rocket_launch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.19,6.35c-2.04,2.29 -3.44,5.58 -3.57,5.89L2,10.69l4.05,-4.05c0.47,-0.47 1.15,-0.68 1.81,-0.55L9.19,6.35L9.19,6.35zM11.17,17c0,0 3.74,-1.55 5.89,-3.7c5.4,-5.4 4.5,-9.62 4.21,-10.57c-0.95,-0.3 -5.17,-1.19 -10.57,4.21C8.55,9.09 7,12.83 7,12.83L11.17,17zM17.65,14.81c-2.29,2.04 -5.58,3.44 -5.89,3.57L13.31,22l4.05,-4.05c0.47,-0.47 0.68,-1.15 0.55,-1.81L17.65,14.81L17.65,14.81zM9,18c0,0.83 -0.34,1.58 -0.88,2.12C6.94,21.3 2,22 2,22s0.7,-4.94 1.88,-6.12C4.42,15.34 5.17,15 6,15C7.66,15 9,16.34 9,18zM13,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S13,10.1 13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/roller_shades.xml b/compose/material/material/icons/generator/raw-icons/filled/roller_shades.xml
deleted file mode 100644
index d39d7c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/roller_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM6,19v-6h5v1.8c-0.4,0.3 -0.8,0.8 -0.8,1.4c0,1 0.8,1.8 1.8,1.8s1.8,-0.8 1.8,-1.8c0,-0.6 -0.3,-1.1 -0.8,-1.4V13h5v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/roller_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/filled/roller_shades_closed.xml
deleted file mode 100644
index b3979e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/roller_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h8.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM6,19v-2h5v2H6zM13,19v-2h5v2H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/roller_skating.xml b/compose/material/material/icons/generator/raw-icons/filled/roller_skating.xml
deleted file mode 100644
index dafa128..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/roller_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.5C9,6.22 9.22,6 9.5,6h2.52L12,5H9.5C9.22,5 9,4.78 9,4.5C9,4.22 9.22,4 9.5,4H12V1H4v15h3h13l0,-2.88c0,-2.1 -1.55,-3.53 -3.03,-3.88l-2.7,-0.67C13.4,8.35 12.7,7.76 12.32,7H9.5C9.22,7 9,6.78 9,6.5zM5,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S6.66,23 5,23zM19,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S20.66,23 19,23zM12,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,23 12,23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/roofing.xml b/compose/material/material/icons/generator/raw-icons/filled/roofing.xml
deleted file mode 100644
index 5d5f2b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/roofing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18h-2v-2h2V18zM15,14H9v6h6V14L15,14zM19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7,-6.31L19,12h3L19,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/room.xml b/compose/material/material/icons/generator/raw-icons/filled/room.xml
deleted file mode 100644
index e6dfeb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/room_preferences.xml b/compose/material/material/icons/generator/raw-icons/filled/room_preferences.xml
deleted file mode 100644
index 306a32c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/room_preferences.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87 11,18.49 11,17C11,14.62 12.19,12.53 14,11.26zM10,11h2v2h-2V11zM21.69,16.37l1.14,-1l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L19,12h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.08,0.5 -0.08,0.76 0,1.26l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L17,22h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1C21.77,17.13 21.77,16.87 21.69,16.37zM18,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S19.1,19 18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/room_service.xml b/compose/material/material/icons/generator/raw-icons/filled/room_service.xml
deleted file mode 100644
index 08b0a0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/room_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h20v2L2,19zM13.84,7.79c0.1,-0.24 0.16,-0.51 0.16,-0.79 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2c0,0.28 0.06,0.55 0.16,0.79C6.25,8.6 3.27,11.93 3,16h18c-0.27,-4.07 -3.25,-7.4 -7.16,-8.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rotate_90_degrees_ccw.xml b/compose/material/material/icons/generator/raw-icons/filled/rotate_90_degrees_ccw.xml
deleted file mode 100644
index 417aa80..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rotate_90_degrees_ccw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.34,6.41L0.86,12.9l6.49,6.48 6.49,-6.48 -6.5,-6.49zM3.69,12.9l3.66,-3.66L11,12.9l-3.66,3.66 -3.65,-3.66zM19.36,6.64C17.61,4.88 15.3,4 13,4L13,0.76L8.76,5 13,9.24L13,6c1.79,0 3.58,0.68 4.95,2.05 2.73,2.73 2.73,7.17 0,9.9C16.58,19.32 14.79,20 13,20c-0.97,0 -1.94,-0.21 -2.84,-0.61l-1.49,1.49C10.02,21.62 11.51,22 13,22c2.3,0 4.61,-0.88 6.36,-2.64 3.52,-3.51 3.52,-9.21 0,-12.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rotate_90_degrees_cw.xml b/compose/material/material/icons/generator/raw-icons/filled/rotate_90_degrees_cw.xml
deleted file mode 100644
index 45073a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rotate_90_degrees_cw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.64,19.37c3.03,3.03 7.67,3.44 11.15,1.25l-1.46,-1.46c-2.66,1.43 -6.04,1.03 -8.28,-1.21c-2.73,-2.73 -2.73,-7.17 0,-9.9C7.42,6.69 9.21,6.03 11,6.03V9l4,-4l-4,-4v3.01c-2.3,0 -4.61,0.87 -6.36,2.63C1.12,10.15 1.12,15.85 4.64,19.37zM11,13l6,6l6,-6l-6,-6L11,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rotate_left.xml b/compose/material/material/icons/generator/raw-icons/filled/rotate_left.xml
deleted file mode 100644
index f57e17d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rotate_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11h2.02c0.14,-0.87 0.49,-1.72 1.02,-2.47zM6.09,13L4.07,13c0.17,1.39 0.72,2.73 1.62,3.89l1.41,-1.42c-0.52,-0.75 -0.87,-1.59 -1.01,-2.47zM7.1,18.32c1.16,0.9 2.51,1.44 3.9,1.61L11,17.9c-0.87,-0.15 -1.71,-0.49 -2.46,-1.03L7.1,18.32zM13,4.07L13,1L8.45,5.55 13,10L13,6.09c2.84,0.48 5,2.94 5,5.91s-2.16,5.43 -5,5.91v2.02c3.95,-0.49 7,-3.85 7,-7.93s-3.05,-7.44 -7,-7.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rotate_right.xml b/compose/material/material/icons/generator/raw-icons/filled/rotate_right.xml
deleted file mode 100644
index 3dc2f9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rotate_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.55,5.55L11,1v3.07C7.06,4.56 4,7.92 4,12s3.05,7.44 7,7.93v-2.02c-2.84,-0.48 -5,-2.94 -5,-5.91s2.16,-5.43 5,-5.91L11,10l4.55,-4.45zM19.93,11c-0.17,-1.39 -0.72,-2.73 -1.62,-3.89l-1.42,1.42c0.54,0.75 0.88,1.6 1.02,2.47h2.02zM13,17.9v2.02c1.39,-0.17 2.74,-0.71 3.9,-1.61l-1.44,-1.44c-0.75,0.54 -1.59,0.89 -2.46,1.03zM16.89,15.48l1.42,1.41c0.9,-1.16 1.45,-2.5 1.62,-3.89h-2.02c-0.14,0.87 -0.48,1.72 -1.02,2.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/roundabout_left.xml b/compose/material/material/icons/generator/raw-icons/filled/roundabout_left.xml
deleted file mode 100644
index 09cb912..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/roundabout_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.08,8c0.48,-2.84 2.94,-5 5.92,-5c3.31,0 6,2.69 6,6c0,2.97 -2.16,5.44 -5,5.92L17,21h-2l0,-6.09c0,-0.98 0.71,-1.8 1.67,-1.97C18.56,12.63 20,10.98 20,9c0,-2.21 -1.79,-4 -4,-4c-1.98,0 -3.63,1.44 -3.94,3.33C11.89,9.29 11.07,10 10.09,10l-4.26,0l1.59,1.59L6,13L2,9l4,-4l1.41,1.41L5.83,8L10.08,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/roundabout_right.xml b/compose/material/material/icons/generator/raw-icons/filled/roundabout_right.xml
deleted file mode 100644
index 3d1f1a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/roundabout_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,8C13.44,5.16 10.97,3 8,3C4.69,3 2,5.69 2,9c0,2.97 2.16,5.44 5,5.92L7,21h2l0,-6.09c0,-0.98 -0.71,-1.8 -1.67,-1.97C5.44,12.63 4,10.98 4,9c0,-2.21 1.79,-4 4,-4c1.98,0 3.63,1.44 3.94,3.33C12.11,9.29 12.93,10 13.91,10l4.26,0l-1.59,1.59L18,13l4,-4l-4,-4l-1.41,1.41L18.17,8L13.92,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rounded_corner.xml b/compose/material/material/icons/generator/raw-icons/filled/rounded_corner.xml
deleted file mode 100644
index a29f14a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rounded_corner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2V19zM19,17h2v-2h-2V17zM3,13h2v-2H3V13zM3,17h2v-2H3V17zM3,9h2V7H3V9zM3,5h2V3H3V5zM7,5h2V3H7V5zM15,21h2v-2h-2V21zM11,21h2v-2h-2V21zM15,21h2v-2h-2V21zM7,21h2v-2H7V21zM3,21h2v-2H3V21zM21,8c0,-2.76 -2.24,-5 -5,-5h-5v2h5c1.65,0 3,1.35 3,3v5h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/route.xml b/compose/material/material/icons/generator/raw-icons/filled/route.xml
deleted file mode 100644
index 58cd9d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/route.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15.18V7c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v10c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8.82C8.16,8.4 9,7.3 9,6c0,-1.66 -1.34,-3 -3,-3S3,4.34 3,6c0,1.3 0.84,2.4 2,2.82V17c0,2.21 1.79,4 4,4s4,-1.79 4,-4V7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v8.18c-1.16,0.41 -2,1.51 -2,2.82c0,1.66 1.34,3 3,3s3,-1.34 3,-3C21,16.7 20.16,15.6 19,15.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/router.xml b/compose/material/material/icons/generator/raw-icons/filled/router.xml
deleted file mode 100644
index de7161b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/router.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.2,5.9l0.8,-0.8C19.6,3.7 17.8,3 16,3s-3.6,0.7 -5,2.1l0.8,0.8C13,4.8 14.5,4.2 16,4.2s3,0.6 4.2,1.7zM19.3,6.7c-0.9,-0.9 -2.1,-1.4 -3.3,-1.4s-2.4,0.5 -3.3,1.4l0.8,0.8c0.7,-0.7 1.6,-1 2.5,-1 0.9,0 1.8,0.3 2.5,1l0.8,-0.8zM19,13h-2L17,9h-2v4L5,13c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2zM8,18L6,18v-2h2v2zM11.5,18h-2v-2h2v2zM15,18h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rowing.xml b/compose/material/material/icons/generator/raw-icons/filled/rowing.xml
deleted file mode 100644
index be361a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rowing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5L4,19l1.5,1.5L9,17h2L8.5,14.5zM15,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S16.1,1 15,1zM21,21.01L18,24l-2.99,-3.01V19.5l-7.1,-7.09C7.6,12.46 7.3,12.48 7,12.48v-2.16c1.66,0.03 3.61,-0.87 4.67,-2.04l1.4,-1.55C13.42,6.34 14.06,6 14.72,6h0.03C15.99,6.01 17,7.02 17,8.26v5.75c0,0.84 -0.35,1.61 -0.92,2.16l-3.58,-3.58v-2.27c-0.63,0.52 -1.43,1.02 -2.29,1.39L16.5,18H18L21,21.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rss_feed.xml b/compose/material/material/icons/generator/raw-icons/filled/rss_feed.xml
deleted file mode 100644
index 198fdc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rss_feed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.18,17.82m-2.18,0a2.18,2.18 0,1 1,4.36 0a2.18,2.18 0,1 1,-4.36 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4.44v2.83c7.03,0 12.73,5.7 12.73,12.73h2.83c0,-8.59 -6.97,-15.56 -15.56,-15.56zM4,10.1v2.83c3.9,0 7.07,3.17 7.07,7.07h2.83c0,-5.47 -4.43,-9.9 -9.9,-9.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rsvp.xml b/compose/material/material/icons/generator/raw-icons/filled/rsvp.xml
deleted file mode 100644
index e01c7bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rsvp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9zM5.1,12.9L6,15H4.5l-0.85,-2H2.5v2H1V9h3.5C5.35,9 6,9.65 6,10.5v1C6,12.1 5.6,12.65 5.1,12.9zM4.5,10.5h-2v1h2V10.5zM21.5,13h-2v2H18V9h3.5c0.83,0 1.5,0.67 1.5,1.5v1C23,12.33 22.33,13 21.5,13zM21.5,10.5h-2v1h2V10.5zM11.5,9v1.5h-3v0.75h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7v-1.5h3v-0.75H7.75C7.34,12.75 7,12.41 7,12v-2c0,-0.55 0.45,-1 1,-1H11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rtt.xml b/compose/material/material/icons/generator/raw-icons/filled/rtt.xml
deleted file mode 100644
index a989702..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rtt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.03,3l-1.11,7.07h2.62l0.7,-4.5h2.58L11.8,18.43L9.47,18.43L9.06,21h7.27l0.4,-2.57h-2.35l2,-12.86h2.58l-0.71,4.5h2.65L22,3L9.03,3zM8,5L4,5l-0.31,2h4L8,5zM7.39,9h-4l-0.31,2h4l0.31,-2zM8.31,17h-6L2,19h6l0.31,-2zM8.93,13h-6l-0.31,2h6.01l0.3,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rule.xml b/compose/material/material/icons/generator/raw-icons/filled/rule.xml
deleted file mode 100644
index 11eb72d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.54,11L13,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,11zM11,7H2v2h9V7zM21,13.41L19.59,12L17,14.59L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41zM11,15H2v2h9V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rule_folder.xml b/compose/material/material/icons/generator/raw-icons/filled/rule_folder.xml
deleted file mode 100644
index 1175e32..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rule_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM7.83,16L5,13.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L7.83,16zM17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/run_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/run_circle.xml
deleted file mode 100644
index 3723d6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/run_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.5,6c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C12.5,6.45 12.95,6 13.5,6zM16,12c-0.7,0 -2.01,-0.54 -2.91,-1.76l-0.41,2.35L14,14.03V18h-1v-3.58l-1.11,-1.21l-0.52,2.64L7.6,15.08l0.2,-0.98l2.78,0.57l0.96,-4.89L10,10.35V12H9V9.65l3.28,-1.21c0.49,-0.18 1.03,0.06 1.26,0.53C14.37,10.67 15.59,11 16,11V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/running_with_errors.xml b/compose/material/material/icons/generator/raw-icons/filled/running_with_errors.xml
deleted file mode 100644
index b3eba04..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/running_with_errors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10v8h-2v-8H22zM20,20v2h2v-2H20zM18,17.29C16.53,18.95 14.39,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8v9l7.55,-7.55C17.72,3.34 15.02,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c2.25,0 4.33,-0.74 6,-2V17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/rv_hookup.xml b/compose/material/material/icons/generator/raw-icons/filled/rv_hookup.xml
deleted file mode 100644
index 81216c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/rv_hookup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17v-6c0,-1.1 -0.9,-2 -2,-2L7,9L7,7l-3,3 3,3v-2h4v3L4,14v3c0,1.1 0.9,2 2,2h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h8v-2h-2zM11,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,14h-4v-3h4v3zM17,2v2L9,4v2h8v2l3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/safety_check.xml b/compose/material/material/icons/generator/raw-icons/filled/safety_check.xml
deleted file mode 100644
index 4f0fa86..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/safety_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S14.76,17 12,17zM13.65,14.35l-2.15,-2.15V9h1v2.79l1.85,1.85L13.65,14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/safety_divider.xml b/compose/material/material/icons/generator/raw-icons/filled/safety_divider.xml
deleted file mode 100644
index 4cdfc8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/safety_divider.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5h2v14h-2V5zM5,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C3,11.1 3.9,12 5,12zM7.78,13.58C6.93,13.21 5.99,13 5,13s-1.93,0.21 -2.78,0.58C1.48,13.9 1,14.62 1,15.43L1,16h8l0,-0.57C9,14.62 8.52,13.9 7.78,13.58zM19,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C17,11.1 17.9,12 19,12zM21.78,13.58C20.93,13.21 19.99,13 19,13s-1.93,0.21 -2.78,0.58C15.48,13.9 15,14.62 15,15.43L15,16h8l0,-0.57C23,14.62 22.52,13.9 21.78,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sailing.xml b/compose/material/material/icons/generator/raw-icons/filled/sailing.xml
deleted file mode 100644
index 0873e561..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sailing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13.5V2L3,13.5H11zM21,13.5C21,6.5 14.5,1 12.5,1c0,0 1,3 1,6.5s-1,6 -1,6H21zM22,15H2c0.31,1.53 1.16,2.84 2.33,3.73C4.98,18.46 5.55,18.01 6,17.5C6.73,18.34 7.8,19 9,19s2.27,-0.66 3,-1.5c0.73,0.84 1.8,1.5 3,1.5s2.26,-0.66 3,-1.5c0.45,0.51 1.02,0.96 1.67,1.23C20.84,17.84 21.69,16.53 22,15zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sanitizer.xml b/compose/material/material/icons/generator/raw-icons/filled/sanitizer.xml
deleted file mode 100644
index 72c4712..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sanitizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,6.5C15.5,5.66 17,4 17,4s1.5,1.66 1.5,2.5C18.5,7.33 17.83,8 17,8S15.5,7.33 15.5,6.5zM19.5,15c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.67 -2.5,-4.5 -2.5,-4.5S17,10.83 17,12.5C17,13.88 18.12,15 19.5,15zM13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14zM16,12v10H4V12c0,-2.97 2.16,-5.43 5,-5.91V4H7V2h6c1.13,0 2.15,0.39 2.99,1.01l-1.43,1.43C14.1,4.17 13.57,4 13,4h-2v2.09C13.84,6.57 16,9.03 16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/satellite.xml b/compose/material/material/icons/generator/raw-icons/filled/satellite.xml
deleted file mode 100644
index 7278ce7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/satellite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM5,4.99h3C8,6.65 6.66,8 5,8L5,4.99zM5,12v-2c2.76,0 5,-2.25 5,-5.01h2C12,8.86 8.87,12 5,12zM5,18l3.5,-4.5 2.5,3.01L14.5,12l4.5,6L5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/satellite_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/satellite_alt.xml
deleted file mode 100644
index 6c0db85..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/satellite_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.44,0.59l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l1.24,1.24l-0.71,0.71L11.55,7.3c-0.78,-0.78 -2.05,-0.78 -2.83,0L7.3,8.72c-0.78,0.78 -0.78,2.05 0,2.83l1.24,1.24l-0.71,0.71L6.6,12.25c-0.78,-0.78 -2.05,-0.78 -2.83,0l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l3.54,3.54c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18c0.78,-0.78 0.78,-2.05 0,-2.83l-1.24,-1.24l0.71,-0.71l1.24,1.24c0.78,0.78 2.05,0.78 2.83,0l1.41,-1.41c0.78,-0.78 0.78,-2.05 0,-2.83L13.84,9.6l0.71,-0.71l1.24,1.24c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18c0.78,-0.78 0.78,-2.05 0,-2.83l-3.54,-3.54C17.48,-0.2 16.22,-0.2 15.44,0.59zM6.6,19.32l-1.06,1.06L2,16.85l1.06,-1.06L6.6,19.32zM8.72,17.2l-1.06,1.06l-3.54,-3.54l1.06,-1.06L8.72,17.2zM18.26,7.66L17.2,8.72l-3.54,-3.54l1.06,-1.06L18.26,7.66zM20.38,5.54L19.32,6.6l-3.54,-3.54L16.85,2L20.38,5.54zM14,21l0,2c4.97,0 9,-4.03 9,-9l-2,0C21,17.87 17.87,21 14,21zM14,17l0,2c2.76,0 5,-2.24 5,-5l-2,0C17,15.66 15.66,17 14,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/save.xml b/compose/material/material/icons/generator/raw-icons/filled/save.xml
deleted file mode 100644
index 1a8d86d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/save.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7l-4,-4zM12,19c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM15,9L5,9L5,5h10v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/save_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/save_alt.xml
deleted file mode 100644
index 5c30d1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/save_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12v7L5,19v-7L3,12v7c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2zM13,12.67l2.59,-2.58L17,11.5l-5,5 -5,-5 1.41,-1.41L11,12.67L11,3h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/save_as.xml b/compose/material/material/icons/generator/raw-icons/filled/save_as.xml
deleted file mode 100644
index 88f8c6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/save_as.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.4V7l-4,-4H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h7.4L21,12.4zM15,15c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,13.34 15,15zM6,6h9v4H6V6zM19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25zM23.25,16.51l-0.85,0.85l-1.77,-1.77l0.85,-0.85c0.2,-0.2 0.51,-0.2 0.71,0l1.06,1.06C23.45,16 23.45,16.32 23.25,16.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/saved_search.xml b/compose/material/material/icons/generator/raw-icons/filled/saved_search.xml
deleted file mode 100644
index 7ebc65d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/saved_search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM7.33,12.5l2.14,-1.53 2.14,1.53 -0.83,-2.46 2.15,-1.5h-2.62L9.47,6l-0.84,2.54L6,8.54l2.14,1.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/savings.xml b/compose/material/material/icons/generator/raw-icons/filled/savings.xml
deleted file mode 100644
index c1f41e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/savings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.83,7.5l-2.27,-2.27c0.07,-0.42 0.18,-0.81 0.32,-1.15C17.96,3.9 18,3.71 18,3.5C18,2.67 17.33,2 16.5,2c-1.64,0 -3.09,0.79 -4,2l-5,0C4.46,4 2,6.46 2,9.5S4.5,21 4.5,21l5.5,0v-2h2v2l5.5,0l1.68,-5.59L22,14.47V7.5H19.83zM13,9H8V7h5V9zM16,11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,10.55 16.55,11 16,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/scale.xml b/compose/material/material/icons/generator/raw-icons/filled/scale.xml
deleted file mode 100644
index 73e807e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11V8c4.56,-0.58 8,-3.1 8,-6H2c0,2.9 3.44,5.42 8,6l0,3c-3.68,0.73 -8,3.61 -8,11h6v-2H4.13c0.93,-6.83 6.65,-7.2 7.87,-7.2s6.94,0.37 7.87,7.2H16v2h6C22,14.61 17.68,11.73 14,11zM12,22c-1.1,0 -2,-0.9 -2,-2c0,-0.55 0.22,-1.05 0.59,-1.41C11.39,17.79 16,16 16,16s-1.79,4.61 -2.59,5.41C13.05,21.78 12.55,22 12,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/scanner.xml b/compose/material/material/icons/generator/raw-icons/filled/scanner.xml
deleted file mode 100644
index 72c993b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,10.7L4.2,5l-0.7,1.9L17.6,12L5,12c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5.5c0,-0.8 -0.5,-1.6 -1.2,-1.8zM7,17L5,17v-2h2v2zM19,17L9,17v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/scatter_plot.xml b/compose/material/material/icons/generator/raw-icons/filled/scatter_plot.xml
deleted file mode 100644
index c192675..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/scatter_plot.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,17.6m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/schedule.xml b/compose/material/material/icons/generator/raw-icons/filled/schedule.xml
deleted file mode 100644
index 86533bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/schedule.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7H11v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/schedule_send.xml b/compose/material/material/icons/generator/raw-icons/filled/schedule_send.xml
deleted file mode 100644
index 95d3041..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/schedule_send.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12.5L15,12.5v4l3,2 0.75,-1.23 -2.25,-1.52L16.5,12.5zM16,9L2,3v7l9,2 -9,2v7l7.27,-3.11C10.09,20.83 12.79,23 16,23c3.86,0 7,-3.14 7,-7s-3.14,-7 -7,-7zM16,21c-2.75,0 -4.98,-2.22 -5,-4.97v-0.07c0.02,-2.74 2.25,-4.97 5,-4.97 2.76,0 5,2.24 5,5S18.76,21 16,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/schema.xml b/compose/material/material/icons/generator/raw-icons/filled/schema.xml
deleted file mode 100644
index 0257349..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/schema.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/school.xml b/compose/material/material/icons/generator/raw-icons/filled/school.xml
deleted file mode 100644
index 3ccdf7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/school.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13.18v4L12,21l7,-3.82v-4L12,17l-7,-3.82zM12,3L1,9l11,6 9,-4.91V17h2V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/science.xml b/compose/material/material/icons/generator/raw-icons/filled/science.xml
deleted file mode 100644
index ba23c3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/science.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,18.4L14,10.67V6.5l1.35,-1.69C15.61,4.48 15.38,4 14.96,4H9.04C8.62,4 8.39,4.48 8.65,4.81L10,6.5v4.17L4.2,18.4C3.71,19.06 4.18,20 5,20h14C19.82,20 20.29,19.06 19.8,18.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/score.xml b/compose/material/material/icons/generator/raw-icons/filled/score.xml
deleted file mode 100644
index 87e6260..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,5h1.5v3l2,-3h1.7l-2,3 2,3h-1.7l-2,-3v3L12,11L12,5zM7,7.25h2.5L9.5,6.5L7,6.5L7,5h4v3.75L8.5,8.75v0.75L11,9.5L11,11L7,11L7,7.25zM19,13l-6,6 -4,-4 -4,4v-2.5l4,-4 4,4 6,-6L19,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/scoreboard.xml b/compose/material/material/icons/generator/raw-icons/filled/scoreboard.xml
deleted file mode 100644
index d5bf051..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/scoreboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,13.5H16v-3h1.5V13.5zM20,4h-3V2h-2v2H9V2H7v2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM9.5,11.5c0,0.55 -0.45,1 -1,1h-2v1h3V15H5v-2.5c0,-0.55 0.45,-1 1,-1h2v-1H5V9h3.5c0.55,0 1,0.45 1,1V11.5zM12.75,18h-1.5v-1.5h1.5V18zM12.75,14.5h-1.5V13h1.5V14.5zM12.75,11h-1.5V9.5h1.5V11zM12.75,7.5h-1.5V6h1.5V7.5zM19,14c0,0.55 -0.45,1 -1,1h-2.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H18c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screen_lock_landscape.xml b/compose/material/material/icons/generator/raw-icons/filled/screen_lock_landscape.xml
deleted file mode 100644
index 21b2ac8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screen_lock_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5L3,5c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10zM10,16h4c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1v-1c0,-1.11 -0.9,-2 -2,-2 -1.11,0 -2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2 0.66,0 1.2,0.54 1.2,1.2v1h-2.4v-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screen_lock_portrait.xml b/compose/material/material/icons/generator/raw-icons/filled/screen_lock_portrait.xml
deleted file mode 100644
index c2f370f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screen_lock_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1v-1c0,-1.11 -0.9,-2 -2,-2 -1.11,0 -2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2 0.66,0 1.2,0.54 1.2,1.2v1h-2.4v-1zM17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screen_lock_rotation.xml b/compose/material/material/icons/generator/raw-icons/filled/screen_lock_rotation.xml
deleted file mode 100644
index e90edd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screen_lock_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.25,12.77l-2.57,-2.57 -1.41,1.41 2.22,2.22 -5.66,5.66L4.51,8.17l5.66,-5.66 2.1,2.1 1.41,-1.41L11.23,0.75c-0.59,-0.59 -1.54,-0.59 -2.12,0L2.75,7.11c-0.59,0.59 -0.59,1.54 0,2.12l12.02,12.02c0.59,0.59 1.54,0.59 2.12,0l6.36,-6.36c0.59,-0.59 0.59,-1.54 0,-2.12zM8.47,20.48C5.2,18.94 2.86,15.76 2.5,12L1,12c0.51,6.16 5.66,11 11.95,11l0.66,-0.03 -3.81,-3.82 -1.33,1.33zM16,9h5c0.55,0 1,-0.45 1,-1L22,4c0,-0.55 -0.45,-1 -1,-1v-0.5C21,1.12 19.88,0 18.5,0S16,1.12 16,2.5L16,3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM16.8,2.5c0,-0.94 0.76,-1.7 1.7,-1.7s1.7,0.76 1.7,1.7L20.2,3h-3.4v-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screen_rotation.xml b/compose/material/material/icons/generator/raw-icons/filled/screen_rotation.xml
deleted file mode 100644
index 9b38464..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screen_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.48,2.52c3.27,1.55 5.61,4.72 5.97,8.48h1.5C23.44,4.84 18.29,0 12,0l-0.66,0.03 3.81,3.81 1.33,-1.32zM10.23,1.75c-0.59,-0.59 -1.54,-0.59 -2.12,0L1.75,8.11c-0.59,0.59 -0.59,1.54 0,2.12l12.02,12.02c0.59,0.59 1.54,0.59 2.12,0l6.36,-6.36c0.59,-0.59 0.59,-1.54 0,-2.12L10.23,1.75zM14.83,21.19L2.81,9.17l6.36,-6.36 12.02,12.02 -6.36,6.36zM7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.81 -1.33,1.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screen_rotation_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/screen_rotation_alt.xml
deleted file mode 100644
index 553db9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screen_rotation_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7.59l5,-5c0.78,-0.78 2.05,-0.78 2.83,0L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59zM20,19h2v-6h-6v2h2.59l-4.99,5l-7.01,-7H3.76l8.41,8.41c0.78,0.78 2.05,0.78 2.83,0l5,-5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screen_search_desktop.xml b/compose/material/material/icons/generator/raw-icons/filled/screen_search_desktop.xml
deleted file mode 100644
index 713b706..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screen_search_desktop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18C21.1,18 21.99,17.1 21.99,16L22,6C22,4.89 21.1,4 20,4L4,4C2.89,4 2,4.89 2,6L2,16C2,17.1 2.89,18 4,18L0,18L0,20L24,20L24,18L20,18ZM4,16L4,6L20,6L20,16L20,16.01L4,16ZM9.097,9.953C9.097,8.926 9.933,8.089 10.961,8.089C11.988,8.089 12.825,8.926 12.825,9.953C12.825,10.98 11.988,11.817 10.961,11.817C9.933,11.817 9.097,10.98 9.097,9.953ZM16.129,14.189L13.647,11.707C13.978,11.202 14.174,10.6 14.174,9.953C14.174,8.181 12.733,6.74 10.961,6.74C9.189,6.74 7.747,8.181 7.747,9.953C7.747,11.725 9.189,13.167 10.961,13.167C11.597,13.167 12.186,12.975 12.685,12.656L15.174,15.144L16.129,14.189Z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screen_share.xml b/compose/material/material/icons/generator/raw-icons/filled/screen_share.xml
deleted file mode 100644
index 2ba10f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,6c0,-1.11 -0.9,-2 -2,-2L4,4c-1.11,0 -2,0.89 -2,2v10c0,1.1 0.89,2 2,2L0,18v2h24v-2h-4zM13,14.47v-2.19c-2.78,0 -4.61,0.85 -6,2.72 0.56,-2.67 2.11,-5.33 6,-5.87L13,7l4,3.73 -4,3.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screenshot.xml b/compose/material/material/icons/generator/raw-icons/filled/screenshot.xml
deleted file mode 100644
index 147a5c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screenshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM9.5,8.5H12V7H8v4h1.5V8.5zM12,17h4v-4h-1.5v2.5H12V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/screenshot_monitor.xml b/compose/material/material/icons/generator/raw-icons/filled/screenshot_monitor.xml
deleted file mode 100644
index dac2577..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/screenshot_monitor.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,7.5l2.5,0l0,-1.5l-4,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12l-1.5,0l0,2.5l-2.5,0l0,1.5l4,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/scuba_diving.xml b/compose/material/material/icons/generator/raw-icons/filled/scuba_diving.xml
deleted file mode 100644
index eeb739b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/scuba_diving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S1,14.1 1,13zM8.89,10.11l4.53,-1.21L12.64,6L8.11,7.21c-0.8,0.21 -1.28,1.04 -1.06,1.84l0,0C7.27,9.85 8.09,10.33 8.89,10.11zM20.5,5.9L23,3l-1,-1l-3,3l-2,4l-9.48,2.87c-0.82,0.2 -1.39,0.89 -1.5,1.68L5.24,18L2.4,21.8L4,23l3,-4l1.14,-3.14L14,14l5,-3.5L20.5,5.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sd.xml b/compose/material/material/icons/generator/raw-icons/filled/sd.xml
deleted file mode 100644
index b019dff..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sd.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM13,9h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-4L13,9zM9.5,13.5v-1L7,12.5c-0.55,0 -1,-0.45 -1,-1L6,10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1L9.5,11v-0.5h-2v1L10,11.5c0.55,0 1,0.45 1,1L11,14c0,0.55 -0.45,1 -1,1L7,15c-0.55,0 -1,-0.45 -1,-1v-1h1.5v0.5h2zM14.5,13.5h2v-3h-2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sd_card.xml b/compose/material/material/icons/generator/raw-icons/filled/sd_card.xml
deleted file mode 100644
index 84f6ea6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sd_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4.02,8 4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM12,8h-2L10,4h2v4zM15,8h-2L13,4h2v4zM18,8h-2L16,4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sd_card_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/sd_card_alert.xml
deleted file mode 100644
index 0b0fa94..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sd_card_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4.02,8L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM13,17h-2v-2h2V17zM13,13h-2V8h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sd_storage.xml b/compose/material/material/icons/generator/raw-icons/filled/sd_storage.xml
deleted file mode 100644
index 84f6ea6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sd_storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4.02,8 4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM12,8h-2L10,4h2v4zM15,8h-2L13,4h2v4zM18,8h-2L16,4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/search.xml b/compose/material/material/icons/generator/raw-icons/filled/search.xml
deleted file mode 100644
index 07b76d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/search_off.xml b/compose/material/material/icons/generator/raw-icons/filled/search_off.xml
deleted file mode 100644
index 1f3c924..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/search_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5C16,5.91 13.09,3 9.5,3C6.08,3 3.28,5.64 3.03,9h2.02C5.3,6.75 7.18,5 9.5,5C11.99,5 14,7.01 14,9.5S11.99,14 9.5,14c-0.17,0 -0.33,-0.03 -0.5,-0.05v2.02C9.17,15.99 9.33,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.47,10.82l-2.47,2.47l-2.47,-2.47l-0.71,0.71l2.47,2.47l-2.47,2.47l0.71,0.71l2.47,-2.47l2.47,2.47l0.71,-0.71l-2.47,-2.47l2.47,-2.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/security.xml b/compose/material/material/icons/generator/raw-icons/filled/security.xml
deleted file mode 100644
index c9e27cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/security.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM12,11.99h7c-0.53,4.12 -3.28,7.79 -7,8.94L12,12L5,12L5,6.3l7,-3.11v8.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/security_update.xml b/compose/material/material/icons/generator/raw-icons/filled/security_update.xml
deleted file mode 100644
index 335a88a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3zM17,18H7V6h10V18zM16,12h-3V8h-2v4H8l4,4L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/security_update_good.xml b/compose/material/material/icons/generator/raw-icons/filled/security_update_good.xml
deleted file mode 100644
index 01c3448..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/filled/security_update_warning.xml
deleted file mode 100644
index f2629bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5.01,1.9 5.01,3v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/segment.xml b/compose/material/material/icons/generator/raw-icons/filled/segment.xml
deleted file mode 100644
index ab024c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/segment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,18h12v-2L9,16v2zM3,6v2h18L21,6L3,6zM9,13h12v-2L9,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/select_all.xml b/compose/material/material/icons/generator/raw-icons/filled/select_all.xml
deleted file mode 100644
index c997121..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/select_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h2L5,3c-1.1,0 -2,0.9 -2,2zM3,13h2v-2L3,11v2zM7,21h2v-2L7,19v2zM3,9h2L5,7L3,7v2zM13,3h-2v2h2L13,3zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM5,21v-2L3,19c0,1.1 0.9,2 2,2zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM11,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2zM19,9h2L21,7h-2v2zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM7,17h10L17,7L7,7v10zM9,9h6v6L9,15L9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/self_improvement.xml b/compose/material/material/icons/generator/raw-icons/filled/self_improvement.xml
deleted file mode 100644
index 850e20a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/self_improvement.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16v-2c-2.24,0 -4.16,-0.96 -5.6,-2.68l-1.34,-1.6C13.68,9.26 13.12,9 12.53,9h-1.05c-0.59,0 -1.15,0.26 -1.53,0.72l-1.34,1.6C7.16,13.04 5.24,14 3,14v2c2.77,0 5.19,-1.17 7,-3.25V15l-3.88,1.55C5.45,16.82 5,17.48 5,18.21C5,19.2 5.8,20 6.79,20H9v-0.5c0,-1.38 1.12,-2.5 2.5,-2.5h3c0.28,0 0.5,0.22 0.5,0.5S14.78,18 14.5,18h-3c-0.83,0 -1.5,0.67 -1.5,1.5V20h7.21C18.2,20 19,19.2 19,18.21c0,-0.73 -0.45,-1.39 -1.12,-1.66L14,15v-2.25C15.81,14.83 18.23,16 21,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sell.xml b/compose/material/material/icons/generator/raw-icons/filled/sell.xml
deleted file mode 100644
index b6dfa29..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.41l-8.83,-8.83C12.21,2.21 11.7,2 11.17,2H4C2.9,2 2,2.9 2,4v7.17c0,0.53 0.21,1.04 0.59,1.41l8.83,8.83c0.78,0.78 2.05,0.78 2.83,0l7.17,-7.17C22.2,13.46 22.2,12.2 21.41,11.41zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5S7.33,8 6.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/send.xml b/compose/material/material/icons/generator/raw-icons/filled/send.xml
deleted file mode 100644
index f0d63e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/send.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.01,21L23,12 2.01,3 2,10l15,2 -15,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/send_and_archive.xml b/compose/material/material/icons/generator/raw-icons/filled/send_and_archive.xml
deleted file mode 100644
index 97f8320..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/send_and_archive.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10h-3L2,3v7l9,2 -9,2v7l8,-3.5L10,21c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2v-9c0,-1.1 -0.9,-2 -2,-2zM21,21h-9v-9h9v9zM16.5,20L13,16h2v-3h3v3h2l-3.5,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/send_time_extension.xml b/compose/material/material/icons/generator/raw-icons/filled/send_time_extension.xml
deleted file mode 100644
index 1b306e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/send_time_extension.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H5.01c-1.1,0 -2,0.9 -2,2v3.8C5.7,9.8 6,11.96 6,12.5c0,0.54 -0.29,2.7 -3,2.7V19c0,1.1 0.9,2 2,2h3.8c0,-2.16 1.37,-2.78 2.2,-2.94v-9.3l9,4.5V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l0,4l4,1l-4,1l0,4l10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/send_to_mobile.xml b/compose/material/material/icons/generator/raw-icons/filled/send_to_mobile.xml
deleted file mode 100644
index b5bc8d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/send_to_mobile.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17h2v4c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V3c0,-1.1 0.9,-1.99 2,-1.99L17,1c1.1,0 2,0.9 2,2v4h-2V6H7v12h10V17zM22,12l-4,-4v3h-5v2h5v3L22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sensor_door.xml b/compose/material/material/icons/generator/raw-icons/filled/sensor_door.xml
deleted file mode 100644
index 06aa654..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sensor_door.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v18h16V4C20,2.9 19.1,2 18,2zM15.5,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5S17,11.17 17,12S16.33,13.5 15.5,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sensor_occupied.xml b/compose/material/material/icons/generator/raw-icons/filled/sensor_occupied.xml
deleted file mode 100644
index 46008cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sensor_occupied.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3S9,6.34 9,8S10.34,11 12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.84,0 -3.56,0.5 -5.03,1.37C6.36,13.72 6,14.39 6,15.09V17h12v-1.91c0,-0.7 -0.36,-1.36 -0.97,-1.72C15.56,12.5 13.84,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.23,8.15l1.85,-0.77c-1.22,-2.91 -3.55,-5.25 -6.46,-6.46l-0.77,1.85C18.27,3.79 20.21,5.73 21.23,8.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,2.77L7.38,0.92C4.47,2.14 2.14,4.47 0.92,7.38l1.85,0.77C3.79,5.73 5.73,3.79 8.15,2.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.77,15.85l-1.85,0.77c1.22,2.91 3.55,5.25 6.46,6.46l0.77,-1.85C5.73,20.21 3.79,18.27 2.77,15.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.85,21.23l0.77,1.85c2.91,-1.22 5.25,-3.55 6.46,-6.46l-1.85,-0.77C20.21,18.27 18.27,20.21 15.85,21.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sensor_window.xml b/compose/material/material/icons/generator/raw-icons/filled/sensor_window.xml
deleted file mode 100644
index bffa14dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sensor_window.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v16H6V4H18M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2L18,2zM7,19h10v-6H7V19zM10,10h4v1h3V5H7v6h3V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sensors.xml b/compose/material/material/icons/generator/raw-icons/filled/sensors.xml
deleted file mode 100644
index 1f867db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sensors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.76,16.24C6.67,15.16 6,13.66 6,12s0.67,-3.16 1.76,-4.24l1.42,1.42C8.45,9.9 8,10.9 8,12c0,1.1 0.45,2.1 1.17,2.83L7.76,16.24zM16.24,16.24C17.33,15.16 18,13.66 18,12s-0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,1.1 -0.45,2.1 -1.17,2.83L16.24,16.24zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM20,12c0,2.21 -0.9,4.21 -2.35,5.65l1.42,1.42C20.88,17.26 22,14.76 22,12s-1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12zM6.35,6.35L4.93,4.93C3.12,6.74 2,9.24 2,12s1.12,5.26 2.93,7.07l1.42,-1.42C4.9,16.21 4,14.21 4,12S4.9,7.79 6.35,6.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sensors_off.xml b/compose/material/material/icons/generator/raw-icons/filled/sensors_off.xml
deleted file mode 100644
index 49e1f8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sensors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.14,10.96C8.05,11.29 8,11.64 8,12c0,1.1 0.45,2.1 1.17,2.83l-1.42,1.42C6.67,15.16 6,13.66 6,12c0,-0.93 0.21,-1.8 0.58,-2.59L5.11,7.94C4.4,9.13 4,10.52 4,12c0,2.21 0.9,4.21 2.35,5.65l-1.42,1.42C3.12,17.26 2,14.76 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L8.14,10.96zM17.42,14.59C17.79,13.8 18,12.93 18,12c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,0.36 -0.05,0.71 -0.14,1.04L17.42,14.59zM20,12c0,1.48 -0.4,2.87 -1.11,4.06l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sentiment_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/filled/sentiment_dissatisfied.xml
deleted file mode 100644
index 90f4cb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sentiment_dissatisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,16.5c0.73,0 1.39,0.19 1.97,0.53 0.12,-0.14 0.86,-0.98 1.01,-1.14 -0.85,-0.56 -1.87,-0.89 -2.98,-0.89 -1.11,0 -2.13,0.33 -2.99,0.88 0.97,1.09 0.01,0.02 1.01,1.14 0.59,-0.33 1.25,-0.52 1.98,-0.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sentiment_neutral.xml b/compose/material/material/icons/generator/raw-icons/filled/sentiment_neutral.xml
deleted file mode 100644
index 1122ce9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sentiment_neutral.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15.5h6v1H9v-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sentiment_satisfied.xml b/compose/material/material/icons/generator/raw-icons/filled/sentiment_satisfied.xml
deleted file mode 100644
index 6ced37a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sentiment_satisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,16c-0.73,0 -1.38,-0.18 -1.96,-0.52 -0.12,0.14 -0.86,0.98 -1.01,1.15 0.86,0.55 1.87,0.87 2.97,0.87 1.11,0 2.12,-0.33 2.98,-0.88 -0.97,-1.09 -0.01,-0.02 -1.01,-1.15 -0.59,0.35 -1.24,0.53 -1.97,0.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sentiment_satisfied_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/sentiment_satisfied_alt.xml
deleted file mode 100644
index 8b6ce74..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sentiment_satisfied_alt.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,17.5c2.33,0 4.32,-1.45 5.12,-3.5h-1.67c-0.69,1.19 -1.97,2 -3.45,2s-2.75,-0.81 -3.45,-2L6.88,14c0.8,2.05 2.79,3.5 5.12,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sentiment_very_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/filled/sentiment_very_dissatisfied.xml
deleted file mode 100644
index f378687f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sentiment_very_dissatisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,14c-2.33,0 -4.32,1.45 -5.12,3.5h1.67c0.69,-1.19 1.97,-2 3.45,-2s2.75,0.81 3.45,2h1.67c-0.8,-2.05 -2.79,-3.5 -5.12,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sentiment_very_satisfied.xml b/compose/material/material/icons/generator/raw-icons/filled/sentiment_very_satisfied.xml
deleted file mode 100644
index f20afb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sentiment_very_satisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM7,14c0.78,2.34 2.72,4 5,4s4.22,-1.66 5,-4L7,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/set_meal.xml b/compose/material/material/icons/generator/raw-icons/filled/set_meal.xml
deleted file mode 100644
index 895694d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/set_meal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.05,17.56L3.08,18.5L3,17l17.98,-0.94L21.05,17.56zM21,19.48H3v1.5h18V19.48zM22,5v7c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h16C21.1,3 22,3.9 22,5zM20,6c-1.68,0 -3.04,0.98 -3.21,2.23C16.15,7.5 14.06,5.5 10.25,5.5c-4.67,0 -6.75,3 -6.75,3s2.08,3 6.75,3c3.81,0 5.9,-2 6.54,-2.73C16.96,10.02 18.32,11 20,11V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings.xml b/compose/material/material/icons/generator/raw-icons/filled/settings.xml
deleted file mode 100644
index 41a82ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.14,12.94c0.04,-0.3 0.06,-0.61 0.06,-0.94c0,-0.32 -0.02,-0.64 -0.07,-0.94l2.03,-1.58c0.18,-0.14 0.23,-0.41 0.12,-0.61l-1.92,-3.32c-0.12,-0.22 -0.37,-0.29 -0.59,-0.22l-2.39,0.96c-0.5,-0.38 -1.03,-0.7 -1.62,-0.94L14.4,2.81c-0.04,-0.24 -0.24,-0.41 -0.48,-0.41h-3.84c-0.24,0 -0.43,0.17 -0.47,0.41L9.25,5.35C8.66,5.59 8.12,5.92 7.63,6.29L5.24,5.33c-0.22,-0.08 -0.47,0 -0.59,0.22L2.74,8.87C2.62,9.08 2.66,9.34 2.86,9.48l2.03,1.58C4.84,11.36 4.8,11.69 4.8,12s0.02,0.64 0.07,0.94l-2.03,1.58c-0.18,0.14 -0.23,0.41 -0.12,0.61l1.92,3.32c0.12,0.22 0.37,0.29 0.59,0.22l2.39,-0.96c0.5,0.38 1.03,0.7 1.62,0.94l0.36,2.54c0.05,0.24 0.24,0.41 0.48,0.41h3.84c0.24,0 0.44,-0.17 0.47,-0.41l0.36,-2.54c0.59,-0.24 1.13,-0.56 1.62,-0.94l2.39,0.96c0.22,0.08 0.47,0 0.59,-0.22l1.92,-3.32c0.12,-0.22 0.07,-0.47 -0.12,-0.61L19.14,12.94zM12,15.6c-1.98,0 -3.6,-1.62 -3.6,-3.6s1.62,-3.6 3.6,-3.6s3.6,1.62 3.6,3.6S13.98,15.6 12,15.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_accessibility.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_accessibility.xml
deleted file mode 100644
index 2914c1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,4c-2.61,0.7 -5.67,1 -8.5,1S6.11,4.7 3.5,4L3,6c1.86,0.5 4,0.83 6,1v12h2v-6h2v6h2V7c2,-0.17 4.14,-0.5 6,-1L20.5,4zM12,4c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,4 12,4zM7,24h2v-2H7V24zM11,24h2v-2h-2V24zM15,24h2v-2h-2V24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_applications.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_applications.xml
deleted file mode 100644
index 89a46f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_applications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.11,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2zM17.25,12c0,0.23 -0.02,0.46 -0.05,0.68l1.48,1.16c0.13,0.11 0.17,0.3 0.08,0.45l-1.4,2.42c-0.09,0.15 -0.27,0.21 -0.43,0.15l-1.74,-0.7c-0.36,0.28 -0.76,0.51 -1.18,0.69l-0.26,1.85c-0.03,0.17 -0.18,0.3 -0.35,0.3h-2.8c-0.17,0 -0.32,-0.13 -0.35,-0.29l-0.26,-1.85c-0.43,-0.18 -0.82,-0.41 -1.18,-0.69l-1.74,0.7c-0.16,0.06 -0.34,0 -0.43,-0.15l-1.4,-2.42c-0.09,-0.15 -0.05,-0.34 0.08,-0.45l1.48,-1.16c-0.03,-0.23 -0.05,-0.46 -0.05,-0.69 0,-0.23 0.02,-0.46 0.05,-0.68l-1.48,-1.16c-0.13,-0.11 -0.17,-0.3 -0.08,-0.45l1.4,-2.42c0.09,-0.15 0.27,-0.21 0.43,-0.15l1.74,0.7c0.36,-0.28 0.76,-0.51 1.18,-0.69l0.26,-1.85c0.03,-0.17 0.18,-0.3 0.35,-0.3h2.8c0.17,0 0.32,0.13 0.35,0.29l0.26,1.85c0.43,0.18 0.82,0.41 1.18,0.69l1.74,-0.7c0.16,-0.06 0.34,0 0.43,0.15l1.4,2.42c0.09,0.15 0.05,0.34 -0.08,0.45l-1.48,1.16c0.03,0.23 0.05,0.46 0.05,0.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_backup_restore.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_backup_restore.xml
deleted file mode 100644
index 1772ed5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_backup_restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2 0.9,2 2,2 2,-0.9 2,-2zM12,3c-4.97,0 -9,4.03 -9,9L0,12l4,4 4,-4L5,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.51,0 -2.91,-0.49 -4.06,-1.3l-1.42,1.44C8.04,20.3 9.94,21 12,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_bluetooth.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_bluetooth.xml
deleted file mode 100644
index 5e11cd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,24h2v-2h-2v2zM7,24h2v-2L7,22v2zM15,24h2v-2h-2v2zM17.71,5.71L12,0h-1v7.59L6.41,3 5,4.41 10.59,10 5,15.59 6.41,17 11,12.41L11,20h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,3.83l1.88,1.88L13,7.59L13,3.83zM14.88,14.29L13,16.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_brightness.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_brightness.xml
deleted file mode 100644
index 3c8eb5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_brightness.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02zM8,16h2.5l1.5,1.5 1.5,-1.5L16,16v-2.5l1.5,-1.5 -1.5,-1.5L16,8h-2.5L12,6.5 10.5,8L8,8v2.5L6.5,12 8,13.5L8,16zM12,9c1.66,0 3,1.34 3,3s-1.34,3 -3,3L12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_cell.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_cell.xml
deleted file mode 100644
index 49ef1bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM11,24h2v-2h-2v2zM15,24h2v-2h-2v2zM16,0.01L8,0C6.9,0 6,0.9 6,2v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,2c0,-1.1 -0.9,-1.99 -2,-1.99zM16,16L8,16L8,4h8v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_ethernet.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_ethernet.xml
deleted file mode 100644
index cdc8802..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_ethernet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,6.76L6.23,5.48 0.82,12l5.41,6.52 1.54,-1.28L3.42,12l4.35,-5.24zM7,13h2v-2L7,11v2zM17,11h-2v2h2v-2zM11,13h2v-2h-2v2zM17.77,5.48l-1.54,1.28L20.58,12l-4.35,5.24 1.54,1.28L23.18,12l-5.41,-6.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_input_antenna.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_input_antenna.xml
deleted file mode 100644
index 9379c0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_input_antenna.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-3.87,0 -7,3.13 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM13,14.29c0.88,-0.39 1.5,-1.26 1.5,-2.29 0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,10.62 9.5,12c0,1.02 0.62,1.9 1.5,2.29v3.3L7.59,21 9,22.41l3,-3 3,3L16.41,21 13,17.59v-3.3zM12,1C5.93,1 1,5.93 1,12h2c0,-4.97 4.03,-9 9,-9s9,4.03 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_input_component.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_input_component.xml
deleted file mode 100644
index bbecd0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_input_component.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v6h6L7,6L5,6L5,2zM9,16c0,1.3 0.84,2.4 2,2.82L11,23h2v-4.18c1.16,-0.41 2,-1.51 2,-2.82v-2L9,14v2zM1,16c0,1.3 0.84,2.4 2,2.82L3,23h2v-4.18C6.16,18.4 7,17.3 7,16v-2L1,14v2zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v6h6L23,6h-2zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v6h6L15,6h-2L13,2zM17,16c0,1.3 0.84,2.4 2,2.82L19,23h2v-4.18c1.16,-0.41 2,-1.51 2,-2.82v-2h-6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_input_composite.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_input_composite.xml
deleted file mode 100644
index bbecd0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_input_composite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v6h6L7,6L5,6L5,2zM9,16c0,1.3 0.84,2.4 2,2.82L11,23h2v-4.18c1.16,-0.41 2,-1.51 2,-2.82v-2L9,14v2zM1,16c0,1.3 0.84,2.4 2,2.82L3,23h2v-4.18C6.16,18.4 7,17.3 7,16v-2L1,14v2zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v6h6L23,6h-2zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v6h6L15,6h-2L13,2zM17,16c0,1.3 0.84,2.4 2,2.82L19,23h2v-4.18c1.16,-0.41 2,-1.51 2,-2.82v-2h-6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_input_hdmi.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_input_hdmi.xml
deleted file mode 100644
index f8704a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_input_hdmi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7V4c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2v3H5v6l3,6v3h8v-3l3,-6V7h-1zM8,4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_input_svideo.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_input_svideo.xml
deleted file mode 100644
index 373e176..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_input_svideo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S5,10.67 5,11.5 5.67,13 6.5,13 8,12.33 8,11.5zM15,6.5c0,-0.83 -0.67,-1.5 -1.5,-1.5h-3C9.67,5 9,5.67 9,6.5S9.67,8 10.5,8h3c0.83,0 1.5,-0.67 1.5,-1.5zM8.5,15c-0.83,0 -1.5,0.67 -1.5,1.5S7.67,18 8.5,18s1.5,-0.67 1.5,-1.5S9.33,15 8.5,15zM12,1C5.93,1 1,5.93 1,12s4.93,11 11,11 11,-4.93 11,-11S18.07,1 12,1zM12,21c-4.96,0 -9,-4.04 -9,-9s4.04,-9 9,-9 9,4.04 9,9 -4.04,9 -9,9zM17.5,10c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM15.5,15c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_overscan.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_overscan.xml
deleted file mode 100644
index f6a9d0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_overscan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,5.5L10,8h4l-1.99,-2.5zM18,10v4l2.5,-1.99L18,10zM6,10l-2.5,2.01L6,14v-4zM14,16h-4l2.01,2.5L14,16zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_phone.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_phone.xml
deleted file mode 100644
index 1a5cc0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h-2v2h2L13,9zM17,9h-2v2h2L17,9zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.35,-0.11 -0.74,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.58l2.2,-2.21c0.28,-0.27 0.36,-0.66 0.25,-1.01C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM19,9v2h2L21,9h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_power.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_power.xml
deleted file mode 100644
index 8af8bdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM11,24h2v-2h-2v2zM13,2h-2v10h2L13,2zM16.56,4.44l-1.45,1.45C16.84,6.94 18,8.83 18,11c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2.17 1.16,-4.06 2.88,-5.12L7.44,4.44C5.36,5.88 4,8.28 4,11c0,4.42 3.58,8 8,8s8,-3.58 8,-8c0,-2.72 -1.36,-5.12 -3.44,-6.56zM15,24h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_remote.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_remote.xml
deleted file mode 100644
index c758c1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_remote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9L9,9c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L16,10c0,-0.55 -0.45,-1 -1,-1zM12,15c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM7.05,6.05l1.41,1.41C9.37,6.56 10.62,6 12,6s2.63,0.56 3.54,1.46l1.41,-1.41C15.68,4.78 13.93,4 12,4s-3.68,0.78 -4.95,2.05zM12,0C8.96,0 6.21,1.23 4.22,3.22l1.41,1.41C7.26,3.01 9.51,2 12,2s4.74,1.01 6.36,2.64l1.41,-1.41C17.79,1.23 15.04,0 12,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_suggest.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_suggest.xml
deleted file mode 100644
index 8038ca5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_suggest.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.41,6.59L15,5.5l2.41,-1.09L18.5,2l1.09,2.41L22,5.5l-2.41,1.09L18.5,9L17.41,6.59zM21.28,12.72L20.5,11l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78,-1.72L23,13.5L21.28,12.72zM16.24,14.37l1.94,1.47l-2.5,4.33l-2.24,-0.94c-0.2,0.13 -0.42,0.26 -0.64,0.37L12.5,22h-5l-0.3,-2.41c-0.22,-0.11 -0.43,-0.23 -0.64,-0.37l-2.24,0.94l-2.5,-4.33l1.94,-1.47C3.75,14.25 3.75,14.12 3.75,14s0,-0.25 0.01,-0.37l-1.94,-1.47l2.5,-4.33l2.24,0.94c0.2,-0.13 0.42,-0.26 0.64,-0.37L7.5,6h5l0.3,2.41c0.22,0.11 0.43,0.23 0.64,0.37l2.24,-0.94l2.5,4.33l-1.94,1.47c0.01,0.12 0.01,0.24 0.01,0.37S16.25,14.25 16.24,14.37zM13,14c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3S13,15.66 13,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_system_daydream.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_system_daydream.xml
deleted file mode 100644
index 2215ecd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_system_daydream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6.5c1.38,0 2.5,-1.12 2.5,-2.5S16.88,11 15.5,11h-0.05c-0.24,-1.69 -1.69,-3 -3.45,-3 -1.4,0 -2.6,0.83 -3.16,2.02h-0.16C7.17,10.18 6,11.45 6,13c0,1.66 1.34,3 3,3zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/settings_voice.xml b/compose/material/material/icons/generator/raw-icons/filled/settings_voice.xml
deleted file mode 100644
index 161a468..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/settings_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM12,13c1.66,0 2.99,-1.34 2.99,-3L15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4v6c0,1.66 1.34,3 3,3zM11,24h2v-2h-2v2zM15,24h2v-2h-2v2zM19,10h-1.7c0,3 -2.54,5.1 -5.3,5.1S6.7,13 6.7,10L5,10c0,3.41 2.72,6.23 6,6.72L11,20h2v-3.28c3.28,-0.49 6,-3.31 6,-6.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/severe_cold.xml b/compose/material/material/icons/generator/raw-icons/filled/severe_cold.xml
deleted file mode 100644
index feac899..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/severe_cold.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.41l4,-4l-1.41,-1.41l-2.59,2.59l0,-3.59l-2,0l0,3.59l-2.59,-2.59l-1.41,1.41l4,4l0,1.59l-1.59,0l-4,-4l-1.41,1.41l2.59,2.59l-3.59,0l0,2l3.59,0l-2.59,2.59l1.41,1.41l4,-4l1.59,0l0,1.59l-4,4l1.41,1.41l2.59,-2.59l0,3.59l2,0l0,-3.59l2.59,2.59l1.41,-1.41l-4,-4l0,-1.59l1.59,0l4,4l1.41,-1.41l-2.59,-2.59l3.59,0l0,-2l-8,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shape_line.xml b/compose/material/material/icons/generator/raw-icons/filled/shape_line.xml
deleted file mode 100644
index 1007dca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shape_line.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11c2.76,0 5,-2.24 5,-5S8.76,1 6,1S1,3.24 1,6S3.24,11 6,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-5c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-5C23,14.9 22.1,14 21,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.7C18.11,7.89 18.54,8 19,8c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3s-3,1.35 -3,3c0,0.46 0.11,0.89 0.3,1.29L6.29,16.3C5.89,16.11 5.46,16 5,16c-1.65,0 -3,1.35 -3,3s1.35,3 3,3s3,-1.35 3,-3c0,-0.46 -0.11,-0.89 -0.3,-1.29L17.71,7.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/share.xml b/compose/material/material/icons/generator/raw-icons/filled/share.xml
deleted file mode 100644
index 2f13bb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92 1.61,0 2.92,-1.31 2.92,-2.92s-1.31,-2.92 -2.92,-2.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/share_location.xml b/compose/material/material/icons/generator/raw-icons/filled/share_location.xml
deleted file mode 100644
index 2acc4e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/share_location.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.02,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.42,-1.43C15.81,19.17 14.48,19.75 13.02,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.03,12c0,-4.05 3.03,-7.41 6.95,-7.93V2.05C5.95,2.58 2.03,6.84 2.03,12c0,5.16 3.92,9.42 8.95,9.95v-2.02C7.06,19.41 4.03,16.05 4.03,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.95,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32l-1.43,1.43C19.19,8.21 19.77,9.54 19.95,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.34,4.26c-1.48,-1.21 -3.32,-2.01 -5.32,-2.21v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.34,4.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.33,16.9l1.43,1.42c1.21,-1.48 2.01,-3.31 2.21,-5.32h-2.02C19.77,14.46 19.19,15.79 18.33,16.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11.1C16,8.61 14.1,7 12,7s-4,1.61 -4,4.1c0,1.66 1.33,3.63 4,5.9C14.67,14.73 16,12.76 16,11.1zM12,12c-0.59,0 -1.07,-0.48 -1.07,-1.07c0,-0.59 0.48,-1.07 1.07,-1.07s1.07,0.48 1.07,1.07C13.07,11.52 12.59,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shield.xml b/compose/material/material/icons/generator/raw-icons/filled/shield.xml
deleted file mode 100644
index ac945c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shield.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12V5l-9,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shield_moon.xml b/compose/material/material/icons/generator/raw-icons/filled/shield_moon.xml
deleted file mode 100644
index 4656158..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shield_moon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM15.97,14.41c-1.84,2.17 -5.21,2.1 -6.96,-0.07c-2.19,-2.72 -0.65,-6.72 2.69,-7.33c0.34,-0.06 0.63,0.27 0.51,0.6c-0.46,1.23 -0.39,2.64 0.32,3.86c0.71,1.22 1.89,1.99 3.18,2.2C16.05,13.72 16.2,14.14 15.97,14.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shop.xml b/compose/material/material/icons/generator/raw-icons/filled/shop.xml
deleted file mode 100644
index 4858481..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L2,6v13c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6h-6zM10,4h4v2h-4L10,4zM9,18L9,9l7.5,4L9,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shop_2.xml b/compose/material/material/icons/generator/raw-icons/filled/shop_2.xml
deleted file mode 100644
index 1251b79..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shop_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9H1v11c0,1.11 0.89,2 2,2h16v-2H3V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V3c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2H5v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2V5H18zM12,3h4v2h-4V3zM12,15V8l5.5,3.5L12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shop_two.xml b/compose/material/material/icons/generator/raw-icons/filled/shop_two.xml
deleted file mode 100644
index 6d32717..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shop_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9L1,9v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2L3,20L3,9zM18,5L18,3c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L5,5v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2L23,5h-5zM12,3h4v2h-4L12,3zM12,15L12,8l5.5,3 -5.5,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shopping_bag.xml b/compose/material/material/icons/generator/raw-icons/filled/shopping_bag.xml
deleted file mode 100644
index a82c672..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shopping_bag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6h-2c0,-2.21 -1.79,-4 -4,-4S8,3.79 8,6H6C4.9,6 4,6.9 4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8C20,6.9 19.1,6 18,6zM10,10c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V8h2V10zM12,4c1.1,0 2,0.9 2,2h-4C10,4.9 10.9,4 12,4zM16,10c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V8h2V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shopping_basket.xml b/compose/material/material/icons/generator/raw-icons/filled/shopping_basket.xml
deleted file mode 100644
index a891c2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shopping_basket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.21,9l-4.38,-6.56c-0.19,-0.28 -0.51,-0.42 -0.83,-0.42 -0.32,0 -0.64,0.14 -0.83,0.43L6.79,9L2,9c-0.55,0 -1,0.45 -1,1 0,0.09 0.01,0.18 0.04,0.27l2.54,9.27c0.23,0.84 1,1.46 1.92,1.46h13c0.92,0 1.69,-0.62 1.93,-1.46l2.54,-9.27L23,10c0,-0.55 -0.45,-1 -1,-1h-4.79zM9,9l3,-4.4L15,9L9,9zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/filled/shopping_cart.xml
deleted file mode 100644
index cf0dcc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM1,2v2h2l3.6,7.59 -1.35,2.45c-0.16,0.28 -0.25,0.61 -0.25,0.96 0,1.1 0.9,2 2,2h12v-2L7.42,15c-0.14,0 -0.25,-0.11 -0.25,-0.25l0.03,-0.12 0.9,-1.63h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.08,-0.14 0.12,-0.31 0.12,-0.48 0,-0.55 -0.45,-1 -1,-1L5.21,4l-0.94,-2L1,2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shopping_cart_checkout.xml b/compose/material/material/icons/generator/raw-icons/filled/shopping_cart_checkout.xml
deleted file mode 100644
index d111c5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shopping_cart_checkout.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2H7L8.1,13zM12,2l4,4l-4,4l-1.41,-1.41L12.17,7L8,7l0,-2l4.17,0l-1.59,-1.59L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/short_text.xml b/compose/material/material/icons/generator/raw-icons/filled/short_text.xml
deleted file mode 100644
index b6f5955..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/short_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h16v2H4V9zM4,13h10v2H4V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shortcut.xml b/compose/material/material/icons/generator/raw-icons/filled/shortcut.xml
deleted file mode 100644
index b754869..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shortcut.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l-6,-6v5H8c-2.76,0 -5,2.24 -5,5v4h2v-4c0,-1.65 1.35,-3 3,-3h7v5L21,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/show_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/show_chart.xml
deleted file mode 100644
index 446fe15..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/show_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18.49l6,-6.01 4,4L22,6.92l-1.41,-1.41 -7.09,7.97 -4,-4L2,16.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shower.xml b/compose/material/material/icons/generator/raw-icons/filled/shower.xml
deleted file mode 100644
index 7a40d4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shower.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.08V3h-2v2.08C7.61,5.57 5,8.47 5,12v2h14v-2C19,8.47 16.39,5.57 13,5.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shuffle.xml b/compose/material/material/icons/generator/raw-icons/filled/shuffle.xml
deleted file mode 100644
index 2469a90..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shuffle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,9.17L5.41,4 4,5.41l5.17,5.17 1.42,-1.41zM14.5,4l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5L20,4h-5.5zM14.83,13.41l-1.41,1.41 3.13,3.13L14.5,20L20,20v-5.5l-2.04,2.04 -3.13,-3.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shuffle_on.xml b/compose/material/material/icons/generator/raw-icons/filled/shuffle_on.xml
deleted file mode 100644
index 2c770f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shuffle_on.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L3,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM10.59,9.17L5.41,4 4,5.41l5.17,5.17 1.42,-1.41zM14.5,4l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5L20,4h-5.5zM14.83,13.41l-1.41,1.41 3.13,3.13L14.5,20L20,20v-5.5l-2.04,2.04 -3.13,-3.13z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/shutter_speed.xml b/compose/material/material/icons/generator/raw-icons/filled/shutter_speed.xml
deleted file mode 100644
index 6c2598b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/shutter_speed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,1L9,1v2h6L15,1zM19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9 9,-4.03 9,-9c0,-2.12 -0.74,-4.07 -1.97,-5.61zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM11.68,15L6.35,15c0.57,1.62 1.82,2.92 3.41,3.56l-0.11,-0.06 2.03,-3.5zM17.65,11c-0.57,-1.6 -1.78,-2.89 -3.34,-3.54L12.26,11h5.39zM10.61,18.83c0.45,0.11 0.91,0.17 1.39,0.17 1.34,0 2.57,-0.45 3.57,-1.19l-2.11,-3.9 -2.85,4.92zM7.55,8.99C6.59,10.05 6,11.46 6,13c0,0.34 0.04,0.67 0.09,1h4.72L7.55,8.99zM16.34,17.13C17.37,16.06 18,14.6 18,13c0,-0.34 -0.04,-0.67 -0.09,-1h-4.34l2.77,5.13zM13.33,7.15C12.9,7.06 12.46,7 12,7c-1.4,0 -2.69,0.49 -3.71,1.29l2.32,3.56 2.72,-4.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sick.xml b/compose/material/material/icons/generator/raw-icons/filled/sick.xml
deleted file mode 100644
index 800eecd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sick.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9c-1.1,0 -2,-0.9 -2,-2c0,-1.1 2,-4 2,-4s2,2.9 2,4C23,8.1 22.1,9 21,9zM17.5,7c0,-0.73 0.41,-1.71 0.92,-2.66C16.68,2.88 14.44,2 11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12c0,-0.55 -0.06,-1.09 -0.14,-1.62C21.58,10.45 21.3,10.5 21,10.5C19.07,10.5 17.5,8.93 17.5,7zM15.62,7.38l1.06,1.06L15.62,9.5l1.06,1.06l-1.06,1.06L13.5,9.5L15.62,7.38zM7.32,8.44l1.06,-1.06L10.5,9.5l-2.12,2.12l-1.06,-1.06L8.38,9.5L7.32,8.44zM15.44,17c-0.69,-1.19 -1.97,-2 -3.44,-2s-2.75,0.81 -3.44,2H6.88c0.3,-0.76 0.76,-1.43 1.34,-1.99L5.24,13.3c-0.45,0.26 -1.01,0.28 -1.49,0c-0.72,-0.41 -0.96,-1.33 -0.55,-2.05c0.41,-0.72 1.33,-0.96 2.05,-0.55c0.48,0.28 0.74,0.78 0.74,1.29l3.58,2.07c0.73,-0.36 1.55,-0.56 2.43,-0.56c2.33,0 4.32,1.45 5.12,3.5H15.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sign_language.xml b/compose/material/material/icons/generator/raw-icons/filled/sign_language.xml
deleted file mode 100644
index 1b512c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sign_language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.49,13l-0.93,-1.86c-0.37,-0.74 -0.07,-1.64 0.67,-2.01L12.49,9l5.73,5.46c0.5,0.47 0.78,1.13 0.78,1.81v5.23c0,1.38 -1.12,2.5 -2.5,2.5h-11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H10v-1H4c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h6v-1H3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h7v-1H4.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H12.49zM11.78,7.12c-0.84,0.4 -1.17,0.62 -1.63,1.19l-2.7,-2.85c-0.38,-0.4 -0.36,-1.03 0.04,-1.41c0.4,-0.38 1.03,-0.36 1.41,0.04L11.78,7.12zM9.64,9.21C9.41,9.76 9.35,10.45 9.44,11H8.58L6.31,8.61C5.93,8.21 5.94,7.58 6.35,7.2c0.4,-0.38 1.03,-0.36 1.41,0.04L9.64,9.21zM20.33,13.91l0.88,-0.83c0.5,-0.47 0.79,-1.13 0.79,-1.82V3.35l-0.27,-0.1c-0.78,-0.28 -1.64,0.12 -1.92,0.9L19.1,6.11l-5.5,-5.8c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.79,3.99l-0.73,0.69l-4.82,-5.08c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.78,3.98L15.38,9l3.61,3.43l0.61,0.58C19.89,13.28 20.13,13.58 20.33,13.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_0_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_0_bar.xml
deleted file mode 100644
index 7a4233e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.83V20H6.83L20,6.83M22,2L2,22h20V2L22,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_4_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_4_bar.xml
deleted file mode 100644
index 35c2d69..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt.xml
deleted file mode 100644
index 7ae9bf8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h3v16h-3zM5,14h3v6L5,20zM11,9h3v11h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt_1_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt_1_bar.xml
deleted file mode 100644
index b0c89e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt_2_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt_2_bar.xml
deleted file mode 100644
index 9d48f66..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_alt_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14zM11,9h3v11h-3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_connected_no_internet_0_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_connected_no_internet_0_bar.xml
deleted file mode 100644
index 4a1e6fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_connected_no_internet_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM18,20v2H2L22,2v6h-2V6.83L6.83,20H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_connected_no_internet_4_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_connected_no_internet_4_bar.xml
deleted file mode 100644
index 47710c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_connected_no_internet_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM2,22h16V8h4V2L2,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_no_sim.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_no_sim.xml
deleted file mode 100644
index 8ee1952..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.99,5c0,-1.1 -0.89,-2 -1.99,-2h-7L7.66,5.34 19,16.68 18.99,5zM3.65,3.88L2.38,5.15 5,7.77V19c0,1.1 0.9,2 2,2h10.01c0.35,0 0.67,-0.1 0.96,-0.26l1.88,1.88 1.27,-1.27L3.65,3.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_nodata.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_nodata.xml
deleted file mode 100644
index af93c8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_nodata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-9v9H2L22,2V13zM21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_null.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_null.xml
deleted file mode 100644
index cf15ce5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.83V20H6.83L20,6.83M22,2L2,22h20V2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_off.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_off.xml
deleted file mode 100644
index 55de4c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_cellular_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1l-8.59,8.59L21,18.18V1zM4.77,4.5L3.5,5.77l6.36,6.36L1,21h17.73l2,2L22,21.73 4.77,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_0_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_0_bar.xml
deleted file mode 100644
index 14481ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6L12,6c3.33,0 6.49,1.08 9.08,3.07L12,18.17l-9.08,-9.1C5.51,7.08 8.67,6 12,6M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4L12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_4_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_4_bar.xml
deleted file mode 100644
index 5988e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,21.49L23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4C5.28,3 0.81,6.66 0.36,7l11.63,14.49 0.01,0.01 0.01,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_4_bar_lock.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_4_bar_lock.xml
deleted file mode 100644
index f0ee647..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_4_bar_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_bad.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_bad.xml
deleted file mode 100644
index 0f9e3b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_connected_no_internet_4.xml
deleted file mode 100644
index 0f9e3b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_connected_no_internet_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_off.xml
deleted file mode 100644
index 6f9316a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4 -1.5,0 -2.89,0.19 -4.15,0.48L18.18,13.8 23.64,7zM17.04,15.22L3.27,1.44 2,2.72l2.05,2.06C1.91,5.76 0.59,6.82 0.36,7l11.63,14.49 0.01,0.01 0.01,-0.01 3.9,-4.86 3.32,3.32 1.27,-1.27 -3.46,-3.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_4_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_4_bar.xml
deleted file mode 100644
index 6424547..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_connected_no_internet_4.xml
deleted file mode 100644
index cd79b42..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_connected_no_internet_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21l5,-5.01V8h5.92C19.97,5.51 16.16,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_null.xml b/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_null.xml
deleted file mode 100644
index 4e2c4f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signal_wifi_statusbar_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6c3.33,0 6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/signpost.xml b/compose/material/material/icons/generator/raw-icons/filled/signpost.xml
deleted file mode 100644
index 1c64321..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/signpost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10l5,0l3,-3l-3,-3l-5,0l0,-2l-2,0l0,2l-7,0l0,6l7,0l0,2l-5,0l-3,3l3,3l5,0l0,4l2,0l0,-4l7,0l0,-6l-7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sim_card.xml b/compose/material/material/icons/generator/raw-icons/filled/sim_card.xml
deleted file mode 100644
index 4ebd32b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sim_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.99,4c0,-1.1 -0.89,-2 -1.99,-2h-8L4,8v12c0,1.1 0.9,2 2,2h12.01c1.1,0 1.99,-0.9 1.99,-2l-0.01,-16zM9,19L7,19v-2h2v2zM17,19h-2v-2h2v2zM9,15L7,15v-4h2v4zM13,19h-2v-4h2v4zM13,13h-2v-2h2v2zM17,15h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sim_card_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/sim_card_alert.xml
deleted file mode 100644
index ab9727b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sim_card_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4.02,8 4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM13,17h-2v-2h2v2zM13,13h-2L11,8h2v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sim_card_download.xml b/compose/material/material/icons/generator/raw-icons/filled/sim_card_download.xml
deleted file mode 100644
index 42d1f46..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sim_card_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM12,17l-4,-4h3V9.02L13,9v4h3L12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/single_bed.xml b/compose/material/material/icons/generator/raw-icons/filled/single_bed.xml
deleted file mode 100644
index 5032ca6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/single_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.1 -0.9,-2 -2,-2V7c0,-1.1 -0.9,-2 -2,-2H8C6.9,5 6,5.9 6,7v3c-1.1,0 -2,0.9 -2,2v5h1.33L6,19h1l0.67,-2h8.67L17,19h1l0.67,-2H20V12zM16,10h-3V7h3V10zM8,7h3v3H8V7zM6,12h12v3H6V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sip.xml b/compose/material/material/icons/generator/raw-icons/filled/sip.xml
deleted file mode 100644
index 9f72d25..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sip.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,10.5h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM10,10.5H6.5v0.75H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H5v-1.5h3.5v-0.75H6c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h4V10.5zM13,15h-2V9h2V15zM19,12c0,0.55 -0.45,1 -1,1h-2.5v2H14V9h4c0.55,0 1,0.45 1,1V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/skateboarding.xml b/compose/material/material/icons/generator/raw-icons/filled/skateboarding.xml
deleted file mode 100644
index 93b22b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/skateboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S13,4.1 13,3zM7.25,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S6.84,24 7.25,24S8,23.66 8,23.25S7.66,22.5 7.25,22.5zM15.75,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S15.34,24 15.75,24s0.75,-0.34 0.75,-0.75S16.16,22.5 15.75,22.5zM19.24,19c-0.24,0 -0.45,0.11 -0.59,0.3c-0.55,0.73 -1.42,1.2 -2.4,1.2H16v-6l-4.32,-2.67l1.8,-2.89C14.63,10.78 16.68,12 19,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C14.16,5.64 13.61,5 12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35l-2.4,3.84c-0.31,0.5 -0.39,1.11 -0.21,1.67l1.34,4.15l-3.12,3.76c-0.7,-0.16 -1.3,-0.57 -1.71,-1.12C4.21,19.11 3.99,19 3.75,19C3.31,19 3,19.36 3,19.75c0,0.15 0.05,0.31 0.15,0.45c0.82,1.1 2.13,1.8 3.6,1.8h9.5c1.47,0 2.78,-0.7 3.6,-1.8c0.1,-0.14 0.15,-0.3 0.15,-0.45C20,19.36 19.68,19 19.24,19zM14,20.5H8.6l2.9,-3.5l-1,-3.3l3.5,2.2V20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/skip_next.xml b/compose/material/material/icons/generator/raw-icons/filled/skip_next.xml
deleted file mode 100644
index 4fff2475b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/skip_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18l8.5,-6L6,6v12zM16,6v12h2V6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/skip_previous.xml b/compose/material/material/icons/generator/raw-icons/filled/skip_previous.xml
deleted file mode 100644
index 1805b7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/skip_previous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h2v12L6,18zM9.5,12l8.5,6L18,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sledding.xml b/compose/material/material/icons/generator/raw-icons/filled/sledding.xml
deleted file mode 100644
index 2f029e8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sledding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S14,3.4 14,4.5zM22.8,20.24c-0.68,2.1 -2.94,3.25 -5.04,2.57h0L1,17.36l0.46,-1.43l3.93,1.28l0.46,-1.43L1.93,14.5l0.46,-1.43L4,13.6V9.5l5.47,-2.35c0.39,-0.17 0.84,-0.21 1.28,-0.07c0.95,0.31 1.46,1.32 1.16,2.27l-1.05,3.24L13,12.25c0.89,-0.15 1.76,0.32 2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32,-1.08L14.9,20.3l3.32,1.08l0,0c1.31,0.43 2.72,-0.29 3.15,-1.61c0.43,-1.31 -0.29,-2.72 -1.61,-3.15l0.46,-1.43C22.33,15.88 23.49,18.14 22.8,20.24zM6,14.25l1.01,0.33c-0.22,-0.42 -0.28,-0.92 -0.12,-1.4L7.92,10L6,10.82V14.25zM13.94,18.41l-6.66,-2.16l-0.46,1.43l6.66,2.16L13.94,18.41zM14.63,17.05l-1.18,-2.56l-3.97,0.89L14.63,17.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/slideshow.xml b/compose/material/material/icons/generator/raw-icons/filled/slideshow.xml
deleted file mode 100644
index e38e1b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/slideshow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8v8l5,-4 -5,-4zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/slow_motion_video.xml b/compose/material/material/icons/generator/raw-icons/filled/slow_motion_video.xml
deleted file mode 100644
index 54589b26..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/slow_motion_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.05,9.79L10,7.5v9l3.05,-2.29L16,12zM13.05,9.79L10,7.5v9l3.05,-2.29L16,12zM13.05,9.79L10,7.5v9l3.05,-2.29L16,12zM11,4.07L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62zM5.69,7.1L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9zM4.07,13L2.05,13c0.2,2.01 1,3.84 2.21,5.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43zM22,12c0,5.16 -3.92,9.42 -8.95,9.95v-2.02C16.97,19.41 20,16.05 20,12s-3.03,-7.41 -6.95,-7.93L13.05,2.05C18.08,2.58 22,6.84 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/smart_button.xml b/compose/material/material/icons/generator/raw-icons/filled/smart_button.xml
deleted file mode 100644
index 9f77a98..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/smart_button.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9v6c0,1.1 -0.9,2 -2,2h-1l0,-2h1V9H4v6h6v2H4c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h16C21.1,7 22,7.9 22,9zM14.5,19l1.09,-2.41L18,15.5l-2.41,-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19zM17,14l0.62,-1.38L19,12l-1.38,-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14zM14.5,19l1.09,-2.41L18,15.5l-2.41,-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19zM17,14l0.62,-1.38L19,12l-1.38,-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/smart_display.xml b/compose/material/material/icons/generator/raw-icons/filled/smart_display.xml
deleted file mode 100644
index f795a0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/smart_display.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM9.5,16.5v-9l7,4.5L9.5,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/smart_screen.xml b/compose/material/material/icons/generator/raw-icons/filled/smart_screen.xml
deleted file mode 100644
index e742fd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/smart_screen.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5H3C1.9,5 1,5.9 1,7v10c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7C23,5.9 22.1,5 21,5zM18,17H6V7h12V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,11.25h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/smart_toy.xml b/compose/material/material/icons/generator/raw-icons/filled/smart_toy.xml
deleted file mode 100644
index a19528b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/smart_toy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9V7c0,-1.1 -0.9,-2 -2,-2h-3c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5H6C4.9,5 4,5.9 4,7v2c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3v4c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4c1.66,0 3,-1.34 3,-3C23,10.34 21.66,9 20,9zM7.5,11.5C7.5,10.67 8.17,10 9,10s1.5,0.67 1.5,1.5S9.83,13 9,13S7.5,12.33 7.5,11.5zM16,17H8v-2h8V17zM15,13c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.17,10 15,10s1.5,0.67 1.5,1.5S15.83,13 15,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/smartphone.xml b/compose/material/material/icons/generator/raw-icons/filled/smartphone.xml
deleted file mode 100644
index bd22f2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/smartphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/smoke_free.xml b/compose/material/material/icons/generator/raw-icons/filled/smoke_free.xml
deleted file mode 100644
index 492c242..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/smoke_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6l6.99,7L2,13v3h9.99l7,7 1.26,-1.25 -17,-17zM20.5,13L22,13v3h-1.5zM18,13h1.5v3L18,16zM18.85,4.88c0.62,-0.61 1,-1.45 1,-2.38h-1.5c0,1.02 -0.83,1.85 -1.85,1.85v1.5c2.24,0 4,1.83 4,4.07L20.5,12L22,12L22,9.92c0,-2.23 -1.28,-4.15 -3.15,-5.04zM14.5,8.7h1.53c1.05,0 1.97,0.74 1.97,2.05L18,12h1.5v-1.59c0,-1.8 -1.6,-3.16 -3.47,-3.16L14.5,7.25c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75L14.5,2c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35zM17,15.93L17,13h-2.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/smoking_rooms.xml b/compose/material/material/icons/generator/raw-icons/filled/smoking_rooms.xml
deleted file mode 100644
index eb96cf3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/smoking_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16h15v3L2,19zM20.5,16L22,16v3h-1.5zM18,16h1.5v3L18,19zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38C19.85,3.5 18.35,2 16.5,2v1.5c1.02,0 1.85,0.83 1.85,1.85S17.52,7.2 16.5,7.2v1.5c2.24,0 4,1.83 4,4.07L20.5,15L22,15v-2.24c0,-2.22 -1.28,-4.14 -3.15,-5.03zM16.03,10.2L14.5,10.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35h1.53c1.05,0 1.97,0.74 1.97,2.05L18,15h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sms.xml b/compose/material/material/icons/generator/raw-icons/filled/sms.xml
deleted file mode 100644
index ab72164..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM9,11L7,11L7,9h2v2zM13,11h-2L11,9h2v2zM17,11h-2L15,9h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sms_failed.xml b/compose/material/material/icons/generator/raw-icons/filled/sms_failed.xml
deleted file mode 100644
index 170a74b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sms_failed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM13,14h-2v-2h2v2zM13,10h-2L11,6h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/snippet_folder.xml b/compose/material/material/icons/generator/raw-icons/filled/snippet_folder.xml
deleted file mode 100644
index 1e43495..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/snippet_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88zM22,8v10c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2L2.01,6C2.01,4.9 2.9,4 4,4h6l2,2h8C21.1,6 22,6.9 22,8zM19,11.5L16.5,9H13v8l6,0V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/snooze.xml b/compose/material/material/icons/generator/raw-icons/filled/snooze.xml
deleted file mode 100644
index 6c824a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/snooze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM9,11h3.63L9,15.2L9,17h6v-2h-3.63L15,10.8L15,9L9,9v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/snowboarding.xml b/compose/material/material/icons/generator/raw-icons/filled/snowboarding.xml
deleted file mode 100644
index 3c8e455..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/snowboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S14,4.1 14,3zM21.4,20.09c-0.23,-0.05 -0.46,0.02 -0.64,0.17c-0.69,0.6 -1.64,0.88 -2.6,0.67L17,20.69l-1,-6.19l-3.32,-2.67l1.8,-2.89C15.63,10.78 17.68,12 20,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C15.16,5.64 14.61,5 13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45 -0.37,1 -0.25,1.52L9.5,16L6,18.35l-0.47,-0.1c-0.96,-0.2 -1.71,-0.85 -2.1,-1.67c-0.1,-0.21 -0.28,-0.37 -0.51,-0.42c-0.43,-0.09 -0.82,0.2 -0.9,0.58C1.98,16.88 2,17.05 2.07,17.2c0.58,1.24 1.71,2.2 3.15,2.51l12.63,2.69c1.44,0.31 2.86,-0.11 3.9,-1.01c0.13,-0.11 0.21,-0.26 0.24,-0.41C22.06,20.6 21.83,20.18 21.4,20.09zM8.73,18.93l3.02,-2.03l-0.44,-3.32l2.84,2.02l0.75,4.64L8.73,18.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/snowmobile.xml b/compose/material/material/icons/generator/raw-icons/filled/snowmobile.xml
deleted file mode 100644
index 7444a17..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/snowmobile.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17c0,0.55 -0.45,1 -1,1h-0.17l-2.2,-2.2C20.58,15.37 22,14.4 22,13c0,-1 -8,-8 -8,-8h-3v2h2.25l1.45,1.3L11,11l-9.5,-1L0,13l4.54,1.36l-3.49,1.88C-0.77,17.22 -0.07,20 2,20h6c2.21,0 4,-1.79 4,-4h4l2,2h-3v2h6c1.66,0 3,-1.34 3,-3H22zM8,18H2l5.25,-2.83L10,16C10,17.1 9.11,18 8,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/snowshoeing.xml b/compose/material/material/icons/generator/raw-icons/filled/snowshoeing.xml
deleted file mode 100644
index e1df340..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/snowshoeing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,3.5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S12.5,4.6 12.5,3.5zM6.32,19.03l-1.14,-1.47L4,18.5l2.38,3.04c0.51,0.65 1.16,1.15 1.88,1.41c0.28,0.1 0.53,0.04 0.72,-0.11c0.3,-0.23 0.42,-0.7 0.12,-1.07c-0.08,-0.1 -0.2,-0.17 -0.31,-0.22c-0.43,-0.18 -0.82,-0.45 -1.14,-0.83l-0.08,-0.1L11,18.2l0.89,-3.22l2.11,2v4.52h-2V23h3.87c0.82,0 1.61,-0.21 2.26,-0.61c0.26,-0.16 0.37,-0.39 0.37,-0.64c0,-0.38 -0.3,-0.75 -0.77,-0.75c-0.13,0 -0.26,0.04 -0.37,0.1c-0.4,0.23 -0.87,0.37 -1.36,0.4l0,-6.02l-2.11,-2l0.6,-3C15.79,11.98 17.8,13 20,13v-2c-1.9,0 -3.51,-1.02 -4.31,-2.42l-1,-1.58c-0.4,-0.6 -1,-1 -1.7,-1C12.24,6 11.58,6.34 7,8.28V13h2V9.58l1.79,-0.7L9.2,17L6.32,19.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/soap.xml b/compose/material/material/icons/generator/raw-icons/filled/soap.xml
deleted file mode 100644
index 136ad35..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/soap.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.12,5l-7.18,6.79C1.34,12.35 1,13.14 1,13.97V20c0,1.66 1.34,3 3,3h6.25H12h5.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1h8.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25S19.44,10 18.75,10H8.86c0.64,-1.11 1.48,-2.58 1.49,-2.61c0.09,-0.16 0.14,-0.33 0.14,-0.53c0,-0.26 -0.09,-0.5 -0.26,-0.7C10.22,6.12 9.12,5 9.12,5L9.12,5zM14,6.25c0.41,0 0.75,0.34 0.75,0.75S14.41,7.75 14,7.75S13.25,7.41 13.25,7S13.59,6.25 14,6.25M14,4.75c-1.24,0 -2.25,1.01 -2.25,2.25S12.76,9.25 14,9.25S16.25,8.24 16.25,7S15.24,4.75 14,4.75L14,4.75zM19.75,5.5c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5S19.47,5.5 19.75,5.5M19.75,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S20.85,4 19.75,4L19.75,4zM16.5,1C15.67,1 15,1.67 15,2.5S15.67,4 16.5,4C17.33,4 18,3.33 18,2.5S17.33,1 16.5,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/social_distance.xml b/compose/material/material/icons/generator/raw-icons/filled/social_distance.xml
deleted file mode 100644
index c46410c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/social_distance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S4,6.1 4,5zM8.78,8.58C7.93,8.21 6.99,8 6,8S4.07,8.21 3.22,8.58C2.48,8.9 2,9.62 2,10.43L2,11h8l0,-0.57C10,9.62 9.52,8.9 8.78,8.58zM18,7c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C16,6.1 16.9,7 18,7zM20.78,8.58C19.93,8.21 18.99,8 18,8c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,8.9 14,9.62 14,10.43L14,11h8l0,-0.57C22,9.62 21.52,8.9 20.78,8.58zM22,17l-4,-4v3H6v-3l-4,4l4,4v-3h12v3L22,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/solar_power.xml b/compose/material/material/icons/generator/raw-icons/filled/solar_power.xml
deleted file mode 100644
index b411a90..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/solar_power.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.33,16l7.67,0l0,-3l-7,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16l7.67,0l-0.67,-3l-7,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,18l-8.11,0l0,4l9,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22l9,0l0,-4l-8.11,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.764,7.205l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.705,7.913l2.121,-2.121l1.414,1.414l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,-2.24 5,-5H7C7,4.76 9.24,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sort.xml b/compose/material/material/icons/generator/raw-icons/filled/sort.xml
deleted file mode 100644
index b9a508d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sort.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h6v-2L3,16v2zM3,6v2h18L21,6L3,6zM3,13h12v-2L3,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sort_by_alpha.xml b/compose/material/material/icons/generator/raw-icons/filled/sort_by_alpha.xml
deleted file mode 100644
index 93e2b9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sort_by_alpha.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.94,4.66h-4.72l2.36,-2.36zM10.25,19.37h4.66l-2.33,2.33zM6.1,6.27L1.6,17.73h1.84l0.92,-2.45h5.11l0.92,2.45h1.84L7.74,6.27L6.1,6.27zM4.97,13.64l1.94,-5.18 1.94,5.18L4.97,13.64zM15.73,16.14h6.12v1.59h-8.53v-1.29l5.92,-8.56h-5.88v-1.6h8.3v1.26l-5.93,8.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sos.xml b/compose/material/material/icons/generator/raw-icons/filled/sos.xml
deleted file mode 100644
index 2005165..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V9C15.5,7.9 14.6,7 13.5,7zM13.5,15h-3V9h3V15zM1,15h4v-2H3c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h4v2H3v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2H1V15zM17,15h4v-2h-2c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h4v2h-4v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2h-4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/soup_kitchen.xml b/compose/material/material/icons/generator/raw-icons/filled/soup_kitchen.xml
deleted file mode 100644
index e55da21..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/soup_kitchen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,7C6.06,7.55 6,7.97 6,8.38C6,9.15 7,11 7,12c0,0.95 -0.4,1.5 -0.4,1.5H5.1c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62C4.5,7.97 4.56,7.55 4.9,7H6.4zM11.4,7C11.06,7.55 11,7.97 11,8.38C11,9.15 12,11 12,12c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H11.4zM8.15,7c-0.34,0.55 -0.4,0.97 -0.4,1.38c0,0.77 1,2.63 1,3.62c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H8.15zM21.47,6.5c0,0 0.13,-1.06 0.13,-1.5c0,-1.65 -1.35,-3 -3,-3c-1.54,0 -2.81,1.16 -2.98,2.65L14.53,15H4.01c-0.6,0 -1.09,0.53 -1,1.13C3.53,19.46 6.39,22 9.75,22c3.48,0 6.34,-2.73 6.71,-6.23l1.15,-10.87C17.66,4.39 18.08,4 18.6,4c0.55,0 1,0.45 1,1c0,0.3 -0.1,1.25 -0.1,1.25L21.47,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/source.xml b/compose/material/material/icons/generator/raw-icons/filled/source.xml
deleted file mode 100644
index e73083f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM14,16H6v-2h8V16zM18,12H6v-2h12V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/south.xml b/compose/material/material/icons/generator/raw-icons/filled/south.xml
deleted file mode 100644
index 901daf4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/south.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-1.41,-1.41L13,18.17V2H11v16.17l-4.59,-4.59L5,15l7,7L19,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/south_america.xml b/compose/material/material/icons/generator/raw-icons/filled/south_america.xml
deleted file mode 100644
index ca13a97..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/south_america.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM4,12c0,-1.95 0.7,-3.74 1.87,-5.13L9,10v1c0,1.1 0.9,2 2,2v5.59c0,0.27 0.11,0.52 0.29,0.71L12,20C7.58,20 4,16.42 4,12zM13,19.94V18l3.75,-5.62c0.16,-0.25 0.25,-0.54 0.25,-0.83V10.5c0,-0.55 -0.45,-1 -1,-1h-1.5l-1.4,-1.75C12.72,7.28 12.15,7 11.54,7H8V5.07C9.18,4.39 10.54,4 12,4c4.41,0 8,3.59 8,8C20,16.07 16.94,19.44 13,19.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/south_east.xml b/compose/material/material/icons/generator/raw-icons/filled/south_east.xml
deleted file mode 100644
index 701f3d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/south_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/south_west.xml b/compose/material/material/icons/generator/raw-icons/filled/south_west.xml
deleted file mode 100644
index 6f12610..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/south_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/spa.xml b/compose/material/material/icons/generator/raw-icons/filled/spa.xml
deleted file mode 100644
index e337447..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/spa.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.55,12c-1.07,-0.71 -2.25,-1.27 -3.53,-1.61 1.28,0.34 2.46,0.9 3.53,1.61zM18.98,10.39c-1.29,0.34 -2.49,0.91 -3.57,1.64 1.08,-0.73 2.28,-1.3 3.57,-1.64z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.49,9.63c-0.18,-2.79 -1.31,-5.51 -3.43,-7.63 -2.14,2.14 -3.32,4.86 -3.55,7.63 1.28,0.68 2.46,1.56 3.49,2.63 1.03,-1.06 2.21,-1.94 3.49,-2.63zM8.99,12.28c-0.14,-0.1 -0.3,-0.19 -0.45,-0.29 0.15,0.11 0.31,0.19 0.45,0.29zM15.41,12.03c-0.13,0.09 -0.27,0.16 -0.4,0.26 0.13,-0.1 0.27,-0.17 0.4,-0.26zM12,15.45C9.85,12.17 6.18,10 2,10c0,5.32 3.36,9.82 8.03,11.49 0.63,0.23 1.29,0.4 1.97,0.51 0.68,-0.12 1.33,-0.29 1.97,-0.51C18.64,19.82 22,15.32 22,10c-4.18,0 -7.85,2.17 -10,5.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/space_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/space_bar.xml
deleted file mode 100644
index 9dc510a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/space_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9v4H6V9H4v6h16V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/space_dashboard.xml b/compose/material/material/icons/generator/raw-icons/filled/space_dashboard.xml
deleted file mode 100644
index a14b2ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/space_dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h6V21zM13,21h6c1.1,0 2,-0.9 2,-2v-7h-8V21zM21,10V5c0,-1.1 -0.9,-2 -2,-2h-6v7H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/spatial_audio.xml b/compose/material/material/icons/generator/raw-icons/filled/spatial_audio.xml
deleted file mode 100644
index 6444069..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/spatial_audio.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1h-2c0,4.97 4.03,9 9,9V8C19.14,8 16,4.86 16,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1h-2c0,2.76 2.24,5 5,5V4C21.35,4 20,2.65 20,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/spatial_audio_off.xml b/compose/material/material/icons/generator/raw-icons/filled/spatial_audio_off.xml
deleted file mode 100644
index b6311db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/spatial_audio_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.36,1l-1.41,1.41c2.73,2.73 2.73,7.17 0,9.9l1.41,1.41C23.88,10.21 23.88,4.51 20.36,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.54,10.9c1.95,-1.95 1.95,-5.12 0,-7.07l-1.41,1.41c1.17,1.17 1.17,3.07 0,4.24L17.54,10.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/spatial_tracking.xml b/compose/material/material/icons/generator/raw-icons/filled/spatial_tracking.xml
deleted file mode 100644
index 2eec1cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/spatial_tracking.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.05,2.41L18.64,1c-3.51,3.51 -3.51,9.21 0,12.73l1.41,-1.41C17.32,9.58 17.32,5.14 20.05,2.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.88,5.24l-1.41,-1.41c-1.95,1.95 -1.95,5.12 0,7.07l1.41,-1.41C21.71,8.32 21.71,6.41 22.88,5.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/speaker.xml b/compose/material/material/icons/generator/raw-icons/filled/speaker.xml
deleted file mode 100644
index c5604ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2L7,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,1.99 2,1.99L17,22c1.1,0 2,-0.9 2,-2L19,4c0,-1.1 -0.9,-2 -2,-2zM12,4c1.1,0 2,0.9 2,2s-0.9,2 -2,2c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2zM12,20c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/speaker_group.xml b/compose/material/material/icons/generator/raw-icons/filled/speaker_group.xml
deleted file mode 100644
index d7b2794..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/speaker_group.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.2,1L9.8,1C8.81,1 8,1.81 8,2.8v14.4c0,0.99 0.81,1.79 1.8,1.79l8.4,0.01c0.99,0 1.8,-0.81 1.8,-1.8L20,2.8c0,-0.99 -0.81,-1.8 -1.8,-1.8zM14,3c1.1,0 2,0.89 2,2s-0.9,2 -2,2 -2,-0.89 -2,-2 0.9,-2 2,-2zM14,16.5c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5H4v16c0,1.1 0.89,2 2,2h10v-2H6V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/speaker_notes.xml b/compose/material/material/icons/generator/raw-icons/filled/speaker_notes.xml
deleted file mode 100644
index c908efa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/speaker_notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM8,14L6,14v-2h2v2zM8,11L6,11L6,9h2v2zM8,8L6,8L6,6h2v2zM15,14h-5v-2h5v2zM18,11h-8L10,9h8v2zM18,8h-8L10,6h8v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/speaker_notes_off.xml b/compose/material/material/icons/generator/raw-icons/filled/speaker_notes_off.xml
deleted file mode 100644
index 80e46c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/speaker_notes_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.54,11l-0.54,-0.54L7.54,8 6,6.46 2.38,2.84 1.27,1.73 0,3l2.01,2.01L2,22l4,-4h9l5.73,5.73L22,22.46 17.54,18l-7,-7zM8,14L6,14v-2h2v2zM6,11L6,9l2,2L6,11zM20,2L4.08,2L10,7.92L10,6h8v2h-7.92l1,1L18,9v2h-4.92l6.99,6.99C21.14,17.95 22,17.08 22,16L22,4c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/speaker_phone.xml b/compose/material/material/icons/generator/raw-icons/filled/speaker_phone.xml
deleted file mode 100644
index ab0ad20..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/speaker_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7.07L8.43,8.5c0.91,-0.91 2.18,-1.48 3.57,-1.48s2.66,0.57 3.57,1.48L17,7.07C15.72,5.79 13.95,5 12,5s-3.72,0.79 -5,2.07zM12,1C8.98,1 6.24,2.23 4.25,4.21l1.41,1.41C7.28,4 9.53,3 12,3s4.72,1 6.34,2.62l1.41,-1.41C17.76,2.23 15.02,1 12,1zM14.86,10.01L9.14,10C8.51,10 8,10.51 8,11.14v9.71c0,0.63 0.51,1.14 1.14,1.14h5.71c0.63,0 1.14,-0.51 1.14,-1.14v-9.71c0.01,-0.63 -0.5,-1.13 -1.13,-1.13zM15,20L9,20v-8h6v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/speed.xml b/compose/material/material/icons/generator/raw-icons/filled/speed.xml
deleted file mode 100644
index 7acbed3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/speed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,8.57l-1.23,1.85a8,8 0,0 1,-0.22 7.58L5.07,18A8,8 0,0 1,15.58 6.85l1.85,-1.23A10,10 0,0 0,3.35 19a2,2 0,0 0,1.72 1h13.85a2,2 0,0 0,1.74 -1,10 10,0 0,0 -0.27,-10.44zM10.59,15.41a2,2 0,0 0,2.83 0l5.66,-8.49 -8.49,5.66a2,2 0,0 0,0 2.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/spellcheck.xml b/compose/material/material/icons/generator/raw-icons/filled/spellcheck.xml
deleted file mode 100644
index fae9ad9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/spellcheck.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.45,16h2.09L9.43,3L7.57,3L2.46,16h2.09l1.12,-3h5.64l1.14,3zM6.43,11L8.5,5.48 10.57,11L6.43,11zM21.59,11.59l-8.09,8.09L9.83,16l-1.41,1.41 5.09,5.09L23,13l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/splitscreen.xml b/compose/material/material/icons/generator/raw-icons/filled/splitscreen.xml
deleted file mode 100644
index ae1ea35..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/splitscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v5H6V4H18M18,2H6C4.9,2 4,2.9 4,4v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,15v5H6v-5H18M18,13H6c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-5C20,13.9 19.1,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/spoke.xml b/compose/material/material/icons/generator/raw-icons/filled/spoke.xml
deleted file mode 100644
index b271345..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/spoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7c0,2.21 -1.79,4 -4,4S8,9.21 8,7s1.79,-4 4,-4S16,4.79 16,7zM7,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.21,13 7,13zM17,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S19.21,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports.xml b/compose/material/material/icons/generator/raw-icons/filled/sports.xml
deleted file mode 100644
index 748e3f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.23,6C9.57,6 8.01,6.66 6.87,7.73C6.54,6.73 5.61,6 4.5,6C3.12,6 2,7.12 2,8.5C2,9.88 3.12,11 4.5,11c0.21,0 0.41,-0.03 0.61,-0.08c-0.05,0.25 -0.09,0.51 -0.1,0.78c-0.18,3.68 2.95,6.68 6.68,6.27c2.55,-0.28 4.68,-2.26 5.19,-4.77c0.15,-0.71 0.15,-1.4 0.06,-2.06c-0.09,-0.6 0.38,-1.13 0.99,-1.13H22V6H11.23zM4.5,9C4.22,9 4,8.78 4,8.5C4,8.22 4.22,8 4.5,8S5,8.22 5,8.5C5,8.78 4.78,9 4.5,9zM11,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S12.66,15 11,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_bar.xml
deleted file mode 100644
index ac41cf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-1.56C17.79,8.41 18,7.73 18,7c0,-2.21 -1.79,-4 -4,-4c-0.34,0 -0.66,0.05 -0.98,0.13C12.2,2.45 11.16,2.02 10,2.02c-1.89,0 -3.51,1.11 -4.27,2.71C4.15,5.26 3,6.74 3,8.5c0,1.86 1.28,3.41 3,3.86L6,21h11v-2h2c1.1,0 2,-0.9 2,-2v-6C21,9.9 20.1,9 19,9zM7,10.5c-1.1,0 -2,-0.9 -2,-2c0,-0.85 0.55,-1.6 1.37,-1.88l0.8,-0.27l0.36,-0.76C8,4.62 8.94,4.02 10,4.02c0.79,0 1.39,0.35 1.74,0.65l0.78,0.65c0,0 0.64,-0.32 1.47,-0.32c1.1,0 2,0.9 2,2c0,0 -3,0 -3,0C9.67,7 9.15,10.5 7,10.5zM19,17h-2v-6h2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_baseball.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_baseball.xml
deleted file mode 100644
index 49199a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_baseball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.81,6.28C2.67,7.9 2,9.87 2,12s0.67,4.1 1.81,5.72C6.23,16.95 8,14.68 8,12S6.23,7.05 3.81,6.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.19,6.28C17.77,7.05 16,9.32 16,12s1.77,4.95 4.19,5.72C21.33,16.1 22,14.13 22,12S21.33,7.9 20.19,6.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-3.28 1.97,-6.09 4.79,-7.33C17.01,3.02 14.63,2 12,2S6.99,3.02 5.21,4.67C8.03,5.91 10,8.72 10,12s-1.97,6.09 -4.79,7.33C6.99,20.98 9.37,22 12,22s5.01,-1.02 6.79,-2.67C15.97,18.09 14,15.28 14,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_basketball.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_basketball.xml
deleted file mode 100644
index 98bb2cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_basketball.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.09,11h4.86c-0.16,-1.61 -0.71,-3.11 -1.54,-4.4C18.68,7.43 17.42,9.05 17.09,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.91,11C6.58,9.05 5.32,7.43 3.59,6.6C2.76,7.89 2.21,9.39 2.05,11H6.91z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.07,11c0.32,-2.59 1.88,-4.79 4.06,-6c-1.6,-1.63 -3.74,-2.71 -6.13,-2.95V11H15.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,11H11V2.05C8.61,2.29 6.46,3.37 4.87,5C7.05,6.21 8.61,8.41 8.93,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.07,13H13v8.95c2.39,-0.24 4.54,-1.32 6.13,-2.95C16.95,17.79 15.39,15.59 15.07,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.59,17.4c1.72,-0.83 2.99,-2.46 3.32,-4.4H2.05C2.21,14.61 2.76,16.11 3.59,17.4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.09,13c0.33,1.95 1.59,3.57 3.32,4.4c0.83,-1.29 1.38,-2.79 1.54,-4.4H17.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,13c-0.32,2.59 -1.88,4.79 -4.06,6c1.6,1.63 3.74,2.71 6.13,2.95V13H8.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_cricket.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_cricket.xml
deleted file mode 100644
index 9258e4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_cricket.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.05,12.81L6.56,4.32c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.32,7.15c-0.39,0.39 -0.39,1.02 0,1.41l8.49,8.49c0.39,0.39 1.02,0.39 1.41,0l2.83,-2.83C15.44,13.83 15.44,13.2 15.05,12.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.341,17.756l1.414,-1.414l4.243,4.243l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,5.5m-3.5,0a3.5,3.5 0,1 1,7 0a3.5,3.5 0,1 1,-7 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_esports.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_esports.xml
deleted file mode 100644
index ee0e0f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_esports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.58,16.09l-1.09,-7.66C20.21,6.46 18.52,5 16.53,5H7.47C5.48,5 3.79,6.46 3.51,8.43l-1.09,7.66C2.2,17.63 3.39,19 4.94,19h0c0.68,0 1.32,-0.27 1.8,-0.75L9,16h6l2.25,2.25c0.48,0.48 1.13,0.75 1.8,0.75h0C20.61,19 21.8,17.63 21.58,16.09zM11,11H9v2H8v-2H6v-1h2V8h1v2h2V11zM15,10c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,9.55 15.55,10 15,10zM17,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C18,12.55 17.55,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_football.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_football.xml
deleted file mode 100644
index 1be5a2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_football.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.02,15.62c-0.08,2.42 0.32,4.34 0.67,4.69s2.28,0.76 4.69,0.67L3.02,15.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.08,3.28C10.75,3.7 8.29,4.62 6.46,6.46s-2.76,4.29 -3.18,6.62l7.63,7.63c2.34,-0.41 4.79,-1.34 6.62,-3.18s2.76,-4.29 3.18,-6.62L13.08,3.28zM9.9,15.5l-1.4,-1.4l5.6,-5.6l1.4,1.4L9.9,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.98,8.38c0.08,-2.42 -0.32,-4.34 -0.67,-4.69s-2.28,-0.76 -4.69,-0.67L20.98,8.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_golf.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_golf.xml
deleted file mode 100644
index 6216621..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_golf.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c3.87,0 7,-3.13 7,-7c0,-3.87 -3.13,-7 -7,-7S5,5.13 5,9C5,12.87 8.13,16 12,16zM12,4c2.76,0 5,2.24 5,5s-2.24,5 -5,5s-5,-2.24 -5,-5S9.24,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h2c1.1,0 2,0.9 2,2v1h2v-1c0,-1.1 0.9,-2 2,-2h2v-2H7V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_gymnastics.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_gymnastics.xml
deleted file mode 100644
index 8631ae8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_gymnastics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM1,9h6l7,-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2l-0.5,-10L8,11H1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_handball.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_handball.xml
deleted file mode 100644
index 4ff5718..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_handball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.27,6C13.72,6.95 14.05,8.18 15,8.73c0.95,0.55 2.18,0.22 2.73,-0.73c0.55,-0.95 0.22,-2.18 -0.73,-2.73C16.05,4.72 14.82,5.05 14.27,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.84,10.41c0,0 -1.63,-0.94 -2.6,-1.5c-2.38,-1.38 -3.2,-4.44 -1.82,-6.82l-1.73,-1C8.1,3.83 8.6,7.21 10.66,9.4l-5.15,8.92l1.73,1l1.5,-2.6l1.73,1l-3,5.2l1.73,1l6.29,-10.89c1.14,1.55 1.33,3.69 0.31,5.46l1.73,1C19.13,16.74 18.81,12.91 15.84,10.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,3.8c0.72,0.41 1.63,0.17 2.05,-0.55c0.41,-0.72 0.17,-1.63 -0.55,-2.05c-0.72,-0.41 -1.63,-0.17 -2.05,0.55C11.79,2.47 12.03,3.39 12.75,3.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_hockey.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_hockey.xml
deleted file mode 100644
index 520fe43..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_hockey.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17v3l2,0v-4H3C2.45,16 2,16.45 2,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16H5v4l4.69,-0.01c0.38,0 0.72,-0.21 0.89,-0.55l0.87,-1.9l-1.59,-3.48L9,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,16.29C21.53,16.11 21.28,16 21,16h-1v4l2,0v-3C22,16.72 21.89,16.47 21.71,16.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1c0.17,0.34 0.51,0.55 0.89,0.55L19,20v-4h-4L13.6,12.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_kabaddi.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_kabaddi.xml
deleted file mode 100644
index dc08aa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_kabaddi.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,2.38m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,11.88v-4.7l-5.05,-2.14c-0.97,-0.41 -2.09,-0.06 -2.65,0.84l0,0l-1,1.6c-0.67,1.18 -1.91,2.06 -3.41,2.32l0.06,0.06c0.69,0.69 1.52,1.07 2.46,1.17c0.8,-0.42 1.52,-0.98 2.09,-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1,-2l1.8,8H23l-2.18,-11l-0.62,-3.1l1.8,0.7v3.4H24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.09c0.22,0.15 0.47,0.24 0.72,0.29c0.13,0.02 0.25,0.04 0.38,0.04s0.26,-0.01 0.38,-0.04c0.13,-0.02 0.25,-0.06 0.37,-0.11c0.24,-0.1 0.47,-0.24 0.66,-0.44c0.49,-0.49 0.67,-1.17 0.55,-1.8C13.28,5.66 13.1,5.29 12.8,5c-0.19,-0.19 -0.42,-0.34 -0.66,-0.44c-0.12,-0.05 -0.24,-0.09 -0.37,-0.11s-0.25,-0.04 -0.38,-0.04c-0.12,0 -0.23,0.01 -0.35,0.03c-0.14,0.02 -0.28,0.06 -0.41,0.11C10.4,4.66 10.17,4.81 9.98,5C9.68,5.29 9.5,5.66 9.43,6.03c-0.12,0.63 0.06,1.31 0.55,1.8C10.07,7.93 10.18,8.01 10.29,8.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.24,10.56l-2,-2c-0.1,-0.1 -0.2,-0.18 -0.31,-0.26C8.71,8.16 8.46,8.06 8.21,8.02C8.08,7.99 7.96,7.98 7.83,7.98c-0.51,0 -1.02,0.2 -1.41,0.59l-3.34,3.34c-0.41,0.41 -0.62,0.98 -0.58,1.54C2.5,13.63 2.54,13.82 2.61,14l1.07,2.95l-3.63,3.63L1.46,22l4.24,-4.24v-2.22L7,16.75v5.13h2v-6l-2.12,-2.12l2.36,-2.36l0.71,0.71l0,0c1.29,1.26 2.97,2.04 5.03,2.04l-0.14,-2.07C13.34,12.06 12.14,11.46 11.24,10.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_martial_arts.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_martial_arts.xml
deleted file mode 100644
index 97fdc73..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_martial_arts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,2l-8.2,6.7l-1.21,-1.04l3.6,-2.08l-4.58,-4.58l-1.41,1.41l2.74,2.74l-5.74,3.31l-1.19,4.29l2.46,4.25l1.73,-1l-2.03,-3.52l0.35,-1.3l3.18,1.82l0.5,9l2,0l0.5,-10l8.5,-8.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_mma.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_mma.xml
deleted file mode 100644
index b1e133f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_mma.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-3H7V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c-0.55,0 -1,0.45 -1,1V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v5.8c0,0.13 0.01,0.26 0.04,0.39l0.8,4c0.09,0.47 0.5,0.8 0.98,0.8h10.36c0.45,0 0.89,-0.36 0.98,-0.8l0.8,-4C18.99,11.06 19,10.93 19,10.8V8C19,7.45 18.55,7 18,7zM15,10H7V7h8V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_motorsports.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_motorsports.xml
deleted file mode 100644
index 99386ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_motorsports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11.39c0,-0.65 -0.39,-1.23 -0.98,-1.48L5.44,7.55c-1.48,1.68 -2.32,3.7 -2.8,5.45h7.75C11.28,13 12,12.28 12,11.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,11.22c-0.41,-4.41 -4.56,-7.49 -8.98,-7.2c-2.51,0.16 -4.44,0.94 -5.93,2.04l4.74,2.01c1.33,0.57 2.2,1.87 2.2,3.32c0,1.99 -1.62,3.61 -3.61,3.61H2.21C2,16.31 2,17.2 2,17.2V18c0,1.1 0.9,2 2,2h10C18.67,20 22.41,15.99 21.96,11.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_rugby.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_rugby.xml
deleted file mode 100644
index 39487563..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_rugby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,3.51c-0.56,-0.56 -2.15,-0.97 -4.16,-0.97c-3.08,0 -7.15,0.96 -9.98,3.79C1.66,11.03 2.1,19.07 3.51,20.49c0.56,0.56 2.15,0.97 4.16,0.97c3.08,0 7.15,-0.96 9.98,-3.79C22.34,12.97 21.9,4.93 20.49,3.51zM7.76,7.76c2.64,-2.64 6.35,-3.12 8.03,-3.19c-2.05,0.94 -4.46,2.45 -6.61,4.61c-2.16,2.16 -3.67,4.58 -4.62,6.63C4.66,13.33 5.44,10.07 7.76,7.76zM16.24,16.24c-2.64,2.64 -6.35,3.12 -8.03,3.19c2.05,-0.94 4.46,-2.45 6.61,-4.61c2.16,-2.16 3.67,-4.58 4.62,-6.63C19.34,10.67 18.56,13.93 16.24,16.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_score.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_score.xml
deleted file mode 100644
index 788aa62..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6H9V4h2V6zM15,4h-2v2h2V4zM9,14h2v-2H9V14zM19,10V8h-2v2H19zM19,14v-2h-2v2H19zM13,14h2v-2h-2V14zM19,4h-2v2h2V4zM13,8V6h-2v2H13zM7,10V8h2V6H7V4H5v16h2v-8h2v-2H7zM15,12h2v-2h-2V12zM11,10v2h2v-2H11zM9,8v2h2V8H9zM13,10h2V8h-2V10zM15,6v2h2V6H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_soccer.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_soccer.xml
deleted file mode 100644
index d01405e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_soccer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,5.3l1.35,-0.95c1.82,0.56 3.37,1.76 4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3zM9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69C6.28,6.12 7.83,4.92 9.65,4.35zM7.08,17.11l-1.14,0.1C4.73,15.81 4,13.99 4,12c0,-0.12 0.01,-0.23 0.02,-0.35l1,-0.73L6.4,11.4l1.46,4.34L7.08,17.11zM14.5,19.59C13.71,19.85 12.87,20 12,20s-1.71,-0.15 -2.5,-0.41l-0.69,-1.49L9.45,17h5.11l0.64,1.11L14.5,19.59zM14.27,15H9.73l-1.35,-4.02L12,8.44l3.63,2.54L14.27,15zM18.06,17.21l-1.14,-0.1l-0.79,-1.37l1.46,-4.34l1.39,-0.47l1,0.73C19.99,11.77 20,11.88 20,12C20,13.99 19.27,15.81 18.06,17.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_tennis.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_tennis.xml
deleted file mode 100644
index f81e308..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_tennis.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.52,2.49c-2.34,-2.34 -6.62,-1.87 -9.55,1.06c-1.6,1.6 -2.52,3.87 -2.54,5.46c-0.02,1.58 0.26,3.89 -1.35,5.5l-4.24,4.24l1.42,1.42l4.24,-4.24c1.61,-1.61 3.92,-1.33 5.5,-1.35s3.86,-0.94 5.46,-2.54C21.38,9.11 21.86,4.83 19.52,2.49zM10.32,11.68c-1.53,-1.53 -1.05,-4.61 1.06,-6.72s5.18,-2.59 6.72,-1.06c1.53,1.53 1.05,4.61 -1.06,6.72S11.86,13.21 10.32,11.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17c0.53,0 1.04,0.21 1.41,0.59c0.78,0.78 0.78,2.05 0,2.83C19.04,20.79 18.53,21 18,21s-1.04,-0.21 -1.41,-0.59c-0.78,-0.78 -0.78,-2.05 0,-2.83C16.96,17.21 17.47,17 18,17M18,15c-1.02,0 -2.05,0.39 -2.83,1.17c-1.56,1.56 -1.56,4.09 0,5.66C15.95,22.61 16.98,23 18,23s2.05,-0.39 2.83,-1.17c1.56,-1.56 1.56,-4.09 0,-5.66C20.05,15.39 19.02,15 18,15L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sports_volleyball.xml b/compose/material/material/icons/generator/raw-icons/filled/sports_volleyball.xml
deleted file mode 100644
index 6df9d54..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sports_volleyball.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4.01C3.58,5.84 2,8.73 2,12c0,1.46 0.32,2.85 0.89,4.11L6,14.31V4.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11.42V2.05C9.94,2.16 8.93,2.43 8,2.84v10.32L11,11.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.15l-8.11,4.68c0.61,0.84 1.34,1.59 2.18,2.2L15,14.89L12,13.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.96v3.46l8.11,4.68c0.42,-0.93 0.7,-1.93 0.82,-2.98L13,7.96z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.07,21.2C9.28,21.71 10.6,22 12,22c3.34,0 6.29,-1.65 8.11,-4.16L17,16.04L8.07,21.2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.92,10.81c-0.55,-4.63 -4.26,-8.3 -8.92,-8.76v3.6L21.92,10.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/square.xml b/compose/material/material/icons/generator/raw-icons/filled/square.xml
deleted file mode 100644
index f455541..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v18h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/square_foot.xml b/compose/material/material/icons/generator/raw-icons/filled/square_foot.xml
deleted file mode 100644
index 0dde139..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/square_foot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,17.66l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06L9.7,9.7l-1.06,1.06l-0.71,-0.71l1.06,-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06,-1.06L4,4v14c0,1.1 0.9,2 2,2h14L17.66,17.66zM7,17v-5.76L12.76,17H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/ssid_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/ssid_chart.xml
deleted file mode 100644
index 2f7895c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/ssid_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47zM21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8,-2l6.2,6l5,-4h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stacked_bar_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/stacked_bar_chart.xml
deleted file mode 100644
index 2a7fd72..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stacked_bar_chart.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h4v5h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12h4v8h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stacked_line_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/stacked_line_chart.xml
deleted file mode 100644
index e776269..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stacked_line_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19.99l7.5,-7.51l4,4l7.09,-7.97L22,9.92l-8.5,9.56l-4,-4l-6,6.01L2,19.99zM3.5,15.49l6,-6.01l4,4L22,3.92l-1.41,-1.41l-7.09,7.97l-4,-4L2,13.99L3.5,15.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stadium.xml b/compose/material/material/icons/generator/raw-icons/filled/stadium.xml
deleted file mode 100644
index a893597..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stadium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5L3,7V3L7,5zM18,3v4l4,-2L18,3zM11,2v4l4,-2L11,2zM5,10.04C6.38,10.53 8.77,11 12,11s5.62,-0.47 7,-0.96C19,9.86 16.22,9 12,9S5,9.86 5,10.04zM15,17H9l0,4.88C4.94,21.49 2,20.34 2,19v-9c0,-1.66 4.48,-3 10,-3s10,1.34 10,3v9c0,1.34 -2.94,2.48 -7,2.87L15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stairs.xml b/compose/material/material/icons/generator/raw-icons/filled/stairs.xml
deleted file mode 100644
index df96034..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stairs.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM18,8h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/star.xml b/compose/material/material/icons/generator/raw-icons/filled/star.xml
deleted file mode 100644
index 3383294..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/star.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/star_border.xml b/compose/material/material/icons/generator/raw-icons/filled/star_border.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/star_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/star_border_purple500.xml b/compose/material/material/icons/generator/raw-icons/filled/star_border_purple500.xml
deleted file mode 100644
index f044555..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/star_border_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89M12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35,-7.59L22,10h-7.58L12,2L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/star_half.xml b/compose/material/material/icons/generator/raw-icons/filled/star_half.xml
deleted file mode 100644
index 2706d4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/star_half.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63,-7.03L22,9.24zM12,15.4V6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/star_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/star_outline.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/star_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/star_purple500.xml b/compose/material/material/icons/generator/raw-icons/filled/star_purple500.xml
deleted file mode 100644
index f044555..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/star_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89M12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35,-7.59L22,10h-7.58L12,2L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/star_rate.xml b/compose/material/material/icons/generator/raw-icons/filled/star_rate.xml
deleted file mode 100644
index d18c527..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/star_rate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.43,10l-2.43,-8l-2.43,8l-7.57,0l6.18,4.41l-2.35,7.59l6.17,-4.69l6.18,4.69l-2.35,-7.59l6.17,-4.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stars.xml b/compose/material/material/icons/generator/raw-icons/filled/stars.xml
deleted file mode 100644
index ecfbeb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stars.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM16.23,18L12,15.45 7.77,18l1.12,-4.81 -3.73,-3.23 4.92,-0.42L12,5l1.92,4.53 4.92,0.42 -3.73,3.23L16.23,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/start.xml b/compose/material/material/icons/generator/raw-icons/filled/start.xml
deleted file mode 100644
index dcd56ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/start.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6,-6l-6,-6L14.59,7.41zM2,6v12h2V6H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stay_current_landscape.xml b/compose/material/material/icons/generator/raw-icons/filled/stay_current_landscape.xml
deleted file mode 100644
index 798c036..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stay_current_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.01,7L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -1.99,0.9 -1.99,2zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stay_current_portrait.xml b/compose/material/material/icons/generator/raw-icons/filled/stay_current_portrait.xml
deleted file mode 100644
index 7b9fc07..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stay_current_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stay_primary_landscape.xml b/compose/material/material/icons/generator/raw-icons/filled/stay_primary_landscape.xml
deleted file mode 100644
index 798c036..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stay_primary_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.01,7L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -1.99,0.9 -1.99,2zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stay_primary_portrait.xml b/compose/material/material/icons/generator/raw-icons/filled/stay_primary_portrait.xml
deleted file mode 100644
index 7b9fc07..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stay_primary_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sticky_note_2.xml b/compose/material/material/icons/generator/raw-icons/filled/sticky_note_2.xml
deleted file mode 100644
index 7f5edba..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sticky_note_2.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H4.99C3.89,3 3,3.9 3,5l0.01,14c0,1.1 0.89,2 1.99,2h10l6,-6V5C21,3.9 20.1,3 19,3zM7,8h10v2H7V8zM12,14H7v-2h5V14zM14,19.5V14h5.5L14,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stop.xml b/compose/material/material/icons/generator/raw-icons/filled/stop.xml
deleted file mode 100644
index d099f1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h12v12H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stop_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/stop_circle.xml
deleted file mode 100644
index a25ea07..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stop_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM16,16H8V8h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stop_screen_share.xml b/compose/material/material/icons/generator/raw-icons/filled/stop_screen_share.xml
deleted file mode 100644
index 9c1ec9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stop_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.22,18.02l2,2L24,20.02v-2h-2.78zM21.99,16.02l0.01,-10c0,-1.11 -0.9,-2 -2,-2L7.22,4.02l5.23,5.23c0.18,-0.04 0.36,-0.07 0.55,-0.1L13,7.02l4,3.73 -1.58,1.47 5.54,5.54c0.61,-0.33 1.03,-0.99 1.03,-1.74zM2.39,1.73L1.11,3l1.54,1.54c-0.4,0.36 -0.65,0.89 -0.65,1.48v10c0,1.1 0.89,2 2,2L0,18.02v2h18.13l2.71,2.71 1.27,-1.27L2.39,1.73zM7,15.02c0.31,-1.48 0.92,-2.95 2.07,-4.06l1.59,1.59c-1.54,0.38 -2.7,1.18 -3.66,2.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/storage.xml b/compose/material/material/icons/generator/raw-icons/filled/storage.xml
deleted file mode 100644
index 5ca45e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v-4L2,16v4zM4,17h2v2L4,19v-2zM2,4v4h20L22,4L2,4zM6,7L4,7L4,5h2v2zM2,14h20v-4L2,10v4zM4,11h2v2L4,13v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/store.xml b/compose/material/material/icons/generator/raw-icons/filled/store.xml
deleted file mode 100644
index 76ec4df..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4v2h16L20,4zM21,14v-2l-1,-5L4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1zM12,18L6,18v-4h6v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/store_mall_directory.xml b/compose/material/material/icons/generator/raw-icons/filled/store_mall_directory.xml
deleted file mode 100644
index 76ec4df..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/store_mall_directory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4v2h16L20,4zM21,14v-2l-1,-5L4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1zM12,18L6,18v-4h6v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/storefront.xml b/compose/material/material/icons/generator/raw-icons/filled/storefront.xml
deleted file mode 100644
index 6c9d94e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/storefront.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,8.89l-1.05,-4.37c-0.22,-0.9 -1,-1.52 -1.91,-1.52H5.05C4.15,3 3.36,3.63 3.15,4.52L2.1,8.89c-0.24,1.02 -0.02,2.06 0.62,2.88C2.8,11.88 2.91,11.96 3,12.06V19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6.94c0.09,-0.09 0.2,-0.18 0.28,-0.28C21.92,10.96 22.15,9.91 21.9,8.89zM18.91,4.99l1.05,4.37c0.1,0.42 0.01,0.84 -0.25,1.17C19.57,10.71 19.27,11 18.77,11c-0.61,0 -1.14,-0.49 -1.21,-1.14L16.98,5L18.91,4.99zM13,5h1.96l0.54,4.52c0.05,0.39 -0.07,0.78 -0.33,1.07C14.95,10.85 14.63,11 14.22,11C13.55,11 13,10.41 13,9.69V5zM8.49,9.52L9.04,5H11v4.69C11,10.41 10.45,11 9.71,11c-0.34,0 -0.65,-0.15 -0.89,-0.41C8.57,10.3 8.45,9.91 8.49,9.52zM4.04,9.36L5.05,5h1.97L6.44,9.86C6.36,10.51 5.84,11 5.23,11c-0.49,0 -0.8,-0.29 -0.93,-0.47C4.03,10.21 3.94,9.78 4.04,9.36zM5,19v-6.03C5.08,12.98 5.15,13 5.23,13c0.87,0 1.66,-0.36 2.24,-0.95c0.6,0.6 1.4,0.95 2.31,0.95c0.87,0 1.65,-0.36 2.23,-0.93c0.59,0.57 1.39,0.93 2.29,0.93c0.84,0 1.64,-0.35 2.24,-0.95c0.58,0.59 1.37,0.95 2.24,0.95c0.08,0 0.15,-0.02 0.23,-0.03V19H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/storm.xml b/compose/material/material/icons/generator/raw-icons/filled/storm.xml
deleted file mode 100644
index 88f6d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/storm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.93,8C16.72,4.18 11.82,2.87 8,5.07c-1.41,0.82 -2.48,2 -3.16,3.37C4.71,6.24 5.06,4.04 5.86,2H3.74C2.2,6.49 2.52,11.58 5.07,16c1.1,1.91 2.88,3.19 4.86,3.72c1.98,0.53 4.16,0.31 6.07,-0.79c1.41,-0.82 2.48,-2 3.16,-3.37c0.13,2.2 -0.21,4.4 -1.01,6.44h2.11C21.79,17.51 21.48,12.42 18.93,8zM15,17.2c-2.87,1.65 -6.54,0.67 -8.2,-2.2c-0.11,-0.2 -0.21,-0.4 -0.3,-0.6C5.3,11.64 6.33,8.34 9,6.8c2.86,-1.65 6.54,-0.67 8.2,2.2c0.11,0.2 0.21,0.4 0.3,0.6C18.7,12.36 17.67,15.66 15,17.2zM12,10c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,10 12,10M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S14.21,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/straight.xml b/compose/material/material/icons/generator/raw-icons/filled/straight.xml
deleted file mode 100644
index 8ae6ff1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/straight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.83l-1.59,1.58l-1.41,-1.41l4,-4l4,4l-1.41,1.41l-1.59,-1.58l0,14.17l-2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/straighten.xml b/compose/material/material/icons/generator/raw-icons/filled/straighten.xml
deleted file mode 100644
index ec0052b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/straighten.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,8h2v4h2L7,8h2v4h2L11,8h2v4h2L15,8h2v4h2L19,8h2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stream.xml b/compose/material/material/icons/generator/raw-icons/filled/stream.xml
deleted file mode 100644
index 71d35c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stream.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.05,8.59L6.03,4.55h-0.01l-0.31,-0.32 -1.42,1.41 4.02,4.05 0.01,-0.01 0.31,0.32zM13.943,8.617l4.405,-4.392L19.76,5.64l-4.405,4.393zM10.01,15.36l-1.42,-1.41 -4.03,4.01 -0.32,0.33 1.41,1.41 4.03,-4.02zM19.76,18.3l-3.99,-4.01 -0.36,-0.35L14,15.35l3.99,4.01 0.35,0.35z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/streetview.xml b/compose/material/material/icons/generator/raw-icons/filled/streetview.xml
deleted file mode 100644
index 4085e83..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/streetview.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.56,14.33c-0.34,0.27 -0.56,0.7 -0.56,1.17V21h7c1.1,0 2,-0.9 2,-2v-5.98c-0.94,-0.33 -1.95,-0.52 -3,-0.52 -2.03,0 -3.93,0.7 -5.44,1.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6c0,-1.08 0.27,-2.1 0.74,-3H5c-1.1,0 -2,0.9 -2,2v14c0,0.55 0.23,1.05 0.59,1.41l9.82,-9.82C12.23,9.42 11.5,7.8 11.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/strikethrough_s.xml b/compose/material/material/icons/generator/raw-icons/filled/strikethrough_s.xml
deleted file mode 100644
index e799d3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/strikethrough_s.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.85,7.08C6.85,4.37 9.45,3 12.24,3c1.64,0 3,0.49 3.9,1.28c0.77,0.65 1.46,1.73 1.46,3.24h-3.01c0,-0.31 -0.05,-0.59 -0.15,-0.85c-0.29,-0.86 -1.2,-1.28 -2.25,-1.28c-1.86,0 -2.34,1.02 -2.34,1.7c0,0.48 0.25,0.88 0.74,1.21C10.97,8.55 11.36,8.78 12,9H7.39C7.18,8.66 6.85,8.11 6.85,7.08zM21,12v-2H3v2h9.62c1.15,0.45 1.96,0.75 1.96,1.97c0,1 -0.81,1.67 -2.28,1.67c-1.54,0 -2.93,-0.54 -2.93,-2.51H6.4c0,0.55 0.08,1.13 0.24,1.58c0.81,2.29 3.29,3.3 5.67,3.3c2.27,0 5.3,-0.89 5.3,-4.05c0,-0.3 -0.01,-1.16 -0.48,-1.94H21V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/stroller.xml b/compose/material/material/icons/generator/raw-icons/filled/stroller.xml
deleted file mode 100644
index 0cfec6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/stroller.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7V6.48C22,4.56 20.52,3 18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03l-8.8,10.32C6.12,16 6.58,17 7.43,17L15,17c1.1,0 2,-0.9 2,-2V6.27C17.58,5.59 17.97,5 18.65,5C19.42,5 20,5.66 20,6.48V7H22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.3,4.1C13.03,3.4 11.56,3 10,3C8.03,3 6.21,3.64 4.72,4.72l4.89,4.89L14.3,4.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/style.xml b/compose/material/material/icons/generator/raw-icons/filled/style.xml
deleted file mode 100644
index 8420955..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.53,19.65l1.34,0.56v-9.03l-2.43,5.86c-0.41,1.02 0.08,2.19 1.09,2.61zM22.03,15.95L17.07,3.98c-0.31,-0.75 -1.04,-1.21 -1.81,-1.23 -0.26,0 -0.53,0.04 -0.79,0.15L7.1,5.95c-0.75,0.31 -1.21,1.03 -1.23,1.8 -0.01,0.27 0.04,0.54 0.15,0.8l4.96,11.97c0.31,0.76 1.05,1.22 1.83,1.23 0.26,0 0.52,-0.05 0.77,-0.15l7.36,-3.05c1.02,-0.42 1.51,-1.59 1.09,-2.6zM7.88,8.75c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM5.88,19.75c0,1.1 0.9,2 2,2h1.45l-3.45,-8.34v6.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subdirectory_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/filled/subdirectory_arrow_left.xml
deleted file mode 100644
index d02c6f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subdirectory_arrow_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9l1.42,1.42L8.83,14H18V4h2v12H8.83l3.59,3.58L11,21l-6,-6 6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subdirectory_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/filled/subdirectory_arrow_right.xml
deleted file mode 100644
index 64066a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subdirectory_arrow_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-6,6 -1.42,-1.42L15.17,16H4V4h2v10h9.17l-3.59,-3.58L13,9l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subject.xml b/compose/material/material/icons/generator/raw-icons/filled/subject.xml
deleted file mode 100644
index 5e46992..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subject.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subscript.xml b/compose/material/material/icons/generator/raw-icons/filled/subscript.xml
deleted file mode 100644
index ac0d19e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18h-2v1h3v1h-4v-2c0,-0.55 0.45,-1 1,-1h2v-1h-3v-1h3c0.55,0 1,0.45 1,1v1C23,17.55 22.55,18 22,18zM5.88,18h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subscriptions.xml b/compose/material/material/icons/generator/raw-icons/filled/subscriptions.xml
deleted file mode 100644
index ff97899..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subscriptions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8L4,8L4,6h16v2zM18,2L6,2v2h12L18,2zM22,12v8c0,1.1 -0.9,2 -2,2L4,22c-1.1,0 -2,-0.9 -2,-2v-8c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2zM16,16l-6,-3.27v6.53L16,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subtitles.xml b/compose/material/material/icons/generator/raw-icons/filled/subtitles.xml
deleted file mode 100644
index a363555..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subtitles.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM4,12h4v2L4,14v-2zM14,18L4,18v-2h10v2zM20,18h-4v-2h4v2zM20,14L10,14v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subtitles_off.xml b/compose/material/material/icons/generator/raw-icons/filled/subtitles_off.xml
deleted file mode 100644
index 72abca9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subtitles_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H6.83l8,8H20v2h-3.17l4.93,4.93C21.91,18.65 22,18.34 22,18V6C22,4.9 21.1,4 20,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.04,3.87l1.2,1.2C2.09,5.35 2,5.66 2,6v12c0,1.1 0.9,2 2,2h13.17l2.96,2.96l1.41,-1.41L2.45,2.45L1.04,3.87zM8,12v2H4v-2H8zM14,16.83V18H4v-2h9.17L14,16.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/subway.xml b/compose/material/material/icons/generator/raw-icons/filled/subway.xml
deleted file mode 100644
index 37c29c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/subway.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.01,9h10v5h-10zM17.8,2.8C16,2.09 13.86,2 12,2c-1.86,0 -4,0.09 -5.8,0.8C3.53,3.84 2,6.05 2,8.86L2,22h20L22,8.86c0,-2.81 -1.53,-5.02 -4.2,-6.06zM18,15.88c0,1.45 -1.18,2.62 -2.63,2.62l1.13,1.12L16.5,20L15,20l-1.5,-1.5h-2.83L9.17,20L7.5,20v-0.38l1.12,-1.12C7.18,18.5 6,17.32 6,15.88L6,9c0,-2.63 3,-3 6,-3 3.32,0 6,0.38 6,3v6.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/summarize.xml b/compose/material/material/icons/generator/raw-icons/filled/summarize.xml
deleted file mode 100644
index d730af4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/summarize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3H5C3.9,3 3.01,3.9 3.01,5L3,19c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V9L15,3zM8,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,17 8,17zM8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,13 8,13zM8,9C7.45,9 7,8.55 7,8s0.45,-1 1,-1s1,0.45 1,1S8.55,9 8,9zM14,10V4.5l5.5,5.5H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/superscript.xml b/compose/material/material/icons/generator/raw-icons/filled/superscript.xml
deleted file mode 100644
index e3e4fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/superscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-2v1h3v1h-4V7c0,-0.55 0.45,-1 1,-1h2V5h-3V4h3c0.55,0 1,0.45 1,1v1C23,6.55 22.55,7 22,7zM5.88,20h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/supervised_user_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/supervised_user_circle.xml
deleted file mode 100644
index 61b9bbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/supervised_user_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2c-5.52,0 -10,4.48 -10,10s4.48,10 10,10 10,-4.48 10,-10 -4.48,-10 -10,-10zM15.6,8.34c1.07,0 1.93,0.86 1.93,1.93 0,1.07 -0.86,1.93 -1.93,1.93 -1.07,0 -1.93,-0.86 -1.93,-1.93 -0.01,-1.07 0.86,-1.93 1.93,-1.93zM9.6,6.76c1.3,0 2.36,1.06 2.36,2.36 0,1.3 -1.06,2.36 -2.36,2.36s-2.36,-1.06 -2.36,-2.36c0,-1.31 1.05,-2.36 2.36,-2.36zM9.6,15.89v3.75c-2.4,-0.75 -4.3,-2.6 -5.14,-4.96 1.05,-1.12 3.67,-1.69 5.14,-1.69 0.53,0 1.2,0.08 1.9,0.22 -1.64,0.87 -1.9,2.02 -1.9,2.68zM11.99,20c-0.27,0 -0.53,-0.01 -0.79,-0.04v-4.07c0,-1.42 2.94,-2.13 4.4,-2.13 1.07,0 2.92,0.39 3.84,1.15 -1.17,2.97 -4.06,5.09 -7.45,5.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/supervisor_account.xml b/compose/material/material/icons/generator/raw-icons/filled/supervisor_account.xml
deleted file mode 100644
index 99848fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/supervisor_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c1.38,0 2.49,-1.12 2.49,-2.5S17.88,7 16.5,7C15.12,7 14,8.12 14,9.5s1.12,2.5 2.5,2.5zM9,11c1.66,0 2.99,-1.34 2.99,-3S10.66,5 9,5C7.34,5 6,6.34 6,8s1.34,3 3,3zM16.5,14c-1.83,0 -5.5,0.92 -5.5,2.75L11,19h11v-2.25c0,-1.83 -3.67,-2.75 -5.5,-2.75zM9,13c-2.33,0 -7,1.17 -7,3.5L2,19h7v-2.25c0,-0.85 0.33,-2.34 2.37,-3.47C10.5,13.1 9.66,13 9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/support.xml b/compose/material/material/icons/generator/raw-icons/filled/support.xml
deleted file mode 100644
index b9b10ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/support.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM19.46,9.12l-2.78,1.15c-0.51,-1.36 -1.58,-2.44 -2.95,-2.94l1.15,-2.78C16.98,5.35 18.65,7.02 19.46,9.12zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15zM9.13,4.54l1.17,2.78c-1.38,0.5 -2.47,1.59 -2.98,2.97L4.54,9.13C5.35,7.02 7.02,5.35 9.13,4.54zM4.54,14.87l2.78,-1.15c0.51,1.38 1.59,2.46 2.97,2.96l-1.17,2.78C7.02,18.65 5.35,16.98 4.54,14.87zM14.88,19.46l-1.15,-2.78c1.37,-0.51 2.45,-1.59 2.95,-2.97l2.78,1.17C18.65,16.98 16.98,18.65 14.88,19.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/support_agent.xml b/compose/material/material/icons/generator/raw-icons/filled/support_agent.xml
deleted file mode 100644
index 4ba9636..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/support_agent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.22C21,6.73 16.74,3 12,3c-4.69,0 -9,3.65 -9,9.28C2.4,12.62 2,13.26 2,14v2c0,1.1 0.9,2 2,2h1v-6.1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7V19h-8v2h8c1.1,0 2,-0.9 2,-2v-1.22c0.59,-0.31 1,-0.92 1,-1.64v-2.3C22,13.14 21.59,12.53 21,12.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.03C17.52,8.18 15.04,6 12.05,6c-3.03,0 -6.29,2.51 -6.03,6.45c2.47,-1.01 4.33,-3.21 4.86,-5.89C12.19,9.19 14.88,11 18,11.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/surfing.xml b/compose/material/material/icons/generator/raw-icons/filled/surfing.xml
deleted file mode 100644
index 9727e06..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/surfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM17,1.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S18.1,1.5 17,1.5zM14.43,8.48L12.18,10L16,13v3.84c0.53,0.38 1.03,0.78 1.49,1.17C16.81,18.59 15.94,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.33,0 -0.65,-0.05 -0.96,-0.14C5.19,16.9 3,14.72 3,13.28C3,12.25 4.01,12 4.85,12c0.98,0 2.28,0.31 3.7,0.83l-0.53,-3.1C7.91,9.06 8.2,8.35 8.8,7.94l2.15,-1.45l-2,-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03c0.45,0.09 0.93,0.37 1.22,0.89l0.88,1.55C17.01,8.98 18.64,10 20.5,10v2C17.91,12 15.64,10.58 14.43,8.48zM10.3,11.1l0.44,2.65c0.92,0.42 2.48,1.27 3.26,1.75V14L10.3,11.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/surround_sound.xml b/compose/material/material/icons/generator/raw-icons/filled/surround_sound.xml
deleted file mode 100644
index 5107118..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/surround_sound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM7.76,16.24l-1.41,1.41C4.78,16.1 4,14.05 4,12c0,-2.05 0.78,-4.1 2.34,-5.66l1.41,1.41C6.59,8.93 6,10.46 6,12s0.59,3.07 1.76,4.24zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM17.66,17.66l-1.41,-1.41C17.41,15.07 18,13.54 18,12s-0.59,-3.07 -1.76,-4.24l1.41,-1.41C19.22,7.9 20,9.95 20,12c0,2.05 -0.78,4.1 -2.34,5.66zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swap_calls.xml b/compose/material/material/icons/generator/raw-icons/filled/swap_calls.xml
deleted file mode 100644
index d6f085e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swap_calls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-4,4h3v7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8v7H2l4,4 4,-4H7V8c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v7c0,2.21 1.79,4 4,4s4,-1.79 4,-4V8h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swap_horiz.xml b/compose/material/material/icons/generator/raw-icons/filled/swap_horiz.xml
deleted file mode 100644
index 7a7844d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swap_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.99,11L3,15l3.99,4v-3H14v-2H6.99v-3zM21,9l-3.99,-4v3H10v2h7.01v3L21,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swap_horizontal_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/swap_horizontal_circle.xml
deleted file mode 100644
index 55b3f54..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swap_horizontal_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10zM15,6.5l3.5,3.5 -3.5,3.5L15,11h-4L11,9h4L15,6.5zM9,17.5L5.5,14 9,10.5L9,13h4v2L9,15v2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swap_vert.xml b/compose/material/material/icons/generator/raw-icons/filled/swap_vert.xml
deleted file mode 100644
index bbd7d9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swap_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.01V10h-2v7.01h-3L15,21l4,-3.99h-3zM9,3L5,6.99h3V14h2V6.99h3L9,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swap_vertical_circle.xml b/compose/material/material/icons/generator/raw-icons/filled/swap_vertical_circle.xml
deleted file mode 100644
index fd76b6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swap_vertical_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM6.5,9L10,5.5 13.5,9L11,9v4L9,13L9,9L6.5,9zM17.5,15L14,18.5 10.5,15L13,15v-4h2v4h2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe.xml
deleted file mode 100644
index b2f0b355..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,14.75l-4.09,-2.04c-0.28,-0.14 -0.58,-0.21 -0.89,-0.21H13v-6C13,5.67 12.33,5 11.5,5S10,5.67 10,6.5v10.74L6.75,16.5c-0.33,-0.07 -0.68,0.03 -0.92,0.28L5,17.62l4.54,4.79C9.92,22.79 10.68,23 11.21,23h6.16c1,0 1.84,-0.73 1.98,-1.72l0.63,-4.46C20.1,15.97 19.66,15.14 18.89,14.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.13,3.87C18.69,2.17 15.6,1 12,1S5.31,2.17 3.87,3.87L2,2v5h5L4.93,4.93c1,-1.29 3.7,-2.43 7.07,-2.43s6.07,1.14 7.07,2.43L17,7h5V2L20.13,3.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_down.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_down.xml
deleted file mode 100644
index 06f48e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.8,12.18c-0.2,-0.86 -0.3,-1.76 -0.3,-2.68c0,-2.84 0.99,-5.45 2.63,-7.5L7.2,3.07C5.82,4.85 5,7.08 5,9.5c0,0.88 0.11,1.74 0.32,2.56l1.62,-1.62L8,11.5L4.5,15L1,11.5l1.06,-1.06L3.8,12.18zM13.85,11.62l-2.68,-5.37c-0.37,-0.74 -1.27,-1.04 -2.01,-0.67C8.41,5.96 8.11,6.86 8.48,7.6l4.81,9.6L10.05,18c-0.33,0.09 -0.59,0.33 -0.7,0.66L9,19.78l6.19,2.25c0.5,0.17 1.28,0.02 1.75,-0.22l5.51,-2.75c0.89,-0.45 1.32,-1.48 1,-2.42l-1.43,-4.27c-0.27,-0.82 -1.04,-1.37 -1.9,-1.37h-4.56c-0.31,0 -0.62,0.07 -0.89,0.21L13.85,11.62"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_down_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_down_alt.xml
deleted file mode 100644
index 3443576..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.9c2.28,-0.46 4,-2.48 4,-4.9c0,-2.76 -2.24,-5 -5,-5S7,6.24 7,9c0,2.42 1.72,4.44 4,4.9v4.27l-1.59,-1.59L8,18l4,4l4,-4l-1.41,-1.41L13,18.17V13.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_left.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_left.xml
deleted file mode 100644
index 9ec0dbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,16.82l-0.63,4.46C19.21,22.27 18.36,23 17.37,23h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59L5,17.62l0.83,-0.84c0.24,-0.24 0.58,-0.35 0.92,-0.28L10,17.24V6.5C10,5.67 10.67,5 11.5,5S13,5.67 13,6.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04C19.66,15.14 20.1,15.97 19.98,16.82zM12,2.5c4.74,0 7.67,2.52 8.43,4.5H22c-0.73,-2.88 -4.51,-6 -10,-6C8.78,1 5.82,2.13 3.5,4.02V2H2v5h5V5.5H4.09C6.21,3.64 8.97,2.5 12,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_left_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_left_alt.xml
deleted file mode 100644
index d3e56e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_left_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,13c0.46,2.28 2.48,4 4.9,4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5c-2.42,0 -4.44,1.72 -4.9,4H5.83l1.59,-1.59L6,8l-4,4l4,4l1.41,-1.41L5.83,13H10.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_right.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_right.xml
deleted file mode 100644
index 27e17b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,16.82l-0.63,4.46C19.21,22.27 18.36,23 17.37,23h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59L5,17.62l0.83,-0.84c0.24,-0.24 0.58,-0.35 0.92,-0.28L10,17.24V6.5C10,5.67 10.67,5 11.5,5S13,5.67 13,6.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04C19.66,15.14 20.1,15.97 19.98,16.82zM19.91,5.5H17V7h5V2h-1.5v2.02C18.18,2.13 15.22,1 12,1C6.51,1 2.73,4.12 2,7h1.57C4.33,5.02 7.26,2.5 12,2.5C15.03,2.5 17.79,3.64 19.91,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_right_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_right_alt.xml
deleted file mode 100644
index 88ebf61..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_right_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.9,11C13.44,8.72 11.42,7 9,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h4.27l-1.59,1.59L18,16l4,-4l-4,-4l-1.41,1.41L18.17,11H13.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_up.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_up.xml
deleted file mode 100644
index 106b4e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.06,5.56L1,4.5L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76 5,5.62 5,6.5c0,2.42 0.82,4.65 2.2,6.43L6.13,14C4.49,11.95 3.5,9.34 3.5,6.5c0,-0.92 0.1,-1.82 0.3,-2.68L2.06,5.56zM13.85,11.62l-2.68,-5.37c-0.37,-0.74 -1.27,-1.04 -2.01,-0.67C8.41,5.96 8.11,6.86 8.48,7.6l4.81,9.6L10.05,18c-0.33,0.09 -0.59,0.33 -0.7,0.66L9,19.78l6.19,2.25c0.5,0.17 1.28,0.02 1.75,-0.22l5.51,-2.75c0.89,-0.45 1.32,-1.48 1,-2.42l-1.43,-4.27c-0.27,-0.82 -1.04,-1.37 -1.9,-1.37h-4.56c-0.31,0 -0.62,0.07 -0.89,0.21L13.85,11.62"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_up_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_up_alt.xml
deleted file mode 100644
index b2c0e86..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.59,1.59L16,6l-4,-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-2.42 -1.72,-4.44 -4,-4.9V5.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/swipe_vertical.xml b/compose/material/material/icons/generator/raw-icons/filled/swipe_vertical.xml
deleted file mode 100644
index fa408a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/swipe_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,3.5h2.02C1.13,5.82 0,8.78 0,12s1.13,6.18 3.02,8.5H1V22h5v-5H4.5v2.91c-1.86,-2.11 -3,-4.88 -3,-7.91s1.14,-5.79 3,-7.91V7H6V2H1V3.5zM13.85,11.62l-2.68,-5.37c-0.37,-0.74 -1.27,-1.04 -2.01,-0.67C8.41,5.96 8.11,6.86 8.48,7.6l4.81,9.6L10.05,18c-0.33,0.09 -0.59,0.33 -0.7,0.66L9,19.78l6.19,2.25c0.5,0.17 1.28,0.02 1.75,-0.22l5.51,-2.75c0.89,-0.45 1.32,-1.48 1,-2.42l-1.43,-4.27c-0.27,-0.82 -1.04,-1.37 -1.9,-1.37h-4.56c-0.31,0 -0.62,0.07 -0.89,0.21L13.85,11.62"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/switch_access_shortcut.xml b/compose/material/material/icons/generator/raw-icons/filled/switch_access_shortcut.xml
deleted file mode 100644
index 6c27e1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/switch_access_shortcut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-2.73 1.08,-5.27 2.75,-7.25L12,2h7v7l-2.82,-2.82C14.84,7.82 14,9.88 14,12c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/switch_access_shortcut_add.xml b/compose/material/material/icons/generator/raw-icons/filled/switch_access_shortcut_add.xml
deleted file mode 100644
index 84b07f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/switch_access_shortcut_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,14h-2v-2h-2v2h-2v2h2v2h2v-2h2V14zM7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-2.73 1.08,-5.27 2.75,-7.25L12,2h7v7l-2.82,-2.82C14.84,7.82 14,9.88 14,12c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/switch_account.xml b/compose/material/material/icons/generator/raw-icons/filled/switch_account.xml
deleted file mode 100644
index 9ec061e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/switch_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM14,4c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM20,16L8,16v-1.5c0,-1.99 4,-3 6,-3s6,1.01 6,3L20,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/switch_camera.xml b/compose/material/material/icons/generator/raw-icons/filled/switch_camera.xml
deleted file mode 100644
index 797a039..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/switch_camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM15,15.5L15,13L9,13v2.5L5.5,12 9,8.5L9,11h6L15,8.5l3.5,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/switch_left.xml b/compose/material/material/icons/generator/raw-icons/filled/switch_left.xml
deleted file mode 100644
index 613a9f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/switch_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,8.62v6.76L5.12,12L8.5,8.62M10,5l-7,7l7,7V5L10,5zM14,5v14l7,-7L14,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/switch_right.xml b/compose/material/material/icons/generator/raw-icons/filled/switch_right.xml
deleted file mode 100644
index 0d7b534..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/switch_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.38V8.62L18.88,12L15.5,15.38M14,19l7,-7l-7,-7V19L14,19zM10,19V5l-7,7L10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/switch_video.xml b/compose/material/material/icons/generator/raw-icons/filled/switch_video.xml
deleted file mode 100644
index 8ea09aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/switch_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.5L18,6c0,-0.55 -0.45,-1 -1,-1L3,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-3.5l4,4v-13l-4,4zM13,15.5L13,13L7,13v2.5L3.5,12 7,8.5L7,11h6L13,8.5l3.5,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/synagogue.xml b/compose/material/material/icons/generator/raw-icons/filled/synagogue.xml
deleted file mode 100644
index 1f107c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/synagogue.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8v13h4v-5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v5h4V8l-6,-5L6,8zM13.5,10c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5S13.5,9.17 13.5,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5C1.9,5 1,5.9 1,7v1h4V7C5,5.9 4.1,5 3,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h4v12h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.1,0 -2,0.9 -2,2v1h4V7C23,5.9 22.1,5 21,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sync.xml b/compose/material/material/icons/generator/raw-icons/filled/sync.xml
deleted file mode 100644
index c2f773a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,1L8,5l4,4L12,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46C19.54,15.03 20,13.57 20,12c0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.24,7.74C4.46,8.97 4,10.43 4,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sync_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/sync_alt.xml
deleted file mode 100644
index 360b6a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sync_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12l4,-4l-4,-4l0,3l-15,0l0,2l15,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12l-4,4l4,4l0,-3l15,0l0,-2l-15,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sync_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/sync_disabled.xml
deleted file mode 100644
index fdc5191..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sync_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6.35L10,4.26c-0.8,0.21 -1.55,0.54 -2.23,0.96l1.46,1.46c0.25,-0.12 0.5,-0.24 0.77,-0.33zM2.86,5.41l2.36,2.36C4.45,8.99 4,10.44 4,12c0,2.21 0.91,4.2 2.36,5.64L4,20h6v-6l-2.24,2.24C6.68,15.15 6,13.66 6,12c0,-1 0.25,-1.94 0.68,-2.77l8.08,8.08c-0.25,0.13 -0.5,0.25 -0.77,0.34v2.09c0.8,-0.21 1.55,-0.54 2.23,-0.96l2.36,2.36 1.27,-1.27L4.14,4.14 2.86,5.41zM20,4h-6v6l2.24,-2.24C17.32,8.85 18,10.34 18,12c0,1 -0.25,1.94 -0.68,2.77l1.46,1.46C19.55,15.01 20,13.56 20,12c0,-2.21 -0.91,-4.2 -2.36,-5.64L20,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sync_lock.xml b/compose/material/material/icons/generator/raw-icons/filled/sync_lock.xml
deleted file mode 100644
index 1ea0e23..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sync_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,4h-6v6h2V7.56c1.22,1.1 2,2.67 2,4.44h2c0,-2.4 -1.06,-4.54 -2.73,-6H20V4zM20,17v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C21,17.45 20.55,17 20,17zM19,17h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/sync_problem.xml b/compose/material/material/icons/generator/raw-icons/filled/sync_problem.xml
deleted file mode 100644
index bb6258a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/sync_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12c0,2.21 0.91,4.2 2.36,5.64L3,20h6v-6l-2.24,2.24C5.68,15.15 5,13.66 5,12c0,-2.61 1.67,-4.83 4,-5.65L9,4.26C5.55,5.15 3,8.27 3,12zM11,17h2v-2h-2v2zM21,4h-6v6l2.24,-2.24C18.32,8.85 19,10.34 19,12c0,2.61 -1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74 0,-2.21 -0.91,-4.2 -2.36,-5.64L21,4zM11,13h2L13,7h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/system_security_update.xml b/compose/material/material/icons/generator/raw-icons/filled/system_security_update.xml
deleted file mode 100644
index 335a88a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/system_security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3zM17,18H7V6h10V18zM16,12h-3V8h-2v4H8l4,4L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/system_security_update_good.xml b/compose/material/material/icons/generator/raw-icons/filled/system_security_update_good.xml
deleted file mode 100644
index 01c3448..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/system_security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/system_security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/filled/system_security_update_warning.xml
deleted file mode 100644
index f2629bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/system_security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5.01,1.9 5.01,3v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/system_update.xml b/compose/material/material/icons/generator/raw-icons/filled/system_update.xml
deleted file mode 100644
index c6f3370..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/system_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/system_update_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/system_update_alt.xml
deleted file mode 100644
index 2f7e2b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/system_update_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16.5l4,-4h-3v-9h-2v9L8,12.5l4,4zM21,3.5h-6v1.99h6v14.03L3,19.52L3,5.49h6L9,3.5L3,3.5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2v-14c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tab.xml b/compose/material/material/icons/generator/raw-icons/filled/tab.xml
deleted file mode 100644
index d8a1ee7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tab.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h10v4h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tab_unselected.xml b/compose/material/material/icons/generator/raw-icons/filled/tab_unselected.xml
deleted file mode 100644
index 3266695..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tab_unselected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h2L3,7L1,7v2zM1,13h2v-2L1,11v2zM1,5h2L3,3c-1.1,0 -2,0.9 -2,2zM9,21h2v-2L9,19v2zM1,17h2v-2L1,15v2zM3,21v-2L1,19c0,1.1 0.9,2 2,2zM21,3h-8v6h10L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17h2v-2h-2v2zM9,5h2L11,3L9,3v2zM5,21h2v-2L5,19v2zM5,5h2L7,3L5,3v2zM21,21c1.1,0 2,-0.9 2,-2h-2v2zM21,13h2v-2h-2v2zM13,21h2v-2h-2v2zM17,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/table_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/table_bar.xml
deleted file mode 100644
index 3cf9675..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/table_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.5C22,5.57 17.52,4 12,4S2,5.57 2,7.5c0,1.81 3.95,3.31 9,3.48V15H9.35c-0.82,0 -1.55,0.5 -1.86,1.26L6,20h2l1.2,-3h5.6l1.2,3h2l-1.5,-3.74C16.2,15.5 15.46,15 14.65,15H13v-4.02C18.05,10.81 22,9.31 22,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/table_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/table_chart.xml
deleted file mode 100644
index 7424e647..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/table_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10.02h5L15,21h-5zM17,21h3c1.1,0 2,-0.9 2,-2v-9h-5v11zM20,3L5,3c-1.1,0 -2,0.9 -2,2v3h19L22,5c0,-1.1 -0.9,-2 -2,-2zM3,19c0,1.1 0.9,2 2,2h3L8,10L3,10v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/table_restaurant.xml b/compose/material/material/icons/generator/raw-icons/filled/table_restaurant.xml
deleted file mode 100644
index db7cd04..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/table_restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,9.73l-1.43,-5C20.41,4.3 20.02,4 19.57,4H4.43C3.98,4 3.59,4.3 3.47,4.73l-1.43,5C1.86,10.36 2.34,11 3,11h2.2L4,20h2l0.67,-5h10.67L18,20h2l-1.2,-9H21C21.66,11 22.14,10.36 21.96,9.73zM6.93,13l0.27,-2h9.6l0.27,2H6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/table_rows.xml b/compose/material/material/icons/generator/raw-icons/filled/table_rows.xml
deleted file mode 100644
index 5f829f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/table_rows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8H3V4h18V8zM21,10H3v4h18V10zM21,16H3v4h18V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/table_view.xml b/compose/material/material/icons/generator/raw-icons/filled/table_view.xml
deleted file mode 100644
index 106b8a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/table_view.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H9C7.9,7 7,7.9 7,9v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,9v2H9V9H19zM13,15v-2h2v2H13zM15,17v2h-2v-2H15zM11,15H9v-2h2V15zM17,13h2v2h-2V13zM9,17h2v2H9V17zM17,19v-2h2v2H17zM6,17H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2v1h-2V5H5v10h1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tablet.xml b/compose/material/material/icons/generator/raw-icons/filled/tablet.xml
deleted file mode 100644
index 66bb458..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tablet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 1.99,-0.9 1.99,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18L5,6h14v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tablet_android.xml b/compose/material/material/icons/generator/raw-icons/filled/tablet_android.xml
deleted file mode 100644
index c6c0fa4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tablet_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,0H6C4.34,0 3,1.34 3,3v18c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3V3C21,1.34 19.66,0 18,0zM14,22h-4v-1h4V22zM19.25,19H4.75V3h14.5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tablet_mac.xml b/compose/material/material/icons/generator/raw-icons/filled/tablet_mac.xml
deleted file mode 100644
index 84c2007..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tablet_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,0h-14C3.12,0 2,1.12 2,2.5v19C2,22.88 3.12,24 4.5,24h14c1.38,0 2.5,-1.12 2.5,-2.5v-19C21,1.12 19.88,0 18.5,0zM11.5,23c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,19L4,19L4,3h15v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tag.xml b/compose/material/material/icons/generator/raw-icons/filled/tag.xml
deleted file mode 100644
index 32ea2cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10L20,8h-4L16,4h-2v4h-4L10,4L8,4v4L4,8v2h4v4L4,14v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zM14,14h-4v-4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tag_faces.xml b/compose/material/material/icons/generator/raw-icons/filled/tag_faces.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tag_faces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/takeout_dining.xml b/compose/material/material/icons/generator/raw-icons/filled/takeout_dining.xml
deleted file mode 100644
index 53e8933..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/takeout_dining.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.26,11h13.48l-0.67,9H5.93L5.26,11zM9.02,4h5.95L19,7.38l1.59,-1.59L22,7.21L19.21,10H4.79L2,7.21l1.41,-1.41L5,7.38L9.02,4z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tap_and_play.xml b/compose/material/material/icons/generator/raw-icons/filled/tap_and_play.xml
deleted file mode 100644
index 8dd1722..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tap_and_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM2,20v3h3c0,-1.66 -1.34,-3 -3,-3zM2,12v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.92,-11 -11,-11zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v7.37c0.69,0.16 1.36,0.37 2,0.64L7,5h10v13h-3.03c0.52,1.25 0.84,2.59 0.95,4L17,22c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tapas.xml b/compose/material/material/icons/generator/raw-icons/filled/tapas.xml
deleted file mode 100644
index e443ea7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tapas.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10V1h-8v9c0,1.86 1.28,3.41 3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41 22,11.86 22,10zM20,3v3h-4V3H20zM12.5,11.5c0,1.38 -1.12,2.5 -2.5,2.5H8v9H6v-9H4c-1.38,0 -2.5,-1.12 -2.5,-2.5C1.5,10.12 2.62,9 4,9h2V8H4C2.62,8 1.5,6.88 1.5,5.5C1.5,4.12 2.62,3 4,3h2V1h2v2h2c1.38,0 2.5,1.12 2.5,2.5C12.5,6.88 11.38,8 10,8H8v1h2C11.38,9 12.5,10.12 12.5,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/task.xml b/compose/material/material/icons/generator/raw-icons/filled/task.xml
deleted file mode 100644
index 3a38d3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM10.94,18L7.4,14.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L10.94,18zM13,9V3.5L18.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/task_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/task_alt.xml
deleted file mode 100644
index 20fd5c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/task_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM19.79,10.22C19.92,10.79 20,11.39 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8c1.58,0 3.04,0.46 4.28,1.25l1.44,-1.44C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10c0,-1.19 -0.22,-2.33 -0.6,-3.39L19.79,10.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/taxi_alert.xml b/compose/material/material/icons/generator/raw-icons/filled/taxi_alert.xml
deleted file mode 100644
index 6ee3b868..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/taxi_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8A7,7 0,0 0,9.68 5L7,5v2L4.5,7a1.5,1.5 0,0 0,-1.42 1.01L1,14v8a1,1 0,0 0,1 1h1a1,1 0,0 0,1 -1v-1h12v1a1,1 0,0 0,1 1h1a1,1 0,0 0,1 -1v-7.68A7.01,7.01 0,0 0,23 8zM4.5,8.5h4.53a6.93,6.93 0,0 0,2.08 4.5L3,13l1.5,-4.5zM4.5,18a1.5,1.5 0,1 1,0 -3,1.5 1.5,0 0,1 0,3zM15.5,18a1.5,1.5 0,1 1,0 -3,1.5 1.5,0 0,1 0,3zM18.43,12.37l-0.21,0.11 -0.18,0.09a4.97,4.97 0,0 1,-0.42 0.16l-0.22,0.07 -0.23,0.06 -0.2,0.05a5,5 0,0 1,-5.94 -4.41A4.07,4.07 0,0 1,11 8l0.02,-0.47 0.02,-0.17 0.04,-0.28 0.04,-0.21 0.05,-0.21 0.07,-0.24 0.05,-0.13a4.99,4.99 0,0 1,9.69 1.7,4.96 4.96,0 0,1 -2.55,4.38zM15,4h2v5h-2zM15,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/temple_buddhist.xml b/compose/material/material/icons/generator/raw-icons/filled/temple_buddhist.xml
deleted file mode 100644
index f670a0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/temple_buddhist.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9.02c0,1.09 -0.89,1.98 -1.98,1.98H4.98C3.89,11 3,10.11 3,9.02H1c0,1.86 1.28,3.4 3,3.84V22h6v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h6v-9.14c0.55,-0.14 3,-1.04 3,-3.86L21,9.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.86V10h12V8.86c0.55,-0.14 3,-1.04 3,-3.86l-2,0.02C19,6.11 18.11,7 17.02,7H6.98C5.89,7 5,6.11 5,5.02H3C3,6.87 4.28,8.42 6,8.86z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1l-3.75,5l7.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/temple_hindu.xml b/compose/material/material/icons/generator/raw-icons/filled/temple_hindu.xml
deleted file mode 100644
index a489c72..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/temple_hindu.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.6,11l10.8,0l-0.9,-3l-9,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11l0,2l-16,0l0,-2l-2,0l0,11l8,0l0,-5l4,0l0,5l8,0l0,-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,6l-0.9,-3l0,-2l-2,0l0,2l-2.03,0l0,-2l-2,0l0,2.12l-0.87,2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/terminal.xml b/compose/material/material/icons/generator/raw-icons/filled/terminal.xml
deleted file mode 100644
index e03f112..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/terminal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2,4.9 2,6v12c0,1.1 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.11,4 20,4zM20,18H4V8h16V18zM18,17h-6v-2h6V17zM7.5,17l-1.41,-1.41L8.67,13l-2.59,-2.59L7.5,9l4,4L7.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/terrain.xml b/compose/material/material/icons/generator/raw-icons/filled/terrain.xml
deleted file mode 100644
index 22347e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/terrain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-3.75,5 2.85,3.8 -1.6,1.2C9.81,13.75 7,10 7,10l-6,8h22L14,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_decrease.xml b/compose/material/material/icons/generator/raw-icons/filled/text_decrease.xml
deleted file mode 100644
index d62489b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_decrease.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.99,19h2.42l1.27,-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19zM5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41zM23,11v2h-8v-2H23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_fields.xml b/compose/material/material/icons/generator/raw-icons/filled/text_fields.xml
deleted file mode 100644
index a66ba01..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_fields.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,4v3h5v12h3V7h5V4H2.5zM21.5,9h-9v3h3v7h3v-7h3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_format.xml b/compose/material/material/icons/generator/raw-icons/filled/text_format.xml
deleted file mode 100644
index 79b414c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_format.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17v2h14v-2L5,17zM9.5,12.8h5l0.9,2.2h2.1L12.75,4h-1.5L6.5,15h2.1l0.9,-2.2zM12,5.98L13.87,11h-3.74L12,5.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_increase.xml b/compose/material/material/icons/generator/raw-icons/filled/text_increase.xml
deleted file mode 100644
index 80ddd74..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_increase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.99,19h2.42l1.27,-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19zM5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41zM20,11h3v2h-3v3h-2v-3h-3v-2h3V8h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_rotate_up.xml b/compose/material/material/icons/generator/raw-icons/filled/text_rotate_up.xml
deleted file mode 100644
index 7c1ea5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_rotate_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12v1.5l11,4.75v-2.1l-2.2,-0.9v-5l2.2,-0.9v-2.1L3,12zM10,14.62l-5.02,-1.87L10,10.88v3.74zM18,4.25l-3,3h2v12.5h2L19,7.25h2l-3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_rotate_vertical.xml b/compose/material/material/icons/generator/raw-icons/filled/text_rotate_vertical.xml
deleted file mode 100644
index 35f8743..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_rotate_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.75,5h-1.5L9.5,16h2.1l0.9,-2.2h5l0.9,2.2h2.1L15.75,5zM13.13,12L15,6.98 16.87,12h-3.74zM6,19.75l3,-3L7,16.75L7,4.25L5,4.25v12.5L3,16.75l3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_angledown.xml b/compose/material/material/icons/generator/raw-icons/filled/text_rotation_angledown.xml
deleted file mode 100644
index 144dce2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_angledown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.4,4.91l-1.06,-1.06L7.2,8.27l1.48,1.48 2.19,-0.92 3.54,3.54 -0.92,2.19 1.48,1.48L19.4,4.91zM12.59,8.01l4.87,-2.23 -2.23,4.87 -2.64,-2.64zM14.27,21v-4.24l-1.41,1.41 -8.84,-8.84 -1.42,1.42 8.84,8.84L10.03,21h4.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_angleup.xml b/compose/material/material/icons/generator/raw-icons/filled/text_rotation_angleup.xml
deleted file mode 100644
index 546f313..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_angleup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.49,4.21L3.43,5.27 7.85,16.4l1.48,-1.48 -0.92,-2.19 3.54,-3.54 2.19,0.92 1.48,-1.48L4.49,4.21zM7.58,11.01L5.36,6.14l4.87,2.23 -2.65,2.64zM20.57,9.33h-4.24l1.41,1.41 -8.84,8.84L10.32,21l8.84,-8.84 1.41,1.41L20.57,9.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_down.xml b/compose/material/material/icons/generator/raw-icons/filled/text_rotation_down.xml
deleted file mode 100644
index c0bd184..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12v-1.5L10,5.75v2.1l2.2,0.9v5l-2.2,0.9v2.1L21,12zM14,9.38l5.02,1.87L14,13.12L14,9.38zM6,19.75l3,-3L7,16.75L7,4.25L5,4.25v12.5L3,16.75l3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_none.xml b/compose/material/material/icons/generator/raw-icons/filled/text_rotation_none.xml
deleted file mode 100644
index e197527..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_rotation_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,3h-1.5L6.5,14h2.1l0.9,-2.2h5l0.9,2.2h2.1L12.75,3zM10.13,10L12,4.98 13.87,10h-3.74zM20.5,18l-3,-3v2L5,17v2h12.5v2l3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/text_snippet.xml b/compose/material/material/icons/generator/raw-icons/filled/text_snippet.xml
deleted file mode 100644
index 0f78596..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/text_snippet.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.41,8.41l-4.83,-4.83C15.21,3.21 14.7,3 14.17,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9.83C21,9.3 20.79,8.79 20.41,8.41zM7,7h7v2H7V7zM17,17H7v-2h10V17zM17,13H7v-2h10V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/textsms.xml b/compose/material/material/icons/generator/raw-icons/filled/textsms.xml
deleted file mode 100644
index ab72164..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/textsms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM9,11L7,11L7,9h2v2zM13,11h-2L11,9h2v2zM17,11h-2L15,9h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/texture.xml b/compose/material/material/icons/generator/raw-icons/filled/texture.xml
deleted file mode 100644
index b2741ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/texture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.51,3.08L3.08,19.51c0.09,0.34 0.27,0.65 0.51,0.9 0.25,0.24 0.56,0.42 0.9,0.51L20.93,4.49c-0.19,-0.69 -0.73,-1.23 -1.42,-1.41zM11.88,3L3,11.88v2.83L14.71,3h-2.83zM5,3c-1.1,0 -2,0.9 -2,2v2l4,-4L5,3zM19,21c0.55,0 1.05,-0.22 1.41,-0.59 0.37,-0.36 0.59,-0.86 0.59,-1.41v-2l-4,4h2zM9.29,21h2.83L21,12.12L21,9.29L9.29,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/theater_comedy.xml b/compose/material/material/icons/generator/raw-icons/filled/theater_comedy.xml
deleted file mode 100644
index ae96b50..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/theater_comedy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5C2,19.54 4.46,22 7.5,22s5.5,-2.46 5.5,-5.5V10H2V16.5zM7.5,18.5C6.12,18.5 5,17.83 5,17h5C10,17.83 8.88,18.5 7.5,18.5zM10,13c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C9,13.45 9.45,13 10,13zM5,13c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C4,13.45 4.45,13 5,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3v6h3v2.5c0,-0.83 1.12,-1.5 2.5,-1.5c1.38,0 2.5,0.67 2.5,1.5h-5V14v0.39c0.75,0.38 1.6,0.61 2.5,0.61c3.04,0 5.5,-2.46 5.5,-5.5V3H11zM14,8.08c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C15,7.64 14.55,8.08 14,8.08zM19,8.08c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,7.64 19.55,8.08 19,8.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/theaters.xml b/compose/material/material/icons/generator/raw-icons/filled/theaters.xml
deleted file mode 100644
index afcfb9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/theaters.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2L20,3h-2zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thermostat.xml b/compose/material/material/icons/generator/raw-icons/filled/thermostat.xml
deleted file mode 100644
index 06fdc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,15.37 16.21,13.91 15,13zM11,11V5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h-1v1h1v1v1h-1v1h1v1H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thermostat_auto.xml b/compose/material/material/icons/generator/raw-icons/filled/thermostat_auto.xml
deleted file mode 100644
index 67bbfed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thermostat_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12V6c0,-1.66 -1.34,-3 -3,-3S5,4.34 5,6v6c-1.21,0.91 -2,2.37 -2,4c0,1.12 0.38,2.14 1,2.97V19h0.02c0.91,1.21 2.35,2 3.98,2s3.06,-0.79 3.98,-2H12v-0.03c0.62,-0.83 1,-1.85 1,-2.97C13,14.37 12.21,12.91 11,12zM5,16c0,-0.94 0.45,-1.84 1.2,-2.4L7,13V6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v7l0.8,0.6c0.75,0.57 1.2,1.46 1.2,2.4H5zM18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22L18.62,4zM16.47,9.39l1.31,-3.72h0.08l1.31,3.72H16.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thumb_down.xml b/compose/material/material/icons/generator/raw-icons/filled/thumb_down.xml
deleted file mode 100644
index 73a81f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thumb_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3L6,3c-0.83,0 -1.54,0.5 -1.84,1.22l-3.02,7.05c-0.09,0.23 -0.14,0.47 -0.14,0.73v2c0,1.1 0.9,2 2,2h6.31l-0.95,4.57 -0.03,0.32c0,0.41 0.17,0.79 0.44,1.06L9.83,23l6.59,-6.59c0.36,-0.36 0.58,-0.86 0.58,-1.41L17,5c0,-1.1 -0.9,-2 -2,-2zM19,3v12h4L23,3h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thumb_down_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/thumb_down_alt.xml
deleted file mode 100644
index ccd0921..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thumb_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4h-2c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h2V4zM2.17,11.12c-0.11,0.25 -0.17,0.52 -0.17,0.8V13c0,1.1 0.9,2 2,2h5.5l-0.92,4.65c-0.05,0.22 -0.02,0.46 0.08,0.66 0.23,0.45 0.52,0.86 0.88,1.22L10,22l6.41,-6.41c0.38,-0.38 0.59,-0.89 0.59,-1.42V6.34C17,5.05 15.95,4 14.66,4h-8.1c-0.71,0 -1.36,0.37 -1.72,0.97l-2.67,6.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thumb_down_off_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/thumb_down_off_alt.xml
deleted file mode 100644
index e2a0bfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thumb_down_off_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.89,18.28l0.57,-2.89c0.12,-0.59 -0.04,-1.2 -0.42,-1.66 -0.38,-0.46 -0.94,-0.73 -1.54,-0.73L4,13v-1.08L6.57,6h8.09c0.18,0 0.34,0.16 0.34,0.34v7.84l-4.11,4.1M10,22l6.41,-6.41c0.38,-0.38 0.59,-0.89 0.59,-1.42L17,6.34C17,5.05 15.95,4 14.66,4h-8.1c-0.71,0 -1.36,0.37 -1.72,0.97l-2.67,6.15c-0.11,0.25 -0.17,0.52 -0.17,0.8L2,13c0,1.1 0.9,2 2,2h5.5l-0.92,4.65c-0.05,0.22 -0.02,0.46 0.08,0.66 0.23,0.45 0.52,0.86 0.88,1.22L10,22zM20,15h2L22,4h-2c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thumb_up.xml b/compose/material/material/icons/generator/raw-icons/filled/thumb_up.xml
deleted file mode 100644
index 6a39a39..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thumb_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h4L5,9L1,9v12zM23,10c0,-1.1 -0.9,-2 -2,-2h-6.31l0.95,-4.57 0.03,-0.32c0,-0.41 -0.17,-0.79 -0.44,-1.06L14.17,1 7.59,7.59C7.22,7.95 7,8.45 7,9v10c0,1.1 0.9,2 2,2h9c0.83,0 1.54,-0.5 1.84,-1.22l3.02,-7.05c0.09,-0.23 0.14,-0.47 0.14,-0.73v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thumb_up_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/thumb_up_alt.xml
deleted file mode 100644
index 11d7f2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thumb_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h2c0.55,0 1,-0.45 1,-1v-9c0,-0.55 -0.45,-1 -1,-1L2,9v11zM21.83,12.88c0.11,-0.25 0.17,-0.52 0.17,-0.8L22,11c0,-1.1 -0.9,-2 -2,-2h-5.5l0.92,-4.65c0.05,-0.22 0.02,-0.46 -0.08,-0.66 -0.23,-0.45 -0.52,-0.86 -0.88,-1.22L14,2 7.59,8.41C7.21,8.79 7,9.3 7,9.83v7.84C7,18.95 8.05,20 9.34,20h8.11c0.7,0 1.36,-0.37 1.72,-0.97l2.66,-6.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thumb_up_off_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/thumb_up_off_alt.xml
deleted file mode 100644
index bb52b17..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thumb_up_off_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.11,5.72l-0.57,2.89c-0.12,0.59 0.04,1.2 0.42,1.66 0.38,0.46 0.94,0.73 1.54,0.73H20v1.08L17.43,18H9.34c-0.18,0 -0.34,-0.16 -0.34,-0.34V9.82l4.11,-4.1M14,2L7.59,8.41C7.21,8.79 7,9.3 7,9.83v7.83C7,18.95 8.05,20 9.34,20h8.1c0.71,0 1.36,-0.37 1.72,-0.97l2.67,-6.15c0.11,-0.25 0.17,-0.52 0.17,-0.8V11c0,-1.1 -0.9,-2 -2,-2h-5.5l0.92,-4.65c0.05,-0.22 0.02,-0.46 -0.08,-0.66 -0.23,-0.45 -0.52,-0.86 -0.88,-1.22L14,2zM4,9H2v11h2c0.55,0 1,-0.45 1,-1v-9c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thumbs_up_down.xml b/compose/material/material/icons/generator/raw-icons/filled/thumbs_up_down.xml
deleted file mode 100644
index 007d70e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thumbs_up_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c0,-0.55 -0.45,-1 -1,-1L5.82,5l0.66,-3.18 0.02,-0.23c0,-0.31 -0.13,-0.59 -0.33,-0.8L5.38,0 0.44,4.94C0.17,5.21 0,5.59 0,6v6.5c0,0.83 0.67,1.5 1.5,1.5h6.75c0.62,0 1.15,-0.38 1.38,-0.91l2.26,-5.29c0.07,-0.17 0.11,-0.36 0.11,-0.55L12,6zM22.5,10h-6.75c-0.62,0 -1.15,0.38 -1.38,0.91l-2.26,5.29c-0.07,0.17 -0.11,0.36 -0.11,0.55L12,18c0,0.55 0.45,1 1,1h5.18l-0.66,3.18 -0.02,0.24c0,0.31 0.13,0.59 0.33,0.8l0.79,0.78 4.94,-4.94c0.27,-0.27 0.44,-0.65 0.44,-1.06v-6.5c0,-0.83 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/thunderstorm.xml b/compose/material/material/icons/generator/raw-icons/filled/thunderstorm.xml
deleted file mode 100644
index 6292e7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/thunderstorm.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,7.02C17.45,4.18 14.97,2 12,2C9.82,2 7.83,3.18 6.78,5.06C4.09,5.41 2,7.74 2,10.5C2,13.53 4.47,16 7.5,16h10c2.48,0 4.5,-2.02 4.5,-4.5C22,9.16 20.21,7.23 17.92,7.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/time_to_leave.xml b/compose/material/material/icons/generator/raw-icons/filled/time_to_leave.xml
deleted file mode 100644
index 1c3d74b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/time_to_leave.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,11v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,12 6.5,12s1.5,0.67 1.5,1.5S7.33,15 6.5,15zM17.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,10l1.5,-4.5h11L19,10L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timelapse.xml b/compose/material/material/icons/generator/raw-icons/filled/timelapse.xml
deleted file mode 100644
index b03e05f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timelapse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,7.76C15.07,6.59 13.54,6 12,6v6l-4.24,4.24c2.34,2.34 6.14,2.34 8.49,0 2.34,-2.34 2.34,-6.14 -0.01,-8.48zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timeline.xml b/compose/material/material/icons/generator/raw-icons/filled/timeline.xml
deleted file mode 100644
index 0288ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8c0,1.1 -0.9,2 -2,2c-0.18,0 -0.35,-0.02 -0.51,-0.07l-3.56,3.55C16.98,13.64 17,13.82 17,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.18 0.02,-0.36 0.07,-0.52l-2.55,-2.55C10.36,10.98 10.18,11 10,11s-0.36,-0.02 -0.52,-0.07l-4.55,4.56C4.98,15.65 5,15.82 5,16c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.18,0 0.35,0.02 0.51,0.07l4.56,-4.55C8.02,9.36 8,9.18 8,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,0.18 -0.02,0.36 -0.07,0.52l2.55,2.55C14.64,12.02 14.82,12 15,12s0.36,0.02 0.52,0.07l3.55,-3.56C19.02,8.35 19,8.18 19,8c0,-1.1 0.9,-2 2,-2S23,6.9 23,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timer.xml b/compose/material/material/icons/generator/raw-icons/filled/timer.xml
deleted file mode 100644
index 486f7d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timer.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,1h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9c0,4.97 4.02,9 9,9s9,-4.03 9,-9C21,10.88 20.26,8.93 19.03,7.39zM13,14h-2V8h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timer_10.xml b/compose/material/material/icons/generator/raw-icons/filled/timer_10.xml
deleted file mode 100644
index c008d30..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timer_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0,7.72L0,9.4l3,-1L3,18h2L5,6h-0.25L0,7.72zM23.78,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25 -0.14,-0.09 -0.23,-0.19 -0.28,-0.3 -0.05,-0.11 -0.08,-0.24 -0.08,-0.39 0,-0.14 0.03,-0.28 0.09,-0.41 0.06,-0.13 0.15,-0.25 0.27,-0.34 0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11 0.19,0.07 0.35,0.17 0.48,0.29 0.13,0.12 0.22,0.26 0.29,0.42 0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09 -0.16,-0.34 -0.39,-0.63 -0.69,-0.88 -0.3,-0.25 -0.66,-0.44 -1.09,-0.59C21.49,9.07 21,9 20.46,9c-0.51,0 -0.98,0.07 -1.39,0.21 -0.41,0.14 -0.77,0.33 -1.06,0.57 -0.29,0.24 -0.51,0.52 -0.67,0.84 -0.16,0.32 -0.23,0.65 -0.23,1.01s0.08,0.69 0.23,0.96c0.15,0.28 0.36,0.52 0.64,0.73 0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77 -0.27,0.2 -0.66,0.29 -1.17,0.29 -0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05 0.16,0.34 0.39,0.65 0.7,0.93 0.31,0.27 0.69,0.49 1.15,0.66 0.46,0.17 0.98,0.25 1.58,0.25 0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02zM13.82,7.05c-0.34,-0.4 -0.75,-0.7 -1.23,-0.88 -0.47,-0.18 -1.01,-0.27 -1.59,-0.27 -0.58,0 -1.11,0.09 -1.59,0.27 -0.48,0.18 -0.89,0.47 -1.23,0.88 -0.34,0.41 -0.6,0.93 -0.79,1.59 -0.18,0.65 -0.28,1.45 -0.28,2.39v1.92c0,0.94 0.09,1.74 0.28,2.39 0.19,0.66 0.45,1.19 0.8,1.6 0.34,0.41 0.75,0.71 1.23,0.89 0.48,0.18 1.01,0.28 1.59,0.28 0.59,0 1.12,-0.09 1.59,-0.28 0.48,-0.18 0.88,-0.48 1.22,-0.89 0.34,-0.41 0.6,-0.94 0.78,-1.6 0.18,-0.65 0.28,-1.45 0.28,-2.39v-1.92c0,-0.94 -0.09,-1.74 -0.28,-2.39 -0.18,-0.66 -0.44,-1.19 -0.78,-1.59zM12.9,13.22c0,0.6 -0.04,1.11 -0.12,1.53 -0.08,0.42 -0.2,0.76 -0.36,1.02 -0.16,0.26 -0.36,0.45 -0.59,0.57 -0.23,0.12 -0.51,0.18 -0.82,0.18 -0.3,0 -0.58,-0.06 -0.82,-0.18s-0.44,-0.31 -0.6,-0.57c-0.16,-0.26 -0.29,-0.6 -0.38,-1.02 -0.09,-0.42 -0.13,-0.93 -0.13,-1.53v-2.5c0,-0.6 0.04,-1.11 0.13,-1.52 0.09,-0.41 0.21,-0.74 0.38,-1 0.16,-0.25 0.36,-0.43 0.6,-0.55 0.24,-0.11 0.51,-0.17 0.81,-0.17 0.31,0 0.58,0.06 0.81,0.17 0.24,0.11 0.44,0.29 0.6,0.55 0.16,0.25 0.29,0.58 0.37,0.99 0.08,0.41 0.13,0.92 0.13,1.52v2.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timer_10_select.xml b/compose/material/material/icons/generator/raw-icons/filled/timer_10_select.xml
deleted file mode 100644
index ca5d11a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timer_10_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8v8h-3V8H13M13,5h-3C8.34,5 7,6.34 7,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3V8C16,6.34 14.66,5 13,5zM1,8h2v11h3V5H1V8zM18.5,11c-0.83,0 -1.5,0.68 -1.5,1.5v2c0,0.82 0.67,1.5 1.5,1.5H21v1h-4v2h4.5c0.83,0 1.5,-0.67 1.5,-1.5v-2c0,-0.83 -0.67,-1.5 -1.5,-1.5H19v-1h4v-2H18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timer_3.xml b/compose/material/material/icons/generator/raw-icons/filled/timer_3.xml
deleted file mode 100644
index 4408abb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timer_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.61,12.97c-0.16,-0.24 -0.36,-0.46 -0.62,-0.65 -0.25,-0.19 -0.56,-0.35 -0.93,-0.48 0.3,-0.14 0.57,-0.3 0.8,-0.5 0.23,-0.2 0.42,-0.41 0.57,-0.64 0.15,-0.23 0.27,-0.46 0.34,-0.71 0.08,-0.24 0.11,-0.49 0.11,-0.73 0,-0.55 -0.09,-1.04 -0.28,-1.46 -0.18,-0.42 -0.44,-0.77 -0.78,-1.06 -0.33,-0.28 -0.73,-0.5 -1.2,-0.64 -0.45,-0.13 -0.97,-0.2 -1.53,-0.2 -0.55,0 -1.06,0.08 -1.52,0.24 -0.47,0.17 -0.87,0.4 -1.2,0.69 -0.33,0.29 -0.6,0.63 -0.78,1.03 -0.2,0.39 -0.29,0.83 -0.29,1.29h1.98c0,-0.26 0.05,-0.49 0.14,-0.69 0.09,-0.2 0.22,-0.38 0.38,-0.52 0.17,-0.14 0.36,-0.25 0.58,-0.33 0.22,-0.08 0.46,-0.12 0.73,-0.12 0.61,0 1.06,0.16 1.36,0.47 0.3,0.31 0.44,0.75 0.44,1.32 0,0.27 -0.04,0.52 -0.12,0.74 -0.08,0.22 -0.21,0.41 -0.38,0.57 -0.17,0.16 -0.38,0.28 -0.63,0.37 -0.25,0.09 -0.55,0.13 -0.89,0.13L6.72,11.09v1.57L7.9,12.66c0.34,0 0.64,0.04 0.91,0.11 0.27,0.08 0.5,0.19 0.69,0.35 0.19,0.16 0.34,0.36 0.44,0.61 0.1,0.24 0.16,0.54 0.16,0.87 0,0.62 -0.18,1.09 -0.53,1.42 -0.35,0.33 -0.84,0.49 -1.45,0.49 -0.29,0 -0.56,-0.04 -0.8,-0.13 -0.24,-0.08 -0.44,-0.2 -0.61,-0.36 -0.17,-0.16 -0.3,-0.34 -0.39,-0.56 -0.09,-0.22 -0.14,-0.46 -0.14,-0.72L4.19,14.74c0,0.55 0.11,1.03 0.32,1.45 0.21,0.42 0.5,0.77 0.86,1.05s0.77,0.49 1.24,0.63 0.96,0.21 1.48,0.21c0.57,0 1.09,-0.08 1.58,-0.23 0.49,-0.15 0.91,-0.38 1.26,-0.68 0.36,-0.3 0.64,-0.66 0.84,-1.1 0.2,-0.43 0.3,-0.93 0.3,-1.48 0,-0.29 -0.04,-0.58 -0.11,-0.86 -0.08,-0.25 -0.19,-0.51 -0.35,-0.76zM20.87,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25 -0.14,-0.09 -0.23,-0.19 -0.28,-0.3 -0.05,-0.11 -0.08,-0.24 -0.08,-0.39s0.03,-0.28 0.09,-0.41c0.06,-0.13 0.15,-0.25 0.27,-0.34 0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11 0.19,0.07 0.35,0.17 0.48,0.29 0.13,0.12 0.22,0.26 0.29,0.42 0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09 -0.16,-0.34 -0.39,-0.63 -0.69,-0.88 -0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21 -0.41,0.14 -0.77,0.33 -1.06,0.57 -0.29,0.24 -0.51,0.52 -0.67,0.84 -0.16,0.32 -0.23,0.65 -0.23,1.01s0.08,0.68 0.23,0.96c0.15,0.28 0.37,0.52 0.64,0.73 0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77 -0.27,0.2 -0.66,0.29 -1.17,0.29 -0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05 0.16,0.34 0.39,0.65 0.7,0.93 0.31,0.27 0.69,0.49 1.15,0.66 0.46,0.17 0.98,0.25 1.58,0.25 0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timer_3_select.xml b/compose/material/material/icons/generator/raw-icons/filled/timer_3_select.xml
deleted file mode 100644
index c0dbfffe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timer_3_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11v2h-4v1h2.5c0.83,0 1.5,0.68 1.5,1.5v2c0,0.83 -0.67,1.5 -1.5,1.5H15v-2h4v-1h-2.5c-0.82,0 -1.5,-0.68 -1.5,-1.5v-2c0,-0.82 0.68,-1.5 1.5,-1.5H21zM4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/timer_off.xml b/compose/material/material/icons/generator/raw-icons/filled/timer_off.xml
deleted file mode 100644
index 82af92a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/timer_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,1h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8v2.17l6.98,6.98C20.63,15.91 21,14.5 21,13c0,-2.12 -0.74,-4.07 -1.97,-5.61l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-1.5,0 -2.91,0.37 -4.15,1.02L10.83,8H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12 3,10.98 3,13c0,4.97 4.02,9 9,9c2.02,0 3.88,-0.67 5.38,-1.79l2.4,2.4l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tips_and_updates.xml b/compose/material/material/icons/generator/raw-icons/filled/tips_and_updates.xml
deleted file mode 100644
index 93d5882..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tips_and_updates.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h4c0,1.1 -0.9,2 -2,2S7,21.1 7,20zM5,19h8v-2H5V19zM16.5,9.5c0,3.82 -2.66,5.86 -3.77,6.5H5.27C4.16,15.36 1.5,13.32 1.5,9.5C1.5,5.36 4.86,2 9,2S16.5,5.36 16.5,9.5zM21.37,7.37L20,8l1.37,0.63L22,10l0.63,-1.37L24,8l-1.37,-0.63L22,6L21.37,7.37zM19,6l0.94,-2.06L22,3l-2.06,-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tire_repair.xml b/compose/material/material/icons/generator/raw-icons/filled/tire_repair.xml
deleted file mode 100644
index 36ef374..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tire_repair.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c0,0.55 0.45,1 1,1c0.28,0 0.53,-0.11 0.71,-0.29c0.4,-0.4 1.04,-2.46 1.04,-2.46s-2.06,0.64 -2.46,1.04C18.11,6.47 18,6.72 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2c-2.76,0 -5,2.24 -5,5c0,2.05 1.23,3.81 3,4.58V13h1v5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2c0,-1.65 -1.35,-3 -3,-3c-0.35,0 -0.69,0.06 -1,0.17V5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,1.65 1.35,3 3,3s3,-1.35 3,-3v-5h1v-1.42c1.77,-0.77 3,-2.53 3,-4.58C24,4.24 21.76,2 19,2zM6,19.5l-2,-2v-2.83l2,2V19.5zM6,14.5l-2,-2V9.67l2,2V14.5zM6,9.5l-2,-2V4.67l2,2V9.5zM10,17.5l-2,2v-2.83l2,-2V17.5zM10,12.5l-2,2v-2.83l2,-2V12.5zM10,7.5l-2,2V6.67l2,-2V7.5zM19,10c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S20.66,10 19,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/title.xml b/compose/material/material/icons/generator/raw-icons/filled/title.xml
deleted file mode 100644
index c012ceb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/title.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4v3h5.5v12h3V7H19V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/toc.xml b/compose/material/material/icons/generator/raw-icons/filled/toc.xml
deleted file mode 100644
index e76ad31..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/toc.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h14L17,7L3,7v2zM3,13h14v-2L3,11v2zM3,17h14v-2L3,15v2zM19,17h2v-2h-2v2zM19,7v2h2L21,7h-2zM19,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/today.xml b/compose/material/material/icons/generator/raw-icons/filled/today.xml
deleted file mode 100644
index 4847f68..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11zM7,10h5v5L7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/toggle_off.xml b/compose/material/material/icons/generator/raw-icons/filled/toggle_off.xml
deleted file mode 100644
index 1af8c24..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7H7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h10c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM7,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/toggle_on.xml b/compose/material/material/icons/generator/raw-icons/filled/toggle_on.xml
deleted file mode 100644
index 914671e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/toggle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h10c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM17,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/token.xml b/compose/material/material/icons/generator/raw-icons/filled/token.xml
deleted file mode 100644
index b43943e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/token.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.97,6.43L12,2L4.03,6.43L9.1,9.24C9.83,8.48 10.86,8 12,8s2.17,0.48 2.9,1.24L19.97,6.43zM10,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,13.1 10,12zM11,21.44L3,17V8.14l5.13,2.85C8.04,11.31 8,11.65 8,12c0,1.86 1.27,3.43 3,3.87V21.44zM13,21.44v-5.57c1.73,-0.44 3,-2.01 3,-3.87c0,-0.35 -0.04,-0.69 -0.13,-1.01L21,8.14L21,17L13,21.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/toll.xml b/compose/material/material/icons/generator/raw-icons/filled/toll.xml
deleted file mode 100644
index 2dd9c11..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/toll.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12c0,-2.61 1.67,-4.83 4,-5.65V4.26C3.55,5.15 1,8.27 1,12s2.55,6.85 6,7.74v-2.09c-2.33,-0.82 -4,-3.04 -4,-5.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tonality.xml b/compose/material/material/icons/generator/raw-icons/filled/tonality.xml
deleted file mode 100644
index 5b331db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tonality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.94,-0.49 -7,-3.85 -7,-7.93s3.05,-7.44 7,-7.93v15.86zM13,4.07c1.03,0.13 2,0.45 2.87,0.93L13,5v-0.93zM13,7h5.24c0.25,0.31 0.48,0.65 0.68,1L13,8L13,7zM13,10h6.74c0.08,0.33 0.15,0.66 0.19,1L13,11v-1zM13,19.93L13,19h2.87c-0.87,0.48 -1.84,0.8 -2.87,0.93zM18.24,17L13,17v-1h5.92c-0.2,0.35 -0.43,0.69 -0.68,1zM19.74,14L13,14v-1h6.93c-0.04,0.34 -0.11,0.67 -0.19,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/topic.xml b/compose/material/material/icons/generator/raw-icons/filled/topic.xml
deleted file mode 100644
index e73083f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/topic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM14,16H6v-2h8V16zM18,12H6v-2h12V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tornado.xml b/compose/material/material/icons/generator/raw-icons/filled/tornado.xml
deleted file mode 100644
index 59871fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tornado.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.11,8l2.89,-5l-22,0l2.89,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.95,15l4.05,7l4.05,-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.95,10l-13.9,0l1.74,3l10.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/touch_app.xml b/compose/material/material/icons/generator/raw-icons/filled/touch_app.xml
deleted file mode 100644
index 27f4516..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/touch_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11.24V7.5C9,6.12 10.12,5 11.5,5S14,6.12 14,7.5v3.74c1.21,-0.81 2,-2.18 2,-3.74C16,5.01 13.99,3 11.5,3S7,5.01 7,7.5C7,9.06 7.79,10.43 9,11.24zM18.84,15.87l-4.54,-2.26c-0.17,-0.07 -0.35,-0.11 -0.54,-0.11H13v-6C13,6.67 12.33,6 11.5,6S10,6.67 10,7.5v10.74c-3.6,-0.76 -3.54,-0.75 -3.67,-0.75c-0.31,0 -0.59,0.13 -0.79,0.33l-0.79,0.8l4.94,4.94C9.96,23.83 10.34,24 10.75,24h6.79c0.75,0 1.33,-0.55 1.44,-1.28l0.75,-5.27c0.01,-0.07 0.02,-0.14 0.02,-0.2C19.75,16.63 19.37,16.09 18.84,15.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tour.xml b/compose/material/material/icons/generator/raw-icons/filled/tour.xml
deleted file mode 100644
index dccce1f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tour.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L7,4L7,2L5,2v20h2v-8h14l-2,-5 2,-5zM15,9c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2 0.9,-2 2,-2 2,0.9 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/toys.xml b/compose/material/material/icons/generator/raw-icons/filled/toys.xml
deleted file mode 100644
index 3e70572..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/toys.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,14c0,-1.95 -1.4,-3.57 -3.25,-3.92L17.4,6.05C17,4.82 15.85,4 14.56,4H9.44C8.15,4 7,4.82 6.6,6.05L5.81,8.4L4.41,7l0.29,-0.29c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2,2c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L3,8.41l1.79,1.79C3.18,10.72 2,12.22 2,14c0,1.5 0.83,2.79 2.05,3.48C4.28,18.9 5.51,20 7,20c1.3,0 2.4,-0.84 2.82,-2h4.37c0.41,1.16 1.51,2 2.82,2c1.49,0 2.72,-1.1 2.95,-2.52C21.17,16.79 22,15.5 22,14zM7,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,18 7,18zM11,10H7.41L7.39,9.98l1.1,-3.3C8.63,6.27 9.01,6 9.44,6H11V10zM13,6h1.56c0.43,0 0.81,0.27 0.95,0.68L16.61,10H13V6zM17,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/track_changes.xml b/compose/material/material/icons/generator/raw-icons/filled/track_changes.xml
deleted file mode 100644
index 0909be1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/track_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.07,4.93l-1.41,1.41C19.1,7.79 20,9.79 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.08 3.05,-7.44 7,-7.93v2.02C8.16,6.57 6,9.03 6,12c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.41,1.41C15.55,9.9 16,10.9 16,12c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4c0,-1.86 1.28,-3.41 3,-3.86v2.14c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72V2h-1C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10c0,-2.76 -1.12,-5.26 -2.93,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/traffic.xml b/compose/material/material/icons/generator/raw-icons/filled/traffic.xml
deleted file mode 100644
index 87d5597..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/traffic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h-3L17,8.86c1.72,-0.45 3,-2 3,-3.86h-3L17,4c0,-0.55 -0.45,-1 -1,-1L8,3c-0.55,0 -1,0.45 -1,1v1L4,5c0,1.86 1.28,3.41 3,3.86L7,10L4,10c0,1.86 1.28,3.41 3,3.86L7,15L4,15c0,1.86 1.28,3.41 3,3.86L7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-1.14c1.72,-0.45 3,-2 3,-3.86h-3v-1.14c1.72,-0.45 3,-2 3,-3.86zM12,19c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2c1.1,0 2,0.9 2,2s-0.89,2 -2,2zM12,14c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2c1.1,0 2,0.9 2,2s-0.89,2 -2,2zM12,9c-1.11,0 -2,-0.9 -2,-2 0,-1.11 0.89,-2 2,-2 1.1,0 2,0.89 2,2 0,1.1 -0.89,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/train.xml b/compose/material/material/icons/generator/raw-icons/filled/train.xml
deleted file mode 100644
index c1d2937..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/train.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h2.23l2,-2L14,19l2,2h2v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,10L6,10L6,6h5v4zM13,10L13,6h5v4h-5zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tram.xml b/compose/material/material/icons/generator/raw-icons/filled/tram.xml
deleted file mode 100644
index 90f3971..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tram.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,16.94L19,8.5c0,-2.79 -2.61,-3.4 -6.01,-3.49l0.76,-1.51L17,3.5L17,2L7,2v1.5h4.75l-0.76,1.52C7.86,5.11 5,5.73 5,8.5v8.44c0,1.45 1.19,2.66 2.59,2.97L6,21.5v0.5h2.23l2,-2L14,20l2,2h2v-0.5L16.5,20h-0.08c1.69,0 2.58,-1.37 2.58,-3.06zM12,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM17,14L7,14L7,9h10v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/transcribe.xml b/compose/material/material/icons/generator/raw-icons/filled/transcribe.xml
deleted file mode 100644
index b9be39a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/transcribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.93,16l1.63,-1.63c-2.77,-3.02 -2.77,-7.56 0,-10.74L17.93,2C14.03,5.89 14.02,11.95 17.93,16zM22.92,10.95c-0.84,-1.18 -0.84,-2.71 0,-3.89l-1.68,-1.69c-2.02,2.02 -2.02,5.07 0,7.27L22.92,10.95zM9,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,6.79 5,9C5,11.21 6.79,13 9,13zM15.39,15.56C13.71,14.7 11.53,14 9,14c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,16.07 1,17.1 1,18.22V21h16v-2.78C17,17.1 16.39,16.07 15.39,15.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/transfer_within_a_station.xml b/compose/material/material/icons/generator/raw-icons/filled/transfer_within_a_station.xml
deleted file mode 100644
index 3a7357a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/transfer_within_a_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,15.5v-1.75L14,16.25l2.49,2.5L16.49,17L22,17v-1.5zM19.51,19.75L14,19.75v1.5h5.51L19.51,23L22,20.5 19.51,18zM9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5.75,8.9L3,23h2.1l1.75,-8L9,17v6h2v-7.55L8.95,13.4l0.6,-3C10.85,12 12.8,13 15,13v-2c-1.85,0 -3.45,-1 -4.35,-2.45l-0.95,-1.6C9.35,6.35 8.7,6 8,6c-0.25,0 -0.5,0.05 -0.75,0.15L2,8.3L2,13h2L4,9.65l1.75,-0.75"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/transform.xml b/compose/material/material/icons/generator/raw-icons/filled/transform.xml
deleted file mode 100644
index c452b9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/transform.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18v-2H8V4h2L7,1 4,4h2v2H2v2h4v8c0,1.1 0.9,2 2,2h8v2h-2l3,3 3,-3h-2v-2h4zM10,8h6v6h2V8c0,-1.1 -0.9,-2 -2,-2h-6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/transgender.xml b/compose/material/material/icons/generator/raw-icons/filled/transgender.xml
deleted file mode 100644
index 864edbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/transgender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.93,0 3.5,1.57 3.5,3.5S13.93,15 12,15s-3.5,-1.57 -3.5,-3.5S10.07,8 12,8zM16.53,8.38l3.97,-3.96V7h2V1h-6v2h2.58l-3.97,3.97C14.23,6.36 13.16,6 12,6c-1.16,0 -2.23,0.36 -3.11,0.97L8.24,6.32l1.41,-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42l1.91,1.9L3.99,7.74l1.41,1.41l1.41,-1.41l0.65,0.65C6.86,9.27 6.5,10.34 6.5,11.5c0,2.7 1.94,4.94 4.5,5.41L11,19H9v2h2v2h2v-2h2v-2h-2l0,-2.09c2.56,-0.47 4.5,-2.71 4.5,-5.41C17.5,10.34 17.14,9.27 16.53,8.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/transit_enterexit.xml b/compose/material/material/icons/generator/raw-icons/filled/transit_enterexit.xml
deleted file mode 100644
index 1bf5a6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/transit_enterexit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18H6V8h3v4.77L15.98,6 18,8.03 11.15,15H16v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/translate.xml b/compose/material/material/icons/generator/raw-icons/filled/translate.xml
deleted file mode 100644
index 4e7e364..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,15.07l-2.54,-2.51 0.03,-0.03c1.74,-1.94 2.98,-4.17 3.71,-6.53L17,6L17,4h-7L10,2L8,2v2L1,4v1.99h11.17C11.5,7.92 10.44,9.75 9,11.35 8.07,10.32 7.3,9.19 6.69,8h-2c0.73,1.63 1.73,3.17 2.98,4.56l-5.09,5.02L4,19l5,-5 3.11,3.11 0.76,-2.04zM18.5,10h-2L12,22h2l1.12,-3h4.75L21,22h2l-4.5,-12zM15.88,17l1.62,-4.33L19.12,17h-3.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/travel_explore.xml b/compose/material/material/icons/generator/raw-icons/filled/travel_explore.xml
deleted file mode 100644
index 93adef5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/travel_explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.3,16.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S11,12 11,14.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l3.2,3.2l1.4,-1.4L19.3,16.9zM15.5,17c-1.4,0 -2.5,-1.1 -2.5,-2.5s1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5S16.9,17 15.5,17zM12,20v2C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2c4.84,0 8.87,3.44 9.8,8h-2.07c-0.64,-2.46 -2.4,-4.47 -4.73,-5.41V5c0,1.1 -0.9,2 -2,2h-2v2c0,0.55 -0.45,1 -1,1H8v2h2v3H9l-4.79,-4.79C4.08,10.79 4,11.38 4,12C4,16.41 7.59,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/trending_down.xml b/compose/material/material/icons/generator/raw-icons/filled/trending_down.xml
deleted file mode 100644
index 3fa2f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/trending_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18l2.29,-2.29 -4.88,-4.88 -4,4L2,7.41 3.41,6l6,6 4,-4 6.3,6.29L22,12v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/trending_flat.xml b/compose/material/material/icons/generator/raw-icons/filled/trending_flat.xml
deleted file mode 100644
index 0dfa015..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/trending_flat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4,-4v3H3v2h15v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/trending_up.xml b/compose/material/material/icons/generator/raw-icons/filled/trending_up.xml
deleted file mode 100644
index bafd07e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/trending_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l2.29,2.29 -4.88,4.88 -4,-4L2,16.59 3.41,18l6,-6 4,4 6.3,-6.29L22,12V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/trip_origin.xml b/compose/material/material/icons/generator/raw-icons/filled/trip_origin.xml
deleted file mode 100644
index ed73ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/trip_origin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12C2,6.48 6.48,2 12,2s10,4.48 10,10 -4.48,10 -10,10S2,17.52 2,12zM12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6 -6,2.69 -6,6 2.69,6 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/troubleshoot.xml b/compose/material/material/icons/generator/raw-icons/filled/troubleshoot.xml
deleted file mode 100644
index 97931d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/troubleshoot.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,20.59l-4.69,-4.69C18.37,14.55 19,12.85 19,11c0,-4.42 -3.58,-8 -8,-8c-4.08,0 -7.44,3.05 -7.93,7h2.02C5.57,7.17 8.03,5 11,5c3.31,0 6,2.69 6,6s-2.69,6 -6,6c-2.42,0 -4.5,-1.44 -5.45,-3.5H3.4C4.45,16.69 7.46,19 11,19c1.85,0 3.55,-0.63 4.9,-1.69L20.59,22L22,20.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.43,9.69l1.22,5.31l1.64,0l1.26,-3.78l0.95,2.28l2,0l0,-1.5l-1,0l-1.25,-3l-1.54,0l-1.12,3.37l-1.24,-5.37l-1.65,0l-1.25,4l-5.45,0l0,1.5l6.55,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/try.xml b/compose/material/material/icons/generator/raw-icons/filled/try.xml
deleted file mode 100644
index 0165a39..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/try.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM13.57,11.57L12,15l-1.57,-3.43L7,10l3.43,-1.57L12,5l1.57,3.43L17,10L13.57,11.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tsunami.xml b/compose/material/material/icons/generator/raw-icons/filled/tsunami.xml
deleted file mode 100644
index b6820ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tsunami.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,17.63c-3.8,2.8 -6.12,0.4 -6.67,0c-0.66,0.49 -2.92,2.76 -6.67,0C3.43,19.03 2.65,19 2,19v2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0C19.7,20.68 20.84,21 22,21v-2C21.34,19 20.5,18.98 18.67,17.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.33,12H22v-2h-2.67C17.5,10 16,8.5 16,6.67c0,-1.02 0.38,-1.74 1.09,-3.34C15.72,3.12 15.09,3 14,3C7.36,3 2.15,8.03 2.01,14.5c0,0 -0.01,2 -0.01,2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0c1.03,0.61 2.17,0.93 3.33,0.93v-2c-0.66,0 -1.5,-0.02 -3.33,-1.37c-3.8,2.8 -6.12,0.4 -6.67,0c-0.9,0.67 -0.54,0.41 -0.91,0.63C10.39,12.82 10,11.7 10,10.5c0,-2.58 1.77,-4.74 4.21,-5.33C14.08,5.68 14,6.19 14,6.67C14,9.61 16.39,12 19.33,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tty.xml b/compose/material/material/icons/generator/raw-icons/filled/tty.xml
deleted file mode 100644
index 920c8cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4h2v2h-2V4zM13,7h2v2h-2V7zM11,4h2v2h-2V4zM18,9h-2V7h2V9zM19,6h-2V4h2V6zM21,9h-2V7h2V9zM22,6h-2V4h2V6zM14.62,14.38L12.1,16.9c-2.5,-1.43 -4.57,-3.5 -6,-6l2.52,-2.52C8.86,8.14 8.96,7.8 8.9,7.48L8.16,3.8C8.07,3.34 7.66,3 7.18,3H3.03C2.47,3 2,3.47 2.03,4.03C2.2,6.92 3.05,9.63 4.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.23 7.97,2.4c0.56,0.03 1.03,-0.44 1.03,-1v-4.15c0,-0.48 -0.34,-0.89 -0.8,-0.98l-3.67,-0.73C15.2,14.04 14.86,14.14 14.62,14.38zM14,10h2v2h-2V10zM11,10h2v2h-2V10zM19,12h-2v-2h2V12zM22,12h-2v-2h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tune.xml b/compose/material/material/icons/generator/raw-icons/filled/tune.xml
deleted file mode 100644
index e8d34f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tune.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17v2h6v-2L3,17zM3,5v2h10L13,5L3,5zM13,21v-2h8v-2h-8v-2h-2v6h2zM7,9v2L3,11v2h4v2h2L9,9L7,9zM21,13v-2L11,11v2h10zM15,9h2L17,7h4L21,5h-4L17,3h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tungsten.xml b/compose/material/material/icons/generator/raw-icons/filled/tungsten.xml
deleted file mode 100644
index 54ae6a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tungsten.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.894,17.801l1.407,-1.407l2.121,2.121l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.584,18.509l2.121,-2.121l1.407,1.407l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.02V3H9v5.02C7.79,8.94 7,10.37 7,12c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,10.37 16.21,8.94 15,8.02zM11,5h2v2.1C12.68,7.04 12.34,7 12,7s-0.68,0.04 -1,0.1V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turn_left.xml b/compose/material/material/icons/generator/raw-icons/filled/turn_left.xml
deleted file mode 100644
index 79e696b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,11l1.59,1.59L7,14l-4,-4l4,-4l1.41,1.41L6.83,9L15,9c1.1,0 2,0.9 2,2v9h-2v-9L6.83,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turn_right.xml b/compose/material/material/icons/generator/raw-icons/filled/turn_right.xml
deleted file mode 100644
index 44adeab..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.17,11l-1.59,1.59L17,14l4,-4l-4,-4l-1.41,1.41L17.17,9L9,9c-1.1,0 -2,0.9 -2,2v9h2v-9L17.17,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turn_sharp_left.xml b/compose/material/material/icons/generator/raw-icons/filled/turn_sharp_left.xml
deleted file mode 100644
index 5b4f04a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turn_sharp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.83L4.41,8.41L3,7l4,-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0 2,0.9 2,2v6h-2v-6H8c-1.1,0 -2,-0.9 -2,-2V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turn_sharp_right.xml b/compose/material/material/icons/generator/raw-icons/filled/turn_sharp_right.xml
deleted file mode 100644
index 110731e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turn_sharp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.83l1.59,1.59L21,7l-4,-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0 -2,0.9 -2,2v6h2v-6h8c1.1,0 2,-0.9 2,-2V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turn_slight_left.xml b/compose/material/material/icons/generator/raw-icons/filled/turn_slight_left.xml
deleted file mode 100644
index 3077490..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turn_slight_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.66,6V4H6v5.66h2V7.41l5,5V20h2v-7.58c0,-0.53 -0.21,-1.04 -0.59,-1.41l-5,-5H11.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turn_slight_right.xml b/compose/material/material/icons/generator/raw-icons/filled/turn_slight_right.xml
deleted file mode 100644
index 1d0bb07..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turn_slight_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,6V4H18v5.66h-2V7.41l-5,5V20H9v-7.58c0,-0.53 0.21,-1.04 0.59,-1.41l5,-5H12.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turned_in.xml b/compose/material/material/icons/generator/raw-icons/filled/turned_in.xml
deleted file mode 100644
index 7e480e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3H7c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/turned_in_not.xml b/compose/material/material/icons/generator/raw-icons/filled/turned_in_not.xml
deleted file mode 100644
index 61dc4cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/turned_in_not.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tv.xml b/compose/material/material/icons/generator/raw-icons/filled/tv.xml
deleted file mode 100644
index da892d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/tv_off.xml b/compose/material/material/icons/generator/raw-icons/filled/tv_off.xml
deleted file mode 100644
index 6d025fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/tv_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,3.54l1.53,1.53C1.65,5.28 1,6.06 1,7v12c0,1.1 0.9,2 2,2h15.46l2,2 1.26,-1.27L2.27,2.27 1,3.54zM3,19V7h1.46l12,12H3zM21,5h-7.58l3.29,-3.3L16,1l-4,4 -4,-4 -0.7,0.7L10.58,5H7.52l2,2H21v11.48l1.65,1.65c0.22,-0.32 0.35,-0.71 0.35,-1.13V7c0,-1.11 -0.89,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/two_wheeler.xml b/compose/material/material/icons/generator/raw-icons/filled/two_wheeler.xml
deleted file mode 100644
index be1f26b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/two_wheeler.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11c-0.18,0 -0.36,0.03 -0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4l2,2h3l3.49,-6.1l1.01,1.01C16.59,12.64 16,13.75 16,15c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4C24,12.79 22.21,11 20,11zM4,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C6,16.1 5.1,17 4,17zM20,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C22,16.1 21.1,17 20,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/type_specimen.xml b/compose/material/material/icons/generator/raw-icons/filled/type_specimen.xml
deleted file mode 100644
index ea74671..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/type_specimen.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM16.63,14.5l-0.8,-2.3h-3.63l-0.82,2.3H9.81l3.38,-9h1.61l3.38,9H16.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.96,7.17l-1.31,3.72l2.69,0l-1.3,-3.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/u_turn_left.xml b/compose/material/material/icons/generator/raw-icons/filled/u_turn_left.xml
deleted file mode 100644
index abec9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/u_turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9v12h-2V9c0,-2.21 -1.79,-4 -4,-4S8,6.79 8,9v4.17l1.59,-1.59L11,13l-4,4l-4,-4l1.41,-1.41L6,13.17V9c0,-3.31 2.69,-6 6,-6S18,5.69 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/u_turn_right.xml b/compose/material/material/icons/generator/raw-icons/filled/u_turn_right.xml
deleted file mode 100644
index a6ee472..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/u_turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9v12h2V9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v4.17l-1.59,-1.59L13,13l4,4l4,-4l-1.41,-1.41L18,13.17V9c0,-3.31 -2.69,-6 -6,-6S6,5.69 6,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/umbrella.xml b/compose/material/material/icons/generator/raw-icons/filled/umbrella.xml
deleted file mode 100644
index 833eb5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/umbrella.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,6.92L13,5.77V3.88V3.4c0,-0.26 0.22,-0.48 0.5,-0.48c0.28,0 0.5,0.21 0.5,0.48V4h2V3.4C16,2.07 14.88,1 13.5,1C12.12,1 11,2.07 11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77 11.6,22 12,22s0.8,-0.23 0.95,-0.69L18,6.07L14.5,6.92zM13.28,8.5l0.76,0.58l0.92,-0.23L13,14.8V8.29L13.28,8.5zM9.96,9.09l0.76,-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/unarchive.xml b/compose/material/material/icons/generator/raw-icons/filled/unarchive.xml
deleted file mode 100644
index dabd687..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/unarchive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.55,5.22l-1.39,-1.68C18.88,3.21 18.47,3 18,3H6C5.53,3 5.12,3.21 4.85,3.55L3.46,5.22C3.17,5.57 3,6.01 3,6.5V19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6.5C21,6.01 20.83,5.57 20.55,5.22zM12,9.5l5.5,5.5H14v2h-4v-2H6.5L12,9.5zM5.12,5l0.82,-1h12l0.93,1H5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/undo.xml b/compose/material/material/icons/generator/raw-icons/filled/undo.xml
deleted file mode 100644
index 4ce4108..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/undo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8c-2.65,0 -5.05,0.99 -6.9,2.6L2,7v9h9l-3.62,-3.62c1.39,-1.16 3.16,-1.88 5.12,-1.88 3.54,0 6.55,2.31 7.6,5.5l2.37,-0.78C21.08,11.03 17.15,8 12.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/unfold_less.xml b/compose/material/material/icons/generator/raw-icons/filled/unfold_less.xml
deleted file mode 100644
index c6e7907..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/unfold_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,18.59L8.83,20 12,16.83 15.17,20l1.41,-1.41L12,14l-4.59,4.59zM16.59,5.41L15.17,4 12,7.17 8.83,4 7.41,5.41 12,10l4.59,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/unfold_less_double.xml b/compose/material/material/icons/generator/raw-icons/filled/unfold_less_double.xml
deleted file mode 100644
index 92f9c80..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/unfold_less_double.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,1.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,6.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,17.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,22.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/unfold_more.xml b/compose/material/material/icons/generator/raw-icons/filled/unfold_more.xml
deleted file mode 100644
index c115159..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/unfold_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.83L15.17,9l1.41,-1.41L12,3 7.41,7.59 8.83,9 12,5.83zM12,18.17L8.83,15l-1.41,1.41L12,21l4.59,-4.59L15.17,15 12,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/unfold_more_double.xml b/compose/material/material/icons/generator/raw-icons/filled/unfold_more_double.xml
deleted file mode 100644
index 4d100fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/unfold_more_double.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.83L15.17,11l1.41,-1.41L12,5L7.41,9.59L8.83,11L12,7.83zM12,2.83L15.17,6l1.41,-1.41L12,0L7.41,4.59L8.83,6L12,2.83zM12,21.17L8.83,18l-1.41,1.41L12,24l4.59,-4.59L15.17,18L12,21.17zM12,16.17L8.83,13l-1.41,1.41L12,19l4.59,-4.59L15.17,13L12,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/unpublished.xml b/compose/material/material/icons/generator/raw-icons/filled/unpublished.xml
deleted file mode 100644
index 1b8c174..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/unpublished.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27L21.19,21.19zM10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l0.18,-0.18l1.41,1.41L10.59,16.6zM13.59,10.76l-7.1,-7.1C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-5.34,-5.34l2.65,-2.65l-1.41,-1.41L13.59,10.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/unsubscribe.xml b/compose/material/material/icons/generator/raw-icons/filled/unsubscribe.xml
deleted file mode 100644
index 903127b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/unsubscribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5 3.5,-1.57 3.5,-3.5 -1.57,-3.5 -3.5,-3.5zM20.5,17h-4v-1h4v1zM13.55,17c-0.02,-0.17 -0.05,-0.33 -0.05,-0.5 0,-2.76 2.24,-5 5,-5 0.92,0 1.76,0.26 2.5,0.69L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h8.55zM12,10.5L5,7L5,5l7,3.5L19,5v2l-7,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/upcoming.xml b/compose/material/material/icons/generator/raw-icons/filled/upcoming.xml
deleted file mode 100644
index 54f21fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/upcoming.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.16,7.26l-1.41,-1.41L16.19,9.4l1.41,1.41C17.6,10.81 21.05,7.29 21.16,7.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,10.81L7.81,9.4L4.26,5.84L2.84,7.26C2.95,7.29 6.4,10.81 6.4,10.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12h-5c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3H4c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-5C22,12.9 21.1,12 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/update.xml b/compose/material/material/icons/generator/raw-icons/filled/update.xml
deleted file mode 100644
index 3b92302..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.12h-6.78l2.74,-2.82c-2.73,-2.7 -7.15,-2.8 -9.88,-0.1c-2.73,2.71 -2.73,7.08 0,9.79s7.15,2.71 9.88,0C18.32,15.65 19,14.08 19,12.1h2c0,1.98 -0.88,4.55 -2.64,6.29c-3.51,3.48 -9.21,3.48 -12.72,0c-3.5,-3.47 -3.53,-9.11 -0.02,-12.58s9.14,-3.47 12.65,0L21,3V10.12zM12.5,8v4.25l3.5,2.08l-0.72,1.21L11,13V8H12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/update_disabled.xml b/compose/material/material/icons/generator/raw-icons/filled/update_disabled.xml
deleted file mode 100644
index cf0830d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/update_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.67,5.84L7.22,4.39C8.6,3.51 10.24,3 12,3c2.74,0 5.19,1.23 6.84,3.16L21,4v6h-6l2.41,-2.41C16.12,6.02 14.18,5 12,5C10.8,5 9.66,5.31 8.67,5.84zM13,7h-2v1.17l2,2V7zM19.78,22.61l-3,-3C15.39,20.48 13.76,21 12,21c-4.97,0 -9,-4.03 -9,-9c0,-1.76 0.51,-3.4 1.39,-4.78L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM15.32,18.15L5.84,8.67C5.31,9.66 5,10.8 5,12c0,3.86 3.14,7 7,7C13.2,19 14.34,18.69 15.32,18.15zM20.94,13h-2.02c-0.12,0.83 -0.39,1.61 -0.77,2.32l1.47,1.47C20.32,15.67 20.79,14.38 20.94,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/upgrade.xml b/compose/material/material/icons/generator/raw-icons/filled/upgrade.xml
deleted file mode 100644
index d242dbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/upgrade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18v2H8v-2H16zM11,7.99V16h2V7.99h3L12,4L8,7.99H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/upload.xml b/compose/material/material/icons/generator/raw-icons/filled/upload.xml
deleted file mode 100644
index c1e163b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14v-2H5V20zM5,10h4v6h6v-6h4l-7,-7L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/upload_file.xml b/compose/material/material/icons/generator/raw-icons/filled/upload_file.xml
deleted file mode 100644
index f819e4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/upload_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,20L6,20L6,4h7v5h5v11zM8,15.01l1.41,1.41L11,14.84L11,19h2v-4.16l1.59,1.59L16,15.01 12.01,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/usb.xml b/compose/material/material/icons/generator/raw-icons/filled/usb.xml
deleted file mode 100644
index a783dd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/usb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7v4h1v2h-3V5h2l-3,-4 -3,4h2v8H8v-2.07c0.7,-0.37 1.2,-1.08 1.2,-1.93 0,-1.21 -0.99,-2.2 -2.2,-2.2 -1.21,0 -2.2,0.99 -2.2,2.2 0,0.85 0.5,1.56 1.2,1.93V13c0,1.11 0.89,2 2,2h3v3.05c-0.71,0.37 -1.2,1.1 -1.2,1.95 0,1.22 0.99,2.2 2.2,2.2 1.21,0 2.2,-0.98 2.2,-2.2 0,-0.85 -0.49,-1.58 -1.2,-1.95V15h3c1.11,0 2,-0.89 2,-2v-2h1V7h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/usb_off.xml b/compose/material/material/icons/generator/raw-icons/filled/usb_off.xml
deleted file mode 100644
index 97c22fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/usb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8h4v4h-1v2c0,0.34 -0.08,0.66 -0.23,0.94L16,13.17V12h-1V8zM11,8.17l2,2V6h2l-3,-4L9,6h2V8.17zM13,16v2.28c0.6,0.34 1,0.98 1,1.72c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.74 0.4,-1.37 1,-1.72V16H8c-1.11,0 -2,-0.89 -2,-2v-2.28C5.4,11.38 5,10.74 5,10c0,-0.59 0.26,-1.13 0.68,-1.49L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L13.17,16H13zM11,14v-0.17l-2.51,-2.51c-0.14,0.16 -0.31,0.29 -0.49,0.4V14H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vaccines.xml b/compose/material/material/icons/generator/raw-icons/filled/vaccines.xml
deleted file mode 100644
index 6ec33a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vaccines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5.5H8V4h0.5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1H6v1.5H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1V15c0,1.1 0.9,2 2,2h1v4l2,1.5V17h1c1.1,0 2,-0.9 2,-2V7.5c0.55,0 1,-0.45 1,-1C12,5.95 11.55,5.5 11,5.5zM9,9H7.25C6.84,9 6.5,9.34 6.5,9.75c0,0.41 0.34,0.75 0.75,0.75H9V12H7.25c-0.41,0 -0.75,0.34 -0.75,0.75c0,0.41 0.34,0.75 0.75,0.75H9L9,15H5V7.5h4V9zM19.5,10.5V10c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-5c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1v0.5c0,0.5 -1.5,1.16 -1.5,3V20c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-6.5C21,11.66 19.5,11 19.5,10.5zM16.5,10.5V10h1v0.5c0,1.6 1.5,2 1.5,3V14h-4c0,-0.21 0,-0.39 0,-0.5C15,12.5 16.5,12.1 16.5,10.5zM15,20c0,0 0,-0.63 0,-1.5h4V20H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vape_free.xml b/compose/material/material/icons/generator/raw-icons/filled/vape_free.xml
deleted file mode 100644
index c5c55f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vape_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM16.17,19H8v-3h5.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L16.17,19zM18.83,16H22v3h-0.17L18.83,16zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM11.15,8.32c0,-0.01 0,-0.01 0,-0.02c0,-1.85 1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53c1.87,0 3.47,1.35 3.47,3.16V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-0.01,0 -0.01,0 -0.02,0L11.15,8.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vaping_rooms.xml b/compose/material/material/icons/generator/raw-icons/filled/vaping_rooms.xml
deleted file mode 100644
index ccb0c28..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vaping_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM22,16v3H8v-3H22zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM19.5,13.36V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-1.85,0 -3.35,-1.5 -3.35,-3.35s1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53C17.9,10.2 19.5,11.55 19.5,13.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/verified.xml b/compose/material/material/icons/generator/raw-icons/filled/verified.xml
deleted file mode 100644
index bbb4826..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/verified.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-2.44,-2.79l0.34,-3.69l-3.61,-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7l3.61,0.82L8.6,22.5l3.4,-1.47l3.4,1.46l1.89,-3.19l3.61,-0.82l-0.34,-3.69L23,12zM10.09,16.72l-3.8,-3.81l1.48,-1.48l2.32,2.33l5.85,-5.87l1.48,1.48L10.09,16.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/verified_user.xml b/compose/material/material/icons/generator/raw-icons/filled/verified_user.xml
deleted file mode 100644
index 1ef5c8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/verified_user.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM10,17l-4,-4 1.41,-1.41L10,14.17l6.59,-6.59L18,9l-8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vertical_align_bottom.xml b/compose/material/material/icons/generator/raw-icons/filled/vertical_align_bottom.xml
deleted file mode 100644
index bbfb8a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vertical_align_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h-3V3h-2v10H8l4,4 4,-4zM4,19v2h16v-2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vertical_align_center.xml b/compose/material/material/icons/generator/raw-icons/filled/vertical_align_center.xml
deleted file mode 100644
index f79d0fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vertical_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19h3v4h2v-4h3l-4,-4 -4,4zM16,5h-3L13,1h-2v4L8,5l4,4 4,-4zM4,11v2h16v-2L4,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vertical_align_top.xml b/compose/material/material/icons/generator/raw-icons/filled/vertical_align_top.xml
deleted file mode 100644
index 2d88991..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vertical_align_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h3v10h2V11h3l-4,-4 -4,4zM4,3v2h16V3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vertical_distribute.xml b/compose/material/material/icons/generator/raw-icons/filled/vertical_distribute.xml
deleted file mode 100644
index 13712fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vertical_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,10.5v3h10v-3H7zM2,20v2h20v-2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vertical_shades.xml b/compose/material/material/icons/generator/raw-icons/filled/vertical_shades.xml
deleted file mode 100644
index 7ca35dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vertical_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM10,19V5h4v14H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vertical_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/filled/vertical_shades_closed.xml
deleted file mode 100644
index bfc3c8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vertical_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM13,5h1.5v14H13V5zM11,19H9.5V5H11V19zM6,5h1.5v14H6V5zM16.5,19V5H18v14H16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vertical_split.xml b/compose/material/material/icons/generator/raw-icons/filled/vertical_split.xml
deleted file mode 100644
index d0ec246..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vertical_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h8v-2L3,13v2zM3,19h8v-2L3,17v2zM3,11h8L11,9L3,9v2zM3,5v2h8L11,5L3,5zM13,5h8v14h-8L13,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vibration.xml b/compose/material/material/icons/generator/raw-icons/filled/vibration.xml
deleted file mode 100644
index a9600b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vibration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0,15h2L2,9L0,9v6zM3,17h2L5,7L3,7v10zM22,9v6h2L24,9h-2zM19,17h2L21,7h-2v10zM16.5,3h-9C6.67,3 6,3.67 6,4.5v15c0,0.83 0.67,1.5 1.5,1.5h9c0.83,0 1.5,-0.67 1.5,-1.5v-15c0,-0.83 -0.67,-1.5 -1.5,-1.5zM16,19L8,19L8,5h8v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_call.xml b/compose/material/material/icons/generator/raw-icons/filled/video_call.xml
deleted file mode 100644
index 218f7cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V7c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4zM14,13h-3v3H9v-3H6v-2h3V8h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_camera_back.xml b/compose/material/material/icons/generator/raw-icons/filled/video_camera_back.xml
deleted file mode 100644
index c2c3783..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_camera_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM5,16l2.38,-3.17L9,15l2.62,-3.5L15,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_camera_front.xml b/compose/material/material/icons/generator/raw-icons/filled/video_camera_front.xml
deleted file mode 100644
index 99b7447..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM10,8c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S8.9,8 10,8zM14,16H6v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C8.07,13.21 9.01,13 10,13c0.99,0 1.93,0.21 2.78,0.58C13.52,13.9 14,14.62 14,15.43V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_chat.xml b/compose/material/material/icons/generator/raw-icons/filled/video_chat.xml
deleted file mode 100644
index c618290..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_chat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM17,13l-2,-1.99V13c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v1.99L17,7V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_file.xml b/compose/material/material/icons/generator/raw-icons/filled/video_file.xml
deleted file mode 100644
index 70721c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6.01c-1.1,0 -2,0.89 -2,2L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM13,9V3.5L18.5,9H13zM14,14l2,-1.06v4.12L14,16v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_label.xml b/compose/material/material/icons/generator/raw-icons/filled/video_label.xml
deleted file mode 100644
index fccdabd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,5h18v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_library.xml b/compose/material/material/icons/generator/raw-icons/filled/video_library.xml
deleted file mode 100644
index 2259eaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM12,14.5v-9l6,4.5 -6,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_settings.xml b/compose/material/material/icons/generator/raw-icons/filled/video_settings.xml
deleted file mode 100644
index 9098716..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_settings.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h18v5h2V6c0,-1.1 -0.9,-2 -2,-2H3C1.9,4 1,4.9 1,6v12c0,1.1 0.9,2 2,2h9v-2H3V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12l-6,-4l0,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.71,18.43c0.03,-0.29 0.04,-0.58 0.01,-0.86l1.07,-0.85c0.1,-0.08 0.12,-0.21 0.06,-0.32l-1.03,-1.79c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11L21.23,15c-0.23,-0.17 -0.48,-0.31 -0.75,-0.42l-0.2,-1.36C20.26,13.09 20.16,13 20.03,13h-2.07c-0.12,0 -0.23,0.09 -0.25,0.21l-0.2,1.36c-0.26,0.11 -0.51,0.26 -0.74,0.42l-1.28,-0.5c-0.12,-0.05 -0.25,0 -0.31,0.11l-1.03,1.79c-0.06,0.11 -0.04,0.24 0.06,0.32l1.07,0.86c-0.03,0.29 -0.04,0.58 -0.01,0.86l-1.07,0.85c-0.1,0.08 -0.12,0.21 -0.06,0.32l1.03,1.79c0.06,0.11 0.19,0.15 0.31,0.11l1.27,-0.5c0.23,0.17 0.48,0.31 0.75,0.42l0.2,1.36c0.02,0.12 0.12,0.21 0.25,0.21h2.07c0.12,0 0.23,-0.09 0.25,-0.21l0.2,-1.36c0.26,-0.11 0.51,-0.26 0.74,-0.42l1.28,0.5c0.12,0.05 0.25,0 0.31,-0.11l1.03,-1.79c0.06,-0.11 0.04,-0.24 -0.06,-0.32L22.71,18.43zM19,19.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S19.83,19.5 19,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/video_stable.xml b/compose/material/material/icons/generator/raw-icons/filled/video_stable.xml
deleted file mode 100644
index 05903db..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/video_stable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,18V6h2.95l-2.33,8.73L16.82,18H4zM20,18h-2.95l2.34,-8.73L7.18,6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/videocam.xml b/compose/material/material/icons/generator/raw-icons/filled/videocam.xml
deleted file mode 100644
index 340bff2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/videocam.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V7c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/videocam_off.xml b/compose/material/material/icons/generator/raw-icons/filled/videocam_off.xml
deleted file mode 100644
index 7977a645..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/videocam_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6.5l-4,4V7c0,-0.55 -0.45,-1 -1,-1H9.82L21,17.18V6.5zM3.27,2L2,3.27 4.73,6H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.21,0 0.39,-0.08 0.54,-0.18L19.73,21 21,19.73 3.27,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/videogame_asset.xml b/compose/material/material/icons/generator/raw-icons/filled/videogame_asset.xml
deleted file mode 100644
index 97196ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/videogame_asset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM11,13L8,13v3L6,16v-3L3,13v-2h3L6,8h2v3h3v2zM15.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S18.67,9 19.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/videogame_asset_off.xml b/compose/material/material/icons/generator/raw-icons/filled/videogame_asset_off.xml
deleted file mode 100644
index 79108b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/videogame_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3.3,6.13C2.54,6.41 2,7.15 2,8v8c0,1.1 0.9,2 2,2h11.17l4.61,4.61L21.19,21.19zM9,13v2H7v-2H5v-2h2V9.83L10.17,13H9zM20.7,17.87C21.46,17.59 22,16.85 22,16V8c0,-1.1 -0.9,-2 -2,-2H8.83L20.7,17.87zM17.5,9c0.83,0 1.5,0.67 1.5,1.5S18.33,12 17.5,12S16,11.33 16,10.5S16.67,9 17.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_agenda.xml b/compose/material/material/icons/generator/raw-icons/filled/view_agenda.xml
deleted file mode 100644
index 18e3342..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_agenda.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4C21,13.9 20.1,13 19,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_array.xml b/compose/material/material/icons/generator/raw-icons/filled/view_array.xml
deleted file mode 100644
index 0fa8195..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_array.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5h-3v14h3V5zM17,5H7v14h10V5zM6,5H3v14h3V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_carousel.xml b/compose/material/material/icons/generator/raw-icons/filled/view_carousel.xml
deleted file mode 100644
index 838b749..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_carousel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h4v10H2V7zM7,19h10V5H7V19zM18,7h4v10h-4V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_column.xml b/compose/material/material/icons/generator/raw-icons/filled/view_column.xml
deleted file mode 100644
index 49d8ddc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_column.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.67,5v14H9.33V5H14.67zM15.67,19H21V5h-5.33V19zM8.33,19V5H3v14H8.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_comfy.xml b/compose/material/material/icons/generator/raw-icons/filled/view_comfy.xml
deleted file mode 100644
index 7cf71d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_comfy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v7h20V4H2zM10,20h12v-7H10V20zM2,20h6v-7H2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_comfy_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/view_comfy_alt.xml
deleted file mode 100644
index d5002d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_comfy_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM11,17H7v-4h4V17zM11,11H7V7h4V11zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_compact.xml b/compose/material/material/icons/generator/raw-icons/filled/view_compact.xml
deleted file mode 100644
index f2330a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_compact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h2.5v-2.5H4V18zM4,13.25h2.5v-2.5H4V13.25zM4,8.5h2.5V6H4V8.5zM17.5,6v2.5H20V6H17.5zM13,8.5h2.5V6H13V8.5zM17.5,18H20v-2.5h-2.5V18zM17.5,13.25H20v-2.5h-2.5V13.25zM8.5,18H11v-2.5H8.5V18zM13,18h2.5v-2.5H13V18zM8.5,8.5H11V6H8.5V8.5zM13,13.25h2.5v-2.5H13V13.25zM8.5,13.25H11v-2.5H8.5V13.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_compact_alt.xml b/compose/material/material/icons/generator/raw-icons/filled/view_compact_alt.xml
deleted file mode 100644
index 72e996e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_compact_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM11.5,16.5h-4v-4h4V16.5zM11.5,11.5h-4v-4h4V11.5zM16.5,16.5h-4v-4h4V16.5zM16.5,11.5h-4v-4h4V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_cozy.xml b/compose/material/material/icons/generator/raw-icons/filled/view_cozy.xml
deleted file mode 100644
index b46c788..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_cozy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM11.25,16.75h-4v-4h4V16.75zM11.25,11.25h-4v-4h4V11.25zM16.75,16.75h-4v-4h4V16.75zM16.75,11.25h-4v-4h4V11.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_day.xml b/compose/material/material/icons/generator/raw-icons/filled/view_day.xml
deleted file mode 100644
index 217a069..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,21h19v-3H2v3zM20,8H3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h17c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1zM2,3v3h19V3H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_headline.xml b/compose/material/material/icons/generator/raw-icons/filled/view_headline.xml
deleted file mode 100644
index f9d849b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_headline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h16v-2L4,13v2zM4,19h16v-2L4,17v2zM4,11h16L20,9L4,9v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_in_ar.xml b/compose/material/material/icons/generator/raw-icons/filled/view_in_ar.xml
deleted file mode 100644
index b3abdd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_in_ar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.25,7.6l-5.5,-3.18c-0.46,-0.27 -1.04,-0.27 -1.5,0L5.75,7.6c-0.46,0.27 -0.75,0.76 -0.75,1.3v6.35c0,0.54 0.29,1.03 0.75,1.3l5.5,3.18c0.46,0.27 1.04,0.27 1.5,0l5.5,-3.18c0.46,-0.27 0.75,-0.76 0.75,-1.3L19,8.9c0,-0.54 -0.29,-1.03 -0.75,-1.3zM7,14.96v-4.62l4,2.32v4.61l-4,-2.31zM12,10.93L8,8.61l4,-2.31 4,2.31 -4,2.32zM13,17.27v-4.61l4,-2.32v4.62l-4,2.31zM7,2L3.5,2C2.67,2 2,2.67 2,3.5L2,7h2L4,4h3L7,2zM17,2h3.5c0.83,0 1.5,0.67 1.5,1.5L22,7h-2L20,4h-3L17,2zM7,22L3.5,22c-0.83,0 -1.5,-0.67 -1.5,-1.5L2,17h2v3h3v2zM17,22h3.5c0.83,0 1.5,-0.67 1.5,-1.5L22,17h-2v3h-3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_kanban.xml b/compose/material/material/icons/generator/raw-icons/filled/view_kanban.xml
deleted file mode 100644
index 15ac643..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_kanban.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM9,17H7V7h2V17zM13,12h-2V7h2V12zM17,15h-2V7h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_list.xml b/compose/material/material/icons/generator/raw-icons/filled/view_list.xml
deleted file mode 100644
index 4510516..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h4v-4H3V14zM3,19h4v-4H3V19zM3,9h4V5H3V9zM8,14h13v-4H8V14zM8,19h13v-4H8V19zM8,5v4h13V5H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_module.xml b/compose/material/material/icons/generator/raw-icons/filled/view_module.xml
deleted file mode 100644
index 56ca7a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_module.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.67,5v6.5H9.33V5H14.67zM15.67,11.5H21V5h-5.33V11.5zM14.67,19v-6.5H9.33V19H14.67zM15.67,12.5V19H21v-6.5H15.67zM8.33,12.5H3V19h5.33V12.5zM8.33,11.5V5H3v6.5H8.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_quilt.xml b/compose/material/material/icons/generator/raw-icons/filled/view_quilt.xml
deleted file mode 100644
index bf98fe5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_quilt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5v6.5H9.33V5H21zM14.67,19v-6.5H9.33V19H14.67zM15.67,12.5V19H21v-6.5H15.67zM8.33,19V5H3v14H8.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_sidebar.xml b/compose/material/material/icons/generator/raw-icons/filled/view_sidebar.xml
deleted file mode 100644
index 9263a5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_sidebar.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20H2V4h14V20zM18,8h4V4h-4V8zM18,20h4v-4h-4V20zM18,14h4v-4h-4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_stream.xml b/compose/material/material/icons/generator/raw-icons/filled/view_stream.xml
deleted file mode 100644
index 06bf209..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_stream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17v-2c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2H5C3.9,19 3,18.1 3,17zM3,7v2c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H5C3.9,5 3,5.9 3,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_timeline.xml b/compose/material/material/icons/generator/raw-icons/filled/view_timeline.xml
deleted file mode 100644
index 962c56f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,17H6v-2h6V17zM15,13H9v-2h6V13zM18,9h-6V7h6V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/view_week.xml b/compose/material/material/icons/generator/raw-icons/filled/view_week.xml
deleted file mode 100644
index 2cc8d6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.33,20H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h1.33c1.1,0 2,0.9 2,2v12C7.33,19.1 6.44,20 5.33,20zM22,18V6c0,-1.1 -0.9,-2 -2,-2h-1.33c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2H20C21.11,20 22,19.1 22,18zM14.67,18V6c0,-1.1 -0.9,-2 -2,-2h-1.33c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h1.33C13.77,20 14.67,19.1 14.67,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vignette.xml b/compose/material/material/icons/generator/raw-icons/filled/vignette.xml
deleted file mode 100644
index fa65401..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vignette.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM12,18c-4.42,0 -8,-2.69 -8,-6s3.58,-6 8,-6 8,2.69 8,6 -3.58,6 -8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/villa.xml b/compose/material/material/icons/generator/raw-icons/filled/villa.xml
deleted file mode 100644
index 8d6cdc3c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/villa.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21H3V8l13,-5v7H7V21zM19,10c-1.1,0 -2,0.9 -2,2H9v9h5v-5h2v5h5v-9C21,10.9 20.1,10 19,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/visibility.xml b/compose/material/material/icons/generator/raw-icons/filled/visibility.xml
deleted file mode 100644
index a3e222a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/visibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/visibility_off.xml b/compose/material/material/icons/generator/raw-icons/filled/visibility_off.xml
deleted file mode 100644
index 92c4856..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/visibility_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5 0,0.65 -0.13,1.26 -0.36,1.83l2.92,2.92c1.51,-1.26 2.7,-2.89 3.43,-4.75 -1.73,-4.39 -6,-7.5 -11,-7.5 -1.4,0 -2.74,0.25 -3.98,0.7l2.16,2.16C10.74,7.13 11.35,7 12,7zM2,4.27l2.28,2.28 0.46,0.46C3.08,8.3 1.78,10.02 1,12c1.73,4.39 6,7.5 11,7.5 1.55,0 3.03,-0.3 4.38,-0.84l0.42,0.42L19.73,22 21,20.73 3.27,3 2,4.27zM7.53,9.8l1.55,1.55c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.66 1.34,3 3,3 0.22,0 0.44,-0.03 0.65,-0.08l1.55,1.55c-0.67,0.33 -1.41,0.53 -2.2,0.53 -2.76,0 -5,-2.24 -5,-5 0,-0.79 0.2,-1.53 0.53,-2.2zM11.84,9.02l3.15,3.15 0.02,-0.16c0,-1.66 -1.34,-3 -3,-3l-0.17,0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/voice_chat.xml b/compose/material/material/icons/generator/raw-icons/filled/voice_chat.xml
deleted file mode 100644
index 5cd0bda..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/voice_chat.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H6l-2,2V4h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,5h1.5v10h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,7h1.5v6h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9h1.5v2h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h1.5v6h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9h1.5v2h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/voice_over_off.xml b/compose/material/material/icons/generator/raw-icons/filled/voice_over_off.xml
deleted file mode 100644
index 3529aa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/voice_over_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.99,9.18c0,-0.06 0.01,-0.12 0.01,-0.18 0,-2.21 -1.79,-4 -4,-4 -0.06,0 -0.12,0.01 -0.18,0.01l4.17,4.17zM6.89,5.62L4.27,3 3,4.27l2.62,2.62C5.23,7.5 5,8.22 5,9c0,2.21 1.79,4 4,4 0.78,0 1.5,-0.23 2.11,-0.62L19.73,21 21,19.73l-8.62,-8.62 -5.49,-5.49zM9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM16.76,5.36l-1.68,1.69c0.84,1.18 0.84,2.71 0,3.89l1.68,1.69c2.02,-2.02 2.02,-5.07 0,-7.27zM20.07,2l-1.63,1.63c2.77,3.02 2.77,7.56 0,10.74L20.07,16c3.9,-3.89 3.91,-9.95 0,-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/voicemail.xml b/compose/material/material/icons/generator/raw-icons/filled/voicemail.xml
deleted file mode 100644
index 4947802..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/voicemail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,6C15.46,6 13,8.46 13,11.5c0,1.33 0.47,2.55 1.26,3.5L9.74,15c0.79,-0.95 1.26,-2.17 1.26,-3.5C11,8.46 8.54,6 5.5,6S0,8.46 0,11.5 2.46,17 5.5,17h13c3.04,0 5.5,-2.46 5.5,-5.5S21.54,6 18.5,6zM5.5,15C3.57,15 2,13.43 2,11.5S3.57,8 5.5,8 9,9.57 9,11.5 7.43,15 5.5,15zM18.5,15c-1.93,0 -3.5,-1.57 -3.5,-3.5S16.57,8 18.5,8 22,9.57 22,11.5 20.43,15 18.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/volcano.xml b/compose/material/material/icons/generator/raw-icons/filled/volcano.xml
deleted file mode 100644
index 1caf98e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/volcano.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8l-7,0l-2,5l-3,0l-4,9l20,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,1h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.121,5.468l2.828,-2.828l1.414,1.414l-2.828,2.828z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.64,4.05l1.414,-1.414l2.828,2.828l-1.414,1.414z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/volume_down.xml b/compose/material/material/icons/generator/raw-icons/filled/volume_down.xml
deleted file mode 100644
index 94d205b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/volume_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM5,9v6h4l5,5V4L9,9H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/volume_mute.xml b/compose/material/material/icons/generator/raw-icons/filled/volume_mute.xml
deleted file mode 100644
index affdb9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/volume_mute.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9v6h4l5,5V4l-5,5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/volume_off.xml b/compose/material/material/icons/generator/raw-icons/filled/volume_off.xml
deleted file mode 100644
index 3038cfd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/volume_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v2.21l2.45,2.45c0.03,-0.2 0.05,-0.41 0.05,-0.63zM19,12c0,0.94 -0.2,1.82 -0.54,2.64l1.51,1.51C20.63,14.91 21,13.5 21,12c0,-4.28 -2.99,-7.86 -7,-8.77v2.06c2.89,0.86 5,3.54 5,6.71zM4.27,3L3,4.27 7.73,9L3,9v6h4l5,5v-6.73l4.25,4.25c-0.67,0.52 -1.42,0.93 -2.25,1.18v2.06c1.38,-0.31 2.63,-0.95 3.69,-1.81L19.73,21 21,19.73l-9,-9L4.27,3zM12,4L9.91,6.09 12,8.18L12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/volume_up.xml b/compose/material/material/icons/generator/raw-icons/filled/volume_up.xml
deleted file mode 100644
index cc288cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/volume_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9v6h4l5,5L12,4L7,9L3,9zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM14,3.23v2.06c2.89,0.86 5,3.54 5,6.71s-2.11,5.85 -5,6.71v2.06c4.01,-0.91 7,-4.49 7,-8.77s-2.99,-7.86 -7,-8.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/volunteer_activism.xml b/compose/material/material/icons/generator/raw-icons/filled/volunteer_activism.xml
deleted file mode 100644
index aeb1d5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/volunteer_activism.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3.25C16.65,2.49 17.66,2 18.7,2C20.55,2 22,3.45 22,5.3c0,2.27 -2.91,4.9 -6,7.7c-3.09,-2.81 -6,-5.44 -6,-7.7C10,3.45 11.45,2 13.3,2C14.34,2 15.35,2.49 16,3.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17h-7l-2.09,-0.73l0.33,-0.94L13,16h2.82c0.65,0 1.18,-0.53 1.18,-1.18v0c0,-0.49 -0.31,-0.93 -0.77,-1.11L8.97,11H7v9.02L14,22l8.01,-3v0C22,17.9 21.11,17 20,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vpn_key.xml b/compose/material/material/icons/generator/raw-icons/filled/vpn_key.xml
deleted file mode 100644
index 2316df2..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vpn_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.65,10C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H17v4h4v-4h2v-4H12.65zM7,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vpn_key_off.xml b/compose/material/material/icons/generator/raw-icons/filled/vpn_key_off.xml
deleted file mode 100644
index e4da8e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vpn_key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.83,18H21v-4h2v-4H12.83L20.83,18zM19.78,22.61l1.41,-1.41L2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.21,0 4.15,-1.2 5.18,-2.99L19.78,22.61zM8.99,11.82C9,11.88 9,11.94 9,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.06,0 0.12,0 0.18,0.01L8.99,11.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vpn_lock.xml b/compose/material/material/icons/generator/raw-icons/filled/vpn_lock.xml
deleted file mode 100644
index 3d368f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vpn_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4v-0.5C22,2.12 20.88,1 19.5,1S17,2.12 17,3.5L17,4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1L23,5c0,-0.55 -0.45,-1 -1,-1zM21.2,4h-3.4v-0.5c0,-0.94 0.76,-1.7 1.7,-1.7s1.7,0.76 1.7,1.7L21.2,4zM18.92,12c0.04,0.33 0.08,0.66 0.08,1 0,2.08 -0.8,3.97 -2.1,5.39 -0.26,-0.81 -1,-1.39 -1.9,-1.39h-1v-3c0,-0.55 -0.45,-1 -1,-1L7,13v-2h2c0.55,0 1,-0.45 1,-1L10,8h2c1.1,0 2,-0.9 2,-2L14,3.46c-0.95,-0.3 -1.95,-0.46 -3,-0.46C5.48,3 1,7.48 1,13s4.48,10 10,10 10,-4.48 10,-10c0,-0.34 -0.02,-0.67 -0.05,-1h-2.03zM10,20.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L8,16v1c0,1.1 0.9,2 2,2v1.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/vrpano.xml b/compose/material/material/icons/generator/raw-icons/filled/vrpano.xml
deleted file mode 100644
index e10b4da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/vrpano.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.69,4.05C18.66,4.73 15.86,5.5 12,5.5c-3.89,0 -6.95,-0.84 -8.69,-1.43C2.67,3.85 2,4.33 2,5.02V19c0,0.68 0.66,1.17 1.31,0.95C5.36,19.26 8.1,18.5 12,18.5c3.87,0 6.66,0.76 8.69,1.45C21.34,20.16 22,19.68 22,19V5C22,4.32 21.34,3.84 20.69,4.05zM12,15c-2.34,0 -4.52,0.15 -6.52,0.41l3.69,-4.42l2,2.4L14,10l4.51,5.4C16.52,15.15 14.3,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wallet.xml b/compose/material/material/icons/generator/raw-icons/filled/wallet.xml
deleted file mode 100644
index b5ad926..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wallet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4H6C3.79,4 2,5.79 2,8v8c0,2.21 1.79,4 4,4h12c2.21,0 4,-1.79 4,-4V8C22,5.79 20.21,4 18,4zM16.14,13.77c-0.24,0.2 -0.57,0.28 -0.88,0.2L4.15,11.25C4.45,10.52 5.16,10 6,10h12c0.67,0 1.26,0.34 1.63,0.84L16.14,13.77zM6,6h12c1.1,0 2,0.9 2,2v0.55C19.41,8.21 18.73,8 18,8H6C5.27,8 4.59,8.21 4,8.55V8C4,6.9 4.9,6 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wallpaper.xml b/compose/material/material/icons/generator/raw-icons/filled/wallpaper.xml
deleted file mode 100644
index 6b7eb35..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wallpaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h7L11,2L4,2c-1.1,0 -2,0.9 -2,2v7h2L4,4zM10,13l-4,5h12l-3,-4 -2.03,2.71L10,13zM17,8.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S14,7.67 14,8.5s0.67,1.5 1.5,1.5S17,9.33 17,8.5zM20,2h-7v2h7v7h2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20h-7v2h7c1.1,0 2,-0.9 2,-2v-7h-2v7zM4,13L2,13v7c0,1.1 0.9,2 2,2h7v-2L4,20v-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/warehouse.xml b/compose/material/material/icons/generator/raw-icons/filled/warehouse.xml
deleted file mode 100644
index 86387da5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/warehouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,21V7L12,3L2,7v14h5v-9h10v9H22zM11,19H9v2h2V19zM13,16h-2v2h2V16zM15,19h-2v2h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/warning.xml b/compose/material/material/icons/generator/raw-icons/filled/warning.xml
deleted file mode 100644
index a02bc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/warning_amber.xml b/compose/material/material/icons/generator/raw-icons/filled/warning_amber.xml
deleted file mode 100644
index b2f821e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/warning_amber.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.99L19.53,19H4.47L12,5.99M12,2L1,21h22L12,2L12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16l-2,0l0,2l2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10l-2,0l0,5l2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wash.xml b/compose/material/material/icons/generator/raw-icons/filled/wash.xml
deleted file mode 100644
index 702a75d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,8C19.88,8 21,6.88 21,5.5C21,3.83 18.5,1 18.5,1S16,3.83 16,5.5C16,6.88 17.12,8 18.5,8zM13.5,9C14.33,9 15,8.33 15,7.5C15,6.66 13.5,5 13.5,5S12,6.66 12,7.5C12,8.33 12.67,9 13.5,9zM9.12,5l-7.18,6.79C1.34,12.35 1,13.14 1,13.97V20c0,1.66 1.34,3 3,3h6.25H12h5.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1h8.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25S19.44,10 18.75,10H8.86c0.64,-1.11 1.48,-2.58 1.49,-2.61c0.09,-0.16 0.14,-0.33 0.14,-0.53c0,-0.26 -0.09,-0.5 -0.26,-0.7C10.22,6.12 9.12,5 9.12,5L9.12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/watch.xml b/compose/material/material/icons/generator/raw-icons/filled/watch.xml
deleted file mode 100644
index e242792..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/watch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-2.54 -1.19,-4.81 -3.04,-6.27L16,0H8l-0.95,5.73C5.19,7.19 4,9.45 4,12s1.19,4.81 3.05,6.27L8,24h8l0.96,-5.73C18.81,16.81 20,14.54 20,12zM6,12c0,-3.31 2.69,-6 6,-6s6,2.69 6,6 -2.69,6 -6,6 -6,-2.69 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/watch_later.xml b/compose/material/material/icons/generator/raw-icons/filled/watch_later.xml
deleted file mode 100644
index 9dbafa7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/watch_later.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/watch_off.xml b/compose/material/material/icons/generator/raw-icons/filled/watch_off.xml
deleted file mode 100644
index 51dcb5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/watch_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5c0,0.64 -0.13,1.25 -0.35,1.82l1.5,1.5C18.69,14.33 19,13.2 19,12c0,-2.22 -1.03,-4.19 -2.64,-5.47L15,2H9L8.04,5.21l2.14,2.14C10.75,7.13 11.36,7 12,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67 5,10.8 5,12c0,2.22 1.03,4.19 2.64,5.47L9,22h6l0.96,-3.21l3.82,3.82l1.41,-1.41L2.81,2.81zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-0.64 0.13,-1.25 0.35,-1.82l6.47,6.47C13.25,16.87 12.64,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/water.xml b/compose/material/material/icons/generator/raw-icons/filled/water.xml
deleted file mode 100644
index c9edfe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/water.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,14H22H21.98zM5.35,13c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,11 3.24,12 2,12v2C3.9,14 4.17,13 5.35,13zM18.67,15c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.19,0 1.42,1 3.33,1c1.94,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1v-2C20.76,16 20.62,15 18.67,15zM5.35,9c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1V8c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C10.04,7 9.9,8 8.66,8C7.47,8 7.24,7 5.33,7C3.38,7 3.24,8 2,8v2C3.9,10 4.17,9 5.35,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/water_damage.xml b/compose/material/material/icons/generator/raw-icons/filled/water_damage.xml
deleted file mode 100644
index 7cdaae1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/water_damage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,12h3v8h14v-8h3L12,3zM12,16c-1.1,0 -2,-0.9 -2,-2c0,-1.1 2,-4 2,-4s2,2.9 2,4C14,15.1 13.1,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/water_drop.xml b/compose/material/material/icons/generator/raw-icons/filled/water_drop.xml
deleted file mode 100644
index 9883980..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/water_drop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM7.83,14c0.37,0 0.67,0.26 0.74,0.62c0.41,2.22 2.28,2.98 3.64,2.87c0.43,-0.02 0.79,0.32 0.79,0.75c0,0.4 -0.32,0.73 -0.72,0.75c-2.13,0.13 -4.62,-1.09 -5.19,-4.12C7.01,14.42 7.37,14 7.83,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/waterfall_chart.xml b/compose/material/material/icons/generator/raw-icons/filled/waterfall_chart.xml
deleted file mode 100644
index 0c065c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/waterfall_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h3v16h-3zM3,13h3v7L3,20zM14,4h3v3h-3zM10,5h3v4h-3zM7,10h3v4L7,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/waves.xml b/compose/material/material/icons/generator/raw-icons/filled/waves.xml
deleted file mode 100644
index 23733dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/waves.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16.99c-1.35,0 -2.2,0.42 -2.95,0.8 -0.65,0.33 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.42 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.42 2.95,-0.8c0.65,-0.33 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM17,12.54c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.32 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM19.95,4.46c-0.75,-0.38 -1.58,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.37 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.93c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,5.04c-0.9,0 -1.4,-0.25 -2.05,-0.58zM17,8.09c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.35 -1.15,0.6 -2.05,0.6s-1.4,-0.25 -2.05,-0.6c-0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.35 -1.15,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.32 1.18,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,9.49c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/waving_hand.xml b/compose/material/material/icons/generator/raw-icons/filled/waving_hand.xml
deleted file mode 100644
index afe0200..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/waving_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,17c0,3.31 -2.69,6 -6,6v-1.5c2.48,0 4.5,-2.02 4.5,-4.5H23zM1,7c0,-3.31 2.69,-6 6,-6v1.5C4.52,2.5 2.5,4.52 2.5,7H1zM8.01,4.32l-4.6,4.6c-3.22,3.22 -3.22,8.45 0,11.67s8.45,3.22 11.67,0l7.07,-7.07c0.49,-0.49 0.49,-1.28 0,-1.77c-0.49,-0.49 -1.28,-0.49 -1.77,0l-4.42,4.42l-0.71,-0.71l6.54,-6.54c0.49,-0.49 0.49,-1.28 0,-1.77s-1.28,-0.49 -1.77,0l-5.83,5.83l-0.71,-0.71l6.89,-6.89c0.49,-0.49 0.49,-1.28 0,-1.77s-1.28,-0.49 -1.77,0l-6.89,6.89L11.02,9.8l5.48,-5.48c0.49,-0.49 0.49,-1.28 0,-1.77s-1.28,-0.49 -1.77,0l-7.62,7.62c1.22,1.57 1.11,3.84 -0.33,5.28l-0.71,-0.71c1.17,-1.17 1.17,-3.07 0,-4.24l-0.35,-0.35l4.07,-4.07c0.49,-0.49 0.49,-1.28 0,-1.77C9.29,3.83 8.5,3.83 8.01,4.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wb_auto.xml b/compose/material/material/icons/generator/raw-icons/filled/wb_auto.xml
deleted file mode 100644
index e475f75..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wb_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.85,12.65h2.3L8,9l-1.15,3.65zM22,7l-1.2,6.29L19.3,7h-1.6l-1.49,6.29L15,7h-0.76C12.77,5.17 10.53,4 8,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8c3.13,0 5.84,-1.81 7.15,-4.43l0.1,0.43L17,16l1.5,-6.1L20,16h1.75l2.05,-9L22,7zM10.3,16l-0.7,-2L6.4,14l-0.7,2L3.8,16L7,7h2l3.2,9h-1.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wb_cloudy.xml b/compose/material/material/icons/generator/raw-icons/filled/wb_cloudy.xml
deleted file mode 100644
index 8486dd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wb_cloudy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.36,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.64,-4.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wb_incandescent.xml b/compose/material/material/icons/generator/raw-icons/filled/wb_incandescent.xml
deleted file mode 100644
index a2bf0da..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wb_incandescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.55,18.54l1.41,1.41 1.79,-1.8 -1.41,-1.41 -1.79,1.8zM11,22.45h2L13,19.5h-2v2.95zM4,10.5L1,10.5v2h3v-2zM15,6.31L15,1.5L9,1.5v4.81C7.21,7.35 6,9.28 6,11.5c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-2.22 -1.21,-4.15 -3,-5.19zM20,10.5v2h3v-2h-3zM17.24,18.16l1.79,1.8 1.41,-1.41 -1.8,-1.79 -1.4,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wb_iridescent.xml b/compose/material/material/icons/generator/raw-icons/filled/wb_iridescent.xml
deleted file mode 100644
index b24ddf3..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wb_iridescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14.5h14v-6L5,8.5v6zM11,0.55L11,3.5h2L13,0.55h-2zM19.04,3.05l-1.79,1.79 1.41,1.41 1.8,-1.79 -1.42,-1.41zM13,22.45L13,19.5h-2v2.95h2zM20.45,18.54l-1.8,-1.79 -1.41,1.41 1.79,1.8 1.42,-1.42zM3.55,4.46l1.79,1.79 1.41,-1.41 -1.79,-1.79 -1.41,1.41zM4.96,19.95l1.79,-1.8 -1.41,-1.41 -1.79,1.79 1.41,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wb_shade.xml b/compose/material/material/icons/generator/raw-icons/filled/wb_shade.xml
deleted file mode 100644
index ff92a0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wb_shade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12v2.5l5.5,5.5L22,20zM14,20h3l-3,-3zM8,4l-6,6h2v10h8L12,10h2L8,4zM9,14L7,14v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wb_sunny.xml b/compose/material/material/icons/generator/raw-icons/filled/wb_sunny.xml
deleted file mode 100644
index fc8da89..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wb_sunny.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.76,4.84l-1.8,-1.79 -1.41,1.41 1.79,1.79 1.42,-1.41zM4,10.5L1,10.5v2h3v-2zM13,0.55h-2L11,3.5h2L13,0.55zM20.45,4.46l-1.41,-1.41 -1.79,1.79 1.41,1.41 1.79,-1.79zM17.24,18.16l1.79,1.8 1.41,-1.41 -1.8,-1.79 -1.4,1.4zM20,10.5v2h3v-2h-3zM12,5.5c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM11,22.45h2L13,19.5h-2v2.95zM3.55,18.54l1.41,1.41 1.79,-1.8 -1.41,-1.41 -1.79,1.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wb_twilight.xml b/compose/material/material/icons/generator/raw-icons/filled/wb_twilight.xml
deleted file mode 100644
index 474dbed..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wb_twilight.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.955,8.662l2.121,-2.122l1.415,1.414l-2.121,2.122z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18h20v2h-20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.543,7.925l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h14c0,-3.87 -3.13,-7 -7,-7S5,12.13 5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wc.xml b/compose/material/material/icons/generator/raw-icons/filled/wc.xml
deleted file mode 100644
index adc526e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,22v-7.5L4,14.5L4,9c0,-1.1 0.9,-2 2,-2h3c1.1,0 2,0.9 2,2v5.5L9.5,14.5L9.5,22h-4zM18,22v-6h3l-2.54,-7.63C18.18,7.55 17.42,7 16.56,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37L12,16h3v6h3zM7.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2zM16.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/web.xml b/compose/material/material/icons/generator/raw-icons/filled/web.xml
deleted file mode 100644
index 48696cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/web.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM15,18L4,18v-4h11v4zM15,13L4,13L4,9h11v4zM20,18h-4L16,9h4v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/web_asset.xml b/compose/material/material/icons/generator/raw-icons/filled/web_asset.xml
deleted file mode 100644
index 88643ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/web_asset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM19,18L5,18L5,8h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/web_asset_off.xml b/compose/material/material/icons/generator/raw-icons/filled/web_asset_off.xml
deleted file mode 100644
index 3f5366c..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/web_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H20c1.11,0 2,0.9 2,2v12c0,0.34 -0.09,0.66 -0.23,0.94L20,17.17V8h-9.17L6.83,4zM20.49,23.31L17.17,20H4c-1.11,0 -2,-0.9 -2,-2V6c0,-0.34 0.08,-0.66 0.23,-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM15.17,18l-10,-10H4v10H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/web_stories.xml b/compose/material/material/icons/generator/raw-icons/filled/web_stories.xml
deleted file mode 100644
index a5b16c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/web_stories.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4c1.1,0 2,0.9 2,2v12c0,1.1 -0.9,2 -2,2V4zM2,20c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2,2.9 2,4V20zM21,18c0.83,0 1.5,-0.67 1.5,-1.5v-9C22.5,6.67 21.83,6 21,6V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/webhook.xml b/compose/material/material/icons/generator/raw-icons/filled/webhook.xml
deleted file mode 100644
index 928e143..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/webhook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15l5.88,0c0.27,-0.31 0.67,-0.5 1.12,-0.5c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5c-0.44,0 -0.84,-0.19 -1.12,-0.5l-3.98,0c-0.46,2.28 -2.48,4 -4.9,4c-2.76,0 -5,-2.24 -5,-5c0,-2.42 1.72,-4.44 4,-4.9l0,2.07C4.84,13.58 4,14.7 4,16c0,1.65 1.35,3 3,3s3,-1.35 3,-3V15zM12.5,4c1.65,0 3,1.35 3,3h2c0,-2.76 -2.24,-5 -5,-5l0,0c-2.76,0 -5,2.24 -5,5c0,1.43 0.6,2.71 1.55,3.62l-2.35,3.9C6.02,14.66 5.5,15.27 5.5,16c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5c0,-0.16 -0.02,-0.31 -0.07,-0.45l3.38,-5.63C10.49,9.61 9.5,8.42 9.5,7C9.5,5.35 10.85,4 12.5,4zM17,13c-0.64,0 -1.23,0.2 -1.72,0.54l-3.05,-5.07C11.53,8.35 11,7.74 11,7c0,-0.83 0.67,-1.5 1.5,-1.5S14,6.17 14,7c0,0.15 -0.02,0.29 -0.06,0.43l2.19,3.65C16.41,11.03 16.7,11 17,11l0,0c2.76,0 5,2.24 5,5c0,2.76 -2.24,5 -5,5c-1.85,0 -3.47,-1.01 -4.33,-2.5l2.67,0C15.82,18.82 16.39,19 17,19c1.65,0 3,-1.35 3,-3S18.65,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/weekend.xml b/compose/material/material/icons/generator/raw-icons/filled/weekend.xml
deleted file mode 100644
index 60f81b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/weekend.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10c-1.1,0 -2,0.9 -2,2v3H5v-3c0,-1.1 -0.89,-2 -2,-2s-2,0.9 -2,2v5c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2v-5C23,10.9 22.1,10 21,10zM18,5H6C4.9,5 4,5.9 4,7v2.15c1.16,0.41 2,1.52 2,2.81V14h12v-2.03c0,-1.3 0.84,-2.4 2,-2.81V7C20,5.9 19.1,5 18,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/west.xml b/compose/material/material/icons/generator/raw-icons/filled/west.xml
deleted file mode 100644
index e383687..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,19l1.41,-1.41L5.83,13H22V11H5.83l4.59,-4.59L9,5l-7,7L9,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/whatsapp.xml b/compose/material/material/icons/generator/raw-icons/filled/whatsapp.xml
deleted file mode 100644
index 82a2a5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/whatsapp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.05,4.91C17.18,3.03 14.69,2 12.04,2c-5.46,0 -9.91,4.45 -9.91,9.91c0,1.75 0.46,3.45 1.32,4.95L2.05,22l5.25,-1.38c1.45,0.79 3.08,1.21 4.74,1.21h0c0,0 0,0 0,0c5.46,0 9.91,-4.45 9.91,-9.91C21.95,9.27 20.92,6.78 19.05,4.91zM12.04,20.15L12.04,20.15c-1.48,0 -2.93,-0.4 -4.2,-1.15l-0.3,-0.18l-3.12,0.82l0.83,-3.04l-0.2,-0.31c-0.82,-1.31 -1.26,-2.83 -1.26,-4.38c0,-4.54 3.7,-8.24 8.24,-8.24c2.2,0 4.27,0.86 5.82,2.42c1.56,1.56 2.41,3.63 2.41,5.83C20.28,16.46 16.58,20.15 12.04,20.15zM16.56,13.99c-0.25,-0.12 -1.47,-0.72 -1.69,-0.81c-0.23,-0.08 -0.39,-0.12 -0.56,0.12c-0.17,0.25 -0.64,0.81 -0.78,0.97c-0.14,0.17 -0.29,0.19 -0.54,0.06c-0.25,-0.12 -1.05,-0.39 -1.99,-1.23c-0.74,-0.66 -1.23,-1.47 -1.38,-1.72c-0.14,-0.25 -0.02,-0.38 0.11,-0.51c0.11,-0.11 0.25,-0.29 0.37,-0.43c0.12,-0.14 0.17,-0.25 0.25,-0.41c0.08,-0.17 0.04,-0.31 -0.02,-0.43c-0.06,-0.12 -0.56,-1.34 -0.76,-1.84c-0.2,-0.48 -0.41,-0.42 -0.56,-0.43C8.86,7.33 8.7,7.33 8.53,7.33c-0.17,0 -0.43,0.06 -0.66,0.31C7.65,7.89 7.01,8.49 7.01,9.71c0,1.22 0.89,2.4 1.01,2.56c0.12,0.17 1.75,2.67 4.23,3.74c0.59,0.26 1.05,0.41 1.41,0.52c0.59,0.19 1.13,0.16 1.56,0.1c0.48,-0.07 1.47,-0.6 1.67,-1.18c0.21,-0.58 0.21,-1.07 0.14,-1.18S16.81,14.11 16.56,13.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/whatshot.xml b/compose/material/material/icons/generator/raw-icons/filled/whatshot.xml
deleted file mode 100644
index b70884b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/whatshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,0.67s0.74,2.65 0.74,4.8c0,2.06 -1.35,3.73 -3.41,3.73 -2.07,0 -3.63,-1.67 -3.63,-3.73l0.03,-0.36C5.21,7.51 4,10.62 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,8.61 17.41,3.8 13.5,0.67zM11.71,19c-1.78,0 -3.22,-1.4 -3.22,-3.14 0,-1.62 1.05,-2.76 2.81,-3.12 1.77,-0.36 3.6,-1.21 4.62,-2.58 0.39,1.29 0.59,2.65 0.59,4.04 0,2.65 -2.15,4.8 -4.8,4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wheelchair_pickup.xml b/compose/material/material/icons/generator/raw-icons/filled/wheelchair_pickup.xml
deleted file mode 100644
index c86f4382..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wheelchair_pickup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S4.5,5.11 4.5,4zM10,10.95V9c0,-1.1 -0.9,-2 -2,-2H5C3.9,7 3,7.9 3,9v6h2v7h3.5v-0.11c-1.24,-1.26 -2,-2.99 -2,-4.89C6.5,14.42 7.91,12.16 10,10.95zM16.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3c0,-1.11 0.61,-2.06 1.5,-2.58v-2.16C9.98,12.9 8.5,14.77 8.5,17c0,2.76 2.24,5 5,5s5,-2.24 5,-5H16.5zM19.54,14H15V8h-2v8h5.46l2.47,3.71l1.66,-1.11L19.54,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/where_to_vote.xml b/compose/material/material/icons/generator/raw-icons/filled/where_to_vote.xml
deleted file mode 100644
index 0250651..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/where_to_vote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c3.86,0 7,3.14 7,7 0,5.25 -7,13 -7,13S5,14.25 5,9c0,-3.86 3.14,-7 7,-7zM10.47,14L17,7.41 15.6,6l-5.13,5.18L8.4,9.09 7,10.5l3.47,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/widgets.xml b/compose/material/material/icons/generator/raw-icons/filled/widgets.xml
deleted file mode 100644
index f9fb067..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/widgets.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v8h8v-8h-8zM3,21h8v-8L3,13v8zM3,3v8h8L11,3L3,3zM16.66,1.69L11,7.34 16.66,13l5.66,-5.66 -5.66,-5.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/width_full.xml b/compose/material/material/icons/generator/raw-icons/filled/width_full.xml
deleted file mode 100644
index b7fb52b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/width_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h1v12H4V6zM20,18h-1V6h1V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/width_normal.xml b/compose/material/material/icons/generator/raw-icons/filled/width_normal.xml
deleted file mode 100644
index 5f327b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/width_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h4v12H4V6zM20,18h-4V6h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/width_wide.xml b/compose/material/material/icons/generator/raw-icons/filled/width_wide.xml
deleted file mode 100644
index aacd7be..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/width_wide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h2v12H4V6zM20,18h-2V6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi.xml
deleted file mode 100644
index b95c22a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9l2,2c4.97,-4.97 13.03,-4.97 18,0l2,-2C16.93,2.93 7.08,2.93 1,9zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0zM5,13l2,2c2.76,-2.76 7.24,-2.76 10,0l2,-2C15.14,9.14 8.87,9.14 5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_1_bar.xml
deleted file mode 100644
index dff42e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.53,17.46L12,21l-3.53,-3.54C9.37,16.56 10.62,16 12,16S14.63,16.56 15.53,17.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_2_bar.xml
deleted file mode 100644
index 7d24069..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c3.03,0 5.78,1.23 7.76,3.22l-2.12,2.12C16.2,13.9 14.2,13 12,13c-2.2,0 -4.2,0.9 -5.64,2.35l-2.12,-2.12C6.22,11.23 8.97,10 12,10zM12,16c-1.38,0 -2.63,0.56 -3.53,1.46L12,21l3.53,-3.54C14.63,16.56 13.38,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_calling.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_calling.xml
deleted file mode 100644
index 49f3c99..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_calling.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4.95C21.79,4.78 19.67,3 16.5,3c-3.18,0 -5.29,1.78 -5.5,1.95L16.5,12L22,4.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.51c-1.24,0 -2.45,-0.2 -3.57,-0.57c-0.35,-0.12 -0.75,-0.03 -1.02,0.24l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4c0,9.39 7.61,17 17,17c0.55,0 1,-0.45 1,-1v-3.49C21,15.96 20.55,15.51 20,15.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_calling_3.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_calling_3.xml
deleted file mode 100644
index db95de8..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_calling_3.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,3c-2.21,0 -4.21,0.9 -5.66,2.34l1.06,1.06c1.18,-1.18 2.8,-1.91 4.59,-1.91s3.42,0.73 4.59,1.91l1.06,-1.06C20.7,3.9 18.7,3 16.49,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.03,7.46C19.12,6.56 17.87,6 16.49,6s-2.63,0.56 -3.54,1.46l1.06,1.06c0.63,-0.63 1.51,-1.03 2.47,-1.03s1.84,0.39 2.47,1.03L20.03,7.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.08,9.59L16.49,11l1.41,-1.41C17.54,9.22 17.04,9 16.49,9S15.44,9.22 15.08,9.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.63,14.4l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3L4,3C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.56,0.03 1.03,-0.44 1.03,-1l0,-4.15c0,-0.48 -0.34,-0.89 -0.8,-0.98l-3.67,-0.73C16.2,14.07 15.86,14.17 15.63,14.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_channel.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_channel.xml
deleted file mode 100644
index ab4133d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_channel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3c-2.51,0 -3.77,5.61 -4.4,10.57C10.79,10.66 9.61,8 8,8C4.43,8 3,21 3,21h2.01c0.61,-5.27 2,-9.82 2.99,-10.87c0.98,1.05 2.38,5.61 2.99,10.87H13c0.5,-2.53 2,-6 3,-6s2.5,3.53 3,6h2C21,21 20.5,3 16,3zM16,13c-0.99,0 -1.82,0.62 -2.5,1.5c0.57,-4.77 1.54,-8.62 2.5,-9.44c0.97,0.81 1.91,4.67 2.49,9.43C17.81,13.62 16.98,13 16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_find.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_find.xml
deleted file mode 100644
index b7893d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_find.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14c0,-3.36 2.64,-6 6,-6c2.2,0 4.08,1.13 5.13,2.86L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21l1.86,-1.87C12.14,18.09 11,16.2 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14c0,-2.24 -1.76,-4 -4,-4s-4,1.76 -4,4c0,2.24 1.76,4 4,4c0.75,0 1.44,-0.21 2.03,-0.56L21.59,20L23,18.59l-2.56,-2.56C20.79,15.44 21,14.75 21,14zM15,14c0,-1.12 0.88,-2 2,-2s2,0.88 2,2c0,1.12 -0.88,2 -2,2S15,15.12 15,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_lock.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_lock.xml
deleted file mode 100644
index f0ee647..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_off.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_off.xml
deleted file mode 100644
index da83469..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.99,9C19.15,5.16 13.8,3.76 8.84,4.78l2.52,2.52c3.47,-0.17 6.99,1.05 9.63,3.7l2,-2zM18.99,13c-1.29,-1.29 -2.84,-2.13 -4.49,-2.56l3.53,3.53 0.96,-0.97zM2,3.05L5.07,6.1C3.6,6.82 2.22,7.78 1,9l1.99,2c1.24,-1.24 2.67,-2.16 4.2,-2.77l2.24,2.24C7.81,10.89 6.27,11.73 5,13v0.01L6.99,15c1.36,-1.36 3.14,-2.04 4.92,-2.06L18.98,20l1.27,-1.26L3.29,1.79 2,3.05zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_password.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_password.xml
deleted file mode 100644
index cbda549..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,19v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C24,19.45 23.55,19 23,19zM22,19h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V19zM24,8.98l-2.12,2.13C19.35,8.57 15.85,7 12,7s-7.35,1.57 -9.88,4.11L0,8.98C3.07,5.9 7.31,4 12,4S20.93,5.9 24,8.98zM12,10c3.03,0 5.78,1.23 7.76,3.22l-2.12,2.12C16.2,13.9 14.2,13 12,13c-2.2,0 -4.2,0.9 -5.64,2.35l-2.12,-2.12C6.22,11.23 8.97,10 12,10zM15.53,17.46L12,21l-3.53,-3.54C9.37,16.56 10.62,16 12,16S14.63,16.56 15.53,17.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_protected_setup.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_protected_setup.xml
deleted file mode 100644
index a0ca4576..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_protected_setup.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.71,5.29L19,3h-8v8l2.3,-2.3c1.97,1.46 3.25,3.78 3.25,6.42c0,1.31 -0.32,2.54 -0.88,3.63c2.33,-1.52 3.88,-4.14 3.88,-7.13C19.55,9.1 18.44,6.85 16.71,5.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.46,8.88c0,-1.31 0.32,-2.54 0.88,-3.63C6,6.77 4.46,9.39 4.46,12.38c0,2.52 1.1,4.77 2.84,6.33L5,21h8v-8l-2.3,2.3C8.74,13.84 7.46,11.52 7.46,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering.xml
deleted file mode 100644
index 1e68b1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.48 -0.81,2.75 -2,3.45l1,1.74c1.79,-1.04 3,-2.97 3,-5.19zM12,3C6.48,3 2,7.48 2,13c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,18.53 4,15.96 4,13c0,-4.42 3.58,-8 8,-8s8,3.58 8,8c0,2.96 -1.61,5.53 -4,6.92l1,1.73c2.99,-1.73 5,-4.95 5,-8.65 0,-5.52 -4.48,-10 -10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_error.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_error.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_error_rounded.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_error_rounded.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_error_rounded.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_off.xml b/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_off.xml
deleted file mode 100644
index 9bfede4..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wifi_tethering_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6 2,10.71 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-1.75 0.57,-3.35 1.51,-4.66l1.43,1.43C6.35,10.7 6,11.81 6,13c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-0.63 0.15,-1.23 0.41,-1.76l1.61,1.61c0,0.05 -0.02,0.1 -0.02,0.15c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15c0.05,0 0.1,-0.01 0.16,-0.02l7.62,7.62l1.41,-1.41L2.81,2.81zM17.7,14.87C17.89,14.28 18,13.65 18,13c0,-3.31 -2.69,-6 -6,-6c-0.65,0 -1.28,0.1 -1.87,0.3l1.71,1.71C11.89,9 11.95,9 12,9c2.21,0 4,1.79 4,4c0,0.05 0,0.11 -0.01,0.16L17.7,14.87zM12,5c4.42,0 8,3.58 8,8c0,1.22 -0.27,2.37 -0.77,3.4l1.49,1.49C21.53,16.45 22,14.78 22,13c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.46 -4.89,1.28l1.48,1.48C9.63,5.27 10.78,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wind_power.xml b/compose/material/material/icons/generator/raw-icons/filled/wind_power.xml
deleted file mode 100644
index b0a044b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wind_power.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,7h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.73,10.61c0.75,0.23 1.3,0.78 1.57,1.46l4.27,-7.11c0.65,-1.08 0.3,-2.48 -0.78,-3.13c-0.87,-0.52 -1.99,-0.41 -2.73,0.29l-3.43,3.21C12.23,5.7 12,6.23 12,6.78v3.93C12.36,10.56 12.98,10.38 13.73,10.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.61,12.27c0.16,-0.52 0.48,-0.96 0.89,-1.27H3.28C2.02,11 1,12.02 1,13.28c0,1.02 0.67,1.91 1.65,2.19l4.51,1.29c0.53,0.15 1.1,0.08 1.58,-0.21l2.69,-1.61C10.66,14.32 10.3,13.27 10.61,12.27z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.21,18.61l-2.28,-4.1c-0.27,-0.48 -0.73,-0.83 -1.26,-0.97l-3.18,-0.8c0.03,0.32 0,0.66 -0.1,0.99c-0.32,1.06 -1.28,1.77 -2.39,1.77c-0.61,0 -0.99,-0.22 -1,-0.22V21c-1.1,0 -2,0.9 -2,2h6c0,-1.1 -0.9,-2 -2,-2v-4.28l4.61,4.61c0.89,0.89 2.33,0.89 3.22,0C22.55,20.61 22.71,19.5 22.21,18.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.56,14.43c0.79,0.24 1.63,-0.2 1.87,-1c0.24,-0.79 -0.2,-1.63 -1,-1.87c-0.79,-0.24 -1.63,0.2 -1.87,1C11.32,13.35 11.77,14.19 12.56,14.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/window.xml b/compose/material/material/icons/generator/raw-icons/filled/window.xml
deleted file mode 100644
index 85e9280..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/window.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11V3H5C3.9,3 3,3.9 3,5v6H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11h8V5c0,-1.1 -0.9,-2 -2,-2h-6V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13H3v6c0,1.1 0.9,2 2,2h6V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v8h6c1.1,0 2,-0.9 2,-2v-6H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wine_bar.xml b/compose/material/material/icons/generator/raw-icons/filled/wine_bar.xml
deleted file mode 100644
index ab4a87f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wine_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3l0,6c0,2.97 2.16,5.43 5,5.91V19H8v2h8v-2h-3v-4.09c2.84,-0.48 5,-2.94 5,-5.91l0,-6H6zM16,8H8l0,-3h8C16,5 16,8 16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/woman.xml b/compose/material/material/icons/generator/raw-icons/filled/woman.xml
deleted file mode 100644
index 46868cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,8.31C13.62,7.52 12.85,7 12,7s-1.62,0.52 -1.94,1.31L7,16h3v6h4v-6h3L13.94,8.31z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/woman_2.xml b/compose/material/material/icons/generator/raw-icons/filled/woman_2.xml
deleted file mode 100644
index 1f42b3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/woman_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,8.31C13.62,7.52 12.85,7 12,7s-1.62,0.52 -1.94,1.31L7,16h3.5v6h3v-6H17L13.94,8.31z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/work.xml b/compose/material/material/icons/generator/raw-icons/filled/work.xml
deleted file mode 100644
index 4cc0c1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM14,6h-4L10,4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/work_history.xml b/compose/material/material/icons/generator/raw-icons/filled/work_history.xml
deleted file mode 100644
index 170ef05..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/work_history.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c1.49,0 2.87,0.47 4,1.26V8c0,-1.11 -0.89,-2 -2,-2h-4V4c0,-1.11 -0.89,-2 -2,-2h-4C8.89,2 8,2.89 8,4v2H4C2.89,6 2.01,6.89 2.01,8L2,19c0,1.11 0.89,2 2,2h7.68C11.25,20.09 11,19.08 11,18C11,14.13 14.13,11 18,11zM10,4h4v2h-4V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/work_off.xml b/compose/material/material/icons/generator/raw-icons/filled/work_off.xml
deleted file mode 100644
index af7b5f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/work_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,21.74l-1.46,-1.46L7.21,5.95 3.25,1.99 1.99,3.25l2.7,2.7h-0.64c-1.11,0 -1.99,0.89 -1.99,2l-0.01,11c0,1.11 0.89,2 2,2h15.64L21.74,23 23,21.74zM22,7.95c0.05,-1.11 -0.84,-2 -1.95,-1.95h-4V3.95c0,-1.11 -0.89,-2 -2,-1.95h-4c-1.11,-0.05 -2,0.84 -2,1.95v0.32l13.95,14V7.95zM14.05,6H10V3.95h4.05V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/work_outline.xml b/compose/material/material/icons/generator/raw-icons/filled/work_outline.xml
deleted file mode 100644
index cda024a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/work_outline.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6L14,4h-4v2h4zM4,8v11h16L20,8L4,8zM20,6c1.11,0 2,0.89 2,2v11c0,1.11 -0.89,2 -2,2L4,21c-1.11,0 -2,-0.89 -2,-2l0.01,-11c0,-1.11 0.88,-2 1.99,-2h4L8,4c0,-1.11 0.89,-2 2,-2h4c1.11,0 2,0.89 2,2v2h4z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/workspace_premium.xml b/compose/material/material/icons/generator/raw-icons/filled/workspace_premium.xml
deleted file mode 100644
index 41420c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/workspace_premium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.68,13.69L12,11.93l2.31,1.76l-0.88,-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69zM20,10c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8c0,2.03 0.76,3.87 2,5.28V23l6,-2l6,2v-7.72C19.24,13.87 20,12.03 20,10zM12,4c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/workspaces.xml b/compose/material/material/icons/generator/raw-icons/filled/workspaces.xml
deleted file mode 100644
index 875a70a..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/workspaces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S8.2,13 6,13zM12,3C9.8,3 8,4.8 8,7s1.8,4 4,4s4,-1.8 4,-4S14.2,3 12,3zM18,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S20.2,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wrap_text.xml b/compose/material/material/icons/generator/raw-icons/filled/wrap_text.xml
deleted file mode 100644
index c9de17b..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wrap_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h6v-2L4,17v2zM20,5L4,5v2h16L20,5zM17,11L4,11v2h13.25c1.1,0 2,0.9 2,2s-0.9,2 -2,2L15,17v-2l-3,3 3,3v-2h2c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wrong_location.xml b/compose/material/material/icons/generator/raw-icons/filled/wrong_location.xml
deleted file mode 100644
index 14b5fe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wrong_location.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10V3.26C13.35,3.09 12.68,3 12,3c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-0.41 -0.04,-0.81 -0.09,-1.2H14zM12,13c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,12.1 13.1,13 12,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.54,2.88l-1.42,-1.42l-2.12,2.13l-2.12,-2.13l-1.42,1.42l2.13,2.12l-2.13,2.12l1.42,1.42l2.12,-2.13l2.12,2.13l1.42,-1.42l-2.13,-2.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/wysiwyg.xml b/compose/material/material/icons/generator/raw-icons/filled/wysiwyg.xml
deleted file mode 100644
index b98af4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/wysiwyg.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM17,12H7v-2h10V12zM13,16H7v-2h6V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/yard.xml b/compose/material/material/icons/generator/raw-icons/filled/yard.xml
deleted file mode 100644
index d32f485..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/yard.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM8,8.22c0,-0.86 0.7,-1.56 1.56,-1.56c0.33,0 0.64,0.1 0.89,0.28l-0.01,-0.12c0,-0.86 0.7,-1.56 1.56,-1.56s1.56,0.7 1.56,1.56l-0.01,0.12c0.26,-0.18 0.56,-0.28 0.89,-0.28c0.86,0 1.56,0.7 1.56,1.56c0,0.62 -0.37,1.16 -0.89,1.4C15.63,9.87 16,10.41 16,11.03c0,0.86 -0.7,1.56 -1.56,1.56c-0.33,0 -0.64,-0.11 -0.89,-0.28l0.01,0.12c0,0.86 -0.7,1.56 -1.56,1.56s-1.56,-0.7 -1.56,-1.56l0.01,-0.12c-0.26,0.18 -0.56,0.28 -0.89,0.28C8.7,12.59 8,11.89 8,11.03c0,-0.62 0.37,-1.16 0.89,-1.4C8.37,9.38 8,8.84 8,8.22zM12,19c-3.31,0 -6,-2.69 -6,-6C9.31,13 12,15.69 12,19c0,-3.31 2.69,-6 6,-6C18,16.31 15.31,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9.62m-1.56,0a1.56,1.56 0,1 1,3.12 0a1.56,1.56 0,1 1,-3.12 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/youtube_searched_for.xml b/compose/material/material/icons/generator/raw-icons/filled/youtube_searched_for.xml
deleted file mode 100644
index 97115bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/youtube_searched_for.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.01,14h-0.8l-0.27,-0.27c0.98,-1.14 1.57,-2.61 1.57,-4.23 0,-3.59 -2.91,-6.5 -6.5,-6.5s-6.5,3 -6.5,6.5H2l3.84,4 4.16,-4H6.51C6.51,7 8.53,5 11.01,5s4.5,2.01 4.5,4.5c0,2.48 -2.02,4.5 -4.5,4.5 -0.65,0 -1.26,-0.14 -1.82,-0.38L7.71,15.1c0.97,0.57 2.09,0.9 3.3,0.9 1.61,0 3.08,-0.59 4.22,-1.57l0.27,0.27v0.79l5.01,4.99L22,19l-4.99,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/zoom_in.xml b/compose/material/material/icons/generator/raw-icons/filled/zoom_in.xml
deleted file mode 100644
index 3149411..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/zoom_in.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10h-2v2H9v-2H7V9h2V7h1v2h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/zoom_in_map.xml b/compose/material/material/icons/generator/raw-icons/filled/zoom_in_map.xml
deleted file mode 100644
index 1a244634..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/zoom_in_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9l0,-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9zM21,9V7l-2.59,0l3.09,-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9zM3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0,-6L3,15zM15,15l0,6h2v-2.59l3.09,3.09l1.41,-1.41L18.41,17H21v-2L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/zoom_out.xml b/compose/material/material/icons/generator/raw-icons/filled/zoom_out.xml
deleted file mode 100644
index 22c3cd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/zoom_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM7,9h5v1L7,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/filled/zoom_out_map.xml b/compose/material/material/icons/generator/raw-icons/filled/zoom_out_map.xml
deleted file mode 100644
index 6834936..0000000
--- a/compose/material/material/icons/generator/raw-icons/filled/zoom_out_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3l2.3,2.3l-2.89,2.87l1.42,1.42L18.7,6.7L21,9V3H15zM3,9l2.3,-2.3l2.87,2.89l1.42,-1.42L6.7,5.3L9,3H3V9zM9,21l-2.3,-2.3l2.89,-2.87l-1.42,-1.42L5.3,17.3L3,15v6H9zM21,15l-2.3,2.3l-2.87,-2.89l-1.42,1.42l2.89,2.87L15,21h6V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/10k.xml b/compose/material/material/icons/generator/raw-icons/outlined/10k.xml
deleted file mode 100644
index 60a9cc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/10k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,9v6v4H5v-8.5h1V15h1.5V9H5V5h14V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11.25l0,-2.25l-1.5,0l0,6l1.5,0l0,-2.25l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,15H12c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H9.5c-0.55,0 -1,0.45 -1,1v4C8.5,14.55 8.95,15 9.5,15zM10,10.5h1.5v3H10V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/10mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/10mp.xml
deleted file mode 100644
index d1aa81d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/10mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H13c-0.55,0 -1,0.45 -1,1v4C12,11.05 12.45,11.5 13,11.5zM13.5,7H15v3h-1.5V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/11mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/11mp.xml
deleted file mode 100644
index a47765d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/11mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/123.xml b/compose/material/material/icons/generator/raw-icons/outlined/123.xml
deleted file mode 100644
index e64bdfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/123.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15H5.5v-4.5H4V9h3V15zM13.5,13.5h-3v-1h2c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H9v1.5h3v1h-2c-0.55,0 -1,0.45 -1,1V15h4.5V13.5zM19.5,14v-4c0,-0.55 -0.45,-1 -1,-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15 19.5,14.55 19.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/12mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/12mp.xml
deleted file mode 100644
index 7ca45e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/12mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10h-3V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H12V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5h4.5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/13mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/13mp.xml
deleted file mode 100644
index 6239ff0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/13mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5 16.5,11.05 16.5,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/14mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/14mp.xml
deleted file mode 100644
index 5aa373e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/14mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.5l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/15mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/15mp.xml
deleted file mode 100644
index 0846fb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/15mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5C16.05,11.5 16.5,11.05 16.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/16mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/16mp.xml
deleted file mode 100644
index 16fcc22..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/16mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.5h2.5c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H13c-0.55,0 -1,0.45 -1,1v4C12,11.05 12.45,11.5 13,11.5zM13.5,9H15v1.5h-1.5V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/17mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/17mp.xml
deleted file mode 100644
index 23c3e68..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/17mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.25,11.5H15l1.46,-4.71c0.19,-0.64 -0.29,-1.29 -0.96,-1.29H12V7h2.62L13.25,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/18_up_rating.xml b/compose/material/material/icons/generator/raw-icons/outlined/18_up_rating.xml
deleted file mode 100644
index d67628b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/18_up_rating.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,15l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,15H15c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-2.5c-0.55,0 -1,0.45 -1,1v4C11.5,14.55 11.95,15 12.5,15zM13,10h1.5v1.5H13V10zM13,12.5h1.5V14H13V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/18mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/18mp.xml
deleted file mode 100644
index 72f2c7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/18mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H13c-0.55,0 -1,0.45 -1,1v4C12,11.05 12.45,11.5 13,11.5zM13.5,6.5H15V8h-1.5V6.5zM13.5,9H15v1.5h-1.5V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/19mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/19mp.xml
deleted file mode 100644
index 5a189e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/19mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H13c-0.55,0 -1,0.45 -1,1V8c0,0.55 0.45,1 1,1h2v1h-3v1.5h3.5C16.05,11.5 16.5,11.05 16.5,10.5zM15,8h-1.5V6.5H15V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/1k.xml b/compose/material/material/icons/generator/raw-icons/outlined/1k.xml
deleted file mode 100644
index da3adfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/1k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,15l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/1k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/1k_plus.xml
deleted file mode 100644
index b73cc67..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/1k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/1x_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/1x_mobiledata.xml
deleted file mode 100644
index 2b10b9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/1x_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h4v10H6V9H4V7zM15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2,-3.34l2,3.34H19L15.83,11.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/20mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/20mp.xml
deleted file mode 100644
index 07edd7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/20mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H14c-0.55,0 -1,0.45 -1,1v4C13,11.05 13.45,11.5 14,11.5zM14.5,7H16v3h-1.5V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/21mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/21mp.xml
deleted file mode 100644
index d0d7854..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/21mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10H9V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H7.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H12V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5v6H15V17zM15,14h1.5v1.5H15V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/22mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/22mp.xml
deleted file mode 100644
index f122455..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/22mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10h-3V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H13V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5h4.5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/23mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/23mp.xml
deleted file mode 100644
index 4c238bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/23mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5C17.05,11.5 17.5,11.05 17.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/24mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/24mp.xml
deleted file mode 100644
index 90fbb4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/24mp.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12.5h-3.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5C18,12.95 17.55,12.5 17,12.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11.5l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/2k.xml b/compose/material/material/icons/generator/raw-icons/outlined/2k.xml
deleted file mode 100644
index 9446a43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/2k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13.5H8v-1h2c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H6.5v1.5h3v1h-2c-0.55,0 -1,0.45 -1,1V15H11V13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/2k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/2k_plus.xml
deleted file mode 100644
index b07baae1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/2k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13.5H7.5v-1H9c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H6v1.5h2.5v1H7c-0.55,0 -1,0.45 -1,1V15h4V13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/2mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/2mp.xml
deleted file mode 100644
index 46c71fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/2mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10h-3V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H10V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5h4.5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/30fps.xml b/compose/material/material/icons/generator/raw-icons/outlined/30fps.xml
deleted file mode 100644
index b8e01c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/30fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H2zM19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/30fps_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/30fps_select.xml
deleted file mode 100644
index eb660f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/30fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0 2,-0.9 2,-2v-1.5C11,9.67 10.83,9 10,9c0.83,0 1,-0.67 1,-1.5V6c0,-1.1 -0.9,-2 -2,-2H4zM18,4c1.1,0 2,0.9 2,2v6c0,1.1 -0.9,2 -2,2h-3c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2H18zM18,6h-3v6h3V6zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/360.xml b/compose/material/material/icons/generator/raw-icons/outlined/360.xml
deleted file mode 100644
index 8be05d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/360.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7C6.48,7 2,9.24 2,12c0,2.24 2.94,4.13 7,4.77V20l4,-4 -4,-4v2.73c-3.15,-0.56 -5,-1.9 -5,-2.73 0,-1.06 3.04,-3 8,-3s8,1.94 8,3c0,0.73 -1.46,1.89 -4,2.53v2.05c3.53,-0.77 6,-2.53 6,-4.58 0,-2.76 -4.48,-5 -10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/3d_rotation.xml b/compose/material/material/icons/generator/raw-icons/outlined/3d_rotation.xml
deleted file mode 100644
index 3193e77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/3d_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.53,21.48C4.26,19.94 1.92,16.76 1.56,13L0.06,13c0.51,6.16 5.66,11 11.95,11l0.66,-0.03 -3.81,-3.81 -1.33,1.32zM8.42,14.96c-0.19,0 -0.37,-0.03 -0.52,-0.08 -0.16,-0.06 -0.29,-0.13 -0.4,-0.24 -0.11,-0.1 -0.2,-0.22 -0.26,-0.37 -0.06,-0.14 -0.09,-0.3 -0.09,-0.47h-1.3c0,0.36 0.07,0.68 0.21,0.95 0.14,0.27 0.33,0.5 0.56,0.69 0.24,0.18 0.51,0.32 0.82,0.41 0.3,0.1 0.62,0.15 0.96,0.15 0.37,0 0.72,-0.05 1.03,-0.15 0.32,-0.1 0.6,-0.25 0.83,-0.44s0.42,-0.43 0.55,-0.72 0.2,-0.61 0.2,-0.97c0,-0.19 -0.02,-0.38 -0.07,-0.56 -0.05,-0.18 -0.12,-0.35 -0.23,-0.51 -0.1,-0.16 -0.24,-0.3 -0.4,-0.43 -0.17,-0.13 -0.37,-0.23 -0.61,-0.31 0.2,-0.09 0.37,-0.2 0.52,-0.33 0.15,-0.13 0.27,-0.27 0.37,-0.42 0.1,-0.15 0.17,-0.3 0.22,-0.46s0.07,-0.32 0.07,-0.48c0,-0.36 -0.06,-0.68 -0.18,-0.96s-0.29,-0.51 -0.51,-0.69c-0.2,-0.19 -0.47,-0.33 -0.77,-0.43C9.11,8.05 8.77,8 8.4,8c-0.36,0 -0.69,0.05 -1,0.16 -0.3,0.11 -0.57,0.26 -0.79,0.45 -0.21,0.19 -0.38,0.41 -0.51,0.67 -0.12,0.26 -0.18,0.54 -0.18,0.85h1.3c0,-0.17 0.03,-0.32 0.09,-0.45s0.14,-0.25 0.25,-0.34 0.23,-0.17 0.38,-0.22 0.3,-0.08 0.48,-0.08c0.4,0 0.7,0.1 0.89,0.31 0.19,0.2 0.29,0.49 0.29,0.86 0,0.18 -0.03,0.34 -0.08,0.49s-0.14,0.27 -0.25,0.37c-0.11,0.1 -0.25,0.18 -0.41,0.24 -0.16,0.06 -0.36,0.09 -0.58,0.09h-0.77v1.03h0.77c0.22,0 0.42,0.02 0.6,0.07s0.33,0.13 0.45,0.23c0.12,0.11 0.22,0.24 0.29,0.4s0.1,0.35 0.1,0.57c0,0.41 -0.12,0.72 -0.35,0.93 -0.23,0.23 -0.55,0.33 -0.95,0.33zM16.97,9.04c-0.32,-0.33 -0.7,-0.59 -1.14,-0.77 -0.44,-0.18 -0.93,-0.27 -1.47,-0.27L12,8v8h2.3c0.55,0 1.06,-0.09 1.51,-0.27s0.84,-0.43 1.16,-0.76c0.32,-0.33 0.57,-0.73 0.74,-1.19 0.17,-0.47 0.26,-0.99 0.26,-1.57v-0.4c0,-0.58 -0.09,-1.1 -0.26,-1.57s-0.42,-0.87 -0.74,-1.2zM16.58,12.2c0,0.42 -0.05,0.79 -0.14,1.13 -0.1,0.33 -0.24,0.62 -0.43,0.85 -0.19,0.23 -0.43,0.41 -0.71,0.53 -0.29,0.12 -0.62,0.18 -0.99,0.18h-0.91L13.4,9.12h0.97c0.72,0 1.27,0.23 1.64,0.69 0.38,0.46 0.57,1.12 0.57,1.99v0.4zM12.01,0l-0.66,0.03 3.81,3.81 1.33,-1.33c3.27,1.55 5.61,4.72 5.96,8.48h1.5C23.45,4.84 18.3,0 12.01,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/3g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/3g_mobiledata.xml
deleted file mode 100644
index b64df94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/3g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0 2,-0.9 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5c0.83,0 1.5,-0.67 1.5,-1.5V9c0,-1.1 -0.9,-2 -2,-2H3zM21,11v4c0,1.1 -0.9,2 -2,2h-5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h5c1.1,0 2,0.9 2,2h-7v6h5v-2h-2.5v-2H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/3k.xml b/compose/material/material/icons/generator/raw-icons/outlined/3k.xml
deleted file mode 100644
index 53b3b4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/3k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14v-4c0,-0.55 -0.45,-1 -1,-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10C10.55,15 11,14.55 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/3k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/3k_plus.xml
deleted file mode 100644
index 191fe3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/3k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14v-4c0,-0.55 -0.45,-1 -1,-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9C9.55,15 10,14.55 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/3mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/3mp.xml
deleted file mode 100644
index 6fd8daa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/3mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5C14.05,11.5 14.5,11.05 14.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/3p.xml b/compose/material/material/icons/generator/raw-icons/outlined/3p.xml
deleted file mode 100644
index b9c62f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/3p.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4.01c-1.1,0 -2,0.9 -2,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16zM12,10c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,10 12,10zM16,13.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C13.93,11.21 12.99,11 12,11c-0.99,0 -1.93,0.21 -2.78,0.58C8.48,11.9 8,12.62 8,13.43V14h8V13.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/4g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/4g_mobiledata.xml
deleted file mode 100644
index 610d682..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/4g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zM17,11v2h2v2h-5V9h7c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/4g_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/4g_plus_mobiledata.xml
deleted file mode 100644
index 5bcd827..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/4g_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11v2h2v2h-4V9h6c0,-1.1 -0.9,-2 -2,-2h-4C9.9,7 9,7.9 9,9v6c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-4H13zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11zM7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/4k.xml b/compose/material/material/icons/generator/raw-icons/outlined/4k.xml
deleted file mode 100644
index 67a4335..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/4k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2zM19,19L5,19L5,5h14v14zM9.5,15L11,15v-1.49h1L12,12h-1L11,9L9.5,9v3L8,12L8,9L6.5,9v4.5h3zM18.2,15l-2,-3 2,-3h-1.7l-2,3 2,3zM14.5,12L14.5,9L13,9v6h1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/4k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/4k_plus.xml
deleted file mode 100644
index b22a810..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/4k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,15l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/4mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/4mp.xml
deleted file mode 100644
index 78b3c3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/4mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.5l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/5g.xml b/compose/material/material/icons/generator/raw-icons/outlined/5g.xml
deleted file mode 100644
index 6b73e26..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/5g.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13H19v2h-5V9h7c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4h-4.5V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h5v2H3v2h5c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H5V9h5V7H3V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/5k.xml b/compose/material/material/icons/generator/raw-icons/outlined/5k.xml
deleted file mode 100644
index a06a361..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/5k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14v-1.5c0,-0.55 -0.45,-1 -1,-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10C10.55,15 11,14.55 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/5k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/5k_plus.xml
deleted file mode 100644
index a71e2b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/5k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14v-1.5c0,-0.55 -0.45,-1 -1,-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3C9.55,15 10,14.55 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/5mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/5mp.xml
deleted file mode 100644
index 0b800e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/5mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5C14.05,11.5 14.5,11.05 14.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/60fps.xml b/compose/material/material/icons/generator/raw-icons/outlined/60fps.xml
deleted file mode 100644
index 244d3db..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/60fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5zM10,8V5H5C3.34,5 2,6.34 2,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3v-3c0,-1.66 -1.34,-3 -3,-3H5V8H10zM8,13v3H5v-3H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/60fps_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/60fps_select.xml
deleted file mode 100644
index 57fdf09..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/60fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6v6h-3V6H18zM18,4h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V6C20,4.9 19.1,4 18,4zM11,6V4H6C4.9,4 4,4.9 4,6v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H6V6H11zM9,10v2H6v-2H9zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/6_ft_apart.xml b/compose/material/material/icons/generator/raw-icons/outlined/6_ft_apart.xml
deleted file mode 100644
index bd75a6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/6_ft_apart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM10,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C7.93,7.21 6.99,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h8V9.43zM18,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S16.9,6 18,6zM22,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C19.93,7.21 18.99,7 18,7c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,7.9 14,8.62 14,9.43V10h8V9.43zM19,17v-2.01L5,15v2l-3,-3l3,-3v2.01L19,13v-2l3,3L19,17zM10,19v-1H7.5C7.22,18 7,18.22 7,18.5v3C7,21.78 7.22,22 7.5,22h2c0.28,0 0.5,-0.22 0.5,-0.5V20c0,-0.28 -0.22,-0.5 -0.5,-0.5H8V19H10zM9,20.5V21H8v-0.5H9zM17.5,19h-1v3h-1v-3h-1v-1h3V19zM12.5,19v0.5h1v1h-1V22h-1v-4H14v1H12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/6k.xml b/compose/material/material/icons/generator/raw-icons/outlined/6k.xml
deleted file mode 100644
index 82e28b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/6k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15H10c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H8v-1h3V9H7.5c-0.55,0 -1,0.45 -1,1v4C6.5,14.55 6.95,15 7.5,15zM8,12.5h1.5V14H8V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/6k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/6k_plus.xml
deleted file mode 100644
index 7982315..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/6k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h2c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H7.5v-1H10V9H7c-0.55,0 -1,0.45 -1,1v4C6,14.55 6.45,15 7,15zM7.5,12.5h1V14h-1V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/6mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/6mp.xml
deleted file mode 100644
index be080ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/6mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11.5h2.5c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H11c-0.55,0 -1,0.45 -1,1v4C10,11.05 10.45,11.5 11,11.5zM11.5,9H13v1.5h-1.5V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/7k.xml b/compose/material/material/icons/generator/raw-icons/outlined/7k.xml
deleted file mode 100644
index d41ec5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/7k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.75,15H9.5l1.46,-4.71C11.15,9.65 10.67,9 10,9H6.5v1.5h2.63L7.75,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/7k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/7k_plus.xml
deleted file mode 100644
index 337d816..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/7k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.75,15H8.5l1.46,-4.71C10.15,9.65 9.67,9 9,9H5.5v1.5h2.63L6.75,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/7mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/7mp.xml
deleted file mode 100644
index 5837310..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/7mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,11.5H13l1.46,-4.71c0.19,-0.64 -0.29,-1.29 -0.96,-1.29H10V7h2.62L11.25,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/8k.xml b/compose/material/material/icons/generator/raw-icons/outlined/8k.xml
deleted file mode 100644
index d09423f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/8k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15H10c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H7.5c-0.55,0 -1,0.45 -1,1v4C6.5,14.55 6.95,15 7.5,15zM8,10h1.5v1.5H8V10zM8,12.5h1.5V14H8V12.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/8k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/8k_plus.xml
deleted file mode 100644
index d1c31b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/8k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h2c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v4C6,14.55 6.45,15 7,15zM7.5,10h1v1.5h-1V10zM7.5,12.5h1V14h-1V12.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/8mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/8mp.xml
deleted file mode 100644
index c9a36ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/8mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H11c-0.55,0 -1,0.45 -1,1v4C10,11.05 10.45,11.5 11,11.5zM11.5,6.5H13V8h-1.5V6.5zM11.5,9H13v1.5h-1.5V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/9k.xml b/compose/material/material/icons/generator/raw-icons/outlined/9k.xml
deleted file mode 100644
index b9b620b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/9k.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14v-4c0,-0.55 -0.45,-1 -1,-1H7.5c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2v1h-3V15H10C10.55,15 11,14.55 11,14zM9.5,11.5H8V10h1.5V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/9k_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/9k_plus.xml
deleted file mode 100644
index 5137662..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/9k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14v-4c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h1.5v1H6V15h3C9.55,15 10,14.55 10,14zM8.5,11.5h-1V10h1V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/9mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/9mp.xml
deleted file mode 100644
index c9e0a23..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/9mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H11c-0.55,0 -1,0.45 -1,1V8c0,0.55 0.45,1 1,1h2v1h-3v1.5h3.5C14.05,11.5 14.5,11.05 14.5,10.5zM13,8h-1.5V6.5H13V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/abc.xml b/compose/material/material/icons/generator/raw-icons/outlined/abc.xml
deleted file mode 100644
index 62a67b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/abc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V11zM8,10v5H6.5v-1.5h-2V15H3v-5c0,-0.55 0.45,-1 1,-1h3C7.55,9 8,9.45 8,10zM6.5,10.5h-2V12h2V10.5zM13.5,12c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1h-4V9h4c0.55,0 1,0.45 1,1v1C14.5,11.55 14.05,12 13.5,12zM11,10.5v0.75h2V10.5H11zM13,12.75h-2v0.75h2V12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ac_unit.xml b/compose/material/material/icons/generator/raw-icons/outlined/ac_unit.xml
deleted file mode 100644
index 8779cbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ac_unit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11h-4.17l3.24,-3.24 -1.41,-1.42L15,11h-2V9l4.66,-4.66 -1.42,-1.41L13,6.17V2h-2v4.17L7.76,2.93 6.34,4.34 11,9v2H9L4.34,6.34 2.93,7.76 6.17,11H2v2h4.17l-3.24,3.24 1.41,1.42L9,13h2v2l-4.66,4.66 1.42,1.41L11,17.83V22h2v-4.17l3.24,3.24 1.42,-1.41L13,15v-2h2l4.66,4.66 1.41,-1.42L17.83,13H22v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/access_alarm.xml b/compose/material/material/icons/generator/raw-icons/outlined/access_alarm.xml
deleted file mode 100644
index 5c0154b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/access_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37L12.5,8zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/access_alarms.xml b/compose/material/material/icons/generator/raw-icons/outlined/access_alarms.xml
deleted file mode 100644
index bbef213..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/access_alarms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.7l-4.6,-3.9 -1.3,1.5 4.6,3.9L22,5.7zM7.9,3.4L6.6,1.9 2,5.7l1.3,1.5 4.6,-3.8zM12.5,8L11,8v6l4.7,2.9 0.8,-1.2 -4,-2.4L12.5,8zM12,4c-5,0 -9,4 -9,9s4,9 9,9 9,-4 9,-9 -4,-9 -9,-9zM12,20c-3.9,0 -7,-3.1 -7,-7s3.1,-7 7,-7 7,3.1 7,7 -3.1,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/access_time.xml b/compose/material/material/icons/generator/raw-icons/outlined/access_time.xml
deleted file mode 100644
index 28e127d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/access_time.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/access_time_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/access_time_filled.xml
deleted file mode 100644
index a021dc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/access_time_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM15.29,16.71L11,12.41V7h2v4.59l3.71,3.71L15.29,16.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/accessibility.xml b/compose/material/material/icons/generator/raw-icons/outlined/accessibility.xml
deleted file mode 100644
index f29b9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM21,9h-6v13h-2v-6h-2v6L9,22L9,9L3,9L3,7h18v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/accessibility_new.xml b/compose/material/material/icons/generator/raw-icons/outlined/accessibility_new.xml
deleted file mode 100644
index e25d6f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/accessibility_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,6c-2.61,0.7 -5.67,1 -8.5,1s-5.89,-0.3 -8.5,-1L3,8c1.86,0.5 4,0.83 6,1v13h2v-6h2v6h2V9c2,-0.17 4.14,-0.5 6,-1l-0.5,-2zM12,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/accessible.xml b/compose/material/material/icons/generator/raw-icons/outlined/accessible.xml
deleted file mode 100644
index 49b9503..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/accessible.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43c-0.17,-0.19 -0.38,-0.34 -0.61,-0.45 -0.01,0 -0.01,-0.01 -0.02,-0.01L13,7.28c-0.35,-0.2 -0.75,-0.3 -1.19,-0.26C10.76,7.11 10,8.04 10,9.09L10,15c0,1.1 0.9,2 2,2h5v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2h-3v-3.45c1.29,1.07 3.25,1.94 5,1.95zM10,20c-1.66,0 -3,-1.34 -3,-3 0,-1.31 0.84,-2.41 2,-2.83L9,12.1c-2.28,0.46 -4,2.48 -4,4.9 0,2.76 2.24,5 5,5 2.42,0 4.44,-1.72 4.9,-4h-2.07c-0.41,1.16 -1.52,2 -2.83,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/accessible_forward.xml b/compose/material/material/icons/generator/raw-icons/outlined/accessible_forward.xml
deleted file mode 100644
index 3b376e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/accessible_forward.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4.54m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h-2c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3 1.35,-3 3,-3v-2c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5zM18,13.5h-1.86l1.67,-3.67C18.42,8.5 17.44,7 15.96,7h-5.2c-0.81,0 -1.54,0.47 -1.87,1.2L8.22,10l1.92,0.53 0.65,-1.53L13,9l-1.83,4.1c-0.6,1.33 0.39,2.9 1.85,2.9L18,16v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/account_balance.xml b/compose/material/material/icons/generator/raw-icons/outlined/account_balance.xml
deleted file mode 100644
index 9790cc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/account_balance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,10h-2v7h2v-7zM12.5,10h-2v7h2v-7zM21,19L2,19v2h19v-2zM18.5,10h-2v7h2v-7zM11.5,3.26L16.71,6L6.29,6l5.21,-2.74m0,-2.26L2,6v2h19L21,6l-9.5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/account_balance_wallet.xml b/compose/material/material/icons/generator/raw-icons/outlined/account_balance_wallet.xml
deleted file mode 100644
index f03f9d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/account_balance_wallet.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7.28V5c0,-1.1 -0.9,-2 -2,-2H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-2.28c0.59,-0.35 1,-0.98 1,-1.72V9c0,-0.74 -0.41,-1.37 -1,-1.72zM20,9v6h-7V9h7zM5,19V5h14v2h-6c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h6v2H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/account_box.xml b/compose/material/material/icons/generator/raw-icons/outlined/account_box.xml
deleted file mode 100644
index e54cccb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/account_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM17,19H7v-0.24C8.42,17.62 10.16,17 12,17s3.58,0.62 5,1.76V19zM19,17.86C17.2,16.09 14.73,15 12,15s-5.2,1.09 -7,2.86V5h14V17.86zM12,13c1.93,0 3.5,-1.57 3.5,-3.5S13.93,6 12,6c-1.93,0 -3.5,1.57 -3.5,3.5S10.07,13 12,13zM12,8c0.83,0 1.5,0.67 1.5,1.5S12.83,11 12,11s-1.5,-0.67 -1.5,-1.5S11.17,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/account_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/account_circle.xml
deleted file mode 100644
index df8eb9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/account_circle.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM7.35,18.5C8.66,17.56 10.26,17 12,17s3.34,0.56 4.65,1.5C15.34,19.44 13.74,20 12,20S8.66,19.44 7.35,18.5zM18.14,17.12L18.14,17.12C16.45,15.8 14.32,15 12,15s-4.45,0.8 -6.14,2.12l0,0C4.7,15.73 4,13.95 4,12c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,13.95 19.3,15.73 18.14,17.12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.93,0 -3.5,1.57 -3.5,3.5S10.07,13 12,13s3.5,-1.57 3.5,-3.5S13.93,6 12,6zM12,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S11.17,8 12,8s1.5,0.67 1.5,1.5S12.83,11 12,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/account_tree.xml b/compose/material/material/icons/generator/raw-icons/outlined/account_tree.xml
deleted file mode 100644
index d0c1882..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/account_tree.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22zM7,9H4V5h3V9zM17,15h3v4h-3V15zM17,5h3v4h-3V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ad_units.xml b/compose/material/material/icons/generator/raw-icons/outlined/ad_units.xml
deleted file mode 100644
index 0e2ceff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ad_units.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1L17,1zM7,4V3h10v1H7L7,4zM7,18V6h10v12H7L7,18zM7,21v-1h10v1H7L7,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l-8,0l0,2l8,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/adb.xml b/compose/material/material/icons/generator/raw-icons/outlined/adb.xml
deleted file mode 100644
index c96346e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/adb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16c0,3.87 3.13,7 7,7s7,-3.13 7,-7v-4L5,12v4zM16.12,4.37l2.1,-2.1 -0.82,-0.83 -2.3,2.31C14.16,3.28 13.12,3 12,3s-2.16,0.28 -3.09,0.75L6.6,1.44l-0.82,0.83 2.1,2.1C6.14,5.64 5,7.68 5,10v1h14v-1c0,-2.32 -1.14,-4.36 -2.88,-5.63zM9,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add.xml b/compose/material/material/icons/generator/raw-icons/outlined/add.xml
deleted file mode 100644
index eb23254..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_a_photo.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_a_photo.xml
deleted file mode 100644
index 24d660f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_a_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-3.17L16,4h-6v2h5.12l1.83,2L21,8v12L5,20v-9L3,11v9c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM8,14c0,2.76 2.24,5 5,5s5,-2.24 5,-5 -2.24,-5 -5,-5 -5,2.24 -5,5zM13,11c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM5,6h3L8,4L5,4L5,1L3,1v3L0,4v2h3v3h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_alarm.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_alarm.xml
deleted file mode 100644
index 9c88f054..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_alert.xml
deleted file mode 100644
index 67e8c12..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.01,21.01c0,1.1 0.89,1.99 1.99,1.99s1.99,-0.89 1.99,-1.99h-3.98zM12,6c2.76,0 5,2.24 5,5v7L7,18v-7c0,-2.76 2.24,-5 5,-5zM12,1.5c-0.83,0 -1.5,0.67 -1.5,1.5v1.17C7.36,4.85 5,7.65 5,11v6l-2,2v1h18v-1l-2,-2v-6c0,-3.35 -2.36,-6.15 -5.5,-6.83L13.5,3c0,-0.83 -0.67,-1.5 -1.5,-1.5zM13,8h-2v3L8,11v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_box.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_box.xml
deleted file mode 100644
index 67fcd93..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM11,17h2v-4h4v-2h-4L13,7h-2v4L7,11v2h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_business.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_business.xml
deleted file mode 100644
index 33e2162..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_business.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4h15v2h-15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h2v-3h1v-2l-1,-5H2l-1,5v2h1v6h9v-6h4V17zM9,18H4v-4h5V18zM3.04,12l0.6,-3h11.72l0.6,3H3.04z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18l-3,0l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_card.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_card.xml
deleted file mode 100644
index af84bfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h10v-2H4v-6h18V6C22,4.89 21.11,4 20,4zM20,8H4V6h16V8zM24,17v2h-3v3h-2v-3h-3v-2h3v-3h2v3H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_chart.xml
deleted file mode 100644
index c303346..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_chart.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h9V3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-9h-2V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v10h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5l0,-2l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_circle.xml
deleted file mode 100644
index 2bb63e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_circle_outline.xml
deleted file mode 100644
index a1c721d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_comment.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_comment.xml
deleted file mode 100644
index 4ff6d94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4c0,-1.1 -0.9,-2 -2,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4zM20,17.17L18.83,16L4,16L4,4h16v13.17zM13,5h-2v4L7,9v2h4v4h2v-4h4L17,9h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_home.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_home.xml
deleted file mode 100644
index 0988542..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_home.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5l6,4.5v1c0.7,0 1.37,0.1 2,0.29V9l-8,-6L4,9v12h7.68c-0.3,-0.62 -0.5,-1.29 -0.6,-2H6v-9L12,5.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_home_work.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_home_work.xml
deleted file mode 100644
index 694cb00..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_home_work.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14H5v5H3v-6.97l5,-3.57l5,3.57v1.08c0.57,-0.59 1.25,-1.07 2,-1.42V11L8,6l-7,5v10h6v-5h2v5h2.68C11.25,20.09 11,19.08 11,18V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,13.11V3H10v1.97l2,1.43V5h9v6.68C21.75,12.04 22.43,12.52 23,13.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5s2.24,5 5,5S23,20.76 23,18zM17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_ic_call.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_ic_call.xml
deleted file mode 100644
index b12601f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_ic_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.45c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.4 8.5,5.2 8.5,3.95c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,4.95h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.92c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM18,5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_link.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_link.xml
deleted file mode 100644
index a585f0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h8v2H8V11zM20.1,12H22c0,-2.76 -2.24,-5 -5,-5h-4v1.9h4C18.71,8.9 20.1,10.29 20.1,12zM3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4V7H7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9H7C5.29,15.1 3.9,13.71 3.9,12zM19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_location.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_location.xml
deleted file mode 100644
index a6dfb40..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14C16.05,15.64 18,12.54 18,10.2zM12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_location_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_location_alt.xml
deleted file mode 100644
index 4279a8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_location_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1v3h3v2h-3v3h-2L18,6h-3L15,4h3L18,1h2zM12,13c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM13,3.06v2.02A6.53,6.53 0,0 0,12 5c-3.35,0 -6,2.57 -6,6.2 0,2.34 1.95,5.44 6,9.14 4.05,-3.7 6,-6.79 6,-9.14L18,11h2v0.2c0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,6.22 7.8,3 12,3c0.34,0 0.67,0.02 1,0.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_moderator.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_moderator.xml
deleted file mode 100644
index e752dfd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_moderator.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11.09v-4.7l6,-2.25l6,2.25v3.69c0.71,0.1 1.38,0.31 2,0.6V5l-8,-3L4,5v6.09c0,5.05 3.41,9.76 8,10.91c0.03,-0.01 0.05,-0.02 0.08,-0.02c-0.79,-0.78 -1.4,-1.76 -1.75,-2.84C7.76,17.53 6,14.42 6,11.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_photo_alternate.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_photo_alternate.xml
deleted file mode 100644
index 68405ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_photo_alternate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20L4,20L4,6h9L13,4L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-9h-2v9zM10.21,16.83l-1.96,-2.36L5.5,18h11l-3.54,-4.71zM20,4L20,1h-2v3h-3c0.01,0.01 0,2 0,2h3v2.99c0.01,0.01 2,0 2,0L20,6h3L23,4h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_reaction.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_reaction.xml
deleted file mode 100644
index 7ef7087..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_reaction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9.5C7,8.67 7.67,8 8.5,8S10,8.67 10,9.5c0,0.83 -0.67,1.5 -1.5,1.5S7,10.33 7,9.5zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5H6.89C7.69,16.04 9.67,17.5 12,17.5zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5C17,8.67 16.33,8 15.5,8S14,8.67 14,9.5C14,10.33 14.67,11 15.5,11zM22,1h-2v2h-2v2h2v2h2V5h2V3h-2V1zM20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8c1.46,0 2.82,0.4 4,1.08V2.84C14.77,2.3 13.42,2 11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12c0,-1.05 -0.17,-2.05 -0.47,-3h-2.13C19.78,9.93 20,10.94 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_road.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_road.xml
deleted file mode 100644
index 0b8771e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_shopping_cart.xml
deleted file mode 100644
index ea156f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2L13,6h3L16,4h-3L13,1h-2v3L8,4v2h3v3zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.86,-7.01L19.42,4l-3.87,7L8.53,11L4.27,2L1,2v2h2l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2L7,15l1.1,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_task.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_task.xml
deleted file mode 100644
index 295ddfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8c1.57,0 3.04,0.46 4.28,1.25l1.45,-1.45C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c1.73,0 3.36,-0.44 4.78,-1.22l-1.5,-1.5C14.28,19.74 13.17,20 12,20zM19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_to_drive.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_to_drive.xml
deleted file mode 100644
index 698536b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_to_drive.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c0.17,0 0.33,0.01 0.49,0.02L15,3H9l5.68,9.84C15.77,11.71 17.3,11 19,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,4.52l-6.15,10.98l3,5.5l6.33,-10.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94 13,18.54 13,17C13,16.48 13.07,15.98 13.2,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l1,0l1,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_to_home_screen.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_to_home_screen.xml
deleted file mode 100644
index 438c325..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_to_home_screen.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L8,1c-1.1,0 -2,0.9 -2,2v3h2V5h10v14H8v-1H6v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM10,15h2V8H5v2h3.59L3,15.59 4.41,17 10,11.41V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_to_photos.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_to_photos.xml
deleted file mode 100644
index b3bdb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_to_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM13,15h2v-4h4L19,9h-4L15,5h-2v4L9,9v2h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/add_to_queue.xml b/compose/material/material/icons/generator/raw-icons/outlined/add_to_queue.xml
deleted file mode 100644
index c32f466..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/add_to_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v-3h3v-2h-3L13,7h-2v3L8,10v2h3zM21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/addchart.xml b/compose/material/material/icons/generator/raw-icons/outlined/addchart.xml
deleted file mode 100644
index aa838c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/addchart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22zM19,19H5V5h6V3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6h-2V19zM15,13v4h2v-4H15zM11,17h2V9h-2V17zM9,17v-6H7v6H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/adf_scanner.xml b/compose/material/material/icons/generator/raw-icons/outlined/adf_scanner.xml
deleted file mode 100644
index 580db20..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/adf_scanner.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-1V4H6v8H5c-1.66,0 -3,1.34 -3,3v5h20v-5C22,13.34 20.66,12 19,12zM8,6h8v6H8V6zM20,18H4v-3c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/adjust.xml b/compose/material/material/icons/generator/raw-icons/outlined/adjust.xml
deleted file mode 100644
index 85c2377..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/adjust.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3 1.34,-3 3,-3 3,1.34 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/admin_panel_settings.xml b/compose/material/material/icons/generator/raw-icons/outlined/admin_panel_settings.xml
deleted file mode 100644
index 08f3a24..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/admin_panel_settings.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15.5m-1.12,0a1.12,1.12 0,1 1,2.24 0a1.12,1.12 0,1 1,-2.24 0"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17.5c-0.73,0 -2.19,0.36 -2.24,1.08c0.5,0.71 1.32,1.17 2.24,1.17s1.74,-0.46 2.24,-1.17C19.19,17.86 17.73,17.5 17,17.5z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54 3.2,8.79 7.5,9.82c0.55,-0.13 1.08,-0.32 1.6,-0.55C13.18,21.99 14.97,23 17,23c3.31,0 6,-2.69 6,-6C23,14.03 20.84,11.57 18,11.09zM11,17c0,0.56 0.08,1.11 0.23,1.62c-0.24,0.11 -0.48,0.22 -0.73,0.3c-3.17,-1 -5.5,-4.24 -5.5,-7.74v-3.6l5.5,-2.4l5.5,2.4v3.51C13.16,11.57 11,14.03 11,17zM17,21c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4s4,1.79 4,4C21,19.21 19.21,21 17,21z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ads_click.xml b/compose/material/material/icons/generator/raw-icons/outlined/ads_click.xml
deleted file mode 100644
index 79f2284..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ads_click.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.71,17.99C8.53,17.84 6,15.22 6,12c0,-3.31 2.69,-6 6,-6c3.22,0 5.84,2.53 5.99,5.71l-2.1,-0.63C15.48,9.31 13.89,8 12,8c-2.21,0 -4,1.79 -4,4c0,1.89 1.31,3.48 3.08,3.89L11.71,17.99zM22,12c0,0.3 -0.01,0.6 -0.04,0.9l-1.97,-0.59C20,12.21 20,12.1 20,12c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8s3.58,8 8,8c0.1,0 0.21,0 0.31,-0.01l0.59,1.97C12.6,21.99 12.3,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2S22,6.48 22,12zM18.23,16.26L22,15l-10,-3l3,10l1.26,-3.77l4.27,4.27l1.98,-1.98L18.23,16.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/agriculture.xml b/compose/material/material/icons/generator/raw-icons/outlined/agriculture.xml
deleted file mode 100644
index b9ca312..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/agriculture.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h5c0,-1.1 -0.9,-2 -2,-2H4C3.45,7 3,7.45 3,8C3,8.55 3.45,9 4,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,14.06V8c0,-1.1 -0.9,-2 -2,-2h-6.29l-1.06,-1.06l1.41,-1.41l-0.71,-0.71L9.82,6.35l0.71,0.71l1.41,-1.41L13,6.71V9c0,1.1 -0.9,2 -2,2H8.96c-0.22,-0.16 -0.45,-0.3 -0.69,-0.43l-0.4,0.89l-0.46,-0.21l0.4,-0.9C7.26,10.13 6.64,10 6,10c-0.53,0 -1.04,0.11 -1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46 -1.91,1.28 -2.43,2.31l0.89,0.4l-0.21,0.46l-0.9,-0.4C1.13,13.74 1,14.36 1,15c0,0.53 0.11,1.04 0.26,1.52l0.91,-0.34l0.18,0.47L1.42,17c0.46,1.06 1.28,1.91 2.31,2.43l0.4,-0.89l0.46,0.21l-0.4,0.9C4.74,19.87 5.36,20 6,20c0.53,0 1.04,-0.11 1.52,-0.26l-0.34,-0.91l0.47,-0.18L8,19.58c1.06,-0.46 1.91,-1.28 2.43,-2.31l-0.89,-0.4l0.21,-0.46l0.9,0.4c0.1,-0.26 0.18,-0.54 0.24,-0.82h5.16C16.03,16.16 16,16.33 16,16.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5C23,15.55 22.62,14.69 22,14.06zM6,18c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S7.66,18 6,18zM10.87,14c-0.04,-0.18 -0.08,-0.35 -0.13,-0.52l-0.91,0.34l-0.18,-0.47L10.58,13c0,0 0.42,0 0.42,0c2.21,0 4,-1.79 4,-4V8h5v5.05C19.84,13.03 19.67,13 19.5,13c-0.95,0 -1.81,0.38 -2.44,1H10.87zM19.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S20.33,18 19.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/air.xml b/compose/material/material/icons/generator/raw-icons/outlined/air.xml
deleted file mode 100644
index 4ea67a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/air.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3h2c0,0.55 0.45,1 1,1s1,-0.45 1,-1s-0.45,-1 -1,-1H2v-2h9.5C13.15,14 14.5,15.35 14.5,17zM19,6.5C19,4.57 17.43,3 15.5,3S12,4.57 12,6.5h2C14,5.67 14.67,5 15.5,5S17,5.67 17,6.5S16.33,8 15.5,8H2v2h13.5C17.43,10 19,8.43 19,6.5zM18.5,11H2v2h16.5c0.83,0 1.5,0.67 1.5,1.5S19.33,16 18.5,16v2c1.93,0 3.5,-1.57 3.5,-3.5S20.43,11 18.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_flat.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_flat.xml
deleted file mode 100644
index 87a94eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_flat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13c0.78,0 1.55,-0.3 2.14,-0.9 1.16,-1.19 1.14,-3.08 -0.04,-4.24C6.51,7.29 5.75,7 5,7c-0.78,0 -1.55,0.3 -2.14,0.9 -1.16,1.19 -1.14,3.08 0.04,4.24 0.59,0.57 1.35,0.86 2.1,0.86zM4.29,9.3c0.19,-0.19 0.44,-0.3 0.71,-0.3 0.26,0 0.51,0.1 0.7,0.28 0.4,0.39 0.4,1.01 0.02,1.41 -0.2,0.2 -0.45,0.31 -0.72,0.31 -0.26,0 -0.51,-0.1 -0.7,-0.28 -0.4,-0.4 -0.4,-1.02 -0.01,-1.42zM18,7L9,7v6h13v-2c0,-2.21 -1.79,-4 -4,-4zM11,11L11,9h7c1.1,0 2,0.9 2,2h-9zM2,16h6v2h8v-2h6v-2L2,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_flat_angled.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_flat_angled.xml
deleted file mode 100644
index bb31811..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_flat_angled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.5c0.31,0 0.7,0.15 0.9,0.56 0.24,0.5 0.02,1.1 -0.47,1.34 -0.14,0.06 -0.28,0.1 -0.43,0.1 -0.3,0 -0.7,-0.15 -0.89,-0.56 -0.17,-0.34 -0.1,-0.63 -0.05,-0.78 0.05,-0.14 0.18,-0.4 0.51,-0.56 0.14,-0.06 0.28,-0.1 0.43,-0.1m6.47,2.11l6.69,2.41c0.52,0.19 0.93,0.56 1.15,1.05 0.22,0.48 0.25,1.03 0.06,1.53l-0.01,0.02 -8.59,-3.11 0.7,-1.9M10,15.19l4,1.44L14,17h-4v-1.81M6,4.5c-0.44,0 -0.88,0.1 -1.3,0.3 -1.49,0.71 -2.12,2.5 -1.4,4 0.51,1.07 1.58,1.7 2.7,1.7 0.44,0 0.88,-0.1 1.3,-0.3 1.49,-0.72 2.12,-2.51 1.41,-4C8.19,5.13 7.12,4.5 6,4.5zM11.28,6.05L9.2,11.71l12.36,4.47 0.69,-1.89c0.77,-2.09 -0.31,-4.39 -2.41,-5.15l-8.56,-3.09zM2.19,10.25l-0.69,1.89L8,14.48L8,19h8v-1.63L20.52,19l0.69,-1.89 -19.02,-6.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_individual_suite.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_individual_suite.xml
deleted file mode 100644
index eb9288f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_individual_suite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14c1.66,0 3,-1.34 3,-3S8.66,8 7,8s-3,1.34 -3,3 1.34,3 3,3zM7,10c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,7h-8v8L3,15L3,7L1,7v10h22v-6c0,-2.21 -1.79,-4 -4,-4zM21,15h-8L13,9h6c1.1,0 2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_extra.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_extra.xml
deleted file mode 100644
index 59ae273..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12L4,3L2,3v9c0,2.76 2.24,5 5,5h6v-2L7,15c-1.66,0 -3,-1.34 -3,-3zM22.83,17.24c-0.38,-0.72 -1.29,-0.97 -2.03,-0.63l-1.09,0.5 -3.41,-6.98C15.96,9.45 15.27,9 14.51,9L11,9L11,3L5,3v8c0,1.66 1.34,3 3,3h7l3.41,7 3.72,-1.7c0.77,-0.36 1.1,-1.3 0.7,-2.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_normal.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_normal.xml
deleted file mode 100644
index 268dfd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12L5,3L3,3v9c0,2.76 2.24,5 5,5h6v-2L8,15c-1.66,0 -3,-1.34 -3,-3zM20.5,18L19,18v-7c0,-1.1 -0.9,-2 -2,-2h-5L12,3L6,3v8c0,1.65 1.35,3 3,3h7v7h4.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_reduced.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_reduced.xml
deleted file mode 100644
index 2500187..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_legroom_reduced.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.97,19.2c0.18,0.96 -0.55,1.8 -1.47,1.8H14v-3l1,-4H9c-1.65,0 -3,-1.35 -3,-3V3h6v6h5c1.1,0 2,0.9 2,2l-2,7h1.44c0.73,0 1.39,0.49 1.53,1.2zM5,12V3H3v9c0,2.76 2.24,5 5,5h4v-2H8c-1.66,0 -3,-1.34 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_recline_extra.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_recline_extra.xml
deleted file mode 100644
index 7fb9075..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_recline_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.35,5.64c-0.9,-0.64 -1.12,-1.88 -0.49,-2.79 0.63,-0.9 1.88,-1.12 2.79,-0.49 0.9,0.64 1.12,1.88 0.49,2.79 -0.64,0.9 -1.88,1.12 -2.79,0.49zM16,19L8.93,19c-1.48,0 -2.74,-1.08 -2.96,-2.54L4,7L2,7l1.99,9.76C4.37,19.2 6.47,21 8.94,21L16,21v-2zM16.23,15h-4.88l-1.03,-4.1c1.58,0.89 3.28,1.54 5.15,1.22L15.47,9.99c-1.63,0.31 -3.44,-0.27 -4.69,-1.25L9.14,7.47c-0.23,-0.18 -0.49,-0.3 -0.76,-0.38 -0.32,-0.09 -0.66,-0.12 -0.99,-0.06h-0.02c-1.23,0.22 -2.05,1.39 -1.84,2.61l1.35,5.92C7.16,16.98 8.39,18 9.83,18h6.85l3.82,3 1.5,-1.5 -5.77,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_recline_normal.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_recline_normal.xml
deleted file mode 100644
index 92ebee8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_seat_recline_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.59,5.41c-0.78,-0.78 -0.78,-2.05 0,-2.83s2.05,-0.78 2.83,0 0.78,2.05 0,2.83c-0.79,0.79 -2.05,0.79 -2.83,0zM6,16L6,7L4,7v9c0,2.76 2.24,5 5,5h6v-2L9,19c-1.66,0 -3,-1.34 -3,-3zM20,20.07L14.93,15L11.5,15v-3.68c1.4,1.15 3.6,2.16 5.5,2.16v-2.16c-1.66,0.02 -3.61,-0.87 -4.67,-2.04l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C8.01,7 7,8.01 7,9.25L7,15c0,1.66 1.34,3 3,3h5.07l3.5,3.5L20,20.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airline_stops.xml b/compose/material/material/icons/generator/raw-icons/outlined/airline_stops.xml
deleted file mode 100644
index 20f26a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airline_stops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8.7c-2.46,1.5 -5.5,4.17 -6,8.3h2v2H9v-2h2c-0.5,-4.5 -4.37,-8 -9,-8V7c4.39,0 8.22,2.55 10,6.3c1.38,-2.97 3.86,-5.03 5.96,-6.31L14,7V5h7v7h-2V8.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airlines.xml b/compose/material/material/icons/generator/raw-icons/outlined/airlines.xml
deleted file mode 100644
index 3a1c4ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airlines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,18H5.8l8.25,-12h5.54L17.34,18zM13,4L2,20h17l3,-16H13zM14.5,9c-1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5S15.88,9 14.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airplane_ticket.xml b/compose/material/material/icons/generator/raw-icons/outlined/airplane_ticket.xml
deleted file mode 100644
index 22bb42b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airplane_ticket.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.19,4H4C2.9,4 2.01,4.9 2.01,6v4C3.11,10 4,10.9 4,12s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.19,4 20.19,4zM20,18H4v-2.54c1.19,-0.69 2,-1.99 2,-3.46c0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16V18zM8.87,15.66l-1.66,-2.88l0.93,-0.25l1.26,0.99l2.39,-0.64l-2.4,-4.16l1.4,-0.38l4.01,3.74l2.44,-0.65c0.51,-0.14 1.04,0.17 1.18,0.68c0.13,0.51 -0.17,1.04 -0.69,1.19L8.87,15.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airplanemode_active.xml b/compose/material/material/icons/generator/raw-icons/outlined/airplanemode_active.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airplanemode_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airplanemode_inactive.xml b/compose/material/material/icons/generator/raw-icons/outlined/airplanemode_inactive.xml
deleted file mode 100644
index 4bcfad61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airplanemode_inactive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,7.67V3.5C10.5,2.67 11.17,2 12,2c0.83,0 1.5,0.67 1.5,1.5V9l8.5,5v2l-4.49,-1.32L10.5,7.67zM19.78,22.61l1.41,-1.41L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-2.67L19.78,22.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airplay.xml b/compose/material/material/icons/generator/raw-icons/outlined/airplay.xml
deleted file mode 100644
index bafd09a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airplay.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22l12,0l-6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v12c0,1.1 0.9,2 2,2h4v-2H3V5h18v12h-4v2h4c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/airport_shuttle.xml b/compose/material/material/icons/generator/raw-icons/outlined/airport_shuttle.xml
deleted file mode 100644
index 49ebfa0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/airport_shuttle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5L3,5c-1.1,0 -2,0.89 -2,2v9h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2v-5l-6,-6zM15,7h1l3,3h-4L15,7zM9,7h4v3L9,10L9,7zM3,7h4v3L3,10L3,7zM6,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM18,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM21,14h-0.78c-0.55,-0.61 -1.34,-1 -2.22,-1s-1.67,0.39 -2.22,1L8.22,14c-0.55,-0.61 -1.33,-1 -2.22,-1s-1.67,0.39 -2.22,1L3,14v-2h18v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/alarm.xml b/compose/material/material/icons/generator/raw-icons/outlined/alarm.xml
deleted file mode 100644
index d2dc60f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/alarm_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/alarm_add.xml
deleted file mode 100644
index 70a063b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/alarm_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/alarm_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/alarm_off.xml
deleted file mode 100644
index 7aaebfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/alarm_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.04,6.29C10.66,6.11 11.32,6 12,6c3.86,0 7,3.14 7,7 0,0.68 -0.11,1.34 -0.29,1.96l1.56,1.56c0.47,-1.08 0.73,-2.27 0.73,-3.52 0,-4.97 -4.03,-9 -9,-9 -1.25,0 -2.44,0.26 -3.53,0.72l1.57,1.57zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM3.02,2.1L1.61,3.51l1.37,1.37 -0.92,0.77 1.28,1.54 1.06,-0.88 0.8,0.8C3.83,8.69 3,10.75 3,13c0,4.97 4.03,9 9,9 2.25,0 4.31,-0.83 5.89,-2.2l2.1,2.1 1.41,-1.41L3.02,2.1zM12,20c-3.86,0 -7,-3.14 -7,-7 0,-1.7 0.61,-3.26 1.62,-4.47l9.85,9.85C15.26,19.39 13.7,20 12,20zM7.48,3.73l0.46,-0.38 -1.28,-1.54 -0.6,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/alarm_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/alarm_on.xml
deleted file mode 100644
index 0bcd154..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/alarm_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.54,14.53L8.41,12.4l-1.06,1.06 3.18,3.18 6,-6 -1.06,-1.06zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/album.xml b/compose/material/material/icons/generator/raw-icons/outlined/album.xml
deleted file mode 100644
index 06b6e1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,7.5c-2.49,0 -4.5,2.01 -4.5,4.5s2.01,4.5 4.5,4.5 4.5,-2.01 4.5,-4.5 -2.01,-4.5 -4.5,-4.5zM12,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_center.xml b/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_center.xml
deleted file mode 100644
index 548deed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2l2,0l0,5l8,0l0,3l-8,0l0,4l5,0l0,3l-5,0l0,5l-2,0l0,-5l-5,0l0,-3l5,0l0,-4l-8,0l0,-3l8,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_left.xml
deleted file mode 100644
index e1e2594..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,7H6v3h16V7zM16,14H6v3h10V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_right.xml
deleted file mode 100644
index 7f71206..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/align_horizontal_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h2v20h-2V2zM2,10h16V7H2V10zM8,17h10v-3H8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_bottom.xml b/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_bottom.xml
deleted file mode 100644
index 73c47f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,22H2v-2h20V22zM10,2H7v16h3V2zM17,8h-3v10h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_center.xml b/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_center.xml
deleted file mode 100644
index ab69d62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11l-5,0l0,-5l-3,0l0,5l-4,0l0,-8l-3,0l0,8l-5.16,0l0,2l5.16,0l0,8l3,0l0,-8l4,0l0,5l3,0l0,-5l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_top.xml b/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_top.xml
deleted file mode 100644
index 2f71879..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/align_vertical_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,22h3V6H7V22zM14,16h3V6h-3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/all_inbox.xml b/compose/material/material/icons/generator/raw-icons/outlined/all_inbox.xml
deleted file mode 100644
index cc1720a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/all_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v7c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM5,10h3.13c0.21,0.78 0.67,1.47 1.27,2L5,12v-2zM19,12h-4.4c0.6,-0.53 1.06,-1.22 1.27,-2L19,10v2zM19,8h-5v1c0,1.07 -0.93,2 -2,2s-2,-0.93 -2,-2L10,8L5,8L5,5h14v3zM17,15h-3v1c0,0.47 -0.19,0.9 -0.48,1.25 -0.37,0.45 -0.92,0.75 -1.52,0.75s-1.15,-0.3 -1.52,-0.75c-0.29,-0.35 -0.48,-0.78 -0.48,-1.25v-1L3,15v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4h-4zM5,17h3.13c0.02,0.09 0.06,0.17 0.09,0.25 0.24,0.68 0.65,1.28 1.18,1.75L5,19v-2zM19,19h-4.4c0.54,-0.47 0.95,-1.07 1.18,-1.75 0.03,-0.08 0.07,-0.16 0.09,-0.25L19,17v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/all_inclusive.xml b/compose/material/material/icons/generator/raw-icons/outlined/all_inclusive.xml
deleted file mode 100644
index 9963de7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/all_inclusive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.6,6.62c-1.44,0 -2.8,0.56 -3.77,1.53L7.8,14.39c-0.64,0.64 -1.49,0.99 -2.4,0.99 -1.87,0 -3.39,-1.51 -3.39,-3.38S3.53,8.62 5.4,8.62c0.91,0 1.76,0.35 2.44,1.03l1.13,1 1.51,-1.34L9.22,8.2C8.2,7.18 6.84,6.62 5.4,6.62 2.42,6.62 0,9.04 0,12s2.42,5.38 5.4,5.38c1.44,0 2.8,-0.56 3.77,-1.53l7.03,-6.24c0.64,-0.64 1.49,-0.99 2.4,-0.99 1.87,0 3.39,1.51 3.39,3.38s-1.52,3.38 -3.39,3.38c-0.9,0 -1.76,-0.35 -2.44,-1.03l-1.14,-1.01 -1.51,1.34 1.27,1.12c1.02,1.01 2.37,1.57 3.82,1.57 2.98,0 5.4,-2.41 5.4,-5.38s-2.42,-5.37 -5.4,-5.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/all_out.xml b/compose/material/material/icons/generator/raw-icons/outlined/all_out.xml
deleted file mode 100644
index 432f64c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/all_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v4l4,-4zM16,4l4,4L20,4zM20,20v-4l-4,4zM4,20h4l-4,-4zM19,12c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7 3.13,7 7,7 7,-3.13 7,-7zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/alt_route.xml b/compose/material/material/icons/generator/raw-icons/outlined/alt_route.xml
deleted file mode 100644
index 75b0f0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/alt_route.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.16l-1.42,1.42c-0.68,-0.69 -1.34,-1.58 -1.79,-2.94l1.94,-0.49C8.83,10.04 9.28,10.65 9.78,11.16zM11,6L7,2L3,6h3.02C6.04,6.81 6.1,7.54 6.21,8.17l1.94,-0.49C8.08,7.2 8.03,6.63 8.02,6H11zM21,6l-4,-4l-4,4h2.99c-0.1,3.68 -1.28,4.75 -2.54,5.88c-0.5,0.44 -1.01,0.92 -1.45,1.55c-0.34,-0.49 -0.73,-0.88 -1.13,-1.24L9.46,13.6C10.39,14.45 11,15.14 11,17c0,0 0,0 0,0h0v5h2v-5c0,0 0,0 0,0c0,-2.02 0.71,-2.66 1.79,-3.63c1.38,-1.24 3.08,-2.78 3.2,-7.37H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/alternate_email.xml b/compose/material/material/icons/generator/raw-icons/outlined/alternate_email.xml
deleted file mode 100644
index 48e465c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/alternate_email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1.95c-5.52,0 -10,4.48 -10,10s4.48,10 10,10h5v-2h-5c-4.34,0 -8,-3.66 -8,-8s3.66,-8 8,-8 8,3.66 8,8v1.43c0,0.79 -0.71,1.57 -1.5,1.57s-1.5,-0.78 -1.5,-1.57v-1.43c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5 2.24,5 5,5c1.38,0 2.64,-0.56 3.54,-1.47 0.65,0.89 1.77,1.47 2.96,1.47 1.97,0 3.5,-1.6 3.5,-3.57v-1.43c0,-5.52 -4.48,-10 -10,-10zM12,14.95c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/amp_stories.xml b/compose/material/material/icons/generator/raw-icons/outlined/amp_stories.xml
deleted file mode 100644
index cdf61bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/amp_stories.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10V4H7V19zM9,6h6v11H9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h2v11h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h2v11h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/analytics.xml b/compose/material/material/icons/generator/raw-icons/outlined/analytics.xml
deleted file mode 100644
index c8a2017..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/analytics.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7h2v10h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/anchor.xml b/compose/material/material/icons/generator/raw-icons/outlined/anchor.xml
deleted file mode 100644
index 7ad4f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/anchor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15l1.55,1.55c-0.96,1.69 -3.33,3.04 -5.55,3.37V11h3V9h-3V7.82C14.16,7.4 15,6.3 15,5c0,-1.65 -1.35,-3 -3,-3S9,3.35 9,5c0,1.3 0.84,2.4 2,2.82V9H8v2h3v8.92c-2.22,-0.33 -4.59,-1.68 -5.55,-3.37L7,15l-4,-3v3c0,3.88 4.92,7 9,7s9,-3.12 9,-7v-3L17,15zM12,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/android.xml b/compose/material/material/icons/generator/raw-icons/outlined/android.xml
deleted file mode 100644
index 28c533f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.6,9.48l1.84,-3.18c0.16,-0.31 0.04,-0.69 -0.26,-0.85c-0.29,-0.15 -0.65,-0.06 -0.83,0.22l-1.88,3.24c-2.86,-1.21 -6.08,-1.21 -8.94,0L5.65,5.67c-0.19,-0.29 -0.58,-0.38 -0.87,-0.2C4.5,5.65 4.41,6.01 4.56,6.3L6.4,9.48C3.3,11.25 1.28,14.44 1,18h22C22.72,14.44 20.7,11.25 17.6,9.48zM7,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25S8.25,13.31 8.25,14C8.25,14.69 7.69,15.25 7,15.25zM17,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25C18.25,14.69 17.69,15.25 17,15.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/animation.xml b/compose/material/material/icons/generator/raw-icons/outlined/animation.xml
deleted file mode 100644
index 8851c08..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/animation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2c-2.71,0 -5.05,1.54 -6.22,3.78c-1.28,0.67 -2.34,1.72 -3,3C3.54,9.95 2,12.29 2,15c0,3.87 3.13,7 7,7c2.71,0 5.05,-1.54 6.22,-3.78c1.28,-0.67 2.34,-1.72 3,-3C20.46,14.05 22,11.71 22,9C22,5.13 18.87,2 15,2zM9,20c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.87 3.13,7 7,7C11.16,19.63 10.12,20 9,20zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.86 3.13,6.99 7,7C14.16,16.63 13.12,17 12,17zM16.7,13.7C16.17,13.89 15.6,14 15,14c-2.76,0 -5,-2.24 -5,-5c0,-0.6 0.11,-1.17 0.3,-1.7C10.83,7.11 11.4,7 12,7c2.76,0 5,2.24 5,5C17,12.6 16.89,13.17 16.7,13.7zM19,12c0,-3.86 -3.13,-6.99 -7,-7c0.84,-0.63 1.87,-1 3,-1c2.76,0 5,2.24 5,5C20,10.12 19.63,11.16 19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/announcement.xml b/compose/material/material/icons/generator/raw-icons/outlined/announcement.xml
deleted file mode 100644
index 02c33b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/announcement.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM11,5h2v6h-2zM11,13h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/aod.xml b/compose/material/material/icons/generator/raw-icons/outlined/aod.xml
deleted file mode 100644
index d03ae57..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/aod.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM8,10h8v1.5H8V10zM9,13h6v1.5H9V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/apartment.xml b/compose/material/material/icons/generator/raw-icons/outlined/apartment.xml
deleted file mode 100644
index d5b846b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/apartment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11V3H7v4H3v14h8v-4h2v4h8V11H17zM7,19H5v-2h2V19zM7,15H5v-2h2V15zM7,11H5V9h2V11zM11,15H9v-2h2V15zM11,11H9V9h2V11zM11,7H9V5h2V7zM15,15h-2v-2h2V15zM15,11h-2V9h2V11zM15,7h-2V5h2V7zM19,19h-2v-2h2V19zM19,15h-2v-2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/api.xml b/compose/material/material/icons/generator/raw-icons/outlined/api.xml
deleted file mode 100644
index b7f8f017..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/api.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12l-2,2l-2,-2l2,-2L14,12zM12,6l2.12,2.12l2.5,-2.5L12,1L7.38,5.62l2.5,2.5L12,6zM6,12l2.12,-2.12l-2.5,-2.5L1,12l4.62,4.62l2.5,-2.5L6,12zM18,12l-2.12,2.12l2.5,2.5L23,12l-4.62,-4.62l-2.5,2.5L18,12zM12,18l-2.12,-2.12l-2.5,2.5L12,23l4.62,-4.62l-2.5,-2.5L12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/app_blocking.xml b/compose/material/material/icons/generator/raw-icons/outlined/app_blocking.xml
deleted file mode 100644
index 6e880c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/app_blocking.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C22,9.79 20.21,8 18,8zM15.5,12c0,-1.38 1.12,-2.5 2.5,-2.5c0.42,0 0.8,0.11 1.15,0.29l-3.36,3.36C15.61,12.8 15.5,12.42 15.5,12zM18,14.5c-0.42,0 -0.8,-0.11 -1.15,-0.29l3.36,-3.36c0.18,0.35 0.29,0.73 0.29,1.15C20.5,13.38 19.38,14.5 18,14.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V6V5V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-2v-1v-1h-2V18zM7,3h10v1H7V3zM17,21H7v-1h10V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/app_registration.xml b/compose/material/material/icons/generator/raw-icons/outlined/app_registration.xml
deleted file mode 100644
index d92617e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/app_registration.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17.86l0,2.14l2.1,0l5.98,-5.97l-2.12,-2.12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12.03l0,-2.03l-4,0l0,4l2.03,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.85,11.56l-1.41,-1.41c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.06,1.06l2.12,2.12l1.06,-1.06C21.05,12.07 21.05,11.76 20.85,11.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/app_settings_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/app_settings_alt.xml
deleted file mode 100644
index b39c076..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/app_settings_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.81,12.74l-0.82,-0.63c0,-0.09 0,-0.13 0,-0.22l0.8,-0.63c0.16,-0.12 0.2,-0.34 0.1,-0.51l-0.85,-1.48c-0.07,-0.13 -0.21,-0.2 -0.35,-0.2c-0.05,0 -0.1,0.01 -0.15,0.03l-0.95,0.38c-0.08,-0.05 -0.11,-0.07 -0.19,-0.11l-0.15,-1.01C19.22,8.15 19.05,8 18.85,8h-1.71c-0.2,0 -0.37,0.15 -0.4,0.34L16.6,9.35c-0.03,0.02 -0.07,0.03 -0.1,0.05c-0.03,0.02 -0.06,0.04 -0.09,0.06l-0.95,-0.38c-0.05,-0.02 -0.1,-0.03 -0.15,-0.03c-0.14,0 -0.27,0.07 -0.35,0.2l-0.85,1.48c-0.1,0.17 -0.06,0.39 0.1,0.51l0.8,0.63c0,0.09 0,0.13 0,0.23l-0.8,0.63c-0.16,0.12 -0.2,0.34 -0.1,0.51l0.85,1.48c0.07,0.13 0.21,0.2 0.35,0.2c0.05,0 0.1,-0.01 0.15,-0.03l0.95,-0.37c0.08,0.05 0.12,0.07 0.2,0.11l0.15,1.01c0.03,0.2 0.2,0.34 0.4,0.34h1.71c0.2,0 0.37,-0.15 0.4,-0.34l0.15,-1.01c0.03,-0.02 0.07,-0.03 0.1,-0.05c0.03,-0.02 0.06,-0.04 0.09,-0.06l0.95,0.38c0.05,0.02 0.1,0.03 0.15,0.03c0.14,0 0.27,-0.07 0.35,-0.2l0.85,-1.48C22.01,13.08 21.97,12.86 21.81,12.74zM18,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C19.5,12.83 18.83,13.5 18,13.5zM17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18zM7,3h10v1H7V3zM17,21H7v-1h10V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/app_shortcut.xml b/compose/material/material/icons/generator/raw-icons/outlined/app_shortcut.xml
deleted file mode 100644
index 26ef624..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/app_shortcut.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18zM7,3h10v1H7V3zM17,21H7v-1h10V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,9.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62l-0.62,-1.38l-0.62,1.38l-1.38,0.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8l-1.25,2.75l-2.75,1.25l2.75,1.25l1.25,2.75l1.25,-2.75l2.75,-1.25l-2.75,-1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13l-0.62,1.38l-1.38,0.62l1.38,0.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/approval.xml b/compose/material/material/icons/generator/raw-icons/outlined/approval.xml
deleted file mode 100644
index 3ba0ebf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/approval.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16v6h16v-6c0,-1.1 -0.9,-2 -2,-2H6C4.9,14 4,14.9 4,16zM18,18H6v-2h12V18zM12,2C9.24,2 7,4.24 7,7l5,7l5,-7C17,4.24 14.76,2 12,2zM12,11L9,7c0,-1.66 1.34,-3 3,-3s3,1.34 3,3L12,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/apps.xml b/compose/material/material/icons/generator/raw-icons/outlined/apps.xml
deleted file mode 100644
index 374e8f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/apps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4L8,4L4,4v4zM10,20h4v-4h-4v4zM4,20h4v-4L4,16v4zM4,14h4v-4L4,10v4zM10,14h4v-4h-4v4zM16,4v4h4L20,4h-4zM10,8h4L14,4h-4v4zM16,14h4v-4h-4v4zM16,20h4v-4h-4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/apps_outage.xml b/compose/material/material/icons/generator/raw-icons/outlined/apps_outage.xml
deleted file mode 100644
index bd84f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/apps_outage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4V4H4V8zM10,20h4v-4h-4V20zM4,20h4v-4H4V20zM4,14h4v-4H4V14zM10,14h4v-4h-4V14zM16,20h4v-4h-4V20zM19,0c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S21.76,0 19,0zM19.5,8h-1V7h1V8zM19.5,6h-1V2h1V6zM16,14h4v-2.07C19.67,11.98 19.34,12 19,12c-1.07,0 -2.09,-0.24 -3,-0.68V14zM10,4v4h2.68C12.24,7.09 12,6.07 12,5c0,-0.34 0.02,-0.67 0.07,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/architecture.xml b/compose/material/material/icons/generator/raw-icons/outlined/architecture.xml
deleted file mode 100644
index 3a8298e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/architecture.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.36,18.78L6.61,21l1.62,-1.54l2.77,-7.6c-0.68,-0.17 -1.28,-0.51 -1.77,-0.98L6.36,18.78z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.77,10.88c-0.49,0.47 -1.1,0.81 -1.77,0.98l2.77,7.6L17.39,21l0.26,-2.22L14.77,10.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.3 -0.84,-2.4 -2,-2.82V3h-2v2.18C9.84,5.6 9,6.7 9,8c0,1.66 1.34,3 3,3S15,9.66 15,8zM12,9c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,8.55 12.55,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/archive.xml b/compose/material/material/icons/generator/raw-icons/outlined/archive.xml
deleted file mode 100644
index df714c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/archive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.54,5.23l-1.39,-1.68C18.88,3.21 18.47,3 18,3L6,3c-0.47,0 -0.88,0.21 -1.16,0.55L3.46,5.23C3.17,5.57 3,6.02 3,6.5L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6.5c0,-0.48 -0.17,-0.93 -0.46,-1.27zM6.24,5h11.52l0.81,0.97L5.44,5.97l0.8,-0.97zM5,19L5,8h14v11L5,19zM13.45,10h-2.9v3L8,13l4,4 4,-4h-2.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/area_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/area_chart.xml
deleted file mode 100644
index 063099fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/area_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7l-5,-4l-5,7L3,7v13h18V7H17zM19,16.95l-7,-5.45L8,17l-3,-2.4V11l2.44,1.83l4.96,-6.95L16.3,9H19V16.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_back.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_back.xml
deleted file mode 100644
index 2a31b2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_back.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_back_ios.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_back_ios.xml
deleted file mode 100644
index d72bfd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_back_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.51,3.87L15.73,2.1 5.84,12l9.9,9.9 1.77,-1.77L9.38,12l8.13,-8.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_back_ios_new.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_back_ios_new.xml
deleted file mode 100644
index c056a2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_back_ios_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.77,3.77l-1.77,-1.77l-10,10l10,10l1.77,-1.77l-8.23,-8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_down.xml
deleted file mode 100644
index baca592..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13,12l0,-4h-2l0,4H8l4,4l4,-4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_left.xml
deleted file mode 100644
index cde6429..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10S17.52,2 12,2C6.48,2 2,6.48 2,12zM20,12c0,4.42 -3.58,8 -8,8c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8C16.42,4 20,7.58 20,12zM8,12l4,-4l1.41,1.41L11.83,11H16v2h-4.17l1.59,1.59L12,16L8,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_right.xml
deleted file mode 100644
index 55477f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12s4.48,10 10,10C17.52,22 22,17.52 22,12zM4,12c0,-4.42 3.58,-8 8,-8c4.42,0 8,3.58 8,8s-3.58,8 -8,8C7.58,20 4,16.42 4,12zM16,12l-4,4l-1.41,-1.41L12.17,13H8v-2h4.17l-1.59,-1.59L12,8L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_up.xml
deleted file mode 100644
index d37ba61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_circle_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20M12,22c5.52,0 10,-4.48 10,-10c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22L12,22zM11,12l0,4h2l0,-4h3l-4,-4l-4,4H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_downward.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_downward.xml
deleted file mode 100644
index 8f9be44..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_downward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12l-1.41,-1.41L13,16.17V4h-2v12.17l-5.58,-5.59L4,12l8,8 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_down.xml
deleted file mode 100644
index e74555d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10l5,5 5,-5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_down_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_down_circle.xml
deleted file mode 100644
index 8e18e22..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_down_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8 -8,-3.59 -8,-8 3.59,-8 8,-8m0,-2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,15l-4,-4h8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_up.xml
deleted file mode 100644
index dcd2b09..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_drop_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14l5,-5 5,5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_forward.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_forward.xml
deleted file mode 100644
index bb9a6ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4l-1.41,1.41L16.17,11H4v2h12.17l-5.58,5.59L12,20l8,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_forward_ios.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_forward_ios.xml
deleted file mode 100644
index a71005d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_forward_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.23,20.23l1.77,1.77l10,-10l-10,-10l-1.77,1.77l8.23,8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_left.xml
deleted file mode 100644
index fad3985..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7l-5,5 5,5V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_outward.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_outward.xml
deleted file mode 100644
index 842e1d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_outward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6l0,2l8.59,0l-9.59,9.59l1.41,1.41l9.59,-9.59l0,8.59l2,0l0,-12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_right.xml
deleted file mode 100644
index 11d5c2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17l5,-5 -5,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_right_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_right_alt.xml
deleted file mode 100644
index 6a97ef4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_right_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,11H4v2h12.01v3L20,12l-3.99,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/arrow_upward.xml b/compose/material/material/icons/generator/raw-icons/outlined/arrow_upward.xml
deleted file mode 100644
index 07b7a83..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/arrow_upward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12l1.41,1.41L11,7.83V20h2V7.83l5.58,5.59L20,12l-8,-8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/art_track.xml b/compose/material/material/icons/generator/raw-icons/outlined/art_track.xml
deleted file mode 100644
index b752553..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/art_track.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-8v-2h8v2zM22,7h-8v2h8L22,7zM14,17h8v-2h-8v2zM12,9v6c0,1.1 -0.9,2 -2,2L4,17c-1.1,0 -2,-0.9 -2,-2L2,9c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2zM10.5,15l-2.25,-3 -1.75,2.26 -1.25,-1.51L3.5,15h7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/article.xml b/compose/material/material/icons/generator/raw-icons/outlined/article.xml
deleted file mode 100644
index d49b181..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/article.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3L19,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17H7v-2h7V17zM17,13H7v-2h10V13zM17,9H7V7h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/outlined/aspect_ratio.xml
deleted file mode 100644
index 97cb262a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-2v3h-3v2h5v-5zM7,9h3L10,7L5,7v5h2L7,9zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assessment.xml b/compose/material/material/icons/generator/raw-icons/outlined/assessment.xml
deleted file mode 100644
index 91bc3f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assessment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,10h2v7L7,17zM11,7h2v10h-2zM15,13h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assignment.xml b/compose/material/material/icons/generator/raw-icons/outlined/assignment.xml
deleted file mode 100644
index 486983c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assignment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h7v2L7,17zM7,11h10v2L7,13zM7,7h10v2L7,9zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64 -0.1,0.23 -0.16,0.49 -0.16,0.77v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assignment_ind.xml b/compose/material/material/icons/generator/raw-icons/outlined/assignment_ind.xml
deleted file mode 100644
index a867c36..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assignment_ind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.22,0 0.41,0.1 0.55,0.25 0.12,0.13 0.2,0.31 0.2,0.5 0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75c0,-0.19 0.08,-0.37 0.2,-0.5 0.14,-0.15 0.33,-0.25 0.55,-0.25zM19,19L5,19L5,5h14v14zM12,6c-1.65,0 -3,1.35 -3,3s1.35,3 3,3 3,-1.35 3,-3 -1.35,-3 -3,-3zM12,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM6,16.47L6,18h12v-1.53c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.07 -6,3.58zM8.31,16c0.69,-0.56 2.38,-1.12 3.69,-1.12s3.01,0.56 3.69,1.12L8.31,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assignment_late.xml b/compose/material/material/icons/generator/raw-icons/outlined/assignment_late.xml
deleted file mode 100644
index 2369787..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assignment_late.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2zM11,7h2v6h-2zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64 -0.1,0.23 -0.16,0.49 -0.16,0.77v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assignment_return.xml b/compose/material/material/icons/generator/raw-icons/outlined/assignment_return.xml
deleted file mode 100644
index f388eb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assignment_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14h4v-4h-4L12,7l-5,5 5,5zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64 -0.1,0.23 -0.16,0.49 -0.16,0.77v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assignment_returned.xml b/compose/material/material/icons/generator/raw-icons/outlined/assignment_returned.xml
deleted file mode 100644
index 94d3379..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assignment_returned.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h-3L14,8h-4v4L7,12l5,5zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64 -0.1,0.23 -0.16,0.49 -0.16,0.77v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assignment_turned_in.xml b/compose/material/material/icons/generator/raw-icons/outlined/assignment_turned_in.xml
deleted file mode 100644
index cf7a6ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assignment_turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9l-1.41,-1.42L10,14.17l-2.59,-2.58L6,13l4,4zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64 -0.1,0.23 -0.16,0.49 -0.16,0.77v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assist_walker.xml b/compose/material/material/icons/generator/raw-icons/outlined/assist_walker.xml
deleted file mode 100644
index cca770a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assist_walker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,4.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,17.72l-0.64,-6.37C19.06,10.58 18.41,10 17.64,10H16c-1.5,-0.02 -2.86,-0.54 -3.76,-1.44l-2,-1.98C10.08,6.42 9.62,6 8.83,6C8.32,6 7.81,6.2 7.42,6.59L4.08,9.91c-0.53,0.68 -0.51,1.57 -0.21,2.13l1.43,2.8l-3.15,4.05l1.57,1.24l3.68,-4.73l-0.17,-1.36L8,14.75V20h2v-6.12l-2.12,-2.12l2.36,-2.36c0.94,0.94 1.72,1.82 3.59,2.32L13,20h1.5l0.41,-3.5h3.18l0.14,1.22c-0.44,0.26 -0.73,0.74 -0.73,1.28c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5C20.5,18.46 20.21,17.98 19.77,17.72zM15.09,15l0.41,-3.5h2l0.41,3.5H15.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assistant.xml b/compose/material/material/icons/generator/raw-icons/outlined/assistant.xml
deleted file mode 100644
index 78c9b66..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assistant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h4l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM19,18h-4.83l-0.59,0.59L12,20.17l-1.59,-1.59 -0.58,-0.58L5,18L5,4h14v14zM12,17l1.88,-4.12L18,11l-4.12,-1.88L12,5l-1.88,4.12L6,11l4.12,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assistant_direction.xml b/compose/material/material/icons/generator/raw-icons/outlined/assistant_direction.xml
deleted file mode 100644
index 6032e70..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assistant_direction.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C5.9,1 1,5.9 1,12s4.9,11 11,11s11,-4.9 11,-11S18.1,1 12,1zM12,21c-4.99,0 -9,-4.01 -9,-9s4.01,-9 9,-9s9,4.01 9,9S16.99,21 12,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.73,11.42L12.54,4.2c-0.36,-0.27 -0.8,-0.27 -1.15,0L4.2,11.42c-0.27,0.36 -0.27,0.8 0,1.16l7.19,7.22c0.36,0.27 0.8,0.27 1.15,0l7.19,-7.22C20.09,12.22 20.09,11.69 19.73,11.42zM13.5,14.5l-1.41,-1.41L13.17,12H10v3H8v-4c0,-0.6 0.4,-1 1,-1h4.17l-1.09,-1.09L13.5,7.5L17,11L13.5,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assistant_photo.xml b/compose/material/material/icons/generator/raw-icons/outlined/assistant_photo.xml
deleted file mode 100644
index c388259..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assistant_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.36,6l0.08,0.39 0.32,1.61H18v6h-3.36l-0.08,-0.39 -0.32,-1.61H7V6h5.36M14,4H5v17h2v-7h5.6l0.4,2h7V6h-5.6L14,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/assured_workload.xml b/compose/material/material/icons/generator/raw-icons/outlined/assured_workload.xml
deleted file mode 100644
index 8be897c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/assured_workload.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L12,1L2,6v2h20V6zM6.47,6L12,3.24L17.53,6H6.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19v2h12.4c-0.21,-0.64 -0.32,-1.31 -0.36,-2H2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12.26l0,-2.26l-2,0l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14l-4,2v2.55c0,2.52 1.71,4.88 4,5.45c2.29,-0.57 4,-2.93 4,-5.45V16L20,14zM19.28,21l-2.03,-2.03l1.06,-1.06l0.97,0.97l2.41,-2.38l1.06,1.06L19.28,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/atm.xml b/compose/material/material/icons/generator/raw-icons/outlined/atm.xml
deleted file mode 100644
index 4517446..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9v1.5h2.25L10.25,15h1.5v-4.5L14,10.5L14,9L8,9zM6,9L3,9c-0.55,0 -1,0.45 -1,1v5h1.5v-1.5h2L5.5,15L7,15v-5c0,-0.55 -0.45,-1 -1,-1zM5.5,12h-2v-1.5h2L5.5,12zM21,9h-4.5c-0.55,0 -1,0.45 -1,1v5L17,15v-4.5h1L18,14h1.5v-3.51h1L20.5,15L22,15v-5c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/attach_email.xml b/compose/material/material/icons/generator/raw-icons/outlined/attach_email.xml
deleted file mode 100644
index 5428ddd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/attach_email.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6l8,5l8,-5v3h2V4c0,-1.1 -0.9,-2 -2,-2H3C1.9,2 1.01,2.9 1.01,4L1,16c0,1.1 0.9,2 2,2h10v-2H3V6zM19,4l-8,5L3,4H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14v4c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V18h2v-4.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S15,12.12 15,13.5V18c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-4H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/attach_file.xml b/compose/material/material/icons/generator/raw-icons/outlined/attach_file.xml
deleted file mode 100644
index a396022..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/attach_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,6v11.5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5v10.5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6H10v9.5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5V5c0,-2.21 -1.79,-4 -4,-4S7,2.79 7,5v12.5c0,3.04 2.46,5.5 5.5,5.5s5.5,-2.46 5.5,-5.5V6h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/attach_money.xml b/compose/material/material/icons/generator/raw-icons/outlined/attach_money.xml
deleted file mode 100644
index fecf031..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/attach_money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.8,10.9c-2.27,-0.59 -3,-1.2 -3,-2.15 0,-1.09 1.01,-1.85 2.7,-1.85 1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-1.94,0.42 -3.5,1.68 -3.5,3.61 0,2.31 1.91,3.46 4.7,4.13 2.5,0.6 3,1.48 3,2.41 0,0.69 -0.49,1.79 -2.7,1.79 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c1.95,-0.37 3.5,-1.5 3.5,-3.55 0,-2.84 -2.43,-3.81 -4.7,-4.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/attachment.xml b/compose/material/material/icons/generator/raw-icons/outlined/attachment.xml
deleted file mode 100644
index dcdc76c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/attachment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,16H7c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h12.5c1.38,0 2.5,1.12 2.5,2.5S20.88,13 19.5,13H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h9.5V9.5H9c-1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5h10.5c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4H7c-3.04,0 -5.5,2.46 -5.5,5.5s2.46,5.5 5.5,5.5h11.5V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/attractions.xml b/compose/material/material/icons/generator/raw-icons/outlined/attractions.xml
deleted file mode 100644
index 56b3461..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/attractions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.15,14.42c0.23,-0.77 0.35,-1.58 0.35,-2.42s-0.12,-1.65 -0.35,-2.42c0.78,-0.6 1.02,-1.7 0.51,-2.58s-1.58,-1.23 -2.49,-0.85c-1.11,-1.17 -2.56,-2.03 -4.18,-2.42C13.85,2.75 13.01,2 12,2s-1.85,0.75 -1.98,1.73C8.39,4.12 6.95,4.98 5.83,6.15C4.92,5.77 3.85,6.12 3.34,7S3.07,8.98 3.85,9.58C3.62,10.35 3.5,11.16 3.5,12s0.12,1.65 0.35,2.42c-0.78,0.6 -1.02,1.7 -0.51,2.58s1.58,1.23 2.49,0.85c0.4,0.42 0.83,0.79 1.3,1.12L5.78,22h1.88l0.98,-2.19c0.44,0.19 0.9,0.34 1.38,0.46C10.15,21.25 10.99,22 12,22s1.85,-0.75 1.98,-1.73c0.46,-0.11 0.91,-0.26 1.34,-0.44L16.3,22h1.88l-1.34,-3c0.48,-0.34 0.93,-0.72 1.34,-1.15c0.91,0.38 1.99,0.03 2.49,-0.85C21.17,16.12 20.93,15.02 20.15,14.42zM13.56,18.75C13.19,18.29 12.63,18 12,18s-1.2,0.29 -1.57,0.75c-0.4,-0.09 -0.79,-0.21 -1.16,-0.37l1.43,-3.19c0.4,0.16 0.84,0.25 1.3,0.25c0.44,0 0.87,-0.08 1.26,-0.23l1.42,3.18C14.32,18.54 13.95,18.66 13.56,18.75zM10.48,12.02c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5S10.48,12.85 10.48,12.02zM18.71,14.01c-0.61,0.07 -1.18,0.41 -1.52,0.99c-0.32,0.56 -0.34,1.2 -0.12,1.75c-0.28,0.29 -0.58,0.55 -0.9,0.79l-1.5,-3.35c0.49,-0.59 0.78,-1.34 0.78,-2.16c0,-1.89 -1.55,-3.41 -3.46,-3.41s-3.46,1.53 -3.46,3.41c0,0.8 0.28,1.54 0.75,2.13l0,0l-1.52,3.39c-0.31,-0.23 -0.6,-0.48 -0.87,-0.76C7.15,16.23 7.13,15.57 6.8,15c-0.34,-0.59 -0.93,-0.94 -1.56,-0.99c-0.22,-0.68 -0.33,-1.4 -0.33,-2.15c0,-0.64 0.09,-1.26 0.25,-1.85c0.66,-0.03 1.3,-0.38 1.65,-1c0.37,-0.63 0.35,-1.38 0.01,-1.98C7.74,6.05 8.93,5.34 10.27,5c0.34,0.59 0.99,1 1.73,1s1.39,-0.4 1.73,-1c1.34,0.34 2.53,1.07 3.44,2.05C16.85,7.64 16.84,8.38 17.2,9c0.35,0.6 0.96,0.95 1.6,1c0.16,0.59 0.25,1.21 0.25,1.86C19.05,12.61 18.93,13.33 18.71,14.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/attribution.xml b/compose/material/material/icons/generator/raw-icons/outlined/attribution.xml
deleted file mode 100644
index d331857..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/attribution.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.5c-0.91,0 -2.75,0.46 -2.75,1.38v4.62h1.5L10.75,19h2.5v-4.5h1.5L14.75,9.88c0,-0.91 -1.84,-1.38 -2.75,-1.38zM12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/audio_file.xml b/compose/material/material/icons/generator/raw-icons/outlined/audio_file.xml
deleted file mode 100644
index ca8d453..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/audio_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM6,20V4h7v5h5v11H6zM16,11h-4v3.88c-0.36,-0.24 -0.79,-0.38 -1.25,-0.38c-1.24,0 -2.25,1.01 -2.25,2.25c0,1.24 1.01,2.25 2.25,2.25S13,17.99 13,16.75V13h3V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/audiotrack.xml b/compose/material/material/icons/generator/raw-icons/outlined/audiotrack.xml
deleted file mode 100644
index 91f1a06..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/audiotrack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4L14,7h4L18,3h-6zM10,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome.xml
deleted file mode 100644
index 2812c91..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9l1.25,-2.75l2.75,-1.25l-2.75,-1.25l-1.25,-2.75l-1.25,2.75l-2.75,1.25l2.75,1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-1.25,2.75l-2.75,1.25l2.75,1.25l1.25,2.75l1.25,-2.75l2.75,-1.25l-2.75,-1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5,-5.5L17,12L11.5,9.5zM9.99,12.99L9,15.17l-0.99,-2.18L5.83,12l2.18,-0.99L9,8.83l0.99,2.18L12.17,12L9.99,12.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome_mosaic.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome_mosaic.xml
deleted file mode 100644
index 75c6148..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome_mosaic.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.89,2 2,2h6V3H5C3.89,3 3,3.9 3,5zM9,19H5V5h4V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-6v8h8V5C21,3.9 20.1,3 19,3zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21h6c1.1,0 2,-0.9 2,-2v-6h-8V21zM15,15h4v4h-4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome_motion.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome_motion.xml
deleted file mode 100644
index 2508c3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_awesome_motion.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4C2.9,2 2,2.9 2,4v10h2V4h10V2zM18,6H8C6.9,6 6,6.9 6,8v10h2V8h10V6zM20,10h-8c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-8C22,10.9 21.1,10 20,10zM20,20h-8v-8h8V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_delete.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_delete.xml
deleted file mode 100644
index dc6893d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_delete.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2l-3.5,0l-1,-1l-5,0l-1,1l-3.5,0l0,2l14,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9c-0.7,0 -1.37,0.1 -2,0.29V5H2v12c0,1.1 0.9,2 2,2h5.68c1.12,2.36 3.53,4 6.32,4c3.87,0 7,-3.13 7,-7C23,12.13 19.87,9 16,9zM9,16c0,0.34 0.03,0.67 0.08,1H4V7h8v3.26C10.19,11.53 9,13.62 9,16zM16,21c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S18.76,21 16,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12l-1.5,0l0,5l3.6,2.1l0.8,-1.2l-2.9,-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_high.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_high.xml
deleted file mode 100644
index f34fb74..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_high.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12.5l-0.94,2.06l-2.06,0.94l2.06,0.94l0.94,2.06l0.94,-2.06l2.06,-0.94l-2.06,-0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,9.12l-2.83,-2.83C14.68,6.1 14.43,6 14.17,6c-0.26,0 -0.51,0.1 -0.71,0.29L2.29,17.46c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83C5.32,21.9 5.57,22 5.83,22s0.51,-0.1 0.71,-0.29l11.17,-11.17C18.1,10.15 18.1,9.51 17.71,9.12zM14.17,8.42l1.41,1.41L14.41,11L13,9.59L14.17,8.42zM5.83,19.59l-1.41,-1.41L11.59,11L13,12.41L5.83,19.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_normal.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_normal.xml
deleted file mode 100644
index 2fc56bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_normal.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,9.12l-2.83,-2.83C14.68,6.1 14.43,6 14.17,6c-0.26,0 -0.51,0.1 -0.71,0.29L2.29,17.46c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83C5.32,21.9 5.57,22 5.83,22s0.51,-0.1 0.71,-0.29l11.17,-11.17C18.1,10.15 18.1,9.51 17.71,9.12zM14.17,8.42l1.41,1.41L14.41,11L13,9.59L14.17,8.42zM5.83,19.59l-1.41,-1.41L11.59,11L13,12.41L5.83,19.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_off.xml
deleted file mode 100644
index b20dea9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_fix_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17,-2.17c0.39,-0.39 0.39,-1.02 0,-1.41l-2.83,-2.83C14.68,6.1 14.43,6 14.17,6c-0.26,0 -0.51,0.1 -0.71,0.29l-2.17,2.17l1.41,1.41L14.17,8.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l7.07,7.07l-6.17,6.17c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83C5.32,21.9 5.57,22 5.83,22s0.51,-0.1 0.71,-0.29l6.17,-6.17l7.07,7.07l1.41,-1.41L2.81,2.81L1.39,4.22zM11.29,14.12l-5.46,5.46l-1.41,-1.41l5.46,-5.46L11.29,14.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_graph.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_graph.xml
deleted file mode 100644
index 2b7174e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_graph.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.94L12,9l2.06,-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94zM4,14l0.94,-2.06L7,11l-2.06,-0.94L4,8l-0.94,2.06L1,11l2.06,0.94L4,14zM8.5,9l1.09,-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9zM4.5,20.5l6,-6.01l4,4L23,8.93l-1.41,-1.41l-7.09,7.97l-4,-4L3,19L4.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_mode.xml
deleted file mode 100644
index fc54b2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_mode.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.03,3.56c-1.67,-1.39 -3.74,-2.3 -6.03,-2.51v2.01c1.73,0.19 3.31,0.88 4.61,1.92L19.03,3.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3.06V1.05C8.71,1.25 6.64,2.17 4.97,3.56l1.42,1.42C7.69,3.94 9.27,3.25 11,3.06z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.98,6.39L3.56,4.97C2.17,6.64 1.26,8.71 1.05,11h2.01C3.25,9.27 3.94,7.69 4.98,6.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11h2.01c-0.21,-2.29 -1.12,-4.36 -2.51,-6.03l-1.42,1.42C20.06,7.69 20.75,9.27 20.94,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l3.44,1.56l1.56,3.44l1.56,-3.44l3.44,-1.56l-3.44,-1.56l-1.56,-3.44l-1.56,3.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c-3.11,0 -5.85,-1.59 -7.46,-4H7v-2H1v6h2v-2.7c1.99,2.84 5.27,4.7 9,4.7c4.87,0 9,-3.17 10.44,-7.56l-1.96,-0.45C19.25,18.48 15.92,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/auto_stories.xml b/compose/material/material/icons/generator/raw-icons/outlined/auto_stories.xml
deleted file mode 100644
index 9706d77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/auto_stories.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.47,5.2C22,4.96 21.51,4.76 21,4.59v12.03C19.86,16.21 18.69,16 17.5,16c-1.9,0 -3.78,0.54 -5.5,1.58V5.48C10.38,4.55 8.51,4 6.5,4C4.71,4 3.02,4.44 1.53,5.2C1.2,5.36 1,5.71 1,6.08v12.08c0,0.58 0.47,0.99 1,0.99c0.16,0 0.32,-0.04 0.48,-0.12C3.69,18.4 5.05,18 6.5,18c2.07,0 3.98,0.82 5.5,2c1.52,-1.18 3.43,-2 5.5,-2c1.45,0 2.81,0.4 4.02,1.04c0.16,0.08 0.32,0.12 0.48,0.12c0.52,0 1,-0.41 1,-0.99V6.08C23,5.71 22.8,5.36 22.47,5.2zM10,16.62C8.86,16.21 7.69,16 6.5,16c-1.19,0 -2.36,0.21 -3.5,0.62V6.71C4.11,6.24 5.28,6 6.5,6C7.7,6 8.89,6.25 10,6.72V16.62zM19,0.5l-5,5V15l5,-4.5V0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/autofps_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/autofps_select.xml
deleted file mode 100644
index 43e257a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/autofps_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,6.3l-0.06,0l-1.02,2.89l2.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6S6,5.69 6,9S8.69,15 12,15zM11.37,5h1.25l2.63,7h-1.21l-0.63,-1.79h-2.83L9.96,12H8.74L11.37,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h6v5h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/autorenew.xml b/compose/material/material/icons/generator/raw-icons/outlined/autorenew.xml
deleted file mode 100644
index 3c6d07f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/autorenew.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6v3l4,-4 -4,-4v3c-4.42,0 -8,3.58 -8,8 0,1.57 0.46,3.03 1.24,4.26L6.7,14.8c-0.45,-0.83 -0.7,-1.79 -0.7,-2.8 0,-3.31 2.69,-6 6,-6zM18.76,7.74L17.3,9.2c0.44,0.84 0.7,1.79 0.7,2.8 0,3.31 -2.69,6 -6,6v-3l-4,4 4,4v-3c4.42,0 8,-3.58 8,-8 0,-1.57 -0.46,-3.03 -1.24,-4.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/av_timer.xml b/compose/material/material/icons/generator/raw-icons/outlined/av_timer.xml
deleted file mode 100644
index 6fc780c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/av_timer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17c0,0.55 0.45,1 1,1s1,-0.45 1,-1 -0.45,-1 -1,-1 -1,0.45 -1,1zM11,3v4h2L13,5.08c3.39,0.49 6,3.39 6,6.92 0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-1.68 0.59,-3.22 1.58,-4.42L12,13l1.41,-1.41 -6.8,-6.8v0.02C4.42,6.45 3,9.05 3,12c0,4.97 4.02,9 9,9 4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9h-1zM18,12c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1 0.45,1 1,1 1,-0.45 1,-1zM6,12c0,0.55 0.45,1 1,1s1,-0.45 1,-1 -0.45,-1 -1,-1 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/baby_changing_station.xml b/compose/material/material/icons/generator/raw-icons/outlined/baby_changing_station.xml
deleted file mode 100644
index 890da27..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/baby_changing_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58,-4.63C4.96,6.25 6.22,5.69 7.3,6.18l4.15,1.83L14,8zM8,1C6.9,1 6,1.9 6,3s0.9,2 2,2s2,-0.9 2,-2S9.1,1 8,1zM9,19h12v-2H9V19zM19.5,16c0.83,0 1.5,-0.67 1.5,-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S18,13.67 18,14.5C18,15.33 18.67,16 19.5,16zM13,12c0,-0.55 -0.45,-1 -1,-1H9v2h2v1c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-3h-2v2h-2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/back_hand.xml b/compose/material/material/icons/generator/raw-icons/outlined/back_hand.xml
deleted file mode 100644
index c057564..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/back_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7c0,-1.38 -1.12,-2.5 -2.5,-2.5c-0.17,0 -0.34,0.02 -0.5,0.05V4c0,-1.38 -1.12,-2.5 -2.5,-2.5c-0.23,0 -0.46,0.03 -0.67,0.09C14.46,0.66 13.56,0 12.5,0c-1.23,0 -2.25,0.89 -2.46,2.06C9.87,2.02 9.69,2 9.5,2C8.12,2 7,3.12 7,4.5v5.89c-0.34,-0.31 -0.76,-0.54 -1.22,-0.66L5.01,9.52c-0.83,-0.23 -1.7,0.09 -2.19,0.83c-0.38,0.57 -0.4,1.31 -0.15,1.95l2.56,6.43C6.49,21.91 9.57,24 13,24h0c4.42,0 8,-3.58 8,-8V7zM19,16c0,3.31 -2.69,6 -6,6h0c-2.61,0 -4.95,-1.59 -5.91,-4.01l-2.6,-6.54l0.53,0.14c0.46,0.12 0.83,0.46 1,0.9L7,15h2V4.5C9,4.22 9.22,4 9.5,4S10,4.22 10,4.5V12h2V2.5C12,2.22 12.22,2 12.5,2S13,2.22 13,2.5V12h2V4c0,-0.28 0.22,-0.5 0.5,-0.5S16,3.72 16,4v8h2V7c0,-0.28 0.22,-0.5 0.5,-0.5S19,6.72 19,7L19,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/backpack.xml b/compose/material/material/icons/generator/raw-icons/outlined/backpack.xml
deleted file mode 100644
index d7f4954..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59 4,6.14 4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8C20,6.14 18.72,4.59 17,4.14zM18,20H6V8c0,-1.1 0.9,-2 2,-2h8c1.1,0 2,0.9 2,2V20zM16.5,12v4h-2v-2h-7v-2H16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/backspace.xml b/compose/material/material/icons/generator/raw-icons/outlined/backspace.xml
deleted file mode 100644
index 3284b01..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0,12l5.41,8.11c0.36,0.53 0.9,0.89 1.59,0.89h15c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM22,19L7.07,19L2.4,12l4.66,-7L22,5v14zM10.41,17L14,13.41 17.59,17 19,15.59 15.41,12 19,8.41 17.59,7 14,10.59 10.41,7 9,8.41 12.59,12 9,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/backup.xml b/compose/material/material/icons/generator/raw-icons/outlined/backup.xml
deleted file mode 100644
index 05aac2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/backup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM8,13h2.55v3h2.9v-3H16l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/backup_table.xml b/compose/material/material/icons/generator/raw-icons/outlined/backup_table.xml
deleted file mode 100644
index f937840..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/backup_table.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6v14H6v2h14c1.1,0 2,-0.9 2,-2V6H20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,2H4C2.9,2 2,2.9 2,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2 16,2zM9,16H4v-5h5V16zM16,16h-5v-5h5V16zM16,9H4V4h12V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/badge.xml b/compose/material/material/icons/generator/raw-icons/outlined/badge.xml
deleted file mode 100644
index b4d9ed4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/badge.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12h4v1.5h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,15h4v1.5h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM11,7V4h2v3v2h-2V7zM20,20H4V9h5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2h5V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.08,16.18C10.44,15.9 9.74,15.75 9,15.75s-1.44,0.15 -2.08,0.43C6.36,16.42 6,16.96 6,17.57V18h6v-0.43C12,16.96 11.64,16.42 11.08,16.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bakery_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/bakery_dining.xml
deleted file mode 100644
index 0d1554a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bakery_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,10.94c0.13,-0.32 0.1,-0.23 0.15,-0.39c0.3,-1.21 -0.34,-2.47 -1.5,-2.93l-2.01,-0.8c-0.46,-0.18 -0.95,-0.21 -1.41,-0.12c-0.11,-0.33 -0.29,-0.63 -0.52,-0.89C14.73,5.29 14.06,5 13.36,5h-2.71C9.94,5 9.27,5.29 8.8,5.81C8.56,6.07 8.38,6.37 8.27,6.69C7.81,6.6 7.32,6.63 6.86,6.81l-2.01,0.8c-1.16,0.46 -1.8,1.72 -1.5,2.93l0.15,0.38C1.1,15.55 1,15.55 1,16.38c0,0.91 0.46,1.74 1.24,2.22c1.42,0.88 2.49,0.14 4,-0.61h11.53c1.52,0.76 1.86,1.01 2.63,1.01c1,0 2.61,-0.77 2.61,-2.61C23,15.54 22.88,15.51 20.5,10.94zM20.12,16.93l-1.68,-0.84l1.08,-2.7l1.41,2.71C21.21,16.63 20.64,17.19 20.12,16.93zM15.09,15.99l0.62,-6.9c0.03,-0.33 0.37,-0.54 0.68,-0.42l2.01,0.8c0.22,0.09 0.34,0.31 0.31,0.54l-2.4,5.98H15.09zM7.68,15.99l-2.4,-5.98C5.25,9.78 5.37,9.56 5.59,9.47l2.01,-0.8c0.31,-0.12 0.65,0.08 0.68,0.42l0.62,6.9H7.68zM3.07,16.1l1.41,-2.72l1.08,2.71l-1.68,0.84C3.36,17.19 2.79,16.63 3.07,16.1zM10.15,7.54c-0.03,-0.31 0.23,-0.54 0.5,-0.54h2.71c0.27,0 0.53,0.23 0.5,0.54l-0.77,8.45h-2.17L10.15,7.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/balance.xml b/compose/material/material/icons/generator/raw-icons/outlined/balance.xml
deleted file mode 100644
index f5c8d81..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/balance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.83c0.85,-0.3 1.53,-0.98 1.83,-1.83H18l-3,7c0,1.66 1.57,3 3.5,3s3.5,-1.34 3.5,-3l-3,-7h2V4h-6.17C14.42,2.83 13.31,2 12,2S9.58,2.83 9.17,4L3,4v2h2l-3,7c0,1.66 1.57,3 3.5,3S9,14.66 9,13L6,6h3.17c0.3,0.85 0.98,1.53 1.83,1.83V19H2v2h20v-2h-9V7.83zM20.37,13h-3.74l1.87,-4.36L20.37,13zM7.37,13H3.63L5.5,8.64L7.37,13zM12,6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,5.55 12.55,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/balcony.xml b/compose/material/material/icons/generator/raw-icons/outlined/balcony.xml
deleted file mode 100644
index f058880..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/balcony.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10v2H8v-2H10zM16,12v-2h-2v2H16zM21,14v8H3v-8h1v-4c0,-4.42 3.58,-8 8,-8s8,3.58 8,8v4H21zM7,16H5v4h2V16zM11,16H9v4h2V16zM11,4.08C8.16,4.56 6,7.03 6,10v4h5V4.08zM13,14h5v-4c0,-2.97 -2.16,-5.44 -5,-5.92V14zM15,16h-2v4h2V16zM19,16h-2v4h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ballot.xml b/compose/material/material/icons/generator/raw-icons/outlined/ballot.xml
deleted file mode 100644
index 003fcb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ballot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.5h5v2h-5zM13,14.5h5v2h-5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM11,6L6,6v5h5L11,6zM10,10L7,10L7,7h3v3zM11,13L6,13v5h5v-5zM10,17L7,17v-3h3v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bar_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/bar_chart.xml
deleted file mode 100644
index bbc825d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bar_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h4v7h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v16h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/batch_prediction.xml b/compose/material/material/icons/generator/raw-icons/outlined/batch_prediction.xml
deleted file mode 100644
index 4ccd035..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/batch_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8H7c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V10C19,8.9 18.1,8 17,8zM13,20.5h-2V19h2V20.5zM13,18h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5c1.93,0 3.5,1.57 3.5,3.5C15.5,15 13,16.5 13,18zM18,6.5H6v0C6,5.67 6.67,5 7.5,5h9C17.33,5 18,5.67 18,6.5L18,6.5zM17,3.5H7v0C7,2.67 7.67,2 8.5,2h7C16.33,2 17,2.67 17,3.5L17,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bathroom.xml b/compose/material/material/icons/generator/raw-icons/outlined/bathroom.xml
deleted file mode 100644
index 5ec7289..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bathroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,14c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S8,14.55 8,14zM12,15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S11.45,15 12,15zM15,15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S14.45,15 15,15zM12,7.5c-1.76,0 -3.22,1.31 -3.46,3h6.93C15.22,8.81 13.76,7.5 12,7.5M12,6c2.76,0 5,2.24 5,5v1H7v-1C7,8.24 9.24,6 12,6zM9,18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S8.45,18 9,18zM12,18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S11.45,18 12,18zM15,18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S14.45,18 15,18zM20,4H4v16h16V4M20,2c1.1,0 2,0.9 2,2v16c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V4c0,-1.1 0.9,-2 2,-2H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bathtub.xml b/compose/material/material/icons/generator/raw-icons/outlined/bathtub.xml
deleted file mode 100644
index cbf4f27..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bathtub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13V4.83C20,3.27 18.73,2 17.17,2c-0.75,0 -1.47,0.3 -2,0.83l-1.25,1.25C13.76,4.03 13.59,4 13.41,4c-0.4,0 -0.77,0.12 -1.08,0.32l2.76,2.76c0.2,-0.31 0.32,-0.68 0.32,-1.08c0,-0.18 -0.03,-0.34 -0.07,-0.51l1.25,-1.25C16.74,4.09 16.95,4 17.17,4C17.63,4 18,4.37 18,4.83V13h-6.85c-0.3,-0.21 -0.57,-0.45 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5C7.93,10.08 7.59,10 7.24,10C6,10.01 5,11.01 5,12.25V13H2v6c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1c1.1,0 2,-0.9 2,-2v-6H20zM20,19H4v-4h16V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_0_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_0_bar.xml
deleted file mode 100644
index b286b95..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v14h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_1_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_1_bar.xml
deleted file mode 100644
index 88a1766..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v12h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_2_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_2_bar.xml
deleted file mode 100644
index f8b1dd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v10h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_3_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_3_bar.xml
deleted file mode 100644
index edbf58f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v8h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_4_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_4_bar.xml
deleted file mode 100644
index b02d618..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v6h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_5_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_5_bar.xml
deleted file mode 100644
index b9112cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_5_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_6_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_6_bar.xml
deleted file mode 100644
index 137ebed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_6_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v2h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_alert.xml
deleted file mode 100644
index f171af7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,2h-4v2L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM13,14h-2L11,9h2v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_charging_full.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_charging_full.xml
deleted file mode 100644
index 8e9c13f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_charging_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4zM11,20v-5.5H9L13,7v5.5h2L11,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_full.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_full.xml
deleted file mode 100644
index 38b8a788..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_saver.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_saver.xml
deleted file mode 100644
index 03da48f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_saver.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2V2h-4v2H8C7.45,4 7,4.45 7,5v16c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1V5C17,4.45 16.55,4 16,4zM15,14h-2v2h-2v-2H9v-2h2v-2h2v2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_std.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_std.xml
deleted file mode 100644
index 38b8a788..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_std.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/battery_unknown.xml b/compose/material/material/icons/generator/raw-icons/outlined/battery_unknown.xml
deleted file mode 100644
index aaad891..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/battery_unknown.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,2h-4v2L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM14.3,12.69s-0.38,0.42 -0.67,0.71c-0.48,0.48 -0.83,1.15 -0.83,1.6h-1.6c0,-0.83 0.46,-1.52 0.93,-2l0.93,-0.94c0.27,-0.27 0.44,-0.65 0.44,-1.06 0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5L9,11c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,0.66 -0.27,1.26 -0.7,1.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/beach_access.xml b/compose/material/material/icons/generator/raw-icons/outlined/beach_access.xml
deleted file mode 100644
index 8f7aef9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/beach_access.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19.57l-1.427,1.428 -6.442,-6.442 1.43,-1.428zM13.12,3c-2.58,0 -5.16,0.98 -7.14,2.95l-0.01,0.01c-3.95,3.95 -3.95,10.36 0,14.31l14.3,-14.31C18.3,3.99 15.71,3 13.12,3zM6.14,17.27C5.4,16.03 5,14.61 5,13.12c0,-0.93 0.16,-1.82 0.46,-2.67 0.19,1.91 0.89,3.79 2.07,5.44l-1.39,1.38zM8.98,14.43C7.63,12.38 7.12,9.93 7.6,7.6c0.58,-0.12 1.16,-0.18 1.75,-0.18 1.8,0 3.55,0.55 5.08,1.56l-5.45,5.45zM10.45,5.46c0.85,-0.3 1.74,-0.46 2.67,-0.46 1.49,0 2.91,0.4 4.15,1.14l-1.39,1.39c-1.65,-1.18 -3.52,-1.88 -5.43,-2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bed.xml b/compose/material/material/icons/generator/raw-icons/outlined/bed.xml
deleted file mode 100644
index b4ccfba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.78V8c0,-1.65 -1.35,-3 -3,-3h-4c-0.77,0 -1.47,0.3 -2,0.78C11.47,5.3 10.77,5 10,5H6C4.35,5 3,6.35 3,8v2.78C2.39,11.33 2,12.12 2,13v6h2v-2h16v2h2v-6C22,12.12 21.61,11.33 21,10.78zM14,7h4c0.55,0 1,0.45 1,1v2h-6V8C13,7.45 13.45,7 14,7zM5,8c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v2H5V8zM4,15v-2c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bedroom_baby.xml b/compose/material/material/icons/generator/raw-icons/outlined/bedroom_baby.xml
deleted file mode 100644
index 80ea996..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bedroom_baby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.94,14.04c-0.34,0.34 -0.71,0.64 -1.1,0.92L16,13.5V11h1v-1h-5.62L9.65,7H6l1,0.76L5.5,9.5l0.95,1L8,9.51v3.99l-0.84,1.46c-0.39,-0.27 -0.76,-0.58 -1.1,-0.92L5,15.1c1.87,1.87 4.36,2.9 7,2.9s5.13,-1.03 7,-2.9L17.94,14.04zM8.45,15.71l0.03,-0.06l0.81,-1.41c1.74,0.65 3.66,0.65 5.4,0l0.81,1.41l0.03,0.06c-1.1,0.51 -2.3,0.79 -3.55,0.79S9.55,16.23 8.45,15.71zM20,4v16H4V4H20M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bedroom_child.xml b/compose/material/material/icons/generator/raw-icons/outlined/bedroom_child.xml
deleted file mode 100644
index bf486b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bedroom_child.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v16H4V4H20M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM16.5,10.67V9c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v1.67c-0.88,0.35 -1.5,1.2 -1.5,2.2V17h1.5v-1.5h9V17H18v-4.13C18,11.87 17.38,11.02 16.5,10.67zM15,8.5v2H9v-2H15zM7.5,12.87C7.5,12.39 7.89,12 8.37,12h7.27c0.48,0 0.87,0.39 0.87,0.87V14h-9v-1.13H7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bedroom_parent.xml b/compose/material/material/icons/generator/raw-icons/outlined/bedroom_parent.xml
deleted file mode 100644
index 40fc9ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bedroom_parent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.35,11.45V9c0,-1.1 -0.9,-2 -2,-2H13c-0.37,0 -0.72,0.12 -1,0.32C11.72,7.12 11.37,7 11,7H7.65c-1.1,0 -2,0.9 -2,2v2.45C5.25,11.91 5,12.51 5,13.17V17h1.5v-1.5h11V17H19v-3.83C19,12.51 18.75,11.91 18.35,11.45zM16.75,10.5h-4v-2h4V10.5zM7.25,8.5h4v2h-4V8.5zM17.5,14h-11v-1c0,-0.55 0.45,-1 1,-1h9c0.55,0 1,0.45 1,1V14zM20,4v16H4V4H20M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bedtime.xml b/compose/material/material/icons/generator/raw-icons/outlined/bedtime.xml
deleted file mode 100644
index ad6d842..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bedtime.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.27,4.49c-1.63,7.54 3.75,12.41 7.66,13.8C15.54,19.38 13.81,20 12,20c-4.41,0 -8,-3.59 -8,-8C4,8.55 6.2,5.6 9.27,4.49M11.99,2.01C6.4,2.01 2,6.54 2,12c0,5.52 4.48,10 10,10c3.71,0 6.93,-2.02 8.66,-5.02c-7.51,-0.25 -12.09,-8.43 -8.32,-14.97C12.22,2.01 12.11,2.01 11.99,2.01L11.99,2.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bedtime_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/bedtime_off.xml
deleted file mode 100644
index e8b59b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bedtime_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.27,4.49C9.14,5.08 9.07,5.64 9.03,6.2l2.05,2.05c-0.27,-2.05 0.1,-4.22 1.26,-6.23c-0.12,0 -0.23,-0.01 -0.35,-0.01c-2.05,0 -3.93,0.61 -5.5,1.65l1.46,1.46C8.37,4.88 8.81,4.66 9.27,4.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l2.27,2.27C2.61,8.07 2,9.97 2,12c0,5.52 4.48,10 10,10c2.04,0 3.92,-0.63 5.5,-1.67l2.28,2.28l1.41,-1.41L2.81,2.81L1.39,4.22zM5.13,7.96l10.92,10.92C14.84,19.6 13.45,20 12,20c-4.41,0 -8,-3.59 -8,-8C4,10.52 4.42,9.15 5.13,7.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/beenhere.xml b/compose/material/material/icons/generator/raw-icons/outlined/beenhere.xml
deleted file mode 100644
index c04c2d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/beenhere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L5,1c-1.1,0 -1.99,0.9 -1.99,2L3,15.93c0,0.69 0.35,1.3 0.88,1.66L12,23l8.11,-5.41c0.53,-0.36 0.88,-0.97 0.88,-1.66L21,3c0,-1.1 -0.9,-2 -2,-2zM12,20.6l-7,-4.66L5,3h14v12.93l-7,4.67zM9.99,13.18l-2.58,-2.59L6,12l4,4 8,-8 -1.42,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bento.xml b/compose/material/material/icons/generator/raw-icons/outlined/bento.xml
deleted file mode 100644
index 0909cd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bento.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5H4C2.9,5 2,5.9 2,7v10c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,11h-6V7h6V11zM4,7h8v10H4V7zM14,17v-4h6v4H14zM9.5,12c0,0.83 -0.67,1.5 -1.5,1.5S6.5,12.83 6.5,12s0.67,-1.5 1.5,-1.5S9.5,11.17 9.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bike_scooter.xml b/compose/material/material/icons/generator/raw-icons/outlined/bike_scooter.xml
deleted file mode 100644
index d896141d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bike_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14h0.74L8.82,5.56C8.61,4.65 7.8,4 6.87,4H3v2h3.87l1.42,6.25c0,0 -0.01,0 -0.01,0C6.12,12.9 4.47,14.73 4.09,17H0v2h6v-1C6,15.79 7.79,14 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-0.82l-1.35,-3.69C16.55,3.52 15.8,3 14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58 -0.75,1.25 -0.9,2h-2.79l0.46,2h2.33c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,10.2 21.8,8 19,8zM19,16c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,15 10,15zM10,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S10.55,19 10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/biotech.xml b/compose/material/material/icons/generator/raw-icons/outlined/biotech.xml
deleted file mode 100644
index 9fe06cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/biotech.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19c-1.1,0 -2,0.9 -2,2h14c0,-1.1 -0.9,-2 -2,-2h-4v-2h3c1.1,0 2,-0.9 2,-2h-8c-1.66,0 -3,-1.34 -3,-3c0,-1.09 0.59,-2.04 1.47,-2.57c0.41,0.59 1.06,1 1.83,1.06c0.7,0.06 1.36,-0.19 1.85,-0.62l0.59,1.61l0.94,-0.34l0.34,0.94l1.88,-0.68l-0.34,-0.94l0.94,-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48 8.37,6.27 8.08,7.38C6.27,8.14 5,9.92 5,12c0,2.76 2.24,5 5,5v2H7zM12.86,4.52l1.71,4.7l-0.94,0.34l-1.71,-4.7L12.86,4.52zM10.5,7c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1C9.5,7.45 9.95,7 10.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blender.xml b/compose/material/material/icons/generator/raw-icons/outlined/blender.xml
deleted file mode 100644
index f82f385..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blender.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h2.23l0.64,4.13C6.74,16.05 6,17.43 6,19v1c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-1C18,17.43 17.26,16.05 16.13,15.13zM5,9V5h1.31l0.62,4H5zM15.67,5l-1.38,9H9.72L8.33,5H15.67zM16,20H8v-1c0,-1.65 1.35,-3 3,-3h2c1.65,0 3,1.35 3,3V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blind.xml b/compose/material/material/icons/generator/raw-icons/outlined/blind.xml
deleted file mode 100644
index 803b7dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blind.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,3.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.13,7.12c-0.17,-0.35 -0.44,-0.65 -0.8,-0.85C10.72,5.91 9.99,5.93 9.4,6.24l0,-0.01L4,9.3V14h2v-3.54l1.5,-0.85C7.18,10.71 7,11.85 7,13v5.33L4.4,21.8L6,23l3,-4l0.22,-3.54L11,18v5h2v-6.5l-1.97,-2.81c-0.04,-0.52 -0.14,-1.76 0.45,-3.4c0.75,1.14 1.88,1.98 3.2,2.41L20.63,23l0.87,-0.5L16.02,13H17v-2c-0.49,0 -2.88,0.17 -4.08,-2.21"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blinds.xml b/compose/material/material/icons/generator/raw-icons/outlined/blinds.xml
deleted file mode 100644
index 02afa6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blinds.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM16,9h2v2h-2V9zM14,11H6V9h8V11zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-6h8v1.82c-0.45,0.32 -0.75,0.84 -0.75,1.43c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75c0,-0.59 -0.3,-1.12 -0.75,-1.43V13h2v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blinds_closed.xml b/compose/material/material/icons/generator/raw-icons/outlined/blinds_closed.xml
deleted file mode 100644
index e03dcb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blinds_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h11.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM18,11h-2V9h2V11zM14,11H6V9h8V11zM14,13v2H6v-2H14zM16,13h2v2h-2V13zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-2h8v2H6zM16,19v-2h2v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/block.xml b/compose/material/material/icons/generator/raw-icons/outlined/block.xml
deleted file mode 100644
index 9fefeec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/block.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-4.42 3.58,-8 8,-8 1.85,0 3.55,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4,13.85 4,12zM12,20c-1.85,0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20,10.15 20,12c0,4.42 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bloodtype.xml b/compose/material/material/icons/generator/raw-icons/outlined/bloodtype.xml
deleted file mode 100644
index b567f7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bloodtype.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM12,20c-3.35,0 -6,-2.57 -6,-6.2c0,-2.34 1.95,-5.44 6,-9.14c4.05,3.7 6,6.79 6,9.14C18,17.43 15.35,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth.xml b/compose/material/material/icons/generator/raw-icons/outlined/bluetooth.xml
deleted file mode 100644
index 1e9621b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_audio.xml b/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_audio.xml
deleted file mode 100644
index 0cb6d73..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_audio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33s-0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_connected.xml b/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_connected.xml
deleted file mode 100644
index 95db32a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l-2,-2 -2,2 2,2 2,-2zM17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88zM19,10l-2,2 2,2 2,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_disabled.xml
deleted file mode 100644
index 111179b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.88,1.88 -1.6,1.6 1.41,1.41 3.02,-3.02L12,2h-1v5.03l2,2v-3.2zM5.41,4L4,5.41 10.59,12 5,17.59 6.41,19 11,14.41V22h1l4.29,-4.29 2.3,2.29L20,18.59 5.41,4zM13,18.17v-3.76l1.88,1.88L13,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_drive.xml b/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_drive.xml
deleted file mode 100644
index 7d6b491..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_drive.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17H4v-5h11v-2H4.81l1.04,-3H15V5H5.5C4.84,5 4.29,5.42 4.08,6.01L2,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8h-2V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.85L19.15,1h-0.5v3.79l-2.3,-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3,-2.3V11h0.5L22,8.14L19.85,6L22,3.85zM19.65,2.91l0.94,0.94l-0.94,0.94V2.91zM20.59,8.14l-0.94,0.94V7.2L20.59,8.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_searching.xml b/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_searching.xml
deleted file mode 100644
index 4421153..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bluetooth_searching.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33s-0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blur_circular.xml b/compose/material/material/icons/generator/raw-icons/outlined/blur_circular.xml
deleted file mode 100644
index 4945404..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blur_circular.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM10,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM7,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM7,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM17,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM14,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blur_linear.xml b/compose/material/material/icons/generator/raw-icons/outlined/blur_linear.xml
deleted file mode 100644
index 23a6781..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blur_linear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM9,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM3,21h18v-2L3,19v2zM5,9.5c0.83,0 1.5,-0.67 1.5,-1.5S5.83,6.5 5,6.5 3.5,7.17 3.5,8 4.17,9.5 5,9.5zM5,13.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM17,16.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,3v2h18L21,3L3,3zM17,8.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,12.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM13,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blur_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/blur_off.xml
deleted file mode 100644
index 332f1c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blur_off.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.8,11.48l0.2,0.02c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5l0.02,0.2c0.09,0.67 0.61,1.19 1.28,1.28zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,5.27L6,8.77l0.28,0.28L6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l2.81,2.81c-0.71,0.11 -1.25,0.73 -1.25,1.47 0,0.83 0.67,1.5 1.5,1.5 0.74,0 1.36,-0.54 1.47,-1.25l2.81,2.81c-0.09,-0.03 -0.18,-0.06 -0.28,-0.06 -0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l3.78,3.78h0.01l1.41,-1.41L3.91,3.86 2.5,5.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/blur_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/blur_on.xml
deleted file mode 100644
index 121ad7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/blur_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM6,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bolt.xml b/compose/material/material/icons/generator/raw-icons/outlined/bolt.xml
deleted file mode 100644
index 6c4c194..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h-1l1,-7H7.5c-0.88,0 -0.33,-0.75 -0.31,-0.78C8.48,10.94 10.42,7.54 13.01,3h1l-1,7h3.51c0.4,0 0.62,0.19 0.4,0.66C12.97,17.55 11,21 11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/book.xml b/compose/material/material/icons/generator/raw-icons/outlined/book.xml
deleted file mode 100644
index bace178..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/book.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM9,4h2v5l-1,-0.75L9,9L9,4zM18,20L6,20L6,4h1v9l3,-2.25L13,13L13,4h5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/book_online.xml b/compose/material/material/icons/generator/raw-icons/outlined/book_online.xml
deleted file mode 100644
index 867dc35..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/book_online.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4H7V3h10V4zM17,21H7v-1h10V21zM17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1L17,1zM7,6h10v12H7V6zM16,11V9.14C16,8.51 15.55,8 15,8H9C8.45,8 8,8.51 8,9.14l0,1.96c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1l0,1.76C8,15.49 8.45,16 9,16h6c0.55,0 1,-0.51 1,-1.14V13c-0.55,0 -1,-0.45 -1,-1C15,11.45 15.45,11 16,11zM12.5,14.5h-1v-1h1V14.5zM12.5,12.5h-1v-1h1V12.5zM12.5,10.5h-1v-1h1V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bookmark.xml b/compose/material/material/icons/generator/raw-icons/outlined/bookmark.xml
deleted file mode 100644
index 3e5fea3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bookmark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3H7c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/bookmark_add.xml
deleted file mode 100644
index 2df31cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v6.97l-5,-2.14l-5,2.14V5h6V3H7C5.9,3 5,3.9 5,5v16l7,-3l7,3V11H17zM21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_added.xml b/compose/material/material/icons/generator/raw-icons/outlined/bookmark_added.xml
deleted file mode 100644
index cb2e0a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_added.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v6.97l-5,-2.14l-5,2.14V5h6V3H7C5.9,3 5,3.9 5,5v16l7,-3l7,3V11H17zM17.83,9L15,6.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L17.83,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_border.xml b/compose/material/material/icons/generator/raw-icons/outlined/bookmark_border.xml
deleted file mode 100644
index 0cb95b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_remove.xml b/compose/material/material/icons/generator/raw-icons/outlined/bookmark_remove.xml
deleted file mode 100644
index ab370a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bookmark_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v6.97l-5,-2.14l-5,2.14V5h6V3H7C5.9,3 5,3.9 5,5v16l7,-3l7,3V11H17zM21,7h-6V5h6V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bookmarks.xml b/compose/material/material/icons/generator/raw-icons/outlined/bookmarks.xml
deleted file mode 100644
index d769f66..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bookmarks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7v12.97l-4.21,-1.81 -0.79,-0.34 -0.79,0.34L5,19.97L5,7h10m4,-6L8.99,1C7.89,1 7,1.9 7,3h10c1.1,0 2,0.9 2,2v13l2,1L21,3c0,-1.1 -0.9,-2 -2,-2zM15,5L5,5c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3L17,7c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_all.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_all.xml
deleted file mode 100644
index 55d7d5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18L21,3L3,3zM11,19L5,19v-6h6v6zM11,11L5,11L5,5h6v6zM19,19h-6v-6h6v6zM19,11h-6L13,5h6v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_bottom.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_bottom.xml
deleted file mode 100644
index 4664baa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11L7,11v2h2v-2zM13,15h-2v2h2v-2zM9,3L7,3v2h2L9,3zM13,11h-2v2h2v-2zM5,3L3,3v2h2L5,3zM13,7h-2v2h2L13,7zM17,11h-2v2h2v-2zM13,3h-2v2h2L13,3zM17,3h-2v2h2L17,3zM19,13h2v-2h-2v2zM19,17h2v-2h-2v2zM5,7L3,7v2h2L5,7zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM5,11L3,11v2h2v-2zM3,21h18v-2L3,19v2zM5,15L3,15v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_clear.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_clear.xml
deleted file mode 100644
index 0c48776..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM7,21h2v-2L7,19v2zM11,17h2v-2h-2v2zM11,21h2v-2h-2v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM11,13h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM11,9h2L13,7h-2v2zM19,3v2h2L21,3h-2zM11,5h2L13,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_color.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_color.xml
deleted file mode 100644
index ca82025..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_color.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.81,8.94l-3.75,-3.75L4,14.25V18h3.75L16.81,8.94zM6,16v-0.92l7.06,-7.06l0.92,0.92L6.92,16H6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.71,6.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34C17.17,2.09 16.92,2 16.66,2c-0.25,0 -0.51,0.1 -0.7,0.29l-1.83,1.83l3.75,3.75L19.71,6.04z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v4h-20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_horizontal.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_horizontal.xml
deleted file mode 100644
index b9a7572..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM7,21h2v-2L7,19v2zM5,3L3,3v2h2L5,3zM9,3L7,3v2h2L9,3zM17,3h-2v2h2L17,3zM13,7h-2v2h2L13,7zM13,3h-2v2h2L13,3zM19,17h2v-2h-2v2zM11,21h2v-2h-2v2zM3,13h18v-2L3,11v2zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM11,17h2v-2h-2v2zM15,21h2v-2h-2v2zM19,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_inner.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_inner.xml
deleted file mode 100644
index 3d6be42..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_inner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM7,21h2v-2L7,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM5,3L3,3v2h2L5,3zM17,3h-2v2h2L17,3zM19,9h2L21,7h-2v2zM19,3v2h2L21,3h-2zM15,21h2v-2h-2v2zM13,3h-2v8L3,11v2h8v8h2v-8h8v-2h-8L13,3zM19,21h2v-2h-2v2zM19,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_left.xml
deleted file mode 100644
index 5986173..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2v-2h-2v2zM11,17h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2zM11,13h2v-2h-2v2zM7,21h2v-2L7,19v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM3,21h2L5,3L3,3v18zM19,9h2L21,7h-2v2zM15,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_outer.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_outer.xml
deleted file mode 100644
index 02e7c70..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_outer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v2h2L13,7zM13,11h-2v2h2v-2zM17,11h-2v2h2v-2zM3,3v18h18L21,3L3,3zM19,19L5,19L5,5h14v14zM13,15h-2v2h2v-2zM9,11L7,11v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_right.xml
deleted file mode 100644
index 4bb0955..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM3,5h2L5,3L3,3v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM3,21h2v-2L3,19v2zM11,21h2v-2h-2v2zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM15,13h2v-2h-2v2zM19,3v18h2L21,3h-2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM11,13h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_style.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_style.xml
deleted file mode 100644
index c80ce5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM11,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM3,3v18h2L5,5h16L21,3L3,3zM19,9h2L21,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_top.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_top.xml
deleted file mode 100644
index 34c32f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM11,13h2v-2h-2v2zM11,21h2v-2h-2v2zM3,17h2v-2L3,15v2zM3,21h2v-2L3,19v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,13h2v-2h-2v2zM3,3v2h18L21,3L3,3zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM11,9h2L13,7h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/border_vertical.xml b/compose/material/material/icons/generator/raw-icons/outlined/border_vertical.xml
deleted file mode 100644
index 0a896af..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/border_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM3,13h2v-2L3,11v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM7,5h2L9,3L7,3v2zM19,17h2v-2h-2v2zM11,21h2L13,3h-2v18zM19,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM15,5h2L17,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/boy.xml b/compose/material/material/icons/generator/raw-icons/outlined/boy.xml
deleted file mode 100644
index 0e61c95..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/boy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,20v-5h1v-4.5c0,-1.1 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.9 -2,2V15h1v5H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/branding_watermark.xml b/compose/material/material/icons/generator/raw-icons/outlined/branding_watermark.xml
deleted file mode 100644
index f2e2c94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/branding_watermark.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM11,12h9v6h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/breakfast_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/breakfast_dining.xml
deleted file mode 100644
index 9e5ff63..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/breakfast_dining.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3H6C3.79,3 2,4.79 2,7c0,1.48 0.81,2.75 2,3.45V19c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-8.55c1.19,-0.69 2,-1.97 2,-3.45C22,4.79 20.21,3 18,3zM19,8.72L18,9.3V19H6V9.31L5.01,8.73C4.38,8.35 4,7.71 4,7c0,-1.1 0.9,-2 2,-2h12c1.1,0 2,0.9 2,2C20,7.71 19.62,8.36 19,8.72z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.71,9.29C12.51,9.1 12.26,9 12,9s-0.51,0.1 -0.71,0.29l-3,3c-0.39,0.39 -0.39,1.02 0,1.41l3,3C11.49,16.9 11.74,17 12,17s0.51,-0.1 0.71,-0.29l3,-3c0.39,-0.39 0.39,-1.02 0,-1.41L12.71,9.29zM12,14.58L10.41,13L12,11.41L13.59,13L12,14.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_1.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_1.xml
deleted file mode 100644
index 81a4a21..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8 -8,-3.59 -8,-8 3.59,-8 8,-8m0,-2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_2.xml
deleted file mode 100644
index 944cfc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8c-0.34,0 -0.68,-0.02 -1.01,-0.07C10.9,17.77 12,14.95 12,12s-1.1,-5.77 -3.01,-7.93C9.32,4.02 9.66,4 10,4m0,-2c-1.82,0 -3.53,0.5 -5,1.35C7.99,5.08 10,8.3 10,12s-2.01,6.92 -5,8.65C6.47,21.5 8.18,22 10,22c5.52,0 10,-4.48 10,-10S15.52,2 10,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_3.xml
deleted file mode 100644
index 61cb53c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.7,4.91C15.25,6.24 17,8.92 17,12s-1.75,5.76 -4.3,7.09c1.46,-2 2.3,-4.46 2.3,-7.09s-0.84,-5.09 -2.3,-7.09M9,2c-1.05,0 -2.05,0.16 -3,0.46 4.06,1.27 7,5.06 7,9.54s-2.94,8.27 -7,9.54c0.95,0.3 1.95,0.46 3,0.46 5.52,0 10,-4.48 10,-10S14.52,2 9,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_4.xml
deleted file mode 100644
index 692f9a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12.29,7c-0.74,0 -1.45,0.17 -2.08,0.46 1.72,0.79 2.92,2.53 2.92,4.54s-1.2,3.75 -2.92,4.54c0.63,0.29 1.34,0.46 2.08,0.46 2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_5.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_5.xml
deleted file mode 100644
index 64ae421..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6.5c-3.03,0 -5.5,2.47 -5.5,5.5s2.47,5.5 5.5,5.5 5.5,-2.47 5.5,-5.5 -2.47,-5.5 -5.5,-5.5zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_6.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_6.xml
deleted file mode 100644
index 3f3ceac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6.5v11c3.03,0 5.5,-2.47 5.5,-5.5S15.03,6.5 12,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_7.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_7.xml
deleted file mode 100644
index 8cc6dd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_7.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6.5c-3.03,0 -5.5,2.47 -5.5,5.5s2.47,5.5 5.5,5.5 5.5,-2.47 5.5,-5.5 -2.47,-5.5 -5.5,-5.5zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_auto.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_auto.xml
deleted file mode 100644
index 885800e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L13,7h-2zM10.85,12.65L12,9l1.15,3.65h-2.3zM20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_high.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_high.xml
deleted file mode 100644
index 60b527f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_high.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_low.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_low.xml
deleted file mode 100644
index f40640e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brightness_medium.xml b/compose/material/material/icons/generator/raw-icons/outlined/brightness_medium.xml
deleted file mode 100644
index 9376e2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brightness_medium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6v12c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/broadcast_on_home.xml b/compose/material/material/icons/generator/raw-icons/outlined/broadcast_on_home.xml
deleted file mode 100644
index 83c5ebb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/broadcast_on_home.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2H4v2h16v2.59c0.73,0.29 1.4,0.69 2,1.17V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9H3c-0.5,0 -1,0.5 -1,1v9c0,0.5 0.5,1 1,1h5c0.5,0 1,-0.5 1,-1v-9C9,9.5 8.5,9 8,9zM7,18H4v-7h3V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,16.97c0.3,-0.23 0.5,-0.57 0.5,-0.97c0,-0.69 -0.56,-1.25 -1.25,-1.25s-1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5V16.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13.5c1.38,0 2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16c0,-2.21 -1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77C14.5,14.62 15.62,13.5 17,13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/broadcast_on_personal.xml b/compose/material/material/icons/generator/raw-icons/outlined/broadcast_on_personal.xml
deleted file mode 100644
index 5a24b52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/broadcast_on_personal.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19v-9l6,-4.5l4.08,3.06c0.81,-0.32 1.69,-0.51 2.61,-0.54L10,3L2,9v12h8.76c-0.48,-0.6 -0.88,-1.27 -1.17,-2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14.75c-0.69,0 -1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5v-5.03c0.3,-0.23 0.5,-0.57 0.5,-0.97C18.25,15.31 17.69,14.75 17,14.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16C21,13.79 19.21,12 17,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/broken_image.xml b/compose/material/material/icons/generator/raw-icons/outlined/broken_image.xml
deleted file mode 100644
index 60b56c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/broken_image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-4.58l0.99,0.99 4,-4 4,4 4,-3.99L19,12.43L19,19zM19,9.59l-1.01,-1.01 -4,4.01 -4,-4 -4,4 -0.99,-1L5,5h14v4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/browse_gallery.xml b/compose/material/material/icons/generator/raw-icons/outlined/browse_gallery.xml
deleted file mode 100644
index c66d526..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/browse_gallery.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9S13.97,3 9,3zM9,19c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7s7,3.14 7,7S12.86,19 9,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7l-2,0l0,5.41l3.79,3.8l1.42,-1.42l-3.21,-3.2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,3.52v2.16C20.36,6.8 22,9.21 22,12c0,2.79 -1.64,5.2 -4.01,6.32v2.16C21.48,19.24 24,15.91 24,12C24,8.09 21.48,4.76 17.99,3.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/browser_not_supported.xml b/compose/material/material/icons/generator/raw-icons/outlined/browser_not_supported.xml
deleted file mode 100644
index 1ff1fbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/browser_not_supported.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6v10.5l1.95,1.95C20.98,18.3 21,18.15 21,18V6c0,-1.1 -0.9,-2 -2,-2H6.5l2,2H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1 0.9,2 2,2h12.36l2.06,2.06l1.27,-1.27L3.22,3.32zM15,18H5V7.64L15.36,18H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/browser_updated.xml b/compose/material/material/icons/generator/raw-icons/outlined/browser_updated.xml
deleted file mode 100644
index ff06c5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/browser_updated.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13v3c0,1.1 -0.9,2 -2,2h-3l1,1v2H6v-2l1,-1H4c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2l8,0v2L4,5v11h16v-3H22zM15,15l-5,-5l1.41,-1.41L14,11.17V3h2v8.17l2.59,-2.58L20,10L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brunch_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/brunch_dining.xml
deleted file mode 100644
index 9d34021..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brunch_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,21.5C2,21.78 2.22,22 2.49,22h13.02c0.27,0 0.49,-0.22 0.49,-0.5V20H2V21.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,16H11v-2H7v2H2.5C2.22,16 2,16.22 2,16.5V18h14v-1.5C16,16.22 15.78,16 15.5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.47,15.45c0.99,-1.07 1.53,-2.48 1.53,-3.94V2h-6v9.47c0,1.48 0.58,2.92 1.6,4l0.4,0.42V22h4v-2h-2v-4.03L20.47,15.45zM18,4h2v4h-2V4zM19.03,14.07c-0.65,-0.71 -1.03,-1.65 -1.03,-2.6V10h2v1.51C20,12.46 19.66,13.36 19.03,14.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/brush.xml b/compose/material/material/icons/generator/raw-icons/outlined/brush.xml
deleted file mode 100644
index 0295232..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/brush.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16c0.55,0 1,0.45 1,1 0,1.1 -0.9,2 -2,2 -0.17,0 -0.33,-0.02 -0.5,-0.05 0.31,-0.55 0.5,-1.21 0.5,-1.95 0,-0.55 0.45,-1 1,-1M18.67,3c-0.26,0 -0.51,0.1 -0.71,0.29L9,12.25 11.75,15l8.96,-8.96c0.39,-0.39 0.39,-1.02 0,-1.41l-1.34,-1.34c-0.2,-0.2 -0.45,-0.29 -0.7,-0.29zM7,14c-1.66,0 -3,1.34 -3,3 0,1.31 -1.16,2 -2,2 0.92,1.22 2.49,2 4,2 2.21,0 4,-1.79 4,-4 0,-1.66 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bubble_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/bubble_chart.xml
deleted file mode 100644
index ff03f34..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bubble_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM7,16c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM15.01,15c-1.65,0 -3,1.35 -3,3s1.35,3 3,3 3,-1.35 3,-3 -1.35,-3 -3,-3zM15.01,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM16.5,3C13.47,3 11,5.47 11,8.5s2.47,5.5 5.5,5.5S22,11.53 22,8.5 19.53,3 16.5,3zM16.5,12c-1.93,0 -3.5,-1.57 -3.5,-3.5S14.57,5 16.5,5 20,6.57 20,8.5 18.43,12 16.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bug_report.xml b/compose/material/material/icons/generator/raw-icons/outlined/bug_report.xml
deleted file mode 100644
index d7fc3e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bug_report.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-2.81c-0.45,-0.78 -1.07,-1.45 -1.82,-1.96L17,4.41 15.59,3l-2.17,2.17C12.96,5.06 12.49,5 12,5s-0.96,0.06 -1.41,0.17L8.41,3 7,4.41l1.62,1.63C7.88,6.55 7.26,7.22 6.81,8L4,8v2h2.09c-0.05,0.33 -0.09,0.66 -0.09,1v1L4,12v2h2v1c0,0.34 0.04,0.67 0.09,1L4,16v2h2.81c1.04,1.79 2.97,3 5.19,3s4.15,-1.21 5.19,-3L20,18v-2h-2.09c0.05,-0.33 0.09,-0.66 0.09,-1v-1h2v-2h-2v-1c0,-0.34 -0.04,-0.67 -0.09,-1L20,10L20,8zM16,12v3c0,0.22 -0.03,0.47 -0.07,0.7l-0.1,0.65 -0.37,0.65c-0.72,1.24 -2.04,2 -3.46,2s-2.74,-0.77 -3.46,-2l-0.37,-0.64 -0.1,-0.65C8.03,15.48 8,15.23 8,15v-4c0,-0.23 0.03,-0.48 0.07,-0.7l0.1,-0.65 0.37,-0.65c0.3,-0.52 0.72,-0.97 1.21,-1.31l0.57,-0.39 0.74,-0.18c0.31,-0.08 0.63,-0.12 0.94,-0.12 0.32,0 0.63,0.04 0.95,0.12l0.68,0.16 0.61,0.42c0.5,0.34 0.91,0.78 1.21,1.31l0.38,0.65 0.1,0.65c0.04,0.22 0.07,0.47 0.07,0.69v1zM10,14h4v2h-4zM10,10h4v2h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/build.xml b/compose/material/material/icons/generator/raw-icons/outlined/build.xml
deleted file mode 100644
index d8dcc75..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/build.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.61,18.99l-9.08,-9.08c0.93,-2.34 0.45,-5.1 -1.44,-7C9.79,0.61 6.21,0.4 3.66,2.26L7.5,6.11 6.08,7.52 2.25,3.69C0.39,6.23 0.6,9.82 2.9,12.11c1.86,1.86 4.57,2.35 6.89,1.48l9.11,9.11c0.39,0.39 1.02,0.39 1.41,0l2.3,-2.3c0.4,-0.38 0.4,-1.01 0,-1.41zM19.61,20.59l-9.46,-9.46c-0.61,0.45 -1.29,0.72 -2,0.82 -1.36,0.2 -2.79,-0.21 -3.83,-1.25C3.37,9.76 2.93,8.5 3,7.26l3.09,3.09 4.24,-4.24 -3.09,-3.09c1.24,-0.07 2.49,0.37 3.44,1.31 1.08,1.08 1.49,2.57 1.24,3.96 -0.12,0.71 -0.42,1.37 -0.88,1.96l9.45,9.45 -0.88,0.89z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/build_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/build_circle.xml
deleted file mode 100644
index a3b5901..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/build_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,11.38c0.43,-1.22 0.17,-2.64 -0.81,-3.62c-1.11,-1.11 -2.79,-1.3 -4.1,-0.59l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32 -0.52,2.99 0.59,4.1c0.98,0.98 2.4,1.24 3.62,0.81l3.41,3.41c0.2,0.2 0.51,0.2 0.71,0l1.4,-1.4c0.2,-0.2 0.2,-0.51 0,-0.71L13.49,11.38z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bungalow.xml b/compose/material/material/icons/generator/raw-icons/outlined/bungalow.xml
deleted file mode 100644
index 71c23d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bungalow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,14h-2v-2h2V14zM18.1,16.56L17,14.79V21H7v-6.2l-1.1,1.76L4.2,15.5L12,3l7.8,12.5L18.1,16.56zM15,11.59l-3,-4.8l-3,4.8V19h2v-3h2v3h2V11.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/burst_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/burst_mode.xml
deleted file mode 100644
index 648a26c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/burst_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h2v14L1,19zM5,5h2v14L5,19zM22,5L10,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L23,6c0,-0.55 -0.45,-1 -1,-1zM21,17L11,17L11,7h10v10zM17.43,12.62l-2,2.57L14,13.47l-2,2.52h8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/bus_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/bus_alert.xml
deleted file mode 100644
index e9d1c13..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/bus_alert.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29C11.1,7.37 11,6.7 11,6H4.43c0.83,-0.71 2.98,-1.09 6.65,-0.98c0.1,-0.7 0.3,-1.37 0.59,-1.99C2.97,2.67 2,5.02 2,7v9.5c0,0.95 0.38,1.81 1,2.44V21c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-2.06c0.62,-0.63 1,-1.49 1,-2.44V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM16,16c0,1.1 -0.9,2 -2,2H6c-1.1,0 -2,-0.9 -2,-2v-3h12V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/business.xml b/compose/material/material/icons/generator/raw-icons/outlined/business.xml
deleted file mode 100644
index 23ee37d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/business.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,3L2,3v18h20L22,7L12,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/business_center.xml b/compose/material/material/icons/generator/raw-icons/outlined/business_center.xml
deleted file mode 100644
index aa41c0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/business_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-4L16,5l-2,-2h-4L8,5v2L4,7c-1.1,0 -2,0.9 -2,2v5c0,0.75 0.4,1.38 1,1.73L3,19c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2v-3.28c0.59,-0.35 1,-0.99 1,-1.72L22,9c0,-1.1 -0.9,-2 -2,-2zM10,5h4v2h-4L10,5zM4,9h16v5h-5v-3L9,11v3L4,14L4,9zM13,15h-2v-2h2v2zM19,19L5,19v-3h4v1h6v-1h4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cabin.xml b/compose/material/material/icons/generator/raw-icons/outlined/cabin.xml
deleted file mode 100644
index 3aeca47..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cabin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10zM12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM13.94,7h-3.89L12,5.52L13.94,7zM7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9zM18,13v2H6v-2H18zM6,19v-2h12v2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cable.xml b/compose/material/material/icons/generator/raw-icons/outlined/cable.xml
deleted file mode 100644
index 04071ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1h-1v4c0,0.55 0.45,1 1,1h1v7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V7c0,-2.21 -1.79,-4 -4,-4S5,4.79 5,7v7H4c-0.55,0 -1,0.45 -1,1v4h1v1c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-1h1v-4c0,-0.55 -0.45,-1 -1,-1H7V7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v10c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-7h1c0.55,0 1,-0.45 1,-1V5H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cached.xml b/compose/material/material/icons/generator/raw-icons/outlined/cached.xml
deleted file mode 100644
index e4d5311..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cached.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8l-4,4h3c0,3.31 -2.69,6 -6,6 -1.01,0 -1.97,-0.25 -2.8,-0.7l-1.46,1.46C8.97,19.54 10.43,20 12,20c4.42,0 8,-3.58 8,-8h3l-4,-4zM6,12c0,-3.31 2.69,-6 6,-6 1.01,0 1.97,0.25 2.8,0.7l1.46,-1.46C15.03,4.46 13.57,4 12,4c-4.42,0 -8,3.58 -8,8H1l4,4 4,-4H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cake.xml b/compose/material/material/icons/generator/raw-icons/outlined/cake.xml
deleted file mode 100644
index 9d863d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c1.11,0 2,-0.9 2,-2 0,-0.38 -0.1,-0.73 -0.29,-1.03L12,0l-1.71,2.97c-0.19,0.3 -0.29,0.65 -0.29,1.03 0,1.1 0.9,2 2,2zM18,9h-5L13,7h-2v2L6,9c-1.66,0 -3,1.34 -3,3v9c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-9c0,-1.66 -1.34,-3 -3,-3zM19,20L5,20v-3c0.9,-0.01 1.76,-0.37 2.4,-1.01l1.09,-1.07 1.07,1.07c1.31,1.31 3.59,1.3 4.89,0l1.08,-1.07 1.07,1.07c0.64,0.64 1.5,1 2.4,1.01v3zM19,15.5c-0.51,-0.01 -0.99,-0.2 -1.35,-0.57l-2.13,-2.13 -2.14,2.13c-0.74,0.74 -2.03,0.74 -2.77,0L8.48,12.8l-2.14,2.13c-0.35,0.36 -0.83,0.56 -1.34,0.57L5,12c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/calculate.xml b/compose/material/material/icons/generator/raw-icons/outlined/calculate.xml
deleted file mode 100644
index 4b454ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/calculate.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.25,7.72h5v1.5h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15.75h5v1.5h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.25h5v1.5h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,18l1.5,0l0,-2l2,0l0,-1.5l-2,0l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.09,10.95l1.41,-1.41l1.41,1.41l1.06,-1.06l-1.41,-1.42l1.41,-1.41l-1.06,-1.06l-1.41,1.41l-1.41,-1.41l-1.06,1.06l1.41,1.41l-1.41,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/calendar_month.xml b/compose/material/material/icons/generator/raw-icons/outlined/calendar_month.xml
deleted file mode 100644
index 8f63e6c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/calendar_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,20H5V10h14V20zM19,8H5V6h14V8zM9,14H7v-2h2V14zM13,14h-2v-2h2V14zM17,14h-2v-2h2V14zM9,18H7v-2h2V18zM13,18h-2v-2h2V18zM17,18h-2v-2h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/calendar_today.xml b/compose/material/material/icons/generator/raw-icons/outlined/calendar_today.xml
deleted file mode 100644
index 712c4df..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/calendar_today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-1L19,1h-2v2L7,3L7,1L5,1v2L4,3c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,21L4,21L4,10h16v11zM20,8L4,8L4,5h16v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_day.xml b/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_day.xml
deleted file mode 100644
index 3e1d47e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v2L3,19zM19,12v1L5,13v-1h14m2,-2L3,10v5h18v-5zM3,6h18v2L3,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_month.xml b/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_month.xml
deleted file mode 100644
index 2cbab23..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM8,11H4V6h4V11zM14,11h-4V6h4V11zM20,11h-4V6h4V11zM8,18H4v-5h4V18zM14,18h-4v-5h4V18zM20,18h-4v-5h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_week.xml b/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_week.xml
deleted file mode 100644
index a22cb40..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/calendar_view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM13,6h2.5v12H13V6zM11,18H8.5V6H11V18zM4,6h2.5v12H4V6zM20,18h-2.5V6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call.xml b/compose/material/material/icons/generator/raw-icons/outlined/call.xml
deleted file mode 100644
index e673cc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5c0.06,0.89 0.21,1.76 0.45,2.59l-1.2,1.2c-0.41,-1.2 -0.67,-2.47 -0.76,-3.79h1.51m9.86,12.02c0.85,0.24 1.72,0.39 2.6,0.45v1.49c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.19M7.5,3H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1 -1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_end.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_end.xml
deleted file mode 100644
index 002718d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.59,10.52c1.05,0.51 2.04,1.15 2.96,1.91l-1.07,1.07c-0.58,-0.47 -1.21,-0.89 -1.88,-1.27v-1.71m-13.2,0v1.7c-0.65,0.37 -1.28,0.79 -1.87,1.27l-1.07,-1.07c0.91,-0.75 1.9,-1.38 2.94,-1.9M12,7C7.46,7 3.34,8.78 0.29,11.67c-0.18,0.18 -0.29,0.43 -0.29,0.71s0.11,0.53 0.29,0.7l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.1 0.7,-0.28 0.79,-0.73 1.68,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.51 0.56,-0.9v-3.1C8.85,9.25 10.4,9 12,9s3.15,0.25 4.59,0.73v3.1c0,0.4 0.23,0.74 0.56,0.9 0.98,0.49 1.88,1.11 2.67,1.85 0.18,0.17 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71s-0.11,-0.53 -0.29,-0.71C20.66,8.78 16.54,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_made.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_made.xml
deleted file mode 100644
index fe8f4a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_made.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v2h6.59L4,18.59 5.41,20 17,8.41V15h2V5H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_merge.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_merge.xml
deleted file mode 100644
index 360a589..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_merge.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20.41L18.41,19 15,15.59 13.59,17 17,20.41zM7.5,8H11v5.59L5.59,19 7,20.41l6,-6V8h3.5L12,3.5 7.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_missed.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_missed.xml
deleted file mode 100644
index 0c96d67..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,7L12,14.59 6.41,9H11V7H3v8h2v-4.59l7,7 9,-9L19.59,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_missed_outgoing.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_missed_outgoing.xml
deleted file mode 100644
index 888a776..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_missed_outgoing.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8.41l9,9 7,-7V15h2V7h-8v2h4.59L12,14.59 4.41,7 3,8.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_received.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_received.xml
deleted file mode 100644
index a35068b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_received.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5.41L18.59,4 7,15.59V9H5v10h10v-2H8.41L20,5.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_split.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_split.xml
deleted file mode 100644
index 221c5af..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_split.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4l2.29,2.29 -2.88,2.88 1.42,1.42 2.88,-2.88L20,10L20,4h-6zM10,4L4,4v6l2.29,-2.29 4.71,4.7L11,20h2v-8.41l-5.29,-5.3L10,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/call_to_action.xml b/compose/material/material/icons/generator/raw-icons/outlined/call_to_action.xml
deleted file mode 100644
index d1af977..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/call_to_action.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM5,15h14v3L5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera.xml
deleted file mode 100644
index 958b5a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,2.26l-0.08,-0.04 -0.01,0.02C13.46,2.09 12.74,2 12,2 6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10c0,-4.75 -3.31,-8.72 -7.75,-9.74zM19.41,9h-7.99l2.71,-4.7c2.4,0.66 4.35,2.42 5.28,4.7zM13.1,4.08L10.27,9l-1.15,2L6.4,6.3C7.84,4.88 9.82,4 12,4c0.37,0 0.74,0.03 1.1,0.08zM5.7,7.09L8.54,12l1.15,2L4.26,14C4.1,13.36 4,12.69 4,12c0,-1.85 0.64,-3.55 1.7,-4.91zM4.59,15h7.98l-2.71,4.7c-2.4,-0.67 -4.34,-2.42 -5.27,-4.7zM10.9,19.91L14.89,13l2.72,4.7C16.16,19.12 14.18,20 12,20c-0.38,0 -0.74,-0.04 -1.1,-0.09zM18.3,16.91l-4,-6.91h5.43c0.17,0.64 0.27,1.31 0.27,2 0,1.85 -0.64,3.55 -1.7,4.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera_alt.xml
deleted file mode 100644
index 34d906e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h4.05l1.83,-2h4.24l1.83,2L20,6v12zM12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera_enhance.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera_enhance.xml
deleted file mode 100644
index 500704f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera_enhance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10l-0.94,2.06L9,13l2.06,0.94L12,16l0.94,-2.06L15,13l-2.06,-0.94zM20,5h-3.17L15,3L9,3L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,19L4,19L4,7h4.05l0.59,-0.65L9.88,5h4.24l1.24,1.35 0.59,0.65L20,7v12zM12,8c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,16c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera_front.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera_front.xml
deleted file mode 100644
index 90cc0fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20v2h5v2l3,-3 -3,-3v2zM14,20h5v2h-5zM11.99,8C13.1,8 14,7.1 14,6s-0.9,-2 -2.01,-2S10,4.9 10,6s0.89,2 1.99,2zM17,0L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2c0,-1.1 -0.9,-2 -2,-2zM17,16L7,16v-2h10v2zM17,12.5c0,-1.67 -3.33,-2.5 -5,-2.5s-5,0.83 -5,2.5L7,2h10v10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera_indoor.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera_indoor.xml
deleted file mode 100644
index 4e76104..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera_indoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,13v-1c0,-0.55 -0.45,-1 -1,-1H9c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1l2,1.06v-4.12L14,13zM12,5.5l6,4.5v9H6v-9L12,5.5M12,3L4,9v12h16V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera_outdoor.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera_outdoor.xml
deleted file mode 100644
index f8e2f36..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera_outdoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1l2,1.06v-4.12L18,14V13zM12,3L4,9v12h16v-2H6v-9l6,-4.5l6,4.5v1h2V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera_rear.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera_rear.xml
deleted file mode 100644
index 51a6cac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera_rear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20v2h5v2l3,-3 -3,-3v2zM14,20h5v2h-5zM17,0L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2c0,-1.1 -0.9,-2 -2,-2zM17,16L7,16L7,2h10v14zM12,7c1.1,0 2,-0.9 1.99,-2 0,-1.1 -0.9,-2 -2,-2S10,3.9 10,5s0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/camera_roll.xml b/compose/material/material/icons/generator/raw-icons/outlined/camera_roll.xml
deleted file mode 100644
index 30960d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/camera_roll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5c0,-1.1 -0.9,-2 -2,-2h-1L11,2c0,-0.55 -0.45,-1 -1,-1L6,1c-0.55,0 -1,0.45 -1,1v1L4,3c-1.1,0 -2,0.9 -2,2v15c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2h8L22,5h-8zM20,18h-8v2L4,20L4,5h3L7,3h2v2h3v2h8v11zM9,15h2v2L9,17zM9,8h2v2L9,10zM13,15h2v2h-2zM13,8h2v2h-2zM17,15h2v2h-2zM17,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cameraswitch.xml b/compose/material/material/icons/generator/raw-icons/outlined/cameraswitch.xml
deleted file mode 100644
index cf0d270..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cameraswitch.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h-1l-1,-1h-4L9,7H8C6.9,7 6,7.9 6,9v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V9C18,7.9 17.1,7 16,7zM16,15H8V9h1.83l1,-1h2.34l1,1H16V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.57,0.52L13.05,5l1.41,-1.41l-1.54,-1.54C17.7,2.46 21.53,6.24 22,11h2C23.36,3.3 15.79,-1.67 8.57,0.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.54,20.41l1.54,1.54C6.3,21.54 2.47,17.76 2,13H0c0.64,7.7 8.21,12.67 15.43,10.48L10.95,19L9.54,20.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/campaign.xml b/compose/material/material/icons/generator/raw-icons/outlined/campaign.xml
deleted file mode 100644
index 436f658..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/campaign.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0,0.67 0,1.33 0,2c1.2,0 2.76,0 4,0c0,-0.67 0,-1.33 0,-2C20.76,11 19.2,11 18,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.61c0.96,0.71 2.21,1.65 3.2,2.39c0.4,-0.53 0.8,-1.07 1.2,-1.6c-0.99,-0.74 -2.24,-1.68 -3.2,-2.4C16.8,16.54 16.4,17.08 16,17.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,5.6C20,5.07 19.6,4.53 19.2,4c-0.99,0.74 -2.24,1.68 -3.2,2.4c0.4,0.53 0.8,1.07 1.2,1.6C18.16,7.28 19.41,6.35 20.4,5.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v4h2v-4h1l5,3V6L8,9H4zM9.03,10.71L11,9.53v4.94l-1.97,-1.18L8.55,13H8H4v-2h4h0.55L9.03,10.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,12c0,-1.33 -0.58,-2.53 -1.5,-3.35v6.69C14.92,14.53 15.5,13.33 15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cancel.xml b/compose/material/material/icons/generator/raw-icons/outlined/cancel.xml
deleted file mode 100644
index 0cfdf75..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cancel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15.59,7L12,10.59 8.41,7 7,8.41 10.59,12 7,15.59 8.41,17 12,13.41 15.59,17 17,15.59 13.41,12 17,8.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cancel_presentation.xml b/compose/material/material/icons/generator/raw-icons/outlined/cancel_presentation.xml
deleted file mode 100644
index 3dac00a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cancel_presentation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM9.41,15.95L12,13.36l2.59,2.59L16,14.54l-2.59,-2.59L16,9.36l-1.41,-1.41L12,10.54 9.41,7.95 8,9.36l2.59,2.59L8,14.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cancel_schedule_send.xml b/compose/material/material/icons/generator/raw-icons/outlined/cancel_schedule_send.xml
deleted file mode 100644
index 4a34a66..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cancel_schedule_send.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9c-0.42,0 -0.83,0.04 -1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44 -0.78,0.93 -1.09,1.46L1,14l0.01,7l8.07,-3.46C9.59,21.19 12.71,24 16.5,24c4.14,0 7.5,-3.36 7.5,-7.5S20.64,9 16.5,9zM3,8.25l0.01,-2.22l7.51,3.22L3,8.25zM9.1,15.36L3,17.97v-2.22l6.17,-0.82C9.14,15.07 9.12,15.21 9.1,15.36zM16.5,22c-3.03,0 -5.5,-2.47 -5.5,-5.5s2.47,-5.5 5.5,-5.5s5.5,2.47 5.5,5.5S19.53,22 16.5,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.27,14.03l-1.77,1.76l-1.77,-1.76l-0.7,0.7l1.76,1.77l-1.76,1.77l0.7,0.7l1.77,-1.76l1.77,1.76l0.7,-0.7l-1.76,-1.77l1.76,-1.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/candlestick_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/candlestick_chart.xml
deleted file mode 100644
index fcbbef3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/candlestick_chart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4H7v2H5v12h2v2h2v-2h2V6H9V4zM9,16H7V8h2V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-2V4h-2v4h-2v7h2v5h2v-5h2V8zM17,13h-2v-3h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/car_crash.xml b/compose/material/material/icons/generator/raw-icons/outlined/car_crash.xml
deleted file mode 100644
index b6ef5ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/car_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,7h-1V3h1V7zM18.5,8v1h-1V8H18.5zM6,13.5C6,12.67 6.67,12 7.5,12S9,12.67 9,13.5S8.33,15 7.5,15S6,14.33 6,13.5zM19,12.93c0.65,-0.09 1.34,-0.28 2,-0.6h0V19c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,-0.45 -1,-1v-1H6v1c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-8l2.08,-5.99C5.29,4.42 5.84,4 6.5,4l4.79,0C11.1,4.63 11,5.31 11,6H6.85L5.81,9h5.86v0c0.36,0.75 0.84,1.43 1.43,2L5,11v5h14L19,12.93zM17.91,13c-0.89,-0.01 -1.74,-0.19 -2.53,-0.51C15.15,12.76 15,13.11 15,13.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5C18,13.32 17.97,13.16 17.91,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/car_rental.xml b/compose/material/material/icons/generator/raw-icons/outlined/car_rental.xml
deleted file mode 100644
index ab36fc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/car_rental.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.25,9.6c-0.02,-0.02 -0.03,-0.04 -0.05,-0.07C16.82,9.01 16.28,9 16.28,9H7.72c0,0 -0.54,0.01 -0.92,0.54C6.78,9.56 6.77,9.58 6.75,9.6C6.68,9.71 6.61,9.84 6.56,10C6.34,10.66 5.82,12.22 5,14.69v6.5C5,21.64 5.35,22 5.78,22h0.44C6.65,22 7,21.64 7,21.19V20h10v1.19c0,0.45 0.34,0.81 0.78,0.81h0.44c0.43,0 0.78,-0.36 0.78,-0.81v-6.5c-0.82,-2.46 -1.34,-4.03 -1.56,-4.69C17.39,9.84 17.32,9.71 17.25,9.6zM8.33,11h7.34l0.23,0.69L16.33,13H7.67L8.33,11zM17,18H7v-2.99V15h10v0.01V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,3C10.41,1.83 9.3,1 8,1C6.34,1 5,2.34 5,4c0,1.65 1.34,3 3,3c1.3,0 2.41,-0.84 2.83,-2H16v2h2V5h1V3H10.83zM8,5C7.45,5 7,4.55 7,4s0.45,-1 1,-1s1,0.45 1,1S8.55,5 8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/car_repair.xml b/compose/material/material/icons/generator/raw-icons/outlined/car_repair.xml
deleted file mode 100644
index 9b31735..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/car_repair.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.78,16h0.44C6.65,16 7,15.64 7,15.19V14h10v1.19c0,0.45 0.34,0.81 0.78,0.81h0.44c0.43,0 0.78,-0.36 0.78,-0.81v-6.5c0,0 -1.34,-4.03 -1.56,-4.69c-0.05,-0.16 -0.12,-0.29 -0.19,-0.4c-0.02,-0.02 -0.03,-0.04 -0.05,-0.07C16.82,3.01 16.28,3 16.28,3H7.72c0,0 -0.54,0.01 -0.92,0.54C6.78,3.56 6.77,3.58 6.75,3.6C6.68,3.71 6.61,3.84 6.56,4C6.34,4.66 5,8.69 5,8.69v6.5C5,15.64 5.35,16 5.78,16zM8.33,5h7.34l0.23,0.69L16.33,7H7.67L8.33,5zM7,9.01V9h10v0.01V12H7V9.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.01l0,1.99l7,0l0,3l2,0l0,-3l7,0l0,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/card_giftcard.xml b/compose/material/material/icons/generator/raw-icons/outlined/card_giftcard.xml
deleted file mode 100644
index e769659..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/card_giftcard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 12,7.4l3.38,4.6L17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/card_membership.xml b/compose/material/material/icons/generator/raw-icons/outlined/card_membership.xml
deleted file mode 100644
index 030c8abc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/card_membership.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h4v5l4,-2 4,2v-5h4c1.11,0 2,-0.89 2,-2L22,4c0,-1.11 -0.89,-2 -2,-2zM20,15L4,15v-2h16v2zM20,10L4,10L4,4h16v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/card_travel.xml b/compose/material/material/icons/generator/raw-icons/outlined/card_travel.xml
deleted file mode 100644
index 179d890..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/card_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-3L17,4c0,-1.11 -0.89,-2 -2,-2L9,2c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM9,4h6v2L9,6L9,4zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h3v2h2L9,8h6v2h2L17,8h3v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/carpenter.xml b/compose/material/material/icons/generator/raw-icons/outlined/carpenter.xml
deleted file mode 100644
index 9534112..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/carpenter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78 -0.78,2.05 0,2.83l1.41,1.41c0.78,0.78 2.05,0.78 2.83,0l4.24,-4.24C20.51,16.28 20.51,15.01 19.73,14.23zM5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62zM14.07,19.88l-1.41,-1.41l4.24,-4.24l1.41,1.41L14.07,19.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cases.xml b/compose/material/material/icons/generator/raw-icons/outlined/cases.xml
deleted file mode 100644
index 1f973ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cases.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9H1v11c0,1.11 0.89,2 2,2h17v-2H3V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V3c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2H5v11c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5H18zM12,3h4v2h-4V3zM21,16H7V7h14V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/casino.xml b/compose/material/material/icons/generator/raw-icons/outlined/casino.xml
deleted file mode 100644
index 4209d77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/casino.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cast.xml b/compose/material/material/icons/generator/raw-icons/outlined/cast.xml
deleted file mode 100644
index dceb6e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cast_connected.xml b/compose/material/material/icons/generator/raw-icons/outlined/cast_connected.xml
deleted file mode 100644
index 91f52ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cast_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11zM21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM5,7v2h12v6h-3v2h5L19,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cast_for_education.xml b/compose/material/material/icons/generator/raw-icons/outlined/cast_for_education.xml
deleted file mode 100644
index ce33bbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cast_for_education.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11zM11,11.09v2L14.5,15l3.5,-1.91v-2L14.5,13 11,11.09zM14.5,6L9,9l5.5,3L20,9l-5.5,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/castle.xml b/compose/material/material/icons/generator/raw-icons/outlined/castle.xml
deleted file mode 100644
index 6ac488d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/castle.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h9V9H21zM21,19h-5v-1c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v1H3v-6h4V7h10v6h4V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h2v3h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/catching_pokemon.xml b/compose/material/material/icons/generator/raw-icons/outlined/catching_pokemon.xml
deleted file mode 100644
index d24ae6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/catching_pokemon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12c0,1.38 -1.12,2.5 -2.5,2.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5C13.38,9.5 14.5,10.62 14.5,12zM22,12c0,5.52 -4.48,10 -10,10C6.48,22 2,17.52 2,12S6.48,2 12,2C17.52,2 22,6.48 22,12zM20,12h-4c0,-2.21 -1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4H4c0,4.41 3.59,8 8,8C16.41,20 20,16.41 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/category.xml b/compose/material/material/icons/generator/raw-icons/outlined/category.xml
deleted file mode 100644
index 2f382f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/category.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2l-5.5,9h11L12,2zM12,5.84L13.93,9h-3.87L12,5.84zM17.5,13c-2.49,0 -4.5,2.01 -4.5,4.5s2.01,4.5 4.5,4.5 4.5,-2.01 4.5,-4.5 -2.01,-4.5 -4.5,-4.5zM17.5,20c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5zM3,21.5h8v-8L3,13.5v8zM5,15.5h4v4L5,19.5v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/celebration.xml b/compose/material/material/icons/generator/raw-icons/outlined/celebration.xml
deleted file mode 100644
index d27881cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/celebration.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22l14,-5L7,8L2,22zM12.35,16.18L5.3,18.7l2.52,-7.05L12.35,16.18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.53,12.53l5.59,-5.59c0.49,-0.49 1.28,-0.49 1.77,0l0.59,0.59l1.06,-1.06l-0.59,-0.59c-1.07,-1.07 -2.82,-1.07 -3.89,0l-5.59,5.59L14.53,12.53z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.06,6.88L9.47,7.47l1.06,1.06l0.59,-0.59c1.07,-1.07 1.07,-2.82 0,-3.89l-0.59,-0.59L9.47,4.53l0.59,0.59C10.54,5.6 10.54,6.4 10.06,6.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.88l-1.59,1.59l1.06,1.06l1.59,-1.59c0.49,-0.49 1.28,-0.49 1.77,0l1.61,1.61l1.06,-1.06l-1.61,-1.61C19.87,10.81 18.13,10.81 17.06,11.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.06,5.88l-3.59,3.59l1.06,1.06l3.59,-3.59c1.07,-1.07 1.07,-2.82 0,-3.89l-1.59,-1.59l-1.06,1.06l1.59,1.59C15.54,4.6 15.54,5.4 15.06,5.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cell_tower.xml b/compose/material/material/icons/generator/raw-icons/outlined/cell_tower.xml
deleted file mode 100644
index a36ceb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cell_tower.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.3,14.7l1.2,-1.2c-1,-1 -1.5,-2.3 -1.5,-3.5c0,-1.3 0.5,-2.6 1.5,-3.5L7.3,5.3c-1.3,1.3 -2,3 -2,4.7S6,13.4 7.3,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,2.9l-1.2,1.2c1.6,1.6 2.4,3.8 2.4,5.9c0,2.1 -0.8,4.3 -2.4,5.9l1.2,1.2c2,-2 2.9,-4.5 2.9,-7.1C22,7.4 21,4.9 19.1,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.1,4.1L4.9,2.9C3,4.9 2,7.4 2,10c0,2.6 1,5.1 2.9,7.1l1.2,-1.2c-1.6,-1.6 -2.4,-3.8 -2.4,-5.9C3.7,7.9 4.5,5.7 6.1,4.1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.7,14.7c1.3,-1.3 2,-3 2,-4.7c-0.1,-1.7 -0.7,-3.4 -2,-4.7l-1.2,1.2c1,1 1.5,2.3 1.5,3.5c0,1.3 -0.5,2.6 -1.5,3.5L16.7,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10c0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,8.62 9.5,10c0,0.76 0.34,1.42 0.87,1.88L7,22h2l0.67,-2h4.67L15,22h2l-3.37,-10.12C14.16,11.42 14.5,10.76 14.5,10zM10.33,18L12,13l1.67,5H10.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cell_wifi.xml b/compose/material/material/icons/generator/raw-icons/outlined/cell_wifi.xml
deleted file mode 100644
index 0968c62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cell_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22h16V5.97L6,22zM20,20h-2v-7.22l2,-2V20zM5.22,7.22L3.93,5.93c3.9,-3.91 10.24,-3.91 14.15,0l-1.29,1.29C13.6,4.03 8.41,4.03 5.22,7.22zM12.93,11.07L11,13l-1.93,-1.93C10.14,10.01 11.86,10.01 12.93,11.07zM14.22,9.79c-1.78,-1.77 -4.66,-1.77 -6.43,0L6.5,8.5c2.48,-2.48 6.52,-2.48 9,0L14.22,9.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/center_focus_strong.xml b/compose/material/material/icons/generator/raw-icons/outlined/center_focus_strong.xml
deleted file mode 100644
index 5bb76b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/center_focus_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5 2.24,5 5,5 5,-2.24 5,-5zM12,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3zM5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/center_focus_weak.xml b/compose/material/material/icons/generator/raw-icons/outlined/center_focus_weak.xml
deleted file mode 100644
index 24b0def..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/center_focus_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chair.xml b/compose/material/material/icons/generator/raw-icons/outlined/chair.xml
deleted file mode 100644
index 1bff163..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chair.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8V6c0,-1.65 -1.35,-3 -3,-3H7C5.35,3 4,4.35 4,6v2c-1.65,0 -3,1.35 -3,3v5c0,1.65 1.35,3 3,3v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1c1.65,0 3,-1.35 3,-3v-5C23,9.35 21.65,8 20,8zM6,6c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1v2.78c-0.61,0.55 -1,1.34 -1,2.22v2H7v-2c0,-0.88 -0.39,-1.67 -1,-2.22V6zM21,16c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h14v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chair_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/chair_alt.xml
deleted file mode 100644
index d192dd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chair_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v3c0,1.1 0.9,2 2,2h1v2H7c-1.1,0 -2,0.9 -2,2v7h2v-3h10v3h2v-7c0,-1.1 -0.9,-2 -2,-2h-1v-2H17zM7,8V5h10v3H7zM17,16H7v-2h10V16zM14,12h-4v-2h4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chalet.xml b/compose/material/material/icons/generator/raw-icons/outlined/chalet.xml
deleted file mode 100644
index 1ae68eae..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chalet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,15L10,7.5L2.5,15l1.41,1.41L5,15.33V20h10v-4.67l1.09,1.09L17.5,15zM13,18h-2v-3H9v3H7v-4.67l3,-3l3,3V18zM22,7.5h-1.19l0.75,0.75l-0.71,0.71L19.39,7.5H18.5v0.89l1.45,1.45l-0.71,0.71L18.5,9.81V11h-1V9.81l-0.75,0.75l-0.71,-0.71l1.45,-1.45V7.5h-0.89l-1.45,1.45l-0.71,-0.71l0.75,-0.75H14v-1h1.19l-0.75,-0.75l0.71,-0.71l1.45,1.45h0.89V5.61l-1.45,-1.45l0.71,-0.71l0.75,0.75V3h1v1.19l0.75,-0.75l0.71,0.71L18.5,5.61V6.5h0.89l1.45,-1.45l0.71,0.71L20.81,6.5H22V7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/change_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/change_circle.xml
deleted file mode 100644
index e54b0b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/change_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM16.17,14.76l-1.1,-1.1c0.71,-1.33 0.53,-3.01 -0.59,-4.13C13.79,8.84 12.9,8.5 12,8.5c-0.03,0 -0.06,0.01 -0.09,0.01L13,9.6l-1.06,1.06L9.11,7.83L11.94,5L13,6.06l-0.96,0.96c1.27,0.01 2.53,0.48 3.5,1.44C17.24,10.17 17.45,12.82 16.17,14.76zM14.89,16.17L12.06,19L11,17.94l0.95,-0.95c-1.26,-0.01 -2.52,-0.5 -3.48,-1.46c-1.71,-1.71 -1.92,-4.35 -0.64,-6.29l1.1,1.1c-0.71,1.33 -0.53,3.01 0.59,4.13c0.7,0.7 1.63,1.04 2.56,1.01L11,14.4l1.06,-1.06L14.89,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/change_history.xml b/compose/material/material/icons/generator/raw-icons/outlined/change_history.xml
deleted file mode 100644
index 2aee492..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/change_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.77L18.39,18H5.61L12,7.77M12,4L2,20h20L12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/charging_station.xml b/compose/material/material/icons/generator/raw-icons/outlined/charging_station.xml
deleted file mode 100644
index f959159..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/charging_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11l-3,6v-4h-2l3,-6v4H14.5zM17,3H7v1h10V3M17,20H7v1h10V20M17,1c1.1,0 2,0.9 2,2v18c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V3c0,-1.1 0.9,-2 2,-2H17L17,1zM7,18h10V6H7V18L7,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chat.xml b/compose/material/material/icons/generator/raw-icons/outlined/chat.xml
deleted file mode 100644
index 1e6a2ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h16v12L5.17,16L4,17.17L4,4m0,-2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L4,2zM6,12h8v2L6,14v-2zM6,9h12v2L6,11L6,9zM6,6h12v2L6,8L6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chat_bubble.xml b/compose/material/material/icons/generator/raw-icons/outlined/chat_bubble.xml
deleted file mode 100644
index c91a7ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chat_bubble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chat_bubble_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/chat_bubble_outline.xml
deleted file mode 100644
index e0a11fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chat_bubble_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L6,16l-2,2L4,4h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/check.xml b/compose/material/material/icons/generator/raw-icons/outlined/check.xml
deleted file mode 100644
index 6c11d35..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41L9,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/check_box.xml b/compose/material/material/icons/generator/raw-icons/outlined/check_box.xml
deleted file mode 100644
index 5e67b75..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM17.99,9l-1.41,-1.42 -6.59,6.59 -2.58,-2.57 -1.42,1.41 4,3.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/check_box_outline_blank.xml b/compose/material/material/icons/generator/raw-icons/outlined/check_box_outline_blank.xml
deleted file mode 100644
index 8c7ac2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/check_box_outline_blank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5h14m0,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/check_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/check_circle.xml
deleted file mode 100644
index ad63e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM16.59,7.58L10,14.17l-2.59,-2.58L6,13l4,4 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/check_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/check_circle_outline.xml
deleted file mode 100644
index ad63e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/check_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM16.59,7.58L10,14.17l-2.59,-2.58L6,13l4,4 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/checklist.xml b/compose/material/material/icons/generator/raw-icons/outlined/checklist.xml
deleted file mode 100644
index 64e7ee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/checklist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-9v2h9V7zM22,15h-9v2h9V15zM5.54,11L2,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,11zM5.54,19L2,15.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/checklist_rtl.xml b/compose/material/material/icons/generator/raw-icons/outlined/checklist_rtl.xml
deleted file mode 100644
index eb4422c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/checklist_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7H2v2h9V7zM11,15H2v2h9V15zM16.34,11l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,5.34L16.34,11zM16.34,19l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,13.34L16.34,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/checkroom.xml b/compose/material/material/icons/generator/raw-icons/outlined/checkroom.xml
deleted file mode 100644
index b1e0d52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/checkroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.6,18.2L13,11.75v-0.91c1.65,-0.49 2.8,-2.17 2.43,-4.05c-0.26,-1.31 -1.3,-2.4 -2.61,-2.7C10.54,3.57 8.5,5.3 8.5,7.5h2C10.5,6.67 11.17,6 12,6s1.5,0.67 1.5,1.5c0,0.84 -0.69,1.52 -1.53,1.5C11.43,8.99 11,9.45 11,9.99v1.76L2.4,18.2C1.63,18.78 2.04,20 3,20h9h9C21.96,20 22.37,18.78 21.6,18.2zM6,18l6,-4.5l6,4.5H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chevron_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/chevron_left.xml
deleted file mode 100644
index dab785f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chevron_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12l4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chevron_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/chevron_right.xml
deleted file mode 100644
index 72e27a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chevron_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6L8.59,7.41 13.17,12l-4.58,4.59L10,18l6,-6 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/child_care.xml b/compose/material/material/icons/generator/raw-icons/outlined/child_care.xml
deleted file mode 100644
index ea32d5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/child_care.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.94,11.34c-0.25,-1.51 -1.36,-2.74 -2.81,-3.17 -0.53,-1.12 -1.28,-2.1 -2.19,-2.91C16.36,3.85 14.28,3 12,3s-4.36,0.85 -5.94,2.26c-0.92,0.81 -1.67,1.8 -2.19,2.91 -1.45,0.43 -2.56,1.65 -2.81,3.17 -0.04,0.21 -0.06,0.43 -0.06,0.66 0,0.23 0.02,0.45 0.06,0.66 0.25,1.51 1.36,2.74 2.81,3.17 0.52,1.11 1.27,2.09 2.17,2.89C7.62,20.14 9.71,21 12,21s4.38,-0.86 5.97,-2.28c0.9,-0.8 1.65,-1.79 2.17,-2.89 1.44,-0.43 2.55,-1.65 2.8,-3.17 0.04,-0.21 0.06,-0.43 0.06,-0.66 0,-0.23 -0.02,-0.45 -0.06,-0.66zM19,14c-0.1,0 -0.19,-0.02 -0.29,-0.03 -0.2,0.67 -0.49,1.29 -0.86,1.86C16.6,17.74 14.45,19 12,19s-4.6,-1.26 -5.85,-3.17c-0.37,-0.57 -0.66,-1.19 -0.86,-1.86 -0.1,0.01 -0.19,0.03 -0.29,0.03 -1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2c0.1,0 0.19,0.02 0.29,0.03 0.2,-0.67 0.49,-1.29 0.86,-1.86C7.4,6.26 9.55,5 12,5s4.6,1.26 5.85,3.17c0.37,0.57 0.66,1.19 0.86,1.86 0.1,-0.01 0.19,-0.03 0.29,-0.03 1.1,0 2,0.9 2,2s-0.9,2 -2,2zM12,17c2.01,0 3.74,-1.23 4.5,-3h-9c0.76,1.77 2.49,3 4.5,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/child_friendly.xml b/compose/material/material/icons/generator/raw-icons/outlined/child_friendly.xml
deleted file mode 100644
index 463ea3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/child_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2v8h8c0,-4.42 -3.58,-8 -8,-8zM15,8L15,4.34c1.7,0.6 3.05,1.95 3.66,3.66L15,8zM6.44,11l-0.95,-2L2,9v2h2.22s1.89,4.07 2.12,4.42c-1.1,0.59 -1.84,1.75 -1.84,3.08C4.5,20.43 6.07,22 8,22c1.76,0 3.22,-1.3 3.46,-3h2.08c0.24,1.7 1.7,3 3.46,3 1.93,0 3.5,-1.57 3.5,-3.5 0,-1.04 -0.46,-1.97 -1.18,-2.61C20.37,14.54 21,12.84 21,11L6.44,11zM8,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.17,17 8,17s1.5,0.67 1.5,1.5S8.83,20 8,20zM17,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.17,17 17,17s1.5,0.67 1.5,1.5S17.83,20 17,20zM17.74,14.66l-0.29,0.37c-0.14,-0.02 -0.3,-0.03 -0.45,-0.03 -1.39,0 -2.6,0.82 -3.16,2h-2.68c-0.5,-1.04 -1.5,-1.8 -2.68,-1.97l-0.44,-0.67c-0.1,-0.17 -0.34,-0.69 -0.67,-1.36h11.29c-0.21,0.59 -0.52,1.15 -0.92,1.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/chrome_reader_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/chrome_reader_mode.xml
deleted file mode 100644
index e248c0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/chrome_reader_mode.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM3,19L3,6h8v13L3,19zM21,19h-8L13,6h8v13zM14,9.5h6L20,11h-6zM14,12h6v1.5h-6zM14,14.5h6L20,16h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/church.xml b/compose/material/material/icons/generator/raw-icons/outlined/church.xml
deleted file mode 100644
index 9664164..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/church.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12.22V9l-5,-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h9v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h9v-8L18,12.22zM20,20h-5v-2.04c0,-1.69 -1.35,-3.06 -3,-3.06c-1.65,0 -3,1.37 -3,3.06V20H4v-4.79l4,-1.81v-3.35L12,8l4,2.04v3.35l4,1.81V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/circle.xml
deleted file mode 100644
index cd2c9d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12c0,5.53 4.47,10 10,10s10,-4.47 10,-10C22,6.47 17.53,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,16.42 16.42,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/circle_notifications.xml b/compose/material/material/icons/generator/raw-icons/outlined/circle_notifications.xml
deleted file mode 100644
index 372d1a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/circle_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18.5c0.83,0 1.5,-0.67 1.5,-1.5h-3C10.5,17.83 11.17,18.5 12,18.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c5.52,0 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8c4.41,0 8,3.59 8,8S16.41,20 12,20zM16,11.39c0,-2.11 -1.03,-3.92 -3,-4.39V6.5c0,-0.57 -0.43,-1 -1,-1s-1,0.43 -1,1V7c-1.97,0.47 -3,2.27 -3,4.39V14H7v2h10v-2h-1V11.39zM14,14h-4v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/class.xml b/compose/material/material/icons/generator/raw-icons/outlined/class.xml
deleted file mode 100644
index bace178..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM9,4h2v5l-1,-0.75L9,9L9,4zM18,20L6,20L6,4h1v9l3,-2.25L13,13L13,4h5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/clean_hands.xml b/compose/material/material/icons/generator/raw-icons/outlined/clean_hands.xml
deleted file mode 100644
index 3c871ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/clean_hands.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63,-1.37L14.99,7l1.37,-0.63L16.99,5M20,14c1.1,0 2,-0.9 2,-2c0,-1.1 -2,-4 -2,-4s-2,2.9 -2,4C18,13.1 18.9,14 20,14zM11,6.1V4h2c0.57,0 1.1,0.17 1.55,0.45l1.43,-1.43C15.15,2.39 14.13,2 13,2c-1.47,0 -5.44,0 -5.5,0v2H9v2.11C7.22,6.48 5.8,7.79 5.25,9.5h2.16C7.94,8.61 8.89,8 10,8c1.62,0 2.94,1.29 2.99,2.9L15,11.65V11C15,8.58 13.28,6.56 11,6.1zM22,19v1l-8,2.5l-7,-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72 17,14.8 17,16h2C20.66,16 22,17.34 22,19zM5,20v-7H3v7H5zM19.9,18.57c-0.16,-0.33 -0.51,-0.56 -0.9,-0.56h-5.35c-0.54,0 -1.07,-0.09 -1.58,-0.26l-2.38,-0.79l0.63,-1.9l2.38,0.79C13.01,15.95 15,16 15,16c0,-0.37 -0.23,-0.7 -0.57,-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cleaning_services.xml b/compose/material/material/icons/generator/raw-icons/outlined/cleaning_services.xml
deleted file mode 100644
index 09566bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cleaning_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h-1V3c0,-1.1 -0.9,-2 -2,-2h-2C9.9,1 9,1.9 9,3v8H8c-2.76,0 -5,2.24 -5,5v7h18v-7C21,13.24 18.76,11 16,11zM11,3h2v8h-2V3zM19,21h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H9v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H5v-5c0,-1.65 1.35,-3 3,-3h8c1.65,0 3,1.35 3,3V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/clear.xml b/compose/material/material/icons/generator/raw-icons/outlined/clear.xml
deleted file mode 100644
index 938bb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12 19,6.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/clear_all.xml b/compose/material/material/icons/generator/raw-icons/outlined/clear_all.xml
deleted file mode 100644
index dc649f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/clear_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h14v-2L5,11v2zM3,17h14v-2L3,15v2zM7,7v2h14L21,7L7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/close.xml b/compose/material/material/icons/generator/raw-icons/outlined/close.xml
deleted file mode 100644
index 938bb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/close.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12 19,6.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/close_fullscreen.xml b/compose/material/material/icons/generator/raw-icons/outlined/close_fullscreen.xml
deleted file mode 100644
index b884325..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/close_fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41zM3.41,22l5.29,-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/closed_caption.xml b/compose/material/material/icons/generator/raw-icons/outlined/closed_caption.xml
deleted file mode 100644
index 7dbd052..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/closed_caption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18L5,6h14v12zM7,15h3c0.55,0 1,-0.45 1,-1v-1L9.5,13v0.5h-2v-3h2v0.5L11,11v-1c0,-0.55 -0.45,-1 -1,-1L7,9c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM14,15h3c0.55,0 1,-0.45 1,-1v-1h-1.5v0.5h-2v-3h2v0.5L18,11v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/closed_caption_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/closed_caption_disabled.xml
deleted file mode 100644
index b103c66..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/closed_caption_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1h-1.5v-0.5h-2v1L13,10zM16.5,13.5l1.21,1.21C17.89,14.52 18,14.27 18,14v-1h-1.5V13.5zM8.83,6H19v10.17l1.98,1.98c0,-0.05 0.02,-0.1 0.02,-0.16V6c0,-1.1 -0.9,-2 -2,-2H6.83L8.83,6zM19.78,22.61L17.17,20H5c-1.11,0 -2,-0.9 -2,-2V6c0,-0.05 0.02,-0.1 0.02,-0.15L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM7.5,13.5h2V13h0.67l-2.5,-2.5H7.5V13.5zM15.17,18L11,13.83V14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.32 0.16,-0.59 0.4,-0.78L5,7.83V18H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/closed_caption_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/closed_caption_off.xml
deleted file mode 100644
index 14ab272..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/closed_caption_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.89,4 3,4.9 3,6v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,18H5V6h14V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h3c0.55,0 1,-0.45 1,-1v-1H9.5v0.5h-2v-3h2V11H11v-1c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v4C6,14.55 6.45,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,15h3c0.55,0 1,-0.45 1,-1v-1h-1.5v0.5h-2v-3h2V11H18v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v4C13,14.55 13.45,15 14,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud.xml
deleted file mode 100644
index c9a8ab3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3H6c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6m0,-2C9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96C18.67,6.59 15.64,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud_circle.xml
deleted file mode 100644
index f189b5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM16.29,10.19c-0.4,-2.01 -2.16,-3.52 -4.29,-3.52 -1.69,0 -3.15,0.96 -3.88,2.36C6.36,9.21 5,10.7 5,12.5 5,14.43 6.57,16 8.5,16h7.58c1.61,0 2.92,-1.31 2.92,-2.92 0,-1.54 -1.2,-2.79 -2.71,-2.89zM16,14L8.5,14c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.67,11 8.5,11h0.9l0.49,-1.05c0.41,-0.79 1.22,-1.28 2.11,-1.28 1.13,0 2.11,0.8 2.33,1.91l0.28,1.42L16,12c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud_done.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud_done.xml
deleted file mode 100644
index e5bdc64..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18L6,18c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM10,14.18l-2.09,-2.09L6.5,13.5 10,17l6.01,-6.01 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud_download.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud_download.xml
deleted file mode 100644
index d485532..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18L6,18c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM13.45,10h-2.9v3L8,13l4,4 4,-4h-2.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud_off.xml
deleted file mode 100644
index 52a10a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,15c0,-2.64 -2.05,-4.78 -4.65,-4.96C18.67,6.59 15.64,4 12,4c-1.33,0 -2.57,0.36 -3.65,0.97l1.49,1.49C10.51,6.17 11.23,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3 0,0.99 -0.48,1.85 -1.21,2.4l1.41,1.41c1.09,-0.92 1.8,-2.27 1.8,-3.81zM4.41,3.86L3,5.27l2.77,2.77h-0.42C2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h11.73l2,2 1.41,-1.41L4.41,3.86zM6,18c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h1.73l8,8H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud_queue.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud_queue.xml
deleted file mode 100644
index 8f71d61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h0.71C7.37,7.69 9.48,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3s-1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud_sync.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud_sync.xml
deleted file mode 100644
index b6b5371..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud_sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,14.98c-0.02,0 -0.03,0 -0.05,0.01C21.2,13.3 19.76,12 18,12c-1.4,0 -2.6,0.83 -3.16,2.02C13.26,14.1 12,15.4 12,17c0,1.66 1.34,3 3,3l6.5,-0.02c1.38,0 2.5,-1.12 2.5,-2.5S22.88,14.98 21.5,14.98zM21.51,18L21.51,18L15,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1.25v-0.25c0,-0.97 0.78,-1.75 1.75,-1.75s1.75,0.78 1.75,1.75V17c0,0 1.75,0 1.76,0c0.28,0 0.5,0.22 0.5,0.5C22,17.77 21.78,18 21.51,18zM10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,6h-2.73c1.43,1.26 2.41,3.01 2.66,5l-2.02,0C17.68,9.64 16.98,8.45 16,7.56V10h-2V4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cloud_upload.xml b/compose/material/material/icons/generator/raw-icons/outlined/cloud_upload.xml
deleted file mode 100644
index 05aac2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cloud_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM8,13h2.55v3h2.9v-3H16l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/co2.xml b/compose/material/material/icons/generator/raw-icons/outlined/co2.xml
deleted file mode 100644
index 28a144a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/co2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-4C15,9.45 14.55,9 14,9zM13.5,13.5h-2v-3h2V13.5zM8,13v1c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H6.5v-0.5h-2v3h2V13H8zM20.5,15.5h-2v1h3V18H17v-2.5c0,-0.55 0.45,-1 1,-1h2v-1h-3V12h3.5c0.55,0 1,0.45 1,1v1.5C21.5,15.05 21.05,15.5 20.5,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/co_present.xml b/compose/material/material/icons/generator/raw-icons/outlined/co_present.xml
deleted file mode 100644
index 18dea10..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/co_present.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v8h2V5h18v16c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4c0,2.21 1.79,4 4,4S13,12.21 13,10zM7,10c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S7,11.1 7,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,16.56C13.71,15.7 11.53,15 9,15c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,17.07 1,18.1 1,19.22V22h16v-2.78C17,18.1 16.39,17.07 15.39,16.56zM15,20H3c0,-0.72 -0.1,-1.34 0.52,-1.66C4.71,17.73 6.63,17 9,17c2.37,0 4.29,0.73 5.48,1.34C15.11,18.66 15,19.29 15,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/code.xml b/compose/material/material/icons/generator/raw-icons/outlined/code.xml
deleted file mode 100644
index b97ee53..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/code.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.4,16.6L4.8,12l4.6,-4.6L8,6l-6,6 6,6 1.4,-1.4zM14.6,16.6l4.6,-4.6 -4.6,-4.6L16,6l6,6 -6,6 -1.4,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/code_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/code_off.xml
deleted file mode 100644
index d2cf633..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/code_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.17,12l-4.58,-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12zM1.39,4.22l4.19,4.19L2,12l6,6l1.41,-1.41L4.83,12L7,9.83l12.78,12.78l1.41,-1.41L2.81,2.81L1.39,4.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/coffee.xml b/compose/material/material/icons/generator/raw-icons/outlined/coffee.xml
deleted file mode 100644
index 261c4d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/coffee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,3H6C4.9,3 4,3.9 4,5v5.71c0,3.83 2.95,7.18 6.78,7.29c3.96,0.12 7.22,-3.06 7.22,-7v-1h0.5c1.93,0 3.5,-1.57 3.5,-3.5S20.43,3 18.5,3zM16,5v3H6V5H16zM16,10v1c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5v-1M18.5,8H18V5h0.5C19.33,5 20,5.67 20,6.5S19.33,8 18.5,8zM4,19h16v2H4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/coffee_maker.xml b/compose/material/material/icons/generator/raw-icons/outlined/coffee_maker.xml
deleted file mode 100644
index 9e08f3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/coffee_maker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6V4h2V2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h14v-2h-4.03C17.2,19.09 18,17.64 18,16v-5H8v5c0,1.64 0.81,3.09 2.03,4H6V4h2v2c0,0.55 0.45,1 1,1h8C17.55,7 18,6.55 18,6zM10,16v-3h6v3c0,1.65 -1.35,3 -3,3S10,17.65 10,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/collections.xml b/compose/material/material/icons/generator/raw-icons/outlined/collections.xml
deleted file mode 100644
index 863adc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/collections.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v12L8,16L8,4h12m0,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM11.5,11.67l1.69,2.26 2.48,-3.1L19,15L9,15zM2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/collections_bookmark.xml b/compose/material/material/icons/generator/raw-icons/outlined/collections_bookmark.xml
deleted file mode 100644
index ab4a8f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/collections_bookmark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM17,4v5l-1,-0.75L15,9L15,4h2zM20,16L8,16L8,4h5v9l3,-2.25L19,13L19,4h1v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/color_lens.xml b/compose/material/material/icons/generator/raw-icons/outlined/color_lens.xml
deleted file mode 100644
index 78ddce5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/color_lens.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22C6.49,22 2,17.51 2,12S6.49,2 12,2s10,4.04 10,9c0,3.31 -2.69,6 -6,6h-1.77c-0.28,0 -0.5,0.22 -0.5,0.5 0,0.12 0.05,0.23 0.13,0.33 0.41,0.47 0.64,1.06 0.64,1.67 0,1.38 -1.12,2.5 -2.5,2.5zM12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8c0.28,0 0.5,-0.22 0.5,-0.5 0,-0.16 -0.08,-0.28 -0.14,-0.35 -0.41,-0.46 -0.63,-1.05 -0.63,-1.65 0,-1.38 1.12,-2.5 2.5,-2.5L16,15c2.21,0 4,-1.79 4,-4 0,-3.86 -3.59,-7 -8,-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/colorize.xml b/compose/material/material/icons/generator/raw-icons/outlined/colorize.xml
deleted file mode 100644
index 9178f10..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/colorize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,5.41l0.92,0.92 -2.69,2.69 -0.92,-0.92 2.69,-2.69M17.67,3c-0.26,0 -0.51,0.1 -0.71,0.29l-3.12,3.12 -1.93,-1.91 -1.41,1.41 1.42,1.42L3,16.25V21h4.75l8.92,-8.92 1.42,1.42 1.41,-1.41 -1.92,-1.92 3.12,-3.12c0.4,-0.4 0.4,-1.03 0.01,-1.42l-2.34,-2.34c-0.2,-0.19 -0.45,-0.29 -0.7,-0.29zM6.92,19L5,17.08l8.06,-8.06 1.92,1.92L6.92,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/comment.xml b/compose/material/material/icons/generator/raw-icons/outlined/comment.xml
deleted file mode 100644
index 884046c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18zM20,4v13.17L18.83,16L4,16L4,4h16zM6,12h12v2L6,14zM6,9h12v2L6,11zM6,6h12v2L6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/comment_bank.xml b/compose/material/material/icons/generator/raw-icons/outlined/comment_bank.xml
deleted file mode 100644
index fbc8c77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/comment_bank.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14l0,-8l-5,0l0,8l2.5,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H6l-2,2V4h16V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/comments_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/comments_disabled.xml
deleted file mode 100644
index 8046985..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/comments_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.83,16H20V4H6.83l-2,-2H20c1.1,0 2,0.9 2,2l0,15.17L18.83,16zM18,6H8.83l2,2H18V6zM18,9h-6.17l2,2H18V9zM18,14v-2h-3.17l2,2H18zM21.9,21.9l-1.41,1.41L15.17,18H4c-1.1,0 -2,-0.9 -2,-2V4.83L0.69,3.51L2.1,2.1L21.9,21.9zM13.17,16l-2,-2H6v-2h3.17l-1,-1H6V9h0.17L4,6.83V16H13.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/commit.xml b/compose/material/material/icons/generator/raw-icons/outlined/commit.xml
deleted file mode 100644
index 926bce2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/commit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.9,11L16.9,11c-0.46,-2.28 -2.48,-4 -4.9,-4s-4.44,1.72 -4.9,4h0H2v2h5.1h0c0.46,2.28 2.48,4 4.9,4s4.44,-1.72 4.9,-4h0H22v-2H16.9zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/commute.xml b/compose/material/material/icons/generator/raw-icons/outlined/commute.xml
deleted file mode 100644
index b9938c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/commute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L5,4C3.34,4 2,5.34 2,7v8c0,1.66 1.34,3 3,3l-1,1v1h1l2,-2h2v-5L4,13L4,6h9v2h2L15,7c0,-1.66 -1.34,-3 -3,-3zM5,14c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20.57,9.66c-0.14,-0.4 -0.52,-0.66 -0.97,-0.66h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66l-1.42,4.11v5.51c0,0.38 0.31,0.72 0.69,0.72h0.62c0.38,0 0.68,-0.38 0.68,-0.76L12,18h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72l0.01,-1.37v-4.14l-1.43,-4.11zM12.41,10h7.19l1.03,3h-9.25l1.03,-3zM12,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM20,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/compare.xml b/compose/material/material/icons/generator/raw-icons/outlined/compare.xml
deleted file mode 100644
index 945852b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/compare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h5v2h2L12,1h-2v2zM10,18L5,18l5,-6v6zM19,3h-5v2h5v13l-5,-6v9h5c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/compare_arrows.xml b/compose/material/material/icons/generator/raw-icons/outlined/compare_arrows.xml
deleted file mode 100644
index 7c6cc72..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/compare_arrows.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.01,14L2,14v2h7.01v3L13,15l-3.99,-4v3zM14.99,13v-3L22,10L22,8h-7.01L14.99,5L11,9l3.99,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/compass_calibration.xml b/compose/material/material/icons/generator/raw-icons/outlined/compass_calibration.xml
deleted file mode 100644
index b40b2e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/compass_calibration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,20c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3zM12,3C8.1,3 4.56,4.59 2,7.15l5,5c1.28,-1.28 3.05,-2.08 5,-2.08s3.72,0.79 5,2.07l5,-5C19.44,4.59 15.9,3 12,3zM16.84,9.47c-1.44,-0.91 -3.1,-1.4 -4.84,-1.4 -1.74,0 -3.41,0.49 -4.85,1.41L4.94,7.26C6.99,5.79 9.44,5 12,5c2.56,0 5,0.79 7.05,2.26l-2.21,2.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/compost.xml b/compose/material/material/icons/generator/raw-icons/outlined/compost.xml
deleted file mode 100644
index b06253a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/compost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,11.81c-0.23,-0.38 -0.37,-0.83 -0.37,-1.31C12.5,9.12 13.62,8 15,8l1,0c1.51,0 2,-1 2,-1s0.55,6 -3,6c-0.49,0 -0.94,-0.14 -1.32,-0.38c-0.24,0.64 -0.59,1.76 -0.76,2.96c1.26,0.22 2.28,0.89 2.77,1.77c1.69,-1.17 2.81,-3.13 2.81,-5.35h3c0,5.24 -4.26,9.5 -9.5,9.5S2.5,17.24 2.5,12S6.76,2.5 12,2.5V0l4,4l-4,4V5.5c-3.58,0 -6.5,2.92 -6.5,6.5c0,2.21 1.11,4.17 2.81,5.35c0.51,-0.92 1.63,-1.62 2.98,-1.8c-0.09,-0.69 -0.26,-1.42 -0.49,-2.03C10.45,13.82 10,14 9.5,14c-1.1,0 -2,-0.9 -2,-2v-0.99c0,-0.56 -0.19,-1.09 -0.5,-1.51c0,0 4.45,-0.23 4.5,2.5c0,0.29 -0.06,0.56 -0.17,0.8C10.91,12.48 10.47,12.2 10,12c0.58,0.43 1.37,1.37 2,2.6c0.67,-1.62 1.68,-3.27 3,-4.6C14.24,10.52 13.53,11.12 12.87,11.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/compress.xml b/compose/material/material/icons/generator/raw-icons/outlined/compress.xml
deleted file mode 100644
index ab8525d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/compress.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9v2h16V9H4zM16,4l-1.41,-1.41L13,4.17V1h-2v3.19L9.39,2.61L8,4l4,4L16,4zM4,14h16v-2H4V14zM8,19l1.39,1.39L11,18.81V22h2v-3.17l1.59,1.59L16,19l-4,-4L8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/computer.xml b/compose/material/material/icons/generator/raw-icons/outlined/computer.xml
deleted file mode 100644
index d6a11d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/computer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,6c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2H0v2h24v-2h-4zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/confirmation_number.xml b/compose/material/material/icons/generator/raw-icons/outlined/confirmation_number.xml
deleted file mode 100644
index e495164..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/confirmation_number.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10L22,6c0,-1.11 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.89 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2zM20,8.54c-1.19,0.69 -2,1.99 -2,3.46s0.81,2.77 2,3.46L20,18L4,18v-2.54c1.19,-0.69 2,-1.99 2,-3.46 0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16v2.54zM11,15h2v2h-2zM11,11h2v2h-2zM11,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/connect_without_contact.xml b/compose/material/material/icons/generator/raw-icons/outlined/connect_without_contact.xml
deleted file mode 100644
index 709fe2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/connect_without_contact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14H9c0,-4.97 4.03,-9 9,-9v2C14.13,7 11,10.13 11,14zM18,11V9c-2.76,0 -5,2.24 -5,5h2C15,12.34 16.34,11 18,11zM7,4c0,-1.11 -0.89,-2 -2,-2S3,2.89 3,4s0.89,2 2,2S7,5.11 7,4zM11.45,4.5h-2C9.21,5.92 7.99,7 6.5,7h-3C2.67,7 2,7.67 2,8.5V11h6V8.74C9.86,8.15 11.25,6.51 11.45,4.5zM19,17c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S17.89,17 19,17zM20.5,18h-3c-1.49,0 -2.71,-1.08 -2.95,-2.5h-2c0.2,2.01 1.59,3.65 3.45,4.24V22h6v-2.5C22,18.67 21.33,18 20.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/connected_tv.xml b/compose/material/material/icons/generator/raw-icons/outlined/connected_tv.xml
deleted file mode 100644
index 931ff49..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/connected_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v12c0,1.1 0.9,2 2,2h4v2h8v-2h4c1.1,0 1.99,-0.9 1.99,-2L22,5C22,3.9 21.1,3 20,3zM20,17H4V5h16V17zM5,14v2h2C7,14.89 6.11,14 5,14zM5,11v1.43c1.97,0 3.57,1.6 3.57,3.57H10C10,13.24 7.76,11 5,11zM5,8v1.45c3.61,0 6.55,2.93 6.55,6.55H13C13,11.58 9.41,8 5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/connecting_airports.xml b/compose/material/material/icons/generator/raw-icons/outlined/connecting_airports.xml
deleted file mode 100644
index 12357c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/connecting_airports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3l2.6,-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1l-0.75,-1H15.4zM5.75,7L5,6H4l0.6,2L4,10h1l0.75,-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L8.4,2.6H7.3L8.6,7H5.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/construction.xml b/compose/material/material/icons/generator/raw-icons/outlined/construction.xml
deleted file mode 100644
index 2c31758..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/construction.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.783,15.172l2.121,-2.121l5.996,5.996l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c1.93,0 3.5,-1.57 3.5,-3.5c0,-0.58 -0.16,-1.12 -0.41,-1.6l-2.7,2.7L16.4,6.11l2.7,-2.7C18.62,3.16 18.08,3 17.5,3C15.57,3 14,4.57 14,6.5c0,0.41 0.08,0.8 0.21,1.16l-1.85,1.85l-1.78,-1.78l0.71,-0.71L9.88,5.61L12,3.49c-1.17,-1.17 -3.07,-1.17 -4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71,-0.71V9.15l1.41,1.41l0.71,-0.71l1.78,1.78l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92 17.09,10 17.5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contact_emergency.xml b/compose/material/material/icons/generator/raw-icons/outlined/contact_emergency.xml
deleted file mode 100644
index e014223..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contact_emergency.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3s-3,1.35 -3,3S7.35,14 9,14zM9,10c0.54,0 1,0.46 1,1s-0.46,1 -1,1s-1,-0.46 -1,-1S8.46,10 9,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5C24,3.9 23.1,3 22,3zM4.54,19c1.1,-1.22 2.69,-2 4.46,-2s3.36,0.78 4.46,2H4.54zM22,19h-6.08c-1.38,-2.39 -3.96,-4 -6.92,-4s-5.54,1.61 -6.92,4H2V5h20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.78,11.15l1.47,-0.85l0,1.7l1.5,0l0,-1.7l1.47,0.85l0.75,-1.3l-1.47,-0.85l1.47,-0.85l-0.75,-1.3l-1.47,0.85l0,-1.7l-1.5,0l0,1.7l-1.47,-0.85l-0.75,1.3l1.47,0.85l-1.47,0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contact_mail.xml b/compose/material/material/icons/generator/raw-icons/outlined/contact_mail.xml
deleted file mode 100644
index 12b990b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contact_mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM22,19L2,19L2,5h20v14zM21,6h-7v5h7L21,6zM20,8l-2.5,1.75L15,8L15,7l2.5,1.75L20,7v1zM9,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM9,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM15,16.59c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.08 -6,3.58L3,18h12v-1.41zM5.48,16c0.74,-0.5 2.22,-1 3.52,-1s2.77,0.49 3.52,1L5.48,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contact_page.xml b/compose/material/material/icons/generator/raw-icons/outlined/contact_page.xml
deleted file mode 100644
index d0027b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contact_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,4L18,8.83V20H6V4H13.17M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2L14,2zM12,14c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C10,13.1 10.9,14 12,14zM16,17.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C13.93,15.21 12.99,15 12,15c-0.99,0 -1.93,0.21 -2.78,0.58C8.48,15.9 8,16.62 8,17.43V18h8V17.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contact_phone.xml b/compose/material/material/icons/generator/raw-icons/outlined/contact_phone.xml
deleted file mode 100644
index d474fd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contact_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM22,19L2,19L2,5h20v14zM19.01,17.99L21,16l-1.51,-2h-1.64c-0.22,-0.63 -0.35,-1.3 -0.35,-2s0.13,-1.37 0.35,-2h1.64L21,8l-1.99,-1.99c-1.31,0.98 -2.28,2.37 -2.73,3.99 -0.18,0.64 -0.28,1.31 -0.28,2s0.1,1.36 0.28,2c0.45,1.61 1.42,3.01 2.73,3.99zM9,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM9,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM15,16.59c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.08 -6,3.58L3,18h12v-1.41zM5.48,16c0.74,-0.5 2.22,-1 3.52,-1s2.77,0.49 3.52,1L5.48,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contact_support.xml b/compose/material/material/icons/generator/raw-icons/outlined/contact_support.xml
deleted file mode 100644
index 6541199..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contact_support.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,23.59v-3.6c-5.01,-0.26 -9,-4.42 -9,-9.49C2,5.26 6.26,1 11.5,1S21,5.26 21,10.5c0,4.95 -3.44,9.93 -8.57,12.4l-1.43,0.69zM11.5,3C7.36,3 4,6.36 4,10.5S7.36,18 11.5,18L13,18v2.3c3.64,-2.3 6,-6.08 6,-9.8C19,6.36 15.64,3 11.5,3zM10.5,14.5h2v2h-2zM12.5,13h-2c0,-3.25 3,-3 3,-5 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2h-2c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.5 -3,2.75 -3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contactless.xml b/compose/material/material/icons/generator/raw-icons/outlined/contactless.xml
deleted file mode 100644
index ac9eb02..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contactless.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.1,10.18c0.26,0.56 0.39,1.16 0.4,1.8c0.01,0.63 -0.13,1.25 -0.4,1.86l1.37,0.62c0.37,-0.81 0.55,-1.65 0.54,-2.5c-0.01,-0.84 -0.19,-1.65 -0.54,-2.4L7.1,10.18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.33,7.33c0.78,1.57 1.18,3.14 1.18,4.64c0,1.51 -0.4,3.09 -1.18,4.69l1.35,0.66c0.88,-1.81 1.33,-3.61 1.33,-5.35c0,-1.74 -0.45,-3.53 -1.33,-5.31L13.33,7.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.2,8.72c0.53,1.07 0.8,2.21 0.8,3.4c0,1.17 -0.26,2.23 -0.78,3.15l1.3,0.74c0.65,-1.15 0.98,-2.45 0.98,-3.89c0,-1.42 -0.32,-2.79 -0.96,-4.07L10.2,8.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contacts.xml b/compose/material/material/icons/generator/raw-icons/outlined/contacts.xml
deleted file mode 100644
index 2cdcd87..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12zM4,0h16v2L4,2zM4,22h16v2L4,24zM12,12c1.38,0 2.5,-1.12 2.5,-2.5S13.38,7 12,7 9.5,8.12 9.5,9.5 10.62,12 12,12zM12,8.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM17,15.99C17,13.9 13.69,13 12,13s-5,0.9 -5,2.99L7,17h10v-1.01zM8.81,15.5c0.61,-0.52 2.03,-1 3.19,-1 1.17,0 2.59,0.48 3.2,1L8.81,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/content_copy.xml b/compose/material/material/icons/generator/raw-icons/outlined/content_copy.xml
deleted file mode 100644
index 855a9be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/content_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM19,5L8,5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h11c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,21L8,21L8,7h11v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/content_cut.xml b/compose/material/material/icons/generator/raw-icons/outlined/content_cut.xml
deleted file mode 100644
index 0df8d84..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/content_cut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.64,7.64c0.23,-0.5 0.36,-1.05 0.36,-1.64 0,-2.21 -1.79,-4 -4,-4S2,3.79 2,6s1.79,4 4,4c0.59,0 1.14,-0.13 1.64,-0.36L10,12l-2.36,2.36C7.14,14.13 6.59,14 6,14c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4c0,-0.59 -0.13,-1.14 -0.36,-1.64L12,14l7,7h3v-1L9.64,7.64zM6,8c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM6,20c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM12,12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5 0.5,0.22 0.5,0.5 -0.22,0.5 -0.5,0.5zM19,3l-6,6 2,2 7,-7L22,3h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/content_paste.xml b/compose/material/material/icons/generator/raw-icons/outlined/content_paste.xml
deleted file mode 100644
index 262ae5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/content_paste.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0S9.6,0.84 9.18,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/content_paste_go.xml b/compose/material/material/icons/generator/raw-icons/outlined/content_paste_go.xml
deleted file mode 100644
index daa5d3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/content_paste_go.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v6h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h5v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.01,13l-1.42,1.41l1.58,1.58l-6.17,0l0,2l6.17,0l-1.58,1.59l1.42,1.41l3.99,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/content_paste_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/content_paste_off.xml
deleted file mode 100644
index 817cf7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/content_paste_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61L21.19,21.19zM5,19V7.83L16.17,19H5zM17,8V5h2v11.17l2,2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5.83l5,5H17zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/content_paste_search.xml b/compose/material/material/icons/generator/raw-icons/outlined/content_paste_search.xml
deleted file mode 100644
index 5b73c13..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/content_paste_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v5h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h5v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.3,18.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S12,14 12,16.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l2.7,2.7l1.4,-1.4L20.3,18.9zM16.5,19c-1.4,0 -2.5,-1.1 -2.5,-2.5c0,-1.4 1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5C19,17.9 17.9,19 16.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/contrast.xml b/compose/material/material/icons/generator/raw-icons/outlined/contrast.xml
deleted file mode 100644
index 8210b18..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/contrast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2S2,6.48 2,12S6.48,22 12,22zM13,4.07c3.94,0.49 7,3.85 7,7.93s-3.05,7.44 -7,7.93V4.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/control_camera.xml b/compose/material/material/icons/generator/raw-icons/outlined/control_camera.xml
deleted file mode 100644
index 7a386a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/control_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.54,8.46L2,12l3.54,3.54 1.76,-1.77L5.54,12l1.76,-1.77zM12,18.46l-1.77,-1.76 -1.77,1.76L12,22l3.54,-3.54 -1.77,-1.76zM18.46,8.46l-1.76,1.77L18.46,12l-1.76,1.77 1.76,1.77L22,12zM8.46,5.54l1.77,1.76L12,5.54l1.77,1.76 1.77,-1.76L12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/control_point.xml b/compose/material/material/icons/generator/raw-icons/outlined/control_point.xml
deleted file mode 100644
index 58800d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/control_point.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/control_point_duplicate.xml b/compose/material/material/icons/generator/raw-icons/outlined/control_point_duplicate.xml
deleted file mode 100644
index 2d0269e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/control_point_duplicate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8h-2v3h-3v2h3v3h2v-3h3v-2h-3L16,8zM2,12c0,-2.79 1.64,-5.2 4.01,-6.32L6.01,3.52C2.52,4.76 0,8.09 0,12s2.52,7.24 6.01,8.48v-2.16C3.64,17.2 2,14.79 2,12zM15,3c-4.96,0 -9,4.04 -9,9s4.04,9 9,9 9,-4.04 9,-9 -4.04,-9 -9,-9zM15,19c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cookie.xml b/compose/material/material/icons/generator/raw-icons/outlined/cookie.xml
deleted file mode 100644
index 5194b44..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cookie.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,8.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,10.99c-1.79,-0.03 -3.7,-1.95 -2.68,-4.22c-2.97,1 -5.78,-1.59 -5.19,-4.56C7.11,0.74 2,6.41 2,12c0,5.52 4.48,10 10,10C17.89,22 22.54,16.92 21.95,10.99zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-3.31 2.73,-8.18 8.08,-8.02c0.42,2.54 2.44,4.56 4.99,4.94c0.07,0.36 0.52,2.55 2.92,3.63C19.7,16.86 16.06,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/copy_all.xml b/compose/material/material/icons/generator/raw-icons/outlined/copy_all.xml
deleted file mode 100644
index e80c13a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/copy_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H9C7.9,2 7,2.9 7,4v12c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,16H9V4h9V16zM3,15v-2h2v2H3zM3,9.5h2v2H3V9.5zM10,20h2v2h-2V20zM3,18.5v-2h2v2H3zM5,22c-1.1,0 -2,-0.9 -2,-2h2V22zM8.5,22h-2v-2h2V22zM13.5,22L13.5,22l0,-2h2v0C15.5,21.1 14.6,22 13.5,22zM5,6L5,6l0,2H3v0C3,6.9 3.9,6 5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/copyright.xml b/compose/material/material/icons/generator/raw-icons/outlined/copyright.xml
deleted file mode 100644
index 2fde576..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/copyright.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.08,10.86c0.05,-0.33 0.16,-0.62 0.3,-0.87s0.34,-0.46 0.59,-0.62c0.24,-0.15 0.54,-0.22 0.91,-0.23 0.23,0.01 0.44,0.05 0.63,0.13 0.2,0.09 0.38,0.21 0.52,0.36s0.25,0.33 0.34,0.53 0.13,0.42 0.14,0.64h1.79c-0.02,-0.47 -0.11,-0.9 -0.28,-1.29s-0.4,-0.73 -0.7,-1.01 -0.66,-0.5 -1.08,-0.66 -0.88,-0.23 -1.39,-0.23c-0.65,0 -1.22,0.11 -1.7,0.34s-0.88,0.53 -1.2,0.92 -0.56,0.84 -0.71,1.36S8,11.29 8,11.87v0.27c0,0.58 0.08,1.12 0.23,1.64s0.39,0.97 0.71,1.35 0.72,0.69 1.2,0.91c0.48,0.22 1.05,0.34 1.7,0.34 0.47,0 0.91,-0.08 1.32,-0.23s0.77,-0.36 1.08,-0.63 0.56,-0.58 0.74,-0.94 0.29,-0.74 0.3,-1.15h-1.79c-0.01,0.21 -0.06,0.4 -0.15,0.58s-0.21,0.33 -0.36,0.46 -0.32,0.23 -0.52,0.3c-0.19,0.07 -0.39,0.09 -0.6,0.1 -0.36,-0.01 -0.66,-0.08 -0.89,-0.23 -0.25,-0.16 -0.45,-0.37 -0.59,-0.62s-0.25,-0.55 -0.3,-0.88 -0.08,-0.67 -0.08,-1v-0.27c0,-0.35 0.03,-0.68 0.08,-1.01zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/coronavirus.xml b/compose/material/material/icons/generator/raw-icons/outlined/coronavirus.xml
deleted file mode 100644
index 038ab27..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/coronavirus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1S9.5,11.45 9.5,12zM13.75,10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S13.2,10 13.75,10zM10.25,10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S9.7,10 10.25,10zM10.25,14c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C11.25,14.45 10.8,14 10.25,14zM22,11.25v1.5c0,0.41 -0.34,0.75 -0.75,0.75c-0.41,0 -0.75,-0.34 -0.75,-0.75h-1.54c-0.15,1.37 -0.69,2.63 -1.52,3.65l1.09,1.09l0.01,-0.01c0.29,-0.29 0.77,-0.29 1.06,0c0.29,0.29 0.29,0.77 0,1.06l-1.06,1.06c-0.29,0.29 -0.77,0.29 -1.06,0c-0.29,-0.29 -0.29,-0.76 -0.01,-1.05l-1.09,-1.09c-1.02,0.82 -2.27,1.36 -3.64,1.51v1.54h0.01c0.41,0 0.75,0.34 0.75,0.75c0,0.41 -0.34,0.75 -0.75,0.75h-1.5c-0.41,0 -0.75,-0.34 -0.75,-0.75c0,-0.41 0.33,-0.74 0.74,-0.75v-1.55c-1.37,-0.15 -2.62,-0.69 -3.63,-1.51l-1.09,1.09l0.01,0.01c0.29,0.29 0.29,0.77 0,1.06c-0.29,0.29 -0.77,0.29 -1.06,0L4.4,18.54c-0.29,-0.29 -0.29,-0.77 0,-1.06c0.29,-0.29 0.76,-0.29 1.05,-0.01l1.09,-1.09c-0.82,-1.02 -1.36,-2.26 -1.5,-3.63H3.5c0,0.41 -0.34,0.75 -0.75,0.75C2.34,13.5 2,13.16 2,12.75v-1.5c0,-0.41 0.34,-0.75 0.75,-0.75c0.41,0 0.75,0.34 0.75,0.75h1.54c0.15,-1.37 0.69,-2.61 1.5,-3.63L5.45,6.53C5.16,6.81 4.69,6.81 4.4,6.52c-0.29,-0.29 -0.29,-0.77 0,-1.06L5.46,4.4c0.29,-0.29 0.77,-0.29 1.06,0c0.29,0.29 0.29,0.77 0,1.06L6.51,5.47L7.6,6.56c1.02,-0.82 2.26,-1.36 3.63,-1.51V3.5c-0.41,-0.01 -0.74,-0.34 -0.74,-0.75C10.5,2.34 10.84,2 11.25,2h1.5c0.41,0 0.75,0.34 0.75,0.75c0,0.41 -0.34,0.75 -0.75,0.75h-0.01v1.54c1.37,0.14 2.62,0.69 3.64,1.51l1.09,-1.09c-0.29,-0.29 -0.28,-0.76 0.01,-1.05c0.29,-0.29 0.77,-0.29 1.06,0l1.06,1.06c0.29,0.29 0.29,0.77 0,1.06s-0.77,0.29 -1.06,0l-0.01,-0.01L17.44,7.6c0.82,1.02 1.37,2.27 1.52,3.65h1.54c0,-0.41 0.34,-0.75 0.75,-0.75C21.66,10.5 22,10.84 22,11.25zM17,12c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5s2.24,5 5,5S17,14.76 17,12zM12,11c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C13,11.45 12.55,11 12,11zM15.5,11c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C16.5,11.45 16.05,11 15.5,11zM13.75,14c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C14.75,14.45 14.3,14 13.75,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/corporate_fare.xml b/compose/material/material/icons/generator/raw-icons/outlined/corporate_fare.xml
deleted file mode 100644
index 9ad3b6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/corporate_fare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h20V7H12zM10,19H4v-2h6V19zM10,15H4v-2h6V15zM10,11H4V9h6V11zM10,7H4V5h6V7zM20,19h-8V9h8V19zM18,11h-4v2h4V11zM18,15h-4v2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cottage.xml b/compose/material/material/icons/generator/raw-icons/outlined/cottage.xml
deleted file mode 100644
index 0d7c263..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cottage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM18,19h-5v-4h-2v4H6v-8.9l6,-4.58l6,4.58V19zM10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/countertops.xml b/compose/material/material/icons/generator/raw-icons/outlined/countertops.xml
deleted file mode 100644
index 2f39926..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/countertops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10h-4V7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3h2c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1v3H8c1.1,0 2,-0.9 2,-2V4H4v4c0,1.1 0.9,2 2,2H2v2h2v8h16v-8h2V10zM6,6h2v2H6V6zM6,18v-6h5v6H6zM18,18h-5v-6h5V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/create.xml b/compose/material/material/icons/generator/raw-icons/outlined/create.xml
deleted file mode 100644
index dca7557..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/create.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM5.92,19H5v-0.92l9.06,-9.06 0.92,0.92L5.92,19zM20.71,5.63l-2.34,-2.34c-0.2,-0.2 -0.45,-0.29 -0.71,-0.29s-0.51,0.1 -0.7,0.29l-1.83,1.83 3.75,3.75 1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/create_new_folder.xml b/compose/material/material/icons/generator/raw-icons/outlined/create_new_folder.xml
deleted file mode 100644
index 7d4ff25..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/create_new_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18L4,6h5.17l2,2L20,8v10zM12,14h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/credit_card.xml b/compose/material/material/icons/generator/raw-icons/outlined/credit_card.xml
deleted file mode 100644
index 9c0fb1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/credit_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/credit_card_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/credit_card_off.xml
deleted file mode 100644
index 8aea540..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/credit_card_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H20c1.11,0 2,0.89 2,2v12c0,0.34 -0.08,0.66 -0.23,0.94L20,17.17V12h-5.17l-4,-4H20V6H8.83L6.83,4zM20.49,23.31L17.17,20H4c-1.11,0 -2,-0.89 -2,-2L2.01,6c0,-0.34 0.08,-0.66 0.23,-0.93L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM4,6.83V8h1.17L4,6.83zM15.17,18l-6,-6H4v6H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/credit_score.xml b/compose/material/material/icons/generator/raw-icons/outlined/credit_score.xml
deleted file mode 100644
index 7726a78..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/credit_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h5v-2H4v-6h18V6C22,4.89 21.11,4 20,4zM20,8H4V6h16V8zM14.93,19.17l-2.83,-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41,-1.41L14.93,19.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crib.xml b/compose/material/material/icons/generator/raw-icons/outlined/crib.xml
deleted file mode 100644
index edad9dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crib.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9h-6V4H8C5.79,4 4,5.79 4,8v6c0,1.1 0.9,2 2,2h2v2.93c-0.61,-0.35 -1.16,-0.78 -1.65,-1.27l-1.42,1.42C6.74,20.88 9.24,22 12,22c2.76,0 5.26,-1.12 7.07,-2.93l-1.42,-1.42c-0.49,0.49 -1.05,0.92 -1.65,1.27V16h2c1.1,0 2,-0.9 2,-2v-3C20,9.9 19.1,9 18,9zM14,19.75C13.36,19.91 12.69,20 12,20c-0.69,0 -1.36,-0.09 -2,-0.25V16h4V19.75zM18,14H6V8c0,-1.1 0.9,-2 2,-2h2v5h8V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crisis_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/crisis_alert.xml
deleted file mode 100644
index 1aa1128..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crisis_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,2.5c0,1.5 -1.5,6 -1.5,6h-2c0,0 -1.5,-4.5 -1.5,-6C9.5,1.12 10.62,0 12,0S14.5,1.12 14.5,2.5zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM16.08,5.11c0.18,-0.75 0.33,-1.47 0.39,-2.06C19.75,4.69 22,8.08 22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-3.92 2.25,-7.31 5.53,-8.95C7.6,3.64 7.74,4.37 7.92,5.11C5.58,6.51 4,9.07 4,12c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,9.07 18.42,6.51 16.08,5.11zM18,12c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2 0.98,-3.77 2.48,-4.86c0.23,0.81 0.65,2.07 0.65,2.07C8.43,9.93 8,10.92 8,12c0,2.21 1.79,4 4,4s4,-1.79 4,-4c0,-1.08 -0.43,-2.07 -1.13,-2.79c0,0 0.41,-1.22 0.65,-2.07C17.02,8.23 18,10 18,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop.xml
deleted file mode 100644
index 56a8102..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2V7c0,-1.1 -0.9,-2 -2,-2H9v2h8v8zM7,17V1H5v4H1v2h4v10c0,1.1 0.9,2 2,2h10v4h2v-4h4v-2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_16_9.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_16_9.xml
deleted file mode 100644
index 7bc13cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_16_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H5C3.9,7 3,7.9 3,9v6c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,15H5V9h14V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_3_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_3_2.xml
deleted file mode 100644
index acaa273..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_3_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6H5C3.9,6 3,6.9 3,8v8c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM19,16H5V8h14V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_5_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_5_4.xml
deleted file mode 100644
index e9fc8e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_5_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.9,4 3,4.9 3,6v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,18H5V6h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_7_5.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_7_5.xml
deleted file mode 100644
index d151917..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_7_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C3.9,5 3,5.9 3,7v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7C21,5.9 20.1,5 19,5zM19,17H5V7h14V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_din.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_din.xml
deleted file mode 100644
index 941565a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_din.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_free.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_free.xml
deleted file mode 100644
index c43776a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v4h2L5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2zM5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_landscape.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_landscape.xml
deleted file mode 100644
index 9ebb272..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_original.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_original.xml
deleted file mode 100644
index 16bed25..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_original.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM13.96,12.29l-2.75,3.54 -1.96,-2.36L6.5,17h11l-3.54,-4.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_portrait.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_portrait.xml
deleted file mode 100644
index 967824b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,5c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_rotate.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_rotate.xml
deleted file mode 100644
index ec20d79..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_rotate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.47,21.49C4.2,19.93 1.86,16.76 1.5,13L0,13c0.51,6.16 5.66,11 11.95,11 0.23,0 0.44,-0.02 0.66,-0.03L8.8,20.15l-1.33,1.34zM12.05,0c-0.23,0 -0.44,0.02 -0.66,0.04l3.81,3.81 1.33,-1.33C19.8,4.07 22.14,7.24 22.5,11L24,11c-0.51,-6.16 -5.66,-11 -11.95,-11zM16,14h2L18,8c0,-1.11 -0.9,-2 -2,-2h-6v2h6v6zM8,16L8,4L6,4v2L4,6v2h2v8c0,1.1 0.89,2 2,2h8v2h2v-2h2v-2L8,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/crop_square.xml b/compose/material/material/icons/generator/raw-icons/outlined/crop_square.xml
deleted file mode 100644
index 419cdf9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/crop_square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4L6,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,6c0,-1.1 -0.9,-2 -2,-2zM18,18L6,18L6,6h12v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cruelty_free.xml b/compose/material/material/icons/generator/raw-icons/outlined/cruelty_free.xml
deleted file mode 100644
index 3b0c5cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cruelty_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14c-0.24,-0.24 -0.44,-0.49 -0.65,-0.75C17.51,11.5 19,8.56 19,5c0,-1.95 -0.74,-3 -2,-3c-1.54,0 -3.96,2.06 -5,5.97C10.96,4.06 8.54,2 7,2C5.74,2 5,3.05 5,5c0,3.56 1.49,6.5 2.65,8.25C7.44,13.51 7.24,13.76 7,14c-0.25,0.25 -2,1.39 -2,3.5C5,19.98 7.02,22 9.5,22c1.5,0 2.5,-0.5 2.5,-0.5s1,0.5 2.5,0.5c2.48,0 4.5,-2.02 4.5,-4.5C19,15.39 17.25,14.25 17,14zM16.88,4.03C16.94,4.2 17,4.51 17,5c0,2.84 -1.11,5.24 -2.07,6.78c-0.38,-0.26 -0.83,-0.48 -1.4,-0.62C13.77,6.64 15.97,4.33 16.88,4.03zM7,5c0,-0.49 0.06,-0.8 0.12,-0.97c0.91,0.3 3.11,2.61 3.36,7.13c-0.58,0.14 -1.03,0.35 -1.4,0.62C8.11,10.24 7,7.84 7,5zM14.5,20c-1,0 -1.8,-0.33 -2.22,-0.56C12.7,19.26 13,18.73 13,18.5c0,-0.28 -0.45,-0.5 -1,-0.5s-1,0.22 -1,0.5c0,0.23 0.3,0.76 0.72,0.94C11.3,19.67 10.5,20 9.5,20C8.12,20 7,18.88 7,17.5c0,-0.7 0.43,-1.24 1,-1.73c0.44,-0.36 0.61,-0.52 1.3,-1.37c0.76,-0.95 1.09,-1.4 2.7,-1.4s1.94,0.45 2.7,1.4c0.69,0.85 0.86,1.01 1.3,1.37c0.57,0.49 1,1.03 1,1.73C17,18.88 15.88,20 14.5,20zM14,16c0,0.41 -0.22,0.75 -0.5,0.75S13,16.41 13,16c0,-0.41 0.22,-0.75 0.5,-0.75S14,15.59 14,16zM11,16c0,0.41 -0.22,0.75 -0.5,0.75S10,16.41 10,16c0,-0.41 0.22,-0.75 0.5,-0.75S11,15.59 11,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/css.xml b/compose/material/material/icons/generator/raw-icons/outlined/css.xml
deleted file mode 100644
index 3fdd1d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/css.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,14v-1H11v0.5h2v-1h-2.5c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H13v-0.5h-2v1h2.5c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1h-3C9.95,15 9.5,14.55 9.5,14zM17,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1h-2.5v-1h2V11H21v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2.5v1h-2V13H16v1C16,14.55 16.45,15 17,15zM8,10c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1H6.5v0.5h-2v-3h2V11H8V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_bitcoin.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_bitcoin.xml
deleted file mode 100644
index 8fcc49e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_bitcoin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.57C17.65,10.88 18,9.98 18,9c0,-1.86 -1.27,-3.43 -3,-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2c2.21,0 4,-1.79 4,-4C19,13.55 18.22,12.27 17.06,11.57zM10,7h4c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-4V7zM15,17h-5v-4h5c1.1,0 2,0.9 2,2S16.1,17 15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_exchange.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_exchange.xml
deleted file mode 100644
index 672b0ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_exchange.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.89,11.1c-1.78,-0.59 -2.64,-0.96 -2.64,-1.9c0,-1.02 1.11,-1.39 1.81,-1.39c1.31,0 1.79,0.99 1.9,1.34l1.58,-0.67C15.39,8.03 14.72,6.56 13,6.24V5h-2v1.26C8.52,6.82 8.51,9.12 8.51,9.22c0,2.27 2.25,2.91 3.35,3.31c1.58,0.56 2.28,1.07 2.28,2.03c0,1.13 -1.05,1.61 -1.98,1.61c-1.82,0 -2.34,-1.87 -2.4,-2.09L8.1,14.75c0.63,2.19 2.28,2.78 2.9,2.96V19h2v-1.24c0.4,-0.09 2.9,-0.59 2.9,-3.22C15.9,13.15 15.29,11.93 12.89,11.1zM3,21H1v-6h6v2l-2.48,0c1.61,2.41 4.36,4 7.48,4c4.97,0 9,-4.03 9,-9h2c0,6.08 -4.92,11 -11,11c-3.72,0 -7.01,-1.85 -9,-4.67L3,21zM1,12C1,5.92 5.92,1 12,1c3.72,0 7.01,1.85 9,4.67L21,3h2v6h-6V7l2.48,0C17.87,4.59 15.12,3 12,3c-4.97,0 -9,4.03 -9,9H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_franc.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_franc.xml
deleted file mode 100644
index 679d05e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_franc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5l0,-2l-11,0l0,13l-2,0l0,2l2,0l0,3l2,0l0,-3l4,0l0,-2l-4,0l0,-3l8,0l0,-2l-8,0l0,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_lira.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_lira.xml
deleted file mode 100644
index 857ee0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_lira.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0 5,-2.24 5,-5h2c0,3.87 -3.13,7 -7,7H9v-5.16l-3,1.88l0,-2.36l3,-1.88v-2.36L6,13l0,-2.36L9,8.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_pound.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_pound.xml
deleted file mode 100644
index 7297f11..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_pound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,21c1.93,0 3.62,-1.17 4,-3l-1.75,-0.88C16,18.21 15.33,19 14,19l-4.9,0c0.83,-1 1.5,-2.34 1.5,-4c0,-0.35 -0.03,-0.69 -0.08,-1L14,14v-2l-4.18,0C9,10.42 8,9.6 8,8c0,-1.93 1.57,-3.5 3.5,-3.5c1.5,0 2.79,0.95 3.28,2.28L16.63,6c-0.8,-2.05 -2.79,-3.5 -5.13,-3.5C8.46,2.5 6,4.96 6,8c0,1.78 0.79,2.9 1.49,4L6,12v2l2.47,0c0.08,0.31 0.13,0.64 0.13,1c0,2.7 -2.6,4 -2.6,4v2H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_ruble.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_ruble.xml
deleted file mode 100644
index 15154683..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_ruble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0 5.5,-2.46 5.5,-5.5C19,5.46 16.54,3 13.5,3zM13.5,12H9V5h4.5C15.43,5 17,6.57 17,8.5S15.43,12 13.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_rupee.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_rupee.xml
deleted file mode 100644
index 422698e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_rupee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.66,7C13.1,5.82 11.9,5 10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58 0.84,1.26 1.05,2L18,7v2l-2.02,0c-0.25,2.8 -2.61,5 -5.48,5H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0 3.22,-1.3 3.46,-3L6,9V7L13.66,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_yen.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_yen.xml
deleted file mode 100644
index 16f26eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_yen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,11l4.08,0l0,2l-5,0l0,2l5,0l0,2l-5,0l0,4l-2,0l0,-4l-5,0l0,-2l5,0l0,-2l-5,0l0,-2l4.08,0l-5.08,-8l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/currency_yuan.xml b/compose/material/material/icons/generator/raw-icons/outlined/currency_yuan.xml
deleted file mode 100644
index 5fe3115..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/currency_yuan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.28,12l4.72,0l0,2l-5,0l0,7l-2,0l0,-7l-5,0l0,-2l4.72,0l-5.72,-9l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/curtains.xml b/compose/material/material/icons/generator/raw-icons/outlined/curtains.xml
deleted file mode 100644
index 42720b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/curtains.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM18,10.86c-2.05,-0.58 -3.64,-2.93 -3.94,-5.86H18V10.86zM15.81,12c-2.04,1.35 -3.5,3.94 -3.76,7h-0.09c-0.26,-3.06 -1.72,-5.65 -3.76,-7c2.04,-1.35 3.5,-3.94 3.76,-7h0.09C12.31,8.06 13.77,10.65 15.81,12zM9.94,5C9.64,7.93 8.05,10.27 6,10.86V5H9.94zM6,13.14c2.05,0.58 3.64,2.93 3.94,5.86H6V13.14zM14.06,19c0.3,-2.93 1.89,-5.27 3.94,-5.86V19H14.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/curtains_closed.xml b/compose/material/material/icons/generator/raw-icons/outlined/curtains_closed.xml
deleted file mode 100644
index 6c23c2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/curtains_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM13,5v14h-2V5H13zM6,5h3v14H6V5zM15,19V5h3v14H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/cyclone.xml b/compose/material/material/icons/generator/raw-icons/outlined/cyclone.xml
deleted file mode 100644
index dd08136a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/cyclone.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4C16,9.79 14.21,8 12,8zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.47V5.35C20.05,4.77 16.56,4 12,4C9.85,4 7.89,4.86 6.46,6.24C6.59,5.39 6.86,3.84 7.47,2H5.35C4.77,3.95 4,7.44 4,12c0,2.15 0.86,4.11 2.24,5.54c-0.85,-0.14 -2.4,-0.4 -4.24,-1.01v2.12C3.95,19.23 7.44,20 12,20c2.15,0 4.11,-0.86 5.54,-2.24c-0.14,0.85 -0.4,2.4 -1.01,4.24h2.12C19.23,20.05 20,16.56 20,12c0,-2.15 -0.86,-4.11 -2.24,-5.54C18.61,6.59 20.16,6.86 22,7.47zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S15.31,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dangerous.xml b/compose/material/material/icons/generator/raw-icons/outlined/dangerous.xml
deleted file mode 100644
index af622af..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dangerous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9zM14.83,7.76L12,10.59L9.17,7.76L7.76,9.17L10.59,12l-2.83,2.83l1.41,1.41L12,13.41l2.83,2.83l1.41,-1.41L13.41,12l2.83,-2.83L14.83,7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dark_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/dark_mode.xml
deleted file mode 100644
index 7e631f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dark_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.37,5.51C9.19,6.15 9.1,6.82 9.1,7.5c0,4.08 3.32,7.4 7.4,7.4c0.68,0 1.35,-0.09 1.99,-0.27C17.45,17.19 14.93,19 12,19c-3.86,0 -7,-3.14 -7,-7C5,9.07 6.81,6.55 9.37,5.51zM12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9c0,-0.46 -0.04,-0.92 -0.1,-1.36c-0.98,1.37 -2.58,2.26 -4.4,2.26c-2.98,0 -5.4,-2.42 -5.4,-5.4c0,-1.81 0.89,-3.42 2.26,-4.4C12.92,3.04 12.46,3 12,3L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dashboard.xml b/compose/material/material/icons/generator/raw-icons/outlined/dashboard.xml
deleted file mode 100644
index 1af0721..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v2h-4L15,5h4M9,5v6L5,11L5,5h4m10,8v6h-4v-6h4M9,17v2L5,19v-2h4M21,3h-8v6h8L21,3zM11,3L3,3v10h8L11,3zM21,11h-8v10h8L21,11zM11,15L3,15v6h8v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dashboard_customize.xml b/compose/material/material/icons/generator/raw-icons/outlined/dashboard_customize.xml
deleted file mode 100644
index 3fde4b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dashboard_customize.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/data_array.xml b/compose/material/material/icons/generator/raw-icons/outlined/data_array.xml
deleted file mode 100644
index 3f9d0b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/data_array.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4l0,2l3,0l0,12l-3,0l0,2l5,0l0,-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20l5,0l0,-2l-3,0l0,-12l3,0l0,-2l-5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/data_exploration.xml b/compose/material/material/icons/generator/raw-icons/outlined/data_exploration.xml
deleted file mode 100644
index ca26eff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/data_exploration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10h8c1.1,0 2,-0.9 2,-2v-8C22,6.48 17.52,2 12,2zM12,20c-2.89,0 -5.43,-1.54 -6.83,-3.84l2.95,-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5l-3.69,3.7C4.11,13.5 4,12.76 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM19.5,20.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.05,20.5 19.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/data_object.xml b/compose/material/material/icons/generator/raw-icons/outlined/data_object.xml
deleted file mode 100644
index a924fe6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/data_object.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7v2c0,0.55 -0.45,1 -1,1H2v4h1c0.55,0 1,0.45 1,1v2c0,1.65 1.35,3 3,3h3v-2H7c-0.55,0 -1,-0.45 -1,-1v-2c0,-1.3 -0.84,-2.42 -2,-2.83v-0.34C5.16,11.42 6,10.3 6,9V7c0,-0.55 0.45,-1 1,-1h3V4H7C5.35,4 4,5.35 4,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10c-0.55,0 -1,-0.45 -1,-1V7c0,-1.65 -1.35,-3 -3,-3h-3v2h3c0.55,0 1,0.45 1,1v2c0,1.3 0.84,2.42 2,2.83v0.34c-1.16,0.41 -2,1.52 -2,2.83v2c0,0.55 -0.45,1 -1,1h-3v2h3c1.65,0 3,-1.35 3,-3v-2c0,-0.55 0.45,-1 1,-1h1v-4H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/data_saver_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/data_saver_off.xml
deleted file mode 100644
index 7a0a8be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/data_saver_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/data_saver_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/data_saver_on.xml
deleted file mode 100644
index cd4a458..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/data_saver_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11zM13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/data_thresholding.xml b/compose/material/material/icons/generator/raw-icons/outlined/data_thresholding.xml
deleted file mode 100644
index bbeb6ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/data_thresholding.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19h-1.73L19,17.27V19zM19,16h-0.85l-3,3h-1.62l3,-3h-2.12l-3,3H9.8l3,-3h-2.12l-3,3H5.84l3,-3H6.72L5,17.72V5h14V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,11l2,2l5.08,-5.09l-1.41,-1.41l-3.67,3.67l-2,-2l-4.42,4.42l1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/data_usage.xml b/compose/material/material/icons/generator/raw-icons/outlined/data_usage.xml
deleted file mode 100644
index e1919ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/data_usage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92 0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53c0.56,-1.24 0.88,-2.62 0.88,-4.07 0,-5.18 -3.95,-9.45 -9,-9.95zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-3.53 2.61,-6.43 6,-6.92V2.05c-5.06,0.5 -9,4.76 -9,9.95 0,5.52 4.47,10 9.99,10 3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dataset.xml b/compose/material/material/icons/generator/raw-icons/outlined/dataset.xml
deleted file mode 100644
index c346a9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dataset.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h4v4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dataset_linked.xml b/compose/material/material/icons/generator/raw-icons/outlined/dataset_linked.xml
deleted file mode 100644
index c582668..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dataset_linked.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h1.09c0.28,-1.67 1.24,-3.1 2.6,-4H7V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19V5h14v7h1c0.34,0 0.67,0.04 1,0.09V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h3.81c-0.35,-0.61 -0.6,-1.28 -0.72,-2H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20h-2c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2h2v-2h-2c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4h2V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14h-2v2h2c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-2v2h2c2.21,0 4,-1.79 4,-4C24,15.79 22.21,14 20,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19l0,-2l-3,0l-3,0l0,2l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/date_range.xml b/compose/material/material/icons/generator/raw-icons/outlined/date_range.xml
deleted file mode 100644
index 24a82f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/date_range.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h2v2L7,13v-2zM21,6v14c0,1.1 -0.9,2 -2,2L5,22c-1.11,0 -2,-0.9 -2,-2l0.01,-14c0,-1.1 0.88,-2 1.99,-2h1L6,2h2v2h8L16,2h2v2h1c1.1,0 2,0.9 2,2zM5,8h14L19,6L5,6v2zM19,20L19,10L5,10v10h14zM15,13h2v-2h-2v2zM11,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/deblur.xml b/compose/material/material/icons/generator/raw-icons/outlined/deblur.xml
deleted file mode 100644
index 1408bd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/deblur.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v2c3.86,0 7,3.14 7,7s-3.14,7 -7,7v2c4.96,0 9,-4.04 9,-9S16.96,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/deck.xml b/compose/material/material/icons/generator/raw-icons/outlined/deck.xml
deleted file mode 100644
index 6df4849..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/deck.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9L12,2L2,9h9v13h2V9H22zM12,4.44L15.66,7H8.34L12,4.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.14,12l-1.96,0.37l0.82,4.37l0,5.26l2,0l0.02,-4l1.98,0l0,4l2,0l0,-6l-4.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,16l-4.1,0l0,6l2,0l0,-4l1.98,0l0.02,4l2,0l0,-5.26l0.82,-4.37l-1.96,-0.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dehaze.xml b/compose/material/material/icons/generator/raw-icons/outlined/dehaze.xml
deleted file mode 100644
index d068f3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dehaze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2h20v-2L2,16zM2,11v2h20v-2L2,11zM2,6v2h20L22,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/delete.xml b/compose/material/material/icons/generator/raw-icons/outlined/delete.xml
deleted file mode 100644
index 04aa8f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9v10H8V9h8m-1.5,-6h-5l-1,1H5v2h14V4h-3.5l-1,-1zM18,7H6v12c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/delete_forever.xml b/compose/material/material/icons/generator/raw-icons/outlined/delete_forever.xml
deleted file mode 100644
index 3e9f870..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/delete_forever.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,10.47L12,12.59l-2.13,-2.12 -1.41,1.41L10.59,14l-2.12,2.12 1.41,1.41L12,15.41l2.12,2.12 1.41,-1.41L13.41,14l2.12,-2.12zM15.5,4l-1,-1h-5l-1,1H5v2h14V4zM6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM8,9h8v10H8V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/delete_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/delete_outline.xml
deleted file mode 100644
index 332f09a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/delete_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8,9h8v10L8,19L8,9zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4h-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/delete_sweep.xml b/compose/material/material/icons/generator/raw-icons/outlined/delete_sweep.xml
deleted file mode 100644
index 4602dc2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/delete_sweep.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16h4v2h-4zM15,8h7v2h-7zM15,12h6v2h-6zM3,18c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2L13,8L3,8v10zM5,10h6v8L5,18v-8zM10,4L6,4L5,5L2,5v2h12L14,5h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/delivery_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/delivery_dining.xml
deleted file mode 100644
index d83b274..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/delivery_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35V7zM4,14v-1c0,-1.1 0.9,-2 2,-2h2v3H4zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1C20,16.55 19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/density_large.xml b/compose/material/material/icons/generator/raw-icons/outlined/density_large.xml
deleted file mode 100644
index d542113..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/density_large.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/density_medium.xml b/compose/material/material/icons/generator/raw-icons/outlined/density_medium.xml
deleted file mode 100644
index c06902b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/density_medium.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/density_small.xml b/compose/material/material/icons/generator/raw-icons/outlined/density_small.xml
deleted file mode 100644
index eb68a8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/density_small.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,20h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/departure_board.xml b/compose/material/material/icons/generator/raw-icons/outlined/departure_board.xml
deleted file mode 100644
index 028efc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/departure_board.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1c-2.39,0 -4.49,1.2 -5.75,3.02C9.84,4.01 9.43,4 9,4c-4.42,0 -8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22L2,22c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1.78c0.61,-0.55 1,-1.34 1,-2.22v-3.08c3.39,-0.49 6,-3.39 6,-6.92 0,-3.87 -3.13,-7 -7,-7zM9,6h0.29c-0.09,0.32 -0.16,0.66 -0.21,0.99L3.34,6.99C3.89,6.46 5.31,6 9,6zM3,8.99h6.08c0.16,1.11 0.57,2.13 1.18,3.01L3,12L3,8.99zM15,18c0,0.37 -0.21,0.62 -0.34,0.73l-0.29,0.27L3.63,19l-0.29,-0.27C3.21,18.62 3,18.37 3,18v-4h9.41c0.78,0.47 1.65,0.79 2.59,0.92L15,18zM16,13c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM16.5,4L15,4v5l3.62,2.16 0.75,-1.23 -2.87,-1.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/description.xml b/compose/material/material/icons/generator/raw-icons/outlined/description.xml
deleted file mode 100644
index 2c4ff39..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/description.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h8v2L8,18zM8,12h8v2L8,14zM14,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,20L6,20L6,4h7v5h5v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/deselect.xml b/compose/material/material/icons/generator/raw-icons/outlined/deselect.xml
deleted file mode 100644
index bf594e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/deselect.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2H3V13zM7,21h2v-2H7V21zM13,3h-2v2h2V3zM19,3v2h2C21,3.9 20.1,3 19,3zM5,21v-2H3C3,20.1 3.9,21 5,21zM3,17h2v-2H3V17zM11,21h2v-2h-2V21zM19,13h2v-2h-2V13zM19,9h2V7h-2V9zM15,5h2V3h-2V5zM7.83,5L7,4.17V3h2v2H7.83zM19.83,17L19,16.17V15h2v2H19.83zM21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19zM9,15v-3.17L12.17,15H9zM15,12.17V9h-3.17l-2,-2H17v7.17L15,12.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/design_services.xml b/compose/material/material/icons/generator/raw-icons/outlined/design_services.xml
deleted file mode 100644
index dfc6b69..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/design_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.97,7.27c0.39,-0.39 0.39,-1.02 0,-1.41l-2.83,-2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.49,4.49L8.35,3.63c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l3.89,3.89L3,16.76V21h4.24l4.52,-4.52l3.89,3.89c0.95,0.95 2.23,0.6 2.83,0l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83l-3.89,-3.89L20.97,7.27zM5.04,6.94l1.89,-1.9c0,0 0,0 0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19,-1.19l1.2,1.2l-1.9,1.9L5.04,6.94zM16.27,14.38l-1.19,1.19l1.41,1.41l1.19,-1.19l1.27,1.27l-1.9,1.9l-3.89,-3.89l1.9,-1.9L16.27,14.38zM6.41,19H5v-1.41l9.61,-9.61l1.3,1.3l0.11,0.11L6.41,19zM16.02,6.56l1.41,-1.41l1.41,1.41l-1.41,1.41L16.02,6.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/desk.xml b/compose/material/material/icons/generator/raw-icons/outlined/desk.xml
deleted file mode 100644
index c6f9813..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/desk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6v12h2V8h10v10h2v-2h4v2h2V6H2zM20,8v2h-4V8H20zM16,14v-2h4v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/desktop_access_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/desktop_access_disabled.xml
deleted file mode 100644
index 8d86d81..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/desktop_access_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.69L0,3.1l1,0.99V16c0,1.1 0.89,2 1.99,2H10v2H8v2h8v-2h-2v-2h0.9l6,6 1.41,-1.41 -20.9,-20.9zM2.99,16V6.09L12.9,16H2.99zM4.55,2l2,2H21v12h-2.45l2,2h0.44c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2H4.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/desktop_mac.xml b/compose/material/material/icons/generator/raw-icons/outlined/desktop_mac.xml
deleted file mode 100644
index db583ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/desktop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7l-2,3v1h8v-1l-2,-3h7c1.1,0 2,-0.9 2,-2L23,4c0,-1.1 -0.9,-2 -2,-2zM21,14L3,14L3,4h18v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/desktop_windows.xml b/compose/material/material/icons/generator/raw-icons/outlined/desktop_windows.xml
deleted file mode 100644
index 01ab0aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/desktop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7v2L8,20v2h8v-2h-2v-2h7c1.1,0 2,-0.9 2,-2L23,4c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,4h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/details.xml b/compose/material/material/icons/generator/raw-icons/outlined/details.xml
deleted file mode 100644
index 91fe861..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/details.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,21h20L12,3zM13,8.92L18.6,19H13V8.92zM11,8.92V19H5.4L11,8.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/developer_board.xml b/compose/material/material/icons/generator/raw-icons/outlined/developer_board.xml
deleted file mode 100644
index c99a204..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/developer_board.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9L22,7h-2L20,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-2h2v-2h-2v-2h2v-2h-2L20,9h2zM18,19L4,19L4,5h14v14zM6,13h5v4L6,17v-4zM12,7h4v3h-4L12,7zM6,7h5v5L6,12L6,7zM12,11h4v6h-4v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/developer_board_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/developer_board_off.xml
deleted file mode 100644
index a9827ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/developer_board_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0,-1.1 -0.9,-2 -2,-2H5.83L7.83,5zM12,9.17V7h4v3h-3.17L12,9.17zM9.83,7H11v1.17L9.83,7zM13.83,11H16v2.17L13.83,11zM18,21c0.06,0 0.11,0 0.16,-0.01l2.32,2.32l1.41,-1.41L2.1,2.1L0.69,3.51l1.32,1.32C2,4.89 2,4.94 2,5v14c0,1.1 0.9,2 2,2H18zM4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/developer_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/developer_mode.xml
deleted file mode 100644
index ded6b03..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/developer_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v2h2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1c-1.1,0 -2,0.9 -2,2v4h2L7,5zM15.41,16.59L20,12l-4.59,-4.59L14,8.83 17.17,12 14,15.17l1.41,1.42zM10,15.17L6.83,12 10,8.83 8.59,7.41 4,12l4.59,4.59L10,15.17zM17,19L7,19v-2L5,17v4c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/device_hub.xml b/compose/material/material/icons/generator/raw-icons/outlined/device_hub.xml
deleted file mode 100644
index 3490a5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/device_hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16l-4,-4V8.82C14.16,8.4 15,7.3 15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6c0,1.3 0.84,2.4 2,2.82V12l-4,4H3v5h5v-3.05l4,-4.2 4,4.2V21h5v-5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/device_thermostat.xml b/compose/material/material/icons/generator/raw-icons/outlined/device_thermostat.xml
deleted file mode 100644
index 06fdc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/device_thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,15.37 16.21,13.91 15,13zM11,11V5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h-1v1h1v1v1h-1v1h1v1H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/device_unknown.xml b/compose/material/material/icons/generator/raw-icons/outlined/device_unknown.xml
deleted file mode 100644
index ef1b42a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/device_unknown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14zM12,6.72c-1.96,0 -3.5,1.52 -3.5,3.47h1.75c0,-0.93 0.82,-1.75 1.75,-1.75s1.75,0.82 1.75,1.75c0,1.75 -2.63,1.57 -2.63,4.45h1.76c0,-1.96 2.62,-2.19 2.62,-4.45 0,-1.96 -1.54,-3.47 -3.5,-3.47zM11,16h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/devices.xml b/compose/material/material/icons/generator/raw-icons/outlined/devices.xml
deleted file mode 100644
index 7be6491..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h18L22,4L4,4c-1.1,0 -2,0.9 -2,2v11L0,17v3h14v-3L4,17L4,6zM23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/devices_fold.xml b/compose/material/material/icons/generator/raw-icons/outlined/devices_fold.xml
deleted file mode 100644
index 8b110b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/devices_fold.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-3c0,-1.44 -1.47,-2.4 -2.79,-1.84l-3,1.29C10.48,2.76 10,3.49 10,4.29V19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM15,16.68l-3,1.29V4.29L15,3V16.68zM20,19h-5.33l1.12,-0.48C16.52,18.2 17,17.48 17,16.68V5h3V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/devices_other.xml b/compose/material/material/icons/generator/raw-icons/outlined/devices_other.xml
deleted file mode 100644
index f766805..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/devices_other.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h18L21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h4v-2L3,18L3,6zM13,12L9,12v1.78c-0.61,0.55 -1,1.33 -1,2.22 0,0.89 0.39,1.67 1,2.22L9,20h4v-1.78c0.61,-0.55 1,-1.34 1,-2.22s-0.39,-1.67 -1,-2.22L13,12zM11,17.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM22,8h-6c-0.5,0 -1,0.5 -1,1v10c0,0.5 0.5,1 1,1h6c0.5,0 1,-0.5 1,-1L23,9c0,-0.5 -0.5,-1 -1,-1zM21,18h-4v-8h4v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dialer_sip.xml b/compose/material/material/icons/generator/raw-icons/outlined/dialer_sip.xml
deleted file mode 100644
index 2b37285..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dialer_sip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3h1v5h-1zM15,5h-2L13,4h2L15,3h-3v3h2v1h-2v1h3zM18,3v5h1L19,6h2L21,3h-3zM20,5h-1L19,4h1v1zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.7,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.27,-0.26 0.35,-0.65 0.24,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.46,2.59L5.79,8.8c-0.41,-1.21 -0.67,-2.48 -0.76,-3.8zM19,18.97c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.2c0.85,0.24 1.71,0.39 2.59,0.45v1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dialpad.xml b/compose/material/material/icons/generator/raw-icons/outlined/dialpad.xml
deleted file mode 100644
index a9a5544..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dialpad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/diamond.xml b/compose/material/material/icons/generator/raw-icons/outlined/diamond.xml
deleted file mode 100644
index 3ef98c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/diamond.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5L2,9l10,12L22,9L19,3zM9.62,8l1.5,-3h1.76l1.5,3H9.62zM11,10v6.68L5.44,10H11zM13,10h5.56L13,16.68V10zM19.26,8h-2.65l-1.5,-3h2.65L19.26,8zM6.24,5h2.65l-1.5,3H4.74L6.24,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/difference.xml b/compose/material/material/icons/generator/raw-icons/outlined/difference.xml
deleted file mode 100644
index d069017..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/difference.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,23H4c-1.1,0 -2,-0.9 -2,-2V7h2v14h14V23zM14.5,7V5h-2v2h-2v2h2v2h2V9h2V7H14.5zM16.5,13h-6v2h6V13zM15,1H8C6.9,1 6.01,1.9 6.01,3L6,17c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V7L15,1zM19,17H8V3h6.17L19,7.83V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/dining.xml
deleted file mode 100644
index 3ef2ef4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.75,6c-1.37,0 -2.5,1.52 -2.5,3.4c0,1.48 0.7,2.71 1.67,3.18L14,12.62V19h1.5v-6.38l0.08,-0.03c0.97,-0.47 1.67,-1.7 1.67,-3.18C17.25,7.53 16.13,6 14.75,6M6.5,9.96M10.5,6C10.23,6 10,6.22 10,6.5V9H9.25V6.5c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5V9H7.5V6.5C7.5,6.22 7.28,6 7,6S6.5,6.22 6.5,6.5v3.8c0,0.93 0.64,1.71 1.5,1.93V19h1.5v-6.77c0.86,-0.22 1.5,-1 1.5,-1.93V6.5C11,6.22 10.78,6 10.5,6zM20,4H4v16h16V4M20,2c1.1,0 2,0.9 2,2v16c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V4c0,-1.1 0.9,-2 2,-2H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dinner_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/dinner_dining.xml
deleted file mode 100644
index 42310e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dinner_dining.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19l2,2l16,0l2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h16.97c0,0 0,0 0,0c0.29,-3.26 -2.28,-6 -5.48,-6c-2.35,0 -4.35,1.48 -5.14,3.55C8.94,15.32 8.48,15.17 8,15.08V9h1.75C10.99,9 12,7.99 12,6.75h9v-1.5h-9C12,4.01 10.99,3 9.75,3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85 3.22,17.39 3,18zM14.5,14c0.99,0 1.91,0.4 2.58,1.14c0.24,0.26 0.44,0.55 0.58,0.86h-6.32C11.92,14.79 13.15,14 14.5,14zM8,4.5h2v0.75H8V4.5zM8,6.75h2V7.5H8V6.75zM5.5,4.5h1v0.75h-1V4.5zM5.5,6.75h1V7.5h-1V6.75zM5.5,9h1v6.06c-0.35,0.06 -0.68,0.17 -1,0.3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions.xml
deleted file mode 100644
index 00da82e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.43,10.59l-9.01,-9.01c-0.75,-0.75 -2.07,-0.76 -2.83,0l-9,9c-0.78,0.78 -0.78,2.04 0,2.82l9,9c0.39,0.39 0.9,0.58 1.41,0.58 0.51,0 1.02,-0.19 1.41,-0.58l8.99,-8.99c0.79,-0.76 0.8,-2.02 0.03,-2.82zM12.01,20.99l-9,-9 9,-9 9,9 -9,9zM8,11v4h2v-3h4v2.5l3.5,-3.5L14,7.5L14,10L9,10c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_bike.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_bike.xml
deleted file mode 100644
index ab98d3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_bike.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM5,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5zM10.8,10.5l2.4,-2.4 0.8,0.8c1.3,1.3 3,2.1 5.1,2.1L19.1,9c-1.5,0 -2.7,-0.6 -3.6,-1.5l-1.9,-1.9c-0.5,-0.4 -1,-0.6 -1.6,-0.6s-1.1,0.2 -1.4,0.6L7.8,8.4c-0.4,0.4 -0.6,0.9 -0.6,1.4 0,0.6 0.2,1.1 0.6,1.4L11,14v5h2v-6.2l-2.2,-2.3zM19,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM19,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_boat.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_boat.xml
deleted file mode 100644
index 5596a1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_boat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v1h-2L11,3h2m-1,7.11l5.38,1.77 2.39,0.78 -1.12,3.97c-0.54,-0.3 -0.94,-0.71 -1.14,-0.94L16,13.96l-1.51,1.72c-0.34,0.4 -1.28,1.32 -2.49,1.32s-2.15,-0.92 -2.49,-1.32L8,13.96l-1.51,1.72c-0.2,0.23 -0.6,0.63 -1.14,0.93l-1.13,-3.96 2.4,-0.79L12,10.11M15,1L9,1v3L6,4c-1.1,0 -2,0.9 -2,2v4.62l-1.29,0.42c-0.26,0.08 -0.48,0.26 -0.6,0.5s-0.15,0.52 -0.06,0.78L3.95,19L4,19c1.6,0 3.02,-0.88 4,-2 0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l1.89,-6.68c0.08,-0.26 0.06,-0.54 -0.06,-0.78s-0.34,-0.42 -0.6,-0.5L20,10.62L20,6c0,-1.1 -0.9,-2 -2,-2h-3L15,1zM6,9.97L6,6h12v3.97L12,8 6,9.97zM16,19.68c-1.22,0.85 -2.61,1.28 -4,1.28s-2.78,-0.43 -4,-1.28C6.78,20.53 5.39,21 4,21L2,21v2h2c1.38,0 2.74,-0.35 4,-0.99 1.26,0.64 2.63,0.97 4,0.97s2.74,-0.32 4,-0.97c1.26,0.65 2.62,0.99 4,0.99h2v-2h-2c-1.39,0 -2.78,-0.47 -4,-1.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_boat_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_boat_filled.xml
deleted file mode 100644
index f2e210b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_boat_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,12.66l-1.12,3.97c-0.78,-0.43 -1.07,-0.86 -2.65,-2.67C14.4,15.78 13.57,17 12,17c-1.53,0 -2.34,-1.15 -4,-3.04c-1.6,1.82 -1.87,2.21 -2.65,2.65l-1.13,-3.96L12,10.11L19.77,12.66zM15,1H9v3H6C4.9,4 4,4.9 4,6v4.62l-1.29,0.42c-0.63,0.19 -0.81,0.84 -0.66,1.28L3.95,19H4c1.6,0 3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l1.91,-6.68c0.11,-0.37 0.04,-1.06 -0.66,-1.28L20,10.62V6c0,-1.1 -0.9,-2 -2,-2h-3V1L15,1zM6,9.97V6h12v3.97L12,8L6,9.97L6,9.97zM16,19.68c-1.22,0.85 -2.61,1.28 -4,1.28s-2.78,-0.43 -4,-1.28C6.78,20.53 5.39,21 4,21H2v2h2c1.38,0 2.74,-0.35 4,-0.99c1.26,0.64 2.63,0.97 4,0.97s2.74,-0.32 4,-0.97c1.26,0.65 2.62,0.99 4,0.99h2v-2h-2C18.61,21 17.22,20.53 16,19.68L16,19.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_bus.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_bus.xml
deleted file mode 100644
index 43df25c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_bus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.42,0 -8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22L5,20c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1.78c0.61,-0.55 1,-1.34 1,-2.22L20,6c0,-3.5 -3.58,-4 -8,-4zM17.66,4.99L6.34,4.99C6.89,4.46 8.31,4 12,4s5.11,0.46 5.66,0.99zM18,6.99L18,10L6,10L6,6.99h12zM17.66,16.73l-0.29,0.27L6.63,17l-0.29,-0.27C6.21,16.62 6,16.37 6,16v-4h12v4c0,0.37 -0.21,0.62 -0.34,0.73z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_bus_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_bus_filled.xml
deleted file mode 100644
index 6e9d2a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_bus_filled.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5c0,0.95 0.38,1.81 1,2.44V20c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-2.06c0.62,-0.63 1,-1.49 1,-2.44V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H6.43C7.03,4.48 8.48,4 12,4zM18,15c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2v-3h12V15zM18,10H6V7h12V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_car.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_car.xml
deleted file mode 100644
index 5fe9810..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_car.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,7h10.29l1.08,3.11H5.77L6.85,7zM19,17H5v-5h14v5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_car_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_car_filled.xml
deleted file mode 100644
index ab673d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_car_filled.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11C5.84,5 5.29,5.42 5.08,6.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,6.01zM6.85,7h10.29l1.04,3H5.81L6.85,7zM19,17H5v-5h14V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_off.xml
deleted file mode 100644
index 47ce7b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,11.29l-9,-9c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09,-3.09C22.1,12.33 22.1,11.7 21.71,11.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.5l0,2.67l2.17,2.17l1.33,-1.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39 -0.39,1.02 0,1.41l9,9c0.39,0.39 1.02,0.39 1.41,0l3.09,-3.09l3.99,3.99l1.41,-1.41L2.81,2.81L1.39,4.22zM8.03,10.85C8.02,10.9 7.99,10.95 7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38,-2.38L8.03,10.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_railway.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_railway.xml
deleted file mode 100644
index 16c953f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_railway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1c-4.42,0 -8,0.5 -8,4v10.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,5c0,-3.5 -3.58,-4 -8,-4zM12,3c6,0 6,1.2 6,2L6,5c0,-0.8 0,-2 6,-2zM18,7v3L6,10L6,7h12zM16.5,17h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12h12v3.5c0,0.83 -0.67,1.5 -1.5,1.5zM12,12.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_railway_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_railway_filled.xml
deleted file mode 100644
index 7b76476..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_railway_filled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H6.43C7.03,4.48 8.48,4 12,4zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C6.67,17 6,16.33 6,15.5V12h12V15.5zM18,10H6V7h12V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_run.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_run.xml
deleted file mode 100644
index 077904a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_run.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,5.48c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.89,19.38l1,-4.4 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3c1.3,1.5 3.3,2.5 5.5,2.5v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.4,-0.6 -1,-1 -1.7,-1 -0.3,0 -0.5,0.1 -0.8,0.1l-5.2,2.2v4.7h2v-3.4l1.8,-0.7 -1.6,8.1 -4.9,-1 -0.4,2 7,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_subway.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_subway.xml
deleted file mode 100644
index 2516894..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_subway.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM17.66,5L6.43,5c0.61,-0.52 2.06,-1 5.57,-1 3.71,0 5.12,0.46 5.66,1zM11,7v3L6,10L6,7h5zM13,7h5v3h-5L13,7zM16.5,17h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12h12v3.5c0,0.83 -0.67,1.5 -1.5,1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_subway_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_subway_filled.xml
deleted file mode 100644
index a81a4ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_subway_filled.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H13h-2H6.43C7.03,4.48 8.48,4 12,4zM6,7h5v3H6V7zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C6.67,17 6,16.33 6,15.5V12h12V15.5zM18,10h-5V7h5V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_transit.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_transit.xml
deleted file mode 100644
index 2516894..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_transit.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM17.66,5L6.43,5c0.61,-0.52 2.06,-1 5.57,-1 3.71,0 5.12,0.46 5.66,1zM11,7v3L6,10L6,7h5zM13,7h5v3h-5L13,7zM16.5,17h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12h12v3.5c0,0.83 -0.67,1.5 -1.5,1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_transit_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_transit_filled.xml
deleted file mode 100644
index a81a4ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_transit_filled.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H13h-2H6.43C7.03,4.48 8.48,4 12,4zM6,7h5v3H6V7zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C6.67,17 6,16.33 6,15.5V12h12V15.5zM18,10h-5V7h5V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/directions_walk.xml b/compose/material/material/icons/generator/raw-icons/outlined/directions_walk.xml
deleted file mode 100644
index 4bbabfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/directions_walk.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.8,8.9L7,23h2.1l1.8,-8 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L6,8.3V13h2V9.6l1.8,-0.7"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dirty_lens.xml b/compose/material/material/icons/generator/raw-icons/outlined/dirty_lens.xml
deleted file mode 100644
index 158adc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dirty_lens.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19h-7.02c-0.22,-0.84 -0.52,-1.76 -0.13,-2.33c0.81,-1.12 2.67,1.77 3.81,-0.09c0.77,-1.57 -1.58,-1.29 -1.64,-2.12c-0.05,-0.84 3.68,0.17 3.04,-1.66c-0.61,-1.73 -2.42,0.48 -2.76,-0.53c-0.58,-1.74 4.7,-1.68 2.85,-4.01c-1.76,-2.22 -2.47,2.85 -4.41,2.33c-1.34,-0.36 -1.01,-2.88 -2.65,-2.44c-1.88,0.51 1.03,2.2 0,2.86c-0.96,0.63 -1.72,-0.92 -2.51,-1.19c-0.2,-0.07 -0.69,-0.05 -0.91,0.19c-0.78,0.86 0.28,1.16 0.25,1.91c-0.02,0.75 -1.59,0.49 -1.51,1.49c0.12,1.6 2.18,0.45 2.4,1.24c0.55,1.98 -1.89,2.15 -0.5,3.27c1.53,0.71 1.91,-1.94 2.8,-1.35c0.58,0.38 0.3,1.45 0.16,2.43H4V7h4.05l1.83,-2h4.24l1.83,2H20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.28,17.15c0,0.48 0.39,0.86 0.86,0.86c0.48,0 0.86,-0.38 0.86,-0.86s-0.39,-0.86 -0.86,-0.86C17.66,16.29 17.28,16.67 17.28,17.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/disabled_by_default.xml b/compose/material/material/icons/generator/raw-icons/outlined/disabled_by_default.xml
deleted file mode 100644
index 2e79702..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/disabled_by_default.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14V19zM3,3v18h18V3H3zM17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12L17,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/disabled_visible.xml b/compose/material/material/icons/generator/raw-icons/outlined/disabled_visible.xml
deleted file mode 100644
index 33f5a15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/disabled_visible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15c1.95,0 3.76,0.98 4.75,2.5C20.76,19.02 18.95,20 17,20s-3.76,-0.98 -4.75,-2.5C13.24,15.98 15.05,15 17,15zM17,13c-3.18,0 -5.9,1.87 -7,4.5c1.1,2.63 3.82,4.5 7,4.5s5.9,-1.87 7,-4.5C22.9,14.87 20.18,13 17,13zM17,19c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.17,16 17,16s1.5,0.67 1.5,1.5S17.83,19 17,19zM21.99,12.34C22,12.23 22,12.11 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,5.17 3.93,9.43 8.96,9.95c-0.93,-0.73 -1.72,-1.64 -2.32,-2.68C5.9,18 4,15.22 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l5.66,5.66c0.56,-0.4 1.17,-0.73 1.82,-1L7.1,5.69C8.45,4.63 10.15,4 12,4c4.24,0 7.7,3.29 7.98,7.45C20.69,11.67 21.37,11.97 21.99,12.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/disc_full.xml b/compose/material/material/icons/generator/raw-icons/outlined/disc_full.xml
deleted file mode 100644
index 80710ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/disc_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h2v5h-2zM10,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM10,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM20,14h2v2h-2zM10,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/discount.xml b/compose/material/material/icons/generator/raw-icons/outlined/discount.xml
deleted file mode 100644
index ec517a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/discount.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.79,21L3,11.21v2c0,0.53 0.21,1.04 0.59,1.41l7.79,7.79c0.78,0.78 2.05,0.78 2.83,0l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83L12.79,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.38,17.41c0.39,0.39 0.9,0.59 1.41,0.59c0.51,0 1.02,-0.2 1.41,-0.59l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83l-7.79,-7.79C12.25,0.21 11.74,0 11.21,0H5C3.9,0 3,0.9 3,2v6.21c0,0.53 0.21,1.04 0.59,1.41L11.38,17.41zM5,2h6.21L19,9.79L12.79,16L5,8.21V2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,4.25m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/display_settings.xml b/compose/material/material/icons/generator/raw-icons/outlined/display_settings.xml
deleted file mode 100644
index 63b842f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/display_settings.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9.75l1.5,0l0,-1.5l-1.5,0l0,-1.25l-1.5,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15l1.5,0l0,-4l-1.5,0l0,1.25l-1.5,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/diversity_1.xml b/compose/material/material/icons/generator/raw-icons/outlined/diversity_1.xml
deleted file mode 100644
index db20944..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/diversity_1.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,17.58C0.48,17.9 0,18.62 0,19.43V21l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,17.04 4.39,17 4,17C3.01,17 2.07,17.21 1.22,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,17.58C21.93,17.21 20.99,17 20,17c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V21l4.5,0v-1.57C24,18.62 23.52,17.9 22.78,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,16.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,17.13 6,18.21 6,19.39V21h12v-1.61C18,18.21 17.32,17.13 16.24,16.65zM8.07,19c0.09,-0.23 0.27,-0.42 0.49,-0.52c1.1,-0.49 2.26,-0.73 3.43,-0.73c1.18,0 2.33,0.25 3.43,0.73c0.23,0.1 0.4,0.29 0.49,0.52H8.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,10.34 9,12zM13,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,11.45 13,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.48,10.86C2.17,10.1 2,9.36 2,8.6C2,6.02 4.02,4 6.6,4c2.68,0 3.82,1.74 5.4,3.59C13.57,5.76 14.7,4 17.4,4C19.98,4 22,6.02 22,8.6c0,0.76 -0.17,1.5 -0.48,2.26c0.65,0.31 1.18,0.82 1.53,1.44C23.65,11.1 24,9.88 24,8.6C24,4.9 21.1,2 17.4,2c-2.09,0 -4.09,0.97 -5.4,2.51C10.69,2.97 8.69,2 6.6,2C2.9,2 0,4.9 0,8.6c0,1.28 0.35,2.5 0.96,3.7C1.31,11.68 1.84,11.17 2.48,10.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/diversity_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/diversity_2.xml
deleted file mode 100644
index b333db5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/diversity_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,15.9l1.42,-1.42C8.79,12.05 7,10.41 7,8.85C7,7.8 7.8,7 8.85,7c1.11,0 1.54,0.65 2.68,2h0.93c1.12,-1.31 1.53,-2 2.68,-2c0.87,0 1.55,0.54 1.77,1.32c0.35,-0.04 0.68,-0.06 1,-0.06c0.36,0 0.7,0.03 1.03,0.08C18.7,6.43 17.13,5 15.15,5c-0.12,0 -0.23,0.03 -0.35,0.04C14.92,4.71 15,4.37 15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4c0,0.37 0.08,0.71 0.2,1.04C9.08,5.03 8.97,5 8.85,5C6.69,5 5,6.69 5,8.85C5,11.27 7.04,13.16 10.1,15.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.24c-0.32,-0.18 -0.66,-0.29 -1,-0.35c0.07,-0.1 0.15,-0.18 0.21,-0.28c1.08,-1.87 0.46,-4.18 -1.41,-5.26c-2.09,-1.21 -4.76,-0.39 -8.65,0.9l0.52,1.94c3.47,-1.14 5.79,-1.88 7.14,-1.1c0.91,0.53 1.2,1.61 0.68,2.53c-0.56,0.96 -1.33,1 -3.07,1.32l-0.47,0.81c0.58,1.62 0.97,2.33 0.39,3.32c-0.53,0.91 -1.61,1.2 -2.53,0.68c-0.06,-0.03 -0.11,-0.09 -0.17,-0.13c-0.3,0.67 -0.64,1.24 -1.03,1.73c0.07,0.04 0.13,0.09 0.2,0.14c1.87,1.08 4.18,0.46 5.26,-1.41c0.06,-0.1 0.09,-0.21 0.14,-0.32c0.22,0.27 0.48,0.51 0.8,0.69c1.43,0.83 3.27,0.34 4.1,-1.1S23.93,17.06 22.5,16.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.32,14.01c-0.74,3.58 -1.27,5.95 -2.62,6.73c-0.91,0.53 -2,0.24 -2.53,-0.68c-0.56,-0.96 -0.2,-1.66 0.39,-3.32L7.1,15.93c-1.7,-0.31 -2.5,-0.33 -3.07,-1.32c-0.53,-0.91 -0.24,-2 0.68,-2.53c0.09,-0.05 0.19,-0.08 0.29,-0.11c-0.35,-0.56 -0.64,-1.17 -0.82,-1.85c-0.16,0.07 -0.32,0.14 -0.48,0.23c-1.87,1.08 -2.49,3.39 -1.41,5.26c0.06,0.1 0.14,0.18 0.21,0.28c-0.34,0.06 -0.68,0.17 -1,0.35c-1.43,0.83 -1.93,2.66 -1.1,4.1s2.66,1.93 4.1,1.1c0.32,-0.18 0.58,-0.42 0.8,-0.69c0.05,0.11 0.08,0.22 0.14,0.32c1.08,1.87 3.39,2.49 5.26,1.41c2.09,-1.21 2.71,-3.93 3.55,-7.94L12.32,14.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/diversity_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/diversity_3.xml
deleted file mode 100644
index bb41d74..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/diversity_3.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.32,13.01c0.96,0.02 1.85,0.5 2.45,1.34C9.5,15.38 10.71,16 12,16c1.29,0 2.5,-0.62 3.23,-1.66c0.6,-0.84 1.49,-1.32 2.45,-1.34C16.96,11.78 14.08,11 12,11C9.93,11 7.04,11.78 6.32,13.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13L4,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C1,11.66 2.34,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13L20,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C17,11.66 18.34,13 20,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,5.34 9,7C9,8.66 10.34,10 12,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-3.27c-0.77,0 -1.35,0.45 -1.68,0.92C16.01,14.98 14.69,17 12,17c-1.43,0 -3.03,-0.64 -4.05,-2.08C7.56,14.37 6.95,14 6.27,14H3c-1.1,0 -2,0.9 -2,2v4h7v-2.26c1.15,0.8 2.54,1.26 4,1.26s2.85,-0.46 4,-1.26V20h7v-4C23,14.9 22.1,14 21,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dns.xml b/compose/material/material/icons/generator/raw-icons/outlined/dns.xml
deleted file mode 100644
index dddbdb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dns.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15v4H5v-4h14m1,-2H4c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1zM7,18.5c-0.82,0 -1.5,-0.67 -1.5,-1.5s0.68,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,5v4H5V5h14m1,-2H4c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1V4c0,-0.55 -0.45,-1 -1,-1zM7,8.5c-0.82,0 -1.5,-0.67 -1.5,-1.5S6.18,5.5 7,5.5s1.5,0.68 1.5,1.5S7.83,8.5 7,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_disturb.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_alt.xml
deleted file mode 100644
index 3354d6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8 1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12c0,4.4 -3.6,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_off.xml
deleted file mode 100644
index cc26e0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8 0,1.41 -0.37,2.73 -1.01,3.88l1.46,1.46C21.43,15.79 22,13.96 22,12c0,-5.52 -4.48,-10 -10,-10 -1.96,0 -3.79,0.57 -5.33,1.55l1.46,1.46C9.27,4.37 10.59,4 12,4zM17,11h-2.88l2,2L17,13zM2.41,2.13L1,3.54l2.78,2.78C2.66,7.93 2,9.89 2,12c0,5.52 4.48,10 10,10 2.11,0 4.07,-0.66 5.68,-1.78L20.46,23l1.41,-1.41L2.41,2.13zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-1.56 0.45,-3 1.23,-4.23L8.46,11L7,11v2h3.46l5.77,5.77C15,19.55 13.56,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_on.xml
deleted file mode 100644
index 219b2a09..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM7,11h10v2L7,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb.xml
deleted file mode 100644
index cb2d8a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.55 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_alt.xml
deleted file mode 100644
index 16a9b46..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8c1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12C20,16.4 16.4,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_off.xml
deleted file mode 100644
index 50987bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.94,5.12C9.14,4.41 10.52,4 12,4c4.41,0 8,3.59 8,8c0,1.48 -0.41,2.86 -1.12,4.06l1.46,1.46C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66L7.94,5.12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06L8.17,11H7v2h3.17l5.88,5.88C14.86,19.59 13.48,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.83,11l2,2l1.17,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_on.xml
deleted file mode 100644
index 55b7821..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11v2h10v-2H7zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_on_total_silence.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_on_total_silence.xml
deleted file mode 100644
index 1bfaa5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_not_disturb_on_total_silence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM12,6c-3.3,0 -6,2.7 -6,6s2.7,6 6,6s6,-2.7 6,-6S15.4,6 12,6zM15,13H9v-2h6V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_not_step.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_not_step.xml
deleted file mode 100644
index 38703f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_not_step.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.51,15.68l-1.41,-1.41l4.48,-4.48L23,11.2L18.51,15.68zM14.98,12.15M14.98,12.15l3.07,-3.07L13.8,4.82l-3.08,3.07L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15zM21.18,21.2l-1.41,1.41l-5.94,-5.94L10.5,20H1v-2.63c0,-0.84 0.52,-1.57 1.3,-1.88c0.58,-0.23 1.28,-0.56 1.97,-1.02l1.38,1.38C5.74,15.95 5.87,16 6,16s0.26,-0.05 0.36,-0.15c0.2,-0.2 0.2,-0.51 0,-0.71l-1.28,-1.28c0.27,-0.24 0.53,-0.51 0.77,-0.8l1.27,1.27c0.09,0.1 0.23,0.15 0.35,0.15s0.25,-0.05 0.35,-0.15c0.2,-0.2 0.2,-0.51 0,-0.71l-1.4,-1.4c0.19,-0.34 0.34,-0.72 0.45,-1.12l1.71,1.72c0.09,0.1 0.23,0.15 0.35,0.15s0.25,-0.05 0.35,-0.15c0.19,-0.2 0.19,-0.5 0.01,-0.7l-7.9,-7.9l1.42,-1.41L21.18,21.2zM12.42,15.26l-1.67,-1.68L7.42,16.9c-0.78,0.78 -2.05,0.78 -2.83,-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14 -0.59,0.27 -0.89,0.39L3.03,18h6.64L12.42,15.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/do_not_touch.xml b/compose/material/material/icons/generator/raw-icons/outlined/do_not_touch.xml
deleted file mode 100644
index a09bcb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/do_not_touch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6,-1.48c-0.17,-0.09 -0.34,-0.14 -0.54,-0.14c-0.26,0 -0.5,0.09 -0.7,0.26L2,13.88l6.8,7.18c0.57,0.6 1.35,0.94 2.18,0.94H17c0.62,0 1.18,-0.19 1.66,-0.52l1.12,1.12l1.41,-1.41L2.81,2.81zM17,20h-6c-0.39,0 -0.64,-0.23 -0.75,-0.36L6.87,16H9l0,-4.17l8.14,8.14C17.09,19.98 17.05,20 17,20zM13.83,11H14V3.25C14,2.56 14.56,2 15.25,2s1.25,0.56 1.25,1.25V11h1V5.25C17.5,4.56 18.06,4 18.75,4S20,4.56 20,5.25v11.92l-2,-2V13h-2.17L13.83,11zM13,10.17V2.25C13,1.56 12.44,1 11.75,1S10.5,1.56 10.5,2.25v5.42L13,10.17zM9.5,6.67V4.25C9.5,3.56 8.94,3 8.25,3c-0.67,0 -1.2,0.53 -1.24,1.18v0L9.5,6.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dock.xml b/compose/material/material/icons/generator/raw-icons/outlined/dock.xml
deleted file mode 100644
index 0bb97b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,23h8v-2L8,21v2zM16,1.01L8,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,3c0,-1.1 -0.9,-1.99 -2,-1.99zM16,15L8,15L8,5h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/document_scanner.xml b/compose/material/material/icons/generator/raw-icons/outlined/document_scanner.xml
deleted file mode 100644
index 74f399c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/document_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3H4v3H2V1h5V3zM22,6V1h-5v2h3v3H22zM7,21H4v-3H2v5h5V21zM20,18v3h-3v2h5v-5H20zM17,6H7v12h10V6zM19,18c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2V18zM15,8H9v2h6V8zM15,11H9v2h6V11zM15,14H9v2h6V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/domain.xml b/compose/material/material/icons/generator/raw-icons/outlined/domain.xml
deleted file mode 100644
index 23ee37d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/domain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,3L2,3v18h20L22,7L12,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/domain_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/domain_add.xml
deleted file mode 100644
index cddd4ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/domain_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12zM6,19H4v-2h2V19zM6,15H4v-2h2V15zM6,11H4V9h2V11zM6,7H4V5h2V7zM10,19H8v-2h2V19zM10,15H8v-2h2V15zM10,11H8V9h2V11zM10,7H8V5h2V7zM24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24zM18,11h-2v2h2V11zM18,15h-2v2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/domain_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/domain_disabled.xml
deleted file mode 100644
index d188b74..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/domain_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.69L0,3.1l2,2L2,21h15.9l3,3 1.41,-1.41 -20.9,-20.9zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM4,11L4,9h2v2L4,11zM10,19L8,19v-2h2v2zM8,15v-2h2v2L8,15zM12,19v-2h1.9l2,2L12,19zM8,5h2v2h-0.45L12,9.45L12,9h8v8.45l2,2L22,7L12,7L12,3L5.55,3L8,5.45zM16,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/domain_verification.xml b/compose/material/material/icons/generator/raw-icons/outlined/domain_verification.xml
deleted file mode 100644
index 1220bdd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/domain_verification.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,10.88l-1.42,-1.42l-4.24,4.25l-2.12,-2.13l-1.42,1.42l3.54,3.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.89,4 3,4.9 3,6v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.11,4 19,4zM19,18H5V8h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/done.xml b/compose/material/material/icons/generator/raw-icons/outlined/done.xml
deleted file mode 100644
index 899cbb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/done_all.xml b/compose/material/material/icons/generator/raw-icons/outlined/done_all.xml
deleted file mode 100644
index 648f00d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/done_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7l-1.41,-1.41 -6.34,6.34 1.41,1.41L18,7zM22.24,5.59L11.66,16.17 7.48,12l-1.41,1.41L11.66,19l12,-12 -1.42,-1.41zM0.41,13.41L6,19l1.41,-1.41L1.83,12 0.41,13.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/done_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/done_outline.xml
deleted file mode 100644
index 2a7b063..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/done_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,4.93l1.4,1.4L8.43,19.07l-5.6,-5.6 1.4,-1.4 4.2,4.2L19.77,4.93m0,-2.83L8.43,13.44l-4.2,-4.2L0,13.47l8.43,8.43L24,6.33 19.77,2.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/donut_large.xml b/compose/material/material/icons/generator/raw-icons/outlined/donut_large.xml
deleted file mode 100644
index ea91fcb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/donut_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.08c3.06,0.44 5.48,2.86 5.92,5.92h3.03c-0.47,-4.72 -4.23,-8.48 -8.95,-8.95v3.03zM18.92,13c-0.44,3.06 -2.86,5.48 -5.92,5.92v3.03c4.72,-0.47 8.48,-4.23 8.95,-8.95h-3.03zM11,18.92c-3.39,-0.49 -6,-3.4 -6,-6.92s2.61,-6.43 6,-6.92V2.05c-5.05,0.5 -9,4.76 -9,9.95 0,5.19 3.95,9.45 9,9.95v-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/donut_small.xml b/compose/material/material/icons/generator/raw-icons/outlined/donut_small.xml
deleted file mode 100644
index 6ef0b72..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/donut_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.82,11h7.13c-0.47,-4.72 -4.23,-8.48 -8.95,-8.95v7.13c0.85,0.31 1.51,0.97 1.82,1.82zM15,4.58C17,5.4 18.6,7 19.42,9h-3.43c-0.28,-0.37 -0.62,-0.71 -0.99,-0.99L15,4.58zM2,12c0,5.19 3.95,9.45 9,9.95v-7.13C9.84,14.4 9,13.3 9,12c0,-1.3 0.84,-2.4 2,-2.82L11,2.05c-5.05,0.5 -9,4.76 -9,9.95zM9,4.58v3.44c-1.23,0.92 -2,2.39 -2,3.98 0,1.59 0.77,3.06 2,3.99v3.44C6.04,18.24 4,15.35 4,12c0,-3.35 2.04,-6.24 5,-7.42zM13,14.82v7.13c4.72,-0.47 8.48,-4.23 8.95,-8.95h-7.13c-0.31,0.85 -0.97,1.51 -1.82,1.82zM15,15.99c0.37,-0.28 0.71,-0.61 0.99,-0.99h3.43C18.6,17 17,18.6 15,19.42v-3.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/door_back.xml b/compose/material/material/icons/generator/raw-icons/outlined/door_back.xml
deleted file mode 100644
index 03a785e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/door_back.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H3v2h18v-2H19zM17,19H7V5h10V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/door_front.xml b/compose/material/material/icons/generator/raw-icons/outlined/door_front.xml
deleted file mode 100644
index dbacd3c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/door_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H3v2h18v-2H19zM17,19H7V5h10V19zM13,11h2v2h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/door_sliding.xml b/compose/material/material/icons/generator/raw-icons/outlined/door_sliding.xml
deleted file mode 100644
index 4aee778..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/door_sliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13H8v-2h2V13zM16,11h-2v2h2V11zM21,19v2H3v-2h1V5c0,-1.1 0.9,-2 2,-2h12c1.1,0 2,0.9 2,2v14H21zM11,5H6v14h5V5zM18,5h-5v14h5V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/doorbell.xml b/compose/material/material/icons/generator/raw-icons/outlined/doorbell.xml
deleted file mode 100644
index cd1d159..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/doorbell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16.5h2c0,0.55 -0.45,1 -1,1S11,17.05 11,16.5zM15,15v-2.34c0,-1.54 -0.81,-2.82 -2.25,-3.16V9.25c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75V9.5C9.82,9.84 9,11.12 9,12.66V15H8v1h8v-1H15zM12,5.5L6,10v9h12v-9L12,5.5M12,3l8,6v12H4V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/double_arrow.xml b/compose/material/material/icons/generator/raw-icons/outlined/double_arrow.xml
deleted file mode 100644
index f38e6bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/double_arrow.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/downhill_skiing.xml b/compose/material/material/icons/generator/raw-icons/outlined/downhill_skiing.xml
deleted file mode 100644
index 311a4a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/downhill_skiing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18.5,3.4 18.5,4.5zM15.78,20.9l0.76,0.27c0.62,0.21 1.27,0.33 1.96,0.33c0.84,0 1.65,-0.18 2.38,-0.5L22,22.13C20.95,22.68 19.76,23 18.5,23c-0.86,0 -1.68,-0.14 -2.45,-0.41L2,17.47l0.5,-1.41l6.9,2.51l1.72,-4.44L7.55,10.4C6.66,9.46 6.88,7.93 8,7.28l3.48,-2.01c1.1,-0.64 2.52,-0.1 2.91,1.11l0.33,1.08c0.44,1.42 1.48,2.57 2.83,3.14L18.07,9l1.43,0.46l-1.12,3.45c-2.45,-0.4 -4.48,-2.07 -5.38,-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1,-6.44h0l0,0c0.46,0.18 0.94,0.31 1.44,0.41L15.78,20.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/download.xml b/compose/material/material/icons/generator/raw-icons/outlined/download.xml
deleted file mode 100644
index dc16366..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4L15,3L9,3v6L5,9l7,7 7,-7zM11,11L11,5h2v6h1.17L12,13.17 9.83,11L11,11zM5,18h14v2L5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/download_done.xml b/compose/material/material/icons/generator/raw-icons/outlined/download_done.xml
deleted file mode 100644
index a8299bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/download_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2L5,20v-2zM9.6,15.3L5,10.7l2,-1.9 2.6,2.6L17,4l2,2 -9.4,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/download_for_offline.xml b/compose/material/material/icons/generator/raw-icons/outlined/download_for_offline.xml
deleted file mode 100644
index d7fe5ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/download_for_offline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM14.59,8.59L16,10l-4,4l-4,-4l1.41,-1.41L11,10.17V6h2v4.17L14.59,8.59zM17,17H7v-2h10V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/downloading.xml b/compose/material/material/icons/generator/raw-icons/outlined/downloading.xml
deleted file mode 100644
index 7ff16aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/downloading.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.32,4.26C16.84,3.05 15.01,2.25 13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.32,4.26zM19.93,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1C19.17,8.21 19.75,9.54 19.93,11zM18.31,16.9l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32h-2.02C19.75,14.46 19.17,15.79 18.31,16.9zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43C15.79,19.17 14.46,19.75 13,19.93zM15.59,10.59L13,13.17V7h-2v6.17l-2.59,-2.59L7,12l5,5l5,-5L15.59,10.59zM11,19.93v2.02c-5.05,-0.5 -9,-4.76 -9,-9.95s3.95,-9.45 9,-9.95v2.02C7.05,4.56 4,7.92 4,12S7.05,19.44 11,19.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drafts.xml b/compose/material/material/icons/generator/raw-icons/outlined/drafts.xml
deleted file mode 100644
index 8e074b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drafts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,8c0,-0.72 -0.37,-1.35 -0.94,-1.7L12,1 2.95,6.3C2.38,6.65 2,7.28 2,8v10c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2l-0.01,-10zM19.99,8v0.01L12,13 4,8l8,-4.68L19.99,8zM4,18v-7.66l8,5.02 7.99,-4.99L20,18L4,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drag_handle.xml b/compose/material/material/icons/generator/raw-icons/outlined/drag_handle.xml
deleted file mode 100644
index 892b734..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drag_handle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9H4v2h16V9zM4,15h16v-2H4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drag_indicator.xml b/compose/material/material/icons/generator/raw-icons/outlined/drag_indicator.xml
deleted file mode 100644
index 6dcde80..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drag_indicator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2 0.9,-2 2,-2 2,0.9 2,2zM9,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM9,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM15,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/draw.xml b/compose/material/material/icons/generator/raw-icons/outlined/draw.xml
deleted file mode 100644
index 01912c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/draw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.85,10.39l1.06,-1.06c0.78,-0.78 0.78,-2.05 0,-2.83L18.5,5.09c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.06,1.06L18.85,10.39zM14.61,11.81L7.41,19H6v-1.41l7.19,-7.19L14.61,11.81zM13.19,7.56L4,16.76V21h4.24l9.19,-9.19L13.19,7.56L13.19,7.56zM19,17.5c0,2.19 -2.54,3.5 -5,3.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1c1.54,0 3,-0.73 3,-1.5c0,-0.47 -0.48,-0.87 -1.23,-1.2l1.48,-1.48C18.32,15.45 19,16.29 19,17.5zM4.58,13.35C3.61,12.79 3,12.06 3,11c0,-1.8 1.89,-2.63 3.56,-3.36C7.59,7.18 9,6.56 9,6c0,-0.41 -0.78,-1 -2,-1C5.74,5 5.2,5.61 5.17,5.64C4.82,6.05 4.19,6.1 3.77,5.76C3.36,5.42 3.28,4.81 3.62,4.38C3.73,4.24 4.76,3 7,3c2.24,0 4,1.32 4,3c0,1.87 -1.93,2.72 -3.64,3.47C6.42,9.88 5,10.5 5,11c0,0.31 0.43,0.6 1.07,0.86L4.58,13.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drive_eta.xml b/compose/material/material/icons/generator/raw-icons/outlined/drive_eta.xml
deleted file mode 100644
index 9d9c83b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drive_eta.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,11v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,6h10.29l1.04,3H5.81l1.04,-3zM19,16H5v-4.66l0.12,-0.34h13.77l0.11,0.34V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drive_file_move.xml b/compose/material/material/icons/generator/raw-icons/outlined/drive_file_move.xml
deleted file mode 100644
index 661df7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drive_file_move.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18H4V6h5.17l1.41,1.41L11.17,8H20V18zM12.16,12H8v2h4.16l-1.59,1.59L11.99,17L16,13.01L11.99,9l-1.41,1.41L12.16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drive_file_move_rtl.xml b/compose/material/material/icons/generator/raw-icons/outlined/drive_file_move_rtl.xml
deleted file mode 100644
index 6dc9d2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drive_file_move_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18H4V6h5.17l2,2H20V18zM13.41,15.59L12,17l-4,-4l4,-4l1.41,1.41L11.83,12H16v2h-4.17L13.41,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drive_file_rename_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/drive_file_rename_outline.xml
deleted file mode 100644
index 9565e86..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drive_file_rename_outline.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16l-4,4l10,0l0,-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.06,7.19L3,16.25V20h3.75l9.06,-9.06L12.06,7.19zM5.92,18H5v-0.92l7.06,-7.06l0.92,0.92L5.92,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.71,8.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34C16.17,4.09 15.92,4 15.66,4c-0.25,0 -0.51,0.1 -0.7,0.29l-1.83,1.83l3.75,3.75L18.71,8.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/drive_folder_upload.xml b/compose/material/material/icons/generator/raw-icons/outlined/drive_folder_upload.xml
deleted file mode 100644
index 627cea7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/drive_folder_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18zM9.41,14.42L11,12.84V17h2v-4.16l1.59,1.59L16,13.01L12.01,9L8,13.01L9.41,14.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dry.xml b/compose/material/material/icons/generator/raw-icons/outlined/dry.xml
deleted file mode 100644
index 973979b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dry.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25c0,-0.67 -0.53,-1.2 -1.18,-1.24L8.87,10l1.48,-2.6c0.09,-0.17 0.14,-0.34 0.14,-0.54c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.12,5l-7.18,6.8C1.34,12.36 1,13.15 1,13.97V20c0,1.66 1.34,3 3,3h13.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1H20.75zM10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21zM15.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L14.98,9h1.91l0.06,-0.43C17.16,7.21 16.68,5.86 15.65,4.86zM19.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L18.98,9h1.91l0.06,-0.43C21.16,7.21 20.68,5.86 19.65,4.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dry_cleaning.xml b/compose/material/material/icons/generator/raw-icons/outlined/dry_cleaning.xml
deleted file mode 100644
index f944bb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dry_cleaning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.56,11.36L13,8.44V7c0,-0.55 -0.45,-1 -1,-1l0,0c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1h2c0,-1.84 -1.66,-3.3 -3.56,-2.95C10.26,2.27 9.29,3.22 9.06,4.4C8.76,5.96 9.66,7.34 11,7.82v0.63l-6.56,2.92C3.56,11.75 3,12.62 3,13.57v0.01C3,14.92 4.08,16 5.42,16H7v6h10v-6h1.58c1.34,0 2.42,-1.08 2.42,-2.42v-0.01C21,12.62 20.44,11.75 19.56,11.36zM15,20H9v-5h6V20zM18.58,14H17v-1H7v1H5.42c-0.46,0 -0.58,-0.65 -0.17,-0.81l6.75,-3l6.75,3C19.17,13.38 19.03,14 18.58,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/duo.xml b/compose/material/material/icons/generator/raw-icons/outlined/duo.xml
deleted file mode 100644
index acc6429..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/duo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h-8C6.38,2 2,6.66 2,12.28 2,17.5 6.49,22 11.72,22 17.39,22 22,17.62 22,12L22,4c0,-1.1 -0.9,-2 -2,-2zM17,15l-3,-2v2L7,15L7,9h7v2l3,-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dvr.xml b/compose/material/material/icons/generator/raw-icons/outlined/dvr.xml
deleted file mode 100644
index 0827cd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dvr.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM19,8L8,8v2h11L19,8zM19,12L8,12v2h11v-2zM7,8L5,8v2h2L7,8zM7,12L5,12v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dynamic_feed.xml b/compose/material/material/icons/generator/raw-icons/outlined/dynamic_feed.xml
deleted file mode 100644
index 7ebb5b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dynamic_feed.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8H6v7c0,1.1 0.9,2 2,2h9v-2H8V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-8c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,11h-8V7h8V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12H2v7c0,1.1 0.9,2 2,2h9v-2H4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/dynamic_form.xml b/compose/material/material/icons/generator/raw-icons/outlined/dynamic_form.xml
deleted file mode 100644
index de4b735..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/dynamic_form.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h9V11zM4,9h7V6H4V9zM15,20H4c-1.1,0 -2,-0.9 -2,-2v-3c0,-1.1 0.9,-2 2,-2h11V20zM4,18h9v-3H4V18zM22,9h-2l2,-5h-7v7h2v9L22,9zM4.75,17.25h1.5v-1.5h-1.5V17.25zM4.75,8.25h1.5v-1.5h-1.5V8.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/e_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/e_mobiledata.xml
deleted file mode 100644
index 724ce8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/e_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/earbuds.xml b/compose/material/material/icons/generator/raw-icons/outlined/earbuds.xml
deleted file mode 100644
index a3f9ec7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/earbuds.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3c-2.76,0 -5,2.24 -5,5v8c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3V9h0.83C7.44,9 8.89,7.82 9,6.21c0.12,-1.69 -1.16,-3.1 -2.8,-3.21C4.44,2.89 3,4.42 3,6.19V16c0,2.76 2.24,5 5,5s5,-2.24 5,-5V8c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v7h-0.83c-1.61,0 -3.06,1.18 -3.17,2.79c-0.12,1.69 1.16,3.1 2.8,3.21c1.76,0.12 3.2,-1.42 3.2,-3.18V8C21,5.24 18.76,3 16,3zM5,6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1S6.55,7 6,7H5V6zM19,18c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1h1V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/earbuds_battery.xml b/compose/material/material/icons/generator/raw-icons/outlined/earbuds_battery.xml
deleted file mode 100644
index 1137346..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/earbuds_battery.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1V6h-2v1h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7zM20,16h-2V9h2V16zM14,9.38C14,7.51 12.49,6 10.62,6S7.25,7.51 7.25,9.38v5.25c0,1.04 -0.84,1.88 -1.88,1.88S3.5,15.66 3.5,14.62v-4.7C3.66,9.97 3.83,10 4,10c1.1,0 2,-0.9 2,-2S5.1,6 4,6S2,6.9 2,8c0,0.04 0,6.62 0,6.62C2,16.49 3.51,18 5.38,18s3.38,-1.51 3.38,-3.38V9.38c0,-1.04 0.84,-1.88 1.88,-1.88s1.88,0.84 1.88,1.88v4.7C12.34,14.03 12.17,14 12,14c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2C14,15.96 14,9.38 14,9.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/east.xml b/compose/material/material/icons/generator/raw-icons/outlined/east.xml
deleted file mode 100644
index 5a9661d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7,-7L15,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/eco.xml b/compose/material/material/icons/generator/raw-icons/outlined/eco.xml
deleted file mode 100644
index 6839a3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/eco.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.05,8.05c-2.73,2.73 -2.73,7.17 0,9.9C7.42,19.32 9.21,20 11,20s3.58,-0.68 4.95,-2.05C19.43,14.47 20,4 20,4S9.53,4.57 6.05,8.05zM14.54,16.54C13.59,17.48 12.34,18 11,18c-0.89,0 -1.73,-0.25 -2.48,-0.68c0.92,-2.88 2.62,-5.41 4.88,-7.32c-2.63,1.36 -4.84,3.46 -6.37,6c-1.48,-1.96 -1.35,-4.75 0.44,-6.54C9.21,7.72 14.04,6.65 17.8,6.2C17.35,9.96 16.28,14.79 14.54,16.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edgesensor_high.xml b/compose/material/material/icons/generator/raw-icons/outlined/edgesensor_high.xml
deleted file mode 100644
index 0eb72ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edgesensor_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7h2v7H3V7zM0,10h2v7H0V10zM22,7h2v7h-2V7zM19,10h2v7h-2V10zM16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,20H8v-1h8V20zM16,17H8V7h8V17zM8,5V4h8v1H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edgesensor_low.xml b/compose/material/material/icons/generator/raw-icons/outlined/edgesensor_low.xml
deleted file mode 100644
index 19b9f33..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edgesensor_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v7H2V7zM20,10h2v7h-2V10zM16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,20H8v-1h8V20zM16,17H8V7h8V17zM8,5V4h8v1H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit.xml
deleted file mode 100644
index 47ea705..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.02l0.92,0.92L5.92,19L5,19v-0.92l9.06,-9.06M17.66,3c-0.25,0 -0.51,0.1 -0.7,0.29l-1.83,1.83 3.75,3.75 1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.2,-0.2 -0.45,-0.29 -0.71,-0.29zM14.06,6.19L3,17.25L3,21h3.75L17.81,9.94l-3.75,-3.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_attributes.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_attributes.xml
deleted file mode 100644
index aa1a892..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_attributes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,7L6.37,7C3.96,7 2,9.24 2,12s1.96,5 4.37,5h11.26c2.41,0 4.37,-2.24 4.37,-5s-1.96,-5 -4.37,-5zM17.63,15L6.37,15C5.09,15 4,13.63 4,12s1.09,-3 2.37,-3h11.26C18.91,9 20,10.37 20,12s-1.09,3 -2.37,3zM7.24,13.06l-1.87,-1.87 -0.7,0.7 2.57,2.57 4.22,-4.22 -0.7,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_calendar.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_calendar.xml
deleted file mode 100644
index 1f1a454..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h14v2h2V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h7v-2H5V10zM5,6h14v2H5V6zM22.84,16.28l-0.71,0.71l-2.12,-2.12l0.71,-0.71c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71C23.23,15.26 23.23,15.89 22.84,16.28zM19.3,15.58l2.12,2.12l-5.3,5.3H14v-2.12L19.3,15.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_location.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_location.xml
deleted file mode 100644
index 43a21c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.17,4.91L17.1,3.84l-5.55,5.55v1.08h1.08l5.54,-5.56zM16,2.74l1.29,-1.29a1.49,1.49 0,0 1,2.12 0l1.15,1.15c0.59,0.59 0.59,1.54 0,2.12l-0.68,0.68 -0.02,0.02 -0.58,0.58 -6,6L10,12L10,8.74l6,-6zM13.72,2.19l-0.55,0.55 -1.27,1.27c-3.3,0.05 -5.9,2.6 -5.9,6.2 0,2.34 1.95,5.44 6,9.14 4.05,-3.7 6,-6.79 6,-9.14v-0.1l1.8,-1.8c0.13,0.6 0.2,1.24 0.2,1.9 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8 0,-4.98 3.8,-8.2 8,-8.2 0.58,0 1.16,0.06 1.72,0.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_location_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_location_alt.xml
deleted file mode 100644
index 596e995..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_location_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11h2.12l6.16,-6.16l-2.12,-2.12L11,8.88V11zM20.71,2L20,1.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.72,0.72l2.12,2.12l0.72,-0.72C21.1,3.02 21.1,2.39 20.71,2zM17.9,9.05C17.96,9.41 18,9.79 18,10.2c0,1.71 -1.08,4.64 -6,9.14c-4.92,-4.49 -6,-7.43 -6,-9.14C6,6.17 9.09,4 12,4c0.32,0 0.65,0.03 0.97,0.08l1.65,-1.65C13.78,2.16 12.9,2 12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-1.01 -0.16,-1.94 -0.45,-2.8L17.9,9.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_note.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_note.xml
deleted file mode 100644
index 1641196..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2H3V10zM3,8h11V6H3V8zM3,16h7v-2H3V16zM18.01,12.87l0.71,-0.71c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71c0.39,0.39 0.39,1.02 0,1.41l-0.71,0.71L18.01,12.87zM17.3,13.58l-5.3,5.3V21h2.12l5.3,-5.3L17.3,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_notifications.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_notifications.xml
deleted file mode 100644
index 6784129..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25zM20.85,5.81l-1.06,-1.06c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.85,0.85l1.77,1.77l0.85,-0.85C21.05,6.32 21.05,6 20.85,5.81zM18,12.2V17h2v2H4v-2h2v-7c0,-2.79 1.91,-5.14 4.5,-5.8V3.5C10.5,2.67 11.17,2 12,2s1.5,0.67 1.5,1.5v0.7c0.82,0.21 1.57,0.59 2.21,1.09l-1.43,1.43C13.64,6.26 12.85,6 12,6c-2.21,0 -4,1.79 -4,4v7h8v-2.8L18,12.2zM10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_off.xml
deleted file mode 100644
index 2bd7242..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.02l0.92,0.92l-1.11,1.11l1.41,1.41l2.52,-2.52l-3.75,-3.75l-2.52,2.52l1.41,1.41L14.06,9.02zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34C18.17,3.09 17.92,3 17.66,3s-0.51,0.1 -0.7,0.29l-1.83,1.83l3.75,3.75L20.71,7.04zM2.81,2.81L1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71,-5.71l7.32,7.32l1.41,-1.41L2.81,2.81zM5.92,19H5v-0.92l5.13,-5.13l0.92,0.92L5.92,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/edit_road.xml b/compose/material/material/icons/generator/raw-icons/outlined/edit_road.xml
deleted file mode 100644
index 83b375d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/edit_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-2,0l0,7.9l2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.56,12.59l-1.15,-1.15c-0.59,-0.59 -1.54,-0.59 -2.12,0L14,16.73V20h3.27l5.29,-5.29C23.15,14.12 23.15,13.17 22.56,12.59zM16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/egg.xml b/compose/material/material/icons/generator/raw-icons/outlined/egg.xml
deleted file mode 100644
index 6d4c167..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/egg.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.5,3 5,9.33 5,14c0,3.87 3.13,7 7,7c3.87,0 7,-3.13 7,-7C19,9.33 15.5,3 12,3zM12,19c-2.76,0 -5,-2.24 -5,-5c0,-4.09 3.07,-9 5,-9s5,4.91 5,9C17,16.76 14.76,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16c-0.58,0 -3,-0.08 -3,-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1c0,3 1.99,5 5,5c0.55,0 1,-0.45 1,-1S13.55,16 13,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/egg_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/egg_alt.xml
deleted file mode 100644
index 5a0a73b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/egg_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9C17,7 15.99,2 9.97,2C4.95,2 1.94,6 2,11.52C2.06,17.04 6.96,19 9.97,19c2.01,0 2.01,3 6.02,3C19,22 22,19 22,15.02C22,12 21.01,11 19,9zM15.99,20c-1.49,0 -1.96,-0.5 -2.68,-1.26C12.66,18.05 11.66,17 9.97,17C8.33,17 4.05,16.01 4,11.5C3.97,8.99 4.68,6.88 5.99,5.55C7.01,4.52 8.35,4 9.97,4c3.34,0 4.51,1.86 5.86,4.02c0.55,0.88 1.07,1.71 1.76,2.39c1.9,1.89 2.41,2.4 2.41,4.61C20,17.87 17.88,20 15.99,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3.5,0a3.5,3.5 0,1 1,7 0a3.5,3.5 0,1 1,-7 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/eject.xml b/compose/material/material/icons/generator/raw-icons/outlined/eject.xml
deleted file mode 100644
index 63b4cad..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/eject.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h14v2L5,19zM12,5L5.33,15h13.34L12,5zM12,8.6l2.93,4.4L9.07,13L12,8.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/elderly.xml b/compose/material/material/icons/generator/raw-icons/outlined/elderly.xml
deleted file mode 100644
index dc601c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/elderly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM20,12.5V23h-1V12.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S18,12.22 18,12.5v1h-1v-0.69c-1.46,-0.38 -2.7,-1.29 -3.51,-2.52C13.18,11.16 13,12.07 13,13c0,0.23 0.02,0.46 0.03,0.69L15,16.5V23h-2v-5l-1.78,-2.54L11,19l-3,4l-1.6,-1.2L9,18.33V13c0,-1.15 0.18,-2.29 0.5,-3.39L8,10.46V14H6V9.3l5.4,-3.07l0,0.01c0.59,-0.31 1.32,-0.33 1.94,0.03c0.36,0.21 0.63,0.51 0.8,0.85l0,0l0.79,1.67C15.58,10.1 16.94,11 18.5,11C19.33,11 20,11.67 20,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/elderly_woman.xml b/compose/material/material/icons/generator/raw-icons/outlined/elderly_woman.xml
deleted file mode 100644
index 895ad06..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/elderly_woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,11c-1.56,0 -2.92,-0.9 -3.58,-2.21l-0.79,-1.67l0,0C14.12,7.1 13.63,6 12.34,6l0,0C8.72,6 6,16.69 6,19h2.5l-2.1,2.8L8,23l3,-4h2v4h2v-4.03L13,13l0.49,-2.71c0.81,1.23 2.05,2.14 3.51,2.52v0.69h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V23h1V12.5C20,11.67 19.33,11 18.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.6,2.91c-0.06,0.19 -0.1,0.38 -0.1,0.59c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2c-0.21,0 -0.4,0.04 -0.59,0.1C12.76,1.25 12.41,1 12,1c-0.55,0 -1,0.45 -1,1C11,2.41 11.25,2.76 11.6,2.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electric_bike.xml b/compose/material/material/icons/generator/raw-icons/outlined/electric_bike.xml
deleted file mode 100644
index d23d67e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electric_bike.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-0.82l-1.7,-4.68C16.19,1.53 15.44,1 14.6,1H12v2h2.6l1.46,4h-4.81l-0.36,-1H12V4H7v2h1.75l1.82,5H9.9C9.46,8.77 7.59,7.12 5.25,7.01C2.45,6.87 0,9.2 0,12c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,9.2 21.8,7 19,7zM7.82,13c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,11h-1.4l-0.73,-2H15C14.56,9.58 14.24,10.25 14.1,11zM19,15c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67C18.94,9.01 18.97,9 19,9c1.68,0 3,1.32 3,3S20.68,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electric_bolt.xml b/compose/material/material/icons/generator/raw-icons/outlined/electric_bolt.xml
deleted file mode 100644
index e7ae85c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electric_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.69,2.21L4.33,11.49c-0.64,0.58 -0.28,1.65 0.58,1.73L13,14l-4.85,6.76c-0.22,0.31 -0.19,0.74 0.08,1.01h0c0.3,0.3 0.77,0.31 1.08,0.02l10.36,-9.28c0.64,-0.58 0.28,-1.65 -0.58,-1.73L11,10l4.85,-6.76c0.22,-0.31 0.19,-0.74 -0.08,-1.01l0,0C15.47,1.93 15,1.92 14.69,2.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electric_car.xml b/compose/material/material/icons/generator/raw-icons/outlined/electric_car.xml
deleted file mode 100644
index 0c50af8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electric_car.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,2.01C18.72,1.42 18.16,1 17.5,1h-11C5.84,1 5.29,1.42 5.08,2.01L3,8v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1V8L18.92,2.01zM6.85,3h10.29l1.08,3.11H5.77L6.85,3zM19,13H5V8h14V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,10.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electric_meter.xml b/compose/material/material/icons/generator/raw-icons/outlined/electric_meter.xml
deleted file mode 100644
index d9b4cd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electric_meter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11c0,-4.97 -4.03,-9 -9,-9s-9,4.03 -9,9c0,3.92 2.51,7.24 6,8.48V22h2v-2.06c0.33,0.04 0.66,0.06 1,0.06s0.67,-0.02 1,-0.06V22h2v-2.52C18.49,18.24 21,14.92 21,11zM12,18c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7s7,3.14 7,7S15.86,18 12,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,10l-3,3l1.25,1.25l-1.25,1.25l1.5,1.5l3,-3l-1.25,-1.25l1.25,-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electric_moped.xml b/compose/material/material/icons/generator/raw-icons/outlined/electric_moped.xml
deleted file mode 100644
index 36ada5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electric_moped.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,8.35V5zM4,12v-1c0,-1.1 0.9,-2 2,-2h2v3H4zM7,15c-0.55,0 -1,-0.45 -1,-1h2C8,14.55 7.55,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,11 19,11zM19,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electric_rickshaw.xml b/compose/material/material/icons/generator/raw-icons/outlined/electric_rickshaw.xml
deleted file mode 100644
index f61c2ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electric_rickshaw.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.18V9.72c0,-0.47 -0.16,-0.92 -0.46,-1.28L16.6,3.72C16.22,3.26 15.66,3 15.06,3H3C1.9,3 1,3.9 1,5v8c0,1.1 0.9,2 2,2h0.18C3.6,16.16 4.7,17 6,17s2.4,-0.84 2.82,-2h8.37c0.41,1.16 1.51,2 2.82,2c1.66,0 3,-1.34 3,-3C23,12.7 22.16,11.6 21,11.18zM6,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S6.55,15 6,15zM7,11.17C6.69,11.06 6.35,11 6,11c-1.3,0 -2.42,0.84 -2.83,2H3v-3h4V11.17zM7,8H3V5h4V8zM14,13H9v-3h3V8H9V5h5V13zM16,6.12L18.4,9H16V6.12zM17.17,13H16v-2h3v0.17C18.15,11.47 17.47,12.15 17.17,13zM20,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,15 20,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electric_scooter.xml b/compose/material/material/icons/generator/raw-icons/outlined/electric_scooter.xml
deleted file mode 100644
index 82e1522..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electric_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.82,16H15v-1c0,-2.21 1.79,-4 4,-4h0.74l-1.9,-8.44C17.63,1.65 16.82,1 15.89,1H12v2h3.89l1.4,6.25c0,0 -0.01,0 -0.01,0c-2.16,0.65 -3.81,2.48 -4.19,4.75H7.82c-0.48,-1.34 -1.86,-2.24 -3.42,-1.94c-1.18,0.23 -2.13,1.2 -2.35,2.38C1.7,16.34 3.16,18 5,18C6.3,18 7.4,17.16 7.82,16zM5,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S5.55,16 5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,12 19,12zM19,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/electrical_services.xml b/compose/material/material/icons/generator/raw-icons/outlined/electrical_services.xml
deleted file mode 100644
index 95d5b61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/electrical_services.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14c0,-0.55 -0.45,-1 -1,-1h-2v2h2C20.55,15 21,14.55 21,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17h-2v2h2c0.55,0 1,-0.45 1,-1C21,17.45 20.55,17 20,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14h-2v4h2c0,1.1 0.9,2 2,2h3v-8h-3C12.9,12 12,12.9 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13c0,-1.1 0.9,-2 2,-2h1.5c1.93,0 3.5,-1.57 3.5,-3.5S10.43,4 8.5,4H5C4.45,4 4,4.45 4,5c0,0.55 0.45,1 1,1h3.5C9.33,6 10,6.67 10,7.5S9.33,9 8.5,9H7c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4h2v-2H7C5.9,15 5,14.1 5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/elevator.xml b/compose/material/material/icons/generator/raw-icons/outlined/elevator.xml
deleted file mode 100644
index 8e7585a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/elevator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3L19,3zM10,18v-4h1v-2.5c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2V14h1v4H10zM8.5,8.5c0.69,0 1.25,-0.56 1.25,-1.25S9.19,6 8.5,6S7.25,6.56 7.25,7.25S7.81,8.5 8.5,8.5zM18,11l-2.5,-4L13,11H18zM13,13l2.5,4l2.5,-4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/email.xml b/compose/material/material/icons/generator/raw-icons/outlined/email.xml
deleted file mode 100644
index 1846c51..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6zM20,6l-8,5 -8,-5h16zM20,18L4,18L4,8l8,5 8,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emergency.xml b/compose/material/material/icons/generator/raw-icons/outlined/emergency.xml
deleted file mode 100644
index b5f2a6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emergency.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,13.9L18,12l3.29,-1.9c0.48,-0.28 0.64,-0.89 0.37,-1.37l-2,-3.46c-0.28,-0.48 -0.89,-0.64 -1.37,-0.37L15,6.8V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3.8L5.71,4.9C5.23,4.63 4.62,4.79 4.34,5.27l-2,3.46C2.06,9.21 2.23,9.82 2.71,10.1L6,12l-3.29,1.9c-0.48,0.28 -0.64,0.89 -0.37,1.37l2,3.46c0.28,0.48 0.89,0.64 1.37,0.37L9,17.2V21c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3.8l3.29,1.9c0.48,0.28 1.09,0.11 1.37,-0.37l2,-3.46C21.94,14.79 21.77,14.18 21.29,13.9zM18.43,16.87l-4.68,-2.7C13.42,13.97 13,14.21 13,14.6V20h-2v-5.4c0,-0.38 -0.42,-0.63 -0.75,-0.43l-4.68,2.7l-1,-1.73l4.68,-2.7c0.33,-0.19 0.33,-0.67 0,-0.87l-4.68,-2.7l1,-1.73l4.68,2.7C10.58,10.03 11,9.79 11,9.4V4h2v5.4c0,0.38 0.42,0.63 0.75,0.43l4.68,-2.7l1,1.73l-4.68,2.7c-0.33,0.19 -0.33,0.67 0,0.87l4.68,2.7L18.43,16.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emergency_recording.xml b/compose/material/material/icons/generator/raw-icons/outlined/emergency_recording.xml
deleted file mode 100644
index 43542de..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emergency_recording.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM16,18H4V6h12V18zM12,12l3,1.73l-1,1.73l-3,-1.73V17H9v-3.27l-3,1.73l-1,-1.73L8,12l-3,-1.73l1,-1.73l3,1.73V7h2v3.27l3,-1.73l1,1.73L12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emergency_share.xml b/compose/material/material/icons/generator/raw-icons/outlined/emergency_share.xml
deleted file mode 100644
index 1c4e3c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emergency_share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.93,0 3.68,0.78 4.95,2.05l-1.41,1.41C14.63,6.56 13.38,6 12,6S9.37,6.56 8.46,7.46L7.05,6.05C8.32,4.78 10.07,4 12,4zM19.78,3.23l-1.41,1.41C16.74,3.01 14.49,2 12.01,2S7.27,3.01 5.64,4.63L4.22,3.22C6.22,1.23 8.97,0 12.01,0S17.79,1.23 19.78,3.23zM12,11c1.94,0 4,1.45 4,4.15c0,0.94 -0.55,2.93 -4,6.17c-3.45,-3.24 -4,-5.23 -4,-6.17C8,12.45 10.06,11 12,11zM12,9c-3.15,0 -6,2.41 -6,6.15c0,2.49 2,5.44 6,8.85c4,-3.41 6,-6.36 6,-8.85C18,11.41 15.15,9 12,9zM13.5,15c0,-0.83 -0.67,-1.5 -1.5,-1.5c-0.83,0 -1.5,0.67 -1.5,1.5c0,0.83 0.67,1.5 1.5,1.5C12.83,16.5 13.5,15.83 13.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_emotions.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_emotions.xml
deleted file mode 100644
index 0e8d694..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_emotions.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c2.28,0 4.22,-1.66 5,-4H7C7.78,16.34 9.72,18 12,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12C22,6.48 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,16.42 16.42,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_events.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_events.xml
deleted file mode 100644
index 0166c36..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_events.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5h-2V3H7v2H5C3.9,5 3,5.9 3,7v1c0,2.55 1.92,4.63 4.39,4.94c0.63,1.5 1.98,2.63 3.61,2.96V19H7v2h10v-2h-4v-3.1c1.63,-0.33 2.98,-1.46 3.61,-2.96C19.08,12.63 21,10.55 21,8V7C21,5.9 20.1,5 19,5zM5,8V7h2v3.82C5.84,10.4 5,9.3 5,8zM12,14c-1.65,0 -3,-1.35 -3,-3V5h6v6C15,12.65 13.65,14 12,14zM19,8c0,1.3 -0.84,2.4 -2,2.82V7h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_flags.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_flags.xml
deleted file mode 100644
index f649522..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_flags.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l-1,-2H7V5.72C7.6,5.38 8,4.74 8,4c0,-1.1 -0.9,-2 -2,-2S4,2.9 4,4c0,0.74 0.4,1.38 1,1.72V21h2v-4h5l1,2h7V9H14zM18,17h-4l-1,-2H7V9h5l1,2h5V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_food_beverage.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_food_beverage.xml
deleted file mode 100644
index dc6cde6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_food_beverage.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.89 2,-2V5C22,3.89 21.11,3 20,3zM16,13c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2V5h3v1.4L7.19,7.85C7.07,7.94 7,8.09 7,8.24v4.26C7,12.78 7.22,13 7.5,13h4c0.28,0 0.5,-0.22 0.5,-0.5V8.24c0,-0.15 -0.07,-0.3 -0.19,-0.39L10,6.4V5h6V13zM9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28zM20,8h-2V5h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_nature.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_nature.xml
deleted file mode 100644
index 757d6ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_nature.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.94,4.88C21.76,4.35 21.25,4 20.68,4c-0.03,0 -0.06,0 -0.09,0H19.6l-0.31,-0.97C19.15,2.43 18.61,2 18,2h0c-0.61,0 -1.15,0.43 -1.29,1.04L16.4,4h-0.98c-0.03,0 -0.06,0 -0.09,0c-0.57,0 -1.08,0.35 -1.26,0.88c-0.19,0.56 0.04,1.17 0.56,1.48l0.87,0.52L15.1,8.12c-0.23,0.58 -0.04,1.25 0.45,1.62C15.78,9.91 16.06,10 16.33,10c0.31,0 0.61,-0.11 0.86,-0.32L18,8.98l0.81,0.7C19.06,9.89 19.36,10 19.67,10c0.27,0 0.55,-0.09 0.78,-0.26c0.5,-0.37 0.68,-1.04 0.45,-1.62l-0.39,-1.24l0.87,-0.52C21.89,6.05 22.12,5.44 21.94,4.88zM18,7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,6.55 18.55,7 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,10.51c-0.43,-0.43 -0.94,-0.73 -1.49,-0.93V8h-1v1.38c-0.11,-0.01 -0.23,-0.03 -0.34,-0.03c-1.02,0 -2.05,0.39 -2.83,1.17c-0.12,0.12 -0.3,0.3 -0.5,0.5L6,10.52c-1.56,-0.55 -3.28,0.27 -3.83,1.82c0,0 0,0 0,0c-0.27,0.75 -0.23,1.57 0.12,2.29c0.23,0.48 0.58,0.87 1,1.16c-0.38,1.35 -0.06,2.85 1,3.91c0.78,0.78 1.8,1.17 2.83,1.17c0.37,0 0.73,-0.07 1.09,-0.17c0.29,0.42 0.68,0.77 1.16,1C9.78,21.9 10.21,22 10.65,22c0.34,0 0.68,-0.06 1.01,-0.17c0,0 0,0 0,0c1.56,-0.55 2.38,-2.27 1.82,-3.85l-0.49,-1.3c0.2,-0.2 0.38,-0.38 0.5,-0.5c0.87,-0.87 1.24,-2.04 1.14,-3.17H16v-1h-1.59C14.22,11.46 13.92,10.95 13.49,10.51zM7.58,18.82c-0.15,0.04 -0.3,0.06 -0.46,0.06c-0.53,0 -1.04,-0.21 -1.41,-0.59c-0.38,-0.38 -0.59,-0.88 -0.59,-1.41c0,-0.16 0.03,-0.32 0.06,-0.47c0.14,0.01 0.28,0.03 0.42,0.03c0.85,0 1.68,-0.2 2.44,-0.48C7.72,16.85 7.5,17.83 7.58,18.82zM4.67,14.29c-0.25,-0.09 -0.45,-0.27 -0.57,-0.51s-0.13,-0.51 -0.04,-0.76c0.19,-0.52 0.76,-0.79 1.26,-0.61l3.16,1.19C7.33,14.2 5.85,14.71 4.67,14.29zM10.99,19.94c-0.25,0.09 -0.52,0.08 -0.76,-0.04c-0.24,-0.11 -0.42,-0.32 -0.51,-0.57c-0.42,-1.18 0.09,-2.65 0.7,-3.8l1.18,3.13C11.78,19.18 11.51,19.76 10.99,19.94zM12.2,14.6l-0.61,-1.61c0,-0.01 -0.01,-0.02 -0.02,-0.03c-0.02,-0.04 -0.04,-0.08 -0.06,-0.12c-0.02,-0.04 -0.04,-0.07 -0.07,-0.11c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.07,-0.05 -0.11,-0.07c-0.04,-0.02 -0.07,-0.05 -0.12,-0.06c-0.01,0 -0.02,-0.01 -0.03,-0.02L9.4,11.8c0.36,-0.29 0.79,-0.46 1.26,-0.46c0.53,0 1.04,0.21 1.41,0.59C12.8,12.66 12.84,13.81 12.2,14.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_objects.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_objects.xml
deleted file mode 100644
index 34bed7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_objects.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-0.46,0 -0.93,0.04 -1.4,0.14C7.84,3.67 5.64,5.9 5.12,8.66c-0.48,2.61 0.48,5.01 2.22,6.56C7.77,15.6 8,16.13 8,16.69V19c0,1.1 0.9,2 2,2h0.28c0.35,0.6 0.98,1 1.72,1s1.38,-0.4 1.72,-1H14c1.1,0 2,-0.9 2,-2v-2.31c0,-0.55 0.22,-1.09 0.64,-1.46C18.09,13.95 19,12.08 19,10C19,6.13 15.87,3 12,3zM14,17h-4v-1h4V17zM10,19v-1h4v1H10zM15.31,13.74c-0.09,0.08 -0.16,0.18 -0.24,0.26H8.92c-0.08,-0.09 -0.15,-0.19 -0.24,-0.27c-1.32,-1.18 -1.91,-2.94 -1.59,-4.7c0.36,-1.94 1.96,-3.55 3.89,-3.93C11.32,5.03 11.66,5 12,5c2.76,0 5,2.24 5,5C17,11.43 16.39,12.79 15.31,13.74z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,11h1v3h-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.672,9.581l0.707,-0.707l2.121,2.121l-0.707,0.707z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.208,11.712l-0.707,-0.707l2.121,-2.121l0.707,0.707z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_people.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_people.xml
deleted file mode 100644
index 54d8c00..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_people.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.89,8.11C15.5,7.72 14.83,7 13.53,7c-0.21,0 -1.42,0 -2.54,0C8.24,6.99 6,4.75 6,2H4c0,3.16 2.11,5.84 5,6.71V22h2v-6h2v6h2V10.05L18.95,14l1.41,-1.41L15.89,8.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_symbols.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_symbols.xml
deleted file mode 100644
index 5c3024a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_symbols.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l2,0l0,-4l3,0l0,-2l-8,0l0,2l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.404,20.182l7.778,-7.778l1.414,1.414l-7.778,7.778z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11c1.38,0 2.5,-1.12 2.5,-2.5V4h3V2h-4v4.51C16.58,6.19 16.07,6 15.5,6C14.12,6 13,7.12 13,8.5C13,9.88 14.12,11 15.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.74,15.96l-1.41,1.41l-0.71,-0.71l0.35,-0.35c0.98,-0.98 0.98,-2.56 0,-3.54c-0.49,-0.49 -1.13,-0.73 -1.77,-0.73c-0.64,0 -1.28,0.24 -1.77,0.73c-0.98,0.98 -0.98,2.56 0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98 -0.98,2.56 0,3.54C4.22,21.76 4.86,22 5.5,22s1.28,-0.24 1.77,-0.73l1.06,-1.06l1.41,1.41l1.41,-1.41l-1.41,-1.41l1.41,-1.41L9.74,15.96zM5.85,14.2c0.12,-0.12 0.26,-0.15 0.35,-0.15s0.23,0.03 0.35,0.15c0.19,0.2 0.19,0.51 0,0.71l-0.35,0.35L5.85,14.9C5.66,14.71 5.66,14.39 5.85,14.2zM5.85,19.85C5.73,19.97 5.59,20 5.5,20s-0.23,-0.03 -0.35,-0.15c-0.19,-0.19 -0.19,-0.51 0,-0.71l1.06,-1.06l0.71,0.71L5.85,19.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/emoji_transportation.xml b/compose/material/material/icons/generator/raw-icons/outlined/emoji_transportation.xml
deleted file mode 100644
index 791567a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/emoji_transportation.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,10.66C20.43,10.26 20.05,10 19.6,10h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66L10,14.77l0.01,5.51c0,0.38 0.31,0.72 0.69,0.72h0.62C11.7,21 12,20.62 12,20.24V19h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72L22,18.91v-4.14L20.57,10.66zM12.41,11h7.19l1.03,3h-9.25L12.41,11zM12,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,17 12,17zM20,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,17 20,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l1,0l0,-6l-8,0l0,5l-5,0l0,13l1,0l0,-12l5,0l0,-5l6,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/energy_savings_leaf.xml b/compose/material/material/icons/generator/raw-icons/outlined/energy_savings_leaf.xml
deleted file mode 100644
index e1b8bf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/energy_savings_leaf.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C12,3 12,3 12,3c-4.8,0 -9,3.86 -9,9c0,2.12 0.74,4.07 1.97,5.61L3,19.59L4.41,21l1.97,-1.97C7.93,20.26 9.88,21 12,21c2.3,0 4.61,-0.88 6.36,-2.64C20.12,16.61 21,14.3 21,12l0,-9L12,3zM19,12c0,1.87 -0.73,3.63 -2.05,4.95C15.63,18.27 13.87,19 12,19c-3.86,0 -7,-3.14 -7,-7c0,-1.9 0.74,-3.68 2.1,-4.99C8.42,5.71 10.16,5 12,5l7,0L19,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.46,12.63l4.05,0.4l-2.44,3.33c-0.11,0.16 -0.1,0.38 0.04,0.52c0.15,0.15 0.4,0.16 0.56,0.01l5.16,-4.63c0.33,-0.3 0.15,-0.85 -0.3,-0.89l-4.05,-0.4l2.44,-3.33c0.11,-0.16 0.1,-0.38 -0.04,-0.52c-0.15,-0.15 -0.4,-0.16 -0.56,-0.01l-5.16,4.63C7.84,12.04 8.02,12.59 8.46,12.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/engineering.xml b/compose/material/material/icons/generator/raw-icons/outlined/engineering.xml
deleted file mode 100644
index 654be2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/engineering.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v2h16v-2C17,16.34 11.67,15 9,15zM3,19c0.22,-0.72 3.31,-2 6,-2c2.7,0 5.8,1.29 6,2H3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.74,9H5c0,2.21 1.79,4 4,4s4,-1.79 4,-4h0.26c0.27,0 0.49,-0.22 0.49,-0.49V8.49c0,-0.27 -0.22,-0.49 -0.49,-0.49H13c0,-1.48 -0.81,-2.75 -2,-3.45V5.5C11,5.78 10.78,6 10.5,6S10,5.78 10,5.5V4.14C9.68,4.06 9.35,4 9,4S8.32,4.06 8,4.14V5.5C8,5.78 7.78,6 7.5,6S7,5.78 7,5.5V4.55C5.81,5.25 5,6.52 5,8H4.74C4.47,8 4.25,8.22 4.25,8.49v0.03C4.25,8.78 4.47,9 4.74,9zM11,9c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,6.23l0.93,-0.83l-0.75,-1.3l-1.19,0.39c-0.14,-0.11 -0.3,-0.2 -0.47,-0.27L20.25,3h-1.5L18.5,4.22c-0.17,0.07 -0.33,0.16 -0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4 17,6.58 17.02,6.75L16.09,7.6l0.75,1.3l1.2,-0.38c0.13,0.1 0.28,0.18 0.43,0.25L18.75,10h1.5l0.27,-1.22c0.16,-0.07 0.3,-0.15 0.44,-0.25l1.19,0.38l0.75,-1.3l-0.93,-0.85C22,6.57 21.99,6.4 21.98,6.23zM19.5,7.75c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25S20.19,7.75 19.5,7.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.4,10.79l-0.85,0.28c-0.1,-0.08 -0.21,-0.14 -0.33,-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05 -0.24,0.12 -0.34,0.19l-0.84,-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13 -0.01,0.25 0,0.37l-0.66,0.61l0.54,0.93l0.86,-0.27c0.1,0.07 0.2,0.13 0.31,0.18L16.96,15h1.07l0.19,-0.87c0.11,-0.05 0.22,-0.11 0.32,-0.18l0.85,0.27l0.54,-0.93l-0.66,-0.61c0.01,-0.13 0.01,-0.25 0,-0.37l0.66,-0.59L19.4,10.79zM17.5,13.39c-0.49,0 -0.89,-0.4 -0.89,-0.89c0,-0.49 0.4,-0.89 0.89,-0.89s0.89,0.4 0.89,0.89C18.39,12.99 17.99,13.39 17.5,13.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/enhanced_encryption.xml b/compose/material/material/icons/generator/raw-icons/outlined/enhanced_encryption.xml
deleted file mode 100644
index 05d5c52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/enhanced_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2L8.9,8L8.9,6zM18,20L6,20L6,10h12v10zM13,11h-2v3L8,14v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/equalizer.xml b/compose/material/material/icons/generator/raw-icons/outlined/equalizer.xml
deleted file mode 100644
index 6957708..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/equalizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20h4L14,4h-4v16zM4,20h4v-8L4,12v8zM16,9v11h4L20,9h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/error.xml b/compose/material/material/icons/generator/raw-icons/outlined/error.xml
deleted file mode 100644
index b915a34..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/error_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/error_outline.xml
deleted file mode 100644
index 0f4224c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/error_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2v-2zM11,7h2v6h-2L11,7zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/escalator.xml b/compose/material/material/icons/generator/raw-icons/outlined/escalator.xml
deleted file mode 100644
index dc6d1bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/escalator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L19,5l0,14H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2l0,-14C21,3.9 20.1,3 19,3L19,3zM17,6h-3.3l-5,9H7c-0.83,0 -1.5,0.67 -1.5,1.5S6.17,18 7,18h3.3l5,-9H17c0.83,0 1.5,-0.67 1.5,-1.5S17.83,6 17,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/escalator_warning.xml b/compose/material/material/icons/generator/raw-icons/outlined/escalator_warning.xml
deleted file mode 100644
index 1bb94f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/escalator_warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S5.4,2 6.5,2zM15.5,9.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S17.83,8 17,8S15.5,8.67 15.5,9.5zM18.5,12h-2.84c-0.58,0.01 -1.14,0.32 -1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37 8.69,7.01 8.01,7H5C3.9,7 3,7.9 3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68 19.33,12 18.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/euro.xml b/compose/material/material/icons/generator/raw-icons/outlined/euro.xml
deleted file mode 100644
index 1e31e62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/euro.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15l1,-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15l1,-2H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3l-1,2h4.06C6.02,11.33 6,11.66 6,12s0.02,0.67 0.06,1H3l-1,2h4.52c1.24,3.49 4.56,6 8.48,6c2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77C18.09,17.91 16.62,18.5 15,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/euro_symbol.xml b/compose/material/material/icons/generator/raw-icons/outlined/euro_symbol.xml
deleted file mode 100644
index 3088536..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/euro_symbol.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15v-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15V9H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3v2h3.06c-0.04,0.33 -0.06,0.66 -0.06,1s0.02,0.67 0.06,1H3v2h3.52c1.24,3.49 4.56,6 8.48,6 2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77c-1.13,0.98 -2.6,1.57 -4.22,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ev_station.xml b/compose/material/material/icons/generator/raw-icons/outlined/ev_station.xml
deleted file mode 100644
index 7e7c4a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ev_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-0.94,0.36 -1.61,1.26 -1.61,2.33 0,1.38 1.12,2.5 2.5,2.5 0.36,0 0.69,-0.08 1,-0.21v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L17,14c0,-1.1 -0.9,-2 -2,-2h-1L14,5c0,-1.1 -0.9,-2 -2,-2L6,3c-1.1,0 -2,0.9 -2,2v16h10v-7.5h1.5v5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5L20.5,9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM12,11v8L6,19L6,5h6v6zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM10,6l-4,7.5h2L8,18l4,-7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/event.xml b/compose/material/material/icons/generator/raw-icons/outlined/event.xml
deleted file mode 100644
index 6327f3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/event.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-1L18,2h-2v2L8,4L8,2L6,2v2L5,4c-1.11,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,20L5,20L5,10h14v10zM19,8L5,8L5,6h14v2zM12,13h5v5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/event_available.xml b/compose/material/material/icons/generator/raw-icons/outlined/event_available.xml
deleted file mode 100644
index 148945f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/event_available.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM5,7L5,5h14v2L5,7zM10.56,17.46l5.93,-5.93 -1.06,-1.06 -4.87,4.87 -2.11,-2.11 -1.06,1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/event_busy.xml b/compose/material/material/icons/generator/raw-icons/outlined/event_busy.xml
deleted file mode 100644
index 16018f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/event_busy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM5,7L5,5h14v2L5,7zM8.23,16.41l1.06,1.06 2.44,-2.44 2.44,2.44 1.06,-1.06 -2.44,-2.44 2.44,-2.44 -1.06,-1.06 -2.44,2.44 -2.44,-2.44 -1.06,1.06 2.44,2.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/event_note.xml b/compose/material/material/icons/generator/raw-icons/outlined/event_note.xml
deleted file mode 100644
index 1cb6f90..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/event_note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM5,7L5,5h14v2L5,7zM7,11h10v2L7,13zM7,15h7v2L7,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/event_repeat.xml b/compose/material/material/icons/generator/raw-icons/outlined/event_repeat.xml
deleted file mode 100644
index 47c3e4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/event_repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.9,4 3,4.9 3,6v14c0,1.1 0.9,2 2,2h7v-2H5V10h14v2H21zM19,8H5V6h14V8zM15.64,20c0.43,1.45 1.77,2.5 3.36,2.5c1.93,0 3.5,-1.57 3.5,-3.5s-1.57,-3.5 -3.5,-3.5c-0.95,0 -1.82,0.38 -2.45,1l1.45,0V18h-4v-4h1.5l0,1.43C16.4,14.55 17.64,14 19,14c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-2.42,0 -4.44,-1.72 -4.9,-4L15.64,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/event_seat.xml b/compose/material/material/icons/generator/raw-icons/outlined/event_seat.xml
deleted file mode 100644
index ed5c273..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/event_seat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5v7L9,12L9,5h6m0,-2L9,3c-1.1,0 -2,0.9 -2,2v9h10L17,5c0,-1.1 -0.9,-2 -2,-2zM22,10h-3v3h3v-3zM5,10L2,10v3h3v-3zM20,15L4,15v6h2v-4h12v4h2v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/exit_to_app.xml b/compose/material/material/icons/generator/raw-icons/outlined/exit_to_app.xml
deleted file mode 100644
index ed42b70..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/exit_to_app.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.09,15.59L11.5,17l5,-5 -5,-5 -1.41,1.41L12.67,11H3v2h9.67l-2.58,2.59zM19,3H5c-1.11,0 -2,0.9 -2,2v4h2V5h14v14H5v-4H3v4c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/expand.xml b/compose/material/material/icons/generator/raw-icons/outlined/expand.xml
deleted file mode 100644
index 3463c42..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/expand.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16v2h-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,2h16v2h-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,13.59l-1.41,1.41l4,4l4,-4l-1.41,-1.41l-1.59,1.58l0,-6.34l1.59,1.58l1.41,-1.41l-4,-4l-4,4l1.41,1.41l1.59,-1.58l0,6.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/expand_circle_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/expand_circle_down.xml
deleted file mode 100644
index f8e376c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/expand_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.08,9.59L12,12.67L8.92,9.59L7.5,11l4.5,4.5l4.5,-4.5L15.08,9.59zM12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/expand_less.xml b/compose/material/material/icons/generator/raw-icons/outlined/expand_less.xml
deleted file mode 100644
index 816e68a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/expand_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8l-6,6 1.41,1.41L12,10.83l4.59,4.58L18,14l-6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/expand_more.xml b/compose/material/material/icons/generator/raw-icons/outlined/expand_more.xml
deleted file mode 100644
index 747dc4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/expand_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,8.59L12,13.17 7.41,8.59 6,10l6,6 6,-6 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/explicit.xml b/compose/material/material/icons/generator/raw-icons/outlined/explicit.xml
deleted file mode 100644
index 6addf6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/explicit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM15,15h-4v-2h4v-2h-4L11,9h4L15,7L9,7v10h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/explore.xml b/compose/material/material/icons/generator/raw-icons/outlined/explore.xml
deleted file mode 100644
index 0a5745b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM6.5,17.5l7.51,-3.49L17.5,6.5 9.99,9.99 6.5,17.5zM12,10.9c0.61,0 1.1,0.49 1.1,1.1s-0.49,1.1 -1.1,1.1 -1.1,-0.49 -1.1,-1.1 0.49,-1.1 1.1,-1.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/explore_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/explore_off.xml
deleted file mode 100644
index 385cfba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/explore_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8 0,1.48 -0.41,2.86 -1.12,4.06l1.46,1.46C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10 -2.04,0 -3.93,0.61 -5.51,1.66l1.46,1.46C9.14,4.41 10.52,4 12,4zM14.91,12.08L17.5,6.5l-5.58,2.59 2.99,2.99zM2.1,4.93l1.56,1.56C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10 2.04,0 3.93,-0.61 5.51,-1.66l1.56,1.56 1.41,-1.41L3.51,3.51 2.1,4.93zM5.12,7.94l3.98,3.98 -2.6,5.58 5.58,-2.59 3.98,3.98c-1.2,0.7 -2.58,1.11 -4.06,1.11 -4.41,0 -8,-3.59 -8,-8 0,-1.48 0.41,-2.86 1.12,-4.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/exposure.xml b/compose/material/material/icons/generator/raw-icons/outlined/exposure.xml
deleted file mode 100644
index 0168bb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/exposure.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM17.59,5L5,17.59L5,5h12.59zM6.41,19L19,6.41L19,19L6.41,19zM6,7h5v1.5L6,8.5zM16,12.5h-1.5v2h-2L12.5,16h2v2L16,18v-2h2v-1.5h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/exposure_neg_1.xml b/compose/material/material/icons/generator/raw-icons/outlined/exposure_neg_1.xml
deleted file mode 100644
index 8f4da6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/exposure_neg_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11v2h8v-2L4,11zM19,18h-2L17,7.38L14,8.4L14,6.7L18.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/exposure_neg_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/exposure_neg_2.xml
deleted file mode 100644
index e578648..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/exposure_neg_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17s0.41,-0.78 0.54,-1.17 0.19,-0.79 0.19,-1.18c0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49s0.6,-0.18 0.96,-0.18c0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43 0.28,0.4 0.37,0.65c0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H21v-1.71h-5.95zM2,11v2h8v-2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/exposure_plus_1.xml b/compose/material/material/icons/generator/raw-icons/outlined/exposure_plus_1.xml
deleted file mode 100644
index 0e693dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/exposure_plus_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7L8,7v4L4,11v2h4v4h2v-4h4v-2h-4L10,7zM20,18h-2L18,7.38L15,8.4L15,6.7L19.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/exposure_plus_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/exposure_plus_2.xml
deleted file mode 100644
index f00cb5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/exposure_plus_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17s0.41,-0.78 0.54,-1.17c0.13,-0.39 0.19,-0.79 0.19,-1.18 0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49s0.6,-0.18 0.96,-0.18c0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43 0.28,0.4 0.37,0.65c0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H22v-1.71h-5.95zM8,7H6v4H2v2h4v4h2v-4h4v-2H8V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/exposure_zero.xml b/compose/material/material/icons/generator/raw-icons/outlined/exposure_zero.xml
deleted file mode 100644
index 2df61ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/exposure_zero.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.14,12.5c0,1 -0.1,1.85 -0.3,2.55s-0.48,1.27 -0.83,1.7c-0.36,0.44 -0.79,0.75 -1.3,0.95s-1.07,0.3 -1.7,0.3c-0.62,0 -1.18,-0.1 -1.69,-0.3 -0.51,-0.2 -0.95,-0.51 -1.31,-0.95s-0.65,-1.01 -0.85,-1.7c-0.2,-0.7 -0.3,-1.55 -0.3,-2.55v-2.04c0,-1 0.1,-1.85 0.3,-2.55 0.2,-0.7 0.48,-1.26 0.84,-1.69 0.36,-0.43 0.8,-0.74 1.31,-0.93C10.81,5.1 11.38,5 12,5c0.63,0 1.19,0.1 1.7,0.29 0.51,0.19 0.95,0.5 1.31,0.93 0.36,0.43 0.64,0.99 0.84,1.69 0.2,0.7 0.3,1.54 0.3,2.55v2.04h-0.01zM14.03,10.14c0,-0.64 -0.05,-1.18 -0.13,-1.62 -0.09,-0.44 -0.22,-0.79 -0.4,-1.06 -0.17,-0.27 -0.39,-0.46 -0.64,-0.58 -0.25,-0.13 -0.54,-0.19 -0.86,-0.19s-0.61,0.06 -0.86,0.18 -0.47,0.31 -0.64,0.58 -0.31,0.62 -0.4,1.06 -0.13,0.98 -0.13,1.62v2.67c0,0.64 0.05,1.18 0.14,1.62 0.09,0.45 0.23,0.81 0.4,1.09s0.39,0.48 0.64,0.61 0.54,0.19 0.87,0.19 0.62,-0.06 0.87,-0.19 0.46,-0.33 0.63,-0.61 0.3,-0.64 0.39,-1.09 0.13,-0.99 0.13,-1.62v-2.66h-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/extension.xml b/compose/material/material/icons/generator/raw-icons/outlined/extension.xml
deleted file mode 100644
index 2667cc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/extension.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,4.5c0.28,0 0.5,0.22 0.5,0.5v2h6v6h2c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5h-2v6h-2.12c-0.68,-1.75 -2.39,-3 -4.38,-3s-3.7,1.25 -4.38,3H4v-2.12c1.75,-0.68 3,-2.39 3,-4.38 0,-1.99 -1.24,-3.7 -2.99,-4.38L4,7h6V5c0,-0.28 0.22,-0.5 0.5,-0.5m0,-2C9.12,2.5 8,3.62 8,5H4c-1.1,0 -1.99,0.9 -1.99,2v3.8h0.29c1.49,0 2.7,1.21 2.7,2.7s-1.21,2.7 -2.7,2.7H2V20c0,1.1 0.9,2 2,2h3.8v-0.3c0,-1.49 1.21,-2.7 2.7,-2.7s2.7,1.21 2.7,2.7v0.3H17c1.1,0 2,-0.9 2,-2v-4c1.38,0 2.5,-1.12 2.5,-2.5S20.38,11 19,11V7c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/extension_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/extension_off.xml
deleted file mode 100644
index aeb1714..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/extension_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l1.62,1.62c0,0.05 -0.01,0.1 -0.01,0.16v3.8C5.7,9.8 6,11.96 6,12.5c0,0.54 -0.29,2.7 -3,2.7V19c0,1.1 0.9,2 2,2h3.8c0,-2.71 2.16,-3 2.7,-3c0.54,0 2.7,0.29 2.7,3H18c0.06,0 0.11,0 0.16,-0.01l1.61,1.61l1.41,-1.41L2.81,2.81L1.39,4.22zM11.5,16c-1.5,0 -3.57,0.83 -4.37,3H5v-2.13c2.17,-0.8 3,-2.87 3,-4.37c0,-0.69 -0.18,-1.5 -0.58,-2.25l6.33,6.33C13,16.18 12.19,16 11.5,16zM8.83,6l-2,-2H9c0,-1.38 1.12,-2.5 2.5,-2.5S14,2.62 14,4h4c1.1,0 2,0.9 2,2v4c1.38,0 2.5,1.12 2.5,2.5S21.38,15 20,15v2.17l-2,-2V13h2c0.28,0 0.5,-0.22 0.5,-0.5S20.28,12 20,12h-2V6h-6V4c0,-0.28 -0.22,-0.5 -0.5,-0.5S11,3.72 11,4v2H8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face.xml b/compose/material/material/icons/generator/raw-icons/outlined/face.xml
deleted file mode 100644
index 27de6c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.25,13c0,0.69 -0.56,1.25 -1.25,1.25S7.75,13.69 7.75,13s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25zM15,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12 6.48,2 12,2s10,4.48 10,10zM10.66,4.12C12.06,6.44 14.6,8 17.5,8c0.46,0 0.91,-0.05 1.34,-0.12C17.44,5.56 14.9,4 12,4c-0.46,0 -0.91,0.05 -1.34,0.12zM4.42,9.47c1.71,-0.97 3.03,-2.55 3.66,-4.44C6.37,6 5.05,7.58 4.42,9.47zM20,12c0,-0.78 -0.12,-1.53 -0.33,-2.24 -0.7,0.15 -1.42,0.24 -2.17,0.24 -3.13,0 -5.92,-1.44 -7.76,-3.69C8.69,8.87 6.6,10.88 4,11.86c0.01,0.04 0,0.09 0,0.14 0,4.41 3.59,8 8,8s8,-3.59 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/face_2.xml
deleted file mode 100644
index 58abaea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.97,13.52c0,-0.01 0,-0.02 0,-0.04C23.21,12.38 24,10.78 24,9c0,-3.31 -2.69,-6 -6,-6c-0.26,0 -0.52,0.02 -0.78,0.06C16.19,1.23 14.24,0 12,0S7.81,1.23 6.78,3.06C6.52,3.02 6.26,3 6,3C2.69,3 0,5.69 0,9c0,1.78 0.79,3.38 2.02,4.48c0,0.01 0,0.02 0,0.04C0.79,14.62 0,16.22 0,18c0,3.31 2.69,6 6,6c1.39,0 2.67,-0.48 3.69,-1.28C10.43,22.9 11.2,23 12,23s1.57,-0.1 2.31,-0.28C15.33,23.52 16.61,24 18,24c3.31,0 6,-2.69 6,-6C24,16.22 23.21,14.62 21.97,13.52zM22,9c0,0.55 -0.12,1.07 -0.32,1.54c-0.57,-2.25 -1.9,-4.19 -3.7,-5.54c0.01,0 0.01,0 0.02,0C20.21,5 22,6.79 22,9zM12.03,5c2.73,0.01 5.13,1.39 6.57,3.48c-0.71,0.57 -1.6,0.89 -2.53,0.89C13.82,9.38 12,7.55 12,5.31C12,5.21 12.02,5.11 12.03,5zM12,2c1.25,0 2.36,0.59 3.1,1.5C14.12,3.18 13.08,3 12,3S9.88,3.18 8.9,3.5C9.64,2.59 10.75,2 12,2zM6,5c0.01,0 0.01,0 0.02,0c-1.8,1.35 -3.13,3.29 -3.7,5.54C2.12,10.07 2,9.55 2,9C2,6.79 3.79,5 6,5zM6,22c-2.21,0 -4,-1.79 -4,-4c0,-0.69 0.19,-1.32 0.5,-1.88c0.8,2.44 2.52,4.47 4.74,5.68C6.85,21.93 6.44,22 6,22zM4,13c0,-3.72 2.56,-6.85 6,-7.74c0,0.02 0,0.03 0,0.05c0,3.34 2.72,6.06 6.06,6.06c1.26,0 2.45,-0.39 3.45,-1.09C19.82,11.14 20,12.05 20,13c0,4.41 -3.59,8 -8,8S4,17.41 4,13zM18,22c-0.44,0 -0.85,-0.07 -1.25,-0.2c2.23,-1.21 3.94,-3.24 4.74,-5.68c0.31,0.56 0.5,1.2 0.5,1.88C22,20.21 20.21,22 18,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/face_3.xml
deleted file mode 100644
index 144d59c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face_3.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.91,11.96C22.39,6.32 17.66,2 12,2S1.61,6.32 1.09,11.96l-0.9,9.86C0.09,22.99 1.01,24 2.19,24h19.62c1.18,0 2.1,-1.01 1.99,-2.18L22.91,11.96zM13,4.07c2.26,0.28 4.22,1.51 5.49,3.28C17.91,7.75 17.23,8 16.5,8C14.57,8 13,6.43 13,4.5V4.07zM11,4.07V4.5C11,6.43 9.43,8 7.5,8C6.77,8 6.09,7.75 5.51,7.35C6.78,5.58 8.74,4.35 11,4.07zM4.54,9.13C5.41,9.68 6.43,10 7.5,10C9.36,10 11,9.07 12,7.65C13,9.07 14.64,10 16.5,10c1.07,0 2.09,-0.32 2.96,-0.87C19.8,10.02 20,10.99 20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8C4,10.99 4.2,10.02 4.54,9.13zM12,22H2.19l0.56,-6.2C4.25,19.44 7.82,22 12,22s7.75,-2.56 9.25,-6.2l0.56,6.2H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/face_4.xml
deleted file mode 100644
index daeaee5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-0.96,0 -1.88,0.14 -2.75,0.39C8.37,0.96 6.8,0 5,0C2.24,0 0,2.24 0,5c0,1.8 0.96,3.37 2.39,4.25C2.14,10.12 2,11.04 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,4c2.9,0 5.44,1.56 6.84,3.88C18.41,7.95 17.96,8 17.5,8c-2.9,0 -5.44,-1.56 -6.84,-3.88h0C11.09,4.05 11.54,4 12,4zM4.42,9.47L4.42,9.47C5.05,7.58 6.37,6 8.08,5.03C7.45,6.92 6.13,8.5 4.42,9.47zM2,5c0,-1.65 1.35,-3 3,-3c0.95,0 1.8,0.46 2.35,1.15C5.56,4.09 4.09,5.56 3.15,7.35C2.46,6.8 2,5.95 2,5zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0.01,-0.15c2.6,-0.98 4.68,-2.99 5.74,-5.55C11.58,8.56 14.37,10 17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face_5.xml b/compose/material/material/icons/generator/raw-icons/outlined/face_5.xml
deleted file mode 100644
index 525db6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face_5.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.12 0.23,-2.18 0.65,-3.15C4.74,8.94 4.86,9 5,9c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.25 -0.19,-0.45 -0.43,-0.49c0.15,-0.26 0.32,-0.51 0.49,-0.75C5.53,7.34 5.5,7.41 5.5,7.5C5.5,7.78 5.72,8 6,8s0.5,-0.22 0.5,-0.5C6.5,7.22 6.28,7 6,7C5.87,7 5.75,7.05 5.66,7.13c0.52,-0.68 1.15,-1.28 1.86,-1.76C7.51,5.41 7.5,5.45 7.5,5.5C7.5,5.78 7.72,6 8,6s0.5,-0.22 0.5,-0.5c0,-0.24 -0.17,-0.43 -0.4,-0.48c0.16,-0.09 0.32,-0.17 0.49,-0.25C8.68,4.91 8.83,5 9,5c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.03 -0.01,-0.06 -0.02,-0.09c0.39,-0.13 0.79,-0.23 1.21,-0.3C10.58,4.21 10.5,4.34 10.5,4.5C10.5,4.78 10.72,5 11,5s0.5,-0.22 0.5,-0.5c0,-0.21 -0.13,-0.38 -0.3,-0.46C11.46,4.01 11.73,4 12,4s0.54,0.01 0.8,0.04c-0.18,0.08 -0.3,0.25 -0.3,0.46C12.5,4.78 12.72,5 13,5s0.5,-0.22 0.5,-0.5c0,-0.16 -0.08,-0.29 -0.19,-0.38c0.41,0.07 0.82,0.17 1.21,0.3C14.51,4.44 14.5,4.47 14.5,4.5C14.5,4.78 14.72,5 15,5c0.17,0 0.32,-0.09 0.41,-0.23c0.17,0.08 0.33,0.16 0.49,0.25c-0.23,0.05 -0.4,0.24 -0.4,0.48C15.5,5.78 15.72,6 16,6s0.5,-0.22 0.5,-0.5c0,-0.05 -0.01,-0.09 -0.03,-0.13c0.71,0.48 1.34,1.08 1.86,1.76C18.25,7.05 18.13,7 18,7c-0.28,0 -0.5,0.22 -0.5,0.5C17.5,7.78 17.72,8 18,8s0.5,-0.22 0.5,-0.5c0,-0.09 -0.03,-0.16 -0.07,-0.23c0.18,0.24 0.34,0.49 0.49,0.75C18.69,8.05 18.5,8.25 18.5,8.5C18.5,8.78 18.72,9 19,9c0.14,0 0.26,-0.06 0.35,-0.15C19.77,9.82 20,10.88 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face_6.xml b/compose/material/material/icons/generator/raw-icons/outlined/face_6.xml
deleted file mode 100644
index ceb951f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face_6.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,4c3.68,0 6.78,2.51 7.71,5.9c-0.6,-0.16 -1.33,-0.37 -2.26,-2.24C16.94,6.64 15.91,6 14.76,6H9.24C8.09,6 7.06,6.64 6.55,7.66C5.62,9.52 4.97,9.72 4.29,9.9C5.22,6.51 8.32,4 12,4zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.01 0,-0.02 0,-0.03c2.31,-0.22 3.43,-1.59 4.34,-3.41C8.51,8.21 8.85,8 9.24,8h5.53c0.38,0 0.72,0.21 0.89,0.55c0.9,1.8 1.99,3.19 4.34,3.41c0,0.01 0,0.02 0,0.03C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face_retouching_natural.xml b/compose/material/material/icons/generator/raw-icons/outlined/face_retouching_natural.xml
deleted file mode 100644
index 12cd750..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face_retouching_natural.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.89,10.75C19.96,11.16 20,11.57 20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c2.6,-0.98 4.69,-2.99 5.74,-5.55c3.38,4.14 7.97,3.73 8.99,3.61l-0.89,-1.93c-0.13,0.01 -4.62,0.38 -7.18,-3.86c1.01,-0.16 1.71,-0.15 2.59,-0.01c2.52,-1.15 1.93,-0.89 2.76,-1.26C14.78,2.3 13.43,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10c0,-1.43 -0.3,-2.78 -0.84,-4.01L19.89,10.75zM8.08,5.03C7.45,6.92 6.13,8.5 4.42,9.47C5.05,7.58 6.37,6 8.08,5.03z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,4.5l-2.4,-1.1l-1.1,-2.4l-1.1,2.4l-2.4,1.1l2.4,1.1l1.1,2.4l1.1,-2.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/face_retouching_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/face_retouching_off.xml
deleted file mode 100644
index 1640604..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/face_retouching_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12c0,1.22 -0.28,2.37 -0.77,3.4l1.49,1.49C21.53,15.44 22,13.78 22,12c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.47 -4.89,1.28l5.33,5.33C13.93,9.49 15.65,10 17.5,10zM10.66,4.12C11.09,4.05 11.54,4 12,4c2.9,0 5.44,1.56 6.84,3.88C18.41,7.95 17.96,8 17.5,8C14.6,8 12.06,6.44 10.66,4.12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.89,3.72l2.19,2.19C2.78,7.6 2,9.71 2,12c0,5.52 4.48,10 10,10c2.29,0 4.4,-0.78 6.09,-2.08l2.19,2.19l1.41,-1.41L3.31,2.31L1.89,3.72zM16.66,18.49C15.35,19.44 13.74,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c1.39,-0.52 2.63,-1.35 3.64,-2.39L16.66,18.49zM6.23,8.06C5.7,8.61 5.09,9.09 4.42,9.47C4.68,8.7 5.05,7.99 5.51,7.34L6.23,8.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/facebook.xml b/compose/material/material/icons/generator/raw-icons/outlined/facebook.xml
deleted file mode 100644
index 308115a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/facebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,4.84 3.44,8.87 8,9.8V15H8v-3h2V9.5C10,7.57 11.57,6 13.5,6H16v3h-2c-0.55,0 -1,0.45 -1,1v2h3v3h-3v6.95C18.05,21.45 22,17.19 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fact_check.xml b/compose/material/material/icons/generator/raw-icons/outlined/fact_check.xml
deleted file mode 100644
index 710223f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fact_check.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,19H4V5h16V19z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,10.42l-1.42,-1.42l-3.17,3.17l-1.41,-1.42l-1.41,1.41l2.82,2.84z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h5v2h-5z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h5v2h-5z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h5v2h-5z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/factory.xml b/compose/material/material/icons/generator/raw-icons/outlined/factory.xml
deleted file mode 100644
index fd846b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/factory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,22H2V10l7,-3v2l5,-2l0,3h3l1,-8h3l1,8V22zM12,9.95l-5,2V10l-3,1.32V20h16v-8h-8L12,9.95zM11,18h2v-4h-2V18zM7,18h2v-4H7V18zM17,14h-2v4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/family_restroom.xml b/compose/material/material/icons/generator/raw-icons/outlined/family_restroom.xml
deleted file mode 100644
index cb92359..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/family_restroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S16,5.11 16,4zM20,22v-6h2.5l-2.54,-7.63C19.68,7.55 18.92,7 18.06,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37l-0.86,2.58C16.26,11.55 17,12.68 17,14v8H20zM12.5,11.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5S11,9.17 11,10S11.67,11.5 12.5,11.5zM5.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S4.39,6 5.5,6zM7.5,22v-7H9V9c0,-1.1 -0.9,-2 -2,-2H4C2.9,7 2,7.9 2,9v6h1.5v7H7.5zM14,22v-4h1v-4c0,-0.82 -0.68,-1.5 -1.5,-1.5h-2c-0.82,0 -1.5,0.68 -1.5,1.5v4h1v4H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fast_forward.xml b/compose/material/material/icons/generator/raw-icons/outlined/fast_forward.xml
deleted file mode 100644
index 1e1016b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fast_forward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9.86L18.03,12L15,14.14V9.86M6,9.86L9.03,12L6,14.14V9.86M13,6v12l8.5,-6L13,6L13,6zM4,6v12l8.5,-6L4,6L4,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fast_rewind.xml b/compose/material/material/icons/generator/raw-icons/outlined/fast_rewind.xml
deleted file mode 100644
index a616754d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fast_rewind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.86v4.28L14.97,12 18,9.86m-9,0v4.28L5.97,12 9,9.86M20,6l-8.5,6 8.5,6L20,6zM11,6l-8.5,6 8.5,6L11,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fastfood.xml b/compose/material/material/icons/generator/raw-icons/outlined/fastfood.xml
deleted file mode 100644
index 2adebb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fastfood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21.98c0,0.56 0.45,1.01 1.01,1.01H15c0.56,0 1.01,-0.45 1.01,-1.01V21H1v0.98zM8.5,8.99C4.75,8.99 1,11 1,15h15c0,-4 -3.75,-6.01 -7.5,-6.01zM3.62,13c1.11,-1.55 3.47,-2.01 4.88,-2.01s3.77,0.46 4.88,2.01H3.62zM1,17h15v2H1zM18,5V1h-2v4h-5l0.23,2h9.56l-1.4,14H18v2h1.72c0.84,0 1.53,-0.65 1.63,-1.47L23,5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/favorite.xml b/compose/material/material/icons/generator/raw-icons/outlined/favorite.xml
deleted file mode 100644
index 52d4d9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/favorite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21.35l-1.45,-1.32C5.4,15.36 2,12.28 2,8.5 2,5.42 4.42,3 7.5,3c1.74,0 3.41,0.81 4.5,2.09C13.09,3.81 14.76,3 16.5,3 19.58,3 22,5.42 22,8.5c0,3.78 -3.4,6.86 -8.55,11.54L12,21.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/favorite_border.xml b/compose/material/material/icons/generator/raw-icons/outlined/favorite_border.xml
deleted file mode 100644
index 3edfe1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/favorite_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-1.74,0 -3.41,0.81 -4.5,2.09C10.91,3.81 9.24,3 7.5,3 4.42,3 2,5.42 2,8.5c0,3.78 3.4,6.86 8.55,11.54L12,21.35l1.45,-1.32C18.6,15.36 22,12.28 22,8.5 22,5.42 19.58,3 16.5,3zM12.1,18.55l-0.1,0.1 -0.1,-0.1C7.14,14.24 4,11.39 4,8.5 4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5 0,2.89 -3.14,5.74 -7.9,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fax.xml b/compose/material/material/icons/generator/raw-icons/outlined/fax.xml
deleted file mode 100644
index 924c480..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fax.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-1V4H8v5H7.22C6.67,8.39 5.89,8 5,8c-1.66,0 -3,1.34 -3,3v7c0,1.66 1.34,3 3,3c0.89,0 1.67,-0.39 2.22,-1H22v-8C22,10.34 20.66,9 19,9zM6,18c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V18zM10,6h6v3h-6V6zM20,18H8v-7h11c0.55,0 1,0.45 1,1V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12h4v5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/featured_play_list.xml b/compose/material/material/icons/generator/raw-icons/outlined/featured_play_list.xml
deleted file mode 100644
index ef54365..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/featured_play_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM5,10h9v2L5,12zM5,7h9v2L5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/featured_video.xml b/compose/material/material/icons/generator/raw-icons/outlined/featured_video.xml
deleted file mode 100644
index e8dc28a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/featured_video.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM4,6h9v7L4,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/feed.xml b/compose/material/material/icons/generator/raw-icons/outlined/feed.xml
deleted file mode 100644
index 9d9e910..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/feed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8L16,3zM19,19H5V5h10v4h4V19zM7,17h10v-2H7V17zM12,7H7v2h5V7zM7,13h10v-2H7V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/feedback.xml b/compose/material/material/icons/generator/raw-icons/outlined/feedback.xml
deleted file mode 100644
index 9c27702..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/feedback.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16l-0.59,0.59 -0.58,0.58L4,4h16v12zM11,12h2v2h-2zM11,6h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/female.xml b/compose/material/material/icons/generator/raw-icons/outlined/female.xml
deleted file mode 100644
index bb480ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/female.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,9.5C17.5,6.46 15.04,4 12,4S6.5,6.46 6.5,9.5c0,2.7 1.94,4.93 4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1C15.56,14.43 17.5,12.2 17.5,9.5zM8.5,9.5C8.5,7.57 10.07,6 12,6s3.5,1.57 3.5,3.5S13.93,13 12,13S8.5,11.43 8.5,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fence.xml b/compose/material/material/icons/generator/raw-icons/outlined/fence.xml
deleted file mode 100644
index e8fbfb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12v-2h-2V7l-3,-3l-2,2l-2,-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21zM16,6.83l1,1V10h-2V7.83l0.41,-0.41L16,6.83zM12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41,-0.41L12,6.83zM11,14v-2h2v2H11zM13,16v2h-2v-2H13zM7,7.83l1,-1l0.59,0.59L9,7.83V10H7V7.83zM7,12h2v2H7V12zM7,16h2v2H7V16zM17,18h-2v-2h2V18zM17,14h-2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/festival.xml b/compose/material/material/icons/generator/raw-icons/outlined/festival.xml
deleted file mode 100644
index 499d7e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/festival.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11V9c-6,-2 -11,-7 -11,-7S7,7 1,9v2c0,1.49 0.93,2.75 2.24,3.26C3.2,16.76 2.92,19.69 2,22h20c-0.92,-2.31 -1.2,-5.24 -1.24,-7.74C22.07,13.75 23,12.49 23,11zM12,4.71c1.33,1.14 3.49,2.84 6.11,4.29H5.89C8.51,7.55 10.67,5.85 12,4.71zM13,11h3c0,0.83 -0.67,1.5 -1.5,1.5S13,11.83 13,11zM9.5,12.5C8.67,12.5 8,11.83 8,11h3C11,11.83 10.33,12.5 9.5,12.5zM6,11c0,0.83 -0.67,1.5 -1.5,1.5S3,11.83 3,11H6zM4.66,20c0.39,-1.86 0.54,-3.82 0.57,-5.58c0.68,-0.15 1.29,-0.49 1.76,-0.98c0.25,0.25 0.54,0.45 0.85,0.62c-0.1,1.87 -0.26,4 -0.52,5.93H4.66zM9.35,20c0.24,-1.83 0.39,-3.78 0.48,-5.53c0.84,-0.08 1.61,-0.45 2.17,-1.02c0.56,0.57 1.32,0.94 2.17,1.02c0.1,1.75 0.24,3.7 0.48,5.53H9.35zM16.67,20c-0.27,-1.94 -0.43,-4.07 -0.52,-5.93c0.31,-0.17 0.61,-0.37 0.85,-0.62c0.47,0.48 1.08,0.83 1.76,0.98c0.03,1.76 0.18,3.72 0.57,5.58H16.67zM19.5,12.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C21,11.83 20.33,12.5 19.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fiber_dvr.xml b/compose/material/material/icons/generator/raw-icons/outlined/fiber_dvr.xml
deleted file mode 100644
index c705776..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fiber_dvr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.87,12.43l-1,-3.43h-1.5l1.75,6h1.5l1.75,-6h-1.5zM21,11.5v-1c0,-0.85 -0.65,-1.5 -1.5,-1.5L16,9v6h1.5v-2h1.15l0.85,2L21,15l-0.9,-2.1c0.5,-0.25 0.9,-0.8 0.9,-1.4zM19.5,11.5h-2v-1h2v1zM6.5,9L3,9v6h3.5c0.85,0 1.5,-0.65 1.5,-1.5v-3C8,9.65 7.35,9 6.5,9zM6.5,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fiber_manual_record.xml b/compose/material/material/icons/generator/raw-icons/outlined/fiber_manual_record.xml
deleted file mode 100644
index 7fa4877..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fiber_manual_record.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6 2.69,-6 6,-6m0,-2c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fiber_new.xml b/compose/material/material/icons/generator/raw-icons/outlined/fiber_new.xml
deleted file mode 100644
index f17bc10..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fiber_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,12.5L4.75,9L3.5,9v6h1.25v-3.5L7.3,15h1.2L8.5,9L7.25,9zM9.5,15h4v-1.25L11,13.75v-1.11h2.5v-1.26L11,11.38v-1.12h2.5L13.5,9h-4zM19.25,9v4.5h-1.12L18.13,9.99h-1.25v3.52h-1.13L15.75,9L14.5,9v5c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1L20.5,9h-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fiber_pin.xml b/compose/material/material/icons/generator/raw-icons/outlined/fiber_pin.xml
deleted file mode 100644
index a191087..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fiber_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h1.5L12.5,9L11,9v6zM18.75,9v3.5L16.25,9L15,9v6h1.25v-3.5L18.8,15L20,15L20,9h-1.25zM7.5,9L4,9v6h1.5v-2h2c0.85,0 1.5,-0.65 1.5,-1.5v-1C9,9.65 8.35,9 7.5,9zM7.5,11.5h-2v-1h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fiber_smart_record.xml b/compose/material/material/icons/generator/raw-icons/outlined/fiber_smart_record.xml
deleted file mode 100644
index d34bd00..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fiber_smart_record.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM9,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM17,4.26v2.09c2.33,0.82 4,3.04 4,5.65s-1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74 0,-3.73 -2.55,-6.85 -6,-7.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/file_copy.xml b/compose/material/material/icons/generator/raw-icons/outlined/file_copy.xml
deleted file mode 100644
index 71a3718..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/file_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM15,5L8,5c-1.1,0 -1.99,0.9 -1.99,2L6,21c0,1.1 0.89,2 1.99,2L19,23c1.1,0 2,-0.9 2,-2L21,11l-6,-6zM8,21L8,7h6v5h5v9L8,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/file_download.xml b/compose/material/material/icons/generator/raw-icons/outlined/file_download.xml
deleted file mode 100644
index 91d5844..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/file_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,15v3H6v-3H4v3c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-3H18zM17,11l-1.41,-1.41L13,12.17V4h-2v8.17L8.41,9.59L7,11l5,5L17,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/file_download_done.xml b/compose/material/material/icons/generator/raw-icons/outlined/file_download_done.xml
deleted file mode 100644
index a63575b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/file_download_done.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.13,5.41l-1.41,-1.41l-9.19,9.19l-4.25,-4.24l-1.41,1.41l5.66,5.66z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2h-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/file_download_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/file_download_off.xml
deleted file mode 100644
index e474dc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/file_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,15.17V15h2v2.17L18,15.17zM15.41,12.59L17,11l-1.41,-1.41L14,11.17L15.41,12.59zM13,10.17V4h-2v4.17L13,10.17zM21.19,21.19l-1.78,-1.78L2.81,2.81L1.39,4.22l6.19,6.19L7,11l5,5l0.59,-0.59L15.17,18H6v-3H4v3c0,1.1 0.9,2 2,2h11.17l2.61,2.61L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/file_open.xml b/compose/material/material/icons/generator/raw-icons/outlined/file_open.xml
deleted file mode 100644
index 53aa935..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/file_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,22H6c-1.1,0 -2,-0.9 -2,-2V4c0,-1.1 0.9,-2 2,-2h8l6,6v6h-2V9h-5V4H6v16h9V22zM19,21.66l0,-2.24l2.95,2.95l1.41,-1.41L20.41,18h2.24v-2H17v5.66H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/file_present.xml b/compose/material/material/icons/generator/raw-icons/outlined/file_present.xml
deleted file mode 100644
index 05a8b38..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/file_present.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM18,20H6V4h8v4h4V20zM12,17L12,17c-1.1,0 -2,-0.9 -2,-2l0,-5.5C10,9.22 10.22,9 10.5,9h0C10.78,9 11,9.22 11,9.5V15h2V9.5C13,8.12 11.88,7 10.5,7h0C9.12,7 8,8.12 8,9.5L8,15c0,2.21 1.79,4 4,4h0c2.21,0 4,-1.79 4,-4v-4h-2v4C14,16.1 13.1,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/file_upload.xml b/compose/material/material/icons/generator/raw-icons/outlined/file_upload.xml
deleted file mode 100644
index 26af936..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/file_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,15v3H6v-3H4v3c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-3H18zM7,9l1.41,1.41L11,7.83V16h2V7.83l2.59,2.58L17,9l-5,-5L7,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter.xml
deleted file mode 100644
index 6a916d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.96,10.29l-2.75,3.54 -1.96,-2.36L8.5,15h11l-3.54,-4.71zM3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_1.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_1.xml
deleted file mode 100644
index 2f8d582..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM14,15h2L16,5h-4v2h2v8zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_2.xml
deleted file mode 100644
index 3a4ba85..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM17,13h-4v-2h2c1.1,0 2,-0.89 2,-2L17,7c0,-1.11 -0.9,-2 -2,-2h-4v2h4v2h-2c-1.1,0 -2,0.89 -2,2v4h6v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_3.xml
deleted file mode 100644
index 4ab2a24..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM17,13v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1,0 2,-0.89 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_4.xml
deleted file mode 100644
index cea3980..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM15,15h2L17,5h-2v4h-2L13,5h-2v6h4v4zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_5.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_5.xml
deleted file mode 100644
index f72f8e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM17,13v-2c0,-1.11 -0.9,-2 -2,-2h-2L13,7h4L17,5h-6v6h4v2h-4v2h4c1.1,0 2,-0.89 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_6.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_6.xml
deleted file mode 100644
index 7d33eab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM13,15h2c1.1,0 2,-0.89 2,-2v-2c0,-1.11 -0.9,-2 -2,-2h-2L13,7h4L17,5h-4c-1.1,0 -2,0.89 -2,2v6c0,1.11 0.9,2 2,2zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_7.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_7.xml
deleted file mode 100644
index b23f4c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM13,15l4,-8L17,5h-6v2h4l-4,8h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_8.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_8.xml
deleted file mode 100644
index acd33ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_8.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM13,15h2c1.1,0 2,-0.89 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.89 -2,2v1.5c0,0.83 0.67,1.5 1.5,1.5 -0.83,0 -1.5,0.67 -1.5,1.5L11,13c0,1.11 0.9,2 2,2zM13,7h2v2h-2L13,7zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_9.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_9.xml
deleted file mode 100644
index 8b18b3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM15,5h-2c-1.1,0 -2,0.89 -2,2v2c0,1.11 0.9,2 2,2h2v2h-4v2h4c1.1,0 2,-0.89 2,-2L17,7c0,-1.11 -0.9,-2 -2,-2zM15,9h-2L13,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_9_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_9_plus.xml
deleted file mode 100644
index 90a643a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_9_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM14,12L14,8c0,-1.11 -0.9,-2 -2,-2h-1c-1.1,0 -2,0.89 -2,2v1c0,1.11 0.9,2 2,2h1v1L9,12v2h3c1.1,0 2,-0.89 2,-2zM11,9L11,8h1v1h-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,9h-2L19,7h-2v2h-2v2h2v2h2v-2h2v6L7,17L7,3h14v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_alt.xml
deleted file mode 100644
index 9f78b5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6h10l-5.01,6.3L7,6zM4.25,5.61C6.27,8.2 10,13 10,13v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-6c0,0 3.72,-4.8 5.74,-7.39C20.25,4.95 19.78,4 18.95,4H5.04C4.21,4 3.74,4.95 4.25,5.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_alt_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_alt_off.xml
deleted file mode 100644
index 625571d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_alt_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.95,6l-3.57,4.55l1.43,1.43c1.03,-1.31 4.98,-6.37 4.98,-6.37C20.3,4.95 19.83,4 19,4H6.83l2,2H16.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L10,13v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-2.17l5.78,5.78l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_b_and_w.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_b_and_w.xml
deleted file mode 100644
index f19287c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_b_and_w.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19l-7,-8v8L5,19l7,-8L12,5h7v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_center_focus.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_center_focus.xml
deleted file mode 100644
index 67767f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_center_focus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4zM5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_drama.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_drama.xml
deleted file mode 100644
index 57e77b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_drama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.61,5.64 5.36,8.04 2.35,8.36 0,10.9 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4h2c0,-2.76 -1.86,-5.08 -4.4,-5.78C8.61,6.88 10.2,6 12,6c3.03,0 5.5,2.47 5.5,5.5v0.5H19c1.65,0 3,1.35 3,3s-1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_frames.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_frames.xml
deleted file mode 100644
index 6dcda01..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_frames.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-4l-4,-4 -4,4L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,6h4.52l3.52,-3.5L15.52,6L20,6v14zM6,18h12L18,8L6,8v10zM8,10h8v6L8,16v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_hdr.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_hdr.xml
deleted file mode 100644
index 9496016..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_hdr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-4.22,5.63 1.25,1.67L14,9.33 19,16h-8.46l-4.01,-5.37L1,18h22L14,6zM5,16l1.52,-2.03L8.04,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_list.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_list.xml
deleted file mode 100644
index 454bd7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_list.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18h4v-2h-4v2zM3,6v2h18L21,6L3,6zM6,13h12v-2L6,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_list_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_list_off.xml
deleted file mode 100644
index 2882f30..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_list_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8H21V6H8.83L10.83,8zM15.83,13H18v-2h-4.17L15.83,13zM14,16.83V18h-4v-2h3.17l-3,-3H6v-2h2.17l-3,-3H3V6h0.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L14,16.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_none.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_none.xml
deleted file mode 100644
index 050d129..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_tilt_shift.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_tilt_shift.xml
deleted file mode 100644
index f7ab736..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_tilt_shift.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4.07L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62zM18.32,4.26C16.84,3.05 15.01,2.25 13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62l1.42,-1.43zM19.93,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1c0.86,1.11 1.44,2.44 1.62,3.9zM5.69,7.1L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9zM4.07,13L2.05,13c0.2,2.01 1,3.84 2.21,5.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89zM15,12c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3 1.34,3 3,3 3,-1.34 3,-3zM18.31,16.9l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32h-2.02c-0.18,1.45 -0.76,2.78 -1.62,3.89zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43c-1.1,0.86 -2.43,1.44 -3.89,1.62zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/filter_vintage.xml b/compose/material/material/icons/generator/raw-icons/outlined/filter_vintage.xml
deleted file mode 100644
index 0f88de6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/filter_vintage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.7,12.4c-0.28,-0.16 -0.57,-0.29 -0.86,-0.4 0.29,-0.11 0.58,-0.24 0.86,-0.4 1.92,-1.11 2.99,-3.12 3,-5.19 -0.91,-0.52 -1.95,-0.8 -3.01,-0.8 -1.02,0 -2.05,0.26 -2.99,0.8 -0.28,0.16 -0.54,0.35 -0.78,0.54 0.05,-0.31 0.08,-0.63 0.08,-0.95 0,-2.22 -1.21,-4.15 -3,-5.19C10.21,1.85 9,3.78 9,6c0,0.32 0.03,0.64 0.08,0.95 -0.24,-0.2 -0.5,-0.39 -0.78,-0.55 -0.94,-0.54 -1.97,-0.8 -2.99,-0.8 -1.05,0 -2.1,0.28 -3.01,0.8 0,2.07 1.07,4.08 3,5.19 0.28,0.16 0.57,0.29 0.86,0.4 -0.29,0.11 -0.58,0.24 -0.86,0.4 -1.92,1.11 -2.99,3.12 -3,5.19 0.91,0.52 1.95,0.8 3.01,0.8 1.02,0 2.05,-0.26 2.99,-0.8 0.28,-0.16 0.54,-0.35 0.78,-0.54 -0.05,0.32 -0.08,0.64 -0.08,0.96 0,2.22 1.21,4.15 3,5.19 1.79,-1.04 3,-2.97 3,-5.19 0,-0.32 -0.03,-0.64 -0.08,-0.95 0.24,0.2 0.5,0.38 0.78,0.54 0.94,0.54 1.97,0.8 2.99,0.8 1.05,0 2.1,-0.28 3.01,-0.8 -0.01,-2.07 -1.08,-4.08 -3,-5.19zM16.16,8.52c0.21,-0.17 0.38,-0.29 0.54,-0.37 0.61,-0.35 1.3,-0.54 2,-0.54 0.27,0 0.53,0.03 0.79,0.08 -0.31,0.91 -0.94,1.69 -1.78,2.18 -0.17,0.1 -0.36,0.18 -0.58,0.27l-1.38,0.52c-0.17,-0.46 -0.41,-0.87 -0.72,-1.24l1.13,-0.9zM12,3.37c0.63,0.72 1,1.66 1,2.63 0,0.19 -0.02,0.41 -0.05,0.63l-0.23,1.44C12.48,8.03 12.24,8 12,8s-0.48,0.03 -0.71,0.07l-0.23,-1.44C11.02,6.41 11,6.19 11,6c0,-0.98 0.37,-1.91 1,-2.63zM4.51,7.68c0.26,-0.06 0.53,-0.08 0.8,-0.08 0.69,0 1.38,0.18 1.99,0.54 0.15,0.09 0.32,0.2 0.49,0.35l1.15,0.96c-0.3,0.36 -0.53,0.76 -0.7,1.2l-1.38,-0.52c-0.21,-0.09 -0.4,-0.18 -0.56,-0.27 -0.87,-0.5 -1.49,-1.27 -1.79,-2.18zM7.84,15.47c-0.21,0.17 -0.38,0.29 -0.54,0.37 -0.61,0.35 -1.3,0.54 -2,0.54 -0.27,0 -0.53,-0.03 -0.79,-0.08 0.31,-0.91 0.94,-1.69 1.78,-2.18 0.17,-0.1 0.36,-0.18 0.58,-0.27l1.38,-0.52c0.16,0.46 0.41,0.88 0.72,1.24l-1.13,0.9zM12,20.63c-0.63,-0.72 -1,-1.66 -1,-2.63 0,-0.2 0.02,-0.41 0.06,-0.65l0.22,-1.42c0.23,0.04 0.47,0.07 0.72,0.07 0.24,0 0.48,-0.03 0.71,-0.07l0.23,1.44c0.04,0.22 0.06,0.44 0.06,0.63 0,0.98 -0.37,1.91 -1,2.63zM18.69,16.39c-0.69,0 -1.38,-0.18 -1.99,-0.54 -0.18,-0.1 -0.34,-0.22 -0.49,-0.34l-1.15,-0.96c0.3,-0.36 0.54,-0.76 0.7,-1.21l1.38,0.52c0.22,0.08 0.41,0.17 0.57,0.26 0.85,0.49 1.47,1.27 1.78,2.18 -0.27,0.07 -0.54,0.09 -0.8,0.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/find_in_page.xml b/compose/material/material/icons/generator/raw-icons/outlined/find_in_page.xml
deleted file mode 100644
index 2a5e1be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/find_in_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM6,4h7l5,5v8.58l-1.84,-1.84c1.28,-1.94 1.07,-4.57 -0.64,-6.28C14.55,8.49 13.28,8 12,8c-1.28,0 -2.55,0.49 -3.53,1.46 -1.95,1.95 -1.95,5.11 0,7.05 0.97,0.97 2.25,1.46 3.53,1.46 0.96,0 1.92,-0.28 2.75,-0.83L17.6,20L6,20L6,4zM14.11,15.1c-0.56,0.56 -1.31,0.88 -2.11,0.88s-1.55,-0.31 -2.11,-0.88c-0.56,-0.56 -0.88,-1.31 -0.88,-2.11s0.31,-1.55 0.88,-2.11c0.56,-0.57 1.31,-0.88 2.11,-0.88s1.55,0.31 2.11,0.88c0.56,0.56 0.88,1.31 0.88,2.11s-0.31,1.55 -0.88,2.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/find_replace.xml b/compose/material/material/icons/generator/raw-icons/outlined/find_replace.xml
deleted file mode 100644
index c4ad579..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/find_replace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6c1.38,0 2.63,0.56 3.54,1.46L12,10h6L18,4l-2.05,2.05C14.68,4.78 12.93,4 11,4c-3.53,0 -6.43,2.61 -6.92,6L6.1,10c0.46,-2.28 2.48,-4 4.9,-4zM16.64,15.14c0.66,-0.9 1.12,-1.97 1.28,-3.14L15.9,12c-0.46,2.28 -2.48,4 -4.9,4 -1.38,0 -2.63,-0.56 -3.54,-1.46L10,12L4,12v6l2.05,-2.05C7.32,17.22 9.07,18 11,18c1.55,0 2.98,-0.51 4.14,-1.36L20,21.49 21.49,20l-4.85,-4.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fingerprint.xml b/compose/material/material/icons/generator/raw-icons/outlined/fingerprint.xml
deleted file mode 100644
index 2dfd992..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fingerprint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.81,4.47c-0.08,0 -0.16,-0.02 -0.23,-0.06C15.66,3.42 14,3 12.01,3c-1.98,0 -3.86,0.47 -5.57,1.41 -0.24,0.13 -0.54,0.04 -0.68,-0.2 -0.13,-0.24 -0.04,-0.55 0.2,-0.68C7.82,2.52 9.86,2 12.01,2c2.13,0 3.99,0.47 6.03,1.52 0.25,0.13 0.34,0.43 0.21,0.67 -0.09,0.18 -0.26,0.28 -0.44,0.28zM3.5,9.72c-0.1,0 -0.2,-0.03 -0.29,-0.09 -0.23,-0.16 -0.28,-0.47 -0.12,-0.7 0.99,-1.4 2.25,-2.5 3.75,-3.27C9.98,4.04 14,4.03 17.15,5.65c1.5,0.77 2.76,1.86 3.75,3.25 0.16,0.22 0.11,0.54 -0.12,0.7 -0.23,0.16 -0.54,0.11 -0.7,-0.12 -0.9,-1.26 -2.04,-2.25 -3.39,-2.94 -2.87,-1.47 -6.54,-1.47 -9.4,0.01 -1.36,0.7 -2.5,1.7 -3.4,2.96 -0.08,0.14 -0.23,0.21 -0.39,0.21zM9.75,21.79c-0.13,0 -0.26,-0.05 -0.35,-0.15 -0.87,-0.87 -1.34,-1.43 -2.01,-2.64 -0.69,-1.23 -1.05,-2.73 -1.05,-4.34 0,-2.97 2.54,-5.39 5.66,-5.39s5.66,2.42 5.66,5.39c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5c0,-2.42 -2.09,-4.39 -4.66,-4.39s-4.66,1.97 -4.66,4.39c0,1.44 0.32,2.77 0.93,3.85 0.64,1.15 1.08,1.64 1.85,2.42 0.19,0.2 0.19,0.51 0,0.71 -0.11,0.1 -0.24,0.15 -0.37,0.15zM16.92,19.94c-1.19,0 -2.24,-0.3 -3.1,-0.89 -1.49,-1.01 -2.38,-2.65 -2.38,-4.39 0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5c0,1.41 0.72,2.74 1.94,3.56 0.71,0.48 1.54,0.71 2.54,0.71 0.24,0 0.64,-0.03 1.04,-0.1 0.27,-0.05 0.53,0.13 0.58,0.41 0.05,0.27 -0.13,0.53 -0.41,0.58 -0.57,0.11 -1.07,0.12 -1.21,0.12zM14.91,22c-0.04,0 -0.09,-0.01 -0.13,-0.02 -1.59,-0.44 -2.63,-1.03 -3.72,-2.1 -1.4,-1.39 -2.17,-3.24 -2.17,-5.22 0,-1.62 1.38,-2.94 3.08,-2.94s3.08,1.32 3.08,2.94c0,1.07 0.93,1.94 2.08,1.94s2.08,-0.87 2.08,-1.94c0,-3.77 -3.25,-6.83 -7.25,-6.83 -2.84,0 -5.44,1.58 -6.61,4.03 -0.39,0.81 -0.59,1.76 -0.59,2.8 0,0.78 0.07,2.01 0.67,3.61 0.1,0.26 -0.03,0.55 -0.29,0.64 -0.26,0.1 -0.55,-0.04 -0.64,-0.29 -0.49,-1.31 -0.73,-2.61 -0.73,-3.96 0,-1.2 0.23,-2.29 0.68,-3.24 1.33,-2.79 4.28,-4.6 7.51,-4.6 4.55,0 8.25,3.51 8.25,7.83 0,1.62 -1.38,2.94 -3.08,2.94s-3.08,-1.32 -3.08,-2.94c0,-1.07 -0.93,-1.94 -2.08,-1.94s-2.08,0.87 -2.08,1.94c0,1.71 0.66,3.31 1.87,4.51 0.95,0.94 1.86,1.46 3.27,1.85 0.27,0.07 0.42,0.35 0.35,0.61 -0.05,0.23 -0.26,0.38 -0.47,0.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fire_extinguisher.xml b/compose/material/material/icons/generator/raw-icons/outlined/fire_extinguisher.xml
deleted file mode 100644
index 1ebb226..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fire_extinguisher.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10v1c0,1.1 -0.9,2 -2,2H9c-1.1,0 -2,-0.9 -2,-2V19zM7,18h10v-5H7V18zM17,3v6l-3.15,-0.66c-0.01,0 -0.01,0.01 -0.02,0.02c1.55,0.62 2.72,1.98 3.07,3.64H7.1c0.34,-1.66 1.52,-3.02 3.07,-3.64c-0.33,-0.26 -0.6,-0.58 -0.8,-0.95L5,6.5v-1l4.37,-0.91C9.87,3.65 10.86,3 12,3c0.7,0 1.34,0.25 1.85,0.66L17,3zM13,6c-0.03,-0.59 -0.45,-1 -1,-1s-1,0.45 -1,1s0.45,1 1,1S13,6.55 13,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fire_hydrant_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/fire_hydrant_alt.xml
deleted file mode 100644
index f88449a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fire_hydrant_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.5c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S13.93,10.5 12,10.5zM12,15.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,15.5 12,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-1V8h2V6h-2.35C16.83,3.67 14.61,2 12,2S7.17,3.67 6.35,6H4v2h2v3H5c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v3H4v2h16v-2h-2v-3h1c1.1,0 2,-0.9 2,-2v-2C21,11.9 20.1,11 19,11zM12,4c1.47,0 2.75,0.81 3.44,2H8.56C9.25,4.81 10.53,4 12,4zM19,15h-3v5H8v-5H5v-2h3V8h8v5h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fire_truck.xml b/compose/material/material/icons/generator/raw-icons/outlined/fire_truck.xml
deleted file mode 100644
index 009b590..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fire_truck.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.9,10.69l-1.44,-4.32C21.18,5.55 20.42,5 19.56,5H19V4c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v1h-2c-1.1,0 -2,0.9 -2,2v4H1v5c0,1.1 0.9,2 2,2h1c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4c0,1.66 1.34,3 3,3s3,-1.34 3,-3h3v-6.68C23,11.11 22.97,10.9 22.9,10.69zM14,7h5.56l1.33,4H14V7zM7,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,19 7,19zM12,16H9.22C8.67,15.39 7.89,15 7,15s-1.67,0.39 -2.22,1H3v-3h9V16zM17,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,19 17,19zM19.22,16c-0.55,-0.61 -1.34,-1 -2.22,-1s-1.67,0.39 -2.22,1H14v-3h7v3H19.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5zM8.5,8.5H6.75v-2H8.5V8.5zM3.5,6.5h1.75v2H3.5V6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fireplace.xml b/compose/material/material/icons/generator/raw-icons/outlined/fireplace.xml
deleted file mode 100644
index 8bb5cc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fireplace.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,12.46c-0.15,0.42 -0.15,0.82 -0.08,1.28c0.1,0.55 0.33,1.04 0.2,1.6c-0.13,0.59 -0.77,1.38 -1.53,1.63c1.28,1.05 3.2,0.37 3.39,-1.32C14.16,14.11 12.55,13.67 12.01,12.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v20h20V2H2zM12,18c-1.58,0 -2.97,-1.88 -3,-3.06c0,-0.05 -0.01,-0.13 -0.01,-0.22c-0.13,-1.73 1,-3.2 2.47,-4.37c0.47,1.01 1.27,2.03 2.57,2.92C14.61,13.69 15,14.13 15,15C15,16.65 13.65,18 12,18zM20,20h-2v-2h-2.02c0.63,-0.84 1.02,-1.87 1.02,-3c0,-1.89 -1.09,-2.85 -1.85,-3.37C12.2,9.61 13,7 13,7c-6.73,3.57 -6.02,7.47 -6,8c0.03,0.96 0.49,2.07 1.23,3H6v2H4V4h16V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/first_page.xml b/compose/material/material/icons/generator/raw-icons/outlined/first_page.xml
deleted file mode 100644
index 81068b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/first_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,16.59L13.82,12l4.59,-4.59L17,6l-6,6 6,6 1.41,-1.41zM6,6h2v12H6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fit_screen.xml b/compose/material/material/icons/generator/raw-icons/outlined/fit_screen.xml
deleted file mode 100644
index f9e479f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fit_screen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,16h12V8H6V16zM8,10h8v4H8V10zM4,15H2v3c0,1.1 0.9,2 2,2h3v-2H4V15zM4,6h3V4H4C2.9,4 2,4.9 2,6v3h2V6zM20,4h-3v2h3v3h2V6C22,4.9 21.1,4 20,4zM20,18h-3v2h3c1.1,0 2,-0.9 2,-2v-3h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fitbit.xml b/compose/material/material/icons/generator/raw-icons/outlined/fitbit.xml
deleted file mode 100644
index da71490..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fitbit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.89,13.89c1.04,0 1.89,-0.85 1.89,-1.89s-0.85,-1.89 -1.89,-1.89C18.85,10.11 18,10.96 18,12S18.85,13.89 19.89,13.89zM15.65,13.68c0.93,0 1.68,-0.75 1.68,-1.68s-0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68S14.72,13.68 15.65,13.68zM15.65,9.42c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,8.67 14.72,9.42 15.65,9.42zM15.65,17.93c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,17.17 14.72,17.93 15.65,17.93zM11.41,13.47c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,13.47 11.41,13.47zM11.41,9.21c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,9.21 11.41,9.21zM11.41,17.73c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,17.07 10.59,17.73 11.41,17.73zM11.41,22c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,21.34 10.59,22 11.41,22zM11.41,4.94c0.81,0 1.47,-0.66 1.47,-1.47S12.22,2 11.41,2c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,4.94 11.41,4.94zM7.16,13.26c0.7,0 1.26,-0.57 1.26,-1.26s-0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26S6.46,13.26 7.16,13.26zM7.16,17.51c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,16.94 6.46,17.51 7.16,17.51zM7.16,9.02c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,8.45 6.46,9.02 7.16,9.02zM3.29,13.05c0.58,0 1.05,-0.47 1.05,-1.05s-0.47,-1.05 -1.05,-1.05c-0.58,0 -1.05,0.47 -1.05,1.05S2.71,13.05 3.29,13.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fitness_center.xml b/compose/material/material/icons/generator/raw-icons/outlined/fitness_center.xml
deleted file mode 100644
index 1d166b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fitness_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,14.86L22,13.43 20.57,12 17,15.57 8.43,7 12,3.43 10.57,2 9.14,3.43 7.71,2 5.57,4.14 4.14,2.71 2.71,4.14l1.43,1.43L2,7.71l1.43,1.43L2,10.57 3.43,12 7,8.43 15.57,17 12,20.57 13.43,22l1.43,-1.43L16.29,22l2.14,-2.14 1.43,1.43 1.43,-1.43 -1.43,-1.43L22,16.29l-1.43,-1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flag.xml b/compose/material/material/icons/generator/raw-icons/outlined/flag.xml
deleted file mode 100644
index d12f9b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.36,6l0.4,2H18v6h-3.36l-0.4,-2H7V6h5.36M14,4H5v17h2v-7h5.6l0.4,2h7V6h-5.6L14,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flag_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/flag_circle.xml
deleted file mode 100644
index 99113ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flag_circle.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9l-1,-2H8v11h1.5v-5H12l1,2h5V9H15zM16.5,13.5h-2.57l-1,-2H9.5v-3h3.57l1,2h2.43V13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flaky.xml b/compose/material/material/icons/generator/raw-icons/outlined/flaky.xml
deleted file mode 100644
index bbaaa70..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flaky.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.05,17.58l-0.01,0.01l-2.4,-2.4l1.06,-1.06l1.35,1.35L16.54,13l1.06,1.06l-3.54,3.54L14.05,17.58zM12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM7.34,6.28l1.41,1.41l1.41,-1.41l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06,-1.06l1.41,-1.41L6.28,7.34L7.34,6.28zM12,20c-2.2,0 -4.2,-0.9 -5.7,-2.3L17.7,6.3C19.1,7.8 20,9.8 20,12C20,16.4 16.4,20 12,20z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flare.xml b/compose/material/material/icons/generator/raw-icons/outlined/flare.xml
deleted file mode 100644
index 0698aaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11L1,11v2h6v-2zM9.17,7.76L7.05,5.64 5.64,7.05l2.12,2.12 1.41,-1.41zM13,1h-2v6h2L13,1zM18.36,7.05l-1.41,-1.41 -2.12,2.12 1.41,1.41 2.12,-2.12zM17,11v2h6v-2h-6zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM14.83,16.24l2.12,2.12 1.41,-1.41 -2.12,-2.12 -1.41,1.41zM5.64,16.95l1.41,1.41 2.12,-2.12 -1.41,-1.41 -2.12,2.12zM11,23h2v-6h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flash_auto.xml b/compose/material/material/icons/generator/raw-icons/outlined/flash_auto.xml
deleted file mode 100644
index cf9dd59..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flash_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2v12h3v9l7,-12L9,11l4,-9L3,2zM19,2h-2l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L19,2zM16.85,7.65L18,4l1.15,3.65h-2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flash_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/flash_off.xml
deleted file mode 100644
index 01dae3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flash_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h-3.61l2.28,2.28zM17,2L7,2v1.61l6.13,6.13zM3.41,2.86L2,4.27l5,5L7,13h3v9l3.58,-6.15L17.73,20l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flash_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/flash_on.xml
deleted file mode 100644
index d37d34c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flash_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,2v11h3v9l7,-12h-4l3,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flashlight_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/flashlight_off.xml
deleted file mode 100644
index c189bf0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flashlight_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41,-1.41L2.81,2.81zM14,20h-4v-7.17l4,4V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4l0,1l-8.17,0l2,2l6.17,0l0,0.39l-2,3.01l0,0.77l2,2l0,-2.17l2,-3l0,-6l-12,0l0,1.17l0.83,0.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flashlight_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/flashlight_on.xml
deleted file mode 100644
index e7075e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flashlight_on.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6v6l2,3v11h8V11l2,-3V2zM16,4v1H8V4H16zM14,10.4V20h-4v-9.61l-2,-3V7h8v0.39L14,10.4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flatware.xml b/compose/material/material/icons/generator/raw-icons/outlined/flatware.xml
deleted file mode 100644
index ffb2965..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flatware.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.08c0,1.77 -0.84,3.25 -2,3.82V21h-2V10.9c-1.16,-0.57 -2,-2.05 -2,-3.82C10.01,4.83 11.35,3 13,3C14.66,3 16,4.83 16,7.08zM17,3v18h2v-8h2V7C21,5.24 19.76,3 17,3zM8.28,3c-0.4,0 -0.72,0.32 -0.72,0.72V7H6.72V3.72C6.72,3.32 6.4,3 6,3S5.28,3.32 5.28,3.72V7H4.44V3.72C4.44,3.32 4.12,3 3.72,3S3,3.32 3,3.72V9c0,1.1 0.9,2 2,2v10h2V11c1.1,0 2,-0.9 2,-2V3.72C9,3.32 8.68,3 8.28,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flight.xml b/compose/material/material/icons/generator/raw-icons/outlined/flight.xml
deleted file mode 100644
index bd16985..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16v-2l-8,-5V3.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,2.67 10,3.5V9l-8,5v2l8,-2.5V19l-2,1.5V22l3.5,-1 3.5,1v-1.5L13,19v-5.5l8,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flight_class.xml b/compose/material/material/icons/generator/raw-icons/outlined/flight_class.xml
deleted file mode 100644
index c763faa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flight_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2V6C18,4.9 17.1,4 16,4zM16,11h-2V6h2V11zM9.5,16H18v2H9.49c-0.88,0 -1.66,-0.58 -1.92,-1.43L5,8V4h2v4L9.5,16zM8,19h10v2H8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flight_land.xml b/compose/material/material/icons/generator/raw-icons/outlined/flight_land.xml
deleted file mode 100644
index af88aa2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flight_land.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19v-2zM19.34,15.85c0.8,0.21 1.62,-0.26 1.84,-1.06 0.21,-0.8 -0.26,-1.62 -1.06,-1.84l-5.31,-1.42 -2.76,-9.02L10.12,2v8.28L5.15,8.95l-0.93,-2.32 -1.45,-0.39v5.17l16.57,4.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flight_takeoff.xml b/compose/material/material/icons/generator/raw-icons/outlined/flight_takeoff.xml
deleted file mode 100644
index 21e1fac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flight_takeoff.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19v-2zM22.07,9.64c-0.21,-0.8 -1.04,-1.28 -1.84,-1.06L14.92,10l-6.9,-6.43 -1.93,0.51 4.14,7.17 -4.97,1.33 -1.97,-1.54 -1.45,0.39 2.59,4.49L21,11.49c0.81,-0.23 1.28,-1.05 1.07,-1.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flip.xml b/compose/material/material/icons/generator/raw-icons/outlined/flip.xml
deleted file mode 100644
index 2fa3030..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM3,5v14c0,1.1 0.9,2 2,2h4v-2L5,19L5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM11,23h2L13,1h-2v22zM19,17h2v-2h-2v2zM15,5h2L17,3h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flip_camera_android.xml b/compose/material/material/icons/generator/raw-icons/outlined/flip_camera_android.xml
deleted file mode 100644
index ffe11c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flip_camera_android.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S9,10.34 9,12zM13,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,11.45 13,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10V8H5.09C6.47,5.61 9.05,4 12,4c3.72,0 6.85,2.56 7.74,6h2.06c-0.93,-4.56 -4.96,-8 -9.8,-8C8.73,2 5.82,3.58 4,6.01V4H2v6H8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14v2h2.91c-1.38,2.39 -3.96,4 -6.91,4c-3.72,0 -6.85,-2.56 -7.74,-6H2.2c0.93,4.56 4.96,8 9.8,8c3.27,0 6.18,-1.58 8,-4.01V20h2v-6H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flip_camera_ios.xml b/compose/material/material/icons/generator/raw-icons/outlined/flip_camera_ios.xml
deleted file mode 100644
index d21e1e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flip_camera_ios.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19H4V7h3.17h0.88l0.59,-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-2.21,0 -4,-1.79 -4,-4h2l-2.5,-2.5L5,13h2c0,2.76 2.24,5 5,5c0.86,0 1.65,-0.24 2.36,-0.62l-0.74,-0.74C13.13,16.87 12.58,17 12,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-0.86,0 -1.65,0.24 -2.36,0.62l0.74,0.73C10.87,9.13 11.42,9 12,9c2.21,0 4,1.79 4,4h-2l2.5,2.5L19,13h-2C17,10.24 14.76,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flip_to_back.xml b/compose/material/material/icons/generator/raw-icons/outlined/flip_to_back.xml
deleted file mode 100644
index 47d535a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flip_to_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7L7,7v2h2L9,7zM9,11L7,11v2h2v-2zM9,3c-1.11,0 -2,0.9 -2,2h2L9,3zM13,15h-2v2h2v-2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM13,3h-2v2h2L13,3zM9,17v-2L7,15c0,1.1 0.89,2 2,2zM19,13h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,17c1.1,0 2,-0.9 2,-2h-2v2zM5,7L3,7v12c0,1.1 0.89,2 2,2h12v-2L5,19L5,7zM15,5h2L17,3h-2v2zM15,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flip_to_front.xml b/compose/material/material/icons/generator/raw-icons/outlined/flip_to_front.xml
deleted file mode 100644
index 0cef2c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flip_to_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM5,21v-2L3,19c0,1.1 0.89,2 2,2zM3,9h2L5,7L3,7v2zM15,21h2v-2h-2v2zM19,3L9,3c-1.11,0 -2,0.9 -2,2v10c0,1.1 0.89,2 2,2h10c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,15L9,15L9,5h10v10zM11,21h2v-2h-2v2zM7,21h2v-2L7,19v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flood.xml b/compose/material/material/icons/generator/raw-icons/outlined/flood.xml
deleted file mode 100644
index 515dfcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flood.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,19c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.22,0 1.4,1 3.33,1c1.93,0 2.1,-1 3.33,-1c1.22,0 1.4,1 3.33,1v-2C20.76,20 20.62,19 18.67,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.68,17.5c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-0.63,0 -1,-0.28 -1.48,-0.55l-2.02,-7.53l2.09,0.85l0.74,-1.86L9.78,2L2,11.61l1.57,1.23l1.39,-1.78l0.93,3.48c-0.18,-0.02 -0.35,-0.05 -0.56,-0.05c-1.95,0 -2.09,1 -3.33,1v2c1.9,0 2.17,-1 3.35,-1C6.54,16.5 6.77,17.5 8.68,17.5zM10.42,4.41l5.74,2.09l2.15,8.02c-1.54,0.11 -1.82,0.89 -2.85,0.96l-1.42,-5.31l-3.86,1.04l0.91,3.39c-1.12,0.25 -1.41,0.9 -2.42,0.9c-0.18,0 -0.33,-0.02 -0.45,-0.05L6.5,9.09L10.42,4.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flourescent.xml b/compose/material/material/icons/generator/raw-icons/outlined/flourescent.xml
deleted file mode 100644
index 6945723..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flourescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14V9H5V15zM7,11h10v2H7V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2864,6.3989l1.7897,-1.8024l1.4192,1.4092l-1.7897,1.8024z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4947,6.0091l1.4071,-1.4071l1.789,1.789l-1.4071,1.4071z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4922,18.0762l1.8024,-1.7897l1.4092,1.4192l-1.8024,1.7897z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fluorescent.xml b/compose/material/material/icons/generator/raw-icons/outlined/fluorescent.xml
deleted file mode 100644
index 335729c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fluorescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14V9H5V15zM7,11h10v2H7V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.286,6.399l1.79,-1.802l1.419,1.409l-1.79,1.802z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.495,6.009l1.407,-1.407l1.789,1.789l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.492,18.076l1.802,-1.79l1.409,1.419l-1.802,1.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/flutter_dash.xml b/compose/material/material/icons/generator/raw-icons/outlined/flutter_dash.xml
deleted file mode 100644
index bfd69ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/flutter_dash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,11.7c0.29,-0.39 0.81,-0.56 1.27,-0.37c0.17,0.07 0.32,0.18 0.43,0.33c0.22,0.28 0.25,0.59 0.22,0.85c-0.05,0.33 -0.25,0.63 -0.54,0.79c0,0 -4.87,2.95 -5.07,2.69S11.07,11.7 11.07,11.7zM22,10c0,2.5 -1,3 -1.5,3c-0.23,0 -0.44,-0.1 -0.62,-0.26c-0.48,3.32 -2.36,5.31 -5.33,5.99c0.11,0.44 0.48,0.77 0.95,0.77l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C15.18,22.07 15,21.71 15,21.26c0,-0.3 0.04,-0.57 0.09,-0.8c-0.78,-0.16 -1.39,-0.78 -1.55,-1.56c-0.49,0.06 -1,0.1 -1.54,0.1c-0.88,0 -1.7,-0.09 -2.45,-0.25C9.53,18.83 9.5,18.91 9.5,19c0,0.55 0.45,1 1,1l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C10.18,22.57 10,22.21 10,21.76c0,-0.3 0.04,-0.57 0.09,-0.8C9.19,20.77 8.5,19.96 8.5,19c0,-0.18 0.03,-0.36 0.08,-0.53c-2.46,-0.86 -4.03,-2.78 -4.46,-5.74C3.94,12.9 3.74,13 3.5,13C3,13 2,12.5 2,10c0,-2.27 1.7,-4.5 3,-4.5c0.43,0 0.49,0.49 0.5,0.85c1.28,-1.78 3.26,-3.02 5.55,-3.29C11.25,2.1 12.13,1.5 13,1.5v1c0,0 0.33,-0.5 1,-0.5c0.67,0 1,0.5 1,0.5c-0.49,0 -0.85,0.35 -0.96,0.77c1.82,0.48 3.39,1.59 4.46,3.08C18.51,5.99 18.57,5.5 19,5.5C20.3,5.5 22,7.73 22,10zM5,11c0,0.81 0.1,1.53 0.25,2.21c0.18,-0.69 0.46,-1.33 0.83,-1.92c-0.21,-0.47 -0.34,-0.99 -0.34,-1.54C5.75,7.68 7.43,6 9.5,6c0.96,0 1.84,0.37 2.5,0.97C12.66,6.37 13.54,6 14.5,6c2.07,0 3.75,1.68 3.75,3.75c0,0.55 -0.12,1.07 -0.34,1.54c0.37,0.59 0.66,1.24 0.84,1.94C18.9,12.55 19,11.82 19,11c0,-3.86 -3.14,-7 -7,-7C8.14,4 5,7.14 5,11zM17.98,15.29c0,-0.1 0.02,-0.19 0.02,-0.29c0,-1.01 -0.26,-1.95 -0.7,-2.78c-0.69,0.78 -1.68,1.28 -2.8,1.28c-0.27,0 -0.54,-0.03 -0.79,-0.09c0.14,-0.23 0.23,-0.49 0.27,-0.77c0.01,-0.07 0.01,-0.13 0.02,-0.19c0.17,0.03 0.33,0.05 0.5,0.05c1.52,0 2.75,-1.23 2.75,-2.75S16.02,7 14.5,7c-0.67,0 -1.32,0.25 -1.83,0.72L12,8.32l-0.67,-0.6C10.82,7.25 10.17,7 9.5,7C7.98,7 6.75,8.23 6.75,9.75c0,1.34 0.96,2.46 2.23,2.7l-0.76,0.83c-0.6,-0.22 -1.12,-0.59 -1.53,-1.05C6.26,13.06 6,14 6,15c0,0.08 0.01,0.15 0.01,0.24C7.13,17.06 9.14,18 12,18C14.88,18 16.88,17.09 17.98,15.29zM16,9.75c0,0.97 -0.67,1.75 -1.5,1.75S13,10.72 13,9.75S13.67,8 14.5,8S16,8.78 16,9.75zM15.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S14.5,8.67 14.5,8.88s0.17,0.38 0.38,0.38S15.25,9.08 15.25,8.88zM11,9.75c0,0.97 -0.67,1.75 -1.5,1.75S8,10.72 8,9.75S8.67,8 9.5,8S11,8.78 11,9.75zM10.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S9.5,8.67 9.5,8.88s0.17,0.38 0.38,0.38S10.25,9.08 10.25,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fmd_bad.xml b/compose/material/material/icons/generator/raw-icons/outlined/fmd_bad.xml
deleted file mode 100644
index 6c3f424..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fmd_bad.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2zM12,19.33c-4.05,-3.7 -6,-6.79 -6,-9.14C6,6.57 8.65,4 12,4s6,2.57 6,6.2C18,12.54 16.05,15.64 12,19.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fmd_good.xml b/compose/material/material/icons/generator/raw-icons/outlined/fmd_good.xml
deleted file mode 100644
index 827fa0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fmd_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2c1.1,0 2,0.9 2,2S13.1,12 12,12zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14C16.05,15.64 18,12.54 18,10.2zM12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder.xml
deleted file mode 100644
index 9cd7523..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,6l2,2H20v10H4V6h5.17M10,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2h-8l-2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder_copy.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder_copy.xml
deleted file mode 100644
index e7cd07c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h17v2H3c-1.1,0 -2,-0.9 -2,-2V6h2V19zM23,6v9c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2L5.01,4C5.01,2.9 5.9,2 7,2h5l2,2h7C22.1,4 23,4.9 23,6zM7,15h14V6h-7.83l-2,-2H7V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder_delete.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder_delete.xml
deleted file mode 100644
index 1159289..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder_delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10V9h-2v1H12v1.5h1v4c0,0.83 0.67,1.5 1.5,1.5h2c0.83,0 1.5,-0.67 1.5,-1.5v-4h1V10H16.5zM16.5,15.5h-2v-4h2V15.5zM20,6h-8l-2,-2H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V8C22,6.89 21.11,6 20,6zM20,18H4V6h5.17l2,2H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder_off.xml
deleted file mode 100644
index e8e1160..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H7.17l4,4H20v9.17l1.76,1.76C21.91,18.65 22,18.34 22,18V8C22,6.9 21.1,6 20,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l1.56,1.56C2.1,5.35 2.01,5.66 2.01,6L2,18c0,1.1 0.9,2 2,2h13.17l3.31,3.31l1.41,-1.41L2.1,2.1zM4,18V6.83L15.17,18H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder_open.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder_open.xml
deleted file mode 100644
index f58b501..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder_shared.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder_shared.xml
deleted file mode 100644
index 55a9728..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder_shared.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h5.17l2,2L20,8v10zM15,13c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM11,17h8v-1c0,-1.33 -2.67,-2 -4,-2s-4,0.67 -4,2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder_special.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder_special.xml
deleted file mode 100644
index 322d6ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder_special.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h5.17l2,2L20,8v10zM13.08,14.04L12.39,17 15,15.47 17.61,17l-0.69,-2.96 2.3,-1.99 -3.03,-0.26L15,9l-1.19,2.79 -3.03,0.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/folder_zip.xml b/compose/material/material/icons/generator/raw-icons/outlined/folder_zip.xml
deleted file mode 100644
index 318e710..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/folder_zip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM16,16h2v-2h-2v-2h2v-2h-2V8h4v10h-4V16zM16,16h-2v2H4V6h5.17l2,2H14v2h2v2h-2v2h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/follow_the_signs.xml b/compose/material/material/icons/generator/raw-icons/outlined/follow_the_signs.xml
deleted file mode 100644
index 78da1c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/follow_the_signs.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S8.4,5.5 9.5,5.5zM5.75,8.9L3,23h2.1l1.75,-8L9,17v6h2v-7.55L8.95,13.4l0.6,-3C10.85,12 12.8,13 15,13v-2c-1.85,0 -3.45,-1 -4.35,-2.45L9.7,6.95C9.35,6.35 8.7,6 8,6C7.75,6 7.5,6.05 7.25,6.15L2,8.3V13h2V9.65L5.75,8.9M13,2v7h3.75v14h1.5V9H22V2H13zM18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/font_download.xml b/compose/material/material/icons/generator/raw-icons/outlined/font_download.xml
deleted file mode 100644
index aa820c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/font_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,15.5h5.64l1.14,3h2.09l-5.11,-13h-1.86l-5.11,13h2.09l1.12,-3zM12,7.98l2.07,5.52L9.93,13.5L12,7.98zM20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,4h16v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/font_download_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/font_download_off.xml
deleted file mode 100644
index 04a82e51..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/font_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.83,2H20c1.1,0 2,0.9 2,2v15.17l-2,-2V4H6.83L4.83,2zM10.92,6l-0.57,1.52l1.36,1.36l0.23,-0.66h0.1l0.54,1.52l3.04,3.04L13.07,6H10.92zM20.49,23.31L19.17,22H4c-1.1,0 -2,-0.9 -2,-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM17.17,20l-5.07,-5.07H9.58L8.49,18H6.41l2.39,-6.37L4,6.83V20H17.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/food_bank.xml b/compose/material/material/icons/generator/raw-icons/outlined/food_bank.xml
deleted file mode 100644
index fa5be086..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/food_bank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5l6,4.5v9H6v-9L12,5.5M12,3L4,9v12h16V9L12,3L12,3zM11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83 0.67,1.5 1.5,1.5v4h1v-4c0.83,0 1.5,-0.67 1.5,-1.5v-3H11.5zM13,11.5v3h1V18h1V9.5C13.9,9.5 13,10.4 13,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/forest.xml b/compose/material/material/icons/generator/raw-icons/outlined/forest.xml
deleted file mode 100644
index 5038b78..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/forest.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,18l-3.86,-6H22L15,2l-3,4.29L9,2L2,12h1.86L0,18h7v4h4v-4h2v4h4v-4H24zM15,5.49L18.16,10h-1.68l3.86,6h-3.62l-2.57,-4H16l-2.78,-3.97L15,5.49zM3.66,16l3.86,-6H5.84L9,5.49L12.16,10h-1.68l3.86,6H3.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fork_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/fork_left.xml
deleted file mode 100644
index 30a26f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fork_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,15.59L8,17l-4,-4l4,-4l1.41,1.41L7.83,12c1.51,-0.33 3.73,0.08 5.17,1.36l0,-6.53l-1.59,1.59L10,7l4,-4l4,4l-1.41,1.41L15,6.83V21l-2,0v-4c-0.73,-2.58 -3.07,-3.47 -5.17,-3L9.41,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fork_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/fork_right.xml
deleted file mode 100644
index a3a186d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fork_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,15.59L16,17l4,-4l-4,-4l-1.41,1.41L16.17,12c-1.51,-0.33 -3.73,0.08 -5.17,1.36l0,-6.53l1.59,1.59L14,7l-4,-4L6,7l1.41,1.41L9,6.83V21l2,0v-4c0.73,-2.58 3.07,-3.47 5.17,-3L14.59,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_align_center.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_align_center.xml
deleted file mode 100644
index 363e9a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15v2h10v-2L7,15zM3,21h18v-2L3,19v2zM3,13h18v-2L3,11v2zM7,7v2h10L17,7L7,7zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_align_justify.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_align_justify.xml
deleted file mode 100644
index e587932..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_align_justify.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM3,17h18v-2L3,15v2zM3,13h18v-2L3,11v2zM3,9h18L21,7L3,7v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_align_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_align_left.xml
deleted file mode 100644
index 4ff0c3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_align_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15L3,15v2h12v-2zM15,7L3,7v2h12L15,7zM3,13h18v-2L3,11v2zM3,21h18v-2L3,19v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_align_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_align_right.xml
deleted file mode 100644
index 5828e5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_align_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM9,17h12v-2L9,15v2zM3,13h18v-2L3,11v2zM9,9h12L21,7L9,7v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_bold.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_bold.xml
deleted file mode 100644
index 25e5865..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_bold.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.6,10.79c0.97,-0.67 1.65,-1.77 1.65,-2.79 0,-2.26 -1.75,-4 -4,-4L7,4v14h7.04c2.09,0 3.71,-1.7 3.71,-3.79 0,-1.52 -0.86,-2.82 -2.15,-3.42zM10,6.5h3c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5h-3v-3zM13.5,15.5L10,15.5v-3h3.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_clear.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_clear.xml
deleted file mode 100644
index 6aee2d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8V5H6.39l3,3h1.83l-0.55,1.28 2.09,2.1L14.21,8zM3.41,4.86L2,6.27l6.97,6.97L6.5,19h3l1.57,-3.66L16.73,21l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_color_fill.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_color_fill.xml
deleted file mode 100644
index f532866..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_color_fill.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59 -0.59,1.54 0,2.12l5.5,5.5C9.23,16.85 9.62,17 10,17s0.77,-0.15 1.06,-0.44l5.5,-5.5C17.15,10.48 17.15,9.53 16.56,8.94zM5.21,10L10,5.21L14.79,10H5.21zM19,11.5c0,0 -2,2.17 -2,3.5c0,1.1 0.9,2 2,2s2,-0.9 2,-2C21,13.67 19,11.5 19,11.5zM2,20h20v4H2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_color_reset.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_color_reset.xml
deleted file mode 100644
index b33b613..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_color_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.36c1.53,2 3.08,4.43 3.71,6.24l2.23,2.23c0.03,-0.27 0.06,-0.55 0.06,-0.83 0,-3.98 -6,-10.8 -6,-10.8s-1.18,1.35 -2.5,3.19l1.44,1.44c0.34,-0.51 0.7,-1 1.06,-1.47zM5.41,5.14L4,6.55l3.32,3.32C6.55,11.33 6,12.79 6,14c0,3.31 2.69,6 6,6 1.52,0 2.9,-0.57 3.95,-1.5l2.63,2.63L20,19.72 5.41,5.14zM12,18c-2.21,0 -4,-1.79 -4,-4 0,-0.69 0.32,-1.62 0.81,-2.64l5.72,5.72c-0.7,0.56 -1.57,0.92 -2.53,0.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_color_text.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_color_text.xml
deleted file mode 100644
index 6cdb775..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_color_text.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v4H2V20zM5.49,17h2.42l1.27,-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17zM9.91,11.39l2.03,-5.79h0.12l2.03,5.79H9.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_indent_decrease.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_indent_decrease.xml
deleted file mode 100644
index acd2481..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_indent_decrease.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h10v-2L11,15v2zM3,12l4,4L7,8l-4,4zM3,21h18v-2L3,19v2zM3,3v2h18L21,3L3,3zM11,9h10L21,7L11,7v2zM11,13h10v-2L11,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_indent_increase.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_indent_increase.xml
deleted file mode 100644
index 0ce524e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_indent_increase.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM3,8v8l4,-4 -4,-4zM11,17h10v-2L11,15v2zM3,3v2h18L21,3L3,3zM11,9h10L21,7L11,7v2zM11,13h10v-2L11,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_italic.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_italic.xml
deleted file mode 100644
index d84b45f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_italic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4v3h2.21l-3.42,8H6v3h8v-3h-2.21l3.42,-8H18V4h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_line_spacing.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_line_spacing.xml
deleted file mode 100644
index 24e211d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_line_spacing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7h2.5L5,3.5 1.5,7L4,7v10L1.5,17L5,20.5 8.5,17L6,17L6,7zM10,5v2h12L22,5L10,5zM10,19h12v-2L10,17v2zM10,13h12v-2L10,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_list_bulleted.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_list_bulleted.xml
deleted file mode 100644
index 1f7cbc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_list_bulleted.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM4,4.5c-0.83,0 -1.5,0.67 -1.5,1.5S3.17,7.5 4,7.5 5.5,6.83 5.5,6 4.83,4.5 4,4.5zM4,16.5c-0.83,0 -1.5,0.68 -1.5,1.5s0.68,1.5 1.5,1.5 1.5,-0.68 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM7,19h14v-2L7,17v2zM7,13h14v-2L7,11v2zM7,5v2h14L21,5L7,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_list_numbered.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_list_numbered.xml
deleted file mode 100644
index c089156..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_list_numbered.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h2v0.5L3,17.5v1h1v0.5L2,19v1h3v-4L2,16v1zM3,8h1L4,4L2,4v1h1v3zM2,11h1.8L2,13.1v0.9h3v-1L3.2,13L5,10.9L5,10L2,10v1zM7,5v2h14L21,5L7,5zM7,19h14v-2L7,17v2zM7,13h14v-2L7,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_list_numbered_rtl.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_list_numbered_rtl.xml
deleted file mode 100644
index ad2b8c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_list_numbered_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17h2v0.5h-1v1h1v0.5h-2v1h3v-4h-3v1zM19,8h1L20,4h-2v1h1v3zM18,11h1.8L18,13.1v0.9h3v-1h-1.8l1.8,-2.1L21,10h-3v1zM2,5h14v2L2,7L2,5zM2,17h14v2L2,19v-2zM2,11h14v2L2,13v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_overline.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_overline.xml
deleted file mode 100644
index 601edd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_overline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3v2H5V3H19zM12,7c-3.87,0 -7,3.13 -7,7c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,10.13 15.87,7 12,7zM12,18.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,9.5 12,9.5s4.5,2.01 4.5,4.5S14.49,18.5 12,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_paint.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_paint.xml
deleted file mode 100644
index a1bbe43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_paint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4L18,3c0,-0.55 -0.45,-1 -1,-1L5,2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L18,6h1v4L9,10v11c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-9h8L21,4h-3zM16,6L6,6L6,4h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_quote.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_quote.xml
deleted file mode 100644
index fb86f1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.62,18h-5.24l2,-4L13,14L13,6h8v7.24L18.62,18zM16.62,16h0.76L19,12.76L19,8h-4v4h3.62l-2,4zM8.62,18L3.38,18l2,-4L3,14L3,6h8v7.24L8.62,18zM6.62,16h0.76L9,12.76L9,8L5,8v4h3.62l-2,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_shapes.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_shapes.xml
deleted file mode 100644
index 9c5332d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_shapes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,7L23,1h-6v2L7,3L7,1L1,1v6h2v10L1,17v6h6v-2h10v2h6v-6h-2L21,7h2zM3,3h2v2L3,5L3,3zM5,21L3,21v-2h2v2zM17,19L7,19v-2L5,17L5,7h2L7,5h10v2h2v10h-2v2zM21,21h-2v-2h2v2zM19,5L19,3h2v2h-2zM13.73,14h-3.49l-0.73,2L7.89,16l3.4,-9h1.4l3.41,9h-1.63l-0.74,-2zM10.69,12.74h2.61L12,8.91l-1.31,3.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_size.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_size.xml
deleted file mode 100644
index 4cfa4c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_size.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v3h5v12h3L17,7h5L22,4L9,4zM3,12h3v7h3v-7h3L12,9L3,9v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_strikethrough.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_strikethrough.xml
deleted file mode 100644
index df6860c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_strikethrough.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19h4v-3h-4v3zM5,4v3h5v3h4V7h5V4H5zM3,14h18v-2H3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_textdirection_l_to_r.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_textdirection_l_to_r.xml
deleted file mode 100644
index f1631d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_textdirection_l_to_r.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2m8,-2L9,2C6.79,2 5,3.79 5,6s1.79,4 4,4v5h2L11,4h2v11h2L15,4h2L17,2zM17,14v3L5,17v2h12v3l4,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_textdirection_r_to_l.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_textdirection_r_to_l.xml
deleted file mode 100644
index 99e993a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_textdirection_r_to_l.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4v4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2m8,-2h-8C7.79,2 6,3.79 6,6s1.79,4 4,4v5h2V4h2v11h2V4h2V2zM8,14l-4,4 4,4v-3h12v-2H8v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/format_underlined.xml b/compose/material/material/icons/generator/raw-icons/outlined/format_underlined.xml
deleted file mode 100644
index e97ab8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/format_underlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c3.31,0 6,-2.69 6,-6L18,3h-2.5v8c0,1.93 -1.57,3.5 -3.5,3.5S8.5,12.93 8.5,11L8.5,3L6,3v8c0,3.31 2.69,6 6,6zM5,19v2h14v-2L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fort.xml b/compose/material/material/icons/generator/raw-icons/outlined/fort.xml
deleted file mode 100644
index cb736175..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fort.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3v2h-2V3h-2v2h-2V3h-2v4l2,2v1H9V9l2,-2V3H9v2H7V3H5v2H3V3H1v4l2,2v6l-2,2v4h9v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h9v-4l-2,-2V9l2,-2V3H21zM21,19h-5v-1c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v1H3v-1.17l2,-2V8.17L3.83,7h4.34L7,8.17V12h10V8.17L15.83,7h4.34L19,8.17v7.66l2,2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/forum.xml b/compose/material/material/icons/generator/raw-icons/outlined/forum.xml
deleted file mode 100644
index f4bda94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/forum.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4v7L5.17,11L4,12.17L4,4h11m1,-2L3,2c-0.55,0 -1,0.45 -1,1v14l4,-4h10c0.55,0 1,-0.45 1,-1L17,3c0,-0.55 -0.45,-1 -1,-1zM21,6h-2v9L6,15v2c0,0.55 0.45,1 1,1h11l4,4L22,7c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/forward.xml b/compose/material/material/icons/generator/raw-icons/outlined/forward.xml
deleted file mode 100644
index bbeb624..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8.83L17.17,12 14,15.17V14H6v-4h8V8.83M12,4v4H4v8h8v4l8,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/forward_10.xml b/compose/material/material/icons/generator/raw-icons/outlined/forward_10.xml
deleted file mode 100644
index 43a3bb8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/forward_10.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6s2.69,-6 6,-6v4l5,-5l-5,-5v4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.9,16l0,-4.27l-0.09,0l-1.77,0.63l0,0.69l1.01,-0.31l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.32,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1s-0.33,0.18 -0.45,0.33s-0.23,0.34 -0.29,0.57s-0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57s0.28,0.26 0.46,0.33s0.37,0.1 0.59,0.1s0.41,-0.03 0.59,-0.1s0.33,-0.18 0.45,-0.33s0.22,-0.34 0.29,-0.57s0.1,-0.5 0.1,-0.82V13.5c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57S14.49,11.85 14.32,11.78zM14.33,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32s-0.11,0.14 -0.19,0.17s-0.16,0.05 -0.25,0.05s-0.18,-0.02 -0.25,-0.05s-0.14,-0.09 -0.19,-0.17s-0.09,-0.19 -0.12,-0.32s-0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31s0.11,-0.14 0.19,-0.17s0.16,-0.05 0.25,-0.05s0.18,0.02 0.25,0.05s0.14,0.09 0.19,0.17s0.09,0.18 0.12,0.31s0.04,0.29 0.04,0.48V14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/forward_30.xml b/compose/material/material/icons/generator/raw-icons/outlined/forward_30.xml
deleted file mode 100644
index a70c4b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/forward_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6 2.69,-6 6,-6v4l5,-5 -5,-5v4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8h-2zM10.54,15.22c-0.06,0.05 -0.12,0.09 -0.2,0.12s-0.17,0.04 -0.27,0.04c-0.09,0 -0.17,-0.01 -0.25,-0.04s-0.14,-0.06 -0.2,-0.11 -0.1,-0.1 -0.13,-0.17 -0.05,-0.14 -0.05,-0.22h-0.85c0,0.21 0.04,0.39 0.12,0.55s0.19,0.28 0.33,0.38 0.29,0.18 0.46,0.23 0.35,0.07 0.53,0.07c0.21,0 0.41,-0.03 0.6,-0.08s0.34,-0.14 0.48,-0.24 0.24,-0.24 0.32,-0.39 0.12,-0.33 0.12,-0.53c0,-0.23 -0.06,-0.44 -0.18,-0.61s-0.3,-0.3 -0.54,-0.39c0.1,-0.05 0.2,-0.1 0.28,-0.17s0.15,-0.14 0.2,-0.22 0.1,-0.16 0.13,-0.25 0.04,-0.18 0.04,-0.27c0,-0.2 -0.04,-0.37 -0.11,-0.53s-0.17,-0.28 -0.3,-0.38 -0.28,-0.18 -0.46,-0.23 -0.37,-0.08 -0.59,-0.08c-0.19,0 -0.38,0.03 -0.54,0.08s-0.32,0.13 -0.44,0.23 -0.23,0.22 -0.3,0.37 -0.11,0.3 -0.11,0.48h0.85c0,-0.07 0.02,-0.14 0.05,-0.2s0.07,-0.11 0.12,-0.15 0.11,-0.07 0.18,-0.1 0.14,-0.03 0.22,-0.03c0.1,0 0.18,0.01 0.25,0.04s0.13,0.06 0.18,0.11 0.08,0.11 0.11,0.17 0.04,0.14 0.04,0.22c0,0.18 -0.05,0.32 -0.16,0.43s-0.26,0.16 -0.48,0.16h-0.43v0.66h0.45c0.11,0 0.2,0.01 0.29,0.04s0.16,0.06 0.22,0.11 0.11,0.12 0.14,0.2 0.05,0.18 0.05,0.29c0,0.09 -0.01,0.17 -0.04,0.24s-0.08,0.11 -0.13,0.17zM14.44,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1 -0.33,0.18 -0.45,0.33 -0.23,0.34 -0.29,0.57 -0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57 0.28,0.26 0.46,0.33 0.37,0.1 0.59,0.1 0.41,-0.03 0.59,-0.1 0.33,-0.18 0.45,-0.33 0.22,-0.34 0.29,-0.57 0.1,-0.5 0.1,-0.82v-0.74c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57 -0.28,-0.26 -0.46,-0.33zM14.45,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32 -0.11,0.14 -0.19,0.17 -0.16,0.05 -0.25,0.05 -0.18,-0.02 -0.25,-0.05 -0.14,-0.09 -0.19,-0.17 -0.09,-0.19 -0.12,-0.32 -0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31 0.11,-0.14 0.19,-0.17 0.16,-0.05 0.25,-0.05 0.18,0.02 0.25,0.05 0.14,0.09 0.19,0.17 0.09,0.18 0.12,0.31 0.04,0.29 0.04,0.48v0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/forward_5.xml b/compose/material/material/icons/generator/raw-icons/outlined/forward_5.xml
deleted file mode 100644
index 96096d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/forward_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.95,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6 2.69,-6 6,-6v4l5,-5 -5,-5v4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8h-2zM12.43,15.15c-0.05,0.07 -0.11,0.13 -0.18,0.17s-0.17,0.06 -0.27,0.06c-0.17,0 -0.31,-0.05 -0.42,-0.15s-0.17,-0.24 -0.19,-0.41h-0.84c0.01,0.2 0.05,0.37 0.13,0.53s0.19,0.28 0.32,0.39 0.29,0.19 0.46,0.24 0.35,0.08 0.53,0.08c0.24,0 0.46,-0.04 0.64,-0.12s0.33,-0.18 0.45,-0.31 0.21,-0.28 0.27,-0.45 0.09,-0.35 0.09,-0.54c0,-0.22 -0.03,-0.43 -0.09,-0.6s-0.14,-0.33 -0.25,-0.45 -0.25,-0.22 -0.41,-0.28 -0.34,-0.1 -0.55,-0.1c-0.07,0 -0.14,0.01 -0.2,0.02s-0.13,0.02 -0.18,0.04 -0.1,0.03 -0.15,0.05 -0.08,0.04 -0.11,0.05l0.11,-0.92h1.7v-0.71L10.9,11.74l-0.25,2.17 0.67,0.17c0.03,-0.03 0.06,-0.06 0.1,-0.09s0.07,-0.05 0.12,-0.07 0.1,-0.04 0.15,-0.05 0.13,-0.02 0.2,-0.02c0.12,0 0.22,0.02 0.3,0.05s0.16,0.09 0.21,0.15 0.1,0.14 0.13,0.24 0.04,0.19 0.04,0.31 -0.01,0.22 -0.03,0.31 -0.06,0.17 -0.11,0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/forward_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/outlined/forward_to_inbox.xml
deleted file mode 100644
index eb4ed47..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/forward_to_inbox.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h9v-2H4V8l8,5l8,-5v5h2V6C22,4.9 21.1,4 20,4zM12,11L4,6h16L12,11zM19,15l4,4l-4,4v-3h-4v-2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/foundation.xml b/compose/material/material/icons/generator/raw-icons/outlined/foundation.xml
deleted file mode 100644
index 5c2d36f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/foundation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12zM7,15v-4.81l4,-3.6V15H7zM13,15V6.59l4,3.6V15H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/free_breakfast.xml b/compose/material/material/icons/generator/raw-icons/outlined/free_breakfast.xml
deleted file mode 100644
index f95525d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/free_breakfast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h16v2L4,21zM20,3L4,3v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.9 2,-2L22,5c0,-1.11 -0.89,-2 -2,-2zM16,13c0,1.1 -0.9,2 -2,2L8,15c-1.1,0 -2,-0.9 -2,-2L6,5h10v8zM20,8h-2L18,5h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/free_cancellation.xml b/compose/material/material/icons/generator/raw-icons/outlined/free_cancellation.xml
deleted file mode 100644
index 95a5824..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/free_cancellation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.21,20H5V10h14v4.38l2,-2V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h8.21L11.21,20zM5,6h14v2H5V6zM16.54,22.5L13,18.96l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,22.5zM10.41,14L12,15.59L10.59,17L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/front_hand.xml b/compose/material/material/icons/generator/raw-icons/outlined/front_hand.xml
deleted file mode 100644
index 86e05e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/front_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,8c-0.17,0 -0.34,0.02 -0.5,0.05V4.5C18,3.12 16.88,2 15.5,2c-0.19,0 -0.37,0.02 -0.54,0.06C14.75,0.89 13.73,0 12.5,0c-1.06,0 -1.96,0.66 -2.33,1.59C9.96,1.53 9.73,1.5 9.5,1.5C8.12,1.5 7,2.62 7,4v0.55C6.84,4.52 6.67,4.5 6.5,4.5C5.12,4.5 4,5.62 4,7v8.5c0,4.69 3.81,8.5 8.5,8.5s8.5,-3.81 8.5,-8.5v-5C21,9.12 19.88,8 18.5,8zM19,15.5c0,3.59 -2.91,6.5 -6.5,6.5S6,19.09 6,15.5V7c0,-0.28 0.22,-0.5 0.5,-0.5S7,6.72 7,7v5h2V4c0,-0.28 0.22,-0.5 0.5,-0.5S10,3.72 10,4v7h2V2.5C12,2.22 12.22,2 12.5,2S13,2.22 13,2.5V11h2V4.5C15,4.22 15.22,4 15.5,4S16,4.22 16,4.5v8.92c-1.77,0.77 -3,2.53 -3,4.58h2c0,-1.66 1.34,-3 3,-3v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fullscreen.xml b/compose/material/material/icons/generator/raw-icons/outlined/fullscreen.xml
deleted file mode 100644
index 804cebc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14L5,14v5h5v-2L7,17v-3zM5,10h2L7,7h3L10,5L5,5v5zM17,17h-3v2h5v-5h-2v3zM14,5v2h3v3h2L19,5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/fullscreen_exit.xml b/compose/material/material/icons/generator/raw-icons/outlined/fullscreen_exit.xml
deleted file mode 100644
index 1efbe0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/fullscreen_exit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h3v3h2v-5L5,14v2zM8,8L5,8v2h5L10,5L8,5v3zM14,19h2v-3h3v-2h-5v5zM16,8L16,5h-2v5h5L19,8h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/functions.xml b/compose/material/material/icons/generator/raw-icons/outlined/functions.xml
deleted file mode 100644
index d449837..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/functions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4H6v2l6.5,6L6,18v2h12v-3h-7l5,-5 -5,-5h7V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/g_mobiledata.xml
deleted file mode 100644
index f8dfa69..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11v2h2v2H9V9h7c0,-1.1 -0.9,-2 -2,-2H9C7.9,7 7,7.9 7,9v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/g_translate.xml b/compose/material/material/icons/generator/raw-icons/outlined/g_translate.xml
deleted file mode 100644
index ad112be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/g_translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-9.12L10,2L4,2c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h7l1,3h8c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM7.17,14.59c-2.25,0 -4.09,-1.83 -4.09,-4.09s1.83,-4.09 4.09,-4.09c1.04,0 1.99,0.37 2.74,1.07l0.07,0.06 -1.23,1.18 -0.06,-0.05c-0.29,-0.27 -0.78,-0.59 -1.52,-0.59 -1.31,0 -2.38,1.09 -2.38,2.42s1.07,2.42 2.38,2.42c1.37,0 1.96,-0.87 2.12,-1.46L7.08,11.46L7.08,9.91h3.95l0.01,0.07c0.04,0.21 0.05,0.4 0.05,0.61 0,2.35 -1.61,4 -3.92,4zM13.2,12.88c0.33,0.6 0.74,1.18 1.19,1.7l-0.54,0.53 -0.65,-2.23zM13.97,12.12h-0.99l-0.31,-1.04h3.99s-0.34,1.31 -1.56,2.74c-0.52,-0.62 -0.89,-1.23 -1.13,-1.7zM21,20c0,0.55 -0.45,1 -1,1h-7l2,-2 -0.81,-2.77 0.92,-0.92L17.79,18l0.73,-0.73 -2.71,-2.68c0.9,-1.03 1.6,-2.25 1.92,-3.51L19,11.08v-1.04h-3.64L15.36,9h-1.04v1.04h-1.96L11.18,6L20,6c0.55,0 1,0.45 1,1v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gamepad.xml b/compose/material/material/icons/generator/raw-icons/outlined/gamepad.xml
deleted file mode 100644
index 5f7393f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gamepad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4v2.67l-1,1 -1,-1L11,4h2m7,7v2h-2.67l-1,-1 1,-1L20,11M6.67,11l1,1 -1,1L4,13v-2h2.67M12,16.33l1,1L13,20h-2v-2.67l1,-1M15,2L9,2v5.5l3,3 3,-3L15,2zM22,9h-5.5l-3,3 3,3L22,15L22,9zM7.5,9L2,9v6h5.5l3,-3 -3,-3zM12,13.5l-3,3L9,22h6v-5.5l-3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/games.xml b/compose/material/material/icons/generator/raw-icons/outlined/games.xml
deleted file mode 100644
index 5f7393f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/games.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4v2.67l-1,1 -1,-1L11,4h2m7,7v2h-2.67l-1,-1 1,-1L20,11M6.67,11l1,1 -1,1L4,13v-2h2.67M12,16.33l1,1L13,20h-2v-2.67l1,-1M15,2L9,2v5.5l3,3 3,-3L15,2zM22,9h-5.5l-3,3 3,3L22,15L22,9zM7.5,9L2,9v6h5.5l3,-3 -3,-3zM12,13.5l-3,3L9,22h6v-5.5l-3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/garage.xml b/compose/material/material/icons/generator/raw-icons/outlined/garage.xml
deleted file mode 100644
index 7b272d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/garage.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.78,18.5h0.44C6.65,18.5 7,18.14 7,17.69V16.5h10v1.19c0,0.45 0.34,0.81 0.78,0.81h0.44c0.43,0 0.78,-0.36 0.78,-0.81v-6.5c-0.82,-2.46 -1.34,-4.03 -1.56,-4.69c-0.05,-0.16 -0.12,-0.29 -0.19,-0.4c-0.02,-0.02 -0.03,-0.04 -0.05,-0.07c-0.38,-0.52 -0.92,-0.53 -0.92,-0.53H7.72c0,0 -0.54,0.01 -0.92,0.54C6.78,6.06 6.77,6.08 6.75,6.1C6.68,6.21 6.61,6.34 6.56,6.5C6.34,7.16 5.82,8.72 5,11.19v6.5C5,18.14 5.35,18.5 5.78,18.5zM8.33,7.5h7.34l0.23,0.69l0.43,1.31H7.67L8.33,7.5zM7,11.51V11.5h10v0.01v2.99H7V11.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gas_meter.xml b/compose/material/material/icons/generator/raw-icons/outlined/gas_meter.xml
deleted file mode 100644
index b71ebc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gas_meter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-1V2h-2v2h-2V2H9v2H8C5.79,4 4,5.79 4,8v10c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4V8C20,5.79 18.21,4 16,4zM18,18c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2V8c0,-1.1 0.9,-2 2,-2h8c1.1,0 2,0.9 2,2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,15.54C9.5,16.9 10.62,18 12,18s2.5,-1.1 2.5,-2.46c0,-1.09 -0.45,-1.41 -2.5,-3.79C9.93,14.15 9.5,14.46 9.5,15.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gavel.xml b/compose/material/material/icons/generator/raw-icons/outlined/gavel.xml
deleted file mode 100644
index 48c0e59..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gavel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h12v2H1v-2zM5.24,8.07l2.83,-2.83 14.14,14.14 -2.83,2.83L5.24,8.07zM12.32,1l5.66,5.66 -2.83,2.83 -5.66,-5.66L12.32,1zM3.83,9.48l5.66,5.66 -2.83,2.83L1,12.31l2.83,-2.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/generating_tokens.xml b/compose/material/material/icons/generator/raw-icons/outlined/generating_tokens.xml
deleted file mode 100644
index dc32538..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/generating_tokens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8C17,7.58 13.42,4 9,4zM9,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S12.31,18 9,18zM12,10.5h-2v5H8v-5H6V9h6V10.5zM20.25,3.75L23,5l-2.75,1.25L19,9l-1.25,-2.75L15,5l2.75,-1.25L19,1L20.25,3.75zM20.25,17.75L23,19l-2.75,1.25L19,23l-1.25,-2.75L15,19l2.75,-1.25L19,15L20.25,17.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gesture.xml b/compose/material/material/icons/generator/raw-icons/outlined/gesture.xml
deleted file mode 100644
index c3087f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gesture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.59,6.89c0.7,-0.71 1.4,-1.35 1.71,-1.22 0.5,0.2 0,1.03 -0.3,1.52 -0.25,0.42 -2.86,3.89 -2.86,6.31 0,1.28 0.48,2.34 1.34,2.98 0.75,0.56 1.74,0.73 2.64,0.46 1.07,-0.31 1.95,-1.4 3.06,-2.77 1.21,-1.49 2.83,-3.44 4.08,-3.44 1.63,0 1.65,1.01 1.76,1.79 -3.78,0.64 -5.38,3.67 -5.38,5.37 0,1.7 1.44,3.09 3.21,3.09 1.63,0 4.29,-1.33 4.69,-6.1L21,14.88v-2.5h-2.47c-0.15,-1.65 -1.09,-4.2 -4.03,-4.2 -2.25,0 -4.18,1.91 -4.94,2.84 -0.58,0.73 -2.06,2.48 -2.29,2.72 -0.25,0.3 -0.68,0.84 -1.11,0.84 -0.45,0 -0.72,-0.83 -0.36,-1.92 0.35,-1.09 1.4,-2.86 1.85,-3.52 0.78,-1.14 1.3,-1.92 1.3,-3.28C8.95,3.69 7.31,3 6.44,3 5.12,3 3.97,4 3.72,4.25c-0.36,0.36 -0.66,0.66 -0.88,0.93l1.75,1.71zM13.88,18.55c-0.31,0 -0.74,-0.26 -0.74,-0.72 0,-0.6 0.73,-2.2 2.87,-2.76 -0.3,2.69 -1.43,3.48 -2.13,3.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/get_app.xml b/compose/material/material/icons/generator/raw-icons/outlined/get_app.xml
deleted file mode 100644
index ea28503..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/get_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5v6h1.17L12,13.17 9.83,11L11,11L11,5h2m2,-2L9,3v6L5,9l7,7 7,-7h-4L15,3zM19,18L5,18v2h14v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gif.xml b/compose/material/material/icons/generator/raw-icons/outlined/gif.xml
deleted file mode 100644
index d60d97d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gif.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9L13,9v6h-1.5L11.5,9zM9,9L6,9c-0.6,0 -1,0.5 -1,1v4c0,0.5 0.4,1 1,1h3c0.6,0 1,-0.5 1,-1v-2L8.5,12v1.5h-2v-3L10,10.5L10,10c0,-0.5 -0.4,-1 -1,-1zM19,10.5L19,9h-4.5v6L16,15v-2h2v-1.5h-2v-1h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gif_box.xml b/compose/material/material/icons/generator/raw-icons/outlined/gif_box.xml
deleted file mode 100644
index a2ff3d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gif_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14V19zM5,3C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5zM11.5,14h1v-4h-1V14zM13.5,14h1v-1.5H16v-1h-1.5V11h2v-1h-3V14zM9.5,12v1h-1v-2h2c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1H9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/girl.xml b/compose/material/material/icons/generator/raw-icons/outlined/girl.xml
deleted file mode 100644
index 96b3cd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/girl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,16v4h-4v-4H8l2.38,-6.38C10.63,8.95 11.28,8.5 12,8.5s1.37,0.45 1.62,1.12L16,16H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gite.xml b/compose/material/material/icons/generator/raw-icons/outlined/gite.xml
deleted file mode 100644
index 2ee3d8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6zM4,12h10v5H4V12zM20,17h-4v-6.17l2,-2v0l2,2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/golf_course.xml b/compose/material/material/icons/generator/raw-icons/outlined/golf_course.xml
deleted file mode 100644
index f3593e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/golf_course.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5.92L9,2v18H7v-1.73c-1.79,0.35 -3,0.99 -3,1.73 0,1.1 2.69,2 6,2s6,-0.9 6,-2c0,-0.99 -2.16,-1.81 -5,-1.97V8.98l6,-3.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gpp_bad.xml b/compose/material/material/icons/generator/raw-icons/outlined/gpp_bad.xml
deleted file mode 100644
index d868183..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gpp_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09zM9.91,8.5L8.5,9.91L10.59,12L8.5,14.09l1.41,1.41L12,13.42l2.09,2.08l1.41,-1.41L13.42,12l2.08,-2.09L14.09,8.5L12,10.59L9.91,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gpp_good.xml b/compose/material/material/icons/generator/raw-icons/outlined/gpp_good.xml
deleted file mode 100644
index 80b76d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gpp_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83V6.31l6,-2.12l6,2.12V11.09zM8.82,10.59L7.4,12l3.54,3.54l5.66,-5.66l-1.41,-1.41l-4.24,4.24L8.82,10.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gpp_maybe.xml b/compose/material/material/icons/generator/raw-icons/outlined/gpp_maybe.xml
deleted file mode 100644
index 9ab3f4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gpp_maybe.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v5h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gps_fixed.xml b/compose/material/material/icons/generator/raw-icons/outlined/gps_fixed.xml
deleted file mode 100644
index b050330..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gps_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gps_not_fixed.xml b/compose/material/material/icons/generator/raw-icons/outlined/gps_not_fixed.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gps_not_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gps_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/gps_off.xml
deleted file mode 100644
index a580646..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gps_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77L23,13v-2h-2.06zM3,4.27l2.04,2.04C3.97,7.62 3.26,9.23 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21l1.41,-1.41L4.41,2.86 3,4.27zM16.27,17.54C15.09,18.45 13.61,19 12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grade.xml b/compose/material/material/icons/generator/raw-icons/outlined/grade.xml
deleted file mode 100644
index 7f7bc6a83..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.13l0.97,2.29 0.47,1.11 1.2,0.1 2.47,0.21 -1.88,1.63 -0.91,0.79 0.27,1.18 0.56,2.41 -2.12,-1.28 -1.03,-0.64 -1.03,0.62 -2.12,1.28 0.56,-2.41 0.27,-1.18 -0.91,-0.79 -1.88,-1.63 2.47,-0.21 1.2,-0.1 0.47,-1.11 0.97,-2.27M12,2L9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/gradient.xml b/compose/material/material/icons/generator/raw-icons/outlined/gradient.xml
deleted file mode 100644
index 8cf579c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/gradient.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v2h-2L11,9zM9,11h2v2L9,13v-2zM13,11h2v2h-2v-2zM15,9h2v2h-2L15,9zM7,9h2v2L7,11L7,9zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,18L7,18v-2h2v2zM13,18h-2v-2h2v2zM17,18h-2v-2h2v2zM19,11h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2L9,15v-2L7,13v2L5,15v-2h2v-2L5,11L5,5h14v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grading.xml b/compose/material/material/icons/generator/raw-icons/outlined/grading.xml
deleted file mode 100644
index b5d0218..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grading.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h16v2H4V7zM4,13h16v-2H4V13zM4,17h7v-2H4V17zM4,21h7v-2H4V21zM15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42L18.58,15L15.41,18.17zM4,3v2h16V3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grain.xml b/compose/material/material/icons/generator/raw-icons/outlined/grain.xml
deleted file mode 100644
index daf1370..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM14,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM14,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM10,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/graphic_eq.xml b/compose/material/material/icons/generator/raw-icons/outlined/graphic_eq.xml
deleted file mode 100644
index 42f814b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/graphic_eq.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18h2L9,6L7,6v12zM11,22h2L13,2h-2v20zM3,14h2v-4L3,10v4zM15,18h2L17,6h-2v12zM19,10v4h2v-4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grass.xml b/compose/material/material/icons/generator/raw-icons/outlined/grass.xml
deleted file mode 100644
index aafa3e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grass.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20H2v-2h5.75l0,0C7.02,15.19 4.81,12.99 2,12.26C2.64,12.1 3.31,12 4,12C8.42,12 12,15.58 12,20zM22,12.26C21.36,12.1 20.69,12 20,12c-2.93,0 -5.48,1.58 -6.88,3.93c0.29,0.66 0.53,1.35 0.67,2.07c0.13,0.65 0.2,1.32 0.2,2h2h6v-2h-5.75C16.98,15.19 19.19,12.99 22,12.26zM15.64,11.02c0.78,-2.09 2.23,-3.84 4.09,-5C15.44,6.16 12,9.67 12,14c0,0.01 0,0.02 0,0.02C12.95,12.75 14.2,11.72 15.64,11.02zM11.42,8.85C10.58,6.66 8.88,4.89 6.7,4C8.14,5.86 9,8.18 9,10.71c0,0.21 -0.03,0.41 -0.04,0.61c0.43,0.24 0.83,0.52 1.22,0.82C10.39,10.96 10.83,9.85 11.42,8.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grid_3x3.xml b/compose/material/material/icons/generator/raw-icons/outlined/grid_3x3.xml
deleted file mode 100644
index bdc2232..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grid_3x3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grid_4x4.xml b/compose/material/material/icons/generator/raw-icons/outlined/grid_4x4.xml
deleted file mode 100644
index 460133b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grid_4x4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22zM7,7h4v4H7V7zM7,17v-4h4v4H7zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grid_goldenratio.xml b/compose/material/material/icons/generator/raw-icons/outlined/grid_goldenratio.xml
deleted file mode 100644
index 96956d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grid_goldenratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grid_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/grid_off.xml
deleted file mode 100644
index b832e0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grid_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4v0.89l2,2L10,4h4v4h-2.89l2,2L14,10v0.89l2,2L16,10h4v4h-2.89l2,2L20,16v0.89l2,2L22,4c0,-1.1 -0.9,-2 -2,-2L5.11,2l2,2L8,4zM16,4h4v4h-4L16,4zM1.41,1.14L0,2.55l2,2L2,20c0,1.1 0.9,2 2,2h15.45l2.01,2.01 1.41,-1.41L1.41,1.14zM10,12.55L11.45,14L10,14v-1.45zM4,6.55L5.45,8L4,8L4,6.55zM8,20L4,20v-4h4v4zM8,14L4,14v-4h3.45l0.55,0.55L8,14zM14,20h-4v-4h3.45l0.55,0.55L14,20zM16,20v-1.45L17.45,20L16,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grid_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/grid_on.xml
deleted file mode 100644
index cacc82c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grid_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM8,20L4,20v-4h4v4zM8,14L4,14v-4h4v4zM8,8L4,8L4,4h4v4zM14,20h-4v-4h4v4zM14,14h-4v-4h4v4zM14,8h-4L10,4h4v4zM20,20h-4v-4h4v4zM20,14h-4v-4h4v4zM20,8h-4L16,4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/grid_view.xml b/compose/material/material/icons/generator/raw-icons/outlined/grid_view.xml
deleted file mode 100644
index 63154d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/grid_view.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v8h8V3H3zM9,9H5V5h4V9zM3,13v8h8v-8H3zM9,19H5v-4h4V19zM13,3v8h8V3H13zM19,9h-4V5h4V9zM13,13v8h8v-8H13zM19,19h-4v-4h4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/group.xml b/compose/material/material/icons/generator/raw-icons/outlined/group.xml
deleted file mode 100644
index 24b174c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/group.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13.75c-2.34,0 -7,1.17 -7,3.5L2,19h14v-1.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h4v-1.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/group_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/group_add.xml
deleted file mode 100644
index b21a269..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/group_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9l0,-2l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4S4,5.79 4,8S5.79,12 8,12zM8,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2S6,9.1 6,8S6.9,6 8,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13zM14,18H2v-0.99C2.2,16.29 5.3,15 8,15s5.8,1.29 6,2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/group_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/group_off.xml
deleted file mode 100644
index d70d9c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/group_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.42 -0.5,-2.73 -1.33,-3.76C14.09,4.1 14.53,4 15,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4c-0.06,0 -0.12,0 -0.18,0l-0.77,-0.77C14.65,10.29 15,9.18 15,8zM22.83,20H23v-3c0,-2.18 -3.58,-3.47 -6.34,-3.87c1.1,0.75 1.95,1.71 2.23,2.94L22.83,20zM9,6C8.94,6 8.89,6 8.84,6.01l-1.6,-1.6C7.77,4.15 8.37,4 9,4c2.21,0 4,1.79 4,4c0,0.63 -0.15,1.23 -0.41,1.76l-1.6,-1.6C11,8.11 11,8.06 11,8C11,6.9 10.1,6 9,6zM9.17,12C9.11,12 9.06,12 9,12c-2.21,0 -4,-1.79 -4,-4c0,-0.06 0,-0.11 0,-0.17L0.69,3.51L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0,-2.66 5.33,-4 8,-4c0.37,0 0.8,0.03 1.25,0.08L9.17,12zM9,15c-2.7,0 -5.8,1.29 -6,2.01V18h12v-0.17l-2.11,-2.11C11.76,15.31 10.33,15 9,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/group_remove.xml b/compose/material/material/icons/generator/raw-icons/outlined/group_remove.xml
deleted file mode 100644
index 2cf68b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/group_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,9v2h-6V9H24zM8,4C5.79,4 4,5.79 4,8s1.79,4 4,4s4,-1.79 4,-4S10.21,4 8,4zM8,10c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S9.1,10 8,10zM8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13zM14,18H2v-0.99C2.2,16.29 5.3,15 8,15s5.8,1.29 6,2V18zM12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05zM16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/group_work.xml b/compose/material/material/icons/generator/raw-icons/outlined/group_work.xml
deleted file mode 100644
index 36931ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/group_work.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/groups.xml b/compose/material/material/icons/generator/raw-icons/outlined/groups.xml
deleted file mode 100644
index e9db81e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/groups.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C2,12.1 2.9,13 4,13zM5.13,14.1C4.76,14.04 4.39,14 4,14c-0.99,0 -1.93,0.21 -2.78,0.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61C4.5,15.56 4.73,14.78 5.13,14.1zM20,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C18,12.1 18.9,13 20,13zM24,16.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0V16.43zM16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65zM8.07,16c0.09,-0.23 0.13,-0.39 0.91,-0.69c0.97,-0.38 1.99,-0.56 3.02,-0.56s2.05,0.18 3.02,0.56c0.77,0.3 0.81,0.46 0.91,0.69H8.07zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,8 12,8M12,6c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3C15,7.34 13.66,6 12,6L12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/groups_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/groups_2.xml
deleted file mode 100644
index 2abcc14..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/groups_2.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.27,12h3.46c0.93,0 1.63,-0.83 1.48,-1.75l-0.3,-1.79C14.67,7.04 13.44,6 12,6S9.33,7.04 9.09,8.47l-0.3,1.79C8.64,11.17 9.34,12 10.27,12zM11.06,8.79C11.14,8.33 11.53,8 12,8s0.86,0.33 0.94,0.79l0.2,1.21h-2.28L11.06,8.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.66,11.11c-0.13,0.26 -0.18,0.57 -0.1,0.88c0.16,0.69 0.76,1.03 1.53,1c0,0 1.49,0 1.95,0c0.83,0 1.51,-0.58 1.51,-1.29c0,-0.14 -0.03,-0.27 -0.07,-0.4c-0.01,-0.03 -0.01,-0.05 0.01,-0.08c0.09,-0.16 0.14,-0.34 0.14,-0.53c0,-0.31 -0.14,-0.6 -0.36,-0.82c-0.03,-0.03 -0.03,-0.06 -0.02,-0.1c0.07,-0.2 0.07,-0.43 0.01,-0.65C6.1,8.69 5.71,8.4 5.27,8.38c-0.03,0 -0.05,-0.01 -0.07,-0.03C5.03,8.14 4.72,8 4.37,8C4.07,8 3.8,8.1 3.62,8.26C3.59,8.29 3.56,8.29 3.53,8.28c-0.14,-0.06 -0.3,-0.09 -0.46,-0.09c-0.65,0 -1.18,0.49 -1.24,1.12c0,0.02 -0.01,0.04 -0.03,0.06c-0.29,0.26 -0.46,0.65 -0.41,1.05c0.03,0.22 0.12,0.43 0.25,0.6C1.67,11.04 1.67,11.08 1.66,11.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65zM8.07,16c0.09,-0.23 0.27,-0.42 0.49,-0.52c1.1,-0.49 2.26,-0.73 3.43,-0.73c1.18,0 2.33,0.25 3.43,0.73c0.23,0.1 0.4,0.29 0.49,0.52H8.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11v-0.5c0,-1.1 -0.9,-2 -2,-2h-2c-0.42,0 -0.65,0.48 -0.39,0.81l0.7,0.63C18.12,10.25 18,10.61 18,11c0,1.1 0.9,2 2,2S22,12.1 22,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/groups_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/groups_3.xml
deleted file mode 100644
index 51475b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/groups_3.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65zM8.07,16c0.09,-0.23 0.27,-0.42 0.49,-0.52c1.1,-0.49 2.26,-0.73 3.43,-0.73c1.18,0 2.33,0.25 3.43,0.73c0.23,0.1 0.4,0.29 0.49,0.52H8.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,7.34 9,9C9,10.66 10.34,12 12,12zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.497,11l2.503,-2.503l2.503,2.503l-2.503,2.503z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9l-2.5,4l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/h_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/h_mobiledata.xml
deleted file mode 100644
index 2e267be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/h_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/h_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/h_plus_mobiledata.xml
deleted file mode 100644
index 119aa12..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/h_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11zM22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hail.xml b/compose/material/material/icons/generator/raw-icons/outlined/hail.xml
deleted file mode 100644
index ff85537..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,6 12,6zM17,2h2c0,2.7 -0.93,4.41 -2.3,5.5c-0.5,0.4 -1.1,0.7 -1.7,0.9V22h-2v-6h-2v6H9V10.1c-0.3,0.1 -0.5,0.2 -0.6,0.3C7.87,10.81 7,11.43 7,14H5c0,-2.06 0.35,-3.78 2.11,-5.29C8.21,7.81 10,7 12,7s2.68,-0.46 3.48,-1.06C15.96,5.55 17,4.76 17,2zM4,16h3v6H4V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/handshake.xml b/compose/material/material/icons/generator/raw-icons/outlined/handshake.xml
deleted file mode 100644
index ec7de25..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/handshake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.22,19.85c-0.18,0.18 -0.5,0.21 -0.71,0c-0.18,-0.18 -0.21,-0.5 0,-0.71l3.39,-3.39l-1.41,-1.41l-3.39,3.39c-0.19,0.2 -0.51,0.19 -0.71,0c-0.21,-0.21 -0.18,-0.53 0,-0.71l3.39,-3.39l-1.41,-1.41l-3.39,3.39c-0.18,0.18 -0.5,0.21 -0.71,0c-0.19,-0.19 -0.19,-0.51 0,-0.71l3.39,-3.39L9.24,10.1l-3.39,3.39c-0.18,0.18 -0.5,0.21 -0.71,0c-0.19,-0.2 -0.19,-0.51 0,-0.71L9.52,8.4l1.87,1.86c0.95,0.95 2.59,0.94 3.54,0c0.98,-0.98 0.98,-2.56 0,-3.54l-1.86,-1.86l0.28,-0.28c0.78,-0.78 2.05,-0.78 2.83,0l4.24,4.24c0.78,0.78 0.78,2.05 0,2.83L12.22,19.85zM21.83,13.07c1.56,-1.56 1.56,-4.09 0,-5.66l-4.24,-4.24c-1.56,-1.56 -4.09,-1.56 -5.66,0l-0.28,0.28l-0.28,-0.28c-1.56,-1.56 -4.09,-1.56 -5.66,0L2.17,6.71c-1.42,1.42 -1.55,3.63 -0.4,5.19l1.45,-1.45C2.83,9.7 2.96,8.75 3.59,8.12l3.54,-3.54c0.78,-0.78 2.05,-0.78 2.83,0l3.56,3.56c0.18,0.18 0.21,0.5 0,0.71c-0.21,0.21 -0.53,0.18 -0.71,0L9.52,5.57l-5.8,5.79c-0.98,0.97 -0.98,2.56 0,3.54c0.39,0.39 0.89,0.63 1.42,0.7c0.07,0.52 0.3,1.02 0.7,1.42c0.4,0.4 0.9,0.63 1.42,0.7c0.07,0.52 0.3,1.02 0.7,1.42c0.4,0.4 0.9,0.63 1.42,0.7c0.07,0.54 0.31,1.03 0.7,1.42c0.47,0.47 1.1,0.73 1.77,0.73c0.67,0 1.3,-0.26 1.77,-0.73L21.83,13.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/handyman.xml b/compose/material/material/icons/generator/raw-icons/outlined/handyman.xml
deleted file mode 100644
index ae20c30..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/handyman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.67,18.17l-5.3,-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39 1.02,0.39 1.41,0l2.12,-2.12C22.06,19.2 22.06,18.56 21.67,18.17zM18.84,19.59l-4.24,-4.24l0.71,-0.71l4.24,4.24L18.84,19.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,10.19l1.41,-1.41l2.12,2.12c1.17,-1.17 1.17,-3.07 0,-4.24l-3.54,-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3c-0.39,0.39 -0.39,1.02 0,1.41l2.12,2.12c0.39,0.39 1.02,0.39 1.41,0l5.3,-5.3v-2.12l5.15,-5.15L17.34,10.19zM9.36,15.34l-4.24,4.24l-0.71,-0.71l4.24,-4.24l0,0L9.36,15.34L9.36,15.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hardware.xml b/compose/material/material/icons/generator/raw-icons/outlined/hardware.xml
deleted file mode 100644
index 24539f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hardware.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3l-3,3V3H9C6.24,3 4,5.24 4,8h5v12c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8l3,3h2V3H18zM13,19h-2v-6h2V19zM11,11V6H6.77C7.32,5.39 8.11,5 9,5h4v6H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hd.xml b/compose/material/material/icons/generator/raw-icons/outlined/hd.xml
deleted file mode 100644
index c775950..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hd.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7.5,13h2v2L11,15L11,9L9.5,9v2.5h-2L7.5,9L6,9v6h1.5zM18,14v-4c0,-0.55 -0.45,-1 -1,-1h-4v6h4c0.55,0 1,-0.45 1,-1zM16.5,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_auto.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_auto.xml
deleted file mode 100644
index 964f4bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20zM11.01,6L6.88,17h1.9l1,-2.81h4.44L15.21,17h1.9L12.98,6H11.01zM10.35,12.59l1.6,-4.55h0.09l1.6,4.55H10.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_auto_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_auto_select.xml
deleted file mode 100644
index 3a65ebd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_auto_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18l-2,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l2,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18.5l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0l0,2l1.5,0l0,-2l2,0l0,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1C18,16.7 17.3,16 16.5,16zM16.5,18.5h-2v-1h2V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.97,5.3l-1.02,2.89l2.1,0l-1.02,-2.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM14.04,11l-0.63,-1.79h-2.83L9.96,11H8.74l2.63,-7h1.25l2.63,7H14.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_enhanced_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_enhanced_select.xml
deleted file mode 100644
index 83df60f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_enhanced_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,2 12,2zM12,4C9.79,4 8,5.79 8,8s1.79,4 4,4s4,-1.79 4,-4S14.21,4 12,4zM13,11h-2V9H9V7h2V5h2v2h2v2h-2V11zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM18,18.5c0,0.6 -0.4,1.1 -0.9,1.4L18,22h-1.5l-0.9,-2h-1.1v2H13v-6h3.5c0.8,0 1.5,0.7 1.5,1.5V18.5zM16.5,18.5v-1h-2v1H16.5zM3.5,18v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2H3.5zM10,16c0.8,0 1.5,0.7 1.5,1.5v3c0,0.8 -0.7,1.5 -1.5,1.5H6.5v-6H10zM10,20.5v-3H8v3H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_off.xml
deleted file mode 100644
index f661682..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,15v-2h1.1l0.9,2L21,15l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5L16,9v4.86L17.14,15h0.36zM17.5,10.5h2v1h-2v-1zM13,10.5v0.36l1.5,1.5L14.5,10.5c0,-0.8 -0.7,-1.5 -1.5,-1.5h-1.86l1.5,1.5L13,10.5zM2.51,2.49L1.45,3.55 6.9,9h-0.4v2h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15v-4.9l1.5,1.5L9.5,15h3.4l7.6,7.6 1.06,-1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_off_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_off_select.xml
deleted file mode 100644
index 3386919..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_off_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98,4.15L9.42,2.59c5.1,-2.42 10.41,2.89 7.99,7.99l-1.56,-1.56C16.66,6.06 13.94,3.34 10.98,4.15zM6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1 2.89,10.41 7.99,7.99l1.66,1.66l1.41,-1.41L6.34,2.34zM8.15,6.98l4.87,4.87C10.06,12.66 7.34,9.94 8.15,6.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_on.xml
deleted file mode 100644
index 3bf87f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5L16,9v6h1.5v-2h1.1l0.9,2L21,15l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4zM19.5,11.5h-2v-1h2v1zM6.5,11h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15L8,9L6.5,9v2zM13,9L9.5,9v6L13,15c0.8,0 1.5,-0.7 1.5,-1.5v-3c0,-0.8 -0.7,-1.5 -1.5,-1.5zM13,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_on_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_on_select.xml
deleted file mode 100644
index d883059..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_on_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4s-4,-1.79 -4,-4S9.79,4 12,4M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_plus.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_plus.xml
deleted file mode 100644
index 5aa37c91..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.13,19c1.15,0.64 2.47,1 3.87,1c4.41,0 8,-3.59 8,-8s-3.59,-8 -8,-8s-8,3.59 -8,8c0,2.52 1.17,4.77 3,6.24V13h3.5c0.8,0 1.5,0.7 1.5,1.5v1c0,0.6 -0.4,1.1 -0.9,1.4L12,19h-1.5l-0.9,-2H8.5v2H8.13zM12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12S6.48,2 12,2zM17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zM10.5,15.5v-1h-2v1H10.5zM10.5,8V6H12v6h-1.5V9.5h-2V12H7V6h1.5v2H10.5zM16,6c0.8,0 1.5,0.7 1.5,1.5v3c0,0.8 -0.7,1.5 -1.5,1.5h-3V6H16zM16,10.5v-3h-1.5v3H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_strong.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_strong.xml
deleted file mode 100644
index 73e3297..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM5,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hdr_weak.xml b/compose/material/material/icons/generator/raw-icons/outlined/hdr_weak.xml
deleted file mode 100644
index 0a0eb26..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hdr_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM17,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/headphones.xml b/compose/material/material/icons/generator/raw-icons/outlined/headphones.xml
deleted file mode 100644
index 4fbe4d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/headphones.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9v7c0,1.1 0.9,2 2,2h4v-8H5v-1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v1h-4v8h4c1.1,0 2,-0.9 2,-2v-7C21,7.03 16.97,3 12,3zM7,15v4H5v-4H7zM19,19h-2v-4h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/headphones_battery.xml b/compose/material/material/icons/generator/raw-icons/outlined/headphones_battery.xml
deleted file mode 100644
index 10cd994..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/headphones_battery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1V6h-2v1h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7zM20,16h-2V9h2V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c-3.31,0 -6,2.69 -6,6v4c0,1.1 0.9,2 2,2h2v-5H3.5v-1c0,-2.48 2.02,-4.5 4.5,-4.5s4.5,2.02 4.5,4.5v1H10v5h2c1.1,0 2,-0.9 2,-2v-4C14,8.69 11.31,6 8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/headset.xml b/compose/material/material/icons/generator/raw-icons/outlined/headset.xml
deleted file mode 100644
index 04cc1d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/headset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14v3c0,0.55 -0.45,1 -1,1h-1v-4h2M7,14v4H6c-0.55,0 -1,-0.45 -1,-1v-3h2m5,-13c-4.97,0 -9,4.03 -9,9v7c0,1.66 1.34,3 3,3h3v-8H5v-2c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v2h-4v8h3c1.66,0 3,-1.34 3,-3v-7c0,-4.97 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/headset_mic.xml b/compose/material/material/icons/generator/raw-icons/outlined/headset_mic.xml
deleted file mode 100644
index 929fbf0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/headset_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14v4h-2v-4h2M7,14v4H6c-0.55,0 -1,-0.45 -1,-1v-3h2m5,-13c-4.97,0 -9,4.03 -9,9v7c0,1.66 1.34,3 3,3h3v-8H5v-2c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v2h-4v8h4v1h-7v2h6c1.66,0 3,-1.34 3,-3V10c0,-4.97 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/headset_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/headset_off.xml
deleted file mode 100644
index fbc450a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/headset_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c3.87,0 7,3.13 7,7v1h-4v0.17L16.83,14H19v2.17l2,2V11c0,-4.97 -4.03,-9 -9,-9C9.98,2 8.12,2.67 6.62,3.8l1.43,1.43C9.17,4.45 10.53,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09 3,9.5 3,11v7c0,1.1 0.9,2 2,2h4v-8H5v-1c0,-0.94 0.19,-1.83 0.52,-2.65L15,17.83V20h2.17l1,1H12v2h7c0.34,0 0.65,-0.09 0.93,-0.24l0.55,0.55l1.41,-1.41L2.1,2.1zM7,14v4H5v-4H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/healing.xml b/compose/material/material/icons/generator/raw-icons/outlined/healing.xml
deleted file mode 100644
index 7e1fb8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/healing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.73,12.02l3.98,-3.98c0.39,-0.39 0.39,-1.02 0,-1.41l-4.34,-4.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.98,3.98L8,2.29C7.8,2.1 7.55,2 7.29,2c-0.25,0 -0.51,0.1 -0.7,0.29L2.25,6.63c-0.39,0.39 -0.39,1.02 0,1.41l3.98,3.98L2.25,16c-0.39,0.39 -0.39,1.02 0,1.41l4.34,4.34c0.39,0.39 1.02,0.39 1.41,0l3.98,-3.98 3.98,3.98c0.2,0.2 0.45,0.29 0.71,0.29 0.26,0 0.51,-0.1 0.71,-0.29l4.34,-4.34c0.39,-0.39 0.39,-1.02 0,-1.41l-3.99,-3.98zM12,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM7.29,10.96L3.66,7.34l3.63,-3.63 3.62,3.62 -3.62,3.63zM10,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM14,11c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16.66,20.34l-3.63,-3.62 3.63,-3.63 3.62,3.62 -3.62,3.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/health_and_safety.xml b/compose/material/material/icons/generator/raw-icons/outlined/health_and_safety.xml
deleted file mode 100644
index f4dc2f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/health_and_safety.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hearing.xml b/compose/material/material/icons/generator/raw-icons/outlined/hearing.xml
deleted file mode 100644
index 42f6db0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hearing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20c-0.29,0 -0.56,-0.06 -0.76,-0.15 -0.71,-0.37 -1.21,-0.88 -1.71,-2.38 -0.51,-1.56 -1.47,-2.29 -2.39,-3 -0.79,-0.61 -1.61,-1.24 -2.32,-2.53C9.29,10.98 9,9.93 9,9c0,-2.8 2.2,-5 5,-5s5,2.2 5,5h2c0,-3.93 -3.07,-7 -7,-7S7,5.07 7,9c0,1.26 0.38,2.65 1.07,3.9 0.91,1.65 1.98,2.48 2.85,3.15 0.81,0.62 1.39,1.07 1.71,2.05 0.6,1.82 1.37,2.84 2.73,3.55 0.51,0.23 1.07,0.35 1.64,0.35 2.21,0 4,-1.79 4,-4h-2c0,1.1 -0.9,2 -2,2zM7.64,2.64L6.22,1.22C4.23,3.21 3,5.96 3,9s1.23,5.79 3.22,7.78l1.41,-1.41C6.01,13.74 5,11.49 5,9s1.01,-4.74 2.64,-6.36zM11.5,9c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5 -1.12,-2.5 -2.5,-2.5 -2.5,1.12 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hearing_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/hearing_disabled.xml
deleted file mode 100644
index c86d496..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hearing_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.03,3.2C7.15,2.44 8.51,2 10,2c3.93,0 7,3.07 7,7c0,1.26 -0.38,2.65 -1.07,3.9c-0.02,0.04 -0.05,0.08 -0.08,0.13l-1.48,-1.48C14.77,10.69 15,9.8 15,9c0,-2.8 -2.2,-5 -5,-5C9.08,4 8.24,4.26 7.5,4.67L6.03,3.2zM17.21,14.38l1.43,1.43C20.11,13.93 21,11.57 21,9c0,-3.04 -1.23,-5.79 -3.22,-7.78l-1.42,1.42C17.99,4.26 19,6.51 19,9C19,11.02 18.33,12.88 17.21,14.38zM10,6.5c-0.21,0 -0.4,0.03 -0.59,0.08l3.01,3.01C12.47,9.4 12.5,9.21 12.5,9C12.5,7.62 11.38,6.5 10,6.5zM21.19,21.19L2.81,2.81L1.39,4.22l2.13,2.13C3.19,7.16 3,8.05 3,9h2c0,-0.36 0.05,-0.71 0.12,-1.05l6.61,6.61c-0.88,0.68 -1.78,1.41 -2.27,2.9c-0.5,1.5 -1,2.01 -1.71,2.38C7.56,19.94 7.29,20 7,20c-1.1,0 -2,-0.9 -2,-2H3c0,2.21 1.79,4 4,4c0.57,0 1.13,-0.12 1.64,-0.35c1.36,-0.71 2.13,-1.73 2.73,-3.55c0.32,-0.98 0.9,-1.43 1.71,-2.05c0.03,-0.02 0.05,-0.04 0.08,-0.06l6.62,6.62L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/heart_broken.xml b/compose/material/material/icons/generator/raw-icons/outlined/heart_broken.xml
deleted file mode 100644
index e2a4f91..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/heart_broken.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-0.96,0 -1.9,0.25 -2.73,0.69L12,9h3l-3,10l1,-9h-3l1.54,-5.39C10.47,3.61 9.01,3 7.5,3C4.42,3 2,5.42 2,8.5c0,4.13 4.16,7.18 10,12.5c5.47,-4.94 10,-8.26 10,-12.5C22,5.42 19.58,3 16.5,3zM10.24,16.73C6.45,13.34 4,11 4,8.5C4,6.54 5.54,5 7.5,5c0.59,0 1.19,0.15 1.73,0.42L7.35,12h3.42L10.24,16.73zM15.13,15.53L17.69,7h-2.91l0.61,-1.82C15.75,5.06 16.13,5 16.5,5C18.46,5 20,6.54 20,8.5C20,10.71 17.98,12.93 15.13,15.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/heat_pump.xml b/compose/material/material/icons/generator/raw-icons/outlined/heat_pump.xml
deleted file mode 100644
index 710ea76..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/heat_pump.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6s-6,2.69 -6,6S8.69,18 12,18zM11.25,15.92c-0.55,-0.1 -1.05,-0.32 -1.5,-0.62l1.5,-1.5V15.92zM12.75,15.92v-2.11l1.5,1.5C13.8,15.61 13.3,15.82 12.75,15.92zM15.31,14.25l-1.5,-1.5h2.11C15.82,13.3 15.61,13.8 15.31,14.25zM15.92,11.25h-2.11l1.5,-1.5C15.61,10.2 15.82,10.7 15.92,11.25zM12.75,8.08c0.55,0.1 1.05,0.32 1.5,0.62l-1.5,1.5V8.08zM12,11c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C11,11.45 11.45,11 12,11zM11.25,8.08v2.11l-1.5,-1.5C10.2,8.39 10.7,8.18 11.25,8.08zM8.69,9.75l1.5,1.5H8.08C8.18,10.7 8.39,10.2 8.69,9.75zM10.19,12.75l-1.5,1.5c-0.3,-0.44 -0.51,-0.95 -0.62,-1.5H10.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/height.xml b/compose/material/material/icons/generator/raw-icons/outlined/height.xml
deleted file mode 100644
index 4addea0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/height.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.99l3,0l-4,-3.99l-4,3.99l3,0l0,10.02l-3,0l4,3.99l4,-3.99l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/help.xml b/compose/material/material/icons/generator/raw-icons/outlined/help.xml
deleted file mode 100644
index 08187d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,19h-2v-2h2v2zM15.07,11.25l-0.9,0.92C13.45,12.9 13,13.5 13,15h-2v-0.5c0,-1.1 0.45,-2.1 1.17,-2.83l1.24,-1.26c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2L8,9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,0.88 -0.36,1.68 -0.93,2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/help_center.xml b/compose/material/material/icons/generator/raw-icons/outlined/help_center.xml
deleted file mode 100644
index 7988f3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/help_center.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.25,16.74c0,0.69 -0.53,1.26 -1.25,1.26c-0.7,0 -1.26,-0.56 -1.26,-1.26c0,-0.71 0.56,-1.25 1.26,-1.25C12.71,15.49 13.25,16.04 13.25,16.74zM11.99,6c-1.77,0 -2.98,1.15 -3.43,2.49l1.64,0.69c0.22,-0.67 0.74,-1.48 1.8,-1.48c1.62,0 1.94,1.52 1.37,2.33c-0.54,0.77 -1.47,1.29 -1.96,2.16c-0.39,0.69 -0.31,1.49 -0.31,1.98h1.82c0,-0.93 0.07,-1.12 0.22,-1.41c0.39,-0.72 1.11,-1.06 1.87,-2.17c0.68,-1 0.42,-2.36 -0.02,-3.08C14.48,6.67 13.47,6 11.99,6zM19,5H5v14h14V5M19,3c1.1,0 2,0.9 2,2v14c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2H19L19,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/help_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/help_outline.xml
deleted file mode 100644
index 94242b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/help_outline.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18h2v-2h-2v2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,6c-2.21,0 -4,1.79 -4,4h2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hevc.xml b/compose/material/material/icons/generator/raw-icons/outlined/hevc.xml
deleted file mode 100644
index c0bb6f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hevc.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,11l-1,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l1,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11v-1c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-1h-1.5v0.5h-1v-3h1V11H21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,13.5l-0.75,-4.5l-1.5,0l1,6l2.5,0l1,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9l0,6l3.5,0l0,-1.5l-2,0l0,-1l2,0l0,-1.5l-2,0l0,-0.5l2,0l0,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hexagon.xml b/compose/material/material/icons/generator/raw-icons/outlined/hexagon.xml
deleted file mode 100644
index 938ab4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hexagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2,3H6.8l-5.2,9l5.2,9h10.4l5.2,-9L17.2,3zM16.05,19H7.95l-4.04,-7l4.04,-7h8.09l4.04,7L16.05,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hide_image.xml b/compose/material/material/icons/generator/raw-icons/outlined/hide_image.xml
deleted file mode 100644
index 1847066..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hide_image.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v11.17l2,2V5c0,-1.1 -0.9,-2 -2,-2H5.83l2,2H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61l1.41,-1.41L2.81,2.81zM5,19V7.83l7.07,7.07L11.25,16L9,13l-3,4h8.17l2,2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hide_source.xml b/compose/material/material/icons/generator/raw-icons/outlined/hide_source.xml
deleted file mode 100644
index b502aac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hide_source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l10.94,10.94C14.86,19.59 13.48,20 12,20zM7.94,5.12L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8C10.52,4 9.14,4.41 7.94,5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/high_quality.xml b/compose/material/material/icons/generator/raw-icons/outlined/high_quality.xml
deleted file mode 100644
index 0b7df1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/high_quality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18L5,6h14v12zM7.5,13h2v2L11,15L11,9L9.5,9v2.5h-2L7.5,9L6,9v6h1.5zM14,15h0.75v1.5h1.5L16.25,15L17,15c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM14.5,10.5h2v3h-2v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/highlight.xml b/compose/material/material/icons/generator/raw-icons/outlined/highlight.xml
deleted file mode 100644
index c3eb387..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/highlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14l3,3v5h6v-5l3,-3L18,9L6,9v5zM8,11h8v2.17l-3,3L13,20h-2v-3.83l-3,-3L8,11zM11,2h2v3h-2zM3.502,5.874L4.916,4.46l2.122,2.12 -1.414,1.415zM16.96,6.582l2.123,-2.12 1.413,1.416 -2.123,2.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/highlight_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/highlight_alt.xml
deleted file mode 100644
index 90c5a10..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/highlight_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5h-2V3h2V5zM15,15v6l2.29,-2.29L19.59,21L21,19.59l-2.29,-2.29L21,15H15zM19,9h2V7h-2V9zM19,13h2v-2h-2V13zM11,21h2v-2h-2V21zM7,5h2V3H7V5zM3,17h2v-2H3V17zM5,21v-2H3C3,20.1 3.9,21 5,21zM19,3v2h2C21,3.9 20.1,3 19,3zM11,5h2V3h-2V5zM3,9h2V7H3V9zM7,21h2v-2H7V21zM3,13h2v-2H3V13zM3,5h2V3C3.9,3 3,3.9 3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/highlight_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/highlight_off.xml
deleted file mode 100644
index 6a21d0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/highlight_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,8L12,10.59 9.41,8 8,9.41 10.59,12 8,14.59 9.41,16 12,13.41 14.59,16 16,14.59 13.41,12 16,9.41 14.59,8zM12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hiking.xml b/compose/material/material/icons/generator/raw-icons/outlined/hiking.xml
deleted file mode 100644
index 5a58088..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hiking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM17.5,10.78c-1.23,-0.37 -2.22,-1.17 -2.8,-2.18l-1,-1.6c-0.41,-0.65 -1.11,-1 -1.84,-1c-0.78,0 -1.59,0.5 -1.78,1.44S7,23 7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3c1,1.15 2.41,2.01 4,2.34V23H19V9h-1.5L17.5,10.78zM7.43,13.13l-2.12,-0.41c-0.54,-0.11 -0.9,-0.63 -0.79,-1.17l0.76,-3.93c0.21,-1.08 1.26,-1.79 2.34,-1.58l1.16,0.23L7.43,13.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/history.xml b/compose/material/material/icons/generator/raw-icons/outlined/history.xml
deleted file mode 100644
index 7ba6325..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.25,2.52 0.77,-1.28 -3.52,-2.09L13.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/history_edu.xml b/compose/material/material/icons/generator/raw-icons/outlined/history_edu.xml
deleted file mode 100644
index 9bae096..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/history_edu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v1.38c-0.83,-0.33 -1.72,-0.5 -2.61,-0.5c-1.79,0 -3.58,0.68 -4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86 1.98,1.31 3.11,1.36V15H6v3c0,1.1 0.9,2 2,2h10c1.66,0 3,-1.34 3,-3V4H9zM7.89,10.41V8.26H5.61L4.57,7.22C5.14,7 5.76,6.88 6.39,6.88c1.34,0 2.59,0.52 3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51 -1.19,0.8 -1.92,0.8C8.75,10.75 8.29,10.63 7.89,10.41zM19,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h-6v-2.59c0.57,-0.23 1.1,-0.57 1.56,-1.03l0.2,-0.2L15.59,14H17v-1.41l-6,-5.97V6h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/history_toggle_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/history_toggle_off.xml
deleted file mode 100644
index ece916d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/history_toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.1,19.37l1,1.74c-0.96,0.44 -2.01,0.73 -3.1,0.84v-2.02C13.74,19.84 14.44,19.65 15.1,19.37zM4.07,13H2.05c0.11,1.1 0.4,2.14 0.84,3.1l1.74,-1C4.35,14.44 4.16,13.74 4.07,13zM15.1,4.63l1,-1.74C15.14,2.45 14.1,2.16 13,2.05v2.02C13.74,4.16 14.44,4.35 15.1,4.63zM19.93,11h2.02c-0.11,-1.1 -0.4,-2.14 -0.84,-3.1l-1.74,1C19.65,9.56 19.84,10.26 19.93,11zM8.9,19.37l-1,1.74c0.96,0.44 2.01,0.73 3.1,0.84v-2.02C10.26,19.84 9.56,19.65 8.9,19.37zM11,4.07V2.05c-1.1,0.11 -2.14,0.4 -3.1,0.84l1,1.74C9.56,4.35 10.26,4.16 11,4.07zM18.36,7.17l1.74,-1.01c-0.63,-0.87 -1.4,-1.64 -2.27,-2.27l-1.01,1.74C17.41,6.08 17.92,6.59 18.36,7.17zM4.63,8.9l-1.74,-1C2.45,8.86 2.16,9.9 2.05,11h2.02C4.16,10.26 4.35,9.56 4.63,8.9zM19.93,13c-0.09,0.74 -0.28,1.44 -0.56,2.1l1.74,1c0.44,-0.96 0.73,-2.01 0.84,-3.1H19.93zM16.83,18.36l1.01,1.74c0.87,-0.63 1.64,-1.4 2.27,-2.27l-1.74,-1.01C17.92,17.41 17.41,17.92 16.83,18.36zM7.17,5.64L6.17,3.89C5.29,4.53 4.53,5.29 3.9,6.17l1.74,1.01C6.08,6.59 6.59,6.08 7.17,5.64zM5.64,16.83L3.9,17.83c0.63,0.87 1.4,1.64 2.27,2.27l1.01,-1.74C6.59,17.92 6.08,17.41 5.64,16.83zM13,7h-2v5.41l4.29,4.29l1.41,-1.41L13,11.59V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hive.xml b/compose/material/material/icons/generator/raw-icons/outlined/hive.xml
deleted file mode 100644
index b0b3887..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,9l-2.25,-4h-3.31l-1.69,-3h-4.5L8.06,5H4.75L2.5,9l1.69,3L2.5,15l2.25,4h3.31l1.69,3h4.5l1.69,-3h3.31l2.25,-4l-1.69,-3L21.5,9zM19.21,9l-1.12,2h-2.14l-1.12,-2l1.12,-2h2.14L19.21,9zM10.94,14l-1.12,-2l1.12,-2h2.12l1.12,2l-1.12,2H10.94zM13.08,4l1.12,1.98L13.06,8h-2.12L9.8,5.98L10.92,4H13.08zM5.92,7h2.14l1.12,2l-1.12,2H5.92L4.79,9L5.92,7zM4.79,15l1.12,-2h2.14l1.12,2l-1.12,2H5.92L4.79,15zM10.92,20L9.8,18.02L10.94,16h2.12l1.13,2.02L13.08,20H10.92zM18.08,17h-2.14l-1.12,-2l1.12,-2h2.14l1.12,2L18.08,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hls.xml b/compose/material/material/icons/generator/raw-icons/outlined/hls.xml
deleted file mode 100644
index 3308a21..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9zM16.5,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1h2V11h1.5v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2V13h-1.5v1C15.5,14.55 15.95,15 16.5,15zM14,15v-1.5h-2.5V9H10v6H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hls_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/hls_off.xml
deleted file mode 100644
index f11a05bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hls_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.83,15h1.67c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1h2V11h1.5v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2V13h-1.17L17.83,15zM8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L12.17,15H10v-2.17L8,10.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/holiday_village.xml b/compose/material/material/icons/generator/raw-icons/outlined/holiday_village.xml
deleted file mode 100644
index 1946eac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/holiday_village.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4l-6,6v10h12V10L8,4zM12,18H9v-3H7v3H4v-7.17l4,-4l4,4V18zM9,13H7v-2h2V13zM18,20V8.35L13.65,4h-2.83L16,9.18V20H18zM22,20V6.69L19.31,4h-2.83L20,7.52V20H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/home.xml b/compose/material/material/icons/generator/raw-icons/outlined/home.xml
deleted file mode 100644
index 11b964a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.69l5,4.5V18h-2v-6H9v6H7v-7.81l5,-4.5M12,3L2,12h3v8h6v-6h2v6h6v-8h3L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/home_max.xml b/compose/material/material/icons/generator/raw-icons/outlined/home_max.xml
deleted file mode 100644
index d5ec38b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/home_max.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C2.79,5 1,6.79 1,9v5c0,2.21 1.79,4 4,4h2v1h10v-1h2c2.21,0 4,-1.79 4,-4V9C23,6.79 21.21,5 19,5zM21,14c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/home_mini.xml b/compose/material/material/icons/generator/raw-icons/outlined/home_mini.xml
deleted file mode 100644
index 5d9e84e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/home_mini.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5C4.19,5 2,9.48 2,12c0,3.86 3.13,7 6.99,7h6.02c2.69,0 6.99,-2.08 6.99,-7C22,12 22,5 12,5zM12,7c7.64,0 7.99,4.51 8,5H4C4,11.8 4.09,7 12,7zM14.86,17H9.14c-2.1,0 -3.92,-1.24 -4.71,-3h15.15C18.78,15.76 16.96,17 14.86,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/home_repair_service.xml b/compose/material/material/icons/generator/raw-icons/outlined/home_repair_service.xml
deleted file mode 100644
index 29af38d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/home_repair_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3V6c0,-1.1 -0.9,-2 -2,-2H9C7.9,4 7,4.9 7,6v2H4c-1.1,0 -2,0.9 -2,2v10h20V10C22,8.9 21.1,8 20,8zM9,6h6v2H9V6zM20,18H4v-3h2v1h2v-1h8v1h2v-1h2V18zM18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/home_work.xml b/compose/material/material/icons/generator/raw-icons/outlined/home_work.xml
deleted file mode 100644
index c08a4d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/home_work.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11v10h6v-5h2v5h6V11L8,6L1,11zM13,19h-2v-5H5v5H3v-6.97l5,-3.57l5,3.57V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3l0,1.97l2,1.43l0,-1.4l9,0l0,14l-4,0l0,2l6,0l0,-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/horizontal_distribute.xml b/compose/material/material/icons/generator/raw-icons/outlined/horizontal_distribute.xml
deleted file mode 100644
index eb2e40a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/horizontal_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,2h-2v20h2V2zM13.5,7h-3v10h3V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/horizontal_rule.xml b/compose/material/material/icons/generator/raw-icons/outlined/horizontal_rule.xml
deleted file mode 100644
index 765877d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/horizontal_rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11h16v2h-16z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/horizontal_split.xml b/compose/material/material/icons/generator/raw-icons/outlined/horizontal_split.xml
deleted file mode 100644
index fc92110..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/horizontal_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15v2L5,17v-2h14m2,-10L3,5v2h18L21,5zM21,9L3,9v2h18L21,9zM21,13L3,13v6h18v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hot_tub.xml b/compose/material/material/icons/generator/raw-icons/outlined/hot_tub.xml
deleted file mode 100644
index 7aa1232..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hot_tub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.15,12c-0.31,-0.22 -0.59,-0.46 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C6.01,9 5,10.01 5,11.25L5,12L2,12v8c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-8L11.15,12zM7,20L5,20v-6h2v6zM11,20L9,20v-6h2v6zM15,20h-2v-6h2v6zM19,20h-2v-6h2v6zM17.42,7.21c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L18,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06zM13.42,7.21c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L14,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hotel.xml b/compose/material/material/icons/generator/raw-icons/outlined/hotel.xml
deleted file mode 100644
index 45b66ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14c1.66,0 3,-1.34 3,-3S8.66,8 7,8s-3,1.34 -3,3 1.34,3 3,3zM7,10c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,7h-8v8L3,15L3,5L1,5v15h2v-3h18v3h2v-9c0,-2.21 -1.79,-4 -4,-4zM21,15h-8L13,9h6c1.1,0 2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hotel_class.xml b/compose/material/material/icons/generator/raw-icons/outlined/hotel_class.xml
deleted file mode 100644
index 972e1a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hotel_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.89L11.94,12h2.82l-2.27,1.62l0.93,3.01L11,14.79l-2.42,1.84l0.93,-3.01L7.24,12h2.82L11,8.89zM8.58,10H1l6.17,4.41L4.83,22L11,17.31L17.18,22l-2.35,-7.59L21,10h-7.58L11,2L8.58,10zM21.36,22l-1.86,-6.01L23.68,13h-3.44l-3.08,2.2l1.46,4.72L21.36,22zM17,8l-1.82,-6l-1.04,3.45L14.91,8H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_bottom.xml b/compose/material/material/icons/generator/raw-icons/outlined/hourglass_bottom.xml
deleted file mode 100644
index bab0c3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,22l-0.01,-6L14,12l3.99,-4.01L18,2H6v6l4,4l-4,3.99V22H18zM8,7.5V4h8v3.5l-4,4L8,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/hourglass_disabled.xml
deleted file mode 100644
index 8d66ecc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4l8,0l0,3.5l-2.84,2.84l1.25,1.25l3.59,-3.58l-0.01,-0.01l0.01,0l0,-6l-12,0l0,1.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41,-1.41L2.1,2.1zM16,20H8v-3.5l2.84,-2.84L16,18.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_empty.xml b/compose/material/material/icons/generator/raw-icons/outlined/hourglass_empty.xml
deleted file mode 100644
index 450dbe5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_empty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01L6,16.01L6,22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01L18,8L18,2L6,2zM16,16.5L16,20L8,20v-3.5l4,-4 4,4zM12,11.5l-4,-4L8,4h8v3.5l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_full.xml b/compose/material/material/icons/generator/raw-icons/outlined/hourglass_full.xml
deleted file mode 100644
index 780d2b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01H6V22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01H18V2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_top.xml b/compose/material/material/icons/generator/raw-icons/outlined/hourglass_top.xml
deleted file mode 100644
index b84544b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hourglass_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4,-4l4,-3.99V2H6zM16,16.5V20H8v-3.5l4,-4L16,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/house.xml b/compose/material/material/icons/generator/raw-icons/outlined/house.xml
deleted file mode 100644
index b6df230..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/house.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3zM17,18h-2v-6H9v6H7v-7.81l5,-4.5l5,4.5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h4c0,-1.1 -0.9,-2 -2,-2S10,8.9 10,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/house_siding.xml b/compose/material/material/icons/generator/raw-icons/outlined/house_siding.xml
deleted file mode 100644
index 4bb637b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/house_siding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12zM7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10zM14.57,8H9.43L12,5.69L14.57,8zM7,16v-2h10v2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/houseboat.xml b/compose/material/material/icons/generator/raw-icons/outlined/houseboat.xml
deleted file mode 100644
index 51820b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/houseboat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.95,0 -2.1,1 -3.34,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,16 3.24,17 2,17v2c1.9,0 2.17,-1 3.35,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.08,-1 3.32,-1s1.37,1 3.32,1c1.91,0 2.14,-1 3.33,-1c1.18,0 1.45,1 3.35,1v-2c-1.24,0 -1.38,-1 -3.33,-1c-1.91,0 -2.14,1 -3.33,1C14.1,17 13.95,16 12,16zM20.34,11.34l-1.37,1.37C18.78,12.89 18.52,13 18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61L7,9.65V13H5.74c-0.27,0 -0.52,-0.11 -0.71,-0.29l-1.37,-1.37l-1.41,1.41l1.37,1.37C4.18,14.68 4.95,15 5.74,15h12.51c0.8,0 1.56,-0.32 2.12,-0.88l1.37,-1.37L20.34,11.34zM13,13v-2h-2v2H9V8.18l3,-2.2l3,2.2V13H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/how_to_reg.xml b/compose/material/material/icons/generator/raw-icons/outlined/how_to_reg.xml
deleted file mode 100644
index dfc6e935..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/how_to_reg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM11,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM5,18c0.2,-0.63 2.57,-1.68 4.96,-1.94l2.04,-2c-0.39,-0.04 -0.68,-0.06 -1,-0.06 -2.67,0 -8,1.34 -8,4v2h9l-2,-2L5,18zM20.6,12.5l-5.13,5.17 -2.07,-2.08L12,17l3.47,3.5L22,13.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/how_to_vote.xml b/compose/material/material/icons/generator/raw-icons/outlined/how_to_vote.xml
deleted file mode 100644
index 20f5bf1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/how_to_vote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h-0.68l-2,2h1.91L19,17L5,17l1.78,-2h2.05l-2,-2L6,13l-3,3v4c0,1.1 0.89,2 1.99,2L19,22c1.1,0 2,-0.89 2,-2v-4l-3,-3zM19,20L5,20v-1h14v1zM11.34,15.02c0.39,0.39 1.02,0.39 1.41,0l6.36,-6.36c0.39,-0.39 0.39,-1.02 0,-1.41L14.16,2.3c-0.38,-0.4 -1.01,-0.4 -1.4,-0.01L6.39,8.66c-0.39,0.39 -0.39,1.02 0,1.41l4.95,4.95zM13.46,4.41L17,7.95l-4.95,4.95 -3.54,-3.54 4.95,-4.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/html.xml b/compose/material/material/icons/generator/raw-icons/outlined/html.xml
deleted file mode 100644
index 7e3acb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/html.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9zM17.5,9H13c-0.55,0 -1,0.45 -1,1v5h1.5v-4.5h1V14H16v-3.51h1V15h1.5v-5C18.5,9.45 18.05,9 17.5,9zM11,9H6v1.5h1.75V15h1.5v-4.5H11V9zM24,15v-1.5h-2.5V9H20v6H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/http.xml b/compose/material/material/icons/generator/raw-icons/outlined/http.xml
deleted file mode 100644
index b93de26..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/http.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,11h-2L2.5,9L1,9v6h1.5v-2.5h2L4.5,15L6,15L6,9L4.5,9v2zM7,10.5h1.5L8.5,15L10,15v-4.5h1.5L11.5,9L7,9v1.5zM12.5,10.5L14,10.5L14,15h1.5v-4.5L17,10.5L17,9h-4.5v1.5zM21.5,9L18,9v6h1.5v-2h2c0.8,0 1.5,-0.7 1.5,-1.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5zM21.5,11.5h-2v-1h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/https.xml b/compose/material/material/icons/generator/raw-icons/outlined/https.xml
deleted file mode 100644
index cda5f52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/https.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8L9,6zM18,20L6,20L6,10h12v10zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hub.xml b/compose/material/material/icons/generator/raw-icons/outlined/hub.xml
deleted file mode 100644
index ac23da4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6.5c-1.66,0 -3,1.34 -3,3c0,0.07 0,0.14 0.01,0.21l-2.03,0.68c-0.64,-1.21 -1.82,-2.09 -3.22,-2.32V5.91C14.04,5.57 15,4.4 15,3c0,-1.66 -1.34,-3 -3,-3S9,1.34 9,3c0,1.4 0.96,2.57 2.25,2.91v2.16c-1.4,0.23 -2.58,1.11 -3.22,2.32L5.99,9.71C6,9.64 6,9.57 6,9.5c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3c1.06,0 1.98,-0.55 2.52,-1.37l2.03,0.68c-0.2,1.29 0.17,2.66 1.09,3.69l-1.41,1.77C6.85,17.09 6.44,17 6,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3c0,-0.68 -0.22,-1.3 -0.6,-1.8l1.41,-1.77c1.36,0.76 3.02,0.75 4.37,0l1.41,1.77C15.22,18.7 15,19.32 15,20c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3c-0.44,0 -0.85,0.09 -1.23,0.26l-1.41,-1.77c0.93,-1.04 1.29,-2.4 1.09,-3.69l2.03,-0.68c0.53,0.82 1.46,1.37 2.52,1.37c1.66,0 3,-1.34 3,-3S22.66,6.5 21,6.5zM3,10.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C4,10.05 3.55,10.5 3,10.5zM6,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C7,20.55 6.55,21 6,21zM11,3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S11,3.55 11,3zM12,15c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C14.5,13.88 13.38,15 12,15zM18,19c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C17,19.45 17.45,19 18,19zM21,10.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C22,10.05 21.55,10.5 21,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/hvac.xml b/compose/material/material/icons/generator/raw-icons/outlined/hvac.xml
deleted file mode 100644
index 38a11d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/hvac.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6s-6,2.69 -6,6S8.69,18 12,18zM15.44,10c0.26,0.45 0.44,0.96 0.51,1.5h-7.9c0.07,-0.54 0.24,-1.05 0.51,-1.5H15.44zM15.95,12.5c-0.07,0.54 -0.24,1.05 -0.51,1.5H8.56c-0.26,-0.45 -0.44,-0.96 -0.51,-1.5H15.95zM9.38,15h5.24c-0.7,0.61 -1.61,1 -2.62,1S10.09,15.61 9.38,15zM14.62,9H9.38c0.7,-0.61 1.61,-1 2.62,-1S13.91,8.39 14.62,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ice_skating.xml b/compose/material/material/icons/generator/raw-icons/outlined/ice_skating.xml
deleted file mode 100644
index 0e0c4a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ice_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,17c0,1.66 -1.34,3 -3,3h-2v-2h3v-4c0,-1.79 -1.19,-3.34 -2.91,-3.82l-2.62,-0.74C12.62,9.19 12,8.39 12,7.5V3H3v15h3v2H2v2h16c2.76,0 5,-2.24 5,-5H21zM5,16V5h5v1H8.5C8.22,6 8,6.22 8,6.5C8,6.78 8.22,7 8.5,7H10l0.1,1H8.5C8.22,8 8,8.22 8,8.5C8,8.78 8.22,9 8.5,9h1.81c0.45,1.12 1.4,2.01 2.6,2.36l2.62,0.73C16.4,12.33 17,13.1 17,14v2H5zM14,20H8v-2h6V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/icecream.xml b/compose/material/material/icons/generator/raw-icons/outlined/icecream.xml
deleted file mode 100644
index df664ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/icecream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.38,6.24C17.79,3.24 15.14,1 12,1S6.21,3.24 5.62,6.24C4.08,6.81 3,8.29 3,10c0,2.21 1.79,4 4,4c0.12,0 0.23,-0.02 0.34,-0.02L12.07,23l4.61,-9.03C16.79,13.98 16.89,14 17,14c2.21,0 4,-1.79 4,-4C21,8.29 19.92,6.81 18.38,6.24zM12.05,18.63l-2.73,-5.21C10.15,13.79 11.06,14 12,14c0.95,0 1.88,-0.21 2.72,-0.6L12.05,18.63zM17,12c-0.52,0 -1.01,-0.2 -1.39,-0.56l-0.56,-0.54l-0.66,0.42C13.68,11.76 12.86,12 12,12s-1.68,-0.24 -2.39,-0.69L8.95,10.9l-0.56,0.54C8.01,11.79 7.52,12 7,12c-1.1,0 -2,-0.89 -2,-2c0,-0.98 0.72,-1.82 1.68,-1.97L7.45,7.9l0.06,-0.78C7.71,4.8 9.66,3 12,3s4.29,1.8 4.48,4.12l0.06,0.78l0.77,0.12C18.28,8.18 19,9.01 19,10C19,11.1 18.1,12 17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/image.xml b/compose/material/material/icons/generator/raw-icons/outlined/image.xml
deleted file mode 100644
index a740230..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14L5,19L5,5h14m0,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14.14,11.86l-3,3.87L9,13.14 6,17h12l-3.86,-5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/image_aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/outlined/image_aspect_ratio.xml
deleted file mode 100644
index 6bab9c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/image_aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h-2v2h2v-2zM16,14h-2v2h2v-2zM8,10L6,10v2h2v-2zM12,10h-2v2h2v-2zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/image_not_supported.xml b/compose/material/material/icons/generator/raw-icons/outlined/image_not_supported.xml
deleted file mode 100644
index 9fd5bb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/image_not_supported.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,21.9l-6.1,-6.1l-2.69,-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1 0.9,2 2,2h13.17l2.31,2.31L21.9,21.9zM5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5zM7.83,5l-2,-2H19c1.1,0 2,0.9 2,2v13.17l-2,-2V5H7.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/image_search.xml b/compose/material/material/icons/generator/raw-icons/outlined/image_search.xml
deleted file mode 100644
index 08c1c4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/image_search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13v7L4,20L4,6h5.02c0.05,-0.71 0.22,-1.38 0.48,-2L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5l-2,-2zM16.5,18h-11l2.75,-3.53 1.96,2.36 2.75,-3.54L16.5,18zM19.3,8.89c0.44,-0.7 0.7,-1.51 0.7,-2.39C20,4.01 17.99,2 15.5,2S11,4.01 11,6.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21,13.42 22.42,12 19.3,8.89zM15.5,9C14.12,9 13,7.88 13,6.5S14.12,4 15.5,4 18,5.12 18,6.5 16.88,9 15.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/imagesearch_roller.xml b/compose/material/material/icons/generator/raw-icons/outlined/imagesearch_roller.xml
deleted file mode 100644
index 946fd8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/imagesearch_roller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7V3c0,-0.55 -0.45,-1 -1,-1H7C6.45,2 6,2.45 6,3v1H4C2.9,4 2,4.9 2,6v4c0,1.1 0.9,2 2,2h8v3h-1c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1h-1v-3c0,-1.1 -0.9,-2 -2,-2H4V6h2v1c0,0.55 0.45,1 1,1h12C19.55,8 20,7.55 20,7zM8,4h10v2H8V4zM14,21h-2v-4h2V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/import_contacts.xml b/compose/material/material/icons/generator/raw-icons/outlined/import_contacts.xml
deleted file mode 100644
index 1f3102b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/import_contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.11,-0.35 -2.33,-0.5 -3.5,-0.5 -1.95,0 -4.05,0.4 -5.5,1.5 -1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v14.65c0,0.25 0.25,0.5 0.5,0.5 0.1,0 0.15,-0.05 0.25,-0.05C3.1,20.45 5.05,20 6.5,20c1.95,0 4.05,0.4 5.5,1.5 1.35,-0.85 3.8,-1.5 5.5,-1.5 1.65,0 3.35,0.3 4.75,1.05 0.1,0.05 0.15,0.05 0.25,0.05 0.25,0 0.5,-0.25 0.5,-0.5L23,6c-0.6,-0.45 -1.25,-0.75 -2,-1zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5 -1.7,0 -4.15,0.65 -5.5,1.5L12,8c1.35,-0.85 3.8,-1.5 5.5,-1.5 1.2,0 2.4,0.15 3.5,0.5v11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/import_export.xml b/compose/material/material/icons/generator/raw-icons/outlined/import_export.xml
deleted file mode 100644
index bc5c0ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/import_export.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3L5,6.99h3L8,14h2L10,6.99h3L9,3zM16,17.01L16,10h-2v7.01h-3L15,21l4,-3.99h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/important_devices.xml b/compose/material/material/icons/generator/raw-icons/outlined/important_devices.xml
deleted file mode 100644
index 64f5520..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/important_devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11.01L18,11c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-9c0,-0.55 -0.45,-0.99 -1,-0.99zM23,20h-5v-7h5v7zM20,2L2,2C0.89,2 0,2.89 0,4v12c0,1.1 0.89,2 2,2h7v2L7,20v2h8v-2h-2v-2h2v-2L2,16L2,4h18v5h2L22,4c0,-1.11 -0.9,-2 -2,-2zM11.97,9L11,6l-0.97,3L7,9l2.47,1.76 -0.94,2.91 2.47,-1.8 2.47,1.8 -0.94,-2.91L15,9h-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/inbox.xml b/compose/material/material/icons/generator/raw-icons/outlined/inbox.xml
deleted file mode 100644
index 1571b61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-3h3.56c0.69,1.19 1.97,2 3.45,2s2.75,-0.81 3.45,-2L19,16v3zM19,14h-4.99c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2L5,14L5,5h14v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/incomplete_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/incomplete_circle.xml
deleted file mode 100644
index e7e6e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/incomplete_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-2.76 1.12,-5.26 2.93,-7.07L12,12V2C17.52,2 22,6.48 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/indeterminate_check_box.xml b/compose/material/material/icons/generator/raw-icons/outlined/indeterminate_check_box.xml
deleted file mode 100644
index a6afa09..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/indeterminate_check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,11h10v2L7,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/info.xml b/compose/material/material/icons/generator/raw-icons/outlined/info.xml
deleted file mode 100644
index 35f7f5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/info.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2h-2zM11,11h2v6h-2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/input.xml b/compose/material/material/icons/generator/raw-icons/outlined/input.xml
deleted file mode 100644
index 473a368..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/input.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3.01H3c-1.1,0 -2,0.9 -2,2V9h2V4.99h18v14.03H3V15H1v4.01c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98v-14c0,-1.11 -0.9,-2 -2,-2zM11,16l4,-4 -4,-4v3H1v2h10v3zM21,3.01H3c-1.1,0 -2,0.9 -2,2V9h2V4.99h18v14.03H3V15H1v4.01c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98v-14c0,-1.11 -0.9,-2 -2,-2zM11,16l4,-4 -4,-4v3H1v2h10v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_chart.xml
deleted file mode 100644
index 91bc3f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,10h2v7L7,17zM11,7h2v10h-2zM15,13h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_chart_outlined.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_chart_outlined.xml
deleted file mode 100644
index f3e3770..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_chart_outlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4zM19,19L5,19L5,5h14v14zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_comment.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_comment.xml
deleted file mode 100644
index 3ef93cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v13.17L18.83,16L4,16L4,4h16m0,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4c0,-1.1 -0.9,-2 -2,-2zM18,12L6,12v2h12v-2zM18,9L6,9v2h12L18,9zM18,6L6,6v2h12L18,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_drive_file.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_drive_file.xml
deleted file mode 100644
index c12e2da..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_drive_file.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8l-6,-6zM6,20V4h7v5h5v11H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_emoticon.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_emoticon.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_emoticon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_invitation.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_invitation.xml
deleted file mode 100644
index 2f04f6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_invitation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM19,7L5,7L5,5h14v2zM17,12h-5v5h5v-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_link.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_link.xml
deleted file mode 100644
index 2c0a73f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9L7,15.1c-1.71,0 -3.1,-1.39 -3.1,-3.1zM8,13h8v-2L8,11v2zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1s-1.39,3.1 -3.1,3.1h-4L13,17h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_page_break.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_page_break.xml
deleted file mode 100644
index 80e6985..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_page_break.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20H6v-3H4v3c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-3h-2V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4h7v5h5v2h2V8l-6,-6H6C4.9,2 4,2.9 4,4v7h2V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insert_photo.xml b/compose/material/material/icons/generator/raw-icons/outlined/insert_photo.xml
deleted file mode 100644
index a740230..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insert_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14L5,19L5,5h14m0,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14.14,11.86l-3,3.87L9,13.14 6,17h12l-3.86,-5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/insights.xml b/compose/material/material/icons/generator/raw-icons/outlined/insights.xml
deleted file mode 100644
index 8421a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/insights.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8c-1.45,0 -2.26,1.44 -1.93,2.51l-3.55,3.56c-0.3,-0.09 -0.74,-0.09 -1.04,0l-2.55,-2.55C12.27,10.45 11.46,9 10,9c-1.45,0 -2.27,1.44 -1.93,2.52l-4.56,4.55C2.44,15.74 1,16.55 1,18c0,1.1 0.9,2 2,2c1.45,0 2.26,-1.44 1.93,-2.51l4.55,-4.56c0.3,0.09 0.74,0.09 1.04,0l2.55,2.55C12.73,16.55 13.54,18 15,18c1.45,0 2.27,-1.44 1.93,-2.52l3.56,-3.55C21.56,12.26 23,11.45 23,10C23,8.9 22.1,8 21,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9l0.94,-2.07l2.06,-0.93l-2.06,-0.93l-0.94,-2.07l-0.92,2.07l-2.08,0.93l2.08,0.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,11l0.5,-2l2,-0.5l-2,-0.5l-0.5,-2l-0.5,2l-2,0.5l2,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/install_desktop.xml b/compose/material/material/icons/generator/raw-icons/outlined/install_desktop.xml
deleted file mode 100644
index 5306f45..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/install_desktop.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17H4V5h8V3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2v-3h-2V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14l5,-5l-1.41,-1.41l-2.59,2.58l0,-7.17l-2,0l0,7.17l-2.59,-2.58l-1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/install_mobile.xml b/compose/material/material/icons/generator/raw-icons/outlined/install_mobile.xml
deleted file mode 100644
index 1d091fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/install_mobile.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h7V4H7V3h7V1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-5h-2V18zM17,21H7v-1h10V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14l5,-5l-1.41,-1.41l-2.59,2.58l0,-7.17l-2,0l0,7.17l-2.59,-2.58l-1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/integration_instructions.xml b/compose/material/material/icons/generator/raw-icons/outlined/integration_instructions.xml
deleted file mode 100644
index 284af55..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/integration_instructions.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14.17l-2.17,-2.17l2.17,-2.17l-1.41,-1.42l-3.59,3.59l3.59,3.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.41,15.59l3.59,-3.59l-3.59,-3.59l-1.41,1.42l2.17,2.17l-2.17,2.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C4.86,3 4.73,3.01 4.6,3.04C4.21,3.12 3.86,3.32 3.59,3.59c-0.18,0.18 -0.33,0.4 -0.43,0.64C3.06,4.46 3,4.72 3,5v10v1v3c0,0.27 0.06,0.54 0.16,0.78c0.1,0.24 0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55C4.73,20.99 4.86,21 5,21h14c1.1,0 2,-0.9 2,-2v-3v-1V5C21,3.9 20.1,3 19,3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75S12.41,4.25 12,4.25s-0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75zM19,15v1v3H5v-3v-1V5h14V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/interests.xml b/compose/material/material/icons/generator/raw-icons/outlined/interests.xml
deleted file mode 100644
index a39ac41..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/interests.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.02,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.23,13 7.02,13zM7.02,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S8.12,19 7.02,19zM13,13v8h8v-8H13zM19,19h-4v-4h4V19zM7,2l-5,9h10L7,2zM7,6.12L8.6,9H5.4L7,6.12zM19.25,2.5c-1.06,0 -1.81,0.56 -2.25,1.17c-0.44,-0.61 -1.19,-1.17 -2.25,-1.17C13.19,2.5 12,3.78 12,5.25c0,2 2.42,3.42 5,5.75c2.58,-2.33 5,-3.75 5,-5.75C22,3.78 20.81,2.5 19.25,2.5zM17,8.35c-1.45,-1.22 -3,-2.4 -3,-3.1c0,-0.43 0.35,-0.75 0.75,-0.75c0.31,0 0.52,0.17 0.73,0.37L17,6.3l1.52,-1.43c0.21,-0.2 0.42,-0.37 0.73,-0.37c0.4,0 0.75,0.32 0.75,0.75C20,5.95 18.45,7.13 17,8.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/interpreter_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/interpreter_mode.xml
deleted file mode 100644
index 5c88b1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/interpreter_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5v-2.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5V15C22,15.83 21.33,16.5 20.5,16.5zM20,20h1c0,0 0,-1.54 0,-1.54c1.69,-0.24 3,-1.7 3,-3.46h-1c0,1.38 -1.12,2.5 -2.5,2.5S18,16.38 18,15h-1c0,1.76 1.31,3.22 3,3.46C20,18.46 20,20 20,20zM9,12c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4c0.47,0 0.92,0.08 1.34,0.23C9.5,5.26 9,6.57 9,8c0,1.43 0.5,2.74 1.34,3.77C9.92,11.92 9.47,12 9,12zM7.11,13.13C5.79,14.05 5,15.57 5,17.22V20H1v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66C3.85,13.92 5.37,13.37 7.11,13.13zM11,8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S11,10.21 11,8zM13,8c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2S13,6.9 13,8zM15,15c-2.37,0 -4.29,0.73 -5.48,1.34C9.2,16.5 9,16.84 9,17.22V18l7.17,0c0.5,0.86 1.25,1.56 2.15,2L7,20v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66C10.29,13.7 12.47,13 15,13c0.39,0 0.77,0.02 1.14,0.05c-0.33,0.59 -0.55,1.26 -0.62,1.96C15.35,15 15.18,15 15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/inventory.xml b/compose/material/material/icons/generator/raw-icons/outlined/inventory.xml
deleted file mode 100644
index 6164254..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/inventory.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v5h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h6v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.5l-5.49,5.5l-3.01,-3l-1.5,1.5l4.51,4.5l6.99,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/inventory_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/inventory_2.xml
deleted file mode 100644
index a7143da..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/inventory_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C3,2 2,2.9 2,4v3.01C2,7.73 2.43,8.35 3,8.7V20c0,1.1 1.1,2 2,2h14c0.9,0 2,-0.9 2,-2V8.7c0.57,-0.35 1,-0.97 1,-1.69V4C22,2.9 21,2 20,2zM19,20H5V9h14V20zM20,7H4V4h16V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/invert_colors.xml b/compose/material/material/icons/generator/raw-icons/outlined/invert_colors.xml
deleted file mode 100644
index d10c428..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/invert_colors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.81L12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.56 0.62,-3.03 1.75,-4.14L12,4.81M12,2L6.35,7.56l0,0C4.9,8.99 4,10.96 4,13.13C4,17.48 7.58,21 12,21c4.42,0 8,-3.52 8,-7.87c0,-2.17 -0.9,-4.14 -2.35,-5.57l0,0L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/invert_colors_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/invert_colors_off.xml
deleted file mode 100644
index 375722c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/invert_colors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31 -1.6,2.94 -1.6,4.7C4,17.48 7.58,21 12,21c1.75,0 3.36,-0.56 4.67,-1.5l3.1,3.1L21.19,21.19zM12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.19 0.36,-2.32 1.02,-3.28L12,14.83V19zM8.38,5.56L12,2l5.65,5.56l0,0C19.1,8.99 20,10.96 20,13.13c0,1.18 -0.27,2.29 -0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ios_share.xml b/compose/material/material/icons/generator/raw-icons/outlined/ios_share.xml
deleted file mode 100644
index 696eb52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ios_share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5l-1.42,1.42l-1.59,-1.59V16h-1.98V4.83L9.42,6.42L8,5l4,-4L16,5zM20,10v11c0,1.1 -0.9,2 -2,2H6c-1.11,0 -2,-0.9 -2,-2V10c0,-1.11 0.89,-2 2,-2h3v2H6v11h12V10h-3V8h3C19.1,8 20,8.89 20,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/iron.xml b/compose/material/material/icons/generator/raw-icons/outlined/iron.xml
deleted file mode 100644
index f2d0036..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/iron.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6c-1.66,0 -3,1.34 -3,3v4c0,0.55 -0.45,1 -1,1v-4c0,-1.66 -1.34,-3 -3,-3h-4c-1.66,0 -3,1.34 -3,3h2c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v1H6c-2.21,0 -4,1.79 -4,4v3h15v-2c1.66,0 3,-1.34 3,-3V9c0,-0.55 0.45,-1 1,-1h1V6H21zM15,16H4v-1c0,-1.1 0.9,-2 2,-2h9V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/iso.xml b/compose/material/material/icons/generator/raw-icons/outlined/iso.xml
deleted file mode 100644
index a98500b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/iso.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM5.5,7.5h2v-2L9,5.5v2h2L11,9L9,9v2L7.5,11L7.5,9h-2L5.5,7.5zM19,19L5,19L19,5v14zM17,17v-1.5h-5L12,17h5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/javascript.xml b/compose/material/material/icons/generator/raw-icons/outlined/javascript.xml
deleted file mode 100644
index 81408bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/javascript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14v-1h1.5v0.5h2v-1H13c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1h-1.5v-0.5h-2v1H16c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1h-3C12.45,15 12,14.55 12,14zM9,9v4.5H7.5v-1H6v1C6,14.33 6.67,15 7.5,15H9c0.83,0 1.5,-0.67 1.5,-1.5V9C10.5,9 9.83,9 9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/join_full.xml b/compose/material/material/icons/generator/raw-icons/outlined/join_full.xml
deleted file mode 100644
index ca61971..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/join_full.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c2.8,2.34 3.03,5.53 3.03,6.5c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/join_inner.xml b/compose/material/material/icons/generator/raw-icons/outlined/join_inner.xml
deleted file mode 100644
index 9b7010f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/join_inner.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.04,16.87C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C9.92,17.99 9.43,17.43 9.04,16.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/join_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/join_left.xml
deleted file mode 100644
index d5b460b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/join_left.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/join_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/join_right.xml
deleted file mode 100644
index 111631a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/join_right.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7s-3.14,-7 -7,-7c-0.9,0 -1.75,0.19 -2.53,0.5C16.27,7.84 16.5,11.03 16.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19c0.9,0 1.75,-0.19 2.53,-0.5c-0.61,-0.51 -1.1,-1.07 -1.49,-1.63C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7S4.14,19 8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/kayaking.xml b/compose/material/material/icons/generator/raw-icons/outlined/kayaking.xml
deleted file mode 100644
index 9860090..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/kayaking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM12,5.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,5.5 12,5.5zM24,17.5c0,0 -1.52,0.71 -3.93,1.37c-0.82,-0.23 -1.53,-0.75 -2.07,-1.37c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.54,0.61 -1.25,1.13 -2.07,1.37C1.52,18.21 0,17.5 0,17.5s2.93,-1.36 7.13,-2.08l1.35,-4.17c0.31,-0.95 1.32,-1.47 2.27,-1.16c0.09,0.03 0.19,0.07 0.27,0.11l0,0l2.47,1.3l2.84,-1.5l1.65,-3.71l-0.51,-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87 24,17.5 24,17.5zM15.02,12.96l-1.52,0.8l-1.75,-0.92l-0.71,2.17C11.36,15.01 11.68,15 12,15c0.71,0 1.4,0.03 2.07,0.08L15.02,12.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/kebab_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/kebab_dining.xml
deleted file mode 100644
index 2ac2b2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/kebab_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,7h0.75C19.88,7 21,5.88 21,4.5C21,3.12 19.88,2 18.5,2h-0.75V1h-1.5v1H15.5C14.12,2 13,3.12 13,4.5C13,5.88 14.12,7 15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0 -2.5,1.12 -2.5,2.5c0,1.38 1.12,2.5 2.5,2.5h0.75v4h1.5v-4h0.75c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.38 -1.12,-2.5 -2.5,-2.5h-0.75v-1H21V8h-3.25V7zM15.5,5C15.22,5 15,4.78 15,4.5S15.22,4 15.5,4h3C18.78,4 19,4.22 19,4.5S18.78,5 18.5,5H15.5zM18.5,16c0.28,0 0.5,0.22 0.5,0.5S18.78,17 18.5,17h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5H18.5zM19,10v1h-4v-1H19zM7.75,7H8.5C9.88,7 11,5.88 11,4.5C11,3.12 9.88,2 8.5,2H7.75V1h-1.5v1H5.5C4.12,2 3,3.12 3,4.5C3,5.88 4.12,7 5.5,7h0.75v1H3v5h3.25v1H5.5C4.12,14 3,15.12 3,16.5C3,17.88 4.12,19 5.5,19h0.75v4h1.5v-4H8.5c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.38 -1.12,-2.5 -2.5,-2.5H7.75v-1H11V8H7.75V7zM5.5,5C5.22,5 5,4.78 5,4.5S5.22,4 5.5,4h3C8.78,4 9,4.22 9,4.5S8.78,5 8.5,5H5.5zM8.5,16C8.78,16 9,16.22 9,16.5S8.78,17 8.5,17h-3C5.22,17 5,16.78 5,16.5S5.22,16 5.5,16H8.5zM9,10v1H5v-1H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/key.xml b/compose/material/material/icons/generator/raw-icons/outlined/key.xml
deleted file mode 100644
index d8b0448..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10h-8.35C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H13l2,2l2,-2l2,2l4,-4.04L21,10zM7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.65 1.35,-3 3,-3s3,1.35 3,3C10,13.65 8.65,15 7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/key_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/key_off.xml
deleted file mode 100644
index 772efe0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.7,13.53l-1.71,-1.71C9,11.88 9,11.94 9,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.06,0 0.12,0 0.18,0.01L5.47,8.3C4.02,8.9 3,10.33 3,12c0,2.21 1.79,4 4,4C8.67,16 10.1,14.98 10.7,13.53zM12.19,15.02C11.15,16.8 9.21,18 7,18c-3.31,0 -6,-2.69 -6,-6c0,-2.21 1.2,-4.15 2.98,-5.19L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L12.19,15.02zM16.26,13.43l1.24,-0.93l1.81,1.36L21.17,12l-1,-1l-6.34,0l-2,-2L21,9l0,0l3,3l-4.5,4.5l-0.69,-0.51L16.26,13.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard.xml
deleted file mode 100644
index 4a2b3a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7v10L4,17L4,7h16m0,-2L4,5c-1.1,0 -1.99,0.9 -1.99,2L2,17c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM11,8h2v2h-2zM11,11h2v2h-2zM8,8h2v2L8,10zM8,11h2v2L8,13zM5,11h2v2L5,13zM5,8h2v2L5,10zM8,14h8v2L8,16zM14,11h2v2h-2zM14,8h2v2h-2zM17,11h2v2h-2zM17,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_alt.xml
deleted file mode 100644
index 598d310..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4H3C1.9,4 1,4.9 1,6v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4zM21,19H3V6h18V19zM9,8h2v2H9V8zM5,8h2v2H5V8zM8,16h8v1H8V16zM13,8h2v2h-2V8zM9,12h2v2H9V12zM5,12h2v2H5V12zM13,12h2v2h-2V12zM17,8h2v2h-2V8zM17,12h2v2h-2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_down.xml
deleted file mode 100644
index 884bee1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,8.59L12,13.17l4.59,-4.58L18,10l-6,6 -6,-6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_left.xml
deleted file mode 100644
index 60a7180..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,16.59L10.83,12l4.58,-4.59L14,6l-6,6 6,6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_right.xml
deleted file mode 100644
index 7f7b33e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.59,16.59L13.17,12 8.59,7.41 10,6l6,6 -6,6 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_up.xml
deleted file mode 100644
index bd55228..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_arrow_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,15.41L12,10.83l4.59,4.58L18,14l-6,-6 -6,6 1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_backspace.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_backspace.xml
deleted file mode 100644
index 3c1d665..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11H6.83l3.58,-3.59L9,6l-6,6 6,6 1.41,-1.41L6.83,13H21v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_capslock.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_capslock.xml
deleted file mode 100644
index 519081e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_capslock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.41L16.59,13 18,11.59l-6,-6 -6,6L7.41,13 12,8.41zM6,18h12v-2H6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_command_key.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_command_key.xml
deleted file mode 100644
index ace30b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_command_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,3C15.57,3 14,4.57 14,6.5V8h-4V6.5C10,4.57 8.43,3 6.5,3S3,4.57 3,6.5S4.57,10 6.5,10H8v4H6.5C4.57,14 3,15.57 3,17.5S4.57,21 6.5,21s3.5,-1.57 3.5,-3.5V16h4v1.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S19.43,14 17.5,14H16v-4h1.5c1.93,0 3.5,-1.57 3.5,-3.5S19.43,3 17.5,3L17.5,3zM16,8V6.5C16,5.67 16.67,5 17.5,5S19,5.67 19,6.5S18.33,8 17.5,8H16L16,8zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5V8H6.5L6.5,8zM10,14v-4h4v4H10L10,14zM17.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5V16h1.5c0.83,0 1.5,0.67 1.5,1.5S18.33,19 17.5,19L17.5,19zM6.5,19C5.67,19 5,18.33 5,17.5S5.67,16 6.5,16H8v1.5C8,18.33 7.33,19 6.5,19L6.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_control_key.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_control_key.xml
deleted file mode 100644
index 409e44c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_control_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12l1.41,1.41l5.59,-5.58l5.59,5.58l1.41,-1.41l-7,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_down.xml
deleted file mode 100644
index 985ba4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_down.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.41l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_left.xml
deleted file mode 100644
index b5e455e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_left.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.59,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_right.xml
deleted file mode 100644
index 0a22b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_right.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_up.xml
deleted file mode 100644
index 105da37..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_double_arrow_up.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17.59l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_hide.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_hide.xml
deleted file mode 100644
index 007837e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_hide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3c-1.1,0 -1.99,0.9 -1.99,2L2,15c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,15L4,15L4,5h16v10zM11,6h2v2h-2zM11,9h2v2h-2zM8,6h2v2L8,8zM8,9h2v2L8,11zM5,9h2v2L5,11zM5,6h2v2L5,8zM8,12h8v2L8,14zM14,9h2v2h-2zM14,6h2v2h-2zM17,9h2v2h-2zM17,6h2v2h-2zM12,23l4,-4L8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_option_key.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_option_key.xml
deleted file mode 100644
index 9970f59..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_option_key.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5l-6,0l0,2l4.85,0l6.92,12l6.23,0l0,-2l-5.07,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_return.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_return.xml
deleted file mode 100644
index cdb33b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7v4H5.83l3.58,-3.59L8,6l-6,6 6,6 1.41,-1.41L5.83,13H21V7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_tab.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_tab.xml
deleted file mode 100644
index 4949420..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_tab.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.59,7.41L15.17,11H1v2h14.17l-3.59,3.59L13,18l6,-6 -6,-6 -1.41,1.41zM20,6v12h2V6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_voice.xml b/compose/material/material/icons/generator/raw-icons/outlined/keyboard_voice.xml
deleted file mode 100644
index e445f0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/keyboard_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c1.66,0 2.99,-1.34 2.99,-3L15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6v6c0,1.66 1.34,3 3,3zM10.8,5.9c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2l-0.01,6.2c0,0.66 -0.53,1.2 -1.19,1.2s-1.2,-0.54 -1.2,-1.2L10.8,5.9zM17.3,12c0,3 -2.54,5.1 -5.3,5.1S6.7,15 6.7,12L5,12c0,3.41 2.72,6.23 6,6.72L11,22h2v-3.28c3.28,-0.48 6,-3.3 6,-6.72h-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/king_bed.xml b/compose/material/material/icons/generator/raw-icons/outlined/king_bed.xml
deleted file mode 100644
index cf9b436..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/king_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-1.1 -0.9,-2 -2,-2V7c0,-1.1 -0.9,-2 -2,-2H6C4.9,5 4,5.9 4,7v3c-1.1,0 -2,0.9 -2,2v5h1.33L4,19h1l0.67,-2h12.67L19,19h1l0.67,-2H22V12zM18,10h-5V7h5V10zM6,7h5v3H6V7zM4,12h16v3H4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/kitchen.xml b/compose/material/material/icons/generator/raw-icons/outlined/kitchen.xml
deleted file mode 100644
index 144e721..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/kitchen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5h2v3L8,8zM8,12h2v5L8,17zM18,2.01L6,2c-1.1,0 -2,0.89 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.11 -0.9,-1.99 -2,-1.99zM18,20L6,20v-9.02h12L18,20zM18,9L6,9L6,4h12v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/kitesurfing.xml b/compose/material/material/icons/generator/raw-icons/outlined/kitesurfing.xml
deleted file mode 100644
index 75fb426..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/kitesurfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S6,4.1 6,3zM20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22zM21,13.28c0,1.44 -2.19,3.62 -5.04,5.58C15.65,18.95 15.33,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.94,0 -1.81,-0.41 -2.49,-0.99c0.46,-0.39 0.96,-0.78 1.49,-1.17l-1.55,-2.97C6.15,13.3 6,12.64 6,12V8c0,-1.1 0.9,-2 2,-2h3c1.38,0 2.63,-0.56 3.54,-1.46l1.41,1.41C14.68,7.21 12.93,8 11,8H9.6l0,3.5h2.8l1.69,1.88c1.95,-0.84 3.77,-1.38 5.06,-1.38C19.99,12 21,12.25 21,13.28zM12.2,14.27l-0.7,-0.77L9,13.6l0.83,2.01C10.42,15.23 11.64,14.55 12.2,14.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/label.xml b/compose/material/material/icons/generator/raw-icons/outlined/label.xml
deleted file mode 100644
index 412bd54..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/label.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,5.84C17.27,5.33 16.67,5 16,5L5,5.01C3.9,5.01 3,5.9 3,7v10c0,1.1 0.9,1.99 2,1.99L16,19c0.67,0 1.27,-0.33 1.63,-0.84L22,12l-4.37,-6.16zM16,17H5V7h11l3.55,5L16,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/label_important.xml b/compose/material/material/icons/generator/raw-icons/outlined/label_important.xml
deleted file mode 100644
index f0540f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/label_important.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18.99h11c0.67,0 1.27,-0.32 1.63,-0.83L21,12l-4.37,-6.16C16.27,5.33 15.67,5 15,5H4l5,7 -5,6.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/label_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/label_off.xml
deleted file mode 100644
index 616aad9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/label_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l3.55,5 -1.63,2.29 1.43,1.43L22,12l-4.37,-6.16C17.27,5.33 16.67,5 16,5l-7.37,0.01 2,1.99H16zM2,4.03l1.58,1.58C3.22,5.96 3,6.46 3,7v10c0,1.1 0.9,1.99 2,1.99L16,19c0.28,0 0.55,-0.07 0.79,-0.18L18.97,21l1.41,-1.41L3.41,2.62 2,4.03zM14.97,17H5V7.03L14.97,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lan.xml b/compose/material/material/icons/generator/raw-icons/outlined/lan.xml
deleted file mode 100644
index a03df86..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22zM10,7V4h4v3H10zM9,17v3H5v-3H9zM19,17v3h-4v-3H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/landscape.xml b/compose/material/material/icons/generator/raw-icons/outlined/landscape.xml
deleted file mode 100644
index 9496016..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-4.22,5.63 1.25,1.67L14,9.33 19,16h-8.46l-4.01,-5.37L1,18h22L14,6zM5,16l1.52,-2.03L8.04,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/landslide.xml b/compose/material/material/icons/generator/raw-icons/outlined/landslide.xml
deleted file mode 100644
index 7a76595..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/landslide.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12L8,8H2v14h20l-6,-8L11,12zM12.53,14.77L6,16.95l-2,-0.67v-1.89l2,0.67l3.95,-1.32L12.53,14.77zM7,10l1.57,2.09L6,12.95l-2,-0.67V10H7zM4,20v-1.61l2,0.67l9.03,-3.01L18,20H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6V1l-5,-1L9,2v4l3,2L17,6zM11,3.07l1.42,-0.95L15,2.64v2.01l-2.77,1.11L11,4.93V3.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,7L16,9v3l2.5,2l4.5,-2V8L18.5,7zM21,10.7l-2.2,0.98L18,11.04V9.96l1,-0.8l2,0.44V10.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/language.xml b/compose/material/material/icons/generator/raw-icons/outlined/language.xml
deleted file mode 100644
index e745325..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM18.92,8h-2.95c-0.32,-1.25 -0.78,-2.45 -1.38,-3.56 1.84,0.63 3.37,1.91 4.33,3.56zM12,4.04c0.83,1.2 1.48,2.53 1.91,3.96h-3.82c0.43,-1.43 1.08,-2.76 1.91,-3.96zM4.26,14C4.1,13.36 4,12.69 4,12s0.1,-1.36 0.26,-2h3.38c-0.08,0.66 -0.14,1.32 -0.14,2s0.06,1.34 0.14,2L4.26,14zM5.08,16h2.95c0.32,1.25 0.78,2.45 1.38,3.56 -1.84,-0.63 -3.37,-1.9 -4.33,-3.56zM8.03,8L5.08,8c0.96,-1.66 2.49,-2.93 4.33,-3.56C8.81,5.55 8.35,6.75 8.03,8zM12,19.96c-0.83,-1.2 -1.48,-2.53 -1.91,-3.96h3.82c-0.43,1.43 -1.08,2.76 -1.91,3.96zM14.34,14L9.66,14c-0.09,-0.66 -0.16,-1.32 -0.16,-2s0.07,-1.35 0.16,-2h4.68c0.09,0.65 0.16,1.32 0.16,2s-0.07,1.34 -0.16,2zM14.59,19.56c0.6,-1.11 1.06,-2.31 1.38,-3.56h2.95c-0.96,1.65 -2.49,2.93 -4.33,3.56zM16.36,14c0.08,-0.66 0.14,-1.32 0.14,-2s-0.06,-1.34 -0.14,-2h3.38c0.16,0.64 0.26,1.31 0.26,2s-0.1,1.36 -0.26,2h-3.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/laptop.xml b/compose/material/material/icons/generator/raw-icons/outlined/laptop.xml
deleted file mode 100644
index 699cf9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/laptop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v10c0,1.1 0.9,2 2,2H0v2h24v-2H20zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/laptop_chromebook.xml b/compose/material/material/icons/generator/raw-icons/outlined/laptop_chromebook.xml
deleted file mode 100644
index efe55f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/laptop_chromebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18L22,3L2,3v15L0,18v2h24v-2h-2zM14,18h-4v-1h4v1zM20,15L4,15L4,5h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/laptop_mac.xml b/compose/material/material/icons/generator/raw-icons/outlined/laptop_mac.xml
deleted file mode 100644
index b6b7675..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/laptop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2L0,18c0,1.1 0.9,2 2,2h20c1.1,0 2,-0.9 2,-2h-4zM4,5h16v11L4,16L4,5zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/laptop_windows.xml b/compose/material/material/icons/generator/raw-icons/outlined/laptop_windows.xml
deleted file mode 100644
index 08f704e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/laptop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18v-1c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2v1H0v2h24v-2h-4zM4,5h16v10H4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/last_page.xml b/compose/material/material/icons/generator/raw-icons/outlined/last_page.xml
deleted file mode 100644
index cf1b035..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/last_page.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.59,7.41L10.18,12l-4.59,4.59L7,18l6,-6 -6,-6 -1.41,1.41zM16,6h2v12h-2V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/launch.xml b/compose/material/material/icons/generator/raw-icons/outlined/launch.xml
deleted file mode 100644
index b2dd7f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/launch.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/layers.xml b/compose/material/material/icons/generator/raw-icons/outlined/layers.xml
deleted file mode 100644
index 9e2f658..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/layers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,18.54l-7.37,-5.73L3,14.07l9,7 9,-7 -1.63,-1.27zM12,16l7.36,-5.73L21,9l-9,-7 -9,7 1.63,1.27L12,16zM12,4.53L17.74,9 12,13.47 6.26,9 12,4.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/layers_clear.xml b/compose/material/material/icons/generator/raw-icons/outlined/layers_clear.xml
deleted file mode 100644
index cb150b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/layers_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.53L17.74,9l-1.89,1.47 1.43,1.42L21,9l-9,-7 -2.59,2.02 1.42,1.42zM21,14.07l-1.63,-1.27 -0.67,0.52 1.43,1.43zM3.41,0.86L2,2.27l4.22,4.22L3,9l9,7 2.1,-1.63 1.42,1.42 -3.53,2.75 -7.37,-5.73L3,14.07l9,7 4.95,-3.85L20.73,21l1.41,-1.41L3.41,0.86zM12,13.47L6.26,9l1.39,-1.08 5.02,5.02 -0.67,0.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/leaderboard.xml b/compose/material/material/icons/generator/raw-icons/outlined/leaderboard.xml
deleted file mode 100644
index 0a95025..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/leaderboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11V3H8v6H2v12h20V11H16zM10,5h4v14h-4V5zM4,11h4v8H4V11zM20,19h-4v-6h4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/leak_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/leak_add.xml
deleted file mode 100644
index 975e8fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/leak_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3L3,3v3c1.66,0 3,-1.34 3,-3zM14,3h-2c0,4.97 -4.03,9 -9,9v2c6.08,0 11,-4.93 11,-11zM10,3L8,3c0,2.76 -2.24,5 -5,5v2c3.87,0 7,-3.13 7,-7zM10,21h2c0,-4.97 4.03,-9 9,-9v-2c-6.07,0 -11,4.93 -11,11zM18,21h3v-3c-1.66,0 -3,1.34 -3,3zM14,21h2c0,-2.76 2.24,-5 5,-5v-2c-3.87,0 -7,3.13 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/leak_remove.xml b/compose/material/material/icons/generator/raw-icons/outlined/leak_remove.xml
deleted file mode 100644
index b83ca95..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/leak_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3h-2c0,1.35 -0.31,2.63 -0.84,3.77l1.49,1.49C13.51,6.7 14,4.91 14,3zM21,12v-2c-1.91,0 -3.7,0.49 -5.27,1.35l1.49,1.49c1.15,-0.53 2.43,-0.84 3.78,-0.84zM21,16v-2c-0.79,0 -1.54,0.13 -2.24,0.37l1.68,1.68c0.19,-0.01 0.37,-0.05 0.56,-0.05zM10,3L8,3c0,0.19 -0.04,0.37 -0.06,0.56l1.68,1.68c0.25,-0.7 0.38,-1.46 0.38,-2.24zM4.41,2.86L3,4.27l2.84,2.84C5.03,7.67 4.06,8 3,8v2c1.61,0 3.09,-0.55 4.27,-1.46L8.7,9.97C7.14,11.24 5.16,12 3,12v2c2.72,0 5.2,-0.99 7.11,-2.62l2.51,2.51C10.99,15.81 10,18.29 10,21h2c0,-2.16 0.76,-4.14 2.03,-5.7l1.43,1.43C14.55,17.91 14,19.39 14,21h2c0,-1.06 0.33,-2.03 0.89,-2.84L19.73,21l1.41,-1.41L4.41,2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/leave_bags_at_home.xml b/compose/material/material/icons/generator/raw-icons/outlined/leave_bags_at_home.xml
deleted file mode 100644
index 284418a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/leave_bags_at_home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8H17v6.17l2,2V8c0,-1.1 -0.9,-2 -2,-2h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H8.83L10.83,8zM11,4h2v2h-2V4zM11.83,9h0.92v0.92L11.83,9zM21.19,21.19L2.81,2.81L1.39,4.22l3.63,3.63C5.02,7.9 5,7.95 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1c0.34,0 0.65,-0.09 0.93,-0.24l1.85,1.85L21.19,21.19zM7,19V9.83l1,1V18h1.5v-5.67l1.75,1.75V18h1.5v-2.42l1.75,1.75V18h0.67l1,1H7zM16,9v4.17l-1.5,-1.5V9H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/legend_toggle.xml b/compose/material/material/icons/generator/raw-icons/outlined/legend_toggle.xml
deleted file mode 100644
index ea17c5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/legend_toggle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15H4v-2h16V15zM20,17H4v2h16V17zM15,11l5,-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92,-3.61L15,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lens.xml b/compose/material/material/icons/generator/raw-icons/outlined/lens.xml
deleted file mode 100644
index 81a4a21..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8 -8,-3.59 -8,-8 3.59,-8 8,-8m0,-2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lens_blur.xml b/compose/material/material/icons/generator/raw-icons/outlined/lens_blur.xml
deleted file mode 100644
index cb8a385..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lens_blur.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,13 6,13zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,17 6,17zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,9 6,9zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,9.5 3,9.5zM6,5C5.45,5 5,5.45 5,6s0.45,1 1,1s1,-0.45 1,-1S6.55,5 6,5zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5S21.28,9.5 21,9.5s-0.5,0.22 -0.5,0.5S20.72,10.5 21,10.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S13.45,7 14,7zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5S14.28,2.5 14,2.5S13.5,2.72 13.5,3S13.72,3.5 14,3.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,13.5 3,13.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S10.28,20.5 10,20.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5S10.28,2.5 10,2.5S9.5,2.72 9.5,3S9.72,3.5 10,3.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1S9,5.45 9,6S9.45,7 10,7zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,12.5 10,12.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,13 18,13zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,17 18,17zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,9 18,9zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,5 18,5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S21.28,13.5 21,13.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S14.55,17 14,17zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S14.28,20.5 14,20.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,8.5 10,8.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S10.55,17 10,17zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,12.5 14,12.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,8.5 14,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/library_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/library_add.xml
deleted file mode 100644
index 16008f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/library_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM13,14h2v-3h3L18,9h-3L15,6h-2v3h-3v2h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/library_add_check.xml b/compose/material/material/icons/generator/raw-icons/outlined/library_add_check.xml
deleted file mode 100644
index 560e399..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/library_add_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v12H8V4H20M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2L20,2zM12.47,14L9,10.5l1.4,-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14zM4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/library_books.xml b/compose/material/material/icons/generator/raw-icons/outlined/library_books.xml
deleted file mode 100644
index fcc2c91..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/library_books.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM10,9h8v2h-8zM10,12h4v2h-4zM10,6h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/library_music.xml b/compose/material/material/icons/generator/raw-icons/outlined/library_music.xml
deleted file mode 100644
index e635fd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/library_music.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM12.5,15c1.38,0 2.5,-1.12 2.5,-2.5L15,7h3L18,5h-4v5.51c-0.42,-0.32 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5zM4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/light.xml b/compose/material/material/icons/generator/raw-icons/outlined/light.xml
deleted file mode 100644
index 5ff84e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/light.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.06V3h-2v3.06c-4.5,0.5 -8,4.31 -8,8.93C3,16.1 3.9,17 5.01,17H8c0,2.21 1.79,4 4,4s4,-1.79 4,-4h2.99C20.1,17 21,16.1 21,14.99C21,10.37 17.5,6.56 13,6.06zM12,19c-1.1,0 -2,-0.9 -2,-2h2h2C14,18.1 13.1,19 12,19zM12,15H5c0,-3.86 3.14,-7 7,-7s7,3.14 7,7H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/light_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/light_mode.xml
deleted file mode 100644
index b42f44e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/light_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c1.65,0 3,1.35 3,3s-1.35,3 -3,3s-3,-1.35 -3,-3S10.35,9 12,9M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7L12,7zM2,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S1.45,13 2,13zM20,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S19.45,13 20,13zM11,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V2c0,-0.55 -0.45,-1 -1,-1S11,1.45 11,2zM11,20v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1C11.45,19 11,19.45 11,20zM5.99,4.58c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0s0.39,-1.03 0,-1.41L5.99,4.58zM18.36,16.95c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0c0.39,-0.39 0.39,-1.03 0,-1.41L18.36,16.95zM19.42,5.99c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L19.42,5.99zM7.05,18.36c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L7.05,18.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lightbulb.xml b/compose/material/material/icons/generator/raw-icons/outlined/lightbulb.xml
deleted file mode 100644
index fa976bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lightbulb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,21c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1L9,20v1zM12,2C8.14,2 5,5.14 5,9c0,2.38 1.19,4.47 3,5.74L8,17c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-2.26c1.81,-1.27 3,-3.36 3,-5.74 0,-3.86 -3.14,-7 -7,-7zM14.85,13.1l-0.85,0.6L14,16h-4v-2.3l-0.85,-0.6C7.8,12.16 7,10.63 7,9c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.63 -0.8,3.16 -2.15,4.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lightbulb_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/lightbulb_circle.xml
deleted file mode 100644
index f77fd48..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lightbulb_circle.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c0.83,0 1.5,-0.67 1.5,-1.5h-3C10.5,18.33 11.17,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15h6v1.5h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-2.76,0 -5,2.24 -5,5c0,1.64 0.8,3.09 2.03,4h5.95C16.2,13.09 17,11.64 17,10C17,7.24 14.76,5 12,5zM14.43,12.5H9.57C8.89,11.84 8.5,10.95 8.5,10c0,-1.93 1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5C15.5,10.95 15.11,11.84 14.43,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/line_axis.xml b/compose/material/material/icons/generator/raw-icons/outlined/line_axis.xml
deleted file mode 100644
index 94bb0ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/line_axis.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.43l-1.41,-1.41l-4.03,4.53l-7.06,-6.55l-7.5,7.51l1.5,1.5l6.14,-6.15l5.59,5.18l-1.73,1.95l-4,-4l-7.5,7.51l1.5,1.5l6,-6.01l4,4l3.19,-3.59l3.9,3.61l1.41,-1.41l-3.98,-3.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/line_style.xml b/compose/material/material/icons/generator/raw-icons/outlined/line_style.xml
deleted file mode 100644
index 4c94c8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/line_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,16h5v-2L3,14v2zM9.5,16h5v-2h-5v2zM16,16h5v-2h-5v2zM3,20h2v-2L3,18v2zM7,20h2v-2L7,18v2zM11,20h2v-2h-2v2zM15,20h2v-2h-2v2zM19,20h2v-2h-2v2zM3,12h8v-2L3,10v2zM13,12h8v-2h-8v2zM3,4v4h18L21,4L3,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/line_weight.xml b/compose/material/material/icons/generator/raw-icons/outlined/line_weight.xml
deleted file mode 100644
index 10b6def..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/line_weight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v-2L3,15v2zM3,20h18v-1L3,19v1zM3,13h18v-3L3,10v3zM3,4v4h18L21,4L3,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/linear_scale.xml b/compose/material/material/icons/generator/raw-icons/outlined/linear_scale.xml
deleted file mode 100644
index 5a85d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/linear_scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5c-1.03,0 -1.9,0.62 -2.29,1.5h-2.92c-0.39,-0.88 -1.26,-1.5 -2.29,-1.5s-1.9,0.62 -2.29,1.5H6.79c-0.39,-0.88 -1.26,-1.5 -2.29,-1.5C3.12,9.5 2,10.62 2,12s1.12,2.5 2.5,2.5c1.03,0 1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5s1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5 1.38,0 2.5,-1.12 2.5,-2.5s-1.12,-2.5 -2.5,-2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/link.xml b/compose/material/material/icons/generator/raw-icons/outlined/link.xml
deleted file mode 100644
index 6e0921d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h-4v2h4c1.65,0 3,1.35 3,3s-1.35,3 -3,3h-4v2h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM11,15L7,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-2zM8,11h8v2L8,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/link_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/link_off.xml
deleted file mode 100644
index d9d49a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/link_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.39,11L16,12.61V11zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1 0,1.27 -0.77,2.37 -1.87,2.84l1.4,1.4C21.05,15.36 22,13.79 22,12c0,-2.76 -2.24,-5 -5,-5zM2,4.27l3.11,3.11C3.29,8.12 2,9.91 2,12c0,2.76 2.24,5 5,5h4v-1.9H7c-1.71,0 -3.1,-1.39 -3.1,-3.1 0,-1.59 1.21,-2.9 2.76,-3.07L8.73,11H8v2h2.73L13,15.27V17h1.73l4.01,4.01 1.41,-1.41L3.41,2.86 2,4.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/linked_camera.xml b/compose/material/material/icons/generator/raw-icons/outlined/linked_camera.xml
deleted file mode 100644
index 4d4c85b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/linked_camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9v11L4,20L4,8h4.05l1.83,-2L15,6L15,4L9,4L7.17,6L4,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9h-2zM20.67,7.99L22,7.99C21.99,4.68 19.31,2 16,2v1.33c2.58,0 4.66,2.08 4.67,4.66zM18,7.99h1.33c-0.01,-1.84 -1.49,-3.32 -3.33,-3.32L16,6c1.11,0 1.99,0.89 2,1.99zM7,14c0,2.76 2.24,5 5,5s5,-2.24 5,-5 -2.24,-5 -5,-5 -5,2.24 -5,5zM15,14c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3 1.35,-3 3,-3 3,1.34 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/liquor.xml b/compose/material/material/icons/generator/raw-icons/outlined/liquor.xml
deleted file mode 100644
index 5a9d94a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/liquor.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14c0,1.3 0.84,2.4 2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4 9,15.3 9,14V6H3V14zM5,8h2v3H5V8zM5,13h2v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.64,8.54l-0.96,-0.32C19.27,8.08 19,7.7 19,7.27V3c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v4.28c0,0.43 -0.27,0.81 -0.68,0.95l-0.96,0.32C11.55,8.83 11,9.59 11,10.45V20c0,1.1 0.9,2 2,2h7c1.1,0 2,-0.9 2,-2v-9.56C22,9.58 21.45,8.82 20.64,8.54zM16,4h1v1h-1V4zM20,20h-7v-2h7V20zM20,16h-7v-2h7V16zM20,12h-7v-1.56l0.95,-0.32C15.18,9.72 16,8.57 16,7.28V7h1v0.28c0,1.29 0.82,2.44 2.05,2.85L20,10.44V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/list.xml b/compose/material/material/icons/generator/raw-icons/outlined/list.xml
deleted file mode 100644
index 1104a1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/list_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/list_alt.xml
deleted file mode 100644
index b1d78ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/list_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h6v2h-6zM11,11h6v2h-6zM11,15h6v2h-6zM7,7h2v2L7,9zM7,11h2v2L7,13zM7,15h2v2L7,17zM20.1,3L3.9,3c-0.5,0 -0.9,0.4 -0.9,0.9v16.2c0,0.4 0.4,0.9 0.9,0.9h16.2c0.4,0 0.9,-0.5 0.9,-0.9L21,3.9c0,-0.5 -0.5,-0.9 -0.9,-0.9zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/live_help.xml b/compose/material/material/icons/generator/raw-icons/outlined/live_help.xml
deleted file mode 100644
index 7be3268..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/live_help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h4l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM19,18h-4.83l-0.59,0.59L12,20.17l-1.59,-1.59 -0.58,-0.58L5,18L5,4h14v14zM11,15h2v2h-2zM12,7c1.1,0 2,0.9 2,2 0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4S8,6.79 8,9h2c0,-1.1 0.9,-2 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/live_tv.xml b/compose/material/material/icons/generator/raw-icons/outlined/live_tv.xml
deleted file mode 100644
index a6097a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/live_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10v8l7,-4zM21,6h-7.58l3.29,-3.29L16,2l-4,4h-0.03l-4,-4 -0.69,0.71L10.56,6L3,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM21,20L3,20L3,8h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/living.xml b/compose/material/material/icons/generator/raw-icons/outlined/living.xml
deleted file mode 100644
index 77d5730..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/living.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,10.35V9c0,-1.66 -1.34,-3 -3,-3h-5.5c-1.66,0 -3,1.34 -3,3v1.35C5.51,10.78 5,11.58 5,12.5V16c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-3.5C19,11.58 18.49,10.78 17.75,10.35zM9.25,7.5h5.5c0.83,0 1.5,0.67 1.5,1.5v1.03C14.99,10.15 14,11.2 14,12.5V13h-4v-0.5c0,-1.3 -0.99,-2.35 -2.25,-2.47V9C7.75,8.17 8.42,7.5 9.25,7.5zM17.5,16c0,0.28 -0.22,0.5 -0.5,0.5H7c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h7v-2c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1V16zM20,4v16H4V4H20M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_activity.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_activity.xml
deleted file mode 100644
index 89ed66b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_activity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2zM20,8.54c-1.19,0.69 -2,1.99 -2,3.46s0.81,2.77 2,3.46L20,18L4,18v-2.54c1.19,-0.69 2,-1.99 2,-3.46 0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16v2.54zM9.07,16L12,14.12 14.93,16l-0.89,-3.36 2.69,-2.2 -3.47,-0.21L12,7l-1.27,3.22 -3.47,0.21 2.69,2.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_airport.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_airport.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_airport.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_atm.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_atm.xml
deleted file mode 100644
index 217942d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h4L15,8h-2L13,7h-2v1h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1L9,14v2h2v1zM20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_bar.xml
deleted file mode 100644
index 1094f48..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.77,9L12,12.11 9.23,9h5.54M21,3H3v2l8,9v5H6v2h12v-2h-5v-5l8,-9V3zM7.43,7L5.66,5h12.69l-1.78,2H7.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_cafe.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_cafe.xml
deleted file mode 100644
index 8af9765..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_cafe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5v8c0,1.1 -0.9,2 -2,2L8,15c-1.1,0 -2,-0.9 -2,-2L6,5h10m4,-2L4,3v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.89 2,-2L22,5c0,-1.11 -0.89,-2 -2,-2zM18,8L18,5h2v3h-2zM20,19L2,19v2h18v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_car_wash.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_car_wash.xml
deleted file mode 100644
index 53f27dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_car_wash.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7c0,0.83 0.67,1.5 1.5,1.5zM12,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7c0,0.83 0.67,1.5 1.5,1.5zM7,5c0.83,0 1.5,-0.67 1.5,-1.5C8.5,2.5 7,0.8 7,0.8S5.5,2.5 5.5,3.5C5.5,4.33 6.17,5 7,5zM18.92,8.01C18.72,7.42 18.16,7 17.5,7h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,14v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,9h10.29l1.04,3L5.81,12l1.04,-3zM19,19L5,19v-4.66l0.12,-0.34h13.77l0.11,0.34L19,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_convenience_store.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_convenience_store.xml
deleted file mode 100644
index e466821..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_convenience_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7L19,4L5,4v3L2,7v13h8v-4h4v4h8L22,7h-3zM20,18h-4v-4L8,14v4L4,18L4,9h3L7,6h10v3h3v9zM8,8h2v1L8,9v3h3v-1L9,11v-1h2L11,7L8,7zM15,9h-1L14,7h-1v3h2v2h1L16,7h-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_dining.xml
deleted file mode 100644
index 4797566..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_drink.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_drink.xml
deleted file mode 100644
index 90dd1da..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_drink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2l2.01,18.23C5.13,21.23 5.97,22 7,22h10c1.03,0 1.87,-0.77 1.99,-1.77L21,2L3,2zM17,20l-10,0.01L5.89,10L18.1,10L17,20zM18.33,8L5.67,8l-0.44,-4h13.53l-0.43,4zM12,19c1.66,0 3,-1.34 3,-3 0,-2 -3,-5.4 -3,-5.4S9,14 9,16c0,1.66 1.34,3 3,3zM12,13.91c0.59,0.91 1,1.73 1,2.09 0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1c0,-0.37 0.41,-1.19 1,-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_fire_department.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_fire_department.xml
deleted file mode 100644
index bd9a8b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_fire_department.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l-0.44,0.55c-0.42,0.52 -0.98,0.75 -1.54,0.75C13,7.3 12,6.52 12,5.3V2c0,0 -8,4 -8,11c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,10.04 18.39,7.38 16,6zM12,19c-1.1,0 -2,-0.87 -2,-1.94c0,-0.51 0.2,-0.99 0.58,-1.36l1.42,-1.4l1.43,1.4C13.8,16.07 14,16.55 14,17.06C14,18.13 13.1,19 12,19zM15.96,17.5L15.96,17.5c0.04,-0.36 0.22,-1.89 -1.13,-3.22l0,0L12,11.5l-2.83,2.78l0,0c-1.36,1.34 -1.17,2.88 -1.13,3.22C6.79,16.4 6,14.79 6,13c0,-3.16 2.13,-5.65 4.03,-7.25c0.23,1.99 1.93,3.55 3.99,3.55c0.78,0 1.54,-0.23 2.18,-0.66C17.34,9.78 18,11.35 18,13C18,14.79 17.21,16.4 15.96,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_florist.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_florist.xml
deleted file mode 100644
index d514be9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_florist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.66,13.07c0.15,0 0.29,-0.01 0.43,-0.03C9.56,14.19 10.69,15 12,15s2.44,-0.81 2.91,-1.96c0.14,0.02 0.29,0.03 0.43,0.03 1.73,0 3.14,-1.41 3.14,-3.14 0,-0.71 -0.25,-1.39 -0.67,-1.93 0.43,-0.54 0.67,-1.22 0.67,-1.93 0,-1.73 -1.41,-3.14 -3.14,-3.14 -0.15,0 -0.29,0.01 -0.43,0.03C14.44,1.81 13.31,1 12,1s-2.44,0.81 -2.91,1.96c-0.14,-0.02 -0.29,-0.03 -0.43,-0.03 -1.73,0 -3.14,1.41 -3.14,3.14 0,0.71 0.25,1.39 0.67,1.93 -0.43,0.54 -0.68,1.22 -0.68,1.93 0,1.73 1.41,3.14 3.15,3.14zM12,13c-0.62,0 -1.12,-0.49 -1.14,-1.1l0.12,-1.09c0.32,0.12 0.66,0.19 1.02,0.19s0.71,-0.07 1.03,-0.19l0.11,1.09c-0.02,0.61 -0.52,1.1 -1.14,1.1zM15.34,11.07c-0.24,0 -0.46,-0.07 -0.64,-0.2l-0.81,-0.57c0.55,-0.45 0.94,-1.09 1.06,-1.83l0.88,0.42c0.4,0.19 0.66,0.59 0.66,1.03 0,0.64 -0.52,1.15 -1.15,1.15zM14.69,5.13c0.2,-0.13 0.42,-0.2 0.65,-0.2 0.63,0 1.14,0.51 1.14,1.14 0,0.44 -0.25,0.83 -0.66,1.03l-0.88,0.42c-0.12,-0.74 -0.51,-1.38 -1.07,-1.83l0.82,-0.56zM12,3c0.62,0 1.12,0.49 1.14,1.1l-0.11,1.09C12.71,5.07 12.36,5 12,5s-0.7,0.07 -1.02,0.19l-0.12,-1.09c0.02,-0.61 0.52,-1.1 1.14,-1.1zM8.66,4.93c0.24,0 0.46,0.07 0.64,0.2l0.81,0.56c-0.55,0.45 -0.94,1.09 -1.06,1.83l-0.88,-0.42c-0.4,-0.2 -0.66,-0.59 -0.66,-1.03 0,-0.63 0.52,-1.14 1.15,-1.14zM8.17,8.9l0.88,-0.42c0.12,0.74 0.51,1.38 1.07,1.83l-0.81,0.55c-0.2,0.13 -0.42,0.2 -0.65,0.2 -0.63,0 -1.14,-0.51 -1.14,-1.14 -0.01,-0.43 0.25,-0.82 0.65,-1.02zM12,22c4.97,0 9,-4.03 9,-9 -4.97,0 -9,4.03 -9,9zM14.44,19.56c0.71,-1.9 2.22,-3.42 4.12,-4.12 -0.71,1.9 -2.22,3.41 -4.12,4.12zM3,13c0,4.97 4.03,9 9,9 0,-4.97 -4.03,-9 -9,-9zM5.44,15.44c1.9,0.71 3.42,2.22 4.12,4.12 -1.9,-0.71 -3.41,-2.22 -4.12,-4.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_gas_station.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_gas_station.xml
deleted file mode 100644
index 3b885b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_gas_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-0.94,0.36 -1.61,1.26 -1.61,2.33 0,1.38 1.12,2.5 2.5,2.5 0.36,0 0.69,-0.08 1,-0.21v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L17,14c0,-1.1 -0.9,-2 -2,-2h-1L14,5c0,-1.1 -0.9,-2 -2,-2L6,3c-1.1,0 -2,0.9 -2,2v16h10v-7.5h1.5v5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5L20.5,9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM12,13.5L12,19L6,19v-7h6v1.5zM12,10L6,10L6,5h6v5zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_grocery_store.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_grocery_store.xml
deleted file mode 100644
index 8456bea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_grocery_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15.55,13c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.37,-0.66 -0.11,-1.48 -0.87,-1.48L5.21,4l-0.94,-2L1,2v2h2l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2L7,15l1.1,-2h7.45zM6.16,6h12.15l-2.76,5L8.53,11L6.16,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_hospital.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_hospital.xml
deleted file mode 100644
index 7270f45..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_hospital.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM10.5,17h3v-3.5L17,13.5v-3h-3.5L13.5,7h-3v3.5L7,10.5v3h3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_hotel.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_hotel.xml
deleted file mode 100644
index 45b66ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14c1.66,0 3,-1.34 3,-3S8.66,8 7,8s-3,1.34 -3,3 1.34,3 3,3zM7,10c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,7h-8v8L3,15L3,5L1,5v15h2v-3h18v3h2v-9c0,-2.21 -1.79,-4 -4,-4zM21,15h-8L13,9h6c1.1,0 2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_laundry_service.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_laundry_service.xml
deleted file mode 100644
index 77a6e8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_laundry_service.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2.01L6,2c-1.11,0 -2,0.89 -2,2v16c0,1.11 0.89,2 2,2h12c1.11,0 2,-0.89 2,-2V4c0,-1.11 -0.89,-1.99 -2,-1.99zM18,20H6L5.99,4H18v16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5 -5,2.24 -5,5 2.24,5 5,5zM14.36,11.64c1.3,1.3 1.3,3.42 0,4.72 -1.3,1.3 -3.42,1.3 -4.72,0l4.72,-4.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_library.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_library.xml
deleted file mode 100644
index 7ca15b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,3c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM12,11.55C9.64,9.35 6.48,8 3,8v11c3.48,0 6.64,1.35 9,3.55 2.36,-2.19 5.52,-3.55 9,-3.55L21,8c-3.48,0 -6.64,1.35 -9,3.55zM19,17.13c-2.53,0.34 -4.93,1.3 -7,2.82 -2.06,-1.52 -4.47,-2.49 -7,-2.83v-6.95c2.1,0.38 4.05,1.35 5.64,2.83L12,14.28l1.36,-1.27c1.59,-1.48 3.54,-2.45 5.64,-2.83v6.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_mall.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_mall.xml
deleted file mode 100644
index dfc8fe3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_mall.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-2c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6L5,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,8c0,-1.1 -0.9,-2 -2,-2zM12,3c1.66,0 3,1.34 3,3L9,6c0,-1.66 1.34,-3 3,-3zM19,20L5,20L5,8h14v12zM12,12c-1.66,0 -3,-1.34 -3,-3L7,9c0,2.76 2.24,5 5,5s5,-2.24 5,-5h-2c0,1.66 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_movies.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_movies.xml
deleted file mode 100644
index 6608633..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_movies.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5v14h-4L10,5h4m6,-2h-2v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2L20,3zM16,9L16,7h2v2h-2zM6,9L6,7h2v2L6,9zM16,13v-2h2v2h-2zM6,13v-2h2v2L6,13zM16,17v-2h2v2h-2zM6,17v-2h2v2L6,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_offer.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_offer.xml
deleted file mode 100644
index f141513..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_offer.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.58l-9,-9C12.05,2.22 11.55,2 11,2H4c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58s1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41s-0.23,-1.06 -0.59,-1.42zM13,20.01L4,11V4h7v-0.01l9,9 -7,7.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_parking.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_parking.xml
deleted file mode 100644
index 01605cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_parking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3L6,3v18h4v-6h3c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM13.2,11L10,11L10,7h3.2c1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_pharmacy.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_pharmacy.xml
deleted file mode 100644
index fcd3d01..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_pharmacy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5h-2.64l1.14,-3.14L17.15,1l-1.46,4L3,5v2l2,6 -2,6v2h18v-2l-2,-6 2,-6L21,5zM17.1,13.63L18.89,19L5.11,19l1.79,-5.37 0.21,-0.63 -0.21,-0.63L5.11,7h13.78l-1.79,5.37 -0.21,0.63 0.21,0.63zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_phone.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_phone.xml
deleted file mode 100644
index e673cc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5c0.06,0.89 0.21,1.76 0.45,2.59l-1.2,1.2c-0.41,-1.2 -0.67,-2.47 -0.76,-3.79h1.51m9.86,12.02c0.85,0.24 1.72,0.39 2.6,0.45v1.49c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.19M7.5,3H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1 -1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_pizza.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_pizza.xml
deleted file mode 100644
index 87acc34..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_pizza.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.43,2 5.23,3.54 3.01,6L12,22l8.99,-16C18.78,3.55 15.57,2 12,2zM12,17.92L5.51,6.36C7.32,4.85 9.62,4 12,4s4.68,0.85 6.49,2.36L12,17.92zM9,5.5c-0.83,0 -1.5,0.67 -1.5,1.5S8.17,8.5 9,8.5s1.5,-0.67 1.5,-1.5S9.82,5.5 9,5.5zM10.5,13c0,0.83 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5s-0.68,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_play.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_play.xml
deleted file mode 100644
index 89ed66b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2zM20,8.54c-1.19,0.69 -2,1.99 -2,3.46s0.81,2.77 2,3.46L20,18L4,18v-2.54c1.19,-0.69 2,-1.99 2,-3.46 0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16v2.54zM9.07,16L12,14.12 14.93,16l-0.89,-3.36 2.69,-2.2 -3.47,-0.21L12,7l-1.27,3.22 -3.47,0.21 2.69,2.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_police.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_police.xml
deleted file mode 100644
index 6e1f0ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_police.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9,-3.87l-3,-2.59l3.96,-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59zM12,3.19l7,3.11V11c0,4.52 -2.98,8.69 -7,9.93C7.98,19.69 5,15.52 5,11V6.3L12,3.19M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1L12,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_post_office.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_post_office.xml
deleted file mode 100644
index 1846c51..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_post_office.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6zM20,6l-8,5 -8,-5h16zM20,18L4,18L4,8l8,5 8,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_printshop.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_printshop.xml
deleted file mode 100644
index 31e4e60..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_printshop.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-1L18,3L6,3v5L5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12v-4h4v-6c0,-1.66 -1.34,-3 -3,-3zM8,5h8v3L8,8L8,5zM16,19L8,19v-4h8v4zM18,15v-2L6,13v2L4,15v-4c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_see.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_see.xml
deleted file mode 100644
index e61dbb7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_see.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h4.05l0.59,-0.65L9.88,4h4.24l1.24,1.35 0.59,0.65L20,6v12zM12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,15.2c-1.77,0 -3.2,-1.43 -3.2,-3.2 0,-1.77 1.43,-3.2 3.2,-3.2s3.2,1.43 3.2,3.2c0,1.77 -1.43,3.2 -3.2,3.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_shipping.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_shipping.xml
deleted file mode 100644
index 7a43b28..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_shipping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3L17,4L3,4c-1.1,0 -2,0.9 -2,2v11h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2v-5l-3,-4zM19.5,9.5l1.96,2.5L17,12L17,9.5h2.5zM6,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM8.22,15c-0.55,-0.61 -1.33,-1 -2.22,-1s-1.67,0.39 -2.22,1L3,15L3,6h12v9L8.22,15zM18,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/local_taxi.xml b/compose/material/material/icons/generator/raw-icons/outlined/local_taxi.xml
deleted file mode 100644
index 5f7c4bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/local_taxi.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5H15V3H9v2H6.5c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,7h10.29l1.04,3H5.81l1.04,-3zM19,17H5v-4.66l0.12,-0.34h13.77l0.11,0.34V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/location_city.xml b/compose/material/material/icons/generator/raw-icons/outlined/location_city.xml
deleted file mode 100644
index de6615f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/location_city.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11L15,5l-3,-3 -3,3v2L3,7v14h18L21,11h-6zM7,19L5,19v-2h2v2zM7,15L5,15v-2h2v2zM7,11L5,11L5,9h2v2zM13,19h-2v-2h2v2zM13,15h-2v-2h2v2zM13,11h-2L11,9h2v2zM13,7h-2L11,5h2v2zM19,19h-2v-2h2v2zM19,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/location_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/location_disabled.xml
deleted file mode 100644
index d9b464a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/location_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,13v-2h-2.06c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77H23zM4.41,2.86L3,4.27l2.04,2.04C3.97,7.62 3.26,9.23 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21l1.41,-1.41L4.41,2.86zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81C15.09,18.45 13.61,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/location_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/location_off.xml
deleted file mode 100644
index bae8654..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/location_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c2.76,0 5,2.24 5,5 0,1.06 -0.39,2.32 -1,3.62l1.49,1.49C18.37,12.36 19,10.57 19,9c0,-3.87 -3.13,-7 -7,-7 -1.84,0 -3.5,0.71 -4.75,1.86l1.43,1.43C9.56,4.5 10.72,4 12,4zM12,6.5c-0.59,0 -1.13,0.21 -1.56,0.56l3.5,3.5c0.35,-0.43 0.56,-0.97 0.56,-1.56 0,-1.38 -1.12,-2.5 -2.5,-2.5zM3.41,2.86L2,4.27l3.18,3.18C5.07,7.95 5,8.47 5,9c0,5.25 7,13 7,13s1.67,-1.85 3.38,-4.35L18.73,21l1.41,-1.41L3.41,2.86zM12,18.88c-2.01,-2.58 -4.8,-6.74 -4.98,-9.59l6.92,6.92c-0.65,0.98 -1.33,1.89 -1.94,2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/location_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/location_on.xml
deleted file mode 100644
index 928ff36..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/location_on.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM7,9c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.88 -2.88,7.19 -5,9.88C9.92,16.21 7,11.85 7,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/location_searching.xml b/compose/material/material/icons/generator/raw-icons/outlined/location_searching.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/location_searching.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lock.xml b/compose/material/material/icons/generator/raw-icons/outlined/lock.xml
deleted file mode 100644
index cda5f52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8L9,6zM18,20L6,20L6,10h12v10zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lock_clock.xml b/compose/material/material/icons/generator/raw-icons/outlined/lock_clock.xml
deleted file mode 100644
index af43b9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lock_clock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20V10h12v1c0.7,0 1.37,0.1 2,0.29V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h6.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H6zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2H9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lock_open.xml b/compose/material/material/icons/generator/raw-icons/outlined/lock_open.xml
deleted file mode 100644
index f769208..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lock_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6h2c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,10h12v10zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lock_person.xml b/compose/material/material/icons/generator/raw-icons/outlined/lock_person.xml
deleted file mode 100644
index 4e9145e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lock_person.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20V10h12v1c0.7,0 1.37,0.1 2,0.29V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h6.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H6zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2H9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM18,15c0.83,0 1.5,0.67 1.5,1.5S18.83,18 18,18s-1.5,-0.67 -1.5,-1.5S17.17,15 18,15zM18,21c-1.03,0 -1.94,-0.52 -2.48,-1.32C16.25,19.26 17.09,19 18,19s1.75,0.26 2.48,0.68C19.94,20.48 19.03,21 18,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lock_reset.xml b/compose/material/material/icons/generator/raw-icons/outlined/lock_reset.xml
deleted file mode 100644
index 4f0df93..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lock_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9c0,0.06 0.01,0.12 0.01,0.19l-1.84,-1.84l-1.41,1.41L5,16l4.24,-4.24l-1.41,-1.41l-1.82,1.82C6.01,12.11 6,12.06 6,12c0,-3.86 3.14,-7 7,-7s7,3.14 7,7s-3.14,7 -7,7c-1.9,0 -3.62,-0.76 -4.88,-1.99L6.7,18.42C8.32,20.01 10.55,21 13,21c4.97,0 9,-4.03 9,-9S17.97,3 13,3zM15,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C16,11.45 15.55,11 15,11zM14,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/login.xml b/compose/material/material/icons/generator/raw-icons/outlined/login.xml
deleted file mode 100644
index 8a3c480..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/login.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5,-5L11,7zM20,19h-8v2h8c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2h-8v2h8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/logo_dev.xml b/compose/material/material/icons/generator/raw-icons/outlined/logo_dev.xml
deleted file mode 100644
index 8659d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/logo_dev.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.68,14.98H6V9h1.71c1.28,0 1.71,1.03 1.71,1.71l0,2.56C9.42,13.95 9,14.98 7.68,14.98zM12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25c-0.4,0.01 -0.74,-0.31 -0.75,-0.71V9.75c-0.01,-0.4 0.31,-0.74 0.71,-0.75h2.28l0,1.07h-1.92v1.39H12.38zM16.88,14.23c-0.48,1.11 -1.33,0.89 -1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,10.12H7.14v3.77h0.63c0.14,0 0.28,-0.05 0.42,-0.16c0.14,-0.1 0.21,-0.26 0.21,-0.47v-2.52c0,-0.21 -0.07,-0.37 -0.21,-0.47C8.05,10.17 7.91,10.12 7.77,10.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/logout.xml b/compose/material/material/icons/generator/raw-icons/outlined/logout.xml
deleted file mode 100644
index 6f8ee13..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/logout.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8l-1.41,1.41L17.17,11H9v2h8.17l-1.58,1.58L17,16l4,-4L17,8zM5,5h7V3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h7v-2H5V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/looks.xml b/compose/material/material/icons/generator/raw-icons/outlined/looks.xml
deleted file mode 100644
index 8cb77cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/looks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c-3.86,0 -7,3.14 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.86 -3.14,-7 -7,-7zM12,6C5.93,6 1,10.93 1,17h2c0,-4.96 4.04,-9 9,-9s9,4.04 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/looks_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/looks_3.xml
deleted file mode 100644
index 28ac14c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/looks_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM15,15v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L15,9c0,-1.11 -0.9,-2 -2,-2L9,7v2h4v2h-2v2h2v2L9,15v2h4c1.1,0 2,-0.89 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/looks_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/looks_4.xml
deleted file mode 100644
index 48e0feb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/looks_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.04,3h-14c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21.04,5c0,-1.1 -0.9,-2 -2,-2zM19.04,19h-14L5.04,5h14v14zM13.04,17h2L15.04,7h-2v4h-2L11.04,7h-2v6h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/looks_5.xml b/compose/material/material/icons/generator/raw-icons/outlined/looks_5.xml
deleted file mode 100644
index fbaad8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/looks_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM15,15v-2c0,-1.11 -0.9,-2 -2,-2h-2L11,9h4L15,7L9,7v6h4v2L9,15v2h4c1.1,0 2,-0.89 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/looks_6.xml b/compose/material/material/icons/generator/raw-icons/outlined/looks_6.xml
deleted file mode 100644
index a992d60..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/looks_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2c1.1,0 2,-0.89 2,-2v-2c0,-1.11 -0.9,-2 -2,-2h-2L11,9h4L15,7h-4c-1.1,0 -2,0.89 -2,2v6c0,1.11 0.9,2 2,2zM11,13h2v2h-2v-2zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/looks_one.xml b/compose/material/material/icons/generator/raw-icons/outlined/looks_one.xml
deleted file mode 100644
index 9f1bbe3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/looks_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM12,17h2L14,7h-4v2h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/looks_two.xml b/compose/material/material/icons/generator/raw-icons/outlined/looks_two.xml
deleted file mode 100644
index 5d36133..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/looks_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM15,15h-4v-2h2c1.1,0 2,-0.89 2,-2L15,9c0,-1.11 -0.9,-2 -2,-2L9,7v2h4v2h-2c-1.1,0 -2,0.89 -2,2v4h6v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/loop.xml b/compose/material/material/icons/generator/raw-icons/outlined/loop.xml
deleted file mode 100644
index c2f773a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/loop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,1L8,5l4,4L12,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46C19.54,15.03 20,13.57 20,12c0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.24,7.74C4.46,8.97 4,10.43 4,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/loupe.xml b/compose/material/material/icons/generator/raw-icons/outlined/loupe.xml
deleted file mode 100644
index 736fb77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/loupe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10h8c1.1,0 2,-0.9 2,-2v-8c0,-5.51 -4.49,-10 -10,-10zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/low_priority.xml b/compose/material/material/icons/generator/raw-icons/outlined/low_priority.xml
deleted file mode 100644
index a7792fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/low_priority.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5h8v2h-8L14,5zM14,10.5h8v2h-8v-2zM14,16h8v2h-8v-2zM2,11.5C2,15.08 4.92,18 8.5,18L9,18v2l3,-3 -3,-3v2h-0.5C6.02,16 4,13.98 4,11.5S6.02,7 8.5,7L12,7L12,5L8.5,5C4.92,5 2,7.92 2,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/loyalty.xml b/compose/material/material/icons/generator/raw-icons/outlined/loyalty.xml
deleted file mode 100644
index f6a877d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/loyalty.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.58l-9,-9C12.05,2.22 11.55,2 11,2H4c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58s1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41s-0.23,-1.06 -0.59,-1.42zM13,20.01L4,11V4h7v-0.01l9,9 -7,7.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,12.55c0,0.57 0.23,1.07 0.6,1.45l3.5,3.5 3.5,-3.5c0.37,-0.37 0.6,-0.89 0.6,-1.45 0,-1.13 -0.92,-2.05 -2.05,-2.05 -0.57,0 -1.08,0.23 -1.45,0.6l-0.6,0.6 -0.6,-0.59c-0.37,-0.38 -0.89,-0.61 -1.45,-0.61 -1.13,0 -2.05,0.92 -2.05,2.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lte_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/lte_mobiledata.xml
deleted file mode 100644
index 7fc5c97..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lte_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14h3v2H4V8h2V14zM9,10h2v6h2v-6h2V8H9V10zM21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lte_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/lte_plus_mobiledata.xml
deleted file mode 100644
index 64fd585..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lte_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h3v2H1V8h2V14zM5,10h2v6h2v-6h2V8H5V10zM12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/luggage.xml b/compose/material/material/icons/generator/raw-icons/outlined/luggage.xml
deleted file mode 100644
index 2c0c7b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,18H8V9h1.5V18zM12.75,18h-1.5V9h1.5V18zM16,18h-1.5V9H16V18zM17,6h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H7C5.9,6 5,6.9 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1s1,-0.45 1,-1h6c0,0.55 0.45,1 1,1s1,-0.45 1,-1c1.1,0 2,-0.9 2,-2V8C19,6.9 18.1,6 17,6zM10.5,3.5h3V6h-3V3.5zM17,19H7V8h10V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lunch_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/lunch_dining.xml
deleted file mode 100644
index be1128c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lunch_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-3H2V19zM4,18h16v1H4V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.66,11.5c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1v2c1.9,0 2.17,-1 3.35,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.32,1l-0.01,-1.98C20.38,12.19 20.37,11.5 18.66,11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9c0.02,-4 -4.28,-6 -10,-6C6.29,3 2,5 2,9v1h20L22,9L22,9zM4.18,8C5.01,5.81 8.61,5 12,5c3.31,0 5.93,0.73 7.19,1.99C19.49,7.3 19.71,7.63 19.84,8H4.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/lyrics.xml b/compose/material/material/icons/generator/raw-icons/outlined/lyrics.xml
deleted file mode 100644
index 3cb2bfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/lyrics.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.97V16H6l-2,2V4h11v2.03c0.52,-0.69 1.2,-1.25 2,-1.6V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9c1.1,0 2,-0.9 2,-2v-2.42C16.2,13.22 15.52,12.66 15,11.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.18C19.69,6.07 19.35,6 19,6c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3V3h2V1h-4V6.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/macro_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/macro_off.xml
deleted file mode 100644
index 018403e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/macro_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.66,4.93C8.9,4.93 9.12,5 9.3,5.13l0.81,0.56C9.82,5.93 9.57,6.23 9.39,6.56l1.66,1.66C11.03,8.14 11,8.08 11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1c-0.08,0 -0.14,-0.03 -0.22,-0.04l4.06,4.06c1.49,-0.24 2.63,-1.53 2.63,-3.09c0,-0.71 -0.25,-1.39 -0.67,-1.93c0.43,-0.54 0.67,-1.22 0.67,-1.93c0,-1.73 -1.41,-3.14 -3.14,-3.14c-0.15,0 -0.29,0.01 -0.43,0.03C14.44,1.81 13.31,1 12,1S9.56,1.81 9.09,2.96C8.95,2.94 8.8,2.93 8.66,2.93c-0.8,0 -1.53,0.31 -2.09,0.81l1.42,1.42C8.19,5.03 8.41,4.93 8.66,4.93zM15.34,11.07c-0.24,0 -0.46,-0.07 -0.64,-0.2l-0.81,-0.57c0.55,-0.45 0.94,-1.09 1.06,-1.83l0.88,0.42c0.4,0.19 0.66,0.59 0.66,1.03C16.49,10.56 15.97,11.07 15.34,11.07zM14.69,5.13c0.2,-0.13 0.42,-0.2 0.65,-0.2c0.63,0 1.14,0.51 1.14,1.14c0,0.44 -0.25,0.83 -0.66,1.03l-0.88,0.42c-0.12,-0.74 -0.51,-1.38 -1.07,-1.83L14.69,5.13zM12,3c0.62,0 1.12,0.49 1.14,1.1l-0.11,1.09C12.71,5.07 12.36,5 12,5s-0.7,0.07 -1.02,0.19L10.86,4.1C10.88,3.49 11.38,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,17.15C20.63,15.91 21,14.5 21,13c-1.5,0 -2.91,0.37 -4.15,1.02L19.98,17.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,4.97 4.03,9 9,9C12,17.03 7.97,13 3,13zM5.44,15.44c1.9,0.71 3.42,2.22 4.12,4.12C7.66,18.85 6.15,17.34 5.44,15.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.42,4.42c-0.19,0.4 -0.3,0.84 -0.3,1.29c0,1.73 1.41,3.14 3.15,3.14c0.15,0 0.29,-0.01 0.43,-0.03C9.56,14.19 10.69,15 12,15c0.05,0 0.11,-0.01 0.16,-0.01l1.64,1.64C12.67,18.12 12,19.98 12,22c2.02,0 3.88,-0.67 5.38,-1.8l2.4,2.4l1.41,-1.41L2.81,2.81zM14.44,19.56c0.2,-0.54 0.47,-1.04 0.79,-1.5l0.72,0.72C15.48,19.09 14.98,19.36 14.44,19.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mail.xml b/compose/material/material/icons/generator/raw-icons/outlined/mail.xml
deleted file mode 100644
index a2bac15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6zM20,6l-8,4.99L4,6h16zM20,18L4,18L4,8l8,5 8,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mail_lock.xml b/compose/material/material/icons/generator/raw-icons/outlined/mail_lock.xml
deleted file mode 100644
index d97c39d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mail_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8l8,5l8,-5v2h2V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h12v-2H4V8zM20,6l-8,5L4,6H20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C24,15.45 23.55,15 23,15zM20,15v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mail_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/mail_outline.xml
deleted file mode 100644
index f108062..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mail_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8l8,5 8,-5v10zM12,11L4,6h16l-8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/male.xml b/compose/material/material/icons/generator/raw-icons/outlined/male.xml
deleted file mode 100644
index ac67026..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/male.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,11c1.93,0 3.5,1.57 3.5,3.5S11.43,18 9.5,18S6,16.43 6,14.5S7.57,11 9.5,11zM9.5,9C6.46,9 4,11.46 4,14.5S6.46,20 9.5,20s5.5,-2.46 5.5,-5.5c0,-1.16 -0.36,-2.23 -0.97,-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36 10.66,9 9.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/man.xml b/compose/material/material/icons/generator/raw-icons/outlined/man.xml
deleted file mode 100644
index c35877e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/man.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2v7h4v-7h2V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/man_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/man_2.xml
deleted file mode 100644
index 230adba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/man_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2.5v7h3v-7H16V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/man_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/man_3.xml
deleted file mode 100644
index af7bb64..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/man_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2v7h4v-7h2V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1.751l2.249,2.249l-2.249,2.249l-2.249,-2.249z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/man_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/man_4.xml
deleted file mode 100644
index 3f70493..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/man_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.75,7h-3.5C9.04,7 8.11,8.07 8.27,9.26L10,22h4l1.73,-12.74C15.89,8.07 14.96,7 13.75,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/manage_accounts.xml b/compose/material/material/icons/generator/raw-icons/outlined/manage_accounts.xml
deleted file mode 100644
index e972e43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/manage_accounts.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18v-0.65c0,-0.34 0.16,-0.66 0.41,-0.81C6.1,15.53 8.03,15 10,15c0.03,0 0.05,0 0.08,0.01c0.1,-0.7 0.3,-1.37 0.59,-1.98C10.45,13.01 10.23,13 10,13c-2.42,0 -4.68,0.67 -6.61,1.82C2.51,15.34 2,16.32 2,17.35V20h9.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4C7.79,4 6,5.79 6,8S7.79,12 10,12zM10,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2c-1.1,0 -2,-0.9 -2,-2S8.9,6 10,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0,-0.22 -0.03,-0.42 -0.06,-0.63l1.14,-1.01l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L18,11h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1.01c-0.03,0.21 -0.06,0.41 -0.06,0.63s0.03,0.42 0.06,0.63l-1.14,1.01l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L16,21h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1.01C20.72,16.42 20.75,16.22 20.75,16zM17,18c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S18.1,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/manage_history.xml b/compose/material/material/icons/generator/raw-icons/outlined/manage_history.xml
deleted file mode 100644
index 8fd7758..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/manage_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.69,18.37l1.14,-1l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L20,14h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.08,0.5 -0.08,0.76 0,1.26l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L18,24h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1C22.77,19.13 22.77,18.87 22.69,18.37zM19,21c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S20.1,21 19,21zM11,7v5.41l2.36,2.36l1.04,-1.79L13,11.59V7H11zM21,12c0,-4.97 -4.03,-9 -9,-9C9.17,3 6.65,4.32 5,6.36V4H3v6h6V8H6.26C7.53,6.19 9.63,5 12,5c3.86,0 7,3.14 7,7H21zM10.86,18.91C7.87,18.42 5.51,16.01 5.08,13H3.06c0.5,4.5 4.31,8 8.94,8c0.02,0 0.05,0 0.07,0L10.86,18.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/manage_search.xml b/compose/material/material/icons/generator/raw-icons/outlined/manage_search.xml
deleted file mode 100644
index 44aed15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/manage_search.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9H2V7h5V9zM7,12H2v2h5V12zM20.59,19l-3.83,-3.83C15.96,15.69 15.02,16 14,16c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5c0,1.02 -0.31,1.96 -0.83,2.75L22,17.59L20.59,19zM17,11c0,-1.65 -1.35,-3 -3,-3s-3,1.35 -3,3s1.35,3 3,3S17,12.65 17,11zM2,19h10v-2H2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/map.xml b/compose/material/material/icons/generator/raw-icons/outlined/map.xml
deleted file mode 100644
index d0769b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,3l-0.16,0.03L15,5.1 9,3 3.36,4.9c-0.21,0.07 -0.36,0.25 -0.36,0.48L3,20.5c0,0.28 0.22,0.5 0.5,0.5l0.16,-0.03L9,18.9l6,2.1 5.64,-1.9c0.21,-0.07 0.36,-0.25 0.36,-0.48L21,3.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM10,5.47l4,1.4v11.66l-4,-1.4L10,5.47zM5,6.46l3,-1.01v11.7l-3,1.16L5,6.46zM19,17.54l-3,1.01L16,6.86l3,-1.16v11.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/maps_home_work.xml b/compose/material/material/icons/generator/raw-icons/outlined/maps_home_work.xml
deleted file mode 100644
index db32d73..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/maps_home_work.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11v10h6v-5h2v5h6V11L8,6L1,11zM13,19h-2v-5H5v5H3v-7l5,-3.5l5,3.5V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3l0,1.97l2,1.43l0,-1.4l9,0l0,14l-4,0l0,2l6,0l0,-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/maps_ugc.xml b/compose/material/material/icons/generator/raw-icons/outlined/maps_ugc.xml
deleted file mode 100644
index ef44980..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/maps_ugc.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8c-1.18,0 -2.34,-0.26 -3.43,-0.78c-0.27,-0.13 -0.56,-0.19 -0.86,-0.19c-0.19,0 -0.38,0.03 -0.56,0.08l-3.2,0.94l0.94,-3.2c0.14,-0.47 0.1,-0.98 -0.11,-1.42C4.26,14.34 4,13.18 4,12C4,7.59 7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,1.54 0.36,2.98 0.97,4.29L1,23l6.71,-1.97C9.02,21.64 10.46,22 12,22c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/margin.xml b/compose/material/material/icons/generator/raw-icons/outlined/margin.xml
deleted file mode 100644
index a00dd124..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/margin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM19,19H5V5h14V19zM11,7h2v2h-2V7zM7,7h2v2H7V7zM15,7h2v2h-2V7zM7,11h2v2H7V11zM11,11h2v2h-2V11zM15,11h2v2h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mark_as_unread.xml b/compose/material/material/icons/generator/raw-icons/outlined/mark_as_unread.xml
deleted file mode 100644
index 9866165..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mark_as_unread.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.23,7h2.6c-0.06,-0.47 -0.36,-0.94 -0.79,-1.17L10.5,2L2.8,5.83C2.32,6.09 2,6.64 2,7.17V15c0,1.1 0.9,2 2,2V7.4L10.5,4L16.23,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8H7c-1.1,0 -2,0.9 -2,2v9c0,1.1 0.9,2 2,2h13c1.1,0 2,-0.9 2,-2v-9C22,8.9 21.1,8 20,8zM20,19H7v-7l6.5,3.33L20,12V19zM13.5,13.33L7,10h13L13.5,13.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mark_chat_read.xml b/compose/material/material/icons/generator/raw-icons/outlined/mark_chat_read.xml
deleted file mode 100644
index bbfd96f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mark_chat_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18l-6,0l-4,4V4c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2v7l-2,0V4H4v12l8,0V18zM23,14.34l-1.41,-1.41l-4.24,4.24l-2.12,-2.12l-1.41,1.41L17.34,20L23,14.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mark_chat_unread.xml b/compose/material/material/icons/generator/raw-icons/outlined/mark_chat_unread.xml
deleted file mode 100644
index cb09eb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mark_chat_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.98V16c0,1.1 -0.9,2 -2,2H6l-4,4V4c0,-1.1 0.9,-2 2,-2h10.1C14.04,2.32 14,2.66 14,3s0.04,0.68 0.1,1H4v12h16V7.9C20.74,7.75 21.42,7.42 22,6.98zM16,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,1.34 16,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mark_email_read.xml b/compose/material/material/icons/generator/raw-icons/outlined/mark_email_read.xml
deleted file mode 100644
index 9ab96a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mark_email_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h8l0,-2H4V8l8,5l8,-5v5h2V6C22,4.9 21.1,4 20,4zM12,11L4,6h16L12,11zM17.34,22l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L23,16.34L17.34,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mark_email_unread.xml b/compose/material/material/icons/generator/raw-icons/outlined/mark_email_unread.xml
deleted file mode 100644
index 7dc649a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mark_email_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8.98V18c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2L2.01,6C2.01,4.9 2.9,4 4,4h10.1C14.04,4.32 14,4.66 14,5s0.04,0.68 0.1,1H4l8,5l3.67,-2.29c0.47,0.43 1.02,0.76 1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75 21.42,9.42 22,8.98zM16,5c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,3.34 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mark_unread_chat_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/mark_unread_chat_alt.xml
deleted file mode 100644
index 98cba62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mark_unread_chat_alt.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16H4V4h10.1c-0.08,-0.39 -0.18,-1.11 0,-2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V6.98c-0.58,0.44 -1.26,0.77 -2,0.92V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9h12v2h-12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8h12V7.9c-1.21,-0.25 -2.25,-0.95 -2.97,-1.9H6V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/markunread.xml b/compose/material/material/icons/generator/raw-icons/outlined/markunread.xml
deleted file mode 100644
index 1846c51..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/markunread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6zM20,6l-8,5 -8,-5h16zM20,18L4,18L4,8l8,5 8,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/markunread_mailbox.xml b/compose/material/material/icons/generator/raw-icons/outlined/markunread_mailbox.xml
deleted file mode 100644
index 9907455..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/markunread_mailbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/masks.xml b/compose/material/material/icons/generator/raw-icons/outlined/masks.xml
deleted file mode 100644
index 070b51d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/masks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,6c-1.31,0 -2.37,1.01 -2.48,2.3C15.14,7.8 14.18,6.5 12,6.5c-2.19,0 -3.14,1.3 -5.02,1.8C6.87,7.02 5.81,6 4.5,6C3.12,6 2,7.12 2,8.5V9c0,6 3.6,7.81 6.52,7.98C9.53,17.62 10.72,18 12,18s2.47,-0.38 3.48,-1.02C18.4,16.81 22,15 22,9V8.5C22,7.12 20.88,6 19.5,6zM3.5,9V8.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3c0,1.28 0.38,2.47 1.01,3.48C4.99,14.27 3.5,12.65 3.5,9zM7,11.5V9.85c1.12,-0.23 1.95,-0.69 2.66,-1.08C10.48,8.33 11.07,8 12,8c0.93,0 1.52,0.33 2.34,0.78c0.71,0.39 1.54,0.84 2.66,1.08v1.65c0,2.76 -2.24,5 -5,5S7,14.26 7,11.5zM20.5,9c0,3.65 -1.49,5.27 -3.01,5.98c0.64,-1.01 1.01,-2.2 1.01,-3.48v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V9zM10.69,10.48c-0.44,0.26 -0.96,0.56 -1.69,0.76V10.2c0.48,-0.17 0.84,-0.38 1.18,-0.58C10.72,9.3 11.23,9 12,9s1.27,0.3 1.8,0.62c0.34,0.2 0.71,0.42 1.2,0.59v1.04c-0.75,-0.21 -1.26,-0.51 -1.71,-0.78C12.83,10.2 12.49,10 12,10C11.51,10 11.16,10.2 10.69,10.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/maximize.xml b/compose/material/material/icons/generator/raw-icons/outlined/maximize.xml
deleted file mode 100644
index be82c77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/maximize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2H3V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/media_bluetooth_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/media_bluetooth_off.xml
deleted file mode 100644
index fbefd8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/media_bluetooth_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V3h6v4h-4v1.17L9,6.17zM19.42,15L22,17.57l-0.8,0.8l-6.78,-6.78l0.8,-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15zM19.17,13.55l1.13,-1.13l-1.13,-1.13V13.55zM21.19,21.19l-1.41,1.41l-3.98,-3.98l-0.58,0.58l-0.85,-0.85l0.58,-0.58L11,13.83V17c0,2.21 -1.78,4 -3.99,4S3,19.21 3,17s1.79,-4 4.01,-4c0.73,0 1.41,0.21 2,0.55v-1.72L1.39,4.22L2.8,2.81L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/media_bluetooth_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/media_bluetooth_on.xml
deleted file mode 100644
index 9f09f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/media_bluetooth_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3l0.01,10.55c-0.6,-0.34 -1.28,-0.55 -2,-0.55C4.79,13 3,14.79 3,17s1.79,4 4.01,4S11,19.21 11,17V7h4V3H9zM21,12.43L17.57,9h-0.6v4.55l-2.75,-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75,-2.75V21h0.6L21,17.57L18.42,15L21,12.43zM18.17,11.3l1.13,1.13l-1.13,1.13V11.3zM19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mediation.xml b/compose/material/material/icons/generator/raw-icons/outlined/mediation.xml
deleted file mode 100644
index 857c2c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mediation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16l4,-4l-4,-4v3h-5.06c-0.34,-3.1 -2.26,-5.72 -4.94,-7.05C7.96,2.31 6.64,1 5,1C3.34,1 2,2.34 2,4s1.34,3 3,3c0.95,0 1.78,-0.45 2.33,-1.14C9.23,6.9 10.6,8.77 10.92,11h-3.1C7.4,9.84 6.3,9 5,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.3,0 2.4,-0.84 2.82,-2h3.1c-0.32,2.23 -1.69,4.1 -3.58,5.14C6.78,17.45 5.95,17 5,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.64,0 2.96,-1.31 2.99,-2.95c2.68,-1.33 4.6,-3.95 4.94,-7.05H18V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/medical_information.xml b/compose/material/material/icons/generator/raw-icons/outlined/medical_information.xml
deleted file mode 100644
index b1bbe92..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/medical_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM11,4h2v5h-2V4zM20,20H4V9h5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2h5V20zM11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16zM13,14.5V13h6v1.5H13zM13,17.5V16h4v1.5H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/medical_services.xml b/compose/material/material/icons/generator/raw-icons/outlined/medical_services.xml
deleted file mode 100644
index 1547a67..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/medical_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4V4c0,-1.1 -0.9,-2 -2,-2h-4C8.9,2 8,2.9 8,4v2H4C2.9,6 2,6.9 2,8v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM10,4h4v2h-4V4zM20,20H4V8h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/medication.xml b/compose/material/material/icons/generator/raw-icons/outlined/medication.xml
deleted file mode 100644
index 718889e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/medication.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,15H8v-3h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15zM19,8v11c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V8c0,-1.1 0.9,-2 2,-2h10C18.1,6 19,6.9 19,8zM17,8H7v11h10V8zM18,3H6v2h12V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/meeting_room.xml b/compose/material/material/icons/generator/raw-icons/outlined/meeting_room.xml
deleted file mode 100644
index 35b214d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19L19,4h-4L15,3L5,3v16L3,19v2h12L15,6h2v15h4v-2h-2zM13,19L7,19L7,5h6v14zM10,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/memory.xml b/compose/material/material/icons/generator/raw-icons/outlined/memory.xml
deleted file mode 100644
index 4b7c5dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/memory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9L9,9v6h6L15,9zM13,13h-2v-2h2v2zM21,11L21,9h-2L19,7c0,-1.1 -0.9,-2 -2,-2h-2L15,3h-2v2h-2L11,3L9,3v2L7,5c-1.1,0 -2,0.9 -2,2v2L3,9v2h2v2L3,13v2h2v2c0,1.1 0.9,2 2,2h2v2h2v-2h2v2h2v-2h2c1.1,0 2,-0.9 2,-2v-2h2v-2h-2v-2h2zM17,17L7,17L7,7h10v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/menu.xml b/compose/material/material/icons/generator/raw-icons/outlined/menu.xml
deleted file mode 100644
index 4350ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h18v-2L3,16v2zM3,13h18v-2L3,11v2zM3,6v2h18L21,6L3,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/menu_book.xml b/compose/material/material/icons/generator/raw-icons/outlined/menu_book.xml
deleted file mode 100644
index eff1e30..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/menu_book.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.11,-0.35 -2.33,-0.5 -3.5,-0.5c-1.95,0 -4.05,0.4 -5.5,1.5c-1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v14.65c0,0.25 0.25,0.5 0.5,0.5c0.1,0 0.15,-0.05 0.25,-0.05C3.1,20.45 5.05,20 6.5,20c1.95,0 4.05,0.4 5.5,1.5c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.65,0 3.35,0.3 4.75,1.05c0.1,0.05 0.15,0.05 0.25,0.05c0.25,0 0.5,-0.25 0.5,-0.5V6C22.4,5.55 21.75,5.25 21,5zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5c-1.7,0 -4.15,0.65 -5.5,1.5V8c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.2,0 2.4,0.15 3.5,0.5V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5c0.88,0 1.73,0.09 2.5,0.26V9.24C19.21,9.09 18.36,9 17.5,9c-1.7,0 -3.24,0.29 -4.5,0.83v1.66C14.13,10.85 15.7,10.5 17.5,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.49v1.66c1.13,-0.64 2.7,-0.99 4.5,-0.99c0.88,0 1.73,0.09 2.5,0.26V11.9c-0.79,-0.15 -1.64,-0.24 -2.5,-0.24C15.8,11.66 14.26,11.96 13,12.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,14.33c-1.7,0 -3.24,0.29 -4.5,0.83v1.66c1.13,-0.64 2.7,-0.99 4.5,-0.99c0.88,0 1.73,0.09 2.5,0.26v-1.52C19.21,14.41 18.36,14.33 17.5,14.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/menu_open.xml b/compose/material/material/icons/generator/raw-icons/outlined/menu_open.xml
deleted file mode 100644
index 9ada967..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/menu_open.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h13v-2H3V18zM3,13h10v-2H3V13zM3,6v2h13V6H3zM21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/merge.xml b/compose/material/material/icons/generator/raw-icons/outlined/merge.xml
deleted file mode 100644
index 07394ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/merge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,21L5,19.59l4.83,-4.83c0.75,-0.75 1.17,-1.77 1.17,-2.83v-5.1L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83v5.1c0,1.06 0.42,2.08 1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/merge_type.xml b/compose/material/material/icons/generator/raw-icons/outlined/merge_type.xml
deleted file mode 100644
index 360a589..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/merge_type.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20.41L18.41,19 15,15.59 13.59,17 17,20.41zM7.5,8H11v5.59L5.59,19 7,20.41l6,-6V8h3.5L12,3.5 7.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/message.xml b/compose/material/material/icons/generator/raw-icons/outlined/message.xml
deleted file mode 100644
index 3307f7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/message.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h16v12L5.17,16L4,17.17L4,4m0,-2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L4,2zM6,12h12v2L6,14v-2zM6,9h12v2L6,11L6,9zM6,6h12v2L6,8L6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mic.xml b/compose/material/material/icons/generator/raw-icons/outlined/mic.xml
deleted file mode 100644
index 7d9c6fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mic.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6C9,12.66 10.34,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5H5c0,3.53 2.61,6.43 6,6.92V21h2v-3.08c3.39,-0.49 6,-3.39 6,-6.92H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mic_external_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/mic_external_off.xml
deleted file mode 100644
index d0d4e23..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mic_external_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5c0,-1.66 -1.34,-3 -3,-3C6.38,2 5.81,2.19 5.33,2.5l4.15,4.15C9.8,6.18 10,5.61 10,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v9.17l2,2V6c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v3.17l2,2V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-1.17l6.49,6.49l1.41,-1.41L2.1,2.1zM7.19,16H6.81l-0.6,-6h0.96l0.56,0.56L7.19,16zM12,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2h1l0.56,-5.61L12,14.83V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mic_external_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/mic_external_on.xml
deleted file mode 100644
index 8fde388..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mic_external_on.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.22,7C9.7,6.47 10,5.77 10,5c0,-1.66 -1.34,-3 -3,-3S4,3.34 4,5c0,0.77 0.3,1.47 0.78,2H9.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,2c-2.21,0 -4,1.79 -4,4v12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2h1l1,-10H4l1,10h1c0,2.21 1.79,4 4,4s4,-1.79 4,-4V6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v16h2V6C20,3.79 18.21,2 16,2zM7.19,16H6.81l-0.6,-6h1.58L7.19,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mic_none.xml b/compose/material/material/icons/generator/raw-icons/outlined/mic_none.xml
deleted file mode 100644
index 2810bc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mic_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,5zM17,11c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5L5,11c0,3.53 2.61,6.43 6,6.92L11,21h2v-3.08c3.39,-0.49 6,-3.39 6,-6.92h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mic_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/mic_off.xml
deleted file mode 100644
index 631ced9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mic_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.8,4.9c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2l-0.01,3.91L15,10.6V5c0,-1.66 -1.34,-3 -3,-3 -1.54,0 -2.79,1.16 -2.96,2.65l1.76,1.76V4.9zM19,11h-1.7c0,0.58 -0.1,1.13 -0.27,1.64l1.27,1.27c0.44,-0.88 0.7,-1.87 0.7,-2.91zM4.41,2.86L3,4.27l6,6V11c0,1.66 1.34,3 3,3 0.23,0 0.44,-0.03 0.65,-0.08l1.66,1.66c-0.71,0.33 -1.5,0.52 -2.31,0.52 -2.76,0 -5.3,-2.1 -5.3,-5.1H5c0,3.41 2.72,6.23 6,6.72V21h2v-3.28c0.91,-0.13 1.77,-0.45 2.55,-0.9l4.2,4.2 1.41,-1.41L4.41,2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/microwave.xml b/compose/material/material/icons/generator/raw-icons/outlined/microwave.xml
deleted file mode 100644
index d4bef87..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/microwave.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h10v12H4V6zM20,18h-4V6h4V18zM19,9h-2V7h2V9zM18,13L18,13c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C19,12.55 18.55,13 18,13zM18,17L18,17c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C19,16.55 18.55,17 18,17zM10.25,16c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,15.12 7.94,15 7.75,15c-0.37,0 -0.8,0.41 -0.95,0.61l-1.42,-1.42C5.73,13.79 6.59,13 7.75,13c0.8,0 1.39,0.39 1.81,0.67C9.87,13.88 10.07,14 10.25,14c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42C12.26,15.21 11.41,16 10.25,16zM10.25,11c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,10.12 7.94,10 7.75,10c-0.37,0 -0.8,0.41 -0.95,0.61L5.37,9.19C5.73,8.79 6.59,8 7.75,8c0.8,0 1.39,0.39 1.81,0.67C9.87,8.88 10.07,9 10.25,9c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42C12.26,10.21 11.41,11 10.25,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/military_tech.xml b/compose/material/material/icons/generator/raw-icons/outlined/military_tech.xml
deleted file mode 100644
index daad128..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/military_tech.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.43V2H7v8.43c0,0.35 0.18,0.68 0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22l-0.78,-3.33l2.59,-2.24l-3.41,-0.29l-0.99,-2.34l4.18,-2.51C16.82,11.11 17,10.79 17,10.43zM11,11.07l-2,-1.2V4h2V11.07zM15,9.87l-2,1.2V4h2V9.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/minimize.xml b/compose/material/material/icons/generator/raw-icons/outlined/minimize.xml
deleted file mode 100644
index d564d78..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/minimize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h12v2H6v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/minor_crash.xml b/compose/material/material/icons/generator/raw-icons/outlined/minor_crash.xml
deleted file mode 100644
index eb6bc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/minor_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,9.01C18.72,8.42 18.16,8 17.5,8h-11C5.84,8 5.29,8.42 5.08,9.01L3,15v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,9.01zM6.85,10h10.29l1.04,3H5.81L6.85,10zM19,20H5v-5h14V20zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM9.41,5L8,6.41l-3,-3L6.41,2L9.41,5zM16,6.41L14.59,5l3,-3L19,3.41L16,6.41zM13,5h-2V0h2V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/miscellaneous_services.xml b/compose/material/material/icons/generator/raw-icons/outlined/miscellaneous_services.xml
deleted file mode 100644
index 5bbe6bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/miscellaneous_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,13.71l1.4,-2.42c0.09,-0.15 0.05,-0.34 -0.08,-0.45l-1.48,-1.16c0.03,-0.22 0.05,-0.45 0.05,-0.68s-0.02,-0.46 -0.05,-0.69l1.48,-1.16c0.13,-0.11 0.17,-0.3 0.08,-0.45l-1.4,-2.42c-0.09,-0.15 -0.27,-0.21 -0.43,-0.15L12,4.83c-0.36,-0.28 -0.75,-0.51 -1.18,-0.69l-0.26,-1.85C10.53,2.13 10.38,2 10.21,2h-2.8C7.24,2 7.09,2.13 7.06,2.3L6.8,4.15C6.38,4.33 5.98,4.56 5.62,4.84l-1.74,-0.7c-0.16,-0.06 -0.34,0 -0.43,0.15l-1.4,2.42C1.96,6.86 2,7.05 2.13,7.16l1.48,1.16C3.58,8.54 3.56,8.77 3.56,9s0.02,0.46 0.05,0.69l-1.48,1.16C2,10.96 1.96,11.15 2.05,11.3l1.4,2.42c0.09,0.15 0.27,0.21 0.43,0.15l1.74,-0.7c0.36,0.28 0.75,0.51 1.18,0.69l0.26,1.85C7.09,15.87 7.24,16 7.41,16h2.8c0.17,0 0.32,-0.13 0.35,-0.3l0.26,-1.85c0.42,-0.18 0.82,-0.41 1.18,-0.69l1.74,0.7C13.9,13.92 14.08,13.86 14.17,13.71zM8.81,11c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C10.81,10.1 9.91,11 8.81,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.92,18.67l-0.96,-0.74c0.02,-0.14 0.04,-0.29 0.04,-0.44c0,-0.15 -0.01,-0.3 -0.04,-0.44l0.95,-0.74c0.08,-0.07 0.11,-0.19 0.05,-0.29l-0.9,-1.55c-0.05,-0.1 -0.17,-0.13 -0.28,-0.1l-1.11,0.45c-0.23,-0.18 -0.48,-0.33 -0.76,-0.44l-0.17,-1.18C18.73,13.08 18.63,13 18.53,13h-1.79c-0.11,0 -0.21,0.08 -0.22,0.19l-0.17,1.18c-0.27,0.12 -0.53,0.26 -0.76,0.44l-1.11,-0.45c-0.1,-0.04 -0.22,0 -0.28,0.1l-0.9,1.55c-0.05,0.1 -0.04,0.22 0.05,0.29l0.95,0.74c-0.02,0.14 -0.03,0.29 -0.03,0.44c0,0.15 0.01,0.3 0.03,0.44l-0.95,0.74c-0.08,0.07 -0.11,0.19 -0.05,0.29l0.9,1.55c0.05,0.1 0.17,0.13 0.28,0.1l1.11,-0.45c0.23,0.18 0.48,0.33 0.76,0.44l0.17,1.18c0.02,0.11 0.11,0.19 0.22,0.19h1.79c0.11,0 0.21,-0.08 0.22,-0.19l0.17,-1.18c0.27,-0.12 0.53,-0.26 0.75,-0.44l1.12,0.45c0.1,0.04 0.22,0 0.28,-0.1l0.9,-1.55C22.03,18.86 22,18.74 21.92,18.67zM17.63,18.83c-0.74,0 -1.35,-0.6 -1.35,-1.35s0.6,-1.35 1.35,-1.35s1.35,0.6 1.35,1.35S18.37,18.83 17.63,18.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/missed_video_call.xml b/compose/material/material/icons/generator/raw-icons/outlined/missed_video_call.xml
deleted file mode 100644
index dea2f61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/missed_video_call.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5L17,7c0,-0.55 -0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4zM15,8.67L15,16L5,16L5,8h10v0.67zM7.11,11.11L11,15l3.77,-3.79 -0.78,-0.79L11,13.43l-3.11,-3.1h2.55L10.44,9.22L6,9.22v4.44h1.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mms.xml b/compose/material/material/icons/generator/raw-icons/outlined/mms.xml
deleted file mode 100644
index 96d77db..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM14.5,8L11,12.51 8.5,9.5 5,14h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mobile_friendly.xml b/compose/material/material/icons/generator/raw-icons/outlined/mobile_friendly.xml
deleted file mode 100644
index 3e8758c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mobile_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H9c-1.1,0 -2,0.9 -2,2v3h2V4h10v16H9v-2H7v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2zM7.01,13.47l-2.55,-2.55 -1.27,1.27L7,16l7.19,-7.19 -1.27,-1.27 -5.91,5.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mobile_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/mobile_off.xml
deleted file mode 100644
index 1f7e256..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mobile_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v8.61l2,2V3c0,-1.1 -0.9,-2 -2,-2H7c-0.71,0 -1.33,0.37 -1.68,0.93L8.39,5H17zM1.49,3.76L5,7.27V21c0,1.1 0.9,2 2,2h10c1.02,0 1.85,-0.77 1.98,-1.75l1.72,1.72 1.41,-1.41L2.9,2.35 1.49,3.76zM7,9.27L16.73,19H7V9.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mobile_screen_share.xml b/compose/material/material/icons/generator/raw-icons/outlined/mobile_screen_share.xml
deleted file mode 100644
index a9ce4b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mobile_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1L7,1c-1.1,0 -1.99,0.85 -1.99,1.95v18C5.01,22.05 5.9,23 7,23h10c1.1,0 2,-0.95 2,-2.05v-18C19,1.85 18.1,1 17,1zM17,19L7,19L7,5h10v14zM12.8,13.24v1.75L16,12l-3.2,-2.98v1.7c-3.11,0.43 -4.35,2.56 -4.8,4.7 1.11,-1.5 2.58,-2.18 4.8,-2.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mobiledata_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/mobiledata_off.xml
deleted file mode 100644
index 2cfbd37b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mobiledata_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6.82l1.59,1.59l1.41,-1.41l-4,-4l-4,4l1.41,1.41l1.59,-1.59l0,4.35l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l6.61,6.61l0,6.35l-1.59,-1.59l-1.41,1.41l4,4l4,-4l-1.41,-1.41l-1.59,1.59l0,-4.35l9.78,9.78l1.41,-1.42l-18.38,-18.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode.xml
deleted file mode 100644
index 47ea705..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.02l0.92,0.92L5.92,19L5,19v-0.92l9.06,-9.06M17.66,3c-0.25,0 -0.51,0.1 -0.7,0.29l-1.83,1.83 3.75,3.75 1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.2,-0.2 -0.45,-0.29 -0.71,-0.29zM14.06,6.19L3,17.25L3,21h3.75L17.81,9.94l-3.75,-3.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode_comment.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode_comment.xml
deleted file mode 100644
index fce1302..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17.17L18.83,16H4V4h16v13.17zM20,2H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4V4c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode_edit.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode_edit.xml
deleted file mode 100644
index 8f4b6ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode_edit.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21l3.75,0L17.81,9.94l-3.75,-3.75L3,17.25L3,21zM5,18.08l9.06,-9.06l0.92,0.92L5.92,19L5,19L5,18.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.37,3.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41L18.37,3.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode_edit_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode_edit_outline.xml
deleted file mode 100644
index 8f4b6ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode_edit_outline.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21l3.75,0L17.81,9.94l-3.75,-3.75L3,17.25L3,21zM5,18.08l9.06,-9.06l0.92,0.92L5.92,19L5,19L5,18.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.37,3.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41L18.37,3.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode_fan_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode_fan_off.xml
deleted file mode 100644
index 166fdba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode_fan_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c-1.06,0 -1.64,0.29 -3.91,1.19c-0.19,-0.14 -0.4,-0.27 -0.62,-0.37c0.25,-1.03 0.61,-1.53 1.33,-2.04C15.61,6.21 16,5.44 16,4.5C16,3.28 15.05,2 13.4,2c-3.08,0 -4.92,1.47 -5.32,3.26l2.33,2.33C10.07,6.69 10,6.38 10,6c0,-1.18 1.4,-2 3.4,-2C13.97,4 14,4.42 14,4.5c0,0.27 -0.05,0.43 -0.35,0.65c-1.27,0.9 -1.83,1.91 -2.16,3.39l-0.02,0.1l7.25,7.25C18.96,15.95 19.22,16 19.5,16c1.22,0 2.5,-0.95 2.5,-2.6C22,9.91 20.11,8 18,8zM19.5,14c-0.27,0 -0.43,-0.05 -0.65,-0.35c-0.9,-1.27 -1.91,-1.83 -3.39,-2.16c-0.03,-0.22 -0.08,-0.42 -0.15,-0.62C17.11,10.12 17.49,10 18,10c1.18,0 2,1.4 2,3.4C20,13.97 19.58,14 19.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l3.89,3.89C5.04,8.05 4.78,8 4.5,8C3.28,8 2,8.95 2,10.6C2,14.09 3.89,16 6,16c1.06,0 1.64,-0.29 3.91,-1.19c0.19,0.14 0.4,0.27 0.62,0.37c-0.25,1.03 -0.61,1.53 -1.33,2.04C8.39,17.79 8,18.56 8,19.5c0,1.22 0.95,2.5 2.6,2.5c3.08,0 4.92,-1.47 5.32,-3.26l3.86,3.86l1.41,-1.41L2.81,2.81L1.39,4.22zM12.52,15.46c0.03,0 0.06,-0.02 0.09,-0.02l0.97,0.97C13.93,17.31 14,17.62 14,18c0,1.18 -1.4,2 -3.4,2c-0.57,0 -0.6,-0.42 -0.6,-0.5c0,-0.27 0.05,-0.43 0.35,-0.65C11.63,17.96 12.18,16.94 12.52,15.46zM8.54,12.52c0.03,0.22 0.08,0.42 0.15,0.62C6.89,13.88 6.51,14 6,14c-1.18,0 -2,-1.4 -2,-3.4C4,10.03 4.42,10 4.5,10c0.27,0 0.43,0.05 0.65,0.35C6.04,11.63 7.06,12.18 8.54,12.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode_night.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode_night.xml
deleted file mode 100644
index 7a5c919..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode_night.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8c-0.34,0 -0.68,-0.02 -1.01,-0.07c1.91,-2.16 3.01,-4.98 3.01,-7.93s-1.1,-5.77 -3.01,-7.93C8.82,4.02 9.16,4 9.5,4M9.5,2c-1.82,0 -3.53,0.5 -5,1.35c2.99,1.73 5,4.95 5,8.65s-2.01,6.92 -5,8.65C5.97,21.5 7.68,22 9.5,22c5.52,0 10,-4.48 10,-10S15.02,2 9.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode_of_travel.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode_of_travel.xml
deleted file mode 100644
index dd79f62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode_of_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.31,18.9c-0.96,1 -2.06,2.03 -3.31,3.1c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2c4.19,0 7.99,3.21 8,8.17l2.09,-2.09L23.5,9.5L19,14l-4.5,-4.5l1.41,-1.41L18,10.17C17.99,6.55 15.34,4 12,4c-3.35,0 -6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14c0.64,-0.59 1.23,-1.16 1.77,-1.71c-0.17,-0.34 -0.27,-0.72 -0.27,-1.12c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5S17.38,19 16,19C15.76,19 15.53,18.97 15.31,18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mode_standby.xml b/compose/material/material/icons/generator/raw-icons/outlined/mode_standby.xml
deleted file mode 100644
index ef7b898..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mode_standby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,10.34 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/model_training.xml b/compose/material/material/icons/generator/raw-icons/outlined/model_training.xml
deleted file mode 100644
index 8158a10..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/model_training.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,13.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5h0C13.93,10 15.5,11.57 15.5,13.5zM13,19.5h-2V21h2V19.5zM19,13c0,1.68 -0.59,3.21 -1.58,4.42l1.42,1.42C20.18,17.27 21,15.23 21,13c0,-2.74 -1.23,-5.19 -3.16,-6.84l-1.42,1.42C17.99,8.86 19,10.82 19,13zM16,5l-4,-4v3c0,0 0,0 0,0c-4.97,0 -9,4.03 -9,9c0,2.23 0.82,4.27 2.16,5.84l1.42,-1.42C5.59,16.21 5,14.68 5,13c0,-3.86 3.14,-7 7,-7c0,0 0,0 0,0v3L16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/monetization_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/monetization_on.xml
deleted file mode 100644
index f72bf39..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/monetization_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12.31,11.14c-1.77,-0.45 -2.34,-0.94 -2.34,-1.67 0,-0.84 0.79,-1.43 2.1,-1.43 1.38,0 1.9,0.66 1.94,1.64h1.71c-0.05,-1.34 -0.87,-2.57 -2.49,-2.97L13.23,5L10.9,5v1.69c-1.51,0.32 -2.72,1.3 -2.72,2.81 0,1.79 1.49,2.69 3.66,3.21 1.95,0.46 2.34,1.15 2.34,1.87 0,0.53 -0.39,1.39 -2.1,1.39 -1.6,0 -2.23,-0.72 -2.32,-1.64L8.04,14.33c0.1,1.7 1.36,2.66 2.86,2.97L10.9,19h2.34v-1.67c1.52,-0.29 2.72,-1.16 2.73,-2.77 -0.01,-2.2 -1.9,-2.96 -3.66,-3.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/money.xml b/compose/material/material/icons/generator/raw-icons/outlined/money.xml
deleted file mode 100644
index 318f276..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16h3c0.55,0 1,-0.45 1,-1L19,9c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM16,10h1v4h-1v-4zM9,16h3c0.55,0 1,-0.45 1,-1L13,9c0,-0.55 -0.45,-1 -1,-1L9,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM10,10h1v4h-1v-4zM5,8h2v8L5,16zM2,4v16h20L22,4L2,4zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/money_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/money_off.xml
deleted file mode 100644
index cf77830..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/money_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM5.47,3.92L4.06,5.33 7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c0.96,-0.18 1.83,-0.55 2.46,-1.12l2.22,2.22 1.41,-1.41L5.47,3.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/money_off_csred.xml b/compose/material/material/icons/generator/raw-icons/outlined/money_off_csred.xml
deleted file mode 100644
index cf77830..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/money_off_csred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM5.47,3.92L4.06,5.33 7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c0.96,-0.18 1.83,-0.55 2.46,-1.12l2.22,2.22 1.41,-1.41L5.47,3.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/monitor.xml b/compose/material/material/icons/generator/raw-icons/outlined/monitor.xml
deleted file mode 100644
index e352655..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/monitor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v11c0,1.1 0.9,2 2,2h3l-1,1v2h12v-2l-1,-1h3c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,16H4V5h16V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/monitor_heart.xml b/compose/material/material/icons/generator/raw-icons/outlined/monitor_heart.xml
deleted file mode 100644
index 74768fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/monitor_heart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v3h2V6h16v3h2V6C22,4.9 21.1,4 20,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18H4v-3H2v3c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-3h-2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.89,7.55c-0.34,-0.68 -1.45,-0.68 -1.79,0L10,13.76l-1.11,-2.21C8.72,11.21 8.38,11 8,11H2v2h5.38l1.72,3.45C9.28,16.79 9.62,17 10,17s0.72,-0.21 0.89,-0.55L14,10.24l1.11,2.21C15.28,12.79 15.62,13 16,13h6v-2h-5.38L14.89,7.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/monitor_weight.xml b/compose/material/material/icons/generator/raw-icons/outlined/monitor_weight.xml
deleted file mode 100644
index eaa57e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/monitor_weight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19zM12,6c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S13.66,6 12,6zM11,9.5h-1v-1h1V9.5zM12.5,9.5h-1v-1h1V9.5zM14,9.5h-1v-1h1V9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/monochrome_photos.xml b/compose/material/material/icons/generator/raw-icons/outlined/monochrome_photos.xml
deleted file mode 100644
index 02aef15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/monochrome_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.2L15,3L9,3L7.2,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,19h-8v-1c-2.8,0 -5,-2.2 -5,-5s2.2,-5 5,-5L12,7h8v12zM17,13c0,-2.8 -2.2,-5 -5,-5v1.8c1.8,0 3.2,1.4 3.2,3.2s-1.4,3.2 -3.2,3.2L12,18c2.8,0 5,-2.2 5,-5zM8.8,13c0,1.8 1.4,3.2 3.2,3.2L12,9.8c-1.8,0 -3.2,1.4 -3.2,3.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mood.xml b/compose/material/material/icons/generator/raw-icons/outlined/mood.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mood_bad.xml b/compose/material/material/icons/generator/raw-icons/outlined/mood_bad.xml
deleted file mode 100644
index 0b5aabc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mood_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,13.5c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/moped.xml b/compose/material/material/icons/generator/raw-icons/outlined/moped.xml
deleted file mode 100644
index ca1450b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/moped.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35V7zM4,14v-1c0,-1.1 0.9,-2 2,-2h2v3H4zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/more.xml b/compose/material/material/icons/generator/raw-icons/outlined/more.xml
deleted file mode 100644
index 40329dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/more.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0,12l5.41,8.11c0.36,0.53 0.97,0.89 1.66,0.89L22,21c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM22,19L7.07,19L2.4,12l4.66,-7L22,5v14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/more_horiz.xml b/compose/material/material/icons/generator/raw-icons/outlined/more_horiz.xml
deleted file mode 100644
index 6439bcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/more_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/more_time.xml b/compose/material/material/icons/generator/raw-icons/outlined/more_time.xml
deleted file mode 100644
index 1cfb3c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/more_time.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8l0,6l4.7,2.9l0.8,-1.2l-4,-2.4l0,-5.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,12c0.05,0.33 0.08,0.66 0.08,1c0,3.9 -3.1,7 -7,7s-7,-3.1 -7,-7c0,-3.9 3.1,-7 7,-7c0.7,0 1.37,0.1 2,0.29V4.23C12.36,4.08 11.69,4 11,4c-5,0 -9,4 -9,9s4,9 9,9s9,-4 9,-9c0,-0.34 -0.02,-0.67 -0.06,-1H17.92z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/more_vert.xml b/compose/material/material/icons/generator/raw-icons/outlined/more_vert.xml
deleted file mode 100644
index 34b93ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/more_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mosque.xml b/compose/material/material/icons/generator/raw-icons/outlined/mosque.xml
deleted file mode 100644
index c22296d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mosque.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,7c0,-1.1 -2,-3 -2,-3s-2,1.9 -2,3c0,0.74 0.4,1.38 1,1.72V13h-2v-2c0,-0.95 -0.66,-1.74 -1.55,-1.94C17.79,8.48 18,7.81 18,7.09c0,-1.31 -0.65,-2.53 -1.74,-3.25L12,1L7.74,3.84C6.65,4.56 6,5.78 6,7.09c0,0.72 0.21,1.39 0.55,1.96C5.66,9.26 5,10.05 5,11v2H3V8.72C3.6,8.38 4,7.74 4,7c0,-1.1 -2,-3 -2,-3S0,5.9 0,7c0,0.74 0.4,1.38 1,1.72V21h10v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h10V8.72C23.6,8.38 24,7.74 24,7zM8.85,5.5L12,3.4l3.15,2.1C15.68,5.86 16,6.45 16,7.09C16,8.14 15.14,9 14.09,9H9.91C8.86,9 8,8.14 8,7.09C8,6.45 8.32,5.86 8.85,5.5zM21,19h-6v-2c0,-1.65 -1.35,-3 -3,-3c-1.65,0 -3,1.35 -3,3v2H3v-4h4v-4h10v4h4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_auto.xml b/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_auto.xml
deleted file mode 100644
index 931e520..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99zM11.29,7.5h1.43l3.01,8h-1.39l-0.72,-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_off.xml
deleted file mode 100644
index f1620d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.42L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l10.93,10.94C14.86,19.59 13.48,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8c0,1.48 -0.41,2.86 -1.12,4.05l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66l1.45,1.45C9.14,4.41 10.52,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_on.xml
deleted file mode 100644
index 0e5a218c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_pause.xml b/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_pause.xml
deleted file mode 100644
index 822d4a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM11,15H9V9h2V15zM15,15h-2V9h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_paused.xml b/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_paused.xml
deleted file mode 100644
index bf0fc9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/motion_photos_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-1.19 0.22,-2.32 0.6,-3.38L4.48,9.3C4.17,10.14 4,11.05 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.95,0 -1.85,0.17 -2.69,0.48L8.63,2.59C9.69,2.22 10.82,2 12,2C17.52,2 22,6.48 22,12zM5.5,4C4.67,4 4,4.67 4,5.5S4.67,7 5.5,7S7,6.33 7,5.5S6.33,4 5.5,4zM11,16V8H9v8H11zM15,16V8h-2v8H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/motorcycle.xml b/compose/material/material/icons/generator/raw-icons/outlined/motorcycle.xml
deleted file mode 100644
index ba520b18..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/motorcycle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.72,11l-2,2h-0.77l-0.25,-0.69c-0.18,-0.48 -0.42,-0.92 -0.72,-1.31h3.74m2.69,-6H11v2h3.59l2,2H5c-2.8,0 -5,2.2 -5,5s2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h1.65l2.77,-2.77c-0.21,0.54 -0.32,1.14 -0.32,1.77 0,2.8 2.2,5 5,5s5,-2.2 5,-5c0,-2.65 -1.97,-4.77 -4.56,-4.97L15.41,5zM19,17c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM5,17c-1.63,0 -3,-1.37 -3,-3s1.37,-3 3,-3c1.28,0 2.4,0.85 2.82,2H5v2h2.82C7.4,16.15 6.28,17 5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mouse.xml b/compose/material/material/icons/generator/raw-icons/outlined/mouse.xml
deleted file mode 100644
index 34311dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9c-0.04,-4.39 -3.6,-7.93 -8,-7.93S4.04,4.61 4,9v6c0,4.42 3.58,8 8,8s8,-3.58 8,-8L20,9zM18,9h-5L13,3.16c2.81,0.47 4.96,2.9 5,5.84zM11,3.16L11,9L6,9c0.04,-2.94 2.19,-5.37 5,-5.84zM18,15c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6v-4h12v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/move_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/move_down.xml
deleted file mode 100644
index 3bbdcd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/move_down.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11c0,2.45 1.76,4.47 4.08,4.91l-1.49,-1.49L7,13l4,4.01L7,21l-1.41,-1.41l1.58,-1.58l0,-0.06C3.7,17.54 1,14.58 1,11c0,-3.87 3.13,-7 7,-7h3v2H8C5.24,6 3,8.24 3,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V4h-9v7H22zM20,9h-5V6h5V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/move_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/outlined/move_to_inbox.xml
deleted file mode 100644
index c90a593..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/move_to_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h-2.55L13.45,6h-2.9v3L8,9l4,4zM19,3L4.99,3C3.88,3 3,3.9 3,5v14c0,1.1 0.88,2 1.99,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-3h3.56c0.69,1.19 1.97,2 3.45,2s2.75,-0.81 3.45,-2L19,16v3zM19,14h-4.99c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2L5,14l-0.01,-9L19,5v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/move_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/move_up.xml
deleted file mode 100644
index c546547..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/move_up.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,-2.45 1.76,-4.47 4.08,-4.91L5.59,9.59L7,11l4,-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46 1,9.42 1,13c0,3.87 3.13,7 7,7h3v-2H8C5.24,18 3,15.76 3,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v7h9v-7H13zM20,18h-5v-3h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/movie.xml b/compose/material/material/icons/generator/raw-icons/outlined/movie.xml
deleted file mode 100644
index 61926f15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/movie.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6.47L5.76,10H20v8H4V6.47M22,4h-4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4H8l2,4H7L5,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/movie_creation.xml b/compose/material/material/icons/generator/raw-icons/outlined/movie_creation.xml
deleted file mode 100644
index 34fb536..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/movie_creation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.76,10H20v8H4V6.47M22,4h-4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4H8l2,4H7L5,4H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/movie_filter.xml b/compose/material/material/icons/generator/raw-icons/outlined/movie_filter.xml
deleted file mode 100644
index 49513bc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/movie_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,11l-0.94,2.06L7,14l2.06,0.94L10,17l0.94,-2.06L13,14l-2.06,-0.94zM18.01,4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4h-2l2,4h-3l-2,-4h-1c-1.1,0 -1.99,0.9 -1.99,2l-0.01,12c0,1.1 0.9,2 2,2h16c1.1,0 1.99,-0.9 1.99,-2L22,4h-3.99zM20.01,18h-16L4.01,6.47L5.77,10L16,10l-0.63,1.37L14,12l1.37,0.63L16,14l0.63,-1.37L18,12l-1.37,-0.63L16,10h4.01v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/moving.xml b/compose/material/material/icons/generator/raw-icons/outlined/moving.xml
deleted file mode 100644
index 565c04b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/moving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9.42V12h2V6h-6v2h2.58l-4.46,4.46c-0.39,0.39 -1.02,0.39 -1.41,0l-1.17,-1.17c-1.17,-1.17 -3.07,-1.17 -4.24,0L2,16.59L3.41,18l5.29,-5.29c0.39,-0.39 1.02,-0.39 1.41,0l1.17,1.17c1.17,1.17 3.07,1.17 4.24,0L20,9.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/mp.xml b/compose/material/material/icons/generator/raw-icons/outlined/mp.xml
deleted file mode 100644
index 0e74d13..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9h-3.5v6H15v-1.5h2c0.55,0 1,-0.45 1,-1V10C18,9.45 17.55,9 17,9zM16.5,12H15v-1.5h1.5V12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9H7c-0.55,0 -1,0.45 -1,1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5C12.5,9.45 12.05,9 11.5,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5V19c0,1.1 0.9,2 2,2H19c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM5,19L5,5h14l0,14L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/multiline_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/multiline_chart.xml
deleted file mode 100644
index 96a6a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/multiline_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.92l-1.41,-1.41 -2.85,3.21C15.68,6.4 12.83,5 9.61,5 6.72,5 4.07,6.16 2,8l1.42,1.42C5.12,7.93 7.27,7 9.61,7c2.74,0 5.09,1.26 6.77,3.24l-2.88,3.24 -4,-4L2,16.99l1.5,1.5 6,-6.01 4,4 4.05,-4.55c0.75,1.35 1.25,2.9 1.44,4.55H21c-0.22,-2.3 -0.95,-4.39 -2.04,-6.14L22,6.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/multiple_stop.xml b/compose/material/material/icons/generator/raw-icons/outlined/multiple_stop.xml
deleted file mode 100644
index c43c84f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/multiple_stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4l4,4l-4,4V9h-4V7h4V4zM10,7C9.45,7 9,7.45 9,8s0.45,1 1,1s1,-0.45 1,-1S10.55,7 10,7zM6,7C5.45,7 5,7.45 5,8s0.45,1 1,1s1,-0.45 1,-1S6.55,7 6,7zM7,17h4v-2H7v-3l-4,4l4,4V17zM14,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C13,16.55 13.45,17 14,17zM18,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C17,16.55 17.45,17 18,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/museum.xml b/compose/material/material/icons/generator/raw-icons/outlined/museum.xml
deleted file mode 100644
index 169df5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/museum.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22zM18,20H6V9h12V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14l2,3l2,-3l0,4l2,0l0,-7l-2,0l-2,3l-2,-3l-2,0l0,7l2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/music_note.xml b/compose/material/material/icons/generator/raw-icons/outlined/music_note.xml
deleted file mode 100644
index f33eaf8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/music_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3l0.01,10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55C7.79,13 6,14.79 6,17s1.79,4 4.01,4S14,19.21 14,17L14,7h4L18,3h-6zM10.01,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/music_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/music_off.xml
deleted file mode 100644
index e97d2fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/music_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h4L18,3h-6v4.61l2,2zM12,10.44L4.41,2.86 3,4.27l9,9v0.28c-0.94,-0.54 -2.1,-0.75 -3.33,-0.32 -1.34,0.48 -2.37,1.67 -2.61,3.07 -0.46,2.74 1.86,5.08 4.59,4.65 1.96,-0.31 3.35,-2.11 3.35,-4.1v-1.58L19.73,21l1.41,-1.41L12,10.44zM10,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/music_video.xml b/compose/material/material/icons/generator/raw-icons/outlined/music_video.xml
deleted file mode 100644
index 1fe794f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/music_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM8,15c0,-1.66 1.34,-3 3,-3 0.35,0 0.69,0.07 1,0.18L12,6h5v2h-3v7.03c-0.02,1.64 -1.35,2.97 -3,2.97 -1.66,0 -3,-1.34 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/my_location.xml b/compose/material/material/icons/generator/raw-icons/outlined/my_location.xml
deleted file mode 100644
index b050330..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/my_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nat.xml b/compose/material/material/icons/generator/raw-icons/outlined/nat.xml
deleted file mode 100644
index bc3e7ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nat.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.82,13H11v-2H6.82C6.4,9.84 5.3,9 4,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C5.3,15 6.4,14.16 6.82,13zM4,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C5,12.55 4.55,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-4,-3v2h-4.05C14.45,5.95 10.19,2 5,2v2c4.42,0 8,3.58 8,8s-3.58,8 -8,8v2c5.19,0 9.45,-3.95 9.95,-9H19v2L23,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nature.xml b/compose/material/material/icons/generator/raw-icons/outlined/nature.xml
deleted file mode 100644
index 14f10107..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nature.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16.12h-0.03c3.49,-0.4 6.2,-3.36 6.2,-6.95 0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7c0,3.47 2.52,6.34 5.83,6.89V20H5v2h14v-2h-6v-3.88zM7.17,9.17c0,-2.76 2.24,-5 5,-5s5,2.24 5,5 -2.24,5 -5,5 -5,-2.24 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nature_people.xml b/compose/material/material/icons/generator/raw-icons/outlined/nature_people.xml
deleted file mode 100644
index 84c05eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nature_people.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.17,9.17c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7c0,3.47 2.52,6.34 5.83,6.89L14,20L6,20v-3h1v-4c0,-0.55 -0.45,-1 -1,-1L3,12c-0.55,0 -1,0.45 -1,1v4h1v5h16v-2h-3v-3.88c3.47,-0.41 6.17,-3.36 6.17,-6.95zM15.17,14.17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/navigate_before.xml b/compose/material/material/icons/generator/raw-icons/outlined/navigate_before.xml
deleted file mode 100644
index a34f31d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/navigate_before.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.61,7.41L14.2,6l-6,6 6,6 1.41,-1.41L11.03,12l4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/navigate_next.xml b/compose/material/material/icons/generator/raw-icons/outlined/navigate_next.xml
deleted file mode 100644
index 0f1cb72..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/navigate_next.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.02,6L8.61,7.41 13.19,12l-4.58,4.59L10.02,18l6,-6 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/navigation.xml b/compose/material/material/icons/generator/raw-icons/outlined/navigation.xml
deleted file mode 100644
index 3e3c3fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/navigation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.27l4.28,10.43 -3.47,-1.53 -0.81,-0.36 -0.81,0.36 -3.47,1.53L12,7.27M12,2L4.5,20.29l0.71,0.71L12,18l6.79,3 0.71,-0.71L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/near_me.xml b/compose/material/material/icons/generator/raw-icons/outlined/near_me.xml
deleted file mode 100644
index 1376e38..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/near_me.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.27,6.73l-4.24,10.13 -1.32,-3.42 -0.32,-0.83 -0.82,-0.32 -3.43,-1.33 10.13,-4.23M21,3L3,10.53v0.98l6.84,2.65L12.48,21h0.98L21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/near_me_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/near_me_disabled.xml
deleted file mode 100644
index 8403ec8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/near_me_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.34L21,3l-3.34,9l-1.56,-1.56l1.5,-4.05l-4.05,1.5L12,6.34zM21.19,21.19l-5.07,-5.07L14.31,21H12.9l-2.83,-7.07L3,11.1V9.69l4.88,-1.81L2.81,2.81l1.41,-1.41l18.38,18.38L21.19,21.19zM14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nearby_error.xml b/compose/material/material/icons/generator/raw-icons/outlined/nearby_error.xml
deleted file mode 100644
index e36a8db..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nearby_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.57l4.42,4.42L12,16.41l-4.42,-4.42L12,7.57zM12,19.19l-7.2,-7.2l7.2,-7.2l6,6V7.16l-4.58,-4.58c-0.78,-0.78 -2.05,-0.78 -2.83,0l-8.01,8c-0.78,0.78 -0.78,2.05 0,2.83l8.01,8c0.78,0.78 2.05,0.78 2.83,0L18,16.82v-3.63L12,19.19zM20,20h2v2h-2V20zM22,10h-2v8h2V10"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nearby_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/nearby_off.xml
deleted file mode 100644
index 6e800e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nearby_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,13.42L18.83,16l-1.81,-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58,-2.58c0.78,-0.78 2.05,-0.78 2.83,0l8,8C22.2,11.37 22.2,12.63 21.41,13.42zM21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78 -2.05,0.78 -2.83,0l-8,-8c-0.78,-0.78 -0.78,-2.05 0,-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19zM14.19,17.02l-1.39,-1.39l-0.8,0.8L7.58,12l0.8,-0.8l-1.4,-1.39L4.8,12l7.2,7.2L14.19,17.02zM16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nest_cam_wired_stand.xml b/compose/material/material/icons/generator/raw-icons/outlined/nest_cam_wired_stand.xml
deleted file mode 100644
index ebe76c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nest_cam_wired_stand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1c-0.15,0 0.11,-0.02 -4.28,0.42C8.47,1.75 6,4.48 6,7.75s2.47,6 5.72,6.33l1.9,0.19l-0.56,0.85C12.71,15.04 12.36,15 12,15c-2.76,0 -5,2.24 -5,5v2c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-2c0,-1.67 -0.83,-3.15 -2.09,-4.06l0.97,-1.45c0.04,0 0.09,0.01 0.13,0.01c1.09,0 2,-0.89 2,-2V3C18,1.89 17.09,1 16,1zM15,21H9v-1c0,-1.65 1.35,-3 3,-3c1.65,0 3,1.35 3,3V21zM8,7.75c0,-2.25 1.69,-4.11 3.92,-4.34L16,3h0l0.03,9.5l-4.11,-0.42C9.69,11.86 8,10 8,7.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_cell.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_cell.xml
deleted file mode 100644
index 3491dda..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22zM20,20h-3V9.83l3,-3V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_check.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_check.xml
deleted file mode 100644
index af7300d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,5c-0.17,0 -0.32,0.09 -0.41,0.23l-0.07,0.15 -5.18,11.65c-0.16,0.29 -0.26,0.61 -0.26,0.96 0,1.11 0.9,2.01 2.01,2.01 0.96,0 1.77,-0.68 1.96,-1.59l0.01,-0.03L16.4,5.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM1,9l2,2c2.88,-2.88 6.79,-4.08 10.53,-3.62l1.19,-2.68C9.89,3.84 4.74,5.27 1,9zM21,11l2,-2c-1.64,-1.64 -3.55,-2.82 -5.59,-3.57l-0.53,2.82c1.5,0.62 2.9,1.53 4.12,2.75zM17,15l2,-2c-0.8,-0.8 -1.7,-1.42 -2.66,-1.89l-0.55,2.92c0.42,0.27 0.83,0.59 1.21,0.97zM5,13l2,2c1.13,-1.13 2.56,-1.79 4.03,-2l1.28,-2.88c-2.63,-0.08 -5.3,0.87 -7.31,2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_locked.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_locked.xml
deleted file mode 100644
index 1285e37..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_locked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-0.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S17,14.12 17,15.5v0.5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM21,16h-3v-0.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5v0.5zM18,5.83v5.43c0.47,-0.16 0.97,-0.26 1.5,-0.26 0.17,0 0.33,0.03 0.5,0.05L20,1L1,20h13v-2L5.83,18L18,5.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_ping.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_ping.xml
deleted file mode 100644
index a884b95..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_ping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15,-5.15C18.91,10.95 19.2,11 19.5,11c1.38,0 2.5,-1.12 2.5,-2.5S20.88,6 19.5,6S17,7.12 17,8.5c0,0.35 0.07,0.67 0.2,0.97L12,14.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_wifi.xml
deleted file mode 100644
index d842dcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM12,8c-2.86,0 -5.5,0.94 -7.65,2.51L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-1.43,1.43C17.5,8.94 14.86,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_1_bar.xml
deleted file mode 100644
index 8e1c804..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM15.32,14.84C14.34,14.3 13.2,14 12,14c-1.2,0 -2.34,0.3 -3.32,0.84L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L15.32,14.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_2_bar.xml
deleted file mode 100644
index 5c8d026..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM16.78,13.38C15.4,12.5 13.76,12 12,12c-1.76,0 -3.4,0.5 -4.78,1.38l-4.3,-4.3C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L16.78,13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_3_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_3_bar.xml
deleted file mode 100644
index cf4868a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/network_wifi_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-2.85,2.86C16.46,10.71 14.31,10 12,10c-2.31,0 -4.46,0.71 -6.23,1.93L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/new_label.xml b/compose/material/material/icons/generator/raw-icons/outlined/new_label.xml
deleted file mode 100644
index 0d44eec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/new_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12l-4.37,6.16C16.26,18.68 15.65,19 15,19h-3l0,-2h3l3.55,-5L15,7H5v3H3V7c0,-1.1 0.9,-2 2,-2h10c0.65,0 1.26,0.31 1.63,0.84L21,12zM10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/new_releases.xml b/compose/material/material/icons/generator/raw-icons/outlined/new_releases.xml
deleted file mode 100644
index 4b59d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/new_releases.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-2.44,-2.78 0.34,-3.68 -3.61,-0.82 -1.89,-3.18L12,3 8.6,1.54 6.71,4.72l-3.61,0.81 0.34,3.68L1,12l2.44,2.78 -0.34,3.69 3.61,0.82 1.89,3.18L12,21l3.4,1.46 1.89,-3.18 3.61,-0.82 -0.34,-3.68L23,12zM18.49,14.11l0.26,2.79 -2.74,0.62 -1.43,2.41L12,18.82l-2.58,1.11 -1.43,-2.41 -2.74,-0.62 0.26,-2.8L3.66,12l1.85,-2.12 -0.26,-2.78 2.74,-0.61 1.43,-2.41L12,5.18l2.58,-1.11 1.43,2.41 2.74,0.62 -0.26,2.79L20.34,12l-1.85,2.11zM11,15h2v2h-2zM11,7h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/newspaper.xml b/compose/material/material/icons/generator/raw-icons/outlined/newspaper.xml
deleted file mode 100644
index ecca0e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/newspaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16c0,1.1 0.9,2 2,2l16,0c1.1,0 2,-0.9 2,-2V3zM11,19H4v-6h7V19zM20,19h-7v-2h7V19zM20,15h-7v-2h7V15zM20,11H4V8h16V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/next_plan.xml b/compose/material/material/icons/generator/raw-icons/outlined/next_plan.xml
deleted file mode 100644
index a3ef483..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/next_plan.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.97,11.03C14.87,9.79 13.28,9 11.5,9c-2.82,0 -5.18,1.95 -5.82,4.56l0.96,0.32C7.15,11.66 9.13,10 11.5,10c1.51,0 2.85,0.68 3.76,1.74L13,14h5V9L15.97,11.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/next_week.xml b/compose/material/material/icons/generator/raw-icons/outlined/next_week.xml
deleted file mode 100644
index 7677ac3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/next_week.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18.5l4,-4 -4,-4 -1,1 3,3 -3,3zM20,7h-4L16,5c0,-0.55 -0.22,-1.05 -0.59,-1.41C15.05,3.22 14.55,3 14,3h-4c-1.1,0 -2,0.9 -2,2v2L4,7c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9c0,-1.1 -0.9,-2 -2,-2zM10,5h4v2h-4L10,5zM20,20L4,20L4,9h16v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nfc.xml b/compose/material/material/icons/generator/raw-icons/outlined/nfc.xml
deleted file mode 100644
index 63435db..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nfc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,4h16v16zM18,6h-5c-1.1,0 -2,0.9 -2,2v2.28c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72L13,8h3v8L8,16L8,8h2L10,6L6,6v12h12L18,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/night_shelter.xml b/compose/material/material/icons/generator/raw-icons/outlined/night_shelter.xml
deleted file mode 100644
index 50d2b82..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/night_shelter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5l6,4.5v9H6v-9L12,5.5M12,3L4,9v12h16V9L12,3L12,3zM15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4C17,12.9 16.1,12 15,12zM9.75,12.5c-0.69,0 -1.25,0.56 -1.25,1.25C8.5,14.44 9.06,15 9.75,15S11,14.44 11,13.75C11,13.06 10.44,12.5 9.75,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nightlife.xml b/compose/material/material/icons/generator/raw-icons/outlined/nightlife.xml
deleted file mode 100644
index 0b2ba69..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nightlife.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5zM10.1,9l1.4,-2H4.49l1.4,2H10.1zM17,5h5v3h-3v9l0,0c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3c0.35,0 0.69,0.06 1,0.17V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nightlight.xml b/compose/material/material/icons/generator/raw-icons/outlined/nightlight.xml
deleted file mode 100644
index 6ff15a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nightlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4c0.34,0 0.68,0.02 1.01,0.07C13.1,6.23 12,9.05 12,12s1.1,5.77 3.01,7.93C14.68,19.98 14.34,20 14,20c-4.41,0 -8,-3.59 -8,-8S9.59,4 14,4M14,2C8.48,2 4,6.48 4,12s4.48,10 10,10c1.82,0 3.53,-0.5 5,-1.35c-2.99,-1.73 -5,-4.95 -5,-8.65s2.01,-6.92 5,-8.65C17.53,2.5 15.82,2 14,2L14,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nightlight_round.xml b/compose/material/material/icons/generator/raw-icons/outlined/nightlight_round.xml
deleted file mode 100644
index bf86043..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nightlight_round.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,22c1.05,0 2.05,-0.16 3,-0.46c-4.06,-1.27 -7,-5.06 -7,-9.54s2.94,-8.27 7,-9.54C17.55,2.16 16.55,2 15.5,2c-5.52,0 -10,4.48 -10,10S9.98,22 15.5,22L15.5,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nights_stay.xml b/compose/material/material/icons/generator/raw-icons/outlined/nights_stay.xml
deleted file mode 100644
index 95650be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nights_stay.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.78,17.51c-2.47,0 -6.57,-1.33 -8.68,-5.43C8.77,7.57 10.6,3.6 11.63,2.01C6.27,2.2 1.98,6.59 1.98,12c0,0.14 0.02,0.28 0.02,0.42C2.61,12.16 3.28,12 3.98,12c0,0 0,0 0,0c0,-3.09 1.73,-5.77 4.3,-7.1C7.78,7.09 7.74,9.94 9.32,13c1.57,3.04 4.18,4.95 6.8,5.86c-1.23,0.74 -2.65,1.15 -4.13,1.15c-0.5,0 -1,-0.05 -1.48,-0.14c-0.37,0.7 -0.94,1.27 -1.64,1.64c0.98,0.32 2.03,0.5 3.11,0.5c3.5,0 6.58,-1.8 8.37,-4.52C20.18,17.5 19.98,17.51 19.78,17.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16l-0.18,0C6.4,14.84 5.3,14 4,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.62,0 2.49,0 3,0c1.1,0 2,-0.9 2,-2C9,16.9 8.1,16 7,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_accounts.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_accounts.xml
deleted file mode 100644
index 60282ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_accounts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.18,10.94c0.2,-0.44 0.32,-0.92 0.32,-1.44C15.5,7.57 13.93,6 12,6c-0.52,0 -1,0.12 -1.44,0.32L15.18,10.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-1.85 0.63,-3.55 1.69,-4.9l2.86,2.86c0.21,1.56 1.43,2.79 2.99,2.99l2.2,2.2C13.17,15.05 12.59,15 12,15c-2.32,0 -4.45,0.8 -6.14,2.12C4.7,15.73 4,13.95 4,12zM12,20c-1.74,0 -3.34,-0.56 -4.65,-1.5C8.66,17.56 10.26,17 12,17s3.34,0.56 4.65,1.5C15.34,19.44 13.74,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.54 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_adult_content.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_adult_content.xml
deleted file mode 100644
index 27a37a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_adult_content.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-1.85 0.63,-3.54 1.69,-4.9L7.59,9h2.83L7.1,5.69C8.46,4.63 10.15,4 12,4c4.41,0 8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.9,-1.9h-2.83l3.31,3.31C15.54,19.37 13.85,20 12,20C7.59,20 4,16.41 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,14l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_backpack.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_backpack.xml
deleted file mode 100644
index 1b4a4be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.98,4.15c0.01,0 0.01,-0.01 0.02,-0.01V2h3v2h4V2h3v2.14c1.72,0.45 3,2 3,3.86v9.17l-2,-2V8c0,-1.1 -0.9,-2 -2,-2H8.83L6.98,4.15zM14.83,12l1.67,1.67V12H14.83zM19.78,22.61l-0.85,-0.85C18.65,21.91 18.34,22 18,22H6c-1.1,0 -2,-0.9 -2,-2V8c0,-0.36 0.06,-0.69 0.15,-1.02L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM17.17,20l-6,-6H7.5v-2h1.67L6,8.83V20H17.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_cell.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_cell.xml
deleted file mode 100644
index ef1b565..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6v8.17l2,2V3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1C6.15,1 5.42,1.55 5.13,2.3L8.83,6H17zM7,3h10v1H7V3zM21.19,21.19L19,19l-2,-2L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1 0.9,2 2,2h10c0.85,0 1.58,-0.55 1.87,-1.3l0.91,0.91L21.19,21.19zM17,21H7v-1h10V21zM7,18V9.83L15.17,18H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_crash.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_crash.xml
deleted file mode 100644
index ff8fd2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,9.01C18.72,8.42 18.16,8 17.5,8h-11C5.84,8 5.29,8.42 5.08,9.01L3,15v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,9.01zM6.85,10h10.29l1.04,3H5.81L6.85,10zM19,20H5v-5h14V20zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM12,6.36L9.17,3.54l1.41,-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_drinks.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_drinks.xml
deleted file mode 100644
index 06e09fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_drinks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19zM13,19v-3.17L16.17,19H13zM7.83,5l-2,-2H21v2l-6.2,6.97l-1.42,-1.42L14.77,9h-2.94l-2,-2h6.74l1.78,-2H7.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_encryption.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_encryption.xml
deleted file mode 100644
index e2f3f3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66l2,2H18v5.56l2,2V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5 -2.32,0 -4.26,1.59 -4.82,3.74L8.9,6.46V6zM4.41,4.81L3,6.22l2.04,2.04C4.42,8.6 4,9.25 4,10v10c0,1.1 0.9,2 2,2h12.78l1,1 1.41,-1.41L4.41,4.81zM6,20V10h0.78l10,10H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_encryption_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_encryption_gmailerrorred.xml
deleted file mode 100644
index e2f3f3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_encryption_gmailerrorred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66l2,2H18v5.56l2,2V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5 -2.32,0 -4.26,1.59 -4.82,3.74L8.9,6.46V6zM4.41,4.81L3,6.22l2.04,2.04C4.42,8.6 4,9.25 4,10v10c0,1.1 0.9,2 2,2h12.78l1,1 1.41,-1.41L4.41,4.81zM6,20V10h0.78l10,10H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_flash.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_flash.xml
deleted file mode 100644
index f766ada..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_flash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6zM16,11.4l0,1.77l2,2V11c0,-0.88 -0.72,-1.6 -1.6,-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16zM2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4 2,10.12 2,11v9.4C2,21.28 2.72,22 3.6,22h12.8c0.75,0 1.38,-0.52 1.55,-1.22l2.54,2.54l1.41,-1.41L2.1,2.1zM11.5,15.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5S9.17,14 10,14S11.5,14.67 11.5,15.5zM15.96,20H4v-8.6h2.14h0.88l0.59,-0.65l0.15,-0.16l1.5,1.5C7.68,12.43 6.5,13.82 6.5,15.5c0,1.93 1.57,3.5 3.5,3.5c1.68,0 3.07,-1.18 3.42,-2.76l2.55,2.55L15.96,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_food.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_food.xml
deleted file mode 100644
index 4412873..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_food.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h15.01v0.98c0,0.56 -0.45,1.01 -1.01,1.01H2.01C1.45,22.99 1,22.54 1,21.98V21zM20.49,23.31L16,18.83V19H1v-2h13.17l-2,-2H1c0,-3.24 2.46,-5.17 5.38,-5.79l-5.7,-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31zM10.17,13l-2,-2c-1.42,0.06 -3.52,0.56 -4.55,2H10.17zM23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_luggage.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_luggage.xml
deleted file mode 100644
index e01483b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13.17l-1.5,-1.5V9H16V13.17zM19.78,22.61l-1.85,-1.85C17.65,20.91 17.34,21 17,21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1H9c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1c-1.1,0 -2,-0.9 -2,-2V8c0,-0.05 0.02,-0.1 0.02,-0.15L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.17,19l-3.42,-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1,-1V19H16.17zM12.75,9h-0.92l0.92,0.92V9zM19,8v8.17l-2,-2V8h-6.17L9.84,7.01L9,6.17V6V3c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v3h2C18.1,6 19,6.9 19,8zM10.5,6h3V3.5h-3V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_meals.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_meals.xml
deleted file mode 100644
index 8b15d15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_meals.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14V6c0,-1.76 2.24,-4 5,-4v16.17l-2,-2V14H16zM20.49,23.31L10.02,12.85C9.69,12.94 9.36,13 9,13v9H7v-9c-2.21,0 -4,-1.79 -4,-4V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM6.17,9L5,7.83V9H6.17zM9,2H7v2.17l2,2V2zM13,9V2h-2v6.17l1.85,1.85C12.94,9.69 13,9.36 13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_meeting_room.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_meeting_room.xml
deleted file mode 100644
index 670adf4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5v3.88l2,2V6h3v7.88l2,2V4h-5V3H6.12l2,2zM2.41,2.13L1,3.54l4,4V19H3v2h11v-4.46L20.46,23l1.41,-1.41L2.41,2.13zM12,19H7V9.54l5,5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_photography.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_photography.xml
deleted file mode 100644
index 076880c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_photography.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0 2,0.9 2,2v12c0,0.05 -0.01,0.1 -0.02,0.16L20,17.17V7h-4.05l-1.83,-2H9.88L8.9,6.07zM20.49,23.31L18.17,21H4c-1.1,0 -2,-0.9 -2,-2V7c0,-0.59 0.27,-1.12 0.68,-1.49l-2,-2L2.1,2.1l19.8,19.8L20.49,23.31zM9.19,12.02C9.08,12.33 9,12.65 9,13c0,1.66 1.34,3 3,3c0.35,0 0.67,-0.08 0.98,-0.19L9.19,12.02zM16.17,19l-1.68,-1.68C13.76,17.75 12.91,18 12,18c-2.76,0 -5,-2.24 -5,-5c0,-0.91 0.25,-1.76 0.68,-2.49L4.17,7H4v12H16.17zM14.81,11.98l2.07,2.07C16.96,13.71 17,13.36 17,13c0,-2.76 -2.24,-5 -5,-5c-0.36,0 -0.71,0.04 -1.06,0.12l2.07,2.07C13.85,10.49 14.51,11.15 14.81,11.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_sim.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_sim.xml
deleted file mode 100644
index c60d1f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.26,21.21L3.79,3.74 2.38,5.15l2.74,2.74 -0.12,0.12L5,19c0,1.1 0.9,2 2,2h10c0.35,0 0.68,-0.1 0.97,-0.26l1.88,1.88 1.41,-1.41zM7,19L7,9.77L16.23,19L7,19zM10.84,5L17,5v9.11l2,2L19,5c0,-1.1 -0.9,-2 -2,-2h-6.99L7.95,5.06l1.41,1.41L10.84,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_stroller.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_stroller.xml
deleted file mode 100644
index 722cb85..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_stroller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S8,18.9 8,20zM15,8.66v3.51l2,2v-7.9C17.58,5.59 17.97,5 18.65,5C19.42,5 20,5.66 20,6.48V7h2V6.48C22,4.56 20.52,3 18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66zM19.78,22.61l-1.91,-1.91C17.58,21.46 16.86,22 16,22c-1.1,0 -2,-0.9 -2,-2c0,-0.86 0.54,-1.58 1.3,-1.87L14.17,17H7.43c-0.85,0 -1.31,-1 -0.76,-1.65l2.69,-3.16L1.39,4.22l1.41,-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61zM12.17,15l-1.39,-1.39L9.6,15H12.17zM10,5c0.29,0 0.58,0.02 0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4 11.56,3 10,3C8.77,3 7.6,3.25 6.53,3.7L8.1,5.27C8.71,5.1 9.35,5 10,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/no_transfer.xml b/compose/material/material/icons/generator/raw-icons/outlined/no_transfer.xml
deleted file mode 100644
index e570f8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/no_transfer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16S7,15.33 7,14.5S7.67,13 8.5,13zM19.78,22.61l-1.64,-1.64C18.09,20.98 18.05,21 18,21h-1c-0.55,0 -1,-0.45 -1,-1v-1H8v1c0,0.55 -0.45,1 -1,1H6c-0.55,0 -1,-0.45 -1,-1v-1.78C4.39,17.67 4,16.88 4,16V6.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM6,8.83V10h1.17L6,8.83zM14.17,17l-5,-5H6v4c0,0.37 0.21,0.62 0.34,0.73L6.63,17H14.17zM12,4c3.69,0 5.11,0.46 5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67 20,16.35 20,16V6c0,-3.5 -3.58,-4 -8,-4C9.48,2 7.24,2.16 5.78,2.95l1.53,1.53C8.17,4.2 9.6,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/noise_aware.xml b/compose/material/material/icons/generator/raw-icons/outlined/noise_aware.xml
deleted file mode 100644
index cc4e0b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/noise_aware.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02c-0.25,-2.25 -2.16,-4 -4.47,-4C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18C14.65,18 16,16.65 16,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,6.58l1.58,1.26c0.35,-0.57 0.77,-1.1 1.24,-1.57L4.85,5.02C4.38,5.49 3.97,6.02 3.6,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.46,4.42L8.59,2.61c-0.63,0.23 -1.24,0.52 -1.8,0.87l0.87,1.81C8.22,4.93 8.82,4.64 9.46,4.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.49,9.26L2.53,8.81c-0.21,0.63 -0.36,1.28 -0.44,1.95l1.96,0.45C4.11,10.53 4.27,9.88 4.49,9.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,6.58c-0.36,-0.56 -0.78,-1.09 -1.25,-1.56l-1.58,1.26c0.48,0.47 0.89,0.99 1.24,1.57L20.4,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.04,12.79l-1.96,0.45c0.08,0.67 0.23,1.33 0.44,1.95l1.97,-0.45C4.27,14.12 4.11,13.47 4.04,12.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.21,3.48c-0.57,-0.35 -1.17,-0.64 -1.8,-0.87l-0.87,1.81c0.64,0.22 1.24,0.51 1.8,0.87L17.21,3.48z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4.07V2.05C12.67,2.02 12.34,2 12,2s-0.67,0.02 -1,0.05v2.02C11.33,4.03 11.66,4 12,4S12.67,4.03 13,4.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19.93v2.02c0.33,0.03 0.66,0.05 1,0.05s0.67,-0.02 1,-0.05v-2.02C12.67,19.97 12.34,20 12,20S11.33,19.97 11,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.51,14.74l1.97,0.45c0.21,-0.63 0.36,-1.28 0.44,-1.95l-1.96,-0.45C19.89,13.47 19.73,14.12 19.51,14.74z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.96,11.21l1.96,-0.45c-0.08,-0.67 -0.23,-1.33 -0.44,-1.95l-1.97,0.45C19.73,9.88 19.89,10.53 19.96,11.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,17.73l1.58,1.26c0.47,-0.48 0.88,-1 1.25,-1.56l-1.58,-1.26C18.47,16.73 18.05,17.26 17.58,17.73z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.79,20.52c0.57,0.35 1.17,0.64 1.8,0.87l0.87,-1.81c-0.64,-0.22 -1.24,-0.51 -1.8,-0.87L6.79,20.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.54,19.58l0.87,1.81c0.63,-0.23 1.24,-0.52 1.8,-0.87l-0.87,-1.81C15.78,19.07 15.18,19.36 14.54,19.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,17.42c0.36,0.56 0.78,1.09 1.25,1.56l1.58,-1.26c-0.48,-0.47 -0.89,-0.99 -1.24,-1.57L3.6,17.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/noise_control_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/noise_control_off.xml
deleted file mode 100644
index 4d023ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/noise_control_off.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.44,0 2.79,0.38 3.95,1.05l1.45,-1.45C15.85,2.59 13.99,2 12,2S8.15,2.59 6.59,3.59l1.45,1.45C9.21,4.38 10.56,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,1.44 -0.38,2.79 -1.05,3.95l1.45,1.45C21.41,15.85 22,13.99 22,12s-0.59,-3.85 -1.59,-5.41l-1.45,1.45C19.62,9.21 20,10.56 20,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-1.44,0 -2.79,-0.38 -3.95,-1.05l-1.45,1.45C8.15,21.41 10.01,22 12,22s3.85,-0.59 5.41,-1.59l-1.45,-1.45C14.79,19.62 13.44,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-1.44 0.38,-2.79 1.05,-3.95L3.59,6.59C2.59,8.15 2,10.01 2,12s0.59,3.85 1.59,5.41l1.45,-1.45C4.38,14.79 4,13.44 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18c1.65,0 3,-1.35 3,-3h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02C15.72,7.75 13.81,6 11.5,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/nordic_walking.xml b/compose/material/material/icons/generator/raw-icons/outlined/nordic_walking.xml
deleted file mode 100644
index e8e9f6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/nordic_walking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,23h-1.5v-9H19V23zM7.53,14H6l-2,9h1.53L7.53,14zM13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM9.8,8.9L7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L6,8.3V13h2V9.6L9.8,8.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/north.xml b/compose/material/material/icons/generator/raw-icons/outlined/north.xml
deleted file mode 100644
index 129add2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/north.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7,-7L5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/north_east.xml b/compose/material/material/icons/generator/raw-icons/outlined/north_east.xml
deleted file mode 100644
index 5893394..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/north_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/north_west.xml b/compose/material/material/icons/generator/raw-icons/outlined/north_west.xml
deleted file mode 100644
index 5e3792e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/north_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/not_accessible.xml b/compose/material/material/icons/generator/raw-icons/outlined/not_accessible.xml
deleted file mode 100644
index 70aa42e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/not_accessible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,5.1 10,4zM19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43C13.4,7.5 13.2,7.38 13.01,7.28c-0.36,-0.19 -0.72,-0.3 -1.2,-0.26c-0.49,0.04 -0.91,0.27 -1.23,0.61L14,11.05C15.29,12.12 17.25,12.99 19,13zM10,20c-1.66,0 -3,-1.34 -3,-3c0,-1.31 0.84,-2.41 2,-2.83V12.1c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h-2.07C12.42,19.16 11.31,20 10,20zM2.81,2.81L1.39,4.22L10,12.83V15c0,1.1 0.9,2 2,2h2.17l5.61,5.61l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/not_interested.xml b/compose/material/material/icons/generator/raw-icons/outlined/not_interested.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/not_interested.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/not_listed_location.xml b/compose/material/material/icons/generator/raw-icons/outlined/not_listed_location.xml
deleted file mode 100644
index 5057865..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/not_listed_location.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,16c-0.27,0 -0.52,-0.1 -0.71,-0.29c-0.2,-0.2 -0.29,-0.43 -0.29,-0.71c-0.01,-0.55 0.43,-0.99 0.98,-1c0.01,0 0.01,0 0.02,0c0.28,0 0.51,0.1 0.71,0.29c0.18,0.19 0.28,0.43 0.28,0.7s-0.1,0.51 -0.29,0.71S12.28,16 12.01,16zM11.13,12.34c0,-0.45 0.1,-0.84 0.29,-1.16c0.19,-0.33 0.53,-0.7 1,-1.12c0.28,-0.25 0.48,-0.47 0.61,-0.66s0.19,-0.4 0.19,-0.64c0,-0.29 -0.11,-0.53 -0.32,-0.74c-0.21,-0.2 -0.5,-0.3 -0.85,-0.3c-0.37,0 -0.74,0.1 -0.96,0.3c-0.21,0.2 -0.4,0.45 -0.4,0.98H9c0,-1.01 0.46,-1.73 0.97,-2.21C10.53,6.28 11.25,6 12,6c0.59,0 1.11,0.12 1.57,0.35s0.79,0.55 1.05,0.96S15,8.17 15,8.66s-0.1,0.9 -0.31,1.25S14.21,10.62 13.8,11c-0.32,0.3 -0.53,0.56 -0.65,0.77s-0.18,0.49 -0.18,0.81V13h-1.85v-0.66H11.13zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14C16.05,15.64 18,12.54 18,10.2zM12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/not_started.xml b/compose/material/material/icons/generator/raw-icons/outlined/not_started.xml
deleted file mode 100644
index 85dee20..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/not_started.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM11,8H9v8h2V8zM17,12l-5,-4v8L17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/note.xml b/compose/material/material/icons/generator/raw-icons/outlined/note.xml
deleted file mode 100644
index 35ab25a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4H4c-1.1,0 -2,0.9 -2,2v12.01c0,1.1 0.9,1.99 2,1.99h16c1.1,0 2,-0.9 2,-2v-8l-6,-6zM4,18.01V6h11v5h5v7.01H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/note_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/note_add.xml
deleted file mode 100644
index 2cc6f9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/note_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11h-2v3L8,14v2h3v3h2v-3h3v-2h-3zM14,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,20L6,20L6,4h7v5h5v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/note_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/note_alt.xml
deleted file mode 100644
index 99a0559..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/note_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75S12.41,4.25 12,4.25s-0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.08,11.03l-2.12,-2.12l-5.96,5.95l0,2.14l2.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.85,9.27c0.2,-0.2 0.2,-0.51 0,-0.71l-1.41,-1.41c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.06,1.06l2.12,2.12L16.85,9.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notes.xml b/compose/material/material/icons/generator/raw-icons/outlined/notes.xml
deleted file mode 100644
index 69f886d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.01L3,11v2h18zM3,16h12v2H3zM21,6H3v2.01L21,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notification_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/notification_add.xml
deleted file mode 100644
index d8c145b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notification_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14v3H8v-7c0,-2.21 1.79,-4 4,-4c0.85,0 1.64,0.26 2.28,0.72l1.43,-1.43c-0.64,-0.51 -1.39,-0.88 -2.21,-1.09V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5v0.7C7.91,4.86 6,7.21 6,10v7H4v2h16v-2h-2v-3H16zM12,22c1.1,0 2,-0.9 2,-2h-4C10,21.1 10.9,22 12,22zM24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notification_important.xml b/compose/material/material/icons/generator/raw-icons/outlined/notification_important.xml
deleted file mode 100644
index 5a4d781..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notification_important.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.01,21.01c0,1.1 0.89,1.99 1.99,1.99s1.99,-0.89 1.99,-1.99h-3.98zM12,6c2.76,0 5,2.24 5,5v7L7,18v-7c0,-2.76 2.24,-5 5,-5zM12,1.5c-0.83,0 -1.5,0.67 -1.5,1.5v1.17C7.36,4.85 5,7.65 5,11v6l-2,2v1h18v-1l-2,-2v-6c0,-3.35 -2.36,-6.15 -5.5,-6.83L13.5,3c0,-0.83 -0.67,-1.5 -1.5,-1.5zM11,8h2v4h-2zM11,14h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notifications.xml b/compose/material/material/icons/generator/raw-icons/outlined/notifications.xml
deleted file mode 100644
index 6cd3b42..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notifications_active.xml b/compose/material/material/icons/generator/raw-icons/outlined/notifications_active.xml
deleted file mode 100644
index 0a32761..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notifications_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6zM7.58,4.08L6.15,2.65C3.75,4.48 2.17,7.3 2.03,10.5h2c0.15,-2.65 1.51,-4.97 3.55,-6.42zM19.97,10.5h2c-0.15,-3.2 -1.73,-6.02 -4.12,-7.85l-1.42,1.43c2.02,1.45 3.39,3.77 3.54,6.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notifications_none.xml b/compose/material/material/icons/generator/raw-icons/outlined/notifications_none.xml
deleted file mode 100644
index 6cd3b42..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notifications_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notifications_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/notifications_off.xml
deleted file mode 100644
index cdb23ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notifications_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM12,6.5c2.49,0 4,2.02 4,4.5v0.1l2,2L18,11c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68c-0.24,0.06 -0.47,0.15 -0.69,0.23l1.64,1.64c0.18,-0.02 0.36,-0.05 0.55,-0.05zM5.41,3.35L4,4.76l2.81,2.81C6.29,8.57 6,9.74 6,11v5l-2,2v1h14.24l1.74,1.74 1.41,-1.41L5.41,3.35zM16,17L8,17v-6c0,-0.68 0.12,-1.32 0.34,-1.9L16,16.76L16,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/notifications_paused.xml b/compose/material/material/icons/generator/raw-icons/outlined/notifications_paused.xml
deleted file mode 100644
index 24d7cec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/notifications_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,9.8h2.8l-2.8,3.4L9.5,15h5v-1.8h-2.8l2.8,-3.4L14.5,8h-5zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6zM12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/numbers.xml b/compose/material/material/icons/generator/raw-icons/outlined/numbers.xml
deleted file mode 100644
index a9ada94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/numbers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,10L21,8h-4l1,-4h-2l-1,4h-4l1,-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1,-4h4l-1,4h2l1,-4h4l0.5,-2h-4l1,-4H20.5zM13.5,14h-4l1,-4h4L13.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/offline_bolt.xml b/compose/material/material/icons/generator/raw-icons/outlined/offline_bolt.xml
deleted file mode 100644
index 19b449f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/offline_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2.02c-5.51,0 -9.98,4.47 -9.98,9.98s4.47,9.98 9.98,9.98 9.98,-4.47 9.98,-9.98S17.51,2.02 12,2.02zM12,19.98c-4.4,0 -7.98,-3.58 -7.98,-7.98S7.6,4.02 12,4.02 19.98,7.6 19.98,12 16.4,19.98 12,19.98zM12.75,5l-4.5,8.5h3.14L11.39,19l4.36,-8.5h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/offline_pin.xml b/compose/material/material/icons/generator/raw-icons/outlined/offline_pin.xml
deleted file mode 100644
index e447dc82..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/offline_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM7,15h10v2L7,17zM10.3,11.2L8.4,9.3 7,10.7l3.3,3.3L17,7.3l-1.4,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/offline_share.xml b/compose/material/material/icons/generator/raw-icons/outlined/offline_share.xml
deleted file mode 100644
index cae410f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/offline_share.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5H4v16c0,1.1 0.9,2 2,2h10v-2H6V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1h-8C8.9,1 8,1.9 8,3v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V3C20,1.9 19.1,1 18,1zM18,17h-8v-1h8V17zM18,14h-8V6h8V14zM18,4h-8V3h8V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,10.25h1.63l-0.69,0.69L14.5,12L17,9.5L14.5,7l-1.06,1.06l0.69,0.69H12c-0.55,0 -1,0.45 -1,1V12h1.5V10.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/oil_barrel.xml b/compose/material/material/icons/generator/raw-icons/outlined/oil_barrel.xml
deleted file mode 100644
index 5268dd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/oil_barrel.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13.05C9,14.68 10.34,16 12,16s3,-1.32 3,-2.95c0,-1.31 -0.53,-1.69 -3,-4.55C9.52,11.38 9,11.75 9,13.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1V5h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-6H20zM17,19H7v-6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1V5h10v6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/on_device_training.xml b/compose/material/material/icons/generator/raw-icons/outlined/on_device_training.xml
deleted file mode 100644
index 50edf48..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/on_device_training.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2c0,0.74 0.4,1.38 1,1.72v0.78h2v-0.78c0.6,-0.35 1,-0.98 1,-1.72C14,11.9 13.1,11 12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L6,1C4.9,1 4,1.9 4,3v18c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V3C20,1.9 19.1,1.01 18,1.01zM18,21H6v-1h12V21zM18,18H6V6h12V18zM18,4H6V3h12V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,15.95C16.63,15.12 17,14.11 17,13s-0.37,-2.12 -0.99,-2.95l-1.07,1.07c0.35,0.54 0.56,1.19 0.56,1.88s-0.21,1.34 -0.56,1.88L16.01,15.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.06,14.88C8.71,14.34 8.5,13.69 8.5,13c0,-1.93 1.57,-3.5 3.5,-3.5v1.25l2.25,-2l-2.25,-2V8c-2.76,0 -5,2.24 -5,5c0,1.11 0.37,2.12 0.99,2.95L9.06,14.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ondemand_video.xml b/compose/material/material/icons/generator/raw-icons/outlined/ondemand_video.xml
deleted file mode 100644
index 6216459..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ondemand_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7v8l7,-4zM21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/online_prediction.xml b/compose/material/material/icons/generator/raw-icons/outlined/online_prediction.xml
deleted file mode 100644
index a3e63ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/online_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5C8.5,9.57 10.07,8 12,8S15.5,9.57 15.5,11.5zM13,17.5h-2V19h2V17.5zM22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.06,1.06C19.55,7.53 20.5,9.66 20.5,12c0,2.34 -0.95,4.47 -2.49,6.01l1.06,1.06C20.88,17.26 22,14.76 22,12zM3.5,12c0,-2.34 0.95,-4.47 2.49,-6.01L4.93,4.93C3.12,6.74 2,9.24 2,12c0,2.76 1.12,5.26 2.93,7.07l1.06,-1.06C4.45,16.47 3.5,14.34 3.5,12zM17.5,12c0,1.52 -0.62,2.89 -1.61,3.89l1.06,1.06C18.22,15.68 19,13.93 19,12c0,-1.93 -0.78,-3.68 -2.05,-4.95l-1.06,1.06C16.88,9.11 17.5,10.48 17.5,12zM7.05,16.95l1.06,-1.06c-1,-1 -1.61,-2.37 -1.61,-3.89c0,-1.52 0.62,-2.89 1.61,-3.89L7.05,7.05C5.78,8.32 5,10.07 5,12C5,13.93 5.78,15.68 7.05,16.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/opacity.xml b/compose/material/material/icons/generator/raw-icons/outlined/opacity.xml
deleted file mode 100644
index 4750e9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/opacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,8L12,2.35 6.34,8C4.78,9.56 4,11.64 4,13.64s0.78,4.11 2.34,5.67 3.61,2.35 5.66,2.35 4.1,-0.79 5.66,-2.35S20,15.64 20,13.64 19.22,9.56 17.66,8zM6,14c0.01,-2 0.62,-3.27 1.76,-4.4L12,5.27l4.24,4.38C17.38,10.77 17.99,12 18,14H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/open_in_browser.xml b/compose/material/material/icons/generator/raw-icons/outlined/open_in_browser.xml
deleted file mode 100644
index 40ceddc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/open_in_browser.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h4v-2L5,18L5,8h14v10h-4v2h4c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM12,10l-4,4h3v6h2v-6h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/open_in_full.xml b/compose/material/material/icons/generator/raw-icons/outlined/open_in_full.xml
deleted file mode 100644
index e1da4fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/open_in_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l0,-8l-8,0l3.29,3.29l-10,10l-3.29,-3.29l0,8l8,0l-3.29,-3.29l10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/open_in_new.xml b/compose/material/material/icons/generator/raw-icons/outlined/open_in_new.xml
deleted file mode 100644
index b2dd7f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/open_in_new.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/open_in_new_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/open_in_new_off.xml
deleted file mode 100644
index 6f688d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/open_in_new_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.79,5.8L14,3h7v7l-2.79,-2.8l-4.09,4.09l-1.41,-1.41L16.79,5.8zM19,12v4.17l2,2V12H19zM19.78,22.61L18.17,21H5c-1.11,0 -2,-0.9 -2,-2V5.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.17,19l-4.88,-4.88L9.7,15.71L8.29,14.3l1.59,-1.59L5,7.83V19H16.17zM7.83,5H12V3H5.83L7.83,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/open_with.xml b/compose/material/material/icons/generator/raw-icons/outlined/open_with.xml
deleted file mode 100644
index 6f602a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/open_with.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9h4L14,6h3l-5,-5 -5,5h3v3zM9,10L6,10L6,7l-5,5 5,5v-3h3v-4zM23,12l-5,-5v3h-3v4h3v3l5,-5zM14,15h-4v3L7,18l5,5 5,-5h-3v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/other_houses.xml b/compose/material/material/icons/generator/raw-icons/outlined/other_houses.xml
deleted file mode 100644
index bfa95c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/other_houses.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM18,19H6v-8.9l6,-4.58l6,4.58V19zM9,14c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1S9,13.45 9,14zM12,13c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C11,13.45 11.45,13 12,13zM15,14c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S15,14.55 15,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/outbond.xml b/compose/material/material/icons/generator/raw-icons/outlined/outbond.xml
deleted file mode 100644
index 4f21538..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/outbond.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/outbound.xml b/compose/material/material/icons/generator/raw-icons/outlined/outbound.xml
deleted file mode 100644
index 6165f15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/outbound.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/outbox.xml b/compose/material/material/icons/generator/raw-icons/outlined/outbox.xml
deleted file mode 100644
index b84a084..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/outbox.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9.83l0,4.17l2,0l0,-4.17l1.59,1.58l1.41,-1.41l-4,-4l-4,4l1.41,1.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5v-3h3.02c0.91,1.21 2.35,2 3.98,2s3.06,-0.79 3.98,-2H19V19zM19,14h-4.18c-0.41,1.16 -1.51,2 -2.82,2s-2.4,-0.84 -2.82,-2H5V5h14V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/outdoor_grill.xml b/compose/material/material/icons/generator/raw-icons/outlined/outdoor_grill.xml
deleted file mode 100644
index 5784b47..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/outdoor_grill.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,22c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3c-1.3,0 -2.4,0.84 -2.82,2H9.14l1.99,-3.06C11.42,14.98 11.71,15 12,15s0.58,-0.02 0.87,-0.06l1.02,1.57c0.42,-0.53 0.96,-0.95 1.6,-1.21l-0.6,-0.93C17.31,13.27 19,10.84 19,8H5c0,2.84 1.69,5.27 4.12,6.37l-3.95,6.08c-0.3,0.46 -0.17,1.08 0.29,1.38h0c0.46,0.3 1.08,0.17 1.38,-0.29l1,-1.55h6.34C14.6,21.16 15.7,22 17,22zM17,18c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C16,18.45 16.45,18 17,18zM7.42,10h9.16c-0.77,1.76 -2.54,3 -4.58,3S8.19,11.76 7.42,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C9.1,3.54 8.84,3.27 9.06,2H8.07C7.86,3.11 8.1,4.05 8.96,4.96C9.18,5.2 9.75,5.63 9.41,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.89,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96c-0.42,-0.5 -0.68,-0.78 -0.46,-2.04h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C11.67,5.2 12.24,5.63 11.89,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C14.1,3.54 13.84,3.27 14.06,2h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C14.18,5.2 14.75,5.63 14.41,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/outlet.xml b/compose/material/material/icons/generator/raw-icons/outlined/outlet.xml
deleted file mode 100644
index 9e18694..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/outlet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2L12,2zM10,11V8c0,-0.55 -0.45,-1 -1,-1h0C8.45,7 8,7.45 8,8v3c0,0.55 0.45,1 1,1h0C9.55,12 10,11.55 10,11zM16,11V8c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h0C15.55,12 16,11.55 16,11zM14,16c0,-1.1 -0.9,-2 -2,-2h0c-1.1,0 -2,0.9 -2,2v2h4V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/outlined_flag.xml b/compose/material/material/icons/generator/raw-icons/outlined/outlined_flag.xml
deleted file mode 100644
index 85663ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/outlined_flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-1,-2L5,4v17h2v-7h5l1,2h7L20,6h-6zM18,14h-4l-1,-2L7,12L7,6h5l1,2h5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/output.xml b/compose/material/material/icons/generator/raw-icons/outlined/output.xml
deleted file mode 100644
index 76f041a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/output.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17l5,-5l-5,-5l-1.41,1.41l2.58,2.59l-9.17,0l0,2l9.17,0l-2.58,2.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14v2h2V5c0,-1.1 -0.89,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.11,0 2,-0.9 2,-2v-2h-2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/padding.xml b/compose/material/material/icons/generator/raw-icons/outlined/padding.xml
deleted file mode 100644
index 91be284..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/padding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5zM19,19H5V5h14V19zM11,7h2v2h-2V7zM7,7h2v2H7V7zM15,7h2v2h-2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pages.xml b/compose/material/material/icons/generator/raw-icons/outlined/pages.xml
deleted file mode 100644
index 5ffad71..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pages.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM13,5h6v6h-3l1,-4 -4,1L13,5zM5,5h6v3L7,7l1,4L5,11L5,5zM11,19L5,19v-6h3l-1,4 4,-1v3zM19,19h-6v-3l4,1 -1,-4h3v6zM14.63,14.63L12,13.72l-2.63,0.91 0.91,-2.63 -0.91,-2.63 2.63,0.91 2.63,-0.91 -0.91,2.63 0.91,2.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pageview.xml b/compose/material/material/icons/generator/raw-icons/outlined/pageview.xml
deleted file mode 100644
index c59ff6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pageview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.49,16c0.88,0 1.7,-0.26 2.39,-0.7l2.44,2.44 1.42,-1.42 -2.44,-2.43c0.44,-0.7 0.7,-1.51 0.7,-2.39C16,9.01 13.99,7 11.5,7S7,9.01 7,11.5 9.01,16 11.49,16zM11.5,9c1.38,0 2.5,1.12 2.5,2.5S12.88,14 11.5,14 9,12.88 9,11.5 10.12,9 11.5,9zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/paid.xml b/compose/material/material/icons/generator/raw-icons/outlined/paid.xml
deleted file mode 100644
index d4e7f18..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/paid.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20zM12.89,11.1c-1.78,-0.59 -2.64,-0.96 -2.64,-1.9c0,-1.02 1.11,-1.39 1.81,-1.39c1.31,0 1.79,0.99 1.9,1.34l1.58,-0.67c-0.15,-0.44 -0.82,-1.91 -2.66,-2.23V5h-1.75v1.26c-2.6,0.56 -2.62,2.85 -2.62,2.96c0,2.27 2.25,2.91 3.35,3.31c1.58,0.56 2.28,1.07 2.28,2.03c0,1.13 -1.05,1.61 -1.98,1.61c-1.82,0 -2.34,-1.87 -2.4,-2.09L8.1,14.75c0.63,2.19 2.28,2.78 3.02,2.96V19h1.75v-1.24c0.52,-0.09 3.02,-0.59 3.02,-3.22C15.9,13.15 15.29,11.93 12.89,11.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/palette.xml b/compose/material/material/icons/generator/raw-icons/outlined/palette.xml
deleted file mode 100644
index 9b6684f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/palette.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22C6.49,22 2,17.51 2,12S6.49,2 12,2s10,4.04 10,9c0,3.31 -2.69,6 -6,6h-1.77c-0.28,0 -0.5,0.22 -0.5,0.5c0,0.12 0.05,0.23 0.13,0.33c0.41,0.47 0.64,1.06 0.64,1.67C14.5,20.88 13.38,22 12,22zM12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.16 -0.08,-0.28 -0.14,-0.35c-0.41,-0.46 -0.63,-1.05 -0.63,-1.65c0,-1.38 1.12,-2.5 2.5,-2.5H16c2.21,0 4,-1.79 4,-4C20,7.14 16.41,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pan_tool.xml b/compose/material/material/icons/generator/raw-icons/outlined/pan_tool.xml
deleted file mode 100644
index b8a9e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pan_tool.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,24h-6.55c-1.08,0 -2.14,-0.45 -2.89,-1.23l-7.3,-7.61 2.07,-1.83c0.62,-0.55 1.53,-0.66 2.26,-0.27L8,14.34V4.79c0,-1.38 1.12,-2.5 2.5,-2.5 0.17,0 0.34,0.02 0.51,0.05 0.09,-1.3 1.17,-2.33 2.49,-2.33 0.86,0 1.61,0.43 2.06,1.09 0.29,-0.12 0.61,-0.18 0.94,-0.18 1.38,0 2.5,1.12 2.5,2.5v0.28c0.16,-0.03 0.33,-0.05 0.5,-0.05 1.38,0 2.5,1.12 2.5,2.5V20c0,2.21 -1.79,4 -4,4zM4.14,15.28l5.86,6.1c0.38,0.39 0.9,0.62 1.44,0.62H18c1.1,0 2,-0.9 2,-2V6.15c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5V12h-2V3.42c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5V12h-2V2.51c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5V12h-2V4.79c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.23 -0.5,0.5v12.87l-5.35,-2.83 -0.51,0.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pan_tool_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/pan_tool_alt.xml
deleted file mode 100644
index ade9aad..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pan_tool_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,11.77l-3.8,-1.67C14.96,10.04 14.81,10 14.65,10H14V5.5C14,4.12 12.88,3 11.5,3S9,4.12 9,5.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,15.22l5.12,5.19C9.49,20.79 10,21 10.53,21h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,13.03 19.68,12.17 18.89,11.77zM17.08,19h-6.55l-3.7,-3.78L11,16.11V5.5C11,5.22 11.22,5 11.5,5S12,5.22 12,5.5v6.18h1.76L18,13.56L17.08,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama.xml
deleted file mode 100644
index dff4a56..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM21,18L3,18L3,6h18v12zM14.5,11L11,15.51 8.5,12.5 5,17h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_fish_eye.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_fish_eye.xml
deleted file mode 100644
index 2d4d03b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_fish_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_horizontal.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_horizontal.xml
deleted file mode 100644
index 050443c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.54v10.91c-2.6,-0.77 -5.28,-1.16 -8,-1.16s-5.4,0.39 -8,1.16V6.54c2.6,0.77 5.28,1.16 8,1.16 2.72,0.01 5.4,-0.38 8,-1.16M21.43,4c-0.1,0 -0.2,0.02 -0.31,0.06C18.18,5.16 15.09,5.7 12,5.7s-6.18,-0.55 -9.12,-1.64C2.77,4.02 2.66,4 2.57,4c-0.34,0 -0.57,0.23 -0.57,0.63v14.75c0,0.39 0.23,0.62 0.57,0.62 0.1,0 0.2,-0.02 0.31,-0.06 2.94,-1.1 6.03,-1.64 9.12,-1.64s6.18,0.55 9.12,1.64c0.11,0.04 0.21,0.06 0.31,0.06 0.33,0 0.57,-0.23 0.57,-0.63V4.63c0,-0.4 -0.24,-0.63 -0.57,-0.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_horizontal_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_horizontal_select.xml
deleted file mode 100644
index 7b37a7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_horizontal_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5c-3.89,0 -6.95,-0.84 -8.69,-1.43C2.67,3.85 2,4.33 2,5.02L2,19c0,0.68 0.66,1.17 1.31,0.95C5.36,19.26 8.1,18.5 12,18.5c3.87,0 6.66,0.76 8.69,1.45C21.34,20.16 22,19.68 22,19l0,-14c0,-0.68 -0.66,-1.17 -1.31,-0.95C18.66,4.73 15.86,5.5 12,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_photosphere.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_photosphere.xml
deleted file mode 100644
index cef3cea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_photosphere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,8.15c-0.29,-0.16 -0.61,-0.31 -0.93,-0.46C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68c-0.33,0.15 -0.64,0.3 -0.93,0.46C1.41,8.5 1,9.17 1,9.91v4.18c0,0.74 0.41,1.41 1.05,1.77c0.29,0.16 0.61,0.31 0.93,0.46C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.33,-0.15 0.64,-0.3 0.93,-0.46C22.59,15.5 23,14.83 23,14.09V9.91C23,9.17 22.59,8.5 21.95,8.15zM21,9.91C21,9.91 21,9.91 21,9.91l0,4.19C18.81,15.31 15.53,16 12,16c-3.53,0 -6.81,-0.7 -9,-1.91c0,0 0,0 0,0l0,-4.18C5.2,8.69 8.47,8 12,8C15.53,8 18.81,8.7 21,9.91zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_photosphere_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_photosphere_select.xml
deleted file mode 100644
index 756f12d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_photosphere_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,8.15c-0.29,-0.16 -0.61,-0.31 -0.93,-0.46C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68c-0.33,0.15 -0.64,0.3 -0.93,0.46C1.41,8.5 1,9.17 1,9.91v4.18c0,0.74 0.41,1.41 1.05,1.77c0.29,0.16 0.61,0.31 0.93,0.46C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.33,-0.15 0.64,-0.3 0.93,-0.46C22.59,15.5 23,14.83 23,14.09V9.91C23,9.17 22.59,8.5 21.95,8.15zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_vertical.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_vertical.xml
deleted file mode 100644
index e4a60b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,21.12c-1.1,-2.94 -1.64,-6.03 -1.64,-9.12s0.55,-6.18 1.64,-9.12c0.04,-0.11 0.06,-0.22 0.06,-0.31 0,-0.34 -0.23,-0.57 -0.63,-0.57H4.63c-0.4,0 -0.63,0.23 -0.63,0.57 0,0.1 0.02,0.2 0.06,0.31C5.16,5.82 5.71,8.91 5.71,12s-0.55,6.18 -1.64,9.12c-0.05,0.11 -0.07,0.22 -0.07,0.31 0,0.33 0.23,0.57 0.63,0.57h14.75c0.39,0 0.63,-0.24 0.63,-0.57 -0.01,-0.1 -0.03,-0.2 -0.07,-0.31zM6.54,20c0.77,-2.6 1.16,-5.28 1.16,-8s-0.39,-5.4 -1.16,-8h10.91c-0.77,2.6 -1.16,5.28 -1.16,8s0.39,5.4 1.16,8H6.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_vertical_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_vertical_select.xml
deleted file mode 100644
index a5cdcb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_vertical_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,12c0,-3.89 0.84,-6.95 1.43,-8.69C20.15,2.67 19.67,2 18.98,2L5,2C4.32,2 3.84,2.66 4.05,3.31C4.74,5.36 5.5,8.1 5.5,12c0,3.87 -0.76,6.66 -1.45,8.69C3.84,21.34 4.32,22 5,22h14c0.68,0 1.17,-0.66 0.95,-1.31C19.27,18.66 18.5,15.86 18.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_wide_angle.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_wide_angle.xml
deleted file mode 100644
index 5ad0e55a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_wide_angle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c2.45,0 4.71,0.2 7.29,0.64 0.47,1.78 0.71,3.58 0.71,5.36s-0.24,3.58 -0.71,5.36c-2.58,0.44 -4.84,0.64 -7.29,0.64s-4.71,-0.2 -7.29,-0.64C4.24,15.58 4,13.78 4,12s0.24,-3.58 0.71,-5.36C7.29,6.2 9.55,6 12,6m0,-2c-2.73,0 -5.22,0.24 -7.95,0.72l-0.93,0.16 -0.25,0.9C2.29,7.85 2,9.93 2,12s0.29,4.15 0.87,6.22l0.25,0.89 0.93,0.16c2.73,0.49 5.22,0.73 7.95,0.73s5.22,-0.24 7.95,-0.72l0.93,-0.16 0.25,-0.89c0.58,-2.08 0.87,-4.16 0.87,-6.23s-0.29,-4.15 -0.87,-6.22l-0.25,-0.89 -0.93,-0.16C17.22,4.24 14.73,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/panorama_wide_angle_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/panorama_wide_angle_select.xml
deleted file mode 100644
index fc89d55..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/panorama_wide_angle_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C8.03,4 5.15,4.63 3,5c-0.55,1.97 -1,3.92 -1,7c0,3.03 0.45,5.05 1,7c2.15,0.37 4.98,1 9,1c3.97,0 6.85,-0.63 9,-1c0.57,-2.02 1,-3.99 1,-7c0,-3.03 -0.45,-5.05 -1,-7C18.85,4.63 16.02,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/paragliding.xml b/compose/material/material/icons/generator/raw-icons/outlined/paragliding.xml
deleted file mode 100644
index f92b538..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/paragliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,16.1 13.1,17 12,17zM15.48,17.94C14.68,18.54 14,19 12,19s-2.68,-0.46 -3.48,-1.06C8.04,17.55 7,16.76 7,14H5c0,2.7 0.93,4.41 2.3,5.5c0.5,0.4 1.1,0.7 1.7,0.9V24h6v-3.6c0.6,-0.2 1.2,-0.5 1.7,-0.9c1.37,-1.09 2.3,-2.8 2.3,-5.5h-2C17,16.76 15.96,17.55 15.48,17.94zM23,4.25v3.49c0,0.8 -0.88,1.26 -1.56,0.83C21.3,8.48 21.16,8.39 21,8.31L19,13h-2l-1.5,-6.28C14.4,6.58 13.22,6.5 12,6.5S9.6,6.58 8.5,6.72L7,13H5L3,8.31C2.84,8.39 2.7,8.48 2.56,8.57C1.88,9 1,8.55 1,7.74V4.25C1,1.9 5.92,0 12,0S23,1.9 23,4.25zM6.9,6.98C5.97,7.17 5.12,7.41 4.37,7.69l1.51,3.55L6.9,6.98zM19.63,7.69c-0.75,-0.28 -1.6,-0.52 -2.53,-0.71l1.02,4.25L19.63,7.69zM21,4.31C20.65,3.63 17.57,2 12,2S3.35,3.63 3,4.31v1.77C5.34,5.07 8.56,4.5 12,4.5s6.66,0.57 9,1.58V4.31z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/park.xml b/compose/material/material/icons/generator/raw-icons/outlined/park.xml
deleted file mode 100644
index 99505a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/park.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h2L12,2L5.05,12H7l-3.9,6h6.92v4h3.95v-4H21L17,12zM6.79,16l3.9,-6H8.88l3.13,-4.5l3.15,4.5h-1.9l4,6H6.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/party_mode.xml b/compose/material/material/icons/generator/raw-icons/outlined/party_mode.xml
deleted file mode 100644
index 7bbf343..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/party_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h4.05l0.59,-0.65L9.88,4h4.24l1.24,1.35 0.59,0.65L20,6v12zM9,12c0,-1.66 1.34,-3 3,-3h3.98c-0.92,-1.21 -2.35,-2 -3.98,-2 -2.76,0 -5,2.24 -5,5 0,0.34 0.04,0.68 0.1,1h2.08c-0.11,-0.31 -0.18,-0.65 -0.18,-1zM15,12c0,1.66 -1.34,3 -3,3L8.02,15c0.92,1.21 2.35,2 3.98,2 2.76,0 5,-2.24 5,-5 0,-0.34 -0.03,-0.68 -0.1,-1h-2.08c0.11,0.31 0.18,0.65 0.18,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/password.xml b/compose/material/material/icons/generator/raw-icons/outlined/password.xml
deleted file mode 100644
index 2ca2da8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h20v2H2V17zM3.15,12.95L4,11.47l0.85,1.48l1.3,-0.75L5.3,10.72H7v-1.5H5.3l0.85,-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95zM9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H15v-1.5h-1.7l0.85,-1.47L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2zM23,9.22h-1.7l0.85,-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H23V9.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pattern.xml b/compose/material/material/icons/generator/raw-icons/outlined/pattern.xml
deleted file mode 100644
index e72bdb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pattern.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM6,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S4.9,14 6,14zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,8 12,8zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S19.1,10 18,10zM17.98,16c-0.74,0 -1.37,0.4 -1.72,1h-2.54c-0.34,-0.6 -0.98,-1 -1.72,-1s-1.37,0.4 -1.72,1H8.41l3.07,-3.07C11.65,13.97 11.82,14 12,14c1.1,0 2,-0.9 2,-2c0,-0.18 -0.03,-0.35 -0.07,-0.51l3.56,-3.56C17.65,7.97 17.82,8 18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C12.35,10.03 12.18,10 12,10c-1.1,0 -2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C6.35,16.03 6.18,16 6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c0.74,0 1.37,-0.4 1.72,-1h2.57c0.34,0.6 0.98,1 1.72,1s1.37,-0.4 1.72,-1h2.55c0.34,0.6 0.98,1 1.72,1c1.1,0 2,-0.9 2,-2C19.98,16.9 19.08,16 17.98,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pause.xml b/compose/material/material/icons/generator/raw-icons/outlined/pause.xml
deleted file mode 100644
index 13d6d2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pause_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/pause_circle.xml
deleted file mode 100644
index c9aafaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pause_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h2V8H9V16zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM13,16h2V8h-2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pause_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/pause_circle_filled.xml
deleted file mode 100644
index 336daab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pause_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM11,16H9V8h2V16zM15,16h-2V8h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pause_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/pause_circle_outline.xml
deleted file mode 100644
index b929a59..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pause_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h2L11,8L9,8v8zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM13,16h2L15,8h-2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pause_presentation.xml b/compose/material/material/icons/generator/raw-icons/outlined/pause_presentation.xml
deleted file mode 100644
index 827b9fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pause_presentation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.85 -2,1.95v14c0,1.1 0.9,2.05 2,2.05h18c1.1,0 2,-0.95 2,-2.05v-14C23,3.85 22.1,3 21,3zM21,19L3,19L3,5h18v14zM9,8h2v8L9,16zM13,8h2v8h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/payment.xml b/compose/material/material/icons/generator/raw-icons/outlined/payment.xml
deleted file mode 100644
index 9c0fb1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/payment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/payments.xml b/compose/material/material/icons/generator/raw-icons/outlined/payments.xml
deleted file mode 100644
index 1910518..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/payments.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14V6c0,-1.1 -0.9,-2 -2,-2H3C1.9,4 1,4.9 1,6v8c0,1.1 0.9,2 2,2h14C18.1,16 19,15.1 19,14zM17,14H3V6h14V14zM10,7c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,7 10,7zM23,7v11c0,1.1 -0.9,2 -2,2H4c0,-1 0,-0.9 0,-2h17V7C22.1,7 22,7 23,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pedal_bike.xml b/compose/material/material/icons/generator/raw-icons/outlined/pedal_bike.xml
deleted file mode 100644
index ddb3958..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pedal_bike.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.18,10l-1.7,-4.68C16.19,4.53 15.44,4 14.6,4H12v2h2.6l1.46,4h-4.81l-0.36,-1H12V7H7v2h1.75l1.82,5H9.9c-0.44,-2.23 -2.31,-3.88 -4.65,-3.99C2.45,9.87 0,12.2 0,15c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5c0,-2.8 -2.2,-5 -5,-5H18.18zM7.82,16c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,14h-1.4l-0.73,-2H15C14.56,12.58 14.24,13.25 14.1,14zM19,18c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,18 19,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pending.xml b/compose/material/material/icons/generator/raw-icons/outlined/pending.xml
deleted file mode 100644
index 7eccf62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pending.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,16.42 16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pending_actions.xml b/compose/material/material/icons/generator/raw-icons/outlined/pending_actions.xml
deleted file mode 100644
index 3829d14..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pending_actions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35zM18,3h-3.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H6C4.9,3 4,3.9 4,5v15c0,1.1 0.9,2 2,2h6.11c-0.59,-0.57 -1.07,-1.25 -1.42,-2H6V5h2v3h8V5h2v5.08c0.71,0.1 1.38,0.31 2,0.6V5C20,3.9 19.1,3 18,3zM12,5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C13,4.55 12.55,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pentagon.xml b/compose/material/material/icons/generator/raw-icons/outlined/pentagon.xml
deleted file mode 100644
index b385d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pentagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.63,9.78L16.56,19H7.44L4.37,9.78L12,4.44L19.63,9.78zM2,9l4,12h12l4,-12L12,2L2,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/people.xml b/compose/material/material/icons/generator/raw-icons/outlined/people.xml
deleted file mode 100644
index 24b174c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/people.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13.75c-2.34,0 -7,1.17 -7,3.5L2,19h14v-1.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h4v-1.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/people_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/people_alt.xml
deleted file mode 100644
index 8bed4d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/people_alt.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.67,13.13C18.04,14.06 19,15.32 19,17v3h4v-3C23,14.82 19.43,13.53 16.67,13.13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.47,0 -0.91,0.1 -1.33,0.24C14.5,5.27 15,6.58 15,8s-0.5,2.73 -1.33,3.76C14.09,11.9 14.53,12 15,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8C5,10.21 6.79,12 9,12zM9,6c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2S7,9.1 7,8C7,6.9 7.9,6 9,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c-2.67,0 -8,1.34 -8,4v3h16v-3C17,14.34 11.67,13 9,13zM15,18H3l0,-0.99C3.2,16.29 6.3,15 9,15s5.8,1.29 6,2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/people_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/people_outline.xml
deleted file mode 100644
index 24b174c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/people_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13.75c-2.34,0 -7,1.17 -7,3.5L2,19h14v-1.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h4v-1.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/percent.xml b/compose/material/material/icons/generator/raw-icons/outlined/percent.xml
deleted file mode 100644
index b04df01..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/percent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,4C5.57,4 4,5.57 4,7.5S5.57,11 7.5,11S11,9.43 11,7.5S9.43,4 7.5,4zM7.5,9C6.67,9 6,8.33 6,7.5S6.67,6 7.5,6S9,6.67 9,7.5S8.33,9 7.5,9zM16.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S18.43,13 16.5,13zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,18 16.5,18zM5.41,20L4,18.59L18.59,4L20,5.41L5.41,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_camera_mic.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_camera_mic.xml
deleted file mode 100644
index e38b9d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_camera_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2s2,-0.9 2,-2L14,8c0,-1.1 -0.9,-2 -2,-2zM20,5h-3.17l-1.86,-2L8.96,3L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,19h-7v-1.09c2.83,-0.48 5,-2.94 5,-5.91h-2c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4L6,12c0,2.97 2.17,5.43 5,5.91L11,19L4,19L4,7h4.21l0.59,-0.65L10.04,5h4.24l1.24,1.35 0.59,0.65L20,7v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_contact_calendar.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_contact_calendar.xml
deleted file mode 100644
index f10b5a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_contact_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.84,4.22c-0.05,-0.12 -0.11,-0.23 -0.18,-0.34 -0.14,-0.21 -0.33,-0.4 -0.54,-0.54 -0.11,-0.07 -0.22,-0.13 -0.34,-0.18 -0.24,-0.1 -0.5,-0.16 -0.78,-0.16h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-0.42,0 -0.8,0.13 -1.12,0.34 -0.21,0.14 -0.4,0.33 -0.54,0.54 -0.07,0.11 -0.13,0.22 -0.18,0.34 -0.1,0.24 -0.16,0.5 -0.16,0.78v14c0,1.1 0.89,2 2,2h14c0.28,0 0.54,-0.06 0.78,-0.16 0.12,-0.05 0.23,-0.11 0.34,-0.18 0.21,-0.14 0.4,-0.33 0.54,-0.54 0.21,-0.32 0.34,-0.71 0.34,-1.12L21,5c0,-0.28 -0.06,-0.54 -0.16,-0.78zM5,19L5,5h14v14L5,19zM12,12.88c-2.03,0 -6,1.08 -6,3.58L6,18h12v-1.53c0,-2.51 -3.97,-3.59 -6,-3.59zM8.31,16c0.69,-0.56 2.38,-1.12 3.69,-1.12s3.01,0.56 3.69,1.12L8.31,16zM12,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_data_setting.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_data_setting.xml
deleted file mode 100644
index 57c6ce0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_data_setting.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,11.57L20,11.57L20,0L0,20h11.56v-2L4.83,18L17.99,4.83v6.74zM23.77,20.32l-1.07,-0.83c0.02,-0.16 0.04,-0.32 0.04,-0.49 0,-0.17 -0.01,-0.33 -0.04,-0.49l1.06,-0.83c0.09,-0.08 0.12,-0.21 0.06,-0.32l-1,-1.73c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11l-1.24,0.5c-0.26,-0.2 -0.54,-0.37 -0.85,-0.49l-0.19,-1.32c-0.01,-0.12 -0.12,-0.21 -0.24,-0.21h-2c-0.12,0 -0.23,0.09 -0.25,0.21l-0.19,1.32c-0.3,0.13 -0.59,0.29 -0.85,0.49l-1.24,-0.5c-0.11,-0.04 -0.24,0 -0.31,0.11l-1,1.73c-0.06,0.11 -0.04,0.24 0.06,0.32l1.06,0.83c-0.02,0.16 -0.03,0.32 -0.03,0.49 0,0.17 0.01,0.33 0.03,0.49l-1.06,0.83c-0.09,0.08 -0.12,0.21 -0.06,0.32l1,1.73c0.06,0.11 0.19,0.15 0.31,0.11l1.24,-0.5c0.26,0.2 0.54,0.37 0.85,0.49l0.19,1.32c0.02,0.12 0.12,0.21 0.25,0.21h2c0.12,0 0.23,-0.09 0.25,-0.21l0.19,-1.32c0.3,-0.13 0.59,-0.29 0.84,-0.49l1.25,0.5c0.11,0.04 0.24,0 0.31,-0.11l1,-1.73c0.06,-0.11 0.03,-0.24 -0.06,-0.32zM18.99,20.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_device_information.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_device_information.xml
deleted file mode 100644
index 89abeb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_device_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2h-2zM11,11h2v6h-2zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,21L7,21v-1h10v1zM17,18L7,18L7,6h10v12zM7,4L7,3h10v1L7,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_identity.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_identity.xml
deleted file mode 100644
index ae14886..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_identity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2m0,9c2.7,0 5.8,1.29 6,2v1L6,18v-0.99c0.2,-0.72 3.3,-2.01 6,-2.01m0,-11C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_media.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_media.xml
deleted file mode 100644
index acc0ce8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_media.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6L0,6v5h0.01L0,20c0,1.1 0.9,2 2,2h18v-2L2,20L2,6zM7,15h14l-3.5,-4.5 -2.5,3.01L11.5,9zM22,4h-8l-2,-2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L24,6c0,-1.1 -0.9,-2 -2,-2zM22,16L6,16L6,4h5.17l1.41,1.41 0.59,0.59L22,6v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_phone_msg.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_phone_msg.xml
deleted file mode 100644
index d204f4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_phone_msg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.58l2.2,-2.21c0.28,-0.27 0.36,-0.66 0.25,-1.01C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.46,2.59L5.79,8.8c-0.41,-1.21 -0.67,-2.48 -0.76,-3.8zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM12,3v10l3,-3h6L21,3h-9zM19,8h-5L14,5h5v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/perm_scan_wifi.xml b/compose/material/material/icons/generator/raw-icons/outlined/perm_scan_wifi.xml
deleted file mode 100644
index 216458a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/perm_scan_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C6.95,3 3.15,4.85 0,7.23L12,22 24,7.25C20.85,4.87 17.05,3 12,3zM2.92,7.65C5.8,5.85 8.74,5 12,5c3.25,0 6.18,0.85 9.08,2.67L12,18.83 2.92,7.65zM11,10h2v6h-2zM11,6h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person.xml b/compose/material/material/icons/generator/raw-icons/outlined/person.xml
deleted file mode 100644
index 1b040f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2m0,10c2.7,0 5.8,1.29 6,2L6,18c0.23,-0.72 3.31,-2 6,-2m0,-12C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_2.xml
deleted file mode 100644
index 67024bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56zM18,18H6v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,15.73 9.63,15 12,15c2.37,0 4.29,0.73 5.48,1.34C17.8,16.5 18,16.84 18,17.22V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,12h4.44c1.21,0 2.14,-1.06 1.98,-2.26l-0.32,-2.45C15.57,5.39 13.92,4 12,4S8.43,5.39 8.12,7.29L7.8,9.74C7.64,10.94 8.57,12 9.78,12zM10.1,7.59C10.26,6.67 11.06,6 12,6s1.74,0.67 1.9,1.59L14.22,10H9.78L10.1,7.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_3.xml
deleted file mode 100644
index ffe32f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56zM18,18H6v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,15.73 9.63,15 12,15c2.37,0 4.29,0.73 5.48,1.34C17.8,16.5 18,16.84 18,17.22V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c0.17,0 3.83,0 4,0c1.66,0 3,-1.34 3,-3c0,-0.73 -0.27,-1.4 -0.71,-1.92C16.42,6.75 16.5,6.38 16.5,6c0,-1.25 -0.77,-2.32 -1.86,-2.77C14,2.48 13.06,2 12,2s-2,0.48 -2.64,1.23C8.27,3.68 7.5,4.75 7.5,6c0,0.38 0.08,0.75 0.21,1.08C7.27,7.6 7,8.27 7,9C7,10.66 8.34,12 10,12zM9.24,8.37C10.11,7.33 9.5,6.37 9.5,6c0,-0.41 0.24,-0.77 0.62,-0.92c0.29,-0.12 0.55,-0.31 0.75,-0.54C11.04,4.33 11.42,4 12,4s0.96,0.33 1.13,0.53c0.2,0.24 0.46,0.42 0.75,0.54C14.26,5.23 14.5,5.59 14.5,6c0,0.37 -0.61,1.33 0.26,2.37C15.34,9.06 14.8,10 14,10h-4C9.2,10 8.66,9.06 9.24,8.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_4.xml
deleted file mode 100644
index 5b91791..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56zM18,18H6v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,15.73 9.63,15 12,15c2.37,0 4.29,0.73 5.48,1.34C17.8,16.5 18,16.84 18,17.22V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4c0,-1.37 0,-3.5 0,-3.5C16,3.67 15.33,3 14.5,3c-0.52,0 -0.98,0.27 -1.25,0.67C12.98,3.27 12.52,3 12,3s-0.98,0.27 -1.25,0.67C10.48,3.27 10.02,3 9.5,3C8.67,3 8,3.67 8,4.5c0,0 0,2.12 0,3.5C8,10.21 9.79,12 12,12zM10,5.5h4V8c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_add.xml
deleted file mode 100644
index a2a0572..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM15,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM15,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM9,18c0.22,-0.72 3.31,-2 6,-2 2.7,0 5.8,1.29 6,2L9,18zM6,15v-3h3v-2L6,10L6,7L4,7v3L1,10v2h3v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_add_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_add_alt.xml
deleted file mode 100644
index c607bdf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_add_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9V6h-2v3h-3v2h3v3h2v-3h3V9H20zM9,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8C5,10.21 6.79,12 9,12zM9,6c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2S7,9.1 7,8C7,6.9 7.9,6 9,6zM15.39,14.56C13.71,13.7 11.53,13 9,13c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,15.07 1,16.1 1,17.22V20h16v-2.78C17,16.1 16.39,15.07 15.39,14.56zM15,18H3v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C4.71,15.73 6.63,15 9,15c2.37,0 4.29,0.73 5.48,1.34C14.8,16.5 15,16.84 15,17.22V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_add_alt_1.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_add_alt_1.xml
deleted file mode 100644
index 9b3cc43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_add_alt_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8s1.79,4 4,4S13,10.21 13,8zM11,8c0,1.1 -0.9,2 -2,2S7,9.1 7,8s0.9,-2 2,-2S11,6.9 11,8zM1,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S1,15.34 1,18zM3,18c0.2,-0.71 3.3,-2 6,-2c2.69,0 5.78,1.28 6,2H3zM20,15v-3h3v-2h-3V7h-2v3h-3v2h3v3H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_add_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_add_disabled.xml
deleted file mode 100644
index e230319..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_add_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6c1.1,0 2,0.9 2,2 0,0.99 -0.73,1.82 -1.67,1.97l-2.31,-2.31C13.19,6.72 14.01,6 15,6m0,-2c-2.21,0 -4,1.79 -4,4 0,0.18 0.03,0.35 0.05,0.52l3.43,3.43c0.17,0.02 0.34,0.05 0.52,0.05 2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4zM16.69,14.16L22.53,20L23,20v-2c0,-2.14 -3.56,-3.5 -6.31,-3.84zM13.01,16.13L14.88,18L9,18c0.08,-0.24 0.88,-1.01 2.91,-1.57l1.1,-0.3M1.41,1.71L0,3.12l4,4L4,10L1,10v2h3v3h2v-3h2.88l2.51,2.51C9.19,15.11 7,16.3 7,18v2h9.88l4,4 1.41,-1.41L1.41,1.71zM6,10v-0.88l0.88,0.88L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_off.xml
deleted file mode 100644
index 0394d01..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17.17l-3.37,-3.38c0.64,0.22 1.23,0.48 1.77,0.76C19.37,15.06 19.98,16.07 20,17.17zM21.19,21.19l-1.41,1.41L17.17,20H4v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66c1.29,-0.66 2.87,-1.22 4.67,-1.45L1.39,4.22l1.41,-1.41L21.19,21.19zM15.17,18l-3,-3c-0.06,0 -0.11,0 -0.17,0c-2.37,0 -4.29,0.73 -5.48,1.34C6.2,16.5 6,16.84 6,17.22V18H15.17zM12,6c1.1,0 2,0.9 2,2c0,0.86 -0.54,1.59 -1.3,1.87l1.48,1.48C15.28,10.64 16,9.4 16,8c0,-2.21 -1.79,-4 -4,-4c-1.4,0 -2.64,0.72 -3.35,1.82l1.48,1.48C10.41,6.54 11.14,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_outline.xml
deleted file mode 100644
index 0c04292..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.9c1.16,0 2.1,0.94 2.1,2.1s-0.94,2.1 -2.1,2.1S9.9,9.16 9.9,8s0.94,-2.1 2.1,-2.1m0,9c2.97,0 6.1,1.46 6.1,2.1v1.1L5.9,18.1L5.9,17c0,-0.64 3.13,-2.1 6.1,-2.1M12,4C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_pin.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_pin.xml
deleted file mode 100644
index 13963eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h4l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM19,18h-4.83l-0.59,0.59L12,20.17l-1.59,-1.59 -0.58,-0.58L5,18L5,4h14v14zM12,11c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM12,7c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM18,15.58c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.08 -6,3.58L6,17h12v-1.42zM8.48,15c0.74,-0.51 2.23,-1 3.52,-1s2.78,0.49 3.52,1L8.48,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_pin_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_pin_circle.xml
deleted file mode 100644
index 4ff5966..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_pin_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c1.33,0 4,0.67 4,2v0.16c-0.97,1.12 -2.4,1.84 -4,1.84s-3.03,-0.72 -4,-1.84L8,13c0,-1.33 2.67,-2 4,-2zM12,10c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14 4.05,-3.7 6,-6.8 6,-9.14zM12,2c4.2,0 8,3.22 8,8.2 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_remove.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_remove.xml
deleted file mode 100644
index 43709f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_remove.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4C7.79,4 6,5.79 6,8c0,2.21 1.79,4 4,4C12.21,12 14,10.21 14,8zM12,8c0,1.1 -0.9,2 -2,2c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2C11.1,6 12,6.9 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4C7.33,14 2,15.34 2,18zM4,18c0.2,-0.71 3.3,-2 6,-2c2.69,0 5.77,1.28 6,2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_remove_alt_1.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_remove_alt_1.xml
deleted file mode 100644
index 43709f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_remove_alt_1.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4C7.79,4 6,5.79 6,8c0,2.21 1.79,4 4,4C12.21,12 14,10.21 14,8zM12,8c0,1.1 -0.9,2 -2,2c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2C11.1,6 12,6.9 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4C7.33,14 2,15.34 2,18zM4,18c0.2,-0.71 3.3,-2 6,-2c2.69,0 5.77,1.28 6,2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/person_search.xml b/compose/material/material/icons/generator/raw-icons/outlined/person_search.xml
deleted file mode 100644
index 53f9ced..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/person_search.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S6,5.79 6,8C6,10.21 7.79,12 10,12zM10,6c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2S8,9.1 8,8C8,6.9 8.9,6 10,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18c0.22,-0.72 3.31,-2 6,-2c0,-0.7 0.13,-1.37 0.35,-1.99C7.62,13.91 2,15.27 2,18v2h9.54c-0.52,-0.58 -0.93,-1.25 -1.19,-2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.43,18.02C19.79,17.43 20,16.74 20,16c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4c0,2.21 1.79,4 4,4c0.74,0 1.43,-0.22 2.02,-0.57c0.93,0.93 1.62,1.62 2.57,2.57L22,20.59C20.5,19.09 21.21,19.79 19.43,18.02zM16,18c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C18,17.1 17.1,18 16,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/personal_injury.xml b/compose/material/material/icons/generator/raw-icons/outlined/personal_injury.xml
deleted file mode 100644
index 27ab0e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/personal_injury.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S8,3.79 8,6C8,8.21 9.79,10 12,10zM12,4c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,4.9 10.9,4 12,4zM18.39,12.56C16.71,11.7 14.53,11 12,11c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,13.07 4,14.1 4,15.22V22h2v-6.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,13.73 9.63,13 12,13c0.76,0 1.47,0.07 2.13,0.2l-1.55,3.3H9.75C8.23,16.5 7,17.73 7,19.25C7,20.77 8.23,22 9.75,22h2.18H18c1.1,0 2,-0.9 2,-2v-4.78C20,14.1 19.39,13.07 18.39,12.56zM10.94,20H9.75C9.34,20 9,19.66 9,19.25c0,-0.41 0.34,-0.75 0.75,-0.75h1.89L10.94,20zM18,20h-4.85l2.94,-6.27c0.54,0.2 1.01,0.41 1.4,0.61C17.8,14.5 18,14.84 18,15.22V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/personal_video.xml b/compose/material/material/icons/generator/raw-icons/outlined/personal_video.xml
deleted file mode 100644
index 9951b48..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/personal_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pest_control.xml b/compose/material/material/icons/generator/raw-icons/outlined/pest_control.xml
deleted file mode 100644
index cd4f92d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pest_control.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15v-2h-3.07c-0.05,-0.39 -0.12,-0.77 -0.22,-1.14l2.58,-1.49l-1,-1.73L16.92,10c-0.28,-0.48 -0.62,-0.91 -0.99,-1.29c0.1,-0.56 0.2,-1.69 -0.58,-2.89L17,4.17l-1.41,-1.41l-1.72,1.72c-1.68,-0.89 -3.1,-0.33 -3.73,0L8.41,2.76L7,4.17l1.65,1.65c-0.78,1.2 -0.68,2.34 -0.58,2.89C7.7,9.1 7.36,9.53 7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37 -0.17,0.75 -0.22,1.14H3v2h3.07c0.05,0.39 0.12,0.77 0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81 2.88,3 4.92,3s3.84,-1.19 4.92,-3l2.37,1.37l1,-1.73l-2.58,-1.49c0.1,-0.37 0.17,-0.75 0.22,-1.14H21zM12,6c0.88,0 1.62,0.57 1.88,1.36C13.29,7.13 12.66,7 12,7s-1.29,0.13 -1.88,0.36C10.38,6.57 11.12,6 12,6zM12,19c-2.21,0 -4,-2.24 -4,-5s1.79,-5 4,-5s4,2.24 4,5S14.21,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pest_control_rodent.xml b/compose/material/material/icons/generator/raw-icons/outlined/pest_control_rodent.xml
deleted file mode 100644
index 77979e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pest_control_rodent.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.86,14.97l-0.93,-0.84c0.48,-3.45 -2.87,-6.04 -6.05,-4.82C13.3,9.11 12.66,9 12,9c-4.26,0 -5.65,3.58 -5.89,4.85C4.89,13.47 4,12.35 4,11c0,-1.66 1.34,-3 3,-3h2.5C10.88,8 12,6.88 12,5.5C12,4.12 10.88,3 9.5,3H8C7.45,3 7,3.45 7,4c0,0.55 0.45,1 1,1h1.5C9.78,5 10,5.22 10,5.5C10,5.78 9.78,6 9.5,6H7c-2.76,0 -5,2.24 -5,5c0,2.44 1.76,4.47 4.07,4.91C6.51,18.79 8.99,21 12,21h6.53C21.64,21 23.23,17.11 20.86,14.97zM18.53,19H12c-1.21,0 -2.34,-0.54 -3.11,-1.48c-0.78,-0.95 -1.06,-2.16 -0.8,-3.41c0.31,-1.48 1.51,-2.69 2.99,-3.01c0.22,-0.05 0.45,-0.06 0.67,-0.07C11.28,11.74 11,12.58 11,13.5c0,1.24 0.5,2.37 1.32,3.18l1.41,-1.41C13.28,14.82 13,14.19 13,13.5c0,-1.42 1.2,-2.5 2.5,-2.5c1.38,0 2.5,1.12 2.5,2.5c0,0.46 -0.13,0.88 -0.35,1.25l1.87,1.7c0.31,0.28 0.48,0.67 0.48,1.09C20,18.34 19.34,19 18.53,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pets.xml b/compose/material/material/icons/generator/raw-icons/outlined/pets.xml
deleted file mode 100644
index 7adc005..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pets.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.86c-0.87,-1.02 -1.6,-1.89 -2.48,-2.91 -0.46,-0.54 -1.05,-1.08 -1.75,-1.32 -0.11,-0.04 -0.22,-0.07 -0.33,-0.09 -0.25,-0.04 -0.52,-0.04 -0.78,-0.04s-0.53,0 -0.79,0.05c-0.11,0.02 -0.22,0.05 -0.33,0.09 -0.7,0.24 -1.28,0.78 -1.75,1.32 -0.87,1.02 -1.6,1.89 -2.48,2.91 -1.31,1.31 -2.92,2.76 -2.62,4.79 0.29,1.02 1.02,2.03 2.33,2.32 0.73,0.15 3.06,-0.44 5.54,-0.44h0.18c2.48,0 4.81,0.58 5.54,0.44 1.31,-0.29 2.04,-1.31 2.33,-2.32 0.31,-2.04 -1.3,-3.49 -2.61,-4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phishing.xml b/compose/material/material/icons/generator/raw-icons/outlined/phishing.xml
deleted file mode 100644
index 2cec301..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phishing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.18V2h-2v4.18C13.84,6.6 13,7.7 13,9s0.84,2.4 2,2.82V15c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4v-1.17l1.59,1.59L10,14L5,9v6c0,3.31 2.69,6 6,6s6,-2.69 6,-6v-3.18c1.16,-0.41 2,-1.51 2,-2.82S18.16,6.6 17,6.18zM16,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S16.55,10 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone.xml
deleted file mode 100644
index e673cc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5c0.06,0.89 0.21,1.76 0.45,2.59l-1.2,1.2c-0.41,-1.2 -0.67,-2.47 -0.76,-3.79h1.51m9.86,12.02c0.85,0.24 1.72,0.39 2.6,0.45v1.49c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.19M7.5,3H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1 -1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_android.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_android.xml
deleted file mode 100644
index 91605fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L8,1C6.34,1 5,2.34 5,4v16c0,1.66 1.34,3 3,3h8c1.66,0 3,-1.34 3,-3L19,4c0,-1.66 -1.34,-3 -3,-3zM17,18L7,18L7,4h10v14zM14,21h-4v-1h4v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_bluetooth_speaker.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_bluetooth_speaker.xml
deleted file mode 100644
index 3818bb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_bluetooth_speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM14.71,9.5L17,7.21L17,11h0.5l2.85,-2.85L18.21,6l2.15,-2.15L17.5,1L17,1v3.79L14.71,2.5l-0.71,0.71L16.79,6 14,8.79l0.71,0.71zM18,2.91l0.94,0.94 -0.94,0.94L18,2.91zM18,7.21l0.94,0.94 -0.94,0.94L18,7.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_callback.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_callback.xml
deleted file mode 100644
index 8faa03d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_callback.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.51c-1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.89 0.22,1.76 0.46,2.59l-1.2,1.2c-0.41,-1.2 -0.67,-2.47 -0.76,-3.79zM19,18.97c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.19,-1.19c0.85,0.24 1.72,0.39 2.6,0.45v1.49zM18,9h-2.59l5.02,-5.02 -1.41,-1.41L14,7.59V5h-2v6h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_disabled.xml
deleted file mode 100644
index be2d13f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.54l-1.43,-1.43c0.56,-0.73 1.05,-1.5 1.47,-2.32l-2.2,-2.2c-0.28,-0.28 -0.36,-0.67 -0.25,-1.02C15.3,6.45 15.5,5.25 15.5,4c0,-0.55 0.45,-1 1,-1H20c0.55,0 1,0.45 1,1C21,7.98 19.63,11.64 17.34,14.54zM14.52,17.35C11.63,19.64 7.97,21 4,21c-0.55,0 -1,-0.45 -1,-1v-3.49c0,-0.55 0.45,-1 1,-1c1.24,0 2.45,-0.2 3.57,-0.57c0.1,-0.04 0.21,-0.05 0.31,-0.05c0.26,0 0.51,0.1 0.71,0.29l2.2,2.2c0.81,-0.42 1.58,-0.9 2.3,-1.46L1.39,4.22l1.42,-1.41L21.19,21.2l-1.41,1.41L14.52,17.35zM7.6,17.02c-0.85,0.24 -1.72,0.39 -2.6,0.45v1.49c1.32,-0.09 2.59,-0.35 3.8,-0.75L7.6,17.02zM17.46,5c-0.06,0.89 -0.21,1.76 -0.45,2.59l1.2,1.2c0.41,-1.2 0.67,-2.47 0.76,-3.79H17.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_enabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_enabled.xml
deleted file mode 100644
index 2b0c9f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_enabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.46,5c-0.06,0.89 -0.21,1.76 -0.45,2.59l1.2,1.2c0.41,-1.2 0.67,-2.47 0.76,-3.79H17.46zM7.6,17.02c-0.85,0.24 -1.72,0.39 -2.6,0.45v1.49c1.32,-0.09 2.59,-0.35 3.8,-0.75L7.6,17.02zM16.5,3H20c0.55,0 1,0.45 1,1c0,9.39 -7.61,17 -17,17c-0.55,0 -1,-0.45 -1,-1v-3.49c0,-0.55 0.45,-1 1,-1c1.24,0 2.45,-0.2 3.57,-0.57c0.1,-0.04 0.21,-0.05 0.31,-0.05c0.26,0 0.51,0.1 0.71,0.29l2.2,2.2c2.83,-1.45 5.15,-3.76 6.59,-6.59l-2.2,-2.2c-0.28,-0.28 -0.36,-0.67 -0.25,-1.02C15.3,6.45 15.5,5.25 15.5,4C15.5,3.45 15.95,3 16.5,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_forwarded.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_forwarded.xml
deleted file mode 100644
index 4c85fc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_forwarded.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM18,11l5,-5 -5,-5v3h-4v4h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_in_talk.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_in_talk.xml
deleted file mode 100644
index f16bbbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_in_talk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12h2c0,-2.76 -2.24,-5 -5,-5v2c1.66,0 3,1.34 3,3zM19,12h2c0,-4.97 -4.03,-9 -9,-9v2c3.87,0 7,3.13 7,7zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_iphone.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_iphone.xml
deleted file mode 100644
index 23ef826..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_iphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,1h-8C6.12,1 5,2.12 5,3.5v17C5,21.88 6.12,23 7.5,23h8c1.38,0 2.5,-1.12 2.5,-2.5v-17C18,2.12 16.88,1 15.5,1zM11.5,22c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,18L7,18L7,4h9v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_locked.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_locked.xml
deleted file mode 100644
index 9c49d43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_locked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1h-1v5h6V5H20zM19,5h-2V4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.2,14.87l-3.67,-0.73c-0.5,-0.1 -0.83,0.2 -0.9,0.27l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3L4,3C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.55,0.03 1.03,-0.43 1.03,-1v-4.15C21,15.37 20.66,14.96 20.2,14.87zM5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7 5.27,6.37 5.1,5zM19,18.9c-1.37,-0.18 -2.7,-0.53 -4,-1.07l1.65,-1.63L19,16.67V18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_missed.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_missed.xml
deleted file mode 100644
index 87fc90a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.71,16.67C20.66,13.78 16.54,12 12,12S3.34,13.78 0.29,16.67c-0.18,0.18 -0.29,0.43 -0.29,0.71 0,0.28 0.11,0.53 0.29,0.71l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.11 0.7,-0.28 0.79,-0.74 1.69,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.5 0.56,-0.9v-3.1c1.45,-0.48 3,-0.73 4.6,-0.73s3.15,0.25 4.6,0.72v3.1c0,0.39 0.23,0.74 0.56,0.9 0.98,0.49 1.87,1.12 2.67,1.85 0.18,0.18 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71 0,-0.28 -0.12,-0.52 -0.3,-0.7zM5.4,17.23c-0.66,0.37 -1.29,0.8 -1.87,1.27l-1.07,-1.07c0.91,-0.75 1.9,-1.39 2.95,-1.9v1.7zM20.48,18.49c-0.6,-0.48 -1.22,-0.9 -1.88,-1.27v-1.7c1.05,0.51 2.03,1.15 2.95,1.9l-1.07,1.07zM7,6.43l4.94,4.94 7.07,-7.07 -1.41,-1.42 -5.66,5.66L8.4,5L11,5L11,3L5,3v6h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phone_paused.xml b/compose/material/material/icons/generator/raw-icons/outlined/phone_paused.xml
deleted file mode 100644
index bedd6be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phone_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5c0.06,0.88 0.21,1.75 0.44,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79h1.51m9.86,12.01c0.85,0.24 1.72,0.39 2.6,0.45v1.5c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.19M7.5,3L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1 -1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1zM15,3h2v7h-2zM19,3h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phonelink.xml b/compose/material/material/icons/generator/raw-icons/outlined/phonelink.xml
deleted file mode 100644
index 7be6491..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phonelink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h18L22,4L4,4c-1.1,0 -2,0.9 -2,2v11L0,17v3h14v-3L4,17L4,6zM23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_erase.xml b/compose/material/material/icons/generator/raw-icons/outlined/phonelink_erase.xml
deleted file mode 100644
index 0749108..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_erase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.2l-1,-1 -4,4 -4,-4 -1,1 4,4 -4,4 1,1 4,-4 4,4 1,-1 -4,-4 4,-4zM19,1H9c-1.1,0 -2,0.9 -2,2v3h2V4h10v16H9v-2H7v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_lock.xml b/compose/material/material/icons/generator/raw-icons/outlined/phonelink_lock.xml
deleted file mode 100644
index 6c5bb39..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L9,1c-1.1,0 -2,0.9 -2,2v3h2L9,4h10v16L9,20v-2L7,18v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L21,3c0,-1.1 -0.9,-2 -2,-2zM10.8,11L10.8,9.5C10.8,8.1 9.4,7 8,7S5.2,8.1 5.2,9.5L5.2,11c-0.6,0 -1.2,0.6 -1.2,1.2v3.5c0,0.7 0.6,1.3 1.2,1.3h5.5c0.7,0 1.3,-0.6 1.3,-1.2v-3.5c0,-0.7 -0.6,-1.3 -1.2,-1.3zM9.5,11h-3L6.5,9.5c0,-0.8 0.7,-1.3 1.5,-1.3s1.5,0.5 1.5,1.3L9.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/phonelink_off.xml
deleted file mode 100644
index 6608f21..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L22,4L7.39,4l2,2zM24,19L24,9c0,-0.55 -0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1v3.61l2,2L18,10h4v7h-1.61l2.93,2.93c0.39,-0.13 0.68,-0.49 0.68,-0.93zM2.06,1.51L0.65,2.92l1.82,1.82C2.18,5.08 2,5.52 2,6v11L0,17v3h17.73l2.35,2.35 1.41,-1.41L2.06,1.51zM4,17L4,6.27L14.73,17L4,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_ring.xml b/compose/material/material/icons/generator/raw-icons/outlined/phonelink_ring.xml
deleted file mode 100644
index 58634ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_ring.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.1,7.7l-1,1c1.8,1.8 1.8,4.6 0,6.5l1,1c2.5,-2.3 2.5,-6.1 0,-8.5zM18,9.8l-1,1c0.5,0.7 0.5,1.6 0,2.3l1,1c1.2,-1.2 1.2,-3 0,-4.3zM14,1L4,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L16,3c0,-1.1 -0.9,-2 -2,-2zM14,20L4,20L4,4h10v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_setup.xml b/compose/material/material/icons/generator/raw-icons/outlined/phonelink_setup.xml
deleted file mode 100644
index ace1946..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/phonelink_setup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3v3h2L9,4h10v16L9,20v-2L7,18v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L21,3c0,-1.1 -0.9,-2 -2,-2L9,1c-1.1,0 -2,0.9 -2,2zM9.5,15.5c0.29,-0.12 0.55,-0.29 0.8,-0.48l-0.02,0.03 1.01,0.39c0.23,0.09 0.49,0 0.61,-0.22l0.84,-1.46c0.12,-0.21 0.07,-0.49 -0.12,-0.64l-0.85,-0.68 -0.02,0.03c0.02,-0.16 0.05,-0.32 0.05,-0.48s-0.03,-0.32 -0.05,-0.48l0.02,0.03 0.85,-0.68c0.19,-0.15 0.24,-0.43 0.12,-0.64l-0.84,-1.46c-0.12,-0.21 -0.38,-0.31 -0.61,-0.22l-1.01,0.39 0.02,0.03c-0.25,-0.17 -0.51,-0.34 -0.8,-0.46l-0.17,-1.08C9.3,7.18 9.09,7 8.84,7L7.16,7c-0.25,0 -0.46,0.18 -0.49,0.42L6.5,8.5c-0.29,0.12 -0.55,0.29 -0.8,0.48l0.02,-0.03 -1.02,-0.39c-0.23,-0.09 -0.49,0 -0.61,0.22l-0.84,1.46c-0.12,0.21 -0.07,0.49 0.12,0.64l0.85,0.68 0.02,-0.03c-0.02,0.15 -0.05,0.31 -0.05,0.47s0.03,0.32 0.05,0.48l-0.02,-0.03 -0.85,0.68c-0.19,0.15 -0.24,0.43 -0.12,0.64l0.84,1.46c0.12,0.21 0.38,0.31 0.61,0.22l1.01,-0.39 -0.01,-0.04c0.25,0.19 0.51,0.36 0.8,0.48l0.17,1.07c0.03,0.25 0.24,0.43 0.49,0.43h1.68c0.25,0 0.46,-0.18 0.49,-0.42l0.17,-1.08zM6,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo.xml
deleted file mode 100644
index a740230..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14L5,19L5,5h14m0,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14.14,11.86l-3,3.87L9,13.14 6,17h12l-3.86,-5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_album.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_album.xml
deleted file mode 100644
index 3d26bc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,20H6V4h5v7l2.5,-1.5L16,11V4h2V20zM13.62,13.5L17,18H7l2.38,-3.17L11,17L13.62,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_camera.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_camera.xml
deleted file mode 100644
index 4e8623f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,4l1.83,2L20,6v12L4,18L4,6h4.05l1.83,-2h4.24M15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2zM12,9c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3m0,-2c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_camera_back.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_camera_back.xml
deleted file mode 100644
index 1c2e23f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_camera_back.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19H4V7h4.05l1.83,-2h4.24l1.83,2H20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,16l-2.25,-3l-3,4l12,0l-3.75,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_camera_front.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_camera_front.xml
deleted file mode 100644
index cbd60fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_camera_front.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19H4V7h4.05l1.83,-2h4.24l1.83,2H20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.78,14.58C13.93,14.21 12.99,14 12,14s-1.93,0.21 -2.78,0.58C8.48,14.9 8,15.62 8,16.43V17h8v-0.57C16,15.62 15.52,14.9 14.78,14.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_filter.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_filter.xml
deleted file mode 100644
index c2e069f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10v9L4.98,19L4.98,5h9L13.98,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-9h-2zM16.06,7.94L17,10l0.94,-2.06L20,7l-2.06,-0.94L17,4l-0.94,2.06L14,7zM12,8l-1.25,2.75L8,12l2.75,1.25L12,16l1.25,-2.75L16,12l-2.75,-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_library.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_library.xml
deleted file mode 100644
index 863adc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v12L8,16L8,4h12m0,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM11.5,11.67l1.69,2.26 2.48,-3.1L19,15L9,15zM2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_actual.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_actual.xml
deleted file mode 100644
index 3b6e851..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_actual.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3C2,3 1,4 1,5v14c0,1.1 0.9,2 2,2h18c1,0 2,-1 2,-2L23,5c0,-1 -1,-2 -2,-2zM21,18.92c-0.02,0.03 -0.06,0.06 -0.08,0.08L3,19L3,5.08L3.08,5h17.83c0.03,0.02 0.06,0.06 0.08,0.08v13.84zM11,15.51L8.5,12.5 5,17h14l-4.5,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_large.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_large.xml
deleted file mode 100644
index e6b238f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15h2v2h-2v-2zM21,11h2v2h-2v-2zM23,19h-2v2c1,0 2,-1 2,-2zM13,3h2v2h-2L13,3zM21,7h2v2h-2L21,7zM21,3v2h2c0,-1 -1,-2 -2,-2zM1,7h2v2L1,9L1,7zM17,3h2v2h-2L17,3zM17,19h2v2h-2v-2zM3,3C2,3 1,4 1,5h2L3,3zM9,3h2v2L9,5L9,3zM5,3h2v2L5,5L5,3zM1,11v8c0,1.1 0.9,2 2,2h12L15,11L1,11zM3,19l2.5,-3.21 1.79,2.15 2.5,-3.22L13,19L3,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_small.xml b/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_small.xml
deleted file mode 100644
index 017c1a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/photo_size_select_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15h-2v2h2v-2zM23,11h-2v2h2v-2zM23,19h-2v2c1,0 2,-1 2,-2zM15,3h-2v2h2L15,3zM23,7h-2v2h2L23,7zM21,3v2h2c0,-1 -1,-2 -2,-2zM3,21h8v-6L1,15v4c0,1.1 0.9,2 2,2zM3,7L1,7v2h2L3,7zM15,19h-2v2h2v-2zM19,3h-2v2h2L19,3zM19,19h-2v2h2v-2zM3,3C2,3 1,4 1,5h2L3,3zM3,11L1,11v2h2v-2zM11,3L9,3v2h2L11,3zM7,3L5,3v2h2L7,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/php.xml b/compose/material/material/icons/generator/raw-icons/outlined/php.xml
deleted file mode 100644
index 1b65133..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/php.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9zM8,10.5v1C8,12.3 7.3,13 6.5,13h-2v2H3V9h3.5C7.3,9 8,9.7 8,10.5zM6.5,10.5h-2v1h2V10.5zM21.5,10.5v1c0,0.8 -0.7,1.5 -1.5,1.5h-2v2h-1.5V9H20C20.8,9 21.5,9.7 21.5,10.5zM20,10.5h-2v1h2V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/piano.xml b/compose/material/material/icons/generator/raw-icons/outlined/piano.xml
deleted file mode 100644
index 2df4e33..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/piano.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM14,14.5h0.25V19h-4.5v-4.5H10c0.55,0 1,-0.45 1,-1V5h2v8.5C13,14.05 13.45,14.5 14,14.5zM5,5h2v8.5c0,0.55 0.45,1 1,1h0.25V19H5V5zM19,19h-3.25v-4.5H16c0.55,0 1,-0.45 1,-1V5h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/piano_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/piano_off.xml
deleted file mode 100644
index db02190..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/piano_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61L21.19,21.19zM8.25,19H5V7.83l2,2v3.67c0,0.55 0.45,1 1,1h0.25V19zM9.75,19v-4.5H10c0.46,0 0.82,-0.31 0.94,-0.73l3.31,3.31V19H9.75zM11,8.17L5.83,3H19c1.1,0 2,0.9 2,2v13.17l-2,-2V5h-2v8.5c0,0.19 -0.07,0.36 -0.16,0.51L13,10.17V5h-2V8.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/picture_as_pdf.xml b/compose/material/material/icons/generator/raw-icons/outlined/picture_as_pdf.xml
deleted file mode 100644
index eb58a52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/picture_as_pdf.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM16,12L16,9c0,-0.55 -0.45,-1 -1,-1h-2v5h2c0.55,0 1,-0.45 1,-1zM14,9h1v3h-1L14,9zM18,11h1v-1h-1L18,9h1L19,8h-2v5h1zM10,11h1c0.55,0 1,-0.45 1,-1L12,9c0,-0.55 -0.45,-1 -1,-1L9,8v5h1v-2zM10,9h1v1h-1L10,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/picture_in_picture.xml b/compose/material/material/icons/generator/raw-icons/outlined/picture_in_picture.xml
deleted file mode 100644
index ce1d054..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/picture_in_picture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-8v6h8L19,7zM17,11h-4L13,9h4v2zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.98h18v14.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/picture_in_picture_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/picture_in_picture_alt.xml
deleted file mode 100644
index 349cb85..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/picture_in_picture_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-8v6h8v-6zM17,15h-4v-2h4v2zM21,3L3,3c-1.1,0 -2,0.88 -2,1.98L1,19c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,4.98C23,3.88 22.1,3 21,3zM21,19.02L3,19.02L3,4.97h18v14.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pie_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/pie_chart.xml
deleted file mode 100644
index db85fec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pie_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM19.93,11L13,11L13,4.07c3.61,0.45 6.48,3.32 6.93,6.93zM4,12c0,-4.07 3.06,-7.44 7,-7.93v15.86c-3.94,-0.49 -7,-3.86 -7,-7.93zM13,19.93L13,13h6.93c-0.45,3.61 -3.32,6.48 -6.93,6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pie_chart_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/pie_chart_outline.xml
deleted file mode 100644
index 7359770..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pie_chart_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM13,4.07c3.61,0.45 6.48,3.33 6.93,6.93L13,11L13,4.07zM4,12c0,-4.06 3.07,-7.44 7,-7.93v15.87c-3.93,-0.5 -7,-3.88 -7,-7.94zM13,19.93L13,13h6.93c-0.45,3.61 -3.32,6.48 -6.93,6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pin.xml b/compose/material/material/icons/generator/raw-icons/outlined/pin.xml
deleted file mode 100644
index 87b9fae..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pin.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.49,10.5l0,4.5l1.15,0l0,-6l-0.87,0l-1.76,1.27l0.58,0.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.47,10.05c0.5,0 0.81,0.32 0.81,0.72c0,0.37 -0.14,0.64 -0.54,1.06c-0.36,0.38 -1.06,1.08 -2.13,2.15V15h3.89v-0.99h-2.37l-0.03,-0.05c0.68,-0.68 1.15,-1.14 1.4,-1.39c0.61,-0.6 0.92,-1.22 0.92,-1.86c0,-0.24 -0.05,-1.04 -0.91,-1.48C12.04,9 11.25,8.87 10.56,9.2c-0.82,0.39 -0.99,1.13 -1,1.15l1.01,0.42C10.67,10.44 10.95,10.05 11.47,10.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.99,13.94c-0.83,0 -0.99,-0.76 -1.02,-0.86l-1.03,0.41c0.45,1.59 2.01,1.51 2.05,1.51c1.2,0 1.68,-0.72 1.76,-0.85c0.32,-0.49 0.36,-1.24 -0.01,-1.76c-0.17,-0.24 -0.4,-0.41 -0.68,-0.52V11.8c0.2,-0.1 0.37,-0.26 0.52,-0.48c0.26,-0.41 0.31,-1.07 -0.02,-1.57C18.48,9.64 18.03,9 16.94,9c-1.26,0 -1.74,0.9 -1.85,1.24l0.99,0.41c0.11,-0.32 0.35,-0.64 0.85,-0.64c0.44,0 0.75,0.26 0.75,0.65c0,0.58 -0.55,0.72 -0.88,0.72h-0.46v1h0.5c0.56,0 1.04,0.24 1.04,0.79C17.88,13.66 17.4,13.94 16.99,13.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pin_drop.xml b/compose/material/material/icons/generator/raw-icons/outlined/pin_drop.xml
deleted file mode 100644
index 9722f2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pin_drop.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.93,0 5,1.4 5,5.15 0,2.16 -1.72,4.67 -5,7.32 -3.28,-2.65 -5,-5.17 -5,-7.32C7,5.4 10.07,4 12,4m0,-2C8.73,2 5,4.46 5,9.15c0,3.12 2.33,6.41 7,9.85 4.67,-3.44 7,-6.73 7,-9.85C19,4.46 15.27,2 12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2a2,2 0,1 0,0 -4zM5,20h14v2H5v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pin_end.xml b/compose/material/material/icons/generator/raw-icons/outlined/pin_end.xml
deleted file mode 100644
index 348668cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pin_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12V6H4v12h10l0,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2v6H20zM19,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.66,0 3,-1.34 3,-3S20.66,14 19,14zM14.66,8H9v5.66h2v-2.24l2.95,2.95l1.41,-1.41L12.41,10h2.24V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pin_invoke.xml b/compose/material/material/icons/generator/raw-icons/outlined/pin_invoke.xml
deleted file mode 100644
index 349c2a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pin_invoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12v6c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10l0,2H4v12h16v-6H22zM22,7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C20.66,10 22,8.66 22,7zM9.34,12h2.24l-2.95,2.95l1.41,1.41L13,13.42v2.24h2V10H9.34V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pinch.xml b/compose/material/material/icons/generator/raw-icons/outlined/pinch.xml
deleted file mode 100644
index b81fe1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pinch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6zM21.89,13.77l-3.8,-1.67C17.96,12.04 17.81,12 17.65,12H17V7.5C17,6.12 15.88,5 14.5,5S12,6.12 12,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L7,17.22l5.12,5.19C12.49,22.79 13,23 13.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C23.12,15.03 22.68,14.17 21.89,13.77zM20.08,21h-6.55l-3.7,-3.78L14,18.11V7.5C14,7.22 14.22,7 14.5,7S15,7.22 15,7.5v6.18h1.76L21,15.56L20.08,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pivot_table_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/pivot_table_chart.xml
deleted file mode 100644
index 4d36fee..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pivot_table_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c0,-1.1 -0.9,-2 -2,-2h-9v5h11V5zM3,19c0,1.1 0.9,2 2,2h3V10H3V19zM3,5v3h5V3H5C3.9,3 3,3.9 3,5zM18,8.99L14,13l1.41,1.41l1.59,-1.6V15c0,1.1 -0.9,2 -2,2h-2.17l1.59,-1.59L13,14l-4,4l4,4l1.41,-1.41L12.83,19H15c2.21,0 4,-1.79 4,-4v-2.18l1.59,1.6L22,13L18,8.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pix.xml b/compose/material/material/icons/generator/raw-icons/outlined/pix.xml
deleted file mode 100644
index a1fea47..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pix.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.45,16.52l-3.01,-3.01c-0.11,-0.11 -0.24,-0.13 -0.31,-0.13s-0.2,0.02 -0.31,0.13L8.8,16.53c-0.34,0.34 -0.87,0.89 -2.64,0.89l3.71,3.7c1.17,1.17 3.07,1.17 4.24,0l3.72,-3.71C16.92,17.41 16.16,17.23 15.45,16.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,7.47l3.02,3.02c0.08,0.08 0.2,0.13 0.31,0.13s0.23,-0.05 0.31,-0.13l2.99,-2.99c0.71,-0.74 1.52,-0.91 2.43,-0.91l-3.72,-3.71c-1.17,-1.17 -3.07,-1.17 -4.24,0l-3.71,3.7C7.95,6.58 8.49,7.16 8.8,7.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,9.85l-2.25,-2.26H17.6c-0.54,0 -1.08,0.22 -1.45,0.61l-3,3c-0.28,0.28 -0.65,0.42 -1.02,0.42c-0.36,0 -0.74,-0.15 -1.02,-0.42L8.09,8.17c-0.38,-0.38 -0.9,-0.6 -1.45,-0.6H5.17l-2.29,2.3c-1.17,1.17 -1.17,3.07 0,4.24l2.29,2.3h1.48c0.54,0 1.06,-0.22 1.45,-0.6l3.02,-3.02c0.28,-0.28 0.65,-0.42 1.02,-0.42c0.37,0 0.74,0.14 1.02,0.42l3.01,3.01c0.38,0.38 0.9,0.6 1.45,0.6h1.26l2.25,-2.26C22.3,12.96 22.3,11.04 21.11,9.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/place.xml b/compose/material/material/icons/generator/raw-icons/outlined/place.xml
deleted file mode 100644
index 9772ca2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/place.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14 4.05,-3.7 6,-6.8 6,-9.14zM12,2c4.2,0 8,3.22 8,8.2 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/plagiarism.xml b/compose/material/material/icons/generator/raw-icons/outlined/plagiarism.xml
deleted file mode 100644
index 808e0df..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/plagiarism.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM18,20L6,20V4h7v5h5V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.03,11.03c-1.37,1.37 -1.37,3.58 0,4.95c1.12,1.12 2.8,1.31 4.13,0.59l1.88,1.88l1.41,-1.41l-1.88,-1.88c0.71,-1.33 0.53,-3.01 -0.59,-4.13C12.61,9.66 10.39,9.66 9.03,11.03zM12.56,14.56c-0.59,0.59 -1.54,0.59 -2.12,0c-0.59,-0.59 -0.59,-1.54 0,-2.12c0.59,-0.59 1.54,-0.59 2.12,0C13.15,13.03 13.15,13.97 12.56,14.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/play_arrow.xml b/compose/material/material/icons/generator/raw-icons/outlined/play_arrow.xml
deleted file mode 100644
index 93ec97b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/play_arrow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8.64L15.27,12 10,15.36V8.64M8,5v14l11,-7L8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/play_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/play_circle.xml
deleted file mode 100644
index 1b53b28..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/play_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM9.5,16.5l7,-4.5l-7,-4.5V16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/play_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/play_circle_filled.xml
deleted file mode 100644
index 52f6c50..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/play_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,16.5v-9l6,4.5 -6,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/play_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/play_circle_outline.xml
deleted file mode 100644
index 09474e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/play_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.5l6,-4.5 -6,-4.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/play_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/play_disabled.xml
deleted file mode 100644
index 7a85f9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/play_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.45,13.62l2.55,-1.62l-11,-7l0,0.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L8,10.83V19l4.99,-3.18l6.78,6.78l1.41,-1.41L2.81,2.81zM10,15.36v-2.53l1.55,1.55L10,15.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/play_for_work.xml b/compose/material/material/icons/generator/raw-icons/outlined/play_for_work.xml
deleted file mode 100644
index 4a713b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/play_for_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5v5.59L7.5,10.59l4.5,4.5 4.5,-4.5L13,10.59L13,5h-2zM6,14c0,3.31 2.69,6 6,6s6,-2.69 6,-6h-2c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4L6,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/play_lesson.xml b/compose/material/material/icons/generator/raw-icons/outlined/play_lesson.xml
deleted file mode 100644
index b162a5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/play_lesson.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20V4h2v7l2.5,-1.5L12,11V4h5v7.08c0.33,-0.05 0.66,-0.08 1,-0.08s0.67,0.03 1,0.08V4c0,-1.1 -0.9,-2 -2,-2H5C3.9,2 3,2.9 3,4v16c0,1.1 0.9,2 2,2h7.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H5zM18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM16.75,20.5v-5l4,2.5L16.75,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/playlist_add.xml
deleted file mode 100644
index 21a683b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18zM3,16h7v-2H3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_check.xml b/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_check.xml
deleted file mode 100644
index b426cf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_check.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.59,11.93l-4.25,4.24l-2.12,-2.12l-1.41,1.41l3.53,3.54l5.66,-5.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_check_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_check_circle.xml
deleted file mode 100644
index 5a3d2a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4zM12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2zM14,10H7v2h7V10zM14,7H7v2h7V7zM7,15h3v-2H7V15zM19,13.41L17.59,12l-3.54,3.54l-1.41,-1.41l-1.41,1.41l2.83,2.83L19,13.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_circle.xml
deleted file mode 100644
index 2951dcd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/playlist_add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM14,10H7v2h7V10zM14,7H7v2h7V7zM7,15h3v-2H7V15zM19,13v2h-2v2h-2v-2h-2v-2h2v-2h2v2H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/playlist_play.xml b/compose/material/material/icons/generator/raw-icons/outlined/playlist_play.xml
deleted file mode 100644
index 2ca0b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/playlist_play.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13l0,8l6,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/playlist_remove.xml b/compose/material/material/icons/generator/raw-icons/outlined/playlist_remove.xml
deleted file mode 100644
index ff81cff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/playlist_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM3,16h7v-2H3V16zM14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/plumbing.xml b/compose/material/material/icons/generator/raw-icons/outlined/plumbing.xml
deleted file mode 100644
index 724c184..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/plumbing.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.28,4.93l-2.12,-2.12c-0.78,-0.78 -2.05,-0.78 -2.83,0L11.5,5.64l2.12,2.12l2.12,-2.12l3.54,3.54C20.45,8 20.45,6.1 19.28,4.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.49,13.77c0.59,0.59 1.54,0.59 2.12,0l2.47,-2.47L7.96,9.17l-2.47,2.47C4.9,12.23 4.9,13.18 5.49,13.77L5.49,13.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18,-3.18C9.85,5.4 8.9,5.4 8.32,5.99c-0.59,0.59 -0.59,1.54 0,2.12l3.18,3.18L10.79,12l-6.36,6.36c-0.78,0.78 -0.78,2.05 0,2.83c0.78,0.78 2.05,0.78 2.83,0L16.45,12c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L15.04,7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/plus_one.xml b/compose/material/material/icons/generator/raw-icons/outlined/plus_one.xml
deleted file mode 100644
index ca5d41c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/plus_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8L8,8v4L4,12v2h4v4h2v-4h4v-2h-4L10,8zM14.5,6.08L14.5,7.9l2.5,-0.5L17,18h2L19,5l-4.5,1.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/podcasts.xml b/compose/material/material/icons/generator/raw-icons/outlined/podcasts.xml
deleted file mode 100644
index e8d43dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/podcasts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,0.74 -0.4,1.38 -1,1.72V22h-2v-8.28c-0.6,-0.35 -1,-0.98 -1,-1.72c0,-1.1 0.9,-2 2,-2S14,10.9 14,12zM12,6c-3.31,0 -6,2.69 -6,6c0,1.74 0.75,3.31 1.94,4.4l1.42,-1.42C8.53,14.25 8,13.19 8,12c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.19 -0.53,2.25 -1.36,2.98l1.42,1.42C17.25,15.31 18,13.74 18,12C18,8.69 15.31,6 12,6zM12,2C6.48,2 2,6.48 2,12c0,2.85 1.2,5.41 3.11,7.24l1.42,-1.42C4.98,16.36 4,14.29 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8c0,2.29 -0.98,4.36 -2.53,5.82l1.42,1.42C20.8,17.41 22,14.85 22,12C22,6.48 17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/point_of_sale.xml b/compose/material/material/icons/generator/raw-icons/outlined/point_of_sale.xml
deleted file mode 100644
index 9c40b5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/point_of_sale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2H7C5.9,2 5,2.9 5,4v2c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V4C19,2.9 18.1,2 17,2zM17,6H7V4h10V6zM20,22H4c-1.1,0 -2,-0.9 -2,-2v-1h20v1C22,21.1 21.1,22 20,22zM18.53,10.19C18.21,9.47 17.49,9 16.7,9H7.3c-0.79,0 -1.51,0.47 -1.83,1.19L2,18h20L18.53,10.19zM9.5,16h-1C8.22,16 8,15.78 8,15.5C8,15.22 8.22,15 8.5,15h1c0.28,0 0.5,0.22 0.5,0.5C10,15.78 9.78,16 9.5,16zM9.5,14h-1C8.22,14 8,13.78 8,13.5C8,13.22 8.22,13 8.5,13h1c0.28,0 0.5,0.22 0.5,0.5C10,13.78 9.78,14 9.5,14zM9.5,12h-1C8.22,12 8,11.78 8,11.5C8,11.22 8.22,11 8.5,11h1c0.28,0 0.5,0.22 0.5,0.5C10,11.78 9.78,12 9.5,12zM12.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,15.78 12.78,16 12.5,16zM12.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,13.78 12.78,14 12.5,14zM12.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,11.78 12.78,12 12.5,12zM15.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,15.78 15.78,16 15.5,16zM15.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,13.78 15.78,14 15.5,14zM15.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,11.78 15.78,12 15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/policy.xml b/compose/material/material/icons/generator/raw-icons/outlined/policy.xml
deleted file mode 100644
index abb9b06..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/policy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1zM19,11c0,1.85 -0.51,3.65 -1.38,5.21l-1.45,-1.45c1.29,-1.94 1.07,-4.58 -0.64,-6.29c-1.95,-1.95 -5.12,-1.95 -7.07,0c-1.95,1.95 -1.95,5.12 0,7.07c1.71,1.71 4.35,1.92 6.29,0.64l1.72,1.72c-1.19,1.42 -2.73,2.51 -4.47,3.04C7.98,19.69 5,15.52 5,11V6.3l7,-3.11l7,3.11V11zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/poll.xml b/compose/material/material/icons/generator/raw-icons/outlined/poll.xml
deleted file mode 100644
index 91bc3f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/poll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,10h2v7L7,17zM11,7h2v10h-2zM15,13h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/polyline.xml b/compose/material/material/icons/generator/raw-icons/outlined/polyline.xml
deleted file mode 100644
index 762334a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/polyline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16v1.26l-6,-3v-3.17L11.7,8H16V2h-6v4.9L7.3,10H3v6h5l7,3.5V22h6v-6H15zM12,4h2v2h-2V4zM7,14H5v-2h2V14zM19,20h-2v-2h2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/polymer.xml b/compose/material/material/icons/generator/raw-icons/outlined/polymer.xml
deleted file mode 100644
index b7134f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/polymer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-4L7.11,16.63 4.5,12 9,4H5L0.5,12 5,20h4l7.89,-12.63L19.5,12 15,20h4l4.5,-8L19,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pool.xml b/compose/material/material/icons/generator/raw-icons/outlined/pool.xml
deleted file mode 100644
index 7bfeec7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pool.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8l-3.25,3.25c0.31,0.12 0.56,0.27 0.77,0.39 0.37,0.23 0.59,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36 0.55,0 0.78,-0.13 1.15,-0.36 0.12,-0.07 0.26,-0.15 0.41,-0.23L10.48,5C8.93,3.45 7.5,2.99 5,3v2.5c1.82,-0.01 2.89,0.39 4,1.5l1,1zM22,16.5h-0.02,0.02zM5.35,15.5c0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.06,0.63 2.16,0.64v-2c-0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.6,0.36 -1.15,0.36s-0.78,-0.14 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36v2c1.11,0 1.73,-0.37 2.2,-0.64 0.37,-0.23 0.6,-0.36 1.15,-0.36zM18.67,18c-1.11,0 -1.73,0.37 -2.18,0.64 -0.37,0.23 -0.6,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36s-0.78,-0.13 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36v2c1.11,0 1.73,-0.37 2.19,-0.64 0.37,-0.23 0.6,-0.36 1.15,-0.36 0.55,0 0.78,0.13 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.19,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.72,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64v-2c-0.56,0 -0.78,-0.13 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/portable_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/portable_wifi_off.xml
deleted file mode 100644
index c458786..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/portable_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.42,2.36L2.01,3.78 4.1,5.87C2.79,7.57 2,9.69 2,12c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,17.53 4,14.96 4,12c0,-1.76 0.57,-3.38 1.53,-4.69l1.43,1.44C6.36,9.68 6,10.8 6,12c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-0.65 0.17,-1.25 0.44,-1.79l1.58,1.58L10,12c0,1.1 0.9,2 2,2l0.21,-0.02 7.52,7.52 1.41,-1.41L3.42,2.36zM17.71,13.82c0.18,-0.57 0.29,-1.19 0.29,-1.82 0,-3.31 -2.69,-6 -6,-6 -0.63,0 -1.25,0.11 -1.82,0.29l1.72,1.72c0.03,0 0.06,-0.01 0.1,-0.01 2.21,0 4,1.79 4,4 0,0.04 -0.01,0.07 -0.01,0.11l1.72,1.71zM12,4c4.42,0 8,3.58 8,8 0,1.2 -0.29,2.32 -0.77,3.35l1.49,1.49C21.53,15.4 22,13.76 22,12c0,-5.52 -4.48,-10 -10,-10 -1.76,0 -3.4,0.48 -4.84,1.28l1.48,1.48C9.66,4.28 10.8,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/portrait.xml b/compose/material/material/icons/generator/raw-icons/outlined/portrait.xml
deleted file mode 100644
index 13afeea1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM18,16.58c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.08 -6,3.58L6,18h12v-1.42zM8.48,16c0.74,-0.51 2.23,-1 3.52,-1s2.78,0.49 3.52,1L8.48,16zM19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/post_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/post_add.xml
deleted file mode 100644
index cd06c37..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/post_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,19.22H5V7h7V5H5C3.9,5 3,5.9 3,7v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-7h-2V19.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-2v3h-3c0.01,0.01 0,2 0,2h3v2.99c0.01,0.01 2,0 2,0V7h3V5h-3V2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l0,2l8,0l0,-2l-3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/power.xml b/compose/material/material/icons/generator/raw-icons/outlined/power.xml
deleted file mode 100644
index faeafa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9v4.66l-3.5,3.51V19h-1v-1.83L8,13.65V9h8m0,-6h-2v4h-4V3H8v4h-0.01C6.9,6.99 6,7.89 6,8.98v5.52L9.5,18v3h5v-3l3.5,-3.51V9c0,-1.1 -0.9,-2 -2,-2V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/power_input.xml b/compose/material/material/icons/generator/raw-icons/outlined/power_input.xml
deleted file mode 100644
index 0d03496..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/power_input.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9v2h19L21,9L2,9zM2,15h5v-2L2,13v2zM9,15h5v-2L9,13v2zM16,15h5v-2h-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/power_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/power_off.xml
deleted file mode 100644
index cc53a62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/power_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3L8,3v1.88l2,2zM16,9v3.88l1.8,1.8 0.2,-0.2L18,9c0,-1.1 -0.9,-2 -2,-2L16,3h-2v4h-3.88l2,2L16,9zM4.12,3.84L2.71,5.25 6,8.54v5.96L9.5,18v3h5v-3l0.48,-0.48 4.47,4.47 1.41,-1.41L4.12,3.84zM12.5,17.17L12.5,19h-1v-1.83L8,13.65v-3.11l5.57,5.57 -1.07,1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/power_settings_new.xml b/compose/material/material/icons/generator/raw-icons/outlined/power_settings_new.xml
deleted file mode 100644
index 7495b98..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/power_settings_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3h-2v10h2L13,3zM17.83,5.17l-1.42,1.42C17.99,7.86 19,9.81 19,12c0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-2.19 1.01,-4.14 2.58,-5.42L6.17,5.17C4.23,6.82 3,9.26 3,12c0,4.97 4.03,9 9,9s9,-4.03 9,-9c0,-2.74 -1.23,-5.18 -3.17,-6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/precision_manufacturing.xml b/compose/material/material/icons/generator/raw-icons/outlined/precision_manufacturing.xml
deleted file mode 100644
index a50be77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/precision_manufacturing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33,-2.33l3.6,1.68c0.38,0.18 0.82,0.01 1,-0.36c0.18,-0.38 0.01,-0.82 -0.36,-1l-3.92,-1.83c-0.38,-0.18 -0.83,-0.1 -1.13,0.2L13.78,4.4C13.6,4.16 13.32,4 13,4c-0.55,0 -1,0.45 -1,1v1H8.82C8.4,4.84 7.3,4 6,4C4.34,4 3,5.34 3,7c0,1.1 0.6,2.05 1.48,2.58L7.08,18H6c-1.1,0 -2,0.9 -2,2v1h13v-1c0,-1.1 -0.9,-2 -2,-2h-1.62L8.41,8.77C8.58,8.53 8.72,8.28 8.82,8H12v1c0,0.55 0.45,1 1,1c0.32,0 0.6,-0.16 0.78,-0.4l1.74,1.74c0.3,0.3 0.75,0.38 1.13,0.2l3.92,-1.83c0.38,-0.18 0.54,-0.62 0.36,-1C20.75,8.34 20.31,8.17 19.93,8.35zM6,8C5.45,8 5,7.55 5,7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C7,7.55 6.55,8 6,8zM11.11,18H9.17l-2.46,-8h0.1L11.11,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/pregnant_woman.xml b/compose/material/material/icons/generator/raw-icons/outlined/pregnant_woman.xml
deleted file mode 100644
index 2c3319f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/pregnant_woman.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2 -0.89,2 -2,2 -2,-0.89 -2,-2zM16,13c-0.01,-1.34 -0.83,-2.51 -2,-3 0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3v7h2v5h3v-5h3v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/present_to_all.xml b/compose/material/material/icons/generator/raw-icons/outlined/present_to_all.xml
deleted file mode 100644
index 61c6690..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/present_to_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v14c0,1.11 0.89,2 2,2h18c1.11,0 2,-0.89 2,-2L23,5c0,-1.11 -0.89,-2 -2,-2zM21,19.02L3,19.02L3,4.98h18v14.04zM10,12L8,12l4,-4 4,4h-2v4h-4v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/preview.xml b/compose/material/material/icons/generator/raw-icons/outlined/preview.xml
deleted file mode 100644
index dd895f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/preview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM12,10.5c1.84,0 3.48,0.96 4.34,2.5c-0.86,1.54 -2.5,2.5 -4.34,2.5S8.52,14.54 7.66,13C8.52,11.46 10.16,10.5 12,10.5M12,9c-2.73,0 -5.06,1.66 -6,4c0.94,2.34 3.27,4 6,4s5.06,-1.66 6,-4C17.06,10.66 14.73,9 12,9L12,9zM12,14.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,14.5 12,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/price_change.xml b/compose/material/material/icons/generator/raw-icons/outlined/price_change.xml
deleted file mode 100644
index 2fa4f70..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/price_change.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1H8v-1h4V8h-2V7H8v1H7C6.45,8 6,8.45 6,9v3c0,0.55 0.45,1 1,1h3v1H6v2h2V17zM20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V6C22,4.89 21.11,4 20,4zM20,18H4V6h16V18zM14,10l2,-2l2,2M18,14.25l-2,2l-2,-2"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/price_check.xml b/compose/material/material/icons/generator/raw-icons/outlined/price_check.xml
deleted file mode 100644
index 02e78c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/price_check.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13V9c0,-0.55 -0.45,-1 -1,-1H6V6h5V4H8.5V3h-2v1H5C4.45,4 4,4.45 4,5v4c0,0.55 0.45,1 1,1h4v2H4v2h2.5v1h2v-1H10C10.55,14 11,13.55 11,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,12.52l-5.66,5.65l-2.83,-2.83l-1.41,1.42l4.24,4.24l7.07,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/print.xml b/compose/material/material/icons/generator/raw-icons/outlined/print.xml
deleted file mode 100644
index 20b398c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/print.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-1L18,3L6,3v5L5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12v-4h4v-6c0,-1.66 -1.34,-3 -3,-3zM8,5h8v3L8,8L8,5zM16,17v2L8,19v-4h8v2zM18,15v-2L6,13v2L4,15v-4c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/print_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/print_disabled.xml
deleted file mode 100644
index 9e13aef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/print_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.6L0,3.01 5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12l2.95,2.96 1.41,-1.41L1.41,1.6zM6,15L4,15v-4c0,-0.55 0.45,-1 1,-1h2l3,3L6,13v2zM8,19v-4h4l4,4L8,19zM8,5h8v3h-5.34l2,2L19,10c0.55,0 1,0.45 1,1v4l-2,0.01L18,13h-2.34l4,4L22,17v-6c0,-1.66 -1.34,-3 -3,-3h-1L18,3L6,3v0.36l2,2L8,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.51m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/priority_high.xml b/compose/material/material/icons/generator/raw-icons/outlined/priority_high.xml
deleted file mode 100644
index fd4a832..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/priority_high.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/privacy_tip.xml b/compose/material/material/icons/generator/raw-icons/outlined/privacy_tip.xml
deleted file mode 100644
index 9ff00fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/privacy_tip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3.19l7,3.11V11c0,4.52 -2.98,8.69 -7,9.93C7.98,19.69 5,15.52 5,11V6.3L12,3.19M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1L12,1zM11,7h2v2h-2V7zM11,11h2v6h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/private_connectivity.xml b/compose/material/material/icons/generator/raw-icons/outlined/private_connectivity.xml
deleted file mode 100644
index f7128a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/private_connectivity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5s-5,-2.24 -5,-5S9.24,7 12,7zM5.07,13c0.49,3.39 3.4,6 6.93,6c3.53,0 6.44,-2.61 6.93,-6L22,13v-2l-3.07,0c-0.49,-3.39 -3.4,-6 -6.93,-6l0,0c-3.53,0 -6.44,2.61 -6.93,6c0,0 -3.07,0 -3.07,0v2L5.07,13zM14,10.5V9.61c0,-1 -0.68,-1.92 -1.66,-2.08C11.08,7.32 10,8.29 10,9.5v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C15,10.95 14.55,10.5 14,10.5zM12,13.75c-0.41,0 -0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75C12.75,13.41 12.41,13.75 12,13.75zM13,10.5h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/production_quantity_limits.xml b/compose/material/material/icons/generator/raw-icons/outlined/production_quantity_limits.xml
deleted file mode 100644
index 125519b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/production_quantity_limits.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h-2V8h2V10zM13,6h-2V1h2V6zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2H7L8.1,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/propane.xml b/compose/material/material/icons/generator/raw-icons/outlined/propane.xml
deleted file mode 100644
index 06b4290..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/propane.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6h-1V5c0,-1.1 -0.9,-2 -2,-2h-4C8.9,3 8,3.9 8,5v1H7c-3.31,0 -6,2.69 -6,6s2.69,6 6,6v3h2v-3h6v3h2v-3c3.31,0 6,-2.69 6,-6S20.31,6 17,6zM10,5h4v1h-4V5zM17,16H7c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h10c2.21,0 4,1.79 4,4S19.21,16 17,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/propane_tank.xml b/compose/material/material/icons/generator/raw-icons/outlined/propane_tank.xml
deleted file mode 100644
index 7e19a54..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/propane_tank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.14V4c0,-1.1 -0.9,-2 -2,-2H9C7.9,2 7,2.9 7,4v2.14c-1.72,0.45 -3,2 -3,3.86v8c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4v-8C20,8.14 18.72,6.59 17,6.14zM9,4h6v2h-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1H9V4zM8,8h8c1.1,0 2,0.9 2,2v3H6v-3C6,8.9 6.9,8 8,8zM16,20H8c-1.1,0 -2,-0.9 -2,-2v-3h12v3C18,19.1 17.1,20 16,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/psychology.xml b/compose/material/material/icons/generator/raw-icons/outlined/psychology.xml
deleted file mode 100644
index dc44d5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/psychology.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.82,7.22l-1,0.4c-0.21,-0.16 -0.43,-0.29 -0.67,-0.39L14,6.17C13.98,6.07 13.9,6 13.8,6h-1.6c-0.1,0 -0.18,0.07 -0.19,0.17l-0.15,1.06c-0.24,0.1 -0.47,0.23 -0.67,0.39l-1,-0.4c-0.09,-0.03 -0.2,0 -0.24,0.09l-0.8,1.38c-0.05,0.09 -0.03,0.2 0.05,0.26l0.85,0.66C10.02,9.73 10,9.87 10,10c0,0.13 0.01,0.26 0.03,0.39l-0.84,0.66c-0.08,0.06 -0.1,0.17 -0.05,0.25l0.8,1.39c0.05,0.09 0.15,0.12 0.25,0.09l0.99,-0.4c0.21,0.16 0.43,0.29 0.68,0.39L12,13.83c0.02,0.1 0.1,0.17 0.2,0.17h1.6c0.1,0 0.18,-0.07 0.2,-0.17l0.15,-1.06c0.24,-0.1 0.47,-0.23 0.67,-0.39l0.99,0.4c0.09,0.04 0.2,0 0.24,-0.09l0.8,-1.39c0.05,-0.09 0.03,-0.19 -0.05,-0.25l-0.83,-0.66C15.99,10.26 16,10.13 16,10c0,-0.14 -0.01,-0.27 -0.03,-0.39l0.85,-0.66c0.08,-0.06 0.1,-0.17 0.05,-0.26l-0.8,-1.38C16.02,7.22 15.91,7.19 15.82,7.22zM13,11.43c-0.79,0 -1.43,-0.64 -1.43,-1.43S12.21,8.57 13,8.57s1.43,0.64 1.43,1.43S13.79,11.43 13,11.43z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,9.06c-0.43,-3.27 -3.23,-5.86 -6.53,-6.05C13.27,3 13.14,3 13,3C9.47,3 6.57,5.61 6.08,9l-1.93,3.48C3.74,13.14 4.22,14 5,14h1v2c0,1.1 0.9,2 2,2h1v3h7v-4.68C18.62,15.07 20.35,12.24 19.94,9.06zM14.89,14.63L14,15.05V19h-3v-3H8v-4H6.7l1.33,-2.33C8.21,7.06 10.35,5 13,5c2.76,0 5,2.24 5,5C18,12.09 16.71,13.88 14.89,14.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/psychology_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/psychology_alt.xml
deleted file mode 100644
index 44b64ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/psychology_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,9.06C19.5,5.73 16.57,3 13,3C9.47,3 6.57,5.61 6.08,9l-1.93,3.48C3.74,13.14 4.22,14 5,14h1l0,2c0,1.1 0.9,2 2,2h1v3h7l0,-4.68C18.62,15.07 20.35,12.24 19.94,9.06zM14.89,14.63L14,15.05V19h-3v-3H8v-4H6.7l1.33,-2.33C8.21,7.06 10.35,5 13,5c2.76,0 5,2.24 5,5C18,12.09 16.71,13.88 14.89,14.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.54c-0.41,0 -0.74,0.31 -0.74,0.73c0,0.41 0.33,0.74 0.74,0.74c0.42,0 0.73,-0.33 0.73,-0.74C13.23,12.85 12.92,12.54 12.5,12.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7c-1.03,0 -1.74,0.67 -2,1.45l0.96,0.4c0.13,-0.39 0.43,-0.86 1.05,-0.86c0.95,0 1.13,0.89 0.8,1.36c-0.32,0.45 -0.86,0.75 -1.14,1.26c-0.23,0.4 -0.18,0.87 -0.18,1.16h1.06c0,-0.55 0.04,-0.65 0.13,-0.82c0.23,-0.42 0.65,-0.62 1.09,-1.27c0.4,-0.59 0.25,-1.38 -0.01,-1.8C13.95,7.39 13.36,7 12.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/public.xml b/compose/material/material/icons/generator/raw-icons/outlined/public.xml
deleted file mode 100644
index ee0f06d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/public.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-0.61 0.08,-1.21 0.21,-1.78L8.99,15v1c0,1.1 0.9,2 2,2v1.93C7.06,19.43 4,16.07 4,12zM17.89,17.4c-0.26,-0.81 -1,-1.4 -1.9,-1.4h-1v-3c0,-0.55 -0.45,-1 -1,-1h-6v-2h2c0.55,0 1,-0.45 1,-1L10.99,7h2c1.1,0 2,-0.9 2,-2v-0.41C17.92,5.77 20,8.65 20,12c0,2.08 -0.81,3.98 -2.11,5.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/public_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/public_off.xml
deleted file mode 100644
index 03f1d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/public_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.87 20,13.48 20,12c0,-3.35 -2.07,-6.22 -5,-7.41V5c0,1.1 -0.9,2 -2,2h-2V8.17zM21.19,21.19l-1.41,1.41l-2.27,-2.27C15.93,21.39 14.04,22 12,22C6.48,22 2,17.52 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41L21.19,21.19zM11,18c-1.1,0 -2,-0.9 -2,-2v-1l-4.79,-4.79C4.08,10.79 4,11.38 4,12c0,4.08 3.05,7.44 7,7.93V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/publish.xml b/compose/material/material/icons/generator/raw-icons/outlined/publish.xml
deleted file mode 100644
index 82d7691..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/publish.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4h14v2L5,6zM5,14h4v6h6v-6h4l-7,-7 -7,7zM13,12v6h-2v-6L9.83,12L12,9.83 14.17,12L13,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/published_with_changes.xml b/compose/material/material/icons/generator/raw-icons/outlined/published_with_changes.xml
deleted file mode 100644
index 39535c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/published_with_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.6,19.5H21v2h-6v-6h2v2.73c1.83,-1.47 3,-3.71 3,-6.23c0,-4.07 -3.06,-7.44 -7,-7.93V2.05c5.05,0.5 9,4.76 9,9.95C22,14.99 20.68,17.67 18.6,19.5zM4,12c0,-2.52 1.17,-4.77 3,-6.23V8.5h2v-6H3v2h2.4C3.32,6.33 2,9.01 2,12c0,5.19 3.95,9.45 9,9.95v-2.02C7.06,19.44 4,16.07 4,12zM16.24,8.11l-5.66,5.66l-2.83,-2.83l-1.41,1.41l4.24,4.24l7.07,-7.07L16.24,8.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/punch_clock.xml b/compose/material/material/icons/generator/raw-icons/outlined/punch_clock.xml
deleted file mode 100644
index 8ed755b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/punch_clock.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-1V1H6v5H5C3.9,6 3,6.9 3,8v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM8,3h8v3H8V3zM19,20H5V8h14V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S14.76,9 12,9zM12,17.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,17.5 12,17.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.5l-1,0l0,2.71l1.64,1.64l0.71,-0.71l-1.35,-1.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/push_pin.xml b/compose/material/material/icons/generator/raw-icons/outlined/push_pin.xml
deleted file mode 100644
index b107597..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/push_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4v5c0,1.12 0.37,2.16 1,3H9c0.65,-0.86 1,-1.9 1,-3V4H14M17,2H7C6.45,2 6,2.45 6,3c0,0.55 0.45,1 1,1c0,0 0,0 0,0l1,0v5c0,1.66 -1.34,3 -3,3v2h5.97v7l1,1l1,-1v-7H19v-2c0,0 0,0 0,0c-1.66,0 -3,-1.34 -3,-3V4l1,0c0,0 0,0 0,0c0.55,0 1,-0.45 1,-1C18,2.45 17.55,2 17,2L17,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/qr_code.xml b/compose/material/material/icons/generator/raw-icons/outlined/qr_code.xml
deleted file mode 100644
index e9366bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/qr_code.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/qr_code_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/qr_code_2.xml
deleted file mode 100644
index 6918603..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/qr_code_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h-2v-2h2V21zM13,14h-2v5h2V14zM21,12h-2v4h2V12zM19,10h-2v2h2V10zM7,12H5v2h2V12zM5,10H3v2h2V10zM12,5h2V3h-2V5zM4.5,4.5v3h3v-3H4.5zM9,9H3V3h6V9zM4.5,16.5v3h3v-3H4.5zM9,21H3v-6h6V21zM16.5,4.5v3h3v-3H16.5zM21,9h-6V3h6V9zM19,19v-3l-4,0v2h2v3h4v-2H19zM17,12l-4,0v2h4V12zM13,10H7v2h2v2h2v-2h2V10zM14,9V7h-2V5h-2v4L14,9zM6.75,5.25h-1.5v1.5h1.5V5.25zM6.75,17.25h-1.5v1.5h1.5V17.25zM18.75,5.25h-1.5v1.5h1.5V5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/qr_code_scanner.xml b/compose/material/material/icons/generator/raw-icons/outlined/qr_code_scanner.xml
deleted file mode 100644
index 597e8d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/qr_code_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,6.5v3h-3v-3H9.5M11,5H5v6h6V5L11,5zM9.5,14.5v3h-3v-3H9.5M11,13H5v6h6V13L11,13zM17.5,6.5v3h-3v-3H17.5M19,5h-6v6h6V5L19,5zM13,13h1.5v1.5H13V13zM14.5,14.5H16V16h-1.5V14.5zM16,13h1.5v1.5H16V13zM13,16h1.5v1.5H13V16zM14.5,17.5H16V19h-1.5V17.5zM16,16h1.5v1.5H16V16zM17.5,14.5H19V16h-1.5V14.5zM17.5,17.5H19V19h-1.5V17.5zM22,7h-2V4h-3V2h5V7zM22,22v-5h-2v3h-3v2H22zM2,22h5v-2H4v-3H2V22zM2,2v5h2V4h3V2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/query_builder.xml b/compose/material/material/icons/generator/raw-icons/outlined/query_builder.xml
deleted file mode 100644
index 28e127d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/query_builder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/query_stats.xml b/compose/material/material/icons/generator/raw-icons/outlined/query_stats.xml
deleted file mode 100644
index 736d761..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/query_stats.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.88,18.47c0.44,-0.7 0.7,-1.51 0.7,-2.39c0,-2.49 -2.01,-4.5 -4.5,-4.5s-4.5,2.01 -4.5,4.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21.58,23L23,21.58L19.88,18.47zM16.08,18.58c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C18.58,17.46 17.46,18.58 16.08,18.58zM15.72,10.08c-0.74,0.02 -1.45,0.18 -2.1,0.45l-0.55,-0.83l-3.8,6.18l-3.01,-3.52l-3.63,5.81L1,17l5,-8l3,3.5L13,6C13,6 15.72,10.08 15.72,10.08zM18.31,10.58c-0.64,-0.28 -1.33,-0.45 -2.05,-0.49c0,0 5.12,-8.09 5.12,-8.09L23,3.18L18.31,10.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/question_answer.xml b/compose/material/material/icons/generator/raw-icons/outlined/question_answer.xml
deleted file mode 100644
index 7c756eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/question_answer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4v7L5.17,11l-0.59,0.59 -0.58,0.58L4,4h11m1,-2L3,2c-0.55,0 -1,0.45 -1,1v14l4,-4h10c0.55,0 1,-0.45 1,-1L17,3c0,-0.55 -0.45,-1 -1,-1zM21,6h-2v9L6,15v2c0,0.55 0.45,1 1,1h11l4,4L22,7c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/question_mark.xml b/compose/material/material/icons/generator/raw-icons/outlined/question_mark.xml
deleted file mode 100644
index e8cfd61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/question_mark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,12.85c0.77,-1.39 2.25,-2.21 3.11,-3.44c0.91,-1.29 0.4,-3.7 -2.18,-3.7c-1.69,0 -2.52,1.28 -2.87,2.34L6.54,6.96C7.25,4.83 9.18,3 11.99,3c2.35,0 3.96,1.07 4.78,2.41c0.7,1.15 1.11,3.3 0.03,4.9c-1.2,1.77 -2.35,2.31 -2.97,3.45c-0.25,0.46 -0.35,0.76 -0.35,2.24h-2.89C10.58,15.22 10.46,13.95 11.07,12.85zM14,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2S14,18.9 14,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/queue.xml b/compose/material/material/icons/generator/raw-icons/outlined/queue.xml
deleted file mode 100644
index b3bdb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM13,15h2v-4h4L19,9h-4L15,5h-2v4L9,9v2h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/queue_music.xml b/compose/material/material/icons/generator/raw-icons/outlined/queue_music.xml
deleted file mode 100644
index ef18b12d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/queue_music.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6h-5v8.18C16.69,14.07 16.35,14 16,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3V8h3V6zM15,6H3v2h12V6zM15,10H3v2h12V10zM11,14H3v2h8V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/queue_play_next.xml b/compose/material/material/icons/generator/raw-icons/outlined/queue_play_next.xml
deleted file mode 100644
index 88ca199..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/queue_play_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h2v-2L3,17L3,5h18v8h2L23,5c0,-1.11 -0.9,-2 -2,-2zM13,10L13,7h-2v3L8,10v2h3v3h2v-3h3v-2h-3zM24,18l-4.5,4.5L18,21l3,-3 -3,-3 1.5,-1.5L24,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/quickreply.xml b/compose/material/material/icons/generator/raw-icons/outlined/quickreply.xml
deleted file mode 100644
index b99270f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/quickreply.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17V4h16v6h2V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9v-2H5.17L4,17.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16l-2.2,0l1.7,-4l-5,0l0,6l2,0l0,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/quiz.xml b/compose/material/material/icons/generator/raw-icons/outlined/quiz.xml
deleted file mode 100644
index 9a64c1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/quiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6zM20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H8V4h12V16zM13.51,10.16c0.41,-0.73 1.18,-1.16 1.63,-1.8c0.48,-0.68 0.21,-1.94 -1.14,-1.94c-0.88,0 -1.32,0.67 -1.5,1.23l-1.37,-0.57C11.51,5.96 12.52,5 13.99,5c1.23,0 2.08,0.56 2.51,1.26c0.37,0.6 0.58,1.73 0.01,2.57c-0.63,0.93 -1.23,1.21 -1.56,1.81c-0.13,0.24 -0.18,0.4 -0.18,1.18h-1.52C13.26,11.41 13.19,10.74 13.51,10.16zM12.95,13.95c0,-0.59 0.47,-1.04 1.05,-1.04c0.59,0 1.04,0.45 1.04,1.04c0,0.58 -0.44,1.05 -1.04,1.05C13.42,15 12.95,14.53 12.95,13.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/r_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/outlined/r_mobiledata.xml
deleted file mode 100644
index 72e6709..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/r_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0 2,0.87 2,2v1.33C9,6.13 8.47,6.87 7.8,7.2zM7,4H4v1.33h3V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/radar.xml b/compose/material/material/icons/generator/raw-icons/outlined/radar.xml
deleted file mode 100644
index b811ecf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/radar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.74,18.33C21.15,16.6 22,14.4 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10c2.4,0 4.6,-0.85 6.33,-2.26c0.27,-0.22 0.53,-0.46 0.78,-0.71c0.03,-0.03 0.05,-0.06 0.07,-0.08C19.38,18.75 19.57,18.54 19.74,18.33zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.43,-1.43c0.69,-0.98 1.1,-2.17 1.1,-3.46c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6s2.69,6 6,6c1.3,0 2.51,-0.42 3.49,-1.13l1.42,1.42C15.54,19.37 13.85,20 12,20zM13.92,12.51c0.17,-0.66 0.02,-1.38 -0.49,-1.9l-0.02,-0.02c-0.77,-0.77 -2,-0.78 -2.78,-0.04c-0.01,0.01 -0.03,0.02 -0.05,0.04c-0.78,0.78 -0.78,2.05 0,2.83l0.02,0.02c0.52,0.51 1.25,0.67 1.91,0.49l1.51,1.51c-0.6,0.36 -1.29,0.58 -2.04,0.58c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4c0,0.73 -0.21,1.41 -0.56,2L13.92,12.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/radio.xml b/compose/material/material/icons/generator/raw-icons/outlined/radio.xml
deleted file mode 100644
index 19d1e42..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/radio.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6L8.3,6l8.26,-3.34L15.88,1 3.24,6.15C2.51,6.43 2,7.17 2,8v12c0,1.1 0.89,2 2,2h16c1.11,0 2,-0.9 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM20,8v3h-2L18,9h-2v2L4,11L4,8h16zM4,20v-7h16v7L4,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16.48m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/radio_button_checked.xml b/compose/material/material/icons/generator/raw-icons/outlined/radio_button_checked.xml
deleted file mode 100644
index 6d654e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/radio_button_checked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/radio_button_unchecked.xml b/compose/material/material/icons/generator/raw-icons/outlined/radio_button_unchecked.xml
deleted file mode 100644
index bcb6fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/radio_button_unchecked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/railway_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/railway_alert.xml
deleted file mode 100644
index 2b82d77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/railway_alert.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29C11.1,7.37 11,6.7 11,6H4.43c0.9,-0.77 3.28,-1.08 6.65,-0.98c0.1,-0.7 0.3,-1.37 0.59,-1.99C2.97,2.67 2,5.02 2,7v9.5C2,18.43 3.57,20 5.5,20L4,21v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM16,16.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C4.67,18 4,17.33 4,16.5V13h12V16.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ramen_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/ramen_dining.xml
deleted file mode 100644
index d6796a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ramen_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,14c-0.66,1.92 -2.24,3.54 -4.4,4.39L14,18.89V20h-4v-1.11l-1.27,-0.5c-2.16,-0.85 -3.74,-2.47 -4.4,-4.39H19.66M22,2L4,3.99V12H2c0,3.69 2.47,6.86 6,8.25V22h8v-1.75c3.53,-1.39 6,-4.56 6,-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51V2L22,2zM8,6.5V5.06l1,-0.11V6.5H8L8,6.5zM5.5,6.5V5.34l1,-0.11V6.5H5.5L5.5,6.5zM8,12V8h1v4H8L8,12zM5.5,12V8h1v4H5.5L5.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ramp_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/ramp_left.xml
deleted file mode 100644
index a70ce96..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ramp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21h-2V6.83L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83V9c0,4.27 4.03,7.13 6,8.27l-1.46,1.46c-1.91,-1.16 -3.44,-2.53 -4.54,-4.02L13,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ramp_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/ramp_right.xml
deleted file mode 100644
index d5a12d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ramp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2V6.83l1.59,1.59L16,7l-4,-4L8,7l1.41,1.41L11,6.83V9c0,4.27 -4.03,7.13 -6,8.27l1.46,1.46C8.37,17.56 9.9,16.19 11,14.7L11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rate_review.xml b/compose/material/material/icons/generator/raw-icons/outlined/rate_review.xml
deleted file mode 100644
index 4f567ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rate_review.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16l-0.59,0.59 -0.58,0.58L4,4h16v12zM10.5,14L18,14v-2h-5.5zM14.36,8.13c0.2,-0.2 0.2,-0.51 0,-0.71l-1.77,-1.77c-0.2,-0.2 -0.51,-0.2 -0.71,0L6,11.53L6,14h2.47l5.89,-5.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/raw_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/raw_off.xml
deleted file mode 100644
index c6744b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/raw_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.15,14.32l0.59,-2.36l0.76,3.04l1.48,0l1.5,-6l-1.5,0l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l0.72,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38,-1.5h0.04l9.11,9.11l1.41,-1.41L2.81,2.81L1.39,4.22zM6.5,11.5h-2v-1h2V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/raw_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/raw_on.xml
deleted file mode 100644
index 5f73dbd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/raw_on.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-1C8,9.7 7.3,9 6.5,9zM6.5,11.5h-2v-1h2V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.25,9l-1.5,6h1.5l0.38,-1.5h1.75l0.37,1.5h1.5l-1.5,-6H10.25zM11,12l0.25,-1h0.5L12,12H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,9l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l1.5,6l1.48,0l0.76,-3.04l0.76,3.04l1.48,0l1.5,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/read_more.xml b/compose/material/material/icons/generator/raw-icons/outlined/read_more.xml
deleted file mode 100644
index feaa455..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/read_more.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l-5,-5l0,4l-6,0l0,2l6,0l0,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/real_estate_agent.xml b/compose/material/material/icons/generator/raw-icons/outlined/real_estate_agent.xml
deleted file mode 100644
index feda83e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/real_estate_agent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6.5V14h-2V7.5L14,4L9,7.5V9H7V6.5l7,-5L21,6.5zM15.5,7h-1v1h1V7zM13.5,7h-1v1h1V7zM15.5,9h-1v1h1V9zM13.5,9h-1v1h1V9zM19,16h-2c0,-1.2 -0.75,-2.28 -1.87,-2.7L8.97,11H1v11h6v-1.44l7,1.94l8,-2.5v-1C22,17.34 20.66,16 19,16zM3,20v-7h2v7H3zM13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3 15,15.63 15,16c0,0 -1.99,-0.05 -2.3,-0.15l-2.38,-0.79l-0.63,1.9l2.38,0.79c0.51,0.17 1.04,0.26 1.58,0.26H19c0.39,0 0.74,0.23 0.9,0.56L13.97,20.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/receipt.xml b/compose/material/material/icons/generator/raw-icons/outlined/receipt.xml
deleted file mode 100644
index 2712936..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/receipt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2 7.5,3.5 6,2 4.5,3.5 3,2v20l1.5,-1.5L6,22l1.5,-1.5L9,22l1.5,-1.5L12,22l1.5,-1.5L15,22l1.5,-1.5L18,22l1.5,-1.5L21,22L21,2l-1.5,1.5zM19,19.09L5,19.09L5,4.91h14v14.18zM6,15h12v2L6,17zM6,11h12v2L6,13zM6,7h12v2L6,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/receipt_long.xml b/compose/material/material/icons/generator/raw-icons/outlined/receipt_long.xml
deleted file mode 100644
index d8aedf0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/receipt_long.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3V2L19.5,3.5zM15,20H6c-0.55,0 -1,-0.45 -1,-1v-1h10V20zM19,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3H8V5h11V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/recent_actors.xml b/compose/material/material/icons/generator/raw-icons/outlined/recent_actors.xml
deleted file mode 100644
index 67f82da..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/recent_actors.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5h2v14h-2zM17,5h2v14h-2zM14,5L2,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L15,6c0,-0.55 -0.45,-1 -1,-1zM13,17L3,17L3,7h10v10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9.94m-1.95,0a1.95,1.95 0,1 1,3.9 0a1.95,1.95 0,1 1,-3.9 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.89,15.35c0,-1.3 -2.59,-1.95 -3.89,-1.95s-3.89,0.65 -3.89,1.95V16h7.78v-0.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/recommend.xml b/compose/material/material/icons/generator/raw-icons/outlined/recommend.xml
deleted file mode 100644
index 8855bff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/recommend.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h-4.59l0.58,-3.41v-0.2c-0.01,-0.26 -0.12,-0.51 -0.3,-0.7L12,5l-4.6,5c-0.27,0.26 -0.42,0.62 -0.4,1v5c0,1.1 0.9,2 2,2h5.5c0.56,0.03 1.08,-0.29 1.3,-0.8l2.1,-4.9c0.08,-0.15 0.12,-0.33 0.1,-0.5V11C18,10.45 17.55,10 17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/record_voice_over.xml b/compose/material/material/icons/generator/raw-icons/outlined/record_voice_over.xml
deleted file mode 100644
index 17e4b06..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/record_voice_over.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM9,7c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM3,19c0.22,-0.72 3.31,-2 6,-2 2.7,0 5.8,1.29 6,2L3,19zM15.08,7.05c0.84,1.18 0.84,2.71 0,3.89l1.68,1.69c2.02,-2.02 2.02,-5.07 0,-7.27l-1.68,1.69zM20.07,2l-1.63,1.63c2.77,3.02 2.77,7.56 0,10.74L20.07,16c3.9,-3.89 3.91,-9.95 0,-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rectangle.xml b/compose/material/material/icons/generator/raw-icons/outlined/rectangle.xml
deleted file mode 100644
index 9c4b712..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rectangle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/recycling.xml b/compose/material/material/icons/generator/raw-icons/outlined/recycling.xml
deleted file mode 100644
index bd30b8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/recycling.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.77,7.15L7.2,4.78l1.03,-1.71c0.39,-0.65 1.33,-0.65 1.72,0l1.48,2.46l-1.23,2.06L9.2,9.21L5.77,7.15zM21.72,12.97l-1.6,-2.66l-3.46,2L18.87,16H20c0.76,0 1.45,-0.43 1.79,-1.11C21.93,14.61 22,14.31 22,14C22,13.64 21.9,13.29 21.72,12.97zM16,21h1.5c0.76,0 1.45,-0.43 1.79,-1.11L20.74,17H16v-2l-4,4l4,4V21zM10,17H5.7l-0.84,1.41c-0.3,0.5 -0.32,1.12 -0.06,1.65l0,0C5.08,20.63 5.67,21 6.32,21H10V17zM6.12,14.35l1.73,1.04L6.48,9.9L1,11.27l1.7,1.02l-0.41,0.69c-0.35,0.59 -0.38,1.31 -0.07,1.92l1.63,3.26L6.12,14.35zM17.02,5.14l-1.3,-2.17C15.35,2.37 14.7,2 14,2h-3.53l3.12,5.2l-1.72,1.03l5.49,1.37l1.37,-5.49L17.02,5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/redeem.xml b/compose/material/material/icons/generator/raw-icons/outlined/redeem.xml
deleted file mode 100644
index d5b3e1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/redeem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 11,8.76l1,-1.36 1,1.36L15.38,12 17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/redo.xml b/compose/material/material/icons/generator/raw-icons/outlined/redo.xml
deleted file mode 100644
index 4e218168..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/redo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.4,10.6C16.55,8.99 14.15,8 11.5,8c-4.65,0 -8.58,3.03 -9.96,7.22L3.9,16c1.05,-3.19 4.05,-5.5 7.6,-5.5 1.95,0 3.73,0.72 5.12,1.88L13,16h9V7l-3.6,3.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/reduce_capacity.xml b/compose/material/material/icons/generator/raw-icons/outlined/reduce_capacity.xml
deleted file mode 100644
index bd11991..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/reduce_capacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S16,5.1 16,4zM20.78,7.58C19.93,7.21 18.99,7 18,7c-0.67,0 -1.31,0.1 -1.92,0.28C16.66,7.83 17,8.6 17,9.43V10h5V9.43C22,8.62 21.52,7.9 20.78,7.58zM6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM7.92,7.28C7.31,7.1 6.67,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h5V9.43C7,8.6 7.34,7.83 7.92,7.28zM10,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,5.1 10,4zM16,10H8V9.43C8,8.62 8.48,7.9 9.22,7.58C10.07,7.21 11.01,7 12,7c0.99,0 1.93,0.21 2.78,0.58C15.52,7.9 16,8.62 16,9.43V10zM15,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S15,17.1 15,16zM21,22h-8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C15.07,19.21 16.01,19 17,19c0.99,0 1.93,0.21 2.78,0.58C20.52,19.9 21,20.62 21,21.43V22zM5,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S5,17.1 5,16zM11,22H3v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C5.07,19.21 6.01,19 7,19c0.99,0 1.93,0.21 2.78,0.58C10.52,19.9 11,20.62 11,21.43V22zM12.75,13v-2h-1.5v2H9l3,3l3,-3H12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/refresh.xml b/compose/material/material/icons/generator/raw-icons/outlined/refresh.xml
deleted file mode 100644
index f2be45bab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/refresh.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remember_me.xml b/compose/material/material/icons/generator/raw-icons/outlined/remember_me.xml
deleted file mode 100644
index 2669f21..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remember_me.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,21H7v-1h10V21zM17,18H7v-0.48C8.47,16.53 10.22,16 12,16s3.53,0.53 5,1.52V18zM17,15.21C15.5,14.44 13.8,14 12,14s-3.5,0.44 -5,1.21V6h10V15.21zM17,4H7V3h10V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3s-3,1.34 -3,3S10.34,13 12,13zM12,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove.xml
deleted file mode 100644
index 791a2f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5v-2h14v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_circle.xml
deleted file mode 100644
index 2c986ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13L7,13v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_circle_outline.xml
deleted file mode 100644
index 60b9c1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11v2h10v-2L7,11zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_done.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_done.xml
deleted file mode 100644
index 621af7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24,-4.24l-1.41,1.41l5.66,5.66l2.83,-2.83l6.6,6.6l1.41,-1.41L4.84,1.98zM18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36zM17.34,7.4l-1.41,-1.41l-2.12,2.12l1.41,1.41L17.34,7.4zM1.08,12.35l5.66,5.66l1.41,-1.41l-5.66,-5.66L1.08,12.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_from_queue.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_from_queue.xml
deleted file mode 100644
index 2300e16..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_from_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM16,10v2L8,12v-2h8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_moderator.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_moderator.xml
deleted file mode 100644
index 631fdf0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_moderator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.14l6,2.25v4.7c0,1.19 -0.23,2.36 -0.64,3.44l1.51,1.51c0.72,-1.53 1.13,-3.22 1.13,-4.95V5l-8,-3L6.78,3.96l1.55,1.55L12,4.14zM2.81,2.81L1.39,4.22L4,6.83v4.26c0,5.05 3.41,9.76 8,10.91c1.72,-0.43 3.28,-1.36 4.55,-2.62l3.23,3.23l1.41,-1.41L2.81,2.81zM12,19.92c-3.45,-1.13 -6,-4.82 -6,-8.83V8.83l9.14,9.14C14.24,18.85 13.17,19.54 12,19.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_red_eye.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_red_eye.xml
deleted file mode 100644
index f75a6af..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_red_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c3.79,0 7.17,2.13 8.82,5.5 -1.65,3.37 -5.02,5.5 -8.82,5.5S4.83,15.37 3.18,12C4.83,8.63 8.21,6.5 12,6.5m0,-2C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,9.5c1.38,0 2.5,1.12 2.5,2.5s-1.12,2.5 -2.5,2.5 -2.5,-1.12 -2.5,-2.5 1.12,-2.5 2.5,-2.5m0,-2c-2.48,0 -4.5,2.02 -4.5,4.5s2.02,4.5 4.5,4.5 4.5,-2.02 4.5,-4.5 -2.02,-4.5 -4.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_road.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_road.xml
deleted file mode 100644
index 8923945..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.41l-1.41,-1.41l-2.09,2.09l-2.09,-2.09l-1.41,1.41l2.09,2.09l-2.09,2.09l1.41,1.41l2.09,-2.09l2.09,2.09l1.41,-1.41l-2.09,-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/remove_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/outlined/remove_shopping_cart.xml
deleted file mode 100644
index a538c99..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/remove_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.13L0,2.54l4.39,4.39 2.21,4.66 -1.35,2.45c-0.16,0.28 -0.25,0.61 -0.25,0.96 0,1.1 0.9,2 2,2h7.46l1.38,1.38c-0.5,0.36 -0.83,0.95 -0.83,1.62 0,1.1 0.89,2 1.99,2 0.67,0 1.26,-0.33 1.62,-0.84L21.46,24l1.41,-1.41L1.41,1.13zM7,15l1.1,-2h2.36l2,2H7zM20,4H7.12l2,2h9.19l-2.76,5h-1.44l1.94,1.94c0.54,-0.14 0.99,-0.49 1.25,-0.97l3.58,-6.49C21.25,4.82 20.76,4 20,4zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/reorder.xml b/compose/material/material/icons/generator/raw-icons/outlined/reorder.xml
deleted file mode 100644
index 57af84b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/reorder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h18v-2L3,13v2zM3,19h18v-2L3,17v2zM3,11h18L21,9L3,9v2zM3,5v2h18L21,5L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/repartition.xml b/compose/material/material/icons/generator/raw-icons/outlined/repartition.xml
deleted file mode 100644
index 69784ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/repartition.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-6H3V21zM10.33,19v-2h3.33v2H10.33zM19,19h-3.33v-2H19V19zM5,17h3.33v2H5V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10l1.42,-1.42L5.83,7H17c1.1,0 2,0.9 2,2s-0.9,2 -2,2H3v2h14c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4H5.83l1.59,-1.59L6,2L2,6L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/repeat.xml b/compose/material/material/icons/generator/raw-icons/outlined/repeat.xml
deleted file mode 100644
index 5f598a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/repeat_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/repeat_on.xml
deleted file mode 100644
index 92c3835..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/repeat_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,19H6.83l1.58,1.58L7,22l-4,-4l4,-4l1.41,1.42L6.83,17H17v-4h2V19zM17,10l-1.41,-1.42L17.17,7H7v4H5V5h12.17l-1.58,-1.58L17,2l4,4L17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/repeat_one.xml b/compose/material/material/icons/generator/raw-icons/outlined/repeat_one.xml
deleted file mode 100644
index 234c002..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/repeat_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4zM13,15L13,9h-1l-2,1v1h1.5v4L13,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/repeat_one_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/repeat_one_on.xml
deleted file mode 100644
index c5765c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/repeat_one_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,19H6.83l1.58,1.58L7,22l-4,-4l4,-4l1.41,1.42L6.83,17H17v-4h2V19zM10,10.5V9h3v6h-1.5v-4.5H10zM17,10l-1.41,-1.42L17.17,7H7v4H5V5h12.17l-1.58,-1.58L17,2l4,4L17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/replay.xml b/compose/material/material/icons/generator/raw-icons/outlined/replay.xml
deleted file mode 100644
index fde7353..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/replay.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V1L7,6l5,5V7c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6H4c0,4.42 3.58,8 8,8s8,-3.58 8,-8S16.42,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/replay_10.xml b/compose/material/material/icons/generator/raw-icons/outlined/replay_10.xml
deleted file mode 100644
index c7075d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/replay_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,5L11.99,1l-5,5 5,5L11.99,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6h-2c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77,-0.63h0.09L10.89,16zM15.17,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.32,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/replay_30.xml b/compose/material/material/icons/generator/raw-icons/outlined/replay_30.xml
deleted file mode 100644
index 7d6fee2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/replay_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,1L7,6l5,5L12,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6L4,13c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM9.56,13.49h0.45c0.21,0 0.37,-0.05 0.48,-0.16s0.16,-0.25 0.16,-0.43c0,-0.08 -0.01,-0.15 -0.04,-0.22s-0.06,-0.12 -0.11,-0.17 -0.11,-0.09 -0.18,-0.11 -0.16,-0.04 -0.25,-0.04c-0.08,0 -0.15,0.01 -0.22,0.03s-0.13,0.05 -0.18,0.1 -0.09,0.09 -0.12,0.15 -0.05,0.13 -0.05,0.2h-0.85c0,-0.18 0.04,-0.34 0.11,-0.48s0.17,-0.27 0.3,-0.37 0.27,-0.18 0.44,-0.23 0.35,-0.08 0.54,-0.08c0.21,0 0.41,0.03 0.59,0.08s0.33,0.13 0.46,0.23 0.23,0.23 0.3,0.38 0.11,0.33 0.11,0.53c0,0.09 -0.01,0.18 -0.04,0.27s-0.07,0.17 -0.13,0.25 -0.12,0.15 -0.2,0.22 -0.17,0.12 -0.28,0.17c0.24,0.09 0.42,0.21 0.54,0.39s0.18,0.38 0.18,0.61c0,0.2 -0.04,0.38 -0.12,0.53s-0.18,0.29 -0.32,0.39 -0.29,0.19 -0.48,0.24 -0.38,0.08 -0.6,0.08c-0.18,0 -0.36,-0.02 -0.53,-0.07s-0.33,-0.12 -0.46,-0.23 -0.25,-0.23 -0.33,-0.38 -0.12,-0.34 -0.12,-0.55h0.85c0,0.08 0.02,0.15 0.05,0.22s0.07,0.12 0.13,0.17 0.12,0.09 0.2,0.11 0.16,0.04 0.25,0.04c0.1,0 0.19,-0.01 0.27,-0.04s0.15,-0.07 0.2,-0.12 0.1,-0.11 0.13,-0.18 0.04,-0.15 0.04,-0.24c0,-0.11 -0.02,-0.21 -0.05,-0.29s-0.08,-0.15 -0.14,-0.2 -0.13,-0.09 -0.22,-0.11 -0.18,-0.04 -0.29,-0.04h-0.47v-0.65zM15.3,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.45,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32c0.03,-0.13 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/replay_5.xml b/compose/material/material/icons/generator/raw-icons/outlined/replay_5.xml
deleted file mode 100644
index e668cab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/replay_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,1L7,6l5,5L12,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6L4,13c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM10.69,13.9l0.25,-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03,-0.02 0.07,-0.03 0.11,-0.05s0.09,-0.04 0.15,-0.05 0.12,-0.03 0.18,-0.04 0.13,-0.02 0.2,-0.02c0.21,0 0.39,0.03 0.55,0.1s0.3,0.16 0.41,0.28 0.2,0.27 0.25,0.45 0.09,0.38 0.09,0.6c0,0.19 -0.03,0.37 -0.09,0.54s-0.15,0.32 -0.27,0.45 -0.27,0.24 -0.45,0.31 -0.39,0.12 -0.64,0.12c-0.18,0 -0.36,-0.03 -0.53,-0.08s-0.32,-0.14 -0.46,-0.24 -0.24,-0.24 -0.32,-0.39 -0.13,-0.33 -0.13,-0.53h0.84c0.02,0.18 0.08,0.32 0.19,0.41s0.25,0.15 0.42,0.15c0.11,0 0.2,-0.02 0.27,-0.06s0.14,-0.1 0.18,-0.17 0.08,-0.15 0.11,-0.25 0.03,-0.2 0.03,-0.31 -0.01,-0.21 -0.04,-0.31 -0.07,-0.17 -0.13,-0.24 -0.13,-0.12 -0.21,-0.15 -0.19,-0.05 -0.3,-0.05c-0.08,0 -0.15,0.01 -0.2,0.02s-0.11,0.03 -0.15,0.05 -0.08,0.05 -0.12,0.07 -0.07,0.06 -0.1,0.09l-0.67,-0.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/replay_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/outlined/replay_circle_filled.xml
deleted file mode 100644
index e13b69a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/replay_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,18.5c-3.31,0 -6,-2.69 -6,-6h2c0,2.21 1.79,4 4,4s4,-1.79 4,-4c0,-2.24 -1.85,-4.09 -4.16,-3.99l1.57,1.57L12,11.5l-4,-4l4,-4l1.41,1.41l-1.6,1.6C15.28,6.4 18,9.18 18,12.5C18,15.81 15.31,18.5 12,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/reply.xml b/compose/material/material/icons/generator/raw-icons/outlined/reply.xml
deleted file mode 100644
index 4c0db01..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/reply.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9V5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/reply_all.xml b/compose/material/material/icons/generator/raw-icons/outlined/reply_all.xml
deleted file mode 100644
index 6655ebe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/reply_all.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8L7,5l-7,7 7,7v-3l-4,-4 4,-4zM13,9L13,5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/report.xml b/compose/material/material/icons/generator/raw-icons/outlined/report.xml
deleted file mode 100644
index 5efaf43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/report.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1v5.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/report_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/outlined/report_gmailerrorred.xml
deleted file mode 100644
index 5efaf43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/report_gmailerrorred.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1v5.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/report_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/report_off.xml
deleted file mode 100644
index f0d10d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/report_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.1,5h5.8L19,9.1v5.8l-0.22,0.22 1.42,1.41 0.8,-0.8V8.27L15.73,3H8.27l-0.8,0.8 1.41,1.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9.33V7h-2v0.33zM2.41,1.58L1,2.99l3.64,3.64L3,8.27v7.46L8.27,21h7.46l1.64,-1.64L21.01,23l1.41,-1.41L2.41,1.58zM14.9,19H9.1L5,14.9V9.1l1.05,-1.05 9.9,9.9L14.9,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/report_problem.xml b/compose/material/material/icons/generator/raw-icons/outlined/report_problem.xml
deleted file mode 100644
index e815a74..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/report_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.99L19.53,19L4.47,19L12,5.99M12,2L1,21h22L12,2zM13,16h-2v2h2v-2zM13,10h-2v4h2v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/request_page.xml b/compose/material/material/icons/generator/raw-icons/outlined/request_page.xml
deleted file mode 100644
index 9c1a16f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/request_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,4L18,8.83V20H6V4H13.17M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2L14,2zM15,11h-4v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h1V8h2v1h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/request_quote.xml b/compose/material/material/icons/generator/raw-icons/outlined/request_quote.xml
deleted file mode 100644
index b155f4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/request_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM6,20V4h7v4h5v12H6zM11,19h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1H9v2h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/reset_tv.xml b/compose/material/material/icons/generator/raw-icons/outlined/reset_tv.xml
deleted file mode 100644
index 8ba9b55..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/reset_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8V5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v12c0,1.1 0.9,2 2,2h4v2h8v-2h4c1.1,0 1.99,-0.9 1.99,-2v-5H22c0,-1.1 -0.9,-2 -2,-2h-7.17l1.83,-1.83l-1.41,-1.41C9.69,10.31 10.88,9.12 9,11c2.06,2.06 0.9,0.9 4.24,4.24l1.41,-1.41L12.83,12H20v5H4V5h16v3H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/restart_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/restart_alt.xml
deleted file mode 100644
index 29fd78d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/restart_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c0,-1.65 0.67,-3.15 1.76,-4.24L6.34,7.34C4.9,8.79 4,10.79 4,13c0,4.08 3.05,7.44 7,7.93v-2.02C8.17,18.43 6,15.97 6,13zM20,13c0,-4.42 -3.58,-8 -8,-8c-0.06,0 -0.12,0.01 -0.18,0.01l1.09,-1.09L11.5,2.5L8,6l3.5,3.5l1.41,-1.41l-1.08,-1.08C11.89,7.01 11.95,7 12,7c3.31,0 6,2.69 6,6c0,2.97 -2.17,5.43 -5,5.91v2.02C16.95,20.44 20,17.08 20,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/restaurant.xml b/compose/material/material/icons/generator/raw-icons/outlined/restaurant.xml
deleted file mode 100644
index 26d3cc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6v8h3v8h2L21,2c-2.76,0 -5,2.24 -5,4zM11,9L9,9L9,2L7,2v7L5,9L5,2L3,2v7c0,2.21 1.79,4 4,4v9h2v-9c2.21,0 4,-1.79 4,-4L13,2h-2v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/restaurant_menu.xml b/compose/material/material/icons/generator/raw-icons/outlined/restaurant_menu.xml
deleted file mode 100644
index 4797566..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/restaurant_menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/restore.xml b/compose/material/material/icons/generator/raw-icons/outlined/restore.xml
deleted file mode 100644
index 9912df0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l4,3.99L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.25,2.52 0.77,-1.28 -3.52,-2.09L13.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/restore_from_trash.xml b/compose/material/material/icons/generator/raw-icons/outlined/restore_from_trash.xml
deleted file mode 100644
index 0a54ef2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/restore_from_trash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4zM6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8,14L8,9h8v10L8,19v-5zM10,18h4v-4h2l-4,-4 -4,4h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/restore_page.xml b/compose/material/material/icons/generator/raw-icons/outlined/restore_page.xml
deleted file mode 100644
index 98418ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/restore_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,20L6,20L6,4h7.17L18,8.83L18,20zM8.45,10.57L7.28,9.4L7.28,13h3.6l-1.44,-1.44c0.52,-1.01 1.58,-1.71 2.79,-1.71 1.74,0 3.15,1.41 3.15,3.15s-1.41,3.15 -3.15,3.15c-1.07,0 -2.02,-0.54 -2.58,-1.35L8.1,14.8c0.69,1.58 2.28,2.7 4.12,2.7 2.48,0 4.5,-2.02 4.5,-4.5s-2.02,-4.5 -4.5,-4.5c-1.59,0 -2.97,0.83 -3.77,2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/reviews.xml b/compose/material/material/icons/generator/raw-icons/outlined/reviews.xml
deleted file mode 100644
index 0e0b2bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/reviews.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15l1.57,-3.43l3.43,-1.57l-3.43,-1.57l-1.57,-3.43l-1.57,3.43l-3.43,1.57l3.43,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rice_bowl.xml b/compose/material/material/icons/generator/raw-icons/outlined/rice_bowl.xml
deleted file mode 100644
index 236c67d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rice_bowl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,14c-0.66,1.92 -2.24,3.54 -4.4,4.39L14,18.88V20h-4v-1.12l-1.27,-0.5c-2.16,-0.85 -3.74,-2.47 -4.4,-4.39H19.66M12,2C6.48,2 2,6.48 2,12c0,3.69 2.47,6.86 6,8.25V22h8v-1.75c3.53,-1.39 6,-4.56 6,-8.25h0C22,6.48 17.52,2 12,2L12,2zM10,12V4.26C10.64,4.1 11.31,4 12,4s1.36,0.1 2,0.26V12H10L10,12zM16,12V5.08c2.39,1.39 4,3.96 4,6.92H16L16,12zM4,12c0,-2.95 1.61,-5.53 4,-6.92V12H4L4,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ring_volume.xml b/compose/material/material/icons/generator/raw-icons/outlined/ring_volume.xml
deleted file mode 100644
index 51feb62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ring_volume.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.71,16.67C20.66,13.78 16.54,12 12,12 7.46,12 3.34,13.78 0.29,16.67c-0.18,0.18 -0.29,0.43 -0.29,0.71 0,0.28 0.11,0.53 0.29,0.71l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.11 0.7,-0.28 0.79,-0.74 1.69,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.5 0.56,-0.9v-3.1c1.45,-0.48 3,-0.73 4.6,-0.73 1.6,0 3.15,0.25 4.6,0.72v3.1c0,0.39 0.23,0.74 0.56,0.9 0.98,0.49 1.87,1.12 2.66,1.85 0.18,0.18 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71 0,-0.27 -0.11,-0.52 -0.29,-0.7zM5.4,17.23c-0.66,0.37 -1.29,0.8 -1.87,1.27l-1.07,-1.07c0.91,-0.75 1.9,-1.39 2.95,-1.9v1.7zM20.47,18.49c-0.59,-0.48 -1.21,-0.9 -1.87,-1.27v-1.7c1.04,0.51 2.03,1.15 2.94,1.9l-1.07,1.07zM21.16,6.26l-1.41,-1.41 -3.56,3.55 1.41,1.41s3.45,-3.52 3.56,-3.55zM11,2h2v5h-2zM6.4,9.81L7.81,8.4 4.26,4.84 2.84,6.26c0.11,0.03 3.56,3.55 3.56,3.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rocket.xml b/compose/material/material/icons/generator/raw-icons/outlined/rocket.xml
deleted file mode 100644
index a3d1a31..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rocket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2S14,12.1 14,11zM7.98,18.25c-0.29,-0.9 -0.57,-1.94 -0.76,-3L6,16.07v2.98L7.98,18.25zM12,2c0,0 5,2 5,11l2.11,1.41c0.56,0.37 0.89,1 0.89,1.66V22l-5,-2H9l-5,2v-5.93c0,-0.67 0.33,-1.29 0.89,-1.66L7,13C7,4 12,2 12,2zM12,4.36c0,0 -3,2.02 -3,8.64c0,2.25 1,5 1,5h4c0,0 1,-2.75 1,-5C15,6.38 12,4.36 12,4.36zM18,19.05v-2.98l-1.22,-0.81c-0.19,1.05 -0.47,2.1 -0.76,3L18,19.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rocket_launch.xml b/compose/material/material/icons/generator/raw-icons/outlined/rocket_launch.xml
deleted file mode 100644
index 0fe4672..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rocket_launch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15c-0.83,0 -1.58,0.34 -2.12,0.88C2.7,17.06 2,22 2,22s4.94,-0.7 6.12,-1.88C8.66,19.58 9,18.83 9,18C9,16.34 7.66,15 6,15zM6.71,18.71c-0.28,0.28 -2.17,0.76 -2.17,0.76s0.47,-1.88 0.76,-2.17C5.47,17.11 5.72,17 6,17c0.55,0 1,0.45 1,1C7,18.28 6.89,18.53 6.71,18.71zM17.42,13.65L17.42,13.65c6.36,-6.36 4.24,-11.31 4.24,-11.31s-4.95,-2.12 -11.31,4.24l-2.49,-0.5C7.21,5.95 6.53,6.16 6.05,6.63L2,10.69l5,2.14L11.17,17l2.14,5l4.05,-4.05c0.47,-0.47 0.68,-1.15 0.55,-1.81L17.42,13.65zM7.41,10.83L5.5,10.01l1.97,-1.97l1.44,0.29C8.34,9.16 7.83,10.03 7.41,10.83zM13.99,18.5l-0.82,-1.91c0.8,-0.42 1.67,-0.93 2.49,-1.5l0.29,1.44L13.99,18.5zM16,12.24c-1.32,1.32 -3.38,2.4 -4.04,2.73l-2.93,-2.93c0.32,-0.65 1.4,-2.71 2.73,-4.04c4.68,-4.68 8.23,-3.99 8.23,-3.99S20.68,7.56 16,12.24zM15,11c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S13.9,11 15,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/roller_shades.xml b/compose/material/material/icons/generator/raw-icons/outlined/roller_shades.xml
deleted file mode 100644
index 0fc620d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/roller_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM18,5v6H6V5H18zM6,19v-6h5v1.82c-0.45,0.32 -0.75,0.84 -0.75,1.43c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75c0,-0.59 -0.3,-1.12 -0.75,-1.43V13h5v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/roller_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/outlined/roller_shades_closed.xml
deleted file mode 100644
index cd3be25..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/roller_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h8.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM18,5v10H6V5H18zM6,19v-2h5v2H6zM13,19v-2h5v2H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/roller_skating.xml b/compose/material/material/icons/generator/raw-icons/outlined/roller_skating.xml
deleted file mode 100644
index db31b15..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/roller_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.79 -1.19,-3.34 -2.91,-3.82l-2.62,-0.74C13.62,7.19 13,6.39 13,5.5V1H4v15h16V12zM18,14H6V3h5v1H9.5C9.22,4 9,4.22 9,4.5C9,4.78 9.22,5 9.5,5H11l0.1,1H9.5C9.22,6 9,6.22 9,6.5C9,6.78 9.22,7 9.5,7h1.81c0.45,1.12 1.4,2.01 2.6,2.36l2.62,0.73C17.4,10.33 18,11.1 18,12V14zM5,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S6.66,17 5,17zM5,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C6,20.55 5.55,21 5,21zM19,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,17 19,17zM19,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,20.55 19.55,21 19,21zM12,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S13.66,17 12,17zM12,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,20.55 12.55,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/roofing.xml b/compose/material/material/icons/generator/raw-icons/outlined/roofing.xml
deleted file mode 100644
index 5d5f2b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/roofing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18h-2v-2h2V18zM15,14H9v6h6V14L15,14zM19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7,-6.31L19,12h3L19,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/room.xml b/compose/material/material/icons/generator/raw-icons/outlined/room.xml
deleted file mode 100644
index 928ff36..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/room.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM7,9c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.88 -2.88,7.19 -5,9.88C9.92,16.21 7,11.85 7,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/room_preferences.xml b/compose/material/material/icons/generator/raw-icons/outlined/room_preferences.xml
deleted file mode 100644
index 7f79013..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/room_preferences.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.69,16.37l1.14,-1l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L19,12h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.08,0.5 -0.08,0.76 0,1.26l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L17,22h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1C21.77,17.13 21.77,16.87 21.69,16.37zM18,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S19.1,19 18,19zM19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19zM12,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/room_service.xml b/compose/material/material/icons/generator/raw-icons/outlined/room_service.xml
deleted file mode 100644
index fa2361d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/room_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.98,17L2,17v2h20v-2zM21,16c-0.27,-4.07 -3.25,-7.4 -7.16,-8.21 0.1,-0.24 0.16,-0.51 0.16,-0.79 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2c0,0.28 0.06,0.55 0.16,0.79C6.25,8.6 3.27,11.93 3,16h18zM12,9.58c2.95,0 5.47,1.83 6.5,4.41h-13c1.03,-2.58 3.55,-4.41 6.5,-4.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rotate_90_degrees_ccw.xml b/compose/material/material/icons/generator/raw-icons/outlined/rotate_90_degrees_ccw.xml
deleted file mode 100644
index 417aa80..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rotate_90_degrees_ccw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.34,6.41L0.86,12.9l6.49,6.48 6.49,-6.48 -6.5,-6.49zM3.69,12.9l3.66,-3.66L11,12.9l-3.66,3.66 -3.65,-3.66zM19.36,6.64C17.61,4.88 15.3,4 13,4L13,0.76L8.76,5 13,9.24L13,6c1.79,0 3.58,0.68 4.95,2.05 2.73,2.73 2.73,7.17 0,9.9C16.58,19.32 14.79,20 13,20c-0.97,0 -1.94,-0.21 -2.84,-0.61l-1.49,1.49C10.02,21.62 11.51,22 13,22c2.3,0 4.61,-0.88 6.36,-2.64 3.52,-3.51 3.52,-9.21 0,-12.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rotate_90_degrees_cw.xml b/compose/material/material/icons/generator/raw-icons/outlined/rotate_90_degrees_cw.xml
deleted file mode 100644
index 31adc06..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rotate_90_degrees_cw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,13c0,4.97 4.03,9 9,9c1.76,0 3.4,-0.51 4.79,-1.38l-1.46,-1.46C13.34,19.69 12.2,20 11,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7h0.17L9.59,7.59L11,9l4,-4l-4,-4L9.58,2.41L11.17,4H11C6.03,4 2,8.03 2,13zM11,13l6,6l6,-6l-6,-6L11,13zM17,16.17L13.83,13L17,9.83L20.17,13L17,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rotate_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/rotate_left.xml
deleted file mode 100644
index f57e17d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rotate_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11h2.02c0.14,-0.87 0.49,-1.72 1.02,-2.47zM6.09,13L4.07,13c0.17,1.39 0.72,2.73 1.62,3.89l1.41,-1.42c-0.52,-0.75 -0.87,-1.59 -1.01,-2.47zM7.1,18.32c1.16,0.9 2.51,1.44 3.9,1.61L11,17.9c-0.87,-0.15 -1.71,-0.49 -2.46,-1.03L7.1,18.32zM13,4.07L13,1L8.45,5.55 13,10L13,6.09c2.84,0.48 5,2.94 5,5.91s-2.16,5.43 -5,5.91v2.02c3.95,-0.49 7,-3.85 7,-7.93s-3.05,-7.44 -7,-7.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rotate_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/rotate_right.xml
deleted file mode 100644
index 3dc2f9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rotate_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.55,5.55L11,1v3.07C7.06,4.56 4,7.92 4,12s3.05,7.44 7,7.93v-2.02c-2.84,-0.48 -5,-2.94 -5,-5.91s2.16,-5.43 5,-5.91L11,10l4.55,-4.45zM19.93,11c-0.17,-1.39 -0.72,-2.73 -1.62,-3.89l-1.42,1.42c0.54,0.75 0.88,1.6 1.02,2.47h2.02zM13,17.9v2.02c1.39,-0.17 2.74,-0.71 3.9,-1.61l-1.44,-1.44c-0.75,0.54 -1.59,0.89 -2.46,1.03zM16.89,15.48l1.42,1.41c0.9,-1.16 1.45,-2.5 1.62,-3.89h-2.02c-0.14,0.87 -0.48,1.72 -1.02,2.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/roundabout_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/roundabout_left.xml
deleted file mode 100644
index 09cb912..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/roundabout_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.08,8c0.48,-2.84 2.94,-5 5.92,-5c3.31,0 6,2.69 6,6c0,2.97 -2.16,5.44 -5,5.92L17,21h-2l0,-6.09c0,-0.98 0.71,-1.8 1.67,-1.97C18.56,12.63 20,10.98 20,9c0,-2.21 -1.79,-4 -4,-4c-1.98,0 -3.63,1.44 -3.94,3.33C11.89,9.29 11.07,10 10.09,10l-4.26,0l1.59,1.59L6,13L2,9l4,-4l1.41,1.41L5.83,8L10.08,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/roundabout_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/roundabout_right.xml
deleted file mode 100644
index 3d1f1a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/roundabout_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,8C13.44,5.16 10.97,3 8,3C4.69,3 2,5.69 2,9c0,2.97 2.16,5.44 5,5.92L7,21h2l0,-6.09c0,-0.98 -0.71,-1.8 -1.67,-1.97C5.44,12.63 4,10.98 4,9c0,-2.21 1.79,-4 4,-4c1.98,0 3.63,1.44 3.94,3.33C12.11,9.29 12.93,10 13.91,10l4.26,0l-1.59,1.59L18,13l4,-4l-4,-4l-1.41,1.41L18.17,8L13.92,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rounded_corner.xml b/compose/material/material/icons/generator/raw-icons/outlined/rounded_corner.xml
deleted file mode 100644
index afb1b77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rounded_corner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2v-2zM19,17h2v-2h-2v2zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM7,5h2L9,3L7,3v2zM15,21h2v-2h-2v2zM11,21h2v-2h-2v2zM15,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM3,21h2v-2L3,19v2zM21,8c0,-2.76 -2.24,-5 -5,-5h-5v2h5c1.65,0 3,1.35 3,3v5h2L21,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/route.xml b/compose/material/material/icons/generator/raw-icons/outlined/route.xml
deleted file mode 100644
index 878bca3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/route.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15.18V7c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v10c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8.82C8.16,8.4 9,7.3 9,6c0,-1.66 -1.34,-3 -3,-3S3,4.34 3,6c0,1.3 0.84,2.4 2,2.82V17c0,2.21 1.79,4 4,4s4,-1.79 4,-4V7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v8.18c-1.16,0.41 -2,1.51 -2,2.82c0,1.66 1.34,3 3,3s3,-1.34 3,-3C21,16.7 20.16,15.6 19,15.18zM6,7C5.45,7 5,6.55 5,6s0.45,-1 1,-1s1,0.45 1,1S6.55,7 6,7zM18,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S18.55,19 18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/router.xml b/compose/material/material/icons/generator/raw-icons/outlined/router.xml
deleted file mode 100644
index b39ba79..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/router.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4.2c1.5,0 3,0.6 4.2,1.7l0.8,-0.8C19.6,3.7 17.8,3 16,3s-3.6,0.7 -5,2.1l0.8,0.8C13,4.8 14.5,4.2 16,4.2zM12.7,6.7l0.8,0.8c0.7,-0.7 1.6,-1 2.5,-1s1.8,0.3 2.5,1l0.8,-0.8c-0.9,-0.9 -2.1,-1.4 -3.3,-1.4s-2.4,0.5 -3.3,1.4zM19,13h-2L17,9h-2v4L5,13c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-4h14v4zM6,16h2v2L6,18zM9.5,16h2v2h-2zM13,16h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rowing.xml b/compose/material/material/icons/generator/raw-icons/outlined/rowing.xml
deleted file mode 100644
index 596f766..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rowing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5L4,19l1.5,1.5L9,17h2l-2.5,-2.5zM15,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM21,21.01L18,24l-2.99,-3.01L15.01,19.5l-7.1,-7.09c-0.31,0.05 -0.61,0.07 -0.91,0.07v-2.16c1.66,0.03 3.61,-0.87 4.67,-2.04l1.4,-1.55c0.19,-0.21 0.43,-0.38 0.69,-0.5 0.29,-0.14 0.62,-0.23 0.96,-0.23h0.03C15.99,6.01 17,7.02 17,8.26v5.75c0,0.84 -0.35,1.61 -0.92,2.16l-3.58,-3.58v-2.27c-0.63,0.52 -1.43,1.02 -2.29,1.39L16.5,18L18,18l3,3.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rss_feed.xml b/compose/material/material/icons/generator/raw-icons/outlined/rss_feed.xml
deleted file mode 100644
index 198fdc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rss_feed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.18,17.82m-2.18,0a2.18,2.18 0,1 1,4.36 0a2.18,2.18 0,1 1,-4.36 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4.44v2.83c7.03,0 12.73,5.7 12.73,12.73h2.83c0,-8.59 -6.97,-15.56 -15.56,-15.56zM4,10.1v2.83c3.9,0 7.07,3.17 7.07,7.07h2.83c0,-5.47 -4.43,-9.9 -9.9,-9.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rsvp.xml b/compose/material/material/icons/generator/raw-icons/outlined/rsvp.xml
deleted file mode 100644
index e01c7bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rsvp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9zM5.1,12.9L6,15H4.5l-0.85,-2H2.5v2H1V9h3.5C5.35,9 6,9.65 6,10.5v1C6,12.1 5.6,12.65 5.1,12.9zM4.5,10.5h-2v1h2V10.5zM21.5,13h-2v2H18V9h3.5c0.83,0 1.5,0.67 1.5,1.5v1C23,12.33 22.33,13 21.5,13zM21.5,10.5h-2v1h2V10.5zM11.5,9v1.5h-3v0.75h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7v-1.5h3v-0.75H7.75C7.34,12.75 7,12.41 7,12v-2c0,-0.55 0.45,-1 1,-1H11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rtt.xml b/compose/material/material/icons/generator/raw-icons/outlined/rtt.xml
deleted file mode 100644
index 56264b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rtt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.03,3l-1.11,7.07h2.62l0.7,-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4,-2.57h-2.35l2,-12.86h2.58l-0.71,4.5h2.65L22,3H9.03zM8,5H4L3.69,7h4L8,5zM7.39,9h-4l-0.31,2h4L7.39,9zM8.31,17h-6L2,19h6L8.31,17zM8.93,13h-6l-0.31,2h6.01L8.93,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rule.xml b/compose/material/material/icons/generator/raw-icons/outlined/rule.xml
deleted file mode 100644
index 11eb72d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.54,11L13,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,11zM11,7H2v2h9V7zM21,13.41L19.59,12L17,14.59L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41zM11,15H2v2h9V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rule_folder.xml b/compose/material/material/icons/generator/raw-icons/outlined/rule_folder.xml
deleted file mode 100644
index 21bb1ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rule_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,16L5,13.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L7.83,16zM17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13zM20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/run_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/run_circle.xml
deleted file mode 100644
index e0e7e62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/run_circle.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.54,8.97c-0.23,-0.47 -0.76,-0.71 -1.26,-0.53L9,9.65V12h1v-1.65l1.54,-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77l0.52,-2.64L13,14.42V18h1v-3.97l-1.32,-1.44l0.41,-2.35C13.99,11.46 15.3,12 16,12v-1C15.59,11 14.37,10.67 13.54,8.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/running_with_errors.xml b/compose/material/material/icons/generator/raw-icons/outlined/running_with_errors.xml
deleted file mode 100644
index b3eba04..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/running_with_errors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10v8h-2v-8H22zM20,20v2h2v-2H20zM18,17.29C16.53,18.95 14.39,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8v9l7.55,-7.55C17.72,3.34 15.02,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c2.25,0 4.33,-0.74 6,-2V17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/rv_hookup.xml b/compose/material/material/icons/generator/raw-icons/outlined/rv_hookup.xml
deleted file mode 100644
index 3b8fe70..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/rv_hookup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17v-6c0,-1.1 -0.9,-2 -2,-2L7,9L7,7l-3,3 3,3v-2h4v3L4,14v3c0,1.1 0.9,2 2,2h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h8v-2h-2zM11,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,14h-4v-3h4v3zM17,2v2L9,4v2h8v2l3,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/safety_check.xml b/compose/material/material/icons/generator/raw-icons/outlined/safety_check.xml
deleted file mode 100644
index 9f559d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/safety_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09zM12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7zM13.65,14.35l-2.15,-2.15V9h1v2.79l1.85,1.85L13.65,14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/safety_divider.xml b/compose/material/material/icons/generator/raw-icons/outlined/safety_divider.xml
deleted file mode 100644
index 4cdfc8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/safety_divider.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5h2v14h-2V5zM5,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C3,11.1 3.9,12 5,12zM7.78,13.58C6.93,13.21 5.99,13 5,13s-1.93,0.21 -2.78,0.58C1.48,13.9 1,14.62 1,15.43L1,16h8l0,-0.57C9,14.62 8.52,13.9 7.78,13.58zM19,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C17,11.1 17.9,12 19,12zM21.78,13.58C20.93,13.21 19.99,13 19,13s-1.93,0.21 -2.78,0.58C15.48,13.9 15,14.62 15,15.43L15,16h8l0,-0.57C23,14.62 22.52,13.9 21.78,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sailing.xml b/compose/material/material/icons/generator/raw-icons/outlined/sailing.xml
deleted file mode 100644
index 2436c7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sailing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13.5V2L3,13.5H11zM9,11.5H6.83L9,8.38V11.5zM21,13.5C21,6.5 14.5,1 12.5,1c0,0 1,3 1,6.5s-1,6 -1,6H21zM15.38,5.24c1.42,1.52 2.88,3.72 3.41,6.26h-3.68c0.21,-1.1 0.39,-2.46 0.39,-4C15.5,6.71 15.45,5.95 15.38,5.24zM22,15H2c0.31,1.53 1.16,2.84 2.33,3.73C4.98,18.46 5.55,18.01 6,17.5C6.73,18.34 7.8,19 9,19s2.27,-0.66 3,-1.5c0.73,0.84 1.8,1.5 3,1.5s2.26,-0.66 3,-1.5c0.45,0.51 1.02,0.96 1.67,1.23C20.84,17.84 21.69,16.53 22,15zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sanitizer.xml b/compose/material/material/icons/generator/raw-icons/outlined/sanitizer.xml
deleted file mode 100644
index 127b32b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sanitizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,6.5C15.5,5.66 17,4 17,4s1.5,1.66 1.5,2.5C18.5,7.33 17.83,8 17,8S15.5,7.33 15.5,6.5zM19.5,15c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.67 -2.5,-4.5 -2.5,-4.5S17,10.83 17,12.5C17,13.88 18.12,15 19.5,15zM13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14zM16,12v8c0,1.1 -0.9,2 -2,2H6c-1.1,0 -2,-0.9 -2,-2v-8c0,-2.97 2.16,-5.43 5,-5.91V4H7V2h6c1.13,0 2.15,0.39 2.99,1.01l-1.43,1.43C14.1,4.17 13.57,4 13,4h-2v2.09C13.84,6.57 16,9.03 16,12zM14,12c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v8h8V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/satellite.xml b/compose/material/material/icons/generator/raw-icons/outlined/satellite.xml
deleted file mode 100644
index 62bde47..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/satellite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM8.57,6L6,6v2.58c1.42,0 2.57,-1.16 2.57,-2.58zM12,6h-1.71c0,2.36 -1.92,4.29 -4.29,4.29L6,12c3.32,0 6,-2.69 6,-6zM14.14,11.86l-3,3.87L9,13.15 6,17h12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/satellite_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/satellite_alt.xml
deleted file mode 100644
index d437d5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/satellite_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14l2,0c0,4.97 -4.03,9 -9,9l0,-2C17.87,21 21,17.87 21,14zM14,17l0,2c2.76,0 5,-2.24 5,-5l-2,0C17,15.66 15.66,17 14,17zM18.26,0.59l3.54,3.54c0.78,0.78 0.78,2.05 0,2.83l-3.18,3.18c-0.78,0.78 -2.05,0.78 -2.83,0l-1.24,-1.24L13.84,9.6l1.24,1.24c0.78,0.78 0.78,2.05 0,2.83l-1.41,1.41c-0.78,0.78 -2.05,0.78 -2.83,0L9.6,13.84l-0.71,0.71l1.24,1.24c0.78,0.78 0.78,2.05 0,2.83L6.95,21.8c-0.78,0.78 -2.05,0.78 -2.83,0l-3.54,-3.54c-0.78,-0.78 -0.78,-2.05 0,-2.83l3.18,-3.18c0.78,-0.78 2.05,-0.78 2.83,0l1.24,1.24l0.71,-0.71L7.3,11.55c-0.78,-0.78 -0.78,-2.05 0,-2.83L8.72,7.3c0.78,-0.78 2.05,-0.78 2.83,0l1.24,1.24l0.71,-0.71L12.25,6.6c-0.78,-0.78 -0.78,-2.05 0,-2.83l3.18,-3.18C16.22,-0.2 17.48,-0.2 18.26,0.59zM3.06,15.79L2,16.85l3.54,3.54l1.06,-1.06L3.06,15.79zM5.18,13.67l-1.06,1.06l3.54,3.54l1.06,-1.06L5.18,13.67zM10.13,8.72l-1.41,1.41l3.54,3.54l1.41,-1.41L10.13,8.72zM14.73,4.12l-1.06,1.06l3.54,3.54l1.06,-1.06L14.73,4.12zM16.85,2l-1.06,1.06l3.54,3.54l1.06,-1.06L16.85,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/save.xml b/compose/material/material/icons/generator/raw-icons/outlined/save.xml
deleted file mode 100644
index 1ce5843..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/save.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7l-4,-4zM19,19L5,19L5,5h11.17L19,7.83L19,19zM12,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM6,6h9v4L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/save_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/save_alt.xml
deleted file mode 100644
index 4cf0589..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/save_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12v7L5,19v-7L3,12v7c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2zM13,12.67l2.59,-2.58L17,11.5l-5,5 -5,-5 1.41,-1.41L11,12.67L11,3h2v9.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/save_as.xml b/compose/material/material/icons/generator/raw-icons/outlined/save_as.xml
deleted file mode 100644
index 045d9084..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/save_as.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.4V7l-4,-4H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h7.4l2,-2H5V5h11.17L19,7.83v6.57L21,12.4zM15,15c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,13.34 15,15zM6,6h9v4H6V6zM19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25zM23.25,16.51l-0.85,0.85l-1.77,-1.77l0.85,-0.85c0.2,-0.2 0.51,-0.2 0.71,0l1.06,1.06C23.45,16 23.45,16.32 23.25,16.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/saved_search.xml b/compose/material/material/icons/generator/raw-icons/outlined/saved_search.xml
deleted file mode 100644
index 5d2bd8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/saved_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.73,13.31C15.52,12.24 16,10.93 16,9.5C16,5.91 13.09,3 9.5,3S3,5.91 3,9.5C3,13.09 5.91,16 9.5,16c1.43,0 2.74,-0.48 3.81,-1.27L19.59,21L21,19.59L14.73,13.31zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5S14,7.01 14,9.5S11.99,14 9.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.44l-0.79,-2.44l-0.79,2.44l-2.46,0l2.01,1.59l-0.77,2.47l2.01,-1.53l2.01,1.53l-0.77,-2.47l2.01,-1.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/savings.xml b/compose/material/material/icons/generator/raw-icons/outlined/savings.xml
deleted file mode 100644
index 64b8eac..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/savings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S15,10.55 15,10zM8,9h5V7H8V9zM22,7.5v6.97l-2.82,0.94L17.5,21L12,21v-2h-2v2l-5.5,0C4.5,21 2,12.54 2,9.5S4.46,4 7.5,4l5,0c0.91,-1.21 2.36,-2 4,-2C17.33,2 18,2.67 18,3.5c0,0.21 -0.04,0.4 -0.12,0.58c-0.14,0.34 -0.26,0.73 -0.32,1.15l2.27,2.27H22zM20,9.5h-1L15.5,6c0,-0.65 0.09,-1.29 0.26,-1.91C14.79,4.34 14,5.06 13.67,6L7.5,6C5.57,6 4,7.57 4,9.5c0,1.88 1.22,6.65 2.01,9.5L8,19v-2h6v2l2.01,0l1.55,-5.15L20,13.03V9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/scale.xml b/compose/material/material/icons/generator/raw-icons/outlined/scale.xml
deleted file mode 100644
index ab9362c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11V8c4.56,-0.58 8,-3.1 8,-6H2c0,2.9 3.44,5.42 8,6l0,3c-3.68,0.73 -8,3.61 -8,11h6v-2H4.13c0.93,-6.83 6.65,-7.2 7.87,-7.2s6.94,0.37 7.87,7.2H16v2h6C22,14.61 17.68,11.73 14,11zM18.87,4C17.5,5.19 15,6.12 12,6.12C9,6.12 6.5,5.19 5.13,4H18.87zM12,22c-1.1,0 -2,-0.9 -2,-2c0,-0.55 0.22,-1.05 0.59,-1.41C11.39,17.79 16,16 16,16s-1.79,4.61 -2.59,5.41C13.05,21.78 12.55,22 12,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/scanner.xml b/compose/material/material/icons/generator/raw-icons/outlined/scanner.xml
deleted file mode 100644
index a533848..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,10.7L4.2,5l-0.7,1.9L17.6,12L5,12c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5.5c0,-0.8 -0.5,-1.6 -1.2,-1.8zM19,18L5,18v-4h14v4zM6,15h2v2L6,17zM10,15h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/scatter_plot.xml b/compose/material/material/icons/generator/raw-icons/outlined/scatter_plot.xml
deleted file mode 100644
index 17298b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/scatter_plot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM7,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM11,10c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM11,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM16.6,21.6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM16.6,15.6c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/schedule.xml b/compose/material/material/icons/generator/raw-icons/outlined/schedule.xml
deleted file mode 100644
index 28e127d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/schedule.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/schedule_send.xml b/compose/material/material/icons/generator/raw-icons/outlined/schedule_send.xml
deleted file mode 100644
index e07e1ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/schedule_send.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12l-6,-1.5V7.01l8.87,3.74c0.94,-0.47 2,-0.75 3.13,-0.75c0.1,0 0.19,0.01 0.28,0.01L3,4v16l7,-2.95c0,-0.02 0,-0.03 0,-0.05c0,-0.8 0.14,-1.56 0.39,-2.28L5,16.99V13.5L11,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/schema.xml b/compose/material/material/icons/generator/raw-icons/outlined/schema.xml
deleted file mode 100644
index dab7b7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/schema.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14zM6,3h3v2H6V3zM9,21H6v-2h3V21zM9,13H6v-2h3V13zM19,13h-3v-2h3V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/school.xml b/compose/material/material/icons/generator/raw-icons/outlined/school.xml
deleted file mode 100644
index e52b2bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/school.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L1,9l4,2.18v6L12,21l7,-3.82v-6l2,-1.09L21,17h2L23,9L12,3zM18.82,9L12,12.72 5.18,9 12,5.28 18.82,9zM17,15.99l-5,2.73 -5,-2.73v-3.72L12,15l5,-2.73v3.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/science.xml b/compose/material/material/icons/generator/raw-icons/outlined/science.xml
deleted file mode 100644
index c7ad090..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/science.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.33L18,18H6l5,-6.67V6h2M15.96,4H8.04C7.62,4 7.39,4.48 7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06 3.18,20 4,20h16c0.82,0 1.29,-0.94 0.8,-1.6L15,10.67V6.5l1.35,-1.69C16.61,4.48 16.38,4 15.96,4L15.96,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/score.xml b/compose/material/material/icons/generator/raw-icons/outlined/score.xml
deleted file mode 100644
index d38efda..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19l4,-4 4,4 6,-6v6zM19,10.5l-6,6 -4,-4 -4,4L5,5h14v5.5zM13.5,9L13.5,6L12,6v6h1.5zM17.2,12l-2,-3 2,-3h-1.7l-2,3 2,3zM11,10.5L8.5,10.5v-0.75L11,9.75L11,6L7,6v1.5h2.5v0.75L7,8.25L7,12h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/scoreboard.xml b/compose/material/material/icons/generator/raw-icons/outlined/scoreboard.xml
deleted file mode 100644
index 02a6dfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/scoreboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9h-2.5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1H18c0.55,0 1,-0.45 1,-1v-4C19,9.45 18.55,9 18,9zM17.5,13.5H16v-3h1.5V13.5zM9.5,15H5v-2.5c0,-0.55 0.45,-1 1,-1h2v-1H5V9h3.5c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1h-2v1h3V15zM12.75,11h-1.5V9.5h1.5V11zM12.75,14.5h-1.5V13h1.5V14.5zM22,6v12c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h3V2h2v2h6V2h2v2h3C21.1,4 22,4.9 22,6zM20,18V6h-7.25v1.5h-1.5V6H4v12h7.25v-1.5h1.5V18H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_landscape.xml b/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_landscape.xml
deleted file mode 100644
index 9d81d86..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5L3,5c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10zM10,16h4c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1v-1c0,-1.11 -0.9,-2 -2,-2 -1.11,0 -2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2v1h-2.4v-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_portrait.xml b/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_portrait.xml
deleted file mode 100644
index 428f392..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1v-1c0,-1.11 -0.9,-2 -2,-2 -1.11,0 -2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2v1h-2.4v-1zM17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_rotation.xml b/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_rotation.xml
deleted file mode 100644
index de6ae2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screen_lock_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.3,13.77l-2.57,-2.57 -1.41,1.41 2.22,2.22 -5.66,5.66L3.56,9.17l5.66,-5.66 2.1,2.1 1.41,-1.41 -2.45,-2.45c-0.59,-0.59 -1.54,-0.59 -2.12,0L1.8,8.11c-0.59,0.59 -0.59,1.54 0,2.12l12.02,12.02c0.59,0.59 1.54,0.59 2.12,0l6.36,-6.36c0.59,-0.59 0.59,-1.54 0,-2.12zM7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.82 -1.33,1.33zM15.05,10h5c0.55,0 1,-0.45 1,-1L21.05,5c0,-0.55 -0.45,-1 -1,-1v-0.5c0,-1.38 -1.12,-2.5 -2.5,-2.5s-2.5,1.12 -2.5,2.5L15.05,4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM15.85,3.5c0,-0.94 0.76,-1.7 1.7,-1.7s1.7,0.76 1.7,1.7L19.25,4h-3.4v-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screen_rotation.xml b/compose/material/material/icons/generator/raw-icons/outlined/screen_rotation.xml
deleted file mode 100644
index 9b38464..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screen_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.48,2.52c3.27,1.55 5.61,4.72 5.97,8.48h1.5C23.44,4.84 18.29,0 12,0l-0.66,0.03 3.81,3.81 1.33,-1.32zM10.23,1.75c-0.59,-0.59 -1.54,-0.59 -2.12,0L1.75,8.11c-0.59,0.59 -0.59,1.54 0,2.12l12.02,12.02c0.59,0.59 1.54,0.59 2.12,0l6.36,-6.36c0.59,-0.59 0.59,-1.54 0,-2.12L10.23,1.75zM14.83,21.19L2.81,9.17l6.36,-6.36 12.02,12.02 -6.36,6.36zM7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.81 -1.33,1.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screen_rotation_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/screen_rotation_alt.xml
deleted file mode 100644
index 553db9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screen_rotation_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7.59l5,-5c0.78,-0.78 2.05,-0.78 2.83,0L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59zM20,19h2v-6h-6v2h2.59l-4.99,5l-7.01,-7H3.76l8.41,8.41c0.78,0.78 2.05,0.78 2.83,0l5,-5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screen_search_desktop.xml b/compose/material/material/icons/generator/raw-icons/outlined/screen_search_desktop.xml
deleted file mode 100644
index b778653..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screen_search_desktop.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v11C2,17.1 2.9,18 4,18zM4,5h16v11H4V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,19h22v2h-22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.97,7.53c-1.37,-1.37 -3.58,-1.37 -4.95,0s-1.37,3.58 0,4.95c1.18,1.18 3,1.34 4.36,0.47l2.09,2.09l1.06,-1.06l-2.09,-2.09C15.31,10.53 15.16,8.71 13.97,7.53zM12.91,11.41c-0.78,0.78 -2.05,0.78 -2.83,0c-0.78,-0.78 -0.78,-2.05 0,-2.83s2.05,-0.78 2.83,0C13.69,9.37 13.69,10.63 12.91,11.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screen_share.xml b/compose/material/material/icons/generator/raw-icons/outlined/screen_share.xml
deleted file mode 100644
index 311c60c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,6c0,-1.11 -0.9,-2 -2,-2L4,4c-1.11,0 -2,0.89 -2,2v10c0,1.1 0.89,2 2,2L0,18v2h24v-2h-4zM4,16L4,6h16v10.01L4,16zM13,9.13c-3.89,0.54 -5.44,3.2 -6,5.87 1.39,-1.87 3.22,-2.72 6,-2.72v2.19l4,-3.74L13,7v2.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screenshot.xml b/compose/material/material/icons/generator/raw-icons/outlined/screenshot.xml
deleted file mode 100644
index fe4b35f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screenshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM9.5,8.5H12V7H8v4h1.5V8.5zM12,17h4v-4h-1.5v2.5H12V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/screenshot_monitor.xml b/compose/material/material/icons/generator/raw-icons/outlined/screenshot_monitor.xml
deleted file mode 100644
index dac2577..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/screenshot_monitor.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,7.5l2.5,0l0,-1.5l-4,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12l-1.5,0l0,2.5l-2.5,0l0,1.5l4,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/scuba_diving.xml b/compose/material/material/icons/generator/raw-icons/outlined/scuba_diving.xml
deleted file mode 100644
index eeb739b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/scuba_diving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S1,14.1 1,13zM8.89,10.11l4.53,-1.21L12.64,6L8.11,7.21c-0.8,0.21 -1.28,1.04 -1.06,1.84l0,0C7.27,9.85 8.09,10.33 8.89,10.11zM20.5,5.9L23,3l-1,-1l-3,3l-2,4l-9.48,2.87c-0.82,0.2 -1.39,0.89 -1.5,1.68L5.24,18L2.4,21.8L4,23l3,-4l1.14,-3.14L14,14l5,-3.5L20.5,5.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sd.xml b/compose/material/material/icons/generator/raw-icons/outlined/sd.xml
deleted file mode 100644
index 16ca302..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sd.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H7.5v-1h2V11H11v-1c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2.5v1h-2V13H6v1C6,14.55 6.45,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14v-4c0,-0.55 -0.45,-1 -1,-1h-4v6h4C17.55,15 18,14.55 18,14zM16.5,13.5h-2v-3h2V13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2,4.9 2,6v12c0,1.1 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sd_card.xml b/compose/material/material/icons/generator/raw-icons/outlined/sd_card.xml
deleted file mode 100644
index 8481415..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sd_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,8.83L10.83,4L18,4v16zM9,7h2v4L9,11zM12,7h2v4h-2zM15,7h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sd_card_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/sd_card_alert.xml
deleted file mode 100644
index ec110f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sd_card_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4.02,8 4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,8.83L10.83,4L18,4v16zM11,15h2v2h-2zM11,8h2v5h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sd_storage.xml b/compose/material/material/icons/generator/raw-icons/outlined/sd_storage.xml
deleted file mode 100644
index 7c4c289..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sd_storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v16L6,20L6,8.83L10.83,4L18,4m0,-2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM9,7h2v4L9,11zM12,7h2v4h-2zM15,7h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/search.xml b/compose/material/material/icons/generator/raw-icons/outlined/search.xml
deleted file mode 100644
index 07b76d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/search_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/search_off.xml
deleted file mode 100644
index 1f3c924..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/search_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5C16,5.91 13.09,3 9.5,3C6.08,3 3.28,5.64 3.03,9h2.02C5.3,6.75 7.18,5 9.5,5C11.99,5 14,7.01 14,9.5S11.99,14 9.5,14c-0.17,0 -0.33,-0.03 -0.5,-0.05v2.02C9.17,15.99 9.33,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.47,10.82l-2.47,2.47l-2.47,-2.47l-0.71,0.71l2.47,2.47l-2.47,2.47l0.71,0.71l2.47,-2.47l2.47,2.47l0.71,-0.71l-2.47,-2.47l2.47,-2.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/security.xml b/compose/material/material/icons/generator/raw-icons/outlined/security.xml
deleted file mode 100644
index c9e27cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/security.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM12,11.99h7c-0.53,4.12 -3.28,7.79 -7,8.94L12,12L5,12L5,6.3l7,-3.11v8.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/security_update.xml b/compose/material/material/icons/generator/raw-icons/outlined/security_update.xml
deleted file mode 100644
index 61933ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM7,4V3h10v1H7zM16,12l-4,4l-4,-4l1.41,-1.41L11,12.17V8h2v4.17l1.59,-1.59L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/security_update_good.xml b/compose/material/material/icons/generator/raw-icons/outlined/security_update_good.xml
deleted file mode 100644
index d46fbc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/outlined/security_update_warning.xml
deleted file mode 100644
index 6022f5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/segment.xml b/compose/material/material/icons/generator/raw-icons/outlined/segment.xml
deleted file mode 100644
index fe884c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/segment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,18h12v-2H9V18zM3,6v2h18V6H3zM9,13h12v-2H9V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/select_all.xml b/compose/material/material/icons/generator/raw-icons/outlined/select_all.xml
deleted file mode 100644
index c997121..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/select_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h2L5,3c-1.1,0 -2,0.9 -2,2zM3,13h2v-2L3,11v2zM7,21h2v-2L7,19v2zM3,9h2L5,7L3,7v2zM13,3h-2v2h2L13,3zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM5,21v-2L3,19c0,1.1 0.9,2 2,2zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM11,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2zM19,9h2L21,7h-2v2zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM7,17h10L17,7L7,7v10zM9,9h6v6L9,15L9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/self_improvement.xml b/compose/material/material/icons/generator/raw-icons/outlined/self_improvement.xml
deleted file mode 100644
index 850e20a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/self_improvement.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16v-2c-2.24,0 -4.16,-0.96 -5.6,-2.68l-1.34,-1.6C13.68,9.26 13.12,9 12.53,9h-1.05c-0.59,0 -1.15,0.26 -1.53,0.72l-1.34,1.6C7.16,13.04 5.24,14 3,14v2c2.77,0 5.19,-1.17 7,-3.25V15l-3.88,1.55C5.45,16.82 5,17.48 5,18.21C5,19.2 5.8,20 6.79,20H9v-0.5c0,-1.38 1.12,-2.5 2.5,-2.5h3c0.28,0 0.5,0.22 0.5,0.5S14.78,18 14.5,18h-3c-0.83,0 -1.5,0.67 -1.5,1.5V20h7.21C18.2,20 19,19.2 19,18.21c0,-0.73 -0.45,-1.39 -1.12,-1.66L14,15v-2.25C15.81,14.83 18.23,16 21,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sell.xml b/compose/material/material/icons/generator/raw-icons/outlined/sell.xml
deleted file mode 100644
index a28aacd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sell.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.41l-8.83,-8.83C12.21,2.21 11.7,2 11.17,2H4C2.9,2 2,2.9 2,4v7.17c0,0.53 0.21,1.04 0.59,1.41l8.83,8.83c0.78,0.78 2.05,0.78 2.83,0l7.17,-7.17C22.2,13.46 22.2,12.2 21.41,11.41zM12.83,20L4,11.17V4h7.17L20,12.83L12.83,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/send.xml b/compose/material/material/icons/generator/raw-icons/outlined/send.xml
deleted file mode 100644
index 712adc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/send.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.01,6.03l7.51,3.22 -7.52,-1 0.01,-2.22m7.5,8.72L4,17.97v-2.22l7.51,-1M2.01,3L2,10l15,2 -15,2 0.01,7L23,12 2.01,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/send_and_archive.xml b/compose/material/material/icons/generator/raw-icons/outlined/send_and_archive.xml
deleted file mode 100644
index 151d619..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/send_and_archive.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12l-6,-1.5V7.01l8.87,3.73c0.94,-0.47 2,-0.75 3.13,-0.75c0.1,0 0.19,0.01 0.28,0.01L3,4v16l7,-2.95c0,-0.02 0,-0.03 0,-0.05c0,-0.8 0.14,-1.56 0.39,-2.28L5,16.99V13.5L11,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM17,20l-3,-3l0.71,-0.71l1.79,1.79V14h1v4.09l1.79,-1.79L20,17L17,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/send_time_extension.xml b/compose/material/material/icons/generator/raw-icons/outlined/send_time_extension.xml
deleted file mode 100644
index 888bea8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/send_time_extension.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6v6.26l2,1V6c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H5.01c-1.1,0 -2,0.9 -2,2v3.8C5.7,9.8 6,11.96 6,12.5c0,0.54 -0.29,2.7 -3,2.7V19c0,1.1 0.9,2 2,2h3.8c0,-2.16 1.37,-2.78 2.2,-2.94v-2.03C9.57,16.2 7.85,17.07 7.13,19H5v-2.13c2.17,-0.8 3,-2.87 3,-4.37c0,-1.49 -0.83,-3.56 -2.99,-4.37V6H11V4c0,-0.28 0.22,-0.5 0.5,-0.5S12,3.72 12,4v2H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l0,4l4,1l-4,1l0,4l10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/send_to_mobile.xml b/compose/material/material/icons/generator/raw-icons/outlined/send_to_mobile.xml
deleted file mode 100644
index 9938522..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/send_to_mobile.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8l4,4l-4,4l-1.41,-1.41L18.17,13H13v-2h5.17l-1.59,-1.59L18,8zM7,1.01L17,1c1.1,0 2,0.9 2,2v4h-2V6H7v12h10v-1h2v4c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V3C5,1.9 5.9,1.01 7,1.01zM7,21h10v-1H7V21zM7,4h10V3H7V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sensor_door.xml b/compose/material/material/icons/generator/raw-icons/outlined/sensor_door.xml
deleted file mode 100644
index 0062c2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sensor_door.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v16H6V4H18M18,2H6C4.9,2 4,2.9 4,4v18h16V4C20,2.9 19.1,2 18,2L18,2zM15.5,10.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5c0.83,0 1.5,-0.67 1.5,-1.5S16.33,10.5 15.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sensor_occupied.xml b/compose/material/material/icons/generator/raw-icons/outlined/sensor_occupied.xml
deleted file mode 100644
index a81e4d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sensor_occupied.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3S9,6.34 9,8S10.34,11 12,11zM12,7c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,7 12,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.84,0 -3.56,0.5 -5.03,1.37C6.36,13.72 6,14.39 6,15.09V17h12v-1.91c0,-0.7 -0.36,-1.36 -0.97,-1.72C15.56,12.5 13.84,12 12,12zM8.14,15c1.18,-0.65 2.51,-1 3.86,-1c1.35,0 2.68,0.35 3.85,1H8.14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.23,8.15l1.85,-0.77c-1.22,-2.91 -3.55,-5.25 -6.46,-6.46l-0.77,1.85C18.27,3.79 20.21,5.73 21.23,8.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,2.77L7.38,0.92C4.47,2.14 2.14,4.47 0.92,7.38l1.85,0.77C3.79,5.73 5.73,3.79 8.15,2.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.77,15.85l-1.85,0.77c1.22,2.91 3.55,5.25 6.46,6.46l0.77,-1.85C5.73,20.21 3.79,18.27 2.77,15.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.85,21.23l0.77,1.85c2.91,-1.22 5.25,-3.55 6.46,-6.46l-1.85,-0.77C20.21,18.27 18.27,20.21 15.85,21.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sensor_window.xml b/compose/material/material/icons/generator/raw-icons/outlined/sensor_window.xml
deleted file mode 100644
index 28c1a72..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sensor_window.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,4v7h-4v-1h-4v1H6V4H18zM6,20v-7h12v7H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sensors.xml b/compose/material/material/icons/generator/raw-icons/outlined/sensors.xml
deleted file mode 100644
index 1f867db..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sensors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.76,16.24C6.67,15.16 6,13.66 6,12s0.67,-3.16 1.76,-4.24l1.42,1.42C8.45,9.9 8,10.9 8,12c0,1.1 0.45,2.1 1.17,2.83L7.76,16.24zM16.24,16.24C17.33,15.16 18,13.66 18,12s-0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,1.1 -0.45,2.1 -1.17,2.83L16.24,16.24zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM20,12c0,2.21 -0.9,4.21 -2.35,5.65l1.42,1.42C20.88,17.26 22,14.76 22,12s-1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12zM6.35,6.35L4.93,4.93C3.12,6.74 2,9.24 2,12s1.12,5.26 2.93,7.07l1.42,-1.42C4.9,16.21 4,14.21 4,12S4.9,7.79 6.35,6.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sensors_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/sensors_off.xml
deleted file mode 100644
index 49e1f8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sensors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.14,10.96C8.05,11.29 8,11.64 8,12c0,1.1 0.45,2.1 1.17,2.83l-1.42,1.42C6.67,15.16 6,13.66 6,12c0,-0.93 0.21,-1.8 0.58,-2.59L5.11,7.94C4.4,9.13 4,10.52 4,12c0,2.21 0.9,4.21 2.35,5.65l-1.42,1.42C3.12,17.26 2,14.76 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L8.14,10.96zM17.42,14.59C17.79,13.8 18,12.93 18,12c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,0.36 -0.05,0.71 -0.14,1.04L17.42,14.59zM20,12c0,1.48 -0.4,2.87 -1.11,4.06l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/outlined/sentiment_dissatisfied.xml
deleted file mode 100644
index 03b0566..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_dissatisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c-2.33,0 -4.32,1.45 -5.12,3.5h1.67c0.69,-1.19 1.97,-2 3.45,-2s2.75,0.81 3.45,2h1.67c-0.8,-2.05 -2.79,-3.5 -5.12,-3.5zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_neutral.xml b/compose/material/material/icons/generator/raw-icons/outlined/sentiment_neutral.xml
deleted file mode 100644
index 2191d76..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_neutral.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14h6v1.5H9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_satisfied.xml b/compose/material/material/icons/generator/raw-icons/outlined/sentiment_satisfied.xml
deleted file mode 100644
index d0de90e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_satisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.48,0 -2.75,-0.81 -3.45,-2L6.88,14c0.8,2.05 2.79,3.5 5.12,3.5s4.32,-1.45 5.12,-3.5h-1.67c-0.7,1.19 -1.97,2 -3.45,2zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_satisfied_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/sentiment_satisfied_alt.xml
deleted file mode 100644
index d63dacb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_satisfied_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.48,0 -2.75,-0.81 -3.45,-2L6.88,14c0.8,2.05 2.79,3.5 5.12,3.5s4.32,-1.45 5.12,-3.5h-1.67c-0.69,1.19 -1.97,2 -3.45,2zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_very_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/outlined/sentiment_very_dissatisfied.xml
deleted file mode 100644
index 0a11130..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_very_dissatisfied.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.5c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5zM7.82,12l1.06,-1.06L9.94,12 11,10.94 9.94,9.88 11,8.82 9.94,7.76 8.88,8.82 7.82,7.76 6.76,8.82l1.06,1.06 -1.06,1.06zM11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM16.18,7.76l-1.06,1.06 -1.06,-1.06L13,8.82l1.06,1.06L13,10.94 14.06,12l1.06,-1.06L16.18,12l1.06,-1.06 -1.06,-1.06 1.06,-1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_very_satisfied.xml b/compose/material/material/icons/generator/raw-icons/outlined/sentiment_very_satisfied.xml
deleted file mode 100644
index 29e6488..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sentiment_very_satisfied.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM13,9.94L14.06,11l1.06,-1.06L16.18,11l1.06,-1.06 -2.12,-2.12L13,9.94zM8.88,9.94L9.94,11 11,9.94 8.88,7.82 6.76,9.94 7.82,11l1.06,-1.06zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/set_meal.xml b/compose/material/material/icons/generator/raw-icons/outlined/set_meal.xml
deleted file mode 100644
index fcb92e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/set_meal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.05,17.56L3.08,18.5L3,17l17.98,-0.94L21.05,17.56zM21,19.48H3v1.5h18V19.48zM23,13V4c0,-1.1 -0.9,-2 -2,-2H3C1.9,2 1,2.9 1,4v9c0,1.1 0.9,2 2,2h18C22.1,15 23,14.1 23,13zM21,13H3V4h18V13zM20,6c-1.68,0 -3.04,0.98 -3.21,2.23C16.15,7.5 14.06,5.5 10.25,5.5c-4.67,0 -6.75,3 -6.75,3s2.08,3 6.75,3c3.81,0 5.9,-2 6.54,-2.73C16.96,10.02 18.32,11 20,11V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings.xml
deleted file mode 100644
index 0d7a0a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.43,12.98c0.04,-0.32 0.07,-0.64 0.07,-0.98 0,-0.34 -0.03,-0.66 -0.07,-0.98l2.11,-1.65c0.19,-0.15 0.24,-0.42 0.12,-0.64l-2,-3.46c-0.09,-0.16 -0.26,-0.25 -0.44,-0.25 -0.06,0 -0.12,0.01 -0.17,0.03l-2.49,1c-0.52,-0.4 -1.08,-0.73 -1.69,-0.98l-0.38,-2.65C14.46,2.18 14.25,2 14,2h-4c-0.25,0 -0.46,0.18 -0.49,0.42l-0.38,2.65c-0.61,0.25 -1.17,0.59 -1.69,0.98l-2.49,-1c-0.06,-0.02 -0.12,-0.03 -0.18,-0.03 -0.17,0 -0.34,0.09 -0.43,0.25l-2,3.46c-0.13,0.22 -0.07,0.49 0.12,0.64l2.11,1.65c-0.04,0.32 -0.07,0.65 -0.07,0.98 0,0.33 0.03,0.66 0.07,0.98l-2.11,1.65c-0.19,0.15 -0.24,0.42 -0.12,0.64l2,3.46c0.09,0.16 0.26,0.25 0.44,0.25 0.06,0 0.12,-0.01 0.17,-0.03l2.49,-1c0.52,0.4 1.08,0.73 1.69,0.98l0.38,2.65c0.03,0.24 0.24,0.42 0.49,0.42h4c0.25,0 0.46,-0.18 0.49,-0.42l0.38,-2.65c0.61,-0.25 1.17,-0.59 1.69,-0.98l2.49,1c0.06,0.02 0.12,0.03 0.18,0.03 0.17,0 0.34,-0.09 0.43,-0.25l2,-3.46c0.12,-0.22 0.07,-0.49 -0.12,-0.64l-2.11,-1.65zM17.45,11.27c0.04,0.31 0.05,0.52 0.05,0.73 0,0.21 -0.02,0.43 -0.05,0.73l-0.14,1.13 0.89,0.7 1.08,0.84 -0.7,1.21 -1.27,-0.51 -1.04,-0.42 -0.9,0.68c-0.43,0.32 -0.84,0.56 -1.25,0.73l-1.06,0.43 -0.16,1.13 -0.2,1.35h-1.4l-0.19,-1.35 -0.16,-1.13 -1.06,-0.43c-0.43,-0.18 -0.83,-0.41 -1.23,-0.71l-0.91,-0.7 -1.06,0.43 -1.27,0.51 -0.7,-1.21 1.08,-0.84 0.89,-0.7 -0.14,-1.13c-0.03,-0.31 -0.05,-0.54 -0.05,-0.74s0.02,-0.43 0.05,-0.73l0.14,-1.13 -0.89,-0.7 -1.08,-0.84 0.7,-1.21 1.27,0.51 1.04,0.42 0.9,-0.68c0.43,-0.32 0.84,-0.56 1.25,-0.73l1.06,-0.43 0.16,-1.13 0.2,-1.35h1.39l0.19,1.35 0.16,1.13 1.06,0.43c0.43,0.18 0.83,0.41 1.23,0.71l0.91,0.7 1.06,-0.43 1.27,-0.51 0.7,1.21 -1.07,0.85 -0.89,0.7 0.14,1.13zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_accessibility.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_accessibility.xml
deleted file mode 100644
index 2914c1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,4c-2.61,0.7 -5.67,1 -8.5,1S6.11,4.7 3.5,4L3,6c1.86,0.5 4,0.83 6,1v12h2v-6h2v6h2V7c2,-0.17 4.14,-0.5 6,-1L20.5,4zM12,4c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,4 12,4zM7,24h2v-2H7V24zM11,24h2v-2h-2V24zM15,24h2v-2h-2V24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_applications.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_applications.xml
deleted file mode 100644
index 486d629..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_applications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.21,13.97l1.2,2.07c0.08,0.13 0.23,0.18 0.37,0.13l1.49,-0.6c0.31,0.24 0.64,0.44 1.01,0.59l0.22,1.59c0.03,0.14 0.15,0.25 0.3,0.25h2.4c0.15,0 0.27,-0.11 0.3,-0.26l0.22,-1.59c0.36,-0.15 0.7,-0.35 1.01,-0.59l1.49,0.6c0.14,0.05 0.29,0 0.37,-0.13l1.2,-2.07c0.08,-0.13 0.04,-0.29 -0.07,-0.39l-1.27,-0.99c0.03,-0.19 0.04,-0.39 0.04,-0.58 0,-0.2 -0.02,-0.39 -0.04,-0.59l1.27,-0.99c0.11,-0.09 0.15,-0.26 0.07,-0.39l-1.2,-2.07c-0.08,-0.13 -0.23,-0.18 -0.37,-0.13l-1.49,0.6c-0.31,-0.24 -0.64,-0.44 -1.01,-0.59l-0.22,-1.59c-0.03,-0.14 -0.15,-0.25 -0.3,-0.25h-2.4c-0.15,0 -0.27,0.11 -0.3,0.26l-0.22,1.59c-0.36,0.15 -0.71,0.34 -1.01,0.58l-1.49,-0.6c-0.14,-0.05 -0.29,0 -0.37,0.13l-1.2,2.07c-0.08,0.13 -0.04,0.29 0.07,0.39l1.27,0.99c-0.03,0.2 -0.05,0.39 -0.05,0.59 0,0.2 0.02,0.39 0.04,0.59l-1.27,0.99c-0.11,0.1 -0.14,0.26 -0.06,0.39zM12,10.29c0.94,0 1.71,0.77 1.71,1.71s-0.77,1.71 -1.71,1.71 -1.71,-0.77 -1.71,-1.71 0.77,-1.71 1.71,-1.71zM19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.11,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_backup_restore.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_backup_restore.xml
deleted file mode 100644
index 1772ed5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_backup_restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2 0.9,2 2,2 2,-0.9 2,-2zM12,3c-4.97,0 -9,4.03 -9,9L0,12l4,4 4,-4L5,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.51,0 -2.91,-0.49 -4.06,-1.3l-1.42,1.44C8.04,20.3 9.94,21 12,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_bluetooth.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_bluetooth.xml
deleted file mode 100644
index 5e11cd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,24h2v-2h-2v2zM7,24h2v-2L7,22v2zM15,24h2v-2h-2v2zM17.71,5.71L12,0h-1v7.59L6.41,3 5,4.41 10.59,10 5,15.59 6.41,17 11,12.41L11,20h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,3.83l1.88,1.88L13,7.59L13,3.83zM14.88,14.29L13,16.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_brightness.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_brightness.xml
deleted file mode 100644
index 3c8eb5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_brightness.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02zM8,16h2.5l1.5,1.5 1.5,-1.5L16,16v-2.5l1.5,-1.5 -1.5,-1.5L16,8h-2.5L12,6.5 10.5,8L8,8v2.5L6.5,12 8,13.5L8,16zM12,9c1.66,0 3,1.34 3,3s-1.34,3 -3,3L12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_cell.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_cell.xml
deleted file mode 100644
index e439de4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,22h2v2L7,24zM11,22h2v2h-2zM15,22h2v2h-2zM16,0.01L8,0C6.9,0 6,0.9 6,2v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,2c0,-1.1 -0.9,-1.99 -2,-1.99zM16,18L8,18v-1h8v1zM16,15L8,15L8,5h8v10zM16,3L8,3L8,2h8v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_ethernet.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_ethernet.xml
deleted file mode 100644
index cdc8802..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_ethernet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,6.76L6.23,5.48 0.82,12l5.41,6.52 1.54,-1.28L3.42,12l4.35,-5.24zM7,13h2v-2L7,11v2zM17,11h-2v2h2v-2zM11,13h2v-2h-2v2zM17.77,5.48l-1.54,1.28L20.58,12l-4.35,5.24 1.54,1.28L23.18,12l-5.41,-6.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_antenna.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_input_antenna.xml
deleted file mode 100644
index 9379c0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_antenna.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-3.87,0 -7,3.13 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM13,14.29c0.88,-0.39 1.5,-1.26 1.5,-2.29 0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,10.62 9.5,12c0,1.02 0.62,1.9 1.5,2.29v3.3L7.59,21 9,22.41l3,-3 3,3L16.41,21 13,17.59v-3.3zM12,1C5.93,1 1,5.93 1,12h2c0,-4.97 4.03,-9 9,-9s9,4.03 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_component.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_input_component.xml
deleted file mode 100644
index 227b740..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_component.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v10c0,1.3 0.84,2.4 2,2.82L3,23h2v-4.18C6.16,18.4 7,17.3 7,16L7,6L5,6L5,2zM4,17c-0.55,0 -1,-0.45 -1,-1v-2h2v2c0,0.55 -0.45,1 -1,1zM3,12L3,8h2v4L3,12zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v10c0,1.3 0.84,2.4 2,2.82L11,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L15,6h-2L13,2zM12,17c-0.55,0 -1,-0.45 -1,-1v-2h2v2c0,0.55 -0.45,1 -1,1zM11,12L11,8h2v4h-2zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v10c0,1.3 0.84,2.4 2,2.82L19,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L23,6h-2zM20,17c-0.55,0 -1,-0.45 -1,-1v-2h2v2c0,0.55 -0.45,1 -1,1zM19,12L19,8h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_composite.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_input_composite.xml
deleted file mode 100644
index 227b740..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_composite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v10c0,1.3 0.84,2.4 2,2.82L3,23h2v-4.18C6.16,18.4 7,17.3 7,16L7,6L5,6L5,2zM4,17c-0.55,0 -1,-0.45 -1,-1v-2h2v2c0,0.55 -0.45,1 -1,1zM3,12L3,8h2v4L3,12zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v10c0,1.3 0.84,2.4 2,2.82L11,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L15,6h-2L13,2zM12,17c-0.55,0 -1,-0.45 -1,-1v-2h2v2c0,0.55 -0.45,1 -1,1zM11,12L11,8h2v4h-2zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v10c0,1.3 0.84,2.4 2,2.82L19,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L23,6h-2zM20,17c-0.55,0 -1,-0.45 -1,-1v-2h2v2c0,0.55 -0.45,1 -1,1zM19,12L19,8h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_hdmi.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_input_hdmi.xml
deleted file mode 100644
index 0cda6a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_hdmi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7L18,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v3L5,7v6l3,6v3h8v-3l3,-6L19,7h-1zM8,4h8v3h-2.01L13.99,5h-1v2L11,7L11,5h-1v2L8,7L8,4zM17,12.53l-3,6L14,20h-4v-1.47l-3,-6L7,9h10v3.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_svideo.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_input_svideo.xml
deleted file mode 100644
index 373e176..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_input_svideo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S5,10.67 5,11.5 5.67,13 6.5,13 8,12.33 8,11.5zM15,6.5c0,-0.83 -0.67,-1.5 -1.5,-1.5h-3C9.67,5 9,5.67 9,6.5S9.67,8 10.5,8h3c0.83,0 1.5,-0.67 1.5,-1.5zM8.5,15c-0.83,0 -1.5,0.67 -1.5,1.5S7.67,18 8.5,18s1.5,-0.67 1.5,-1.5S9.33,15 8.5,15zM12,1C5.93,1 1,5.93 1,12s4.93,11 11,11 11,-4.93 11,-11S18.07,1 12,1zM12,21c-4.96,0 -9,-4.04 -9,-9s4.04,-9 9,-9 9,4.04 9,9 -4.04,9 -9,9zM17.5,10c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM15.5,15c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_overscan.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_overscan.xml
deleted file mode 100644
index f6a9d0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_overscan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,5.5L10,8h4l-1.99,-2.5zM18,10v4l2.5,-1.99L18,10zM6,10l-2.5,2.01L6,14v-4zM14,16h-4l2.01,2.5L14,16zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_phone.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_phone.xml
deleted file mode 100644
index 7204c9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v2h-2zM15,9h2v2h-2zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.58l2.2,-2.21c0.28,-0.27 0.36,-0.66 0.25,-1.01C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.46,2.59L5.79,8.8c-0.41,-1.21 -0.67,-2.48 -0.76,-3.8zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM19,9h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_power.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_power.xml
deleted file mode 100644
index 8af8bdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM11,24h2v-2h-2v2zM13,2h-2v10h2L13,2zM16.56,4.44l-1.45,1.45C16.84,6.94 18,8.83 18,11c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2.17 1.16,-4.06 2.88,-5.12L7.44,4.44C5.36,5.88 4,8.28 4,11c0,4.42 3.58,8 8,8s8,-3.58 8,-8c0,-2.72 -1.36,-5.12 -3.44,-6.56zM15,24h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_remote.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_remote.xml
deleted file mode 100644
index 4580cee..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_remote.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9L9,9c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L16,10c0,-0.55 -0.45,-1 -1,-1zM14,21h-4L10,11h4v10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.05,6.05l1.41,1.41C9.37,6.56 10.62,6 12,6s2.63,0.56 3.54,1.46l1.41,-1.41C15.68,4.78 13.93,4 12,4s-3.68,0.78 -4.95,2.05zM12,0C8.96,0 6.21,1.23 4.22,3.22l1.41,1.41C7.26,3.01 9.51,2 12,2s4.74,1.01 6.36,2.64l1.41,-1.41C17.79,1.23 15.04,0 12,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_suggest.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_suggest.xml
deleted file mode 100644
index eb68751..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_suggest.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S9.45,13 10,13M10,11c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,11 10,11L10,11zM18.5,9l1.09,-2.41L22,5.5l-2.41,-1.09L18.5,2l-1.09,2.41L15,5.5l2.41,1.09L18.5,9zM21.28,12.72L20.5,11l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78,-1.72L23,13.5L21.28,12.72zM16.25,14c0,-0.12 0,-0.25 -0.01,-0.37l1.94,-1.47l-2.5,-4.33l-2.24,0.94c-0.2,-0.13 -0.42,-0.26 -0.64,-0.37L12.5,6h-5L7.2,8.41C6.98,8.52 6.77,8.65 6.56,8.78L4.32,7.83l-2.5,4.33l1.94,1.47C3.75,13.75 3.75,13.88 3.75,14s0,0.25 0.01,0.37l-1.94,1.47l2.5,4.33l2.24,-0.94c0.2,0.13 0.42,0.26 0.64,0.37L7.5,22h5l0.3,-2.41c0.22,-0.11 0.43,-0.23 0.64,-0.37l2.24,0.94l2.5,-4.33l-1.94,-1.47C16.25,14.25 16.25,14.12 16.25,14zM14.83,17.64l-1.73,-0.73c-0.56,0.6 -1.3,1.04 -2.13,1.23L10.73,20H9.27l-0.23,-1.86c-0.83,-0.19 -1.57,-0.63 -2.13,-1.23l-1.73,0.73l-0.73,-1.27l1.49,-1.13c-0.12,-0.39 -0.18,-0.8 -0.18,-1.23c0,-0.43 0.06,-0.84 0.18,-1.23l-1.49,-1.13l0.73,-1.27l1.73,0.73c0.56,-0.6 1.3,-1.04 2.13,-1.23L9.27,8h1.47l0.23,1.86c0.83,0.19 1.57,0.63 2.13,1.23l1.73,-0.73l0.73,1.27l-1.49,1.13c0.12,0.39 0.18,0.8 0.18,1.23c0,0.43 -0.06,0.84 -0.18,1.23l1.49,1.13L14.83,17.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_system_daydream.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_system_daydream.xml
deleted file mode 100644
index 1523e55..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_system_daydream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,17L9,17c-2.21,0 -4,-1.79 -4,-4 0,-1.93 1.36,-3.56 3.22,-3.92C9.04,7.8 10.47,7 12,7c1.95,0 3.66,1.28 4.26,3.09 1.58,0.36 2.74,1.75 2.74,3.41 0,1.93 -1.57,3.5 -3.5,3.5zM8.74,11.02C7.74,11.15 7,11.99 7,13c0,1.1 0.9,2 2,2h6.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5h-0.87l-0.17,-0.86C14.29,9.92 13.23,9 12,9c-0.96,0 -1.84,0.57 -2.26,1.45l-0.27,0.57h-0.73zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/settings_voice.xml b/compose/material/material/icons/generator/raw-icons/outlined/settings_voice.xml
deleted file mode 100644
index a6e005d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/settings_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,22h2v2L7,24zM12,13c1.66,0 3,-1.34 3,-3L15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4v6c0,1.66 1.34,3 3,3zM11,4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.56 -0.44,1 -1,1 -0.55,0 -1,-0.45 -1,-1L11,4zM11,22h2v2h-2zM15,22h2v2h-2zM19,10h-1.7c0,3 -2.54,5.1 -5.3,5.1S6.7,13 6.7,10L5,10c0,3.41 2.72,6.23 6,6.72L11,20h2v-3.28c3.28,-0.49 6,-3.31 6,-6.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/severe_cold.xml b/compose/material/material/icons/generator/raw-icons/outlined/severe_cold.xml
deleted file mode 100644
index feac899..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/severe_cold.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.41l4,-4l-1.41,-1.41l-2.59,2.59l0,-3.59l-2,0l0,3.59l-2.59,-2.59l-1.41,1.41l4,4l0,1.59l-1.59,0l-4,-4l-1.41,1.41l2.59,2.59l-3.59,0l0,2l3.59,0l-2.59,2.59l1.41,1.41l4,-4l1.59,0l0,1.59l-4,4l1.41,1.41l2.59,-2.59l0,3.59l2,0l0,-3.59l2.59,2.59l1.41,-1.41l-4,-4l0,-1.59l1.59,0l4,4l1.41,-1.41l-2.59,-2.59l3.59,0l0,-2l-8,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shape_line.xml b/compose/material/material/icons/generator/raw-icons/outlined/shape_line.xml
deleted file mode 100644
index 71f2443..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shape_line.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11c2.76,0 5,-2.24 5,-5S8.76,1 6,1S1,3.24 1,6S3.24,11 6,11zM6,3c1.65,0 3,1.35 3,3c0,1.65 -1.35,3 -3,3S3,7.65 3,6C3,4.35 4.35,3 6,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-5c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-5C23,14.9 22.1,14 21,14zM21,21h-5v-5h5V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.7C18.11,7.89 18.54,8 19,8c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3s-3,1.35 -3,3c0,0.46 0.11,0.89 0.3,1.29L6.29,16.3C5.89,16.11 5.46,16 5,16c-1.65,0 -3,1.35 -3,3s1.35,3 3,3s3,-1.35 3,-3c0,-0.46 -0.11,-0.89 -0.3,-1.29L17.71,7.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/share.xml b/compose/material/material/icons/generator/raw-icons/outlined/share.xml
deleted file mode 100644
index 3a6a059..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92s2.92,-1.31 2.92,-2.92c0,-1.61 -1.31,-2.92 -2.92,-2.92zM18,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM6,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,20.02c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/share_location.xml b/compose/material/material/icons/generator/raw-icons/outlined/share_location.xml
deleted file mode 100644
index 2acc4e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/share_location.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.02,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.42,-1.43C15.81,19.17 14.48,19.75 13.02,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.03,12c0,-4.05 3.03,-7.41 6.95,-7.93V2.05C5.95,2.58 2.03,6.84 2.03,12c0,5.16 3.92,9.42 8.95,9.95v-2.02C7.06,19.41 4.03,16.05 4.03,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.95,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32l-1.43,1.43C19.19,8.21 19.77,9.54 19.95,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.34,4.26c-1.48,-1.21 -3.32,-2.01 -5.32,-2.21v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.34,4.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.33,16.9l1.43,1.42c1.21,-1.48 2.01,-3.31 2.21,-5.32h-2.02C19.77,14.46 19.19,15.79 18.33,16.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11.1C16,8.61 14.1,7 12,7s-4,1.61 -4,4.1c0,1.66 1.33,3.63 4,5.9C14.67,14.73 16,12.76 16,11.1zM12,12c-0.59,0 -1.07,-0.48 -1.07,-1.07c0,-0.59 0.48,-1.07 1.07,-1.07s1.07,0.48 1.07,1.07C13.07,11.52 12.59,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shield.xml b/compose/material/material/icons/generator/raw-icons/outlined/shield.xml
deleted file mode 100644
index 0fce4a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shield.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shield_moon.xml b/compose/material/material/icons/generator/raw-icons/outlined/shield_moon.xml
deleted file mode 100644
index 788aec6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shield_moon.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.01,14.33c1.75,2.17 5.12,2.24 6.96,0.07c0.23,-0.27 0.08,-0.68 -0.26,-0.74c-1.29,-0.21 -2.48,-0.98 -3.18,-2.2c-0.71,-1.22 -0.78,-2.63 -0.32,-3.86c0.12,-0.33 -0.16,-0.66 -0.51,-0.6C8.36,7.62 6.81,11.61 9.01,14.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shop.xml b/compose/material/material/icons/generator/raw-icons/outlined/shop.xml
deleted file mode 100644
index 41bce8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L2,6v13c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6h-6zM10,4h4v2h-4L10,4zM20,19L4,19L4,8h16v11zM9,18l7.5,-5L9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shop_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/shop_2.xml
deleted file mode 100644
index bd13167..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shop_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9H1v11c0,1.11 0.89,2 2,2h16v-2H3V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V3c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2H5v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2V5H18zM12,3h4v2h-4V3zM21,16H7V7h14V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8l0,7l5.5,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shop_two.xml b/compose/material/material/icons/generator/raw-icons/outlined/shop_two.xml
deleted file mode 100644
index fd14981..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shop_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9L1,9v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2L3,20L3,9zM18,5L18,3c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L5,5v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2L23,5h-5zM12,3h4v2h-4L12,3zM21,16L7,16L7,7h14v9zM12,15l5.5,-4L12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shopping_bag.xml b/compose/material/material/icons/generator/raw-icons/outlined/shopping_bag.xml
deleted file mode 100644
index 7f5445a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shopping_bag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6h-2c0,-2.21 -1.79,-4 -4,-4S8,3.79 8,6H6C4.9,6 4,6.9 4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8C20,6.9 19.1,6 18,6zM12,4c1.1,0 2,0.9 2,2h-4C10,4.9 10.9,4 12,4zM18,20H6V8h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8h4v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8h2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shopping_basket.xml b/compose/material/material/icons/generator/raw-icons/outlined/shopping_basket.xml
deleted file mode 100644
index bb57e69..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shopping_basket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9h-4.79l-4.38,-6.56c-0.19,-0.28 -0.51,-0.42 -0.83,-0.42s-0.64,0.14 -0.83,0.43L6.79,9H2c-0.55,0 -1,0.45 -1,1 0,0.09 0.01,0.18 0.04,0.27l2.54,9.27c0.23,0.84 1,1.46 1.92,1.46h13c0.92,0 1.69,-0.62 1.93,-1.46l2.54,-9.27L23,10c0,-0.55 -0.45,-1 -1,-1zM12,4.8L14.8,9H9.2L12,4.8zM18.5,19l-12.99,0.01L3.31,11H20.7l-2.2,8zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/outlined/shopping_cart.xml
deleted file mode 100644
index bdb3479..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.55,13c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.37,-0.66 -0.11,-1.48 -0.87,-1.48L5.21,4l-0.94,-2L1,2v2h2l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2L7,15l1.1,-2h7.45zM6.16,6h12.15l-2.76,5L8.53,11L6.16,6zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shopping_cart_checkout.xml b/compose/material/material/icons/generator/raw-icons/outlined/shopping_cart_checkout.xml
deleted file mode 100644
index d111c5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shopping_cart_checkout.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2H7L8.1,13zM12,2l4,4l-4,4l-1.41,-1.41L12.17,7L8,7l0,-2l4.17,0l-1.59,-1.59L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/short_text.xml b/compose/material/material/icons/generator/raw-icons/outlined/short_text.xml
deleted file mode 100644
index 250c0e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/short_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h16v2L4,11L4,9zM4,13h10v2L4,15v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shortcut.xml b/compose/material/material/icons/generator/raw-icons/outlined/shortcut.xml
deleted file mode 100644
index 26a3c1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shortcut.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5l-1.41,1.41L15,7.83L17.17,10H8c-2.76,0 -5,2.24 -5,5v4h2v-4c0,-1.65 1.35,-3 3,-3h9.17L15,14.17l-1.41,1.41L15,17l6,-6L15,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/show_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/show_chart.xml
deleted file mode 100644
index c425281..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/show_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18.49l6,-6.01 4,4L22,6.92l-1.41,-1.41 -7.09,7.97 -4,-4L2,16.99l1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shower.xml b/compose/material/material/icons/generator/raw-icons/outlined/shower.xml
deleted file mode 100644
index 16d71c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shower.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S9,16.45 9,17zM12,16c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S12.55,16 12,16zM16,16c-0.55,0 -1,0.45 -1,1s0.45,1 1,1c0.55,0 1,-0.45 1,-1S16.55,16 16,16zM19,12v2H5v-2c0,-3.53 2.61,-6.43 6,-6.92V3h2v2.08C16.39,5.57 19,8.47 19,12zM17,12c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5H17zM8,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S8.55,19 8,19zM12,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S12.55,19 12,19zM16,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1c0.55,0 1,-0.45 1,-1S16.55,19 16,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shuffle.xml b/compose/material/material/icons/generator/raw-icons/outlined/shuffle.xml
deleted file mode 100644
index 2469a90..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shuffle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,9.17L5.41,4 4,5.41l5.17,5.17 1.42,-1.41zM14.5,4l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5L20,4h-5.5zM14.83,13.41l-1.41,1.41 3.13,3.13L14.5,20L20,20v-5.5l-2.04,2.04 -3.13,-3.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shuffle_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/shuffle_on.xml
deleted file mode 100644
index 6cd19c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shuffle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM5.41,4l5.18,5.17l-1.41,1.42L4,5.42L5.41,4zM20,20h-6v-2h2.61l-3.2,-3.2l1.42,-1.42l3.13,3.13L18,16.55V14h2V20zM20,10h-2V7.42L5.41,20L4,18.59L16.58,6H14V4h6V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/shutter_speed.xml b/compose/material/material/icons/generator/raw-icons/outlined/shutter_speed.xml
deleted file mode 100644
index 6c2598b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/shutter_speed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,1L9,1v2h6L15,1zM19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9 9,-4.03 9,-9c0,-2.12 -0.74,-4.07 -1.97,-5.61zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM11.68,15L6.35,15c0.57,1.62 1.82,2.92 3.41,3.56l-0.11,-0.06 2.03,-3.5zM17.65,11c-0.57,-1.6 -1.78,-2.89 -3.34,-3.54L12.26,11h5.39zM10.61,18.83c0.45,0.11 0.91,0.17 1.39,0.17 1.34,0 2.57,-0.45 3.57,-1.19l-2.11,-3.9 -2.85,4.92zM7.55,8.99C6.59,10.05 6,11.46 6,13c0,0.34 0.04,0.67 0.09,1h4.72L7.55,8.99zM16.34,17.13C17.37,16.06 18,14.6 18,13c0,-0.34 -0.04,-0.67 -0.09,-1h-4.34l2.77,5.13zM13.33,7.15C12.9,7.06 12.46,7 12,7c-1.4,0 -2.69,0.49 -3.71,1.29l2.32,3.56 2.72,-4.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sick.xml b/compose/material/material/icons/generator/raw-icons/outlined/sick.xml
deleted file mode 100644
index 720c793..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sick.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.32,10.56L8.38,9.5L7.32,8.44l1.06,-1.06L10.5,9.5l-2.12,2.12L7.32,10.56zM4.5,9c0.03,0 0.05,0.01 0.08,0.01C5.77,6.07 8.64,4 12,4c2.19,0 4.16,0.88 5.61,2.3c0.15,-0.6 0.45,-1.29 0.81,-1.96C16.68,2.88 14.44,2 11.99,2c-4.88,0 -8.94,3.51 -9.81,8.14C2.74,9.44 3.59,9 4.5,9zM21,10.5c-0.42,0 -0.82,-0.09 -1.19,-0.22C19.93,10.83 20,11.41 20,12c0,4.42 -3.58,8 -8,8c-3.36,0 -6.23,-2.07 -7.42,-5.01C4.55,14.99 4.53,15 4.5,15c-0.52,0 -1.04,-0.14 -1.5,-0.4c-0.32,-0.18 -0.59,-0.42 -0.82,-0.7c0.89,4.61 4.93,8.1 9.8,8.1C17.52,22 22,17.52 22,12c0,-0.55 -0.06,-1.09 -0.14,-1.62C21.58,10.45 21.3,10.5 21,10.5zM21,3c0,0 -2,2.9 -2,4c0,1.1 0.9,2 2,2s2,-0.9 2,-2C23,5.9 21,3 21,3zM15.62,7.38L13.5,9.5l2.12,2.12l1.06,-1.06L15.62,9.5l1.06,-1.06L15.62,7.38zM8.56,17c0.69,-1.19 1.97,-2 3.44,-2s2.75,0.81 3.44,2h1.68c-0.8,-2.05 -2.79,-3.5 -5.12,-3.5c-0.87,0 -1.7,0.2 -2.43,0.57l0,0L5.99,12c0,-0.52 -0.26,-1.02 -0.74,-1.29c-0.72,-0.41 -1.63,-0.17 -2.05,0.55c-0.41,0.72 -0.17,1.63 0.55,2.05c0.48,0.28 1.05,0.25 1.49,0l2.97,1.72l0,0C7.64,15.56 7.18,16.24 6.88,17H8.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sign_language.xml b/compose/material/material/icons/generator/raw-icons/outlined/sign_language.xml
deleted file mode 100644
index 7296a19..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sign_language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.49,13l-0.93,-1.86c-0.37,-0.74 -0.07,-1.64 0.67,-2.01L12.49,9l5.73,5.46c0.5,0.47 0.78,1.13 0.78,1.81v5.23c0,1.38 -1.12,2.5 -2.5,2.5h-11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H10v-1H4c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h6v-1H3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h7v-1H4.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H12.49zM14,13.2V15h-2v7h4c0.55,0 1,-0.45 1,-1v-4.53c0,-0.27 -0.11,-0.54 -0.31,-0.73L14,13.2zM11.78,7.12c-0.84,0.4 -1.17,0.62 -1.63,1.19l-2.7,-2.85c-0.38,-0.4 -0.36,-1.03 0.04,-1.41c0.4,-0.38 1.03,-0.36 1.41,0.04L11.78,7.12zM9.64,9.21C9.41,9.76 9.35,10.45 9.44,11H8.58L6.31,8.61C5.93,8.21 5.94,7.58 6.35,7.2c0.4,-0.38 1.03,-0.36 1.41,0.04L9.64,9.21zM20.33,13.91l0.88,-0.83c0.5,-0.47 0.79,-1.13 0.79,-1.82V3.35l-0.27,-0.1c-0.78,-0.28 -1.64,0.12 -1.92,0.9L19.1,6.11l-5.5,-5.8c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.79,3.99l-0.73,0.69l-4.82,-5.08c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.78,3.98L15.38,9l1.93,-1.87l1.38,1.45L20,7.34v3.7c0,0.28 -0.11,0.54 -0.31,0.73l-0.7,0.66l0.61,0.58C19.89,13.28 20.13,13.58 20.33,13.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_0_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_0_bar.xml
deleted file mode 100644
index 2dbba36..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22zM20,20H6.83L20,6.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_4_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_4_bar.xml
deleted file mode 100644
index e292fab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt.xml
deleted file mode 100644
index 709e279..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h3v16h-3L17,4zM5,14h3v6L5,20v-6zM11,9h3v11h-3L11,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt_1_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt_1_bar.xml
deleted file mode 100644
index b0c89e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt_2_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt_2_bar.xml
deleted file mode 100644
index 9d48f66..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_alt_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14zM11,9h3v11h-3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_connected_no_internet_0_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_connected_no_internet_0_bar.xml
deleted file mode 100644
index 4a1e6fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_connected_no_internet_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM18,20v2H2L22,2v6h-2V6.83L6.83,20H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_connected_no_internet_4_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_connected_no_internet_4_bar.xml
deleted file mode 100644
index 47710c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_connected_no_internet_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM2,22h16V8h4V2L2,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_no_sim.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_no_sim.xml
deleted file mode 100644
index d68aa56..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,5L17,5v9.11l2,2L19,5c0,-1.1 -0.9,-2 -2,-2h-7L7.94,5.06l1.42,1.42L10.83,5zM21.26,21.21L3.79,3.74 2.38,5.15 5,7.77L5,19c0,1.11 0.9,2 2,2h11.23l1.62,1.62 1.41,-1.41zM7,19L7,9.79L16.23,19L7,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_nodata.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_nodata.xml
deleted file mode 100644
index af93c8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_nodata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-9v9H2L22,2V13zM21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_null.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_null.xml
deleted file mode 100644
index cf15ce5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.83V20H6.83L20,6.83M22,2L2,22h20V2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_off.xml
deleted file mode 100644
index eeb9d9b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_cellular_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1l-8.31,8.31 8.31,8.3zM4.91,4.36L3.5,5.77l6.36,6.37L1,21h17.73l2,2 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_0_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_0_bar.xml
deleted file mode 100644
index 827c3d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_4_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_4_bar.xml
deleted file mode 100644
index 5988e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,21.49L23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4C5.28,3 0.81,6.66 0.36,7l11.63,14.49 0.01,0.01 0.01,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_4_bar_lock.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_4_bar_lock.xml
deleted file mode 100644
index f0ee647..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_4_bar_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_bad.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_bad.xml
deleted file mode 100644
index 95ddd92..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09l-0.3,-0.3L15.41,14L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_connected_no_internet_4.xml
deleted file mode 100644
index 95ddd92..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_connected_no_internet_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09l-0.3,-0.3L15.41,14L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_off.xml
deleted file mode 100644
index bbb1e05..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4 -1.32,0 -2.55,0.14 -3.69,0.38L18.43,13.5 23.64,7zM3.41,1.31L2,2.72l2.05,2.05C1.91,5.76 0.59,6.82 0.36,7L12,21.5l3.91,-4.87 3.32,3.32 1.41,-1.41L3.41,1.31z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_4_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_4_bar.xml
deleted file mode 100644
index 6424547..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_connected_no_internet_4.xml
deleted file mode 100644
index cd79b42..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_connected_no_internet_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21l5,-5.01V8h5.92C19.97,5.51 16.16,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_null.xml b/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_null.xml
deleted file mode 100644
index 4e2c4f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signal_wifi_statusbar_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6c3.33,0 6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/signpost.xml b/compose/material/material/icons/generator/raw-icons/outlined/signpost.xml
deleted file mode 100644
index d09b1e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/signpost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h5l3,-3l-3,-3h-5V2h-2v2H4v6h7v2H6l-3,3l3,3h5v4h2v-4h7v-6h-7V10zM6,6h11.17l1,1l-1,1H6V6zM18,16H6.83l-1,-1l1,-1H18V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sim_card.xml b/compose/material/material/icons/generator/raw-icons/outlined/sim_card.xml
deleted file mode 100644
index 6be87ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sim_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM18,4v16L6,20L6,8.83L10.83,4L18,4zM7,17h2v2L7,19zM15,17h2v2h-2zM7,11h2v4L7,15zM11,15h2v4h-2zM11,11h2v2h-2zM15,11h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sim_card_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/sim_card_alert.xml
deleted file mode 100644
index bc12326..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sim_card_alert.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4.02,8L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,20H6V8.83L10.83,4H18V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h2v5h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sim_card_download.xml b/compose/material/material/icons/generator/raw-icons/outlined/sim_card_download.xml
deleted file mode 100644
index c2b392e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sim_card_download.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,4v16H6V8.83L10.83,4H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13l-4,4l-4,-4l1.41,-1.41L11,13.17V9.02L13,9v4.17l1.59,-1.59L16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/single_bed.xml b/compose/material/material/icons/generator/raw-icons/outlined/single_bed.xml
deleted file mode 100644
index 5032ca6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/single_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.1 -0.9,-2 -2,-2V7c0,-1.1 -0.9,-2 -2,-2H8C6.9,5 6,5.9 6,7v3c-1.1,0 -2,0.9 -2,2v5h1.33L6,19h1l0.67,-2h8.67L17,19h1l0.67,-2H20V12zM16,10h-3V7h3V10zM8,7h3v3H8V7zM6,12h12v3H6V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sip.xml b/compose/material/material/icons/generator/raw-icons/outlined/sip.xml
deleted file mode 100644
index 8c80bed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h16c1.1,0 2,0.9 2,2v12c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6C2,4.9 2.9,4 4,4zM4,6v12h16V6H4zM11,9h2v6h-2V9zM14,9h4c0.55,0 1,0.45 1,1v2c0,0.55 -0.45,1 -1,1h-2.5v2H14V9zM17.5,10.5h-2v1h2V10.5zM6.5,11.25H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H5v-1.5h3.5v-0.75H6c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h4v1.5H6.5V11.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/skateboarding.xml b/compose/material/material/icons/generator/raw-icons/outlined/skateboarding.xml
deleted file mode 100644
index 93b22b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/skateboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S13,4.1 13,3zM7.25,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S6.84,24 7.25,24S8,23.66 8,23.25S7.66,22.5 7.25,22.5zM15.75,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S15.34,24 15.75,24s0.75,-0.34 0.75,-0.75S16.16,22.5 15.75,22.5zM19.24,19c-0.24,0 -0.45,0.11 -0.59,0.3c-0.55,0.73 -1.42,1.2 -2.4,1.2H16v-6l-4.32,-2.67l1.8,-2.89C14.63,10.78 16.68,12 19,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C14.16,5.64 13.61,5 12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35l-2.4,3.84c-0.31,0.5 -0.39,1.11 -0.21,1.67l1.34,4.15l-3.12,3.76c-0.7,-0.16 -1.3,-0.57 -1.71,-1.12C4.21,19.11 3.99,19 3.75,19C3.31,19 3,19.36 3,19.75c0,0.15 0.05,0.31 0.15,0.45c0.82,1.1 2.13,1.8 3.6,1.8h9.5c1.47,0 2.78,-0.7 3.6,-1.8c0.1,-0.14 0.15,-0.3 0.15,-0.45C20,19.36 19.68,19 19.24,19zM14,20.5H8.6l2.9,-3.5l-1,-3.3l3.5,2.2V20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/skip_next.xml b/compose/material/material/icons/generator/raw-icons/outlined/skip_next.xml
deleted file mode 100644
index 179301f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/skip_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18l8.5,-6L6,6v12zM8,9.86L11.03,12 8,14.14L8,9.86zM16,6h2v12h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/skip_previous.xml b/compose/material/material/icons/generator/raw-icons/outlined/skip_previous.xml
deleted file mode 100644
index d1b02e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/skip_previous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h2v12L6,18zM9.5,12l8.5,6L18,6l-8.5,6zM16,14.14L12.97,12 16,9.86v4.28z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sledding.xml b/compose/material/material/icons/generator/raw-icons/outlined/sledding.xml
deleted file mode 100644
index 2f029e8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sledding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S14,3.4 14,4.5zM22.8,20.24c-0.68,2.1 -2.94,3.25 -5.04,2.57h0L1,17.36l0.46,-1.43l3.93,1.28l0.46,-1.43L1.93,14.5l0.46,-1.43L4,13.6V9.5l5.47,-2.35c0.39,-0.17 0.84,-0.21 1.28,-0.07c0.95,0.31 1.46,1.32 1.16,2.27l-1.05,3.24L13,12.25c0.89,-0.15 1.76,0.32 2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32,-1.08L14.9,20.3l3.32,1.08l0,0c1.31,0.43 2.72,-0.29 3.15,-1.61c0.43,-1.31 -0.29,-2.72 -1.61,-3.15l0.46,-1.43C22.33,15.88 23.49,18.14 22.8,20.24zM6,14.25l1.01,0.33c-0.22,-0.42 -0.28,-0.92 -0.12,-1.4L7.92,10L6,10.82V14.25zM13.94,18.41l-6.66,-2.16l-0.46,1.43l6.66,2.16L13.94,18.41zM14.63,17.05l-1.18,-2.56l-3.97,0.89L14.63,17.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/slideshow.xml b/compose/material/material/icons/generator/raw-icons/outlined/slideshow.xml
deleted file mode 100644
index e38e1b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/slideshow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8v8l5,-4 -5,-4zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/slow_motion_video.xml b/compose/material/material/icons/generator/raw-icons/outlined/slow_motion_video.xml
deleted file mode 100644
index 3a93cdd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/slow_motion_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.05,9.79L10,7.5v9l3.05,-2.29L16,12l-2.95,-2.21zM13.05,9.79L10,7.5v9l3.05,-2.29L16,12l-2.95,-2.21zM13.05,9.79L10,7.5v9l3.05,-2.29L16,12l-2.95,-2.21zM11,4.07L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62zM5.69,7.1L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9zM4.07,13L2.05,13c0.2,2.01 1,3.84 2.21,5.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43zM22,12c0,5.16 -3.92,9.42 -8.95,9.95v-2.02C16.97,19.41 20,16.05 20,12s-3.03,-7.41 -6.95,-7.93L13.05,2.05C18.08,2.58 22,6.84 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/smart_button.xml b/compose/material/material/icons/generator/raw-icons/outlined/smart_button.xml
deleted file mode 100644
index 9f77a98..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/smart_button.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9v6c0,1.1 -0.9,2 -2,2h-1l0,-2h1V9H4v6h6v2H4c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h16C21.1,7 22,7.9 22,9zM14.5,19l1.09,-2.41L18,15.5l-2.41,-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19zM17,14l0.62,-1.38L19,12l-1.38,-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14zM14.5,19l1.09,-2.41L18,15.5l-2.41,-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19zM17,14l0.62,-1.38L19,12l-1.38,-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/smart_display.xml b/compose/material/material/icons/generator/raw-icons/outlined/smart_display.xml
deleted file mode 100644
index 0a08bef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/smart_display.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,7.5l0,9l7,-4.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18.01H4V5.99h16V18.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/smart_screen.xml b/compose/material/material/icons/generator/raw-icons/outlined/smart_screen.xml
deleted file mode 100644
index 6e4e540..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/smart_screen.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5H3C1.9,5 1,5.9 1,7v10c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7C23,5.9 22.1,5 21,5zM4,17H3V7h1V17zM18,17H6V7h12V17zM21,17h-1V7h1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/smart_toy.xml b/compose/material/material/icons/generator/raw-icons/outlined/smart_toy.xml
deleted file mode 100644
index 4bf64e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/smart_toy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9V7c0,-1.1 -0.9,-2 -2,-2h-3c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5H6C4.9,5 4,5.9 4,7v2c-1.66,0 -3,1.34 -3,3s1.34,3 3,3v4c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4c1.66,0 3,-1.34 3,-3S21.66,9 20,9zM18,19L6,19V7h12V19zM9,13c-0.83,0 -1.5,-0.67 -1.5,-1.5S8.17,10 9,10s1.5,0.67 1.5,1.5S9.83,13 9,13zM16.5,11.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5S14.17,10 15,10S16.5,10.67 16.5,11.5zM8,15h8v2H8V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/smartphone.xml b/compose/material/material/icons/generator/raw-icons/outlined/smartphone.xml
deleted file mode 100644
index bd22f2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/smartphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/smoke_free.xml b/compose/material/material/icons/generator/raw-icons/outlined/smoke_free.xml
deleted file mode 100644
index 05defe8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/smoke_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,13L22,13v3h-1.5zM18,13h1.5v3L18,16zM17,13h-2.34L17,15.34zM14.5,8.65h1.53c1.05,0 1.97,0.74 1.97,2.05L18,12h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16L14.5,7.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35zM18.85,4.73c0.62,-0.61 1,-1.45 1,-2.38h-1.5c0,1.02 -0.83,1.85 -1.85,1.85v1.5c2.24,0 4,1.83 4,4.07L20.5,12L22,12L22,9.76c0,-2.22 -1.28,-4.14 -3.15,-5.03zM3.41,4.59L2,6l7,7L2,13v3h10l7,7 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/smoking_rooms.xml b/compose/material/material/icons/generator/raw-icons/outlined/smoking_rooms.xml
deleted file mode 100644
index 87e42b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/smoking_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16h1.5v3L18,19zM2,16h15v3L2,19zM16.03,10.2L14.5,10.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35h1.53c1.05,0 1.97,0.74 1.97,2.05L18,15h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16zM20.5,16L22,16v3h-1.5zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38C19.85,3.5 18.35,2 16.5,2v1.5c1.02,0 1.85,0.83 1.85,1.85S17.52,7.2 16.5,7.2v1.5c2.24,0 4,1.83 4,4.07L20.5,15L22,15v-2.24c0,-2.22 -1.28,-4.14 -3.15,-5.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sms.xml b/compose/material/material/icons/generator/raw-icons/outlined/sms.xml
deleted file mode 100644
index ef4b233..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM7,9h2v2L7,11zM15,9h2v2h-2zM11,9h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sms_failed.xml b/compose/material/material/icons/generator/raw-icons/outlined/sms_failed.xml
deleted file mode 100644
index 8f404e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sms_failed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM11,12h2v2h-2zM11,6h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/snippet_folder.xml b/compose/material/material/icons/generator/raw-icons/outlined/snippet_folder.xml
deleted file mode 100644
index dd64c88..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/snippet_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18zM17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12zM13,9v8l6,0v-5.5L16.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/snooze.xml b/compose/material/material/icons/generator/raw-icons/outlined/snooze.xml
deleted file mode 100644
index 72e830f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/snooze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h3.63L9,15.2L9,17h6v-2h-3.63L15,10.8L15,9L9,9v2zM16.056,3.346l1.282,-1.535 4.607,3.85 -1.28,1.54zM3.336,7.19l-1.28,-1.536L6.662,1.81l1.28,1.536zM12,6c3.86,0 7,3.14 7,7s-3.14,7 -7,7 -7,-3.14 -7,-7 3.14,-7 7,-7m0,-2c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/snowboarding.xml b/compose/material/material/icons/generator/raw-icons/outlined/snowboarding.xml
deleted file mode 100644
index 3c8e455..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/snowboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S14,4.1 14,3zM21.4,20.09c-0.23,-0.05 -0.46,0.02 -0.64,0.17c-0.69,0.6 -1.64,0.88 -2.6,0.67L17,20.69l-1,-6.19l-3.32,-2.67l1.8,-2.89C15.63,10.78 17.68,12 20,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C15.16,5.64 14.61,5 13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45 -0.37,1 -0.25,1.52L9.5,16L6,18.35l-0.47,-0.1c-0.96,-0.2 -1.71,-0.85 -2.1,-1.67c-0.1,-0.21 -0.28,-0.37 -0.51,-0.42c-0.43,-0.09 -0.82,0.2 -0.9,0.58C1.98,16.88 2,17.05 2.07,17.2c0.58,1.24 1.71,2.2 3.15,2.51l12.63,2.69c1.44,0.31 2.86,-0.11 3.9,-1.01c0.13,-0.11 0.21,-0.26 0.24,-0.41C22.06,20.6 21.83,20.18 21.4,20.09zM8.73,18.93l3.02,-2.03l-0.44,-3.32l2.84,2.02l0.75,4.64L8.73,18.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/snowmobile.xml b/compose/material/material/icons/generator/raw-icons/outlined/snowmobile.xml
deleted file mode 100644
index a7f649f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/snowmobile.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17c0,0.55 -0.45,1 -1,1h-0.17l-2.2,-2.2C20.58,15.37 22,14.4 22,13c0,-1 -8,-8 -8,-8h-3v2h2.25l0.8,0.72L11,10L2,9l-2,4l4.54,1.36l-3.49,1.88C-0.77,17.22 -0.07,20 2,20h6c2.21,0 4,-1.79 4,-4h4l2,2h-3v2h6c1.66,0 3,-1.34 3,-3H22zM8,18H2l5.25,-2.83L10,16C10,17.1 9.11,18 8,18zM17,14h-6.7l-7.45,-2.23l0.31,-0.62L11.6,12l3.93,-2.94c0,0 3.77,3.44 4.27,4.14C19.8,13.2 18.7,14 17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/snowshoeing.xml b/compose/material/material/icons/generator/raw-icons/outlined/snowshoeing.xml
deleted file mode 100644
index e1df340..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/snowshoeing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,3.5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S12.5,4.6 12.5,3.5zM6.32,19.03l-1.14,-1.47L4,18.5l2.38,3.04c0.51,0.65 1.16,1.15 1.88,1.41c0.28,0.1 0.53,0.04 0.72,-0.11c0.3,-0.23 0.42,-0.7 0.12,-1.07c-0.08,-0.1 -0.2,-0.17 -0.31,-0.22c-0.43,-0.18 -0.82,-0.45 -1.14,-0.83l-0.08,-0.1L11,18.2l0.89,-3.22l2.11,2v4.52h-2V23h3.87c0.82,0 1.61,-0.21 2.26,-0.61c0.26,-0.16 0.37,-0.39 0.37,-0.64c0,-0.38 -0.3,-0.75 -0.77,-0.75c-0.13,0 -0.26,0.04 -0.37,0.1c-0.4,0.23 -0.87,0.37 -1.36,0.4l0,-6.02l-2.11,-2l0.6,-3C15.79,11.98 17.8,13 20,13v-2c-1.9,0 -3.51,-1.02 -4.31,-2.42l-1,-1.58c-0.4,-0.6 -1,-1 -1.7,-1C12.24,6 11.58,6.34 7,8.28V13h2V9.58l1.79,-0.7L9.2,17L6.32,19.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/soap.xml b/compose/material/material/icons/generator/raw-icons/outlined/soap.xml
deleted file mode 100644
index 663b24f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/soap.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,6C14.66,6 15,6.34 15,6.75S14.66,7.5 14.25,7.5S13.5,7.16 13.5,6.75S13.84,6 14.25,6M14.25,4.5C13.01,4.5 12,5.51 12,6.75S13.01,9 14.25,9s2.25,-1.01 2.25,-2.25S15.49,4.5 14.25,4.5L14.25,4.5zM20,5.5c0.28,0 0.5,0.22 0.5,0.5S20.28,6.5 20,6.5S19.5,6.28 19.5,6S19.72,5.5 20,5.5M20,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S21.1,4 20,4L20,4zM16.5,1C15.67,1 15,1.67 15,2.5S15.67,4 16.5,4C17.33,4 18,3.33 18,2.5S17.33,1 16.5,1zM20.75,16c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25c0,-0.67 -0.53,-1.2 -1.18,-1.24L8.87,10l1.48,-2.6c0.09,-0.17 0.14,-0.34 0.14,-0.54c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.12,5l-7.18,6.8C1.34,12.36 1,13.15 1,13.97V20c0,1.66 1.34,3 3,3h13.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1H20.75zM10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/social_distance.xml b/compose/material/material/icons/generator/raw-icons/outlined/social_distance.xml
deleted file mode 100644
index 6f8b1dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/social_distance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S4,6.1 4,5zM8.78,8.58C7.93,8.21 6.99,8 6,8S4.07,8.21 3.22,8.58C2.48,8.9 2,9.62 2,10.43L2,11h8l0,-0.57C10,9.62 9.52,8.9 8.78,8.58zM18,7c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C16,6.1 16.9,7 18,7zM20.78,8.58C19.93,8.21 18.99,8 18,8c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,8.9 14,9.62 14,10.43L14,11h8l0,-0.57C22,9.62 21.52,8.9 20.78,8.58zM18.01,13.01l-1.41,1.41L18.17,16H5.83l1.58,-1.59l-1.41,-1.41L2,17l3.99,3.99l1.41,-1.41L5.83,18h12.34l-1.58,1.58l1.41,1.41L22,17L18.01,13.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/solar_power.xml b/compose/material/material/icons/generator/raw-icons/outlined/solar_power.xml
deleted file mode 100644
index e5d123e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/solar_power.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12H4L2,22h20L20,12zM18.36,14l0.4,2H13v-2H18.36zM11,14v2H5.24l0.4,-2H11zM4.84,18H11v2H4.44L4.84,18zM13,20v-2h6.16l0.4,2H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.764,7.205l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.705,7.913l2.121,-2.121l1.414,1.414l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,-2.24 5,-5h-2c0,1.65 -1.35,3 -3,3S9,3.65 9,2H7C7,4.76 9.24,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sort.xml b/compose/material/material/icons/generator/raw-icons/outlined/sort.xml
deleted file mode 100644
index b9a508d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sort.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h6v-2L3,16v2zM3,6v2h18L21,6L3,6zM3,13h12v-2L3,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sort_by_alpha.xml b/compose/material/material/icons/generator/raw-icons/outlined/sort_by_alpha.xml
deleted file mode 100644
index 995c10c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sort_by_alpha.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.94,4.66h-4.72l2.36,-2.36 2.36,2.36zM10.25,19.37h4.66l-2.33,2.33 -2.33,-2.33zM6.1,6.27L1.6,17.73h1.84l0.92,-2.45h5.11l0.92,2.45h1.84L7.74,6.27L6.1,6.27zM4.97,13.64l1.94,-5.18 1.94,5.18L4.97,13.64zM15.73,16.14h6.12v1.59h-8.53v-1.29l5.92,-8.56h-5.88v-1.6h8.3v1.26l-5.93,8.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sos.xml b/compose/material/material/icons/generator/raw-icons/outlined/sos.xml
deleted file mode 100644
index 2005165..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V9C15.5,7.9 14.6,7 13.5,7zM13.5,15h-3V9h3V15zM1,15h4v-2H3c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h4v2H3v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2H1V15zM17,15h4v-2h-2c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h4v2h-4v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2h-4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/soup_kitchen.xml b/compose/material/material/icons/generator/raw-icons/outlined/soup_kitchen.xml
deleted file mode 100644
index 31ff61f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/soup_kitchen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,7C6.06,7.55 6,7.97 6,8.38C6,9.15 7,11 7,12c0,0.95 -0.4,1.5 -0.4,1.5H5.1c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62C4.5,7.97 4.56,7.55 4.9,7H6.4zM11.4,7C11.06,7.55 11,7.97 11,8.38C11,9.15 12,11 12,12c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H11.4zM8.15,7c-0.34,0.55 -0.4,0.97 -0.4,1.38c0,0.77 1,2.63 1,3.62c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H8.15zM18.6,2c-1.54,0 -2.81,1.16 -2.98,2.65L14.53,15H4.01c-0.6,0 -1.09,0.53 -1,1.13C3.53,19.46 6.39,22 9.75,22c3.48,0 6.34,-2.73 6.71,-6.23l1.15,-10.87C17.66,4.39 18.08,4 18.6,4c0.55,0 1,0.45 1,1c0,0.3 -0.1,1.25 -0.1,1.25l1.97,0.25c0,0 0.13,-1.06 0.13,-1.5C21.6,3.35 20.25,2 18.6,2zM9.75,20c-1.94,0 -3.67,-1.23 -4.43,-3h8.78h0.01C13.39,18.78 11.69,20 9.75,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/source.xml b/compose/material/material/icons/generator/raw-icons/outlined/source.xml
deleted file mode 100644
index be72026..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18zM18,12H6v-2h12V12zM14,16H6v-2h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/south.xml b/compose/material/material/icons/generator/raw-icons/outlined/south.xml
deleted file mode 100644
index 901daf4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/south.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-1.41,-1.41L13,18.17V2H11v16.17l-4.59,-4.59L5,15l7,7L19,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/south_america.xml b/compose/material/material/icons/generator/raw-icons/outlined/south_america.xml
deleted file mode 100644
index ca13a97..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/south_america.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM4,12c0,-1.95 0.7,-3.74 1.87,-5.13L9,10v1c0,1.1 0.9,2 2,2v5.59c0,0.27 0.11,0.52 0.29,0.71L12,20C7.58,20 4,16.42 4,12zM13,19.94V18l3.75,-5.62c0.16,-0.25 0.25,-0.54 0.25,-0.83V10.5c0,-0.55 -0.45,-1 -1,-1h-1.5l-1.4,-1.75C12.72,7.28 12.15,7 11.54,7H8V5.07C9.18,4.39 10.54,4 12,4c4.41,0 8,3.59 8,8C20,16.07 16.94,19.44 13,19.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/south_east.xml b/compose/material/material/icons/generator/raw-icons/outlined/south_east.xml
deleted file mode 100644
index 701f3d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/south_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/south_west.xml b/compose/material/material/icons/generator/raw-icons/outlined/south_west.xml
deleted file mode 100644
index 6f12610..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/south_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/spa.xml b/compose/material/material/icons/generator/raw-icons/outlined/spa.xml
deleted file mode 100644
index be08d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/spa.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.49,9.63c-0.18,-2.79 -1.31,-5.51 -3.43,-7.63 -2.14,2.14 -3.32,4.86 -3.55,7.63 1.28,0.68 2.46,1.56 3.49,2.63 1.03,-1.06 2.21,-1.94 3.49,-2.63zM12.05,5.19c0.63,1.03 1.07,2.18 1.3,3.38 -0.47,0.3 -0.91,0.63 -1.34,0.98 -0.42,-0.34 -0.87,-0.67 -1.33,-0.97 0.25,-1.2 0.71,-2.35 1.37,-3.39zM12,15.45c-0.82,-1.25 -1.86,-2.34 -3.06,-3.2 -0.13,-0.09 -0.27,-0.16 -0.4,-0.26 0.13,0.09 0.27,0.17 0.39,0.25C6.98,10.83 4.59,10 2,10c0,5.32 3.36,9.82 8.03,11.49 0.63,0.23 1.29,0.4 1.97,0.51 0.68,-0.12 1.33,-0.29 1.97,-0.51C18.64,19.82 22,15.32 22,10c-4.18,0 -7.85,2.17 -10,5.45zM13.32,19.6c-0.44,0.15 -0.88,0.27 -1.33,0.37 -0.44,-0.09 -0.87,-0.21 -1.28,-0.36 -3.29,-1.18 -5.7,-3.99 -6.45,-7.35 1.1,0.26 2.15,0.71 3.12,1.33l-0.02,0.01c0.13,0.09 0.26,0.18 0.39,0.25l0.07,0.04c0.99,0.72 1.84,1.61 2.51,2.65L12,19.1l1.67,-2.55c0.69,-1.05 1.55,-1.95 2.53,-2.66l0.07,-0.05c0.09,-0.05 0.18,-0.11 0.27,-0.17l-0.01,-0.02c0.98,-0.65 2.07,-1.13 3.21,-1.4 -0.75,3.37 -3.15,6.18 -6.42,7.35zM8.99,12.28c-0.02,-0.01 -0.04,-0.03 -0.05,-0.04 0,0 0.01,0 0.01,0.01 0.01,0.01 0.02,0.02 0.04,0.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/space_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/space_bar.xml
deleted file mode 100644
index cd72f52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/space_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9v4H6V9H4v6h16V9h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/space_dashboard.xml b/compose/material/material/icons/generator/raw-icons/outlined/space_dashboard.xml
deleted file mode 100644
index 4bee91f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/space_dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM5,19V5h6v14H5zM19,19h-6v-7h6V19zM19,10h-6V5h6V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/spatial_audio.xml b/compose/material/material/icons/generator/raw-icons/outlined/spatial_audio.xml
deleted file mode 100644
index 17e3ccc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/spatial_audio.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S6,6.79 6,9C6,11.21 7.79,13 10,13zM10,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C8,7.9 8.9,7 10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56zM16,19H4v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C5.71,16.73 7.63,16 10,16c2.37,0 4.29,0.73 5.48,1.34C15.8,17.5 16,17.84 16,18.22V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1h-2c0,4.97 4.03,9 9,9V8C19.14,8 16,4.86 16,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1h-2c0,2.76 2.24,5 5,5V4C21.35,4 20,2.65 20,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/spatial_audio_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/spatial_audio_off.xml
deleted file mode 100644
index 6e1dbc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/spatial_audio_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S6,6.79 6,9C6,11.21 7.79,13 10,13zM10,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C8,7.9 8.9,7 10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56zM16,19H4v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C5.71,16.73 7.63,16 10,16c2.37,0 4.29,0.73 5.48,1.34C15.8,17.5 16,17.84 16,18.22V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.36,1l-1.41,1.41c2.73,2.73 2.73,7.17 0,9.9l1.41,1.41C23.88,10.21 23.88,4.51 20.36,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.54,10.9c1.95,-1.95 1.95,-5.12 0,-7.07l-1.41,1.41c1.17,1.17 1.17,3.07 0,4.24L17.54,10.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/spatial_tracking.xml b/compose/material/material/icons/generator/raw-icons/outlined/spatial_tracking.xml
deleted file mode 100644
index 5ad2ad9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/spatial_tracking.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S6,6.79 6,9C6,11.21 7.79,13 10,13zM10,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C8,7.9 8.9,7 10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56zM16,19H4v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C5.71,16.73 7.63,16 10,16c2.37,0 4.29,0.73 5.48,1.34C15.8,17.5 16,17.84 16,18.22V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.05,2.41L18.64,1c-3.51,3.51 -3.51,9.21 0,12.73l1.41,-1.41C17.32,9.58 17.32,5.14 20.05,2.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.88,5.24l-1.41,-1.41c-1.95,1.95 -1.95,5.12 0,7.07l1.41,-1.41C21.71,8.32 21.71,6.41 22.88,5.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/speaker.xml b/compose/material/material/icons/generator/raw-icons/outlined/speaker.xml
deleted file mode 100644
index bbcc6a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2L7,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,1.99 2,1.99L17,22c1.1,0 2,-0.9 2,-2L19,4c0,-1.1 -0.9,-2 -2,-2zM7,20L7,4h10v16L7,20zM12,9c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2c-1.11,0 -2,0.9 -2,2s0.89,2 2,2zM12,11c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/speaker_group.xml b/compose/material/material/icons/generator/raw-icons/outlined/speaker_group.xml
deleted file mode 100644
index 4c26c6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/speaker_group.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.2,1L9.8,1C8.81,1 8,1.81 8,2.8v14.4c0,0.99 0.81,1.79 1.8,1.79l8.4,0.01c0.99,0 1.8,-0.81 1.8,-1.8L20,2.8c0,-0.99 -0.81,-1.8 -1.8,-1.8zM18,17l-8,-0.01L10,3h8v14zM14,8c1.1,0 2,-0.89 2,-2s-0.9,-2 -2,-2 -2,0.89 -2,2 0.9,2 2,2zM14,16c1.93,0 3.5,-1.57 3.5,-3.5S15.93,9 14,9s-3.5,1.57 -3.5,3.5S12.07,16 14,16zM14,11c0.83,0 1.5,0.67 1.5,1.5S14.83,14 14,14s-1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM6,5L4,5v16c0,1.1 0.89,2 2,2h10v-2L6,21L6,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/speaker_notes.xml b/compose/material/material/icons/generator/raw-icons/outlined/speaker_notes.xml
deleted file mode 100644
index aa8f5ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/speaker_notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16l-0.59,0.59 -0.58,0.58L4,4h16v12zM6,12h2v2L6,14zM6,9h2v2L6,11zM6,6h2v2L6,8zM10,12h5v2h-5zM10,9h8v2h-8zM10,6h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/speaker_notes_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/speaker_notes_off.xml
deleted file mode 100644
index bf99996..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/speaker_notes_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v12h-1.34l1.91,1.91C21.39,17.66 22,16.9 22,16L22,4c0,-1.1 -0.9,-2 -2,-2L4.66,2l2,2L20,4zM6,12h2v2L6,14zM18,9h-6.34l2,2L18,11zM18,6h-8v1.34l0.66,0.66L18,8zM1.41,1.59L0,3l2.01,2.01L2,22l4,-4h9l5.73,5.73 1.41,-1.41L1.41,1.59zM5.17,16L4,17.17L4,7l2,2v2h2l5,5L5.17,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/speaker_phone.xml b/compose/material/material/icons/generator/raw-icons/outlined/speaker_phone.xml
deleted file mode 100644
index ab0ad20..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/speaker_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7.07L8.43,8.5c0.91,-0.91 2.18,-1.48 3.57,-1.48s2.66,0.57 3.57,1.48L17,7.07C15.72,5.79 13.95,5 12,5s-3.72,0.79 -5,2.07zM12,1C8.98,1 6.24,2.23 4.25,4.21l1.41,1.41C7.28,4 9.53,3 12,3s4.72,1 6.34,2.62l1.41,-1.41C17.76,2.23 15.02,1 12,1zM14.86,10.01L9.14,10C8.51,10 8,10.51 8,11.14v9.71c0,0.63 0.51,1.14 1.14,1.14h5.71c0.63,0 1.14,-0.51 1.14,-1.14v-9.71c0.01,-0.63 -0.5,-1.13 -1.13,-1.13zM15,20L9,20v-8h6v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/speed.xml b/compose/material/material/icons/generator/raw-icons/outlined/speed.xml
deleted file mode 100644
index 0f4767f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/speed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,8.57l-1.23,1.85a8,8 0,0 1,-0.22 7.58H5.07A8,8 0,0 1,15.58 6.85l1.85,-1.23A10,10 0,0 0,3.35 19a2,2 0,0 0,1.72 1h13.85a2,2 0,0 0,1.74 -1,10 10,0 0,0 -0.27,-10.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,15.41a2,2 0,0 0,2.83 0l5.66,-8.49 -8.49,5.66a2,2 0,0 0,0 2.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/spellcheck.xml b/compose/material/material/icons/generator/raw-icons/outlined/spellcheck.xml
deleted file mode 100644
index fae9ad9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/spellcheck.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.45,16h2.09L9.43,3L7.57,3L2.46,16h2.09l1.12,-3h5.64l1.14,3zM6.43,11L8.5,5.48 10.57,11L6.43,11zM21.59,11.59l-8.09,8.09L9.83,16l-1.41,1.41 5.09,5.09L23,13l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/splitscreen.xml b/compose/material/material/icons/generator/raw-icons/outlined/splitscreen.xml
deleted file mode 100644
index ae1ea35..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/splitscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v5H6V4H18M18,2H6C4.9,2 4,2.9 4,4v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,15v5H6v-5H18M18,13H6c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-5C20,13.9 19.1,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/spoke.xml b/compose/material/material/icons/generator/raw-icons/outlined/spoke.xml
deleted file mode 100644
index 45b8ea1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/spoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7c0,-2.21 -1.79,-4 -4,-4S8,4.79 8,7c0,2.21 1.79,4 4,4S16,9.21 16,7zM12,9c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,8.1 13.1,9 12,9zM7,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C11,14.79 9.21,13 7,13zM7,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C9,18.1 8.1,19 7,19zM17,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C21,14.79 19.21,13 17,13zM17,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C19,18.1 18.1,19 17,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports.xml
deleted file mode 100644
index 748e3f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.23,6C9.57,6 8.01,6.66 6.87,7.73C6.54,6.73 5.61,6 4.5,6C3.12,6 2,7.12 2,8.5C2,9.88 3.12,11 4.5,11c0.21,0 0.41,-0.03 0.61,-0.08c-0.05,0.25 -0.09,0.51 -0.1,0.78c-0.18,3.68 2.95,6.68 6.68,6.27c2.55,-0.28 4.68,-2.26 5.19,-4.77c0.15,-0.71 0.15,-1.4 0.06,-2.06c-0.09,-0.6 0.38,-1.13 0.99,-1.13H22V6H11.23zM4.5,9C4.22,9 4,8.78 4,8.5C4,8.22 4.22,8 4.5,8S5,8.22 5,8.5C5,8.78 4.78,9 4.5,9zM11,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S12.66,15 11,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_bar.xml
deleted file mode 100644
index bac5534..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19H8l0,-6.63c1.26,-0.34 2.11,-1.27 2.77,-1.99C11.6,9.47 12.08,9 13,9l2,0V19zM10,2.02c-1.89,0 -3.51,1.11 -4.27,2.71C4.15,5.26 3,6.74 3,8.5c0,1.86 1.28,3.41 3,3.86L6,21h11v-2h2c1.1,0 2,-0.9 2,-2v-6c0,-1.1 -0.9,-2 -2,-2h-1.56C17.79,8.41 18,7.73 18,7c0,-2.21 -1.79,-4 -4,-4c-0.34,0 -0.66,0.05 -0.98,0.13C12.2,2.45 11.16,2.02 10,2.02L10,2.02zM7,10.5c-1.1,0 -2,-0.9 -2,-2c0,-0.85 0.55,-1.6 1.37,-1.88l0.8,-0.27l0.36,-0.76C8,4.62 8.94,4.02 10,4.02c0.79,0 1.39,0.35 1.74,0.65l0.78,0.65c0,0 0.64,-0.32 1.47,-0.32c1.1,0 2,0.9 2,2c0,0 -3,0 -3,0C9.67,7 9.15,10.5 7,10.5C7,10.5 7,10.5 7,10.5L7,10.5zM17,17v-6h2v6H17L17,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_baseball.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_baseball.xml
deleted file mode 100644
index f0220f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_baseball.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM5.61,16.78C4.6,15.45 4,13.8 4,12s0.6,-3.45 1.61,-4.78C7.06,8.31 8,10.05 8,12S7.06,15.69 5.61,16.78zM12,20c-1.89,0 -3.63,-0.66 -5,-1.76c1.83,-1.47 3,-3.71 3,-6.24S8.83,7.23 7,5.76C8.37,4.66 10.11,4 12,4s3.63,0.66 5,1.76c-1.83,1.47 -3,3.71 -3,6.24s1.17,4.77 3,6.24C15.63,19.34 13.89,20 12,20zM18.39,16.78C16.94,15.69 16,13.95 16,12s0.94,-3.69 2.39,-4.78C19.4,8.55 20,10.2 20,12S19.4,15.45 18.39,16.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_basketball.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_basketball.xml
deleted file mode 100644
index f8e0a52..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_basketball.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM5.23,7.75C6.1,8.62 6.7,9.74 6.91,11H4.07C4.22,9.82 4.63,8.72 5.23,7.75zM4.07,13h2.84c-0.21,1.26 -0.81,2.38 -1.68,3.25C4.63,15.28 4.22,14.18 4.07,13zM11,19.93c-1.73,-0.22 -3.29,-1 -4.49,-2.14c1.3,-1.24 2.19,-2.91 2.42,-4.79H11V19.93zM11,11H8.93C8.69,9.12 7.81,7.44 6.5,6.2C7.71,5.06 9.27,4.29 11,4.07V11zM19.93,11h-2.84c0.21,-1.26 0.81,-2.38 1.68,-3.25C19.37,8.72 19.78,9.82 19.93,11zM13,4.07c1.73,0.22 3.29,0.99 4.5,2.13c-1.31,1.24 -2.19,2.92 -2.43,4.8H13V4.07zM13,19.93V13h2.07c0.24,1.88 1.12,3.55 2.42,4.79C16.29,18.93 14.73,19.71 13,19.93zM18.77,16.25c-0.87,-0.86 -1.46,-1.99 -1.68,-3.25h2.84C19.78,14.18 19.37,15.28 18.77,16.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_cricket.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_cricket.xml
deleted file mode 100644
index 844d1aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_cricket.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.04,12.79l-8.5,-8.5C6.35,4.1 6.09,4 5.83,4S5.32,4.1 5.13,4.29L2.29,7.13c-0.39,0.39 -0.39,1.03 0,1.42l8.5,8.5c0.2,0.2 0.45,0.29 0.71,0.29c0.26,0 0.51,-0.1 0.71,-0.29l2.83,-2.83C15.43,13.82 15.43,13.18 15.04,12.79zM11.5,14.92L4.41,7.83l1.42,-1.42l7.09,7.09L11.5,14.92z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.341,17.756l1.414,-1.414l4.243,4.243l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,2C16.57,2 15,3.57 15,5.5C15,7.43 16.57,9 18.5,9S22,7.43 22,5.5C22,3.57 20.43,2 18.5,2zM18.5,7C17.67,7 17,6.33 17,5.5S17.67,4 18.5,4S20,4.67 20,5.5S19.33,7 18.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_esports.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_esports.xml
deleted file mode 100644
index d88f89c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_esports.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.58,16.09l-1.09,-7.66C20.21,6.46 18.52,5 16.53,5H7.47C5.48,5 3.79,6.46 3.51,8.43l-1.09,7.66C2.2,17.63 3.39,19 4.94,19h0c0.68,0 1.32,-0.27 1.8,-0.75L9,16h6l2.25,2.25c0.48,0.48 1.13,0.75 1.8,0.75h0C20.61,19 21.8,17.63 21.58,16.09zM19.48,16.81C19.4,16.9 19.27,17 19.06,17c-0.15,0 -0.29,-0.06 -0.39,-0.16L15.83,14H8.17l-2.84,2.84C5.23,16.94 5.09,17 4.94,17c-0.21,0 -0.34,-0.1 -0.42,-0.19c-0.08,-0.09 -0.16,-0.23 -0.13,-0.44l1.09,-7.66C5.63,7.74 6.48,7 7.47,7h9.06c0.99,0 1.84,0.74 1.98,1.72l1.09,7.66C19.63,16.58 19.55,16.72 19.48,16.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8l-1,0l0,2l-2,0l0,1l2,0l0,2l1,0l0,-2l2,0l0,-1l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_football.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_football.xml
deleted file mode 100644
index 75fda10..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_football.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.31,3.69C19.99,3.36 18.37,3 16.26,3c-3.03,0 -7.09,0.75 -9.8,3.46C1.87,11.05 2.9,19.52 3.69,20.31C4.01,20.64 5.63,21 7.74,21c3.03,0 7.09,-0.75 9.8,-3.46C22.13,12.95 21.1,4.48 20.31,3.69zM7.74,19c-1.14,0 -2.02,-0.12 -2.53,-0.23c-0.18,-0.79 -0.3,-2.21 -0.17,-3.83l4.01,4.01C8.53,18.99 8.08,19 7.74,19zM16.13,16.13c-1.33,1.33 -3.06,2.05 -4.66,2.44l-6.04,-6.04c0.42,-1.68 1.16,-3.37 2.45,-4.65c1.32,-1.32 3.05,-2.04 4.64,-2.43l6.05,6.05C18.15,13.17 17.4,14.85 16.13,16.13zM18.96,9.09l-4.03,-4.03C15.45,5.01 15.91,5 16.26,5c1.14,0 2.02,0.12 2.53,0.23C18.97,6.02 19.09,7.45 18.96,9.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.1l5.6,-5.6l1.4,1.4l-5.6,5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_golf.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_golf.xml
deleted file mode 100644
index 68e509d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_golf.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c3.87,0 7,-3.13 7,-7c0,-3.87 -3.13,-7 -7,-7C8.13,2 5,5.13 5,9C5,12.87 8.13,16 12,16zM12,4c2.76,0 5,2.24 5,5s-2.24,5 -5,5s-5,-2.24 -5,-5S9.24,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h2c1.1,0 2,0.9 2,2v1h2v-1c0,-1.1 0.9,-2 2,-2h2v-2H7V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_gymnastics.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_gymnastics.xml
deleted file mode 100644
index 8631ae8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_gymnastics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM1,9h6l7,-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2l-0.5,-10L8,11H1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_handball.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_handball.xml
deleted file mode 100644
index 4ff5718..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_handball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.27,6C13.72,6.95 14.05,8.18 15,8.73c0.95,0.55 2.18,0.22 2.73,-0.73c0.55,-0.95 0.22,-2.18 -0.73,-2.73C16.05,4.72 14.82,5.05 14.27,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.84,10.41c0,0 -1.63,-0.94 -2.6,-1.5c-2.38,-1.38 -3.2,-4.44 -1.82,-6.82l-1.73,-1C8.1,3.83 8.6,7.21 10.66,9.4l-5.15,8.92l1.73,1l1.5,-2.6l1.73,1l-3,5.2l1.73,1l6.29,-10.89c1.14,1.55 1.33,3.69 0.31,5.46l1.73,1C19.13,16.74 18.81,12.91 15.84,10.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,3.8c0.72,0.41 1.63,0.17 2.05,-0.55c0.41,-0.72 0.17,-1.63 -0.55,-2.05c-0.72,-0.41 -1.63,-0.17 -2.05,0.55C11.79,2.47 12.03,3.39 12.75,3.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_hockey.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_hockey.xml
deleted file mode 100644
index 520fe43..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_hockey.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17v3l2,0v-4H3C2.45,16 2,16.45 2,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16H5v4l4.69,-0.01c0.38,0 0.72,-0.21 0.89,-0.55l0.87,-1.9l-1.59,-3.48L9,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,16.29C21.53,16.11 21.28,16 21,16h-1v4l2,0v-3C22,16.72 21.89,16.47 21.71,16.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1c0.17,0.34 0.51,0.55 0.89,0.55L19,20v-4h-4L13.6,12.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_kabaddi.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_kabaddi.xml
deleted file mode 100644
index dc08aa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_kabaddi.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,2.38m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,11.88v-4.7l-5.05,-2.14c-0.97,-0.41 -2.09,-0.06 -2.65,0.84l0,0l-1,1.6c-0.67,1.18 -1.91,2.06 -3.41,2.32l0.06,0.06c0.69,0.69 1.52,1.07 2.46,1.17c0.8,-0.42 1.52,-0.98 2.09,-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1,-2l1.8,8H23l-2.18,-11l-0.62,-3.1l1.8,0.7v3.4H24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.09c0.22,0.15 0.47,0.24 0.72,0.29c0.13,0.02 0.25,0.04 0.38,0.04s0.26,-0.01 0.38,-0.04c0.13,-0.02 0.25,-0.06 0.37,-0.11c0.24,-0.1 0.47,-0.24 0.66,-0.44c0.49,-0.49 0.67,-1.17 0.55,-1.8C13.28,5.66 13.1,5.29 12.8,5c-0.19,-0.19 -0.42,-0.34 -0.66,-0.44c-0.12,-0.05 -0.24,-0.09 -0.37,-0.11s-0.25,-0.04 -0.38,-0.04c-0.12,0 -0.23,0.01 -0.35,0.03c-0.14,0.02 -0.28,0.06 -0.41,0.11C10.4,4.66 10.17,4.81 9.98,5C9.68,5.29 9.5,5.66 9.43,6.03c-0.12,0.63 0.06,1.31 0.55,1.8C10.07,7.93 10.18,8.01 10.29,8.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.24,10.56l-2,-2c-0.1,-0.1 -0.2,-0.18 -0.31,-0.26C8.71,8.16 8.46,8.06 8.21,8.02C8.08,7.99 7.96,7.98 7.83,7.98c-0.51,0 -1.02,0.2 -1.41,0.59l-3.34,3.34c-0.41,0.41 -0.62,0.98 -0.58,1.54C2.5,13.63 2.54,13.82 2.61,14l1.07,2.95l-3.63,3.63L1.46,22l4.24,-4.24v-2.22L7,16.75v5.13h2v-6l-2.12,-2.12l2.36,-2.36l0.71,0.71l0,0c1.29,1.26 2.97,2.04 5.03,2.04l-0.14,-2.07C13.34,12.06 12.14,11.46 11.24,10.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_martial_arts.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_martial_arts.xml
deleted file mode 100644
index 97fdc73..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_martial_arts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,2l-8.2,6.7l-1.21,-1.04l3.6,-2.08l-4.58,-4.58l-1.41,1.41l2.74,2.74l-5.74,3.31l-1.19,4.29l2.46,4.25l1.73,-1l-2.03,-3.52l0.35,-1.3l3.18,1.82l0.5,9l2,0l0.5,-10l8.5,-8.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_mma.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_mma.xml
deleted file mode 100644
index d49feb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_mma.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-3H7V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c-0.55,0 -1,0.45 -1,1V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v5.8c0,0.13 0.01,0.26 0.04,0.39l0.8,4c0.09,0.47 0.5,0.8 0.98,0.8H17c0.55,0 1.09,-0.44 1.2,-0.98l0.77,-3.83C18.99,11.06 19,10.93 19,10.8V9V8C19,7.45 18.55,7 18,7zM17,10.6c0,0.13 -0.64,3.4 -0.64,3.4H7.64c0,0 -0.64,-3.26 -0.64,-3.4V5h8v5h2V10.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7h6v3h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_motorsports.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_motorsports.xml
deleted file mode 100644
index 9ac0fa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_motorsports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,11.22C21.57,7.01 17.76,4 13.56,4c-0.19,0 -0.38,0.01 -0.57,0.02C2,4.74 2,17.2 2,17.2V18c0,1.1 0.9,2 2,2h10C18.67,20 22.41,15.99 21.96,11.22zM5.26,11.56c0.57,-1.29 1.28,-2.35 2.14,-3.19l3.62,1.53c0.6,0.25 0.98,0.83 0.98,1.48c0,0.89 -0.72,1.61 -1.61,1.61H4.72C4.87,12.53 5.04,12.05 5.26,11.56zM18.44,16.04C17.3,17.29 15.68,18 14,18H4v-0.8c0,-0.02 0.01,-0.92 0.24,-2.2h6.15c1.99,0 3.61,-1.62 3.61,-3.61c0,-1.45 -0.87,-2.76 -2.2,-3.32L9.3,7.01c1.1,-0.57 2.37,-0.9 3.82,-0.99C13.27,6 13.42,6 13.56,6c3.31,0 6.13,2.37 6.41,5.41C20.13,13.13 19.59,14.77 18.44,16.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_rugby.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_rugby.xml
deleted file mode 100644
index c3a5fc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_rugby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,3.51c-0.56,-0.56 -2.15,-0.97 -4.16,-0.97c-3.08,0 -7.15,0.96 -9.98,3.79C1.66,11.03 2.1,19.07 3.51,20.49c0.56,0.56 2.15,0.97 4.16,0.97c3.08,0 7.15,-0.96 9.98,-3.79C22.34,12.97 21.9,4.93 20.49,3.51zM5.71,18.29c0.63,-1.89 2.16,-4.99 4.87,-7.7c2.68,-2.68 5.78,-4.23 7.7,-4.88c-0.63,1.89 -2.16,4.99 -4.88,7.7C10.74,16.09 7.64,17.64 5.71,18.29zM7.76,7.76c2.64,-2.64 6.34,-3.12 8.03,-3.19c-2.05,0.94 -4.46,2.46 -6.61,4.61c-2.16,2.16 -3.67,4.58 -4.61,6.63C4.66,13.33 5.44,10.07 7.76,7.76zM16.24,16.24c-2.64,2.64 -6.34,3.12 -8.03,3.19c2.05,-0.94 4.46,-2.46 6.61,-4.61c2.16,-2.16 3.67,-4.58 4.62,-6.63C19.34,10.67 18.56,13.93 16.24,16.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_score.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_score.xml
deleted file mode 100644
index 788aa62..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6H9V4h2V6zM15,4h-2v2h2V4zM9,14h2v-2H9V14zM19,10V8h-2v2H19zM19,14v-2h-2v2H19zM13,14h2v-2h-2V14zM19,4h-2v2h2V4zM13,8V6h-2v2H13zM7,10V8h2V6H7V4H5v16h2v-8h2v-2H7zM15,12h2v-2h-2V12zM11,10v2h2v-2H11zM9,8v2h2V8H9zM13,10h2V8h-2V10zM15,6v2h2V6H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_soccer.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_soccer.xml
deleted file mode 100644
index d01405e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_soccer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,5.3l1.35,-0.95c1.82,0.56 3.37,1.76 4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3zM9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69C6.28,6.12 7.83,4.92 9.65,4.35zM7.08,17.11l-1.14,0.1C4.73,15.81 4,13.99 4,12c0,-0.12 0.01,-0.23 0.02,-0.35l1,-0.73L6.4,11.4l1.46,4.34L7.08,17.11zM14.5,19.59C13.71,19.85 12.87,20 12,20s-1.71,-0.15 -2.5,-0.41l-0.69,-1.49L9.45,17h5.11l0.64,1.11L14.5,19.59zM14.27,15H9.73l-1.35,-4.02L12,8.44l3.63,2.54L14.27,15zM18.06,17.21l-1.14,-0.1l-0.79,-1.37l1.46,-4.34l1.39,-0.47l1,0.73C19.99,11.77 20,11.88 20,12C20,13.99 19.27,15.81 18.06,17.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_tennis.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_tennis.xml
deleted file mode 100644
index f81e308..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_tennis.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.52,2.49c-2.34,-2.34 -6.62,-1.87 -9.55,1.06c-1.6,1.6 -2.52,3.87 -2.54,5.46c-0.02,1.58 0.26,3.89 -1.35,5.5l-4.24,4.24l1.42,1.42l4.24,-4.24c1.61,-1.61 3.92,-1.33 5.5,-1.35s3.86,-0.94 5.46,-2.54C21.38,9.11 21.86,4.83 19.52,2.49zM10.32,11.68c-1.53,-1.53 -1.05,-4.61 1.06,-6.72s5.18,-2.59 6.72,-1.06c1.53,1.53 1.05,4.61 -1.06,6.72S11.86,13.21 10.32,11.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17c0.53,0 1.04,0.21 1.41,0.59c0.78,0.78 0.78,2.05 0,2.83C19.04,20.79 18.53,21 18,21s-1.04,-0.21 -1.41,-0.59c-0.78,-0.78 -0.78,-2.05 0,-2.83C16.96,17.21 17.47,17 18,17M18,15c-1.02,0 -2.05,0.39 -2.83,1.17c-1.56,1.56 -1.56,4.09 0,5.66C15.95,22.61 16.98,23 18,23s2.05,-0.39 2.83,-1.17c1.56,-1.56 1.56,-4.09 0,-5.66C20.05,15.39 19.02,15 18,15L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sports_volleyball.xml b/compose/material/material/icons/generator/raw-icons/outlined/sports_volleyball.xml
deleted file mode 100644
index c72cfd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sports_volleyball.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,4.07c3.07,0.38 5.57,2.52 6.54,5.36L13,5.65V4.07zM8,5.08c1.18,-0.69 3.33,-1.06 3,-1.02v7.35l-3,1.73V5.08zM4.63,15.1C4.23,14.14 4,13.1 4,12c0,-2.02 0.76,-3.86 2,-5.27v7.58L4.63,15.1zM5.64,16.83L12,13.15l3,1.73l-6.98,4.03C7.09,18.38 6.28,17.68 5.64,16.83zM10.42,19.84M12,20c-0.54,0 -1.07,-0.06 -1.58,-0.16l6.58,-3.8l1.36,0.78C16.9,18.75 14.6,20 12,20zM13,11.42V7.96l7,4.05c0,1.1 -0.23,2.14 -0.63,3.09L13,11.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/square.xml b/compose/material/material/icons/generator/raw-icons/outlined/square.xml
deleted file mode 100644
index d83a474..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/square_foot.xml b/compose/material/material/icons/generator/raw-icons/outlined/square_foot.xml
deleted file mode 100644
index 0dde139..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/square_foot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,17.66l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06L9.7,9.7l-1.06,1.06l-0.71,-0.71l1.06,-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06,-1.06L4,4v14c0,1.1 0.9,2 2,2h14L17.66,17.66zM7,17v-5.76L12.76,17H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/ssid_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/ssid_chart.xml
deleted file mode 100644
index 2f7895c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/ssid_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47zM21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8,-2l6.2,6l5,-4h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stacked_bar_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/stacked_bar_chart.xml
deleted file mode 100644
index 2a7fd72..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stacked_bar_chart.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h4v5h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12h4v8h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stacked_line_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/stacked_line_chart.xml
deleted file mode 100644
index e776269..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stacked_line_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19.99l7.5,-7.51l4,4l7.09,-7.97L22,9.92l-8.5,9.56l-4,-4l-6,6.01L2,19.99zM3.5,15.49l6,-6.01l4,4L22,3.92l-1.41,-1.41l-7.09,7.97l-4,-4L2,13.99L3.5,15.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stadium.xml b/compose/material/material/icons/generator/raw-icons/outlined/stadium.xml
deleted file mode 100644
index aa87e8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stadium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5L3,7V3L7,5zM18,3v4l4,-2L18,3zM11,2v4l4,-2L11,2zM13,18h-2l0,4c-5.05,-0.15 -9,-1.44 -9,-3v-9c0,-1.66 4.48,-3 10,-3s10,1.34 10,3v9c0,1.56 -3.95,2.85 -9,3L13,18zM5,10.04C6.38,10.53 8.77,11 12,11s5.62,-0.47 7,-0.96C19,9.86 16.22,9 12,9S5,9.86 5,10.04zM20,11.8c-1.82,0.73 -4.73,1.2 -8,1.2s-6.18,-0.47 -8,-1.2v6.78c0.61,0.41 2.36,1.01 5,1.28V16h6v3.86c2.64,-0.27 4.39,-0.87 5,-1.28V11.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stairs.xml b/compose/material/material/icons/generator/raw-icons/outlined/stairs.xml
deleted file mode 100644
index bf2138c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stairs.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3L19,3zM18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/star.xml b/compose/material/material/icons/generator/raw-icons/outlined/star.xml
deleted file mode 100644
index 5412e79..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/star.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/star_border.xml b/compose/material/material/icons/generator/raw-icons/outlined/star_border.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/star_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/star_border_purple500.xml b/compose/material/material/icons/generator/raw-icons/outlined/star_border_purple500.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/star_border_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/star_half.xml b/compose/material/material/icons/generator/raw-icons/outlined/star_half.xml
deleted file mode 100644
index 7ed1fda..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/star_half.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4V6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/star_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/star_outline.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/star_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/star_purple500.xml b/compose/material/material/icons/generator/raw-icons/outlined/star_purple500.xml
deleted file mode 100644
index 659416d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/star_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/star_rate.xml b/compose/material/material/icons/generator/raw-icons/outlined/star_rate.xml
deleted file mode 100644
index f044555..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/star_rate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89M12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35,-7.59L22,10h-7.58L12,2L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stars.xml b/compose/material/material/icons/generator/raw-icons/outlined/stars.xml
deleted file mode 100644
index 9197d3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stars.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM19.47,9.16l-5.01,-0.43 -2,-4.71c3.21,0.19 5.91,2.27 7.01,5.14zM14.4,15.42L12,13.98l-2.39,1.44 0.63,-2.72 -2.11,-1.83 2.78,-0.24L12,8.06l1.09,2.56 2.78,0.24 -2.11,1.83 0.64,2.73zM11.54,4.02l-2,4.72 -5.02,0.43c1.1,-2.88 3.8,-4.97 7.02,-5.15zM4,12c0,-0.64 0.08,-1.26 0.23,-1.86l3.79,3.28 -1.11,4.75C5.13,16.7 4,14.48 4,12zM7.84,18.82L12,16.31l4.16,2.5c-1.22,0.75 -2.64,1.19 -4.17,1.19 -1.52,0 -2.94,-0.44 -4.15,-1.18zM17.09,18.17l-1.11,-4.75 3.79,-3.28c0.14,0.59 0.23,1.22 0.23,1.86 0,2.48 -1.14,4.7 -2.91,6.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/start.xml b/compose/material/material/icons/generator/raw-icons/outlined/start.xml
deleted file mode 100644
index dcd56ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/start.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6,-6l-6,-6L14.59,7.41zM2,6v12h2V6H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stay_current_landscape.xml b/compose/material/material/icons/generator/raw-icons/outlined/stay_current_landscape.xml
deleted file mode 100644
index 798c036..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stay_current_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.01,7L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -1.99,0.9 -1.99,2zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stay_current_portrait.xml b/compose/material/material/icons/generator/raw-icons/outlined/stay_current_portrait.xml
deleted file mode 100644
index 7b9fc07..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stay_current_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stay_primary_landscape.xml b/compose/material/material/icons/generator/raw-icons/outlined/stay_primary_landscape.xml
deleted file mode 100644
index 798c036..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stay_primary_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.01,7L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -1.99,0.9 -1.99,2zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stay_primary_portrait.xml b/compose/material/material/icons/generator/raw-icons/outlined/stay_primary_portrait.xml
deleted file mode 100644
index 7b9fc07..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stay_primary_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sticky_note_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/sticky_note_2.xml
deleted file mode 100644
index 8e1a0ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sticky_note_2.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v9l-5,0l0,5H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h10l6,-6V5C21,3.9 20.1,3 19,3zM12,14H7v-2h5V14zM17,10H7V8h10V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stop.xml b/compose/material/material/icons/generator/raw-icons/outlined/stop.xml
deleted file mode 100644
index 9488029..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8v8H8V8h8m2,-2H6v12h12V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stop_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/stop_circle.xml
deleted file mode 100644
index efbbad5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stop_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20zM16,16H8V8h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stop_screen_share.xml b/compose/material/material/icons/generator/raw-icons/outlined/stop_screen_share.xml
deleted file mode 100644
index a414484..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stop_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.79,18l2,2L24,20v-2h-2.21zM1.11,2.98l1.55,1.56c-0.41,0.37 -0.66,0.89 -0.66,1.48L2,16c0,1.1 0.9,2 2.01,2L0,18v2h18.13l2.71,2.71 1.41,-1.41L2.52,1.57 1.11,2.98zM4,6.02h0.13l4.95,4.93C7.94,12.07 7.31,13.52 7,15c0.96,-1.29 2.13,-2.08 3.67,-2.46l3.46,3.48L4,16.02v-10zM20,6.02v10.19l1.3,1.3c0.42,-0.37 0.7,-0.89 0.7,-1.49v-10c0,-1.11 -0.9,-2 -2,-2L7.8,4.02l2,2L20,6.02zM12.93,9.15l2.79,2.78 1.28,-1.2L13,7v2.13l-0.07,0.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/storage.xml b/compose/material/material/icons/generator/raw-icons/outlined/storage.xml
deleted file mode 100644
index 5ca45e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v-4L2,16v4zM4,17h2v2L4,19v-2zM2,4v4h20L22,4L2,4zM6,7L4,7L4,5h2v2zM2,14h20v-4L2,10v4zM4,11h2v2L4,13v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/store.xml b/compose/material/material/icons/generator/raw-icons/outlined/store.xml
deleted file mode 100644
index a3c3b9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.36,9l0.6,3L5.04,12l0.6,-3h12.72M20,4L4,4v2h16L20,4zM20,7L4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1v-2l-1,-5zM6,18v-4h6v4L6,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/store_mall_directory.xml b/compose/material/material/icons/generator/raw-icons/outlined/store_mall_directory.xml
deleted file mode 100644
index a3c3b9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/store_mall_directory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.36,9l0.6,3L5.04,12l0.6,-3h12.72M20,4L4,4v2h16L20,4zM20,7L4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1v-2l-1,-5zM6,18v-4h6v4L6,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/storefront.xml b/compose/material/material/icons/generator/raw-icons/outlined/storefront.xml
deleted file mode 100644
index 6c9d94e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/storefront.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,8.89l-1.05,-4.37c-0.22,-0.9 -1,-1.52 -1.91,-1.52H5.05C4.15,3 3.36,3.63 3.15,4.52L2.1,8.89c-0.24,1.02 -0.02,2.06 0.62,2.88C2.8,11.88 2.91,11.96 3,12.06V19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6.94c0.09,-0.09 0.2,-0.18 0.28,-0.28C21.92,10.96 22.15,9.91 21.9,8.89zM18.91,4.99l1.05,4.37c0.1,0.42 0.01,0.84 -0.25,1.17C19.57,10.71 19.27,11 18.77,11c-0.61,0 -1.14,-0.49 -1.21,-1.14L16.98,5L18.91,4.99zM13,5h1.96l0.54,4.52c0.05,0.39 -0.07,0.78 -0.33,1.07C14.95,10.85 14.63,11 14.22,11C13.55,11 13,10.41 13,9.69V5zM8.49,9.52L9.04,5H11v4.69C11,10.41 10.45,11 9.71,11c-0.34,0 -0.65,-0.15 -0.89,-0.41C8.57,10.3 8.45,9.91 8.49,9.52zM4.04,9.36L5.05,5h1.97L6.44,9.86C6.36,10.51 5.84,11 5.23,11c-0.49,0 -0.8,-0.29 -0.93,-0.47C4.03,10.21 3.94,9.78 4.04,9.36zM5,19v-6.03C5.08,12.98 5.15,13 5.23,13c0.87,0 1.66,-0.36 2.24,-0.95c0.6,0.6 1.4,0.95 2.31,0.95c0.87,0 1.65,-0.36 2.23,-0.93c0.59,0.57 1.39,0.93 2.29,0.93c0.84,0 1.64,-0.35 2.24,-0.95c0.58,0.59 1.37,0.95 2.24,0.95c0.08,0 0.15,-0.02 0.23,-0.03V19H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/storm.xml b/compose/material/material/icons/generator/raw-icons/outlined/storm.xml
deleted file mode 100644
index 88f6d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/storm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.93,8C16.72,4.18 11.82,2.87 8,5.07c-1.41,0.82 -2.48,2 -3.16,3.37C4.71,6.24 5.06,4.04 5.86,2H3.74C2.2,6.49 2.52,11.58 5.07,16c1.1,1.91 2.88,3.19 4.86,3.72c1.98,0.53 4.16,0.31 6.07,-0.79c1.41,-0.82 2.48,-2 3.16,-3.37c0.13,2.2 -0.21,4.4 -1.01,6.44h2.11C21.79,17.51 21.48,12.42 18.93,8zM15,17.2c-2.87,1.65 -6.54,0.67 -8.2,-2.2c-0.11,-0.2 -0.21,-0.4 -0.3,-0.6C5.3,11.64 6.33,8.34 9,6.8c2.86,-1.65 6.54,-0.67 8.2,2.2c0.11,0.2 0.21,0.4 0.3,0.6C18.7,12.36 17.67,15.66 15,17.2zM12,10c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,10 12,10M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S14.21,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/straight.xml b/compose/material/material/icons/generator/raw-icons/outlined/straight.xml
deleted file mode 100644
index 8ae6ff1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/straight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.83l-1.59,1.58l-1.41,-1.41l4,-4l4,4l-1.41,1.41l-1.59,-1.58l0,14.17l-2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/straighten.xml b/compose/material/material/icons/generator/raw-icons/outlined/straighten.xml
deleted file mode 100644
index ec0052b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/straighten.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,8h2v4h2L7,8h2v4h2L11,8h2v4h2L15,8h2v4h2L19,8h2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stream.xml b/compose/material/material/icons/generator/raw-icons/outlined/stream.xml
deleted file mode 100644
index f748f56..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stream.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.943,8.619l4.404,-4.392l1.412,1.416l-4.404,4.392z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.32,9.68l0.31,0.32l1.42,-1.41l-4.02,-4.04l-0.01,0l-0.31,-0.32l-1.42,1.41l4.02,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,13.94l-1.41,1.41l3.99,4.01l0.35,0.35l1.42,-1.41l-3.99,-4.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.59,13.95l-4.03,4.01l-0.32,0.33l1.41,1.41l4.03,-4.02l0.33,-0.32z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/streetview.xml b/compose/material/material/icons/generator/raw-icons/outlined/streetview.xml
deleted file mode 100644
index 4085e83..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/streetview.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.56,14.33c-0.34,0.27 -0.56,0.7 -0.56,1.17V21h7c1.1,0 2,-0.9 2,-2v-5.98c-0.94,-0.33 -1.95,-0.52 -3,-0.52 -2.03,0 -3.93,0.7 -5.44,1.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6c0,-1.08 0.27,-2.1 0.74,-3H5c-1.1,0 -2,0.9 -2,2v14c0,0.55 0.23,1.05 0.59,1.41l9.82,-9.82C12.23,9.42 11.5,7.8 11.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/strikethrough_s.xml b/compose/material/material/icons/generator/raw-icons/outlined/strikethrough_s.xml
deleted file mode 100644
index 5d387c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/strikethrough_s.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.24,8.75c-0.26,-0.48 -0.39,-1.03 -0.39,-1.67 0,-0.61 0.13,-1.16 0.4,-1.67 0.26,-0.5 0.63,-0.93 1.11,-1.29 0.48,-0.35 1.05,-0.63 1.7,-0.83 0.66,-0.19 1.39,-0.29 2.18,-0.29 0.81,0 1.54,0.11 2.21,0.34 0.66,0.22 1.23,0.54 1.69,0.94 0.47,0.4 0.83,0.88 1.08,1.43s0.38,1.15 0.38,1.81h-3.01c0,-0.31 -0.05,-0.59 -0.15,-0.85 -0.09,-0.27 -0.24,-0.49 -0.44,-0.68 -0.2,-0.19 -0.45,-0.33 -0.75,-0.44 -0.3,-0.1 -0.66,-0.16 -1.06,-0.16 -0.39,0 -0.74,0.04 -1.03,0.13s-0.53,0.21 -0.72,0.36c-0.19,0.16 -0.34,0.34 -0.44,0.55 -0.1,0.21 -0.15,0.43 -0.15,0.66 0,0.48 0.25,0.88 0.74,1.21 0.38,0.25 0.77,0.48 1.41,0.7H7.39c-0.05,-0.08 -0.11,-0.17 -0.15,-0.25zM21,12v-2H3v2h9.62c0.18,0.07 0.4,0.14 0.55,0.2 0.37,0.17 0.66,0.34 0.87,0.51s0.35,0.36 0.43,0.57c0.07,0.2 0.11,0.43 0.11,0.69 0,0.23 -0.05,0.45 -0.14,0.66 -0.09,0.2 -0.23,0.38 -0.42,0.53 -0.19,0.15 -0.42,0.26 -0.71,0.35 -0.29,0.08 -0.63,0.13 -1.01,0.13 -0.43,0 -0.83,-0.04 -1.18,-0.13s-0.66,-0.23 -0.91,-0.42c-0.25,-0.19 -0.45,-0.44 -0.59,-0.75s-0.25,-0.76 -0.25,-1.21H6.4c0,0.55 0.08,1.13 0.24,1.58s0.37,0.85 0.65,1.21c0.28,0.35 0.6,0.66 0.98,0.92 0.37,0.26 0.78,0.48 1.22,0.65 0.44,0.17 0.9,0.3 1.38,0.39 0.48,0.08 0.96,0.13 1.44,0.13 0.8,0 1.53,-0.09 2.18,-0.28s1.21,-0.45 1.67,-0.79c0.46,-0.34 0.82,-0.77 1.07,-1.27s0.38,-1.07 0.38,-1.71c0,-0.6 -0.1,-1.14 -0.31,-1.61 -0.05,-0.11 -0.11,-0.23 -0.17,-0.33H21V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/stroller.xml b/compose/material/material/icons/generator/raw-icons/outlined/stroller.xml
deleted file mode 100644
index 9120ebe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/stroller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18,18.9 18,20zM6,18c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S7.1,18 6,18zM15,8.66L9.6,15H15V8.66M18.65,3C20.52,3 22,4.56 22,6.48V7h-2V6.48C20,5.66 19.42,5 18.65,5C17.97,5 17.58,5.59 17,6.27V15c0,1.1 -0.9,2 -2,2H7.43c-0.85,0 -1.31,-1 -0.76,-1.65l8.8,-10.32C16.11,4.27 16.99,3 18.65,3L18.65,3zM10,5C9.35,5 8.71,5.09 8.09,5.27l1.4,1.4l1.37,-1.61C10.58,5.02 10.29,5 10,5M10,3c1.56,0 3.03,0.4 4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64 8.03,3 10,3L10,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/style.xml b/compose/material/material/icons/generator/raw-icons/outlined/style.xml
deleted file mode 100644
index 13f0821..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/style.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.53,19.65l1.34,0.56v-9.03l-2.43,5.86c-0.41,1.02 0.08,2.19 1.09,2.61zM22.03,15.95L17.07,3.98c-0.31,-0.75 -1.04,-1.21 -1.81,-1.23 -0.26,0 -0.53,0.04 -0.79,0.15L7.1,5.95c-0.75,0.31 -1.21,1.03 -1.23,1.8 -0.01,0.27 0.04,0.54 0.15,0.8l4.96,11.97c0.31,0.76 1.05,1.22 1.83,1.23 0.26,0 0.52,-0.05 0.77,-0.15l7.36,-3.05c1.02,-0.42 1.51,-1.59 1.09,-2.6zM12.83,19.75L7.87,7.79l7.35,-3.04h0.01l4.95,11.95 -7.35,3.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.88,19.75c0,1.1 0.9,2 2,2h1.45l-3.45,-8.34v6.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subdirectory_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/subdirectory_arrow_left.xml
deleted file mode 100644
index d02c6f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subdirectory_arrow_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9l1.42,1.42L8.83,14H18V4h2v12H8.83l3.59,3.58L11,21l-6,-6 6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subdirectory_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/subdirectory_arrow_right.xml
deleted file mode 100644
index 64066a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subdirectory_arrow_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-6,6 -1.42,-1.42L15.17,16H4V4h2v10h9.17l-3.59,-3.58L13,9l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subject.xml b/compose/material/material/icons/generator/raw-icons/outlined/subject.xml
deleted file mode 100644
index 5e46992..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subject.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subscript.xml b/compose/material/material/icons/generator/raw-icons/outlined/subscript.xml
deleted file mode 100644
index ac0d19e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18h-2v1h3v1h-4v-2c0,-0.55 0.45,-1 1,-1h2v-1h-3v-1h3c0.55,0 1,0.45 1,1v1C23,17.55 22.55,18 22,18zM5.88,18h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subscriptions.xml b/compose/material/material/icons/generator/raw-icons/outlined/subscriptions.xml
deleted file mode 100644
index 5a6e561..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subscriptions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v2L4,8zM6,2h12v2L6,4zM20,10L4,10c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-8c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20v-8h16v8zM10,12.73v6.53L16,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subtitles.xml b/compose/material/material/icons/generator/raw-icons/outlined/subtitles.xml
deleted file mode 100644
index 757b30f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subtitles.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12zM6,10h2v2L6,12zM6,14h8v2L6,16zM16,14h2v2h-2zM10,10h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subtitles_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/subtitles_off.xml
deleted file mode 100644
index f42f1a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subtitles_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65 22,18.34 22,18V6C22,4.9 21.1,4 20,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10l-5.17,0l2,2l3.17,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.04,3.87l1.2,1.2C2.09,5.35 2,5.66 2,6v12c0,1.1 0.9,2 2,2h13.17l2.96,2.96l1.41,-1.41L2.45,2.45L1.04,3.87zM4,6.83L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/subway.xml b/compose/material/material/icons/generator/raw-icons/outlined/subway.xml
deleted file mode 100644
index 75c2ef3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/subway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.8,2.8C16,2.09 13.86,2 12,2s-4,0.09 -5.8,0.8C3.53,3.84 2,6.05 2,8.86L2,22h20L22,8.86c0,-2.81 -1.53,-5.02 -4.2,-6.06zM9.17,20l1.5,-1.5h2.66l1.5,1.5L9.17,20zM7.01,14L7.01,9h10v5h-10zM16.5,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1 0.45,-1 1,-1 1,0.45 1,1zM8.5,15c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,20h-3.5v-0.38l-1.15,-1.16c1.49,-0.17 2.65,-1.42 2.65,-2.96L18,9c0,-2.63 -3,-3 -6,-3s-6,0.37 -6,3v6.5c0,1.54 1.16,2.79 2.65,2.96L7.5,19.62L7.5,20L4,20L4,8.86c0,-2 1.01,-3.45 2.93,-4.2C8.41,4.08 10.32,4 12,4s3.59,0.08 5.07,0.66c1.92,0.75 2.93,2.2 2.93,4.2L20,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/summarize.xml b/compose/material/material/icons/generator/raw-icons/outlined/summarize.xml
deleted file mode 100644
index 2498188..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/summarize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3H5C3.9,3 3.01,3.9 3.01,5L3,19c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V9L15,3zM5,19V5h9v5h5v9H5zM9,8c0,0.55 -0.45,1 -1,1S7,8.55 7,8s0.45,-1 1,-1S9,7.45 9,8zM9,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S9,11.45 9,12zM9,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S9,15.45 9,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/superscript.xml b/compose/material/material/icons/generator/raw-icons/outlined/superscript.xml
deleted file mode 100644
index e3e4fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/superscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-2v1h3v1h-4V7c0,-0.55 0.45,-1 1,-1h2V5h-3V4h3c0.55,0 1,0.45 1,1v1C23,6.55 22.55,7 22,7zM5.88,20h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/supervised_user_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/supervised_user_circle.xml
deleted file mode 100644
index a389670..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/supervised_user_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,10c0,-1.65 -1.35,-3 -3,-3s-3,1.35 -3,3 1.35,3 3,3 3,-1.35 3,-3zM9.5,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM16,13c1.11,0 2,-0.89 2,-2 0,-1.11 -0.89,-2 -2,-2 -1.11,0 -2.01,0.89 -2,2 0,1.11 0.89,2 2,2zM11.99,2.01c-5.52,0 -10,4.48 -10,10s4.48,10 10,10 10,-4.48 10,-10 -4.48,-10 -10,-10zM5.84,17.12c0.68,-0.54 2.27,-1.11 3.66,-1.11 0.07,0 0.15,0.01 0.23,0.01 0.24,-0.64 0.67,-1.29 1.3,-1.86 -0.56,-0.1 -1.09,-0.16 -1.53,-0.16 -1.3,0 -3.39,0.45 -4.73,1.43 -0.5,-1.04 -0.78,-2.2 -0.78,-3.43 0,-4.41 3.59,-8 8,-8s8,3.59 8,8c0,1.2 -0.27,2.34 -0.75,3.37 -1,-0.59 -2.36,-0.87 -3.24,-0.87 -1.52,0 -4.5,0.81 -4.5,2.7v2.78c-2.27,-0.13 -4.29,-1.21 -5.66,-2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/supervisor_account.xml b/compose/material/material/icons/generator/raw-icons/outlined/supervisor_account.xml
deleted file mode 100644
index 448e832..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/supervisor_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM9.05,17L4.77,17c0.99,-0.5 2.7,-1 4.23,-1 0.11,0 0.23,0.01 0.34,0.01 0.34,-0.73 0.93,-1.33 1.64,-1.81 -0.73,-0.13 -1.42,-0.2 -1.98,-0.2 -2.34,0 -7,1.17 -7,3.5L2,19h7v-1.5c0,-0.17 0.02,-0.34 0.05,-0.5zM16.5,14.5c-1.84,0 -5.5,1.01 -5.5,3L11,19h11v-1.5c0,-1.99 -3.66,-3 -5.5,-3zM17.71,12.68c0.76,-0.43 1.29,-1.24 1.29,-2.18C19,9.12 17.88,8 16.5,8S14,9.12 14,10.5c0,0.94 0.53,1.75 1.29,2.18 0.36,0.2 0.77,0.32 1.21,0.32s0.85,-0.12 1.21,-0.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/support.xml b/compose/material/material/icons/generator/raw-icons/outlined/support.xml
deleted file mode 100644
index b9b10ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/support.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM19.46,9.12l-2.78,1.15c-0.51,-1.36 -1.58,-2.44 -2.95,-2.94l1.15,-2.78C16.98,5.35 18.65,7.02 19.46,9.12zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15zM9.13,4.54l1.17,2.78c-1.38,0.5 -2.47,1.59 -2.98,2.97L4.54,9.13C5.35,7.02 7.02,5.35 9.13,4.54zM4.54,14.87l2.78,-1.15c0.51,1.38 1.59,2.46 2.97,2.96l-1.17,2.78C7.02,18.65 5.35,16.98 4.54,14.87zM14.88,19.46l-1.15,-2.78c1.37,-0.51 2.45,-1.59 2.95,-2.97l2.78,1.17C18.65,16.98 16.98,18.65 14.88,19.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/support_agent.xml b/compose/material/material/icons/generator/raw-icons/outlined/support_agent.xml
deleted file mode 100644
index 4ba9636..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/support_agent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.22C21,6.73 16.74,3 12,3c-4.69,0 -9,3.65 -9,9.28C2.4,12.62 2,13.26 2,14v2c0,1.1 0.9,2 2,2h1v-6.1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7V19h-8v2h8c1.1,0 2,-0.9 2,-2v-1.22c0.59,-0.31 1,-0.92 1,-1.64v-2.3C22,13.14 21.59,12.53 21,12.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.03C17.52,8.18 15.04,6 12.05,6c-3.03,0 -6.29,2.51 -6.03,6.45c2.47,-1.01 4.33,-3.21 4.86,-5.89C12.19,9.19 14.88,11 18,11.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/surfing.xml b/compose/material/material/icons/generator/raw-icons/outlined/surfing.xml
deleted file mode 100644
index 9727e06..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/surfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM17,1.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S18.1,1.5 17,1.5zM14.43,8.48L12.18,10L16,13v3.84c0.53,0.38 1.03,0.78 1.49,1.17C16.81,18.59 15.94,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.33,0 -0.65,-0.05 -0.96,-0.14C5.19,16.9 3,14.72 3,13.28C3,12.25 4.01,12 4.85,12c0.98,0 2.28,0.31 3.7,0.83l-0.53,-3.1C7.91,9.06 8.2,8.35 8.8,7.94l2.15,-1.45l-2,-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03c0.45,0.09 0.93,0.37 1.22,0.89l0.88,1.55C17.01,8.98 18.64,10 20.5,10v2C17.91,12 15.64,10.58 14.43,8.48zM10.3,11.1l0.44,2.65c0.92,0.42 2.48,1.27 3.26,1.75V14L10.3,11.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/surround_sound.xml b/compose/material/material/icons/generator/raw-icons/outlined/surround_sound.xml
deleted file mode 100644
index 60efb05..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/surround_sound.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.29,15.71C7.27,14.69 6.75,13.35 6.75,12c0,-1.35 0.52,-2.69 1.53,-3.72L7.05,7.05C5.68,8.41 5,10.21 5,12s0.68,3.59 2.06,4.94L8.29,15.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15.5c1.93,0 3.5,-1.57 3.5,-3.5c0,-1.93 -1.57,-3.5 -3.5,-3.5c-1.93,0 -3.5,1.57 -3.5,3.5C8.5,13.93 10.07,15.5 12,15.5zM12,10.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5S11.17,10.5 12,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.72,15.72l1.23,1.23C18.32,15.59 19,13.79 19,12s-0.68,-3.59 -2.06,-4.94l-1.23,1.23c1.02,1.02 1.54,2.36 1.54,3.71C17.25,13.35 16.73,14.69 15.72,15.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swap_calls.xml b/compose/material/material/icons/generator/raw-icons/outlined/swap_calls.xml
deleted file mode 100644
index d6f085e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swap_calls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-4,4h3v7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8v7H2l4,4 4,-4H7V8c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v7c0,2.21 1.79,4 4,4s4,-1.79 4,-4V8h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swap_horiz.xml b/compose/material/material/icons/generator/raw-icons/outlined/swap_horiz.xml
deleted file mode 100644
index 7a7844d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swap_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.99,11L3,15l3.99,4v-3H14v-2H6.99v-3zM21,9l-3.99,-4v3H10v2h7.01v3L21,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swap_horizontal_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/swap_horizontal_circle.xml
deleted file mode 100644
index 0f3c907..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swap_horizontal_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15,6.5L15,9h-4v2h4v2.5l3.5,-3.5zM9,10.5L5.5,14 9,17.5L9,15h4v-2L9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swap_vert.xml b/compose/material/material/icons/generator/raw-icons/outlined/swap_vert.xml
deleted file mode 100644
index eaae79a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swap_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.01L16,10h-2v7.01h-3L15,21l4,-3.99h-3zM9,3L5,6.99h3L8,14h2L10,6.99h3L9,3zM16,17.01L16,10h-2v7.01h-3L15,21l4,-3.99h-3zM9,3L5,6.99h3L8,14h2L10,6.99h3L9,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swap_vertical_circle.xml b/compose/material/material/icons/generator/raw-icons/outlined/swap_vertical_circle.xml
deleted file mode 100644
index a0d06df..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swap_vertical_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM6.5,9L10,5.5 13.5,9L11,9v4L9,13L9,9zM17.5,15L14,18.5 10.5,15L13,15v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe.xml
deleted file mode 100644
index 8c757b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,2v2.02C18.18,2.13 15.22,1 12,1S5.82,2.13 3.5,4.02V2H2v3.5V7h1.5H7V5.5H4.09c2.11,-1.86 4.88,-3 7.91,-3s5.79,1.14 7.91,3H17V7h3.5H22V5.5V2H20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,13.77l-3.8,-1.67C14.96,12.04 14.81,12 14.65,12H14l0,-4.37c0,-1.32 -0.96,-2.5 -2.27,-2.62C10.25,4.88 9,6.05 9,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,17.22l5.12,5.19C9.49,22.79 10,23 10.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,15.03 19.68,14.17 18.89,13.77zM18,15.56L17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_down.xml
deleted file mode 100644
index 8c0bd0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.22,10l-4.15,0.01c-0.16,-0.01 -0.31,0.02 -0.45,0.08l-0.59,0.26L13.2,6.25c-0.56,-1.26 -2.04,-1.83 -3.3,-1.27s-1.83,2.04 -1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05 -0.99,0.27 -1.36,1.21L8,19.19l6.78,2.67c0.49,0.19 1.05,0.18 1.53,-0.04l5.99,-2.65c0.89,-0.4 1.37,-1.38 1.13,-2.32l-1.36,-5.34C21.85,10.65 21.1,10.04 20.22,10zM21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34zM3.8,12.18c-0.2,-0.86 -0.3,-1.76 -0.3,-2.68c0,-2.84 0.99,-5.45 2.63,-7.5L7.2,3.07C5.82,4.85 5,7.08 5,9.5c0,0.88 0.11,1.74 0.32,2.56l1.62,-1.62L8,11.5L4.5,15L1,11.5l1.06,-1.06L3.8,12.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_down_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_down_alt.xml
deleted file mode 100644
index da9d60b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.9c2.28,-0.46 4,-2.48 4,-4.9c0,-2.76 -2.24,-5 -5,-5S7,6.24 7,9c0,2.42 1.72,4.44 4,4.9v4.27l-1.59,-1.59L8,18l4,4l4,-4l-1.41,-1.41L13,18.17V13.9zM15,9c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,7.34 15,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_left.xml
deleted file mode 100644
index bac33be..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,13.77l-3.8,-1.67C14.96,12.04 14.81,12 14.65,12H14V7.5C14,6.12 12.88,5 11.5,5S9,6.12 9,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,17.22l5.12,5.19C9.49,22.79 10,23 10.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,15.03 19.68,14.17 18.89,13.77zM17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56L17.08,21zM4.09,5.5H7V7H2V2h1.5v2.02C5.82,2.13 8.78,1 12,1c5.49,0 9.27,3.12 10,6h-1.57C19.67,5.02 16.74,2.5 12,2.5C8.97,2.5 6.21,3.64 4.09,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_left_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_left_alt.xml
deleted file mode 100644
index b7029d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_left_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,13c0.46,2.28 2.48,4 4.9,4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5c-2.42,0 -4.44,1.72 -4.9,4H5.83l1.59,-1.59L6,8l-4,4l4,4l1.41,-1.41L5.83,13H10.1zM15,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S16.66,15 15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_right.xml
deleted file mode 100644
index 01a56c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,13.77l-3.8,-1.67C14.96,12.04 14.81,12 14.65,12H14V7.5C14,6.12 12.88,5 11.5,5S9,6.12 9,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,17.22l5.12,5.19C9.49,22.79 10,23 10.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,15.03 19.68,14.17 18.89,13.77zM17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56L17.08,21zM12,2.5C7.26,2.5 4.33,5.02 3.57,7H2c0.73,-2.88 4.51,-6 10,-6c3.22,0 6.18,1.13 8.5,3.02V2H22v5h-5V5.5h2.91C17.79,3.64 15.03,2.5 12,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_right_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_right_alt.xml
deleted file mode 100644
index 392293b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_right_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.9,11C13.44,8.72 11.42,7 9,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h4.27l-1.59,1.59L18,16l4,-4l-4,-4l-1.41,1.41L18.17,11H13.9zM9,9c1.66,0 3,1.34 3,3s-1.34,3 -3,3s-3,-1.34 -3,-3S7.34,9 9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_up.xml
deleted file mode 100644
index c30f6cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.22,10l-4.15,0.01c-0.16,-0.01 -0.31,0.02 -0.45,0.08l-0.59,0.26L13.2,6.25c-0.56,-1.26 -2.04,-1.83 -3.3,-1.27s-1.83,2.04 -1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05 -0.99,0.27 -1.36,1.21L8,19.19l6.78,2.67c0.49,0.19 1.05,0.18 1.53,-0.04l5.99,-2.65c0.89,-0.4 1.37,-1.38 1.13,-2.32l-1.36,-5.34C21.85,10.65 21.1,10.04 20.22,10zM21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34zM2.06,5.56L1,4.5L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76 5,5.62 5,6.5c0,2.42 0.82,4.65 2.2,6.43L6.13,14C4.49,11.95 3.5,9.34 3.5,6.5c0,-0.92 0.1,-1.82 0.3,-2.68L2.06,5.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_up_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_up_alt.xml
deleted file mode 100644
index d8cd2d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.59,1.59L16,6l-4,-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-2.42 -1.72,-4.44 -4,-4.9V5.83zM12,18c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/swipe_vertical.xml b/compose/material/material/icons/generator/raw-icons/outlined/swipe_vertical.xml
deleted file mode 100644
index 14f2e25..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/swipe_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,2h3.5H6v1.5V7H4.5V4.09c-1.86,2.11 -3,4.88 -3,7.91s1.14,5.79 3,7.91V17H6v3.5V22H4.5H1v-1.5h2.02C1.13,18.18 0,15.22 0,12s1.13,-6.18 3.02,-8.5H1V2zM20.22,10l-4.15,0.01c-0.16,-0.01 -0.31,0.02 -0.45,0.08l-0.59,0.26L13.2,6.25c-0.56,-1.26 -2.04,-1.83 -3.3,-1.27s-1.83,2.04 -1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05 -0.99,0.27 -1.36,1.21L8,19.19l6.78,2.67c0.49,0.19 1.05,0.18 1.53,-0.04l5.99,-2.65c0.89,-0.4 1.37,-1.38 1.13,-2.32l-1.36,-5.34C21.85,10.65 21.1,10.04 20.22,10zM21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/switch_access_shortcut.xml b/compose/material/material/icons/generator/raw-icons/outlined/switch_access_shortcut.xml
deleted file mode 100644
index 9a8bd21..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/switch_access_shortcut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-3.09 1.38,-5.94 3.44,-8L12,4V2h7v7h-2l0,-3.72c-1.8,1.74 -3,4.2 -3,6.72c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/switch_access_shortcut_add.xml b/compose/material/material/icons/generator/raw-icons/outlined/switch_access_shortcut_add.xml
deleted file mode 100644
index 729d070..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/switch_access_shortcut_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-3.09 1.38,-5.94 3.44,-8L12,4V2h7v7h-2l0,-3.72c-1.8,1.74 -3,4.2 -3,6.72c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12zM24,14h-2v-2h-2v2h-2v2h2v2h2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/switch_account.xml b/compose/material/material/icons/generator/raw-icons/outlined/switch_account.xml
deleted file mode 100644
index 6521c6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/switch_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6zM14,11c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C11,9.66 12.34,11 14,11zM14,7c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S13.45,7 14,7zM20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM10.69,16c0.95,-0.63 2.09,-1 3.31,-1s2.36,0.37 3.31,1H10.69zM20,15.73C18.53,14.06 16.4,13 14,13s-4.53,1.06 -6,2.73V4h12V15.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/switch_camera.xml b/compose/material/material/icons/generator/raw-icons/outlined/switch_camera.xml
deleted file mode 100644
index 1975eda..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/switch_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2H9L7.17,4H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2zM9.88,4h4.24l1.83,2H20v12H4V6h4.05"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11H9V8.5L5.5,12 9,15.5V13h6v2.5l3.5,-3.5L15,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/switch_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/switch_left.xml
deleted file mode 100644
index 613a9f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/switch_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,8.62v6.76L5.12,12L8.5,8.62M10,5l-7,7l7,7V5L10,5zM14,5v14l7,-7L14,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/switch_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/switch_right.xml
deleted file mode 100644
index 0d7b534..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/switch_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.38V8.62L18.88,12L15.5,15.38M14,19l7,-7l-7,-7V19L14,19zM10,19V5l-7,7L10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/switch_video.xml b/compose/material/material/icons/generator/raw-icons/outlined/switch_video.xml
deleted file mode 100644
index f012f94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/switch_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13h4v2l3,-3 -3,-3v2L8,11L8,9l-3,3 3,3zM18,9.5L18,6c0,-0.55 -0.45,-1 -1,-1L3,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-3.5l4,4v-13l-4,4zM16,17L4,17L4,7h12v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/synagogue.xml b/compose/material/material/icons/generator/raw-icons/outlined/synagogue.xml
deleted file mode 100644
index 8a6a85f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/synagogue.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4c-1.66,0 -3,1.34 -3,3v0.29L12,3L7,7.29V7c0,-1.66 -1.34,-3 -3,-3S1,5.34 1,7v14h10v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5h10V7C23,5.34 21.66,4 20,4zM20,6c0.55,0 1,0.45 1,1v1h-2V7C19,6.45 19.45,6 20,6zM4,6c0.55,0 1,0.45 1,1v1H3V7C3,6.45 3.45,6 4,6zM3,19v-9h2v9H3zM17,19h-2v-3c0,-1.65 -1.35,-3 -3,-3c-1.65,0 -3,1.35 -3,3v3H7V9.92l5,-4.29l5,4.29V19zM19,19v-9h2v9H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sync.xml b/compose/material/material/icons/generator/raw-icons/outlined/sync.xml
deleted file mode 100644
index c2f773a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,1L8,5l4,4L12,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46C19.54,15.03 20,13.57 20,12c0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.24,7.74C4.46,8.97 4,10.43 4,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sync_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/sync_alt.xml
deleted file mode 100644
index 07b1499..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sync_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,13.41l-1.41,-1.41l-4,4l4,4l1.41,-1.41l-1.58,-1.59l15.17,0l0,-2l-15.17,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,10.59l1.41,1.41l4,-4l-4,-4l-1.41,1.41l1.58,1.59l-15.17,0l0,2l15.17,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sync_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/sync_disabled.xml
deleted file mode 100644
index d6021bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sync_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6.35V4.26c-0.66,0.17 -1.29,0.43 -1.88,0.75l1.5,1.5c0.13,-0.05 0.25,-0.11 0.38,-0.16zM20,12c0,-2.21 -0.91,-4.2 -2.36,-5.64L20,4h-6v6l2.24,-2.24C17.32,8.85 18,10.34 18,12c0,0.85 -0.19,1.65 -0.51,2.38l1.5,1.5C19.63,14.74 20,13.41 20,12zM4.27,4L2.86,5.41l2.36,2.36C4.45,8.99 4,10.44 4,12c0,2.21 0.91,4.2 2.36,5.64L4,20h6v-6l-2.24,2.24C6.68,15.15 6,13.66 6,12c0,-1 0.25,-1.94 0.68,-2.77l8.08,8.08c-0.25,0.13 -0.5,0.24 -0.76,0.34v2.09c0.8,-0.21 1.55,-0.54 2.23,-0.96l2.58,2.58 1.41,-1.41L4.27,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sync_lock.xml b/compose/material/material/icons/generator/raw-icons/outlined/sync_lock.xml
deleted file mode 100644
index 1ea0e23..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sync_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,4h-6v6h2V7.56c1.22,1.1 2,2.67 2,4.44h2c0,-2.4 -1.06,-4.54 -2.73,-6H20V4zM20,17v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C21,17.45 20.55,17 20,17zM19,17h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/sync_problem.xml b/compose/material/material/icons/generator/raw-icons/outlined/sync_problem.xml
deleted file mode 100644
index bb6258a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/sync_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12c0,2.21 0.91,4.2 2.36,5.64L3,20h6v-6l-2.24,2.24C5.68,15.15 5,13.66 5,12c0,-2.61 1.67,-4.83 4,-5.65L9,4.26C5.55,5.15 3,8.27 3,12zM11,17h2v-2h-2v2zM21,4h-6v6l2.24,-2.24C18.32,8.85 19,10.34 19,12c0,2.61 -1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74 0,-2.21 -0.91,-4.2 -2.36,-5.64L21,4zM11,13h2L13,7h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/system_security_update.xml b/compose/material/material/icons/generator/raw-icons/outlined/system_security_update.xml
deleted file mode 100644
index 61933ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/system_security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM7,4V3h10v1H7zM16,12l-4,4l-4,-4l1.41,-1.41L11,12.17V8h2v4.17l1.59,-1.59L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/system_security_update_good.xml b/compose/material/material/icons/generator/raw-icons/outlined/system_security_update_good.xml
deleted file mode 100644
index d46fbc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/system_security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/system_security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/outlined/system_security_update_warning.xml
deleted file mode 100644
index 6022f5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/system_security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/system_update.xml b/compose/material/material/icons/generator/raw-icons/outlined/system_update.xml
deleted file mode 100644
index c6f3370..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/system_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/system_update_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/system_update_alt.xml
deleted file mode 100644
index e4ef53d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/system_update_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16l4,-4h-3L13,3h-2v9L8,12l4,4zM21,3h-6v1.99h6v14.03L3,19.02L3,4.99h6L9,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM12,16l4,-4h-3L13,3h-2v9L8,12l4,4zM21,3h-6v1.99h6v14.03L3,19.02L3,4.99h6L9,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tab.xml b/compose/material/material/icons/generator/raw-icons/outlined/tab.xml
deleted file mode 100644
index d8a1ee7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tab.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h10v4h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tab_unselected.xml b/compose/material/material/icons/generator/raw-icons/outlined/tab_unselected.xml
deleted file mode 100644
index 3266695..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tab_unselected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h2L3,7L1,7v2zM1,13h2v-2L1,11v2zM1,5h2L3,3c-1.1,0 -2,0.9 -2,2zM9,21h2v-2L9,19v2zM1,17h2v-2L1,15v2zM3,21v-2L1,19c0,1.1 0.9,2 2,2zM21,3h-8v6h10L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17h2v-2h-2v2zM9,5h2L11,3L9,3v2zM5,21h2v-2L5,19v2zM5,5h2L7,3L5,3v2zM21,21c1.1,0 2,-0.9 2,-2h-2v2zM21,13h2v-2h-2v2zM13,21h2v-2h-2v2zM17,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/table_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/table_bar.xml
deleted file mode 100644
index 584c963..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/table_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.5C22,5.57 17.52,4 12,4S2,5.57 2,7.5c0,1.81 3.95,3.31 9,3.48V15H9.35c-0.82,0 -1.55,0.5 -1.86,1.26L6,20h2l1.2,-3h5.6l1.2,3h2l-1.5,-3.74C16.2,15.5 15.46,15 14.65,15H13v-4.02C18.05,10.81 22,9.31 22,7.5zM12,6c4.05,0 6.74,0.86 7.72,1.5C18.74,8.14 16.05,9 12,9S5.26,8.14 4.28,7.5C5.26,6.86 7.95,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/table_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/table_chart.xml
deleted file mode 100644
index 2db13106..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/table_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h15c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,5v3L5,8L5,5h15zM15,19h-5v-9h5v9zM5,10h3v9L5,19v-9zM17,19v-9h3v9h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/table_restaurant.xml b/compose/material/material/icons/generator/raw-icons/outlined/table_restaurant.xml
deleted file mode 100644
index ddbaea4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/table_restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,9.73l-1.43,-5C20.41,4.3 20.02,4 19.57,4H4.43C3.98,4 3.59,4.3 3.47,4.73l-1.43,5C1.86,10.36 2.34,11 3,11h2.2L4,20h2l0.67,-5h10.67L18,20h2l-1.2,-9H21C21.66,11 22.14,10.36 21.96,9.73zM6.93,13l0.27,-2h9.6l0.27,2H6.93zM4.33,9l0.86,-3h13.63l0.86,3H4.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/table_rows.xml b/compose/material/material/icons/generator/raw-icons/outlined/table_rows.xml
deleted file mode 100644
index 2fd96bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/table_rows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,5v3H5V5H19zM19,10v4H5v-4H19zM5,19v-3h14v3H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/table_view.xml b/compose/material/material/icons/generator/raw-icons/outlined/table_view.xml
deleted file mode 100644
index 106b8a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/table_view.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H9C7.9,7 7,7.9 7,9v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,9v2H9V9H19zM13,15v-2h2v2H13zM15,17v2h-2v-2H15zM11,15H9v-2h2V15zM17,13h2v2h-2V13zM9,17h2v2H9V17zM17,19v-2h2v2H17zM6,17H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2v1h-2V5H5v10h1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tablet.xml b/compose/material/material/icons/generator/raw-icons/outlined/tablet.xml
deleted file mode 100644
index 66bb458..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tablet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 1.99,-0.9 1.99,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18L5,6h14v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tablet_android.xml b/compose/material/material/icons/generator/raw-icons/outlined/tablet_android.xml
deleted file mode 100644
index 4d3ab0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tablet_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,0L6,0C4.34,0 3,1.34 3,3v18c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3L21,3c0,-1.66 -1.34,-3 -3,-3zM14,22h-4v-1h4v1zM19.25,19L4.75,19L4.75,3h14.5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tablet_mac.xml b/compose/material/material/icons/generator/raw-icons/outlined/tablet_mac.xml
deleted file mode 100644
index 84c2007..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tablet_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,0h-14C3.12,0 2,1.12 2,2.5v19C2,22.88 3.12,24 4.5,24h14c1.38,0 2.5,-1.12 2.5,-2.5v-19C21,1.12 19.88,0 18.5,0zM11.5,23c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,19L4,19L4,3h15v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tag.xml b/compose/material/material/icons/generator/raw-icons/outlined/tag.xml
deleted file mode 100644
index bdc2232..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tag_faces.xml b/compose/material/material/icons/generator/raw-icons/outlined/tag_faces.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tag_faces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/takeout_dining.xml b/compose/material/material/icons/generator/raw-icons/outlined/takeout_dining.xml
deleted file mode 100644
index 9230cc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/takeout_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.79,18l-0.51,-7h9.46l-0.51,7H7.79zM9.83,5h4.33l2.8,2.73L16.87,9H7.12L7.03,7.73L9.83,5zM22,7.46l-1.41,-1.41L19,7.63l0.03,-0.56L14.98,3H9.02L4.97,7.07L5,7.57L3.41,6.01L2,7.44l3.23,3.11L5.93,20h12.14l0.7,-9.44L22,7.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tap_and_play.xml b/compose/material/material/icons/generator/raw-icons/outlined/tap_and_play.xml
deleted file mode 100644
index 8dd1722..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tap_and_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM2,20v3h3c0,-1.66 -1.34,-3 -3,-3zM2,12v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.92,-11 -11,-11zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v7.37c0.69,0.16 1.36,0.37 2,0.64L7,5h10v13h-3.03c0.52,1.25 0.84,2.59 0.95,4L17,22c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tapas.xml b/compose/material/material/icons/generator/raw-icons/outlined/tapas.xml
deleted file mode 100644
index ac07322..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tapas.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10V1h-8v9c0,1.86 1.28,3.41 3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41 22,11.86 22,10zM20,3v3h-4V3H20zM16,10V8h4v2c0,1.1 -0.9,2 -2,2S16,11.1 16,10zM10,9H8V8h2c1.38,0 2.5,-1.12 2.5,-2.5C12.5,4.12 11.38,3 10,3H8V1H6v2H4C2.62,3 1.5,4.12 1.5,5.5C1.5,6.88 2.62,8 4,8h2v1H4c-1.38,0 -2.5,1.12 -2.5,2.5C1.5,12.88 2.62,14 4,14h2v9h2v-9h2c1.38,0 2.5,-1.12 2.5,-2.5C12.5,10.12 11.38,9 10,9zM4,6C3.72,6 3.5,5.78 3.5,5.5S3.72,5 4,5h6c0.28,0 0.5,0.22 0.5,0.5S10.28,6 10,6H4zM10,12H4c-0.28,0 -0.5,-0.22 -0.5,-0.5S3.72,11 4,11h6c0.28,0 0.5,0.22 0.5,0.5S10.28,12 10,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/task.xml b/compose/material/material/icons/generator/raw-icons/outlined/task.xml
deleted file mode 100644
index 04bb267..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM18,20H6V4h7v5h5V20zM8.82,13.05L7.4,14.46L10.94,18l5.66,-5.66l-1.41,-1.41l-4.24,4.24L8.82,13.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/task_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/task_alt.xml
deleted file mode 100644
index 20fd5c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/task_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM19.79,10.22C19.92,10.79 20,11.39 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8c1.58,0 3.04,0.46 4.28,1.25l1.44,-1.44C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10c0,-1.19 -0.22,-2.33 -0.6,-3.39L19.79,10.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/taxi_alert.xml b/compose/material/material/icons/generator/raw-icons/outlined/taxi_alert.xml
deleted file mode 100644
index 817f71e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/taxi_alert.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13v5H4v-5H18c-1.91,0 -3.63,-0.76 -4.89,-2H4.81l1.04,-3h5.44C11.1,7.37 11,6.7 11,6s0.1,-1.37 0.29,-2H8v2H5.5C4.84,6 4.29,6.42 4.08,7.01L2,13v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-0.09,-0.27C19.3,12.9 18.66,13 18,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/temple_buddhist.xml b/compose/material/material/icons/generator/raw-icons/outlined/temple_buddhist.xml
deleted file mode 100644
index 597b7d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/temple_buddhist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9.02c0,1.09 -0.89,1.98 -1.98,1.98H18V8.86c1.72,-0.44 3,-1.99 3,-3.84V5l-2,0.02C19,6.11 18.11,7 17.02,7H16.5L12,1L7.5,7H6.98C5.89,7 5,6.11 5,5.02H3c0,1.86 1.28,3.4 3,3.84V11H4.98C3.89,11 3,10.11 3,9.02H1c0,1.86 1.28,3.4 3,3.84V22h7v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h7v-9.14c1.72,-0.44 3,-1.99 3,-3.84V9L21,9.02zM12,4.33L14,7h-4L12,4.33zM8,9h8v2H8V9zM18,20h-3v-2c0,-1.65 -1.35,-3 -3,-3c-1.65,0 -3,1.35 -3,3v2H6v-7h12V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/temple_hindu.xml b/compose/material/material/icons/generator/raw-icons/outlined/temple_hindu.xml
deleted file mode 100644
index d24f6002..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/temple_hindu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11v2h-2L15,3V1h-2v2h-2.03V1h-2v2.12L6,13H4v-2H2v11h9v-5h2v5h9V11H20zM15.31,11H8.69l0.6,-2h5.42L15.31,11zM14.11,7H9.89l0.6,-2h3.02L14.11,7zM20,20h-5v-5H9v5H4v-5h3.49l0.6,-2h7.82l0.6,2H20V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/terminal.xml b/compose/material/material/icons/generator/raw-icons/outlined/terminal.xml
deleted file mode 100644
index e03f112..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/terminal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2,4.9 2,6v12c0,1.1 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.11,4 20,4zM20,18H4V8h16V18zM18,17h-6v-2h6V17zM7.5,17l-1.41,-1.41L8.67,13l-2.59,-2.59L7.5,9l4,4L7.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/terrain.xml b/compose/material/material/icons/generator/raw-icons/outlined/terrain.xml
deleted file mode 100644
index 9496016..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/terrain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-4.22,5.63 1.25,1.67L14,9.33 19,16h-8.46l-4.01,-5.37L1,18h22L14,6zM5,16l1.52,-2.03L8.04,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_decrease.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_decrease.xml
deleted file mode 100644
index d62489b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_decrease.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.99,19h2.42l1.27,-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19zM5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41zM23,11v2h-8v-2H23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_fields.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_fields.xml
deleted file mode 100644
index f696c21..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_fields.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,4v3h5v12h3L10.5,7h5L15.5,4h-13zM21.5,9h-9v3h3v7h3v-7h3L21.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_format.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_format.xml
deleted file mode 100644
index 79b414c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_format.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17v2h14v-2L5,17zM9.5,12.8h5l0.9,2.2h2.1L12.75,4h-1.5L6.5,15h2.1l0.9,-2.2zM12,5.98L13.87,11h-3.74L12,5.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_increase.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_increase.xml
deleted file mode 100644
index 80ddd74..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_increase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.99,19h2.42l1.27,-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19zM5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41zM20,11h3v2h-3v3h-2v-3h-3v-2h3V8h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_rotate_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_rotate_up.xml
deleted file mode 100644
index 7c880d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_rotate_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-3,3h2v13h2L19,7h2l-3,-3zM11.8,15.5v-5l2.2,-0.9L14,7.5L3,12.25v1.5l11,4.75v-2.1l-2.2,-0.9zM4.98,13L10,11.13v3.74L4.98,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_rotate_vertical.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_rotate_vertical.xml
deleted file mode 100644
index 037c1a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_rotate_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.75,5h-1.5L9.5,16h2.1l0.9,-2.2h5l0.9,2.2h2.1L15.75,5zM13.13,12L15,6.98 16.87,12h-3.74zM6,20l3,-3L7,17L7,4L5,4v13L3,17l3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_angledown.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_angledown.xml
deleted file mode 100644
index 9c2835f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_angledown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21v-4.24l-1.41,1.41 -9.2,-9.19 -1.41,1.41 9.19,9.19L10.76,21L15,21zM11.25,8.48l3.54,3.54 -0.92,2.19 1.48,1.48 4.42,-11.14 -1.06,-1.05L7.57,7.92 9.06,9.4l2.19,-0.92zM17.84,5.43l-2.23,4.87 -2.64,-2.64 4.87,-2.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_angleup.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_angleup.xml
deleted file mode 100644
index 3690110..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_angleup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.76,9l1.41,1.41 -9.19,9.19 1.41,1.41 9.19,-9.19L21,13.24L21,9h-4.24zM8.48,12.75l3.54,-3.54 2.19,0.92 1.48,-1.48L4.56,4.23 3.5,5.29l4.42,11.14 1.48,-1.48 -0.92,-2.2zM7.66,11.03L5.43,6.16l4.87,2.23 -2.64,2.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_down.xml
deleted file mode 100644
index 060ea6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20l3,-3L7,17L7,4L5,4v13L3,17l3,3zM12.2,8.5v5l-2.2,0.9v2.1l11,-4.75v-1.5L10,5.5v2.1l2.2,0.9zM19.02,11L14,12.87L14,9.13L19.02,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_none.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_none.xml
deleted file mode 100644
index ad74a29..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_rotation_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18l-3,-3v2H5v2h13v2l3,-3zM9.5,11.8h5l0.9,2.2h2.1L12.75,3h-1.5L6.5,14h2.1l0.9,-2.2zM12,4.98L13.87,10h-3.74L12,4.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/text_snippet.xml b/compose/material/material/icons/generator/raw-icons/outlined/text_snippet.xml
deleted file mode 100644
index ae184c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/text_snippet.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5M14.17,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83C15.21,3.21 14.7,3 14.17,3L14.17,3zM7,15h10v2H7V15zM7,11h10v2H7V11zM7,7h7v2H7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/textsms.xml b/compose/material/material/icons/generator/raw-icons/outlined/textsms.xml
deleted file mode 100644
index 37c0b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/textsms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L6,16l-2,2L4,4h16v12zM7,9h2v2L7,11zM11,9h2v2h-2zM15,9h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/texture.xml b/compose/material/material/icons/generator/raw-icons/outlined/texture.xml
deleted file mode 100644
index b2741ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/texture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.51,3.08L3.08,19.51c0.09,0.34 0.27,0.65 0.51,0.9 0.25,0.24 0.56,0.42 0.9,0.51L20.93,4.49c-0.19,-0.69 -0.73,-1.23 -1.42,-1.41zM11.88,3L3,11.88v2.83L14.71,3h-2.83zM5,3c-1.1,0 -2,0.9 -2,2v2l4,-4L5,3zM19,21c0.55,0 1.05,-0.22 1.41,-0.59 0.37,-0.36 0.59,-0.86 0.59,-1.41v-2l-4,4h2zM9.29,21h2.83L21,12.12L21,9.29L9.29,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/theater_comedy.xml b/compose/material/material/icons/generator/raw-icons/outlined/theater_comedy.xml
deleted file mode 100644
index 38c3d94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/theater_comedy.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.99,9c-1.38,0 -2.5,0.84 -2.5,1.88h5C19.49,9.84 18.37,9 16.99,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,16c0,3.31 2.69,6 6,6s6,-2.69 6,-6V9H1V16zM3,11h8v5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2v5.5h2V4h8v5c0,2.21 -1.79,4 -4,4c-0.95,0 -1.81,-0.35 -2.5,-0.9v2.35C15.26,14.8 16.11,15 17,15c3.31,0 6,-2.69 6,-6V2H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17.88c1.38,0 2.5,-0.84 2.5,-1.88h-5C4.5,17.04 5.62,17.88 7,17.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/theaters.xml b/compose/material/material/icons/generator/raw-icons/outlined/theaters.xml
deleted file mode 100644
index 443fa77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/theaters.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2L20,3h-2zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM14,19h-4L10,5h4v14zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thermostat.xml b/compose/material/material/icons/generator/raw-icons/outlined/thermostat.xml
deleted file mode 100644
index b67ee87..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4 0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-1.63 -0.79,-3.09 -2,-4zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h-1v1h1v2h-1v1h1v2h-2L11,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thermostat_auto.xml b/compose/material/material/icons/generator/raw-icons/outlined/thermostat_auto.xml
deleted file mode 100644
index 67bbfed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thermostat_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12V6c0,-1.66 -1.34,-3 -3,-3S5,4.34 5,6v6c-1.21,0.91 -2,2.37 -2,4c0,1.12 0.38,2.14 1,2.97V19h0.02c0.91,1.21 2.35,2 3.98,2s3.06,-0.79 3.98,-2H12v-0.03c0.62,-0.83 1,-1.85 1,-2.97C13,14.37 12.21,12.91 11,12zM5,16c0,-0.94 0.45,-1.84 1.2,-2.4L7,13V6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v7l0.8,0.6c0.75,0.57 1.2,1.46 1.2,2.4H5zM18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22L18.62,4zM16.47,9.39l1.31,-3.72h0.08l1.31,3.72H16.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thumb_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/thumb_down.xml
deleted file mode 100644
index 4371d00..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thumb_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3L6,3c-0.83,0 -1.54,0.5 -1.84,1.22l-3.02,7.05c-0.09,0.23 -0.14,0.47 -0.14,0.73v2c0,1.1 0.9,2 2,2h6.31l-0.95,4.57 -0.03,0.32c0,0.41 0.17,0.79 0.44,1.06L9.83,23l6.59,-6.59c0.36,-0.36 0.58,-0.86 0.58,-1.41L17,5c0,-1.1 -0.9,-2 -2,-2zM15,15l-4.34,4.34L12,14L3,14v-2l3,-7h9v10zM19,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thumb_down_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/thumb_down_alt.xml
deleted file mode 100644
index b67859ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thumb_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3L6,3c-0.83,0 -1.54,0.5 -1.84,1.22l-3.02,7.05c-0.09,0.23 -0.14,0.47 -0.14,0.73v2c0,1.1 0.9,2 2,2h6.31l-0.95,4.57 -0.03,0.32c0,0.41 0.17,0.79 0.44,1.06L9.83,23l6.58,-6.59c0.37,-0.36 0.59,-0.86 0.59,-1.41L17,5c0,-1.1 -0.9,-2 -2,-2zM15,15l-4.34,4.34L11.77,14L3,14v-2l3,-7h9v10zM19,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thumb_down_off_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/thumb_down_off_alt.xml
deleted file mode 100644
index c6cee9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thumb_down_off_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3H6C5.17,3 4.46,3.5 4.16,4.22l-3.02,7.05C1.05,11.5 1,11.74 1,12v2c0,1.1 0.9,2 2,2h6.31l-0.95,4.57l-0.03,0.32c0,0.41 0.17,0.79 0.44,1.06L9.83,23l6.59,-6.59C16.78,16.05 17,15.55 17,15V5C17,3.9 16.1,3 15,3zM15,15l-4.34,4.34L12,14H3v-2l3,-7h9V15zM19,3h4v12h-4V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thumb_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/thumb_up.xml
deleted file mode 100644
index 17fccdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thumb_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,21h9c0.83,0 1.54,-0.5 1.84,-1.22l3.02,-7.05c0.09,-0.23 0.14,-0.47 0.14,-0.73v-2c0,-1.1 -0.9,-2 -2,-2h-6.31l0.95,-4.57 0.03,-0.32c0,-0.41 -0.17,-0.79 -0.44,-1.06L14.17,1 7.58,7.59C7.22,7.95 7,8.45 7,9v10c0,1.1 0.9,2 2,2zM9,9l4.34,-4.34L12,10h9v2l-3,7H9V9zM1,9h4v12H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thumb_up_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/thumb_up_alt.xml
deleted file mode 100644
index 7b8adde..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thumb_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8h-6.31l0.95,-4.57 0.03,-0.32c0,-0.41 -0.17,-0.79 -0.44,-1.06L14.17,1 7.59,7.59C7.22,7.95 7,8.45 7,9v10c0,1.1 0.9,2 2,2h9c0.83,0 1.54,-0.5 1.84,-1.22l3.02,-7.05c0.09,-0.23 0.14,-0.47 0.14,-0.73v-2c0,-1.1 -0.9,-2 -2,-2zM21,12l-3,7L9,19L9,9l4.34,-4.34L12.23,10L21,10v2zM1,9h4v12L1,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thumb_up_off_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/thumb_up_off_alt.xml
deleted file mode 100644
index 519db0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thumb_up_off_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,21h9c0.83,0 1.54,-0.5 1.84,-1.22l3.02,-7.05C22.95,12.5 23,12.26 23,12v-2c0,-1.1 -0.9,-2 -2,-2h-6.31l0.95,-4.57l0.03,-0.32c0,-0.41 -0.17,-0.79 -0.44,-1.06L14.17,1L7.58,7.59C7.22,7.95 7,8.45 7,9v10C7,20.1 7.9,21 9,21zM9,9l4.34,-4.34L12,10h9v2l-3,7H9V9zM1,9h4v12H1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thumbs_up_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/thumbs_up_down.xml
deleted file mode 100644
index 10241c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thumbs_up_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c0,-0.55 -0.45,-1 -1,-1L5.82,5l0.66,-3.18 0.02,-0.23c0,-0.31 -0.13,-0.59 -0.33,-0.8L5.38,0 0.44,4.94C0.17,5.21 0,5.59 0,6v6.5c0,0.83 0.67,1.5 1.5,1.5h6.75c0.62,0 1.15,-0.38 1.38,-0.91l2.26,-5.29c0.07,-0.17 0.11,-0.36 0.11,-0.55L12,6zM10,7.13L7.92,12L2,12L2,6.21l1.93,-1.93L3.36,7L10,7v0.13zM22.5,10h-6.75c-0.62,0 -1.15,0.38 -1.38,0.91l-2.26,5.29c-0.07,0.17 -0.11,0.36 -0.11,0.55L12,18c0,0.55 0.45,1 1,1h5.18l-0.66,3.18 -0.02,0.24c0,0.31 0.13,0.59 0.33,0.8l0.79,0.78 4.94,-4.94c0.27,-0.27 0.44,-0.65 0.44,-1.06v-6.5c0,-0.83 -0.67,-1.5 -1.5,-1.5zM22,17.79l-1.93,1.93 0.57,-2.72L14,17v-0.13L16.08,12L22,12v5.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/thunderstorm.xml b/compose/material/material/icons/generator/raw-icons/outlined/thunderstorm.xml
deleted file mode 100644
index c70351f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/thunderstorm.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,7.02C17.45,4.18 14.97,2 12,2C9.82,2 7.83,3.18 6.78,5.06C4.09,5.41 2,7.74 2,10.5C2,13.53 4.47,16 7.5,16h10c2.48,0 4.5,-2.02 4.5,-4.5C22,9.16 20.21,7.23 17.92,7.02zM17.5,14h-10C5.57,14 4,12.43 4,10.5c0,-1.74 1.31,-3.23 3.04,-3.46l0.99,-0.13l0.49,-0.87C9.23,4.78 10.56,4 12,4c1.94,0 3.63,1.44 3.95,3.35l0.25,1.52l1.54,0.14C19.01,9.13 20,10.22 20,11.5C20,12.88 18.88,14 17.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/time_to_leave.xml b/compose/material/material/icons/generator/raw-icons/outlined/time_to_leave.xml
deleted file mode 100644
index 9d9c83b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/time_to_leave.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,11v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,6h10.29l1.04,3H5.81l1.04,-3zM19,16H5v-4.66l0.12,-0.34h13.77l0.11,0.34V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timelapse.xml b/compose/material/material/icons/generator/raw-icons/outlined/timelapse.xml
deleted file mode 100644
index dccb081..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timelapse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,7.75c-1.17,-1.17 -2.7,-1.76 -4.24,-1.76v6l-4.24,4.24c2.34,2.34 6.14,2.34 8.49,0 2.34,-2.34 2.34,-6.14 -0.01,-8.48zM12,1.99c-5.52,0 -10,4.48 -10,10s4.48,10 10,10 10,-4.48 10,-10 -4.48,-10 -10,-10zM12,19.99c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timeline.xml b/compose/material/material/icons/generator/raw-icons/outlined/timeline.xml
deleted file mode 100644
index 978339f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8c0,1.1 -0.9,2 -2,2c-0.18,0 -0.35,-0.02 -0.51,-0.07l-3.56,3.55C16.98,13.64 17,13.82 17,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.18 0.02,-0.36 0.07,-0.52l-2.55,-2.55C10.36,10.98 10.18,11 10,11c-0.18,0 -0.36,-0.02 -0.52,-0.07l-4.55,4.56C4.98,15.65 5,15.82 5,16c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.18,0 0.35,0.02 0.51,0.07l4.56,-4.55C8.02,9.36 8,9.18 8,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,0.18 -0.02,0.36 -0.07,0.52l2.55,2.55C14.64,12.02 14.82,12 15,12c0.18,0 0.36,0.02 0.52,0.07l3.55,-3.56C19.02,8.35 19,8.18 19,8c0,-1.1 0.9,-2 2,-2S23,6.9 23,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timer.xml b/compose/material/material/icons/generator/raw-icons/outlined/timer.xml
deleted file mode 100644
index 0880d77..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,1H9v2h6V1zM11,14h2V8h-2V14zM19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9s9,-4.03 9,-9C21,10.88 20.26,8.93 19.03,7.39zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7s7,3.13 7,7S15.87,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timer_10.xml b/compose/material/material/icons/generator/raw-icons/outlined/timer_10.xml
deleted file mode 100644
index d707d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timer_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M-0.01,7.72L-0.01,9.4l3,-1L2.99,18h2L4.99,6h-0.25L-0.01,7.72zM23.77,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25s-0.23,-0.19 -0.28,-0.3c-0.05,-0.11 -0.08,-0.24 -0.08,-0.39 0,-0.14 0.03,-0.28 0.09,-0.41s0.15,-0.25 0.27,-0.34c0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11s0.35,0.17 0.48,0.29 0.22,0.26 0.29,0.42c0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09s-0.39,-0.63 -0.69,-0.88c-0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21s-0.77,0.33 -1.06,0.57c-0.29,0.24 -0.51,0.52 -0.67,0.84 -0.16,0.32 -0.23,0.65 -0.23,1.01s0.08,0.69 0.23,0.96c0.15,0.28 0.36,0.52 0.64,0.73 0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77s-0.66,0.29 -1.17,0.29c-0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05s0.39,0.65 0.7,0.93c0.31,0.27 0.69,0.49 1.15,0.66s0.98,0.25 1.58,0.25c0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02zM13.81,7.05c-0.34,-0.4 -0.75,-0.7 -1.23,-0.88 -0.47,-0.18 -1.01,-0.27 -1.59,-0.27s-1.11,0.09 -1.59,0.27c-0.48,0.18 -0.89,0.47 -1.23,0.88 -0.34,0.41 -0.6,0.93 -0.79,1.59 -0.18,0.65 -0.28,1.45 -0.28,2.39v1.92c0,0.94 0.09,1.74 0.28,2.39 0.19,0.66 0.45,1.19 0.8,1.6 0.34,0.41 0.75,0.71 1.23,0.89s1.01,0.28 1.59,0.28c0.59,0 1.12,-0.09 1.59,-0.28 0.48,-0.18 0.88,-0.48 1.22,-0.89s0.6,-0.94 0.78,-1.6c0.18,-0.65 0.28,-1.45 0.28,-2.39v-1.92c0,-0.94 -0.09,-1.74 -0.28,-2.39 -0.18,-0.66 -0.44,-1.19 -0.78,-1.59zM12.89,13.22c0,0.6 -0.04,1.11 -0.12,1.53s-0.2,0.76 -0.36,1.02c-0.16,0.26 -0.36,0.45 -0.59,0.57 -0.23,0.12 -0.51,0.18 -0.82,0.18 -0.3,0 -0.58,-0.06 -0.82,-0.18s-0.44,-0.31 -0.6,-0.57c-0.16,-0.26 -0.29,-0.6 -0.38,-1.02s-0.13,-0.93 -0.13,-1.53v-2.5c0,-0.6 0.04,-1.11 0.13,-1.52s0.21,-0.74 0.38,-1c0.16,-0.25 0.36,-0.43 0.6,-0.55 0.24,-0.11 0.51,-0.17 0.81,-0.17 0.31,0 0.58,0.06 0.81,0.17 0.24,0.11 0.44,0.29 0.6,0.55 0.16,0.25 0.29,0.58 0.37,0.99s0.13,0.92 0.13,1.52v2.51h-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timer_10_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/timer_10_select.xml
deleted file mode 100644
index ca5d11a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timer_10_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8v8h-3V8H13M13,5h-3C8.34,5 7,6.34 7,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3V8C16,6.34 14.66,5 13,5zM1,8h2v11h3V5H1V8zM18.5,11c-0.83,0 -1.5,0.68 -1.5,1.5v2c0,0.82 0.67,1.5 1.5,1.5H21v1h-4v2h4.5c0.83,0 1.5,-0.67 1.5,-1.5v-2c0,-0.83 -0.67,-1.5 -1.5,-1.5H19v-1h4v-2H18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timer_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/timer_3.xml
deleted file mode 100644
index 215e2d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timer_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.61,12.97c-0.16,-0.24 -0.36,-0.46 -0.62,-0.65 -0.25,-0.19 -0.56,-0.35 -0.93,-0.48 0.3,-0.14 0.57,-0.3 0.8,-0.5 0.23,-0.2 0.42,-0.41 0.57,-0.64 0.15,-0.23 0.27,-0.46 0.34,-0.71 0.08,-0.24 0.11,-0.49 0.11,-0.73 0,-0.55 -0.09,-1.04 -0.28,-1.46 -0.18,-0.42 -0.44,-0.77 -0.78,-1.06 -0.33,-0.28 -0.73,-0.5 -1.2,-0.64 -0.45,-0.13 -0.97,-0.2 -1.53,-0.2 -0.55,0 -1.06,0.08 -1.52,0.24 -0.47,0.17 -0.87,0.4 -1.2,0.69 -0.33,0.29 -0.6,0.63 -0.78,1.03 -0.2,0.39 -0.29,0.83 -0.29,1.29h1.98c0,-0.26 0.05,-0.49 0.14,-0.69 0.09,-0.2 0.22,-0.38 0.38,-0.52 0.17,-0.14 0.36,-0.25 0.58,-0.33s0.46,-0.12 0.73,-0.12c0.61,0 1.06,0.16 1.36,0.47 0.3,0.31 0.44,0.75 0.44,1.32 0,0.27 -0.04,0.52 -0.12,0.74 -0.08,0.22 -0.21,0.41 -0.38,0.57s-0.38,0.28 -0.63,0.37 -0.55,0.13 -0.89,0.13L6.72,11.09v1.57L7.9,12.66c0.34,0 0.64,0.04 0.91,0.11 0.27,0.08 0.5,0.19 0.69,0.35 0.19,0.16 0.34,0.36 0.44,0.61 0.1,0.24 0.16,0.54 0.16,0.87 0,0.62 -0.18,1.09 -0.53,1.42 -0.35,0.33 -0.84,0.49 -1.45,0.49 -0.29,0 -0.56,-0.04 -0.8,-0.13 -0.24,-0.08 -0.44,-0.2 -0.61,-0.36s-0.3,-0.34 -0.39,-0.56c-0.09,-0.22 -0.14,-0.46 -0.14,-0.72L4.19,14.74c0,0.55 0.11,1.03 0.32,1.45 0.21,0.42 0.5,0.77 0.86,1.05s0.77,0.49 1.24,0.63 0.96,0.21 1.48,0.21c0.57,0 1.09,-0.08 1.58,-0.23s0.91,-0.38 1.26,-0.68c0.36,-0.3 0.64,-0.66 0.84,-1.1 0.2,-0.43 0.3,-0.93 0.3,-1.48 0,-0.29 -0.04,-0.58 -0.11,-0.86 -0.08,-0.25 -0.19,-0.51 -0.35,-0.76zM20.87,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25s-0.23,-0.19 -0.28,-0.3c-0.05,-0.11 -0.08,-0.24 -0.08,-0.39s0.03,-0.28 0.09,-0.41 0.15,-0.25 0.27,-0.34c0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11s0.35,0.17 0.48,0.29 0.22,0.26 0.29,0.42c0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09s-0.39,-0.63 -0.69,-0.88c-0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21s-0.77,0.33 -1.06,0.57c-0.29,0.24 -0.51,0.52 -0.67,0.84s-0.23,0.65 -0.23,1.01 0.08,0.68 0.23,0.96 0.37,0.52 0.64,0.73c0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77s-0.66,0.29 -1.17,0.29c-0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05s0.39,0.65 0.7,0.93c0.31,0.27 0.69,0.49 1.15,0.66 0.46,0.17 0.98,0.25 1.58,0.25 0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timer_3_select.xml b/compose/material/material/icons/generator/raw-icons/outlined/timer_3_select.xml
deleted file mode 100644
index c0dbfffe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timer_3_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11v2h-4v1h2.5c0.83,0 1.5,0.68 1.5,1.5v2c0,0.83 -0.67,1.5 -1.5,1.5H15v-2h4v-1h-2.5c-0.82,0 -1.5,-0.68 -1.5,-1.5v-2c0,-0.82 0.68,-1.5 1.5,-1.5H21zM4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/timer_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/timer_off.xml
deleted file mode 100644
index 60b7fa7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/timer_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,1h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c3.87,0 7,3.13 7,7c0,0.94 -0.19,1.83 -0.52,2.65l1.5,1.5C20.63,15.91 21,14.5 21,13c0,-2.12 -0.74,-4.07 -1.97,-5.61l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-1.5,0 -2.91,0.37 -4.15,1.02l1.5,1.5C10.17,6.19 11.06,6 12,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17l2,2l0,-2.17l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12 3,10.98 3,13c0,4.97 4.02,9 9,9c2.02,0 3.88,-0.67 5.38,-1.79l2.4,2.4l1.41,-1.41L2.81,2.81zM12,20c-3.87,0 -7,-3.13 -7,-7c0,-1.47 0.45,-2.83 1.22,-3.95l9.73,9.73C14.83,19.55 13.47,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tips_and_updates.xml b/compose/material/material/icons/generator/raw-icons/outlined/tips_and_updates.xml
deleted file mode 100644
index db5f8c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tips_and_updates.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h4c0,1.1 -0.9,2 -2,2S7,21.1 7,20zM5,19h8v-2H5V19zM16.5,9.5c0,3.82 -2.66,5.86 -3.77,6.5H5.27C4.16,15.36 1.5,13.32 1.5,9.5C1.5,5.36 4.86,2 9,2S16.5,5.36 16.5,9.5zM14.5,9.5C14.5,6.47 12.03,4 9,4S3.5,6.47 3.5,9.5c0,2.47 1.49,3.89 2.35,4.5h6.3C13.01,13.39 14.5,11.97 14.5,9.5zM21.37,7.37L20,8l1.37,0.63L22,10l0.63,-1.37L24,8l-1.37,-0.63L22,6L21.37,7.37zM19,6l0.94,-2.06L22,3l-2.06,-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tire_repair.xml b/compose/material/material/icons/generator/raw-icons/outlined/tire_repair.xml
deleted file mode 100644
index 1869178..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tire_repair.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8c-0.55,0 -1,-0.45 -1,-1c0,-0.28 0.11,-0.53 0.29,-0.71c0.4,-0.4 2.46,-1.04 2.46,-1.04s-0.64,2.06 -1.04,2.46C19.53,7.89 19.28,8 19,8zM20,13v5c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2v8.17c0.31,-0.11 0.65,-0.17 1,-0.17c1.65,0 3,1.35 3,3v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5h-1l0,-1.42c-1.77,-0.77 -3,-2.53 -3,-4.58c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.05 -1.23,3.81 -3,4.58L21,13H20zM22,7c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3S22,8.66 22,7zM10,7L8,9V6.17L9.17,5H4.83L6,6.17V9L4,7v2.17l2,2V14l-2,-2v2.17l2,2V19l-2,-2v2h6v-2l-2,2v-2.83l2,-2V12l-2,2v-2.83l2,-2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/title.xml b/compose/material/material/icons/generator/raw-icons/outlined/title.xml
deleted file mode 100644
index 0e23a54..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/title.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4v3h5.5v12h3V7H19V4H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/toc.xml b/compose/material/material/icons/generator/raw-icons/outlined/toc.xml
deleted file mode 100644
index e76ad31..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/toc.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h14L17,7L3,7v2zM3,13h14v-2L3,11v2zM3,17h14v-2L3,15v2zM19,17h2v-2h-2v2zM19,7v2h2L21,7h-2zM19,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/today.xml b/compose/material/material/icons/generator/raw-icons/outlined/today.xml
deleted file mode 100644
index e7a805f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM19,7L5,7L5,5h14v2zM7,11h5v5L7,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/toggle_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/toggle_off.xml
deleted file mode 100644
index 7b0bffb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6L7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6h10c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM17,16L7,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h10c2.21,0 4,1.79 4,4s-1.79,4 -4,4zM7,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/toggle_on.xml b/compose/material/material/icons/generator/raw-icons/outlined/toggle_on.xml
deleted file mode 100644
index bd314ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/toggle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6L7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6h10c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM17,16L7,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h10c2.21,0 4,1.79 4,4s-1.79,4 -4,4zM17,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/token.xml b/compose/material/material/icons/generator/raw-icons/outlined/token.xml
deleted file mode 100644
index 83d4c7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/token.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7l-9,-5L3,7v10l9,5l9,-5L21,7zM12,4.29l5.91,3.28L14.9,9.24C14.17,8.48 13.14,8 12,8S9.83,8.48 9.1,9.24L6.09,7.57L12,4.29zM11,19.16l-6,-3.33V9.26l3.13,1.74C8.04,11.31 8,11.65 8,12c0,1.86 1.27,3.43 3,3.87V19.16zM10,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,13.1 10,12zM13,19.16v-3.28c1.73,-0.44 3,-2.01 3,-3.87c0,-0.35 -0.04,-0.69 -0.13,-1.01L19,9.26l0,6.57L13,19.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/toll.xml b/compose/material/material/icons/generator/raw-icons/outlined/toll.xml
deleted file mode 100644
index 306c60c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/toll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM3,12c0,-2.61 1.67,-4.83 4,-5.65L7,4.26C3.55,5.15 1,8.27 1,12s2.55,6.85 6,7.74v-2.09c-2.33,-0.82 -4,-3.04 -4,-5.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tonality.xml b/compose/material/material/icons/generator/raw-icons/outlined/tonality.xml
deleted file mode 100644
index 5b331db..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tonality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.94,-0.49 -7,-3.85 -7,-7.93s3.05,-7.44 7,-7.93v15.86zM13,4.07c1.03,0.13 2,0.45 2.87,0.93L13,5v-0.93zM13,7h5.24c0.25,0.31 0.48,0.65 0.68,1L13,8L13,7zM13,10h6.74c0.08,0.33 0.15,0.66 0.19,1L13,11v-1zM13,19.93L13,19h2.87c-0.87,0.48 -1.84,0.8 -2.87,0.93zM18.24,17L13,17v-1h5.92c-0.2,0.35 -0.43,0.69 -0.68,1zM19.74,14L13,14v-1h6.93c-0.04,0.34 -0.11,0.67 -0.19,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/topic.xml b/compose/material/material/icons/generator/raw-icons/outlined/topic.xml
deleted file mode 100644
index 74205f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/topic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16.77c0.68,0 1.23,-0.56 1.23,-1.23V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18zM18,12H6v-2h12V12zM14,16H6v-2h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tornado.xml b/compose/material/material/icons/generator/raw-icons/outlined/tornado.xml
deleted file mode 100644
index 6b9fead..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tornado.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3H1l11,19L23,3zM19.53,5l-1.74,3H6.21L4.47,5H19.53zM10.26,15h3.48L12,18.01L10.26,15zM14.9,13H9.1l-1.74,-3h9.27L14.9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/touch_app.xml b/compose/material/material/icons/generator/raw-icons/outlined/touch_app.xml
deleted file mode 100644
index ff42cba..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/touch_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.19,12.44l-3.24,-1.62c1.29,-1 2.12,-2.56 2.12,-4.32c0,-3.03 -2.47,-5.5 -5.5,-5.5s-5.5,2.47 -5.5,5.5c0,2.13 1.22,3.98 3,4.89v3.26c-2.15,-0.46 -2.02,-0.44 -2.26,-0.44c-0.53,0 -1.03,0.21 -1.41,0.59L4,16.22l5.09,5.09C9.52,21.75 10.12,22 10.74,22h6.3c0.98,0 1.81,-0.7 1.97,-1.67l0.8,-4.71C20.03,14.32 19.38,13.04 18.19,12.44zM17.84,15.29L17.04,20h-6.3c-0.09,0 -0.17,-0.04 -0.24,-0.1l-3.68,-3.68l4.25,0.89V6.5c0,-0.28 0.22,-0.5 0.5,-0.5c0.28,0 0.5,0.22 0.5,0.5v6h1.76l3.46,1.73C17.69,14.43 17.91,14.86 17.84,15.29zM8.07,6.5c0,-1.93 1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5c0,0.95 -0.38,1.81 -1,2.44V6.5c0,-1.38 -1.12,-2.5 -2.5,-2.5c-1.38,0 -2.5,1.12 -2.5,2.5v2.44C8.45,8.31 8.07,7.45 8.07,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tour.xml b/compose/material/material/icons/generator/raw-icons/outlined/tour.xml
deleted file mode 100644
index ea2683c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tour.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2,-5L21,4zM17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74zM14,9c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S14,7.9 14,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/toys.xml b/compose/material/material/icons/generator/raw-icons/outlined/toys.xml
deleted file mode 100644
index 54497a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/toys.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.75,10.08L17.4,6.05C17,4.82 15.85,4 14.56,4H9.44C8.15,4 7,4.82 6.6,6.05L5.81,8.4L4.41,7l0.29,-0.29c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2,2c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L3,8.41l1.79,1.79C3.18,10.72 2,12.22 2,14c0,1.49 0.83,2.78 2.05,3.47C4.27,18.9 5.51,20 7,20c1.3,0 2.4,-0.84 2.82,-2h4.37c0.41,1.16 1.51,2 2.82,2c1.49,0 2.73,-1.1 2.95,-2.53C21.17,16.78 22,15.49 22,14C22,12.05 20.6,10.43 18.75,10.08zM13,6h1.56c0.43,0 0.81,0.27 0.95,0.68L16.61,10H13V6zM8.49,6.68C8.63,6.27 9.01,6 9.44,6H11v4H7.41L7.39,9.98L8.49,6.68zM7,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,18 7,18zM17,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,18 17,18zM19.49,15.32C18.95,14.53 18.03,14 17,14c-1.3,0 -2.4,0.84 -2.82,2H9.82C9.4,14.84 8.3,14 7,14c-1.03,0 -1.95,0.53 -2.49,1.32C4.2,14.97 4,14.51 4,14c0,-1.1 0.9,-2 2,-2h12c1.1,0 2,0.9 2,2C20,14.51 19.8,14.97 19.49,15.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/track_changes.xml b/compose/material/material/icons/generator/raw-icons/outlined/track_changes.xml
deleted file mode 100644
index 0909be1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/track_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.07,4.93l-1.41,1.41C19.1,7.79 20,9.79 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.08 3.05,-7.44 7,-7.93v2.02C8.16,6.57 6,9.03 6,12c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.41,1.41C15.55,9.9 16,10.9 16,12c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4c0,-1.86 1.28,-3.41 3,-3.86v2.14c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72V2h-1C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10c0,-2.76 -1.12,-5.26 -2.93,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/traffic.xml b/compose/material/material/icons/generator/raw-icons/outlined/traffic.xml
deleted file mode 100644
index bae7c55..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/traffic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h-3L17,8.86c1.72,-0.45 3,-2 3,-3.86h-3L17,4c0,-0.55 -0.45,-1 -1,-1L8,3c-0.55,0 -1,0.45 -1,1v1L4,5c0,1.86 1.28,3.41 3,3.86L7,10L4,10c0,1.86 1.28,3.41 3,3.86L7,15L4,15c0,1.86 1.28,3.41 3,3.86L7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-1.14c1.72,-0.45 3,-2 3,-3.86h-3v-1.14c1.72,-0.45 3,-2 3,-3.86zM15,19L9,19L9,5h6v14zM12,18c0.83,0 1.5,-0.67 1.5,-1.5S12.83,15 12,15s-1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM12,13.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM12,9c0.83,0 1.5,-0.67 1.5,-1.5S12.83,6 12,6s-1.5,0.67 -1.5,1.5S11.17,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/train.xml b/compose/material/material/icons/generator/raw-icons/outlined/train.xml
deleted file mode 100644
index 86148f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/train.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h2l2,-2h4l2,2h2v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -4,-4 -8,-4zM12,4c3.51,0 4.96,0.48 5.57,1L6.43,5c0.61,-0.52 2.06,-1 5.57,-1zM6,7h5v3L6,10L6,7zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12h12v3.5zM18,10h-5L13,7h5v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tram.xml b/compose/material/material/icons/generator/raw-icons/outlined/tram.xml
deleted file mode 100644
index 1eeb23b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tram.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5l0.75,-1.5L17,3.5L17,2L7,2v1.5h4.75L11,5c-3.13,0.09 -6,0.73 -6,3.5L5,17c0,1.5 1.11,2.73 2.55,2.95L6,21.5v0.5h2l2,-2h4l2,2h2v-0.5l-1.55,-1.55h-0.01,0.01C17.89,19.73 19,18.5 19,17L19,8.5c0,-2.77 -2.87,-3.41 -6,-3.5zM11.03,7h1.94c2.75,0.08 3.62,0.58 3.9,1L7.13,8c0.28,-0.42 1.15,-0.92 3.9,-1zM10.85,17.95L7.74,17.95C7.3,17.84 7,17.45 7,17v-1h3.89c-0.24,0.27 -0.39,0.61 -0.39,1 0,0.36 0.13,0.69 0.35,0.95zM17,17c0,0.45 -0.3,0.84 -0.74,0.95h-3.11c0.22,-0.26 0.35,-0.59 0.35,-0.95 0,-0.39 -0.15,-0.73 -0.39,-1L17,16v1zM17,14L7,14v-4h10v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/transcribe.xml b/compose/material/material/icons/generator/raw-icons/outlined/transcribe.xml
deleted file mode 100644
index f80dd2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/transcribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,6.79 5,9C5,11.21 6.79,13 9,13zM9,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C7,7.9 7.9,7 9,7zM15.39,15.56C13.71,14.7 11.53,14 9,14c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,16.07 1,17.1 1,18.22V21h16v-2.78C17,17.1 16.39,16.07 15.39,15.56zM15,19H3v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C4.71,16.73 6.63,16 9,16c2.37,0 4.29,0.73 5.48,1.34C14.8,17.5 15,17.84 15,18.22V19zM17.93,16l1.63,-1.63c-2.77,-3.02 -2.77,-7.56 0,-10.74L17.93,2C14.03,5.89 14.02,11.95 17.93,16zM22.92,10.95c-0.84,-1.18 -0.84,-2.71 0,-3.89l-1.68,-1.69c-2.02,2.02 -2.02,5.07 0,7.27L22.92,10.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/transfer_within_a_station.xml b/compose/material/material/icons/generator/raw-icons/outlined/transfer_within_a_station.xml
deleted file mode 100644
index 874f01a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/transfer_within_a_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,15.5v-1.75L14,16.25l2.49,2.5L16.49,17L22,17v-1.5h-5.51zM19.51,19.75L14,19.75v1.5h5.51L19.51,23L22,20.5 19.51,18v1.75zM9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5.75,8.9L3,23h2.1l1.75,-8L9,17v6h2v-7.55L8.95,13.4l0.6,-3C10.85,12 12.8,13 15,13v-2c-1.85,0 -3.45,-1 -4.35,-2.45l-0.95,-1.6C9.35,6.35 8.7,6 8,6c-0.25,0 -0.5,0.05 -0.75,0.15L2,8.3L2,13h2L4,9.65l1.75,-0.75"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/transform.xml b/compose/material/material/icons/generator/raw-icons/outlined/transform.xml
deleted file mode 100644
index c452b9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/transform.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18v-2H8V4h2L7,1 4,4h2v2H2v2h4v8c0,1.1 0.9,2 2,2h8v2h-2l3,3 3,-3h-2v-2h4zM10,8h6v6h2V8c0,-1.1 -0.9,-2 -2,-2h-6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/transgender.xml b/compose/material/material/icons/generator/raw-icons/outlined/transgender.xml
deleted file mode 100644
index 864edbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/transgender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.93,0 3.5,1.57 3.5,3.5S13.93,15 12,15s-3.5,-1.57 -3.5,-3.5S10.07,8 12,8zM16.53,8.38l3.97,-3.96V7h2V1h-6v2h2.58l-3.97,3.97C14.23,6.36 13.16,6 12,6c-1.16,0 -2.23,0.36 -3.11,0.97L8.24,6.32l1.41,-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42l1.91,1.9L3.99,7.74l1.41,1.41l1.41,-1.41l0.65,0.65C6.86,9.27 6.5,10.34 6.5,11.5c0,2.7 1.94,4.94 4.5,5.41L11,19H9v2h2v2h2v-2h2v-2h-2l0,-2.09c2.56,-0.47 4.5,-2.71 4.5,-5.41C17.5,10.34 17.14,9.27 16.53,8.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/transit_enterexit.xml b/compose/material/material/icons/generator/raw-icons/outlined/transit_enterexit.xml
deleted file mode 100644
index 1bf5a6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/transit_enterexit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18H6V8h3v4.77L15.98,6 18,8.03 11.15,15H16v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/translate.xml b/compose/material/material/icons/generator/raw-icons/outlined/translate.xml
deleted file mode 100644
index 4e7e364..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,15.07l-2.54,-2.51 0.03,-0.03c1.74,-1.94 2.98,-4.17 3.71,-6.53L17,6L17,4h-7L10,2L8,2v2L1,4v1.99h11.17C11.5,7.92 10.44,9.75 9,11.35 8.07,10.32 7.3,9.19 6.69,8h-2c0.73,1.63 1.73,3.17 2.98,4.56l-5.09,5.02L4,19l5,-5 3.11,3.11 0.76,-2.04zM18.5,10h-2L12,22h2l1.12,-3h4.75L21,22h2l-4.5,-12zM15.88,17l1.62,-4.33L19.12,17h-3.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/travel_explore.xml b/compose/material/material/icons/generator/raw-icons/outlined/travel_explore.xml
deleted file mode 100644
index 93adef5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/travel_explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.3,16.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S11,12 11,14.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l3.2,3.2l1.4,-1.4L19.3,16.9zM15.5,17c-1.4,0 -2.5,-1.1 -2.5,-2.5s1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5S16.9,17 15.5,17zM12,20v2C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2c4.84,0 8.87,3.44 9.8,8h-2.07c-0.64,-2.46 -2.4,-4.47 -4.73,-5.41V5c0,1.1 -0.9,2 -2,2h-2v2c0,0.55 -0.45,1 -1,1H8v2h2v3H9l-4.79,-4.79C4.08,10.79 4,11.38 4,12C4,16.41 7.59,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/trending_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/trending_down.xml
deleted file mode 100644
index 5a417e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/trending_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18l2.29,-2.29 -4.88,-4.88 -4,4L2,7.41 3.41,6l6,6 4,-4 6.3,6.29L22,12v6h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/trending_flat.xml b/compose/material/material/icons/generator/raw-icons/outlined/trending_flat.xml
deleted file mode 100644
index cc4128a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/trending_flat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4,-4v3H3v2h15v3l4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/trending_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/trending_up.xml
deleted file mode 100644
index 96ed17b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/trending_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l2.29,2.29 -4.88,4.88 -4,-4L2,16.59 3.41,18l6,-6 4,4 6.3,-6.29L22,12V6h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/trip_origin.xml b/compose/material/material/icons/generator/raw-icons/outlined/trip_origin.xml
deleted file mode 100644
index ed73ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/trip_origin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12C2,6.48 6.48,2 12,2s10,4.48 10,10 -4.48,10 -10,10S2,17.52 2,12zM12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6 -6,2.69 -6,6 2.69,6 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/troubleshoot.xml b/compose/material/material/icons/generator/raw-icons/outlined/troubleshoot.xml
deleted file mode 100644
index 97931d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/troubleshoot.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,20.59l-4.69,-4.69C18.37,14.55 19,12.85 19,11c0,-4.42 -3.58,-8 -8,-8c-4.08,0 -7.44,3.05 -7.93,7h2.02C5.57,7.17 8.03,5 11,5c3.31,0 6,2.69 6,6s-2.69,6 -6,6c-2.42,0 -4.5,-1.44 -5.45,-3.5H3.4C4.45,16.69 7.46,19 11,19c1.85,0 3.55,-0.63 4.9,-1.69L20.59,22L22,20.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.43,9.69l1.22,5.31l1.64,0l1.26,-3.78l0.95,2.28l2,0l0,-1.5l-1,0l-1.25,-3l-1.54,0l-1.12,3.37l-1.24,-5.37l-1.65,0l-1.25,4l-5.45,0l0,1.5l6.55,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/try.xml b/compose/material/material/icons/generator/raw-icons/outlined/try.xml
deleted file mode 100644
index 0e0b2bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/try.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15l1.57,-3.43l3.43,-1.57l-3.43,-1.57l-1.57,-3.43l-1.57,3.43l-3.43,1.57l3.43,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tsunami.xml b/compose/material/material/icons/generator/raw-icons/outlined/tsunami.xml
deleted file mode 100644
index 1e02ce5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tsunami.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,17.63c-3.8,2.8 -6.12,0.4 -6.67,0c-0.66,0.49 -2.92,2.76 -6.67,0C3.43,19.03 2.65,19 2,19v2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0C19.7,20.68 20.84,21 22,21v-2C21.34,19 20.5,18.98 18.67,17.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.33,12H22v-2h-2.67C17.5,10 16,8.5 16,6.67c0,-1.02 0.38,-1.74 1.09,-3.34C15.72,3.12 15.09,3 14,3C7.36,3 2.15,8.03 2.01,14.5c0,0 -0.01,2 -0.01,2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0c1.03,0.61 2.17,0.93 3.33,0.93v-2c-0.66,0 -1.5,-0.02 -3.33,-1.37c-3.8,2.8 -6.12,0.4 -6.67,0c-0.9,0.67 -0.54,0.41 -0.91,0.63C10.39,12.82 10,11.7 10,10.5c0,-2.58 1.77,-4.74 4.21,-5.33C14.08,5.68 14,6.19 14,6.67C14,9.61 16.39,12 19.33,12zM5.33,13.13c-0.62,0.46 -0.82,0.63 -1.3,0.87c0.27,-3.53 2.38,-6.48 5.43,-7.96C8.54,7.29 8,8.83 8,10.5c0,1.42 0.4,2.77 1.13,3.95C8.41,14.52 7.34,14.6 5.33,13.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tty.xml b/compose/material/material/icons/generator/raw-icons/outlined/tty.xml
deleted file mode 100644
index d795fc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6h-2V4h2V6zM18,7h-2v2h2V7zM19,9h2V7h-2V9zM19,4h-2v2h2V4zM15,7h-2v2h2V7zM19,10h-2v2h2V10zM16,10h-2v2h2V10zM13,4h-2v2h2V4zM20,15.82v4.15c0,0.56 -0.47,1.03 -1.03,1c-2.89,-0.17 -5.6,-1.03 -7.97,-2.4C8.27,16.99 6.01,14.73 4.43,12C3.05,9.63 2.2,6.92 2.03,4.03C2,3.47 2.47,3 3.03,3h4.15c0.48,0 0.89,0.34 0.98,0.8L8.9,7.48c0.07,0.33 -0.04,0.67 -0.27,0.9L6.1,10.9c1.43,2.5 3.5,4.57 6,6l2.52,-2.52c0.24,-0.24 0.58,-0.34 0.9,-0.27l3.67,0.73C19.66,14.93 20,15.34 20,15.82zM5.18,8.99l1.65,-1.65L6.36,5H4.13C4.3,6.37 4.66,7.71 5.18,8.99zM18,16.64l-2.34,-0.47l-1.65,1.65c1.28,0.52 2.63,0.87 3.99,1.05V16.64zM20,4v2h2V4H20zM20,12h2v-2h-2V12zM13,10h-2v2h2V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tune.xml b/compose/material/material/icons/generator/raw-icons/outlined/tune.xml
deleted file mode 100644
index e8d34f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tune.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17v2h6v-2L3,17zM3,5v2h10L13,5L3,5zM13,21v-2h8v-2h-8v-2h-2v6h2zM7,9v2L3,11v2h4v2h2L9,9L7,9zM21,13v-2L11,11v2h10zM15,9h2L17,7h4L21,5h-4L17,3h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tungsten.xml b/compose/material/material/icons/generator/raw-icons/outlined/tungsten.xml
deleted file mode 100644
index b0217f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tungsten.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.894,17.801l1.407,-1.407l2.121,2.121l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.584,18.509l2.121,-2.121l1.407,1.407l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.02V3H9v5.02C7.79,8.94 7,10.37 7,12c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,10.37 16.21,8.94 15,8.02zM11,5h2v2.1C12.68,7.04 12.34,7 12,7s-0.68,0.04 -1,0.1V5zM12,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3c1.65,0 3,1.35 3,3S13.65,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turn_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/turn_left.xml
deleted file mode 100644
index 79e696b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,11l1.59,1.59L7,14l-4,-4l4,-4l1.41,1.41L6.83,9L15,9c1.1,0 2,0.9 2,2v9h-2v-9L6.83,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turn_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/turn_right.xml
deleted file mode 100644
index 44adeab..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.17,11l-1.59,1.59L17,14l4,-4l-4,-4l-1.41,1.41L17.17,9L9,9c-1.1,0 -2,0.9 -2,2v9h2v-9L17.17,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turn_sharp_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/turn_sharp_left.xml
deleted file mode 100644
index 5b4f04a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turn_sharp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.83L4.41,8.41L3,7l4,-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0 2,0.9 2,2v6h-2v-6H8c-1.1,0 -2,-0.9 -2,-2V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turn_sharp_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/turn_sharp_right.xml
deleted file mode 100644
index 110731e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turn_sharp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.83l1.59,1.59L21,7l-4,-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0 -2,0.9 -2,2v6h2v-6h8c1.1,0 2,-0.9 2,-2V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turn_slight_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/turn_slight_left.xml
deleted file mode 100644
index 3077490..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turn_slight_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.66,6V4H6v5.66h2V7.41l5,5V20h2v-7.58c0,-0.53 -0.21,-1.04 -0.59,-1.41l-5,-5H11.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turn_slight_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/turn_slight_right.xml
deleted file mode 100644
index 1d0bb07..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turn_slight_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,6V4H18v5.66h-2V7.41l-5,5V20H9v-7.58c0,-0.53 0.21,-1.04 0.59,-1.41l5,-5H12.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turned_in.xml b/compose/material/material/icons/generator/raw-icons/outlined/turned_in.xml
deleted file mode 100644
index 7e480e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3H7c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/turned_in_not.xml b/compose/material/material/icons/generator/raw-icons/outlined/turned_in_not.xml
deleted file mode 100644
index 61dc4cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/turned_in_not.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tv.xml b/compose/material/material/icons/generator/raw-icons/outlined/tv.xml
deleted file mode 100644
index da892d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/tv_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/tv_off.xml
deleted file mode 100644
index 141f9d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/tv_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7v10.88l1.85,1.85c0.09,-0.23 0.15,-0.47 0.15,-0.73L23,7c0,-1.11 -0.89,-2 -2,-2h-7.58l3.29,-3.3L16,1l-4,4 -4,-4 -0.7,0.7L10.58,5L8.12,5l2,2L21,7zM20.46,23l1.26,-1.27 -1.26,1.26zM2.41,2.13l-0.14,0.14L1,3.54l1.53,1.53C1.65,5.28 1,6.06 1,7v12c0,1.1 0.9,2 2,2h15.46l1.99,1.99 1.26,-1.26 0.15,-0.15L2.41,2.13zM3,19L3,7h1.46l12,12L3,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/two_wheeler.xml b/compose/material/material/icons/generator/raw-icons/outlined/two_wheeler.xml
deleted file mode 100644
index e6737f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/two_wheeler.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.17,11L4.17,11C4.12,11 4.06,11 4,11H4.17M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4l2,2h3l3.49,-6.1l1.01,1.01C16.59,12.64 16,13.75 16,15c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.18,0 -0.36,0.03 -0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5zM20,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C22,16.1 21.1,17 20,17L20,17zM4,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C6,16.1 5.1,17 4,17L4,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/type_specimen.xml b/compose/material/material/icons/generator/raw-icons/outlined/type_specimen.xml
deleted file mode 100644
index fca2e7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/type_specimen.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H8V4h12V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.19,12.2h3.63l0.8,2.3h1.56l-3.38,-9H13.2l-3.38,9h1.56L12.19,12.2zM13.96,7.17h0.08l1.31,3.72h-2.69L13.96,7.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/u_turn_left.xml b/compose/material/material/icons/generator/raw-icons/outlined/u_turn_left.xml
deleted file mode 100644
index abec9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/u_turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9v12h-2V9c0,-2.21 -1.79,-4 -4,-4S8,6.79 8,9v4.17l1.59,-1.59L11,13l-4,4l-4,-4l1.41,-1.41L6,13.17V9c0,-3.31 2.69,-6 6,-6S18,5.69 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/u_turn_right.xml b/compose/material/material/icons/generator/raw-icons/outlined/u_turn_right.xml
deleted file mode 100644
index a6ee472..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/u_turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9v12h2V9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v4.17l-1.59,-1.59L13,13l4,4l4,-4l-1.41,-1.41L18,13.17V9c0,-3.31 -2.69,-6 -6,-6S6,5.69 6,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/umbrella.xml b/compose/material/material/icons/generator/raw-icons/outlined/umbrella.xml
deleted file mode 100644
index 833eb5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/umbrella.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,6.92L13,5.77V3.88V3.4c0,-0.26 0.22,-0.48 0.5,-0.48c0.28,0 0.5,0.21 0.5,0.48V4h2V3.4C16,2.07 14.88,1 13.5,1C12.12,1 11,2.07 11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77 11.6,22 12,22s0.8,-0.23 0.95,-0.69L18,6.07L14.5,6.92zM13.28,8.5l0.76,0.58l0.92,-0.23L13,14.8V8.29L13.28,8.5zM9.96,9.09l0.76,-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/unarchive.xml b/compose/material/material/icons/generator/raw-icons/outlined/unarchive.xml
deleted file mode 100644
index 5f2fef5..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/unarchive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.54,5.23l-1.39,-1.68C18.88,3.21 18.47,3 18,3L6,3c-0.47,0 -0.88,0.21 -1.16,0.55L3.46,5.23C3.17,5.57 3,6.02 3,6.5L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6.5c0,-0.48 -0.17,-0.93 -0.46,-1.27zM6.24,5h11.52l0.83,1L5.42,6l0.82,-1zM5,19L5,8h14v11L5,19zM8,14h2.55v3h2.9v-3L16,14l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/undo.xml b/compose/material/material/icons/generator/raw-icons/outlined/undo.xml
deleted file mode 100644
index 4ce4108..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/undo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8c-2.65,0 -5.05,0.99 -6.9,2.6L2,7v9h9l-3.62,-3.62c1.39,-1.16 3.16,-1.88 5.12,-1.88 3.54,0 6.55,2.31 7.6,5.5l2.37,-0.78C21.08,11.03 17.15,8 12.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/unfold_less.xml b/compose/material/material/icons/generator/raw-icons/outlined/unfold_less.xml
deleted file mode 100644
index c6e7907..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/unfold_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,18.59L8.83,20 12,16.83 15.17,20l1.41,-1.41L12,14l-4.59,4.59zM16.59,5.41L15.17,4 12,7.17 8.83,4 7.41,5.41 12,10l4.59,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/unfold_less_double.xml b/compose/material/material/icons/generator/raw-icons/outlined/unfold_less_double.xml
deleted file mode 100644
index 92f9c80..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/unfold_less_double.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,1.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,6.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,17.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,22.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/unfold_more.xml b/compose/material/material/icons/generator/raw-icons/outlined/unfold_more.xml
deleted file mode 100644
index c115159..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/unfold_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.83L15.17,9l1.41,-1.41L12,3 7.41,7.59 8.83,9 12,5.83zM12,18.17L8.83,15l-1.41,1.41L12,21l4.59,-4.59L15.17,15 12,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/unfold_more_double.xml b/compose/material/material/icons/generator/raw-icons/outlined/unfold_more_double.xml
deleted file mode 100644
index 4d100fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/unfold_more_double.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.83L15.17,11l1.41,-1.41L12,5L7.41,9.59L8.83,11L12,7.83zM12,2.83L15.17,6l1.41,-1.41L12,0L7.41,4.59L8.83,6L12,2.83zM12,21.17L8.83,18l-1.41,1.41L12,24l4.59,-4.59L15.17,18L12,21.17zM12,16.17L8.83,13l-1.41,1.41L12,19l4.59,-4.59L15.17,13L12,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/unpublished.xml b/compose/material/material/icons/generator/raw-icons/outlined/unpublished.xml
deleted file mode 100644
index 2f72014..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/unpublished.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.94,5.12L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8C10.52,4 9.14,4.41 7.94,5.12zM17.66,9.53l-1.41,-1.41l-2.65,2.65l1.41,1.41L17.66,9.53zM19.78,22.61l-2.27,-2.27C15.93,21.39 14.04,22 12,22C6.48,22 2,17.52 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.06,18.88l-3.88,-3.88l-1.59,1.59l-4.24,-4.24l1.41,-1.41l2.83,2.83l0.18,-0.18L5.12,7.94C4.41,9.14 4,10.52 4,12c0,4.41 3.59,8 8,8C13.48,20 14.86,19.59 16.06,18.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/unsubscribe.xml b/compose/material/material/icons/generator/raw-icons/outlined/unsubscribe.xml
deleted file mode 100644
index c4cd7e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/unsubscribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.99,14.04L20.99,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h10.05c0.28,1.92 2.1,3.35 4.18,2.93 1.34,-0.27 2.43,-1.37 2.7,-2.71 0.25,-1.24 -0.16,-2.39 -0.94,-3.18zM18.99,5L12,8.5 5,5h13.99zM15.35,15L5,15L5,7l7,3.5L19,7v6.05c-0.16,-0.02 -0.33,-0.05 -0.5,-0.05 -1.39,0 -2.59,0.82 -3.15,2zM20.5,17h-4v-1h4v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/upcoming.xml b/compose/material/material/icons/generator/raw-icons/outlined/upcoming.xml
deleted file mode 100644
index ffcfc5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/upcoming.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.6,10.81L16.19,9.4l3.56,-3.55l1.41,1.41C21.05,7.29 17.6,10.81 17.6,10.81zM13,3h-2v5h2V3zM6.4,10.81L7.81,9.4L4.26,5.84L2.84,7.26C2.95,7.29 6.4,10.81 6.4,10.81zM20,14h-3.42c-0.77,1.76 -2.54,3 -4.58,3s-3.81,-1.24 -4.58,-3H4v5h16V14M20,12c1.1,0 2,0.9 2,2v5c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2v-5c0,-1.1 0.9,-2 2,-2h5c0,1.66 1.34,3 3,3s3,-1.34 3,-3H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/update.xml b/compose/material/material/icons/generator/raw-icons/outlined/update.xml
deleted file mode 100644
index 40f997b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v5l4.25,2.52l0.77,-1.28l-3.52,-2.09V8H11zM21,10V3l-2.64,2.64C16.74,4.01 14.49,3 12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9h-2c0,3.86 -3.14,7 -7,7s-7,-3.14 -7,-7s3.14,-7 7,-7c1.93,0 3.68,0.79 4.95,2.05L14,10H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/update_disabled.xml b/compose/material/material/icons/generator/raw-icons/outlined/update_disabled.xml
deleted file mode 100644
index 03600ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/update_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,13c-0.15,1.38 -0.62,2.67 -1.33,3.79l-1.47,-1.47c0.38,-0.71 0.65,-1.49 0.77,-2.32H20.94zM8.67,5.84C9.66,5.31 10.8,5 12,5c2.37,0 4.47,1.19 5.74,3H15v2h6V4h-2v2.36C17.35,4.32 14.83,3 12,3c-1.76,0 -3.4,0.51 -4.78,1.39L8.67,5.84zM11,7v1.17l2,2V7H11zM19.78,22.61l-3,-3C15.39,20.48 13.76,21 12,21c-4.97,0 -9,-4.03 -9,-9c0,-1.76 0.51,-3.4 1.39,-4.78L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM15.32,18.15L5.84,8.67C5.31,9.66 5,10.8 5,12c0,3.86 3.14,7 7,7C13.2,19 14.34,18.69 15.32,18.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/upgrade.xml b/compose/material/material/icons/generator/raw-icons/outlined/upgrade.xml
deleted file mode 100644
index d242dbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/upgrade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18v2H8v-2H16zM11,7.99V16h2V7.99h3L12,4L8,7.99H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/upload.xml b/compose/material/material/icons/generator/raw-icons/outlined/upload.xml
deleted file mode 100644
index e14030b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6v-6h4l-7,-7 -7,7h4v6zM12,5.83L14.17,8L13,8v6h-2L11,8L9.83,8L12,5.83zM5,18h14v2L5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/upload_file.xml b/compose/material/material/icons/generator/raw-icons/outlined/upload_file.xml
deleted file mode 100644
index 8809ce9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/upload_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM18,20H6V4h7v5h5V20zM8,15.01l1.41,1.41L11,14.84V19h2v-4.16l1.59,1.59L16,15.01L12.01,11L8,15.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/usb.xml b/compose/material/material/icons/generator/raw-icons/outlined/usb.xml
deleted file mode 100644
index d2c64da..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/usb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7v4h1v2h-3V5h2l-3,-4 -3,4h2v8H8v-2.07c0.7,-0.37 1.2,-1.08 1.2,-1.93 0,-1.21 -0.99,-2.2 -2.2,-2.2S4.8,7.79 4.8,9c0,0.85 0.5,1.56 1.2,1.93V13c0,1.11 0.89,2 2,2h3v3.05c-0.71,0.37 -1.2,1.1 -1.2,1.95 0,1.22 0.99,2.2 2.2,2.2s2.2,-0.98 2.2,-2.2c0,-0.85 -0.49,-1.58 -1.2,-1.95V15h3c1.11,0 2,-0.89 2,-2v-2h1V7h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/usb_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/usb_off.xml
deleted file mode 100644
index 97c22fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/usb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8h4v4h-1v2c0,0.34 -0.08,0.66 -0.23,0.94L16,13.17V12h-1V8zM11,8.17l2,2V6h2l-3,-4L9,6h2V8.17zM13,16v2.28c0.6,0.34 1,0.98 1,1.72c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.74 0.4,-1.37 1,-1.72V16H8c-1.11,0 -2,-0.89 -2,-2v-2.28C5.4,11.38 5,10.74 5,10c0,-0.59 0.26,-1.13 0.68,-1.49L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L13.17,16H13zM11,14v-0.17l-2.51,-2.51c-0.14,0.16 -0.31,0.29 -0.49,0.4V14H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vaccines.xml b/compose/material/material/icons/generator/raw-icons/outlined/vaccines.xml
deleted file mode 100644
index 267358f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vaccines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5.5H8V4h0.5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1H6v1.5H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1V15c0,1.1 0.9,2 2,2h1v4l2,1.5V17h1c1.1,0 2,-0.9 2,-2V7.5c0.55,0 1,-0.45 1,-1C12,5.95 11.55,5.5 11,5.5zM9,9H7.25C6.84,9 6.5,9.34 6.5,9.75c0,0.41 0.34,0.75 0.75,0.75H9V12H7.25c-0.41,0 -0.75,0.34 -0.75,0.75c0,0.41 0.34,0.75 0.75,0.75H9L9,15H5V7.5h4V9zM19.5,10.5V10c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-5c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1v0.5c0,0.5 -1.5,1.16 -1.5,3V20c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-6.5C21,11.66 19.5,11 19.5,10.5zM16.5,10.5V10h1v0.5c0,1.6 1.5,2 1.5,3V14h-4c0,-0.21 0,-0.39 0,-0.5C15,12.5 16.5,12.1 16.5,10.5zM19,15.5V17h-4c0,-0.51 0,-1.02 0,-1.5H19zM15,20c0,0 0,-0.63 0,-1.5h4V20H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vape_free.xml b/compose/material/material/icons/generator/raw-icons/outlined/vape_free.xml
deleted file mode 100644
index c5c55f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vape_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM16.17,19H8v-3h5.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L16.17,19zM18.83,16H22v3h-0.17L18.83,16zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM11.15,8.32c0,-0.01 0,-0.01 0,-0.02c0,-1.85 1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53c1.87,0 3.47,1.35 3.47,3.16V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-0.01,0 -0.01,0 -0.02,0L11.15,8.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vaping_rooms.xml b/compose/material/material/icons/generator/raw-icons/outlined/vaping_rooms.xml
deleted file mode 100644
index ccb0c28..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vaping_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM22,16v3H8v-3H22zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM19.5,13.36V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-1.85,0 -3.35,-1.5 -3.35,-3.35s1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53C17.9,10.2 19.5,11.55 19.5,13.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/verified.xml b/compose/material/material/icons/generator/raw-icons/outlined/verified.xml
deleted file mode 100644
index eead3f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/verified.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11.99l-2.44,-2.79l0.34,-3.69l-3.61,-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79l-0.34,3.7l3.61,0.82L8.6,22.5l3.4,-1.47l3.4,1.46l1.89,-3.19l3.61,-0.82l-0.34,-3.69L23,11.99zM19.05,13.47l-0.56,0.65l0.08,0.85l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78,-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99,-1.67l-0.44,-0.74l-0.84,-0.19l-1.9,-0.43l0.18,-1.96l0.08,-0.85l-0.56,-0.65l-1.29,-1.47l1.29,-1.48l0.56,-0.65L5.43,9.01L5.25,7.07l1.9,-0.43l0.84,-0.19l0.44,-0.74l0.99,-1.68l1.78,0.77L12,5.14l0.79,-0.34l1.78,-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85l0.56,0.65l1.29,1.47L19.05,13.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.09,13.75l-2.32,-2.33l-1.48,1.49l3.8,3.81l7.34,-7.36l-1.48,-1.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/verified_user.xml b/compose/material/material/icons/generator/raw-icons/outlined/verified_user.xml
deleted file mode 100644
index 601a72b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/verified_user.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM19,11c0,4.52 -2.98,8.69 -7,9.93 -4.02,-1.24 -7,-5.41 -7,-9.93L5,6.3l7,-3.11 7,3.11L19,11zM7.41,11.59L6,13l4,4 8,-8 -1.41,-1.42L10,14.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_bottom.xml b/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_bottom.xml
deleted file mode 100644
index bbfb8a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h-3V3h-2v10H8l4,4 4,-4zM4,19v2h16v-2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_center.xml b/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_center.xml
deleted file mode 100644
index f79d0fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19h3v4h2v-4h3l-4,-4 -4,4zM16,5h-3L13,1h-2v4L8,5l4,4 4,-4zM4,11v2h16v-2L4,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_top.xml b/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_top.xml
deleted file mode 100644
index 2d88991..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vertical_align_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h3v10h2V11h3l-4,-4 -4,4zM4,3v2h16V3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vertical_distribute.xml b/compose/material/material/icons/generator/raw-icons/outlined/vertical_distribute.xml
deleted file mode 100644
index 13712fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vertical_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,10.5v3h10v-3H7zM2,20v2h20v-2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vertical_shades.xml b/compose/material/material/icons/generator/raw-icons/outlined/vertical_shades.xml
deleted file mode 100644
index 9b61164..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vertical_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM14,5v14h-4V5H14zM6,5h2v14H6V5zM16,19V5h2v14H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vertical_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/outlined/vertical_shades_closed.xml
deleted file mode 100644
index bfc3c8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vertical_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM13,5h1.5v14H13V5zM11,19H9.5V5H11V19zM6,5h1.5v14H6V5zM16.5,19V5H18v14H16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vertical_split.xml b/compose/material/material/icons/generator/raw-icons/outlined/vertical_split.xml
deleted file mode 100644
index 88e423d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vertical_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h8v2L3,15zM3,17h8v2L3,19zM3,9h8v2L3,11zM3,5h8v2L3,7zM19,7v10h-4L15,7h4m2,-2h-8v14h8L21,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vibration.xml b/compose/material/material/icons/generator/raw-icons/outlined/vibration.xml
deleted file mode 100644
index a9600b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vibration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0,15h2L2,9L0,9v6zM3,17h2L5,7L3,7v10zM22,9v6h2L24,9h-2zM19,17h2L21,7h-2v10zM16.5,3h-9C6.67,3 6,3.67 6,4.5v15c0,0.83 0.67,1.5 1.5,1.5h9c0.83,0 1.5,-0.67 1.5,-1.5v-15c0,-0.83 -0.67,-1.5 -1.5,-1.5zM16,19L8,19L8,5h8v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_call.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_call.xml
deleted file mode 100644
index 090e29e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5L17,7c0,-0.55 -0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4zM15,16L5,16L5,8h10v8zM9,15h2v-2h2v-2h-2L11,9L9,9v2L7,11v2h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_camera_back.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_camera_back.xml
deleted file mode 100644
index 6bf5fa4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_camera_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM16,18H4V6h12V18zM11.62,11.5L9,15l-1.62,-2.17L5,16h10L11.62,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_camera_front.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_camera_front.xml
deleted file mode 100644
index 3baf979..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_camera_front.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM16,9.69V18H4V6h12V9.69z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,15.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C11.93,13.21 10.99,13 10,13c-0.99,0 -1.93,0.21 -2.78,0.58C6.48,13.9 6,14.62 6,15.43V16h8V15.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_chat.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_chat.xml
deleted file mode 100644
index 8706458..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_chat.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,14h6c0.55,0 1,-0.45 1,-1v-1.99L17,13V7l-2,1.99V7c0,-0.55 -0.45,-1 -1,-1H8C7.45,6 7,6.45 7,7v6C7,13.55 7.45,14 8,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_file.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_file.xml
deleted file mode 100644
index eee5747..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM6,20V4h7v5h5v11H6zM14,14l2,-1.06v4.12L14,16v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_label.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_label.xml
deleted file mode 100644
index fccdabd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,5h18v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_library.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_library.xml
deleted file mode 100644
index 6752ca8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM12,5.5v9l6,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_settings.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_settings.xml
deleted file mode 100644
index 9098716..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_settings.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h18v5h2V6c0,-1.1 -0.9,-2 -2,-2H3C1.9,4 1,4.9 1,6v12c0,1.1 0.9,2 2,2h9v-2H3V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12l-6,-4l0,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.71,18.43c0.03,-0.29 0.04,-0.58 0.01,-0.86l1.07,-0.85c0.1,-0.08 0.12,-0.21 0.06,-0.32l-1.03,-1.79c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11L21.23,15c-0.23,-0.17 -0.48,-0.31 -0.75,-0.42l-0.2,-1.36C20.26,13.09 20.16,13 20.03,13h-2.07c-0.12,0 -0.23,0.09 -0.25,0.21l-0.2,1.36c-0.26,0.11 -0.51,0.26 -0.74,0.42l-1.28,-0.5c-0.12,-0.05 -0.25,0 -0.31,0.11l-1.03,1.79c-0.06,0.11 -0.04,0.24 0.06,0.32l1.07,0.86c-0.03,0.29 -0.04,0.58 -0.01,0.86l-1.07,0.85c-0.1,0.08 -0.12,0.21 -0.06,0.32l1.03,1.79c0.06,0.11 0.19,0.15 0.31,0.11l1.27,-0.5c0.23,0.17 0.48,0.31 0.75,0.42l0.2,1.36c0.02,0.12 0.12,0.21 0.25,0.21h2.07c0.12,0 0.23,-0.09 0.25,-0.21l0.2,-1.36c0.26,-0.11 0.51,-0.26 0.74,-0.42l1.28,0.5c0.12,0.05 0.25,0 0.31,-0.11l1.03,-1.79c0.06,-0.11 0.04,-0.24 -0.06,-0.32L22.71,18.43zM19,19.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S19.83,19.5 19,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/video_stable.xml b/compose/material/material/icons/generator/raw-icons/outlined/video_stable.xml
deleted file mode 100644
index 58381b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/video_stable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,18V6h2.95l-2.33,8.73L16.82,18H4zM15.62,15.61l-8.55,-2.29l1.31,-4.92l8.56,2.29L15.62,15.61zM20,18h-2.95l2.34,-8.73L7.18,6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/videocam.xml b/compose/material/material/icons/generator/raw-icons/outlined/videocam.xml
deleted file mode 100644
index cce4a0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/videocam.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8v8H5V8h10m1,-2H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4V7c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/videocam_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/videocam_off.xml
deleted file mode 100644
index e3ebd9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/videocam_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.56,8l-2,-2 -4.15,-4.14L2,3.27 4.73,6L4,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.21,0 0.39,-0.08 0.55,-0.18L19.73,21l1.41,-1.41 -8.86,-8.86L9.56,8zM5,16L5,8h1.73l8,8L5,16zM15,8v2.61l6,6L21,6.5l-4,4L17,7c0,-0.55 -0.45,-1 -1,-1h-5.61l2,2L15,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/videogame_asset.xml b/compose/material/material/icons/generator/raw-icons/outlined/videogame_asset.xml
deleted file mode 100644
index eb45984..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/videogame_asset.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,8h18v8zM6,15h2v-2h2v-2L8,11L8,9L6,9v2L4,11v2h2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,10.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/videogame_asset_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/videogame_asset_off.xml
deleted file mode 100644
index eb4eb94..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/videogame_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,9c0.83,0 1.5,0.67 1.5,1.5S18.33,12 17.5,12S16,11.33 16,10.5S16.67,9 17.5,9zM10.83,8H20v8h-1.17l1.87,1.87C21.45,17.58 22,16.85 22,16V8c0,-1.1 -0.9,-2 -2,-2H8.83L10.83,8zM19.78,22.61L15.17,18H4c-1.1,0 -2,-0.9 -2,-2V8c0,-0.85 0.55,-1.58 1.3,-1.87L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM13.17,16l-3,-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_agenda.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_agenda.xml
deleted file mode 100644
index 282a1dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_agenda.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4C21,13.9 20.1,13 19,13zM19,19H5v-4h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,9H5V5h14V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_array.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_array.xml
deleted file mode 100644
index f069a4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_array.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7v10H9V7H15zM21,5h-3v14h3V5zM17,5H7v14h10V5zM6,5H3v14h3V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_carousel.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_carousel.xml
deleted file mode 100644
index 64cfc3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_carousel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h4v10H2V7zM7,19h10V5H7V19zM9,7h6v10H9V7zM18,7h4v10h-4V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_column.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_column.xml
deleted file mode 100644
index cadebef..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_column.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM8.33,17H5V7h3.33V17zM13.67,17h-3.33V7h3.33V17zM19,17h-3.33V7H19V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_comfy.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_comfy.xml
deleted file mode 100644
index eb2455e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_comfy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM4,6h16v5H4V6zM4,18v-5h4v5H4zM10,18v-5h10v5H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_comfy_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_comfy_alt.xml
deleted file mode 100644
index a16319b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_comfy_alt.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_compact.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_compact.xml
deleted file mode 100644
index 79a84f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_compact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM6.5,18H4v-2.5h2.5V18zM6.5,13.25H4v-2.5h2.5V13.25zM6.5,8.5H4V6h2.5V8.5zM11,18H8.5v-2.5H11V18zM11,13.25H8.5v-2.5H11V13.25zM11,8.5H8.5V6H11V8.5zM15.5,18H13v-2.5h2.5V18zM15.5,13.25H13v-2.5h2.5V13.25zM15.5,8.5H13V6h2.5V8.5zM20,18h-2.5v-2.5H20V18zM20,13.25h-2.5v-2.5H20V13.25zM20,8.5h-2.5V6H20V8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_compact_alt.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_compact_alt.xml
deleted file mode 100644
index f3cc3e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_compact_alt.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,7.5h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7.5h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.5h4v4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_cozy.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_cozy.xml
deleted file mode 100644
index 57dc7ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_cozy.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,7.25h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,7.25h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,12.75h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,12.75h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_day.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_day.xml
deleted file mode 100644
index 93118b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18L2,18v2h19v-2zM19,10v4L4,14v-4h15m1,-2L3,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h17c0.55,0 1,-0.45 1,-1L21,9c0,-0.55 -0.45,-1 -1,-1zM21,4L2,4v2h19L21,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_headline.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_headline.xml
deleted file mode 100644
index f9d849b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_headline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h16v-2L4,13v2zM4,19h16v-2L4,17v2zM4,11h16L20,9L4,9v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_in_ar.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_in_ar.xml
deleted file mode 100644
index 91b5213..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_in_ar.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4c0,-0.55 0.45,-1 1,-1h2V1H4C2.34,1 1,2.34 1,4v2h2V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,20v-2H1v2c0,1.66 1.34,3 3,3h2v-2H4C3.45,21 3,20.55 3,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1h-2v2h2c0.55,0 1,0.45 1,1v2h2V4C23,2.34 21.66,1 20,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,20c0,0.55 -0.45,1 -1,1h-2v2h2c1.66,0 3,-1.34 3,-3v-2h-2V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14.87V9.13c0,-0.72 -0.38,-1.38 -1,-1.73l-5,-2.88c-0.31,-0.18 -0.65,-0.27 -1,-0.27s-0.69,0.09 -1,0.27L6,7.39C5.38,7.75 5,8.41 5,9.13v5.74c0,0.72 0.38,1.38 1,1.73l5,2.88c0.31,0.18 0.65,0.27 1,0.27s0.69,-0.09 1,-0.27l5,-2.88C18.62,16.25 19,15.59 19,14.87zM11,17.17l-4,-2.3v-4.63l4,2.33V17.17zM12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84zM17,14.87l-4,2.3v-4.6l4,-2.33V14.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_kanban.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_kanban.xml
deleted file mode 100644
index e22e029..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_kanban.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h2v10h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7h2v8h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_list.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_list.xml
deleted file mode 100644
index b2cd4d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM7,7v2H5V7H7zM5,13v-2h2v2H5zM5,15h2v2H5V15zM19,17H9v-2h10V17zM19,13H9v-2h10V13zM19,9H9V7h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_module.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_module.xml
deleted file mode 100644
index 8bb64c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_module.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM19,11h-3.33V7H19V11zM13.67,11h-3.33V7h3.33V11zM8.33,7v4H5V7H8.33zM5,17v-4h3.33v4H5zM10.33,17v-4h3.33v4H10.33zM15.67,17v-4H19v4H15.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_quilt.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_quilt.xml
deleted file mode 100644
index fe94f61..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_quilt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM8.33,17H5V7h3.33V17zM13.67,17h-3.33v-4h3.33V17zM19,17h-3.33v-4H19V17zM19,11h-8.67V7H19V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_sidebar.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_sidebar.xml
deleted file mode 100644
index 0ffef4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_sidebar.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM20,8.67h-2.5V6H20V8.67zM17.5,10.67H20v2.67h-2.5V10.67zM4,6h11.5v12H4V6zM17.5,18v-2.67H20V18H17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_stream.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_stream.xml
deleted file mode 100644
index 859c1df..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_stream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H5C3.9,5 3,5.9 3,7zM19,17H5v-4h14V17zM5,11V7h14v4H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_timeline.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_timeline.xml
deleted file mode 100644
index 2b1ac83..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_timeline.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/view_week.xml b/compose/material/material/icons/generator/raw-icons/outlined/view_week.xml
deleted file mode 100644
index a5a50a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM8,18H4V6h4V18zM14,18h-4V6h4V18zM20,18h-4V6h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vignette.xml b/compose/material/material/icons/generator/raw-icons/outlined/vignette.xml
deleted file mode 100644
index 182ede0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vignette.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5v14L3,19L3,5h18m0,-2L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM12,8c3.25,0 6,1.83 6,4s-2.75,4 -6,4 -6,-1.83 -6,-4 2.75,-4 6,-4m0,-2c-4.42,0 -8,2.69 -8,6s3.58,6 8,6 8,-2.69 8,-6 -3.58,-6 -8,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/villa.xml b/compose/material/material/icons/generator/raw-icons/outlined/villa.xml
deleted file mode 100644
index 807973f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/villa.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10c-1.1,0 -2,0.9 -2,2h-1V3L3,8v13h18v-9C21,10.9 20.1,10 19,10zM5,9.37l9,-3.46V12H9v7H5V9.37zM19,19h-3v-3h-2v3h-3v-5h8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/visibility.xml b/compose/material/material/icons/generator/raw-icons/outlined/visibility.xml
deleted file mode 100644
index 86a1ee4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/visibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c3.79,0 7.17,2.13 8.82,5.5C19.17,14.87 15.79,17 12,17s-7.17,-2.13 -8.82,-5.5C4.83,8.13 8.21,6 12,6m0,-2C7,4 2.73,7.11 1,11.5 2.73,15.89 7,19 12,19s9.27,-3.11 11,-7.5C21.27,7.11 17,4 12,4zM12,9c1.38,0 2.5,1.12 2.5,2.5S13.38,14 12,14s-2.5,-1.12 -2.5,-2.5S10.62,9 12,9m0,-2c-2.48,0 -4.5,2.02 -4.5,4.5S9.52,16 12,16s4.5,-2.02 4.5,-4.5S14.48,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/visibility_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/visibility_off.xml
deleted file mode 100644
index 33f8b69..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/visibility_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c3.79,0 7.17,2.13 8.82,5.5 -0.59,1.22 -1.42,2.27 -2.41,3.12l1.41,1.41c1.39,-1.23 2.49,-2.77 3.18,-4.53C21.27,7.11 17,4 12,4c-1.27,0 -2.49,0.2 -3.64,0.57l1.65,1.65C10.66,6.09 11.32,6 12,6zM10.93,7.14L13,9.21c0.57,0.25 1.03,0.71 1.28,1.28l2.07,2.07c0.08,-0.34 0.14,-0.7 0.14,-1.07C16.5,9.01 14.48,7 12,7c-0.37,0 -0.72,0.05 -1.07,0.14zM2.01,3.87l2.68,2.68C3.06,7.83 1.77,9.53 1,11.5 2.73,15.89 7,19 12,19c1.52,0 2.98,-0.29 4.32,-0.82l3.42,3.42 1.41,-1.41L3.42,2.45 2.01,3.87zM9.51,11.37l2.61,2.61c-0.04,0.01 -0.08,0.02 -0.12,0.02 -1.38,0 -2.5,-1.12 -2.5,-2.5 0,-0.05 0.01,-0.08 0.01,-0.13zM6.11,7.97l1.75,1.75c-0.23,0.55 -0.36,1.15 -0.36,1.78 0,2.48 2.02,4.5 4.5,4.5 0.63,0 1.23,-0.13 1.77,-0.36l0.98,0.98c-0.88,0.24 -1.8,0.38 -2.75,0.38 -3.79,0 -7.17,-2.13 -8.82,-5.5 0.7,-1.43 1.72,-2.61 2.93,-3.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/voice_chat.xml b/compose/material/material/icons/generator/raw-icons/outlined/voice_chat.xml
deleted file mode 100644
index 6a6c195..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/voice_chat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM14,10.6l3,2.4L17,7l-3,2.4L14,7L7,7v6h7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/voice_over_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/voice_over_off.xml
deleted file mode 100644
index 3831688..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/voice_over_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.76,5.36l-1.68,1.69c0.8,1.13 0.83,2.58 0.09,3.74l1.7,1.7c1.9,-2.02 1.87,-4.98 -0.11,-7.13zM20.07,2l-1.63,1.63c2.72,2.97 2.76,7.39 0.14,10.56l1.64,1.64c3.74,-3.89 3.71,-9.84 -0.15,-13.83zM9.43,5.04l3.53,3.53c-0.2,-1.86 -1.67,-3.33 -3.53,-3.53zM4.41,2.86L3,4.27l2.62,2.62C5.23,7.5 5,8.22 5,9c0,2.21 1.79,4 4,4 0.78,0 1.5,-0.23 2.11,-0.62l4.4,4.4C13.74,15.6 10.78,15 9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-0.37 -0.11,-0.7 -0.29,-1.02L19.73,21l1.41,-1.41L4.41,2.86zM3,19c0.22,-0.72 3.31,-2 6,-2 2.7,0 5.8,1.29 6,2L3,19zM9,11c-1.1,0 -2,-0.9 -2,-2 0,-0.22 0.04,-0.42 0.11,-0.62l2.51,2.51c-0.2,0.07 -0.4,0.11 -0.62,0.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/voicemail.xml b/compose/material/material/icons/generator/raw-icons/outlined/voicemail.xml
deleted file mode 100644
index 4947802..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/voicemail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,6C15.46,6 13,8.46 13,11.5c0,1.33 0.47,2.55 1.26,3.5L9.74,15c0.79,-0.95 1.26,-2.17 1.26,-3.5C11,8.46 8.54,6 5.5,6S0,8.46 0,11.5 2.46,17 5.5,17h13c3.04,0 5.5,-2.46 5.5,-5.5S21.54,6 18.5,6zM5.5,15C3.57,15 2,13.43 2,11.5S3.57,8 5.5,8 9,9.57 9,11.5 7.43,15 5.5,15zM18.5,15c-1.93,0 -3.5,-1.57 -3.5,-3.5S16.57,8 18.5,8 22,9.57 22,11.5 20.43,15 18.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/volcano.xml b/compose/material/material/icons/generator/raw-icons/outlined/volcano.xml
deleted file mode 100644
index bcbef68..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/volcano.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-7l-2,5H6l-4,9h20L18,8zM7.3,15H9h1.35l0.5,-1.26l1.5,-3.74h4.14l2.86,10H5.08L7.3,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,1h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.121,5.468l2.828,-2.828l1.414,1.414l-2.828,2.828z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.64,4.05l1.414,-1.414l2.828,2.828l-1.414,1.414z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/volume_down.xml b/compose/material/material/icons/generator/raw-icons/outlined/volume_down.xml
deleted file mode 100644
index 556769e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/volume_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.97v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02 0,-1.77 -1.02,-3.29 -2.5,-4.03zM5,9v6h4l5,5L14,4L9,9L5,9zM12,8.83v6.34L9.83,13L7,13v-2h2.83L12,8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/volume_mute.xml b/compose/material/material/icons/generator/raw-icons/outlined/volume_mute.xml
deleted file mode 100644
index 5be0947..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/volume_mute.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8.83v6.34L11.83,13H9v-2h2.83L14,8.83M16,4l-5,5H7v6h4l5,5V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/volume_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/volume_off.xml
deleted file mode 100644
index 00f0382..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/volume_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.34,2.93L2.93,4.34 7.29,8.7 7,9L3,9v6h4l5,5v-6.59l4.18,4.18c-0.65,0.49 -1.38,0.88 -2.18,1.11v2.06c1.34,-0.3 2.57,-0.92 3.61,-1.75l2.05,2.05 1.41,-1.41L4.34,2.93zM10,15.17L7.83,13L5,13v-2h2.83l0.88,-0.88L10,11.41v3.76zM19,12c0,0.82 -0.15,1.61 -0.41,2.34l1.53,1.53c0.56,-1.17 0.88,-2.48 0.88,-3.87 0,-4.28 -2.99,-7.86 -7,-8.77v2.06c2.89,0.86 5,3.54 5,6.71zM12,4l-1.88,1.88L12,7.76zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v1.79l2.48,2.48c0.01,-0.08 0.02,-0.16 0.02,-0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/volume_up.xml b/compose/material/material/icons/generator/raw-icons/outlined/volume_up.xml
deleted file mode 100644
index 7299de9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/volume_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9v6h4l5,5L12,4L7,9L3,9zM10,8.83v6.34L7.83,13L5,13v-2h2.83L10,8.83zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM14,3.23v2.06c2.89,0.86 5,3.54 5,6.71s-2.11,5.85 -5,6.71v2.06c4.01,-0.91 7,-4.49 7,-8.77 0,-4.28 -2.99,-7.86 -7,-8.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/volunteer_activism.xml b/compose/material/material/icons/generator/raw-icons/outlined/volunteer_activism.xml
deleted file mode 100644
index b612974..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/volunteer_activism.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13c3.09,-2.81 6,-5.44 6,-7.7C22,3.45 20.55,2 18.7,2c-1.04,0 -2.05,0.49 -2.7,1.25C15.34,2.49 14.34,2 13.3,2C11.45,2 10,3.45 10,5.3C10,7.56 12.91,10.19 16,13zM13.3,4c0.44,0 0.89,0.21 1.18,0.55L16,6.34l1.52,-1.79C17.81,4.21 18.26,4 18.7,4C19.44,4 20,4.56 20,5.3c0,1.12 -2.04,3.17 -4,4.99c-1.96,-1.82 -4,-3.88 -4,-4.99C12,4.56 12.56,4 13.3,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,16h-2c0,-1.2 -0.75,-2.28 -1.87,-2.7L8.97,11H1v11h6v-1.44l7,1.94l8,-2.5v-1C22,17.34 20.66,16 19,16zM3,20v-7h2v7H3zM13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3 15,15.63 15,16c0,0 -1.99,-0.05 -2.3,-0.15l-2.38,-0.79l-0.63,1.9l2.38,0.79c0.51,0.17 1.04,0.26 1.58,0.26H19c0.39,0 0.74,0.23 0.9,0.56L13.97,20.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vpn_key.xml b/compose/material/material/icons/generator/raw-icons/outlined/vpn_key.xml
deleted file mode 100644
index bbe6271..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vpn_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,19h-6v-4h-2.68c-1.14,2.42 -3.6,4 -6.32,4 -3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7c2.72,0 5.17,1.58 6.32,4L24,9v6h-2v4zM18,17h2v-4h2v-2L11.94,11l-0.23,-0.67C11.01,8.34 9.11,7 7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.11,0 4.01,-1.34 4.71,-3.33l0.23,-0.67L18,13v4zM7,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3zM7,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vpn_key_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/vpn_key_off.xml
deleted file mode 100644
index 7e22e87..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vpn_key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.22,0 4.15,-1.21 5.19,-3l7.59,7.61l1.41,-1.41L2.81,2.81zM7,16c-2.21,0 -4,-1.79 -4,-4c0,-1.67 1.02,-3.1 2.47,-3.7l1.71,1.71C7.12,10 7.06,10 7,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2c0,-0.06 0,-0.12 -0.01,-0.18l1.74,1.74C10.22,14.48 9.14,16 7,16zM17,14.17V13h-1.17L17,14.17zM13.83,11H21v2h-2v3l2,2v-3h2V9H11.83L13.83,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vpn_lock.xml b/compose/material/material/icons/generator/raw-icons/outlined/vpn_lock.xml
deleted file mode 100644
index 7612776..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vpn_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,12c0.04,0.33 0.08,0.66 0.08,1 0,2.08 -0.8,3.97 -2.1,5.39 -0.26,-0.81 -1,-1.39 -1.9,-1.39h-1v-3c0,-0.55 -0.45,-1 -1,-1L7,13v-2h2c0.55,0 1,-0.45 1,-1L10,8h2c1.1,0 2,-0.9 2,-2L14,3.46c-0.95,-0.3 -1.95,-0.46 -3,-0.46C5.48,3 1,7.48 1,13s4.48,10 10,10 10,-4.48 10,-10c0,-0.34 -0.02,-0.67 -0.05,-1h-2.03zM10,20.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L8,16v1c0,1.1 0.9,2 2,2v1.93zM22,4v-0.5C22,2.12 20.88,1 19.5,1S17,2.12 17,3.5L17,4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1L23,5c0,-0.55 -0.45,-1 -1,-1zM21,4h-3v-0.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5L21,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/vrpano.xml b/compose/material/material/icons/generator/raw-icons/outlined/vrpano.xml
deleted file mode 100644
index abe364d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/vrpano.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.01,4C20.45,4 17.4,5.5 12,5.5c-5.31,0 -8.49,-1.49 -9.01,-1.49C2.46,4.01 2,4.45 2,5.02V19c0,0.57 0.46,1 0.99,1c0.57,0 3.55,-1.5 9.01,-1.5c5.42,0 8.44,1.5 9.01,1.5c0.53,0 0.99,-0.43 0.99,-1V5C22,4.43 21.54,4 21.01,4zM20,17.63c-2.01,-0.59 -4.62,-1.13 -8,-1.13c-3.39,0 -5.99,0.54 -8,1.13V6.38C6.58,7.11 9.32,7.5 12,7.5c3.38,0 5.99,-0.54 8,-1.13V17.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,10.99l-3.69,4.42C7.48,15.15 9.66,15 12,15c2.3,0 4.52,0.15 6.51,0.4L14,10l-2.83,3.39L9.17,10.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wallet.xml b/compose/material/material/icons/generator/raw-icons/outlined/wallet.xml
deleted file mode 100644
index b5ad926..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wallet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4H6C3.79,4 2,5.79 2,8v8c0,2.21 1.79,4 4,4h12c2.21,0 4,-1.79 4,-4V8C22,5.79 20.21,4 18,4zM16.14,13.77c-0.24,0.2 -0.57,0.28 -0.88,0.2L4.15,11.25C4.45,10.52 5.16,10 6,10h12c0.67,0 1.26,0.34 1.63,0.84L16.14,13.77zM6,6h12c1.1,0 2,0.9 2,2v0.55C19.41,8.21 18.73,8 18,8H6C5.27,8 4.59,8.21 4,8.55V8C4,6.9 4.9,6 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wallpaper.xml b/compose/material/material/icons/generator/raw-icons/outlined/wallpaper.xml
deleted file mode 100644
index 6b7eb35..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wallpaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h7L11,2L4,2c-1.1,0 -2,0.9 -2,2v7h2L4,4zM10,13l-4,5h12l-3,-4 -2.03,2.71L10,13zM17,8.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S14,7.67 14,8.5s0.67,1.5 1.5,1.5S17,9.33 17,8.5zM20,2h-7v2h7v7h2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20h-7v2h7c1.1,0 2,-0.9 2,-2v-7h-2v7zM4,13L2,13v7c0,1.1 0.9,2 2,2h7v-2L4,20v-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/warehouse.xml b/compose/material/material/icons/generator/raw-icons/outlined/warehouse.xml
deleted file mode 100644
index c5a5c57..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/warehouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.35V19h-2v-8H6v8H4V8.35l8,-3.2L20,8.35zM22,21V7L12,3L2,7v14h6v-8h8v8H22zM11,19H9v2h2V19zM13,16h-2v2h2V16zM15,19h-2v2h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/warning.xml b/compose/material/material/icons/generator/raw-icons/outlined/warning.xml
deleted file mode 100644
index a02bc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/warning_amber.xml b/compose/material/material/icons/generator/raw-icons/outlined/warning_amber.xml
deleted file mode 100644
index e815a74..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/warning_amber.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.99L19.53,19L4.47,19L12,5.99M12,2L1,21h22L12,2zM13,16h-2v2h2v-2zM13,10h-2v4h2v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wash.xml b/compose/material/material/icons/generator/raw-icons/outlined/wash.xml
deleted file mode 100644
index 533fa04..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25c0,-0.67 -0.53,-1.2 -1.18,-1.24L8.87,10l1.48,-2.6c0.09,-0.17 0.14,-0.34 0.14,-0.54c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.12,5l-7.18,6.8C1.34,12.36 1,13.15 1,13.97V20c0,1.66 1.34,3 3,3h13.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1H20.75zM10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21zM13.5,9C14.33,9 15,8.33 15,7.5C15,6.66 13.5,5 13.5,5S12,6.66 12,7.5C12,8.33 12.67,9 13.5,9zM18.5,1c0,0 -2.5,2.83 -2.5,4.5C16,6.88 17.12,8 18.5,8S21,6.88 21,5.5C21,3.83 18.5,1 18.5,1zM18.5,6.5c-0.55,0 -1,-0.45 -1,-1c0,-0.4 0.43,-1.22 1,-2.05c0.57,0.83 1,1.65 1,2.05C19.5,6.05 19.05,6.5 18.5,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/watch.xml b/compose/material/material/icons/generator/raw-icons/outlined/watch.xml
deleted file mode 100644
index a2455de..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/watch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.31,2l0.41,2.48C13.87,4.17 12.96,4 12,4c-0.95,0 -1.87,0.17 -2.71,0.47L9.7,2h4.61m0.41,17.52L14.31,22L9.7,22l-0.41,-2.47c0.84,0.3 1.76,0.47 2.71,0.47 0.96,0 1.87,-0.17 2.72,-0.48M16,0L8,0l-0.95,5.73C5.19,7.19 4,9.45 4,12s1.19,4.81 3.05,6.27L8,24h8l0.96,-5.73C18.81,16.81 20,14.54 20,12s-1.19,-4.81 -3.04,-6.27L16,0zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/watch_later.xml b/compose/material/material/icons/generator/raw-icons/outlined/watch_later.xml
deleted file mode 100644
index 571c725..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/watch_later.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM12.5,7H11v6l5.2,3.2l0.8,-1.3l-4.5,-2.7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/watch_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/watch_off.xml
deleted file mode 100644
index 386c5ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/watch_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5c0,0.64 -0.13,1.25 -0.35,1.82l1.5,1.5C18.69,14.33 19,13.2 19,12c0,-2.22 -1.03,-4.19 -2.64,-5.47L15,2H9L8.04,5.21l2.14,2.14C10.75,7.13 11.36,7 12,7zM10.49,4h3.02l0.38,1.27c-0.55,-0.16 -1.97,-0.51 -3.78,0L10.49,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67 5,10.8 5,12c0,2.22 1.03,4.19 2.64,5.47L9,22h6l0.96,-3.21l3.82,3.82l1.41,-1.41L2.81,2.81zM13.51,20h-3.02l-0.38,-1.27c0.55,0.15 1.97,0.51 3.78,0L13.51,20zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-0.64 0.13,-1.25 0.35,-1.82l6.47,6.47C13.25,16.87 12.64,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/water.xml b/compose/material/material/icons/generator/raw-icons/outlined/water.xml
deleted file mode 100644
index c9edfe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/water.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,14H22H21.98zM5.35,13c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,11 3.24,12 2,12v2C3.9,14 4.17,13 5.35,13zM18.67,15c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.19,0 1.42,1 3.33,1c1.94,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1v-2C20.76,16 20.62,15 18.67,15zM5.35,9c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1V8c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C10.04,7 9.9,8 8.66,8C7.47,8 7.24,7 5.33,7C3.38,7 3.24,8 2,8v2C3.9,10 4.17,9 5.35,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/water_damage.xml b/compose/material/material/icons/generator/raw-icons/outlined/water_damage.xml
deleted file mode 100644
index f76a5e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/water_damage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,12h3v8h14v-8h3L12,3zM7,18v-7.81l5,-4.5l5,4.5V18H7zM14,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 2,-4 2,-4S14,12.9 14,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/water_drop.xml b/compose/material/material/icons/generator/raw-icons/outlined/water_drop.xml
deleted file mode 100644
index 5e49745..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/water_drop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM12,20c-3.35,0 -6,-2.57 -6,-6.2c0,-2.34 1.95,-5.44 6,-9.14c4.05,3.7 6,6.79 6,9.14C18,17.43 15.35,20 12,20zM7.83,14c0.37,0 0.67,0.26 0.74,0.62c0.41,2.22 2.28,2.98 3.64,2.87c0.43,-0.02 0.79,0.32 0.79,0.75c0,0.4 -0.32,0.73 -0.72,0.75c-2.13,0.13 -4.62,-1.09 -5.19,-4.12C7.01,14.42 7.37,14 7.83,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/waterfall_chart.xml b/compose/material/material/icons/generator/raw-icons/outlined/waterfall_chart.xml
deleted file mode 100644
index b2b74f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/waterfall_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h3v16h-3V4zM3,13h3v7H3V13zM14,4h3v3h-3V4zM10,5h3v4h-3V5zM7,10h3v4H7V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/waves.xml b/compose/material/material/icons/generator/raw-icons/outlined/waves.xml
deleted file mode 100644
index 23733dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/waves.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16.99c-1.35,0 -2.2,0.42 -2.95,0.8 -0.65,0.33 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.42 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.42 2.95,-0.8c0.65,-0.33 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM17,12.54c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.32 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM19.95,4.46c-0.75,-0.38 -1.58,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.37 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.93c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,5.04c-0.9,0 -1.4,-0.25 -2.05,-0.58zM17,8.09c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.35 -1.15,0.6 -2.05,0.6s-1.4,-0.25 -2.05,-0.6c-0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.35 -1.15,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.32 1.18,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,9.49c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/waving_hand.xml b/compose/material/material/icons/generator/raw-icons/outlined/waving_hand.xml
deleted file mode 100644
index 3751772..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/waving_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.03,4.95L3.49,8.49c-3.32,3.32 -3.32,8.7 0,12.02s8.7,3.32 12.02,0l6.01,-6.01c0.97,-0.97 0.97,-2.56 0,-3.54c-0.12,-0.12 -0.25,-0.23 -0.39,-0.32l0.39,-0.39c0.97,-0.97 0.97,-2.56 0,-3.54c-0.16,-0.16 -0.35,-0.3 -0.54,-0.41c0.4,-0.92 0.23,-2.02 -0.52,-2.77c-0.87,-0.87 -2.22,-0.96 -3.2,-0.28c-0.1,-0.15 -0.21,-0.29 -0.34,-0.42c-0.97,-0.97 -2.56,-0.97 -3.54,0l-2.51,2.51c-0.09,-0.14 -0.2,-0.27 -0.32,-0.39C9.58,3.98 8,3.98 7.03,4.95zM8.44,6.37c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-3.18,3.18c1.17,1.17 1.17,3.07 0,4.24l1.41,1.41c1.45,-1.45 1.82,-3.57 1.12,-5.36l6.3,-6.3c0.2,-0.2 0.51,-0.2 0.71,0s0.2,0.51 0,0.71l-4.6,4.6l1.41,1.41l6.01,-6.01c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-6.01,6.01l1.41,1.41l4.95,-4.95c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-5.66,5.66l1.41,1.41l3.54,-3.54c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71L14.1,19.1c-2.54,2.54 -6.65,2.54 -9.19,0s-2.54,-6.65 0,-9.19L8.44,6.37zM23,17c0,3.31 -2.69,6 -6,6v-1.5c2.48,0 4.5,-2.02 4.5,-4.5H23zM1,7c0,-3.31 2.69,-6 6,-6v1.5C4.52,2.5 2.5,4.52 2.5,7H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wb_auto.xml b/compose/material/material/icons/generator/raw-icons/outlined/wb_auto.xml
deleted file mode 100644
index a9eb93f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wb_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L9,7L7,7zM6.85,12.65L8,9l1.15,3.65h-2.3zM22,7l-1.2,6.29L19.3,7h-1.6l-1.49,6.29L15,7h-0.76l-0.01,0.01C12.76,5.18 10.53,4 8,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8c2.96,0 5.55,-1.61 6.93,-4 0.03,-0.06 0.05,-0.12 0.08,-0.18 0.05,-0.08 0.09,-0.17 0.14,-0.25l0.1,0.43L17,16l1.5,-6.1L20,16h1.75l2.05,-9L22,7zM13.37,14.67C12.38,16.64 10.35,18 8,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6c0,0.96 -0.23,1.86 -0.63,2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wb_cloudy.xml b/compose/material/material/icons/generator/raw-icons/outlined/wb_cloudy.xml
deleted file mode 100644
index 866187c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wb_cloudy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,6c2.61,0 4.89,1.86 5.4,4.43l0.3,1.5 1.52,0.11c1.56,0.11 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3h-13c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.95,6 12.01,6m0,-2C9.12,4 6.6,5.64 5.35,8.04 2.35,8.36 0.01,10.91 0.01,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.64,-4.96C18.68,6.59 15.65,4 12.01,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wb_incandescent.xml b/compose/material/material/icons/generator/raw-icons/outlined/wb_incandescent.xml
deleted file mode 100644
index c767634..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wb_incandescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.55,19.09l1.41,1.41 1.79,-1.8 -1.41,-1.41zM11,20h2v3h-2zM1,11h3v2L1,13zM13,4.05v3.96l1,0.58c1.24,0.72 2,2.04 2,3.46 0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4c0,-1.42 0.77,-2.74 2,-3.46l1,-0.58L11,4.05h2m2,-2L9,2.05v4.81C7.21,7.9 6,9.83 6,12.05c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-2.22 -1.21,-4.15 -3,-5.19L15,2.05zM20,11h3v2h-3zM17.24,18.71l1.79,1.8 1.41,-1.41 -1.8,-1.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wb_iridescent.xml b/compose/material/material/icons/generator/raw-icons/outlined/wb_iridescent.xml
deleted file mode 100644
index f1b21cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wb_iridescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14L19,9L5,9v6zM7,11h10v2L7,13v-2zM11,1h2v3h-2zM20.46,5.01L19.04,3.6l-1.79,1.79 1.41,1.41zM11,20h2v3h-2zM17.24,18.71l1.79,1.8 1.42,-1.42 -1.8,-1.79zM4.96,3.595l1.788,1.79L5.34,6.79 3.553,5.003zM3.55,19.08l1.41,1.42 1.79,-1.8 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wb_shade.xml b/compose/material/material/icons/generator/raw-icons/outlined/wb_shade.xml
deleted file mode 100644
index bdf98ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wb_shade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12v2.5l5.5,5.5H22L14,12zM14,20h3l-3,-3V20zM8,4l-6,6h2v10h8V10h2L8,4zM9,14H7v-4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wb_sunny.xml b/compose/material/material/icons/generator/raw-icons/outlined/wb_sunny.xml
deleted file mode 100644
index 8bac9e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wb_sunny.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.76,4.84l-1.8,-1.79 -1.41,1.41 1.79,1.79zM1,10.5h3v2L1,12.5zM11,0.55h2L13,3.5h-2zM19.04,3.045l1.408,1.407 -1.79,1.79 -1.407,-1.408zM17.24,18.16l1.79,1.8 1.41,-1.41 -1.8,-1.79zM20,10.5h3v2h-3zM12,5.5c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM12,15.5c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM11,19.5h2v2.95h-2zM3.55,18.54l1.41,1.41 1.79,-1.8 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wb_twilight.xml b/compose/material/material/icons/generator/raw-icons/outlined/wb_twilight.xml
deleted file mode 100644
index 474dbed..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wb_twilight.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.955,8.662l2.121,-2.122l1.415,1.414l-2.121,2.122z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18h20v2h-20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.543,7.925l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h14c0,-3.87 -3.13,-7 -7,-7S5,12.13 5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wc.xml b/compose/material/material/icons/generator/raw-icons/outlined/wc.xml
deleted file mode 100644
index adc526e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,22v-7.5L4,14.5L4,9c0,-1.1 0.9,-2 2,-2h3c1.1,0 2,0.9 2,2v5.5L9.5,14.5L9.5,22h-4zM18,22v-6h3l-2.54,-7.63C18.18,7.55 17.42,7 16.56,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37L12,16h3v6h3zM7.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2zM16.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/web.xml b/compose/material/material/icons/generator/raw-icons/outlined/web.xml
deleted file mode 100644
index dddb434..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/web.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,9h10.5v3.5H4V9zM4,14.5h10.5V18L4,18V14.5zM20,18l-3.5,0V9H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/web_asset.xml b/compose/material/material/icons/generator/raw-icons/outlined/web_asset.xml
deleted file mode 100644
index 88643ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/web_asset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM19,18L5,18L5,8h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/web_asset_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/web_asset_off.xml
deleted file mode 100644
index 3f5366c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/web_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H20c1.11,0 2,0.9 2,2v12c0,0.34 -0.09,0.66 -0.23,0.94L20,17.17V8h-9.17L6.83,4zM20.49,23.31L17.17,20H4c-1.11,0 -2,-0.9 -2,-2V6c0,-0.34 0.08,-0.66 0.23,-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM15.17,18l-10,-10H4v10H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/web_stories.xml b/compose/material/material/icons/generator/raw-icons/outlined/web_stories.xml
deleted file mode 100644
index 23952f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/web_stories.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v16c1.1,0 2,-0.9 2,-2V6C19,4.9 18.1,4 17,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4C15,2.9 14.1,2 13,2zM13,20H4V4h9V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6v12c0.83,0 1.5,-0.67 1.5,-1.5v-9C22.5,6.67 21.83,6 21,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/webhook.xml b/compose/material/material/icons/generator/raw-icons/outlined/webhook.xml
deleted file mode 100644
index 928e143..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/webhook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15l5.88,0c0.27,-0.31 0.67,-0.5 1.12,-0.5c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5c-0.44,0 -0.84,-0.19 -1.12,-0.5l-3.98,0c-0.46,2.28 -2.48,4 -4.9,4c-2.76,0 -5,-2.24 -5,-5c0,-2.42 1.72,-4.44 4,-4.9l0,2.07C4.84,13.58 4,14.7 4,16c0,1.65 1.35,3 3,3s3,-1.35 3,-3V15zM12.5,4c1.65,0 3,1.35 3,3h2c0,-2.76 -2.24,-5 -5,-5l0,0c-2.76,0 -5,2.24 -5,5c0,1.43 0.6,2.71 1.55,3.62l-2.35,3.9C6.02,14.66 5.5,15.27 5.5,16c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5c0,-0.16 -0.02,-0.31 -0.07,-0.45l3.38,-5.63C10.49,9.61 9.5,8.42 9.5,7C9.5,5.35 10.85,4 12.5,4zM17,13c-0.64,0 -1.23,0.2 -1.72,0.54l-3.05,-5.07C11.53,8.35 11,7.74 11,7c0,-0.83 0.67,-1.5 1.5,-1.5S14,6.17 14,7c0,0.15 -0.02,0.29 -0.06,0.43l2.19,3.65C16.41,11.03 16.7,11 17,11l0,0c2.76,0 5,2.24 5,5c0,2.76 -2.24,5 -5,5c-1.85,0 -3.47,-1.01 -4.33,-2.5l2.67,0C15.82,18.82 16.39,19 17,19c1.65,0 3,-1.35 3,-3S18.65,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/weekend.xml b/compose/material/material/icons/generator/raw-icons/outlined/weekend.xml
deleted file mode 100644
index 284772c..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/weekend.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9L21,7c0,-1.65 -1.35,-3 -3,-3L6,4C4.35,4 3,5.35 3,7v2c-1.65,0 -3,1.35 -3,3v5c0,1.65 1.35,3 3,3h18c1.65,0 3,-1.35 3,-3v-5c0,-1.65 -1.35,-3 -3,-3zM5,7c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v2.78c-0.61,0.55 -1,1.34 -1,2.22v2L6,14v-2c0,-0.88 -0.39,-1.67 -1,-2.22L5,7zM22,17c0,0.55 -0.45,1 -1,1L3,18c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h16v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/west.xml b/compose/material/material/icons/generator/raw-icons/outlined/west.xml
deleted file mode 100644
index e383687..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,19l1.41,-1.41L5.83,13H22V11H5.83l4.59,-4.59L9,5l-7,7L9,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/whatsapp.xml b/compose/material/material/icons/generator/raw-icons/outlined/whatsapp.xml
deleted file mode 100644
index 82a2a5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/whatsapp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.05,4.91C17.18,3.03 14.69,2 12.04,2c-5.46,0 -9.91,4.45 -9.91,9.91c0,1.75 0.46,3.45 1.32,4.95L2.05,22l5.25,-1.38c1.45,0.79 3.08,1.21 4.74,1.21h0c0,0 0,0 0,0c5.46,0 9.91,-4.45 9.91,-9.91C21.95,9.27 20.92,6.78 19.05,4.91zM12.04,20.15L12.04,20.15c-1.48,0 -2.93,-0.4 -4.2,-1.15l-0.3,-0.18l-3.12,0.82l0.83,-3.04l-0.2,-0.31c-0.82,-1.31 -1.26,-2.83 -1.26,-4.38c0,-4.54 3.7,-8.24 8.24,-8.24c2.2,0 4.27,0.86 5.82,2.42c1.56,1.56 2.41,3.63 2.41,5.83C20.28,16.46 16.58,20.15 12.04,20.15zM16.56,13.99c-0.25,-0.12 -1.47,-0.72 -1.69,-0.81c-0.23,-0.08 -0.39,-0.12 -0.56,0.12c-0.17,0.25 -0.64,0.81 -0.78,0.97c-0.14,0.17 -0.29,0.19 -0.54,0.06c-0.25,-0.12 -1.05,-0.39 -1.99,-1.23c-0.74,-0.66 -1.23,-1.47 -1.38,-1.72c-0.14,-0.25 -0.02,-0.38 0.11,-0.51c0.11,-0.11 0.25,-0.29 0.37,-0.43c0.12,-0.14 0.17,-0.25 0.25,-0.41c0.08,-0.17 0.04,-0.31 -0.02,-0.43c-0.06,-0.12 -0.56,-1.34 -0.76,-1.84c-0.2,-0.48 -0.41,-0.42 -0.56,-0.43C8.86,7.33 8.7,7.33 8.53,7.33c-0.17,0 -0.43,0.06 -0.66,0.31C7.65,7.89 7.01,8.49 7.01,9.71c0,1.22 0.89,2.4 1.01,2.56c0.12,0.17 1.75,2.67 4.23,3.74c0.59,0.26 1.05,0.41 1.41,0.52c0.59,0.19 1.13,0.16 1.56,0.1c0.48,-0.07 1.47,-0.6 1.67,-1.18c0.21,-0.58 0.21,-1.07 0.14,-1.18S16.81,14.11 16.56,13.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/whatshot.xml b/compose/material/material/icons/generator/raw-icons/outlined/whatshot.xml
deleted file mode 100644
index 210f8ea1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/whatshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.57,13.16c-1.36,0.28 -2.17,1.16 -2.17,2.41 0,1.34 1.11,2.42 2.49,2.42 2.05,0 3.71,-1.66 3.71,-3.71 0,-1.07 -0.15,-2.12 -0.46,-3.12 -0.79,1.07 -2.2,1.72 -3.57,2zM13.5,0.67s0.74,2.65 0.74,4.8c0,2.06 -1.35,3.73 -3.41,3.73 -2.07,0 -3.63,-1.67 -3.63,-3.73l0.03,-0.36C5.21,7.51 4,10.62 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,8.61 17.41,3.8 13.5,0.67zM12,20c-3.31,0 -6,-2.69 -6,-6 0,-1.53 0.3,-3.04 0.86,-4.43 1.01,1.01 2.41,1.63 3.97,1.63 2.66,0 4.75,-1.83 5.28,-4.43C17.34,8.97 18,11.44 18,14c0,3.31 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wheelchair_pickup.xml b/compose/material/material/icons/generator/raw-icons/outlined/wheelchair_pickup.xml
deleted file mode 100644
index c86f4382..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wheelchair_pickup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S4.5,5.11 4.5,4zM10,10.95V9c0,-1.1 -0.9,-2 -2,-2H5C3.9,7 3,7.9 3,9v6h2v7h3.5v-0.11c-1.24,-1.26 -2,-2.99 -2,-4.89C6.5,14.42 7.91,12.16 10,10.95zM16.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3c0,-1.11 0.61,-2.06 1.5,-2.58v-2.16C9.98,12.9 8.5,14.77 8.5,17c0,2.76 2.24,5 5,5s5,-2.24 5,-5H16.5zM19.54,14H15V8h-2v8h5.46l2.47,3.71l1.66,-1.11L19.54,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/where_to_vote.xml b/compose/material/material/icons/generator/raw-icons/outlined/where_to_vote.xml
deleted file mode 100644
index 16c67d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/where_to_vote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C7.59,1 4,4.59 4,9c0,5.57 6.96,13.34 7.26,13.67l0.74,0.82 0.74,-0.82C13.04,22.34 20,14.57 20,9c0,-4.41 -3.59,-8 -8,-8zM12,20.47C9.82,17.86 6,12.54 6,9c0,-3.31 2.69,-6 6,-6s6,2.69 6,6c0,3.83 -4.25,9.36 -6,11.47zM10.47,11.17L8.71,9.4l-1.42,1.42L10.47,14l6.01,-6.01 -1.41,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/widgets.xml b/compose/material/material/icons/generator/raw-icons/outlined/widgets.xml
deleted file mode 100644
index 216d9fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/widgets.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.66,4.52l2.83,2.83 -2.83,2.83 -2.83,-2.83 2.83,-2.83M9,5v4L5,9L5,5h4m10,10v4h-4v-4h4M9,15v4L5,19v-4h4m7.66,-13.31L11,7.34 16.66,13l5.66,-5.66 -5.66,-5.65zM11,3L3,3v8h8L11,3zM21,13h-8v8h8v-8zM11,13L3,13v8h8v-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/width_full.xml b/compose/material/material/icons/generator/raw-icons/outlined/width_full.xml
deleted file mode 100644
index ab802cb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/width_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,18V6h1v12H4zM7,18V6h10v12H7zM20,18h-1V6h1V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/width_normal.xml b/compose/material/material/icons/generator/raw-icons/outlined/width_normal.xml
deleted file mode 100644
index 65448e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/width_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,18V6h4v12H4zM10,18V6h4v12H10zM20,18h-4V6h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/width_wide.xml b/compose/material/material/icons/generator/raw-icons/outlined/width_wide.xml
deleted file mode 100644
index 61f1a42..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/width_wide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,18V6h2v12H4zM8,18V6h8v12H8zM20,18h-2V6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi.xml
deleted file mode 100644
index b95c22a..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9l2,2c4.97,-4.97 13.03,-4.97 18,0l2,-2C16.93,2.93 7.08,2.93 1,9zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0zM5,13l2,2c2.76,-2.76 7.24,-2.76 10,0l2,-2C15.14,9.14 8.87,9.14 5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_1_bar.xml
deleted file mode 100644
index dff42e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.53,17.46L12,21l-3.53,-3.54C9.37,16.56 10.62,16 12,16S14.63,16.56 15.53,17.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_2_bar.xml
deleted file mode 100644
index 7d24069..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c3.03,0 5.78,1.23 7.76,3.22l-2.12,2.12C16.2,13.9 14.2,13 12,13c-2.2,0 -4.2,0.9 -5.64,2.35l-2.12,-2.12C6.22,11.23 8.97,10 12,10zM12,16c-1.38,0 -2.63,0.56 -3.53,1.46L12,21l3.53,-3.54C14.63,16.56 13.38,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_calling.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_calling.xml
deleted file mode 100644
index 11c448f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_calling.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.51c-1.24,0 -2.45,-0.2 -3.57,-0.57c-0.1,-0.04 -0.21,-0.05 -0.31,-0.05c-0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4c0,9.39 7.61,17 17,17c0.55,0 1,-0.45 1,-1v-3.49C21,15.96 20.55,15.51 20,15.51zM5.03,5h1.5C6.6,5.89 6.75,6.76 6.99,7.59l-1.2,1.2C5.38,7.59 5.12,6.32 5.03,5zM19,18.97c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.19,-1.19c0.85,0.24 1.72,0.39 2.6,0.45V18.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4.95C21.79,4.78 19.67,3 16.5,3c-3.18,0 -5.29,1.78 -5.5,1.95L16.5,12L22,4.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_calling_3.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_calling_3.xml
deleted file mode 100644
index 1da56cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_calling_3.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,4.5c1.79,0 3.42,0.73 4.59,1.91l1.06,-1.06C20.7,3.9 18.7,3 16.49,3c-2.21,0 -4.21,0.9 -5.66,2.34l1.06,1.06C13.08,5.23 14.7,4.5 16.49,4.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,6c-1.38,0 -2.63,0.56 -3.54,1.46l1.06,1.06c0.63,-0.63 1.51,-1.03 2.47,-1.03s1.84,0.39 2.47,1.03l1.06,-1.06C19.12,6.56 17.87,6 16.49,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,9c-0.55,0 -1.05,0.22 -1.41,0.59L16.49,11l1.41,-1.41C17.54,9.22 17.04,9 16.49,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.2,14.87l-3.67,-0.73c-0.5,-0.1 -0.83,0.2 -0.9,0.27l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3L4,3C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.55,0.03 1.03,-0.43 1.03,-1v-4.15C21,15.37 20.66,14.96 20.2,14.87zM5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7 5.27,6.37 5.1,5zM19,18.9c-1.37,-0.18 -2.7,-0.53 -4,-1.07l1.65,-1.63L19,16.67V18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_channel.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_channel.xml
deleted file mode 100644
index ab4133d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_channel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3c-2.51,0 -3.77,5.61 -4.4,10.57C10.79,10.66 9.61,8 8,8C4.43,8 3,21 3,21h2.01c0.61,-5.27 2,-9.82 2.99,-10.87c0.98,1.05 2.38,5.61 2.99,10.87H13c0.5,-2.53 2,-6 3,-6s2.5,3.53 3,6h2C21,21 20.5,3 16,3zM16,13c-0.99,0 -1.82,0.62 -2.5,1.5c0.57,-4.77 1.54,-8.62 2.5,-9.44c0.97,0.81 1.91,4.67 2.49,9.43C17.81,13.62 16.98,13 16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_find.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_find.xml
deleted file mode 100644
index a9c8692..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_find.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c4.14,0 7.88,1.68 10.59,4.39L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21l1.41,-1.42L2.93,9.08C5.45,7.16 8.59,6 12,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14c0,-2.24 -1.76,-4 -4,-4s-4,1.76 -4,4c0,2.24 1.76,4 4,4c0.75,0 1.44,-0.21 2.03,-0.56L21.59,20L23,18.59l-2.56,-2.56C20.79,15.44 21,14.75 21,14zM17,16c-1.12,0 -2,-0.88 -2,-2c0,-1.12 0.88,-2 2,-2s2,0.88 2,2C19,15.12 18.12,16 17,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_lock.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_lock.xml
deleted file mode 100644
index f0ee647..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_off.xml
deleted file mode 100644
index 68c7929..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l2,-2c-3.73,-3.73 -8.87,-5.15 -13.7,-4.31l2.58,2.58c3.3,-0.02 6.61,1.22 9.12,3.73zM19,13c-1.08,-1.08 -2.36,-1.85 -3.72,-2.33l3.02,3.02 0.7,-0.69zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0zM3.41,1.64L2,3.05 5.05,6.1C3.59,6.83 2.22,7.79 1,9l2,2c1.23,-1.23 2.65,-2.16 4.17,-2.78l2.24,2.24C7.79,10.89 6.27,11.74 5,13l2,2c1.35,-1.35 3.11,-2.04 4.89,-2.06l7.08,7.08 1.41,-1.41L3.41,1.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_password.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_password.xml
deleted file mode 100644
index e2b7aeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98l-2.12,2.13C19.35,8.57 15.85,7 12,7s-7.35,1.57 -9.88,4.11L0,8.98C3.07,5.9 7.31,4 12,4S20.93,5.9 24,8.98zM4.24,13.22l2.12,2.12C7.8,13.9 9.8,13 12,13c2.2,0 4.2,0.9 5.64,2.35l2.12,-2.12C17.78,11.23 15.03,10 12,10C8.97,10 6.22,11.23 4.24,13.22zM24,20v3c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1v-1c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v1C23.55,19 24,19.45 24,20zM22,18c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h2V18zM12,16c-1.38,0 -2.63,0.56 -3.53,1.46L12,21l3.53,-3.54C14.63,16.56 13.38,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_protected_setup.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_protected_setup.xml
deleted file mode 100644
index a0ca4576..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_protected_setup.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.71,5.29L19,3h-8v8l2.3,-2.3c1.97,1.46 3.25,3.78 3.25,6.42c0,1.31 -0.32,2.54 -0.88,3.63c2.33,-1.52 3.88,-4.14 3.88,-7.13C19.55,9.1 18.44,6.85 16.71,5.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.46,8.88c0,-1.31 0.32,-2.54 0.88,-3.63C6,6.77 4.46,9.39 4.46,12.38c0,2.52 1.1,4.77 2.84,6.33L5,21h8v-8l-2.3,2.3C8.74,13.84 7.46,11.52 7.46,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering.xml
deleted file mode 100644
index 1e68b1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.48 -0.81,2.75 -2,3.45l1,1.74c1.79,-1.04 3,-2.97 3,-5.19zM12,3C6.48,3 2,7.48 2,13c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,18.53 4,15.96 4,13c0,-4.42 3.58,-8 8,-8s8,3.58 8,8c0,2.96 -1.61,5.53 -4,6.92l1,1.73c2.99,-1.73 5,-4.95 5,-8.65 0,-5.52 -4.48,-10 -10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_error.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_error.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_error_rounded.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_error_rounded.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_error_rounded.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_off.xml
deleted file mode 100644
index 9bfede4..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wifi_tethering_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6 2,10.71 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-1.75 0.57,-3.35 1.51,-4.66l1.43,1.43C6.35,10.7 6,11.81 6,13c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-0.63 0.15,-1.23 0.41,-1.76l1.61,1.61c0,0.05 -0.02,0.1 -0.02,0.15c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15c0.05,0 0.1,-0.01 0.16,-0.02l7.62,7.62l1.41,-1.41L2.81,2.81zM17.7,14.87C17.89,14.28 18,13.65 18,13c0,-3.31 -2.69,-6 -6,-6c-0.65,0 -1.28,0.1 -1.87,0.3l1.71,1.71C11.89,9 11.95,9 12,9c2.21,0 4,1.79 4,4c0,0.05 0,0.11 -0.01,0.16L17.7,14.87zM12,5c4.42,0 8,3.58 8,8c0,1.22 -0.27,2.37 -0.77,3.4l1.49,1.49C21.53,16.45 22,14.78 22,13c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.46 -4.89,1.28l1.48,1.48C9.63,5.27 10.78,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wind_power.xml b/compose/material/material/icons/generator/raw-icons/outlined/wind_power.xml
deleted file mode 100644
index 7dd0d48..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wind_power.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,7h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.21,18.61l-2.28,-4.1c-0.27,-0.48 -0.73,-0.83 -1.26,-0.97l-2.69,-0.67c-0.02,-0.47 -0.14,-0.92 -0.37,-1.33l3.96,-6.59c0.65,-1.08 0.3,-2.48 -0.78,-3.13c-0.36,-0.22 -0.77,-0.32 -1.17,-0.32c-0.56,0 -1.12,0.21 -1.56,0.62l-3.43,3.21C12.23,5.7 12,6.23 12,6.78v3.4c-0.47,0.17 -0.89,0.45 -1.23,0.82H3.28C2.02,11 1,12.02 1,13.28c0,1.02 0.67,1.91 1.65,2.19l4.51,1.29c0.18,0.05 0.37,0.08 0.55,0.08c0.36,0 0.72,-0.1 1.03,-0.29l2.24,-1.34c0.29,0.26 0.63,0.47 1.02,0.61V21c-1.1,0 -2,0.9 -2,2h6c0,-1.1 -0.9,-2 -2,-2v-4.28l4.61,4.61c0.45,0.45 1.03,0.67 1.61,0.67c0.58,0 1.17,-0.22 1.61,-0.67h0C22.55,20.61 22.71,19.5 22.21,18.61zM7.72,14.84L3.2,13.55C3.08,13.52 3,13.4 3,13.28C3,13.13 3.13,13 3.28,13h6.73c0,0.15 0.01,0.3 0.03,0.44L7.72,14.84zM13,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C14,13.55 13.55,14 13,14zM14,10.14V6.78l3.43,-3.21c0.05,-0.05 0.19,-0.12 0.34,-0.04c0.13,0.08 0.18,0.25 0.1,0.38l-3.74,6.24L14,10.14zM20.42,19.92c-0.05,0.05 -0.24,0.16 -0.4,0l-4.85,-4.85c0.08,-0.09 0.16,-0.18 0.24,-0.28l2.78,0.69l2.28,4.1C20.53,19.69 20.51,19.83 20.42,19.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/window.xml b/compose/material/material/icons/generator/raw-icons/outlined/window.xml
deleted file mode 100644
index 926f2ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/window.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11h-6V5h6V11zM11,5v6H5V5H11zM5,13h6v6H5V13zM13,19v-6h6v6H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wine_bar.xml b/compose/material/material/icons/generator/raw-icons/outlined/wine_bar.xml
deleted file mode 100644
index 6007633..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wine_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3l0,6c0,2.97 2.16,5.43 5,5.91V19H8v2h8v-2h-3v-4.09c2.84,-0.48 5,-2.94 5,-5.91V3H6zM12,13c-1.86,0 -3.41,-1.28 -3.86,-3h7.72C15.41,11.72 13.86,13 12,13zM16,8H8l0,-3h8L16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/woman.xml b/compose/material/material/icons/generator/raw-icons/outlined/woman.xml
deleted file mode 100644
index 46868cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,8.31C13.62,7.52 12.85,7 12,7s-1.62,0.52 -1.94,1.31L7,16h3v6h4v-6h3L13.94,8.31z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/woman_2.xml b/compose/material/material/icons/generator/raw-icons/outlined/woman_2.xml
deleted file mode 100644
index 1f42b3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/woman_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,8.31C13.62,7.52 12.85,7 12,7s-1.62,0.52 -1.94,1.31L7,16h3.5v6h3v-6H17L13.94,8.31z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/work.xml b/compose/material/material/icons/generator/raw-icons/outlined/work.xml
deleted file mode 100644
index 4cc0c1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM14,6h-4L10,4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/work_history.xml b/compose/material/material/icons/generator/raw-icons/outlined/work_history.xml
deleted file mode 100644
index f467dce..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/work_history.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19V8h16v3.29c0.72,0.22 1.4,0.54 2,0.97V8c0,-1.11 -0.89,-2 -2,-2h-4V4c0,-1.11 -0.89,-2 -2,-2h-4C8.89,2 8,2.89 8,4v2H4C2.89,6 2.01,6.89 2.01,8L2,19c0,1.11 0.89,2 2,2h7.68c-0.3,-0.62 -0.5,-1.29 -0.6,-2H4zM10,4h4v2h-4V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/work_off.xml b/compose/material/material/icons/generator/raw-icons/outlined/work_off.xml
deleted file mode 100644
index 963bdcd..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/work_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v2h-3.6l2,2H20v7.6l2,2V8c0,-1.11 -0.89,-2 -2,-2h-4V4c0,-1.11 -0.89,-2 -2,-2h-4c-0.99,0 -1.8,0.7 -1.96,1.64L10,5.6V4zM3.4,1.84L1.99,3.25 4.74,6H4c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h15.74l2,2 1.41,-1.41L3.4,1.84zM4,19V8h2.74l11,11H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/work_outline.xml b/compose/material/material/icons/generator/raw-icons/outlined/work_outline.xml
deleted file mode 100644
index c1dd241..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/work_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6L14,4h-4v2h4zM4,8v11h16L20,8L4,8zM20,6c1.11,0 2,0.89 2,2v11c0,1.11 -0.89,2 -2,2L4,21c-1.11,0 -2,-0.89 -2,-2l0.01,-11c0,-1.11 0.88,-2 1.99,-2h4L8,4c0,-1.11 0.89,-2 2,-2h4c1.11,0 2,0.89 2,2v2h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/workspace_premium.xml b/compose/material/material/icons/generator/raw-icons/outlined/workspace_premium.xml
deleted file mode 100644
index 0cf44c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/workspace_premium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.68,13.69L12,11.93l2.31,1.76l-0.88,-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69zM20,10c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8c0,2.03 0.76,3.87 2,5.28V23l6,-2l6,2v-7.72C19.24,13.87 20,12.03 20,10zM12,4c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,4 12,4zM12,19l-4,1.02v-3.1C9.18,17.6 10.54,18 12,18s2.82,-0.4 4,-1.08v3.1L12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/workspaces.xml b/compose/material/material/icons/generator/raw-icons/outlined/workspaces.xml
deleted file mode 100644
index 0ecb376..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/workspaces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S4.9,15 6,15M6,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S8.2,13 6,13zM12,5c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,5 12,5M12,3C9.8,3 8,4.8 8,7s1.8,4 4,4s4,-1.8 4,-4S14.2,3 12,3zM18,15c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S16.9,15 18,15M18,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S20.2,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wrap_text.xml b/compose/material/material/icons/generator/raw-icons/outlined/wrap_text.xml
deleted file mode 100644
index c9de17b..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wrap_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h6v-2L4,17v2zM20,5L4,5v2h16L20,5zM17,11L4,11v2h13.25c1.1,0 2,0.9 2,2s-0.9,2 -2,2L15,17v-2l-3,3 3,3v-2h2c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wrong_location.xml b/compose/material/material/icons/generator/raw-icons/outlined/wrong_location.xml
deleted file mode 100644
index c00b165..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wrong_location.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0,0.07 0,0.13 0,0.2c0,2.34 -1.95,5.44 -6,9.14c-4.05,-3.7 -6,-6.79 -6,-9.14C6,7.57 8.65,5 12,5c0.34,0 0.68,0.03 1,0.08V3.06C12.67,3.02 12.34,3 12,3c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-0.07 0,-0.13 0,-0.2H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.54,2.88l-1.42,-1.42l-2.12,2.13l-2.12,-2.13l-1.42,1.42l2.13,2.12l-2.13,2.12l1.42,1.42l2.12,-2.13l2.12,2.13l1.42,-1.42l-2.13,-2.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/wysiwyg.xml b/compose/material/material/icons/generator/raw-icons/outlined/wysiwyg.xml
deleted file mode 100644
index b98af4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/wysiwyg.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM17,12H7v-2h10V12zM13,16H7v-2h6V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/yard.xml b/compose/material/material/icons/generator/raw-icons/outlined/yard.xml
deleted file mode 100644
index 35c7711..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/yard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-3.31,0 -6,2.69 -6,6C15.31,19 18,16.31 18,13zM6,13c0,3.31 2.69,6 6,6C12,15.69 9.31,13 6,13zM8,11.03c0,0.86 0.7,1.56 1.56,1.56c0.33,0 0.63,-0.1 0.89,-0.28l-0.01,0.12c0,0.86 0.7,1.56 1.56,1.56s1.56,-0.7 1.56,-1.56l-0.01,-0.12c0.25,0.17 0.56,0.28 0.89,0.28c0.86,0 1.56,-0.7 1.56,-1.56c0,-0.62 -0.37,-1.16 -0.89,-1.41C15.63,9.38 16,8.84 16,8.22c0,-0.86 -0.7,-1.56 -1.56,-1.56c-0.33,0 -0.63,0.1 -0.89,0.28l0.01,-0.12c0,-0.86 -0.7,-1.56 -1.56,-1.56s-1.56,0.7 -1.56,1.56l0.01,0.12C10.2,6.76 9.89,6.66 9.56,6.66C8.7,6.66 8,7.36 8,8.22c0,0.62 0.37,1.16 0.89,1.41C8.37,9.87 8,10.41 8,11.03zM12,8.06c0.86,0 1.56,0.7 1.56,1.56s-0.7,1.56 -1.56,1.56s-1.56,-0.7 -1.56,-1.56S11.14,8.06 12,8.06zM20,4v16H4V4H20M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/youtube_searched_for.xml b/compose/material/material/icons/generator/raw-icons/outlined/youtube_searched_for.xml
deleted file mode 100644
index 97115bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/youtube_searched_for.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.01,14h-0.8l-0.27,-0.27c0.98,-1.14 1.57,-2.61 1.57,-4.23 0,-3.59 -2.91,-6.5 -6.5,-6.5s-6.5,3 -6.5,6.5H2l3.84,4 4.16,-4H6.51C6.51,7 8.53,5 11.01,5s4.5,2.01 4.5,4.5c0,2.48 -2.02,4.5 -4.5,4.5 -0.65,0 -1.26,-0.14 -1.82,-0.38L7.71,15.1c0.97,0.57 2.09,0.9 3.3,0.9 1.61,0 3.08,-0.59 4.22,-1.57l0.27,0.27v0.79l5.01,4.99L22,19l-4.99,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/zoom_in.xml b/compose/material/material/icons/generator/raw-icons/outlined/zoom_in.xml
deleted file mode 100644
index 11957f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/zoom_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM10,7L9,7v2L7,9v1h2v2h1v-2h2L12,9h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/zoom_in_map.xml b/compose/material/material/icons/generator/raw-icons/outlined/zoom_in_map.xml
deleted file mode 100644
index 1a244634..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/zoom_in_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9l0,-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9zM21,9V7l-2.59,0l3.09,-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9zM3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0,-6L3,15zM15,15l0,6h2v-2.59l3.09,3.09l1.41,-1.41L18.41,17H21v-2L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/zoom_out.xml b/compose/material/material/icons/generator/raw-icons/outlined/zoom_out.xml
deleted file mode 100644
index 22c3cd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/zoom_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM7,9h5v1L7,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/outlined/zoom_out_map.xml b/compose/material/material/icons/generator/raw-icons/outlined/zoom_out_map.xml
deleted file mode 100644
index 7df30e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/outlined/zoom_out_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3l2.3,2.3 -2.89,2.87 1.42,1.42L18.7,6.7 21,9L21,3h-6zM3,9l2.3,-2.3 2.87,2.89 1.42,-1.42L6.7,5.3 9,3L3,3v6zM9,21l-2.3,-2.3 2.89,-2.87 -1.42,-1.42L5.3,17.3 3,15v6h6zM21,15l-2.3,2.3 -2.87,-2.89 -1.42,1.42 2.89,2.87L15,21h6v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/10k.xml b/compose/material/material/icons/generator/raw-icons/rounded/10k.xml
deleted file mode 100644
index d03d4c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/10k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10.5h1.5v3H10V10.5zM19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM6.75,15L6.75,15C6.34,15 6,14.66 6,14.25V10.5H5.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C4.5,9.34 4.84,9 5.25,9H6.5c0.55,0 1,0.45 1,1v4.25C7.5,14.66 7.16,15 6.75,15zM13,14c0,0.55 -0.45,1 -1,1H9.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H12c0.55,0 1,0.45 1,1V14zM17.59,15L17.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.5c0,0.41 -0.34,0.75 -0.75,0.75h0C14.34,15 14,14.66 14,14.25v-4.5C14,9.34 14.34,9 14.75,9h0c0.41,0 0.75,0.34 0.75,0.75v1.5l1.54,-1.98C17.17,9.1 17.38,9 17.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L16.75,12l1.41,1.88C18.5,14.34 18.17,15 17.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/10mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/10mp.xml
deleted file mode 100644
index 2463ce4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/10mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7H15v3h-1.5V7zM19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11.75,18.5L11.75,18.5c-0.41,0 -0.75,-0.34 -0.75,-0.75V14h-1v2.25C10,16.66 9.66,17 9.25,17h0c-0.41,0 -0.75,-0.34 -0.75,-0.75V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75h0C6.34,18.5 6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v4.25C12.5,18.16 12.16,18.5 11.75,18.5zM14.25,18.5L14.25,18.5c-0.41,0 -0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16c0,0.55 -0.45,1 -1,1h-2v0.75C15,18.16 14.66,18.5 14.25,18.5zM10,6.5v4.25c0,0.41 -0.34,0.75 -0.75,0.75h0c-0.41,0 -0.75,-0.34 -0.75,-0.75V7H7.75C7.34,7 7,6.66 7,6.25v0C7,5.84 7.34,5.5 7.75,5.5H9C9.55,5.5 10,5.95 10,6.5zM16.5,10.5c0,0.55 -0.45,1 -1,1H13c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1V10.5zM15,14h1.5v1.5H15V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/11mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/11mp.xml
deleted file mode 100644
index 13a3e0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/11mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM8.75,5.5H10c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S9.5,11.16 9.5,10.75V7H8.75C8.34,7 8,6.66 8,6.25S8.34,5.5 8.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM13,6.25c0,-0.41 0.34,-0.75 0.75,-0.75H15c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V7h-0.75C13.34,7 13,6.66 13,6.25zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/123.xml b/compose/material/material/icons/generator/raw-icons/rounded/123.xml
deleted file mode 100644
index bd94a10..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/123.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.75,10.5C4.34,10.5 4,10.16 4,9.75S4.34,9 4.75,9H6c0.55,0 1,0.45 1,1v4.25C7,14.66 6.66,15 6.25,15S5.5,14.66 5.5,14.25V10.5H4.75zM9.75,9C9.34,9 9,9.34 9,9.75s0.34,0.75 0.75,0.75H12v1h-2c-0.55,0 -1,0.45 -1,1V14c0,0.55 0.45,1 1,1h2.75c0.41,0 0.75,-0.34 0.75,-0.75c0,-0.41 -0.34,-0.75 -0.75,-0.75H10.5v-1h2c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H9.75zM18.5,15c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-2.75C15.34,9 15,9.34 15,9.75s0.34,0.75 0.75,0.75H18v1h-1.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5H18v1h-2.25c-0.41,0 -0.75,0.34 -0.75,0.75S15.34,15 15.75,15H18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/12mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/12mp.xml
deleted file mode 100644
index 69cf2bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/12mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,9c0,-0.55 0.45,-1 1,-1h2V7h-2.25C12.34,7 12,6.66 12,6.25s0.34,-0.75 0.75,-0.75h2.75c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1h-2v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H12V9zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/13mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/13mp.xml
deleted file mode 100644
index cd692a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/13mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12,10.75c0,-0.41 0.34,-0.75 0.75,-0.75H15V9h-1.5C13.22,9 13,8.78 13,8.5S13.22,8 13.5,8H15V7h-2.25C12.34,7 12,6.66 12,6.25s0.34,-0.75 0.75,-0.75h2.75c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-2.75C12.34,11.5 12,11.16 12,10.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/14mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/14mp.xml
deleted file mode 100644
index c225dfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/14mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12,9V6.25c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75V8.5H15V6.25c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75V8.5h0.25c0.41,0 0.75,0.34 0.75,0.75S17.16,10 16.75,10H16.5v0.75c0,0.41 -0.34,0.75 -0.75,0.75S15,11.16 15,10.75V10h-2C12.45,10 12,9.55 12,9zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/15mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/15mp.xml
deleted file mode 100644
index efab6d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/15mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12,10.75c0,-0.41 0.34,-0.75 0.75,-0.75H15V9h-2c-0.55,0 -1,-0.45 -1,-1V6.5c0,-0.55 0.45,-1 1,-1h2.75c0.41,0 0.75,0.34 0.75,0.75S16.16,7 15.75,7H13.5v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1h-2.75C12.34,11.5 12,11.16 12,10.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/16mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/16mp.xml
deleted file mode 100644
index b888ade..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/16mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12,10.5v-4c0,-0.55 0.45,-1 1,-1h2.75c0.41,0 0.75,0.34 0.75,0.75S16.16,7 15.75,7H13.5v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H13C12.45,11.5 12,11.05 12,10.5zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/17mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/17mp.xml
deleted file mode 100644
index fcca407..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/17mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12,6.25c0,-0.41 0.34,-0.75 0.75,-0.75h2.75c0.67,0 1.15,0.65 0.96,1.29l-1.28,4.12c-0.11,0.35 -0.43,0.59 -0.8,0.59c-0.56,0 -0.97,-0.54 -0.8,-1.08L14.62,7h-1.87C12.34,7 12,6.66 12,6.25zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/18_up_rating.xml b/compose/material/material/icons/generator/raw-icons/rounded/18_up_rating.xml
deleted file mode 100644
index 96b9f19..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/18_up_rating.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM9.25,15L9.25,15c-0.41,0 -0.75,-0.34 -0.75,-0.75V10.5H7.75C7.34,10.5 7,10.16 7,9.75v0C7,9.34 7.34,9 7.75,9H9c0.55,0 1,0.45 1,1v4.25C10,14.66 9.66,15 9.25,15zM16,14c0,0.55 -0.45,1 -1,1h-2.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H15c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/18mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/18mp.xml
deleted file mode 100644
index 649f7bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/18mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12,10.5v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H13C12.45,11.5 12,11.05 12,10.5zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,6.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/19mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/19mp.xml
deleted file mode 100644
index 7e1541c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/19mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,6.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.75,5.5H9c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75S8.5,11.16 8.5,10.75V7H7.75C7.34,7 7,6.66 7,6.25S7.34,5.5 7.75,5.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12,10.75c0,-0.41 0.34,-0.75 0.75,-0.75H15V9h-2c-0.55,0 -1,-0.45 -1,-1V6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-2.75C12.34,11.5 12,11.16 12,10.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/1k.xml b/compose/material/material/icons/generator/raw-icons/rounded/1k.xml
deleted file mode 100644
index 70958cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/1k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM9.25,15L9.25,15c-0.41,0 -0.75,-0.34 -0.75,-0.75V10.5H7.75C7.34,10.5 7,10.16 7,9.75v0C7,9.34 7.34,9 7.75,9H9c0.55,0 1,0.45 1,1v4.25C10,14.66 9.66,15 9.25,15zM15.59,15L15.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.5c0,0.41 -0.34,0.75 -0.75,0.75h0C12.34,15 12,14.66 12,14.25v-4.5C12,9.34 12.34,9 12.75,9h0c0.41,0 0.75,0.34 0.75,0.75v1.5l1.54,-1.98C15.17,9.1 15.38,9 15.59,9h0c0.58,0 0.91,0.66 0.56,1.12L14.75,12l1.41,1.88C16.5,14.34 16.17,15 15.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/1k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/1k_plus.xml
deleted file mode 100644
index e4860ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/1k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM8.25,15L8.25,15c-0.41,0 -0.75,-0.34 -0.75,-0.75V10.5H6.75C6.34,10.5 6,10.16 6,9.75v0C6,9.34 6.34,9 6.75,9H8c0.55,0 1,0.45 1,1v4.25C9,14.66 8.66,15 8.25,15zM13.54,14.73L12,12.75v1.55c0,0.39 -0.31,0.7 -0.7,0.7H11.2c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7c0,-0.39 0.31,-0.7 0.7,-0.7h0.09C11.69,9 12,9.31 12,9.7v1.55l1.54,-1.98C13.67,9.1 13.88,9 14.09,9h0c0.58,0 0.91,0.66 0.56,1.12L13.25,12l1.41,1.88C15,14.34 14.67,15 14.09,15h0C13.88,15 13.67,14.9 13.54,14.73zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/1x_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/1x_mobiledata.xml
deleted file mode 100644
index fbb59c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/1x_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h2c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V9H5C4.45,9 4,8.55 4,8v0C4,7.45 4.45,7 5,7zM15.83,11.72l1.92,-3.21C18.15,7.85 17.67,7 16.9,7h0c-0.35,0 -0.68,0.18 -0.86,0.49l-1.37,2.28l-1.38,-2.29C13.11,7.18 12.79,7 12.44,7h0c-0.78,0 -1.26,0.85 -0.86,1.51l1.92,3.21l-2.26,3.77c-0.4,0.67 0.08,1.51 0.86,1.51h0c0.35,0 0.68,-0.18 0.86,-0.49l1.71,-2.85l1.71,2.85c0.18,0.3 0.51,0.49 0.86,0.49h0.01c0.78,0 1.26,-0.85 0.86,-1.51L15.83,11.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/20mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/20mp.xml
deleted file mode 100644
index 586cc77..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/20mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7H7.25C6.84,7 6.5,6.66 6.5,6.25S6.84,5.5 7.25,5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H7.5c-0.55,0 -1,-0.45 -1,-1V9zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM13,10.5v-4c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H14C13.45,11.5 13,11.05 13,10.5zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7h1.5v3h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/21mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/21mp.xml
deleted file mode 100644
index d79369f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/21mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.5,9c0,-0.55 0.45,-1 1,-1h2V7H8.25C7.84,7 7.5,6.66 7.5,6.25S7.84,5.5 8.25,5.5H11c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H9v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H8.5c-0.55,0 -1,-0.45 -1,-1V9zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM13,6.25c0,-0.41 0.34,-0.75 0.75,-0.75H15c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V7h-0.75C13.34,7 13,6.66 13,6.25zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/22mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/22mp.xml
deleted file mode 100644
index 79e91b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/22mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7H7.25C6.84,7 6.5,6.66 6.5,6.25S6.84,5.5 7.25,5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H7.5c-0.55,0 -1,-0.45 -1,-1V9zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM13,10.5V9c0,-0.55 0.45,-1 1,-1h2V7h-2.25C13.34,7 13,6.66 13,6.25s0.34,-0.75 0.75,-0.75h2.75c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1h-2v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H14C13.45,11.5 13,11.05 13,10.5zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/23mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/23mp.xml
deleted file mode 100644
index a27402a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/23mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7H7.25C6.84,7 6.5,6.66 6.5,6.25S6.84,5.5 7.25,5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H7.5c-0.55,0 -1,-0.45 -1,-1V9zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM13,10.75c0,-0.41 0.34,-0.75 0.75,-0.75H16V9h-1.5C14.22,9 14,8.78 14,8.5S14.22,8 14.5,8H16V7h-2.25C13.34,7 13,6.66 13,6.25s0.34,-0.75 0.75,-0.75h2.75c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-2.75C13.34,11.5 13,11.16 13,10.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/24mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/24mp.xml
deleted file mode 100644
index b4326ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/24mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7H7.25C6.84,7 6.5,6.66 6.5,6.25S6.84,5.5 7.25,5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H7.5c-0.55,0 -1,-0.45 -1,-1V9zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16zM17.75,10H17.5v0.75c0,0.41 -0.34,0.75 -0.75,0.75S16,11.16 16,10.75V10h-2c-0.55,0 -1,-0.45 -1,-1V6.25c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75V8.5H16V6.25c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75V8.5h0.25c0.41,0 0.75,0.34 0.75,0.75S18.16,10 17.75,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/2k.xml b/compose/material/material/icons/generator/raw-icons/rounded/2k.xml
deleted file mode 100644
index f53c18c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/2k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,12.5H8v1h2.25c0.41,0 0.75,0.34 0.75,0.75v0c0,0.41 -0.34,0.75 -0.75,0.75H7.5c-0.55,0 -1,-0.45 -1,-1v-1.5c0,-0.55 0.45,-1 1,-1h2v-1H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C6.5,9.34 6.84,9 7.25,9H10c0.55,0 1,0.45 1,1v1.5C11,12.05 10.55,12.5 10,12.5zM16.59,15L16.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H13.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C13,9.31 13.31,9 13.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C16.17,9.1 16.38,9 16.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L15.75,12l1.41,1.88C17.5,14.34 17.17,15 16.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/2k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/2k_plus.xml
deleted file mode 100644
index f6dc3f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/2k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,11.5c0,0.55 -0.45,1 -1,1H7.5v1h1.75c0.41,0 0.75,0.34 0.75,0.75v0C10,14.66 9.66,15 9.25,15H7c-0.55,0 -1,-0.45 -1,-1v-1.5c0,-0.55 0.45,-1 1,-1h1.5v-1H6.75C6.34,10.5 6,10.16 6,9.75v0C6,9.34 6.34,9 6.75,9H9c0.55,0 1,0.45 1,1V11.5zM14.04,14.73l-1.54,-1.98v1.5c0,0.41 -0.34,0.75 -0.75,0.75h0C11.34,15 11,14.66 11,14.25v-4.5C11,9.34 11.34,9 11.75,9h0c0.41,0 0.75,0.34 0.75,0.75v1.5l1.54,-1.98C14.17,9.1 14.38,9 14.59,9h0c0.58,0 0.91,0.66 0.56,1.12L13.75,12l1.41,1.88C15.5,14.34 15.17,15 14.59,15h0C14.38,15 14.17,14.9 14.04,14.73zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/2mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/2mp.xml
deleted file mode 100644
index a42085f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/2mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,9c0,-0.55 0.45,-1 1,-1h2V7h-2.25C10.34,7 10,6.66 10,6.25s0.34,-0.75 0.75,-0.75h2.75c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1h-2v1h2.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H11c-0.55,0 -1,-0.45 -1,-1V9zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/30fps.xml b/compose/material/material/icons/generator/raw-icons/rounded/30fps.xml
deleted file mode 100644
index 4ceb3a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/30fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6.5L2,6.5C2,7.33 2.67,8 3.5,8H8v2.5H4.5C3.67,10.5 3,11.17 3,12v0c0,0.83 0.67,1.5 1.5,1.5H8V16H3.5C2.67,16 2,16.67 2,17.5v0C2,18.33 2.67,19 3.5,19H8c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H3.5C2.67,5 2,5.67 2,6.5zM19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/30fps_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/30fps_select.xml
deleted file mode 100644
index 755ec7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/30fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5L4,5c0,0.55 0.45,1 1,1h4v2H6C5.45,8 5,8.45 5,9v0c0,0.55 0.45,1 1,1h3v2H5c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4c1.1,0 2,-0.9 2,-2v-1.5C11,9.67 10.83,9 10,9c0.83,0 1,-0.67 1,-1.5V6c0,-1.1 -0.9,-2 -2,-2H5C4.45,4 4,4.45 4,5zM18,4c1.1,0 2,0.9 2,2v6c0,1.1 -0.9,2 -2,2h-3c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2H18zM18,6h-3v6h3V6zM4,22L4,22c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C5,21.55 4.55,22 4,22zM8,22L8,22c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C9,21.55 8.55,22 8,22zM12,22L12,22c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C13,21.55 12.55,22 12,22zM20,22h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v3C21,21.55 20.55,22 20,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/360.xml b/compose/material/material/icons/generator/raw-icons/rounded/360.xml
deleted file mode 100644
index 9b849d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/360.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7C6.48,7 2,9.24 2,12c0,2.24 2.94,4.13 7,4.77v2.02c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36v1.52c-3.15,-0.56 -5,-1.9 -5,-2.73 0,-1.06 3.04,-3 8,-3s8,1.94 8,3c0,0.66 -1.2,1.68 -3.32,2.34 -0.41,0.13 -0.68,0.51 -0.68,0.94 0,0.67 0.65,1.16 1.28,0.96C20.11,15.36 22,13.79 22,12c0,-2.76 -4.48,-5 -10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/3d_rotation.xml b/compose/material/material/icons/generator/raw-icons/rounded/3d_rotation.xml
deleted file mode 100644
index f74db7b05..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/3d_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.41,14.96c-0.19,0 -0.37,-0.03 -0.52,-0.08 -0.16,-0.06 -0.29,-0.13 -0.4,-0.24 -0.11,-0.1 -0.2,-0.22 -0.26,-0.37 -0.06,-0.14 -0.09,-0.3 -0.09,-0.47h-1.3c0,0.36 0.07,0.68 0.21,0.95 0.14,0.27 0.33,0.5 0.56,0.69 0.24,0.18 0.51,0.32 0.82,0.41 0.3,0.1 0.62,0.15 0.96,0.15 0.37,0 0.72,-0.05 1.03,-0.15 0.32,-0.1 0.6,-0.25 0.83,-0.44s0.42,-0.43 0.55,-0.72 0.2,-0.61 0.2,-0.97c0,-0.19 -0.02,-0.38 -0.07,-0.56 -0.05,-0.18 -0.12,-0.35 -0.23,-0.51 -0.1,-0.16 -0.24,-0.3 -0.4,-0.43 -0.17,-0.13 -0.37,-0.23 -0.61,-0.31 0.2,-0.09 0.37,-0.2 0.52,-0.33 0.15,-0.13 0.27,-0.27 0.37,-0.42 0.1,-0.15 0.17,-0.3 0.22,-0.46s0.07,-0.32 0.07,-0.48c0,-0.36 -0.06,-0.68 -0.18,-0.96s-0.29,-0.51 -0.51,-0.69c-0.2,-0.19 -0.47,-0.33 -0.77,-0.43C9.1,8.05 8.76,8 8.39,8c-0.36,0 -0.69,0.05 -1,0.16 -0.3,0.11 -0.57,0.26 -0.79,0.45 -0.21,0.19 -0.38,0.41 -0.51,0.67 -0.12,0.26 -0.18,0.54 -0.18,0.85h1.3c0,-0.17 0.03,-0.32 0.09,-0.45s0.14,-0.25 0.25,-0.34 0.23,-0.17 0.38,-0.22 0.3,-0.08 0.48,-0.08c0.4,0 0.7,0.1 0.89,0.31 0.19,0.2 0.29,0.49 0.29,0.86 0,0.18 -0.03,0.34 -0.08,0.49s-0.14,0.27 -0.25,0.37c-0.11,0.1 -0.25,0.18 -0.41,0.24 -0.16,0.06 -0.36,0.09 -0.58,0.09L7.5,11.4v1.03h0.77c0.22,0 0.42,0.02 0.6,0.07s0.33,0.13 0.45,0.23c0.12,0.11 0.22,0.24 0.29,0.4s0.1,0.35 0.1,0.57c0,0.41 -0.12,0.72 -0.35,0.93 -0.23,0.23 -0.55,0.33 -0.95,0.33zM17.71,10.24c-0.18,-0.47 -0.43,-0.87 -0.75,-1.2 -0.32,-0.33 -0.7,-0.59 -1.14,-0.77 -0.43,-0.18 -0.92,-0.27 -1.46,-0.27L12,8v8h2.3c0.55,0 1.06,-0.09 1.51,-0.27s0.84,-0.43 1.16,-0.76c0.32,-0.33 0.57,-0.73 0.74,-1.19 0.17,-0.47 0.26,-0.99 0.26,-1.57v-0.4c0,-0.58 -0.09,-1.1 -0.26,-1.57zM16.58,12.2c0,0.42 -0.05,0.79 -0.14,1.13 -0.1,0.33 -0.24,0.62 -0.43,0.85s-0.43,0.41 -0.71,0.53c-0.29,0.12 -0.62,0.18 -0.99,0.18h-0.91L13.4,9.11h0.97c0.72,0 1.27,0.23 1.64,0.69 0.38,0.46 0.57,1.12 0.57,1.99v0.41zM15.15,3.84l1.33,-1.33c3.09,1.46 5.34,4.37 5.89,7.86 0.06,0.41 0.44,0.69 0.86,0.62 0.41,-0.06 0.69,-0.45 0.62,-0.86 -0.6,-3.81 -2.96,-7.01 -6.24,-8.75C15.94,0.49 13.78,-0.13 11.34,0.02l3.81,3.82zM8.85,20.15l-1.33,1.33c-3.09,-1.46 -5.34,-4.37 -5.89,-7.86 -0.06,-0.41 -0.44,-0.69 -0.86,-0.62 -0.41,0.06 -0.69,0.45 -0.62,0.86 0.6,3.81 2.96,7.01 6.24,8.75 1.67,0.89 3.83,1.51 6.27,1.36l-3.81,-3.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/3g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/3g_mobiledata.xml
deleted file mode 100644
index 62cbd7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/3g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8L3,8c0,0.55 0.45,1 1,1h4v2H5c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h3v2H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4c1.1,0 2,-0.9 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5c0.83,0 1.5,-0.67 1.5,-1.5V9c0,-1.1 -0.9,-2 -2,-2H4C3.45,7 3,7.45 3,8zM21,12v3c0,1.1 -0.9,2 -2,2h-5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h6c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h-6v6h5v-2h-1.5c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1H20C20.55,11 21,11.45 21,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/3k.xml b/compose/material/material/icons/generator/raw-icons/rounded/3k.xml
deleted file mode 100644
index 7a6a4ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/3k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,14c0,0.55 -0.45,1 -1,1H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0c0,-0.41 0.34,-0.75 0.75,-0.75H9.5v-1H8c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1.5v-1H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C6.5,9.34 6.84,9 7.25,9H10c0.55,0 1,0.45 1,1V14zM16.59,15L16.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.5c0,0.41 -0.34,0.75 -0.75,0.75h0C13.34,15 13,14.66 13,14.25v-4.5C13,9.34 13.34,9 13.75,9h0c0.41,0 0.75,0.34 0.75,0.75v1.5l1.54,-1.98C16.17,9.1 16.38,9 16.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L15.75,12l1.41,1.88C17.5,14.34 17.17,15 16.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/3k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/3k_plus.xml
deleted file mode 100644
index c017601..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/3k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,14c0,0.55 -0.45,1 -1,1H6.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0c0,-0.41 0.34,-0.75 0.75,-0.75H8.5v-1H7c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1.5v-1H6.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C5.5,9.34 5.84,9 6.25,9H9c0.55,0 1,0.45 1,1V14zM14.59,15L14.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.5c0,0.41 -0.34,0.75 -0.75,0.75h0C11.34,15 11,14.66 11,14.25l-0.03,-4.49C10.96,9.34 11.3,9 11.72,9h0c0.41,0 0.75,0.33 0.75,0.74l0.03,1.51l1.54,-1.98C14.17,9.1 14.38,9 14.59,9h0c0.58,0 0.91,0.66 0.56,1.12L13.75,12l1.41,1.88C15.5,14.34 15.17,15 14.59,15zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/3mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/3mp.xml
deleted file mode 100644
index f00896f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/3mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM10.75,10H13V9h-1.5C11.22,9 11,8.78 11,8.5v0C11,8.22 11.22,8 11.5,8H13V7h-2.25C10.34,7 10,6.66 10,6.25v0c0,-0.41 0.34,-0.75 0.75,-0.75h2.75c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-2.75c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C10,10.34 10.34,10 10.75,10zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/3p.xml b/compose/material/material/icons/generator/raw-icons/rounded/3p.xml
deleted file mode 100644
index 8c3f607..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/3p.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4.01c-1.1,0 -2,0.9 -2,2L2,19.58c0,0.89 1.08,1.34 1.71,0.71L6,18h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,6 12,6zM16,14H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,11.21 11.01,11 12,11c0.99,0 1.93,0.21 2.78,0.58C15.52,11.9 16,12.62 16,13.43V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/4g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/4g_mobiledata.xml
deleted file mode 100644
index 3392d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/4g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7L8,7C7.45,7 7,7.45 7,8v4H5V8c0,-0.55 -0.45,-1 -1,-1h0C3.45,7 3,7.45 3,8v5c0,0.55 0.45,1 1,1h3v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H9V8C9,7.45 8.55,7 8,7zM17,12L17,12c0,0.55 0.45,1 1,1h1v2h-5V9h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-6c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1h-2C17.45,11 17,11.45 17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/4g_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/4g_plus_mobiledata.xml
deleted file mode 100644
index 9aa0457..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/4g_plus_mobiledata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-5C9.9,7 9,7.9 9,9v6c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v2h-4V9H16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11h-1v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h-1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1S23.55,11 23,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12V8c0,-0.55 -0.45,-1 -1,-1S5,7.45 5,8v4H3V8c0,-0.55 -0.45,-1 -1,-1S1,7.45 1,8v5c0,0.55 0.45,1 1,1h3v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2c0.55,0 1,-0.45 1,-1S7.55,12 7,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/4k.xml b/compose/material/material/icons/generator/raw-icons/rounded/4k.xml
deleted file mode 100644
index 821b9d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/4k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2zM12,12.76c0,0.41 -0.34,0.75 -0.75,0.75L11,13.51v0.74c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75v-0.75h-2c-0.55,0 -1,-0.45 -1,-1L6.5,9.75c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75L8,12h1.5L9.5,9.75c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75L11,12h0.25c0.41,0 0.75,0.34 0.75,0.75v0.01zM17.47,13.9c0.22,0.33 0.13,0.77 -0.2,0.98 -0.12,0.08 -0.26,0.12 -0.39,0.12 -0.23,0 -0.45,-0.11 -0.59,-0.32L14.5,12v2.24c0,0.41 -0.34,0.75 -0.75,0.75 -0.41,0.01 -0.75,-0.33 -0.75,-0.74v-4.5c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75v2.24l1.79,-2.68c0.22,-0.33 0.66,-0.41 0.98,-0.2 0.33,0.22 0.41,0.66 0.2,0.98L16.2,12l1.27,1.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/4k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/4k_plus.xml
deleted file mode 100644
index 59b4a5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/4k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10.25,13.5H10v0.75C10,14.66 9.66,15 9.25,15h0c-0.41,0 -0.75,-0.34 -0.75,-0.75V13.5h-2c-0.55,0 -1,-0.45 -1,-1V9.75C5.5,9.34 5.84,9 6.25,9h0C6.66,9 7,9.34 7,9.75V12h1.5V9.75C8.5,9.34 8.84,9 9.25,9h0C9.66,9 10,9.34 10,9.75V12h0.25c0.41,0 0.75,0.34 0.75,0.75v0C11,13.16 10.66,13.5 10.25,13.5zM15.09,15L15.09,15c-0.22,0 -0.42,-0.1 -0.55,-0.27L13,12.75v1.55c0,0.39 -0.31,0.7 -0.7,0.7H12.2c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7c0,-0.39 0.31,-0.7 0.7,-0.7h0.09C12.69,9 13,9.31 13,9.7v1.55l1.54,-1.98C14.67,9.1 14.88,9 15.09,9h0c0.58,0 0.91,0.66 0.56,1.12L14.25,12l1.41,1.88C16,14.34 15.67,15 15.09,15zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/4mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/4mp.xml
deleted file mode 100644
index b3f6d87..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/4mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12.5,10.75V10h-2c-0.55,0 -1,-0.45 -1,-1V6.25c0,-0.41 0.34,-0.75 0.75,-0.75S11,5.84 11,6.25V8.5h1.5V6.25c0,-0.41 0.34,-0.75 0.75,-0.75S14,5.84 14,6.25V8.5h0.25C14.66,8.5 15,8.84 15,9.25S14.66,10 14.25,10H14v0.75c0,0.41 -0.34,0.75 -0.75,0.75S12.5,11.16 12.5,10.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/5g.xml b/compose/material/material/icons/generator/raw-icons/rounded/5g.xml
deleted file mode 100644
index bec7a22..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/5g.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h1v2h-5V9h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-6c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v0C17,12.55 17.45,13 18,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13h4v2H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H5V9h4c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4C3.45,7 3,7.45 3,8v4C3,12.55 3.45,13 4,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/5k.xml b/compose/material/material/icons/generator/raw-icons/rounded/5k.xml
deleted file mode 100644
index 569c5b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/5k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10.25,10.5H8v1h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0c0,-0.41 0.34,-0.75 0.75,-0.75H9.5v-1H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v-2C6.5,9.34 6.84,9 7.25,9h3C10.66,9 11,9.34 11,9.75v0C11,10.16 10.66,10.5 10.25,10.5zM16.59,15L16.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H13.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C13,9.31 13.31,9 13.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C16.17,9.1 16.38,9 16.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L15.75,12l1.41,1.88C17.5,14.34 17.17,15 16.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/5k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/5k_plus.xml
deleted file mode 100644
index 7f7e669..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/5k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM9.25,10.5H7.5v1H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H6.75C6.34,15 6,14.66 6,14.25v0c0,-0.41 0.34,-0.75 0.75,-0.75H8.5v-1H7c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h2.25C9.66,9 10,9.34 10,9.75v0C10,10.16 9.66,10.5 9.25,10.5zM14.59,15L14.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.5c0,0.41 -0.34,0.75 -0.75,0.75h0C11.34,15 11,14.66 11,14.25v-4.5C11,9.34 11.34,9 11.75,9h0c0.41,0 0.75,0.34 0.75,0.75v1.5l1.54,-1.98C14.17,9.1 14.38,9 14.59,9h0c0.58,0 0.91,0.66 0.56,1.12L13.75,12l1.41,1.88C15.5,14.34 15.17,15 14.59,15zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/5mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/5mp.xml
deleted file mode 100644
index a7b19bc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/5mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,9c-0.55,0 -1,-0.45 -1,-1V6.5c0,-0.55 0.45,-1 1,-1h2.75c0.41,0 0.75,0.34 0.75,0.75S14.16,7 13.75,7H11.5v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1h-2.75c-0.41,0 -0.75,-0.34 -0.75,-0.75S10.34,10 10.75,10H13V9H11zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.17 11,17.75V14h-1v2.25C10,16.67 9.66,17 9.25,17S8.5,16.67 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.17 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/60fps.xml b/compose/material/material/icons/generator/raw-icons/rounded/60fps.xml
deleted file mode 100644
index a9b87f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/60fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5zM10,6.5L10,6.5C10,5.67 9.33,5 8.5,5H5C3.34,5 2,6.34 2,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3v-3c0,-1.66 -1.34,-3 -3,-3H5V8h3.5C9.33,8 10,7.33 10,6.5zM8,13v3H5v-3H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/60fps_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/60fps_select.xml
deleted file mode 100644
index b62c80d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/60fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6v6h-3V6H18zM18,4h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V6C20,4.9 19.1,4 18,4zM11,5L11,5c0,-0.55 -0.45,-1 -1,-1H6C4.9,4 4,4.9 4,6v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H6V6h4C10.55,6 11,5.55 11,5zM9,10v2H6v-2H9zM4,22L4,22c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C5,21.55 4.55,22 4,22zM8,22L8,22c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C9,21.55 8.55,22 8,22zM12,22L12,22c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C13,21.55 12.55,22 12,22zM20,22h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v3C21,21.55 20.55,22 20,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/6_ft_apart.xml b/compose/material/material/icons/generator/raw-icons/rounded/6_ft_apart.xml
deleted file mode 100644
index 4bed175..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/6_ft_apart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM10,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C7.93,7.21 6.99,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h8V9.43zM18,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S16.9,6 18,6zM22,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C19.93,7.21 18.99,7 18,7c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,7.9 14,8.62 14,9.43V10h8V9.43zM21.65,14.35l-1.79,1.79C19.54,16.46 19,16.24 19,15.79v-0.8L5,15v0.79c0,0.45 -0.54,0.67 -0.85,0.35l-1.79,-1.79c-0.2,-0.2 -0.2,-0.51 0,-0.71l1.79,-1.79C4.46,11.54 5,11.76 5,12.21v0.8L19,13v-0.79c0,-0.45 0.54,-0.67 0.85,-0.35l1.79,1.79C21.84,13.84 21.84,14.16 21.65,14.35zM10,18.5L10,18.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-2C7.22,18 7,18.22 7,18.5v3C7,21.78 7.22,22 7.5,22h2c0.28,0 0.5,-0.22 0.5,-0.5V20c0,-0.28 -0.22,-0.5 -0.5,-0.5H8V19h1.5C9.78,19 10,18.78 10,18.5zM9,20.5V21H8v-0.5H9zM17,19h-0.5v2.5c0,0.28 -0.22,0.5 -0.5,0.5h0c-0.28,0 -0.5,-0.22 -0.5,-0.5V19H15c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h2c0.28,0 0.5,0.22 0.5,0.5v0C17.5,18.78 17.28,19 17,19zM14,18.5c0,0.28 -0.22,0.5 -0.5,0.5h-1v0.5H13c0.28,0 0.5,0.22 0.5,0.5c0,0.28 -0.22,0.5 -0.5,0.5h-0.5v1c0,0.28 -0.22,0.5 -0.5,0.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h1.5C13.78,18 14,18.22 14,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/6k.xml b/compose/material/material/icons/generator/raw-icons/rounded/6k.xml
deleted file mode 100644
index b4d5b84..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/6k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5V14H8V12.5zM19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10.25,10.5H8v1h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.75C10.66,9 11,9.34 11,9.75v0C11,10.16 10.66,10.5 10.25,10.5zM16.59,15L16.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H13.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C13,9.31 13.31,9 13.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C16.17,9.1 16.38,9 16.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L15.75,12l1.41,1.88C17.5,14.34 17.17,15 16.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/6k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/6k_plus.xml
deleted file mode 100644
index 5affd61..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/6k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h1V14h-1V12.5zM19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM9.25,10.5H7.5v1H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2.25C9.66,9 10,9.34 10,9.75v0C10,10.16 9.66,10.5 9.25,10.5zM14.59,15L14.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H11.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C11,9.31 11.31,9 11.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C14.17,9.1 14.38,9 14.59,9h0c0.58,0 0.91,0.66 0.56,1.12L13.75,12l1.41,1.88C15.5,14.34 15.17,15 14.59,15zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/6mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/6mp.xml
deleted file mode 100644
index 317a351..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/6mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,6.5c0,-0.55 0.45,-1 1,-1h2.75c0.41,0 0.75,0.34 0.75,0.75C14.5,6.66 14.16,7 13.75,7H11.5v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H11c-0.55,0 -1,-0.45 -1,-1V6.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/7k.xml b/compose/material/material/icons/generator/raw-icons/rounded/7k.xml
deleted file mode 100644
index 9b9440a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/7k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM8.95,15H8.76c-0.5,0 -0.86,-0.49 -0.72,-0.97l1.08,-3.53H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C6.5,9.34 6.84,9 7.25,9H10c0.67,0 1.15,0.65 0.96,1.29l-1.3,4.18C9.57,14.79 9.28,15 8.95,15zM16.59,15L16.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H13.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C13,9.31 13.31,9 13.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C16.17,9.1 16.38,9 16.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L15.75,12l1.41,1.88C17.5,14.34 17.17,15 16.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/7k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/7k_plus.xml
deleted file mode 100644
index 085c81d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/7k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.95,15H7.76c-0.5,0 -0.86,-0.49 -0.72,-0.97l1.08,-3.53H6.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C5.5,9.34 5.83,9 6.25,9H9c0.67,0 1.15,0.65 0.96,1.29l-1.3,4.18C8.56,14.79 8.27,15 7.95,15zM14.59,15L14.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H11.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C11,9.31 11.31,9 11.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C14.17,9.1 14.38,9 14.59,9h0c0.58,0 0.91,0.66 0.56,1.12L13.75,12l1.41,1.88C15.5,14.34 15.17,15 14.59,15zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/7mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/7mp.xml
deleted file mode 100644
index 75b28d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/7mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM12.38,11.5c-0.56,0 -0.97,-0.54 -0.8,-1.08L12.62,7h-1.87C10.34,7 10,6.66 10,6.25c0,-0.41 0.34,-0.75 0.75,-0.75h2.75c0.67,0 1.15,0.65 0.96,1.29l-1.28,4.12C13.07,11.26 12.75,11.5 12.38,11.5zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/8k.xml b/compose/material/material/icons/generator/raw-icons/rounded/8k.xml
deleted file mode 100644
index ed74156..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/8k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5V14H8V12.5zM8,10h1.5v1.5H8V10zM19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,14c0,0.55 -0.45,1 -1,1H7.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H10c0.55,0 1,0.45 1,1V14zM16.59,15L16.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H13.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C13,9.31 13.31,9 13.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C16.17,9.1 16.38,9 16.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L15.75,12l1.41,1.88C17.5,14.34 17.17,15 16.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/8k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/8k_plus.xml
deleted file mode 100644
index d73eda3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/8k_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1V14zM14.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H11.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C11,9.31 11.31,9 11.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C14.17,9.1 14.38,9 14.59,9c0.58,0 0.91,0.66 0.56,1.12L13.75,12l1.41,1.88C15.5,14.34 15.17,15 14.59,15zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h1v1.5h-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,10h1v1.5h-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/8mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/8mp.xml
deleted file mode 100644
index c3dc5bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/8mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H11c-0.55,0 -1,-0.45 -1,-1V6.5zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6.5h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/9k.xml b/compose/material/material/icons/generator/raw-icons/rounded/9k.xml
deleted file mode 100644
index 4a62d18..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/9k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10h1.5v1.5H8V10zM19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,14c0,0.55 -0.45,1 -1,1H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0c0,-0.41 0.34,-0.75 0.75,-0.75H9.5v-1h-2c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1H10c0.55,0 1,0.45 1,1V14zM16.59,15L16.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H13.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C13,9.31 13.31,9 13.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C16.17,9.1 16.38,9 16.59,9l0,0c0.58,0 0.91,0.66 0.56,1.12L15.75,12l1.41,1.88C17.5,14.34 17.17,15 16.59,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/9k_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/9k_plus.xml
deleted file mode 100644
index 02d6716..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/9k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,10h1v1.5h-1V10zM19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10,14c0,0.55 -0.45,1 -1,1H6.75C6.34,15 6,14.66 6,14.25v0c0,-0.41 0.34,-0.75 0.75,-0.75H8.5v-1H7c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1V14zM14.59,15L14.59,15c-0.22,0 -0.42,-0.1 -0.55,-0.27l-1.54,-1.98v1.55c0,0.39 -0.31,0.7 -0.7,0.7H11.7c-0.39,0 -0.7,-0.31 -0.7,-0.7V9.7C11,9.31 11.31,9 11.7,9h0.09c0.39,0 0.7,0.31 0.7,0.7v1.55l1.54,-1.98C14.17,9.1 14.38,9 14.59,9h0c0.58,0 0.91,0.66 0.56,1.12L13.75,12l1.41,1.88C15.5,14.34 15.17,15 14.59,15zM18.5,12.5h-1v1c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5l0,0c0.28,0 0.5,0.22 0.5,0.5v1h1c0.28,0 0.5,0.22 0.5,0.5v0C19,12.28 18.78,12.5 18.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/9mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/9mp.xml
deleted file mode 100644
index 835f0ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/9mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,9c-0.55,0 -1,-0.45 -1,-1V6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-2.75c-0.41,0 -0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75H13V9H11zM12.5,17.75c0,0.41 -0.34,0.75 -0.75,0.75S11,18.16 11,17.75V14h-1v2.25C10,16.66 9.66,17 9.25,17S8.5,16.66 8.5,16.25V14h-1v3.75c0,0.41 -0.34,0.75 -0.75,0.75S6,18.16 6,17.75V13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V17.75zM18,16c0,0.55 -0.45,1 -1,1h-2v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V13.5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6.5h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/abc.xml b/compose/material/material/icons/generator/raw-icons/rounded/abc.xml
deleted file mode 100644
index 529043d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/abc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,15c-0.41,0 -0.75,-0.34 -0.75,-0.75V13.5h-2v0.75C4.5,14.66 4.16,15 3.75,15S3,14.66 3,14.25V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v4.25C8,14.66 7.66,15 7.25,15zM6.5,10.5h-2V12h2V10.5zM13.5,12c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1C14.5,11.55 14.05,12 13.5,12zM11,10.5v0.75h2V10.5H11zM13,12.75h-2v0.75h2V12.75zM21,10.25c0,0.41 -0.34,0.75 -0.75,0.75c-0.33,0 -0.6,-0.21 -0.71,-0.5l-2.04,0v3l2.04,0c0.1,-0.29 0.38,-0.5 0.71,-0.5c0.41,0 0.75,0.34 0.75,0.75V14c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V10.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ac_unit.xml b/compose/material/material/icons/generator/raw-icons/rounded/ac_unit.xml
deleted file mode 100644
index fa78aa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ac_unit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-3.17l2.54,-2.54c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.03,-0.39 -1.42,0L15,11h-2V9l3.95,-3.95c0.39,-0.39 0.39,-1.03 0,-1.42 -0.39,-0.39 -1.02,-0.39 -1.41,0L13,6.17V3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3.17L8.46,3.63c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.03 0,1.42L11,9v2H9L5.05,7.05c-0.39,-0.39 -1.03,-0.39 -1.42,0 -0.39,0.39 -0.39,1.02 0,1.41L6.17,11H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3.17l-2.54,2.54c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.03,0.39 1.42,0L9,13h2v2l-3.95,3.95c-0.39,0.39 -0.39,1.03 0,1.42 0.39,0.39 1.02,0.39 1.41,0L11,17.83V21c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3.17l2.54,2.54c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.03 0,-1.42L13,15v-2h2l3.95,3.95c0.39,0.39 1.03,0.39 1.42,0 0.39,-0.39 0.39,-1.02 0,-1.41L17.83,13H21c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/access_alarm.xml b/compose/material/material/icons/generator/raw-icons/rounded/access_alarm.xml
deleted file mode 100644
index 1aa074c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/access_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.87,15.25l-3.37,-2L12.5,8.72c0,-0.4 -0.32,-0.72 -0.72,-0.72h-0.06c-0.4,0 -0.72,0.32 -0.72,0.72v4.72c0,0.35 0.18,0.68 0.49,0.86l3.65,2.19c0.34,0.2 0.78,0.1 0.98,-0.24 0.21,-0.35 0.1,-0.8 -0.25,-1zM21.18,5.01L18.1,2.45c-0.42,-0.35 -1.05,-0.3 -1.41,0.13 -0.35,0.42 -0.29,1.05 0.13,1.41l3.07,2.56c0.42,0.35 1.05,0.3 1.41,-0.13 0.36,-0.42 0.3,-1.05 -0.12,-1.41zM4.1,6.55l3.07,-2.56c0.43,-0.36 0.49,-0.99 0.13,-1.41 -0.35,-0.43 -0.98,-0.48 -1.4,-0.13L2.82,5.01c-0.42,0.36 -0.48,0.99 -0.12,1.41 0.35,0.43 0.98,0.48 1.4,0.13zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/access_alarms.xml b/compose/material/material/icons/generator/raw-icons/rounded/access_alarms.xml
deleted file mode 100644
index 1aa074c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/access_alarms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.87,15.25l-3.37,-2L12.5,8.72c0,-0.4 -0.32,-0.72 -0.72,-0.72h-0.06c-0.4,0 -0.72,0.32 -0.72,0.72v4.72c0,0.35 0.18,0.68 0.49,0.86l3.65,2.19c0.34,0.2 0.78,0.1 0.98,-0.24 0.21,-0.35 0.1,-0.8 -0.25,-1zM21.18,5.01L18.1,2.45c-0.42,-0.35 -1.05,-0.3 -1.41,0.13 -0.35,0.42 -0.29,1.05 0.13,1.41l3.07,2.56c0.42,0.35 1.05,0.3 1.41,-0.13 0.36,-0.42 0.3,-1.05 -0.12,-1.41zM4.1,6.55l3.07,-2.56c0.43,-0.36 0.49,-0.99 0.13,-1.41 -0.35,-0.43 -0.98,-0.48 -1.4,-0.13L2.82,5.01c-0.42,0.36 -0.48,0.99 -0.12,1.41 0.35,0.43 0.98,0.48 1.4,0.13zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/access_time.xml b/compose/material/material/icons/generator/raw-icons/rounded/access_time.xml
deleted file mode 100644
index 07b7ee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/access_time.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM11.78,7h-0.06c-0.4,0 -0.72,0.32 -0.72,0.72v4.72c0,0.35 0.18,0.68 0.49,0.86l4.15,2.49c0.34,0.2 0.78,0.1 0.98,-0.24 0.21,-0.34 0.1,-0.79 -0.25,-0.99l-3.87,-2.3L12.5,7.72c0,-0.4 -0.32,-0.72 -0.72,-0.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/access_time_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/access_time_filled.xml
deleted file mode 100644
index b82761b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/access_time_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM16,16c-0.39,0.39 -1.02,0.39 -1.41,0l-3.29,-3.29C11.11,12.52 11,12.27 11,12V8c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3.59l3,3C16.39,14.98 16.39,15.61 16,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/accessibility.xml b/compose/material/material/icons/generator/raw-icons/rounded/accessibility.xml
deleted file mode 100644
index c500592..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM20,9h-5v12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-5h-2v5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L9,9L4,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h16c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/accessibility_new.xml b/compose/material/material/icons/generator/raw-icons/rounded/accessibility_new.xml
deleted file mode 100644
index e760276..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/accessibility_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,6.99c-0.14,-0.55 -0.69,-0.87 -1.24,-0.75 -2.38,0.53 -5.03,0.76 -7.51,0.76s-5.13,-0.23 -7.51,-0.76c-0.55,-0.12 -1.1,0.2 -1.24,0.75 -0.14,0.56 0.2,1.13 0.75,1.26 1.61,0.36 3.35,0.61 5,0.75v12c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5h2v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1V9c1.65,-0.14 3.39,-0.39 4.99,-0.75 0.56,-0.13 0.9,-0.7 0.76,-1.26zM12,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/accessible.xml b/compose/material/material/icons/generator/raw-icons/rounded/accessible.xml
deleted file mode 100644
index 97960e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/accessible.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11.9c0,-0.49 -0.36,-0.89 -0.84,-0.97 -1.25,-0.21 -2.43,-0.88 -3.23,-1.76l-1.29,-1.43c-0.17,-0.19 -0.38,-0.34 -0.61,-0.45 -0.01,0 -0.01,-0.01 -0.02,-0.01H13c-0.37,-0.21 -0.78,-0.31 -1.25,-0.25C10.73,7.15 10,8.07 10,9.1V15c0,1.1 0.9,2 2,2h5v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4.5c0,-1.1 -0.9,-2 -2,-2h-3v-3.45c1,0.83 2.4,1.54 3.8,1.82 0.62,0.13 1.2,-0.34 1.2,-0.97zM12.83,18c-0.41,1.16 -1.52,2 -2.83,2 -1.66,0 -3,-1.34 -3,-3 0,-1.31 0.84,-2.41 2,-2.83V12.1c-2.28,0.46 -4,2.48 -4,4.9 0,2.76 2.24,5 5,5 2.42,0 4.44,-1.72 4.9,-4h-2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/accessible_forward.xml b/compose/material/material/icons/generator/raw-icons/rounded/accessible_forward.xml
deleted file mode 100644
index d50cad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/accessible_forward.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4.54m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h-2c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3 1.35,-3 3,-3v-2c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5zM18,13.5h-1.86l1.67,-3.67C18.42,8.5 17.44,7 15.96,7h-5.2c-0.81,0 -1.54,0.47 -1.87,1.2l-0.28,0.76c-0.21,0.56 0.11,1.17 0.68,1.33 0.49,0.14 1,-0.11 1.2,-0.58l0.3,-0.71L13,9l-1.83,4.1c-0.6,1.33 0.39,2.9 1.85,2.9L18,16v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4.5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/account_balance.xml b/compose/material/material/icons/generator/raw-icons/rounded/account_balance.xml
deleted file mode 100644
index 82568cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/account_balance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11.5v4c0,0.83 0.67,1.5 1.5,1.5S7,16.33 7,15.5v-4c0,-0.83 -0.67,-1.5 -1.5,-1.5S4,10.67 4,11.5zM10,11.5v4c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5v-4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5zM3.5,22h16c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5h-16c-0.83,0 -1.5,0.67 -1.5,1.5S2.67,22 3.5,22zM16,11.5v4c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5v-4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5zM10.57,1.49l-7.9,4.16c-0.41,0.21 -0.67,0.64 -0.67,1.1C2,7.44 2.56,8 3.25,8h16.51C20.44,8 21,7.44 21,6.75c0,-0.46 -0.26,-0.89 -0.67,-1.1l-7.9,-4.16c-0.58,-0.31 -1.28,-0.31 -1.86,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/account_balance_wallet.xml b/compose/material/material/icons/generator/raw-icons/rounded/account_balance_wallet.xml
deleted file mode 100644
index b21e69d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/account_balance_wallet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16L10,8c0,-1.1 0.89,-2 2,-2h9L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-1h-9c-1.11,0 -2,-0.9 -2,-2zM13,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h9L22,8h-9zM16,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/account_box.xml b/compose/material/material/icons/generator/raw-icons/rounded/account_box.xml
deleted file mode 100644
index 32f6b3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/account_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,6c1.93,0 3.5,1.57 3.5,3.5c0,1.93 -1.57,3.5 -3.5,3.5s-3.5,-1.57 -3.5,-3.5C8.5,7.57 10.07,6 12,6zM19,19H5v-0.23c0,-0.62 0.28,-1.2 0.76,-1.58C7.47,15.82 9.64,15 12,15s4.53,0.82 6.24,2.19c0.48,0.38 0.76,0.97 0.76,1.58V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/account_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/account_circle.xml
deleted file mode 100644
index 6476320..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/account_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,6c1.93,0 3.5,1.57 3.5,3.5S13.93,13 12,13s-3.5,-1.57 -3.5,-3.5S10.07,6 12,6zM12,20c-2.03,0 -4.43,-0.82 -6.14,-2.88C7.55,15.8 9.68,15 12,15s4.45,0.8 6.14,2.12C16.43,19.18 14.03,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/account_tree.xml b/compose/material/material/icons/generator/raw-icons/rounded/account_tree.xml
deleted file mode 100644
index fb02e0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/account_tree.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11h3c1.11,0 2,-0.9 2,-2V5c0,-1.11 -0.9,-2 -2,-2h-3c-1.11,0 -2,0.9 -2,2v1H9.01V5c0,-1.11 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v4c0,1.11 0.9,2 2,2h3c1.11,0 2,-0.9 2,-2V8H11v7.01c0,1.65 1.34,2.99 2.99,2.99H15v1c0,1.11 0.9,2 2,2h3c1.11,0 2,-0.9 2,-2v-4c0,-1.11 -0.9,-2 -2,-2h-3c-1.11,0 -2,0.9 -2,2v1h-1.01C13.45,16 13,15.55 13,15.01V8h2v1C15,10.1 15.9,11 17,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ad_units.xml b/compose/material/material/icons/generator/raw-icons/rounded/ad_units.xml
deleted file mode 100644
index 64c855e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ad_units.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM16,19H8c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v12C17,18.55 16.55,19 16,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6H9C8.45,6 8,6.45 8,7v0c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v0C16,6.45 15.55,6 15,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/adb.xml b/compose/material/material/icons/generator/raw-icons/rounded/adb.xml
deleted file mode 100644
index c96346e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/adb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16c0,3.87 3.13,7 7,7s7,-3.13 7,-7v-4L5,12v4zM16.12,4.37l2.1,-2.1 -0.82,-0.83 -2.3,2.31C14.16,3.28 13.12,3 12,3s-2.16,0.28 -3.09,0.75L6.6,1.44l-0.82,0.83 2.1,2.1C6.14,5.64 5,7.68 5,10v1h14v-1c0,-2.32 -1.14,-4.36 -2.88,-5.63zM9,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add.xml b/compose/material/material/icons/generator/raw-icons/rounded/add.xml
deleted file mode 100644
index 24877ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h-5v5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-5H6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h5V6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5h5c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_a_photo.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_a_photo.xml
deleted file mode 100644
index b34e69e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_a_photo.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8c0,0.55 0.45,1 1,1s1,-0.45 1,-1V6h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5V2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2H1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,14m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-3.17l-1.24,-1.35c-0.37,-0.41 -0.91,-0.65 -1.47,-0.65h-6.4c0.17,0.3 0.28,0.63 0.28,1 0,1.1 -0.9,2 -2,2L6,7v1c0,1.1 -0.9,2 -2,2 -0.37,0 -0.7,-0.11 -1,-0.28L3,20c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM13,19c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_alarm.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_alarm.xml
deleted file mode 100644
index 2b64fd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12h-2v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2L9,12c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM21.18,5.01L18.1,2.45c-0.42,-0.35 -1.05,-0.3 -1.41,0.13 -0.35,0.42 -0.29,1.05 0.13,1.41l3.07,2.56c0.42,0.35 1.05,0.3 1.41,-0.13 0.36,-0.42 0.3,-1.05 -0.12,-1.41zM4.1,6.55l3.07,-2.56c0.43,-0.36 0.49,-0.99 0.13,-1.41 -0.35,-0.43 -0.98,-0.48 -1.4,-0.13L2.82,5.01c-0.42,0.36 -0.48,0.99 -0.12,1.41 0.35,0.43 0.98,0.48 1.4,0.13zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_alert.xml
deleted file mode 100644
index 1065bb02..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_alert.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4C10,21.1 10.9,22 12,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17h-1v-7c0,-2.79 -1.91,-5.14 -4.5,-5.8V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5v0.7C7.91,4.86 6,7.21 6,10v7H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h14c0.55,0 1,-0.45 1,-1S19.55,17 19,17zM14,13h-1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-1h-1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h1c0.55,0 1,0.45 1,1S14.55,13 14,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_box.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_box.xml
deleted file mode 100644
index 2cefe36..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM16,13h-3v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3L8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_business.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_business.xml
deleted file mode 100644
index d15e3bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_business.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h13c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H3C2.45,4 2,4.45 2,5C2,5.55 2.45,6 3,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h2v-3h0.18c0.63,0 1.1,-0.58 0.98,-1.2l-1,-5C17.07,7.34 16.66,7 16.18,7H2.82C2.34,7 1.93,7.34 1.84,7.8l-1,5C0.72,13.42 1.19,14 1.82,14H2v5c0,0.55 0.45,1 1,1h7c0.55,0 1,-0.45 1,-1v-5h4V17zM9,18H4v-4h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18h-2v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1C23,18.45 22.55,18 22,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_card.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_card.xml
deleted file mode 100644
index 23143d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,19c0,-0.55 -0.45,-1 -1,-1H4v-6h18V6c0,-1.1 -0.9,-2 -2,-2H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h9C13.55,20 14,19.55 14,19zM20,8H4V6h16V8zM20,22c-0.55,0 -1,-0.45 -1,-1v-2h-2c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h2v-2c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1v2h2c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1h-2v2C21,21.55 20.55,22 20,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_chart.xml
deleted file mode 100644
index 8c4efe3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_chart.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2C15,16.55 15.45,17 16,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10c-0.55,0 -1,0.45 -1,1v8H5V5h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-8C21,10.45 20.55,10 20,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5c0,-0.55 -0.45,-1 -1,-1S7,10.45 7,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v8c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1S11,7.45 11,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h1v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h-1c-0.55,0 -1,0.45 -1,1S15.45,7 16,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_circle.xml
deleted file mode 100644
index 1906afe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM16,13h-3v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3L8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_circle_outline.xml
deleted file mode 100644
index 28bd03f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-0.55,0 -1,0.45 -1,1v3L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L13,8c0,-0.55 -0.45,-1 -1,-1zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_comment.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_comment.xml
deleted file mode 100644
index 1b22ee4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4c0,-1.1 -0.9,-2 -2,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4zM16,11h-3v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3L8,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3L11,6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_home.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_home.xml
deleted file mode 100644
index b0f2a03..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_home.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,11.16c1.23,-0.26 2.4,-0.18 3.47,0.14V10c0,-0.63 -0.3,-1.22 -0.8,-1.6l-6,-4.5c-0.71,-0.53 -1.69,-0.53 -2.4,0l-6,4.5C4.3,8.78 4,9.37 4,10v9c0,1.1 0.9,2 2,2h5.68c-0.61,-1.28 -0.86,-2.77 -0.55,-4.35C11.65,13.93 13.82,11.74 16.53,11.16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_home_work.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_home_work.xml
deleted file mode 100644
index a026702..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_home_work.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.96,11.7c-0.09,-0.52 -0.36,-0.99 -0.8,-1.3l-5,-3.57c-0.7,-0.5 -1.63,-0.5 -2.32,0l-5,3.57C1.31,10.78 1,11.38 1,12.03V19c0,1.1 0.9,2 2,2h3v-6h4v6h1.68C11.25,20.09 11,19.08 11,18C11,15.22 12.62,12.83 14.96,11.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,13.11V4.97C23,3.88 22.12,3 21.03,3h-9.06C10.88,3 10,3.88 10,4.97l0.02,0.05c0.1,0.06 0.21,0.11 0.3,0.18l5,3.57c0.79,0.56 1.34,1.4 1.56,2.32C17.25,11.04 17.62,11 18,11C19.96,11 21.73,11.81 23,13.11zM17,7h2v2h-2V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5s2.24,5 5,5S23,20.76 23,18zM17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_ic_call.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_ic_call.xml
deleted file mode 100644
index 92faa8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_ic_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L18,8h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2L18,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM19.21,15.27l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.04 0.57,-1.64l-0.29,-2.52c-0.11,-1.01 -0.97,-1.78 -1.98,-1.78L5.02,3.01c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1 -0.76,-1.86 -1.77,-1.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_link.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_link.xml
deleted file mode 100644
index 91b3d62..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h6c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v0C8,11.45 8.45,11 9,11zM20.93,12L20.93,12c0.62,0 1.07,-0.59 0.93,-1.19C21.32,8.62 19.35,7 17,7h-3.05C13.43,7 13,7.43 13,7.95v0c0,0.52 0.43,0.95 0.95,0.95H17c1.45,0 2.67,1 3.01,2.34C20.12,11.68 20.48,12 20.93,12zM3.96,11.38C4.24,9.91 5.62,8.9 7.12,8.9l2.93,0C10.57,8.9 11,8.47 11,7.95v0C11,7.43 10.57,7 10.05,7L7.22,7c-2.61,0 -4.94,1.91 -5.19,4.51C1.74,14.49 4.08,17 7,17h3.05c0.52,0 0.95,-0.43 0.95,-0.95v0c0,-0.52 -0.43,-0.95 -0.95,-0.95H7C5.09,15.1 3.58,13.36 3.96,11.38zM18,12L18,12c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-2C19,12.45 18.55,12 18,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_location.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_location.xml
deleted file mode 100644
index 550f5c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7c0,-0.55 -0.44,-1 -1,-1c-0.55,0 -1,0.44 -1,1v2H9c-0.55,0 -1,0.44 -1,1c0,0.55 0.44,1 1,1h2v2c0,0.55 0.44,1 1,1c0.55,0 1,-0.44 1,-1v-2h2c0.55,0 1,-0.44 1,-1c0,-0.55 -0.44,-1 -1,-1h-2V7zM12,2c4.2,0 8,3.22 8,8.2c0,3.18 -2.45,6.92 -7.34,11.23c-0.38,0.33 -0.95,0.33 -1.33,0C6.45,17.12 4,13.38 4,10.2C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_location_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_location_alt.xml
deleted file mode 100644
index 3cfb3ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_location_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,0c0.55,0 1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V5h-2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2V1C18,0.45 18.45,0 19,0zM12,12c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,12 12,12zM14.72,2.47C14.28,2.83 14,3.38 14,4c0,1.1 0.9,2 2,2h1v1c0,1.1 0.9,2 2,2c0.32,0 0.62,-0.08 0.89,-0.21C19.96,9.24 20,9.71 20,10.2c0,3.18 -2.45,6.92 -7.34,11.23c-0.38,0.33 -0.95,0.33 -1.33,0C6.45,17.12 4,13.38 4,10.2C4,5.22 7.8,2 12,2C12.94,2 13.86,2.16 14.72,2.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_moderator.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_moderator.xml
deleted file mode 100644
index 3e83974..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_moderator.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c1.08,0 2.09,0.25 3,0.68v-4.3c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25c-0.45,-0.17 -0.95,-0.17 -1.4,0l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.7c0,5.05 3.41,9.76 8,10.91c0.03,-0.01 0.05,-0.02 0.08,-0.02C10.8,20.71 10,18.95 10,17C10,13.13 13.13,10 17,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM19.5,17.5h-2v2c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5v-2h-2c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5h2v-2c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5v2h2c0.28,0 0.5,0.22 0.5,0.5S19.78,17.5 19.5,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_photo_alternate.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_photo_alternate.xml
deleted file mode 100644
index 84e79d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_photo_alternate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.02,5H19V2.98c0,-0.54 -0.44,-0.98 -0.98,-0.98h-0.03c-0.55,0 -0.99,0.44 -0.99,0.98V5h-2.01c-0.54,0 -0.98,0.44 -0.99,0.98v0.03c0,0.55 0.44,0.99 0.99,0.99H17v2.01c0,0.54 0.44,0.99 0.99,0.98h0.03c0.54,0 0.98,-0.44 0.98,-0.98V7h2.02c0.54,0 0.98,-0.44 0.98,-0.98v-0.04c0,-0.54 -0.44,-0.98 -0.98,-0.98zM16,9.01V8h-1.01c-0.53,0 -1.03,-0.21 -1.41,-0.58 -0.37,-0.38 -0.58,-0.88 -0.58,-1.44 0,-0.36 0.1,-0.69 0.27,-0.98H5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-8.28c-0.3,0.17 -0.64,0.28 -1.02,0.28 -1.09,-0.01 -1.98,-0.9 -1.98,-1.99zM15.96,19H6c-0.41,0 -0.65,-0.47 -0.4,-0.8l1.98,-2.63c0.21,-0.28 0.62,-0.26 0.82,0.02L10,18l2.61,-3.48c0.2,-0.26 0.59,-0.27 0.79,-0.01l2.95,3.68c0.26,0.33 0.03,0.81 -0.39,0.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_reaction.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_reaction.xml
deleted file mode 100644
index 161395e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_reaction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,4c0,0.55 -0.45,1 -1,1h-1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V5h-1c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h1V2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h1C23.55,3 24,3.45 24,4zM21.52,8.95C21.83,9.91 22,10.94 22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12C2,6.48 6.48,2 12,2c1.5,0 2.92,0.34 4.2,0.94C16.08,3.27 16,3.62 16,4c0,1.35 0.9,2.5 2.13,2.87C18.5,8.1 19.65,9 21,9C21.18,9 21.35,8.98 21.52,8.95zM7,9.5C7,10.33 7.67,11 8.5,11S10,10.33 10,9.5S9.33,8 8.5,8S7,8.67 7,9.5zM16.31,14H7.69c-0.38,0 -0.63,0.42 -0.44,0.75C8.2,16.39 9.97,17.5 12,17.5s3.8,-1.11 4.75,-2.75C16.94,14.42 16.7,14 16.31,14zM17,9.5C17,8.67 16.33,8 15.5,8S14,8.67 14,9.5s0.67,1.5 1.5,1.5S17,10.33 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_road.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_road.xml
deleted file mode 100644
index 07aa064..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L19,4c-0.55,0 -1,0.45 -1,1v7c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V5C20,4.45 19.55,4 19,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20L5,20c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h0C4.45,4 4,4.45 4,5v14C4,19.55 4.45,20 5,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8L12,8c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C11,7.55 11.45,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14L12,14c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C11,13.55 11.45,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20L12,20c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C11,19.55 11.45,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_shopping_cart.xml
deleted file mode 100644
index cf0302c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9L12,9c0.55,0 1,-0.45 1,-1V6h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2V2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2H9C8.45,4 8,4.45 8,5v0c0,0.55 0.45,1 1,1h2v2C11,8.55 11.45,9 12,9zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.24,-6.14c0.25,-0.48 0.08,-1.08 -0.4,-1.34v0c-0.49,-0.27 -1.1,-0.08 -1.36,0.41L15.55,11H8.53L4.27,2H2C1.45,2 1,2.45 1,3v0c0,0.55 0.45,1 1,1h1l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h11c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H7L8.1,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_task.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_task.xml
deleted file mode 100644
index f5b221b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,5.89l-10,10c-0.39,0.39 -1.02,0.39 -1.41,0l-2.83,-2.83c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l2.12,2.12l9.29,-9.29c0.39,-0.39 1.02,-0.39 1.41,0v0C21.68,4.87 21.68,5.5 21.29,5.89zM12,20c-4.71,0 -8.48,-4.09 -7.95,-8.9c0.39,-3.52 3.12,-6.41 6.61,-6.99c1.81,-0.3 3.53,0.02 4.99,0.78c0.39,0.2 0.86,0.13 1.17,-0.18l0,0c0.48,-0.48 0.36,-1.29 -0.24,-1.6C15.11,2.36 13.45,1.95 11.68,2c-5.14,0.16 -9.41,4.34 -9.67,9.47C1.72,17.24 6.3,22 12,22c1.2,0 2.34,-0.21 3.41,-0.6c0.68,-0.25 0.87,-1.13 0.35,-1.65l0,0c-0.27,-0.27 -0.68,-0.37 -1.04,-0.23C13.87,19.83 12.95,20 12,20zM19,15h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_to_drive.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_to_drive.xml
deleted file mode 100644
index 698536b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_to_drive.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c0.17,0 0.33,0.01 0.49,0.02L15,3H9l5.68,9.84C15.77,11.71 17.3,11 19,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,4.52l-6.15,10.98l3,5.5l6.33,-10.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94 13,18.54 13,17C13,16.48 13.07,15.98 13.2,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l1,0l1,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_to_home_screen.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_to_home_screen.xml
deleted file mode 100644
index 427631f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_to_home_screen.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L8,1c-1.1,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1V5h10v14H8v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM11,15c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2.59L3.7,14.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L10,11.41V14c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_to_photos.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_to_photos.xml
deleted file mode 100644
index 1fee4b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_to_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6c-0.55,0 -1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM18,11h-3v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3h-3c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3L13,6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/add_to_queue.xml b/compose/material/material/icons/generator/raw-icons/rounded/add_to_queue.xml
deleted file mode 100644
index a1adb4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/add_to_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM20,17L4,17c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1zM16,11c0,0.55 -0.45,1 -1,1h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2L9,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/addchart.xml b/compose/material/material/icons/generator/raw-icons/rounded/addchart.xml
deleted file mode 100644
index 9e0b573..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/addchart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v7h-2V10zM20,13c-0.55,0 -1,0.45 -1,1v5H5V5h5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5C21,13.45 20.55,13 20,13zM21,5h-2V3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7h2c0.55,0 1,-0.45 1,-1C22,5.45 21.55,5 21,5zM16,13c-0.55,0 -1,0.45 -1,1v3h2v-3C17,13.45 16.55,13 16,13zM7,12v5h2v-5c0,-0.55 -0.45,-1 -1,-1S7,11.45 7,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/adf_scanner.xml b/compose/material/material/icons/generator/raw-icons/rounded/adf_scanner.xml
deleted file mode 100644
index ba57e46..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/adf_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-1V6c0,-1.1 -0.9,-2 -2,-2H8C6.9,4 6,4.9 6,6v6H5c-1.66,0 -3,1.34 -3,3v3c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-3C22,13.34 20.66,12 19,12zM16,12H8V6h8V12zM18,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,16.55 18.55,17 18,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/adjust.xml b/compose/material/material/icons/generator/raw-icons/rounded/adjust.xml
deleted file mode 100644
index 85c2377..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/adjust.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3 1.34,-3 3,-3 3,1.34 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/admin_panel_settings.xml b/compose/material/material/icons/generator/raw-icons/rounded/admin_panel_settings.xml
deleted file mode 100644
index d3c0b67..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/admin_panel_settings.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11c0.34,0 0.67,0.04 1,0.09V7.58c0,-0.8 -0.47,-1.52 -1.2,-1.83l-5.5,-2.4c-0.51,-0.22 -1.09,-0.22 -1.6,0l-5.5,2.4C3.47,6.07 3,6.79 3,7.58v3.6c0,4.54 3.2,8.79 7.5,9.82c0.55,-0.13 1.08,-0.32 1.6,-0.55C11.41,19.47 11,18.28 11,17C11,13.69 13.69,11 17,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C21,14.79 19.21,13 17,13zM17,14.38c0.62,0 1.12,0.51 1.12,1.12s-0.51,1.12 -1.12,1.12s-1.12,-0.51 -1.12,-1.12S16.38,14.38 17,14.38zM17,19.75c-0.93,0 -1.74,-0.46 -2.24,-1.17c0.05,-0.72 1.51,-1.08 2.24,-1.08s2.19,0.36 2.24,1.08C18.74,19.29 17.93,19.75 17,19.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ads_click.xml b/compose/material/material/icons/generator/raw-icons/rounded/ads_click.xml
deleted file mode 100644
index d63f34d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ads_click.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.71,17.99C8.53,17.84 6,15.22 6,12c0,-3.31 2.69,-6 6,-6c3.22,0 5.84,2.53 5.99,5.71l-2.1,-0.63C15.48,9.31 13.89,8 12,8c-2.21,0 -4,1.79 -4,4c0,1.89 1.31,3.48 3.08,3.89L11.71,17.99zM22,12c0,0.3 -0.01,0.6 -0.04,0.9l-1.97,-0.59C20,12.21 20,12.1 20,12c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8s3.58,8 8,8c0.1,0 0.21,0 0.31,-0.01l0.59,1.97C12.6,21.99 12.3,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2S22,6.48 22,12zM18.23,16.26l2.27,-0.76c0.46,-0.15 0.45,-0.81 -0.01,-0.95l-7.6,-2.28c-0.38,-0.11 -0.74,0.24 -0.62,0.62l2.28,7.6c0.14,0.47 0.8,0.48 0.95,0.01l0.76,-2.27l3.91,3.91c0.2,0.2 0.51,0.2 0.71,0l1.27,-1.27c0.2,-0.2 0.2,-0.51 0,-0.71L18.23,16.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/agriculture.xml b/compose/material/material/icons/generator/raw-icons/rounded/agriculture.xml
deleted file mode 100644
index c1ed5ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/agriculture.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,11.97c0.93,0 1.78,0.28 2.5,0.76V7.97c0,-1.1 -0.9,-2 -2,-2h-6.29l-1.06,-1.06l1.06,-1.06c0.2,-0.2 0.2,-0.51 0,-0.71s-0.51,-0.2 -0.71,0l-2.83,2.83c-0.2,0.2 -0.2,0.51 0,0.71l0,0c0.2,0.2 0.51,0.2 0.71,0l1.06,-1.06L13,6.68v2.29c0,1.1 -0.9,2 -2,2h-0.54c0.95,1.06 1.54,2.46 1.54,4c0,0.34 -0.04,0.67 -0.09,1h3.14C15.3,13.73 17.19,11.97 19.5,11.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,12.97c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S21.43,12.97 19.5,12.97zM19.5,17.97c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S20.33,17.97 19.5,17.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8.97h5c0,-1.1 -0.9,-2 -2,-2H4c-0.55,0 -1,0.45 -1,1C3,8.53 3.45,8.97 4,8.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,13.79l-0.18,-0.47l0.93,-0.35c-0.46,-1.06 -1.28,-1.91 -2.31,-2.43l-0.4,0.89l-0.46,-0.21l0.4,-0.9C7.26,10.11 6.64,9.97 6,9.97c-0.53,0 -1.04,0.11 -1.52,0.26l0.34,0.91l-0.47,0.18L4,10.4c-1.06,0.46 -1.91,1.28 -2.43,2.31l0.89,0.4l-0.21,0.46l-0.9,-0.4C1.13,13.72 1,14.33 1,14.97c0,0.53 0.11,1.04 0.26,1.52l0.91,-0.34l0.18,0.47l-0.93,0.35c0.46,1.06 1.28,1.91 2.31,2.43l0.4,-0.89l0.46,0.21l-0.4,0.9c0.57,0.22 1.18,0.35 1.82,0.35c0.53,0 1.04,-0.11 1.52,-0.26L7.18,18.8l0.47,-0.18L8,19.55c1.06,-0.46 1.91,-1.28 2.43,-2.31l-0.89,-0.4l0.21,-0.46l0.9,0.4c0.22,-0.57 0.35,-1.18 0.35,-1.82c0,-0.53 -0.11,-1.04 -0.26,-1.52L9.83,13.79zM7.15,17.75c-1.53,0.63 -3.29,-0.09 -3.92,-1.62c-0.63,-1.53 0.09,-3.29 1.62,-3.92c1.53,-0.63 3.29,0.09 3.92,1.62C9.41,15.36 8.68,17.11 7.15,17.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/air.xml b/compose/material/material/icons/generator/raw-icons/rounded/air.xml
deleted file mode 100644
index f3ec8d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/air.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.35,17.95c-0.28,0.89 -1.01,1.62 -1.9,1.9c-1.51,0.48 -2.94,-0.23 -3.59,-1.42C8.51,17.78 9.03,17 9.77,17h0.01c0.34,0 0.68,0.16 0.84,0.46c0.17,0.32 0.5,0.54 0.89,0.54c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H3c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h8.5C13.46,14 15,15.9 14.35,17.95zM18.91,5.67c-0.29,-1.26 -1.32,-2.29 -2.58,-2.58c-1.76,-0.4 -3.37,0.53 -4.02,1.98C12,5.74 12.48,6.5 13.21,6.5h0c0.39,0 0.75,-0.22 0.9,-0.57C14.34,5.38 14.87,5 15.5,5C16.33,5 17,5.67 17,6.5S16.33,8 15.5,8H3C2.45,8 2,8.45 2,9v0c0,0.55 0.45,1 1,1h12.5C17.7,10 19.43,7.96 18.91,5.67zM18.4,11L3,11c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h15.5c0.83,0 1.5,0.67 1.5,1.5c0,0.63 -0.38,1.16 -0.93,1.39c-0.36,0.15 -0.57,0.51 -0.57,0.9v0c0,0.73 0.76,1.21 1.43,0.91c1.43,-0.64 2.35,-2.21 2,-3.93C21.59,12.13 20.07,11 18.4,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_flat.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_flat.xml
deleted file mode 100644
index ceaf1eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_flat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11v2L9,13L9,9c0,-1.1 0.9,-2 2,-2h7c2.21,0 4,1.79 4,4zM2,15c0,0.55 0.45,1 1,1h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,14c-0.55,0 -1,0.45 -1,1zM7.14,12.1c1.16,-1.19 1.14,-3.08 -0.04,-4.24 -1.19,-1.16 -3.08,-1.14 -4.24,0.04 -1.16,1.19 -1.14,3.08 0.04,4.24 1.19,1.16 3.08,1.14 4.24,-0.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_flat_angled.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_flat_angled.xml
deleted file mode 100644
index 1aa6fdf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_flat_angled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.25,14.29l-0.69,1.89L9.2,11.71l1.39,-3.79c0.38,-1.03 1.52,-1.56 2.56,-1.19l6.69,2.41c2.1,0.76 3.18,3.06 2.41,5.15zM2.45,12.48l5.55,2L8,18c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-0.63l3.58,1.29c0.52,0.19 1.1,-0.08 1.29,-0.6 0.19,-0.52 -0.08,-1.1 -0.6,-1.29L3.13,10.59c-0.52,-0.19 -1.1,0.08 -1.29,0.6 -0.18,0.52 0.09,1.1 0.61,1.29zM7.3,10.2c1.49,-0.72 2.12,-2.51 1.41,-4C7.99,4.71 6.2,4.08 4.7,4.8c-1.49,0.71 -2.12,2.5 -1.4,4 0.71,1.49 2.5,2.12 4,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_individual_suite.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_individual_suite.xml
deleted file mode 100644
index 9a55475..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_individual_suite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.65,0 3,-1.35 3,-3S8.65,7 7,7s-3,1.35 -3,3 1.35,3 3,3zM19,7h-6c-1.1,0 -2,0.9 -2,2v5L3,14L3,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v7c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2v-4c0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_extra.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_extra.xml
deleted file mode 100644
index 02d1f1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12L4,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8c0,2.76 2.24,5 5,5h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L7,15c-1.66,0 -3,-1.34 -3,-3zM22.83,17.24c-0.38,-0.72 -1.29,-0.97 -2.03,-0.63l-1.09,0.5 -3.41,-6.98C15.96,9.45 15.27,9 14.51,9L11,9L11,3L5,3v8c0,1.66 1.34,3 3,3h7l2.56,5.25c0.48,0.98 1.64,1.39 2.63,0.94l1.95,-0.89c0.76,-0.36 1.09,-1.3 0.69,-2.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_normal.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_normal.xml
deleted file mode 100644
index 47dba52..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12L5,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8c0,2.76 2.24,5 5,5h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,15c-1.66,0 -3,-1.34 -3,-3zM20.5,18L19,18v-7c0,-1.1 -0.9,-2 -2,-2h-5L12,3L6,3v8c0,1.65 1.35,3 3,3h7v5c0,1.1 0.9,2 2,2h2.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_reduced.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_reduced.xml
deleted file mode 100644
index 880c699..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_legroom_reduced.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.97,19.2c0.18,0.96 -0.55,1.8 -1.47,1.8h-2.69c-1.3,0 -2.26,-1.22 -1.94,-2.49L15,14H9c-1.65,0 -3,-1.35 -3,-3V3h6v6h5c1.1,0 2,0.9 2,2l-2,7h1.44c0.73,0 1.39,0.49 1.53,1.2zM5,12V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8c0,2.76 2.24,5 5,5h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H8c-1.66,0 -3,-1.34 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_recline_extra.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_recline_extra.xml
deleted file mode 100644
index f91745f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_recline_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.35,5.64c-0.9,-0.64 -1.12,-1.88 -0.49,-2.79 0.63,-0.9 1.88,-1.12 2.79,-0.49 0.9,0.64 1.12,1.88 0.49,2.79 -0.64,0.9 -1.88,1.12 -2.79,0.49zM16,20c0,-0.55 -0.45,-1 -1,-1L8.93,19c-1.48,0 -2.74,-1.08 -2.96,-2.54L4.16,7.78C4.07,7.33 3.67,7 3.2,7c-0.62,0 -1.08,0.57 -0.96,1.18l1.75,8.58C4.37,19.2 6.47,21 8.94,21L15,21c0.55,0 1,-0.45 1,-1zM15.54,15h-4.19l-1.03,-4.1c1.28,0.72 2.63,1.28 4.1,1.3 0.58,0.01 1.05,-0.49 1.05,-1.07 0,-0.59 -0.49,-1.04 -1.08,-1.06 -1.31,-0.04 -2.63,-0.56 -3.61,-1.33L9.14,7.47c-0.23,-0.18 -0.49,-0.3 -0.76,-0.38 -0.32,-0.09 -0.66,-0.12 -0.99,-0.06h-0.02c-1.23,0.22 -2.05,1.39 -1.84,2.61l1.35,5.92C7.16,16.98 8.39,18 9.83,18h6.85l3.09,2.42c0.42,0.33 1.02,0.29 1.39,-0.08 0.45,-0.45 0.4,-1.18 -0.1,-1.57l-4.29,-3.35c-0.35,-0.27 -0.78,-0.42 -1.23,-0.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_recline_normal.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_recline_normal.xml
deleted file mode 100644
index 74e582d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_seat_recline_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.59,5.41c-0.78,-0.78 -0.78,-2.05 0,-2.83s2.05,-0.78 2.83,0 0.78,2.05 0,2.83c-0.79,0.79 -2.05,0.79 -2.83,0zM6,16L6,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8c0,2.76 2.24,5 5,5h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L9,19c-1.66,0 -3,-1.34 -3,-3zM19.28,19.35l-3.77,-3.77c-0.37,-0.37 -0.88,-0.58 -1.41,-0.58h-2.6v-3.68c1.09,0.89 2.66,1.7 4.2,2.02 0.67,0.14 1.3,-0.36 1.3,-1.04 0,-0.53 -0.39,-0.96 -0.92,-1.05 -1.42,-0.24 -2.88,-1.01 -3.75,-1.97l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C8.01,7 7,8.01 7,9.25L7,15c0,1.66 1.34,3 3,3h5.07l2.78,2.78c0.39,0.39 1.04,0.39 1.43,0 0.4,-0.39 0.4,-1.03 0,-1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airline_stops.xml b/compose/material/material/icons/generator/raw-icons/rounded/airline_stops.xml
deleted file mode 100644
index 6b8045f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airline_stops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h1c-0.47,-4.21 -3.89,-7.55 -8.12,-7.96C2.37,8.99 2,8.56 2,8.05c0,-0.59 0.52,-1.06 1.11,-1C7.03,7.44 10.37,9.87 12,13.3c1.13,-2.43 2.99,-4.25 4.78,-5.52l-1.92,-1.92C14.54,5.54 14.76,5 15.21,5h5.29C20.78,5 21,5.22 21,5.5v5.29c0,0.45 -0.54,0.67 -0.85,0.35l-1.94,-1.94C15.93,10.78 13.45,13.3 13,17h1C14.55,17 15,17.45 15,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airlines.xml b/compose/material/material/icons/generator/raw-icons/rounded/airlines.xml
deleted file mode 100644
index cc92b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airlines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,4h-5.01c-0.99,0 -1.91,0.49 -2.47,1.3L2,20h17l2.56,-13.63C21.79,5.14 20.84,4 19.59,4zM14.5,14c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C17,12.88 15.88,14 14.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airplane_ticket.xml b/compose/material/material/icons/generator/raw-icons/rounded/airplane_ticket.xml
deleted file mode 100644
index 06f94da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airplane_ticket.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.19,4H4C2.9,4 2.01,4.9 2.01,6v4C3.11,10 4,10.9 4,12s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.19,4 20.19,4zM17.73,13.3l-8.49,2.26c-0.22,0.06 -0.45,-0.04 -0.56,-0.23l-1.12,-1.95c-0.18,-0.3 -0.01,-0.69 0.32,-0.78h0c0.16,-0.04 0.34,-0.01 0.47,0.1l1.05,0.82l2.39,-0.64L9.9,9.6c-0.26,-0.44 -0.02,-1.01 0.47,-1.15l0,0c0.26,-0.07 0.54,0 0.74,0.18l3.69,3.44l2.44,-0.65c0.51,-0.14 1.04,0.17 1.18,0.68C18.55,12.62 18.25,13.15 17.73,13.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airplanemode_active.xml b/compose/material/material/icons/generator/raw-icons/rounded/airplanemode_active.xml
deleted file mode 100644
index 360739c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airplanemode_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.48,13.7L13.5,9V3.5C13.5,2.67 12.83,2 12,2c-0.83,0 -1.5,0.67 -1.5,1.5V9l-7.98,4.7C2.2,13.88 2,14.23 2,14.6c0,0.7 0.67,1.2 1.34,1.01l7.16,-2.1V19l-2.26,1.35C8.09,20.44 8,20.61 8,20.78l0,0.5h0v0.08c0,0.33 0.31,0.57 0.62,0.49l2.92,-0.73L12,21l0.38,0.09c0,0 0,0 0,0l0.42,0.11l1.9,0.48l0,0l0.67,0.17c0.32,0.08 0.62,-0.16 0.62,-0.49v-0.37c0,0 0,0 0,0v-0.21c0,-0.18 -0.09,-0.34 -0.24,-0.43L13.5,19v-5.5l7.16,2.1C21.33,15.8 22,15.3 22,14.6C22,14.23 21.8,13.88 21.48,13.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airplanemode_inactive.xml b/compose/material/material/icons/generator/raw-icons/rounded/airplanemode_inactive.xml
deleted file mode 100644
index 794079d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airplanemode_inactive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,14.6c0,0.7 -0.67,1.2 -1.34,1.01l-3.15,-0.93L10.5,7.67V3.5C10.5,2.67 11.17,2 12,2c0.83,0 1.5,0.67 1.5,1.5V9l7.98,4.7C21.8,13.88 22,14.23 22,14.6zM13.5,13.5L9.56,9.56L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l5.67,5.67L2.52,13.7C2.2,13.88 2,14.23 2,14.6c0,0.7 0.67,1.2 1.34,1.01l7.16,-2.1V19l-2.26,1.35C8.09,20.44 8,20.61 8,20.78l0,0.5h0v0.08c0,0.33 0.31,0.57 0.62,0.49l2.92,-0.73L12,21l0.38,0.09c0,0 0,0 0,0l0.42,0.11l1.9,0.48l0,0l0.67,0.17c0.32,0.08 0.62,-0.16 0.62,-0.49v-0.37c0,0 0,0 0,0v-0.21c0,-0.18 -0.09,-0.34 -0.24,-0.43L13.5,19v-2.67l5.57,5.57h0l0,0c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L13.5,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airplay.xml b/compose/material/material/icons/generator/raw-icons/rounded/airplay.xml
deleted file mode 100644
index df7f674..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airplay.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.41,22h7.17c0.89,0 1.34,-1.08 0.71,-1.71L12.7,16.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L7.7,20.29c-0.62,0.63 -0.18,1.71 0.71,1.71zM21,3H3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/airport_shuttle.xml b/compose/material/material/icons/generator/raw-icons/rounded/airport_shuttle.xml
deleted file mode 100644
index 461c6ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/airport_shuttle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.41,10.41l-4.83,-4.83c-0.37,-0.37 -0.88,-0.58 -1.41,-0.58L3,5c-1.1,0 -2,0.89 -2,2v7c0,1.1 0.9,2 2,2 0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3c1.1,0 2,-0.9 2,-2v-2.17c0,-0.53 -0.21,-1.04 -0.59,-1.42zM3,10L3,8c0,-0.55 0.45,-1 1,-1h3v4L4,11c-0.55,0 -1,-0.45 -1,-1zM6,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM13,11L9,11L9,7h4v4zM18,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM15,11L15,7h1l4,4h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/alarm.xml b/compose/material/material/icons/generator/raw-icons/rounded/alarm.xml
deleted file mode 100644
index 1aa074c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.87,15.25l-3.37,-2L12.5,8.72c0,-0.4 -0.32,-0.72 -0.72,-0.72h-0.06c-0.4,0 -0.72,0.32 -0.72,0.72v4.72c0,0.35 0.18,0.68 0.49,0.86l3.65,2.19c0.34,0.2 0.78,0.1 0.98,-0.24 0.21,-0.35 0.1,-0.8 -0.25,-1zM21.18,5.01L18.1,2.45c-0.42,-0.35 -1.05,-0.3 -1.41,0.13 -0.35,0.42 -0.29,1.05 0.13,1.41l3.07,2.56c0.42,0.35 1.05,0.3 1.41,-0.13 0.36,-0.42 0.3,-1.05 -0.12,-1.41zM4.1,6.55l3.07,-2.56c0.43,-0.36 0.49,-0.99 0.13,-1.41 -0.35,-0.43 -0.98,-0.48 -1.4,-0.13L2.82,5.01c-0.42,0.36 -0.48,0.99 -0.12,1.41 0.35,0.43 0.98,0.48 1.4,0.13zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/alarm_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/alarm_add.xml
deleted file mode 100644
index 3dfcb89..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/alarm_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.18,5.01L18.1,2.45c-0.42,-0.35 -1.05,-0.3 -1.41,0.13 -0.35,0.42 -0.29,1.05 0.13,1.41l3.07,2.56c0.42,0.35 1.05,0.3 1.41,-0.13 0.36,-0.42 0.3,-1.05 -0.12,-1.41zM4.1,6.55l3.07,-2.56c0.43,-0.36 0.49,-0.99 0.13,-1.41 -0.35,-0.43 -0.98,-0.48 -1.4,-0.13L2.82,5.01c-0.42,0.36 -0.48,0.99 -0.12,1.41 0.35,0.43 0.98,0.48 1.4,0.13zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7zM15,12h-2v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2L9,12c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/alarm_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/alarm_off.xml
deleted file mode 100644
index ff5937d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/alarm_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.04,6.29C10.66,6.11 11.32,6 12,6c3.86,0 7,3.14 7,7 0,0.68 -0.11,1.34 -0.29,1.96l1.56,1.56c0.47,-1.08 0.73,-2.27 0.73,-3.52 0,-4.97 -4.03,-9 -9,-9 -1.25,0 -2.44,0.26 -3.53,0.72l1.57,1.57zM3.71,2.79c-0.38,-0.38 -1,-0.38 -1.39,0l-0.02,0.03c-0.39,0.39 -0.39,1.01 0,1.39l0.68,0.68 -0.17,0.14c-0.42,0.34 -0.47,0.96 -0.13,1.38l0.03,0.03c0.35,0.42 0.96,0.47 1.38,0.12l0.31,-0.25 0.8,0.8C3.83,8.69 3,10.75 3,13c0,4.97 4.03,9 9,9 2.25,0 4.31,-0.83 5.89,-2.2l1.41,1.41c0.38,0.38 1,0.38 1.39,0l0.03,-0.03c0.38,-0.38 0.38,-1 0,-1.39l-17.01,-17zM12,20c-3.86,0 -7,-3.14 -7,-7 0,-1.7 0.61,-3.26 1.62,-4.47l9.85,9.85C15.26,19.39 13.7,20 12,20zM19.91,6.56c0.42,0.35 1.03,0.29 1.38,-0.12l0.03,-0.03c0.35,-0.42 0.29,-1.03 -0.12,-1.38l-3.1,-2.59c-0.42,-0.35 -1.03,-0.29 -1.38,0.12l-0.03,0.03c-0.35,0.42 -0.29,1.03 0.12,1.38l3.1,2.59zM7.43,3.68c0.18,-0.34 0.15,-0.77 -0.11,-1.09l-0.03,-0.03c-0.3,-0.36 -0.8,-0.43 -1.2,-0.22l1.34,1.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/alarm_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/alarm_on.xml
deleted file mode 100644
index 08d34bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/alarm_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.94,10.11l-4.4,4.42 -1.6,-1.6c-0.29,-0.29 -0.77,-0.29 -1.06,0 -0.29,0.29 -0.29,0.77 0,1.06L10,16.11c0.29,0.29 0.77,0.29 1.06,0L16,11.17c0.29,-0.29 0.29,-0.77 0,-1.06 -0.29,-0.29 -0.77,-0.29 -1.06,0zM21.18,5.01L18.1,2.45c-0.42,-0.35 -1.05,-0.3 -1.41,0.13 -0.35,0.42 -0.29,1.05 0.13,1.41l3.07,2.56c0.42,0.35 1.05,0.3 1.41,-0.13 0.36,-0.42 0.3,-1.05 -0.12,-1.41zM4.1,6.55l3.07,-2.56c0.43,-0.36 0.49,-0.99 0.13,-1.41 -0.35,-0.43 -0.98,-0.48 -1.4,-0.13L2.82,5.01c-0.42,0.36 -0.48,0.99 -0.12,1.41 0.35,0.43 0.98,0.48 1.4,0.13zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/album.xml b/compose/material/material/icons/generator/raw-icons/rounded/album.xml
deleted file mode 100644
index 58c0ba6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,16.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,7.5 12,7.5s4.5,2.01 4.5,4.5 -2.01,4.5 -4.5,4.5zM12,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_center.xml b/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_center.xml
deleted file mode 100644
index bcb1896..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L12,2c0.55,0 1,0.45 1,1v4l6.5,0C20.33,7 21,7.67 21,8.5v0c0,0.83 -0.67,1.5 -1.5,1.5H13v4h3.5c0.83,0 1.5,0.67 1.5,1.5v0c0,0.83 -0.67,1.5 -1.5,1.5H13v4c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-4H7.5C6.67,17 6,16.33 6,15.5v0C6,14.67 6.67,14 7.5,14H11v-4H4.5C3.67,10 3,9.33 3,8.5v0C3,7.67 3.67,7 4.5,7H11l0,-4C11,2.45 11.45,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_left.xml
deleted file mode 100644
index 5034ea2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,22L3,22c-0.55,0 -1,-0.45 -1,-1V3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v18C4,21.55 3.55,22 3,22zM20.5,7h-13C6.67,7 6,7.67 6,8.5v0C6,9.33 6.67,10 7.5,10h13c0.83,0 1.5,-0.67 1.5,-1.5v0C22,7.67 21.33,7 20.5,7zM14.5,14h-7C6.67,14 6,14.67 6,15.5v0C6,16.33 6.67,17 7.5,17h7c0.83,0 1.5,-0.67 1.5,-1.5v0C16,14.67 15.33,14 14.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_right.xml
deleted file mode 100644
index 9092905..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/align_horizontal_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L21,2c0.55,0 1,0.45 1,1v18c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V3C20,2.45 20.45,2 21,2zM3.5,10h13c0.83,0 1.5,-0.67 1.5,-1.5v0C18,7.67 17.33,7 16.5,7h-13C2.67,7 2,7.67 2,8.5v0C2,9.33 2.67,10 3.5,10zM9.5,17h7c0.83,0 1.5,-0.67 1.5,-1.5v0c0,-0.83 -0.67,-1.5 -1.5,-1.5h-7C8.67,14 8,14.67 8,15.5v0C8,16.33 8.67,17 9.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_bottom.xml b/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_bottom.xml
deleted file mode 100644
index bf8f4e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,22H3c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h18c0.55,0 1,0.45 1,1v0C22,21.55 21.55,22 21,22zM8.5,2L8.5,2C7.67,2 7,2.67 7,3.5v13C7,17.33 7.67,18 8.5,18h0c0.83,0 1.5,-0.67 1.5,-1.5v-13C10,2.67 9.33,2 8.5,2zM15.5,8L15.5,8C14.67,8 14,8.67 14,9.5v7c0,0.83 0.67,1.5 1.5,1.5h0c0.83,0 1.5,-0.67 1.5,-1.5v-7C17,8.67 16.33,8 15.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_center.xml b/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_center.xml
deleted file mode 100644
index 8da44aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-4V7.5C17,6.67 16.33,6 15.5,6h0C14.67,6 14,6.67 14,7.5V11h-4V4.5C10,3.67 9.33,3 8.5,3h0C7.67,3 7,3.67 7,4.5V11H2.84c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1H7v6.5C7,20.33 7.67,21 8.5,21h0c0.83,0 1.5,-0.67 1.5,-1.5V13h4v3.5c0,0.83 0.67,1.5 1.5,1.5h0c0.83,0 1.5,-0.67 1.5,-1.5V13h4c0.55,0 1,-0.45 1,-1v0C22,11.45 21.55,11 21,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_top.xml b/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_top.xml
deleted file mode 100644
index 9cf7ffb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/align_vertical_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L22,3c0,0.55 -0.45,1 -1,1H3C2.45,4 2,3.55 2,3v0c0,-0.55 0.45,-1 1,-1h18C21.55,2 22,2.45 22,3zM8.5,22L8.5,22c0.83,0 1.5,-0.67 1.5,-1.5v-13C10,6.67 9.33,6 8.5,6h0C7.67,6 7,6.67 7,7.5v13C7,21.33 7.67,22 8.5,22zM15.5,16L15.5,16c0.83,0 1.5,-0.67 1.5,-1.5v-7C17,6.67 16.33,6 15.5,6h0C14.67,6 14,6.67 14,7.5v7C14,15.33 14.67,16 15.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/all_inbox.xml b/compose/material/material/icons/generator/raw-icons/rounded/all_inbox.xml
deleted file mode 100644
index 0fee612..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/all_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v7c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,9h-3.14c-0.47,0 -0.84,0.33 -0.97,0.78C14.53,11.04 13.35,12 12,12s-2.53,-0.96 -2.89,-2.22c-0.13,-0.45 -0.5,-0.78 -0.97,-0.78L5,9L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v3zM15.87,16L20,16c0.55,0 1,0.45 1,1v2c0,1.1 -0.9,2 -2,2L5,21c-1.1,0 -2,-0.9 -2,-2v-2c0,-0.55 0.45,-1 1,-1h4.13c0.47,0 0.85,0.34 0.98,0.8 0.35,1.27 1.51,2.2 2.89,2.2s2.54,-0.93 2.89,-2.2c0.13,-0.46 0.51,-0.8 0.98,-0.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/all_inclusive.xml b/compose/material/material/icons/generator/raw-icons/rounded/all_inclusive.xml
deleted file mode 100644
index 67cc0a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/all_inclusive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.22,6.86c-2,-0.6 -4.06,-0.04 -5.39,1.29L12,10.66 10.48,12h0.01L7.8,14.39c-0.81,0.81 -1.95,1.15 -3.12,0.92 -1.25,-0.25 -2.28,-1.25 -2.57,-2.49 -0.52,-2.23 1.16,-4.2 3.29,-4.2 0.91,0 1.76,0.35 2.44,1.03l0.47,0.41c0.38,0.34 0.95,0.34 1.33,0 0.45,-0.4 0.45,-1.1 0,-1.5l-0.42,-0.36C8.2,7.18 6.84,6.62 5.4,6.62 2.42,6.62 0,9.04 0,12s2.42,5.38 5.4,5.38c1.44,0 2.8,-0.56 3.77,-1.53l2.83,-2.5 0.01,0.01L13.52,12h-0.01l2.69,-2.39c0.81,-0.81 1.95,-1.15 3.12,-0.92 1.25,0.25 2.28,1.25 2.57,2.49 0.52,2.23 -1.16,4.2 -3.29,4.2 -0.9,0 -1.76,-0.35 -2.44,-1.03l-0.48,-0.42c-0.38,-0.34 -0.95,-0.34 -1.33,0 -0.45,0.4 -0.45,1.1 0,1.5l0.42,0.37c1.02,1.01 2.37,1.57 3.82,1.57 3.27,0 5.86,-2.9 5.33,-6.25 -0.3,-1.99 -1.77,-3.69 -3.7,-4.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/all_out.xml b/compose/material/material/icons/generator/raw-icons/rounded/all_out.xml
deleted file mode 100644
index d0c578e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/all_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4.5L4,8l4,-4L4.5,4c-0.28,0 -0.5,0.22 -0.5,0.5zM16,4l4,4L20,4.5c0,-0.28 -0.22,-0.5 -0.5,-0.5L16,4zM20,19.5L20,16l-4,4h3.5c0.28,0 0.5,-0.22 0.5,-0.5zM4.5,20L8,20l-4,-4v3.5c0,0.28 0.22,0.5 0.5,0.5zM19,12c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7 3.13,7 7,7 7,-3.13 7,-7zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/alt_route.xml b/compose/material/material/icons/generator/raw-icons/rounded/alt_route.xml
deleted file mode 100644
index 2041691..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/alt_route.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.16l-1.42,1.42c-0.68,-0.69 -1.34,-1.58 -1.79,-2.94l1.94,-0.49C8.83,10.04 9.28,10.65 9.78,11.16zM10.15,5.15L7.35,2.35c-0.2,-0.2 -0.51,-0.2 -0.71,0L3.85,5.15C3.54,5.46 3.76,6 4.21,6h1.81C6.04,6.81 6.1,7.54 6.21,8.17l1.94,-0.49C8.08,7.2 8.03,6.63 8.02,6h1.78C10.24,6 10.46,5.46 10.15,5.15zM20.15,5.15l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.79,2.79C13.54,5.46 13.76,6 14.21,6h1.78c-0.1,3.68 -1.28,4.75 -2.54,5.88c-0.5,0.44 -1.01,0.92 -1.45,1.55c-0.34,-0.49 -0.73,-0.88 -1.13,-1.24L9.46,13.6C10.39,14.45 11,15.14 11,17c0,0 0,0 0,0h0v4c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-4c0,0 0,0 0,0c0,-2.02 0.71,-2.66 1.79,-3.63c1.38,-1.24 3.08,-2.78 3.2,-7.37h1.8C20.24,6 20.46,5.46 20.15,5.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/alternate_email.xml b/compose/material/material/icons/generator/raw-icons/rounded/alternate_email.xml
deleted file mode 100644
index 2668818..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/alternate_email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.72,2.03C6.63,1.6 1.6,6.63 2.03,12.72 2.39,18.01 7.01,22 12.31,22H16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3.67c-3.73,0 -7.15,-2.42 -8.08,-6.03 -1.49,-5.8 3.91,-11.21 9.71,-9.71C17.58,5.18 20,8.6 20,12.33v1.1c0,0.79 -0.71,1.57 -1.5,1.57s-1.5,-0.78 -1.5,-1.57v-1.25c0,-2.51 -1.78,-4.77 -4.26,-5.12 -3.4,-0.49 -6.27,2.45 -5.66,5.87 0.34,1.91 1.83,3.49 3.72,3.94 1.84,0.43 3.59,-0.16 4.74,-1.33 0.89,1.22 2.67,1.86 4.3,1.21 1.34,-0.53 2.16,-1.9 2.16,-3.34v-1.09c0,-5.31 -3.99,-9.93 -9.28,-10.29zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/amp_stories.xml b/compose/material/material/icons/generator/raw-icons/rounded/amp_stories.xml
deleted file mode 100644
index 5f4bbfd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/amp_stories.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4H9C7.9,4 7,4.9 7,6v12c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2V6C17,4.9 16.1,4 15,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6C3.45,6 3,6.45 3,7v10c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7C5,6.45 4.55,6 4,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7C21,6.45 20.55,6 20,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/analytics.xml b/compose/material/material/icons/generator/raw-icons/rounded/analytics.xml
deleted file mode 100644
index 0366c6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/analytics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM8,17L8,17c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3C9,16.55 8.55,17 8,17zM12,17L12,17c-0.55,0 -1,-0.45 -1,-1v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1C13,16.55 12.55,17 12,17zM12,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,12 12,12zM16,17L16,17c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v8C17,16.55 16.55,17 16,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/anchor.xml b/compose/material/material/icons/generator/raw-icons/rounded/anchor.xml
deleted file mode 100644
index 66e78eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/anchor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9V7.82C14.16,7.4 15,6.3 15,5c0,-1.65 -1.35,-3 -3,-3S9,3.35 9,5c0,1.3 0.84,2.4 2,2.82V9H9c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v8.92c-2.22,-0.33 -4.59,-1.68 -5.55,-3.37l1.14,-1.14c0.22,-0.22 0.19,-0.57 -0.05,-0.75L3.8,12.6C3.47,12.35 3,12.59 3,13v2c0,3.88 4.92,7 9,7s9,-3.12 9,-7v-2c0,-0.41 -0.47,-0.65 -0.8,-0.4l-2.74,2.05c-0.24,0.18 -0.27,0.54 -0.05,0.75l1.14,1.14c-0.96,1.69 -3.33,3.04 -5.55,3.37V11h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H13zM12,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/android.xml b/compose/material/material/icons/generator/raw-icons/rounded/android.xml
deleted file mode 100644
index 28c533f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.6,9.48l1.84,-3.18c0.16,-0.31 0.04,-0.69 -0.26,-0.85c-0.29,-0.15 -0.65,-0.06 -0.83,0.22l-1.88,3.24c-2.86,-1.21 -6.08,-1.21 -8.94,0L5.65,5.67c-0.19,-0.29 -0.58,-0.38 -0.87,-0.2C4.5,5.65 4.41,6.01 4.56,6.3L6.4,9.48C3.3,11.25 1.28,14.44 1,18h22C22.72,14.44 20.7,11.25 17.6,9.48zM7,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25S8.25,13.31 8.25,14C8.25,14.69 7.69,15.25 7,15.25zM17,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25C18.25,14.69 17.69,15.25 17,15.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/animation.xml b/compose/material/material/icons/generator/raw-icons/rounded/animation.xml
deleted file mode 100644
index 8851c08..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/animation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2c-2.71,0 -5.05,1.54 -6.22,3.78c-1.28,0.67 -2.34,1.72 -3,3C3.54,9.95 2,12.29 2,15c0,3.87 3.13,7 7,7c2.71,0 5.05,-1.54 6.22,-3.78c1.28,-0.67 2.34,-1.72 3,-3C20.46,14.05 22,11.71 22,9C22,5.13 18.87,2 15,2zM9,20c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.87 3.13,7 7,7C11.16,19.63 10.12,20 9,20zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.86 3.13,6.99 7,7C14.16,16.63 13.12,17 12,17zM16.7,13.7C16.17,13.89 15.6,14 15,14c-2.76,0 -5,-2.24 -5,-5c0,-0.6 0.11,-1.17 0.3,-1.7C10.83,7.11 11.4,7 12,7c2.76,0 5,2.24 5,5C17,12.6 16.89,13.17 16.7,13.7zM19,12c0,-3.86 -3.13,-6.99 -7,-7c0.84,-0.63 1.87,-1 3,-1c2.76,0 5,2.24 5,5C20,10.12 19.63,11.16 19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/announcement.xml b/compose/material/material/icons/generator/raw-icons/rounded/announcement.xml
deleted file mode 100644
index 6af86c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/announcement.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM12,11c-0.55,0 -1,-0.45 -1,-1L11,6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1zM13,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/aod.xml b/compose/material/material/icons/generator/raw-icons/rounded/aod.xml
deleted file mode 100644
index 666256c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/aod.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM8.75,10h6.5c0.41,0 0.75,0.34 0.75,0.75v0c0,0.41 -0.34,0.75 -0.75,0.75h-6.5C8.34,11.5 8,11.16 8,10.75v0C8,10.34 8.34,10 8.75,10zM9.75,13h4.5c0.41,0 0.75,0.34 0.75,0.75v0c0,0.41 -0.34,0.75 -0.75,0.75h-4.5C9.34,14.5 9,14.16 9,13.75v0C9,13.34 9.34,13 9.75,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/apartment.xml b/compose/material/material/icons/generator/raw-icons/rounded/apartment.xml
deleted file mode 100644
index 6a4b623..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/apartment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11V5c0,-1.1 -0.9,-2 -2,-2H9C7.9,3 7,3.9 7,5v2H5C3.9,7 3,7.9 3,9v10c0,1.1 0.9,2 2,2h5c0.55,0 1,-0.45 1,-1v-3h2v3c0,0.55 0.45,1 1,1h5c1.1,0 2,-0.9 2,-2v-6c0,-1.1 -0.9,-2 -2,-2H17zM7,19H5v-2h2V19zM7,15H5v-2h2V15zM7,11H5V9h2V11zM11,15H9v-2h2V15zM11,11H9V9h2V11zM11,7H9V5h2V7zM15,15h-2v-2h2V15zM15,11h-2V9h2V11zM15,7h-2V5h2V7zM19,19h-2v-2h2V19zM19,15h-2v-2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/api.xml b/compose/material/material/icons/generator/raw-icons/rounded/api.xml
deleted file mode 100644
index b44f382..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/api.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13L13,13c-0.56,0.56 -1.45,0.56 -2,0.01L11,13c-0.55,-0.55 -0.55,-1.44 0,-1.99L11,11c0.55,-0.55 1.44,-0.55 1.99,0L13,11C13.55,11.55 13.55,12.45 13,13zM12,6l2.12,2.12l2.5,-2.5l-3.2,-3.2c-0.78,-0.78 -2.05,-0.78 -2.83,0l-3.2,3.2l2.5,2.5L12,6zM6,12l2.12,-2.12l-2.5,-2.5l-3.2,3.2c-0.78,0.78 -0.78,2.05 0,2.83l3.2,3.2l2.5,-2.5L6,12zM18,12l-2.12,2.12l2.5,2.5l3.2,-3.2c0.78,-0.78 0.78,-2.05 0,-2.83l-3.2,-3.2l-2.5,2.5L18,12zM12,18l-2.12,-2.12l-2.5,2.5l3.2,3.2c0.78,0.78 2.05,0.78 2.83,0l3.2,-3.2l-2.5,-2.5L12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/app_blocking.xml b/compose/material/material/icons/generator/raw-icons/rounded/app_blocking.xml
deleted file mode 100644
index a415c4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/app_blocking.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C22,9.79 20.21,8 18,8zM15.5,12c0,-1.38 1.12,-2.5 2.5,-2.5c0.42,0 0.8,0.11 1.15,0.29l-3.36,3.36C15.61,12.8 15.5,12.42 15.5,12zM18,14.5c-0.42,0 -0.8,-0.11 -1.15,-0.29l3.36,-3.36c0.18,0.35 0.29,0.73 0.29,1.15C20.5,13.38 19.38,14.5 18,14.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V6V5V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-2v-1v-1h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/app_registration.xml b/compose/material/material/icons/generator/raw-icons/rounded/app_registration.xml
deleted file mode 100644
index 7feb4c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/app_registration.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18.07v1.43c0,0.28 0.22,0.5 0.5,0.5h1.4c0.13,0 0.26,-0.05 0.35,-0.15l5.83,-5.83l-2.12,-2.12l-5.81,5.81C11.05,17.81 11,17.94 11,18.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,14L14,12.03V12c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2H12.03z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.85,11.56l-1.41,-1.41c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.06,1.06l2.12,2.12l1.06,-1.06C21.05,12.07 21.05,11.76 20.85,11.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/app_settings_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/app_settings_alt.xml
deleted file mode 100644
index a4fec84..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/app_settings_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2L7,1.01C5.9,1.01 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18zM21,12c0,-0.13 -0.02,-0.26 -0.04,-0.39l0.64,-0.48c0.2,-0.15 0.26,-0.44 0.13,-0.66l-0.57,-0.96c-0.13,-0.21 -0.39,-0.3 -0.62,-0.2l-0.72,0.3c-0.2,-0.15 -0.42,-0.29 -0.65,-0.39l-0.1,-0.77c-0.03,-0.25 -0.24,-0.43 -0.49,-0.44l-1.12,-0.02c-0.26,0 -0.47,0.18 -0.5,0.44l-0.1,0.79c-0.24,0.1 -0.45,0.23 -0.65,0.39l-0.72,-0.3c-0.23,-0.1 -0.5,-0.01 -0.62,0.2l-0.57,0.96c-0.13,0.22 -0.08,0.5 0.13,0.66l0.64,0.48C15.02,11.74 15,11.87 15,12c0,0.13 0.02,0.25 0.04,0.37l-0.64,0.49c-0.2,0.15 -0.26,0.43 -0.13,0.65l0.56,0.97c0.13,0.22 0.39,0.31 0.63,0.21l0.73,-0.31c0.2,0.16 0.42,0.3 0.67,0.4l0.1,0.77c0.03,0.25 0.24,0.44 0.5,0.44h1.12c0.25,0 0.46,-0.19 0.5,-0.44l0.1,-0.77c0.24,-0.1 0.46,-0.24 0.67,-0.4l0.73,0.31c0.23,0.1 0.5,0.01 0.63,-0.21l0.56,-0.97c0.13,-0.22 0.07,-0.5 -0.13,-0.65l-0.64,-0.49C20.98,12.25 21,12.13 21,12zM18,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S18.83,13.5 18,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/app_shortcut.xml b/compose/material/material/icons/generator/raw-icons/rounded/app_shortcut.xml
deleted file mode 100644
index 7c73002..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/app_shortcut.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,9.62l0.4,0.87c0.09,0.2 0.37,0.2 0.46,0l0.4,-0.87l0.87,-0.4c0.2,-0.09 0.2,-0.37 0,-0.46l-0.87,-0.4l-0.4,-0.87c-0.09,-0.2 -0.37,-0.2 -0.46,0l-0.4,0.87l-0.87,0.4c-0.2,0.09 -0.2,0.37 0,0.46L20.38,9.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.54,9l-0.79,1.75L13,11.54c-0.39,0.18 -0.39,0.73 0,0.91l1.75,0.79L15.54,15c0.18,0.39 0.73,0.39 0.91,0l0.79,-1.75L19,12.46c0.39,-0.18 0.39,-0.73 0,-0.91l-1.75,-0.79L16.46,9C16.28,8.61 15.72,8.61 15.54,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.77,13.5l-0.4,0.87l-0.87,0.4c-0.2,0.09 -0.2,0.37 0,0.46l0.87,0.4l0.4,0.87c0.09,0.2 0.37,0.2 0.46,0l0.4,-0.87l0.87,-0.4c0.2,-0.09 0.2,-0.37 0,-0.46l-0.87,-0.4l-0.4,-0.87C21.14,13.31 20.86,13.31 20.77,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/approval.xml b/compose/material/material/icons/generator/raw-icons/rounded/approval.xml
deleted file mode 100644
index 674eb88..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/approval.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16v4c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2H6C4.9,14 4,14.9 4,16zM17,18H7c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1v0C18,17.55 17.55,18 17,18zM12,2C9.54,2 7.48,3.79 7.07,6.13C6.99,6.65 7.13,7.18 7.43,7.6l3.76,5.26c0.4,0.56 1.23,0.56 1.63,0l3.76,-5.26c0.3,-0.42 0.44,-0.95 0.35,-1.47C16.52,3.79 14.46,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/apps.xml b/compose/material/material/icons/generator/raw-icons/rounded/apps.xml
deleted file mode 100644
index 374e8f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/apps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4L8,4L4,4v4zM10,20h4v-4h-4v4zM4,20h4v-4L4,16v4zM4,14h4v-4L4,10v4zM10,14h4v-4h-4v4zM16,4v4h4L20,4h-4zM10,8h4L14,4h-4v4zM16,14h4v-4h-4v4zM16,20h4v-4h-4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/apps_outage.xml b/compose/material/material/icons/generator/raw-icons/rounded/apps_outage.xml
deleted file mode 100644
index 4ea4921..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/apps_outage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8c1.1,0 2,-0.9 2,-2S7.1,4 6,4S4,4.9 4,6S4.9,8 6,8zM12,20c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,20 12,20zM6,20c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S4.9,20 6,20zM6,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S4.9,14 6,14zM12,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,14 12,14zM12.07,4C12.05,4 12.02,4 12,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c0.22,0 0.43,-0.04 0.63,-0.1C12.22,7.01 12,6.03 12,5C12,4.66 12.02,4.33 12.07,4zM19,12c-1.03,0 -2.01,-0.22 -2.9,-0.63C16.04,11.57 16,11.78 16,12c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.02 0,-0.05 0,-0.07C19.67,11.98 19.34,12 19,12zM18,20c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S16.9,20 18,20zM19,0c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S21.76,0 19,0zM19.5,7.5C19.5,7.78 19.28,8 19,8c-0.27,0 -0.5,-0.22 -0.5,-0.5S18.72,7 19,7S19.5,7.22 19.5,7.5zM19,6c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3C18.5,2.22 18.72,2 19,2s0.5,0.22 0.5,0.5v3C19.5,5.78 19.28,6 19,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/architecture.xml b/compose/material/material/icons/generator/raw-icons/rounded/architecture.xml
deleted file mode 100644
index 64104a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/architecture.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.36,18.78L6.61,21l1.62,-1.54l2.77,-7.6c-0.68,-0.17 -1.28,-0.51 -1.77,-0.98L6.36,18.78z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.77,10.88c-0.49,0.47 -1.1,0.81 -1.77,0.98l2.77,7.6L17.39,21l0.26,-2.22L14.77,10.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.94,8.6c0.3,-1.56 -0.6,-2.94 -1.94,-3.42V4c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1.18C9.84,5.6 9,6.7 9,8c0,1.84 1.66,3.3 3.56,2.95C13.74,10.73 14.71,9.78 14.94,8.6zM12,9c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,8.55 12.55,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/archive.xml b/compose/material/material/icons/generator/raw-icons/rounded/archive.xml
deleted file mode 100644
index 7800d10..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/archive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.54,5.23l-1.39,-1.68C18.88,3.21 18.47,3 18,3L6,3c-0.47,0 -0.88,0.21 -1.16,0.55L3.46,5.23C3.17,5.57 3,6.02 3,6.5L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6.5c0,-0.48 -0.17,-0.93 -0.46,-1.27zM11.65,17.15L6.5,12L10,12v-2h4v2h3.5l-5.15,5.15c-0.19,0.19 -0.51,0.19 -0.7,0zM5.12,5l0.81,-1h12l0.94,1L5.12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/area_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/area_chart.xml
deleted file mode 100644
index 7379f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/area_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17l3.39,-4.66c0.33,-0.46 0.98,-0.55 1.42,-0.2L21,18.5V19c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1l0,-5.72c0.22,0 0.44,0.07 0.62,0.22L8,17zM3,11c0.44,0 0.88,0.15 1.25,0.44l3.37,2.69l2.77,-3.81c0.66,-0.91 1.95,-1.1 2.85,-0.4L21,15.97V8c0,-0.55 -0.45,-1 -1,-1h-3l-4.18,-3.34c-0.45,-0.36 -1.1,-0.27 -1.44,0.2L7,10L3.6,7.45C3.42,7.32 3.21,7.25 3,7.25L3,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_back.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_back.xml
deleted file mode 100644
index 36a59be..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_back.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11H7.83l4.88,-4.88c0.39,-0.39 0.39,-1.03 0,-1.42 -0.39,-0.39 -1.02,-0.39 -1.41,0l-6.59,6.59c-0.39,0.39 -0.39,1.02 0,1.41l6.59,6.59c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L7.83,13H19c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_back_ios.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_back_ios.xml
deleted file mode 100644
index 182bced..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_back_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.62,2.99c-0.49,-0.49 -1.28,-0.49 -1.77,0L6.54,11.3c-0.39,0.39 -0.39,1.02 0,1.41l8.31,8.31c0.49,0.49 1.28,0.49 1.77,0s0.49,-1.28 0,-1.77L9.38,12l7.25,-7.25c0.48,-0.48 0.48,-1.28 -0.01,-1.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_back_ios_new.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_back_ios_new.xml
deleted file mode 100644
index 6a97495..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_back_ios_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.88,2.88L16.88,2.88c-0.49,-0.49 -1.28,-0.49 -1.77,0l-8.41,8.41c-0.39,0.39 -0.39,1.02 0,1.41l8.41,8.41c0.49,0.49 1.28,0.49 1.77,0l0,0c0.49,-0.49 0.49,-1.28 0,-1.77L9.54,12l7.35,-7.35C17.37,4.16 17.37,3.37 16.88,2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_down.xml
deleted file mode 100644
index 8cafd5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13,12l0,-3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1l0,3H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.35,-0.85H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_left.xml
deleted file mode 100644
index d8d5a39..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10S17.52,2 12,2C6.48,2 2,6.48 2,12zM12,9.21L12,11l3,0c0.55,0 1,0.45 1,1s-0.45,1 -1,1l-3,0l0,1.79c0,0.45 -0.54,0.67 -0.85,0.35l-2.79,-2.79c-0.2,-0.2 -0.2,-0.51 0,-0.71l2.79,-2.79C11.46,8.54 12,8.76 12,9.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_right.xml
deleted file mode 100644
index c2dff00..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12s4.48,10 10,10C17.52,22 22,17.52 22,12zM12,14.79V13H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3V9.21c0,-0.45 0.54,-0.67 0.85,-0.35l2.79,2.79c0.2,0.2 0.2,0.51 0,0.71l-2.79,2.79C12.54,15.46 12,15.24 12,14.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_up.xml
deleted file mode 100644
index 69f0dc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_circle_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20M12,22c5.52,0 10,-4.48 10,-10c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22L12,22zM11,12l0,3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1l0,-3h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.79,2.79C8.54,11.46 8.76,12 9.21,12H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_downward.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_downward.xml
deleted file mode 100644
index 5a15de3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_downward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5v11.17l-4.88,-4.88c-0.39,-0.39 -1.03,-0.39 -1.42,0 -0.39,0.39 -0.39,1.02 0,1.41l6.59,6.59c0.39,0.39 1.02,0.39 1.41,0l6.59,-6.59c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0L13,16.17V5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_down.xml
deleted file mode 100644
index d6eddfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.71,11.71l2.59,2.59c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.63,-0.63 0.18,-1.71 -0.71,-1.71H9.41c-0.89,0 -1.33,1.08 -0.7,1.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_down_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_down_circle.xml
deleted file mode 100644
index d8bd522..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_down_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11.65,14.65l-2.79,-2.79c-0.32,-0.32 -0.1,-0.86 0.35,-0.86h5.59c0.45,0 0.67,0.54 0.35,0.85l-2.79,2.79c-0.2,0.2 -0.52,0.2 -0.71,0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_up.xml
deleted file mode 100644
index 2d03cf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_drop_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.71,12.29L11.3,9.7c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.63,0.63 0.18,1.71 -0.71,1.71H9.41c-0.89,0 -1.33,-1.08 -0.7,-1.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_forward.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_forward.xml
deleted file mode 100644
index ec39c0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h11.17l-4.88,4.88c-0.39,0.39 -0.39,1.03 0,1.42 0.39,0.39 1.02,0.39 1.41,0l6.59,-6.59c0.39,-0.39 0.39,-1.02 0,-1.41l-6.58,-6.6c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L16.17,11H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_forward_ios.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_forward_ios.xml
deleted file mode 100644
index a0f01f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_forward_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.38,21.01c0.49,0.49 1.28,0.49 1.77,0l8.31,-8.31c0.39,-0.39 0.39,-1.02 0,-1.41L9.15,2.98c-0.49,-0.49 -1.28,-0.49 -1.77,0s-0.49,1.28 0,1.77L14.62,12l-7.25,7.25c-0.48,0.48 -0.48,1.28 0.01,1.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_left.xml
deleted file mode 100644
index c6bd8c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.29,8.71L9.7,11.3c-0.39,0.39 -0.39,1.02 0,1.41l2.59,2.59c0.63,0.63 1.71,0.18 1.71,-0.71V9.41c0,-0.89 -1.08,-1.33 -1.71,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_outward.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_outward.xml
deleted file mode 100644
index f917dba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_outward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7L6,7c0,0.55 0.45,1 1,1h7.59l-8.88,8.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0L16,9.41V17c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1H7C6.45,6 6,6.45 6,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_right.xml
deleted file mode 100644
index 8ca41e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.71,15.29l2.59,-2.59c0.39,-0.39 0.39,-1.02 0,-1.41L11.71,8.7c-0.63,-0.62 -1.71,-0.18 -1.71,0.71v5.17c0,0.9 1.08,1.34 1.71,0.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_right_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_right_alt.xml
deleted file mode 100644
index fa28af0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_right_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,11H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h11.01v1.79c0,0.45 0.54,0.67 0.85,0.35l2.78,-2.79c0.19,-0.2 0.19,-0.51 0,-0.71l-2.78,-2.79c-0.31,-0.32 -0.85,-0.09 -0.85,0.35V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/arrow_upward.xml b/compose/material/material/icons/generator/raw-icons/rounded/arrow_upward.xml
deleted file mode 100644
index c40a902..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/arrow_upward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,19V7.83l4.88,4.88c0.39,0.39 1.03,0.39 1.42,0 0.39,-0.39 0.39,-1.02 0,-1.41l-6.59,-6.59c-0.39,-0.39 -1.02,-0.39 -1.41,0l-6.6,6.58c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L11,7.83V19c0,0.55 0.45,1 1,1s1,-0.45 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/art_track.xml b/compose/material/material/icons/generator/raw-icons/rounded/art_track.xml
deleted file mode 100644
index 66353a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/art_track.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13h-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM21,7h-6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM15,17h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM12,9v6c0,1.1 -0.9,2 -2,2L4,17c-1.1,0 -2,-0.9 -2,-2L2,9c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2zM9.9,14.2l-1.26,-1.68c-0.2,-0.26 -0.59,-0.27 -0.8,-0.01L6.5,14.26l-0.85,-1.03c-0.2,-0.25 -0.58,-0.24 -0.78,0.01l-0.74,0.95c-0.26,0.33 -0.02,0.81 0.39,0.81L9.5,15c0.41,0 0.65,-0.47 0.4,-0.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/article.xml b/compose/material/material/icons/generator/raw-icons/rounded/article.xml
deleted file mode 100644
index 3f83b6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/article.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM13,17H8c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,0.45 1,1C14,16.55 13.55,17 13,17zM16,13H8c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1C17,12.55 16.55,13 16,13zM16,9H8C7.45,9 7,8.55 7,8c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1C17,8.55 16.55,9 16,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/rounded/aspect_ratio.xml
deleted file mode 100644
index aed6621..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1zM7,9h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,7c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L7,9zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM20,19.01L4,19.01c-0.55,0 -1,-0.45 -1,-1L3,5.99c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12.02c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assessment.xml b/compose/material/material/icons/generator/raw-icons/rounded/assessment.xml
deleted file mode 100644
index 6899ce1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assessment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM8,17c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5c0,0.55 -0.45,1 -1,1zM12,17c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v8c0,0.55 -0.45,1 -1,1zM16,17c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assignment.xml b/compose/material/material/icons/generator/raw-icons/rounded/assignment.xml
deleted file mode 100644
index 54fb9d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assignment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM13,17L8,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h5c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM16,13L8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM16,9L8,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assignment_ind.xml b/compose/material/material/icons/generator/raw-icons/rounded/assignment_ind.xml
deleted file mode 100644
index ef381eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assignment_ind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,7c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM18,19L6,19v-1.4c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1L18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assignment_late.xml b/compose/material/material/icons/generator/raw-icons/rounded/assignment_late.xml
deleted file mode 100644
index bcb3954..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assignment_late.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75C11.25,3.09 11.59,2.75 12,2.75zM12,13L12,13c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v4C13,12.55 12.55,13 12,13zM13,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1S13,15.45 13,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assignment_return.xml b/compose/material/material/icons/generator/raw-icons/rounded/assignment_return.xml
deleted file mode 100644
index e3c8cf1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assignment_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16,15h-4v3l-4.65,-4.65c-0.2,-0.2 -0.2,-0.51 0,-0.71L12,8v3h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assignment_returned.xml b/compose/material/material/icons/generator/raw-icons/rounded/assignment_returned.xml
deleted file mode 100644
index c45f838..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assignment_returned.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM11.65,17.65L7,13h3L10,9h4v4h3l-4.65,4.65c-0.19,0.19 -0.51,0.19 -0.7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assignment_turned_in.xml b/compose/material/material/icons/generator/raw-icons/rounded/assignment_turned_in.xml
deleted file mode 100644
index cacad9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assignment_turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9.29,16.29L6.7,13.7c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L10,14.17l5.88,-5.88c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-6.59,6.59c-0.38,0.39 -1.02,0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assist_walker.xml b/compose/material/material/icons/generator/raw-icons/rounded/assist_walker.xml
deleted file mode 100644
index 9446fa4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assist_walker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,4.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,17.72l-0.64,-6.37C19.06,10.58 18.41,10 17.64,10H16c-1.5,-0.02 -2.86,-0.54 -3.76,-1.44l-2,-1.98C10.08,6.42 9.62,6 8.83,6C8.32,6 7.81,6.2 7.42,6.59L4.08,9.91c-0.53,0.68 -0.51,1.57 -0.21,2.13l1.43,2.8L2.75,18.1c-0.34,0.43 -0.26,1.06 0.17,1.4l0,0c0.44,0.34 1.07,0.26 1.41,-0.17l2.56,-3.29c0.33,-0.42 0.47,-0.95 0.41,-1.48l-0.07,-0.53L8,14.75V19c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-4.29c0,-0.53 -0.21,-1.04 -0.59,-1.41l-1.53,-1.53l2.36,-2.36c0.94,0.94 1.72,1.82 3.59,2.32l-0.75,7.46c-0.04,0.44 0.3,0.83 0.75,0.83h0c0.38,0 0.7,-0.29 0.75,-0.66l0.33,-2.84h3.18l0.14,1.22c-0.44,0.26 -0.73,0.74 -0.73,1.28c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5C20.5,18.46 20.21,17.98 19.77,17.72zM15.09,15l0.41,-3.5h2l0.41,3.5H15.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assistant.xml b/compose/material/material/icons/generator/raw-icons/rounded/assistant.xml
deleted file mode 100644
index 158f705..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assistant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h4l2.29,2.29c0.39,0.39 1.02,0.39 1.41,0L15,20h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM13.88,12.88L12,17l-1.88,-4.12L6,11l4.12,-1.88L12,5l1.88,4.12L18,11l-4.12,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assistant_direction.xml b/compose/material/material/icons/generator/raw-icons/rounded/assistant_direction.xml
deleted file mode 100644
index 931aa82..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assistant_direction.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,10H9c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h3.5v1.29c0,0.45 0.54,0.67 0.85,0.35l2.29,-2.29c0.2,-0.2 0.2,-0.51 0,-0.71l-2.29,-2.29c-0.31,-0.31 -0.85,-0.09 -0.85,0.35V10zM12,1C5.9,1 1,5.9 1,12s4.9,11 11,11s11,-4.9 11,-11S18.1,1 12,1zM19.73,12.58l-7.19,7.22c-0.35,0.27 -0.79,0.27 -1.15,0L4.2,12.58c-0.27,-0.36 -0.27,-0.8 0,-1.16l7.19,-7.22c0.35,-0.27 0.79,-0.27 1.15,0l7.19,7.22C20.09,11.69 20.09,12.22 19.73,12.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assistant_photo.xml b/compose/material/material/icons/generator/raw-icons/rounded/assistant_photo.xml
deleted file mode 100644
index 863a757..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assistant_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.4,6l-0.24,-1.2c-0.09,-0.46 -0.5,-0.8 -0.98,-0.8H6c-0.55,0 -1,0.45 -1,1v15c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-6h5.6l0.24,1.2c0.09,0.47 0.5,0.8 0.98,0.8H19c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1h-4.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/assured_workload.xml b/compose/material/material/icons/generator/raw-icons/rounded/assured_workload.xml
deleted file mode 100644
index d5e65b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/assured_workload.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17c0.55,0 1,-0.45 1,-1v-5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v5C5,16.55 5.45,17 6,17L6,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c0.55,0 1,-0.45 1,-1v-5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v5C11,16.55 11.45,17 12,17L12,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.32,5.66l-8.42,-4.21c-0.56,-0.28 -1.23,-0.28 -1.79,0L2.68,5.66C2.26,5.87 2,6.3 2,6.76v0C2,7.45 2.55,8 3.24,8h17.53C21.45,8 22,7.45 22,6.76v0C22,6.3 21.74,5.87 21.32,5.66z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20L2,20c0,0.55 0.45,1 1,1h11.4c-0.21,-0.64 -0.32,-1.31 -0.36,-2H3C2.45,19 2,19.45 2,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12.26V11c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2.26L19,12.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.55,14.22l-3,1.5C16.21,15.89 16,16.24 16,16.62v1.93c0,2.52 1.71,4.88 4,5.45c2.29,-0.57 4,-2.93 4,-5.45v-1.93c0,-0.38 -0.21,-0.73 -0.55,-0.89l-3,-1.5C20.17,14.08 19.83,14.08 19.55,14.22zM18.58,20.3l-0.8,-0.8c-0.29,-0.29 -0.29,-0.77 0,-1.06l0,0c0.29,-0.29 0.77,-0.29 1.06,0l0.44,0.44l1.88,-1.85c0.29,-0.29 0.77,-0.29 1.06,0l0,0c0.29,0.29 0.29,0.77 0,1.06l-2.23,2.21C19.6,20.69 18.97,20.69 18.58,20.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/atm.xml b/compose/material/material/icons/generator/raw-icons/rounded/atm.xml
deleted file mode 100644
index 616e937..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9.75c0,0.41 0.34,0.75 0.75,0.75h1.5v3.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L11.75,10.5h1.5c0.41,0 0.75,-0.34 0.75,-0.75S13.66,9 13.25,9h-4.5c-0.41,0 -0.75,0.34 -0.75,0.75zM6,9L3,9c-0.55,0 -1,0.45 -1,1v4.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75v-0.75h2v0.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L7,10c0,-0.55 -0.45,-1 -1,-1zM5.5,12h-2v-1.5h2L5.5,12zM21,9h-4.5c-0.55,0 -1,0.45 -1,1v4.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L17,10.5h1v2.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75v-2.76h1v3.76c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L22,10c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/attach_email.xml b/compose/material/material/icons/generator/raw-icons/rounded/attach_email.xml
deleted file mode 100644
index fc9884e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/attach_email.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10V4c0,-1.1 -0.9,-2 -2,-2H3C1.9,2 1.01,2.9 1.01,4L1,16c0,1.1 0.9,2 2,2h11v-5c0,-1.66 1.34,-3 3,-3H21zM11.53,10.67c-0.32,0.2 -0.74,0.2 -1.06,0L3.4,6.25C3.15,6.09 3,5.82 3,5.53c0,-0.67 0.73,-1.07 1.3,-0.72L11,9l6.7,-4.19C18.27,4.46 19,4.86 19,5.53c0,0.29 -0.15,0.56 -0.4,0.72L11.53,10.67z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,14c-0.55,0 -1,0.45 -1,1v3c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V17c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S15,12.12 15,13.5V18c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-3C23,14.45 22.55,14 22,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/attach_file.xml b/compose/material/material/icons/generator/raw-icons/rounded/attach_file.xml
deleted file mode 100644
index e2e2a54..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/attach_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,6.75v10.58c0,2.09 -1.53,3.95 -3.61,4.15 -2.39,0.23 -4.39,-1.64 -4.39,-3.98V5.14c0,-1.31 0.94,-2.5 2.24,-2.63 1.5,-0.15 2.76,1.02 2.76,2.49v10.5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6.75c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75v8.61c0,1.31 0.94,2.5 2.24,2.63 1.5,0.15 2.76,-1.02 2.76,-2.49V5.17c0,-2.09 -1.53,-3.95 -3.61,-4.15C9.01,0.79 7,2.66 7,5v12.27c0,2.87 2.1,5.44 4.96,5.71 3.29,0.3 6.04,-2.26 6.04,-5.48V6.75c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/attach_money.xml b/compose/material/material/icons/generator/raw-icons/rounded/attach_money.xml
deleted file mode 100644
index 4fc6c63..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/attach_money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.8,10.9c-2.27,-0.59 -3,-1.2 -3,-2.15 0,-1.09 1.01,-1.85 2.7,-1.85 1.42,0 2.13,0.54 2.39,1.4 0.12,0.4 0.45,0.7 0.87,0.7h0.3c0.66,0 1.13,-0.65 0.9,-1.27 -0.42,-1.18 -1.4,-2.16 -2.96,-2.54V4.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,3.67 10,4.5v0.66c-1.94,0.42 -3.5,1.68 -3.5,3.61 0,2.31 1.91,3.46 4.7,4.13 2.5,0.6 3,1.48 3,2.41 0,0.69 -0.49,1.79 -2.7,1.79 -1.65,0 -2.5,-0.59 -2.83,-1.43 -0.15,-0.39 -0.49,-0.67 -0.9,-0.67h-0.28c-0.67,0 -1.14,0.68 -0.89,1.3 0.57,1.39 1.9,2.21 3.4,2.53v0.67c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5v-0.65c1.95,-0.37 3.5,-1.5 3.5,-3.55 0,-2.84 -2.43,-3.81 -4.7,-4.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/attachment.xml b/compose/material/material/icons/generator/raw-icons/rounded/attachment.xml
deleted file mode 100644
index 015cdcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/attachment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,16H7.17c-2.09,0 -3.95,-1.53 -4.15,-3.61C2.79,10.01 4.66,8 7,8h12.36c1.31,0 2.5,0.94 2.63,2.24 0.15,1.5 -1.02,2.76 -2.49,2.76H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8.75c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75H9.14c-1.31,0 -2.5,0.94 -2.63,2.24 -0.15,1.5 1.02,2.76 2.49,2.76h10.33c2.09,0 3.95,-1.53 4.15,-3.61 0.23,-2.39 -1.64,-4.39 -3.98,-4.39H7.23c-2.87,0 -5.44,2.1 -5.71,4.96 -0.3,3.29 2.26,6.04 5.48,6.04h10.75c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/attractions.xml b/compose/material/material/icons/generator/raw-icons/rounded/attractions.xml
deleted file mode 100644
index 1b8d303..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/attractions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.44,18.75c0.37,-0.46 0.94,-0.75 1.57,-0.75s1.19,0.29 1.56,0.75c0.39,-0.09 0.76,-0.21 1.12,-0.36l-1.42,-3.18c-0.39,0.15 -0.82,0.23 -1.26,0.23c-0.46,0 -0.9,-0.09 -1.3,-0.25l-1.43,3.19C9.65,18.54 10.03,18.67 10.44,18.75zM5.16,10C5,10.59 4.91,11.21 4.91,11.85c0,0.75 0.12,1.47 0.33,2.15c0.63,0.05 1.22,0.4 1.56,0.99c0.33,0.57 0.35,1.23 0.11,1.79c0.27,0.27 0.56,0.53 0.87,0.76l1.52,-3.39l0,0c-0.47,-0.58 -0.75,-1.32 -0.75,-2.13c0,-1.89 1.55,-3.41 3.46,-3.41s3.46,1.53 3.46,3.41c0,0.82 -0.29,1.57 -0.78,2.16l1.5,3.35c0.32,-0.24 0.62,-0.5 0.9,-0.79c-0.22,-0.55 -0.2,-1.2 0.12,-1.75c0.33,-0.57 0.9,-0.92 1.52,-0.99c0.22,-0.68 0.34,-1.41 0.34,-2.16c0,-0.64 -0.09,-1.27 -0.25,-1.86c-0.64,-0.04 -1.26,-0.39 -1.6,-1c-0.36,-0.62 -0.35,-1.36 -0.03,-1.95c-0.91,-0.98 -2.1,-1.71 -3.44,-2.05C13.4,5.6 12.74,6 12.01,6s-1.39,-0.41 -1.74,-1.01C8.93,5.33 7.74,6.04 6.83,7.02C7.16,7.62 7.18,8.37 6.81,9C6.45,9.62 5.82,9.97 5.16,10zM3.86,9.58C3.08,8.98 2.84,7.88 3.35,7s1.58,-1.23 2.49,-0.85c1.11,-1.17 2.56,-2.03 4.18,-2.42C10.15,2.75 10.99,2 12.01,2s1.85,0.75 1.98,1.73c1.63,0.39 3.07,1.24 4.18,2.42c0.91,-0.38 1.99,-0.03 2.49,0.85c0.51,0.88 0.27,1.98 -0.51,2.58c0.23,0.77 0.35,1.58 0.35,2.42s-0.12,1.65 -0.35,2.42c0.78,0.6 1.02,1.7 0.51,2.58s-1.58,1.23 -2.49,0.85c-0.4,0.43 -0.85,0.81 -1.34,1.15l0.81,1.8c0.25,0.56 -0.16,1.2 -0.78,1.2h0c-0.33,0 -0.64,-0.2 -0.78,-0.5l-0.75,-1.67c-0.43,0.18 -0.88,0.33 -1.34,0.44C13.86,21.25 13.02,22 12.01,22s-1.85,-0.75 -1.98,-1.73C9.55,20.15 9.09,20 8.65,19.81L7.89,21.5C7.75,21.8 7.45,22 7.11,22H7.1c-0.62,0 -1.03,-0.64 -0.77,-1.2l0.82,-1.83c-0.47,-0.33 -0.91,-0.71 -1.3,-1.12c-0.92,0.38 -1.99,0.03 -2.5,-0.85s-0.27,-1.98 0.51,-2.58C3.62,13.65 3.51,12.84 3.51,12S3.62,10.35 3.86,9.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/attribution.xml b/compose/material/material/icons/generator/raw-icons/rounded/attribution.xml
deleted file mode 100644
index 2386aaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/attribution.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.5c-0.91,0 -2.75,0.46 -2.75,1.38L9.25,14c0,0.28 0.22,0.5 0.5,0.5h1v3.25c0,0.69 0.56,1.25 1.25,1.25s1.25,-0.56 1.25,-1.25L13.25,14.5h1c0.28,0 0.5,-0.22 0.5,-0.5L14.75,9.88c0,-0.91 -1.84,-1.38 -2.75,-1.38zM12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/audio_file.xml b/compose/material/material/icons/generator/raw-icons/rounded/audio_file.xml
deleted file mode 100644
index 17fca7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/audio_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8.83C20,8.3 19.79,7.79 19.41,7.41zM15,13h-2v3.61c0,1.28 -1,2.41 -2.28,2.39c-1.44,-0.02 -2.56,-1.39 -2.13,-2.91c0.21,-0.72 0.8,-1.31 1.53,-1.51c0.7,-0.19 1.36,-0.05 1.88,0.29V12c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1C16,12.55 15.55,13 15,13zM14,9c-0.55,0 -1,-0.45 -1,-1V3.5L18.5,9H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/audiotrack.xml b/compose/material/material/icons/generator/raw-icons/rounded/audiotrack.xml
deleted file mode 100644
index 20ed3cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/audiotrack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5v8.55c-0.94,-0.54 -2.1,-0.75 -3.33,-0.32 -1.34,0.48 -2.37,1.67 -2.61,3.07 -0.46,2.74 1.86,5.08 4.59,4.65 1.96,-0.31 3.35,-2.11 3.35,-4.1V7h2c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2h-2c-1.1,0 -2,0.9 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome.xml
deleted file mode 100644
index 1c76983..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.46,8l0.79,-1.75L22,5.46c0.39,-0.18 0.39,-0.73 0,-0.91l-1.75,-0.79L19.46,2c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.79,1.75L16,4.54c-0.39,0.18 -0.39,0.73 0,0.91l1.75,0.79L18.54,8C18.72,8.39 19.28,8.39 19.46,8zM11.5,9.5L9.91,6C9.56,5.22 8.44,5.22 8.09,6L6.5,9.5L3,11.09c-0.78,0.36 -0.78,1.47 0,1.82l3.5,1.59L8.09,18c0.36,0.78 1.47,0.78 1.82,0l1.59,-3.5l3.5,-1.59c0.78,-0.36 0.78,-1.47 0,-1.82L11.5,9.5zM18.54,16l-0.79,1.75L16,18.54c-0.39,0.18 -0.39,0.73 0,0.91l1.75,0.79L18.54,22c0.18,0.39 0.73,0.39 0.91,0l0.79,-1.75L22,19.46c0.39,-0.18 0.39,-0.73 0,-0.91l-1.75,-0.79L19.46,16C19.28,15.61 18.72,15.61 18.54,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome_mosaic.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome_mosaic.xml
deleted file mode 100644
index d426103..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome_mosaic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.89,2 2,2h6V3H5C3.89,3 3,3.9 3,5zM19,3h-6v8h8V5C21,3.9 20.1,3 19,3zM13,21h6c1.1,0 2,-0.9 2,-2v-6h-8V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome_motion.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome_motion.xml
deleted file mode 100644
index 4a19fde..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_awesome_motion.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2H4C2.9,2 2,2.9 2,4v9c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V4h9c0.55,0 1,-0.45 1,-1v0C14,2.45 13.55,2 13,2zM17,6H8C6.9,6 6,6.9 6,8v9c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V8h9c0.55,0 1,-0.45 1,-1v0C18,6.45 17.55,6 17,6zM20,10h-8c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-8C22,10.9 21.1,10 20,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_delete.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_delete.xml
deleted file mode 100644
index 18d0789..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_delete.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9c-0.7,0 -1.37,0.1 -2,0.29V7c0,-1.1 -0.9,-2 -2,-2H4C2.9,5 2,5.9 2,7v10c0,1.1 0.9,2 2,2h5.68c1.12,2.36 3.53,4 6.32,4c3.87,0 7,-3.13 7,-7C23,12.13 19.87,9 16,9zM16,21c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S18.76,21 16,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-2.5l-0.71,-0.71C10.61,1.11 10.35,1 10.09,1H5.91C5.65,1 5.39,1.11 5.21,1.29L4.5,2H2C1.45,2 1,2.45 1,3c0,0.55 0.45,1 1,1H14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.75,12L15.75,12C15.34,12 15,12.34 15,12.75v3.68c0,0.36 0.19,0.68 0.5,0.86l2.52,1.47c0.33,0.19 0.75,0.09 0.96,-0.22v0c0.23,-0.34 0.12,-0.81 -0.24,-1.02L16.5,16.2v-3.45C16.5,12.34 16.16,12 15.75,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_high.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_high.xml
deleted file mode 100644
index e3200d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_high.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.45,6l0.49,-1.06L22,4.45c0.39,-0.18 0.39,-0.73 0,-0.91l-1.06,-0.49L20.45,2c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.49,1.06L18,3.55c-0.39,0.18 -0.39,0.73 0,0.91l1.06,0.49L19.55,6C19.72,6.39 20.28,6.39 20.45,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.95,6l0.49,-1.06l1.06,-0.49c0.39,-0.18 0.39,-0.73 0,-0.91L9.44,3.06L8.95,2C8.78,1.61 8.22,1.61 8.05,2L7.56,3.06L6.5,3.55c-0.39,0.18 -0.39,0.73 0,0.91l1.06,0.49L8.05,6C8.22,6.39 8.78,6.39 8.95,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.55,13.5l-0.49,1.06L18,15.05c-0.39,0.18 -0.39,0.73 0,0.91l1.06,0.49l0.49,1.06c0.18,0.39 0.73,0.39 0.91,0l0.49,-1.06L22,15.95c0.39,-0.18 0.39,-0.73 0,-0.91l-1.06,-0.49l-0.49,-1.06C20.28,13.11 19.72,13.11 19.55,13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,9.12l-2.83,-2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.29,17.46c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83c0.39,0.39 1.02,0.39 1.41,0l11.17,-11.17C18.1,10.15 18.1,9.51 17.71,9.12zM14.21,11.21l-1.41,-1.41l1.38,-1.38l1.41,1.41L14.21,11.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_normal.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_normal.xml
deleted file mode 100644
index 221a6f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_normal.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.45,6l0.49,-1.06L22,4.45c0.39,-0.18 0.39,-0.73 0,-0.91l-1.06,-0.49L20.45,2c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.49,1.06L18,3.55c-0.39,0.18 -0.39,0.73 0,0.91l1.06,0.49L19.55,6C19.72,6.39 20.28,6.39 20.45,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,9.12l-2.83,-2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.29,17.46c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83c0.39,0.39 1.02,0.39 1.41,0l11.17,-11.17C18.1,10.15 18.1,9.51 17.71,9.12zM14.21,11.21l-1.41,-1.41l1.38,-1.38l1.41,1.41L14.21,11.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_off.xml
deleted file mode 100644
index 4bf4e1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_fix_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.55l-1.06,-0.49L20.45,2c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.49,1.06L18,3.55c-0.39,0.18 -0.39,0.73 0,0.91l1.06,0.49L19.55,6c0.18,0.39 0.73,0.39 0.91,0l0.49,-1.06L22,4.45C22.39,4.28 22.39,3.72 22,3.55z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17,-2.17c0.39,-0.39 0.39,-1.02 0,-1.41l-2.83,-2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2.17,2.17l1.41,1.41L14.17,8.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,4.93l6.36,6.36l-6.17,6.17c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83c0.39,0.39 1.02,0.39 1.41,0l6.17,-6.17l6.36,6.36c0.39,0.39 1.02,0.39 1.41,0h0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C1.71,3.91 1.71,4.54 2.1,4.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_graph.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_graph.xml
deleted file mode 100644
index e614553..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_graph.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.94L13,9.45c-0.39,-0.18 -0.39,-0.73 0,-0.91l1.06,-0.49L14.55,7c0.18,-0.39 0.73,-0.39 0.91,0l0.49,1.06L17,8.55c0.39,0.18 0.39,0.73 0,0.91l-1.06,0.49L15.45,11c-0.18,0.39 -0.73,0.39 -0.91,0L14.06,9.94zM4.45,13l0.49,-1.06L6,11.45c0.39,-0.18 0.39,-0.73 0,-0.91l-1.06,-0.49L4.45,9C4.28,8.61 3.72,8.61 3.55,9l-0.49,1.06L2,10.55c-0.39,0.18 -0.39,0.73 0,0.91l1.06,0.49L3.55,13C3.72,13.39 4.28,13.39 4.45,13zM8.96,7.99l0.63,-1.4l1.4,-0.63c0.39,-0.18 0.39,-0.73 0,-0.91l-1.4,-0.63l-0.63,-1.4c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.63,1.4l-1.4,0.63c-0.39,0.18 -0.39,0.73 0,0.91l1.4,0.63l0.63,1.4C8.22,8.38 8.78,8.38 8.96,7.99zM22.34,8.27c-0.4,-0.4 -1.07,-0.39 -1.45,0.04l-6.39,7.18l-3.29,-3.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-6.04,6.05c-0.41,0.41 -0.41,1.09 0,1.5c0.41,0.41 1.09,0.41 1.5,0l5.25,-5.26l3.25,3.25c0.41,0.41 1.07,0.39 1.45,-0.04l7.17,-8.07C22.73,9.24 22.71,8.64 22.34,8.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_mode.xml
deleted file mode 100644
index e1fc8e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_mode.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.06,2.83c-1.15,-0.77 -2.46,-1.32 -3.86,-1.61C13.58,1.1 13,1.57 13,2.21v0c0,0.46 0.31,0.88 0.76,0.97c1.17,0.23 2.26,0.7 3.21,1.34c0.39,0.26 0.9,0.19 1.23,-0.14l0,0C18.66,3.93 18.59,3.18 18.06,2.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2.21L11,2.21c0,-0.64 -0.58,-1.11 -1.2,-0.99c-1.4,0.29 -2.71,0.84 -3.86,1.61c-0.52,0.35 -0.59,1.1 -0.15,1.54l0,0c0.33,0.33 0.84,0.4 1.23,0.14c0.96,-0.64 2.04,-1.1 3.21,-1.34C10.69,3.09 11,2.67 11,2.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.38,5.79L4.38,5.79C3.93,5.34 3.18,5.42 2.84,5.94C2.07,7.09 1.51,8.39 1.23,9.8C1.1,10.42 1.58,11 2.21,11h0c0.46,0 0.88,-0.31 0.97,-0.76c0.23,-1.17 0.7,-2.26 1.34,-3.22C4.77,6.64 4.7,6.12 4.38,5.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.79,11L21.79,11c0.63,0 1.11,-0.58 0.98,-1.2c-0.29,-1.4 -0.84,-2.7 -1.61,-3.86c-0.35,-0.52 -1.1,-0.6 -1.54,-0.15l0,0c-0.33,0.33 -0.4,0.84 -0.14,1.23c0.64,0.96 1.1,2.05 1.34,3.22C20.91,10.69 21.33,11 21.79,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.46l2.44,1.11L11.54,16c0.18,0.39 0.73,0.39 0.91,0l1.11,-2.44L16,12.46c0.39,-0.18 0.39,-0.73 0,-0.91l-2.44,-1.11L12.46,8c-0.18,-0.39 -0.73,-0.39 -0.91,0l-1.11,2.44L8,11.54C7.61,11.72 7.61,12.28 8,12.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c-3.11,0 -5.85,-1.59 -7.46,-4H6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1.7c1.99,2.84 5.27,4.7 9,4.7c4.45,0 8.27,-2.64 10,-6.43c0.26,-0.57 -0.08,-1.25 -0.69,-1.39l0,0c-0.45,-0.1 -0.93,0.11 -1.12,0.54C18.77,18.83 15.64,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/auto_stories.xml b/compose/material/material/icons/generator/raw-icons/rounded/auto_stories.xml
deleted file mode 100644
index 0358e14..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/auto_stories.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.15,1.35l-4,4C14.05,5.45 14,5.57 14,5.71v8.17c0,0.43 0.51,0.66 0.83,0.37l4,-3.6c0.11,-0.09 0.17,-0.23 0.17,-0.37V1.71C19,1.26 18.46,1.04 18.15,1.35zM22.47,5.2C22,4.96 21.51,4.76 21,4.59v12.03C19.86,16.21 18.69,16 17.5,16c-1.9,0 -3.78,0.54 -5.5,1.58V5.48C10.38,4.55 8.51,4 6.5,4C4.71,4 3.02,4.44 1.53,5.2C1.2,5.36 1,5.71 1,6.08v12.08c0,0.76 0.81,1.23 1.48,0.87C3.69,18.4 5.05,18 6.5,18c2.07,0 3.98,0.82 5.5,2c1.52,-1.18 3.43,-2 5.5,-2c1.45,0 2.81,0.4 4.02,1.04C22.19,19.4 23,18.93 23,18.17V6.08C23,5.71 22.8,5.36 22.47,5.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/autofps_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/autofps_select.xml
deleted file mode 100644
index 21824b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/autofps_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,6.3l-0.06,0l-1.02,2.89l2.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22L4,22c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3C3,21.55 3.45,22 4,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6S6,5.69 6,9S8.69,15 12,15zM12,5L12,5c0.38,0 0.71,0.23 0.85,0.59l2.12,5.65c0.14,0.37 -0.13,0.76 -0.53,0.76h0c-0.24,0 -0.45,-0.15 -0.53,-0.38l-0.49,-1.41h-2.83l-0.5,1.41C10.01,11.85 9.8,12 9.56,12h0c-0.39,0 -0.67,-0.39 -0.53,-0.76l2.12,-5.65C11.29,5.23 11.62,5 12,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,22L8,22c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3C7,21.55 7.45,22 8,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22L12,22c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3C11,21.55 11.45,22 12,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-4C15.45,17 15,17.45 15,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/autorenew.xml b/compose/material/material/icons/generator/raw-icons/rounded/autorenew.xml
deleted file mode 100644
index 33dad0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/autorenew.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L12,4c-4.42,0 -8,3.58 -8,8 0,1.04 0.2,2.04 0.57,2.95 0.27,0.67 1.13,0.85 1.64,0.34 0.27,-0.27 0.38,-0.68 0.23,-1.04C6.15,13.56 6,12.79 6,12c0,-3.31 2.69,-6 6,-6zM17.79,8.71c-0.27,0.27 -0.38,0.69 -0.23,1.04 0.28,0.7 0.44,1.46 0.44,2.25 0,3.31 -2.69,6 -6,6v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.31,0.31 0.85,0.09 0.85,-0.35L12,20c4.42,0 8,-3.58 8,-8 0,-1.04 -0.2,-2.04 -0.57,-2.95 -0.27,-0.67 -1.13,-0.85 -1.64,-0.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/av_timer.xml b/compose/material/material/icons/generator/raw-icons/rounded/av_timer.xml
deleted file mode 100644
index a0d655b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/av_timer.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-0.92c3.31,0.48 5.87,3.25 6,6.66 0.14,3.85 -3.03,7.2 -6.88,7.26C8.19,19.06 5,15.91 5,12c0,-1.68 0.59,-3.22 1.58,-4.42l4.71,4.72c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L7.26,5.46c-0.38,-0.38 -1,-0.39 -1.4,-0.02C4.1,7.07 3,9.4 3,12c0,5.04 4.14,9.12 9.21,9 4.7,-0.11 8.63,-4.01 8.78,-8.71C21.16,7.19 17.07,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/baby_changing_station.xml b/compose/material/material/icons/generator/raw-icons/rounded/baby_changing_station.xml
deleted file mode 100644
index 4665bbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/baby_changing_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9L14,9c0,0.55 -0.45,1 -1,1h-1.58c-0.28,0 -0.55,-0.06 -0.8,-0.17l-2.3,-1.01L7,12.75V21c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-8.67c0,-0.22 0.04,-0.44 0.11,-0.65l1.48,-4.32C4.96,6.25 6.22,5.69 7.3,6.18l4.15,1.83L13,8C13.55,8 14,8.45 14,9zM8,1C6.9,1 6,1.9 6,3s0.9,2 2,2s2,-0.9 2,-2S9.1,1 8,1zM10,19h10c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H10c-0.55,0 -1,0.45 -1,1v0C9,18.55 9.45,19 10,19zM19.5,16c0.83,0 1.5,-0.67 1.5,-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S18,13.67 18,14.5C18,15.33 18.67,16 19.5,16zM13,12c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v1c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/back_hand.xml b/compose/material/material/icons/generator/raw-icons/rounded/back_hand.xml
deleted file mode 100644
index 14fc8d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/back_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16c0,4.42 -3.58,8 -8,8c-3.26,0 -6.19,-1.99 -7.4,-5.02l-3.03,-7.61C2.26,10.58 3,9.79 3.81,10.05l0.79,0.26c0.56,0.18 1.02,0.61 1.24,1.16l1.28,3.21C7.2,14.88 7.38,15 7.58,15H8V3.25C8,2.56 8.56,2 9.25,2s1.25,0.56 1.25,1.25v8.25c0,0.28 0.22,0.5 0.5,0.5l0,0c0.28,0 0.5,-0.22 0.5,-0.5V1.25C11.5,0.56 12.06,0 12.75,0S14,0.56 14,1.25V11.5c0,0.28 0.22,0.5 0.5,0.5l0,0c0.28,0 0.5,-0.22 0.5,-0.5V2.75c0,-0.69 0.56,-1.25 1.25,-1.25c0.69,0 1.25,0.56 1.25,1.25v8.75c0,0.28 0.22,0.5 0.5,0.5l0,0c0.28,0 0.5,-0.22 0.5,-0.5V5.75c0,-0.69 0.56,-1.25 1.25,-1.25S21,5.06 21,5.75V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/backpack.xml b/compose/material/material/icons/generator/raw-icons/rounded/backpack.xml
deleted file mode 100644
index eb1b22a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8v12c0,1.1 -0.9,2 -2,2H6c-1.1,0 -2,-0.9 -2,-2V8c0,-1.86 1.28,-3.41 3,-3.86V3.5C7,2.67 7.67,2 8.5,2h0C9.33,2 10,2.67 10,3.5V4h4V3.5C14,2.67 14.67,2 15.5,2h0C16.33,2 17,2.67 17,3.5v0.64C18.72,4.59 20,6.14 20,8zM6,13L6,13c0,0.55 0.45,1 1,1h9v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1H7C6.45,12 6,12.45 6,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/backspace.xml b/compose/material/material/icons/generator/raw-icons/rounded/backspace.xml
deleted file mode 100644
index 0982c6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0.37,11.45c-0.22,0.34 -0.22,0.77 0,1.11l5.04,7.56c0.36,0.52 0.9,0.88 1.59,0.88h15c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM18.3,16.3c-0.39,0.39 -1.02,0.39 -1.41,0L14,13.41l-2.89,2.89c-0.39,0.39 -1.02,0.39 -1.41,0 -0.39,-0.39 -0.39,-1.02 0,-1.41L12.59,12 9.7,9.11c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L14,10.59l2.89,-2.89c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41L15.41,12l2.89,2.89c0.38,0.38 0.38,1.02 0,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/backup.xml b/compose/material/material/icons/generator/raw-icons/rounded/backup.xml
deleted file mode 100644
index b97f8f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/backup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c0,-3.87 -3.13,-7 -7,-7C8.78,4 6.07,6.18 5.26,9.15C2.82,9.71 1,11.89 1,14.5C1,17.54 3.46,20 6.5,20c1.76,0 10.25,0 12,0l0,0c2.49,-0.01 4.5,-2.03 4.5,-4.52C23,13.15 21.25,11.26 19,11zM13,13v2c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-2H9.21c-0.45,0 -0.67,-0.54 -0.35,-0.85l2.79,-2.79c0.2,-0.2 0.51,-0.2 0.71,0l2.79,2.79c0.31,0.31 0.09,0.85 -0.35,0.85H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/backup_table.xml b/compose/material/material/icons/generator/raw-icons/rounded/backup_table.xml
deleted file mode 100644
index be5521d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/backup_table.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7v13h13c0.55,0 1,0.45 1,1l0,0c0,0.55 -0.45,1 -1,1H4c-1.1,0 -2,-0.9 -2,-2V7c0,-0.55 0.45,-1 1,-1l0,0C3.55,6 4,6.45 4,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2H8C6.9,2 6,2.9 6,4zM15,11h5v5h-5V11zM8,11h5v5H8V11zM8,4h12v5H8V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/badge.xml b/compose/material/material/icons/generator/raw-icons/rounded/badge.xml
deleted file mode 100644
index c0da15d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/badge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM9,12c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5C7.5,12.67 8.17,12 9,12zM12,18H6v-0.43c0,-0.6 0.36,-1.15 0.92,-1.39C7.56,15.9 8.26,15.75 9,15.75s1.44,0.15 2.08,0.43c0.55,0.24 0.92,0.78 0.92,1.39V18zM13,9h-2V4h2V9zM17.25,16.5h-2.5c-0.41,0 -0.75,-0.34 -0.75,-0.75v0c0,-0.41 0.34,-0.75 0.75,-0.75h2.5c0.41,0 0.75,0.34 0.75,0.75v0C18,16.16 17.66,16.5 17.25,16.5zM17.25,13.5h-2.5c-0.41,0 -0.75,-0.34 -0.75,-0.75v0c0,-0.41 0.34,-0.75 0.75,-0.75h2.5c0.41,0 0.75,0.34 0.75,0.75v0C18,13.16 17.66,13.5 17.25,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bakery_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/bakery_dining.xml
deleted file mode 100644
index e588d39..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bakery_dining.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.77,8.55L17.6,8.08c-0.62,-0.25 -1.31,0.17 -1.37,0.84l-0.74,8.08H17l2.6,-6.5C19.91,9.73 19.54,8.85 18.77,8.55z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,8.08L5.23,8.55C4.46,8.85 4.09,9.73 4.4,10.5l2.6,6.5h1.5L7.76,8.92C7.7,8.25 7.02,7.83 6.4,8.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.36,6h-2.71C9.76,6 9.07,6.76 9.15,7.64L10,16.99h4l0.85,-9.36C14.93,6.76 14.24,6 13.36,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.18,13.72l-1,1.93c-0.19,0.36 -0.23,0.78 -0.12,1.19c0.29,1.01 1.43,1.41 2.38,0.94l1.05,-0.52l-1.4,-3.49C3.93,13.37 3.38,13.34 3.18,13.72z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.82,15.65l-1,-1.93c-0.2,-0.38 -0.75,-0.35 -0.91,0.04l-1.4,3.49l1.05,0.52c0.94,0.47 2.09,0.07 2.38,-0.94C22.05,16.43 22.01,16.01 21.82,15.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/balance.xml b/compose/material/material/icons/generator/raw-icons/rounded/balance.xml
deleted file mode 100644
index 2cfa21e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/balance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,19V7.83c0.85,-0.3 1.53,-0.98 1.83,-1.83H18l-2.78,6.49c-0.17,0.39 -0.23,0.84 -0.11,1.25c0.39,1.3 1.76,2.26 3.39,2.26s3.01,-0.96 3.39,-2.26c0.12,-0.41 0.06,-0.86 -0.11,-1.25L19,6h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-5.17C14.42,2.83 13.31,2 12,2S9.58,2.83 9.17,4L4,4C3.45,4 3,4.45 3,5c0,0.55 0.45,1 1,1h1l-2.78,6.49c-0.17,0.39 -0.23,0.84 -0.11,1.25C2.49,15.04 3.87,16 5.5,16s3.01,-0.96 3.39,-2.26c0.12,-0.41 0.06,-0.86 -0.11,-1.25L6,6h3.17c0.3,0.85 0.98,1.53 1.83,1.83V19M11,19H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-8M20.37,13h-3.74l1.87,-4.36L20.37,13zM7.37,13H3.63L5.5,8.64L7.37,13zM12,6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,5.55 12.55,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/balcony.xml b/compose/material/material/icons/generator/raw-icons/rounded/balcony.xml
deleted file mode 100644
index b7ae34a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/balcony.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14.27V10c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8v4.27C3.4,14.61 3,15.26 3,16v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4C21,15.26 20.6,14.61 20,14.27zM7,20H5v-4h2V20zM11,20H9v-4h2V20zM11,14H6v-4c0,-2.97 2.16,-5.44 5,-5.92V14zM13,4.08c2.84,0.48 5,2.94 5,5.92v4h-5V4.08zM15,20h-2v-4h2V20zM19,20h-2v-4h2V20zM8,11c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S8,11.55 8,11zM16,11c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S16,10.45 16,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ballot.xml b/compose/material/material/icons/generator/raw-icons/rounded/ballot.xml
deleted file mode 100644
index ddd16c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ballot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9.5h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM14,16.5h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM19,21L5,21c-1.1,0 -2,-0.9 -2,-2L3,5c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2v14c0,1.1 -0.9,2 -2,2zM7,11h3c0.55,0 1,-0.45 1,-1L11,7c0,-0.55 -0.45,-1 -1,-1L7,6c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM7,7h3v3L7,10L7,7zM7,18h3c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1L7,13c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM7,14h3v3L7,17v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bar_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/bar_chart.xml
deleted file mode 100644
index f3c983b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bar_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20L6,20c1.1,0 2,-0.9 2,-2v-7c0,-1.1 -0.9,-2 -2,-2h0c-1.1,0 -2,0.9 -2,2v7C4,19.1 4.9,20 6,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15v3c0,1.1 0.9,2 2,2h0c1.1,0 2,-0.9 2,-2v-3c0,-1.1 -0.9,-2 -2,-2h0C16.9,13 16,13.9 16,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20L12,20c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2h0c-1.1,0 -2,0.9 -2,2v12C10,19.1 10.9,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/batch_prediction.xml b/compose/material/material/icons/generator/raw-icons/rounded/batch_prediction.xml
deleted file mode 100644
index 99e4bab..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/batch_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8H7c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V10C19,8.9 18.1,8 17,8zM12,20.5L12,20.5c-0.55,0 -1,-0.45 -1,-1V19h2v0.5C13,20.05 12.55,20.5 12,20.5zM13,18h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5c1.93,0 3.5,1.57 3.5,3.5C15.5,15 13,16.5 13,18zM18,6.5H6v0C6,5.67 6.67,5 7.5,5h9C17.33,5 18,5.67 18,6.5L18,6.5zM17,3.5H7v0C7,2.67 7.67,2 8.5,2h7C16.33,2 17,2.67 17,3.5L17,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bathroom.xml b/compose/material/material/icons/generator/raw-icons/rounded/bathroom.xml
deleted file mode 100644
index a92aba6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bathroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM9,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,18 9,18zM9,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,15 9,15zM12,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,18 12,18zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,15 12,15zM15,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,18 15,18zM15,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,15 15,15zM7,11L7,11c0,-2.76 2.24,-5 5,-5h0c2.76,0 5,2.24 5,5v0c0,0.55 -0.45,1 -1,1H8C7.45,12 7,11.55 7,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bathtub.xml b/compose/material/material/icons/generator/raw-icons/rounded/bathtub.xml
deleted file mode 100644
index 3cfdecf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bathtub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13h-1V4.83C20,3.27 18.73,2 17.17,2c-0.75,0 -1.47,0.3 -2,0.83l-1.25,1.25C13.76,4.03 13.59,4 13.41,4c-0.4,0 -0.77,0.12 -1.08,0.32l2.76,2.76c0.2,-0.31 0.32,-0.68 0.32,-1.08c0,-0.18 -0.03,-0.34 -0.07,-0.51l1.25,-1.25C16.74,4.09 16.95,4 17.17,4C17.63,4 18,4.37 18,4.83V13h-6.85c-0.3,-0.21 -0.57,-0.45 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5C7.93,10.08 7.59,10 7.24,10C6,10.01 5,11.01 5,12.25V13H3c-0.55,0 -1,0.45 -1,1v5c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1c1.1,0 2,-0.9 2,-2v-5C22,13.45 21.55,13 21,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_0_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_0_bar.xml
deleted file mode 100644
index 36e9753..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V3c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h2C16.55,4 17,4.45 17,5zM15,6H9v14h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_1_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_1_bar.xml
deleted file mode 100644
index b97ff13..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V3c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h2C16.55,4 17,4.45 17,5zM15,6H9v12h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_2_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_2_bar.xml
deleted file mode 100644
index e61a3c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V3c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h2C16.55,4 17,4.45 17,5zM15,6H9v10h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_3_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_3_bar.xml
deleted file mode 100644
index 5061252..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V3c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h2C16.55,4 17,4.45 17,5zM15,6H9v8h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_4_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_4_bar.xml
deleted file mode 100644
index 644e4e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V3c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h2C16.55,4 17,4.45 17,5zM15,6H9v6h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_5_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_5_bar.xml
deleted file mode 100644
index 77e7034..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_5_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V3c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h2C16.55,4 17,4.45 17,5zM15,6H9v4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_6_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_6_bar.xml
deleted file mode 100644
index 93471a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_6_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V3c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h2C16.55,4 17,4.45 17,5zM15,6H9v2h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_alert.xml
deleted file mode 100644
index 66fc981..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.34,22h7.32c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM13,13c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_charging_full.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_charging_full.xml
deleted file mode 100644
index 94acced..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_charging_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.34,22h7.32c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM14.61,13.24l-2.67,5c-0.24,0.45 -0.94,0.28 -0.94,-0.24v-3.5L9.83,14.5c-0.38,0 -0.62,-0.4 -0.44,-0.74l2.67,-5c0.24,-0.45 0.94,-0.28 0.94,0.24v3.5h1.17c0.37,0 0.62,0.4 0.44,0.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_full.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_full.xml
deleted file mode 100644
index 059f8a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.34,22h7.32c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_saver.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_saver.xml
deleted file mode 100644
index 0245bbd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_saver.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2V3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1H8C7.45,4 7,4.45 7,5v16c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1V5C17,4.45 16.55,4 16,4zM14,14h-1v1c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-1h-1c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h1v-1c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v1h1c0.55,0 1,0.45 1,1v0C15,13.55 14.55,14 14,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_std.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_std.xml
deleted file mode 100644
index 059f8a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_std.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.34,22h7.32c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/battery_unknown.xml b/compose/material/material/icons/generator/raw-icons/rounded/battery_unknown.xml
deleted file mode 100644
index cada270..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/battery_unknown.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,3c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.34,22h7.32c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM14.3,12.69s-0.38,0.42 -0.67,0.71c-0.14,0.14 -0.27,0.31 -0.39,0.47l-0.09,0.15c-0.08,0.12 -0.14,0.25 -0.19,0.37 -0.09,0.22 -0.16,0.43 -0.16,0.61h-1.6c0,-0.42 0.12,-0.8 0.29,-1.13 0.06,-0.11 0.13,-0.21 0.2,-0.31 0.03,-0.05 0.06,-0.11 0.1,-0.16 0.11,-0.14 0.23,-0.28 0.34,-0.4l0.93,-0.94c0.27,-0.27 0.44,-0.65 0.44,-1.06 0,-0.83 -0.67,-1.5 -1.5,-1.5 -0.65,0 -1.21,0.41 -1.41,0.99 -0.11,0.31 -0.39,0.51 -0.71,0.51 -0.52,0 -0.88,-0.52 -0.71,-1.01C9.59,8.83 10.69,8 12,8c1.66,0 3,1.34 3,3 0,0.66 -0.27,1.26 -0.7,1.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/beach_access.xml b/compose/material/material/icons/generator/raw-icons/rounded/beach_access.xml
deleted file mode 100644
index 9103624..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/beach_access.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.13,14.56l1.43,-1.43 5.73,5.73c0.39,0.39 0.39,1.03 0,1.43 -0.39,0.39 -1.03,0.39 -1.43,0l-5.73,-5.73zM17.42,8.83l1.27,-1.27c0.89,-0.89 0.77,-2.43 -0.31,-3.08 -3.89,-2.38 -9.03,-1.89 -12.4,1.47 3.93,-1.3 8.31,-0.25 11.44,2.88zM5.95,5.98c-3.36,3.37 -3.85,8.51 -1.48,12.4 0.66,1.08 2.19,1.21 3.08,0.31l1.27,-1.27C5.7,14.29 4.65,9.91 5.95,5.98zM5.97,5.96l-0.01,0.01c-0.38,3.01 1.17,6.88 4.3,10.02l5.73,-5.73c-3.13,-3.13 -7.01,-4.68 -10.02,-4.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bed.xml b/compose/material/material/icons/generator/raw-icons/rounded/bed.xml
deleted file mode 100644
index 2daeb37..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.78V8c0,-1.65 -1.35,-3 -3,-3h-4c-0.77,0 -1.47,0.3 -2,0.78C11.47,5.3 10.77,5 10,5H6C4.35,5 3,6.35 3,8v2.78C2.39,11.33 2,12.12 2,13v5c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h16v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5C22,12.12 21.61,11.33 21,10.78zM14,7h4c0.55,0 1,0.45 1,1v2h-6V8C13,7.45 13.45,7 14,7zM5,8c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v2H5V8zM4,15v-2c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bedroom_baby.xml b/compose/material/material/icons/generator/raw-icons/rounded/bedroom_baby.xml
deleted file mode 100644
index 3294508..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bedroom_baby.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM12,17.99c-2.37,0 -4.61,-0.83 -6.4,-2.35c-0.33,-0.28 -0.35,-0.8 -0.04,-1.11l0,0c0.27,-0.27 0.71,-0.29 1.01,-0.04c0.19,0.16 0.39,0.31 0.6,0.46L8,13.49V9.5l-1,0.65c-0.32,0.21 -0.73,0.16 -0.99,-0.12L6,10.01c-0.29,-0.3 -0.3,-0.77 -0.03,-1.08C6.27,8.6 6.62,8.19 6.83,7.95C6.92,7.84 6.9,7.67 6.79,7.59c0,0 -0.81,-0.31 -0.79,-0.57C6,6.91 9.36,6.99 9.36,6.99c0.18,0 0.34,0.1 0.43,0.25l1.44,2.5c0.09,0.15 0.25,0.25 0.43,0.25h4.83c0.28,0 0.5,0.22 0.5,0.5v0c0,0.28 -0.22,0.5 -0.5,0.5H16v2.5l0.84,1.46c0.2,-0.15 0.4,-0.3 0.6,-0.46c0.3,-0.25 0.73,-0.23 1.01,0.04v0c0.31,0.31 0.29,0.82 -0.04,1.11C16.61,17.16 14.37,17.99 12,17.99z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.69,14.24c-1.74,0.65 -3.66,0.65 -5.4,0l-0.81,1.41l-0.03,0.06c1.1,0.52 2.28,0.79 3.53,0.79s2.45,-0.28 3.55,-0.79l-0.03,-0.06L14.69,14.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bedroom_child.xml b/compose/material/material/icons/generator/raw-icons/rounded/bedroom_child.xml
deleted file mode 100644
index aa36b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bedroom_child.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.64,12H8.37c-0.48,0 -0.87,0.39 -0.87,0.87h0.01V14h9v-1.13C16.51,12.39 16.12,12 15.64,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM17.25,17L17.25,17c-0.41,0 -0.75,-0.34 -0.75,-0.75V15.5h-9v0.75C7.5,16.66 7.16,17 6.75,17h0C6.34,17 6,16.66 6,16.25v-3.38c0,-1 0.62,-1.85 1.5,-2.2V9c0,-1.1 0.9,-2 2,-2h5c1.1,0 2,0.9 2,2v1.67c0.88,0.35 1.5,1.2 1.5,2.2v3.38C18,16.66 17.66,17 17.25,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bedroom_parent.xml b/compose/material/material/icons/generator/raw-icons/rounded/bedroom_parent.xml
deleted file mode 100644
index 136cc04..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bedroom_parent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12h-9c-0.55,0 -1,0.45 -1,1v1h11v-1C17.5,12.45 17.05,12 16.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,8.5h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,8.5h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM18.25,17L18.25,17c-0.41,0 -0.75,-0.34 -0.75,-0.75V15.5h-11v0.75C6.5,16.66 6.16,17 5.75,17h0C5.34,17 5,16.66 5,16.25v-3.08c0,-0.66 0.25,-1.26 0.65,-1.72V9c0,-1.1 0.9,-2 2,-2H11c0.37,0 0.72,0.12 1,0.32C12.28,7.12 12.63,7 13,7h3.35c1.1,0 2,0.9 2,2v2.45c0.4,0.46 0.65,1.06 0.65,1.72v3.08C19,16.66 18.66,17 18.25,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bedtime.xml b/compose/material/material/icons/generator/raw-icons/rounded/bedtime.xml
deleted file mode 100644
index ecd7d8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bedtime.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.65,3.46c0.27,-0.71 -0.36,-1.45 -1.12,-1.34c-5.52,0.8 -9.47,6.07 -8.34,11.88c0.78,4.02 4.09,7.21 8.14,7.87c3.74,0.61 7.16,-0.87 9.32,-3.44c0.48,-0.57 0.19,-1.48 -0.55,-1.62C13.08,15.66 9.42,9.27 11.65,3.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bedtime_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/bedtime_off.xml
deleted file mode 100644
index 4f1d74a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bedtime_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.65,3.46c0.27,-0.71 -0.36,-1.45 -1.12,-1.34C9.05,2.33 7.68,2.88 6.49,3.66l4.59,4.59C10.88,6.69 11.04,5.05 11.65,3.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l1.56,1.56c-1.4,2.11 -2.02,4.77 -1.46,7.56c0.79,3.94 3.99,7.07 7.94,7.78c2.74,0.49 5.3,-0.15 7.35,-1.51l1.57,1.57c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/beenhere.xml b/compose/material/material/icons/generator/raw-icons/rounded/beenhere.xml
deleted file mode 100644
index 7a74217..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/beenhere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L5,1c-1.1,0 -1.99,0.9 -1.99,2L3,15.93c0,0.69 0.35,1.3 0.88,1.66l7.57,5.04c0.34,0.22 0.77,0.22 1.11,0l7.56,-5.04c0.53,-0.36 0.88,-0.97 0.88,-1.66L21,3c0,-1.1 -0.9,-2 -2,-2zM18.3,7.7l-7.59,7.59c-0.39,0.39 -1.02,0.39 -1.41,0L5.71,11.7c-0.39,-0.39 -0.39,-1.02 0,-1.41s1.02,-0.39 1.41,0L10,13.17l6.88,-6.88c0.39,-0.39 1.02,-0.39 1.41,0s0.4,1.02 0.01,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bento.xml b/compose/material/material/icons/generator/raw-icons/rounded/bento.xml
deleted file mode 100644
index c175f2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bento.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11V5h4c1.1,0 2,0.9 2,2v4H16zM20,19c1.1,0 2,-0.9 2,-2v-4h-6v6H20zM14,5v14H4c-1.1,0 -2,-0.9 -2,-2V7c0,-1.1 0.9,-2 2,-2H14zM9.5,12c0,-0.83 -0.67,-1.5 -1.5,-1.5S6.5,11.17 6.5,12s0.67,1.5 1.5,1.5S9.5,12.83 9.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bike_scooter.xml b/compose/material/material/icons/generator/raw-icons/rounded/bike_scooter.xml
deleted file mode 100644
index 3d157b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bike_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14h0.74L8.82,5.56C8.61,4.65 7.8,4 6.87,4H4C3.45,4 3,4.45 3,5v0c0,0.55 0.45,1 1,1h2.87l1.42,6.25c0,0 -0.01,0 -0.01,0C6.12,12.9 4.47,14.73 4.09,17H0v2h6v-1C6,15.79 7.79,14 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.75,8l-0.56,0l-1.35,-3.69C16.55,3.52 15.8,3 14.96,3H12c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2.96l1.1,3H10.4l0.46,2H15c-0.43,0.58 -0.75,1.25 -0.9,2h-2.79l0.46,2h2.33c0.44,2.23 2.31,3.88 4.65,3.99c3.16,0.15 5.88,-2.83 5.12,-6.1C23.34,9.57 21.13,8 18.75,8zM18.88,16c-1.54,-0.06 -2.84,-1.37 -2.88,-2.92c-0.02,-0.96 0.39,-1.8 1.05,-2.36l0.62,1.7c0.19,0.52 0.76,0.79 1.28,0.6l0,0c0.52,-0.19 0.79,-0.76 0.6,-1.28l-0.63,-1.73c0,0 0,0 0.01,-0.01C20.64,9.96 22,11.29 22,13C22,14.72 20.62,16.06 18.88,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,15 10,15zM10,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S10.55,19 10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/biotech.xml b/compose/material/material/icons/generator/raw-icons/rounded/biotech.xml
deleted file mode 100644
index a3bc9f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/biotech.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19c-1.1,0 -2,0.9 -2,2h14c0,-1.1 -0.9,-2 -2,-2h-4v-2h3c1.1,0 2,-0.9 2,-2h-8c-1.66,0 -3,-1.34 -3,-3c0,-1.09 0.59,-2.04 1.46,-2.56C8.17,9.03 8,8.54 8,8c0,-0.21 0.04,-0.42 0.09,-0.62C6.28,8.13 5,9.92 5,12c0,2.76 2.24,5 5,5v2H7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.56,5.51C11.91,5.54 13,6.64 13,8c0,0.75 -0.33,1.41 -0.85,1.87l0.25,0.68c0.19,0.52 0.76,0.79 1.28,0.6c0.19,0.52 0.76,0.79 1.28,0.6c0.52,-0.19 0.79,-0.76 0.6,-1.28c0.52,-0.19 0.79,-0.76 0.6,-1.28L14.1,3.54c-0.19,-0.52 -0.76,-0.79 -1.28,-0.6c-0.19,-0.52 -0.76,-0.79 -1.28,-0.6c-0.52,0.19 -0.79,0.76 -0.6,1.28c-0.52,0.19 -0.79,0.76 -0.6,1.28L10.56,5.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,8m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blender.xml b/compose/material/material/icons/generator/raw-icons/rounded/blender.xml
deleted file mode 100644
index 48a654a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.13,15.13l1.69,-10.98C17.92,3.55 17.45,3 16.83,3H14v0c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v0H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h2.23l0.64,4.13C6.74,16.05 6,17.43 6,19v1c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-1C18,17.43 17.26,16.05 16.13,15.13zM5,9V5h1.31l0.62,4H5zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,19 12,19zM14.29,14H9.72L8.33,5h7.34L14.29,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blind.xml b/compose/material/material/icons/generator/raw-icons/rounded/blind.xml
deleted file mode 100644
index 83c40fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blind.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.41,3.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.04,7.12c-0.17,-0.35 -0.44,-0.65 -0.8,-0.85C10.63,5.91 9.9,5.93 9.31,6.24l0,-0.01L4.92,8.73C4.3,9.08 3.91,9.74 3.91,10.46V13c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2.54l1.5,-0.85c-0.32,1.1 -0.5,2.24 -0.5,3.39v5.33l-2,2.67c-0.33,0.44 -0.24,1.07 0.2,1.4l0,0c0.44,0.33 1.07,0.24 1.4,-0.2l2.04,-2.72c0.23,-0.31 0.37,-0.69 0.4,-1.08l0.18,-2.94L10.91,18v4c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-4.87c0,-0.41 -0.13,-0.81 -0.36,-1.15l-1.6,-2.29c0,0 0,0 0,-0.01c-0.11,-1.16 0.07,-2.32 0.46,-3.4c0.75,1.14 1.88,1.98 3.2,2.41l5.7,9.87c0.14,0.24 0.44,0.32 0.68,0.18l0,0c0.24,-0.14 0.32,-0.44 0.18,-0.68L15.92,13h0c0.54,0 0.98,-0.44 0.98,-0.98v-0.05c0,-0.5 -0.37,-0.94 -0.87,-0.99c-0.95,-0.1 -2.37,-0.52 -3.21,-2.18"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blinds.xml b/compose/material/material/icons/generator/raw-icons/rounded/blinds.xml
deleted file mode 100644
index 493f573..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blinds.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM16,9h2v2h-2V9zM14,11H6V9h8V11zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-6h8v1.82c-0.45,0.32 -0.75,0.84 -0.75,1.43c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75c0,-0.59 -0.3,-1.12 -0.75,-1.43V13h2v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blinds_closed.xml b/compose/material/material/icons/generator/raw-icons/rounded/blinds_closed.xml
deleted file mode 100644
index 77be8ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blinds_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h10.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H21c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM18,11h-2V9h2V11zM14,11H6V9h8V11zM14,13v2H6v-2H14zM16,13h2v2h-2V13zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-2h8v2H6zM16,19v-2h2v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/block.xml b/compose/material/material/icons/generator/raw-icons/rounded/block.xml
deleted file mode 100644
index 9fefeec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/block.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-4.42 3.58,-8 8,-8 1.85,0 3.55,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4,13.85 4,12zM12,20c-1.85,0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20,10.15 20,12c0,4.42 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bloodtype.xml b/compose/material/material/icons/generator/raw-icons/rounded/bloodtype.xml
deleted file mode 100644
index fb47111..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bloodtype.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.66,2.58c-0.38,-0.33 -0.95,-0.33 -1.33,0C6.45,6.88 4,10.62 4,13.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.62 17.55,6.88 12.66,2.58zM14,18h-4c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1C15,17.55 14.55,18 14,18zM14,13h-1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-1h-1c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h1v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h1c0.55,0 1,0.45 1,1C15,12.55 14.55,13 14,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth.xml b/compose/material/material/icons/generator/raw-icons/rounded/bluetooth.xml
deleted file mode 100644
index d5b8010..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7l-4.29,-4.29c-0.63,-0.63 -1.71,-0.19 -1.71,0.7v6.18L7.11,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L10.59,12 5.7,16.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L11,14.41v6.18c0,0.89 1.08,1.34 1.71,0.71L17,17c0.39,-0.39 0.39,-1.02 0,-1.41L13.41,12 17,8.42c0.39,-0.39 0.39,-1.03 0,-1.42zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_audio.xml b/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_audio.xml
deleted file mode 100644
index 9a434a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_audio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.98,10.28l-1.38,1.38c-0.2,0.2 -0.2,0.51 0,0.71l1.38,1.38c0.28,0.28 0.75,0.15 0.85,-0.23 0.11,-0.5 0.17,-1 0.17,-1.52 0,-0.51 -0.06,-1.01 -0.18,-1.48 -0.09,-0.38 -0.56,-0.52 -0.84,-0.24zM20.1,7.78c-0.25,-0.55 -0.98,-0.67 -1.4,-0.24 -0.26,0.26 -0.31,0.64 -0.17,0.98 0.46,1.07 0.72,2.24 0.72,3.47 0,1.24 -0.26,2.42 -0.73,3.49 -0.14,0.32 -0.09,0.69 0.16,0.94 0.41,0.41 1.1,0.29 1.35,-0.23 0.63,-1.3 0.98,-2.76 0.98,-4.3 -0.01,-1.45 -0.33,-2.85 -0.91,-4.11zM11.39,12l3.59,-3.58c0.39,-0.39 0.39,-1.02 0,-1.42l-4.29,-4.29c-0.63,-0.63 -1.71,-0.18 -1.71,0.71L8.98,9.6L5.09,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L8.57,12l-4.89,4.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l3.89,-3.89v6.18c0,0.89 1.08,1.34 1.71,0.71l4.3,-4.3c0.39,-0.39 0.39,-1.02 0,-1.42L11.39,12zM10.98,5.83l1.88,1.88 -1.88,1.88L10.98,5.83zM10.98,18.17v-3.76l1.88,1.88 -1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_connected.xml b/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_connected.xml
deleted file mode 100644
index ff3e9b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c0.55,-0.55 0.55,-1.44 0,-1.99L6,11c-0.55,-0.55 -1.45,-0.55 -2,0s-0.55,1.45 0,2 1.45,0.55 2,0zM20,11c-0.56,-0.56 -1.45,-0.56 -2,-0.01L18,11c-0.55,0.55 -0.55,1.44 0,1.99L18,13c0.55,0.55 1.44,0.55 1.99,0L20,13c0.55,-0.55 0.55,-1.45 0,-2zM17,7l-4.29,-4.29c-0.63,-0.63 -1.71,-0.19 -1.71,0.7v6.18L7.11,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L10.59,12 5.7,16.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L11,14.41v6.18c0,0.89 1.08,1.34 1.71,0.71L17,17c0.39,-0.39 0.39,-1.02 0,-1.42L13.41,12 17,8.42c0.39,-0.39 0.39,-1.03 0,-1.42zM14.88,16.29L13,18.17v-3.76l1.88,1.88zM13,9.59L13,5.83l1.88,1.88L13,9.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_disabled.xml
deleted file mode 100644
index d23b696..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.29,17.89L6.11,4.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L10.59,12 5.7,16.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L11,14.41v6.18c0,0.89 1.08,1.34 1.71,0.71l3.59,-3.59 1.59,1.59c0.39,0.39 1.02,0.39 1.41,0 0.38,-0.39 0.38,-1.03 -0.01,-1.41zM13,18.17v-3.76l1.88,1.88L13,18.17zM13,5.83l1.88,1.88 -1.47,1.47 1.41,1.41L17,8.42c0.39,-0.39 0.39,-1.02 0,-1.42l-4.29,-4.29c-0.63,-0.63 -1.71,-0.19 -1.71,0.7v3.36l2,2L13,5.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_drive.xml b/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_drive.xml
deleted file mode 100644
index bd7d48f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_drive.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.85,6l1.8,-1.8c0.2,-0.2 0.2,-0.51 0,-0.71L19.5,1.36c-0.32,-0.31 -0.85,-0.09 -0.85,0.35v3.08L16.7,2.85c-0.19,-0.19 -0.51,-0.19 -0.7,0c-0.19,0.19 -0.19,0.51 0,0.7L18.44,6L16,8.44c-0.19,0.19 -0.19,0.5 0,0.7l0,0c0.19,0.2 0.51,0.2 0.7,0l1.95,-1.95v3.09c0,0.45 0.54,0.67 0.85,0.35l2.14,-2.15c0.2,-0.2 0.19,-0.51 0,-0.71L19.85,6zM19.65,2.91l0.94,0.94l-0.94,0.94V2.91zM19.65,9.08V7.2l0.94,0.94L19.65,9.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10H4.81l1.04,-3H15V5H5.5C4.84,5 4.29,5.42 4.08,6.01L2,12v7.5C2,20.33 2.67,21 3.5,21S5,20.33 5,19.5V19h12v0.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5V12h-3C15.9,12 15,11.1 15,10zM6.5,16C5.67,16 5,15.33 5,14.5S5.67,13 6.5,13S8,13.67 8,14.5S7.33,16 6.5,16zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_searching.xml b/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_searching.xml
deleted file mode 100644
index bec11dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bluetooth_searching.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.98,10.28l-1.38,1.38c-0.2,0.2 -0.2,0.51 0,0.71l1.38,1.38c0.28,0.28 0.75,0.15 0.85,-0.23 0.11,-0.5 0.17,-1 0.17,-1.52 0,-0.51 -0.06,-1.01 -0.18,-1.48 -0.09,-0.38 -0.56,-0.52 -0.84,-0.24zM20.1,7.78c-0.25,-0.55 -0.98,-0.67 -1.4,-0.24 -0.26,0.26 -0.31,0.64 -0.17,0.98 0.46,1.07 0.72,2.24 0.72,3.47 0,1.24 -0.26,2.42 -0.73,3.49 -0.14,0.32 -0.09,0.69 0.16,0.94 0.41,0.41 1.1,0.29 1.35,-0.23 0.63,-1.3 0.98,-2.76 0.98,-4.3 -0.01,-1.45 -0.33,-2.85 -0.91,-4.11zM11.41,12L15,8.42c0.39,-0.39 0.39,-1.02 0,-1.42l-4.29,-4.29c-0.63,-0.63 -1.71,-0.19 -1.71,0.7v6.18L5.11,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L8.59,12 3.7,16.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L9,14.41v6.18c0,0.89 1.08,1.34 1.71,0.71L15,17c0.39,-0.39 0.39,-1.02 0,-1.42L11.41,12zM11,5.83l1.88,1.88L11,9.59L11,5.83zM11,18.17v-3.76l1.88,1.88L11,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blur_circular.xml b/compose/material/material/icons/generator/raw-icons/rounded/blur_circular.xml
deleted file mode 100644
index 4945404..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blur_circular.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM10,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM7,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM7,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM17,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM14,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blur_linear.xml b/compose/material/material/icons/generator/raw-icons/rounded/blur_linear.xml
deleted file mode 100644
index 7081431..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blur_linear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM9,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM5,9.5c0.83,0 1.5,-0.67 1.5,-1.5S5.83,6.5 5,6.5 3.5,7.17 3.5,8 4.17,9.5 5,9.5zM5,13.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM17,16.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1zM17,8.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,12.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM13,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blur_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/blur_off.xml
deleted file mode 100644
index 96d3bc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blur_off.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.8,11.48l0.2,0.02c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5l0.02,0.2c0.09,0.67 0.61,1.19 1.28,1.28zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.21,4.56c-0.39,0.39 -0.39,1.02 0,1.41l3.07,3.07L6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l2.81,2.81c-0.71,0.11 -1.25,0.73 -1.25,1.47 0,0.83 0.67,1.5 1.5,1.5 0.74,0 1.36,-0.54 1.47,-1.25l2.81,2.81c-0.09,-0.03 -0.18,-0.06 -0.28,-0.06 -0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l3.08,3.07c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.42L4.62,4.56c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/blur_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/blur_on.xml
deleted file mode 100644
index 121ad7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/blur_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM6,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bolt.xml b/compose/material/material/icons/generator/raw-icons/rounded/bolt.xml
deleted file mode 100644
index 5496f19..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,21L10.67,21c-0.35,0 -0.62,-0.31 -0.57,-0.66L11,14H7.5c-0.88,0 -0.33,-0.75 -0.31,-0.78c1.26,-2.23 3.15,-5.53 5.65,-9.93c0.1,-0.18 0.3,-0.29 0.5,-0.29h0c0.35,0 0.62,0.31 0.57,0.66L13.01,10h3.51c0.4,0 0.62,0.19 0.4,0.66c-3.29,5.74 -5.2,9.09 -5.75,10.05C11.07,20.89 10.88,21 10.67,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/book.xml b/compose/material/material/icons/generator/raw-icons/rounded/book.xml
deleted file mode 100644
index 4a4cbea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/book.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2zM6,4h5v8l-2.5,-1.5L6,12V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/book_online.xml b/compose/material/material/icons/generator/raw-icons/rounded/book_online.xml
deleted file mode 100644
index 30a4ec7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/book_online.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1L17,1zM7,6h10v12H7V6zM16,11V9.14C16,8.51 15.55,8 15,8H9C8.45,8 8,8.51 8,9.14l0,1.96c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1l0,1.76C8,15.49 8.45,16 9,16h6c0.55,0 1,-0.51 1,-1.14V13c-0.55,0 -1,-0.45 -1,-1C15,11.45 15.45,11 16,11zM12,14.5L12,14.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v0C12.5,14.28 12.28,14.5 12,14.5zM12,12.5L12,12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v0C12.5,12.28 12.28,12.5 12,12.5zM12,10.5L12,10.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v0C12.5,10.28 12.28,10.5 12,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bookmark.xml b/compose/material/material/icons/generator/raw-icons/rounded/bookmark.xml
deleted file mode 100644
index 3e5fea3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bookmark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3H7c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/bookmark_add.xml
deleted file mode 100644
index a739977..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6c0,0.55 -0.45,1 -1,1h-1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V7h-1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1V4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h1C20.55,5 21,5.45 21,6zM19,19.48c0,0.72 -0.73,1.2 -1.39,0.92L12,18l-5.61,2.4C5.73,20.69 5,20.2 5,19.48V5c0,-1.1 0.9,-2 2,-2l7,0c-0.63,0.84 -1,1.87 -1,3c0,2.76 2.24,5 5,5c0.34,0 0.68,-0.03 1,-0.1V19.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_added.xml b/compose/material/material/icons/generator/raw-icons/rounded/bookmark_added.xml
deleted file mode 100644
index a075828..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_added.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5c0,-1.1 0.9,-2 2,-2l7,0c-0.63,0.84 -1,1.87 -1,3c0,2.76 2.24,5 5,5c0.34,0 0.68,-0.03 1,-0.1v8.58c0,0.72 -0.73,1.2 -1.39,0.92L12,18l-5.61,2.4C5.73,20.69 5,20.2 5,19.48V5zM22.07,3.34c0.39,0.39 0.39,1.02 0,1.41l-3.54,3.54c-0.39,0.39 -1.02,0.39 -1.41,0l-1.41,-1.41c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71l2.83,-2.83C21.05,2.95 21.68,2.95 22.07,3.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_border.xml b/compose/material/material/icons/generator/raw-icons/rounded/bookmark_border.xml
deleted file mode 100644
index e0c532f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,6c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_remove.xml b/compose/material/material/icons/generator/raw-icons/rounded/bookmark_remove.xml
deleted file mode 100644
index 9bccc76..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bookmark_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h4C20.55,5 21,5.45 21,6zM19,10.9c-0.32,0.07 -0.66,0.1 -1,0.1c-2.76,0 -5,-2.24 -5,-5c0,-1.13 0.37,-2.16 1,-3L7,3C5.9,3 5,3.9 5,5v14.48c0,0.72 0.73,1.2 1.39,0.92L12,18l5.61,2.4c0.66,0.28 1.39,-0.2 1.39,-0.92V10.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bookmarks.xml b/compose/material/material/icons/generator/raw-icons/rounded/bookmarks.xml
deleted file mode 100644
index bcb76cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bookmarks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18l2,1V3c0,-1.1 -0.9,-2 -2,-2H8.99C7.89,1 7,1.9 7,3h10c1.1,0 2,0.9 2,2v13zM15,5H5c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3V7c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_all.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_all.xml
deleted file mode 100644
index 0130508..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2zM11,19L6,19c-0.55,0 -1,-0.45 -1,-1v-5h5c0.55,0 1,0.45 1,1v5zM10,11L5,11L5,6c0,-0.55 0.45,-1 1,-1h5v5c0,0.55 -0.45,1 -1,1zM18,19h-5v-5c0,-0.55 0.45,-1 1,-1h5v5c0,0.55 -0.45,1 -1,1zM19,11h-5c-0.55,0 -1,-0.45 -1,-1L13,5h5c0.55,0 1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_bottom.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_bottom.xml
deleted file mode 100644
index a2cc458..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11L7,11v2h2v-2zM13,15h-2v2h2v-2zM9,3L7,3v2h2L9,3zM13,11h-2v2h2v-2zM5,3L3,3v2h2L5,3zM13,7h-2v2h2L13,7zM17,11h-2v2h2v-2zM13,3h-2v2h2L13,3zM17,3h-2v2h2L17,3zM19,13h2v-2h-2v2zM19,17h2v-2h-2v2zM5,7L3,7v2h2L5,7zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM5,11L3,11v2h2v-2zM4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM5,15L3,15v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_clear.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_clear.xml
deleted file mode 100644
index 0c48776..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM7,21h2v-2L7,19v2zM11,17h2v-2h-2v2zM11,21h2v-2h-2v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM11,13h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM11,9h2L13,7h-2v2zM19,3v2h2L21,3h-2zM11,5h2L13,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_color.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_color.xml
deleted file mode 100644
index f10ea97..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_color.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,24H4c-1.1,0 -2,-0.9 -2,-2v0c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2v0C22,23.1 21.1,24 20,24zM13.06,5.19l3.75,3.75l-8.77,8.77C7.86,17.9 7.6,18 7.34,18H5c-0.55,0 -1,-0.45 -1,-1v-2.34c0,-0.27 0.11,-0.52 0.29,-0.71L13.06,5.19zM17.88,7.87l-3.75,-3.75l1.83,-1.83c0.39,-0.39 1.02,-0.39 1.41,0l2.34,2.34c0.39,0.39 0.39,1.02 0,1.41L17.88,7.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_horizontal.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_horizontal.xml
deleted file mode 100644
index 258b7dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM7,21h2v-2L7,19v2zM5,3L3,3v2h2L5,3zM9,3L7,3v2h2L9,3zM17,3h-2v2h2L17,3zM13,7h-2v2h2L13,7zM13,3h-2v2h2L13,3zM19,17h2v-2h-2v2zM11,21h2v-2h-2v2zM4,13h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM11,17h2v-2h-2v2zM15,21h2v-2h-2v2zM19,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_inner.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_inner.xml
deleted file mode 100644
index 83a7bec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_inner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM7,21h2v-2L7,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM5,3L3,3v2h2L5,3zM17,3h-2v2h2L17,3zM19,9h2L21,7h-2v2zM19,3v2h2L21,3h-2zM15,21h2v-2h-2v2zM12,3c-0.55,0 -1,0.45 -1,1v7L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h7v7c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-7h7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-7L13,4c0,-0.55 -0.45,-1 -1,-1zM19,21h2v-2h-2v2zM19,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_left.xml
deleted file mode 100644
index 29711c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2v-2h-2v2zM11,17h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2zM11,13h2v-2h-2v2zM7,21h2v-2L7,19v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM4,21c0.55,0 1,-0.45 1,-1L5,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v16c0,0.55 0.45,1 1,1zM19,9h2L21,7h-2v2zM15,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_outer.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_outer.xml
deleted file mode 100644
index e5d6687..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_outer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v2h2L13,7zM13,11h-2v2h2v-2zM17,11h-2v2h2v-2zM3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM13,15h-2v2h2v-2zM9,11L7,11v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_right.xml
deleted file mode 100644
index 586ed28..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM3,5h2L5,3L3,3v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM3,21h2v-2L3,19v2zM11,21h2v-2h-2v2zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM15,13h2v-2h-2v2zM19,4v16c0,0.55 0.45,1 1,1s1,-0.45 1,-1L21,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM11,13h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_style.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_style.xml
deleted file mode 100644
index 40ef0d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM11,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM3,5v15c0,0.55 0.45,1 1,1s1,-0.45 1,-1L5,6c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,3c-1.1,0 -2,0.9 -2,2zM19,9h2L21,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_top.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_top.xml
deleted file mode 100644
index 90159c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM11,13h2v-2h-2v2zM11,21h2v-2h-2v2zM3,17h2v-2L3,15v2zM3,21h2v-2L3,19v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,13h2v-2h-2v2zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM11,9h2L13,7h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/border_vertical.xml b/compose/material/material/icons/generator/raw-icons/rounded/border_vertical.xml
deleted file mode 100644
index 7760718..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/border_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM3,13h2v-2L3,11v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM7,5h2L9,3L7,3v2zM19,17h2v-2h-2v2zM12,21c0.55,0 1,-0.45 1,-1L13,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v16c0,0.55 0.45,1 1,1zM19,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM15,5h2L17,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/boy.xml b/compose/material/material/icons/generator/raw-icons/rounded/boy.xml
deleted file mode 100644
index 8c83209..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/boy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,19c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1v-4c-0.55,0 -1,-0.45 -1,-1v-3.5c0,-1.1 0.9,-2 2,-2h2c1.1,0 2,0.9 2,2V14c0,0.55 -0.45,1 -1,1V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/branding_watermark.xml b/compose/material/material/icons/generator/raw-icons/rounded/branding_watermark.xml
deleted file mode 100644
index 294dc6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/branding_watermark.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM20,19h-7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h7c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/breakfast_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/breakfast_dining.xml
deleted file mode 100644
index d36406e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/breakfast_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3H6C3.79,3 2,4.79 2,7c0,1.48 0.81,2.75 2,3.45V19c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-8.55c1.19,-0.69 2,-1.97 2,-3.45C22,4.79 20.21,3 18,3zM15.71,13.7l-3,3c-0.39,0.39 -1.02,0.39 -1.42,0l-3,-3c-0.39,-0.39 -0.39,-1.02 0,-1.41l3,-3c0.39,-0.39 1.02,-0.39 1.41,0l3,3C16.1,12.68 16.1,13.31 15.71,13.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_1.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_1.xml
deleted file mode 100644
index 5d957c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_2.xml
deleted file mode 100644
index e12ab94..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.43,2.3c-2.38,-0.59 -4.68,-0.27 -6.63,0.64 -0.35,0.16 -0.41,0.64 -0.1,0.86C8.3,5.6 10,8.6 10,12c0,3.4 -1.7,6.4 -4.3,8.2 -0.32,0.22 -0.26,0.7 0.09,0.86 1.28,0.6 2.71,0.94 4.21,0.94 6.05,0 10.85,-5.38 9.87,-11.6 -0.61,-3.92 -3.59,-7.16 -7.44,-8.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_3.xml
deleted file mode 100644
index d72f296..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,2C8.88,2 8.84,2 8.79,2C7.96,2.02 7.7,3.12 8.4,3.56c2.78,1.77 4.63,4.89 4.63,8.44c0,3.55 -1.84,6.66 -4.62,8.43C7.7,20.89 7.98,21.98 8.82,22c0.07,0 0.14,0 0.21,0c6.05,0 10.86,-5.39 9.87,-11.63C18.14,5.53 13.83,1.95 8.93,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_4.xml
deleted file mode 100644
index 565dcce..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.6,11.29L20,8.69V5c0,-0.55 -0.45,-1 -1,-1h-3.69l-2.6,-2.6c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.69,4H5C4.45,4 4,4.45 4,5v3.69l-2.6,2.6c-0.39,0.39 -0.39,1.02 0,1.41L4,15.3V19c0,0.55 0.45,1 1,1h3.69l2.6,2.6c0.39,0.39 1.02,0.39 1.41,0l2.6,-2.6H19c0.55,0 1,-0.45 1,-1v-3.69l2.6,-2.6C22.99,12.32 22.99,11.68 22.6,11.29zM17.92,12.98c-0.34,2.12 -1.85,3.94 -3.88,4.66c-1.21,0.43 -2.41,0.45 -3.5,0.18c-0.41,-0.1 -0.48,-0.65 -0.13,-0.9C11.98,15.84 13,14.04 13,12s-1.02,-3.84 -2.58,-4.92c-0.35,-0.24 -0.29,-0.79 0.13,-0.9c1.09,-0.27 2.29,-0.25 3.5,0.18c2.02,0.72 3.54,2.54 3.88,4.66C17.98,11.35 18,11.68 18,12C17.99,12.32 17.97,12.65 17.92,12.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_5.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_5.xml
deleted file mode 100644
index fe31e91..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31l2.6,-2.6c0.39,-0.39 0.39,-1.02 0,-1.41L20,8.69V5c0,-0.55 -0.45,-1 -1,-1h-3.69l-2.6,-2.6c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.69,4H5c-0.55,0 -1,0.45 -1,1v3.69l-2.6,2.6c-0.39,0.39 -0.39,1.02 0,1.41L4,15.3V19c0,0.55 0.45,1 1,1h3.69l2.6,2.6c0.39,0.39 1.02,0.39 1.41,0l2.6,-2.6H19c0.55,0 1,-0.45 1,-1v-3.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_6.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_6.xml
deleted file mode 100644
index bb8cf50..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31l2.6,-2.6c0.39,-0.39 0.39,-1.02 0,-1.41L20,8.69L20,5c0,-0.55 -0.45,-1 -1,-1h-3.69l-2.6,-2.6c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.69,4L5,4c-0.55,0 -1,0.45 -1,1v3.69l-2.6,2.6c-0.39,0.39 -0.39,1.02 0,1.41L4,15.3L4,19c0,0.55 0.45,1 1,1h3.69l2.6,2.6c0.39,0.39 1.02,0.39 1.41,0l2.6,-2.6L19,20c0.55,0 1,-0.45 1,-1v-3.69zM12,16.9L12,7.1c0,-0.61 0.55,-1.11 1.15,-0.99C15.91,6.65 18,9.08 18,12s-2.09,5.35 -4.85,5.89c-0.6,0.12 -1.15,-0.38 -1.15,-0.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_7.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_7.xml
deleted file mode 100644
index 93bb4ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,5c0,-0.55 -0.45,-1 -1,-1h-3.69l-2.6,-2.6c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.69,4L5,4c-0.55,0 -1,0.45 -1,1v3.69l-2.6,2.6c-0.39,0.39 -0.39,1.02 0,1.41L4,15.3L4,19c0,0.55 0.45,1 1,1h3.69l2.6,2.6c0.39,0.39 1.02,0.39 1.41,0l2.6,-2.6L19,20c0.55,0 1,-0.45 1,-1v-3.69l2.6,-2.6c0.39,-0.39 0.39,-1.02 0,-1.41L20,8.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_auto.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_auto.xml
deleted file mode 100644
index af59282..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.85,12.65h2.3L12,9l-1.15,3.65zM20,8.69L20,6c0,-1.1 -0.9,-2 -2,-2h-2.69l-1.9,-1.9c-0.78,-0.78 -2.05,-0.78 -2.83,0L8.69,4L6,4c-1.1,0 -2,0.9 -2,2v2.69l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l1.9,1.9L4,18c0,1.1 0.9,2 2,2h2.69l1.9,1.9c0.78,0.78 2.05,0.78 2.83,0l1.9,-1.9L18,20c1.1,0 2,-0.9 2,-2v-2.69l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83L20,8.69zM14.09,15.4L13.6,14h-3.2l-0.49,1.4c-0.13,0.36 -0.46,0.6 -0.84,0.6 -0.62,0 -1.05,-0.61 -0.84,-1.19l2.44,-6.86c0.2,-0.57 0.73,-0.95 1.33,-0.95 0.6,0 1.13,0.38 1.34,0.94l2.44,6.86c0.21,0.58 -0.22,1.19 -0.84,1.19 -0.39,0.01 -0.72,-0.23 -0.85,-0.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_high.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_high.xml
deleted file mode 100644
index 00d4350..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,6c0,-1.1 -0.9,-2 -2,-2h-2.69l-1.9,-1.9c-0.78,-0.78 -2.05,-0.78 -2.83,0L8.69,4L6,4c-1.1,0 -2,0.9 -2,2v2.69l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l1.9,1.9L4,18c0,1.1 0.9,2 2,2h2.69l1.9,1.9c0.78,0.78 2.05,0.78 2.83,0l1.9,-1.9L18,20c1.1,0 2,-0.9 2,-2v-2.69l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83L20,8.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_low.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_low.xml
deleted file mode 100644
index 1c1ebb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83L20,8.69V6c0,-1.1 -0.9,-2 -2,-2h-2.69l-1.9,-1.9c-0.78,-0.78 -2.05,-0.78 -2.83,0L8.69,4H6c-1.1,0 -2,0.9 -2,2v2.69l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l1.9,1.9V18c0,1.1 0.9,2 2,2h2.69l1.9,1.9c0.78,0.78 2.05,0.78 2.83,0l1.9,-1.9H18c1.1,0 2,-0.9 2,-2v-2.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brightness_medium.xml b/compose/material/material/icons/generator/raw-icons/rounded/brightness_medium.xml
deleted file mode 100644
index bc63ef1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brightness_medium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83L20,8.69L20,6c0,-1.1 -0.9,-2 -2,-2h-2.69l-1.9,-1.9c-0.78,-0.78 -2.05,-0.78 -2.83,0L8.69,4L6,4c-1.1,0 -2,0.9 -2,2v2.69l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l1.9,1.9L4,18c0,1.1 0.9,2 2,2h2.69l1.9,1.9c0.78,0.78 2.05,0.78 2.83,0l1.9,-1.9L18,20c1.1,0 2,-0.9 2,-2v-2.69zM12,16.9L12,7.1c0,-0.61 0.55,-1.11 1.15,-0.99C15.91,6.65 18,9.08 18,12s-2.09,5.35 -4.85,5.89c-0.6,0.12 -1.15,-0.38 -1.15,-0.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/broadcast_on_home.xml b/compose/material/material/icons/generator/raw-icons/rounded/broadcast_on_home.xml
deleted file mode 100644
index da23a663..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/broadcast_on_home.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6c0,-1.1 -0.9,-2 -2,-2H5C4.45,4 4,4.45 4,5v0c0,0.55 0.45,1 1,1h15v2.59c0.73,0.29 1.4,0.69 2,1.17V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9H3c-0.5,0 -1,0.5 -1,1v9c0,0.5 0.5,1 1,1h5c0.5,0 1,-0.5 1,-1v-9C9,9.5 8.5,9 8,9zM7,18H4v-7h3V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,16.97c0.3,-0.23 0.5,-0.57 0.5,-0.97c0,-0.69 -0.56,-1.25 -1.25,-1.25s-1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97v4.28c0,0.41 0.34,0.75 0.75,0.75l0,0c0.41,0 0.75,-0.34 0.75,-0.75V16.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.54,13.56c0.98,0.21 1.76,1.03 1.93,2.02c0.11,0.64 -0.03,1.25 -0.34,1.74c-0.18,0.29 -0.13,0.67 0.12,0.91l0,0c0.34,0.33 0.9,0.29 1.16,-0.12c0.51,-0.82 0.73,-1.83 0.53,-2.9c-0.3,-1.56 -1.56,-2.83 -3.12,-3.13C15.24,11.58 13,13.53 13,16c0,0.78 0.22,1.5 0.6,2.11c0.25,0.41 0.83,0.46 1.16,0.12l0,0c0.24,-0.24 0.29,-0.63 0.11,-0.92c-0.24,-0.38 -0.37,-0.83 -0.37,-1.31C14.5,14.45 15.93,13.22 17.54,13.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.25,9.54c-2.94,0.33 -5.32,2.68 -5.69,5.61c-0.23,1.82 0.29,3.51 1.3,4.82c0.27,0.35 0.8,0.37 1.12,0.06l0,0c0.27,-0.27 0.28,-0.7 0.05,-1c-0.8,-1.05 -1.2,-2.43 -0.95,-3.89c0.34,-2.03 1.95,-3.67 3.98,-4.05C19.22,10.5 22,12.93 22,16c0,1.13 -0.38,2.18 -1.02,3.02c-0.23,0.3 -0.21,0.73 0.06,1l0,0c0.31,0.31 0.84,0.3 1.11,-0.06C23,18.87 23.5,17.49 23.5,16C23.5,12.16 20.17,9.1 16.25,9.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/broadcast_on_personal.xml b/compose/material/material/icons/generator/raw-icons/rounded/broadcast_on_personal.xml
deleted file mode 100644
index ddc8dafc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/broadcast_on_personal.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8c0.7,0 1.38,0.1 2.02,0.27L12,3L4,9v12h6.76C9.66,19.63 9,17.89 9,16C9,11.58 12.58,8 17,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14.75c-0.69,0 -1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5v-5.03c0.3,-0.23 0.5,-0.57 0.5,-0.97C18.25,15.31 17.69,14.75 17,14.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16C21,13.79 19.21,12 17,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/broken_image.xml b/compose/material/material/icons/generator/raw-icons/rounded/broken_image.xml
deleted file mode 100644
index e4c8ed4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/broken_image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5v6.59l-2.29,-2.3c-0.39,-0.39 -1.03,-0.39 -1.42,0L14,12.59 10.71,9.3c-0.39,-0.39 -1.02,-0.39 -1.41,0L6,12.59 3,9.58L3,5c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2zM18,11.42l3,3.01L21,19c0,1.1 -0.9,2 -2,2L5,21c-1.1,0 -2,-0.9 -2,-2v-6.58l2.29,2.29c0.39,0.39 1.02,0.39 1.41,0l3.3,-3.3 3.29,3.29c0.39,0.39 1.02,0.39 1.41,0l3.3,-3.28z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/browse_gallery.xml b/compose/material/material/icons/generator/raw-icons/rounded/browse_gallery.xml
deleted file mode 100644
index 20d1ed1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/browse_gallery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9S13.97,3 9,3zM11.09,15.5L8.59,13C8.21,12.62 8,12.12 8,11.59V8c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3.59l2.5,2.5c0.39,0.39 0.39,1.02 0,1.41l0,0C12.11,15.89 11.48,15.89 11.09,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,5.08L17.99,5.08c0,0.37 0.21,0.69 0.53,0.88C20.6,7.17 22,9.42 22,12c0,2.58 -1.4,4.83 -3.48,6.04c-0.32,0.19 -0.53,0.51 -0.53,0.88v0c0,0.77 0.84,1.25 1.51,0.86C22.18,18.22 24,15.32 24,12c0,-3.32 -1.82,-6.22 -4.5,-7.78C18.83,3.83 17.99,4.31 17.99,5.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/browser_not_supported.xml b/compose/material/material/icons/generator/raw-icons/rounded/browser_not_supported.xml
deleted file mode 100644
index d684670..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/browser_not_supported.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6v10.5l1.95,1.95C20.98,18.3 21,18.15 21,18V6c0,-1.1 -0.9,-2 -2,-2H6.5l2,2H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.86,3.95c-0.35,-0.35 -0.92,-0.35 -1.27,0c-0.35,0.35 -0.35,0.92 0,1.27L3,5.64L3,18c0,1.1 0.9,2 2,2h12.36l1.42,1.42c0.35,0.35 0.92,0.35 1.27,0c0.35,-0.35 0.35,-0.92 0,-1.27L3.86,3.95zM5,18V7.64L15.36,18H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/browser_updated.xml b/compose/material/material/icons/generator/raw-icons/rounded/browser_updated.xml
deleted file mode 100644
index a64cc8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/browser_updated.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3c0.55,0 1,0.45 1,1v6h1.59c0.89,0 1.34,1.08 0.71,1.71l-2.59,2.59c-0.39,0.39 -1.02,0.39 -1.41,0l-2.59,-2.59C11.08,11.08 11.52,10 12.41,10H14V4C14,3.45 14.45,3 15,3zM6,19.59C6,20.37 6.63,21 7.41,21h9.17c0.78,0 1.41,-0.63 1.41,-1.41c0,-0.72 -0.44,-1.03 -1,-1.59h3c1.1,0 2,-0.9 2,-2v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2H4V5l7,0c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1L4,3C2.9,3 2,3.9 2,5v11c0,1.1 0.9,2 2,2h3C6.45,18.55 6,18.87 6,19.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brunch_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/brunch_dining.xml
deleted file mode 100644
index c7184c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brunch_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h2V4h-2V8zM15,22H3c-0.55,0 -1,-0.45 -1,-1v-1h14v1C16,21.55 15.55,22 15,22zM18,15.89l-0.4,-0.42c-1.03,-1.08 -1.6,-2.51 -1.6,-4V3c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v8.51c0,1.46 -0.54,2.87 -1.53,3.94L20,15.97V20h1c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1V15.89zM7,16v-1c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h4c0.55,0 1,0.45 1,1v1H2v-1c0,-0.55 0.45,-1 1,-1H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/brush.xml b/compose/material/material/icons/generator/raw-icons/rounded/brush.xml
deleted file mode 100644
index 4f14c93..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/brush.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14c-1.66,0 -3,1.34 -3,3 0,1.31 -1.16,2 -2,2 0.92,1.22 2.49,2 4,2 2.21,0 4,-1.79 4,-4 0,-1.66 -1.34,-3 -3,-3zM20.71,4.63l-1.34,-1.34c-0.39,-0.39 -1.02,-0.39 -1.41,0L9,12.25 11.75,15l8.96,-8.96c0.39,-0.39 0.39,-1.02 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bubble_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/bubble_chart.xml
deleted file mode 100644
index db1a432..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bubble_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.2,14.4m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.8,18m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,8.8m-4.8,0a4.8,4.8 0,1 1,9.6 0a4.8,4.8 0,1 1,-9.6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bug_report.xml b/compose/material/material/icons/generator/raw-icons/rounded/bug_report.xml
deleted file mode 100644
index c0ee001..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bug_report.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-1.81c-0.45,-0.78 -1.07,-1.45 -1.82,-1.96l0.93,-0.93c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0l-1.47,1.47C12.96,5.06 12.49,5 12,5s-0.96,0.06 -1.41,0.17L9.11,3.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l0.92,0.93C7.88,6.55 7.26,7.22 6.81,8L5,8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.09c-0.05,0.33 -0.09,0.66 -0.09,1v1L5,12c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v1c0,0.34 0.04,0.67 0.09,1L5,16c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.81c1.04,1.79 2.97,3 5.19,3s4.15,-1.21 5.19,-3L19,18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.09c0.05,-0.33 0.09,-0.66 0.09,-1v-1h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-1c0,-0.34 -0.04,-0.67 -0.09,-1L19,10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM13,16h-2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM13,12h-2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/build.xml b/compose/material/material/icons/generator/raw-icons/rounded/build.xml
deleted file mode 100644
index ad63c65..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/build.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.09,2.91C10.08,0.9 7.07,0.49 4.65,1.67L8.28,5.3c0.39,0.39 0.39,1.02 0,1.41L6.69,8.3c-0.39,0.4 -1.02,0.4 -1.41,0L1.65,4.67C0.48,7.1 0.89,10.09 2.9,12.1c1.86,1.86 4.58,2.35 6.89,1.48l7.96,7.96c1.03,1.03 2.69,1.03 3.71,0 1.03,-1.03 1.03,-2.69 0,-3.71L13.54,9.9c0.92,-2.34 0.44,-5.1 -1.45,-6.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/build_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/build_circle.xml
deleted file mode 100644
index e4fc9ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/build_circle.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM16.54,15.85l-0.69,0.69c-0.39,0.39 -1.02,0.39 -1.41,0l-3.05,-3.05c-1.22,0.43 -2.64,0.17 -3.62,-0.81c-1.11,-1.11 -1.3,-2.79 -0.59,-4.1l2.35,2.35l1.41,-1.41L8.58,7.17c1.32,-0.71 2.99,-0.52 4.1,0.59c0.98,0.98 1.24,2.4 0.81,3.62l3.05,3.05C16.93,14.82 16.93,15.46 16.54,15.85z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bungalow.xml b/compose/material/material/icons/generator/raw-icons/rounded/bungalow.xml
deleted file mode 100644
index bb9ccaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bungalow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c0.55,0 1,0.45 1,1v4h3c0.55,0 1,-0.45 1,-1v-5.21l0.57,0.92c0.29,0.47 0.91,0.61 1.38,0.32c0.47,-0.29 0.61,-0.91 0.32,-1.38L12.85,4.36c-0.39,-0.63 -1.31,-0.63 -1.7,0L4.73,14.65c-0.29,0.47 -0.15,1.09 0.32,1.38c0.47,0.29 1.08,0.15 1.38,-0.32L7,14.8V20c0,0.55 0.45,1 1,1h3v-4C11,16.45 11.45,16 12,16zM13,13c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,12.45 13,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/burst_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/burst_mode.xml
deleted file mode 100644
index f5e45f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/burst_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L1,6c0,-0.55 0.45,-1 1,-1zM6,5c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1zM22,5L10,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L23,6c0,-0.55 -0.45,-1 -1,-1zM11.64,16.19l1.47,-1.86c0.2,-0.25 0.57,-0.25 0.78,-0.01l1.4,1.68 2.1,-2.71c0.2,-0.26 0.59,-0.26 0.79,0l2.21,2.9c0.25,0.33 0.02,0.8 -0.4,0.8h-7.96c-0.41,0.01 -0.65,-0.47 -0.39,-0.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/bus_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/bus_alert.xml
deleted file mode 100644
index d1aae1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/bus_alert.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29c-0.77,-2.6 0.21,-4.61 0.37,-4.97C2.97,2.67 2,5.02 2,7v9.5c0,0.95 0.38,1.81 1,2.44v1.56C3,21.33 3.67,22 4.5,22h0C5.33,22 6,21.33 6,20.5V20h8v0.5c0,0.82 0.67,1.5 1.5,1.5h0c0.82,0 1.5,-0.67 1.5,-1.5v-1.56c0.62,-0.63 1,-1.49 1,-2.44V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM6.5,17C5.67,17 5,16.33 5,15.5S5.67,14 6.5,14S8,14.67 8,15.5S7.33,17 6.5,17zM15,15.5c0,0.83 -0.67,1.5 -1.5,1.5S12,16.33 12,15.5s0.67,-1.5 1.5,-1.5S15,14.67 15,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,6.5C18.5,6.78 18.28,7 18,7s-0.5,-0.22 -0.5,-0.5v-3C17.5,3.22 17.72,3 18,3s0.5,0.22 0.5,0.5V6.5zM18.5,8.5C18.5,8.78 18.28,9 18,9s-0.5,-0.22 -0.5,-0.5S17.72,8 18,8S18.5,8.22 18.5,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/business.xml b/compose/material/material/icons/generator/raw-icons/rounded/business.xml
deleted file mode 100644
index e54a454..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/business.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9c0,-1.1 -0.9,-2 -2,-2h-8zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM19,19h-7v-2h2v-2h-2v-2h2v-2h-2L12,9h7c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/business_center.xml b/compose/material/material/icons/generator/raw-icons/rounded/business_center.xml
deleted file mode 100644
index 4f86944..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/business_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16h-2c-0.55,0 -1,-0.45 -1,-1L3.01,15v4c0,1.1 0.9,2 2,2L19,21c1.1,0 2,-0.9 2,-2v-4h-7c0,0.55 -0.45,1 -1,1zM20,7h-4c0,-2.21 -1.79,-4 -4,-4S8,4.79 8,7L4,7c-1.1,0 -2,0.9 -2,2v3c0,1.11 0.89,2 2,2h6v-1c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1h6c1.1,0 2,-0.9 2,-2L22,9c0,-1.1 -0.9,-2 -2,-2zM10,7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2L9.99,7 10,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cabin.xml b/compose/material/material/icons/generator/raw-icons/rounded/cabin.xml
deleted file mode 100644
index 51d158b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cabin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.37,3.55C4.89,2.62 5.87,2 7,2c0.38,0 0.72,-0.22 0.89,-0.53C8.04,1.16 8.39,1 8.73,1c0.74,0 1.26,0.8 0.9,1.45C9.11,3.38 8.13,4 7,4C6.62,4 6.28,4.22 6.11,4.53C5.96,4.84 5.61,5 5.27,5C4.53,5 4.01,4.2 4.37,3.55zM22.39,12.19c-0.34,0.44 -0.96,0.52 -1.4,0.19L20,11.62V20c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1v-8.38l-0.99,0.76c-0.44,0.34 -1.07,0.25 -1.4,-0.19c-0.33,-0.44 -0.25,-1.07 0.19,-1.4L4,9.11V7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v0.58l5.39,-4.12c0.36,-0.27 0.86,-0.27 1.21,0l9.6,7.33C22.64,11.13 22.73,11.76 22.39,12.19zM10.06,7h3.89L12,5.52L10.06,7zM6,10.1V11h12v-0.9L16.56,9H7.44L6,10.1zM6,13v2h12v-2H6zM18,19v-2H6v2H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cable.xml b/compose/material/material/icons/generator/raw-icons/rounded/cable.xml
deleted file mode 100644
index 0c10cb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1h0c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h1l0,6.91c0,1.04 -0.76,1.98 -1.79,2.08C14.01,19.11 13,18.17 13,17l0,-9.86c0,-2.13 -1.61,-3.99 -3.74,-4.13C6.93,2.86 5,4.7 5,7v7H4c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h0v1c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-1h0c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1H7l0,-6.91c0,-1.04 0.76,-1.98 1.79,-2.08C9.99,4.89 11,5.83 11,7l0,9.86c0,2.13 1.61,3.99 3.74,4.13C17.07,21.14 19,19.3 19,17v-7h1c0.55,0 1,-0.45 1,-1V6C21,5.45 20.55,5 20,5L20,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cached.xml b/compose/material/material/icons/generator/raw-icons/rounded/cached.xml
deleted file mode 100644
index f096a7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cached.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.65,8.35l-2.79,2.79c-0.32,0.32 -0.1,0.86 0.35,0.86H18c0,3.31 -2.69,6 -6,6 -0.79,0 -1.56,-0.15 -2.25,-0.44 -0.36,-0.15 -0.77,-0.04 -1.04,0.23 -0.51,0.51 -0.33,1.37 0.34,1.64 0.91,0.37 1.91,0.57 2.95,0.57 4.42,0 8,-3.58 8,-8h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.19,-0.2 -0.51,-0.2 -0.7,-0.01zM6,12c0,-3.31 2.69,-6 6,-6 0.79,0 1.56,0.15 2.25,0.44 0.36,0.15 0.77,0.04 1.04,-0.23 0.51,-0.51 0.33,-1.37 -0.34,-1.64C14.04,4.2 13.04,4 12,4c-4.42,0 -8,3.58 -8,8H2.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.36,-0.85H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cake.xml b/compose/material/material/icons/generator/raw-icons/rounded/cake.xml
deleted file mode 100644
index 5ac9501..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.68,5.88c0.7,-0.24 1.22,-0.9 1.3,-1.64 0.05,-0.47 -0.05,-0.91 -0.28,-1.27L12.42,0.75c-0.19,-0.33 -0.67,-0.33 -0.87,0l-1.28,2.22c-0.17,0.3 -0.27,0.65 -0.27,1.03 0,1.32 1.3,2.35 2.68,1.88zM16.53,15.92l-1,-1 -1.08,1.07c-1.3,1.3 -3.58,1.31 -4.89,0l-1.07,-1.07 -1.09,1.07C6.75,16.64 5.88,17 4.96,17c-0.73,0 -1.4,-0.23 -1.96,-0.61L3,20c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-3.61c-0.75,0.51 -1.71,0.75 -2.74,0.52 -0.66,-0.14 -1.25,-0.51 -1.73,-0.99zM18,9h-5L13,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L6,9c-1.66,0 -3,1.34 -3,3v1.46c0,0.85 0.5,1.67 1.31,1.94 0.73,0.24 1.52,0.06 2.03,-0.46l2.14,-2.13 2.13,2.13c0.76,0.76 2.01,0.76 2.77,0l2.14,-2.13 2.13,2.13c0.43,0.43 1.03,0.63 1.65,0.55 0.99,-0.13 1.69,-1.06 1.69,-2.06v-1.42C21,10.34 19.66,9 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/calculate.xml b/compose/material/material/icons/generator/raw-icons/rounded/calculate.xml
deleted file mode 100644
index 8165aa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/calculate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM13.56,6.53L13.56,6.53c0.29,-0.29 0.77,-0.29 1.06,0l0.88,0.88l0.88,-0.88c0.29,-0.29 0.77,-0.29 1.06,0l0,0c0.29,0.29 0.29,0.77 0,1.06l-0.88,0.88l0.88,0.88c0.29,0.29 0.29,0.77 0,1.06v0c-0.29,0.29 -0.77,0.29 -1.06,0L15.5,9.54l-0.88,0.88c-0.29,0.29 -0.77,0.29 -1.06,0l0,0c-0.29,-0.29 -0.29,-0.77 0,-1.06l0.88,-0.88l-0.88,-0.88C13.26,7.3 13.26,6.82 13.56,6.53zM7,7.72h3.5c0.41,0 0.75,0.34 0.75,0.75v0c0,0.41 -0.34,0.75 -0.75,0.75H7c-0.41,0 -0.75,-0.34 -0.75,-0.75v0C6.25,8.06 6.59,7.72 7,7.72zM10.75,16H9.5v1.25C9.5,17.66 9.16,18 8.75,18h0C8.34,18 8,17.66 8,17.25V16H6.75C6.34,16 6,15.66 6,15.25v0c0,-0.41 0.34,-0.75 0.75,-0.75H8v-1.25c0,-0.41 0.34,-0.75 0.75,-0.75h0c0.41,0 0.75,0.34 0.75,0.75v1.25h1.25c0.41,0 0.75,0.34 0.75,0.75v0C11.5,15.66 11.16,16 10.75,16zM17.25,17.25h-3.5c-0.41,0 -0.75,-0.34 -0.75,-0.75l0,0c0,-0.41 0.34,-0.75 0.75,-0.75h3.5c0.41,0 0.75,0.34 0.75,0.75l0,0C18,16.91 17.66,17.25 17.25,17.25zM17.25,14.75h-3.5C13.34,14.75 13,14.41 13,14v0c0,-0.41 0.34,-0.75 0.75,-0.75h3.5c0.41,0 0.75,0.34 0.75,0.75v0C18,14.41 17.66,14.75 17.25,14.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/calendar_month.xml b/compose/material/material/icons/generator/raw-icons/rounded/calendar_month.xml
deleted file mode 100644
index 8b217ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/calendar_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2c-0.55,0 -1,0.45 -1,1v1H8V3c0,-0.55 -0.45,-1 -1,-1S6,2.45 6,3v1H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2h-1V3C18,2.45 17.55,2 17,2zM19,20H5V10h14V20zM11,13c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S11,13.55 11,13zM7,13c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S7,13.55 7,13zM15,13c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S15,13.55 15,13zM11,17c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S11,17.55 11,17zM7,17c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S7,17.55 7,17zM15,17c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S15,17.55 15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/calendar_today.xml b/compose/material/material/icons/generator/raw-icons/rounded/calendar_today.xml
deleted file mode 100644
index 5e299fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/calendar_today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-1L19,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L7,3L7,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L4,3c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM19,21L5,21c-0.55,0 -1,-0.45 -1,-1L4,8h16v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_day.xml b/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_day.xml
deleted file mode 100644
index 6c46d63..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h14c1.1,0 2,0.9 2,2v6c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V9C3,7.9 3.9,7 5,7zM4,3h16c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H4C3.45,5 3,4.55 3,4v0C3,3.45 3.45,3 4,3zM4,19h16c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v0C3,19.45 3.45,19 4,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_month.xml b/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_month.xml
deleted file mode 100644
index 2cbab23..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM8,11H4V6h4V11zM14,11h-4V6h4V11zM20,11h-4V6h4V11zM8,18H4v-5h4V18zM14,18h-4v-5h4V18zM20,18h-4v-5h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_week.xml b/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_week.xml
deleted file mode 100644
index a22cb40..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/calendar_view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM13,6h2.5v12H13V6zM11,18H8.5V6H11V18zM4,6h2.5v12H4V6zM20,18h-2.5V6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call.xml b/compose/material/material/icons/generator/raw-icons/rounded/call.xml
deleted file mode 100644
index 0c2d257..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77H5.03c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_end.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_end.xml
deleted file mode 100644
index 808698c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.51,15.48l2,-1.59c0.48,-0.38 0.76,-0.96 0.76,-1.57v-2.6c3.02,-0.98 6.29,-0.99 9.32,0v2.61c0,0.61 0.28,1.19 0.76,1.57l1.99,1.58c0.8,0.63 1.94,0.57 2.66,-0.15l1.22,-1.22c0.8,-0.8 0.8,-2.13 -0.05,-2.88 -6.41,-5.66 -16.07,-5.66 -22.48,0 -0.85,0.75 -0.85,2.08 -0.05,2.88l1.22,1.22c0.71,0.72 1.85,0.78 2.65,0.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_made.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_made.xml
deleted file mode 100644
index 144ea2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_made.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6c0,0.56 0.45,1 1,1h5.59L4.7,17.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L17,8.41V14c0,0.55 0.45,1 1,1s1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1h-8c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_merge.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_merge.xml
deleted file mode 100644
index f21a7f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_merge.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.7,19.7c0.39,-0.39 0.39,-1.02 0,-1.41l-2.7,-2.7L13.59,17l2.7,2.7c0.39,0.39 1.03,0.39 1.41,0zM8.71,8H11v5.59l-4.71,4.7c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l5.3,-5.3V8h2.29c0.45,0 0.67,-0.54 0.35,-0.85l-3.29,-3.29c-0.2,-0.2 -0.51,-0.2 -0.71,0L8.35,7.15c-0.31,0.31 -0.09,0.85 0.36,0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_missed.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_missed.xml
deleted file mode 100644
index a77d5ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,7.7L12,14.59 6.41,9H10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3.59l6.29,6.29c0.39,0.39 1.02,0.39 1.41,0l7.59,-7.59c0.39,-0.39 0.39,-1.02 0,-1.41 -0.38,-0.38 -1.02,-0.38 -1.4,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_missed_outgoing.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_missed_outgoing.xml
deleted file mode 100644
index 7b77fae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_missed_outgoing.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.7,9.11l7.59,7.59c0.39,0.39 1.02,0.39 1.41,0l6.3,-6.3V14c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3.59L12,14.59 5.11,7.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.38,0.39 -0.38,1.03 0,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_received.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_received.xml
deleted file mode 100644
index 76e8126..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_received.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.3,4.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L7,15.59V10c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H8.41L19.3,6.11c0.38,-0.38 0.38,-1.02 0,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_split.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_split.xml
deleted file mode 100644
index 3a87eb7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_split.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.85,4.85l1.44,1.44 -2.88,2.88 1.42,1.42 2.88,-2.88 1.44,1.44c0.31,0.31 0.85,0.09 0.85,-0.36V4.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-4.29c-0.45,0 -0.67,0.54 -0.36,0.85zM8.79,4H4.5c-0.28,0 -0.5,0.22 -0.5,0.5v4.29c0,0.45 0.54,0.67 0.85,0.35L6.29,7.7 11,12.4V19c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-7c0,-0.26 -0.11,-0.52 -0.29,-0.71l-5,-5.01 1.44,-1.44c0.31,-0.3 0.09,-0.84 -0.36,-0.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/call_to_action.xml b/compose/material/material/icons/generator/raw-icons/rounded/call_to_action.xml
deleted file mode 100644
index 9b94e1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/call_to_action.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM20,19L4,19c-0.55,0 -1,-0.45 -1,-1v-1c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera.xml
deleted file mode 100644
index 7889220..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.81,2.86c0.17,-0.3 0,-0.7 -0.35,-0.74 -2.62,-0.37 -5.3,0.28 -7.44,1.86 -0.19,0.15 -0.25,0.43 -0.12,0.65l3.01,5.22c0.19,0.33 0.67,0.33 0.87,0l4.03,-6.99zM21.3,8.33c-0.98,-2.47 -2.92,-4.46 -5.35,-5.5 -0.23,-0.1 -0.5,0 -0.63,0.22l-3.01,5.21c-0.19,0.32 0.05,0.74 0.44,0.74h8.08c0.35,0 0.6,-0.35 0.47,-0.67zM21.37,10h-6.2c-0.38,0 -0.63,0.42 -0.43,0.75L19,18.14c0.17,0.3 0.6,0.35 0.82,0.08 1.74,-2.18 2.48,-5.03 2.05,-7.79 -0.03,-0.25 -0.25,-0.43 -0.5,-0.43zM4.18,5.79c-1.73,2.19 -2.48,5.02 -2.05,7.79 0.03,0.24 0.25,0.42 0.5,0.42h6.2c0.38,0 0.63,-0.42 0.43,-0.75L5,5.87c-0.18,-0.3 -0.61,-0.35 -0.82,-0.08zM2.7,15.67c0.98,2.47 2.92,4.46 5.35,5.5 0.23,0.1 0.5,0 0.63,-0.22l3.01,-5.21c0.19,-0.33 -0.05,-0.75 -0.43,-0.75L3.17,14.99c-0.35,0.01 -0.6,0.36 -0.47,0.68zM10.53,21.89c2.62,0.37 5.3,-0.28 7.44,-1.86 0.2,-0.15 0.26,-0.44 0.13,-0.66l-3.01,-5.22c-0.19,-0.33 -0.67,-0.33 -0.87,0l-4.04,6.99c-0.17,0.3 0.01,0.7 0.35,0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera_alt.xml
deleted file mode 100644
index ddeb49b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17l-1.24,-1.35c-0.37,-0.41 -0.91,-0.65 -1.47,-0.65L9.88,2c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera_enhance.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera_enhance.xml
deleted file mode 100644
index a86642d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera_enhance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17l-1.24,-1.35c-0.37,-0.41 -0.91,-0.65 -1.47,-0.65L9.88,3c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM12,18c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9l-1.25,2.75L8,13l2.75,1.25L12,17l1.25,-2.75L16,13l-2.75,-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera_front.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera_front.xml
deleted file mode 100644
index 11898839..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,0L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2c0,-1.1 -0.9,-2 -2,-2zM17,12.5c0,-1.67 -3.33,-2.5 -5,-2.5s-5,0.83 -5,2.5L7,3c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v9.5zM10.85,18.85c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L10,20L6,20c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h4v0.79c0,0.45 0.54,0.67 0.85,0.35l1.79,-1.79c0.2,-0.2 0.2,-0.51 0,-0.71l-1.79,-1.79zM18,20h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -1.99,0.9 -1.99,2S10.9,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera_indoor.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera_indoor.xml
deleted file mode 100644
index 4ee6b5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera_indoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.8,3.65l-6,4.5C4.3,8.53 4,9.12 4,9.75v9c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-9c0,-0.63 -0.3,-1.22 -0.8,-1.6l-6,-4.5C12.49,3.12 11.51,3.12 10.8,3.65zM15.27,15.67L14,15v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v1l1.27,-0.67C15.6,12.15 16,12.39 16,12.77v2.46C16,15.61 15.6,15.85 15.27,15.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera_outdoor.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera_outdoor.xml
deleted file mode 100644
index 6ec750f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera_outdoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1l1.27,0.67C19.6,16.85 20,16.61 20,16.23v-2.46c0,-0.38 -0.4,-0.62 -0.73,-0.44L18,14V13zM10.8,3.9l-6,4.5C4.3,8.78 4,9.37 4,10v9c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6v-9l6,-4.5l6,4.5l0,1h2v-1c0,-0.63 -0.3,-1.22 -0.8,-1.6l-6,-4.5C12.49,3.37 11.51,3.37 10.8,3.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera_rear.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera_rear.xml
deleted file mode 100644
index 75ba0bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera_rear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.85,18.85c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L10,20L6,20c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h4v0.79c0,0.45 0.54,0.67 0.85,0.35l1.79,-1.79c0.2,-0.2 0.2,-0.51 0,-0.71l-1.79,-1.79zM18,20h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM17,0L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2c0,-1.1 -0.9,-2 -2,-2zM12,6c-1.11,0 -2,-0.9 -2,-2s0.89,-2 1.99,-2 2,0.9 2,2C14,5.1 13.1,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/camera_roll.xml b/compose/material/material/icons/generator/raw-icons/rounded/camera_roll.xml
deleted file mode 100644
index 75d7917..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/camera_roll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5c0,-1.1 -0.9,-2 -2,-2h-1L11,2c0,-0.55 -0.45,-1 -1,-1L6,1c-0.55,0 -1,0.45 -1,1v1L4,3c-1.1,0 -2,0.9 -2,2v15c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2h6c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2h-6zM12,18h-2v-2h2v2zM12,9h-2L10,7h2v2zM16,18h-2v-2h2v2zM16,9h-2L14,7h2v2zM20,18h-2v-2h2v2zM20,9h-2L18,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cameraswitch.xml b/compose/material/material/icons/generator/raw-icons/rounded/cameraswitch.xml
deleted file mode 100644
index 078d08f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cameraswitch.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h-1l-1,-1h-4L9,7H8C6.9,7 6,7.9 6,9v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V9C18,7.9 17.1,7 16,7zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.45,0.28C9.05,0.36 8.9,0.84 9.19,1.12l3.01,3.01c0.32,0.31 0.85,0.09 0.85,-0.35V2.04c4.45,0.44 8.06,3.82 8.84,8.17c0.08,0.46 0.5,0.78 0.97,0.78c0.62,0 1.09,-0.57 0.98,-1.18C22.61,2.89 15.79,-1.12 9.45,0.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.8,19.87c-0.32,-0.32 -0.85,-0.09 -0.85,0.35v1.74c-4.45,-0.44 -8.06,-3.82 -8.84,-8.17c-0.08,-0.46 -0.5,-0.78 -0.97,-0.78c-0.62,0 -1.09,0.57 -0.98,1.18c1.24,6.92 8.06,10.93 14.4,9.53c0.39,-0.09 0.55,-0.56 0.26,-0.85L11.8,19.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/campaign.xml b/compose/material/material/icons/generator/raw-icons/rounded/campaign.xml
deleted file mode 100644
index 2bde321..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/campaign.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12L18,12c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2C18.45,11 18,11.45 18,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,16.82c-0.33,0.44 -0.24,1.05 0.2,1.37c0.53,0.39 1.09,0.81 1.62,1.21c0.44,0.33 1.06,0.24 1.38,-0.2c0,-0.01 0.01,-0.01 0.01,-0.02c0.33,-0.44 0.24,-1.06 -0.2,-1.38c-0.53,-0.4 -1.09,-0.82 -1.61,-1.21c-0.44,-0.33 -1.06,-0.23 -1.39,0.21C16.6,16.81 16.59,16.82 16.59,16.82z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.81,4.81c0,-0.01 -0.01,-0.01 -0.01,-0.02c-0.33,-0.44 -0.95,-0.53 -1.38,-0.2c-0.53,0.4 -1.1,0.82 -1.62,1.22c-0.44,0.33 -0.52,0.95 -0.19,1.38c0,0.01 0.01,0.01 0.01,0.02c0.33,0.44 0.94,0.53 1.38,0.2c0.53,-0.39 1.09,-0.82 1.62,-1.22C20.05,5.87 20.13,5.25 19.81,4.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9H4c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3h1l5,3V6L8,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,12c0,-1.33 -0.58,-2.53 -1.5,-3.35v6.69C14.92,14.53 15.5,13.33 15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cancel.xml b/compose/material/material/icons/generator/raw-icons/rounded/cancel.xml
deleted file mode 100644
index ce93e71..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cancel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM16.3,16.3c-0.39,0.39 -1.02,0.39 -1.41,0L12,13.41 9.11,16.3c-0.39,0.39 -1.02,0.39 -1.41,0 -0.39,-0.39 -0.39,-1.02 0,-1.41L10.59,12 7.7,9.11c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L12,10.59l2.89,-2.89c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41L13.41,12l2.89,2.89c0.38,0.38 0.38,1.02 0,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cancel_presentation.xml b/compose/material/material/icons/generator/raw-icons/rounded/cancel_presentation.xml
deleted file mode 100644
index 5df715c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cancel_presentation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,18c0,0.55 -0.45,1 -1,1L4,19c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12zM15.29,8.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,10.59 10.11,8.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L10.59,12 8.7,13.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,13.41l1.89,1.89c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L13.41,12l1.89,-1.89c0.38,-0.38 0.38,-1.02 -0.01,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cancel_schedule_send.xml b/compose/material/material/icons/generator/raw-icons/rounded/cancel_schedule_send.xml
deleted file mode 100644
index ca12d0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cancel_schedule_send.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9c-0.42,0 -0.83,0.04 -1.24,0.11L2.4,3.6C1.74,3.31 1.01,3.8 1.01,4.51L1,9.2c0,0.47 0.33,0.88 0.78,0.98L10,12l-8.22,1.83C1.33,13.93 1,14.33 1,14.8l0.01,4.68c0,0.72 0.73,1.2 1.39,0.92l6.68,-2.86C9.59,21.19 12.71,24 16.5,24c4.14,0 7.5,-3.36 7.5,-7.5S20.64,9 16.5,9zM16.5,22c-3.03,0 -5.5,-2.47 -5.5,-5.5s2.47,-5.5 5.5,-5.5s5.5,2.47 5.5,5.5S19.53,22 16.5,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.62,14.38c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.41,1.41l-1.41,-1.41c-0.2,-0.2 -0.51,-0.2 -0.71,0s-0.2,0.51 0,0.71l1.41,1.41l-1.41,1.41c-0.2,0.2 -0.2,0.51 0,0.71c0.2,0.2 0.51,0.2 0.71,0l1.41,-1.41l1.41,1.41c0.2,0.2 0.51,0.2 0.71,0c0.2,-0.2 0.2,-0.51 0,-0.71l-1.41,-1.41l1.41,-1.41C18.82,14.89 18.82,14.57 18.62,14.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/candlestick_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/candlestick_chart.xml
deleted file mode 100644
index baa36c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/candlestick_chart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4L8,4C7.45,4 7,4.45 7,5v1H6C5.45,6 5,6.45 5,7v10c0,0.55 0.45,1 1,1h1v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1H9V5C9,4.45 8.55,4 8,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3h-1c-0.55,0 -1,0.45 -1,1v5c0,0.55 0.45,1 1,1h1v4c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-4h1c0.55,0 1,-0.45 1,-1V9C19,8.45 18.55,8 18,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/car_crash.xml b/compose/material/material/icons/generator/raw-icons/rounded/car_crash.xml
deleted file mode 100644
index a772890..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/car_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18,7c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3C17.5,3.22 17.72,3 18,3s0.5,0.22 0.5,0.5v3C18.5,6.78 18.28,7 18,7zM18.5,8.5C18.5,8.78 18.28,9 18,9s-0.5,-0.22 -0.5,-0.5S17.72,8 18,8S18.5,8.22 18.5,8.5zM19.5,20c0.82,0 1.5,-0.67 1.5,-1.5v-6.18c-1.05,0.51 -2.16,0.69 -3.09,0.68c0.06,0.16 0.09,0.33 0.09,0.5c0,0.83 -0.67,1.5 -1.5,1.5S15,14.33 15,13.5c0,-0.39 0.15,-0.74 0.39,-1.01c-1.63,-0.66 -2.96,-1.91 -3.71,-3.49H5.81l1.04,-3H11c0,-0.69 0.1,-1.37 0.29,-2H6.5C5.84,4 5.29,4.42 5.08,5.01l-1.97,5.67C3.04,10.89 3,11.11 3,11.34v7.16C3,19.33 3.67,20 4.5,20S6,19.33 6,18.5V18h12v0.5C18,19.33 18.68,20 19.5,20zM7.5,15C6.67,15 6,14.33 6,13.5S6.67,12 7.5,12S9,12.67 9,13.5S8.33,15 7.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/car_rental.xml b/compose/material/material/icons/generator/raw-icons/rounded/car_rental.xml
deleted file mode 100644
index a040829..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/car_rental.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7c1.3,0 2.41,-0.84 2.83,-2H16v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1V5h0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-7.17C10.35,1.65 8.95,0.76 7.4,1.06C6.23,1.29 5.28,2.25 5.05,3.42C4.7,5.32 6.15,7 8,7zM8,3c0.55,0 1,0.45 1,1S8.55,5 8,5S7,4.55 7,4S7.45,3 8,3zM16.39,9H7.61C7.18,9 6.8,9.28 6.66,9.68L5,14.69V21c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h10v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-6.31l-1.66,-5.01C17.2,9.28 16.82,9 16.39,9zM9,17.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,17.5 9,17.5zM15,17.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,17.5 15,17.5zM7.67,13l0.66,-2h7.34l0.66,2H7.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/car_repair.xml b/compose/material/material/icons/generator/raw-icons/rounded/car_repair.xml
deleted file mode 100644
index 83c9a88..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/car_repair.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15v-1h10v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V8.69c0,0 -1.34,-4.03 -1.56,-4.69c-0.05,-0.16 -0.12,-0.29 -0.19,-0.4c-0.02,-0.02 -0.03,-0.04 -0.05,-0.07C16.82,3.01 16.28,3 16.28,3H7.72c0,0 -0.54,0.01 -0.92,0.54C6.78,3.56 6.77,3.58 6.75,3.6C6.68,3.71 6.61,3.84 6.56,4C6.34,4.66 5,8.69 5,8.69V15c0,0.55 0.45,1 1,1h0C6.55,16 7,15.55 7,15zM9,11.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,11.5 9,11.5zM15,11.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,11.5 15,11.5zM8.33,5h7.34l0.23,0.69L16.33,7H7.67L8.33,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18.01L4,18.01C4,18.55 4.45,19 4.99,19H11v2.01c0,0.55 0.45,0.99 0.99,0.99h0.01c0.55,0 0.99,-0.45 0.99,-0.99V19h6.01c0.55,0 0.99,-0.45 0.99,-0.99v0c0,-0.55 -0.45,-0.99 -0.99,-0.99H4.99C4.45,17.01 4,17.46 4,18.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/card_giftcard.xml b/compose/material/material/icons/generator/raw-icons/rounded/card_giftcard.xml
deleted file mode 100644
index fe06dea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/card_giftcard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,9c0,-0.55 0.45,-1 1,-1h4.08L7.6,10.02c-0.33,0.45 -0.23,1.08 0.22,1.4 0.44,0.32 1.07,0.22 1.39,-0.22L12,7.4l2.79,3.8c0.32,0.44 0.95,0.54 1.39,0.22 0.45,-0.32 0.55,-0.95 0.22,-1.4L14.92,8L19,8c0.55,0 1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/card_membership.xml b/compose/material/material/icons/generator/raw-icons/rounded/card_membership.xml
deleted file mode 100644
index 13d7199..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/card_membership.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h4v5l4,-2 4,2v-5h4c1.11,0 2,-0.89 2,-2L22,4c0,-1.11 -0.89,-2 -2,-2zM20,15L4,15v-2h16v2zM20,10L4,10L4,5c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/card_travel.xml b/compose/material/material/icons/generator/raw-icons/rounded/card_travel.xml
deleted file mode 100644
index 02950aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/card_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-3L17,4c0,-1.11 -0.89,-2 -2,-2L9,2c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM9,4h6v2L9,6L9,4zM20,19L4,19v-2h16v2zM20,14L4,14L4,9c0,-0.55 0.45,-1 1,-1h2v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1L9,8h6v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1L17,8h2c0.55,0 1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/carpenter.xml b/compose/material/material/icons/generator/raw-icons/rounded/carpenter.xml
deleted file mode 100644
index e0608b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/carpenter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.73,14.23L7.71,2.21c-0.39,-0.39 -1.02,-0.39 -1.41,0L3.7,4.8C3.36,5.14 3.31,5.68 3.59,6.08l7.65,10.98c-0.78,0.78 -0.78,2.05 0,2.83l1.41,1.41c0.78,0.78 2.05,0.78 2.83,0l4.24,-4.24C20.51,16.28 20.51,15.01 19.73,14.23zM14.07,19.88l-1.41,-1.41l4.24,-4.24l1.41,1.41L14.07,19.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cases.xml b/compose/material/material/icons/generator/raw-icons/rounded/cases.xml
deleted file mode 100644
index cab7202..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cases.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V3c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2H7C5.9,5 5,5.9 5,7v9c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H18zM16,5h-4V3h4V5zM2,9L2,9c-0.55,0 -1,0.45 -1,1v10c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H3V10C3,9.45 2.55,9 2,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/casino.xml b/compose/material/material/icons/generator/raw-icons/rounded/casino.xml
deleted file mode 100644
index cd14a3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/casino.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM7.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,15 7.5,15s1.5,0.67 1.5,1.5S8.33,18 7.5,18zM7.5,9C6.67,9 6,8.33 6,7.5S6.67,6 7.5,6 9,6.67 9,7.5 8.33,9 7.5,9zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16.5,9c-0.83,0 -1.5,-0.67 -1.5,-1.5S15.67,6 16.5,6s1.5,0.67 1.5,1.5S17.33,9 16.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cast.xml b/compose/material/material/icons/generator/raw-icons/rounded/cast.xml
deleted file mode 100644
index 4f092f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1h-5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM2.14,14.09c-0.6,-0.1 -1.14,0.39 -1.14,1 0,0.49 0.36,0.9 0.85,0.98 2.08,0.36 3.72,2 4.08,4.08 0.08,0.49 0.49,0.85 0.98,0.85 0.61,0 1.09,-0.54 1,-1.14 -0.48,-2.96 -2.82,-5.29 -5.77,-5.77zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM2.1,10.05c-0.59,-0.05 -1.1,0.41 -1.1,1 0,0.51 0.38,0.94 0.88,0.99 4.27,0.41 7.67,3.81 8.08,8.08 0.05,0.5 0.48,0.87 0.99,0.87 0.6,0 1.06,-0.52 1,-1.11 -0.53,-5.19 -4.66,-9.31 -9.85,-9.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cast_connected.xml b/compose/material/material/icons/generator/raw-icons/rounded/cast_connected.xml
deleted file mode 100644
index d5dbfcd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cast_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,16L19,8c0,-0.55 -0.45,-1 -1,-1L6,7c-0.55,0 -1,0.45 -1,1v0.63c3.96,1.28 7.09,4.41 8.37,8.37L18,17c0.55,0 1,-0.45 1,-1zM21,3L3,3c-1.1,0 -2,0.9 -2,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1h-5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM1,18v3h3c0,-0.62 -0.19,-1.2 -0.51,-1.68C2.95,18.52 2.04,18 1,18zM2.14,14.09c-0.6,-0.1 -1.14,0.39 -1.14,1 0,0.49 0.36,0.9 0.85,0.98 2.08,0.36 3.72,2 4.08,4.08 0.08,0.49 0.49,0.85 0.98,0.85 0.61,0 1.09,-0.54 1,-1.14 -0.48,-2.96 -2.82,-5.29 -5.77,-5.77zM2.1,10.05c-0.59,-0.05 -1.1,0.41 -1.1,1 0,0.51 0.38,0.94 0.88,0.99 4.27,0.41 7.67,3.81 8.08,8.08 0.05,0.5 0.48,0.87 0.99,0.87 0.6,0 1.06,-0.52 1,-1.11 -0.53,-5.19 -4.66,-9.31 -9.85,-9.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cast_for_education.xml b/compose/material/material/icons/generator/raw-icons/rounded/cast_for_education.xml
deleted file mode 100644
index 7a92bd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cast_for_education.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.2,8.56l-4.22,-2.3c-0.3,-0.16 -0.66,-0.16 -0.96,0L9.8,8.56c-0.35,0.19 -0.35,0.69 0,0.88l4.22,2.3c0.3,0.16 0.66,0.16 0.96,0l4.22,-2.3c0.34,-0.19 0.34,-0.69 0,-0.88zM21,3L3,3c-1.1,0 -2,0.9 -2,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1h-5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM14.02,12.74L11,11.09v1.41c0,0.37 0.2,0.7 0.52,0.88l2.5,1.36c0.3,0.16 0.66,0.16 0.96,0l2.5,-1.36c0.32,-0.18 0.52,-0.52 0.52,-0.88v-1.41l-3.02,1.65c-0.3,0.16 -0.66,0.16 -0.96,0zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM2.14,14.09c-0.6,-0.1 -1.14,0.39 -1.14,1 0,0.49 0.36,0.9 0.85,0.98 2.08,0.36 3.72,2 4.08,4.08 0.08,0.49 0.49,0.85 0.98,0.85 0.61,0 1.09,-0.54 1,-1.14 -0.48,-2.96 -2.82,-5.29 -5.77,-5.77zM2.1,10.05c-0.59,-0.05 -1.1,0.41 -1.1,1 0,0.51 0.38,0.94 0.88,0.99 4.27,0.41 7.67,3.81 8.08,8.08 0.05,0.5 0.48,0.87 0.99,0.87 0.6,0 1.06,-0.52 1,-1.11 -0.53,-5.19 -4.66,-9.31 -9.85,-9.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/castle.xml b/compose/material/material/icons/generator/raw-icons/rounded/castle.xml
deleted file mode 100644
index a96a12e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/castle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9c-0.55,0 -1,0.45 -1,1v1h-2V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h-2V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h-2V4c0,-0.55 -0.45,-1 -1,-1S9,3.45 9,4v1H7V4c0,-0.55 -0.45,-1 -1,-1S5,3.45 5,4v7H3v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v9c0,1.1 0.9,2 2,2h7v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h7c1.1,0 2,-0.9 2,-2v-9C23,9.45 22.55,9 22,9zM11,12H9V9h2V12zM15,12h-2V9h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/catching_pokemon.xml b/compose/material/material/icons/generator/raw-icons/rounded/catching_pokemon.xml
deleted file mode 100644
index d24ae6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/catching_pokemon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12c0,1.38 -1.12,2.5 -2.5,2.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5C13.38,9.5 14.5,10.62 14.5,12zM22,12c0,5.52 -4.48,10 -10,10C6.48,22 2,17.52 2,12S6.48,2 12,2C17.52,2 22,6.48 22,12zM20,12h-4c0,-2.21 -1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4H4c0,4.41 3.59,8 8,8C16.41,20 20,16.41 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/category.xml b/compose/material/material/icons/generator/raw-icons/rounded/category.xml
deleted file mode 100644
index d866e32..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/category.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.15,3.4L7.43,9.48c-0.41,0.66 0.07,1.52 0.85,1.52h7.43c0.78,0 1.26,-0.86 0.85,-1.52L12.85,3.4c-0.39,-0.64 -1.31,-0.64 -1.7,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,17.5m-4.5,0a4.5,4.5 0,1 1,9 0a4.5,4.5 0,1 1,-9 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21.5h6c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/celebration.xml b/compose/material/material/icons/generator/raw-icons/rounded/celebration.xml
deleted file mode 100644
index 1dd73ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/celebration.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.99,21.29l9.04,-3.23c1.38,-0.49 1.78,-2.26 0.74,-3.3l-4.53,-4.53c-1.04,-1.04 -2.8,-0.64 -3.3,0.74l-3.23,9.04C2.43,20.81 3.19,21.57 3.99,21.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.06,12l5.06,-5.06c0.49,-0.49 1.28,-0.49 1.77,0L21.95,7c0.29,0.29 0.77,0.29 1.06,0l0,0c0.29,-0.29 0.29,-0.77 0,-1.06l-0.06,-0.06c-1.07,-1.07 -2.82,-1.07 -3.89,0L14,10.94c-0.29,0.29 -0.29,0.77 0,1.06l0,0C14.29,12.29 14.77,12.29 15.06,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.06,6.88L10,6.94C9.71,7.23 9.71,7.71 10,8l0,0c0.29,0.29 0.77,0.29 1.06,0l0.06,-0.06c1.07,-1.07 1.07,-2.82 0,-3.89L11.07,4C10.77,3.7 10.29,3.7 10,4l0,0c-0.29,0.29 -0.29,0.77 0,1.06l0.06,0.06C10.54,5.6 10.54,6.4 10.06,6.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.88L16,12.94c-0.29,0.29 -0.29,0.77 0,1.06l0,0c0.29,0.29 0.77,0.29 1.06,0l1.06,-1.06c0.49,-0.49 1.28,-0.49 1.77,0l1.08,1.08c0.29,0.29 0.77,0.29 1.06,0l0,0c0.29,-0.29 0.29,-0.77 0,-1.06l-1.08,-1.08C19.87,10.81 18.13,10.81 17.06,11.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.06,5.88L12,8.94c-0.29,0.29 -0.29,0.77 0,1.06l0,0c0.29,0.29 0.77,0.29 1.06,0l3.06,-3.06c1.07,-1.07 1.07,-2.82 0,-3.89l-1.06,-1.06c-0.29,-0.29 -0.77,-0.29 -1.06,0l0,0c-0.29,0.29 -0.29,0.77 0,1.06l1.06,1.06C15.54,4.6 15.54,5.4 15.06,5.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cell_tower.xml b/compose/material/material/icons/generator/raw-icons/rounded/cell_tower.xml
deleted file mode 100644
index 53a4e42..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cell_tower.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.9,14.1l0.09,-0.09c0.27,-0.27 0.32,-0.71 0.08,-1.01C7.36,12.09 7,11.01 7,10c0,-1.08 0.35,-2.16 1.04,-3.01c0.25,-0.3 0.21,-0.75 -0.07,-1.02L7.9,5.9C7.56,5.56 7,5.6 6.7,5.98C5.79,7.16 5.3,8.58 5.3,10c0,1.42 0.49,2.84 1.4,4.02C7,14.4 7.56,14.44 7.9,14.1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.51,3.49l-0.08,0.08c-0.3,0.3 -0.29,0.76 -0.03,1.08c1.26,1.53 1.9,3.48 1.9,5.35c0,1.87 -0.63,3.81 -1.9,5.35c-0.28,0.33 -0.23,0.83 0.08,1.14v0c0.35,0.35 0.93,0.31 1.24,-0.07C21.29,14.54 22,12.31 22,10c0,-2.32 -0.79,-4.55 -2.31,-6.43C19.39,3.2 18.84,3.16 18.51,3.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.57,3.57L5.49,3.49C5.16,3.16 4.61,3.2 4.31,3.57C2.79,5.45 2,7.68 2,10c0,2.32 0.79,4.55 2.31,6.43c0.3,0.37 0.85,0.42 1.18,0.08l0.08,-0.08c0.3,-0.3 0.29,-0.76 0.03,-1.08C4.33,13.81 3.7,11.87 3.7,10c0,-1.87 0.63,-3.81 1.9,-5.35C5.86,4.33 5.87,3.87 5.57,3.57z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.07,14.07c0.36,0.36 0.95,0.32 1.26,-0.09c0.9,-1.18 1.37,-2.58 1.37,-3.98c-0.08,-1.41 -0.51,-2.83 -1.4,-4.01c-0.29,-0.39 -0.86,-0.43 -1.2,-0.09l-0.08,0.08c-0.27,0.27 -0.32,0.71 -0.08,1.01C16.64,7.91 17,8.99 17,10c0,1.07 -0.34,2.13 -1.01,2.98C15.73,13.3 15.77,13.77 16.07,14.07L16.07,14.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10c0,-1.6 -1.51,-2.85 -3.18,-2.41c-0.8,0.21 -1.46,0.85 -1.7,1.65c-0.32,1.06 0.06,2.04 0.76,2.64l-2.96,8.87C7.21,21.37 7.67,22 8.32,22h0c0.41,0 0.77,-0.26 0.9,-0.65L9.67,20h4.67l0.45,1.35c0.13,0.39 0.49,0.65 0.9,0.65h0c0.65,0 1.1,-0.63 0.9,-1.25l-2.96,-8.87C14.16,11.42 14.5,10.76 14.5,10zM10.33,18L12,13l1.67,5H10.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cell_wifi.xml b/compose/material/material/icons/generator/raw-icons/rounded/cell_wifi.xml
deleted file mode 100644
index 128126f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cell_wifi.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.29,7.68L7.7,20.29C7.07,20.92 7.52,22 8.41,22H21c0.55,0 1,-0.45 1,-1V8.39C22,7.5 20.92,7.05 20.29,7.68zM20,20h-2v-7.22l2,-2V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.61,10.68c-0.28,0.17 -0.32,0.56 -0.09,0.79l0.82,0.82c0.39,0.39 1.02,0.39 1.41,0l0.82,-0.82c0.23,-0.23 0.18,-0.62 -0.09,-0.79C11.61,10.14 10.49,10.14 9.61,10.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.42,9.3c1.57,-1.12 3.7,-1.12 5.27,0c0.36,0.26 0.85,0.22 1.16,-0.1c0.39,-0.39 0.35,-1.06 -0.1,-1.38c-2.2,-1.57 -5.19,-1.57 -7.4,0C6.9,8.14 6.85,8.81 7.25,9.2C7.57,9.52 8.06,9.56 8.42,9.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.26,6.69c0.34,0.28 0.83,0.28 1.14,-0.03l0.12,-0.12c0.35,-0.35 0.31,-0.92 -0.08,-1.24c-3.67,-3.05 -9.02,-3.07 -12.7,-0.06C4.31,5.59 4.27,6.23 4.66,6.61C4.98,6.94 5.5,6.98 5.85,6.69C8.86,4.21 13.25,4.21 16.26,6.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/center_focus_strong.xml b/compose/material/material/icons/generator/raw-icons/rounded/center_focus_strong.xml
deleted file mode 100644
index b315e0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/center_focus_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM4,15c-0.55,0 -1,0.45 -1,1v3c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,19c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 -0.45,-1 -1,-1zM5,6c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,3c-1.1,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L5,6zM19,3h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2c0.55,0 1,0.45 1,1v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L21,5c0,-1.1 -0.9,-2 -2,-2zM19,18c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/center_focus_weak.xml b/compose/material/material/icons/generator/raw-icons/rounded/center_focus_weak.xml
deleted file mode 100644
index caea996..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/center_focus_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15c-0.55,0 -1,0.45 -1,1v3c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,19c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 -0.45,-1 -1,-1zM5,6c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,3c-1.1,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L5,6zM19,3h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2c0.55,0 1,0.45 1,1v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L21,5c0,-1.1 -0.9,-2 -2,-2zM19,18c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chair.xml b/compose/material/material/icons/generator/raw-icons/rounded/chair.xml
deleted file mode 100644
index b78a9f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chair.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9c-1.1,0 -2,0.9 -2,2v4H5v-4c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v5c0,1.65 1.35,3 3,3v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1c1.65,0 3,-1.35 3,-3v-5C23,9.9 22.1,9 21,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11v2h10v-2c0,-1.86 1.28,-3.41 3,-3.86V6c0,-1.65 -1.35,-3 -3,-3H7C5.35,3 4,4.35 4,6v1.14C5.72,7.59 7,9.14 7,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chair_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/chair_alt.xml
deleted file mode 100644
index 5b1c1d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chair_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v3c0,1.1 0.9,2 2,2h1v2H7c-1.1,0 -2,0.9 -2,2v6c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h10v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-6c0,-1.1 -0.9,-2 -2,-2h-1v-2H17zM7,8V5h10v3H7zM17,16H7v-2h10V16zM14,12h-4v-2h4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chalet.xml b/compose/material/material/icons/generator/raw-icons/rounded/chalet.xml
deleted file mode 100644
index a0a4a4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chalet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15c-0.55,0 -1,0.45 -1,1v4H6c-0.55,0 -1,-0.45 -1,-1v-3.67l-0.38,0.38c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l6.09,-6.09c0.39,-0.39 1.02,-0.39 1.41,0l6.09,6.09c0.39,0.39 0.39,1.02 0,1.41v0c-0.39,0.39 -1.02,0.39 -1.41,0L15,15.33V19c0,0.55 -0.45,1 -1,1h-3v-4C11,15.45 10.55,15 10,15zM17.5,7.5v0.89l-1.08,1.08c-0.18,0.18 -0.21,0.48 -0.05,0.69c0.19,0.23 0.53,0.24 0.74,0.04l0.39,-0.39v0.69c0,0.28 0.22,0.5 0.5,0.5h0c0.28,0 0.5,-0.22 0.5,-0.5V9.81l0.39,0.39c0.21,0.21 0.55,0.19 0.74,-0.04c0.17,-0.2 0.14,-0.5 -0.05,-0.69L18.5,8.39c0,0 0,-0.89 0,-0.89h0.89l1.08,1.08c0.18,0.18 0.48,0.21 0.69,0.05c0.23,-0.19 0.24,-0.53 0.04,-0.74L20.81,7.5h0.69C21.78,7.5 22,7.28 22,7v0c0,-0.28 -0.22,-0.5 -0.5,-0.5l-0.69,0l0.39,-0.39c0.21,-0.21 0.19,-0.55 -0.04,-0.74c-0.2,-0.17 -0.5,-0.14 -0.69,0.05L19.39,6.5c0,0 -0.89,0 -0.89,0V5.61l1.08,-1.08c0.18,-0.18 0.21,-0.48 0.05,-0.69c-0.19,-0.23 -0.53,-0.24 -0.74,-0.04L18.5,4.19V3.5C18.5,3.22 18.28,3 18,3h0c-0.28,0 -0.5,0.22 -0.5,0.5v0.69L17.11,3.8c-0.21,-0.21 -0.55,-0.19 -0.74,0.04c-0.17,0.2 -0.14,0.5 0.05,0.69l1.08,1.08c0,0 0,0.89 0,0.89h-0.89l-1.08,-1.08c-0.18,-0.18 -0.48,-0.21 -0.69,-0.05c-0.23,0.19 -0.24,0.53 -0.04,0.74l0.39,0.39H14.5C14.22,6.5 14,6.72 14,7v0c0,0.28 0.22,0.5 0.5,0.5l0.69,0L14.8,7.89c-0.21,0.21 -0.19,0.55 0.04,0.74c0.2,0.17 0.5,0.14 0.69,-0.05l1.08,-1.08C16.61,7.5 17.5,7.5 17.5,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/change_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/change_circle.xml
deleted file mode 100644
index 9bf2878..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/change_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12.91,18.15c-0.31,0.31 -0.85,0.09 -0.85,-0.35v-0.8c-0.02,0 -0.04,0 -0.06,0c-1.28,0 -2.56,-0.49 -3.54,-1.46c-1.43,-1.43 -1.81,-3.52 -1.14,-5.3c0.19,-0.51 0.86,-0.64 1.24,-0.25l0,0c0.22,0.22 0.27,0.54 0.17,0.82c-0.46,1.24 -0.2,2.68 0.8,3.68c0.7,0.7 1.62,1.03 2.54,1.01v-0.94c0,-0.45 0.54,-0.67 0.85,-0.35l1.62,1.62c0.2,0.2 0.2,0.51 0,0.71L12.91,18.15zM15.44,14.02L15.44,14.02c-0.22,-0.22 -0.27,-0.54 -0.17,-0.82c0.46,-1.24 0.2,-2.68 -0.8,-3.68c-0.7,-0.7 -1.62,-1.04 -2.53,-1.02c0,0 0,0 0,0v0.94c0,0.45 -0.54,0.67 -0.85,0.35L9.46,8.18c-0.2,-0.2 -0.2,-0.51 0,-0.71l1.62,-1.62c0.31,-0.31 0.85,-0.09 0.85,0.35v0.81c1.3,-0.02 2.61,0.45 3.6,1.45c1.43,1.43 1.81,3.52 1.14,5.3C16.48,14.28 15.82,14.41 15.44,14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/change_history.xml b/compose/material/material/icons/generator/raw-icons/rounded/change_history.xml
deleted file mode 100644
index 4c38459..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/change_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.77L18.39,18H5.61L12,7.77m-0.85,-2.41l-8.2,13.11c-0.41,0.67 0.07,1.53 0.85,1.53h16.4c0.79,0 1.26,-0.86 0.85,-1.53l-8.2,-13.11c-0.39,-0.63 -1.31,-0.63 -1.7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/charging_station.xml b/compose/material/material/icons/generator/raw-icons/rounded/charging_station.xml
deleted file mode 100644
index 5041570..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/charging_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18zM12.5,11V9.12c0,-0.53 -0.71,-0.7 -0.95,-0.22l-1.69,3.38C9.7,12.61 9.94,13 10.31,13h1.19v1.88c0,0.53 0.71,0.7 0.95,0.22l1.69,-3.38C14.3,11.39 14.06,11 13.69,11H12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chat.xml b/compose/material/material/icons/generator/raw-icons/rounded/chat.xml
deleted file mode 100644
index 6e863bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM7,9h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1L7,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM13,14L7,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,8L7,8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chat_bubble.xml b/compose/material/material/icons/generator/raw-icons/rounded/chat_bubble.xml
deleted file mode 100644
index c91a7ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chat_bubble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chat_bubble_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/chat_bubble_outline.xml
deleted file mode 100644
index 0d0ab16..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chat_bubble_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v12H5.17L4,17.17V4H20M20,2H4C2.9,2 2,2.9 2,4v15.59c0,0.89 1.08,1.34 1.71,0.71L6,18h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2L20,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/check.xml b/compose/material/material/icons/generator/raw-icons/rounded/check.xml
deleted file mode 100644
index d8372f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.17L5.53,12.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l4.18,4.18c0.39,0.39 1.02,0.39 1.41,0L20.29,7.71c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0L9,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/check_box.xml b/compose/material/material/icons/generator/raw-icons/rounded/check_box.xml
deleted file mode 100644
index d1e7de1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM10.71,16.29c-0.39,0.39 -1.02,0.39 -1.41,0L5.71,12.7c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L10,14.17l6.88,-6.88c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-7.58,7.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/check_box_outline_blank.xml b/compose/material/material/icons/generator/raw-icons/rounded/check_box_outline_blank.xml
deleted file mode 100644
index 66a0af0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/check_box_outline_blank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/check_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/check_circle.xml
deleted file mode 100644
index 1f3ee6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM9.29,16.29L5.7,12.7c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L10,14.17l6.88,-6.88c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-7.59,7.59c-0.38,0.39 -1.02,0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/check_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/check_circle_outline.xml
deleted file mode 100644
index 750def4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/check_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15.88,8.29L10,14.17l-1.88,-1.88c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l2.59,2.59c0.39,0.39 1.02,0.39 1.41,0L17.3,9.7c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.03,-0.39 -1.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/checklist.xml b/compose/material/material/icons/generator/raw-icons/rounded/checklist.xml
deleted file mode 100644
index 7e6900e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/checklist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8c0,-0.55 -0.45,-1 -1,-1h-7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h7C21.55,9 22,8.55 22,8zM13,16c0,0.55 0.45,1 1,1h7c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-7C13.45,15 13,15.45 13,16zM10.47,4.63c0.39,0.39 0.39,1.02 0,1.41l-4.23,4.25c-0.39,0.39 -1.02,0.39 -1.42,0L2.7,8.16c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l1.42,1.42l3.54,-3.54C9.45,4.25 10.09,4.25 10.47,4.63zM10.48,12.64c0.39,0.39 0.39,1.02 0,1.41l-4.23,4.25c-0.39,0.39 -1.02,0.39 -1.42,0L2.7,16.16c-0.39,-0.39 -0.39,-1.02 0,-1.41s1.02,-0.39 1.41,0l1.42,1.42l3.54,-3.54C9.45,12.25 10.09,12.25 10.48,12.64L10.48,12.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/checklist_rtl.xml b/compose/material/material/icons/generator/raw-icons/rounded/checklist_rtl.xml
deleted file mode 100644
index 74735f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/checklist_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8c0,-0.55 -0.45,-1 -1,-1H3C2.45,7 2,7.45 2,8s0.45,1 1,1h7C10.55,9 11,8.55 11,8zM11,16c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h7C10.55,17 11,16.55 11,16zM17.05,10.29c-0.39,0.39 -1.02,0.39 -1.41,0l-2.12,-2.12c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L17.05,10.29zM17.05,18.29c-0.39,0.39 -1.02,0.39 -1.41,0l-2.12,-2.12c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L17.05,18.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/checkroom.xml b/compose/material/material/icons/generator/raw-icons/rounded/checkroom.xml
deleted file mode 100644
index 15350d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/checkroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.6,18.2L13,11.75v-0.91c1.65,-0.49 2.8,-2.17 2.43,-4.05c-0.26,-1.31 -1.3,-2.4 -2.61,-2.7c-1.76,-0.4 -3.37,0.53 -4.02,1.98C8.5,6.74 8.98,7.5 9.71,7.5h0c0.39,0 0.75,-0.22 0.9,-0.57C10.84,6.38 11.37,6 12,6c0.83,0 1.5,0.67 1.5,1.5c0,0.84 -0.69,1.52 -1.53,1.5C11.43,8.99 11,9.45 11,9.99l0,1.76L2.4,18.2C1.63,18.78 2.04,20 3,20h9h9C21.96,20 22.37,18.78 21.6,18.2zM6,18l6,-4.5l6,4.5H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chevron_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/chevron_left.xml
deleted file mode 100644
index 19d7e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chevron_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.71,6.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.71,11.3c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L10.83,12l3.88,-3.88c0.39,-0.39 0.38,-1.03 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chevron_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/chevron_right.xml
deleted file mode 100644
index 005a561..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chevron_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.29,6.71c-0.39,0.39 -0.39,1.02 0,1.41L13.17,12l-3.88,3.88c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41L10.7,6.7c-0.38,-0.38 -1.02,-0.38 -1.41,0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/child_care.xml b/compose/material/material/icons/generator/raw-icons/rounded/child_care.xml
deleted file mode 100644
index f3f1390..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/child_care.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.1,14L7.9,14c-0.19,0 -0.32,0.2 -0.23,0.37C8.5,15.94 10.13,17 12,17s3.5,-1.06 4.33,-2.63c0.08,-0.17 -0.05,-0.37 -0.23,-0.37zM22.94,11.34c-0.25,-1.51 -1.36,-2.74 -2.81,-3.17 -0.53,-1.12 -1.28,-2.1 -2.19,-2.91C16.36,3.85 14.28,3 12,3s-4.36,0.85 -5.94,2.26c-0.92,0.81 -1.67,1.8 -2.19,2.91 -1.45,0.43 -2.56,1.65 -2.81,3.17 -0.04,0.21 -0.06,0.43 -0.06,0.66 0,0.23 0.02,0.45 0.06,0.66 0.25,1.51 1.36,2.74 2.81,3.17 0.52,1.11 1.27,2.09 2.17,2.89C7.62,20.14 9.71,21 12,21s4.38,-0.86 5.97,-2.28c0.9,-0.8 1.65,-1.79 2.17,-2.89 1.44,-0.43 2.55,-1.65 2.8,-3.17 0.04,-0.21 0.06,-0.43 0.06,-0.66 0,-0.23 -0.02,-0.45 -0.06,-0.66zM19,14c-0.1,0 -0.19,-0.02 -0.29,-0.03 -0.2,0.67 -0.49,1.29 -0.86,1.86C16.6,17.74 14.45,19 12,19s-4.6,-1.26 -5.85,-3.17c-0.37,-0.57 -0.66,-1.19 -0.86,-1.86 -0.1,0.01 -0.19,0.03 -0.29,0.03 -1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2c0.1,0 0.19,0.02 0.29,0.03 0.2,-0.67 0.49,-1.29 0.86,-1.86C7.4,6.26 9.55,5 12,5s4.6,1.26 5.85,3.17c0.37,0.57 0.66,1.19 0.86,1.86 0.1,-0.01 0.19,-0.03 0.29,-0.03 1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/child_friendly.xml b/compose/material/material/icons/generator/raw-icons/rounded/child_friendly.xml
deleted file mode 100644
index 81ecfbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/child_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3.08L13,10h8c0,-4.03 -2.98,-7.37 -6.86,-7.92 -0.6,-0.09 -1.14,0.39 -1.14,1zM19.32,15.89C20.37,14.54 21,12.84 21,11L6.44,11l-0.68,-1.43C5.6,9.22 5.24,9 4.86,9L3,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.22s1.89,4.07 2.12,4.42c-1.33,0.71 -2.14,2.27 -1.74,3.94 0.3,1.26 1.34,2.27 2.6,2.55 2.1,0.46 3.98,-0.96 4.25,-2.91h2.08c0.27,1.94 2.14,3.36 4.22,2.92 1.27,-0.27 2.31,-1.27 2.63,-2.53 0.35,-1.39 -0.14,-2.68 -1.06,-3.5zM8,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.17,17 8,17s1.5,0.67 1.5,1.5S8.83,20 8,20zM17,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.17,17 17,17s1.5,0.67 1.5,1.5S17.83,20 17,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/chrome_reader_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/chrome_reader_mode.xml
deleted file mode 100644
index eb50835..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/chrome_reader_mode.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM21,18c0,0.55 -0.45,1 -1,1h-8L12,6h8c0.55,0 1,0.45 1,1v11zM19.25,9.5h-5.5c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75h5.5c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75zM19.25,12h-5.5c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75h5.5c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75zM19.25,14.5h-5.5c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75h5.5c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/church.xml b/compose/material/material/icons/generator/raw-icons/rounded/church.xml
deleted file mode 100644
index 51d2b6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/church.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12.22v-1.99c0,-0.76 -0.43,-1.45 -1.11,-1.79L13,6.5V5h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1V2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-1C9.45,3 9,3.45 9,4v0c0,0.55 0.45,1 1,1h1v1.5L7.11,8.45C6.43,8.79 6,9.48 6,10.24v1.99l-2.81,1.25C2.47,13.79 2,14.51 2,15.3V20c0,1.1 0.9,2 2,2h6l0,-2.89c0,-1 0.68,-1.92 1.66,-2.08C12.92,16.82 14,17.79 14,19v3h6c1.1,0 2,-0.9 2,-2v-4.7c0,-0.79 -0.47,-1.51 -1.19,-1.83L18,12.22zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,13.5 12,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/circle.xml
deleted file mode 100644
index debf64f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10s10,-4.47 10,-10S17.53,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/circle_notifications.xml b/compose/material/material/icons/generator/raw-icons/rounded/circle_notifications.xml
deleted file mode 100644
index 297ba73..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/circle_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C13.5,17.83 12.83,18.5 12,18.5zM16,16H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1l0,-3c0,-1.86 1.28,-3.41 3,-3.86V6.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v0.64c1.72,0.45 3,2 3,3.86l0,3c0.55,0 1,0.45 1,1v0C17,15.55 16.55,16 16,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/class.xml b/compose/material/material/icons/generator/raw-icons/rounded/class.xml
deleted file mode 100644
index 4a4cbea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2zM6,4h5v8l-2.5,-1.5L6,12V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/clean_hands.xml b/compose/material/material/icons/generator/raw-icons/rounded/clean_hands.xml
deleted file mode 100644
index e830313..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/clean_hands.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.99,7l1.37,-0.63L16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63,-1.37L14.99,7zM20,14c1.1,0 2,-0.9 2,-2c0,-0.78 -0.99,-2.44 -1.58,-3.36c-0.2,-0.31 -0.64,-0.31 -0.84,0C18.99,9.56 18,11.22 18,12C18,13.1 18.9,14 20,14zM9.24,9.5L15,11.65V11c0,-2.42 -1.72,-4.44 -4,-4.9V4h2c0.35,0 0.68,0.06 1,0.18c0.37,0.13 0.78,0.05 1.05,-0.22l0,0c0.51,-0.51 0.34,-1.39 -0.33,-1.64C14.19,2.11 13.61,2 13,2H8.5c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1H9v2.11C7.22,6.48 5.8,7.79 5.25,9.5H9.24zM3,11L3,11c-1.1,0 -2,0.9 -2,2v7c0,1.1 0.9,2 2,2h0c1.1,0 2,-0.9 2,-2v-7C5,11.9 4.1,11 3,11zM19.99,17h-6.83c-0.11,0 -0.22,-0.02 -0.33,-0.06l-1.47,-0.51c-0.26,-0.09 -0.39,-0.37 -0.3,-0.63l0,0c0.09,-0.26 0.38,-0.4 0.64,-0.3l1.12,0.43c0.11,0.04 0.24,0.07 0.36,0.07h2.63c0.65,0 1.18,-0.53 1.18,-1.18v0c0,-0.49 -0.31,-0.93 -0.77,-1.11L9.3,11.13C9.08,11.04 8.84,11 8.6,11H7v9.02l6.37,1.81c0.41,0.12 0.85,0.1 1.25,-0.05L22,19l0,0C22,17.89 21.1,17 19.99,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cleaning_services.xml b/compose/material/material/icons/generator/raw-icons/rounded/cleaning_services.xml
deleted file mode 100644
index 7d8966e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cleaning_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h-1V4c0,-1.66 -1.34,-3 -3,-3h0c-1.66,0 -3,1.34 -3,3v7H8c-2.76,0 -5,2.24 -5,5v5c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5C21,13.24 18.76,11 16,11zM19,21h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H9v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H5v-5c0,-1.65 1.35,-3 3,-3h8c1.65,0 3,1.35 3,3V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/clear.xml b/compose/material/material/icons/generator/raw-icons/rounded/clear.xml
deleted file mode 100644
index 57511cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.3,5.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,10.59 7.11,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L10.59,12 5.7,16.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,13.41l4.89,4.89c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L13.41,12l4.89,-4.89c0.38,-0.38 0.38,-1.02 0,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/clear_all.xml b/compose/material/material/icons/generator/raw-icons/rounded/clear_all.xml
deleted file mode 100644
index b107039..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/clear_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,17h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,8c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,7c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/close.xml b/compose/material/material/icons/generator/raw-icons/rounded/close.xml
deleted file mode 100644
index 57511cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/close.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.3,5.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,10.59 7.11,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L10.59,12 5.7,16.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,13.41l4.89,4.89c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L13.41,12l4.89,-4.89c0.38,-0.38 0.38,-1.02 0,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/close_fullscreen.xml b/compose/material/material/icons/generator/raw-icons/rounded/close_fullscreen.xml
deleted file mode 100644
index 1df1222..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/close_fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,4.12l-4.59,4.59l1.59,1.59c0.63,0.63 0.18,1.71 -0.71,1.71H13c-0.55,0 -1,-0.45 -1,-1V6.41c0,-0.89 1.08,-1.34 1.71,-0.71l1.59,1.59l4.59,-4.59c0.39,-0.39 1.02,-0.39 1.41,0v0C21.68,3.1 21.68,3.73 21.29,4.12zM4.12,21.29l4.59,-4.59l1.59,1.59c0.63,0.63 1.71,0.18 1.71,-0.71V13c0,-0.55 -0.45,-1 -1,-1H6.41c-0.89,0 -1.34,1.08 -0.71,1.71l1.59,1.59l-4.59,4.59c-0.39,0.39 -0.39,1.02 0,1.41l0,0C3.1,21.68 3.73,21.68 4.12,21.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/closed_caption.xml b/compose/material/material/icons/generator/raw-icons/rounded/closed_caption.xml
deleted file mode 100644
index 0c564e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/closed_caption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM11,10.5c0,0.28 -0.22,0.5 -0.5,0.5L10,11c-0.28,0 -0.5,-0.22 -0.5,-0.5h-2v3h2c0,-0.28 0.22,-0.5 0.5,-0.5h0.5c0.28,0 0.5,0.22 0.5,0.5v0.5c0,0.55 -0.45,1 -1,1L7,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v0.5zM18,10.5c0,0.28 -0.22,0.5 -0.5,0.5L17,11c-0.28,0 -0.5,-0.22 -0.5,-0.5h-2v3h2c0,-0.28 0.22,-0.5 0.5,-0.5h0.5c0.28,0 0.5,0.22 0.5,0.5v0.5c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/closed_caption_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/closed_caption_disabled.xml
deleted file mode 100644
index 6aae657..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/closed_caption_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H19c1.1,0 2,0.9 2,2v12c0,0.05 -0.01,0.1 -0.02,0.16l-3.38,-3.38C17.84,14.59 18,14.32 18,14v-0.5c0,-0.28 -0.22,-0.5 -0.5,-0.5H17c-0.28,0 -0.5,0.22 -0.5,0.5h-0.17l-1.83,-1.83V10.5h2c0,0.28 0.22,0.5 0.5,0.5h0.5c0.28,0 0.5,-0.22 0.5,-0.5V10c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v0.17L6.83,4zM20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-1.9,-1.9H5c-1.11,0 -2,-0.9 -2,-2V6c0,-0.05 0.02,-0.1 0.02,-0.15L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9zM11,13.83L10.17,13H10c-0.28,0 -0.5,0.22 -0.5,0.5h-2v-3h0.17L6.4,9.22C6.16,9.41 6,9.68 6,10v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1V13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/closed_caption_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/closed_caption_off.xml
deleted file mode 100644
index 3127efa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/closed_caption_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.89,4 3,4.9 3,6v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM11,10.5c0,0.28 -0.22,0.5 -0.5,0.5H10c-0.28,0 -0.5,-0.22 -0.5,-0.5h-2v3h2c0,-0.28 0.22,-0.5 0.5,-0.5h0.5c0.28,0 0.5,0.22 0.5,0.5V14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V10.5zM18,10.5c0,0.28 -0.22,0.5 -0.5,0.5H17c-0.28,0 -0.5,-0.22 -0.5,-0.5h-2v3h2c0,-0.28 0.22,-0.5 0.5,-0.5h0.5c0.28,0 0.5,0.22 0.5,0.5V14c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud.xml
deleted file mode 100644
index 6f2f5cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud_circle.xml
deleted file mode 100644
index feaa819..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM16.5,16L8,16c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3h0.14c0.44,-1.73 1.99,-3 3.86,-3 2.21,0 4,1.79 4,4h0.5c1.38,0 2.5,1.12 2.5,2.5S17.88,16 16.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud_done.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud_done.xml
deleted file mode 100644
index 1fd8d8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM10.71,16.29c-0.39,0.39 -1.02,0.39 -1.41,0L7.2,14.2c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L10,14.18l4.48,-4.48c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-5.18,5.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud_download.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud_download.xml
deleted file mode 100644
index 7e25c04..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM17,13l-4.65,4.65c-0.2,0.2 -0.51,0.2 -0.71,0L7,13h3V9h4v4h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud_off.xml
deleted file mode 100644
index 76cace1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,15c0,-2.64 -2.05,-4.78 -4.65,-4.96C18.67,6.59 15.64,4 12,4c-1.33,0 -2.57,0.36 -3.65,0.97l1.49,1.49C10.51,6.17 11.23,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3 0,0.99 -0.48,1.85 -1.21,2.4l1.41,1.41c1.09,-0.92 1.8,-2.27 1.8,-3.81zM3.71,4.56c-0.39,0.39 -0.39,1.02 0,1.41l2.06,2.06h-0.42c-3.28,0.35 -5.76,3.34 -5.29,6.79C0.46,17.84 3.19,20 6.22,20h11.51l1.29,1.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.12,4.56c-0.39,-0.39 -1.02,-0.39 -1.41,0zM6,18c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h1.73l8,8H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud_queue.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud_queue.xml
deleted file mode 100644
index 8f71d61..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h0.71C7.37,7.69 9.48,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3s-1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud_sync.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud_sync.xml
deleted file mode 100644
index 2effe76..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud_sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,17.48c0,1.38 -1.12,2.5 -2.5,2.5L15,20c-1.66,0 -3,-1.34 -3,-3c0,-1.6 1.26,-2.9 2.84,-2.98C15.4,12.83 16.6,12 18,12c1.76,0 3.2,1.3 3.45,2.99c0.02,0 0.03,-0.01 0.05,-0.01C22.88,14.98 24,16.1 24,17.48zM10,15c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1.44c-1.22,-1.1 -2,-2.67 -2,-4.44c0,-2.38 1.39,-4.43 3.4,-5.4C9.77,6.42 10,6.04 10,5.63c0,-0.71 -0.73,-1.18 -1.37,-0.88C5.89,6.03 4,8.79 4,12c0,2.4 1.06,4.54 2.73,6H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V15zM19,6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7.56c0.98,0.89 1.68,2.08 1.92,3.44l2.02,0c-0.25,-1.99 -1.23,-3.74 -2.66,-5H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cloud_upload.xml b/compose/material/material/icons/generator/raw-icons/rounded/cloud_upload.xml
deleted file mode 100644
index 775e18c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cloud_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM14,13v4h-4v-4H7l4.65,-4.65c0.2,-0.2 0.51,-0.2 0.71,0L17,13h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/co2.xml b/compose/material/material/icons/generator/raw-icons/rounded/co2.xml
deleted file mode 100644
index 362f287..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/co2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-4C15,9.45 14.55,9 14,9zM13.5,13.5h-2v-3h2V13.5zM20.5,15.5h-2v1h2.25c0.41,0 0.75,0.34 0.75,0.75l0,0c0,0.41 -0.34,0.75 -0.75,0.75H18c-0.55,0 -1,-0.45 -1,-1v-1.5c0,-0.55 0.45,-1 1,-1h2v-1h-2.25c-0.41,0 -0.75,-0.34 -0.75,-0.75v0c0,-0.41 0.34,-0.75 0.75,-0.75h2.75c0.55,0 1,0.45 1,1v1.5C21.5,15.05 21.05,15.5 20.5,15.5zM8,14c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v0.25C8,10.66 7.66,11 7.25,11c-0.33,0 -0.6,-0.21 -0.71,-0.5c0,0 -2.04,0 -2.04,0v3l2.04,0c0.1,-0.29 0.38,-0.5 0.71,-0.5C7.66,13 8,13.34 8,13.75V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/co_present.xml b/compose/material/material/icons/generator/raw-icons/rounded/co_present.xml
deleted file mode 100644
index 3371488..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/co_present.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v8h2V5h18v16c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,16.56C13.71,15.7 11.53,15 9,15c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,17.07 1,18.1 1,19.22V22h16v-2.78C17,18.1 16.39,17.07 15.39,16.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/code.xml b/compose/material/material/icons/generator/raw-icons/rounded/code.xml
deleted file mode 100644
index 14302a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/code.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.7,15.9L4.8,12l3.9,-3.9c0.39,-0.39 0.39,-1.01 0,-1.4 -0.39,-0.39 -1.01,-0.39 -1.4,0l-4.59,4.59c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.6c0.39,0.39 1.01,0.39 1.4,0 0.39,-0.39 0.39,-1.01 0,-1.4zM15.3,15.9l3.9,-3.9 -3.9,-3.9c-0.39,-0.39 -0.39,-1.01 0,-1.4 0.39,-0.39 1.01,-0.39 1.4,0l4.59,4.59c0.39,0.39 0.39,1.02 0,1.41l-4.59,4.6c-0.39,0.39 -1.01,0.39 -1.4,0 -0.39,-0.39 -0.39,-1.01 0,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/code_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/code_off.xml
deleted file mode 100644
index 376e3852..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/code_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.17,12l-3.88,-3.88c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l4.59,4.59c0.39,0.39 0.39,1.02 0,1.41l-2.88,2.88L17,14.17L19.17,12zM2.1,4.93l3.49,3.49l-2.88,2.88c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L4.83,12L7,9.83L19.07,21.9c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C1.71,3.91 1.71,4.54 2.1,4.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/coffee.xml b/compose/material/material/icons/generator/raw-icons/rounded/coffee.xml
deleted file mode 100644
index 3b2d07c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/coffee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,3H6C4.9,3 4,3.9 4,5v5.71c0,3.83 2.95,7.18 6.78,7.29c3.96,0.12 7.22,-3.06 7.22,-7v-1h0.5c1.93,0 3.5,-1.57 3.5,-3.5S20.43,3 18.5,3zM16,5v3H6V5H16zM18.5,8H18V5h0.5C19.33,5 20,5.67 20,6.5S19.33,8 18.5,8zM5,19h14c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1v0C4,19.45 4.45,19 5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/coffee_maker.xml b/compose/material/material/icons/generator/raw-icons/rounded/coffee_maker.xml
deleted file mode 100644
index b9bbdd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/coffee_maker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6V4h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-3.03C17.2,19.09 18,17.64 18,16v-3c0,-1.1 -0.9,-2 -2,-2h-6c-1.1,0 -2,0.9 -2,2v3c0,1.64 0.81,3.09 2.03,4H6V4h2v2c0,0.55 0.45,1 1,1h8C17.55,7 18,6.55 18,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/collections.xml b/compose/material/material/icons/generator/raw-icons/rounded/collections.xml
deleted file mode 100644
index 6690de0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/collections.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zM11.4,12.53l1.63,2.18 2.58,-3.22c0.2,-0.25 0.58,-0.25 0.78,0l2.96,3.7c0.26,0.33 0.03,0.81 -0.39,0.81L9,16c-0.41,0 -0.65,-0.47 -0.4,-0.8l2,-2.67c0.2,-0.26 0.6,-0.26 0.8,0zM2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/collections_bookmark.xml b/compose/material/material/icons/generator/raw-icons/rounded/collections_bookmark.xml
deleted file mode 100644
index 6109c4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/collections_bookmark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,12l-2.5,-1.5L15,12L15,4h5v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/color_lens.xml b/compose/material/material/icons/generator/raw-icons/rounded/color_lens.xml
deleted file mode 100644
index 4bf1550..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/color_lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.39 -0.15,-0.74 -0.39,-1.01 -0.23,-0.26 -0.38,-0.61 -0.38,-0.99 0,-0.83 0.67,-1.5 1.5,-1.5L16,16c2.76,0 5,-2.24 5,-5 0,-4.42 -4.03,-8 -9,-8zM6.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,9 6.5,9 8,9.67 8,10.5 7.33,12 6.5,12zM9.5,8C8.67,8 8,7.33 8,6.5S8.67,5 9.5,5s1.5,0.67 1.5,1.5S10.33,8 9.5,8zM14.5,8c-0.83,0 -1.5,-0.67 -1.5,-1.5S13.67,5 14.5,5s1.5,0.67 1.5,1.5S15.33,8 14.5,8zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/colorize.xml b/compose/material/material/icons/generator/raw-icons/rounded/colorize.xml
deleted file mode 100644
index 3cbf6d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/colorize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.12,3.12 -1.23,-1.21c-0.39,-0.39 -1.02,-0.38 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l0.72,0.72 -8.77,8.77c-0.1,0.1 -0.15,0.22 -0.15,0.36v4.04c0,0.28 0.22,0.5 0.5,0.5h4.04c0.13,0 0.26,-0.05 0.35,-0.15l8.77,-8.77 0.72,0.72c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41l-1.22,-1.22 3.12,-3.12c0.41,-0.4 0.41,-1.03 0.02,-1.42zM6.92,19L5,17.08l8.06,-8.06 1.92,1.92L6.92,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/comment.xml b/compose/material/material/icons/generator/raw-icons/rounded/comment.xml
deleted file mode 100644
index e567d1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18zM17,14L7,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,11L7,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,8L7,8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/comment_bank.xml b/compose/material/material/icons/generator/raw-icons/rounded/comment_bank.xml
deleted file mode 100644
index 786cb7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/comment_bank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v15.59c0,0.89 1.08,1.34 1.71,0.71L6,18h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM18.24,11.55L16.5,10.5l-1.74,1.05c-0.33,0.2 -0.76,-0.04 -0.76,-0.43V4h5v7.12C19,11.51 18.58,11.75 18.24,11.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/comments_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/comments_disabled.xml
deleted file mode 100644
index 781d785..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/comments_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,2.81C1,3.2 1,3.83 1.39,4.22L2,4.83V16c0,1.1 0.9,2 2,2h11.17l4.61,4.61c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L2.81,2.81C2.42,2.42 1.78,2.42 1.39,2.81zM6.38,9.21L8.17,11H7c-0.55,0 -1,-0.45 -1,-1C6,9.68 6.15,9.4 6.38,9.21zM7,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h2.17l2,2H7zM14.83,12l-1,-1H17c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-5.17l-1,-1H17c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H8.83l-4,-4H20c1.1,0 2,0.9 2,2v15.17L16.83,14H17c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H14.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/commit.xml b/compose/material/material/icons/generator/raw-icons/rounded/commit.xml
deleted file mode 100644
index b64a702..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/commit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4.1h0c-0.46,-2.28 -2.48,-4 -4.9,-4s-4.44,1.72 -4.9,4h0H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h4.1h0c0.46,2.28 2.48,4 4.9,4s4.44,-1.72 4.9,-4h0H21zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/commute.xml b/compose/material/material/icons/generator/raw-icons/rounded/commute.xml
deleted file mode 100644
index 9f9732e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/commute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L5,4C3.34,4 2,5.34 2,7v8c0,1.66 1.34,3 3,3l-0.77,0.77c-0.28,0.28 -0.28,0.72 0,1s0.72,0.28 1,0L7,18h2v-5L4.5,13c-0.28,0 -0.5,-0.22 -0.5,-0.5v-6c0,-0.28 0.22,-0.5 0.5,-0.5h8c0.28,0 0.5,0.22 0.5,0.5L13,8h2L15,7c0,-1.66 -1.34,-3 -3,-3zM5,14c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20.57,9.66c-0.14,-0.4 -0.52,-0.66 -0.97,-0.66h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66l-1.42,4.11v5.24c0,0.55 0.45,0.99 1,0.99s1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1s0.99,-0.44 1,-0.99L22,13.77l-1.43,-4.11zM12.77,10h6.48c0.21,0 0.4,0.14 0.47,0.34l0.69,2c0.11,0.32 -0.13,0.66 -0.47,0.66h-7.85c-0.34,0 -0.58,-0.34 -0.47,-0.66l0.69,-2c0.05,-0.2 0.24,-0.34 0.46,-0.34zM12,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM20,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/compare.xml b/compose/material/material/icons/generator/raw-icons/rounded/compare.xml
deleted file mode 100644
index d03f133..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/compare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1L12,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1zM10,18L5,18l5,-6v6zM19,3h-5v2h4c0.55,0 1,0.45 1,1v12l-5,-6v9h5c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/compare_arrows.xml b/compose/material/material/icons/generator/raw-icons/rounded/compare_arrows.xml
deleted file mode 100644
index 03a1773..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/compare_arrows.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.01,14L3,14c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6.01v1.79c0,0.45 0.54,0.67 0.85,0.35l2.78,-2.79c0.19,-0.2 0.19,-0.51 0,-0.71l-2.78,-2.79c-0.31,-0.32 -0.85,-0.09 -0.85,0.35L9.01,14zM14.99,11.79L14.99,10L21,10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-6.01L14.99,6.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.78,2.79c-0.19,0.2 -0.19,0.51 0,0.71l2.78,2.79c0.31,0.31 0.85,0.09 0.85,-0.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/compass_calibration.xml b/compose/material/material/icons/generator/raw-icons/rounded/compass_calibration.xml
deleted file mode 100644
index 2310390..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/compass_calibration.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.49,3 5.28,4.29 2.8,6.41c-0.44,0.38 -0.48,1.06 -0.06,1.48l3.6,3.6c0.36,0.36 0.92,0.39 1.32,0.08 1.2,-0.94 2.71,-1.5 4.34,-1.5 1.64,0 3.14,0.56 4.34,1.49 0.4,0.31 0.96,0.28 1.31,-0.08l3.6,-3.6c0.42,-0.42 0.38,-1.1 -0.07,-1.48C18.72,4.28 15.51,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/compost.xml b/compose/material/material/icons/generator/raw-icons/rounded/compost.xml
deleted file mode 100644
index 16215d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/compost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.73,21.5c-4.95,-0.14 -9.08,-4.27 -9.22,-9.22C2.35,6.91 6.67,2.5 12,2.5V1.21c0,-0.45 0.54,-0.67 0.85,-0.35l2.79,2.79c0.2,0.2 0.2,0.51 0,0.71l-2.79,2.79C12.54,7.46 12,7.24 12,6.79V5.5c-3.58,0 -6.5,2.92 -6.5,6.5c0,2.21 1.11,4.17 2.81,5.35c0.51,-0.92 1.63,-1.62 2.98,-1.8c-0.09,-0.69 -0.26,-1.42 -0.49,-2.03c-0.33,0.28 -0.75,0.46 -1.22,0.48c-1.14,0.05 -2.08,-0.99 -2.08,-2.13l0,-0.86c0,-0.29 -0.05,-0.57 -0.14,-0.83C7.24,9.84 7.5,9.49 7.86,9.52c1.3,0.09 3.6,0.52 3.64,2.48c0,0.29 -0.06,0.56 -0.17,0.8C10.91,12.48 10.47,12.2 10,12c0.58,0.43 1.37,1.37 2,2.6c0.67,-1.62 1.68,-3.27 3,-4.6c-0.76,0.52 -1.47,1.12 -2.13,1.81c-0.26,-0.42 -0.4,-0.93 -0.36,-1.47C12.59,9 13.79,8 15.13,8L16,8c0.56,0 0.97,-0.14 1.28,-0.31c0.34,-0.19 0.76,0.05 0.75,0.44C17.99,9.87 17.56,13 15,13c-0.49,0 -0.94,-0.14 -1.32,-0.38c-0.24,0.64 -0.59,1.76 -0.76,2.96c1.26,0.22 2.28,0.89 2.77,1.77c1.57,-1.09 2.64,-2.85 2.79,-4.87C18.5,12.22 18.71,12 18.98,12l1.82,0c0.47,0 0.71,0.24 0.69,0.52C21.21,17.61 16.91,21.64 11.73,21.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/compress.xml b/compose/material/material/icons/generator/raw-icons/rounded/compress.xml
deleted file mode 100644
index 581c8a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/compress.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10L4,10c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5C4.45,9 4,9.45 4,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.79,4H13V2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2H9.21C8.76,4 8.54,4.54 8.85,4.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79C15.46,4.54 15.24,4 14.79,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.21,19H11v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.79,2.79C8.54,18.46 8.76,19 9.21,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h14c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1v0C4,13.55 4.45,14 5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/computer.xml b/compose/material/material/icons/generator/raw-icons/rounded/computer.xml
deleted file mode 100644
index 904b0b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/computer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,6c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2H1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h22c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3zM5,6h14c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/confirmation_number.xml b/compose/material/material/icons/generator/raw-icons/rounded/confirmation_number.xml
deleted file mode 100644
index 48af3ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/confirmation_number.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8.54L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.89 -1.99,2v2.54c0,0.69 0.33,1.37 0.94,1.69C3.58,10.58 4,11.24 4,12s-0.43,1.43 -1.06,1.76c-0.6,0.33 -0.94,1.01 -0.94,1.7L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-2.54c0,-0.69 -0.34,-1.37 -0.94,-1.7 -0.63,-0.34 -1.06,-1 -1.06,-1.76s0.43,-1.42 1.06,-1.76c0.6,-0.33 0.94,-1.01 0.94,-1.7zM13,17.5h-2v-2h2v2zM13,13h-2v-2h2v2zM13,8.5h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/connect_without_contact.xml b/compose/material/material/icons/generator/raw-icons/rounded/connect_without_contact.xml
deleted file mode 100644
index 7f1e6d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/connect_without_contact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,4c0,-1.11 -0.89,-2 -2,-2S3,2.89 3,4s0.89,2 2,2S7,5.11 7,4zM10.19,4.5L10.19,4.5c-0.41,0 -0.76,0.25 -0.92,0.63C8.83,6.23 7.76,7 6.5,7h-3C2.67,7 2,7.67 2,8.5V11h6V8.74c1.43,-0.45 2.58,-1.53 3.12,-2.91C11.38,5.19 10.88,4.5 10.19,4.5zM19,17c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S17.89,17 19,17zM20.5,18h-3c-1.26,0 -2.33,-0.77 -2.77,-1.87c-0.15,-0.38 -0.51,-0.63 -0.92,-0.63h0c-0.69,0 -1.19,0.69 -0.94,1.33c0.55,1.38 1.69,2.46 3.12,2.91V22h6v-2.5C22,18.67 21.33,18 20.5,18zM17.25,11.09c0,0 0,-0.01 0.01,0c-1.06,0.27 -1.9,1.11 -2.17,2.17c0,0 0,-0.01 0,-0.01C14.98,13.68 14.58,14 14.11,14c-0.55,0 -1,-0.45 -1,-1c0,-0.05 0.02,-0.14 0.02,-0.14c0.43,-1.85 1.89,-3.31 3.75,-3.73c0.04,0 0.08,-0.01 0.12,-0.01c0.55,0 1,0.45 1,1C18,10.58 17.68,10.98 17.25,11.09zM18,6.06c0,0.51 -0.37,0.92 -0.86,0.99c0,0 0,0 0,0c-3.19,0.39 -5.7,2.91 -6.09,6.1c0,0 0,0 0,0C10.98,13.63 10.56,14 10.06,14c-0.55,0 -1,-0.45 -1,-1c0,-0.02 0,-0.04 0,-0.06c0,-0.01 0,-0.02 0,-0.03c0.5,-4.12 3.79,-7.38 7.92,-7.85c0,0 0.01,0 0.01,0C17.55,5.06 18,5.51 18,6.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/connected_tv.xml b/compose/material/material/icons/generator/raw-icons/rounded/connected_tv.xml
deleted file mode 100644
index dc079c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/connected_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v12c0,1.1 0.9,2 2,2h4v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h4c1.1,0 1.99,-0.9 1.99,-2L22,5C22,3.9 21.1,3 20,3zM20,17H4V5h16V17zM7,15.97C6.98,14.89 6.11,14.02 5.03,14H5v2h2V15.97zM5.62,12.55c1.44,0.26 2.58,1.4 2.83,2.84C8.51,15.75 8.82,16 9.18,16h0c0.46,0 0.82,-0.41 0.75,-0.86c-0.36,-2.07 -1.99,-3.7 -4.06,-4.06C5.41,11 5,11.36 5,11.82v0C5,12.19 5.26,12.49 5.62,12.55zM5.64,9.53c3.07,0.3 5.52,2.75 5.83,5.82c0.04,0.37 0.37,0.65 0.74,0.65c0.45,0 0.79,-0.4 0.75,-0.85c-0.4,-3.74 -3.37,-6.71 -7.11,-7.1C5.4,8 5,8.34 5,8.79C5,9.16 5.27,9.5 5.64,9.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/connecting_airports.xml b/compose/material/material/icons/generator/raw-icons/rounded/connecting_airports.xml
deleted file mode 100644
index 463e0af..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/connecting_airports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.93,10.6c0.39,0 0.66,0.37 0.55,0.74L15.4,15h2.85l0.59,-0.78c0.1,-0.14 0.26,-0.22 0.43,-0.22c0.36,0 0.62,0.35 0.52,0.7L19.4,16l0.39,1.3c0.1,0.35 -0.16,0.7 -0.52,0.7c-0.17,0 -0.33,-0.08 -0.43,-0.22L18.25,17H15.4l1.08,3.66c0.11,0.37 -0.17,0.74 -0.55,0.74c-0.2,0 -0.39,-0.11 -0.5,-0.28L13,17h-2.97c-0.53,0 -1,-0.4 -1.03,-0.93C8.96,15.48 9.43,15 10,15h3l2.43,-4.12C15.54,10.71 15.73,10.6 15.93,10.6zM8.07,2.6c-0.39,0 -0.66,0.37 -0.55,0.74L8.6,7H5.75L5.16,6.22C5.06,6.08 4.9,6 4.73,6C4.37,6 4.11,6.35 4.21,6.7L4.6,8L4.21,9.3C4.11,9.65 4.37,10 4.73,10c0.17,0 0.33,-0.08 0.43,-0.22L5.75,9H8.6l-1.08,3.66c-0.11,0.37 0.17,0.74 0.55,0.74c0.2,0 0.39,-0.11 0.5,-0.28L11,9h2.97c0.53,0 1,-0.4 1.03,-0.93C15.04,7.48 14.57,7 14,7h-3L8.57,2.88C8.46,2.71 8.27,2.6 8.07,2.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/construction.xml b/compose/material/material/icons/generator/raw-icons/rounded/construction.xml
deleted file mode 100644
index e7cd3a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/construction.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.99,17.99l-4.94,-4.94l-2.12,2.12l4.94,4.94c0.59,0.59 1.54,0.59 2.12,0C21.57,19.52 21.57,18.57 20.99,17.99z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,10c1.93,0 3.5,-1.57 3.5,-3.5c0,-0.58 -0.16,-1.12 -0.41,-1.6l-2.7,2.7l-1.49,-1.49l2.7,-2.7C18.77,3.16 18.23,3 17.65,3c-1.93,0 -3.5,1.57 -3.5,3.5c0,0.41 0.08,0.8 0.21,1.16l-1.85,1.85l-1.78,-1.78l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-0.71,-0.71l2.12,-2.12c-1.17,-1.17 -3.07,-1.17 -4.24,0L5.08,6.32c-0.39,0.39 -0.39,1.02 0,1.41l0.71,0.71H3.25c-0.19,0 -0.37,0.07 -0.5,0.21c-0.28,0.28 -0.28,0.72 0,1l2.54,2.54c0.28,0.28 0.72,0.28 1,0c0.13,-0.13 0.21,-0.31 0.21,-0.5V9.15L7.2,9.85c0.39,0.39 1.02,0.39 1.41,0l1.78,1.78l-6.35,6.35c-0.59,0.59 -0.59,1.54 0,2.12v0c0.59,0.59 1.54,0.59 2.12,0L16.48,9.79C16.85,9.92 17.24,10 17.65,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contact_emergency.xml b/compose/material/material/icons/generator/raw-icons/rounded/contact_emergency.xml
deleted file mode 100644
index 0ac691e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contact_emergency.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5C24,3.9 23.1,3 22,3zM9,8c1.65,0 3,1.35 3,3s-1.35,3 -3,3s-3,-1.35 -3,-3S7.35,8 9,8zM2.08,19c1.38,-2.39 3.96,-4 6.92,-4s5.54,1.61 6.92,4H2.08zM20.6,10.5L20.6,10.5c-0.21,0.36 -0.67,0.48 -1.02,0.27l-0.82,-0.48v0.95c0,0.41 -0.34,0.75 -0.75,0.75h0c-0.41,0 -0.75,-0.34 -0.75,-0.75V10.3l-0.82,0.48c-0.36,0.21 -0.82,0.08 -1.02,-0.27l0,0c-0.21,-0.36 -0.08,-0.82 0.27,-1.02L16.5,9l-0.82,-0.48c-0.36,-0.21 -0.48,-0.67 -0.27,-1.02l0,0c0.21,-0.36 0.67,-0.48 1.02,-0.27l0.82,0.48V6.75C17.25,6.34 17.59,6 18,6h0c0.41,0 0.75,0.34 0.75,0.75V7.7l0.82,-0.48c0.36,-0.21 0.82,-0.08 1.02,0.27v0c0.21,0.36 0.08,0.82 -0.27,1.02L19.5,9l0.82,0.48C20.68,9.68 20.81,10.14 20.6,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contact_mail.xml b/compose/material/material/icons/generator/raw-icons/rounded/contact_mail.xml
deleted file mode 100644
index 2abd447..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contact_mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8L21,7l-3,2 -3,-2v1l2.72,1.82c0.17,0.11 0.39,0.11 0.55,0L21,8zM22,3L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM8,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM14,18L2,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1zM21.5,12h-7c-0.28,0 -0.5,-0.22 -0.5,-0.5v-5c0,-0.28 0.22,-0.5 0.5,-0.5h7c0.28,0 0.5,0.22 0.5,0.5v5c0,0.28 -0.22,0.5 -0.5,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contact_page.xml b/compose/material/material/icons/generator/raw-icons/rounded/contact_page.xml
deleted file mode 100644
index 4778e22..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contact_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2zM12,10c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,10.9 10.9,10 12,10zM16,18H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,15.21 11.01,15 12,15c0.99,0 1.93,0.21 2.78,0.58C15.52,15.9 16,16.62 16,17.43V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contact_phone.xml b/compose/material/material/icons/generator/raw-icons/rounded/contact_phone.xml
deleted file mode 100644
index d3b2733..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contact_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM8,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM14,18L2,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1zM17.85,14h1.39c0.16,0 0.3,0.07 0.4,0.2l1.1,1.45c0.15,0.2 0.13,0.48 -0.05,0.65l-1.36,1.36c-0.18,0.18 -0.48,0.2 -0.67,0.04 -1.13,-0.96 -1.97,-2.25 -2.38,-3.71 -0.18,-0.63 -0.28,-1.3 -0.28,-1.99s0.1,-1.36 0.28,-2c0.41,-1.47 1.25,-2.75 2.38,-3.71 0.2,-0.17 0.49,-0.14 0.67,0.04l1.36,1.36c0.18,0.18 0.2,0.46 0.05,0.65l-1.1,1.45c-0.09,0.13 -0.24,0.2 -0.4,0.2h-1.39c-0.22,0.63 -0.35,1.3 -0.35,2s0.13,1.38 0.35,2.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contact_support.xml b/compose/material/material/icons/generator/raw-icons/rounded/contact_support.xml
deleted file mode 100644
index 2699f80f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contact_support.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,2C6.81,2 3,5.81 3,10.5S6.81,19 11.5,19h0.5v3c4.86,-2.34 8,-7 8,-11.5C20,5.81 16.19,2 11.5,2zM12.5,16.5h-2v-2h2v2zM12.9,11.72c-0.01,0.01 -0.02,0.03 -0.03,0.05 -0.05,0.08 -0.1,0.16 -0.14,0.24 -0.02,0.03 -0.03,0.07 -0.04,0.11 -0.03,0.07 -0.06,0.14 -0.08,0.21 -0.07,0.21 -0.1,0.43 -0.1,0.68L10.5,13.01c0,-0.51 0.08,-0.94 0.2,-1.3 0,-0.01 0,-0.02 0.01,-0.03 0.01,-0.04 0.04,-0.06 0.05,-0.1 0.06,-0.16 0.13,-0.3 0.22,-0.44 0.03,-0.05 0.07,-0.1 0.1,-0.15 0.03,-0.04 0.05,-0.09 0.08,-0.12l0.01,0.01c0.84,-1.1 2.21,-1.44 2.32,-2.68 0.09,-0.98 -0.61,-1.93 -1.57,-2.13 -1.04,-0.22 -1.98,0.39 -2.3,1.28 -0.14,0.36 -0.47,0.65 -0.88,0.65h-0.2c-0.6,0 -1.04,-0.59 -0.87,-1.17 0.55,-1.82 2.37,-3.09 4.43,-2.79 1.69,0.25 3.04,1.64 3.33,3.33 0.44,2.44 -1.63,3.03 -2.53,4.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contactless.xml b/compose/material/material/icons/generator/raw-icons/rounded/contactless.xml
deleted file mode 100644
index 5381766..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contactless.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM8.75,13.68c-0.13,0.43 -0.62,0.63 -1.02,0.45l0,0c-0.34,-0.16 -0.51,-0.54 -0.4,-0.9c0.12,-0.41 0.18,-0.83 0.17,-1.24c-0.01,-0.41 -0.06,-0.8 -0.17,-1.18c-0.1,-0.36 0.06,-0.75 0.4,-0.9l0,0c0.42,-0.19 0.91,0.04 1.04,0.49c0.15,0.51 0.22,1.03 0.23,1.57C9,12.53 8.92,13.11 8.75,13.68zM11.89,15.27c-0.17,0.41 -0.67,0.57 -1.06,0.35l0,0c-0.33,-0.19 -0.46,-0.59 -0.32,-0.94c0.33,-0.77 0.49,-1.63 0.49,-2.56c0,-0.96 -0.18,-1.89 -0.53,-2.78c-0.14,-0.36 0.02,-0.76 0.36,-0.94l0,0c0.39,-0.2 0.87,-0.02 1.03,0.39c0.42,1.06 0.63,2.18 0.63,3.33C12.51,13.25 12.3,14.31 11.89,15.27zM15,16.6c-0.17,0.4 -0.64,0.58 -1.02,0.39l0,0c-0.35,-0.17 -0.52,-0.59 -0.37,-0.95c0.59,-1.39 0.89,-2.75 0.89,-4.06c0,-1.31 -0.3,-2.65 -0.88,-4.01c-0.16,-0.36 0.01,-0.78 0.36,-0.95C14.37,6.82 14.83,7 15,7.4c0.66,1.54 1,3.08 1,4.58C16,13.48 15.66,15.04 15,16.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contacts.xml b/compose/material/material/icons/generator/raw-icons/rounded/contacts.xml
deleted file mode 100644
index fb0782773..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,0L5,0c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM5,24h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,22c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,6.75c1.24,0 2.25,1.01 2.25,2.25s-1.01,2.25 -2.25,2.25S9.75,10.24 9.75,9 10.76,6.75 12,6.75zM17,17L7,17v-1.5c0,-1.67 3.33,-2.5 5,-2.5s5,0.83 5,2.5L17,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/content_copy.xml b/compose/material/material/icons/generator/raw-icons/rounded/content_copy.xml
deleted file mode 100644
index 4258b8ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/content_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,20H5V7c0,-0.55 -0.45,-1 -1,-1h0C3.45,6 3,6.45 3,7v13c0,1.1 0.9,2 2,2h10c0.55,0 1,-0.45 1,-1v0C16,20.45 15.55,20 15,20zM20,16V4c0,-1.1 -0.9,-2 -2,-2H9C7.9,2 7,2.9 7,4v12c0,1.1 0.9,2 2,2h9C19.1,18 20,17.1 20,16zM18,16H9V4h9V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/content_cut.xml b/compose/material/material/icons/generator/raw-icons/rounded/content_cut.xml
deleted file mode 100644
index 3c627dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/content_cut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.64,7.64c0.29,-0.62 0.42,-1.33 0.34,-2.09 -0.19,-1.73 -1.54,-3.2 -3.26,-3.49 -2.77,-0.48 -5.14,1.89 -4.66,4.65 0.3,1.72 1.76,3.07 3.49,3.26 0.76,0.08 1.46,-0.05 2.09,-0.34L10,12l-2.36,2.36c-0.62,-0.29 -1.33,-0.42 -2.09,-0.34 -1.73,0.19 -3.2,1.54 -3.49,3.26 -0.48,2.77 1.89,5.13 4.65,4.65 1.72,-0.3 3.07,-1.76 3.26,-3.49 0.08,-0.76 -0.05,-1.46 -0.34,-2.09L12,14l7.59,7.59c0.89,0.89 2.41,0.26 2.41,-1v-0.01c0,-0.37 -0.15,-0.73 -0.41,-1L9.64,7.64zM6,8c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM6,20c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM12,12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5 0.5,0.22 0.5,0.5 -0.22,0.5 -0.5,0.5zM19.59,2.41L13,9l2,2 6.59,-6.59c0.26,-0.26 0.41,-0.62 0.41,-1L22,3.4c0,-1.25 -1.52,-1.88 -2.41,-0.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/content_paste.xml b/compose/material/material/icons/generator/raw-icons/rounded/content_paste.xml
deleted file mode 100644
index e95fdde..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/content_paste.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0S9.6,0.84 9.18,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM18,20L6,20c-0.55,0 -1,-0.45 -1,-1L5,5c0,-0.55 0.45,-1 1,-1h1v1c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2L17,4h1c0.55,0 1,0.45 1,1v14c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/content_paste_go.xml b/compose/material/material/icons/generator/raw-icons/rounded/content_paste_go.xml
deleted file mode 100644
index 6fde011..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/content_paste_go.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v1c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2V5h2v6h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h5v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,16.29l-2.58,-2.58c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l0.87,0.88H13c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h5.17l-0.87,0.88c-0.39,0.39 -0.39,1.02 0,1.41v0c0.39,0.39 1.02,0.39 1.41,0l2.58,-2.58C21.68,17.31 21.68,16.68 21.29,16.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/content_paste_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/content_paste_off.xml
deleted file mode 100644
index f0d8f277..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/content_paste_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L3,5.83V19c0,1.1 0.9,2 2,2h13.17l0.9,0.9c0.39,0.39 1.02,0.39 1.41,0l0,0C20.88,21.51 20.88,20.88 20.49,20.49zM5,19V7.83L16.17,19H5zM17,8V5h2v11.17l2,2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5.83l5,5H17zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/content_paste_search.xml b/compose/material/material/icons/generator/raw-icons/rounded/content_paste_search.xml
deleted file mode 100644
index aa3bd72..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/content_paste_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v1c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2V5h2v5h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h5v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.3,20.9l-2,-2c0.58,-1.01 0.95,-2.23 0.51,-3.65c-0.53,-1.72 -2.04,-3.05 -3.84,-3.22c-2.87,-0.28 -5.23,2.07 -4.95,4.95c0.18,1.79 1.5,3.31 3.22,3.84c1.43,0.44 2.64,0.07 3.65,-0.51l2,2c0.39,0.39 1.01,0.39 1.4,0S22.69,21.29 22.3,20.9zM16.5,19c-1.4,0 -2.5,-1.1 -2.5,-2.5c0,-1.4 1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5C19,17.9 17.9,19 16.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/contrast.xml b/compose/material/material/icons/generator/raw-icons/rounded/contrast.xml
deleted file mode 100644
index 8210b18..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/contrast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2S2,6.48 2,12S6.48,22 12,22zM13,4.07c3.94,0.49 7,3.85 7,7.93s-3.05,7.44 -7,7.93V4.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/control_camera.xml b/compose/material/material/icons/generator/raw-icons/rounded/control_camera.xml
deleted file mode 100644
index 1bcbf37..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/control_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.65,9.35L2.7,11.3c-0.39,0.39 -0.39,1.02 0,1.41l1.95,1.95c0.49,0.49 1.28,0.49 1.77,0 0.48,-0.49 0.48,-1.27 0,-1.76l-0.88,-0.9 0.88,-0.89c0.48,-0.49 0.48,-1.27 0,-1.76s-1.28,-0.49 -1.77,0zM17.58,9.35c-0.48,0.49 -0.48,1.27 0,1.76l0.88,0.89 -0.88,0.89c-0.48,0.49 -0.48,1.27 0,1.76 0.49,0.49 1.28,0.49 1.77,0l1.95,-1.95c0.39,-0.39 0.39,-1.02 0,-1.41l-1.95,-1.95c-0.49,-0.48 -1.29,-0.48 -1.77,0.01zM12,18.46l-0.89,-0.88c-0.49,-0.48 -1.27,-0.48 -1.76,0 -0.49,0.49 -0.49,1.28 0,1.77l1.95,1.95c0.39,0.39 1.02,0.39 1.41,0l1.95,-1.95c0.49,-0.49 0.49,-1.28 0,-1.77 -0.49,-0.48 -1.27,-0.48 -1.76,0l-0.9,0.88zM9.35,6.42c0.49,0.48 1.27,0.48 1.76,0l0.89,-0.88 0.89,0.88c0.49,0.48 1.27,0.48 1.76,0 0.49,-0.49 0.49,-1.28 0,-1.77L12.7,2.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L9.35,4.65c-0.49,0.49 -0.49,1.29 0,1.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/control_point.xml b/compose/material/material/icons/generator/raw-icons/rounded/control_point.xml
deleted file mode 100644
index 139d9db..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/control_point.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-0.55,0 -1,0.45 -1,1v3L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L13,8c0,-0.55 -0.45,-1 -1,-1zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/control_point_duplicate.xml b/compose/material/material/icons/generator/raw-icons/rounded/control_point_duplicate.xml
deleted file mode 100644
index f259d05..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/control_point_duplicate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2L16,9c0,-0.55 -0.45,-1 -1,-1zM2,12c0,-2.58 1.4,-4.83 3.48,-6.04 0.32,-0.19 0.53,-0.51 0.53,-0.88 0,-0.77 -0.84,-1.25 -1.51,-0.86C1.82,5.78 0,8.68 0,12s1.82,6.22 4.5,7.78c0.67,0.39 1.51,-0.09 1.51,-0.86 0,-0.37 -0.21,-0.69 -0.53,-0.88C3.4,16.83 2,14.58 2,12zM15,3c-4.96,0 -9,4.04 -9,9s4.04,9 9,9 9,-4.04 9,-9 -4.04,-9 -9,-9zM15,19c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cookie.xml b/compose/material/material/icons/generator/raw-icons/rounded/cookie.xml
deleted file mode 100644
index 9a4a638..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cookie.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.27,10.9c-1.21,-0.33 -2.31,-1.46 -2.29,-2.89c0.01,-0.56 -0.4,-1.02 -0.96,-1.01C15.83,7.03 14,5.22 14,3.02c0,-0.49 -0.35,-0.9 -0.84,-0.96C6.53,1.22 2,6.81 2,12c0,5.52 4.48,10 10,10c5.61,0 10.11,-4.62 10,-10.18C21.99,11.38 21.69,11.01 21.27,10.9zM8.5,15C7.67,15 7,14.33 7,13.5S7.67,12 8.5,12s1.5,0.67 1.5,1.5S9.33,15 8.5,15zM10.5,10C9.67,10 9,9.33 9,8.5S9.67,7 10.5,7S12,7.67 12,8.5S11.33,10 10.5,10zM15,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,15.55 15.55,16 15,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/copy_all.xml b/compose/material/material/icons/generator/raw-icons/rounded/copy_all.xml
deleted file mode 100644
index e80c13a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/copy_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H9C7.9,2 7,2.9 7,4v12c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,16H9V4h9V16zM3,15v-2h2v2H3zM3,9.5h2v2H3V9.5zM10,20h2v2h-2V20zM3,18.5v-2h2v2H3zM5,22c-1.1,0 -2,-0.9 -2,-2h2V22zM8.5,22h-2v-2h2V22zM13.5,22L13.5,22l0,-2h2v0C15.5,21.1 14.6,22 13.5,22zM5,6L5,6l0,2H3v0C3,6.9 3.9,6 5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/copyright.xml b/compose/material/material/icons/generator/raw-icons/rounded/copyright.xml
deleted file mode 100644
index 2fde576..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/copyright.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.08,10.86c0.05,-0.33 0.16,-0.62 0.3,-0.87s0.34,-0.46 0.59,-0.62c0.24,-0.15 0.54,-0.22 0.91,-0.23 0.23,0.01 0.44,0.05 0.63,0.13 0.2,0.09 0.38,0.21 0.52,0.36s0.25,0.33 0.34,0.53 0.13,0.42 0.14,0.64h1.79c-0.02,-0.47 -0.11,-0.9 -0.28,-1.29s-0.4,-0.73 -0.7,-1.01 -0.66,-0.5 -1.08,-0.66 -0.88,-0.23 -1.39,-0.23c-0.65,0 -1.22,0.11 -1.7,0.34s-0.88,0.53 -1.2,0.92 -0.56,0.84 -0.71,1.36S8,11.29 8,11.87v0.27c0,0.58 0.08,1.12 0.23,1.64s0.39,0.97 0.71,1.35 0.72,0.69 1.2,0.91c0.48,0.22 1.05,0.34 1.7,0.34 0.47,0 0.91,-0.08 1.32,-0.23s0.77,-0.36 1.08,-0.63 0.56,-0.58 0.74,-0.94 0.29,-0.74 0.3,-1.15h-1.79c-0.01,0.21 -0.06,0.4 -0.15,0.58s-0.21,0.33 -0.36,0.46 -0.32,0.23 -0.52,0.3c-0.19,0.07 -0.39,0.09 -0.6,0.1 -0.36,-0.01 -0.66,-0.08 -0.89,-0.23 -0.25,-0.16 -0.45,-0.37 -0.59,-0.62s-0.25,-0.55 -0.3,-0.88 -0.08,-0.67 -0.08,-1v-0.27c0,-0.35 0.03,-0.68 0.08,-1.01zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/coronavirus.xml b/compose/material/material/icons/generator/raw-icons/rounded/coronavirus.xml
deleted file mode 100644
index 12bf7a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/coronavirus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.25,10.5c-0.41,0 -0.75,0.34 -0.75,0.75h-1.54c-0.15,-1.37 -0.69,-2.63 -1.52,-3.65l1.09,-1.09l0.01,0.01c0.29,0.29 0.77,0.29 1.06,0s0.29,-0.77 0,-1.06L18.54,4.4c-0.29,-0.29 -0.77,-0.29 -1.06,0c-0.29,0.29 -0.29,0.76 -0.01,1.05l-1.09,1.09c-1.02,-0.82 -2.27,-1.36 -3.64,-1.51V3.5h0.01c0.41,0 0.75,-0.34 0.75,-0.75C13.5,2.34 13.16,2 12.75,2h-1.5c-0.41,0 -0.75,0.34 -0.75,0.75c0,0.41 0.33,0.74 0.74,0.75v1.55C9.87,5.19 8.62,5.74 7.6,6.56L6.51,5.47l0.01,-0.01c0.29,-0.29 0.29,-0.77 0,-1.06c-0.29,-0.29 -0.77,-0.29 -1.06,0L4.4,5.46c-0.29,0.29 -0.29,0.77 0,1.06c0.29,0.29 0.76,0.29 1.05,0.01l1.09,1.09c-0.82,1.02 -1.36,2.26 -1.5,3.63H3.5c0,-0.41 -0.34,-0.75 -0.75,-0.75C2.34,10.5 2,10.84 2,11.25v1.5c0,0.41 0.34,0.75 0.75,0.75c0.41,0 0.75,-0.34 0.75,-0.75h1.54c0.15,1.37 0.69,2.61 1.5,3.63l-1.09,1.09c-0.29,-0.29 -0.76,-0.28 -1.05,0.01c-0.29,0.29 -0.29,0.77 0,1.06l1.06,1.06c0.29,0.29 0.77,0.29 1.06,0c0.29,-0.29 0.29,-0.77 0,-1.06l-0.01,-0.01l1.09,-1.09c1.02,0.82 2.26,1.36 3.63,1.51v1.55c-0.41,0.01 -0.74,0.34 -0.74,0.75c0,0.41 0.34,0.75 0.75,0.75h1.5c0.41,0 0.75,-0.34 0.75,-0.75c0,-0.41 -0.34,-0.75 -0.75,-0.75h-0.01v-1.54c1.37,-0.14 2.62,-0.69 3.64,-1.51l1.09,1.09c-0.29,0.29 -0.28,0.76 0.01,1.05c0.29,0.29 0.77,0.29 1.06,0l1.06,-1.06c0.29,-0.29 0.29,-0.77 0,-1.06c-0.29,-0.29 -0.77,-0.29 -1.06,0l-0.01,0.01l-1.09,-1.09c0.82,-1.02 1.37,-2.27 1.52,-3.65h1.54c0,0.41 0.34,0.75 0.75,0.75c0.41,0 0.75,-0.34 0.75,-0.75v-1.5C22,10.84 21.66,10.5 21.25,10.5zM13.75,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S13.2,8 13.75,8zM12,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,12.55 12.55,13 12,13zM10.25,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S9.7,8 10.25,8zM8.5,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9.5,12.55 9.05,13 8.5,13zM10.25,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C11.25,15.55 10.8,16 10.25,16zM13.75,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C14.75,15.55 14.3,16 13.75,16zM14.5,12c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S14.5,12.55 14.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/corporate_fare.xml b/compose/material/material/icons/generator/raw-icons/rounded/corporate_fare.xml
deleted file mode 100644
index 3510592..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/corporate_fare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9c0,-1.1 -0.9,-2 -2,-2H12zM10,19H4v-2h6V19zM10,15H4v-2h6V15zM10,11H4V9h6V11zM10,7H4V5h6V7zM20,19h-8V9h8V19zM18,11h-4v2h4V11zM18,15h-4v2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cottage.xml b/compose/material/material/icons/generator/raw-icons/rounded/cottage.xml
deleted file mode 100644
index 36d48cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cottage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.39,12.19c0.34,-0.44 0.25,-1.07 -0.19,-1.4l-9.6,-7.33c-0.36,-0.27 -0.86,-0.27 -1.21,0L6,7.58V7c0,-0.55 -0.45,-1 -1,-1S4,6.45 4,7v2.11l-2.21,1.68c-0.44,0.33 -0.52,0.96 -0.19,1.4c0.34,0.44 0.96,0.52 1.4,0.19L4,11.62V20c0,0.55 0.45,1 1,1h6v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5h6c0.55,0 1,-0.45 1,-1v-8.38l0.99,0.76C21.43,12.72 22.06,12.63 22.39,12.19zM5.27,5c-0.74,0 -1.26,-0.8 -0.9,-1.45C4.89,2.62 5.87,2 7,2c0.38,0 0.72,-0.22 0.89,-0.53C8.04,1.16 8.39,1 8.73,1c0.74,0 1.26,0.8 0.9,1.45C9.11,3.38 8.13,4 7,4C6.62,4 6.28,4.22 6.11,4.53C5.96,4.84 5.61,5 5.27,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/countertops.xml b/compose/material/material/icons/generator/raw-icons/rounded/countertops.xml
deleted file mode 100644
index 353c264..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/countertops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10l0,-2.83c0,-1.62 -1.22,-3.08 -2.84,-3.17c-1.21,-0.06 -2.27,0.59 -2.8,1.57C12.01,6.22 12.53,7 13.27,7h0.01c0.34,0 0.68,-0.16 0.84,-0.46C14.28,6.22 14.62,6 15,6c0.55,0 1,0.45 1,1v3H8c1.1,0 2,-0.9 2,-2V5c0,-0.55 -0.45,-1 -1,-1H5C4.45,4 4,4.45 4,5v3c0,1.1 0.9,2 2,2H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v7c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-7h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H18zM13,18h-2v-6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/create.xml b/compose/material/material/icons/generator/raw-icons/rounded/create.xml
deleted file mode 100644
index 1599eed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/create.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.46v3.04c0,0.28 0.22,0.5 0.5,0.5h3.04c0.13,0 0.26,-0.05 0.35,-0.15L17.81,9.94l-3.75,-3.75L3.15,17.1c-0.1,0.1 -0.15,0.22 -0.15,0.36zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/create_new_folder.xml b/compose/material/material/icons/generator/raw-icons/rounded/create_new_folder.xml
deleted file mode 100644
index 0c785da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/create_new_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM18,14h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h-2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/credit_card.xml b/compose/material/material/icons/generator/raw-icons/rounded/credit_card.xml
deleted file mode 100644
index 509aeac..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/credit_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM19,18L5,18c-0.55,0 -1,-0.45 -1,-1v-5h16v5c0,0.55 -0.45,1 -1,1zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/credit_card_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/credit_card_off.xml
deleted file mode 100644
index 423167f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/credit_card_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C1,3.2 1,3.83 1.39,4.22l0.84,0.84C2.09,5.34 2.01,5.66 2.01,6L2,18c0,1.11 0.89,2 2,2h13.17l2.61,2.61c0.39,0.39 1.02,0.39 1.41,0v0C21.58,22.22 21.58,21.58 21.19,21.19zM4,12V8h1.17l4,4H4zM6.83,4H20c1.11,0 2,0.89 2,2v12c0,0.34 -0.08,0.66 -0.23,0.94L14.83,12H20V8h-9.17L6.83,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/credit_score.xml b/compose/material/material/icons/generator/raw-icons/rounded/credit_score.xml
deleted file mode 100644
index 01f21a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/credit_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h4c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4v-6h18V6C22,4.9 21.1,4 20,4zM20,8H4V6h16V8zM14.93,19.17l-2.12,-2.12c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83c0.39,0.39 1.02,0.39 1.41,0l5.66,-5.66c0.39,-0.39 0.39,-1.02 0,-1.41v0c-0.39,-0.39 -1.02,-0.39 -1.41,0L14.93,19.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crib.xml b/compose/material/material/icons/generator/raw-icons/rounded/crib.xml
deleted file mode 100644
index 16a40dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crib.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.32,18.32c-0.36,-0.36 -0.92,-0.4 -1.31,-0.08c-0.32,0.25 -0.65,0.48 -1,0.69V16h2c1.1,0 2,-0.9 2,-2v-3c0,-1.1 -0.9,-2 -2,-2h-6V6c0,-1.1 -0.9,-2 -2,-2H8C5.79,4 4,5.79 4,8v6c0,1.1 0.9,2 2,2h2v2.93c-0.35,-0.2 -0.69,-0.43 -1,-0.69c-0.39,-0.32 -0.96,-0.27 -1.31,0.08c-0.42,0.42 -0.39,1.12 0.08,1.5C7.47,21.18 9.64,22 12,22c2.36,0 4.53,-0.82 6.24,-2.18C18.71,19.44 18.74,18.74 18.32,18.32zM14,19.75C13.36,19.91 12.69,20 12,20c-0.69,0 -1.36,-0.09 -2,-0.25V16h4V19.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crisis_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/crisis_alert.xml
deleted file mode 100644
index 1aa1128..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crisis_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,2.5c0,1.5 -1.5,6 -1.5,6h-2c0,0 -1.5,-4.5 -1.5,-6C9.5,1.12 10.62,0 12,0S14.5,1.12 14.5,2.5zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM16.08,5.11c0.18,-0.75 0.33,-1.47 0.39,-2.06C19.75,4.69 22,8.08 22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-3.92 2.25,-7.31 5.53,-8.95C7.6,3.64 7.74,4.37 7.92,5.11C5.58,6.51 4,9.07 4,12c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,9.07 18.42,6.51 16.08,5.11zM18,12c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2 0.98,-3.77 2.48,-4.86c0.23,0.81 0.65,2.07 0.65,2.07C8.43,9.93 8,10.92 8,12c0,2.21 1.79,4 4,4s4,-1.79 4,-4c0,-1.08 -0.43,-2.07 -1.13,-2.79c0,0 0.41,-1.22 0.65,-2.07C17.02,8.23 18,10 18,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop.xml
deleted file mode 100644
index c7f94e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2L19,7c0,-1.1 -0.9,-2 -2,-2L9,5v2h7c0.55,0 1,0.45 1,1v7zM8,17c-0.55,0 -1,-0.45 -1,-1L7,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3L2,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v10c0,1.1 0.9,2 2,2h10v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_16_9.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_16_9.xml
deleted file mode 100644
index 7bc13cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_16_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H5C3.9,7 3,7.9 3,9v6c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,15H5V9h14V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_3_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_3_2.xml
deleted file mode 100644
index acaa273..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_3_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6H5C3.9,6 3,6.9 3,8v8c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM19,16H5V8h14V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_5_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_5_4.xml
deleted file mode 100644
index e9fc8e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_5_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.9,4 3,4.9 3,6v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,18H5V6h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_7_5.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_7_5.xml
deleted file mode 100644
index d151917..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_7_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C3.9,5 3,5.9 3,7v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7C21,5.9 20.1,5 19,5zM19,17H5V7h14V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_din.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_din.xml
deleted file mode 100644
index 7a6b75c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_din.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_free.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_free.xml
deleted file mode 100644
index 561870e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L5,6c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,3c-1.1,0 -2,0.9 -2,2zM4,15c-0.55,0 -1,0.45 -1,1v3c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,19c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 -0.45,-1 -1,-1zM19,18c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2zM19,3h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2c0.55,0 1,0.45 1,1v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_landscape.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_landscape.xml
deleted file mode 100644
index 1623ef5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM18,17L6,17c-0.55,0 -1,-0.45 -1,-1L5,8c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_original.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_original.xml
deleted file mode 100644
index 06e9e2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_original.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM13.56,12.81l-2.35,3.02 -1.56,-1.88c-0.2,-0.25 -0.58,-0.24 -0.78,0.01l-1.74,2.23c-0.26,0.33 -0.02,0.81 0.39,0.81h8.98c0.41,0 0.65,-0.47 0.4,-0.8l-2.55,-3.39c-0.19,-0.26 -0.59,-0.26 -0.79,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_portrait.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_portrait.xml
deleted file mode 100644
index dcf243a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,5c0,-1.1 -0.9,-2 -2,-2zM16,19L8,19c-0.55,0 -1,-0.45 -1,-1L7,6c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_rotate.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_rotate.xml
deleted file mode 100644
index aaebcd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_rotate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9v5h2L18,8c0,-1.1 -0.9,-2 -2,-2h-6v2h5c0.55,0 1,0.45 1,1zM19,16L9,16c-0.55,0 -1,-0.45 -1,-1L8,5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v8c0,1.1 0.9,2 2,2h8v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM17.66,1.4C15.99,0.51 13.83,-0.11 11.39,0.04l3.81,3.81 1.33,-1.33c3.09,1.46 5.34,4.37 5.89,7.86 0.06,0.41 0.44,0.69 0.86,0.62 0.41,-0.06 0.69,-0.45 0.62,-0.86 -0.6,-3.8 -2.96,-7 -6.24,-8.74zM7.47,21.49c-3.09,-1.46 -5.34,-4.37 -5.89,-7.86 -0.06,-0.41 -0.44,-0.69 -0.86,-0.62 -0.41,0.06 -0.69,0.45 -0.62,0.86 0.6,3.81 2.96,7.01 6.24,8.75 1.67,0.89 3.83,1.51 6.27,1.36L8.8,20.16l-1.33,1.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/crop_square.xml b/compose/material/material/icons/generator/raw-icons/rounded/crop_square.xml
deleted file mode 100644
index b19471f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/crop_square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4L6,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,6c0,-1.1 -0.9,-2 -2,-2zM17,18L7,18c-0.55,0 -1,-0.45 -1,-1L6,7c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cruelty_free.xml b/compose/material/material/icons/generator/raw-icons/rounded/cruelty_free.xml
deleted file mode 100644
index 4fc1fef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cruelty_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.84,14.52c-0.26,-0.19 -0.62,-0.63 -0.79,-0.84C17.24,12.01 19,8.87 19,5c0,-1.95 -0.74,-3 -2,-3c-1.54,0 -3.96,2.06 -5,5.97C10.96,4.06 8.54,2 7,2C5.74,2 5,3.05 5,5c0,3.87 1.76,7.01 2.95,8.68c-0.17,0.21 -0.53,0.65 -0.79,0.84c-0.5,0.41 -1.66,1.37 -1.66,2.98c0,2.21 1.79,4 4,4c1.55,0 2.5,-0.56 2.5,-0.56s0.95,0.56 2.5,0.56c2.21,0 4,-1.79 4,-4C18.5,15.89 17.34,14.93 16.84,14.52zM9.35,12.2C8.34,10.7 7,8.12 7,5c0,-0.49 0.06,-0.8 0.12,-0.97c0.94,0.31 3.24,2.71 3.38,7.64C10.03,11.79 9.66,11.97 9.35,12.2zM10.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S11,15.59 11,16C11,16.41 10.78,16.75 10.5,16.75zM12,19.5c-0.55,0 -1,-0.72 -1,-1c0,-0.28 0.45,-0.5 1,-0.5s1,0.22 1,0.5C13,18.78 12.55,19.5 12,19.5zM13.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S14,15.59 14,16C14,16.41 13.78,16.75 13.5,16.75zM13.5,11.67c0.14,-4.93 2.44,-7.33 3.38,-7.64C16.94,4.2 17,4.51 17,5c0,3.12 -1.34,5.7 -2.35,7.2C14.34,11.97 13.97,11.79 13.5,11.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/css.xml b/compose/material/material/icons/generator/raw-icons/rounded/css.xml
deleted file mode 100644
index 214a408..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/css.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10.25C8,10.66 7.66,11 7.25,11c-0.33,0 -0.6,-0.21 -0.71,-0.5l-2.04,0v3l2.04,0c0.1,-0.29 0.38,-0.5 0.71,-0.5C7.66,13 8,13.34 8,13.75V14c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V10.25zM13.04,10.5c0.1,0.29 0.38,0.5 0.71,0.5c0.41,0 0.75,-0.34 0.75,-0.75V10c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H13v1h-2.04v0c-0.1,-0.29 -0.38,-0.5 -0.71,-0.5c-0.41,0 -0.75,0.34 -0.75,0.75V14c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H11v-1L13.04,10.5zM19.54,10.5c0.1,0.29 0.38,0.5 0.71,0.5c0.41,0 0.75,-0.34 0.75,-0.75V10c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2.5v1h-2.04v0c-0.1,-0.29 -0.38,-0.5 -0.71,-0.5C16.34,13 16,13.34 16,13.75V14c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1h-2.5v-1L19.54,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_bitcoin.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_bitcoin.xml
deleted file mode 100644
index 931570f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_bitcoin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7h4c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-4V7zM15,17h-5v-4h5c1.1,0 2,0.9 2,2S16.1,17 15,17zM15,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h-2V4c0,-0.55 -0.45,-1 -1,-1S9,3.45 9,4v1H7C6.45,5 6,5.45 6,6s0.45,1 1,1h1v10H7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h2v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1c2.21,0 4,-1.79 4,-4c0,-1.45 -0.78,-2.73 -1.94,-3.43C17.65,10.88 18,9.98 18,9c0,-1.86 -1.27,-3.43 -3,-3.87L15,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_exchange.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_exchange.xml
deleted file mode 100644
index 31b0a74..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_exchange.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,23c5.7,0 10.39,-4.34 10.95,-9.9c0.06,-0.59 -0.41,-1.1 -1,-1.1c-0.51,0 -0.94,0.38 -0.99,0.88C20.52,17.44 16.67,21 12,21c-3.12,0 -5.87,-1.59 -7.48,-4L6,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1l0,-1.67C4.99,21.15 8.28,23 12,23zM12,1C6.3,1 1.61,5.34 1.05,10.9C1,11.49 1.46,12 2.05,12c0.51,0 0.94,-0.38 0.99,-0.88C3.48,6.56 7.33,3 12,3c3.12,0 5.87,1.59 7.48,4L18,7c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1l0,1.67C19.01,2.85 15.72,1 12,1zM11.12,5.88C11.12,5.39 11.52,5 12,5s0.88,0.39 0.88,0.88l0,0.37c1.07,0.19 1.75,0.76 2.16,1.3c0.34,0.44 0.16,1.08 -0.36,1.3C14.32,9 13.9,8.88 13.66,8.57c-0.28,-0.38 -0.78,-0.77 -1.6,-0.77c-0.7,0 -1.81,0.37 -1.81,1.39c0,0.95 0.86,1.31 2.64,1.9c2.4,0.83 3.01,2.05 3.01,3.45c0,2.62 -2.5,3.13 -3.02,3.22l0,0.37c0,0.48 -0.39,0.88 -0.88,0.88s-0.88,-0.39 -0.88,-0.88l0,-0.42c-0.63,-0.15 -1.93,-0.61 -2.69,-2.1c-0.23,-0.44 0.03,-1.02 0.49,-1.2c0.41,-0.16 0.9,-0.01 1.11,0.38c0.32,0.61 0.95,1.37 2.12,1.37c0.93,0 1.98,-0.48 1.98,-1.61c0,-0.96 -0.7,-1.46 -2.28,-2.03c-1.1,-0.39 -3.35,-1.03 -3.35,-3.31c0,-0.1 0.01,-2.4 2.62,-2.96L11.12,5.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_franc.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_franc.xml
deleted file mode 100644
index ac6f2a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_franc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4c0,-0.55 -0.45,-1 -1,-1H8C7.45,3 7,3.45 7,4v12H6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H9v-3h7c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H9V5h8C17.55,5 18,4.55 18,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_lira.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_lira.xml
deleted file mode 100644
index 42913be..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_lira.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15.84l-1.47,0.92C6.86,17.18 6,16.7 6,15.91c0,-0.34 0.18,-0.66 0.47,-0.85L9,13.48v-2.36l-1.47,0.92C6.86,12.46 6,11.98 6,11.19c0,-0.34 0.18,-0.66 0.47,-0.85L9,8.76V4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3.51l2.47,-1.55C14.14,5.54 15,6.02 15,6.81c0,0.34 -0.18,0.66 -0.47,0.85L11,9.87l0.01,2.35l2.46,-1.54c0.67,-0.42 1.53,0.06 1.53,0.85c0,0.34 -0.18,0.66 -0.47,0.85L11,14.59V19c2.47,0 4.52,-1.79 4.93,-4.15c0.08,-0.49 0.49,-0.85 0.98,-0.85c0.61,0 1.09,0.54 1,1.14C17.37,18.46 14.48,21 11,21h-1c-0.55,0 -1,-0.45 -1,-1V15.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_pound.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_pound.xml
deleted file mode 100644
index a32ea7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_pound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.21,17.61c-0.47,-0.24 -1.03,-0.05 -1.31,0.4C15.54,18.61 14.93,19 14,19l-4.9,0c0.83,-1 1.5,-2.34 1.5,-4c0,-0.35 -0.03,-0.69 -0.08,-1L13,14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-3.18,0C9,10.42 8,9.6 8,8c0,-1.93 1.57,-3.5 3.5,-3.5c1.2,0 2.26,0.61 2.89,1.53c0.27,0.4 0.77,0.59 1.22,0.4c0.6,-0.25 0.8,-0.99 0.43,-1.53c-0.99,-1.45 -2.66,-2.4 -4.54,-2.4C8.46,2.5 6,4.96 6,8c0,1.78 0.79,2.9 1.49,4L7,12c-0.55,0 -1,0.45 -1,1s0.45,1 1,1l1.47,0c0.08,0.31 0.13,0.64 0.13,1c0,1.9 -1.29,3.11 -2.06,3.66C6.2,18.9 6,19.29 6,19.71v0C6,20.42 6.58,21 7.29,21H14c1.55,0 2.95,-0.76 3.63,-2C17.91,18.49 17.72,17.86 17.21,17.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_ruble.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_ruble.xml
deleted file mode 100644
index 7b4fa60..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_ruble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,21c0.55,0 1,-0.45 1,-1v-2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H9v-2h4.5c3.22,0 5.79,-2.76 5.47,-6.04C18.7,5.1 16.14,3 13.26,3l-0.96,0H8C7.45,3 7,3.45 7,4v8H6c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h1v2H6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v2C7,20.55 7.45,21 8,21zM13.5,12H9V5h4.5C15.43,5 17,6.57 17,8.5S15.43,12 13.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_rupee.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_rupee.xml
deleted file mode 100644
index 37a354c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_rupee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,14H9.77l5.1,5.31c0.61,0.64 0.16,1.69 -0.72,1.69c-0.27,0 -0.53,-0.11 -0.72,-0.31L7.4,14.41C7.14,14.15 7,13.79 7,13.43C7,12.64 7.64,12 8.43,12h2.07c1.76,0 3.22,-1.3 3.46,-3L7,9C6.45,9 6,8.55 6,8s0.45,-1 1,-1l6.66,0C13.1,5.82 11.9,5 10.5,5L7,5C6.45,5 6,4.55 6,4s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1l-2.26,0c0.48,0.58 0.84,1.26 1.05,2L17,7c0.55,0 1,0.45 1,1s-0.45,1 -1,1l-1.02,0C15.72,11.8 13.36,14 10.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_yen.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_yen.xml
deleted file mode 100644
index ffa0418..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_yen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.82,3c0.34,0 0.66,0.17 0.84,0.46L12,10.29l4.34,-6.83C16.52,3.17 16.84,3 17.18,3c0.79,0 1.27,0.87 0.84,1.54L13.92,11H17c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1h-4v2h4c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1h-4v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3H7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h4v-2H7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3.08L5.98,4.54C5.55,3.87 6.03,3 6.82,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/currency_yuan.xml b/compose/material/material/icons/generator/raw-icons/rounded/currency_yuan.xml
deleted file mode 100644
index ae79455..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/currency_yuan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c-0.55,0 -1,-0.45 -1,-1v-6H7c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3.72L5.98,4.54C5.55,3.87 6.03,3 6.82,3c0.34,0 0.66,0.17 0.84,0.46L12,10.29l4.34,-6.83C16.52,3.17 16.84,3 17.18,3c0.79,0 1.27,0.87 0.84,1.54L13.28,12H17c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-4v6C13,20.55 12.55,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/curtains.xml b/compose/material/material/icons/generator/raw-icons/rounded/curtains.xml
deleted file mode 100644
index 8169b59..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/curtains.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM8.19,12c2.04,-1.35 3.5,-3.94 3.76,-7h0.09c0.26,3.06 1.72,5.65 3.76,7c-2.04,1.35 -3.5,3.94 -3.76,7h-0.09C11.69,15.94 10.23,13.35 8.19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/curtains_closed.xml b/compose/material/material/icons/generator/raw-icons/rounded/curtains_closed.xml
deleted file mode 100644
index c9c1f8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/curtains_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM11,5h2v14h-2V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/cyclone.xml b/compose/material/material/icons/generator/raw-icons/rounded/cyclone.xml
deleted file mode 100644
index e0fb985..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/cyclone.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4C16,9.79 14.21,8 12,8zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.11L22,6.11c0,-0.46 -0.3,-0.86 -0.74,-0.97C19.23,4.6 16.03,4 12,4C9.85,4 7.89,4.86 6.46,6.24c0.1,-0.65 0.28,-1.69 0.62,-2.96C7.25,2.64 6.78,2 6.11,2h0C5.66,2 5.26,2.3 5.14,2.74C4.6,4.77 4,7.97 4,12c0,2.15 0.86,4.11 2.24,5.54c-0.65,-0.1 -1.69,-0.28 -2.96,-0.62C2.64,16.75 2,17.22 2,17.89v0c0,0.46 0.3,0.86 0.74,0.97C4.77,19.4 7.97,20 12,20c2.15,0 4.11,-0.86 5.54,-2.24c-0.1,0.65 -0.28,1.69 -0.62,2.96c-0.17,0.64 0.3,1.28 0.97,1.28h0c0.46,0 0.86,-0.3 0.97,-0.74C19.4,19.23 20,16.03 20,12c0,-2.15 -0.86,-4.11 -2.24,-5.54c0.65,0.1 1.69,0.28 2.96,0.62C21.36,7.25 22,6.78 22,6.11zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S15.31,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dangerous.xml b/compose/material/material/icons/generator/raw-icons/rounded/dangerous.xml
deleted file mode 100644
index c1e2507..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dangerous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.9,3H9.1C8.57,3 8.06,3.21 7.68,3.59l-4.1,4.1C3.21,8.06 3,8.57 3,9.1v5.8c0,0.53 0.21,1.04 0.59,1.41l4.1,4.1C8.06,20.79 8.57,21 9.1,21h5.8c0.53,0 1.04,-0.21 1.41,-0.59l4.1,-4.1C20.79,15.94 21,15.43 21,14.9V9.1c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.1,-4.1C15.94,3.21 15.43,3 14.9,3zM15.54,15.54L15.54,15.54c-0.39,0.39 -1.02,0.39 -1.41,0L12,13.41l-2.12,2.12c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L10.59,12L8.46,9.88c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0L12,10.59l2.12,-2.12c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L13.41,12l2.12,2.12C15.93,14.51 15.93,15.15 15.54,15.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dark_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/dark_mode.xml
deleted file mode 100644
index 7c2afbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dark_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.01,3.05C6.51,3.54 3,7.36 3,12c0,4.97 4.03,9 9,9c4.63,0 8.45,-3.5 8.95,-8c0.09,-0.79 -0.78,-1.42 -1.54,-0.95c-0.84,0.54 -1.84,0.85 -2.91,0.85c-2.98,0 -5.4,-2.42 -5.4,-5.4c0,-1.06 0.31,-2.06 0.84,-2.89C12.39,3.94 11.9,2.98 11.01,3.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dashboard.xml b/compose/material/material/icons/generator/raw-icons/rounded/dashboard.xml
deleted file mode 100644
index 628af9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13h6c0.55,0 1,-0.45 1,-1L11,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1v8c0,0.55 0.45,1 1,1zM4,21h6c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1L4,15c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM14,21h6c0.55,0 1,-0.45 1,-1v-8c0,-0.55 -0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1v8c0,0.55 0.45,1 1,1zM13,4v4c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L21,4c0,-0.55 -0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dashboard_customize.xml b/compose/material/material/icons/generator/raw-icons/rounded/dashboard_customize.xml
deleted file mode 100644
index 1245804..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dashboard_customize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h6c0.55,0 1,0.45 1,1v6c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1V4C3,3.45 3.45,3 4,3zM14,3h6c0.55,0 1,0.45 1,1v6c0,0.55 -0.45,1 -1,1h-6c-0.55,0 -1,-0.45 -1,-1V4C13,3.45 13.45,3 14,3zM4,13h6c0.55,0 1,0.45 1,1v6c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-6C3,13.45 3.45,13 4,13zM17,13L17,13c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-2C18,13.45 17.55,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/data_array.xml b/compose/material/material/icons/generator/raw-icons/rounded/data_array.xml
deleted file mode 100644
index 9ab09a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/data_array.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5L15,5c0,0.55 0.45,1 1,1h2v12h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2h-2C15.45,4 15,4.45 15,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6V6h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6C4.9,4 4,4.9 4,6v12C4,19.1 4.9,20 6,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/data_exploration.xml b/compose/material/material/icons/generator/raw-icons/rounded/data_exploration.xml
deleted file mode 100644
index f2cf785..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/data_exploration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,1.33 0.26,2.61 0.74,3.77l4.61,-4.62c0.37,-0.37 0.95,-0.39 1.35,-0.06l2.6,2.19L14.58,10H14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-0.58l-3.94,3.93c-0.37,0.37 -0.96,0.39 -1.35,0.05l-2.59,-2.19l-4.4,4.4C5.52,20.26 8.56,22 12,22h8c1.1,0 2,-0.9 2,-2V12zM19.5,20.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.05,20.5 19.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/data_object.xml b/compose/material/material/icons/generator/raw-icons/rounded/data_object.xml
deleted file mode 100644
index e91cbc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/data_object.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7v2c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h0c0.55,0 1,0.45 1,1v2c0,1.66 1.34,3 3,3h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,-0.45 -1,-1v-2c0,-1.3 -0.84,-2.42 -2,-2.83v-0.34C5.16,11.42 6,10.3 6,9V7c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H7C5.34,4 4,5.34 4,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10c-0.55,0 -1,-0.45 -1,-1V7c0,-1.66 -1.34,-3 -3,-3h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2c0.55,0 1,0.45 1,1v2c0,1.3 0.84,2.42 2,2.83v0.34c-1.16,0.41 -2,1.52 -2,2.83v2c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2c1.66,0 3,-1.34 3,-3v-2c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,-0.45 1,-1v-2C22,10.45 21.55,10 21,10L21,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/data_saver_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/data_saver_off.xml
deleted file mode 100644
index 7a0a8be..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/data_saver_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/data_saver_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/data_saver_on.xml
deleted file mode 100644
index 5ff4989..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/data_saver_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11H9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2V9c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1V11zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19zM13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/data_thresholding.xml b/compose/material/material/icons/generator/raw-icons/rounded/data_thresholding.xml
deleted file mode 100644
index 375366f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/data_thresholding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11.38,8.88l1.29,1.29l2.96,-2.96c0.39,-0.39 1.02,-0.39 1.41,0v0c0.39,0.39 0.39,1.02 0,1.41l-3.67,3.67c-0.39,0.39 -1.02,0.39 -1.41,0L10.67,11l-2.3,2.3c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l3,-3C10.35,8.48 10.98,8.48 11.38,8.88zM5,16h1.72L5,17.72V16zM5.84,19l3,-3h1.83l-3,3H5.84zM9.8,19l3,-3h1.62l-3,3H9.8zM13.53,19l3,-3h1.62l-3,3H13.53zM19,19h-1.73L19,17.27V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/data_usage.xml b/compose/material/material/icons/generator/raw-icons/rounded/data_usage.xml
deleted file mode 100644
index a639680..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/data_usage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3.87v0.02c0,0.67 0.45,1.23 1.08,1.43C16.93,6.21 19,8.86 19,12c0,0.52 -0.06,1.01 -0.17,1.49 -0.14,0.64 0.12,1.3 0.69,1.64l0.01,0.01c0.86,0.5 1.98,0.05 2.21,-0.91 0.17,-0.72 0.26,-1.47 0.26,-2.23 0,-4.5 -2.98,-8.32 -7.08,-9.57 -0.95,-0.29 -1.92,0.44 -1.92,1.44zM10.94,18.92c-2.99,-0.43 -5.42,-2.86 -5.86,-5.84 -0.54,-3.6 1.66,-6.77 4.83,-7.76 0.64,-0.19 1.09,-0.76 1.09,-1.43v-0.02c0,-1 -0.97,-1.73 -1.93,-1.44 -4.51,1.38 -7.66,5.86 -6.98,10.96 0.59,4.38 4.13,7.92 8.51,8.51 3.14,0.42 6.04,-0.61 8.13,-2.53 0.74,-0.68 0.61,-1.89 -0.26,-2.39 -0.58,-0.34 -1.3,-0.23 -1.8,0.22 -1.47,1.34 -3.51,2.05 -5.73,1.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dataset.xml b/compose/material/material/icons/generator/raw-icons/rounded/dataset.xml
deleted file mode 100644
index a19cab0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dataset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,17H7v-4h4V17zM11,11H7V7h4V11zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dataset_linked.xml b/compose/material/material/icons/generator/raw-icons/rounded/dataset_linked.xml
deleted file mode 100644
index 632ff14..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dataset_linked.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.09,17H7v-4h3.69c0.95,-0.63 2.09,-1 3.31,-1h6c0.34,0 0.67,0.04 1,0.09V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h3.81C8.3,20.12 8,19.09 8,18C8,17.66 8.04,17.33 8.09,17zM13,7h4v4h-4V7zM7,7h4v4H7V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,17.66c0.16,-0.98 1.09,-1.66 2.08,-1.66L15,16c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1l-0.83,0c-2.09,0 -3.95,1.53 -4.15,3.61C9.79,19.99 11.66,22 14,22h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1C12.79,20 11.82,18.91 12.03,17.66z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.83,14L19,14c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1l0.89,0c1,0 1.92,0.68 2.08,1.66C22.18,18.91 21.21,20 20,20h-1c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1c2.34,0 4.21,-2.01 3.98,-4.39C23.78,15.53 21.92,14 19.83,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19h4c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v0C14,18.55 14.45,19 15,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/date_range.xml b/compose/material/material/icons/generator/raw-icons/rounded/date_range.xml
deleted file mode 100644
index ccabff0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/date_range.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-1L18,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L8,4L8,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,4c-1.11,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,19c0,0.55 -0.45,1 -1,1L6,20c-0.55,0 -1,-0.45 -1,-1L5,9h14v10zM7,11h2v2L7,13zM11,11h2v2h-2zM15,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/deblur.xml b/compose/material/material/icons/generator/raw-icons/rounded/deblur.xml
deleted file mode 100644
index 3c8ea52..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/deblur.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v18c4.97,0 9,-4.03 9,-9C21,7.03 16.97,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/deck.xml b/compose/material/material/icons/generator/raw-icons/rounded/deck.xml
deleted file mode 100644
index 496bce5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/deck.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.41,9c0.49,0 0.69,-0.63 0.29,-0.91L13.15,2.8c-0.69,-0.48 -1.61,-0.48 -2.29,0L3.3,8.09C2.9,8.37 3.1,9 3.59,9H11v12c0,0.55 0.45,1 1,1s1,-0.45 1,-1V9H20.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16H4.9l-0.57,-3.02c-0.1,-0.54 -0.62,-0.9 -1.17,-0.8c-0.54,0.1 -0.9,0.62 -0.8,1.17L3,16.74V21c0,0.55 0.45,1 1,1h0.01c0.55,0 1,-0.44 1,-0.99L5.02,18H7v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4C9,16.45 8.55,16 8,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.84,12.18c-0.54,-0.1 -1.06,0.26 -1.17,0.8L19.1,16H16c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h1.98l0.02,3.01c0,0.55 0.45,0.99 1,0.99H20c0.55,0 1,-0.45 1,-1v-4.26l0.64,-3.39C21.74,12.81 21.38,12.28 20.84,12.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dehaze.xml b/compose/material/material/icons/generator/raw-icons/rounded/dehaze.xml
deleted file mode 100644
index 14ed5b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dehaze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,16c-0.55,0 -1,0.45 -1,1zM2,12c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,11c-0.55,0 -1,0.45 -1,1zM2,7c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/delete.xml b/compose/material/material/icons/generator/raw-icons/rounded/delete.xml
deleted file mode 100644
index ba98203..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V9c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2v10zM18,4h-2.5l-0.71,-0.71c-0.18,-0.18 -0.44,-0.29 -0.7,-0.29H9.91c-0.26,0 -0.52,0.11 -0.7,0.29L8.5,4H6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/delete_forever.xml b/compose/material/material/icons/generator/raw-icons/rounded/delete_forever.xml
deleted file mode 100644
index cb56a07..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/delete_forever.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6V19zM9.17,12.59c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0L12,12.59l1.41,-1.41c0.39,-0.39 1.02,-0.39 1.41,0s0.39,1.02 0,1.41L13.41,14l1.41,1.41c0.39,0.39 0.39,1.02 0,1.41s-1.02,0.39 -1.41,0L12,15.41l-1.41,1.41c-0.39,0.39 -1.02,0.39 -1.41,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L10.59,14L9.17,12.59zM18,4h-2.5l-0.71,-0.71C14.61,3.11 14.35,3 14.09,3H9.91c-0.26,0 -0.52,0.11 -0.7,0.29L8.5,4H6C5.45,4 5,4.45 5,5s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1S18.55,4 18,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/delete_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/delete_outline.xml
deleted file mode 100644
index c12835b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/delete_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,9c0,-1.1 -0.9,-2 -2,-2L8,7c-1.1,0 -2,0.9 -2,2v10zM9,9h6c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1L9,19c-0.55,0 -1,-0.45 -1,-1v-8c0,-0.55 0.45,-1 1,-1zM15.5,4l-0.71,-0.71c-0.18,-0.18 -0.44,-0.29 -0.7,-0.29L9.91,3c-0.26,0 -0.52,0.11 -0.7,0.29L8.5,4L6,4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/delete_sweep.xml b/compose/material/material/icons/generator/raw-icons/rounded/delete_sweep.xml
deleted file mode 100644
index cbf7fd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/delete_sweep.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,16h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM16,8h5c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM16,12h4c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM3,18c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2L13,8L3,8v10zM13,5h-2l-0.71,-0.71c-0.18,-0.18 -0.44,-0.29 -0.7,-0.29L6.41,4c-0.26,0 -0.52,0.11 -0.7,0.29L5,5L3,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/delivery_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/delivery_dining.xml
deleted file mode 100644
index b5a51a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/delivery_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2.65L13.52,14H10v-4c0,-0.55 -0.45,-1 -1,-1H6c-2.21,0 -4,1.79 -4,4v2c0,0.55 0.45,1 1,1h1c0,1.66 1.34,3 3,3s3,-1.34 3,-3h3.52c0.61,0 1.18,-0.28 1.56,-0.75l3.48,-4.35C18.85,10.54 19,10.1 19,9.65V7zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h3c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H6C5.45,8 5,7.55 5,7v0C5,6.45 5.45,6 6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1C20,16.55 19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/density_large.xml b/compose/material/material/icons/generator/raw-icons/rounded/density_large.xml
deleted file mode 100644
index a77cfd5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/density_large.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5h16c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4C3,4.55 3.45,5 4,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19H4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1C21,19.45 20.55,19 20,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/density_medium.xml b/compose/material/material/icons/generator/raw-icons/rounded/density_medium.xml
deleted file mode 100644
index 8eaa688..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/density_medium.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5h16c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4C3,4.55 3.45,5 4,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19H4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1C21,19.45 20.55,19 20,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11H4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1C21,11.45 20.55,11 20,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/density_small.xml b/compose/material/material/icons/generator/raw-icons/rounded/density_small.xml
deleted file mode 100644
index 979bd7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/density_small.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3L3,3c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4C3.45,2 3,2.45 3,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22h16c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v0C3,21.55 3.45,22 4,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h16c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v0C3,15.55 3.45,16 4,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10h16c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4C3.45,8 3,8.45 3,9v0C3,9.55 3.45,10 4,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/departure_board.xml b/compose/material/material/icons/generator/raw-icons/rounded/departure_board.xml
deleted file mode 100644
index d1c911a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/departure_board.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,1.13c-2.94,-0.55 -5.63,0.75 -7.12,2.92 0.01,-0.01 0.01,-0.02 0.02,-0.03C9.84,4 9.42,4 9,4c-4.42,0 -8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22v1.28c0,0.83 0.67,1.5 1.5,1.5S5,22.33 5,21.5L5,21h8v0.5c0,0.82 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5v-1.28c0.61,-0.55 1,-1.34 1,-2.22v-3.08c3.72,-0.54 6.5,-3.98 5.92,-7.97 -0.42,-2.9 -2.7,-5.29 -5.58,-5.82zM4.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5S3.67,16 4.5,16s1.5,0.67 1.5,1.5S5.33,19 4.5,19zM3,13L3,8h6c0,1.96 0.81,3.73 2.11,5L3,13zM13.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,13c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM15.75,4c-0.41,0 -0.75,0.34 -0.75,0.75v3.68c0,0.35 0.19,0.68 0.49,0.86l2.52,1.51c0.34,0.2 0.78,0.09 0.98,-0.24 0.21,-0.34 0.1,-0.79 -0.25,-0.99L16.5,8.25v-3.5c0,-0.41 -0.34,-0.75 -0.75,-0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/description.xml b/compose/material/material/icons/generator/raw-icons/rounded/description.xml
deleted file mode 100644
index 37d99d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/description.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,2.59c-0.38,-0.38 -0.89,-0.59 -1.42,-0.59L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.82,-4.83zM15,18L9,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM15,14L9,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM13,8L13,3.5L18.5,9L14,9c-0.55,0 -1,-0.45 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/deselect.xml b/compose/material/material/icons/generator/raw-icons/rounded/deselect.xml
deleted file mode 100644
index 5866e15..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/deselect.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2H3V13zM7,21h2v-2H7V21zM13,3h-2v2h2V3zM19,3v2h2C21,3.9 20.1,3 19,3zM5,21v-2H3C3,20.1 3.9,21 5,21zM3,17h2v-2H3V17zM11,21h2v-2h-2V21zM19,13h2v-2h-2V13zM19,9h2V7h-2V9zM15,5h2V3h-2V5zM7.83,5L7,4.17V3h2v2H7.83zM19.83,17L19,16.17V15h2v2H19.83zM9,15v-3.17L12.17,15H9zM2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41L4.17,7H3v2h2V7.83l2,2V16c0,0.55 0.45,1 1,1h6.17l2,2H15v2h2v-1.17l2.07,2.07c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51zM17,8c0,-0.55 -0.45,-1 -1,-1H9.83l2,2H15v3.17l2,2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/design_services.xml b/compose/material/material/icons/generator/raw-icons/rounded/design_services.xml
deleted file mode 100644
index 8748efc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/design_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,11.51l1.57,-1.57l-3.75,-3.75l-1.57,1.57L8.35,3.63c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l4.13,4.13L3.15,17.1C3.05,17.2 3,17.32 3,17.46v3.04C3,20.78 3.22,21 3.5,21h3.04c0.13,0 0.26,-0.05 0.35,-0.15l4.62,-4.62l4.13,4.13c1.32,1.32 2.76,0.07 2.83,0l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83L16.24,11.51zM9.18,11.07L5.04,6.94l1.89,-1.9c0,0 0,0 0,0l1.27,1.27L7.73,6.8c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l0.48,-0.48l1.45,1.45L9.18,11.07zM17.06,18.96l-4.13,-4.13l1.9,-1.9l1.45,1.45l-0.48,0.48c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l0.48,-0.48l1.27,1.27L17.06,18.96z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.47,-0.47 -1.12,-0.29 -1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/desk.xml b/compose/material/material/icons/generator/raw-icons/rounded/desk.xml
deleted file mode 100644
index 31f4cda..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/desk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7v10c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V8h10v9c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h4v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1H3C2.45,6 2,6.45 2,7zM20,8v2h-4V8H20zM16,14v-2h4v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/desktop_access_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/desktop_access_disabled.xml
deleted file mode 100644
index 07985f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/desktop_access_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.31,2c-0.39,0.39 -0.39,1.02 0,1.41l0.69,0.68L1,16c0,1.1 0.9,2 2,2h7v2L9,20c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-2h0.9l5.29,5.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L1.72,2C1.33,1.61 0.7,1.61 0.31,2zM2.99,15L2.99,6.09L12.9,16L3.99,16c-0.55,0 -1,-0.45 -1,-1zM4.55,2l2,2L20,4c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1h-1.45l2,2h0.44c1.1,0 2,-0.9 2,-2L22.99,4c0,-1.1 -0.9,-2 -2,-2L4.55,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/desktop_mac.xml b/compose/material/material/icons/generator/raw-icons/rounded/desktop_mac.xml
deleted file mode 100644
index 6ccde2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/desktop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7l-1.63,2.45c-0.44,0.66 0.03,1.55 0.83,1.55h5.6c0.8,0 1.28,-0.89 0.83,-1.55L14,18h7c1.1,0 2,-0.9 2,-2L23,4c0,-1.1 -0.9,-2 -2,-2zM21,14L3,14L3,5c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/desktop_windows.xml b/compose/material/material/icons/generator/raw-icons/rounded/desktop_windows.xml
deleted file mode 100644
index 66b96fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/desktop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7v2L9,20c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-2h7c1.1,0 2,-0.9 2,-2L23,4c0,-1.1 -0.9,-2 -2,-2zM20,16L4,16c-0.55,0 -1,-0.45 -1,-1L3,5c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/details.xml b/compose/material/material/icons/generator/raw-icons/rounded/details.xml
deleted file mode 100644
index 45636b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/details.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.13,4.57l-8.3,14.94C2.46,20.18 2.94,21 3.7,21h16.6c0.76,0 1.24,-0.82 0.87,-1.49l-8.3,-14.94C12.49,3.89 11.51,3.89 11.13,4.57zM13,8.92L18.6,19H13V8.92zM11,8.92V19H5.4L11,8.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/developer_board.xml b/compose/material/material/icons/generator/raw-icons/rounded/developer_board.xml
deleted file mode 100644
index c381e5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/developer_board.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8c0,-0.55 -0.45,-1 -1,-1h-1L20,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-2h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-2h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1L20,9h1c0.55,0 1,-0.45 1,-1zM17,19L5,19c-0.55,0 -1,-0.45 -1,-1L4,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM6.5,13h4c0.28,0 0.5,0.22 0.5,0.5v3c0,0.28 -0.22,0.5 -0.5,0.5h-4c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5zM12.5,7h3c0.28,0 0.5,0.22 0.5,0.5v2c0,0.28 -0.22,0.5 -0.5,0.5h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-2c0,-0.28 0.22,-0.5 0.5,-0.5zM6.5,7h4c0.28,0 0.5,0.22 0.5,0.5v4c0,0.28 -0.22,0.5 -0.5,0.5h-4c-0.28,0 -0.5,-0.22 -0.5,-0.5v-4c0,-0.28 0.22,-0.5 0.5,-0.5zM12.5,11h3c0.28,0 0.5,0.22 0.5,0.5v5c0,0.28 -0.22,0.5 -0.5,0.5h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-5c0,-0.28 0.22,-0.5 0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/developer_board_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/developer_board_off.xml
deleted file mode 100644
index e58ffb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/developer_board_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,5H18v10.17L19.83,17H21c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1v-2h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1V9h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1V5c0,-1.1 -0.9,-2 -2,-2H5.83L7.83,5zM15,10h-2c-0.06,0 -0.13,-0.01 -0.19,-0.02l-0.79,-0.79C12.01,9.13 12,9.06 12,9V8c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v1C16,9.55 15.55,10 15,10zM11,8v0.17L9.83,7H10C10.55,7 11,7.45 11,8zM16,12v1.17L13.83,11H15C15.55,11 16,11.45 16,12zM1.39,2.81L1.39,2.81C1,3.2 1,3.83 1.39,4.22l0.61,0.61C2,4.89 2,4.94 2,5v14c0,1.1 0.9,2 2,2h14c0.06,0 0.11,0 0.16,-0.01l1.61,1.61c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L2.81,2.81C2.42,2.42 1.78,2.42 1.39,2.81zM4,19V6.83l2,2V11c0,0.55 0.45,1 1,1h2.17l1.02,1.02C10.13,13.01 10.06,13 10,13H7c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-2c0,-0.06 -0.01,-0.13 -0.02,-0.19L12,14.83v0.46V16c0,0.55 0.45,1 1,1h0.38h0.8l2,2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/developer_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/developer_mode.xml
deleted file mode 100644
index a12379e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/developer_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1L19,3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1c-1.1,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L7,5zM16.12,15.88l3.17,-3.17c0.39,-0.39 0.39,-1.02 0,-1.41l-3.17,-3.17c-0.39,-0.39 -1.03,-0.39 -1.42,0 -0.39,0.39 -0.39,1.02 0,1.41L17.17,12l-2.47,2.47c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.03,0.39 1.42,0zM9.29,14.46L6.83,12l2.46,-2.46c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.03,-0.39 -1.42,0L4.7,11.3c-0.39,0.39 -0.39,1.02 0,1.41l3.17,3.17c0.39,0.39 1.03,0.39 1.42,0 0.4,-0.39 0.39,-1.03 0,-1.42zM17,19L7,19v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/device_hub.xml b/compose/material/material/icons/generator/raw-icons/rounded/device_hub.xml
deleted file mode 100644
index f88bd59..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/device_hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16l-4,-4V8.82c1.35,-0.49 2.26,-1.89 1.93,-3.46 -0.25,-1.18 -1.23,-2.12 -2.42,-2.32C10.63,2.73 9,4.17 9,6c0,1.3 0.84,2.4 2,2.82V12l-4,4H4c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-2.05l4,-4.2 4,4.2V20c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/device_thermostat.xml b/compose/material/material/icons/generator/raw-icons/rounded/device_thermostat.xml
deleted file mode 100644
index 06fdc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/device_thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,15.37 16.21,13.91 15,13zM11,11V5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h-1v1h1v1v1h-1v1h1v1H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/device_unknown.xml b/compose/material/material/icons/generator/raw-icons/rounded/device_unknown.xml
deleted file mode 100644
index f448f12..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/device_unknown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14zM11,16h2v2h-2zM9.52,10.19h0.13c0.33,0 0.59,-0.23 0.7,-0.54 0.24,-0.69 0.91,-1.21 1.66,-1.21 0.93,0 1.75,0.82 1.75,1.75 0,1.32 -1.49,1.55 -2.23,2.82h-0.01c-0.08,0.14 -0.14,0.29 -0.2,0.45 -0.01,0.02 -0.02,0.03 -0.02,0.05 -0.01,0.02 -0.01,0.04 -0.01,0.05 -0.1,0.31 -0.16,0.66 -0.16,1.08h1.76c0,-0.25 0.04,-0.47 0.12,-0.67 0.54,-1.47 2.77,-1.86 2.48,-4.18 -0.19,-1.55 -1.43,-2.84 -2.98,-3.04 -1.77,-0.23 -3.29,0.78 -3.81,2.3 -0.2,0.56 0.23,1.14 0.82,1.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/devices.xml b/compose/material/material/icons/generator/raw-icons/rounded/devices.xml
deleted file mode 100644
index d7dbff9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,4c-1.1,0 -2,0.9 -2,2v11h-0.5c-0.83,0 -1.5,0.67 -1.5,1.5S0.67,20 1.5,20L14,20v-3L4,17L4,7zM23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/devices_fold.xml b/compose/material/material/icons/generator/raw-icons/rounded/devices_fold.xml
deleted file mode 100644
index 2eeceae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/devices_fold.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-3c0,-1.43 -1.47,-2.4 -2.79,-1.84l-3,1.29C10.48,2.76 10,3.49 10,4.29V19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,19h-5.33l1.12,-0.48C16.52,18.2 17,17.48 17,16.68V5h3V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/devices_other.xml b/compose/material/material/icons/generator/raw-icons/rounded/devices_other.xml
deleted file mode 100644
index a8babc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/devices_other.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,18c-0.55,0 -1,-0.45 -1,-1L3,7zM12,12h-2c-0.55,0 -1,0.45 -1,1v0.78c-0.61,0.55 -1,1.33 -1,2.22 0,0.89 0.39,1.67 1,2.22L9,19c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-0.78c0.61,-0.55 1,-1.34 1,-2.22s-0.39,-1.67 -1,-2.22L13,13c0,-0.55 -0.45,-1 -1,-1zM11,17.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM22,8h-6c-0.5,0 -1,0.5 -1,1v10c0,0.5 0.5,1 1,1h6c0.5,0 1,-0.5 1,-1L23,9c0,-0.5 -0.5,-1 -1,-1zM21,18h-4v-8h4v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dialer_sip.xml b/compose/material/material/icons/generator/raw-icons/rounded/dialer_sip.xml
deleted file mode 100644
index 1455e28..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dialer_sip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,8c0.28,0 0.5,-0.22 0.5,-0.5v-4c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5v4c0,0.28 0.22,0.5 0.5,0.5zM12.5,7c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h1.95c0.3,0 0.55,-0.25 0.55,-0.55v-1.9c0,-0.3 -0.25,-0.55 -0.55,-0.55L13,5L13,4h1.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5h-1.95c-0.3,0 -0.55,0.25 -0.55,0.55v1.89c0,0.31 0.25,0.56 0.55,0.56L14,6v1h-1.5zM20.45,3h-1.89c-0.31,0 -0.56,0.25 -0.56,0.55L18,7.5c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5L19,6h1.45c0.3,0 0.55,-0.25 0.55,-0.55v-1.9c0,-0.3 -0.25,-0.55 -0.55,-0.55zM20,5h-1L19,4h1v1zM19.21,15.27l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.04 0.57,-1.64l-0.29,-2.52c-0.11,-1.01 -0.97,-1.78 -1.98,-1.78L5.02,3.01c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1 -0.76,-1.86 -1.77,-1.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dialpad.xml b/compose/material/material/icons/generator/raw-icons/rounded/dialpad.xml
deleted file mode 100644
index a9a5544..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dialpad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/diamond.xml b/compose/material/material/icons/generator/raw-icons/rounded/diamond.xml
deleted file mode 100644
index b93bc65..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/diamond.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.16,3l-0.32,0l-2.63,5.25l5.58,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.46,8.25h5.16l-2.07,-4.14C19.21,3.43 18.52,3 17.76,3h-3.93L16.46,8.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.38,9.75l-8.63,0l0,10.35z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,20.1l0,-10.35l-8.63,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.54,8.25L10.16,3H6.24C5.48,3 4.79,3.43 4.45,4.11L2.38,8.25H7.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/difference.xml b/compose/material/material/icons/generator/raw-icons/rounded/difference.xml
deleted file mode 100644
index f88c93d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/difference.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7c0.55,0 1,0.45 1,1v13h13c0.55,0 1,0.45 1,1s-0.45,1 -1,1H4c-1.1,0 -2,-0.9 -2,-2V8C2,7.45 2.45,7 3,7zM15.59,1.59C15.21,1.21 14.7,1 14.17,1H8C6.9,1 6.01,1.9 6.01,3L6,17c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V7.83c0,-0.53 -0.21,-1.04 -0.59,-1.41L15.59,1.59zM15.5,15h-4c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C16.5,14.55 16.05,15 15.5,15zM15.5,9h-1v1c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V9h-1c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h1V6c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v1h1c0.55,0 1,0.45 1,1v0C16.5,8.55 16.05,9 15.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/dining.xml
deleted file mode 100644
index 36bcfe4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM11,10.3c0,0.93 -0.64,1.71 -1.5,1.93v6.02C9.5,18.66 9.16,19 8.75,19h0C8.34,19 8,18.66 8,18.25v-6.02c-0.86,-0.22 -1.5,-1 -1.5,-1.93V6.5C6.5,6.22 6.72,6 7,6s0.5,0.22 0.5,0.5V9h0.75V6.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V9H10V6.5C10,6.22 10.23,6 10.5,6C10.78,6 11,6.22 11,6.5V10.3zM15.58,12.59l-0.08,0.03v5.63c0,0.41 -0.34,0.75 -0.75,0.75h0C14.34,19 14,18.66 14,18.25v-5.63l-0.08,-0.04c-0.97,-0.47 -1.67,-1.7 -1.67,-3.18c0,-1.88 1.13,-3.4 2.5,-3.4c1.38,0 2.5,1.53 2.5,3.41C17.25,10.89 16.55,12.12 15.58,12.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dinner_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/dinner_dining.xml
deleted file mode 100644
index 233b6dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dinner_dining.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.85,19.85l1,1C3.95,20.95 4.07,21 4.21,21h15.59c0.13,0 0.26,-0.05 0.35,-0.15l1,-1c0.31,-0.31 0.09,-0.85 -0.35,-0.85H3.21C2.76,19 2.54,19.54 2.85,19.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18l16.97,0c0,0 0,0 0,0c0.29,-3.26 -2.28,-6 -5.48,-6c-2.35,0 -4.35,1.48 -5.14,3.55C8.94,15.32 8.48,15.17 8,15.08V9h1.75C10.99,9 12,7.99 12,6.75v0h8.25C20.66,6.75 21,6.41 21,6s-0.34,-0.75 -0.75,-0.75H12v0C12,4.01 10.99,3 9.75,3h-6C3.34,3 3,3.34 3,3.75S3.34,4.5 3.75,4.5H4v0.75H3.75C3.34,5.25 3,5.59 3,6s0.34,0.75 0.75,0.75H4V7.5H3.75C3.34,7.5 3,7.84 3,8.25S3.34,9 3.75,9H4v7.39C3.56,16.85 3.22,17.39 3,18zM8,4.5h2v0.75H8V4.5zM8,6.75h2V7.5H8V6.75zM5.5,4.5h1v0.75h-1V4.5zM5.5,6.75h1V7.5h-1V6.75zM5.5,9h1v6.06c-0.35,0.06 -0.68,0.17 -1,0.3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions.xml
deleted file mode 100644
index 2594458..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,11.29l-9,-9c-0.39,-0.39 -1.02,-0.39 -1.41,0l-9,9c-0.39,0.39 -0.39,1.02 0,1.41l9,9c0.39,0.39 1.02,0.39 1.41,0l9,-9c0.39,-0.38 0.39,-1.01 0,-1.41zM14,14.5V12h-4v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h5V7.5l3.15,3.15c0.2,0.2 0.2,0.51 0,0.71L14,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_bike.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_bike.xml
deleted file mode 100644
index 36ef688..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_bike.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM5,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5zM10.8,10.5l2.4,-2.4 0.8,0.8c1.06,1.06 2.38,1.78 3.96,2.02 0.6,0.09 1.14,-0.39 1.14,-1 0,-0.49 -0.37,-0.91 -0.85,-0.99 -1.11,-0.18 -2.02,-0.71 -2.75,-1.43l-1.9,-1.9c-0.5,-0.4 -1,-0.6 -1.6,-0.6s-1.1,0.2 -1.4,0.6L7.8,8.4c-0.4,0.4 -0.6,0.9 -0.6,1.4 0,0.6 0.2,1.1 0.6,1.4L11,14v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4.4c0,-0.52 -0.2,-1.01 -0.55,-1.38L10.8,10.5zM19,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM19,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_boat.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_boat.xml
deleted file mode 100644
index 0f7a37e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_boat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21c-1.19,0 -2.38,-0.35 -3.47,-0.98c-0.33,-0.19 -0.73,-0.19 -1.07,0c-2.17,1.26 -4.76,1.26 -6.93,0c-0.33,-0.19 -0.73,-0.19 -1.07,0C6.38,20.65 5.19,21 4,21H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1c1.38,0 2.74,-0.35 4,-0.99c2.52,1.29 5.48,1.29 8,0c1.26,0.65 2.62,0.99 4,0.99h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM3.95,19H4c1.27,0 2.42,-0.55 3.33,-1.33c0.39,-0.34 0.95,-0.34 1.34,0C9.58,18.45 10.73,19 12,19s2.42,-0.55 3.33,-1.33c0.39,-0.34 0.95,-0.34 1.34,0C17.58,18.45 18.73,19 20,19h0.05l1.9,-6.68c0.11,-0.37 0.04,-1.06 -0.66,-1.28L20,10.62V6c0,-1.1 -0.9,-2 -2,-2h-3V2c0,-0.55 -0.45,-1 -1,-1h-4C9.45,1 9,1.45 9,2v2H6C4.9,4 4,4.9 4,6v4.62l-1.29,0.42c-0.63,0.19 -0.81,0.84 -0.66,1.28L3.95,19zM6,6h12v3.97L12.62,8.2c-0.41,-0.13 -0.84,-0.13 -1.25,0L6,9.97V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_boat_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_boat_filled.xml
deleted file mode 100644
index 0f7a37e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_boat_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21c-1.19,0 -2.38,-0.35 -3.47,-0.98c-0.33,-0.19 -0.73,-0.19 -1.07,0c-2.17,1.26 -4.76,1.26 -6.93,0c-0.33,-0.19 -0.73,-0.19 -1.07,0C6.38,20.65 5.19,21 4,21H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1c1.38,0 2.74,-0.35 4,-0.99c2.52,1.29 5.48,1.29 8,0c1.26,0.65 2.62,0.99 4,0.99h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM3.95,19H4c1.27,0 2.42,-0.55 3.33,-1.33c0.39,-0.34 0.95,-0.34 1.34,0C9.58,18.45 10.73,19 12,19s2.42,-0.55 3.33,-1.33c0.39,-0.34 0.95,-0.34 1.34,0C17.58,18.45 18.73,19 20,19h0.05l1.9,-6.68c0.11,-0.37 0.04,-1.06 -0.66,-1.28L20,10.62V6c0,-1.1 -0.9,-2 -2,-2h-3V2c0,-0.55 -0.45,-1 -1,-1h-4C9.45,1 9,1.45 9,2v2H6C4.9,4 4,4.9 4,6v4.62l-1.29,0.42c-0.63,0.19 -0.81,0.84 -0.66,1.28L3.95,19zM6,6h12v3.97L12.62,8.2c-0.41,-0.13 -0.84,-0.13 -1.25,0L6,9.97V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_bus.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_bus.xml
deleted file mode 100644
index a53139b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_bus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16c0,0.88 0.39,1.67 1,2.22v1.28c0,0.83 0.67,1.5 1.5,1.5S8,20.33 8,19.5L8,19h8v0.5c0,0.82 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5v-1.28c0.61,-0.55 1,-1.34 1,-2.22L20,6c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11L6,11L6,6h12v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_bus_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_bus_filled.xml
deleted file mode 100644
index a14477d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_bus_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5c0,0.95 0.38,1.81 1,2.44v1.56C5,20.33 5.67,21 6.5,21h0C7.33,21 8,20.33 8,19.5V19h8v0.5c0,0.82 0.67,1.5 1.5,1.5h0c0.82,0 1.5,-0.67 1.5,-1.5v-1.56c0.62,-0.63 1,-1.49 1,-2.44V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10H6V7h12V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_car.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_car.xml
deleted file mode 100644
index 0210bd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_car.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11c-0.66,0 -1.21,0.42 -1.42,1.01l-1.97,5.67c-0.07,0.21 -0.11,0.43 -0.11,0.66v7.16c0,0.83 0.67,1.5 1.5,1.5S6,20.33 6,19.5L6,19h12v0.5c0,0.82 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5v-7.16c0,-0.22 -0.04,-0.45 -0.11,-0.66l-1.97,-5.67zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.27,-3.82c0.14,-0.4 0.52,-0.68 0.95,-0.68h9.56c0.43,0 0.81,0.28 0.95,0.68L19,11L5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_car_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_car_filled.xml
deleted file mode 100644
index fbfe158..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_car_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11C5.84,5 5.29,5.42 5.08,6.01L3,12v7.5C3,20.33 3.67,21 4.5,21h0C5.33,21 6,20.33 6,19.5V19h12v0.5c0,0.82 0.67,1.5 1.5,1.5h0c0.82,0 1.5,-0.67 1.5,-1.5V12L18.92,6.01zM7.5,16C6.67,16 6,15.33 6,14.5S6.67,13 7.5,13S9,13.67 9,14.5S8.33,16 7.5,16zM16.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,16 16.5,16zM5.81,10l1.04,-3h10.29l1.04,3H5.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_off.xml
deleted file mode 100644
index 3ab39fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,11.29l-9,-9c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.21,5.38L13,10.17l0,-2.67l3.15,3.15c0.2,0.2 0.2,0.51 0,0.71l-0.98,0.98l3.45,3.45l3.09,-3.09C22.09,12.32 22.09,11.69 21.71,11.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.79,6.79L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l3.28,3.28l-3.09,3.09c-0.39,0.39 -0.39,1.02 0,1.41l9,9c0.39,0.39 1.02,0.39 1.41,0l3.09,-3.09l3.28,3.28c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L6.79,6.79zM9.99,14c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.05 0.02,-0.1 0.03,-0.15l1.97,1.97V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_railway.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_railway.xml
deleted file mode 100644
index 5af9866..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_railway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,5c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10.5zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM18,10L6,10L6,5h12v5zM4,15.5C4,17.43 5.57,19 7.5,19l-1.14,1.15c-0.32,0.31 -0.1,0.85 0.35,0.85h10.58c0.45,0 0.67,-0.54 0.35,-0.85L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,5c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10.5zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM18,10L6,10L6,5h12v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_railway_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_railway_filled.xml
deleted file mode 100644
index 5893b91..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_railway_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19l-1.21,0.81C6.11,19.93 6,20.13 6,20.35v0C6,20.71 6.29,21 6.65,21h10.7c0.36,0 0.65,-0.29 0.65,-0.65v0c0,-0.22 -0.11,-0.42 -0.29,-0.54L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S11.17,13 12,13s1.5,0.67 1.5,1.5S12.83,16 12,16zM18,10H6V7h12V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_run.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_run.xml
deleted file mode 100644
index 3a823a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_run.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,5.48c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM10.32,17.48l0.57,-2.5 2.1,2v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5.64c0,-0.55 -0.22,-1.07 -0.62,-1.45l-1.48,-1.41 0.6,-3c1.07,1.24 2.62,2.13 4.36,2.41 0.6,0.09 1.14,-0.39 1.14,-1 0,-0.49 -0.36,-0.9 -0.85,-0.98 -1.52,-0.25 -2.78,-1.15 -3.45,-2.33l-1,-1.6c-0.4,-0.6 -1,-1 -1.7,-1 -0.3,0 -0.5,0.1 -0.8,0.1L7.21,7.76c-0.74,0.32 -1.22,1.04 -1.22,1.85v2.37c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2.4l1.8,-0.7 -1.6,8.1 -3.92,-0.8c-0.54,-0.11 -1.07,0.24 -1.18,0.78L3.09,17c-0.11,0.54 0.24,1.07 0.78,1.18l4.11,0.82c1.06,0.21 2.1,-0.46 2.34,-1.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_subway.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_subway.xml
deleted file mode 100644
index bb4bf7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_subway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.42,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19l-1.15,1.15c-0.31,0.31 -0.09,0.85 0.36,0.85L17.3,21c0.45,0 0.67,-0.54 0.35,-0.85L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,11L6,11L6,6h5v5zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11h-5L13,6h5v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_subway_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_subway_filled.xml
deleted file mode 100644
index aaf5774..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_subway_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19l-1.21,0.81C6.11,19.93 6,20.13 6,20.35v0C6,20.71 6.29,21 6.65,21h10.7c0.36,0 0.65,-0.29 0.65,-0.65v0c0,-0.22 -0.11,-0.42 -0.29,-0.54L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM11,10H6V7h5V10zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_transit.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_transit.xml
deleted file mode 100644
index bb4bf7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_transit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.42,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19l-1.15,1.15c-0.31,0.31 -0.09,0.85 0.36,0.85L17.3,21c0.45,0 0.67,-0.54 0.35,-0.85L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,11L6,11L6,6h5v5zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11h-5L13,6h5v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_transit_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_transit_filled.xml
deleted file mode 100644
index aaf5774..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_transit_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19l-1.21,0.81C6.11,19.93 6,20.13 6,20.35v0C6,20.71 6.29,21 6.65,21h10.7c0.36,0 0.65,-0.29 0.65,-0.65v0c0,-0.22 -0.11,-0.42 -0.29,-0.54L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM11,10H6V7h5V10zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/directions_walk.xml b/compose/material/material/icons/generator/raw-icons/rounded/directions_walk.xml
deleted file mode 100644
index adfca41..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/directions_walk.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.8,8.9L7.24,21.81c-0.13,0.61 0.35,1.19 0.98,1.19h0.08c0.47,0 0.87,-0.32 0.98,-0.78L10.9,15l2.1,2v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5.64c0,-0.55 -0.22,-1.07 -0.62,-1.45L12.9,13.5l0.6,-3c1.07,1.24 2.62,2.13 4.36,2.41 0.6,0.09 1.14,-0.39 1.14,-1 0,-0.49 -0.36,-0.9 -0.85,-0.98 -1.52,-0.25 -2.78,-1.15 -3.45,-2.33l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L7.22,7.78C6.48,8.1 6,8.82 6,9.63V12c0,0.55 0.45,1 1,1s1,-0.45 1,-1V9.6l1.8,-0.7"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dirty_lens.xml b/compose/material/material/icons/generator/raw-icons/rounded/dirty_lens.xml
deleted file mode 100644
index 4b4694d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dirty_lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17l-1.24,-1.35C15.22,3.24 14.68,3 14.12,3H9.88c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM16.66,16.58c-1.14,1.86 -3,-1.03 -3.81,0.09c-0.39,0.57 -0.09,1.49 0.13,2.33c0,0.47 -0.38,0.85 -0.85,0.85c-0.47,0 -0.86,-0.38 -0.86,-0.85c0.14,-0.98 0.42,-2.05 -0.16,-2.43c-0.89,-0.59 -1.27,2.06 -2.8,1.35c-1.39,-1.12 1.05,-1.29 0.5,-3.27c-0.22,-0.79 -2.28,0.36 -2.4,-1.24c-0.08,-1 1.49,-0.74 1.51,-1.49c0.03,-0.75 -1.03,-1.05 -0.25,-1.91c0.22,-0.24 0.71,-0.26 0.91,-0.19c0.79,0.27 1.55,1.82 2.51,1.19c1.03,-0.66 -1.88,-2.35 0,-2.86c1.64,-0.44 1.31,2.08 2.65,2.44c1.94,0.52 2.65,-4.55 4.41,-2.33c1.85,2.33 -3.43,2.27 -2.85,4.01c0.34,1.01 2.15,-1.2 2.76,0.53c0.64,1.83 -3.09,0.82 -3.04,1.66C15.08,15.29 17.43,15.01 16.66,16.58zM18.14,18.01c-0.47,0 -0.86,-0.38 -0.86,-0.86s0.38,-0.86 0.86,-0.86c0.47,0 0.86,0.38 0.86,0.86S18.62,18.01 18.14,18.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/disabled_by_default.xml b/compose/material/material/icons/generator/raw-icons/rounded/disabled_by_default.xml
deleted file mode 100644
index 1962a17..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/disabled_by_default.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5zM16.3,16.29L16.3,16.29c-0.39,0.39 -1.02,0.39 -1.41,0L12,13.41l-2.89,2.89c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L10.59,12L7.7,9.11c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0L12,10.59l2.89,-2.88c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L13.41,12l2.89,2.88C16.68,15.27 16.68,15.91 16.3,16.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/disabled_visible.xml b/compose/material/material/icons/generator/raw-icons/rounded/disabled_visible.xml
deleted file mode 100644
index dfeb407..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/disabled_visible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,12.34C22,12.23 22,12.11 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,5.17 3.93,9.43 8.96,9.95c-0.93,-0.73 -1.72,-1.64 -2.32,-2.68C5.9,18 4,15.22 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l5.66,5.66c0.56,-0.4 1.17,-0.73 1.82,-1L7.1,5.69C8.45,4.63 10.15,4 12,4c4.24,0 7.7,3.29 7.98,7.45C20.69,11.67 21.37,11.97 21.99,12.34zM17,13c-3.18,0 -5.9,1.87 -7,4.5c1.1,2.63 3.82,4.5 7,4.5s5.9,-1.87 7,-4.5C22.9,14.87 20.18,13 17,13zM17,20c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C19.5,18.88 18.38,20 17,20zM18.5,17.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5S18.5,16.67 18.5,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/disc_full.xml b/compose/material/material/icons/generator/raw-icons/rounded/disc_full.xml
deleted file mode 100644
index a0b541a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/disc_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16h2v-2h-2v2zM20,8v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L22,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM10,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM10,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/discount.xml b/compose/material/material/icons/generator/raw-icons/rounded/discount.xml
deleted file mode 100644
index 1512ef8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/discount.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.79,21L3,11.21v2c0,0.53 0.21,1.04 0.59,1.41l7.79,7.79c0.78,0.78 2.05,0.78 2.83,0l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83L12.79,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.38,17.41c0.78,0.78 2.05,0.78 2.83,0l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83l-7.79,-7.79C12.25,0.21 11.74,0 11.21,0H5C3.9,0 3,0.9 3,2v6.21c0,0.53 0.21,1.04 0.59,1.41L11.38,17.41zM7.25,3C7.94,3 8.5,3.56 8.5,4.25S7.94,5.5 7.25,5.5S6,4.94 6,4.25S6.56,3 7.25,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/display_settings.xml b/compose/material/material/icons/generator/raw-icons/rounded/display_settings.xml
deleted file mode 100644
index 95b1849..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/display_settings.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v12c0,1.1 0.89,2 2,2h4v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9.75l1.5,0l0,-1.5l-1.5,0l0,-1.25l-1.5,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15l1.5,0l0,-4l-1.5,0l0,1.25l-1.5,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/diversity_1.xml b/compose/material/material/icons/generator/raw-icons/rounded/diversity_1.xml
deleted file mode 100644
index 3e393b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/diversity_1.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,17.58C0.48,17.9 0,18.62 0,19.43L0,20c0,0.55 0.45,1 1,1l3.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,17.04 4.39,17 4,17C3.01,17 2.07,17.21 1.22,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,17.58C21.93,17.21 20.99,17 20,17c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V21l3.5,0c0.55,0 1,-0.45 1,-1l0,-0.57C24,18.62 23.52,17.9 22.78,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,16.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,17.13 6,18.21 6,19.39L6,20c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1l0,-0.61C18,18.21 17.32,17.13 16.24,16.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,10.34 9,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.48,10.86C2.17,10.1 2,9.36 2,8.6C2,6.02 4.02,4 6.6,4c2.68,0 3.82,1.74 5.4,3.59C13.57,5.76 14.7,4 17.4,4C19.98,4 22,6.02 22,8.6c0,0.76 -0.17,1.5 -0.48,2.26c0.65,0.31 1.18,0.82 1.53,1.44C23.65,11.1 24,9.88 24,8.6C24,4.9 21.1,2 17.4,2c-2.09,0 -4.09,0.97 -5.4,2.51C10.69,2.97 8.69,2 6.6,2C2.9,2 0,4.9 0,8.6c0,1.28 0.35,2.5 0.96,3.7C1.31,11.68 1.84,11.17 2.48,10.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/diversity_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/diversity_2.xml
deleted file mode 100644
index 7ed8cbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/diversity_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.77,15.23L10.77,15.23c0.4,-0.4 0.39,-1.07 -0.04,-1.45C8.17,11.47 6.65,9.9 7.07,8.33C7.29,7.52 8.01,7 8.85,7c1.11,0 1.54,0.65 2.68,2h0.93c1.12,-1.31 1.53,-2 2.68,-2c0.87,0 1.55,0.54 1.77,1.32c0.35,-0.04 0.68,-0.06 1,-0.06c0.36,0 0.7,0.03 1.03,0.08C18.7,6.43 17.13,5 15.15,5c-0.12,0 -0.23,0.03 -0.35,0.04c0.26,-0.71 0.31,-1.53 -0.18,-2.43C14.19,1.8 13.4,1.18 12.5,1.04C10.62,0.74 9,2.18 9,4c0,0.37 0.08,0.71 0.2,1.04C9.08,5.03 8.97,5 8.85,5C6.69,5 5,6.69 5,8.85c0,2.23 1.73,4.01 4.4,6.41C9.79,15.62 10.4,15.6 10.77,15.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.52,17.25c-0.54,-0.87 -1.27,-1.23 -2.01,-1.36c0.07,-0.1 0.15,-0.18 0.21,-0.28c1.08,-1.87 0.46,-4.18 -1.41,-5.26c-1.93,-1.11 -4.34,-0.5 -7.75,0.6c-0.51,0.16 -0.79,0.7 -0.66,1.21v0c0.15,0.55 0.73,0.87 1.28,0.69c3.28,-1.06 5.4,-1.6 6.55,-0.45c0.59,0.59 0.68,1.48 0.26,2.21c-0.56,0.96 -1.33,1 -3.07,1.32l-0.47,0.81c0.58,1.62 0.97,2.33 0.39,3.32c-0.53,0.91 -1.61,1.2 -2.53,0.68c-0.06,-0.03 -0.11,-0.09 -0.17,-0.13c-0.3,0.67 -0.64,1.24 -1.03,1.73c0,0.01 0,0.01 0,0.01c1.9,1.24 4.34,0.64 5.46,-1.29c0.06,-0.1 0.09,-0.21 0.14,-0.32c0.22,0.27 0.48,0.51 0.8,0.69c1.58,0.91 3.64,0.23 4.31,-1.55C24.14,19.02 24,18.03 23.52,17.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.1,15.04c-0.72,3.38 -1.32,5.48 -2.89,5.9c-0.81,0.22 -1.62,-0.15 -2.04,-0.88c-0.56,-0.96 -0.2,-1.66 0.39,-3.32L7.1,15.93c-1.7,-0.31 -2.5,-0.33 -3.07,-1.32c-0.53,-0.91 -0.24,-2 0.68,-2.53c0.09,-0.05 0.19,-0.08 0.29,-0.11c-0.27,-0.42 -0.5,-0.87 -0.67,-1.37c-0.24,-0.11 -0.36,-0.16 -0.6,-0.26c-1.88,1.07 -2.51,3.4 -1.43,5.27c0.06,0.1 0.14,0.18 0.21,0.28c-0.75,0.13 -1.48,0.49 -2.01,1.36c-0.48,0.78 -0.62,1.77 -0.3,2.63c0.68,1.78 2.74,2.46 4.31,1.55c0.32,-0.18 0.58,-0.42 0.8,-0.69c0.05,0.11 0.08,0.22 0.14,0.32c1.08,1.87 3.39,2.49 5.26,1.41c1.93,-1.11 2.61,-3.51 3.36,-7.01c0.11,-0.52 -0.21,-1.04 -0.72,-1.17l0,0C12.78,14.14 12.22,14.48 12.1,15.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/diversity_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/diversity_3.xml
deleted file mode 100644
index a37c1ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/diversity_3.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.32,13.01c0.96,0.02 1.85,0.5 2.45,1.34C9.5,15.38 10.71,16 12,16c1.29,0 2.5,-0.62 3.23,-1.66c0.6,-0.84 1.49,-1.32 2.45,-1.34C16.96,11.78 14.08,11 12,11C9.93,11 7.04,11.78 6.32,13.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13L4,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C1,11.66 2.34,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13L20,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C17,11.66 18.34,13 20,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,5.34 9,7C9,8.66 10.34,10 12,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-3.27c-0.77,0 -1.35,0.45 -1.68,0.92C16.01,14.98 14.69,17 12,17c-1.43,0 -3.03,-0.64 -4.05,-2.08C7.56,14.37 6.95,14 6.27,14L3,14c-1.1,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-1.26c1.15,0.8 2.54,1.26 4,1.26s2.85,-0.46 4,-1.26V19c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-3C23,14.9 22.1,14 21,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dns.xml b/compose/material/material/icons/generator/raw-icons/rounded/dns.xml
deleted file mode 100644
index a43abcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dns.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2zM7,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM19,3H5c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2zM7,9c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_disturb.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_alt.xml
deleted file mode 100644
index 3354d6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8 1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12c0,4.4 -3.6,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_off.xml
deleted file mode 100644
index b56b8f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v2h-0.88l4.33,4.33C21.43,15.79 22,13.96 22,12c0,-5.52 -4.48,-10 -10,-10 -1.96,0 -3.79,0.57 -5.33,1.55L14.12,11L17,11zM21.17,20.88L3.12,2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l2.07,2.07C2.66,7.93 2,9.89 2,12c0,5.52 4.48,10 10,10 2.11,0 4.07,-0.66 5.68,-1.78l2.07,2.07c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.39 0.4,-1.02 0.01,-1.41zM7,13v-2h1.46l2,2L7,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_on.xml
deleted file mode 100644
index 68d8599..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM16,13L8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb.xml
deleted file mode 100644
index cb2d8a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.55 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_alt.xml
deleted file mode 100644
index 16a9b46..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8c1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12C20,16.4 16.4,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_off.xml
deleted file mode 100644
index e780447..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v2h-1.17l4.51,4.51C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66L13.83,11H17zM2.1,4.93l1.56,1.56c-1.37,2.07 -2,4.68 -1.48,7.45c0.75,3.95 3.92,7.13 7.88,7.88c2.77,0.52 5.38,-0.1 7.45,-1.48l1.56,1.56c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C1.71,3.91 1.71,4.54 2.1,4.93zM7,11h1.17l2,2H7V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_on.xml
deleted file mode 100644
index 3f1ee44..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM16,13H8c-0.55,0 -1,-0.45 -1,-1l0,0c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1l0,0C17,12.55 16.55,13 16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_on_total_silence.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_on_total_silence.xml
deleted file mode 100644
index c56eab0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_not_disturb_on_total_silence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM12,6c-3.3,0 -6,2.7 -6,6s2.7,6 6,6s6,-2.7 6,-6S15.4,6 12,6zM14,13h-4c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C15,12.55 14.55,13 14,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_not_step.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_not_step.xml
deleted file mode 100644
index b9bbf05..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_not_step.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l7.19,7.19c0.18,0.2 0.18,0.5 -0.01,0.7c-0.1,0.1 -0.23,0.15 -0.35,0.15s-0.26,-0.05 -0.35,-0.15L6.87,11.1c-0.11,0.4 -0.26,0.78 -0.45,1.12l1.4,1.4c0.2,0.2 0.2,0.51 0,0.71c-0.1,0.1 -0.23,0.15 -0.35,0.15s-0.26,-0.05 -0.35,-0.15l-1.27,-1.27c-0.24,0.29 -0.5,0.56 -0.77,0.8l1.28,1.28c0.2,0.2 0.2,0.51 0,0.71C6.26,15.95 6.13,16 6,16s-0.26,-0.05 -0.35,-0.15l-1.38,-1.38c-0.71,0.47 -1.43,0.81 -2.02,1.04C1.49,15.81 1,16.55 1,17.37L1,18c0,1.1 0.9,2 2,2h6.67c0.53,0 1.04,-0.21 1.41,-0.59l2.74,-2.74l5.23,5.23c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51L2.1,3.51zM18.51,15.68l-1.41,-1.41l4.48,-4.48l0,0c0.78,0.78 0.78,2.05 0,2.83L18.51,15.68zM20.88,9.08l-4.48,4.48L9.3,6.47l3.09,-3.07c0.78,-0.78 2.04,-0.77 2.82,0L20.88,9.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/do_not_touch.xml b/compose/material/material/icons/generator/raw-icons/rounded/do_not_touch.xml
deleted file mode 100644
index 45e148c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/do_not_touch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10.17l-2.5,-2.5V2.25C10.5,1.56 11.06,1 11.75,1C12.44,1 13,1.56 13,2.25V10.17zM20,5.32c0,-0.65 -0.47,-1.25 -1.12,-1.32c-0.75,-0.08 -1.38,0.51 -1.38,1.24v5.25c0,0.28 -0.22,0.5 -0.5,0.5h0c-0.28,0 -0.5,-0.22 -0.5,-0.5l0,-7.18c0,-0.65 -0.47,-1.25 -1.12,-1.32C14.63,1.93 14,2.52 14,3.25v7.92l6,6L20,5.32zM9.5,4.25C9.5,3.56 8.94,3 8.25,3c-0.67,0 -1.2,0.53 -1.24,1.18L9.5,6.67V4.25zM17,22c0.62,0 1.18,-0.19 1.65,-0.52l-0.02,-0.02l0.44,0.44c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l4.92,4.92L7,9.83v4.3l-2.6,-1.48c-0.17,-0.09 -0.34,-0.14 -0.54,-0.14c-0.26,0 -0.5,0.09 -0.7,0.26L2,13.88l0,0l6.8,7.18c0.57,0.6 1.35,0.94 2.18,0.94L17,22L17,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dock.xml b/compose/material/material/icons/generator/raw-icons/rounded/dock.xml
deleted file mode 100644
index a157947..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,23h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L9,21c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM16,1.01L8,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,3c0,-1.1 -0.9,-1.99 -2,-1.99zM16,15L8,15L8,5h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/document_scanner.xml b/compose/material/material/icons/generator/raw-icons/rounded/document_scanner.xml
deleted file mode 100644
index 9340fec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/document_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6C2.45,6 2,5.55 2,5V2c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1S6.55,3 6,3H4v2C4,5.55 3.55,6 3,6zM17,2c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V2c0,-0.55 -0.45,-1 -1,-1h-3C17.45,1 17,1.45 17,2zM3,18c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H4v-2C4,18.45 3.55,18 3,18zM17,22c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2h-2C17.45,21 17,21.45 17,22zM19,18c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2V18zM9,9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-4C9.45,8 9,8.45 9,9zM9,12c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-4C9.45,11 9,11.45 9,12zM9,15c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-4C9.45,14 9,14.45 9,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/domain.xml b/compose/material/material/icons/generator/raw-icons/rounded/domain.xml
deleted file mode 100644
index e54a454..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/domain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9c0,-1.1 -0.9,-2 -2,-2h-8zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM19,19h-7v-2h2v-2h-2v-2h2v-2h-2L12,9h7c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/domain_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/domain_add.xml
deleted file mode 100644
index 99d85a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/domain_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19H4v-2h2V19zM6,15H4v-2h2V15zM6,11H4V9h2V11zM6,7H4V5h2V7zM10,19H8v-2h2V19zM10,15H8v-2h2V15zM10,11H8V9h2V11zM10,7H8V5h2V7zM16,19h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V8c0,-0.55 -0.45,-1 -1,-1h-9V4c0,-0.55 -0.45,-1 -1,-1H3C2.45,3 2,3.45 2,4v16c0,0.55 0.45,1 1,1h13V19zM18,11h-2v2h2V11zM18,15h-2v2h2V15zM24,20c0,0.55 -0.45,1 -1,1h-1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-1h-1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1v-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1v1h1C23.55,19 24,19.45 24,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/domain_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/domain_disabled.xml
deleted file mode 100644
index bf862fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/domain_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.71,2.39c-0.39,0.39 -0.39,1.02 0,1.41L2,5.1L2,19c0,1.1 0.9,2 2,2h13.9l2.29,2.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L2.12,2.39C1.73,2 1.1,2 0.71,2.39zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM4,11L4,9h2v2L4,11zM10,19L8,19v-2h2v2zM8,15v-2h2v2L8,15zM12,19v-2h1.9l2,2L12,19zM8,5h2v2h-0.45L12,9.45L12,9h7c0.55,0 1,0.45 1,1v7.45l2,2L22,9c0,-1.1 -0.9,-2 -2,-2h-8L12,5c0,-1.1 -0.9,-2 -2,-2L5.55,3L8,5.45L8,5zM16,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/domain_verification.xml b/compose/material/material/icons/generator/raw-icons/rounded/domain_verification.xml
deleted file mode 100644
index 7854ccb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/domain_verification.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.23,15.83c0.39,0.39 1.02,0.39 1.41,0l4.24,-4.24c0.39,-0.39 0.39,-1.02 0,-1.42v0c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.54,3.53l-1.41,-1.41c-0.39,-0.39 -1.02,-0.39 -1.42,0s-0.39,1.02 0,1.41L10.23,15.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.89,4 3,4.9 3,6v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.11,4 19,4zM19,17c0,0.55 -0.45,1 -1,1H6c-0.55,0 -1,-0.45 -1,-1V8h14V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/done.xml b/compose/material/material/icons/generator/raw-icons/rounded/done.xml
deleted file mode 100644
index 6a86ea5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.2l-3.5,-3.5c-0.39,-0.39 -1.01,-0.39 -1.4,0 -0.39,0.39 -0.39,1.01 0,1.4l4.19,4.19c0.39,0.39 1.02,0.39 1.41,0L20.3,7.7c0.39,-0.39 0.39,-1.01 0,-1.4 -0.39,-0.39 -1.01,-0.39 -1.4,0L9,16.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/done_all.xml b/compose/material/material/icons/generator/raw-icons/rounded/done_all.xml
deleted file mode 100644
index 5ce8c1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/done_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.3,6.3c-0.39,-0.39 -1.02,-0.39 -1.41,0l-5.64,5.64 1.41,1.41L17.3,7.7c0.38,-0.38 0.38,-1.02 0,-1.4zM21.54,6.29l-9.88,9.88 -3.48,-3.47c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l4.18,4.18c0.39,0.39 1.02,0.39 1.41,0L22.95,7.71c0.39,-0.39 0.39,-1.02 0,-1.41h-0.01c-0.38,-0.4 -1.01,-0.4 -1.4,-0.01zM1.12,14.12L5.3,18.3c0.39,0.39 1.02,0.39 1.41,0l0.7,-0.7 -4.88,-4.9c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.03 0,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/done_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/done_outline.xml
deleted file mode 100644
index 3bfa893..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/done_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.47,5.63c0.39,0.39 0.39,1.01 0,1.4L9.13,18.37c-0.39,0.39 -1.01,0.39 -1.4,0l-4.2,-4.2c-0.39,-0.39 -0.39,-1.01 0,-1.4 0.39,-0.39 1.01,-0.39 1.4,0l3.5,3.5L19.07,5.63c0.39,-0.39 1.01,-0.39 1.4,0zM18.36,3.51l-9.93,9.93 -2.79,-2.79c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.4,1.4c-0.78,0.78 -0.78,2.05 0,2.83l5.6,5.6c0.78,0.78 2.05,0.78 2.83,0L22.59,7.74c0.78,-0.78 0.78,-2.05 0,-2.83l-1.4,-1.4c-0.79,-0.78 -2.05,-0.78 -2.83,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/donut_large.xml b/compose/material/material/icons/generator/raw-icons/rounded/donut_large.xml
deleted file mode 100644
index 98db1bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/donut_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.07,5.32C16.26,6 18,7.74 18.68,9.93c0.19,0.63 0.76,1.07 1.41,1.07h0.04c1,0 1.72,-0.96 1.43,-1.91 -0.97,-3.18 -3.48,-5.69 -6.66,-6.66 -0.94,-0.29 -1.9,0.43 -1.9,1.43v0.04c0,0.66 0.44,1.23 1.07,1.42zM18.68,14.07c-0.68,2.2 -2.42,3.93 -4.61,4.61 -0.63,0.19 -1.07,0.76 -1.07,1.41v0.04c0,1 0.96,1.72 1.91,1.43 3.18,-0.97 5.69,-3.48 6.66,-6.66 0.29,-0.95 -0.43,-1.91 -1.42,-1.91h-0.05c-0.66,0.01 -1.23,0.45 -1.42,1.08zM11,20.11c0,-0.67 -0.45,-1.24 -1.09,-1.44C7.07,17.78 5,15.13 5,12s2.07,-5.78 4.91,-6.67c0.64,-0.2 1.09,-0.77 1.09,-1.44v-0.01c0,-1 -0.97,-1.74 -1.93,-1.44C4.98,3.69 2,7.5 2,12c0,4.5 2.98,8.31 7.07,9.56 0.96,0.3 1.93,-0.44 1.93,-1.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/donut_small.xml b/compose/material/material/icons/generator/raw-icons/rounded/donut_small.xml
deleted file mode 100644
index ff69f48..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/donut_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3.18v17.64c0,0.64 -0.59,1.12 -1.21,0.98C5.32,20.8 2,16.79 2,12s3.32,-8.8 7.79,-9.8c0.62,-0.14 1.21,0.34 1.21,0.98zM13.03,3.18v6.81c0,0.55 0.45,1 1,1h6.79c0.64,0 1.12,-0.59 0.98,-1.22 -0.85,-3.76 -3.8,-6.72 -7.55,-7.57 -0.63,-0.14 -1.22,0.34 -1.22,0.98zM13.03,14.01v6.81c0,0.64 0.59,1.12 1.22,0.98 3.76,-0.85 6.71,-3.82 7.56,-7.58 0.14,-0.62 -0.35,-1.22 -0.98,-1.22h-6.79c-0.56,0.01 -1.01,0.46 -1.01,1.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/door_back.xml b/compose/material/material/icons/generator/raw-icons/rounded/door_back.xml
deleted file mode 100644
index 664637b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/door_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19h-1V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1C21,19.45 20.55,19 20,19zM10,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C11,12.55 10.55,13 10,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/door_front.xml b/compose/material/material/icons/generator/raw-icons/rounded/door_front.xml
deleted file mode 100644
index 45a827d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/door_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19h-1V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1C21,19.45 20.55,19 20,19zM14,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C15,12.55 14.55,13 14,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/door_sliding.xml b/compose/material/material/icons/generator/raw-icons/rounded/door_sliding.xml
deleted file mode 100644
index 7331adc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/door_sliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2h-5.25v16h-1.5V3H6C4.9,3 4,3.9 4,5v14c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1C21,19.45 20.55,19 20,19zM9,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C10,12.55 9.55,13 9,13zM15,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,12.55 15.55,13 15,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/doorbell.xml b/compose/material/material/icons/generator/raw-icons/rounded/doorbell.xml
deleted file mode 100644
index 7920f7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/doorbell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.8,3.9l-6,4.5C4.3,8.78 4,9.37 4,10v9c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-9c0,-0.63 -0.3,-1.22 -0.8,-1.6l-6,-4.5C12.49,3.37 11.51,3.37 10.8,3.9zM12,17.5c-0.55,0 -1,-0.45 -1,-1h2C13,17.05 12.55,17.5 12,17.5zM15.5,16h-7C8.22,16 8,15.78 8,15.5v0C8,15.22 8.22,15 8.5,15H9v-2.34c0,-1.54 0.82,-2.82 2.25,-3.16V9.25c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75V9.5C14.19,9.84 15,11.12 15,12.66V15h0.5c0.28,0 0.5,0.22 0.5,0.5v0C16,15.78 15.78,16 15.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/double_arrow.xml b/compose/material/material/icons/generator/raw-icons/rounded/double_arrow.xml
deleted file mode 100644
index 3e1784b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/double_arrow.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.08,11.42l-4.04,-5.65C15.7,5.29 15.15,5 14.56,5h0c-1.49,0 -2.35,1.68 -1.49,2.89L16,12l-2.93,4.11c-0.87,1.21 0,2.89 1.49,2.89h0c0.59,0 1.15,-0.29 1.49,-0.77l4.04,-5.65C20.33,12.23 20.33,11.77 20.08,11.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.08,11.42L9.05,5.77C8.7,5.29 8.15,5 7.56,5h0C6.07,5 5.2,6.68 6.07,7.89L9,12l-2.93,4.11C5.2,17.32 6.07,19 7.56,19h0c0.59,0 1.15,-0.29 1.49,-0.77l4.04,-5.65C13.33,12.23 13.33,11.77 13.08,11.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/downhill_skiing.xml b/compose/material/material/icons/generator/raw-icons/rounded/downhill_skiing.xml
deleted file mode 100644
index 36b7c40..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/downhill_skiing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18.5,3.4 18.5,4.5zM15.78,20.9l0.76,0.27c0.62,0.21 1.27,0.33 1.96,0.33c0.68,0 1.34,-0.12 1.95,-0.33c0.27,-0.09 0.57,-0.02 0.78,0.18l0,0c0.39,0.4 0.23,1.06 -0.3,1.24C20.17,22.86 19.35,23 18.5,23c-0.86,0 -1.68,-0.14 -2.45,-0.41L2.7,17.72c-0.39,-0.14 -0.59,-0.57 -0.45,-0.95l0,0c0.14,-0.39 0.57,-0.6 0.96,-0.45l6.19,2.25l1.72,-4.44L7.55,10.4C6.65,9.46 6.87,7.93 8,7.28l3.48,-2.01c1.1,-0.64 2.52,-0.1 2.91,1.11l0.33,1.08c0.44,1.42 1.48,2.57 2.83,3.14l0.29,-0.89c0.13,-0.39 0.55,-0.61 0.94,-0.48h0c0.4,0.13 0.61,0.55 0.48,0.95l-0.6,1.85c-0.17,0.52 -0.72,0.82 -1.24,0.65c-2.02,-0.63 -3.64,-2.15 -4.42,-4.1l-2.53,1.45l2.23,2.55c0.49,0.56 0.63,1.34 0.36,2.04l-1.78,4.63l3.09,1.12l2.1,-6.44h0l0,0c0.46,0.18 0.94,0.31 1.44,0.41L15.78,20.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/download.xml b/compose/material/material/icons/generator/raw-icons/rounded/download.xml
deleted file mode 100644
index dd79e4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,9H15V4c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v5H7.41c-0.89,0 -1.34,1.08 -0.71,1.71l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.63,-0.63 0.19,-1.71 -0.7,-1.71zM5,19c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/download_done.xml b/compose/material/material/icons/generator/raw-icons/rounded/download_done.xml
deleted file mode 100644
index 612f498..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/download_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18h12c0.55,0 1,0.45 1,1s-0.45,1 -1,1L6,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM11.01,13.9c-0.78,0.77 -2.04,0.77 -2.82,-0.01L6,11.7c-0.55,-0.55 -0.54,-1.44 0.03,-1.97 0.54,-0.52 1.4,-0.5 1.92,0.02L9.6,11.4l6.43,-6.43c0.54,-0.54 1.41,-0.54 1.95,0l0.04,0.04c0.54,0.54 0.54,1.42 -0.01,1.96l-7,6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/download_for_offline.xml b/compose/material/material/icons/generator/raw-icons/rounded/download_for_offline.xml
deleted file mode 100644
index a29a0ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/download_for_offline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM11,10V7c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3h1.79c0.45,0 0.67,0.54 0.35,0.85l-2.79,2.79c-0.2,0.2 -0.51,0.2 -0.71,0l-2.79,-2.79C8.54,10.54 8.76,10 9.21,10H11zM16,17H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v0C17,16.55 16.55,17 16,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/downloading.xml b/compose/material/material/icons/generator/raw-icons/rounded/downloading.xml
deleted file mode 100644
index 391fe46..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/downloading.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.33,3.55c-0.94,-0.6 -1.99,-1.04 -3.12,-1.3C13.59,2.11 13,2.59 13,3.23v0c0,0.45 0.3,0.87 0.74,0.97c0.91,0.2 1.77,0.56 2.53,1.05c0.39,0.25 0.89,0.17 1.22,-0.16l0,0C17.94,4.64 17.87,3.89 17.33,3.55zM20.77,11L20.77,11c0.64,0 1.13,-0.59 0.98,-1.21c-0.26,-1.12 -0.7,-2.17 -1.3,-3.12c-0.34,-0.54 -1.1,-0.61 -1.55,-0.16l0,0c-0.32,0.32 -0.4,0.83 -0.16,1.22c0.49,0.77 0.85,1.62 1.05,2.53C19.9,10.7 20.31,11 20.77,11zM18.9,17.49L18.9,17.49c0.45,0.45 1.21,0.38 1.55,-0.15c0.6,-0.94 1.04,-1.99 1.3,-3.11c0.14,-0.62 -0.35,-1.21 -0.98,-1.21h0c-0.45,0 -0.87,0.3 -0.97,0.74c-0.2,0.91 -0.57,1.76 -1.05,2.53C18.5,16.66 18.58,17.17 18.9,17.49zM13,20.77L13,20.77c0,0.64 0.59,1.13 1.21,0.98c1.12,-0.26 2.17,-0.7 3.11,-1.3c0.54,-0.34 0.61,-1.1 0.16,-1.55l0,0c-0.32,-0.32 -0.83,-0.4 -1.21,-0.15c-0.76,0.49 -1.61,0.85 -2.53,1.05C13.3,19.9 13,20.31 13,20.77zM13,12V8c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v4H9.41c-0.89,0 -1.34,1.08 -0.71,1.71l2.59,2.59c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.63,-0.63 0.18,-1.71 -0.71,-1.71H13zM11,20.77L11,20.77c0,0.64 -0.59,1.13 -1.21,0.99C5.33,20.75 2,16.77 2,12s3.33,-8.75 7.79,-9.75C10.41,2.11 11,2.59 11,3.23v0c0,0.46 -0.31,0.87 -0.76,0.97C6.67,5 4,8.19 4,12s2.67,7 6.24,7.8C10.69,19.9 11,20.31 11,20.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drafts.xml b/compose/material/material/icons/generator/raw-icons/rounded/drafts.xml
deleted file mode 100644
index 368c0ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drafts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,8c0,-0.72 -0.37,-1.35 -0.94,-1.7l-8.04,-4.71c-0.62,-0.37 -1.4,-0.37 -2.02,0L2.95,6.3C2.38,6.65 2,7.28 2,8v10c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2l-0.01,-10zM10.94,12.34l-7.2,-4.5 7.25,-4.25c0.62,-0.37 1.4,-0.37 2.02,0l7.25,4.25 -7.2,4.5c-0.65,0.4 -1.47,0.4 -2.12,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drag_handle.xml b/compose/material/material/icons/generator/raw-icons/rounded/drag_handle.xml
deleted file mode 100644
index 3f4f79c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drag_handle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM5,15h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drag_indicator.xml b/compose/material/material/icons/generator/raw-icons/rounded/drag_indicator.xml
deleted file mode 100644
index 6dcde80..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drag_indicator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2 0.9,-2 2,-2 2,0.9 2,2zM9,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM9,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM15,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/draw.xml b/compose/material/material/icons/generator/raw-icons/rounded/draw.xml
deleted file mode 100644
index 0be4c61..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/draw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.85,10.39l1.06,-1.06c0.78,-0.78 0.78,-2.05 0,-2.83L18.5,5.09c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.06,1.06L18.85,10.39zM13.19,7.56l-9.05,9.05C4.05,16.7 4,16.83 4,16.96v3.54C4,20.78 4.22,21 4.5,21h3.54c0.13,0 0.26,-0.05 0.35,-0.15l9.05,-9.05L13.19,7.56zM19,17.5c0,2.19 -2.54,3.5 -5,3.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1c1.54,0 3,-0.73 3,-1.5c0,-0.47 -0.48,-0.87 -1.23,-1.2l1.48,-1.48C18.32,15.45 19,16.29 19,17.5zM4.58,13.35C3.61,12.79 3,12.06 3,11c0,-1.8 1.89,-2.63 3.56,-3.36C7.59,7.18 9,6.56 9,6c0,-0.41 -0.78,-1 -2,-1C5.74,5 5.2,5.61 5.17,5.64C4.82,6.05 4.19,6.1 3.77,5.76C3.36,5.42 3.28,4.81 3.62,4.38C3.73,4.24 4.76,3 7,3c2.24,0 4,1.32 4,3c0,1.87 -1.93,2.72 -3.64,3.47C6.42,9.88 5,10.5 5,11c0,0.31 0.43,0.6 1.07,0.86L4.58,13.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drive_eta.xml b/compose/material/material/icons/generator/raw-icons/rounded/drive_eta.xml
deleted file mode 100644
index f1714e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drive_eta.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01l-1.97,5.67c-0.07,0.21 -0.11,0.43 -0.11,0.66v7.16c0,0.83 0.67,1.5 1.5,1.5S6,19.33 6,18.5L6,18h12v0.5c0,0.82 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5v-7.16c0,-0.22 -0.04,-0.45 -0.11,-0.66l-1.97,-5.67zM6.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,12 6.5,12s1.5,0.67 1.5,1.5S7.33,15 6.5,15zM17.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,10l1.27,-3.82c0.14,-0.4 0.52,-0.68 0.95,-0.68h9.56c0.43,0 0.81,0.28 0.95,0.68L19,10L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drive_file_move.xml b/compose/material/material/icons/generator/raw-icons/rounded/drive_file_move.xml
deleted file mode 100644
index ecc05f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drive_file_move.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM12,15.79V14H9c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3v-1.79c0,-0.45 0.54,-0.67 0.85,-0.35l2.79,2.79c0.2,0.2 0.2,0.51 0,0.71l-2.79,2.79C12.54,16.46 12,16.24 12,15.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drive_file_move_rtl.xml b/compose/material/material/icons/generator/raw-icons/rounded/drive_file_move_rtl.xml
deleted file mode 100644
index eb75921..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drive_file_move_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM11.15,16.15l-2.79,-2.79c-0.2,-0.2 -0.2,-0.51 0,-0.71l2.79,-2.79C11.46,9.54 12,9.76 12,10.21V12h3c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h-3v1.79C12,16.24 11.46,16.46 11.15,16.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drive_file_rename_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/drive_file_rename_outline.xml
deleted file mode 100644
index 5bc7513..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drive_file_rename_outline.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16l-4,4h8c1.1,0 2,-0.9 2,-2v0c0,-1.1 -0.9,-2 -2,-2H15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.06,7.19l-8.77,8.77C3.11,16.14 3,16.4 3,16.66V19c0,0.55 0.45,1 1,1h2.34c0.27,0 0.52,-0.11 0.71,-0.29l8.77,-8.77L12.06,7.19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.71,8.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75L18.71,8.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/drive_folder_upload.xml b/compose/material/material/icons/generator/raw-icons/rounded/drive_folder_upload.xml
deleted file mode 100644
index fa52939..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/drive_folder_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM13,13v3c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-3H9.21c-0.45,0 -0.67,-0.54 -0.35,-0.85l2.8,-2.79c0.2,-0.2 0.51,-0.19 0.71,0l2.79,2.79C15.46,12.46 15.24,13 14.8,13H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dry.xml b/compose/material/material/icons/generator/raw-icons/rounded/dry.xml
deleted file mode 100644
index 0a8742d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dry.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.94,11.79C1.34,12.36 1,13.14 1,13.97V20c0,1.66 1.34,3 3,3l13.68,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5l7.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5l0,0c0,-0.28 0.22,-0.5 0.5,-0.5l8.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5l6.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H8.86l1.49,-2.61c0.09,-0.16 0.14,-0.33 0.14,-0.53c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.81,5.71C9.43,5.32 8.8,5.3 8.4,5.68L1.94,11.79zM16.99,8.07c0,0.52 -0.42,0.93 -0.93,0.93c-0.52,0 -0.93,-0.42 -0.93,-0.93l0,0c0.03,-0.67 -0.22,-1.33 -0.71,-1.86l-0.07,-0.06c-0.9,-0.89 -1.38,-2.03 -1.34,-3.22l0,0C13,2.42 13.42,2 13.93,2c0.51,0 0.93,0.42 0.93,0.93l0,0c-0.03,0.67 0.22,1.33 0.71,1.86l0.07,0.07C16.55,5.74 17.03,6.88 16.99,8.07L16.99,8.07zM21,8.07C21,8.58 20.58,9 20.06,9s-0.93,-0.42 -0.93,-0.93l0,0c0.03,-0.67 -0.22,-1.33 -0.71,-1.86l-0.07,-0.06c-0.9,-0.89 -1.38,-2.03 -1.34,-3.22l0,0c0,-0.51 0.42,-0.93 0.93,-0.93s0.93,0.42 0.93,0.93l0,0c-0.03,0.67 0.22,1.33 0.71,1.86l0.07,0.07C20.55,5.74 21.03,6.88 21,8.07L21,8.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dry_cleaning.xml b/compose/material/material/icons/generator/raw-icons/rounded/dry_cleaning.xml
deleted file mode 100644
index 01d63ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dry_cleaning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.56,11.36L13,8.44V7c0,-0.55 -0.45,-1 -1,-1s-1,-0.45 -1,-1s0.45,-1 1,-1c0.38,0 0.72,0.22 0.88,0.53C13.04,4.84 13.39,5 13.73,5c0.74,0 1.26,-0.79 0.91,-1.44c-0.6,-1.1 -1.86,-1.78 -3.24,-1.51c-1.17,0.23 -2.12,1.2 -2.34,2.37C8.77,5.98 9.67,7.35 11,7.82v0.63l-6.56,2.92C3.56,11.75 3,12.62 3,13.57v0.01C3,14.92 4.08,16 5.42,16H7v4c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2v-4h1.58c1.34,0 2.42,-1.08 2.42,-2.42v-0.01C21,12.62 20.44,11.75 19.56,11.36zM18.58,14h-1.86c-0.35,-0.6 -0.98,-1 -1.72,-1H9c-0.74,0 -1.38,0.4 -1.72,1H5.42c-0.46,0 -0.58,-0.65 -0.17,-0.81l6.75,-3l6.75,3C19.17,13.38 19.03,14 18.58,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/duo.xml b/compose/material/material/icons/generator/raw-icons/rounded/duo.xml
deleted file mode 100644
index acc6429..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/duo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h-8C6.38,2 2,6.66 2,12.28 2,17.5 6.49,22 11.72,22 17.39,22 22,17.62 22,12L22,4c0,-1.1 -0.9,-2 -2,-2zM17,15l-3,-2v2L7,15L7,9h7v2l3,-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dvr.xml b/compose/material/material/icons/generator/raw-icons/rounded/dvr.xml
deleted file mode 100644
index d253535..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dvr.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM20,17L4,17c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1zM18,8L9,8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM18,12L9,12c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM7,8L5,8v2h2L7,8zM7,12L5,12v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dynamic_feed.xml b/compose/material/material/icons/generator/raw-icons/rounded/dynamic_feed.xml
deleted file mode 100644
index c493cbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dynamic_feed.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8L7,8C6.45,8 6,8.45 6,9v6c0,1.1 0.9,2 2,2h8c0.55,0 1,-0.45 1,-1l0,0c0,-0.55 -0.45,-1 -1,-1H8V9C8,8.45 7.55,8 7,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-8c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,11h-8V7h8V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12L3,12c-0.55,0 -1,0.45 -1,1v6c0,1.1 0.9,2 2,2h8c0.55,0 1,-0.45 1,-1l0,0c0,-0.55 -0.45,-1 -1,-1H4v-6C4,12.45 3.55,12 3,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/dynamic_form.xml b/compose/material/material/icons/generator/raw-icons/rounded/dynamic_form.xml
deleted file mode 100644
index 3304513..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/dynamic_form.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.68,9.71l-3.72,8.19C17.73,18.39 17,18.23 17,17.69V11h-1.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-6C15,4.22 15.22,4 15.5,4h5.76c0.35,0 0.6,0.36 0.46,0.69L20,9h1.22C21.59,9 21.83,9.38 21.68,9.71zM15,13v7H4c-1.1,0 -2,-0.9 -2,-2v-3c0,-1.1 0.9,-2 2,-2H15zM6.25,16.5c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75c0,0.41 0.34,0.75 0.75,0.75S6.25,16.91 6.25,16.5zM13,4v7H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2H13zM6.25,7.5c0,-0.41 -0.34,-0.75 -0.75,-0.75S4.75,7.09 4.75,7.5c0,0.41 0.34,0.75 0.75,0.75S6.25,7.91 6.25,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/e_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/e_mobiledata.xml
deleted file mode 100644
index 153602d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/e_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8L16,8c0,-0.55 -0.45,-1 -1,-1H9C8.45,7 8,7.45 8,8v8c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-5v-2h5c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-5V9h5C15.55,9 16,8.55 16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/earbuds.xml b/compose/material/material/icons/generator/raw-icons/rounded/earbuds.xml
deleted file mode 100644
index 969892c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/earbuds.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.2,3.01C4.44,2.89 3,4.42 3,6.19L3,16c0,2.76 2.24,5 5,5h0c2.76,0 5,-2.24 5,-5V8c0,-1.66 1.34,-3 3,-3h0c1.66,0 3,1.34 3,3v7l-0.83,0c-1.61,0 -3.06,1.18 -3.17,2.79c-0.12,1.69 1.16,3.1 2.8,3.21c1.76,0.12 3.2,-1.42 3.2,-3.18L21,8c0,-2.76 -2.24,-5 -5,-5h0c-2.76,0 -5,2.24 -5,5v8c0,1.66 -1.34,3 -3,3l0,0c-1.66,0 -3,-1.34 -3,-3V9l0.83,0C7.44,9 8.89,7.82 9,6.21C9.11,4.53 7.83,3.11 6.2,3.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/earbuds_battery.xml b/compose/material/material/icons/generator/raw-icons/rounded/earbuds_battery.xml
deleted file mode 100644
index 79462c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/earbuds_battery.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1l0,0V6.5C20,6.22 19.78,6 19.5,6l-1,0C18.22,6 18,6.22 18,6.5V7l0,0h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7zM14,9.38C14,7.51 12.49,6 10.62,6S7.25,7.51 7.25,9.38v5.25c0,1.04 -0.84,1.88 -1.88,1.88S3.5,15.66 3.5,14.62v-4.7C3.66,9.97 3.83,10 4,10c1.1,0 2,-0.9 2,-2S5.1,6 4,6S2,6.9 2,8c0,0.04 0,6.62 0,6.62C2,16.49 3.51,18 5.38,18s3.38,-1.51 3.38,-3.38V9.38c0,-1.04 0.84,-1.88 1.88,-1.88s1.88,0.84 1.88,1.88v4.7C12.34,14.03 12.17,14 12,14c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2C14,15.96 14,9.38 14,9.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/east.xml b/compose/material/material/icons/generator/raw-icons/rounded/east.xml
deleted file mode 100644
index 999b9eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.29,5.71L14.29,5.71c-0.39,0.39 -0.39,1.02 0,1.41L18.17,11H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h15.18l-3.88,3.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l5.59,-5.59c0.39,-0.39 0.39,-1.02 0,-1.41L15.7,5.71C15.32,5.32 14.68,5.32 14.29,5.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/eco.xml b/compose/material/material/icons/generator/raw-icons/rounded/eco.xml
deleted file mode 100644
index 0ad155d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/eco.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.95,5.97c-0.05,-1.04 -0.89,-1.88 -1.92,-1.92C17.33,4.02 16.66,4 16.01,4C10.98,4 7.49,4.97 5.55,6.91c-3.68,3.68 -3.15,8.9 0.09,11.9c0.01,0 0.01,0 0.01,0c1.51,-4.22 4.52,-7.16 7.67,-8.8c-0.21,0.18 -4.7,3.58 -5.51,10.25c1.05,0.48 2.2,0.75 3.36,0.75c2.05,0 4.16,-0.8 5.92,-2.55C19.28,16.26 20.23,12.1 19.95,5.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edgesensor_high.xml b/compose/material/material/icons/generator/raw-icons/rounded/edgesensor_high.xml
deleted file mode 100644
index 8425e4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edgesensor_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7L4,7c0.55,0 1,0.45 1,1v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V8C3,7.45 3.45,7 4,7zM1,10L1,10c0.55,0 1,0.45 1,1v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-5C0,10.45 0.45,10 1,10zM23,7L23,7c0.55,0 1,0.45 1,1v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V8C22,7.45 22.45,7 23,7zM20,10L20,10c0.55,0 1,0.45 1,1v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-5C19,10.45 19.45,10 20,10zM16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,17H8V7h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edgesensor_low.xml b/compose/material/material/icons/generator/raw-icons/rounded/edgesensor_low.xml
deleted file mode 100644
index d7775e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edgesensor_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7L3,7c0.55,0 1,0.45 1,1v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V8C2,7.45 2.45,7 3,7zM21,10L21,10c0.55,0 1,0.45 1,1v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-5C20,10.45 20.45,10 21,10zM16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,17H8V7h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit.xml
deleted file mode 100644
index 1599eed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.46v3.04c0,0.28 0.22,0.5 0.5,0.5h3.04c0.13,0 0.26,-0.05 0.35,-0.15L17.81,9.94l-3.75,-3.75L3.15,17.1c-0.1,0.1 -0.15,0.22 -0.15,0.36zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_attributes.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_attributes.xml
deleted file mode 100644
index 1ffe54b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_attributes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,7L6.37,7C3.96,7 2,9.24 2,12s1.96,5 4.37,5h11.26c2.41,0 4.37,-2.24 4.37,-5s-1.96,-5 -4.37,-5zM11.11,10.6L7.6,14.11c-0.1,0.1 -0.23,0.15 -0.35,0.15s-0.26,-0.05 -0.35,-0.15l-1.86,-1.86c-0.2,-0.2 -0.2,-0.51 0,-0.71s0.51,-0.2 0.71,0l1.51,1.51 3.16,-3.16c0.2,-0.2 0.51,-0.2 0.71,0s0.17,0.51 -0.02,0.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_calendar.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_calendar.xml
deleted file mode 100644
index bb529dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22H5c-1.11,0 -2,-0.9 -2,-2L3.01,6c0,-1.1 0.88,-2 1.99,-2h1V3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h8V3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h1c1.1,0 2,0.9 2,2v6h-2v-2H5v10h7V22zM22.13,16.99l0.71,-0.71c0.39,-0.39 0.39,-1.02 0,-1.41l-0.71,-0.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.71,0.71L22.13,16.99zM21.42,17.7l-5.01,5.01c-0.18,0.18 -0.44,0.29 -0.7,0.29H14.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1.21c0,-0.27 0.11,-0.52 0.29,-0.71l5.01,-5.01L21.42,17.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_location.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_location.xml
deleted file mode 100644
index c4d5d31..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM9.73,13.5H8.5v-1.44l3.93,-3.92l1.43,1.43l-3.77,3.78C9.99,13.45 9.87,13.5 9.73,13.5zM15.28,8.16l-0.7,0.7l-1.44,-1.44l0.7,-0.7c0.15,-0.15 0.39,-0.15 0.54,0l0.9,0.9C15.43,7.77 15.43,8.01 15.28,8.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_location_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_location_alt.xml
deleted file mode 100644
index 64e0970..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_location_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.54,13H10c-0.55,0 -1,-0.45 -1,-1V8.46C9,8.2 9.11,7.94 9.29,7.76l5.32,-5.32C13.78,2.16 12.9,2 12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.44,6.92 7.33,11.22c0.38,0.33 0.96,0.33 1.34,0C17.56,17.12 20,13.37 20,10.2c0,-1.01 -0.16,-1.94 -0.45,-2.8l-5.31,5.31C14.06,12.89 13.8,13 13.54,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11l2.12,0l6.16,-6.16l-2.12,-2.12l-6.16,6.16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,2L20,1.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.72,0.72l2.12,2.12l0.72,-0.72C21.1,3.02 21.1,2.39 20.71,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_note.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_note.xml
deleted file mode 100644
index d710fa9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h9C13.55,10 14,10.45 14,11zM3,7c0,0.55 0.45,1 1,1h9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4C3.45,6 3,6.45 3,7zM10,15c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h5C9.55,16 10,15.55 10,15zM18.01,12.87l0.71,-0.71c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71c0.39,0.39 0.39,1.02 0,1.41l-0.71,0.71L18.01,12.87zM17.3,13.58l-5.16,5.16C12.05,18.83 12,18.95 12,19.09v1.41c0,0.28 0.22,0.5 0.5,0.5h1.41c0.13,0 0.26,-0.05 0.35,-0.15l5.16,-5.16L17.3,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_notifications.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_notifications.xml
deleted file mode 100644
index f63e89c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,6.25l1.77,1.77l-4.84,4.84C14.42,12.95 14.29,13 14.16,13H13.1c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1.06c0,-0.13 0.05,-0.26 0.15,-0.35L17.58,6.25zM20.85,5.81l-1.06,-1.06c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.85,0.85l1.77,1.77l0.85,-0.85C21.05,6.32 21.05,6 20.85,5.81zM20,18c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1v-7c0,-2.79 1.91,-5.14 4.5,-5.8V3.5C10.5,2.67 11.17,2 12,2s1.5,0.67 1.5,1.5v0.7c0.82,0.21 1.57,0.59 2.21,1.09l-4.52,4.52c-0.38,0.38 -0.59,0.88 -0.59,1.41V13c0,1.1 0.9,2 2,2h1.77c0.53,0 1.04,-0.21 1.41,-0.59L18,12.2V17h1C19.55,17 20,17.45 20,18zM10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_off.xml
deleted file mode 100644
index 408f770..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l6.61,6.61L3.15,17.1C3.05,17.2 3,17.32 3,17.46v3.04C3,20.78 3.22,21 3.5,21h3.04c0.13,0 0.26,-0.05 0.35,-0.15l5.56,-5.56l6.61,6.61c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.52,3.51C3.12,3.12 2.49,3.12 2.1,3.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.535,8.71l2.517,-2.517l3.748,3.748l-2.517,2.517z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/edit_road.xml b/compose/material/material/icons/generator/raw-icons/rounded/edit_road.xml
deleted file mode 100644
index be00b77..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/edit_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4L17,4c-0.55,0 -1,0.45 -1,1v6.9l2,-2V5C18,4.45 17.55,4 17,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20L5,20c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h0C4.45,4 4,4.45 4,5v14C4,19.55 4.45,20 5,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8L11,8c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C10,7.55 10.45,8 11,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14L11,14c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C10,13.55 10.45,14 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20L11,20c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C10,19.55 10.45,20 11,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.56,12.59l-1.15,-1.15c-0.59,-0.59 -1.54,-0.59 -2.12,0L14,16.73v2.77c0,0.28 0.22,0.5 0.5,0.5h2.77l5.29,-5.29C23.15,14.12 23.15,13.17 22.56,12.59zM16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/egg.xml b/compose/material/material/icons/generator/raw-icons/rounded/egg.xml
deleted file mode 100644
index aaf2ab7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/egg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.5,3 5,9.33 5,14c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,9.33 15.5,3 12,3zM13,18c-3,0 -5,-1.99 -5,-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,2.92 2.42,3 3,3c0.55,0 1,0.45 1,1S13.55,18 13,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/egg_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/egg_alt.xml
deleted file mode 100644
index 6aefa17..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/egg_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9C17,7 15.99,2 9.97,2C4.95,2 1.94,6 2,11.52C2.06,17.04 6.96,19 9.97,19c2.01,0 2.01,3 6.02,3C19,22 22,19 22,15.02C22,12 21.01,11 19,9zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/eject.xml b/compose/material/material/icons/generator/raw-icons/rounded/eject.xml
deleted file mode 100644
index a16cdbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/eject.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17h12c0.55,0 1,0.45 1,1s-0.45,1 -1,1L6,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM11.17,6.25l-4.8,7.2c-0.45,0.66 0.03,1.55 0.83,1.55h9.6c0.8,0 1.28,-0.89 0.83,-1.55l-4.8,-7.2c-0.39,-0.6 -1.27,-0.6 -1.66,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/elderly.xml b/compose/material/material/icons/generator/raw-icons/rounded/elderly.xml
deleted file mode 100644
index 3f9fa6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/elderly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,3.5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S11.5,4.6 11.5,3.5zM18.53,11c-1.57,0.01 -2.94,-0.9 -3.6,-2.21l-0.79,-1.67l0,0c-0.17,-0.35 -0.44,-0.65 -0.8,-0.85c-0.62,-0.36 -1.35,-0.34 -1.94,-0.03l0,-0.01L7.01,8.73C6.39,9.08 6,9.74 6,10.46V13c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2.54l1.5,-0.85C9.18,10.71 9,11.85 9,13v5.33L7,21c-0.33,0.44 -0.24,1.07 0.2,1.4c0.44,0.33 1.07,0.24 1.4,-0.2l2.04,-2.72c0.23,-0.31 0.37,-0.69 0.4,-1.08l0.18,-2.94L13,18v4c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-4.87c0,-0.41 -0.13,-0.81 -0.36,-1.15l-1.6,-2.29c0,0 0,0 0,-0.01c-0.11,-1.16 0.07,-2.32 0.46,-3.4c0.81,1.23 2.05,2.14 3.51,2.52v0.03V13c0,0.28 0.22,0.5 0.5,0.5S18,13.28 18,13v-0.16V12.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5v10c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5v-10C20,11.68 19.34,10.99 18.53,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/elderly_woman.xml b/compose/material/material/icons/generator/raw-icons/rounded/elderly_woman.xml
deleted file mode 100644
index 0b2d4e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/elderly_woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.52,11c-1.57,0 -2.94,-0.9 -3.6,-2.21l-0.79,-1.67l0,0C14.12,7.1 13.63,6 12.34,6l0,0C8.72,6 6,16.69 6,19h2.5L7,21c-0.33,0.44 -0.24,1.07 0.2,1.4c0.44,0.33 1.07,0.24 1.4,-0.2L11,19h2v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2.71c0,-0.22 -0.04,-0.43 -0.1,-0.64L13,13l0.49,-2.71c0.81,1.23 2.05,2.14 3.51,2.52V13c0,0.28 0.22,0.5 0.5,0.5S18,13.28 18,13v-0.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5v10c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5v-10C20,11.71 19.38,11 18.52,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.6,2.91c-0.06,0.19 -0.1,0.38 -0.1,0.59c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2c-0.21,0 -0.4,0.04 -0.59,0.1C12.76,1.25 12.41,1 12,1c-0.55,0 -1,0.45 -1,1C11,2.41 11.25,2.76 11.6,2.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electric_bike.xml b/compose/material/material/icons/generator/raw-icons/rounded/electric_bike.xml
deleted file mode 100644
index 20e4edf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electric_bike.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-0.82l-1.7,-4.68C16.19,1.53 15.44,1 14.6,1H13c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h1.6l1.46,4h-4.81l-0.36,-1h0.09c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H8C7.45,4 7,4.45 7,5c0,0.55 0.45,1 1,1h0.75l1.82,5H9.9C9.46,8.77 7.59,7.12 5.25,7.01C2.45,6.87 0,9.2 0,12c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,9.2 21.8,7 19,7zM6,13h1.82c-0.42,1.23 -1.6,2.08 -3.02,1.99C3.31,14.9 2.07,13.64 2,12.14C1.93,10.39 3.27,9 5,9c1.33,0 2.42,0.83 2.82,2H6c-0.55,0 -1,0.45 -1,1C5,12.55 5.45,13 6,13zM14.1,11h-1.4l-0.73,-2H15C14.56,9.58 14.24,10.25 14.1,11zM18.88,15c-1.54,-0.06 -2.84,-1.37 -2.88,-2.92c-0.02,-0.96 0.39,-1.8 1.05,-2.36l0.62,1.7c0.19,0.52 0.76,0.79 1.28,0.6c0.52,-0.19 0.79,-0.76 0.6,-1.28l-0.63,-1.73c0,0 0,0 0.01,-0.01C20.64,8.96 22,10.29 22,12C22,13.72 20.62,15.06 18.88,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electric_bolt.xml b/compose/material/material/icons/generator/raw-icons/rounded/electric_bolt.xml
deleted file mode 100644
index e7ae85c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electric_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.69,2.21L4.33,11.49c-0.64,0.58 -0.28,1.65 0.58,1.73L13,14l-4.85,6.76c-0.22,0.31 -0.19,0.74 0.08,1.01h0c0.3,0.3 0.77,0.31 1.08,0.02l10.36,-9.28c0.64,-0.58 0.28,-1.65 -0.58,-1.73L11,10l4.85,-6.76c0.22,-0.31 0.19,-0.74 -0.08,-1.01l0,0C15.47,1.93 15,1.92 14.69,2.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electric_car.xml b/compose/material/material/icons/generator/raw-icons/rounded/electric_car.xml
deleted file mode 100644
index 47b8fe2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electric_car.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,2.01C18.72,1.42 18.16,1 17.5,1h-11C5.84,1 5.29,1.42 5.08,2.01L3.11,7.68C3.04,7.89 3,8.11 3,8.34v7.16C3,16.33 3.67,17 4.5,17h0C5.33,17 6,16.33 6,15.5V15h12v0.5c0,0.82 0.67,1.5 1.5,1.5h0c0.82,0 1.5,-0.67 1.5,-1.5V8.34c0,-0.22 -0.04,-0.45 -0.11,-0.66L18.92,2.01zM6.5,12C5.67,12 5,11.33 5,10.5S5.67,9 6.5,9S8,9.67 8,10.5S7.33,12 6.5,12zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9S19,9.67 19,10.5S18.33,12 17.5,12zM5,7l1.27,-3.82C6.41,2.78 6.79,2.5 7.22,2.5h9.56c0.43,0 0.81,0.28 0.95,0.68L19,7H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electric_meter.xml b/compose/material/material/icons/generator/raw-icons/rounded/electric_meter.xml
deleted file mode 100644
index 8baf91c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electric_meter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.73,2C7.05,2.14 3.15,6.03 3,10.71c-0.13,4.04 2.42,7.5 6,8.77V21c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1.06c0.33,0.04 0.66,0.06 1,0.06s0.67,-0.02 1,-0.06V21c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1.53c3.49,-1.24 6,-4.57 6,-8.47C21,5.95 16.82,1.85 11.73,2zM13.54,14.71L12,16.25c-0.41,0.41 -1.09,0.41 -1.5,0h0c-0.41,-0.41 -0.41,-1.09 0,-1.5l0.5,-0.5l-0.54,-0.54c-0.39,-0.39 -0.39,-1.02 0,-1.41L12,10.75c0.41,-0.41 1.09,-0.41 1.5,0l0,0c0.41,0.41 0.41,1.09 0,1.5l-0.5,0.5l0.54,0.54C13.93,13.68 13.93,14.32 13.54,14.71zM15,9H9C8.45,9 8,8.55 8,8v0c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v0C16,8.55 15.55,9 15,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electric_moped.xml b/compose/material/material/icons/generator/raw-icons/rounded/electric_moped.xml
deleted file mode 100644
index ccca770..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electric_moped.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5c0,-1.1 -0.9,-2 -2,-2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2.65L13.52,12H10V8c0,-0.55 -0.45,-1 -1,-1H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,8.35V5zM7,15c-0.55,0 -1,-0.45 -1,-1h2C8,14.55 7.55,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4H6C5.45,4 5,4.45 5,5v0c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v0C10,4.45 9.55,4 9,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,11 19,11zM19,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electric_rickshaw.xml b/compose/material/material/icons/generator/raw-icons/rounded/electric_rickshaw.xml
deleted file mode 100644
index 6eaacf9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electric_rickshaw.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.18V9.72c0,-0.47 -0.16,-0.92 -0.46,-1.28L16.6,3.72C16.22,3.26 15.66,3 15.06,3H3C1.9,3 1,3.9 1,5v8c0,1.1 0.9,2 2,2h0.18C3.6,16.16 4.7,17 6,17s2.4,-0.84 2.82,-2h8.37c0.41,1.16 1.51,2 2.82,2c1.66,0 3,-1.34 3,-3C23,12.7 22.16,11.6 21,11.18zM18.4,9H16V6.12L18.4,9zM4,5h3v4H3V6C3,5.45 3.45,5 4,5zM6,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S6.55,15 6,15zM9,13v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H9V5h4c0.55,0 1,0.45 1,1v7H9zM20,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,15 20,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electric_scooter.xml b/compose/material/material/icons/generator/raw-icons/rounded/electric_scooter.xml
deleted file mode 100644
index c41e8bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electric_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.82,16H15v-1c0,-2.21 1.79,-4 4,-4h0.74l-1.9,-8.44C17.63,1.65 16.82,1 15.89,1H13c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h2.89l1.4,6.25c0,0 -0.01,0 -0.01,0c-2.16,0.65 -3.81,2.48 -4.19,4.75H7.82c-0.48,-1.34 -1.86,-2.24 -3.42,-1.94c-1.18,0.23 -2.13,1.2 -2.35,2.38C1.7,16.34 3.16,18 5,18C6.3,18 7.4,17.16 7.82,16zM5,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S5.55,16 5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,12 19,12zM19,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/electrical_services.xml b/compose/material/material/icons/generator/raw-icons/rounded/electrical_services.xml
deleted file mode 100644
index 2530d42..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/electrical_services.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14c0,-0.55 -0.45,-1 -1,-1h-2v2h2C20.55,15 21,14.55 21,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17h-2v2h2c0.55,0 1,-0.45 1,-1C21,17.45 20.55,17 20,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12h-2c-1.1,0 -2,0.9 -2,2h-1c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h1c0,1.1 0.9,2 2,2h2c0.55,0 1,-0.45 1,-1v-6C17,12.45 16.55,12 16,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13c0,-1.1 0.9,-2 2,-2h1.5c1.93,0 3.5,-1.57 3.5,-3.5S10.43,4 8.5,4H5C4.45,4 4,4.45 4,5c0,0.55 0.45,1 1,1h3.5C9.33,6 10,6.67 10,7.5S9.33,9 8.5,9H7c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4h2v-2H7C5.9,15 5,14.1 5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/elevator.xml b/compose/material/material/icons/generator/raw-icons/rounded/elevator.xml
deleted file mode 100644
index db22859..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/elevator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM8.5,6c0.69,0 1.25,0.56 1.25,1.25c0,0.69 -0.56,1.25 -1.25,1.25S7.25,7.94 7.25,7.25C7.25,6.56 7.81,6 8.5,6zM11,13c0,0.55 -0.45,1 -1,1v3c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1v-3c-0.55,0 -1,-0.45 -1,-1v-1.5c0,-1.1 0.9,-2 2,-2h1c1.1,0 2,0.9 2,2V13zM17.52,13.76l-1.6,2.56c-0.2,0.31 -0.65,0.31 -0.85,0l-1.6,-2.56C13.27,13.43 13.51,13 13.9,13h3.2C17.49,13 17.73,13.43 17.52,13.76zM17.1,11h-3.2c-0.39,0 -0.63,-0.43 -0.42,-0.77l1.6,-2.56c0.2,-0.31 0.65,-0.31 0.85,0l1.6,2.56C17.73,10.57 17.49,11 17.1,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/email.xml b/compose/material/material/icons/generator/raw-icons/rounded/email.xml
deleted file mode 100644
index 8bb2388..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM19.6,8.25l-7.07,4.42c-0.32,0.2 -0.74,0.2 -1.06,0L4.4,8.25c-0.25,-0.16 -0.4,-0.43 -0.4,-0.72 0,-0.67 0.73,-1.07 1.3,-0.72L12,11l6.7,-4.19c0.57,-0.35 1.3,0.05 1.3,0.72 0,0.29 -0.15,0.56 -0.4,0.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emergency.xml b/compose/material/material/icons/generator/raw-icons/rounded/emergency.xml
deleted file mode 100644
index c84089e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emergency.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.29,8.37l-1,-1.73c-0.28,-0.48 -0.89,-0.64 -1.37,-0.37L14,8.54V4c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v4.54L6.07,6.27C5.59,5.99 4.98,6.16 4.71,6.63l-1,1.73C3.43,8.84 3.59,9.46 4.07,9.73L8,12l-3.93,2.27c-0.48,0.28 -0.64,0.89 -0.37,1.37l1,1.73c0.28,0.48 0.89,0.64 1.37,0.37L10,15.46V20c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-4.54l3.93,2.27c0.48,0.28 1.09,0.11 1.37,-0.37l1,-1.73c0.28,-0.48 0.11,-1.09 -0.37,-1.37L16,12l3.93,-2.27C20.41,9.46 20.57,8.84 20.29,8.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emergency_recording.xml b/compose/material/material/icons/generator/raw-icons/rounded/emergency_recording.xml
deleted file mode 100644
index 15de5e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emergency_recording.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l3.15,3.13C21.46,16.97 22,16.74 22,16.3V7.7c0,-0.44 -0.54,-0.67 -0.85,-0.35L18,10.48zM14.5,14.6c-0.28,0.48 -0.89,0.64 -1.37,0.37L11,13.73V16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2.27l-2.13,1.23c-0.48,0.28 -1.09,0.11 -1.37,-0.37c-0.28,-0.48 -0.11,-1.09 0.37,-1.37L8,12l-2.13,-1.23C5.39,10.49 5.22,9.88 5.5,9.4c0.28,-0.48 0.89,-0.64 1.37,-0.37L9,10.27V8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2.27l2.13,-1.23c0.48,-0.28 1.09,-0.11 1.37,0.37c0.28,0.48 0.11,1.09 -0.37,1.37L12,12l2.13,1.23C14.61,13.51 14.78,14.12 14.5,14.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emergency_share.xml b/compose/material/material/icons/generator/raw-icons/rounded/emergency_share.xml
deleted file mode 100644
index 26a2678..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emergency_share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-3.15,0 -6,2.41 -6,6.15c0,2.35 1.78,5.11 5.34,8.27c0.37,0.33 0.95,0.33 1.33,0C16.22,20.25 18,17.5 18,15.15C18,11.41 15.15,9 12,9zM12,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,16.5 12,16.5zM16.18,6.82c-0.35,0.35 -0.89,0.38 -1.3,0.09C14.07,6.34 13.07,6 12,6S9.93,6.34 9.12,6.91c-0.41,0.28 -0.95,0.26 -1.3,-0.09c-0.43,-0.43 -0.39,-1.15 0.09,-1.5C9.06,4.49 10.48,4 12,4s2.94,0.49 4.09,1.32C16.58,5.67 16.61,6.39 16.18,6.82zM4.97,3.97C4.55,3.54 4.59,2.85 5.05,2.47C6.95,0.93 9.37,0 12.01,0c2.64,0 5.06,0.93 6.95,2.48c0.46,0.38 0.5,1.07 0.08,1.49c-0.36,0.36 -0.93,0.39 -1.32,0.07C16.16,2.77 14.17,2 12.01,2C9.83,2 7.84,2.77 6.29,4.04C5.9,4.36 5.33,4.32 4.97,3.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_emotions.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_emotions.xml
deleted file mode 100644
index 551db0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_emotions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12C22,6.48 17.52,2 11.99,2zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM16.71,14.72C15.8,16.67 14.04,18 12,18s-3.8,-1.33 -4.71,-3.28C7.13,14.39 7.37,14 7.74,14h8.52C16.63,14 16.87,14.39 16.71,14.72zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8S17,8.67 17,9.5S16.33,11 15.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_events.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_events.xml
deleted file mode 100644
index ab52436..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_events.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5h-2V4c0,-0.55 -0.45,-1 -1,-1H8C7.45,3 7,3.45 7,4v1H5C3.9,5 3,5.9 3,7v1c0,2.55 1.92,4.63 4.39,4.94c0.63,1.5 1.98,2.63 3.61,2.96V19H8c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-3v-3.1c1.63,-0.33 2.98,-1.46 3.61,-2.96C19.08,12.63 21,10.55 21,8V7C21,5.9 20.1,5 19,5zM5,8V7h2v3.82C5.84,10.4 5,9.3 5,8zM19,8c0,1.3 -0.84,2.4 -2,2.82V7h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_flags.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_flags.xml
deleted file mode 100644
index 5abe8b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_flags.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-5l-0.72,-1.45C13.11,7.21 12.76,7 12.38,7H7V5.72C7.6,5.38 8,4.74 8,4c0,-1.1 -0.9,-2 -2,-2S4,2.9 4,4c0,0.74 0.4,1.38 1,1.72V20c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h5l0.72,1.45c0.17,0.34 0.52,0.55 0.89,0.55H19c0.55,0 1,-0.45 1,-1v-8C20,9.45 19.55,9 19,9zM18,17h-4l-1,-2H7V9h5l1,2h5V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_food_beverage.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_food_beverage.xml
deleted file mode 100644
index 4acbfb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_food_beverage.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h16c0.55,0 1,-0.45 1,-1S19.55,19 19,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H9v2.4l1.81,1.45C10.93,6.94 11,7.09 11,7.24v4.26c0,0.28 -0.22,0.5 -0.5,0.5h-4C6.22,12 6,11.78 6,11.5V7.24c0,-0.15 0.07,-0.3 0.19,-0.39L8,5.4V3H6C4.9,3 4,3.9 4,5v8c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,8h-2V5h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_nature.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_nature.xml
deleted file mode 100644
index d238634..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_nature.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.94,4.88C21.76,4.35 21.25,4 20.68,4c-0.03,0 -0.06,0 -0.09,0H19.6l-0.31,-0.97C19.15,2.43 18.61,2 18,2h0c-0.61,0 -1.15,0.43 -1.29,1.04L16.4,4h-0.98c-0.03,0 -0.06,0 -0.09,0c-0.57,0 -1.08,0.35 -1.26,0.88c-0.19,0.56 0.04,1.17 0.56,1.48l0.87,0.52L15.1,8.12c-0.23,0.58 -0.04,1.25 0.45,1.62C15.78,9.91 16.06,10 16.33,10c0.31,0 0.61,-0.11 0.86,-0.32L18,8.98l0.81,0.7C19.06,9.89 19.36,10 19.67,10c0.27,0 0.55,-0.09 0.78,-0.26c0.5,-0.37 0.68,-1.04 0.45,-1.62l-0.39,-1.24l0.87,-0.52C21.89,6.05 22.12,5.44 21.94,4.88zM18,7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,6.55 18.55,7 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,12h-1.09c-0.19,-0.54 -0.49,-1.05 -0.93,-1.49S12.54,9.78 12,9.59V8.5C12,8.22 11.78,8 11.5,8S11,8.22 11,8.5v0.88c-0.11,-0.01 -0.23,-0.03 -0.34,-0.03c-1.02,0 -2.05,0.39 -2.83,1.17c-0.16,0.16 -0.3,0.34 -0.43,0.53L6,10.52c-1.56,-0.55 -3.28,0.27 -3.83,1.82c0,0 0,0 0,0c-0.27,0.75 -0.23,1.57 0.12,2.29c0.23,0.48 0.58,0.87 1,1.16c-0.38,1.35 -0.06,2.85 1,3.91c1.06,1.06 2.57,1.38 3.91,1c0.29,0.42 0.68,0.77 1.16,1C9.78,21.9 10.21,22 10.65,22c0.34,0 0.68,-0.06 1.01,-0.17c0,0 0,0 0,0c1.56,-0.55 2.38,-2.27 1.82,-3.85l-0.52,-1.37c0.18,-0.13 0.36,-0.27 0.53,-0.43c0.87,-0.87 1.24,-2.04 1.14,-3.17h0.88c0.28,0 0.5,-0.22 0.5,-0.5C16,12.22 15.78,12 15.5,12zM4.67,14.29c-0.25,-0.09 -0.45,-0.27 -0.57,-0.51s-0.13,-0.51 -0.04,-0.76c0.19,-0.52 0.76,-0.79 1.26,-0.61l3.16,1.19C7.33,14.2 5.85,14.71 4.67,14.29zM10.99,19.94c-0.25,0.09 -0.52,0.08 -0.76,-0.04c-0.24,-0.11 -0.42,-0.32 -0.51,-0.57c-0.42,-1.18 0.09,-2.65 0.7,-3.8l1.18,3.13C11.78,19.18 11.51,19.76 10.99,19.94zM12.2,14.6l-0.61,-1.61c0,-0.01 -0.01,-0.02 -0.02,-0.03c-0.02,-0.04 -0.04,-0.08 -0.06,-0.12c-0.02,-0.04 -0.04,-0.07 -0.07,-0.11c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.07,-0.05 -0.11,-0.07c-0.04,-0.02 -0.07,-0.05 -0.12,-0.06c-0.01,0 -0.02,-0.01 -0.03,-0.02L9.4,11.8c0.36,-0.29 0.79,-0.46 1.26,-0.46c0.53,0 1.04,0.21 1.41,0.59C12.8,12.66 12.84,13.81 12.2,14.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_objects.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_objects.xml
deleted file mode 100644
index 086d3cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_objects.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-0.46,0 -0.93,0.04 -1.4,0.14C7.84,3.67 5.64,5.9 5.12,8.66c-0.48,2.61 0.48,5.01 2.22,6.56C7.77,15.6 8,16.13 8,16.69V19c0,1.1 0.9,2 2,2h0.28c0.35,0.6 0.98,1 1.72,1s1.38,-0.4 1.72,-1H14c1.1,0 2,-0.9 2,-2v-2.31c0,-0.55 0.22,-1.09 0.64,-1.46C18.09,13.95 19,12.08 19,10C19,6.13 15.87,3 12,3zM12.5,14h-1v-2.59L9.67,9.59l0.71,-0.71L12,10.5l1.62,-1.62l0.71,0.71l-1.83,1.83V14zM13.5,19c-0.01,0 -0.02,-0.01 -0.03,-0.01V19h-2.94v-0.01c-0.01,0 -0.02,0.01 -0.03,0.01c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5c0.01,0 0.02,0.01 0.03,0.01V18h2.94v0.01c0.01,0 0.02,-0.01 0.03,-0.01c0.28,0 0.5,0.22 0.5,0.5C14,18.78 13.78,19 13.5,19zM13.5,17h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5C14,16.78 13.78,17 13.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_people.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_people.xml
deleted file mode 100644
index d85521f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_people.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.89,8.11C15.5,7.72 14.83,7 13.53,7c-0.21,0 -1.42,0 -2.54,0C8.53,6.99 6.48,5.2 6.07,2.85C5.99,2.36 5.58,2 5.09,2h0c-0.61,0 -1.09,0.54 -1,1.14C4.53,5.8 6.47,7.95 9,8.71V21c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5h2v5c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V10.05l3.24,3.24c0.39,0.39 1.02,0.39 1.41,0v0c0.39,-0.39 0.39,-1.02 0,-1.41L15.89,8.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_symbols.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_symbols.xml
deleted file mode 100644
index 4380101..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_symbols.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5H4C3.45,5 3,5.45 3,6c0,0.55 0.45,1 1,1h2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7h2c0.55,0 1,-0.45 1,-1C11,5.45 10.55,5 10,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,2H4C3.45,2 3,2.45 3,3s0.45,1 1,1h6c0.55,0 1,-0.45 1,-1S10.55,2 10,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.89,13.11c-0.39,-0.39 -1.02,-0.39 -1.41,0l-6.36,6.36c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l6.36,-6.36C21.28,14.13 21.28,13.5 20.89,13.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11c1.38,0 2.5,-1.12 2.5,-2.5V4h2c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v3.51C16.58,6.19 16.07,6 15.5,6C14.12,6 13,7.12 13,8.5C13,9.88 14.12,11 15.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.45,18.09c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.71,0.71l-0.71,-0.71l0.35,-0.35c0.98,-0.98 0.98,-2.56 0,-3.54h0c-0.49,-0.49 -1.13,-0.73 -1.77,-0.73c-0.64,0 -1.28,0.24 -1.77,0.73c-0.98,0.98 -0.98,2.56 0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98 -0.98,2.56 0,3.54C4.22,21.76 4.86,22 5.5,22c0.64,0 1.28,-0.24 1.77,-0.73l1.06,-1.06l0.71,0.71c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-0.71,-0.71v0L10.45,18.09zM5.85,14.2c0.12,-0.12 0.26,-0.15 0.35,-0.15s0.23,0.03 0.35,0.15c0.19,0.2 0.19,0.51 0,0.71l-0.35,0.35L5.85,14.9c-0.12,-0.12 -0.15,-0.26 -0.15,-0.35S5.73,14.32 5.85,14.2zM5.85,19.85C5.73,19.97 5.59,20 5.5,20s-0.23,-0.03 -0.35,-0.15C5.03,19.73 5,19.59 5,19.5s0.03,-0.23 0.15,-0.35l1.06,-1.06l0.71,0.71L5.85,19.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/emoji_transportation.xml b/compose/material/material/icons/generator/raw-icons/rounded/emoji_transportation.xml
deleted file mode 100644
index 25094d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/emoji_transportation.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,14.77l-1.43,-4.11c-0.14,-0.4 -0.52,-0.66 -0.97,-0.66H12.4c-0.46,0 -0.83,0.26 -0.98,0.66L10,14.77v5.24c0,0.55 0.45,0.99 1,0.99s1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1s0.99,-0.44 1,-0.99L21.99,14.77zM11.61,13.34l0.69,-2c0.05,-0.2 0.24,-0.34 0.46,-0.34h6.48c0.21,0 0.4,0.14 0.47,0.34l0.69,2c0.11,0.32 -0.13,0.66 -0.47,0.66h-7.85C11.74,14 11.5,13.66 11.61,13.34zM11.99,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.54,17 11.99,17zM19.99,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.54,17 19.99,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4.5V9h1V4c0,-0.55 -0.45,-1 -1,-1H8C7.45,3 7,3.45 7,4v4H3C2.45,8 2,8.45 2,9v12h1V9.5C3,9.22 3.22,9 3.5,9h4C7.78,9 8,8.78 8,8.5v-4C8,4.22 8.22,4 8.5,4h5C13.78,4 14,4.22 14,4.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/energy_savings_leaf.xml b/compose/material/material/icons/generator/raw-icons/rounded/energy_savings_leaf.xml
deleted file mode 100644
index 4f3ef83..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/energy_savings_leaf.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.8,0 -9,3.86 -9,9c0,2.12 0.74,4.07 1.97,5.61l-1.68,1.68c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l1.68,-1.68C7.93,20.26 9.88,21 12,21c2.3,0 4.61,-0.88 6.36,-2.64C20.12,16.61 21,14.3 21,12V5c0,-1.1 -0.9,-2 -2,-2H12zM15.83,12.26l-5.16,4.63c-0.16,0.15 -0.41,0.14 -0.56,-0.01c-0.14,-0.14 -0.16,-0.36 -0.04,-0.52l2.44,-3.33l-4.05,-0.4c-0.44,-0.04 -0.63,-0.59 -0.3,-0.89l5.16,-4.63c0.16,-0.15 0.41,-0.14 0.56,0.01c0.14,0.14 0.16,0.36 0.04,0.52l-2.44,3.33l4.05,0.4C15.98,11.41 16.16,11.96 15.83,12.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/engineering.xml b/compose/material/material/icons/generator/raw-icons/rounded/engineering.xml
deleted file mode 100644
index 175a6d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/engineering.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1C17,16.34 11.67,15 9,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.74,9h8.53c0.27,0 0.49,-0.22 0.49,-0.49V8.49c0,-0.27 -0.22,-0.49 -0.49,-0.49H13c0,-1.48 -0.81,-2.75 -2,-3.45V5.5C11,5.78 10.78,6 10.5,6S10,5.78 10,5.5V4.14C9.68,4.06 9.35,4 9,4S8.32,4.06 8,4.14V5.5C8,5.78 7.78,6 7.5,6S7,5.78 7,5.5V4.55C5.81,5.25 5,6.52 5,8H4.74C4.47,8 4.25,8.22 4.25,8.49v0.03C4.25,8.78 4.47,9 4.74,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c1.86,0 3.41,-1.28 3.86,-3H5.14C5.59,11.72 7.14,13 9,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,6.23l0.93,-0.83l-0.75,-1.3l-1.19,0.39c-0.14,-0.11 -0.3,-0.2 -0.47,-0.27L20.25,3h-1.5L18.5,4.22c-0.17,0.07 -0.33,0.16 -0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4 17,6.58 17.02,6.75L16.09,7.6l0.75,1.3l1.2,-0.38c0.13,0.1 0.28,0.18 0.43,0.25L18.75,10h1.5l0.27,-1.22c0.16,-0.07 0.3,-0.15 0.44,-0.25l1.19,0.38l0.75,-1.3l-0.93,-0.85C22,6.57 21.99,6.4 21.98,6.23zM19.5,7.75c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25S20.19,7.75 19.5,7.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.4,10.79l-0.85,0.28c-0.1,-0.08 -0.21,-0.14 -0.33,-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05 -0.24,0.12 -0.34,0.19l-0.84,-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13 -0.01,0.25 0,0.37l-0.66,0.61l0.54,0.93l0.86,-0.27c0.1,0.07 0.2,0.13 0.31,0.18L16.96,15h1.07l0.19,-0.87c0.11,-0.05 0.22,-0.11 0.32,-0.18l0.85,0.27l0.54,-0.93l-0.66,-0.61c0.01,-0.13 0.01,-0.25 0,-0.37l0.66,-0.59L19.4,10.79zM17.5,13.39c-0.49,0 -0.89,-0.4 -0.89,-0.89c0,-0.49 0.4,-0.89 0.89,-0.89s0.89,0.4 0.89,0.89C18.39,12.99 17.99,13.39 17.5,13.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/enhanced_encryption.xml b/compose/material/material/icons/generator/raw-icons/rounded/enhanced_encryption.xml
deleted file mode 100644
index 799df72..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/enhanced_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V10c0,-1.1 -0.9,-2 -2,-2zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2H8.9V6zM15,16h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/equalizer.xml b/compose/material/material/icons/generator/raw-icons/rounded/equalizer.xml
deleted file mode 100644
index e219b8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/equalizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c1.1,0 2,-0.9 2,-2L14,6c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM6,20c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v4c0,1.1 0.9,2 2,2zM16,11v7c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-7c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/error.xml b/compose/material/material/icons/generator/raw-icons/rounded/error.xml
deleted file mode 100644
index 4d5ca68..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,13c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1zM13,17h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/error_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/error_outline.xml
deleted file mode 100644
index 53237a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/error_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM13,17h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/escalator.xml b/compose/material/material/icons/generator/raw-icons/rounded/escalator.xml
deleted file mode 100644
index 99bcc87..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/escalator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2l0,-14C21,3.9 20.1,3 19,3zM17,9h-1.7l-4.71,8.49C10.41,17.8 10.07,18 9.71,18H7c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.17,15 7,15h1.7l4.71,-8.49C13.59,6.2 13.93,6 14.29,6H17c0.83,0 1.5,0.67 1.5,1.5S17.83,9 17,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/escalator_warning.xml b/compose/material/material/icons/generator/raw-icons/rounded/escalator_warning.xml
deleted file mode 100644
index bb6ef15..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/escalator_warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S5.4,2 6.5,2zM15.5,9.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S17.83,8 17,8S15.5,8.67 15.5,9.5zM18.5,12h-2.84c-0.58,0.01 -1.14,0.32 -1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37 8.69,7.01 8.01,7H5C3.9,7 3,7.9 3,9v5c0,0.55 0.45,1 1,1h0.5v6c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-9.39l2.24,3.89c0.18,0.31 0.51,0.5 0.87,0.5h1.1c0.33,0 0.63,-0.16 0.82,-0.43L15,14.9V21c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-4h0c0.55,0 1,-0.45 1,-1v-2.5C20,12.68 19.33,12 18.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/euro.xml b/compose/material/material/icons/generator/raw-icons/rounded/euro.xml
deleted file mode 100644
index b3af22e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/euro.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5h5.14c0.38,0 0.73,-0.21 0.89,-0.55l0,0c0.33,-0.66 -0.15,-1.45 -0.89,-1.45h-5.8c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1h5.8c0.38,0 0.73,-0.21 0.89,-0.55l0,0C15.61,9.78 15.13,9 14.38,9H9.24C10.32,6.92 12.5,5.5 15,5.5c1.25,0 2.42,0.36 3.42,0.97c0.5,0.31 1.15,0.26 1.57,-0.16l0,0c0.58,-0.58 0.45,-1.53 -0.25,-1.96C18.36,3.5 16.73,3 15,3c-3.92,0 -7.24,2.51 -8.48,6h-2.9C3.24,9 2.89,9.21 2.72,9.55l0,0C2.39,10.22 2.87,11 3.62,11h2.44C6.02,11.33 6,11.66 6,12s0.02,0.67 0.06,1H3.62c-0.38,0 -0.73,0.21 -0.89,0.55l0,0C2.39,14.22 2.87,15 3.62,15h2.9c1.24,3.49 4.56,6 8.48,6c1.74,0 3.36,-0.49 4.74,-1.35c0.69,-0.43 0.82,-1.39 0.24,-1.97l0,0c-0.42,-0.42 -1.07,-0.47 -1.57,-0.15C17.42,18.15 16.26,18.5 15,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/euro_symbol.xml b/compose/material/material/icons/generator/raw-icons/rounded/euro_symbol.xml
deleted file mode 100644
index eff1213..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/euro_symbol.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H9.24C10.32,6.92 12.5,5.5 15,5.5c1.25,0 2.42,0.36 3.42,0.97 0.5,0.31 1.15,0.26 1.57,-0.16 0.58,-0.58 0.45,-1.53 -0.25,-1.96C18.36,3.5 16.73,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2.06c-0.04,0.33 -0.06,0.66 -0.06,1s0.02,0.67 0.06,1H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2.52c1.24,3.49 4.56,6 8.48,6 1.74,0 3.36,-0.49 4.74,-1.35 0.69,-0.43 0.82,-1.39 0.24,-1.97 -0.42,-0.42 -1.07,-0.47 -1.57,-0.15 -0.99,0.62 -2.15,0.97 -3.41,0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ev_station.xml b/compose/material/material/icons/generator/raw-icons/rounded/ev_station.xml
deleted file mode 100644
index 850b522..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ev_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.19,-3.19c-0.29,-0.29 -0.77,-0.29 -1.06,0 -0.29,0.29 -0.29,0.77 0,1.06l1.58,1.58c-1.05,0.4 -1.76,1.47 -1.58,2.71 0.16,1.1 1.1,1.99 2.2,2.11 0.47,0.05 0.88,-0.03 1.27,-0.2v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V14c0,-1.1 -0.9,-2 -2,-2h-1V5c0,-1.1 -0.9,-2 -2,-2H6c-1.1,0 -2,0.9 -2,2v15c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-6.5h1.5v4.86c0,1.31 0.94,2.5 2.24,2.63 1.5,0.15 2.76,-1.02 2.76,-2.49V9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM8,16.12V13.5H6.83c-0.38,0 -0.62,-0.4 -0.44,-0.74l2.67,-5c0.24,-0.45 0.94,-0.28 0.94,0.24v3h1.14c0.38,0 0.62,0.41 0.43,0.75l-2.64,4.62c-0.25,0.44 -0.93,0.26 -0.93,-0.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/event.xml b/compose/material/material/icons/generator/raw-icons/rounded/event.xml
deleted file mode 100644
index 9f6db11..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/event.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h-3c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1zM16,3v1L8,4L8,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,4c-1.11,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2h-1L18,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM18,20L6,20c-0.55,0 -1,-0.45 -1,-1L5,9h14v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/event_available.xml b/compose/material/material/icons/generator/raw-icons/rounded/event_available.xml
deleted file mode 100644
index 3f5f5fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/event_available.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10.53c-0.29,-0.29 -0.77,-0.29 -1.06,0l-4.35,4.35L9,13.29c-0.29,-0.29 -0.77,-0.29 -1.06,0 -0.29,0.29 -0.29,0.77 0,1.06l1.94,1.94c0.39,0.39 1.02,0.39 1.41,0l4.7,-4.7c0.3,-0.29 0.3,-0.77 0.01,-1.06zM19,3h-1L18,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L8,3L8,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,8h14v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/event_busy.xml b/compose/material/material/icons/generator/raw-icons/rounded/event_busy.xml
deleted file mode 100644
index b0bda77..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/event_busy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.84,16.47l1.91,-1.91 1.91,1.91c0.29,0.29 0.77,0.29 1.06,0 0.29,-0.29 0.29,-0.77 0,-1.06l-1.91,-1.91 1.91,-1.91c0.29,-0.29 0.29,-0.77 0,-1.06 -0.29,-0.29 -0.77,-0.29 -1.06,0l-1.91,1.91 -1.91,-1.91c-0.29,-0.29 -0.77,-0.29 -1.06,0 -0.29,0.29 -0.29,0.77 0,1.06l1.91,1.91 -1.91,1.91c-0.29,0.29 -0.29,0.77 0,1.06 0.29,0.29 0.77,0.29 1.06,0zM19,3h-1L18,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L8,3L8,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,8h14v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/event_note.xml b/compose/material/material/icons/generator/raw-icons/rounded/event_note.xml
deleted file mode 100644
index 921aa2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/event_note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10L8,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM19,3h-1L18,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L8,3L8,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,8h14v10c0,0.55 -0.45,1 -1,1zM13,14L8,14c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/event_repeat.xml b/compose/material/material/icons/generator/raw-icons/rounded/event_repeat.xml
deleted file mode 100644
index 2994327..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/event_repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12V6c0,-1.1 -0.9,-2 -2,-2h-1V3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1H8V3c0,-0.55 -0.45,-1 -1,-1S6,2.45 6,3v1H5C3.9,4 3,4.9 3,6v14c0,1.1 0.9,2 2,2h7v-2H5V10h14v2H21zM15.13,20c-0.55,0 -0.91,0.56 -0.68,1.06C15.23,22.79 16.97,24 19,24c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5c-1.36,0 -2.6,0.55 -3.5,1.43l0,-0.68c0,-0.41 -0.34,-0.75 -0.75,-0.75h0C14.34,14 14,14.34 14,14.75V17c0,0.55 0.45,1 1,1h2.25c0.41,0 0.75,-0.34 0.75,-0.75v0c0,-0.41 -0.34,-0.75 -0.75,-0.75l-0.7,0c0.63,-0.62 1.5,-1 2.45,-1c1.93,0 3.5,1.57 3.5,3.5s-1.57,3.5 -3.5,3.5c-1.42,0 -2.64,-0.85 -3.19,-2.06C15.69,20.17 15.42,20 15.13,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/event_seat.xml b/compose/material/material/icons/generator/raw-icons/rounded/event_seat.xml
deleted file mode 100644
index 0911e97..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/event_seat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,21c0.83,0 1.5,-0.67 1.5,-1.5L7,18h10v1.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5L20,17c0,-1.1 -0.9,-2 -2,-2L6,15c-1.1,0 -2,0.9 -2,2v2.5c0,0.83 0.67,1.5 1.5,1.5zM20,10h1c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,-0.45 -1,-1v-1c0,-0.55 0.45,-1 1,-1zM3,10h1c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1L3,13c-0.55,0 -1,-0.45 -1,-1v-1c0,-0.55 0.45,-1 1,-1zM17,13L7,13L7,5c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/exit_to_app.xml b/compose/material/material/icons/generator/raw-icons/rounded/exit_to_app.xml
deleted file mode 100644
index 2abeff6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/exit_to_app.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.79,16.29c0.39,0.39 1.02,0.39 1.41,0l3.59,-3.59c0.39,-0.39 0.39,-1.02 0,-1.41L12.2,7.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L12.67,11H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h8.67l-1.88,1.88c-0.39,0.39 -0.38,1.03 0,1.41zM19,3H5c-1.11,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1V6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1H6c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/expand.xml b/compose/material/material/icons/generator/raw-icons/rounded/expand.xml
deleted file mode 100644
index ad71776..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/expand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1v0C4,20.45 4.45,20 5,20zM5,2h14c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H5C4.45,4 4,3.55 4,3v0C4,2.45 4.45,2 5,2zM13,9h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0L8.85,8.15C8.54,8.46 8.76,9 9.21,9H11v6H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.35,-0.85H13V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/expand_circle_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/expand_circle_down.xml
deleted file mode 100644
index e085642..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/expand_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM15.79,11.71l-3.08,3.08c-0.39,0.39 -1.02,0.39 -1.42,0l-3.08,-3.08c-0.39,-0.39 -0.39,-1.03 0,-1.42c0.39,-0.39 1.02,-0.39 1.41,0L12,12.67l2.38,-2.38c0.39,-0.39 1.02,-0.39 1.41,0C16.18,10.68 16.18,11.32 15.79,11.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/expand_less.xml b/compose/material/material/icons/generator/raw-icons/rounded/expand_less.xml
deleted file mode 100644
index 5e94fae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/expand_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.29,8.71L6.7,13.3c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,10.83l3.88,3.88c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L12.7,8.71c-0.38,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/expand_more.xml b/compose/material/material/icons/generator/raw-icons/rounded/expand_more.xml
deleted file mode 100644
index 61e7333..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/expand_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.88,9.29L12,13.17 8.12,9.29c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.38 -1.03,-0.39 -1.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/explicit.xml b/compose/material/material/icons/generator/raw-icons/rounded/explicit.xml
deleted file mode 100644
index 16cf441..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/explicit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14,9h-3v2h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-3v2h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1L9,8c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/explore.xml b/compose/material/material/icons/generator/raw-icons/rounded/explore.xml
deleted file mode 100644
index 0ac168a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.9c-0.61,0 -1.1,0.49 -1.1,1.1s0.49,1.1 1.1,1.1c0.61,0 1.1,-0.49 1.1,-1.1s-0.49,-1.1 -1.1,-1.1zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM14.19,14.19L6,18l3.81,-8.19L18,6l-3.81,8.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/explore_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/explore_off.xml
deleted file mode 100644
index 81f5d56..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/explore_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6l-2.91,6.26 5.25,5.25C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10 -2.04,0 -3.93,0.61 -5.51,1.66l5.25,5.25L18,6zM2.81,5.64l0.85,0.85c-1.37,2.07 -2,4.68 -1.48,7.45 0.75,3.95 3.92,7.13 7.88,7.88 2.77,0.52 5.38,-0.1 7.45,-1.48l0.85,0.85c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.22,4.22c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.03 0,1.42zM8.91,11.74l3.35,3.35L6,18l2.91,-6.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/exposure.xml b/compose/material/material/icons/generator/raw-icons/rounded/exposure.xml
deleted file mode 100644
index 558033d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/exposure.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM6.75,7h3.5c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75h-3.5c-0.41,0 -0.75,-0.34 -0.75,-0.75S6.34,7 6.75,7zM18,19L5,19L19,5v13c0,0.55 -0.45,1 -1,1zM14.5,16v1.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L16,16h1.25c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75L16,14.5v-1.25c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75v1.25h-1.25c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75h1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/exposure_neg_1.xml b/compose/material/material/icons/generator/raw-icons/rounded/exposure_neg_1.xml
deleted file mode 100644
index 34bfa2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/exposure_neg_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,11c-0.55,0 -1,0.45 -1,1zM19,18h-2L17,7.38L14,8.4L14,6.7L18.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/exposure_neg_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/exposure_neg_2.xml
deleted file mode 100644
index 95fdd639..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/exposure_neg_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17s0.41,-0.78 0.54,-1.17 0.19,-0.79 0.19,-1.18c0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49s0.6,-0.18 0.96,-0.18c0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43 0.28,0.4 0.37,0.65c0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H21v-1.71h-5.95zM2,12c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/exposure_plus_1.xml b/compose/material/material/icons/generator/raw-icons/rounded/exposure_plus_1.xml
deleted file mode 100644
index 65bd4d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/exposure_plus_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7c-0.55,0 -1,0.45 -1,1v3L5,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L10,8c0,-0.55 -0.45,-1 -1,-1zM20,18h-2L18,7.38L15,8.4L15,6.7L19.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/exposure_plus_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/exposure_plus_2.xml
deleted file mode 100644
index 8c82104..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/exposure_plus_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17s0.41,-0.78 0.54,-1.17c0.13,-0.39 0.19,-0.79 0.19,-1.18 0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49s0.6,-0.18 0.96,-0.18c0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43 0.28,0.4 0.37,0.65c0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H22v-1.71h-5.95zM7,7c-0.55,0 -1,0.45 -1,1v3H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H8V8c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/exposure_zero.xml b/compose/material/material/icons/generator/raw-icons/rounded/exposure_zero.xml
deleted file mode 100644
index 2df61ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/exposure_zero.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.14,12.5c0,1 -0.1,1.85 -0.3,2.55s-0.48,1.27 -0.83,1.7c-0.36,0.44 -0.79,0.75 -1.3,0.95s-1.07,0.3 -1.7,0.3c-0.62,0 -1.18,-0.1 -1.69,-0.3 -0.51,-0.2 -0.95,-0.51 -1.31,-0.95s-0.65,-1.01 -0.85,-1.7c-0.2,-0.7 -0.3,-1.55 -0.3,-2.55v-2.04c0,-1 0.1,-1.85 0.3,-2.55 0.2,-0.7 0.48,-1.26 0.84,-1.69 0.36,-0.43 0.8,-0.74 1.31,-0.93C10.81,5.1 11.38,5 12,5c0.63,0 1.19,0.1 1.7,0.29 0.51,0.19 0.95,0.5 1.31,0.93 0.36,0.43 0.64,0.99 0.84,1.69 0.2,0.7 0.3,1.54 0.3,2.55v2.04h-0.01zM14.03,10.14c0,-0.64 -0.05,-1.18 -0.13,-1.62 -0.09,-0.44 -0.22,-0.79 -0.4,-1.06 -0.17,-0.27 -0.39,-0.46 -0.64,-0.58 -0.25,-0.13 -0.54,-0.19 -0.86,-0.19s-0.61,0.06 -0.86,0.18 -0.47,0.31 -0.64,0.58 -0.31,0.62 -0.4,1.06 -0.13,0.98 -0.13,1.62v2.67c0,0.64 0.05,1.18 0.14,1.62 0.09,0.45 0.23,0.81 0.4,1.09s0.39,0.48 0.64,0.61 0.54,0.19 0.87,0.19 0.62,-0.06 0.87,-0.19 0.46,-0.33 0.63,-0.61 0.3,-0.64 0.39,-1.09 0.13,-0.99 0.13,-1.62v-2.66h-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/extension.xml b/compose/material/material/icons/generator/raw-icons/rounded/extension.xml
deleted file mode 100644
index 91e53c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/extension.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,11H19V7c0,-1.1 -0.9,-2 -2,-2h-4V3.5C13,2.12 11.88,1 10.5,1S8,2.12 8,3.5V5H4c-1.1,0 -1.99,0.9 -1.99,2v3.8H3.5c1.49,0 2.7,1.21 2.7,2.7s-1.21,2.7 -2.7,2.7H2V20c0,1.1 0.9,2 2,2h3.8v-1.5c0,-1.49 1.21,-2.7 2.7,-2.7s2.7,1.21 2.7,2.7V22H17c1.1,0 2,-0.9 2,-2v-4h1.5c1.38,0 2.5,-1.12 2.5,-2.5S21.88,11 20.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/extension_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/extension_off.xml
deleted file mode 100644
index cf652f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/extension_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-0.92,-0.92C18.1,20.98 18.05,21 18,21h-3.8c0,-2.71 -2.16,-3 -2.7,-3s-2.7,0.29 -2.7,3H5c-1.1,0 -2,-0.9 -2,-2v-3.8c2.71,0 3,-2.16 3,-2.7c0,-0.54 -0.3,-2.7 -2.99,-2.7V6c0,-0.05 0.02,-0.09 0.02,-0.14L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9L20.49,21.9zM20,17.17V15c1.38,0 2.5,-1.12 2.5,-2.5S21.38,10 20,10V6c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H6.83L20,17.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face.xml b/compose/material/material/icons/generator/raw-icons/rounded/face.xml
deleted file mode 100644
index 55612f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.25,13c0,0.69 -0.56,1.25 -1.25,1.25S7.75,13.69 7.75,13S8.31,11.75 9,11.75S10.25,12.31 10.25,13zM15,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25s1.25,-0.56 1.25,-1.25S15.69,11.75 15,11.75zM22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12S6.48,2 12,2S22,6.48 22,12zM20,12c0,-0.78 -0.12,-1.53 -0.33,-2.24C18.97,9.91 18.25,10 17.5,10c-3.13,0 -5.92,-1.44 -7.76,-3.69C8.69,8.87 6.6,10.88 4,11.86C4.01,11.9 4,11.95 4,12c0,4.41 3.59,8 8,8S20,16.41 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/face_2.xml
deleted file mode 100644
index 4b29f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.97,13.52c0,-0.01 0,-0.02 0,-0.04C23.21,12.38 24,10.78 24,9c0,-3.31 -2.69,-6 -6,-6c-0.26,0 -0.52,0.02 -0.78,0.06C16.19,1.23 14.24,0 12,0S7.81,1.23 6.78,3.06C6.52,3.02 6.26,3 6,3C2.69,3 0,5.69 0,9c0,1.78 0.79,3.38 2.02,4.48c0,0.01 0,0.02 0,0.04C0.79,14.62 0,16.22 0,18c0,3.31 2.69,6 6,6c1.39,0 2.67,-0.48 3.69,-1.28C10.43,22.9 11.2,23 12,23s1.57,-0.1 2.31,-0.28C15.33,23.52 16.61,24 18,24c3.31,0 6,-2.69 6,-6C24,16.22 23.21,14.62 21.97,13.52zM12,21c-4.41,0 -8,-3.59 -8,-8c0,-3.72 2.56,-6.85 6,-7.74c0,0.02 0,0.03 0,0.05c0,3.34 2.72,6.06 6.06,6.06c1.26,0 2.45,-0.39 3.45,-1.09C19.82,11.14 20,12.05 20,13C20,17.41 16.41,21 12,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/face_3.xml
deleted file mode 100644
index c7d50ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face_3.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.91,11.96C22.39,6.32 17.66,2 12,2S1.61,6.32 1.09,11.96l-0.9,9.86C0.09,22.99 1.01,24 2.19,24h19.62c1.18,0 2.1,-1.01 1.99,-2.18L22.91,11.96zM4.54,9.13C5.41,9.68 6.43,10 7.5,10C9.36,10 11,9.07 12,7.65C13,9.07 14.64,10 16.5,10c1.07,0 2.09,-0.32 2.96,-0.87C19.8,10.02 20,10.99 20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8C4,10.99 4.2,10.02 4.54,9.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/face_4.xml
deleted file mode 100644
index 655df37..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-0.96,0 -1.88,0.14 -2.75,0.39C8.37,0.96 6.8,0 5,0C2.24,0 0,2.24 0,5c0,1.8 0.96,3.37 2.39,4.25C2.14,10.12 2,11.04 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0.01,-0.15c2.6,-0.98 4.68,-2.99 5.74,-5.55C11.58,8.56 14.37,10 17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face_5.xml b/compose/material/material/icons/generator/raw-icons/rounded/face_5.xml
deleted file mode 100644
index 525db6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face_5.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.12 0.23,-2.18 0.65,-3.15C4.74,8.94 4.86,9 5,9c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.25 -0.19,-0.45 -0.43,-0.49c0.15,-0.26 0.32,-0.51 0.49,-0.75C5.53,7.34 5.5,7.41 5.5,7.5C5.5,7.78 5.72,8 6,8s0.5,-0.22 0.5,-0.5C6.5,7.22 6.28,7 6,7C5.87,7 5.75,7.05 5.66,7.13c0.52,-0.68 1.15,-1.28 1.86,-1.76C7.51,5.41 7.5,5.45 7.5,5.5C7.5,5.78 7.72,6 8,6s0.5,-0.22 0.5,-0.5c0,-0.24 -0.17,-0.43 -0.4,-0.48c0.16,-0.09 0.32,-0.17 0.49,-0.25C8.68,4.91 8.83,5 9,5c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.03 -0.01,-0.06 -0.02,-0.09c0.39,-0.13 0.79,-0.23 1.21,-0.3C10.58,4.21 10.5,4.34 10.5,4.5C10.5,4.78 10.72,5 11,5s0.5,-0.22 0.5,-0.5c0,-0.21 -0.13,-0.38 -0.3,-0.46C11.46,4.01 11.73,4 12,4s0.54,0.01 0.8,0.04c-0.18,0.08 -0.3,0.25 -0.3,0.46C12.5,4.78 12.72,5 13,5s0.5,-0.22 0.5,-0.5c0,-0.16 -0.08,-0.29 -0.19,-0.38c0.41,0.07 0.82,0.17 1.21,0.3C14.51,4.44 14.5,4.47 14.5,4.5C14.5,4.78 14.72,5 15,5c0.17,0 0.32,-0.09 0.41,-0.23c0.17,0.08 0.33,0.16 0.49,0.25c-0.23,0.05 -0.4,0.24 -0.4,0.48C15.5,5.78 15.72,6 16,6s0.5,-0.22 0.5,-0.5c0,-0.05 -0.01,-0.09 -0.03,-0.13c0.71,0.48 1.34,1.08 1.86,1.76C18.25,7.05 18.13,7 18,7c-0.28,0 -0.5,0.22 -0.5,0.5C17.5,7.78 17.72,8 18,8s0.5,-0.22 0.5,-0.5c0,-0.09 -0.03,-0.16 -0.07,-0.23c0.18,0.24 0.34,0.49 0.49,0.75C18.69,8.05 18.5,8.25 18.5,8.5C18.5,8.78 18.72,9 19,9c0.14,0 0.26,-0.06 0.35,-0.15C19.77,9.82 20,10.88 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face_6.xml b/compose/material/material/icons/generator/raw-icons/rounded/face_6.xml
deleted file mode 100644
index 8c34172..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face_6.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.01 0,-0.02 0,-0.03c2.31,-0.22 3.43,-1.59 4.34,-3.41C8.51,8.21 8.85,8 9.24,8h5.53c0.38,0 0.72,0.21 0.89,0.55c0.9,1.8 1.99,3.19 4.34,3.41c0,0.01 0,0.02 0,0.03C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face_retouching_natural.xml b/compose/material/material/icons/generator/raw-icons/rounded/face_retouching_natural.xml
deleted file mode 100644
index 4769047..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face_retouching_natural.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.01,4.05L20.6,3.4l-0.65,-1.41c-0.18,-0.39 -0.73,-0.39 -0.91,0L18.4,3.4l-1.41,0.65c-0.39,0.18 -0.39,0.73 0,0.91L18.4,5.6l0.65,1.41c0.18,0.39 0.73,0.39 0.91,0L20.6,5.6l1.41,-0.65C22.4,4.78 22.4,4.22 22.01,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,8.8c-0.78,0 -1.49,-0.46 -1.82,-1.17l-0.41,-0.9l-0.9,-0.41C15.66,5.99 15.2,5.28 15.2,4.5c0,-0.66 0.34,-1.26 0.87,-1.63C14.83,2.32 13.45,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10c0,-1.45 -0.32,-2.83 -0.87,-4.07C20.76,8.46 20.16,8.8 19.5,8.8zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c2.6,-0.98 4.69,-2.99 5.74,-5.55C11.58,8.56 14.37,10 17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12C20,16.41 16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/face_retouching_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/face_retouching_off.xml
deleted file mode 100644
index 02ff65e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/face_retouching_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12c0,1.22 -0.28,2.37 -0.77,3.4l1.49,1.49C21.53,15.44 22,13.78 22,12c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.47 -4.89,1.28l5.33,5.33C13.93,9.49 15.65,10 17.5,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.6,4.43l1.48,1.48C2.51,7.95 1.7,10.6 2.1,13.46c0.62,4.33 4.11,7.82 8.44,8.44c2.85,0.41 5.51,-0.41 7.55,-1.98l1.48,1.48c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L4.01,3.01c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C2.21,3.41 2.21,4.04 2.6,4.43zM16.66,18.49C15.35,19.44 13.74,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c1.39,-0.52 2.63,-1.35 3.64,-2.39L16.66,18.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/facebook.xml b/compose/material/material/icons/generator/raw-icons/rounded/facebook.xml
deleted file mode 100644
index 308115a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/facebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,4.84 3.44,8.87 8,9.8V15H8v-3h2V9.5C10,7.57 11.57,6 13.5,6H16v3h-2c-0.55,0 -1,0.45 -1,1v2h3v3h-3v6.95C18.05,21.45 22,17.19 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fact_check.xml b/compose/material/material/icons/generator/raw-icons/rounded/fact_check.xml
deleted file mode 100644
index 6d608c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fact_check.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM9,17H6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1C10,16.55 9.55,17 9,17zM9,13H6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1C10,12.55 9.55,13 9,13zM9,9H6C5.45,9 5,8.55 5,8c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1C10,8.55 9.55,9 9,9zM18.7,11.12l-3.17,3.17c-0.39,0.39 -1.03,0.39 -1.42,0l-1.41,-1.42c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71l2.47,-2.47c0.39,-0.39 1.02,-0.39 1.41,0l0.01,0.01C19.09,10.1 19.09,10.74 18.7,11.12z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/factory.xml b/compose/material/material/icons/generator/raw-icons/rounded/factory.xml
deleted file mode 100644
index 08d67a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/factory.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10V8.48c0,-0.71 -0.71,-1.19 -1.37,-0.93L9,9V8.52C9,7.8 8.27,7.31 7.61,7.6L3.21,9.48C2.48,9.8 2,10.52 2,11.32V20c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V10H14zM9,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17zM13,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17zM17,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.12,2h-1.23c-0.51,0 -0.93,0.38 -0.99,0.88L17.2,8.5h4.6l-0.69,-5.62C21.05,2.38 20.62,2 20.12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/family_restroom.xml b/compose/material/material/icons/generator/raw-icons/rounded/family_restroom.xml
deleted file mode 100644
index 5f0c5fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/family_restroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S16,5.11 16,4zM20,21v-5h1.11c0.68,0 1.16,-0.67 0.95,-1.32l-2.1,-6.31C19.68,7.55 18.92,7 18.06,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37l-0.86,2.58C16.26,11.55 17,12.68 17,14v8h2C19.55,22 20,21.55 20,21zM12.5,11.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5S11,9.17 11,10S11.67,11.5 12.5,11.5zM5.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S4.39,6 5.5,6zM7.5,21v-6H8c0.55,0 1,-0.45 1,-1V9c0,-1.1 -0.9,-2 -2,-2H4C2.9,7 2,7.9 2,9v5c0,0.55 0.45,1 1,1h0.5v6c0,0.55 0.45,1 1,1h2C7.05,22 7.5,21.55 7.5,21zM10,14v3c0,0.55 0.45,1 1,1h0v3c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-3h0c0.55,0 1,-0.45 1,-1v-3c0,-0.82 -0.68,-1.5 -1.5,-1.5h-2C10.68,12.5 10,13.18 10,14"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fast_forward.xml b/compose/material/material/icons/generator/raw-icons/rounded/fast_forward.xml
deleted file mode 100644
index e59bcda..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fast_forward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.58,16.89l5.77,-4.07c0.56,-0.4 0.56,-1.24 0,-1.63L5.58,7.11C4.91,6.65 4,7.12 4,7.93v8.14c0,0.81 0.91,1.28 1.58,0.82zM13,7.93v8.14c0,0.81 0.91,1.28 1.58,0.82l5.77,-4.07c0.56,-0.4 0.56,-1.24 0,-1.63l-5.77,-4.07c-0.67,-0.47 -1.58,0 -1.58,0.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fast_rewind.xml b/compose/material/material/icons/generator/raw-icons/rounded/fast_rewind.xml
deleted file mode 100644
index e9a799a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fast_rewind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16.07L11,7.93c0,-0.81 -0.91,-1.28 -1.58,-0.82l-5.77,4.07c-0.56,0.4 -0.56,1.24 0,1.63l5.77,4.07c0.67,0.47 1.58,0 1.58,-0.81zM12.66,12.82l5.77,4.07c0.66,0.47 1.58,-0.01 1.58,-0.82L20.01,7.93c0,-0.81 -0.91,-1.28 -1.58,-0.82l-5.77,4.07c-0.57,0.4 -0.57,1.24 0,1.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fastfood.xml b/compose/material/material/icons/generator/raw-icons/rounded/fastfood.xml
deleted file mode 100644
index 9d42276..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fastfood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,5H18V2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-3.9c-0.59,0 -1.05,0.51 -1,1.1l0.12,1.21C14.9,8.16 18,10.77 18,15l0.02,8h1.7c0.84,0 1.53,-0.65 1.63,-1.47L22.89,6.1c0.06,-0.59 -0.4,-1.1 -0.99,-1.1zM15,21H2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM2.1,15h12.8c0.62,0 1.11,-0.56 0.99,-1.16 -0.65,-3.23 -4.02,-4.85 -7.39,-4.85s-6.73,1.62 -7.39,4.85c-0.12,0.6 0.38,1.16 0.99,1.16zM15,17H2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/favorite.xml b/compose/material/material/icons/generator/raw-icons/rounded/favorite.xml
deleted file mode 100644
index 1a4c5b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/favorite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.35,20.13c-0.76,0.69 -1.93,0.69 -2.69,-0.01l-0.11,-0.1C5.3,15.27 1.87,12.16 2,8.28c0.06,-1.7 0.93,-3.33 2.34,-4.29 2.64,-1.8 5.9,-0.96 7.66,1.1 1.76,-2.06 5.02,-2.91 7.66,-1.1 1.41,0.96 2.28,2.59 2.34,4.29 0.14,3.88 -3.3,6.99 -8.55,11.76l-0.1,0.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/favorite_border.xml b/compose/material/material/icons/generator/raw-icons/rounded/favorite_border.xml
deleted file mode 100644
index b9d1912..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/favorite_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,3.99c-2.64,-1.8 -5.9,-0.96 -7.66,1.1 -1.76,-2.06 -5.02,-2.91 -7.66,-1.1 -1.4,0.96 -2.28,2.58 -2.34,4.29 -0.14,3.88 3.3,6.99 8.55,11.76l0.1,0.09c0.76,0.69 1.93,0.69 2.69,-0.01l0.11,-0.1c5.25,-4.76 8.68,-7.87 8.55,-11.75 -0.06,-1.7 -0.94,-3.32 -2.34,-4.28zM12.1,18.55l-0.1,0.1 -0.1,-0.1C7.14,14.24 4,11.39 4,8.5 4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5 0,2.89 -3.14,5.74 -7.9,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fax.xml b/compose/material/material/icons/generator/raw-icons/rounded/fax.xml
deleted file mode 100644
index b3631fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fax.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-1V6c0,-1.1 -0.9,-2 -2,-2h-6C8.9,4 8,4.9 8,6v14h12c1.1,0 2,-0.9 2,-2v-6C22,10.34 20.66,9 19,9zM10,6h6v3h-6V6zM14,17h-4v-5h4V17zM16,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,16.55 16.55,17 16,17zM16,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,13.55 16.55,14 16,14zM19,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,16.55 19.55,17 19,17zM19,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,13.55 19.55,14 19,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,8C3.12,8 2,9.12 2,10.5v8C2,19.88 3.12,21 4.5,21S7,19.88 7,18.5v-8C7,9.12 5.88,8 4.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/featured_play_list.xml b/compose/material/material/icons/generator/raw-icons/rounded/featured_play_list.xml
deleted file mode 100644
index e1550f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/featured_play_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM11,11L4,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h7c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM11,7L4,7c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h7c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/featured_video.xml b/compose/material/material/icons/generator/raw-icons/rounded/featured_video.xml
deleted file mode 100644
index fa3d633..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/featured_video.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM11,12L4,12c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h7c0.55,0 1,0.45 1,1v5c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/feed.xml b/compose/material/material/icons/generator/raw-icons/rounded/feed.xml
deleted file mode 100644
index 36a5268..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/feed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8L16,3zM8,7h3c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8C7.45,9 7,8.55 7,8v0C7,7.45 7.45,7 8,7zM16,17H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v0C17,16.55 16.55,17 16,17zM16,13H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v0C17,12.55 16.55,13 16,13zM15,8V5l4,4h-3C15.45,9 15,8.55 15,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/feedback.xml b/compose/material/material/icons/generator/raw-icons/rounded/feedback.xml
deleted file mode 100644
index 64592f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/feedback.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4.01,2c-1.1,0 -2,0.9 -2,2v18L6,18h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM13,14h-2v-2h2v2zM13,9c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/female.xml b/compose/material/material/icons/generator/raw-icons/rounded/female.xml
deleted file mode 100644
index 52278fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/female.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c1.93,0 3.5,1.57 3.5,3.5S13.93,13 12,13s-3.5,-1.57 -3.5,-3.5S10.07,6 12,6zM13,14.91c2.56,-0.47 4.5,-2.71 4.5,-5.41C17.5,6.46 15.04,4 12,4S6.5,6.46 6.5,9.5c0,2.7 1.94,4.94 4.5,5.41V17h-1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1V14.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fence.xml b/compose/material/material/icons/generator/raw-icons/rounded/fence.xml
deleted file mode 100644
index 835c809..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11L21,11c0,-0.55 -0.45,-1 -1,-1h-1V7l-2.29,-2.29c-0.39,-0.39 -1.02,-0.39 -1.41,0L14,6l-1.29,-1.29c-0.39,-0.39 -1.02,-0.39 -1.41,0L10,6L8.71,4.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L5,7v3H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v2H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v3c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1v-2h1C20.55,12 21,11.55 21,11zM16,6.83l1,1V10h-2V7.83l0.41,-0.41L16,6.83zM12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41,-0.41L12,6.83zM11,14v-2h2v2H11zM13,16v2h-2v-2H13zM7,7.83l1,-1l0.59,0.59L9,7.83V10H7V7.83zM7,12h2v2H7V12zM7,16h2v2H7V16zM17,18h-2v-2h2V18zM17,14h-2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/festival.xml b/compose/material/material/icons/generator/raw-icons/rounded/festival.xml
deleted file mode 100644
index a496560..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/festival.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11v-0.61c0,-0.8 -0.48,-1.54 -1.23,-1.84c-3.65,-1.48 -6.81,-3.93 -8.48,-5.37c-0.74,-0.64 -1.84,-0.64 -2.58,0C9.03,4.62 5.88,7.06 2.23,8.55C1.48,8.85 1,9.58 1,10.39V11c0,1.49 0.93,2.75 2.24,3.26c-0.03,1.68 -0.16,3.55 -0.52,5.29C2.46,20.81 3.38,22 4.67,22h14.67c1.29,0 2.21,-1.19 1.95,-2.45c-0.36,-1.75 -0.5,-3.62 -0.52,-5.29C22.07,13.75 23,12.49 23,11zM12,4.71c1.33,1.14 3.49,2.84 6.11,4.29H5.89C8.51,7.55 10.67,5.85 12,4.71zM13,11h3c0,0.83 -0.67,1.5 -1.5,1.5S13,11.83 13,11zM9.5,12.5C8.67,12.5 8,11.83 8,11h3C11,11.83 10.33,12.5 9.5,12.5zM6,11c0,0.83 -0.67,1.5 -1.5,1.5S3,11.83 3,11H6zM4.66,20c0.39,-1.86 0.54,-3.82 0.57,-5.58c0.68,-0.15 1.29,-0.49 1.76,-0.98c0.25,0.25 0.54,0.45 0.85,0.62c-0.1,1.87 -0.26,4 -0.52,5.93H4.66zM9.35,20c0.24,-1.83 0.39,-3.78 0.48,-5.53c0.84,-0.08 1.61,-0.45 2.17,-1.02c0.56,0.57 1.32,0.94 2.17,1.02c0.1,1.75 0.24,3.7 0.48,5.53H9.35zM16.67,20c-0.27,-1.94 -0.43,-4.07 -0.52,-5.93c0.31,-0.17 0.61,-0.37 0.85,-0.62c0.47,0.48 1.08,0.83 1.76,0.98c0.03,1.76 0.18,3.72 0.57,5.58H16.67zM19.5,12.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C21,11.83 20.33,12.5 19.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fiber_dvr.xml b/compose/material/material/icons/generator/raw-icons/rounded/fiber_dvr.xml
deleted file mode 100644
index 0b2e29a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fiber_dvr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,10.5h2v3h-2zM17.5,10.5h2v1h-2zM21,3L3,3c-1.11,0 -2,0.89 -2,2v14c0,1.1 0.89,2 2,2h18c1.11,0 2,-0.9 2,-2L23,5c0,-1.11 -0.89,-2 -2,-2zM8,13.5c0,0.83 -0.67,1.5 -1.5,1.5h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-5c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.83,0 1.5,0.67 1.5,1.5v3zM14.1,9.92l-1.27,4.36c-0.12,0.43 -0.52,0.72 -0.96,0.72s-0.84,-0.29 -0.96,-0.72L9.64,9.92c-0.14,-0.46 0.21,-0.92 0.69,-0.92 0.32,0 0.6,0.21 0.69,0.52l0.85,2.91 0.85,-2.91c0.09,-0.31 0.37,-0.52 0.69,-0.52 0.48,0 0.83,0.46 0.69,0.92zM21,11.5c0,0.6 -0.4,1.15 -0.9,1.4l0.63,1.48c0.19,0.45 -0.14,0.96 -0.63,0.96 -0.28,0 -0.53,-0.16 -0.63,-0.42L18.65,13L17.5,13v1.31c0,0.38 -0.31,0.69 -0.69,0.69h-0.12c-0.38,0 -0.69,-0.31 -0.69,-0.69L16,9.64c0,-0.35 0.29,-0.64 0.64,-0.64h2.86c0.83,0 1.5,0.67 1.5,1.5v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fiber_manual_record.xml b/compose/material/material/icons/generator/raw-icons/rounded/fiber_manual_record.xml
deleted file mode 100644
index d191830..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fiber_manual_record.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-8,0a8,8 0,1 1,16 0a8,8 0,1 1,-16 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fiber_new.xml b/compose/material/material/icons/generator/raw-icons/rounded/fiber_new.xml
deleted file mode 100644
index 6af4156..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fiber_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM8.5,14.21c0,0.43 -0.36,0.79 -0.79,0.79 -0.25,0 -0.49,-0.12 -0.64,-0.33L4.75,11.5v2.88c0,0.35 -0.28,0.62 -0.62,0.62s-0.63,-0.28 -0.63,-0.62L3.5,9.79c0,-0.43 0.36,-0.79 0.79,-0.79h0.05c0.26,0 0.5,0.12 0.65,0.33l2.26,3.17L7.25,9.62c0,-0.34 0.28,-0.62 0.63,-0.62s0.62,0.28 0.62,0.62v4.59zM13.5,9.64c0,0.35 -0.28,0.62 -0.62,0.62L11,10.26v1.12h1.88c0.35,0 0.62,0.28 0.62,0.62v0.01c0,0.35 -0.28,0.62 -0.62,0.62L11,12.63v1.11h1.88c0.35,0 0.62,0.28 0.62,0.62 0,0.35 -0.28,0.62 -0.62,0.62h-2.53c-0.47,0 -0.85,-0.38 -0.85,-0.85v-4.3c0,-0.45 0.38,-0.83 0.85,-0.83h2.53c0.35,0 0.62,0.28 0.62,0.62v0.02zM20.5,14c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1L14.5,9.62c0,-0.34 0.28,-0.62 0.62,-0.62s0.62,0.28 0.62,0.62v3.89h1.13v-2.9c0,-0.35 0.28,-0.62 0.62,-0.62s0.62,0.28 0.62,0.62v2.89h1.12L19.23,9.62c0,-0.35 0.28,-0.62 0.62,-0.62s0.62,0.28 0.62,0.62L20.47,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fiber_pin.xml b/compose/material/material/icons/generator/raw-icons/rounded/fiber_pin.xml
deleted file mode 100644
index edb90cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fiber_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM9,11.5c0,0.83 -0.67,1.5 -1.5,1.5h-2v1.25c0,0.41 -0.34,0.75 -0.75,0.75S4,14.66 4,14.25L4,10c0,-0.55 0.45,-1 1,-1h2.5c0.83,0 1.5,0.67 1.5,1.5v1zM12.5,14.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75v-4.5c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75v4.5zM20,14.21c0,0.44 -0.35,0.79 -0.79,0.79 -0.25,0 -0.49,-0.12 -0.64,-0.33l-2.31,-3.17v2.88c0,0.34 -0.28,0.62 -0.62,0.62h-0.01c-0.35,0 -0.63,-0.28 -0.63,-0.62L15,9.83c0,-0.46 0.37,-0.83 0.83,-0.83 0.27,0 0.52,0.13 0.67,0.35l2.25,3.15L18.75,9.62c0,-0.34 0.28,-0.62 0.62,-0.62h0.01c0.34,0 0.62,0.28 0.62,0.62v4.59zM5.5,10.5h2v1h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fiber_smart_record.xml b/compose/material/material/icons/generator/raw-icons/rounded/fiber_smart_record.xml
deleted file mode 100644
index 87d63a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fiber_smart_record.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12m-8,0a8,8 0,1 1,16 0a8,8 0,1 1,-16 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5.55v0.18c0,0.37 0.23,0.69 0.57,0.85C19.6,7.54 21,9.61 21,12s-1.4,4.46 -3.43,5.42c-0.34,0.16 -0.57,0.47 -0.57,0.84v0.18c0,0.68 0.71,1.11 1.32,0.82C21.08,18.01 23,15.23 23,12s-1.92,-6.01 -4.68,-7.27c-0.61,-0.28 -1.32,0.14 -1.32,0.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/file_copy.xml b/compose/material/material/icons/generator/raw-icons/rounded/file_copy.xml
deleted file mode 100644
index 204ccd5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/file_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,1L4,1c-1.1,0 -2,0.9 -2,2v13c0,0.55 0.45,1 1,1s1,-0.45 1,-1L4,4c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM15.59,5.59l4.83,4.83c0.37,0.37 0.58,0.88 0.58,1.41L21,21c0,1.1 -0.9,2 -2,2L7.99,23C6.89,23 6,22.1 6,21l0.01,-14c0,-1.1 0.89,-2 1.99,-2h6.17c0.53,0 1.04,0.21 1.42,0.59zM15,12h4.5L14,6.5L14,11c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/file_download.xml b/compose/material/material/icons/generator/raw-icons/rounded/file_download.xml
deleted file mode 100644
index 876e1d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/file_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,9H15V4c0,-0.55 -0.45,-1 -1,-1h-4C9.45,3 9,3.45 9,4v5H7.41c-0.89,0 -1.34,1.08 -0.71,1.71l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59C17.92,10.08 17.48,9 16.59,9zM5,19c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H6C5.45,18 5,18.45 5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/file_download_done.xml b/compose/material/material/icons/generator/raw-icons/rounded/file_download_done.xml
deleted file mode 100644
index 02c68fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/file_download_done.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.42,4.71L19.42,4.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-8.48,8.49L5.99,9.66c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l4.24,4.24c0.39,0.39 1.02,0.39 1.41,0l9.19,-9.19C19.82,5.73 19.82,5.1 19.42,4.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1v0C5,19.55 5.45,20 6,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/file_download_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/file_download_off.xml
deleted file mode 100644
index 4a8f78c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/file_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v5h1.59c0.89,0 1.33,1.08 0.7,1.71l-1.88,1.88L9,6.17zM20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l4.5,4.5c-0.26,0.37 -0.28,0.91 0.1,1.28l4.59,4.59c0.35,0.35 0.88,0.37 1.27,0.09L15.17,18H6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h11.17l1.9,1.9c0.39,0.39 1.02,0.39 1.41,0C20.88,21.51 20.88,20.88 20.49,20.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/file_open.xml b/compose/material/material/icons/generator/raw-icons/rounded/file_open.xml
deleted file mode 100644
index 7f6aea7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/file_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h9v-6c0,-1.1 0.9,-2 2,-2h3V8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2zM13,8V3.5L18.5,9H14C13.45,9 13,8.55 13,8zM22.66,17c0,0.55 -0.45,1 -1,1h-1.24l2.24,2.24c0.39,0.39 0.39,1.02 0,1.41l0,0c-0.39,0.39 -1.02,0.39 -1.41,0L19,19.41l0,1.24c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1V17c0,-0.55 0.45,-1 1,-1h3.66C22.21,16 22.66,16.45 22.66,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/file_present.xml b/compose/material/material/icons/generator/raw-icons/rounded/file_present.xml
deleted file mode 100644
index 488779f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/file_present.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2zM16,15c0,2.34 -2.01,4.21 -4.39,3.98C9.53,18.78 8,16.92 8,14.83l0,-5.19c0,-1.31 0.94,-2.5 2.24,-2.63C11.74,6.86 13,8.03 13,9.5V14c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V9.5C11,9.22 10.78,9 10.5,9S10,9.22 10,9.5v5.39c0,1 0.68,1.92 1.66,2.08C12.92,17.18 14,16.21 14,15v-3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1V15zM14,7V4l4,4h-3C14.45,8 14,7.55 14,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/file_upload.xml b/compose/material/material/icons/generator/raw-icons/rounded/file_upload.xml
deleted file mode 100644
index d5c2075..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/file_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.4,10h1.59v5c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-5h1.59c0.89,0 1.34,-1.08 0.71,-1.71L12.7,3.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L6.7,8.29C6.07,8.92 6.51,10 7.4,10zM5,19c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H6C5.45,18 5,18.45 5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter.xml
deleted file mode 100644
index 538db3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.56,10.81l-2.35,3.02 -1.56,-1.88c-0.2,-0.25 -0.58,-0.24 -0.78,0.01l-1.74,2.23c-0.26,0.33 -0.02,0.81 0.39,0.81h8.98c0.41,0 0.65,-0.47 0.4,-0.8l-2.55,-3.39c-0.19,-0.26 -0.59,-0.26 -0.79,0zM2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_1.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_1.xml
deleted file mode 100644
index 90495d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM15,15c0.55,0 1,-0.45 1,-1L16,6c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v7c0,0.55 0.45,1 1,1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_2.xml
deleted file mode 100644
index 57c4261..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM16,13h-3v-2h2c1.1,0 2,-0.9 2,-2L17,7c0,-1.1 -0.9,-2 -2,-2h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v2h-2c-1.1,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_3.xml
deleted file mode 100644
index a2f1021..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM17,13v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.1 -0.9,-2 -2,-2h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v2h-1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v2h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_4.xml
deleted file mode 100644
index 139ebf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM16,15c0.55,0 1,-0.45 1,-1L17,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-2L13,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3v3c0,0.55 0.45,1 1,1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_5.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_5.xml
deleted file mode 100644
index ad6b9e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM17,13v-2c0,-1.1 -0.9,-2 -2,-2h-2L13,7h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3v2h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_6.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_6.xml
deleted file mode 100644
index b9bb645..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM13,15h2c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2h-2L13,7h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_7.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_7.xml
deleted file mode 100644
index 8845479..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM13.25,14.51l3.58,-7.17c0.11,-0.22 0.17,-0.47 0.17,-0.72 0,-0.9 -0.72,-1.62 -1.62,-1.62L12,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3l-3.36,6.71c-0.3,0.59 0.13,1.29 0.8,1.29h0.01c0.34,0 0.65,-0.19 0.8,-0.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_8.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_8.xml
deleted file mode 100644
index 4756a0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_8.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM13,15h2c1.1,0 2,-0.89 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.89 -2,2v1.5c0,0.83 0.67,1.5 1.5,1.5 -0.83,0 -1.5,0.67 -1.5,1.5L11,13c0,1.11 0.9,2 2,2zM13,7h2v2h-2L13,7zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_9.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_9.xml
deleted file mode 100644
index f96adbcd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM15,5h-2c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h2v2h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2L17,7c0,-1.1 -0.9,-2 -2,-2zM15,9h-2L13,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_9_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_9_plus.xml
deleted file mode 100644
index 836f9f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_9_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM14,12L14,8c0,-1.1 -0.9,-2 -2,-2h-1c-1.1,0 -2,0.9 -2,2v1c0,1.1 0.9,2 2,2h1v1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2c1.1,0 2,-0.9 2,-2zM11,9L11,8h1v1h-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM21,10c0,-0.55 -0.45,-1 -1,-1h-1L19,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h-1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_alt.xml
deleted file mode 100644
index 987fa31..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.25,5.61C6.57,8.59 10,13 10,13v5c0,1.1 0.9,2 2,2h0c1.1,0 2,-0.9 2,-2v-5c0,0 3.43,-4.41 5.75,-7.39C20.26,4.95 19.79,4 18.95,4H5.04C4.21,4 3.74,4.95 4.25,5.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_alt_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_alt_off.xml
deleted file mode 100644
index e1c0a52..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_alt_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.79,5.61C20.3,4.95 19.83,4 19,4H6.83l7.97,7.97L19.79,5.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L10,13v5c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-1.17l5.07,5.07c0.39,0.39 1.02,0.39 1.41,0S20.88,20.88 20.49,20.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_b_and_w.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_b_and_w.xml
deleted file mode 100644
index 470a419..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_b_and_w.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19l-7,-8v8L5,19l7,-8L12,5h6c0.55,0 1,0.45 1,1v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_center_focus.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_center_focus.xml
deleted file mode 100644
index a6cc2b23..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_center_focus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15c-0.55,0 -1,0.45 -1,1v3c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,19c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 -0.45,-1 -1,-1zM5,6c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,3c-1.1,0 -2,0.9 -2,2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L5,6zM19,3h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2c0.55,0 1,0.45 1,1v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L21,5c0,-1.1 -0.9,-2 -2,-2zM19,18c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_drama.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_drama.xml
deleted file mode 100644
index a1be208..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_drama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.61,5.64 5.36,8.04 2.35,8.36 0,10.9 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6.17c-2.09,0 -3.95,-1.53 -4.15,-3.61C1.79,12.01 3.66,10 6,10c1.92,0 3.53,1.36 3.91,3.17 0.1,0.48 0.5,0.83 0.98,0.83 0.61,0 1.11,-0.55 0.99,-1.15 -0.43,-2.24 -2.11,-4.03 -4.29,-4.63 1.1,-1.46 2.89,-2.37 4.89,-2.2 2.88,0.25 5.01,2.82 5.01,5.71V12h1.37c1.45,0 2.79,0.97 3.07,2.4 0.39,1.91 -1.08,3.6 -2.93,3.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_frames.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_frames.xml
deleted file mode 100644
index 2438375..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_frames.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-4L12.71,0.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L8,4L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM19,20L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 0.45,-1 1,-1h3.52l3.52,-3.5L15.52,6L19,6c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM17,8L7,8c-0.55,0 -1,0.45 -1,1v8c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1L18,9c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_hdr.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_hdr.xml
deleted file mode 100644
index 515fe49..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_hdr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,7.07L10.25,11l2.25,3c0.33,0.44 0.24,1.07 -0.2,1.4 -0.44,0.33 -1.07,0.25 -1.4,-0.2 -1.05,-1.4 -2.31,-3.07 -3.1,-4.14 -0.4,-0.53 -1.2,-0.53 -1.6,0l-4,5.33c-0.49,0.67 -0.02,1.61 0.8,1.61h18c0.82,0 1.29,-0.94 0.8,-1.6l-7,-9.33c-0.4,-0.54 -1.2,-0.54 -1.6,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_list.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_list.xml
deleted file mode 100644
index 32f752b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_list.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,7c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1zM7,13h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L7,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_list_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_list_off.xml
deleted file mode 100644
index e89a258..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_list_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7c0,-0.55 -0.45,-1 -1,-1H8.83l2,2H20C20.55,8 21,7.55 21,7zM18,12c0,-0.55 -0.45,-1 -1,-1h-3.17l2,2H17C17.55,13 18,12.55 18,12zM13.98,16.81C13.99,16.87 14,16.94 14,17c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2c0.06,0 0.13,0.01 0.19,0.02L10.17,13H7c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1.17l-3,-3H4C3.45,8 3,7.55 3,7c0,-0.32 0.15,-0.6 0.38,-0.79L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41s1.02,-0.39 1.41,0l16.97,16.97c0.39,0.39 0.39,1.02 0,1.41s-1.02,0.39 -1.41,0L13.98,16.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_none.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_none.xml
deleted file mode 100644
index 9155d39..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,21c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 -0.45,-1 -1,-1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM20,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_tilt_shift.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_tilt_shift.xml
deleted file mode 100644
index 443a5a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_tilt_shift.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3.23c0,-0.64 -0.59,-1.13 -1.21,-0.99 -1.12,0.26 -2.18,0.7 -3.12,1.3 -0.53,0.34 -0.61,1.1 -0.16,1.55 0.32,0.32 0.83,0.4 1.21,0.16 0.77,-0.49 1.62,-0.85 2.54,-1.05 0.44,-0.1 0.74,-0.51 0.74,-0.97zM17.33,3.55c-0.94,-0.6 -2,-1.04 -3.12,-1.3 -0.62,-0.14 -1.21,0.34 -1.21,0.98 0,0.45 0.3,0.87 0.74,0.96 0.91,0.2 1.77,0.57 2.53,1.05 0.39,0.24 0.89,0.17 1.21,-0.16 0.46,-0.44 0.39,-1.19 -0.15,-1.53zM20.77,11c0.64,0 1.13,-0.59 0.99,-1.21 -0.26,-1.12 -0.7,-2.18 -1.3,-3.12 -0.34,-0.53 -1.1,-0.61 -1.55,-0.16 -0.32,0.32 -0.4,0.83 -0.16,1.21 0.49,0.77 0.85,1.62 1.05,2.53 0.1,0.45 0.51,0.75 0.97,0.75zM5.1,6.51c-0.46,-0.45 -1.21,-0.38 -1.55,0.16 -0.6,0.94 -1.04,2 -1.3,3.12 -0.14,0.62 0.34,1.21 0.98,1.21 0.45,0 0.87,-0.3 0.96,-0.74 0.2,-0.91 0.57,-1.77 1.05,-2.53 0.26,-0.39 0.18,-0.9 -0.14,-1.22zM3.23,13c-0.64,0 -1.13,0.59 -0.99,1.21 0.26,1.12 0.7,2.17 1.3,3.12 0.34,0.54 1.1,0.61 1.55,0.16 0.32,-0.32 0.4,-0.83 0.15,-1.21 -0.49,-0.76 -0.85,-1.61 -1.05,-2.53 -0.09,-0.45 -0.5,-0.75 -0.96,-0.75zM15,12c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3 1.34,3 3,3 3,-1.34 3,-3zM18.9,17.49c0.45,0.45 1.21,0.38 1.55,-0.15 0.6,-0.94 1.04,-2 1.3,-3.11 0.14,-0.62 -0.35,-1.21 -0.98,-1.21 -0.45,0 -0.87,0.3 -0.96,0.74 -0.2,0.91 -0.57,1.76 -1.05,2.53 -0.26,0.37 -0.18,0.88 0.14,1.2zM13,20.77c0,0.64 0.59,1.13 1.21,0.99 1.12,-0.26 2.17,-0.7 3.12,-1.3 0.54,-0.34 0.61,-1.1 0.16,-1.55 -0.32,-0.32 -0.83,-0.4 -1.21,-0.15 -0.76,0.49 -1.61,0.85 -2.53,1.05 -0.45,0.09 -0.75,0.5 -0.75,0.96zM6.67,20.45c0.95,0.6 2,1.04 3.12,1.3 0.62,0.14 1.21,-0.35 1.21,-0.98 0,-0.45 -0.3,-0.87 -0.74,-0.96 -0.91,-0.2 -1.77,-0.57 -2.53,-1.05 -0.39,-0.24 -0.89,-0.17 -1.21,0.16 -0.46,0.44 -0.39,1.19 0.15,1.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/filter_vintage.xml b/compose/material/material/icons/generator/raw-icons/rounded/filter_vintage.xml
deleted file mode 100644
index 8233677..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/filter_vintage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.7,12.4c-0.28,-0.16 -0.57,-0.29 -0.86,-0.4 0.29,-0.11 0.58,-0.24 0.86,-0.4 1.92,-1.11 2.99,-3.12 3,-5.19 -1.79,-1.03 -4.07,-1.11 -6,0 -0.28,0.16 -0.54,0.35 -0.78,0.54 0.05,-0.31 0.08,-0.63 0.08,-0.95 0,-2.22 -1.21,-4.15 -3,-5.19C10.21,1.85 9,3.78 9,6c0,0.32 0.03,0.64 0.08,0.95 -0.24,-0.2 -0.5,-0.39 -0.78,-0.55 -1.92,-1.11 -4.2,-1.03 -6,0 0,2.07 1.07,4.08 3,5.19 0.28,0.16 0.57,0.29 0.86,0.4 -0.29,0.11 -0.58,0.24 -0.86,0.4 -1.92,1.11 -2.99,3.12 -3,5.19 1.79,1.03 4.07,1.11 6,0 0.28,-0.16 0.54,-0.35 0.78,-0.54 -0.05,0.32 -0.08,0.64 -0.08,0.96 0,2.22 1.21,4.15 3,5.19 1.79,-1.04 3,-2.97 3,-5.19 0,-0.32 -0.03,-0.64 -0.08,-0.95 0.24,0.2 0.5,0.38 0.78,0.54 1.92,1.11 4.2,1.03 6,0 -0.01,-2.07 -1.08,-4.08 -3,-5.19zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/find_in_page.xml b/compose/material/material/icons/generator/raw-icons/rounded/find_in_page.xml
deleted file mode 100644
index 9480c91..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/find_in_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19.59V8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83c-0.37,-0.38 -0.88,-0.59 -1.41,-0.59H6c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2H18c0.45,0 0.85,-0.15 1.19,-0.4l-4.43,-4.43c-0.86,0.56 -1.89,0.88 -3,0.82 -2.37,-0.11 -4.4,-1.96 -4.72,-4.31 -0.44,-3.35 2.45,-6.18 5.83,-5.61 1.95,0.33 3.57,1.85 4,3.78 0.33,1.46 0.01,2.82 -0.7,3.9L20,19.59zM9,13c0,1.66 1.34,3 3,3s3,-1.34 3,-3 -1.34,-3 -3,-3 -3,1.34 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/find_replace.xml b/compose/material/material/icons/generator/raw-icons/rounded/find_replace.xml
deleted file mode 100644
index 78f8eed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/find_replace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6c1.38,0 2.63,0.56 3.54,1.46l-1.69,1.69c-0.31,0.31 -0.09,0.85 0.36,0.85h4.29c0.28,0 0.5,-0.22 0.5,-0.5L18,5.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-1.2,1.2C14.68,4.78 12.93,4 11,4 7.96,4 5.38,5.94 4.42,8.64c-0.24,0.66 0.23,1.36 0.93,1.36 0.42,0 0.79,-0.26 0.93,-0.66C6.96,7.4 8.82,6 11,6zM16.64,15.14c0.4,-0.54 0.72,-1.15 0.95,-1.8 0.23,-0.65 -0.25,-1.34 -0.94,-1.34 -0.42,0 -0.79,0.26 -0.93,0.66C15.04,14.6 13.18,16 11,16c-1.38,0 -2.63,-0.56 -3.54,-1.46l1.69,-1.69c0.31,-0.31 0.09,-0.85 -0.36,-0.85L4.5,12c-0.28,0 -0.5,0.22 -0.5,0.5v4.29c0,0.45 0.54,0.67 0.85,0.35l1.2,-1.2C7.32,17.22 9.07,18 11,18c1.55,0 2.98,-0.51 4.14,-1.36l4.11,4.11c0.41,0.41 1.08,0.41 1.49,0 0.41,-0.41 0.41,-1.08 0,-1.49l-4.1,-4.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fingerprint.xml b/compose/material/material/icons/generator/raw-icons/rounded/fingerprint.xml
deleted file mode 100644
index 2dfd992..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fingerprint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.81,4.47c-0.08,0 -0.16,-0.02 -0.23,-0.06C15.66,3.42 14,3 12.01,3c-1.98,0 -3.86,0.47 -5.57,1.41 -0.24,0.13 -0.54,0.04 -0.68,-0.2 -0.13,-0.24 -0.04,-0.55 0.2,-0.68C7.82,2.52 9.86,2 12.01,2c2.13,0 3.99,0.47 6.03,1.52 0.25,0.13 0.34,0.43 0.21,0.67 -0.09,0.18 -0.26,0.28 -0.44,0.28zM3.5,9.72c-0.1,0 -0.2,-0.03 -0.29,-0.09 -0.23,-0.16 -0.28,-0.47 -0.12,-0.7 0.99,-1.4 2.25,-2.5 3.75,-3.27C9.98,4.04 14,4.03 17.15,5.65c1.5,0.77 2.76,1.86 3.75,3.25 0.16,0.22 0.11,0.54 -0.12,0.7 -0.23,0.16 -0.54,0.11 -0.7,-0.12 -0.9,-1.26 -2.04,-2.25 -3.39,-2.94 -2.87,-1.47 -6.54,-1.47 -9.4,0.01 -1.36,0.7 -2.5,1.7 -3.4,2.96 -0.08,0.14 -0.23,0.21 -0.39,0.21zM9.75,21.79c-0.13,0 -0.26,-0.05 -0.35,-0.15 -0.87,-0.87 -1.34,-1.43 -2.01,-2.64 -0.69,-1.23 -1.05,-2.73 -1.05,-4.34 0,-2.97 2.54,-5.39 5.66,-5.39s5.66,2.42 5.66,5.39c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5c0,-2.42 -2.09,-4.39 -4.66,-4.39s-4.66,1.97 -4.66,4.39c0,1.44 0.32,2.77 0.93,3.85 0.64,1.15 1.08,1.64 1.85,2.42 0.19,0.2 0.19,0.51 0,0.71 -0.11,0.1 -0.24,0.15 -0.37,0.15zM16.92,19.94c-1.19,0 -2.24,-0.3 -3.1,-0.89 -1.49,-1.01 -2.38,-2.65 -2.38,-4.39 0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5c0,1.41 0.72,2.74 1.94,3.56 0.71,0.48 1.54,0.71 2.54,0.71 0.24,0 0.64,-0.03 1.04,-0.1 0.27,-0.05 0.53,0.13 0.58,0.41 0.05,0.27 -0.13,0.53 -0.41,0.58 -0.57,0.11 -1.07,0.12 -1.21,0.12zM14.91,22c-0.04,0 -0.09,-0.01 -0.13,-0.02 -1.59,-0.44 -2.63,-1.03 -3.72,-2.1 -1.4,-1.39 -2.17,-3.24 -2.17,-5.22 0,-1.62 1.38,-2.94 3.08,-2.94s3.08,1.32 3.08,2.94c0,1.07 0.93,1.94 2.08,1.94s2.08,-0.87 2.08,-1.94c0,-3.77 -3.25,-6.83 -7.25,-6.83 -2.84,0 -5.44,1.58 -6.61,4.03 -0.39,0.81 -0.59,1.76 -0.59,2.8 0,0.78 0.07,2.01 0.67,3.61 0.1,0.26 -0.03,0.55 -0.29,0.64 -0.26,0.1 -0.55,-0.04 -0.64,-0.29 -0.49,-1.31 -0.73,-2.61 -0.73,-3.96 0,-1.2 0.23,-2.29 0.68,-3.24 1.33,-2.79 4.28,-4.6 7.51,-4.6 4.55,0 8.25,3.51 8.25,7.83 0,1.62 -1.38,2.94 -3.08,2.94s-3.08,-1.32 -3.08,-2.94c0,-1.07 -0.93,-1.94 -2.08,-1.94s-2.08,0.87 -2.08,1.94c0,1.71 0.66,3.31 1.87,4.51 0.95,0.94 1.86,1.46 3.27,1.85 0.27,0.07 0.42,0.35 0.35,0.61 -0.05,0.23 -0.26,0.38 -0.47,0.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fire_extinguisher.xml b/compose/material/material/icons/generator/raw-icons/rounded/fire_extinguisher.xml
deleted file mode 100644
index 6fbdbf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fire_extinguisher.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10v1c0,1.1 -0.9,2 -2,2H9c-1.1,0 -2,-0.9 -2,-2V19zM7,18h10v-5H7V18zM17,4.23v3.54c0,0.63 -0.58,1.11 -1.21,0.98l-1.94,-0.41c0,0.02 0,0.01 -0.01,0.03c1.54,0.62 2.71,1.98 3.06,3.63H7.1c0.34,-1.66 1.52,-3.02 3.07,-3.64c-0.33,-0.26 -0.6,-0.58 -0.8,-0.95L5.49,6.6C5.2,6.54 5,6.29 5,6v0c0,-0.29 0.2,-0.54 0.49,-0.6l3.88,-0.81C9.87,3.65 10.86,3 12,3c0.7,0 1.34,0.25 1.85,0.66l1.94,-0.41C16.42,3.12 17,3.6 17,4.23zM13,6c-0.03,-0.59 -0.45,-1 -1,-1s-1,0.45 -1,1s0.45,1 1,1S13,6.55 13,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fire_hydrant_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/fire_hydrant_alt.xml
deleted file mode 100644
index 7c342b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fire_hydrant_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-1V8h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1.35C16.83,3.67 14.61,2 12,2S7.17,3.67 6.35,6H5C4.45,6 4,6.45 4,7v0c0,0.55 0.45,1 1,1h1v3H5c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v3H5c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1v-3h1c1.1,0 2,-0.9 2,-2v-2C21,11.9 20.1,11 19,11zM12,17.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,17.5 12,17.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fire_truck.xml b/compose/material/material/icons/generator/raw-icons/rounded/fire_truck.xml
deleted file mode 100644
index 03a21b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fire_truck.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.9,10.69l-1.44,-4.32C21.18,5.55 20.42,5 19.56,5H19V4c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v1h-2c-1.1,0 -2,0.9 -2,2v4H3c-1.1,0 -2,0.9 -2,2v3c0,1.1 0.9,2 2,2h1c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4c0,1.66 1.34,3 3,3s3,-1.34 3,-3h1c1.1,0 2,-0.9 2,-2v-4.68C23,11.11 22.97,10.9 22.9,10.69zM7,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,19 7,19zM17,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,19 17,19zM14,11V7h5.56l1.33,4H14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.25,8.5H10v-2h0.25C10.66,6.5 11,6.16 11,5.75v0C11,5.34 10.66,5 10.25,5h-8.5C1.34,5 1,5.34 1,5.75v0C1,6.16 1.34,6.5 1.75,6.5H2v2H1.75C1.34,8.5 1,8.84 1,9.25v0C1,9.66 1.34,10 1.75,10h8.5C10.66,10 11,9.66 11,9.25v0C11,8.84 10.66,8.5 10.25,8.5zM5.25,8.5H3.5v-2h1.75V8.5zM8.5,8.5H6.75v-2H8.5V8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fireplace.xml b/compose/material/material/icons/generator/raw-icons/rounded/fireplace.xml
deleted file mode 100644
index 0cc823e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fireplace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,19c0,0.55 -0.45,1 -1,1h-1v-1c0,-0.55 -0.45,-1 -1,-1h-1.15c0.71,-0.85 1.15,-1.89 1.15,-3c0,-1.89 -1.09,-2.84 -1.85,-3.36c-1.86,-1.27 -2.23,-2.78 -2.25,-3.72c-0.01,-0.4 -0.43,-0.63 -0.77,-0.43c-5.8,3.43 -5.15,7 -5.13,7.51c0.03,0.96 0.49,2.07 1.24,3H7c-0.55,0 -1,0.45 -1,1v1H5c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1V19zM13.2,13.74c-0.08,-0.46 -0.07,-0.85 0.08,-1.28c0.54,1.21 2.15,1.64 1.98,3.18c-0.19,1.69 -2.11,2.37 -3.39,1.32c0.76,-0.24 1.4,-1.04 1.53,-1.63C13.52,14.78 13.29,14.29 13.2,13.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/first_page.xml b/compose/material/material/icons/generator/raw-icons/rounded/first_page.xml
deleted file mode 100644
index af85c87..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/first_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.7,15.89L13.82,12l3.89,-3.89c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0l-4.59,4.59c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0 0.38,-0.38 0.38,-1.02 -0.01,-1.4zM7,6c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fit_screen.xml b/compose/material/material/icons/generator/raw-icons/rounded/fit_screen.xml
deleted file mode 100644
index 5db5b9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fit_screen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2c1.1,0 2,0.9 2,2v2c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V6h-2c-0.55,0 -1,-0.45 -1,-1v0C17,4.45 17.45,4 18,4zM4,8l0,-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4C2.9,4 2,4.9 2,6l0,2c0,0.55 0.45,1 1,1h0C3.55,9 4,8.55 4,8zM20,16v2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2c1.1,0 2,-0.9 2,-2v-2c0,-0.55 -0.45,-1 -1,-1h0C20.45,15 20,15.45 20,16zM6,18H4v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2c0,1.1 0.9,2 2,2h2c0.55,0 1,-0.45 1,-1v0C7,18.45 6.55,18 6,18zM16,8H8c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-4C18,8.9 17.1,8 16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fitbit.xml b/compose/material/material/icons/generator/raw-icons/rounded/fitbit.xml
deleted file mode 100644
index da71490..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fitbit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.89,13.89c1.04,0 1.89,-0.85 1.89,-1.89s-0.85,-1.89 -1.89,-1.89C18.85,10.11 18,10.96 18,12S18.85,13.89 19.89,13.89zM15.65,13.68c0.93,0 1.68,-0.75 1.68,-1.68s-0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68S14.72,13.68 15.65,13.68zM15.65,9.42c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,8.67 14.72,9.42 15.65,9.42zM15.65,17.93c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,17.17 14.72,17.93 15.65,17.93zM11.41,13.47c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,13.47 11.41,13.47zM11.41,9.21c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,9.21 11.41,9.21zM11.41,17.73c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,17.07 10.59,17.73 11.41,17.73zM11.41,22c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,21.34 10.59,22 11.41,22zM11.41,4.94c0.81,0 1.47,-0.66 1.47,-1.47S12.22,2 11.41,2c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,4.94 11.41,4.94zM7.16,13.26c0.7,0 1.26,-0.57 1.26,-1.26s-0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26S6.46,13.26 7.16,13.26zM7.16,17.51c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,16.94 6.46,17.51 7.16,17.51zM7.16,9.02c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,8.45 6.46,9.02 7.16,9.02zM3.29,13.05c0.58,0 1.05,-0.47 1.05,-1.05s-0.47,-1.05 -1.05,-1.05c-0.58,0 -1.05,0.47 -1.05,1.05S2.71,13.05 3.29,13.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fitness_center.xml b/compose/material/material/icons/generator/raw-icons/rounded/fitness_center.xml
deleted file mode 100644
index 3dc5972..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fitness_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,14.86l0.72,-0.72c0.39,-0.39 0.39,-1.02 0,-1.41l-0.02,-0.02c-0.39,-0.39 -1.02,-0.39 -1.41,0L17,15.57 8.43,7l2.86,-2.86c0.39,-0.39 0.39,-1.02 0,-1.41l-0.02,-0.02c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.72,0.72 -0.72,-0.72c-0.39,-0.39 -1.03,-0.39 -1.42,0L5.57,4.14l-0.72,-0.72c-0.39,-0.39 -1.04,-0.39 -1.43,0 -0.39,0.39 -0.39,1.04 0,1.43l0.72,0.72L2.71,7c-0.39,0.39 -0.39,1.02 0,1.41l0.72,0.72 -0.72,0.73c-0.39,0.39 -0.39,1.02 0,1.41l0.02,0.02c0.39,0.39 1.02,0.39 1.41,0L7,8.43 15.57,17l-2.86,2.86c-0.39,0.39 -0.39,1.02 0,1.41l0.02,0.02c0.39,0.39 1.02,0.39 1.41,0l0.72,-0.72 0.72,0.72c0.39,0.39 1.02,0.39 1.41,0l1.43,-1.43 0.72,0.72c0.39,0.39 1.04,0.39 1.43,0 0.39,-0.39 0.39,-1.04 0,-1.43l-0.72,-0.72L21.29,17c0.39,-0.39 0.39,-1.02 0,-1.41l-0.72,-0.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flag.xml b/compose/material/material/icons/generator/raw-icons/rounded/flag.xml
deleted file mode 100644
index 863a757..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.4,6l-0.24,-1.2c-0.09,-0.46 -0.5,-0.8 -0.98,-0.8H6c-0.55,0 -1,0.45 -1,1v15c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-6h5.6l0.24,1.2c0.09,0.47 0.5,0.8 0.98,0.8H19c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1h-4.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flag_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/flag_circle.xml
deleted file mode 100644
index 75c03c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flag_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM17,15h-3.38c-0.38,0 -0.73,-0.21 -0.89,-0.55L12,13H9.5v4.25C9.5,17.66 9.16,18 8.75,18h0C8.34,18 8,17.66 8,17.25V8c0,-0.55 0.45,-1 1,-1h4.38c0.38,0 0.73,0.21 0.89,0.55L15,9h2c0.55,0 1,0.45 1,1v4C18,14.55 17.55,15 17,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flaky.xml b/compose/material/material/icons/generator/raw-icons/rounded/flaky.xml
deleted file mode 100644
index 107ed2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flaky.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.16,15.72c-0.29,-0.29 -0.29,-0.77 0,-1.06l0,0c0.29,-0.29 0.77,-0.29 1.06,0l0.82,0.82l1.96,-1.96c0.29,-0.29 0.77,-0.29 1.06,0l0,0c0.29,0.29 0.29,0.77 0,1.06l-2.65,2.65c-0.19,0.19 -0.51,0.2 -0.7,0L12.16,15.72zM12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM7.87,6.81l0.88,0.88l0.88,-0.88c0.29,-0.29 0.77,-0.29 1.06,0l0,0c0.29,0.29 0.29,0.77 0,1.06L9.81,8.75l0.88,0.88c0.29,0.29 0.29,0.77 0,1.06l0,0c-0.29,0.29 -0.77,0.29 -1.06,0L8.75,9.81l-0.88,0.88c-0.29,0.29 -0.77,0.29 -1.06,0l0,0c-0.29,-0.29 -0.29,-0.77 0,-1.06l0.88,-0.88L6.81,7.87c-0.29,-0.29 -0.29,-0.77 0,-1.06l0,0C7.1,6.51 7.57,6.51 7.87,6.81zM12,20c-2.2,0 -4.2,-0.9 -5.7,-2.3L17.7,6.3C19.1,7.8 20,9.8 20,12C20,16.4 16.4,20 12,20z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flare.xml b/compose/material/material/icons/generator/raw-icons/rounded/flare.xml
deleted file mode 100644
index 8d4c68d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11L2,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM8.47,7.06l-0.72,-0.72c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l0.71,0.71c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.38 0.39,-1.02 0.01,-1.4zM12,1c-0.56,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1L13,2c0,-0.55 -0.45,-1 -1,-1zM17.66,6.35c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.71,0.71c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l0.71,-0.71c0.38,-0.39 0.38,-1.03 0,-1.41zM17,12c0,0.56 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM15.53,16.94l0.71,0.71c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41l-0.71,-0.71c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.38,0.39 -0.38,1.03 0,1.41zM6.34,17.65c0.39,0.39 1.02,0.39 1.41,0l0.71,-0.71c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0l-0.71,0.71c-0.38,0.39 -0.38,1.03 0,1.41zM12,23c0.56,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flash_auto.xml b/compose/material/material/icons/generator/raw-icons/rounded/flash_auto.xml
deleted file mode 100644
index 4272c8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flash_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v10c0,0.55 0.45,1 1,1h2v7.15c0,0.51 0.67,0.69 0.93,0.25l5.19,-8.9c0.39,-0.67 -0.09,-1.5 -0.86,-1.5L9,11l3.38,-7.59c0.29,-0.67 -0.2,-1.41 -0.92,-1.41L4,2c-0.55,0 -1,0.45 -1,1zM18,2c-0.6,0 -1.13,0.38 -1.34,0.94L14.22,9.8c-0.2,0.59 0.23,1.2 0.85,1.2 0.38,0 0.72,-0.24 0.84,-0.6L16.4,9h3.2l0.49,1.4c0.13,0.36 0.46,0.6 0.84,0.6 0.62,0 1.05,-0.61 0.84,-1.19l-2.44,-6.86C19.13,2.38 18.6,2 18,2zM16.85,7.65L18,4l1.15,3.65h-2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flash_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/flash_off.xml
deleted file mode 100644
index fe9f5bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flash_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.12,11.5c0.39,-0.67 -0.09,-1.5 -0.86,-1.5h-1.87l2.28,2.28 0.45,-0.78zM16.28,3.45c0.33,-0.67 -0.15,-1.45 -0.9,-1.45L8,2c-0.55,0 -1,0.45 -1,1v0.61l6.13,6.13 3.15,-6.29zM18.44,17.88L4.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L7,9.27L7,12c0,0.55 0.45,1 1,1h2v7.15c0,0.51 0.67,0.69 0.93,0.25l2.65,-4.55 3.44,3.44c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.39 0.4,-1.02 0.01,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flash_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/flash_on.xml
deleted file mode 100644
index f56467f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flash_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3v9c0,0.55 0.45,1 1,1h2v7.15c0,0.51 0.67,0.69 0.93,0.25l5.19,-8.9c0.39,-0.67 -0.09,-1.5 -0.86,-1.5H13l2.49,-6.65c0.25,-0.65 -0.23,-1.35 -0.93,-1.35H8c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flashlight_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/flashlight_off.xml
deleted file mode 100644
index ed3b588..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flashlight_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V4c0,-1.1 -0.9,-2 -2,-2H8C7.14,2 6.42,2.54 6.13,3.3L7.83,5H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11l2,-3l0,-1l-8.17,0l6.17,6.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l5.9,5.9L8,20c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-1.17l3.07,3.07c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flashlight_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/flashlight_on.xml
deleted file mode 100644
index 7fcb3cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flashlight_on.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4v1h12V4c0,-1.1 -0.9,-2 -2,-2H8C6.9,2 6,2.9 6,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7v1l2,3v9c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-9l2,-3V7H6zM12,15.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flatware.xml b/compose/material/material/icons/generator/raw-icons/rounded/flatware.xml
deleted file mode 100644
index d357bd8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flatware.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.08c0,1.77 -0.84,3.25 -2,3.82V20c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-9.1c-1.16,-0.57 -2,-2.05 -2,-3.82C10.01,4.83 11.35,3 13,3C14.66,3 16,4.83 16,7.08zM18.27,3.18C17.64,2.99 17,3.49 17,4.15L17,20c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-7h1c0.55,0 1,-0.45 1,-1V7C21,5.54 20.14,3.74 18.27,3.18zM8.28,3c-0.4,0 -0.72,0.32 -0.72,0.72V7H6.72V3.72C6.72,3.32 6.4,3 6,3S5.28,3.32 5.28,3.72V7H4.44V3.72C4.44,3.32 4.12,3 3.72,3S3,3.32 3,3.72V9c0,1.1 0.9,2 2,2v9c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-9c1.1,0 2,-0.9 2,-2V3.72C9,3.32 8.68,3 8.28,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flight.xml b/compose/material/material/icons/generator/raw-icons/rounded/flight.xml
deleted file mode 100644
index 48dd4b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14.58c0,-0.36 -0.19,-0.69 -0.49,-0.89L13,9V3.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,2.67 10,3.5V9l-7.51,4.69c-0.3,0.19 -0.49,0.53 -0.49,0.89 0,0.7 0.68,1.21 1.36,1L10,13.5V19l-1.8,1.35c-0.13,0.09 -0.2,0.24 -0.2,0.4v0.59c0,0.33 0.32,0.57 0.64,0.48L11.5,21l2.86,0.82c0.32,0.09 0.64,-0.15 0.64,-0.48v-0.59c0,-0.16 -0.07,-0.31 -0.2,-0.4L13,19v-5.5l6.64,2.08c0.68,0.21 1.36,-0.3 1.36,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flight_class.xml b/compose/material/material/icons/generator/raw-icons/rounded/flight_class.xml
deleted file mode 100644
index c670b0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flight_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2V6C18,4.9 17.1,4 16,4zM6,4c0.55,0 1,0.45 1,1v3l2.5,8H17c0.55,0 1,0.45 1,1s-0.45,1 -1,1H9.49c-0.88,0 -1.66,-0.58 -1.92,-1.43L5.08,8.28C5.03,8.09 5,7.9 5,7.71V5C5,4.45 5.45,4 6,4zM18,20c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8C17.55,19 18,19.45 18,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flight_land.xml b/compose/material/material/icons/generator/raw-icons/rounded/flight_land.xml
deleted file mode 100644
index b5500c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flight_land.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,19h-17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM3.51,11.61l15.83,4.24c0.8,0.21 1.62,-0.26 1.84,-1.06 0.21,-0.8 -0.26,-1.62 -1.06,-1.84l-5.31,-1.42 -2.58,-8.45c-0.11,-0.36 -0.39,-0.63 -0.75,-0.73 -0.68,-0.18 -1.35,0.33 -1.35,1.04v6.88L5.15,8.95 4.4,7.09c-0.12,-0.29 -0.36,-0.51 -0.67,-0.59l-0.33,-0.09c-0.32,-0.09 -0.63,0.15 -0.63,0.48v3.75c0,0.46 0.3,0.85 0.74,0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flight_takeoff.xml b/compose/material/material/icons/generator/raw-icons/rounded/flight_takeoff.xml
deleted file mode 100644
index aecbc77..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flight_takeoff.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,19h-17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM22.07,9.64c-0.22,-0.8 -1.04,-1.27 -1.84,-1.06L14.92,10 8.46,3.98c-0.27,-0.26 -0.66,-0.35 -1.02,-0.25 -0.68,0.19 -1,0.97 -0.65,1.58l3.44,5.96 -4.97,1.33 -1.57,-1.24c-0.25,-0.19 -0.57,-0.26 -0.88,-0.18l-0.33,0.09c-0.32,0.08 -0.47,0.45 -0.3,0.73l1.88,3.25c0.23,0.39 0.69,0.58 1.12,0.47L21,11.48c0.8,-0.22 1.28,-1.04 1.07,-1.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flip.xml b/compose/material/material/icons/generator/raw-icons/rounded/flip.xml
deleted file mode 100644
index 56f4ae9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM3,5v14c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,3c-1.1,0 -2,0.9 -2,2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM12,23c0.55,0 1,-0.45 1,-1L13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v20c0,0.55 0.45,1 1,1zM19,17h2v-2h-2v2zM15,5h2L17,3h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flip_camera_android.xml b/compose/material/material/icons/generator/raw-icons/rounded/flip_camera_android.xml
deleted file mode 100644
index c6326e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flip_camera_android.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S9,10.34 9,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9L8,9c0,-0.55 -0.45,-1 -1,-1H5.09C6.47,5.61 9.05,4 12,4c3.49,0 6.45,2.24 7.54,5.36C19.68,9.75 20.07,10 20.48,10h0c0.68,0 1.18,-0.67 0.96,-1.31C20.07,4.79 16.36,2 12,2C8.73,2 5.82,3.58 4,6.01V5c0,-0.55 -0.45,-1 -1,-1h0C2.45,4 2,4.45 2,5v4c0,0.55 0.45,1 1,1h4C7.55,10 8,9.55 8,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15L16,15c0,0.55 0.45,1 1,1h1.91c-1.38,2.39 -3.96,4 -6.91,4c-3.49,0 -6.45,-2.24 -7.54,-5.36C4.32,14.25 3.93,14 3.52,14h0c-0.68,0 -1.18,0.67 -0.96,1.31C3.93,19.21 7.64,22 12,22c3.27,0 6.18,-1.58 8,-4.01V19c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-4C16.45,14 16,14.45 16,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flip_camera_ios.xml b/compose/material/material/icons/generator/raw-icons/rounded/flip_camera_ios.xml
deleted file mode 100644
index cd7043e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flip_camera_ios.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17l-1.24,-1.35C15.22,3.24 14.68,3 14.12,3H9.88c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM13.67,17.7C13.15,17.89 12.59,18 12,18c-2.76,0 -5,-2.24 -5,-5H5l2.5,-2.5L10,13H8c0,2.21 1.79,4 4,4c0.46,0 0.91,-0.08 1.32,-0.23c0.19,-0.07 0.39,-0.03 0.53,0.11C14.11,17.14 14.01,17.57 13.67,17.7zM16.5,15.5L14,13h2c0,-2.21 -1.79,-4 -4,-4c-0.46,0 -0.91,0.08 -1.32,0.23c-0.19,0.07 -0.39,0.03 -0.53,-0.11C9.89,8.86 9.99,8.43 10.33,8.3C10.85,8.11 11.41,8 12,8c2.76,0 5,2.24 5,5h2L16.5,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flip_to_back.xml b/compose/material/material/icons/generator/raw-icons/rounded/flip_to_back.xml
deleted file mode 100644
index 7228a79..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flip_to_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7L7,7v2h2L9,7zM9,11L7,11v2h2v-2zM9,3c-1.11,0 -2,0.9 -2,2h2L9,3zM13,15h-2v2h2v-2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM13,3h-2v2h2L13,3zM9,17v-2L7,15c0,1.1 0.89,2 2,2zM19,13h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,17c1.1,0 2,-0.9 2,-2h-2v2zM4,7c-0.55,0 -1,0.45 -1,1v11c0,1.1 0.9,2 2,2h11c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,19c-0.55,0 -1,-0.45 -1,-1L5,8c0,-0.55 -0.45,-1 -1,-1zM15,5h2L17,3h-2v2zM15,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flip_to_front.xml b/compose/material/material/icons/generator/raw-icons/rounded/flip_to_front.xml
deleted file mode 100644
index 05c8520..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flip_to_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM5,21v-2L3,19c0,1.1 0.89,2 2,2zM3,9h2L5,7L3,7v2zM15,21h2v-2h-2v2zM19,3L9,3c-1.11,0 -2,0.9 -2,2v10c0,1.1 0.89,2 2,2h10c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,15h-8c-0.55,0 -1,-0.45 -1,-1L9,6c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1zM11,21h2v-2h-2v2zM7,21h2v-2L7,19v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flood.xml b/compose/material/material/icons/generator/raw-icons/rounded/flood.xml
deleted file mode 100644
index de857fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flood.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,19c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.54,0 -1.96,0.62 -2.67,0.88C2.27,20.03 2,20.4 2,20.83v0c0,0.71 0.72,1.19 1.38,0.94C4.15,21.48 4.49,21 5.34,21c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.22,0 1.4,1 3.33,1c1.93,0 2.1,-1 3.33,-1c0.84,0 1.18,0.47 1.95,0.77c0.66,0.26 1.38,-0.23 1.38,-0.94v-0.01c0,-0.42 -0.27,-0.8 -0.67,-0.94C20.62,19.62 20.21,19 18.67,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.68,17.5c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c0.82,0 1.17,0.46 1.93,0.76c0.66,0.26 1.38,-0.23 1.38,-0.94v0c0,-0.42 -0.26,-0.79 -0.65,-0.94c-0.29,-0.11 -0.54,-0.27 -0.83,-0.43l-2.02,-7.53l1.17,0.47c0.51,0.21 1.09,-0.04 1.29,-0.55v0c0.21,-0.51 -0.05,-1.1 -0.57,-1.29l-9.24,-3.54c-0.81,-0.31 -1.72,-0.06 -2.27,0.61l-6.23,7.7c-0.35,0.43 -0.28,1.06 0.16,1.4l0,0c0.43,0.34 1.06,0.26 1.39,-0.17l0.78,-1l0.93,3.48c-0.18,-0.02 -0.35,-0.05 -0.56,-0.05c-1.54,0 -1.95,0.62 -2.66,0.88C2.27,15.53 2,15.91 2,16.33v0c0,0.7 0.69,1.19 1.35,0.95c0.8,-0.29 1.18,-0.78 2,-0.78C6.54,16.5 6.77,17.5 8.68,17.5zM14.04,10.18l1.42,5.31c-1.34,0.09 -1.47,-0.99 -3.47,-0.99c-0.36,0 -0.65,0.04 -0.91,0.1l-0.91,-3.39L14.04,10.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flourescent.xml b/compose/material/material/icons/generator/raw-icons/rounded/flourescent.xml
deleted file mode 100644
index 2f4a536..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flourescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h10c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H7c-1.1,0 -2,0.9 -2,2v2C5,14.1 5.9,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L12,2c-0.56,0 -1,0.45 -1,1V4c0,0.55 0.45,1 1,1H12c0.55,0 1,-0.45 1,-1V3C13,2.45 12.55,2 12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.79,5.3L19.79,5.3c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.38,0.38c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l0.38,-0.38C20.18,6.33 20.18,5.69 19.79,5.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22L12,22c0.56,0 1,-0.45 1,-1V20c0,-0.55 -0.45,-1 -1,-1H12c-0.55,0 -1,0.45 -1,1V21C11,21.55 11.45,22 12,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,18.41l0.38,0.39c0.39,0.39 1.02,0.39 1.41,0l0.01,-0.01c0.39,-0.39 0.39,-1.02 0,-1.41L19.4,17c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C17.6,17.4 17.6,18.03 17.99,18.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5.69L5.61,5.31c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L4.59,7.1c0.39,0.39 1.02,0.39 1.41,0l0,0C6.38,6.71 6.38,6.07 6,5.69z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.2,18.79L4.2,18.79c0.39,0.4 1.03,0.4 1.42,0L6,18.4c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L4.2,17.38C3.81,17.77 3.81,18.4 4.2,18.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fluorescent.xml b/compose/material/material/icons/generator/raw-icons/rounded/fluorescent.xml
deleted file mode 100644
index 2f4a536..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fluorescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h10c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H7c-1.1,0 -2,0.9 -2,2v2C5,14.1 5.9,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L12,2c-0.56,0 -1,0.45 -1,1V4c0,0.55 0.45,1 1,1H12c0.55,0 1,-0.45 1,-1V3C13,2.45 12.55,2 12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.79,5.3L19.79,5.3c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.38,0.38c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l0.38,-0.38C20.18,6.33 20.18,5.69 19.79,5.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22L12,22c0.56,0 1,-0.45 1,-1V20c0,-0.55 -0.45,-1 -1,-1H12c-0.55,0 -1,0.45 -1,1V21C11,21.55 11.45,22 12,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,18.41l0.38,0.39c0.39,0.39 1.02,0.39 1.41,0l0.01,-0.01c0.39,-0.39 0.39,-1.02 0,-1.41L19.4,17c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C17.6,17.4 17.6,18.03 17.99,18.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5.69L5.61,5.31c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L4.59,7.1c0.39,0.39 1.02,0.39 1.41,0l0,0C6.38,6.71 6.38,6.07 6,5.69z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.2,18.79L4.2,18.79c0.39,0.4 1.03,0.4 1.42,0L6,18.4c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L4.2,17.38C3.81,17.77 3.81,18.4 4.2,18.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/flutter_dash.xml b/compose/material/material/icons/generator/raw-icons/rounded/flutter_dash.xml
deleted file mode 100644
index bfd69ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/flutter_dash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,11.7c0.29,-0.39 0.81,-0.56 1.27,-0.37c0.17,0.07 0.32,0.18 0.43,0.33c0.22,0.28 0.25,0.59 0.22,0.85c-0.05,0.33 -0.25,0.63 -0.54,0.79c0,0 -4.87,2.95 -5.07,2.69S11.07,11.7 11.07,11.7zM22,10c0,2.5 -1,3 -1.5,3c-0.23,0 -0.44,-0.1 -0.62,-0.26c-0.48,3.32 -2.36,5.31 -5.33,5.99c0.11,0.44 0.48,0.77 0.95,0.77l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C15.18,22.07 15,21.71 15,21.26c0,-0.3 0.04,-0.57 0.09,-0.8c-0.78,-0.16 -1.39,-0.78 -1.55,-1.56c-0.49,0.06 -1,0.1 -1.54,0.1c-0.88,0 -1.7,-0.09 -2.45,-0.25C9.53,18.83 9.5,18.91 9.5,19c0,0.55 0.45,1 1,1l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C10.18,22.57 10,22.21 10,21.76c0,-0.3 0.04,-0.57 0.09,-0.8C9.19,20.77 8.5,19.96 8.5,19c0,-0.18 0.03,-0.36 0.08,-0.53c-2.46,-0.86 -4.03,-2.78 -4.46,-5.74C3.94,12.9 3.74,13 3.5,13C3,13 2,12.5 2,10c0,-2.27 1.7,-4.5 3,-4.5c0.43,0 0.49,0.49 0.5,0.85c1.28,-1.78 3.26,-3.02 5.55,-3.29C11.25,2.1 12.13,1.5 13,1.5v1c0,0 0.33,-0.5 1,-0.5c0.67,0 1,0.5 1,0.5c-0.49,0 -0.85,0.35 -0.96,0.77c1.82,0.48 3.39,1.59 4.46,3.08C18.51,5.99 18.57,5.5 19,5.5C20.3,5.5 22,7.73 22,10zM5,11c0,0.81 0.1,1.53 0.25,2.21c0.18,-0.69 0.46,-1.33 0.83,-1.92c-0.21,-0.47 -0.34,-0.99 -0.34,-1.54C5.75,7.68 7.43,6 9.5,6c0.96,0 1.84,0.37 2.5,0.97C12.66,6.37 13.54,6 14.5,6c2.07,0 3.75,1.68 3.75,3.75c0,0.55 -0.12,1.07 -0.34,1.54c0.37,0.59 0.66,1.24 0.84,1.94C18.9,12.55 19,11.82 19,11c0,-3.86 -3.14,-7 -7,-7C8.14,4 5,7.14 5,11zM17.98,15.29c0,-0.1 0.02,-0.19 0.02,-0.29c0,-1.01 -0.26,-1.95 -0.7,-2.78c-0.69,0.78 -1.68,1.28 -2.8,1.28c-0.27,0 -0.54,-0.03 -0.79,-0.09c0.14,-0.23 0.23,-0.49 0.27,-0.77c0.01,-0.07 0.01,-0.13 0.02,-0.19c0.17,0.03 0.33,0.05 0.5,0.05c1.52,0 2.75,-1.23 2.75,-2.75S16.02,7 14.5,7c-0.67,0 -1.32,0.25 -1.83,0.72L12,8.32l-0.67,-0.6C10.82,7.25 10.17,7 9.5,7C7.98,7 6.75,8.23 6.75,9.75c0,1.34 0.96,2.46 2.23,2.7l-0.76,0.83c-0.6,-0.22 -1.12,-0.59 -1.53,-1.05C6.26,13.06 6,14 6,15c0,0.08 0.01,0.15 0.01,0.24C7.13,17.06 9.14,18 12,18C14.88,18 16.88,17.09 17.98,15.29zM16,9.75c0,0.97 -0.67,1.75 -1.5,1.75S13,10.72 13,9.75S13.67,8 14.5,8S16,8.78 16,9.75zM15.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S14.5,8.67 14.5,8.88s0.17,0.38 0.38,0.38S15.25,9.08 15.25,8.88zM11,9.75c0,0.97 -0.67,1.75 -1.5,1.75S8,10.72 8,9.75S8.67,8 9.5,8S11,8.78 11,9.75zM10.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S9.5,8.67 9.5,8.88s0.17,0.38 0.38,0.38S10.25,9.08 10.25,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fmd_bad.xml b/compose/material/material/icons/generator/raw-icons/rounded/fmd_bad.xml
deleted file mode 100644
index 729383f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fmd_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM12,15L12,15c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C13,14.55 12.55,15 12,15zM12,11L12,11c-0.55,0 -1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C13,10.55 12.55,11 12,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fmd_good.xml b/compose/material/material/icons/generator/raw-icons/rounded/fmd_good.xml
deleted file mode 100644
index bcab94916..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fmd_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM12,12c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C14,11.1 13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder.xml
deleted file mode 100644
index 8500b83..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,4.59C10.21,4.21 9.7,4 9.17,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2h-8l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder_copy.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder_copy.xml
deleted file mode 100644
index 6c03d76..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder_copy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6L2,6C1.45,6 1,6.45 1,7v12c0,1.1 0.9,2 2,2h16c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H3V7C3,6.45 2.55,6 2,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4h-7l-1.41,-1.41C12.21,2.21 11.7,2 11.17,2H7C5.9,2 5.01,2.9 5.01,4L5,15c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder_delete.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder_delete.xml
deleted file mode 100644
index 4e078f2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder_delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,15.5h-2v-4h2V15.5zM20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM18.25,11.5H18v4c0,0.83 -0.67,1.5 -1.5,1.5h-2c-0.83,0 -1.5,-0.67 -1.5,-1.5v-4h-0.25c-0.41,0 -0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75h1.75V9.75C14.5,9.34 14.84,9 15.25,9h0.5c0.41,0 0.75,0.34 0.75,0.75V10h1.75c0.41,0 0.75,0.34 0.75,0.75C19,11.16 18.66,11.5 18.25,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder_off.xml
deleted file mode 100644
index 2625e4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81c-0.39,-0.39 -1.02,-0.39 -1.41,0C1,3.2 1,3.83 1.39,4.22l0.85,0.85C2.1,5.35 2.01,5.66 2.01,6L2,18c0,1.1 0.9,2 2,2h13.17l2.61,2.61c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L2.81,2.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H6.83l14.93,14.93C21.91,18.65 22,18.34 22,18V8C22,6.9 21.1,6 20,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder_open.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder_open.xml
deleted file mode 100644
index 2a9b64e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18c-0.55,0 -1,-0.45 -1,-1L4,9c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder_shared.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder_shared.xml
deleted file mode 100644
index f02befc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder_shared.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM15,9c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM19,17h-8v-1c0,-1.33 2.67,-2 4,-2s4,0.67 4,2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder_special.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder_special.xml
deleted file mode 100644
index be21c18..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder_special.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM16.94,16.41L15,15.28l-1.94,1.13c-0.38,0.22 -0.84,-0.12 -0.74,-0.55l0.51,-2.2 -1.69,-1.46c-0.33,-0.29 -0.16,-0.84 0.28,-0.88l2.23,-0.19 0.88,-2.06c0.17,-0.4 0.75,-0.4 0.92,0l0.88,2.06 2.23,0.19c0.44,0.04 0.62,0.59 0.28,0.88l-1.69,1.46 0.51,2.2c0.11,0.43 -0.35,0.77 -0.72,0.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/folder_zip.xml b/compose/material/material/icons/generator/raw-icons/rounded/folder_zip.xml
deleted file mode 100644
index 50b1b7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/folder_zip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM18,12h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/follow_the_signs.xml b/compose/material/material/icons/generator/raw-icons/rounded/follow_the_signs.xml
deleted file mode 100644
index 21eff13..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/follow_the_signs.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S8.4,5.5 9.5,5.5zM5.75,8.9L3.23,21.81C3.11,22.43 3.58,23 4.21,23H4.3c0.47,0 0.88,-0.33 0.98,-0.79L6.85,15L9,17v5c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-6.14c0,-0.27 -0.11,-0.52 -0.29,-0.71L8.95,13.4l0.6,-3c1.07,1.32 2.58,2.23 4.31,2.51c0.6,0.1 1.14,-0.39 1.14,-1v0c0,-0.49 -0.36,-0.9 -0.84,-0.98c-1.49,-0.25 -2.75,-1.15 -3.51,-2.38L9.7,6.95C9.35,6.35 8.7,6 8,6C7.75,6 7.5,6.05 7.25,6.15l-4.63,1.9C2.25,8.2 2,8.57 2,8.97V12c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V9.65L5.75,8.9M21,2h-7c-0.55,0 -1,0.45 -1,1v5c0,0.55 0.45,1 1,1h2.75v13.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75V9H21c0.55,0 1,-0.45 1,-1V3C22,2.45 21.55,2 21,2zM20.15,5.85l-1.28,1.29c-0.31,0.32 -0.85,0.09 -0.85,-0.35V6.25h-2.76c-0.41,0 -0.75,-0.34 -0.75,-0.75s0.34,-0.75 0.75,-0.75h2.76V4.21c0,-0.45 0.54,-0.67 0.85,-0.35l1.28,1.29C20.34,5.34 20.34,5.66 20.15,5.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/font_download.xml b/compose/material/material/icons/generator/raw-icons/rounded/font_download.xml
deleted file mode 100644
index e437cc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/font_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.93,13.5h4.14L12,7.98 9.93,13.5zM20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM15.71,17.88l-0.9,-2.38L9.17,15.5l-0.89,2.37c-0.14,0.38 -0.5,0.63 -0.91,0.63 -0.68,0 -1.15,-0.69 -0.9,-1.32l4.25,-10.81c0.22,-0.53 0.72,-0.87 1.28,-0.87s1.06,0.34 1.27,0.87l4.25,10.81c0.25,0.63 -0.22,1.32 -0.9,1.32 -0.4,0 -0.76,-0.25 -0.91,-0.62z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/font_download_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/font_download_off.xml
deleted file mode 100644
index 89a4966..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/font_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.58,9.75l-0.87,-0.87l0.23,-0.66h0.1L12.58,9.75zM10.35,7.52L10.55,7c0.23,-0.6 0.8,-1 1.45,-1s1.22,0.4 1.45,1l2.17,5.79L22,19.17V4c0,-1.1 -0.9,-2 -2,-2H4.83L10.35,7.52zM21.19,22.61L21.19,22.61c-0.39,0.39 -1.02,0.39 -1.41,0L19.17,22H4c-1.1,0 -2,-0.9 -2,-2V4.83L1.39,4.22C1,3.83 1,3.2 1.39,2.81l0,0c0.39,-0.39 1.02,-0.39 1.41,0l18.38,18.38C21.58,21.58 21.58,22.22 21.19,22.61zM12.1,14.93l-3.3,-3.3L6.9,16.7C6.67,17.33 7.13,18 7.8,18h0.01c0.41,0 0.77,-0.26 0.9,-0.64l0.86,-2.43H12.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/food_bank.xml b/compose/material/material/icons/generator/raw-icons/rounded/food_bank.xml
deleted file mode 100644
index e27d157..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/food_bank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.8,3.9l-6,4.5C4.3,8.78 4,9.37 4,10v9c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-9c0,-0.63 -0.3,-1.22 -0.8,-1.6l-6,-4.5C12.49,3.37 11.51,3.37 10.8,3.9zM12.5,12.5c0,0.83 -0.67,1.5 -1.5,1.5v3.5c0,0.28 -0.22,0.5 -0.5,0.5h0c-0.28,0 -0.5,-0.22 -0.5,-0.5V14c-0.83,0 -1.5,-0.67 -1.5,-1.5V10c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v2.5H10V10c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v2.5h0.5V10c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5V12.5zM14.5,18L14.5,18c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3h-0.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-2.5c0,-0.88 0.57,-1.63 1.36,-1.89C14.67,9.5 15,9.75 15,10.09v7.41C15,17.78 14.78,18 14.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/forest.xml b/compose/material/material/icons/generator/raw-icons/rounded/forest.xml
deleted file mode 100644
index 66206b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/forest.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.14,12h-0.06c0.81,0 1.28,-0.91 0.82,-1.57L9.82,3.17c-0.4,-0.57 -1.24,-0.57 -1.64,0L3.1,10.43C2.64,11.09 3.11,12 3.92,12H3.86l-2.87,4.46C0.56,17.12 1.04,18 1.83,18H7v2c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-2h5.17c0.79,0 1.27,-0.88 0.84,-1.54L14.14,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.01,16.46L20.14,12h-0.06c0.81,0 1.28,-0.91 0.82,-1.57l-5.08,-7.26c-0.4,-0.57 -1.24,-0.57 -1.64,0l-1.57,2.24l3.11,4.44c0.43,0.61 0.48,1.41 0.14,2.07c-0.08,0.16 -0.18,0.3 -0.3,0.43l2.29,3.57c0.4,0.62 0.42,1.4 0.07,2.04c-0.01,0.02 -0.02,0.03 -0.03,0.04h4.28C22.96,18 23.44,17.12 23.01,16.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,20c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-1h-4V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fork_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/fork_left.xml
deleted file mode 100644
index e9a8dfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fork_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,20c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1v-3c-0.73,-2.58 -3.07,-3.47 -5.17,-3l0.88,0.88c0.39,0.39 0.39,1.02 0,1.41c-0.39,0.39 -1.02,0.39 -1.41,0l-2.59,-2.59c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.59,-2.59c0.39,-0.39 1.02,-0.39 1.41,0c0.39,0.39 0.39,1.02 0,1.41L7.83,12c1.51,-0.33 3.73,0.08 5.17,1.36l0,-6.53l-0.88,0.88c-0.39,0.39 -1.02,0.39 -1.41,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.59,-2.59c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.39,0.39 0.39,1.02 0,1.41c-0.39,0.39 -1.02,0.39 -1.41,0L15,6.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fork_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/fork_right.xml
deleted file mode 100644
index b6d12dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fork_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,20c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-3c0.73,-2.58 3.07,-3.47 5.17,-3l-0.88,0.88c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L16.17,12c-1.51,-0.33 -3.73,0.08 -5.17,1.36l0,-6.53l0.88,0.88c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0L6.71,6.29c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L9,6.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_align_center.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_align_center.xml
deleted file mode 100644
index 434dbe4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,15c-0.55,0 -1,0.45 -1,1zM4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,13h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,8c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,7c-0.55,0 -1,0.45 -1,1zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_align_justify.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_align_justify.xml
deleted file mode 100644
index 5b8e97d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_align_justify.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,17h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,13h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,9h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_align_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_align_left.xml
deleted file mode 100644
index 58b804b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_align_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,15L4,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM14,7L4,7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM4,13h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_align_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_align_right.xml
deleted file mode 100644
index e3ef7f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_align_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM10,17h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L10,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,13h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM10,9h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L10,7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_bold.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_bold.xml
deleted file mode 100644
index 4abc63c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_bold.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.6,10.79c0.97,-0.67 1.65,-1.77 1.65,-2.79 0,-2.26 -1.75,-4 -4,-4L8,4c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h5.78c2.07,0 3.96,-1.69 3.97,-3.77 0.01,-1.53 -0.85,-2.84 -2.15,-3.44zM10,6.5h3c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5h-3v-3zM13.5,15.5L10,15.5v-3h3.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_clear.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_clear.xml
deleted file mode 100644
index 8f8b64b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,8c0.83,0 1.5,-0.67 1.5,-1.5S19.33,5 18.5,5L6.39,5l3,3h1.83l-0.55,1.28 2.09,2.09L14.21,8h4.29zM17.44,18.88L4.12,5.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l6.26,6.26 -1.65,3.84c-0.39,0.92 0.28,1.93 1.27,1.93 0.55,0 1.05,-0.33 1.27,-0.84l1.21,-2.83 4.95,4.95c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.38 0.4,-1.01 0.01,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_color_fill.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_color_fill.xml
deleted file mode 100644
index 008ffa1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_color_fill.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.94,16.56C9.23,16.85 9.62,17 10,17s0.77,-0.15 1.06,-0.44l5.5,-5.5c0.59,-0.58 0.59,-1.53 0,-2.12L8.32,0.7c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l1.68,1.68L3.44,8.94c-0.59,0.59 -0.59,1.54 0,2.12L8.94,16.56zM10,5.21L14.79,10H5.21L10,5.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17c1.1,0 2,-0.9 2,-2c0,-1.33 -2,-3.5 -2,-3.5s-2,2.17 -2,3.5C17,16.1 17.9,17 19,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,20H4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2h16c1.1,0 2,-0.9 2,-2S21.1,20 20,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_color_reset.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_color_reset.xml
deleted file mode 100644
index 3606ed7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_color_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14c0,-3.09 -3.6,-7.88 -5.23,-9.87 -0.4,-0.49 -1.15,-0.49 -1.55,0 -0.46,0.57 -1.08,1.36 -1.73,2.27l8.44,8.44c0.04,-0.28 0.07,-0.56 0.07,-0.84zM19.29,19.01L6.12,5.84c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l2.61,2.61C6.55,11.33 6,12.79 6,14c0,3.31 2.69,6 6,6 1.52,0 2.9,-0.57 3.95,-1.5l1.92,1.92c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.38 0.4,-1.02 0.01,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_color_text.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_color_text.xml
deleted file mode 100644
index 03c54f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_color_text.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,20H4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2h16c1.1,0 2,-0.9 2,-2S21.1,20 20,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.11,17L7.11,17c0.48,0 0.91,-0.3 1.06,-0.75l1.01,-2.83h5.65l0.99,2.82C15.98,16.7 16.41,17 16.89,17c0.79,0 1.33,-0.79 1.05,-1.52L13.69,4.17C13.43,3.47 12.75,3 12,3s-1.43,0.47 -1.69,1.17L6.06,15.48C5.78,16.21 6.33,17 7.11,17zM11.94,5.6h0.12l2.03,5.79H9.91L11.94,5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_indent_decrease.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_indent_decrease.xml
deleted file mode 100644
index 6d5599c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_indent_decrease.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3.35,12.35l2.79,2.79c0.32,0.32 0.86,0.1 0.86,-0.35L7,9.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.19 -0.2,0.51 -0.01,0.7zM4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1zM12,9h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM12,13h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_indent_increase.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_indent_increase.xml
deleted file mode 100644
index 36cfa36..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_indent_increase.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,9.21v5.59c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.8c-0.31,-0.31 -0.85,-0.09 -0.85,0.36zM12,17h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,4c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1zM12,9h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM12,13h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_italic.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_italic.xml
deleted file mode 100644
index 5bfd2df..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_italic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.5c0,0.83 0.67,1.5 1.5,1.5h0.71l-3.42,8H7.5c-0.83,0 -1.5,0.67 -1.5,1.5S6.67,18 7.5,18h5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5h-0.71l3.42,-8h1.29c0.83,0 1.5,-0.67 1.5,-1.5S17.33,4 16.5,4h-5c-0.83,0 -1.5,0.67 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_line_spacing.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_line_spacing.xml
deleted file mode 100644
index 59e38044..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_line_spacing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.29,7c0.45,0 0.67,-0.54 0.35,-0.85l-2.29,-2.3c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.29,2.3c-0.31,0.31 -0.09,0.85 0.36,0.85L4,7v10L2.71,17c-0.45,0 -0.67,0.54 -0.35,0.85l2.29,2.29c0.2,0.2 0.51,0.2 0.71,0l2.29,-2.29c0.31,-0.31 0.09,-0.85 -0.36,-0.85L6,17L6,7h1.29zM11,7h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L11,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM21,17L11,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM21,11L11,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_list_bulleted.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_list_bulleted.xml
deleted file mode 100644
index aab3265..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_list_bulleted.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM4,4.5c-0.83,0 -1.5,0.67 -1.5,1.5S3.17,7.5 4,7.5 5.5,6.83 5.5,6 4.83,4.5 4,4.5zM4,16.5c-0.83,0 -1.5,0.68 -1.5,1.5s0.68,1.5 1.5,1.5 1.5,-0.68 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM8,19h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM8,13h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,6c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_list_numbered.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_list_numbered.xml
deleted file mode 100644
index 4ca3578..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_list_numbered.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM20,17L8,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM20,11L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM4.5,16h-2c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5L4,17v0.5h-0.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5L4,18.5v0.5L2.5,19c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h2c0.28,0 0.5,-0.22 0.5,-0.5v-3c0,-0.28 -0.22,-0.5 -0.5,-0.5zM2.5,5L3,5v2.5c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5v-3c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5zM4.5,10h-2c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h1.3l-1.68,1.96c-0.08,0.09 -0.12,0.21 -0.12,0.32v0.22c0,0.28 0.22,0.5 0.5,0.5h2c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5L3.2,13l1.68,-1.96c0.08,-0.09 0.12,-0.21 0.12,-0.32v-0.22c0,-0.28 -0.22,-0.5 -0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_list_numbered_rtl.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_list_numbered_rtl.xml
deleted file mode 100644
index 091bd25..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_list_numbered_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,16h-2c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5L20,17v0.5h-0.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h0.5v0.5h-1.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h2c0.28,0 0.5,-0.22 0.5,-0.5v-3c0,-0.28 -0.22,-0.5 -0.5,-0.5zM18.5,5h0.5v2.5c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5v-3c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5zM21,10.72v-0.22c0,-0.28 -0.22,-0.5 -0.5,-0.5h-2c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h1.3l-1.68,1.96c-0.08,0.09 -0.12,0.21 -0.12,0.32v0.22c0,0.28 0.22,0.5 0.5,0.5h2c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5h-1.3l1.68,-1.96c0.08,-0.09 0.12,-0.21 0.12,-0.32zM15,5L3,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM15,17L3,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM15,11L3,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_overline.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_overline.xml
deleted file mode 100644
index 15bf9bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_overline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1s-0.45,1 -1,1H6C5.45,5 5,4.55 5,4zM12,7c-3.87,0 -7,3.13 -7,7c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,10.13 15.87,7 12,7zM12,18.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,9.5 12,9.5s4.5,2.01 4.5,4.5S14.49,18.5 12,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_paint.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_paint.xml
deleted file mode 100644
index 533274b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_paint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4V3c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1V6h1v4h-9c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-9h7c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_quote.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_quote.xml
deleted file mode 100644
index 0e95e5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.17,17c0.51,0 0.98,-0.29 1.2,-0.74l1.42,-2.84c0.14,-0.28 0.21,-0.58 0.21,-0.89L10,8c0,-0.55 -0.45,-1 -1,-1L5,7c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h2l-1.03,2.06c-0.45,0.89 0.2,1.94 1.2,1.94zM17.17,17c0.51,0 0.98,-0.29 1.2,-0.74l1.42,-2.84c0.14,-0.28 0.21,-0.58 0.21,-0.89L20,8c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h2l-1.03,2.06c-0.45,0.89 0.2,1.94 1.2,1.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_shapes.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_shapes.xml
deleted file mode 100644
index 1577268..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_shapes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,6L23,2c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v1L7,3L7,2c0,-0.55 -0.45,-1 -1,-1L2,1c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h1v10L2,17c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1h10v1c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-1L21,7h1c0.55,0 1,-0.45 1,-1zM3,3h2v2L3,5L3,3zM5,21L3,21v-2h2v2zM17,19L7,19v-1c0,-0.55 -0.45,-1 -1,-1L5,17L5,7h1c0.55,0 1,-0.45 1,-1L7,5h10v1c0,0.55 0.45,1 1,1h1v10h-1c-0.55,0 -1,0.45 -1,1v1zM21,21h-2v-2h2v2zM19,5L19,3h2v2h-2zM12.94,7.65c-0.15,-0.39 -0.53,-0.65 -0.95,-0.65 -0.42,0 -0.8,0.26 -0.94,0.65l-2.77,7.33c-0.19,0.49 0.17,1.02 0.7,1.02 0.32,0 0.6,-0.2 0.71,-0.5l0.55,-1.5h3.49l0.56,1.51c0.11,0.29 0.39,0.49 0.71,0.49h0.01c0.53,0 0.89,-0.53 0.71,-1.02l-2.78,-7.33zM10.69,12.74L12,8.91l1.3,3.83h-2.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_size.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_size.xml
deleted file mode 100644
index 90e46a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_size.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5.5c0,0.83 0.67,1.5 1.5,1.5H14v10.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5V7h3.5c0.83,0 1.5,-0.67 1.5,-1.5S21.33,4 20.5,4h-10C9.67,4 9,4.67 9,5.5zM4.5,12H6v5.5c0,0.83 0.67,1.5 1.5,1.5S9,18.33 9,17.5V12h1.5c0.83,0 1.5,-0.67 1.5,-1.5S11.33,9 10.5,9h-6C3.67,9 3,9.67 3,10.5S3.67,12 4.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_strikethrough.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_strikethrough.xml
deleted file mode 100644
index c9bd399..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_strikethrough.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c1.1,0 2,-0.9 2,-2v-1h-4v1c0,1.1 0.9,2 2,2zM5,5.5C5,6.33 5.67,7 6.5,7H10v3h4V7h3.5c0.83,0 1.5,-0.67 1.5,-1.5S18.33,4 17.5,4h-11C5.67,4 5,4.67 5,5.5zM4,14h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_textdirection_l_to_r.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_textdirection_l_to_r.xml
deleted file mode 100644
index 2b3269b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_textdirection_l_to_r.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1L11,4h2v10c0,0.55 0.45,1 1,1s1,-0.45 1,-1L15,4h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L9.17,2C7.08,2 5.22,3.53 5.02,5.61 4.79,7.99 6.66,10 9,10zM20.65,17.65l-2.79,-2.79c-0.32,-0.32 -0.86,-0.1 -0.86,0.35L17,17L6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h11v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.19 0.2,-0.51 0.01,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_textdirection_r_to_l.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_textdirection_r_to_l.xml
deleted file mode 100644
index b70c772..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_textdirection_r_to_l.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1L12,4h2v10c0,0.55 0.45,1 1,1s1,-0.45 1,-1L16,4h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-6.83C8.08,2 6.22,3.53 6.02,5.61 5.79,7.99 7.66,10 10,10zM8,17v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.31,0.31 0.85,0.09 0.85,-0.36L8,19h11c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/format_underlined.xml b/compose/material/material/icons/generator/raw-icons/rounded/format_underlined.xml
deleted file mode 100644
index 38af3d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/format_underlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.79,16.95c3.03,-0.39 5.21,-3.11 5.21,-6.16V4.25C18,3.56 17.44,3 16.75,3s-1.25,0.56 -1.25,1.25v6.65c0,1.67 -1.13,3.19 -2.77,3.52 -2.25,0.47 -4.23,-1.25 -4.23,-3.42V4.25C8.5,3.56 7.94,3 7.25,3S6,3.56 6,4.25V11c0,3.57 3.13,6.42 6.79,5.95zM5,20c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fort.xml b/compose/material/material/icons/generator/raw-icons/rounded/fort.xml
deleted file mode 100644
index dcf2a48..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fort.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4v1h-2V4c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-2V4c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2.17c0,0.53 0.21,1.04 0.59,1.41L15,9v1H9V9l1.41,-1.41C10.79,7.21 11,6.7 11,6.17V4c0,-0.55 -0.45,-1 -1,-1h0C9.45,3 9,3.45 9,4v1H7V4c0,-0.55 -0.45,-1 -1,-1h0C5.45,3 5,3.45 5,4v1H3V4c0,-0.55 -0.45,-1 -1,-1h0C1.45,3 1,3.45 1,4v2.17C1,6.7 1.21,7.21 1.59,7.59L3,9v6l-1.41,1.41C1.21,16.79 1,17.3 1,17.83V19c0,1.1 0.9,2 2,2h7l0,-2.89c0,-1 0.68,-1.92 1.66,-2.08C12.92,15.82 14,16.79 14,18v3h7c1.1,0 2,-0.9 2,-2v-1.17c0,-0.53 -0.21,-1.04 -0.59,-1.41L21,15V9l1.41,-1.41C22.79,7.21 23,6.7 23,6.17V4c0,-0.55 -0.45,-1 -1,-1h0C21.45,3 21,3.45 21,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/forum.xml b/compose/material/material/icons/generator/raw-icons/rounded/forum.xml
deleted file mode 100644
index e63e167..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/forum.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-1v8c0,0.55 -0.45,1 -1,1L6,15v1c0,1.1 0.9,2 2,2h10l4,4L22,8c0,-1.1 -0.9,-2 -2,-2zM17,11L17,4c0,-1.1 -0.9,-2 -2,-2L4,2c-1.1,0 -2,0.9 -2,2v13l4,-4h9c1.1,0 2,-0.9 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/forward.xml b/compose/material/material/icons/generator/raw-icons/rounded/forward.xml
deleted file mode 100644
index 5ed2775..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8V6.41c0,-0.89 1.08,-1.34 1.71,-0.71l5.59,5.59c0.39,0.39 0.39,1.02 0,1.41l-5.59,5.59c-0.63,0.63 -1.71,0.19 -1.71,-0.7V16H5c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/forward_10.xml b/compose/material/material/icons/generator/raw-icons/rounded/forward_10.xml
deleted file mode 100644
index dcc3c45..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/forward_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,13c-0.5,0 -0.91,0.37 -0.98,0.86 -0.48,3.37 -3.77,5.84 -7.42,4.96 -2.25,-0.54 -3.91,-2.27 -4.39,-4.53C5.32,10.42 8.27,7 12,7v2.79c0,0.45 0.54,0.67 0.85,0.35l3.79,-3.79c0.2,-0.2 0.2,-0.51 0,-0.71l-3.79,-3.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L12,5c-4.94,0 -8.84,4.48 -7.84,9.6 0.6,3.11 2.9,5.5 5.99,6.19 4.83,1.08 9.15,-2.2 9.77,-6.67 0.09,-0.59 -0.4,-1.12 -1,-1.12zM10.9,16v-4.27h-0.09l-1.77,0.63v0.69l1.01,-0.31L10.05,16zM14.32,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1 -0.33,0.18 -0.45,0.33 -0.23,0.34 -0.29,0.57 -0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57 0.28,0.26 0.46,0.33 0.37,0.1 0.59,0.1 0.41,-0.03 0.59,-0.1 0.33,-0.18 0.45,-0.33 0.22,-0.34 0.29,-0.57 0.1,-0.5 0.1,-0.82v-0.74c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57 -0.29,-0.26 -0.46,-0.33zM14.33,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32 -0.11,0.14 -0.19,0.17 -0.16,0.05 -0.25,0.05 -0.18,-0.02 -0.25,-0.05 -0.14,-0.09 -0.19,-0.17 -0.09,-0.19 -0.12,-0.32 -0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31 0.11,-0.14 0.19,-0.17 0.16,-0.05 0.25,-0.05 0.18,0.02 0.25,0.05 0.14,0.09 0.19,0.17 0.09,0.18 0.12,0.31 0.04,0.29 0.04,0.48v0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/forward_30.xml b/compose/material/material/icons/generator/raw-icons/rounded/forward_30.xml
deleted file mode 100644
index 409ef88..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/forward_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,13c-0.5,0 -0.91,0.37 -0.98,0.86 -0.48,3.37 -3.77,5.84 -7.42,4.96 -2.25,-0.54 -3.91,-2.27 -4.39,-4.53C5.32,10.42 8.27,7 12,7v2.79c0,0.45 0.54,0.67 0.85,0.35l3.79,-3.79c0.2,-0.2 0.2,-0.51 0,-0.71l-3.79,-3.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L12,5c-4.94,0 -8.84,4.48 -7.84,9.6 0.6,3.11 2.9,5.5 5.99,6.19 4.83,1.08 9.15,-2.2 9.77,-6.67 0.09,-0.59 -0.4,-1.12 -1,-1.12zM10.54,15.22c-0.06,0.05 -0.12,0.09 -0.2,0.12s-0.17,0.04 -0.27,0.04c-0.09,0 -0.17,-0.01 -0.25,-0.04s-0.14,-0.06 -0.2,-0.11 -0.1,-0.1 -0.13,-0.17 -0.05,-0.14 -0.05,-0.22h-0.85c0,0.21 0.04,0.39 0.12,0.55s0.19,0.28 0.33,0.38 0.29,0.18 0.46,0.23 0.35,0.07 0.53,0.07c0.21,0 0.41,-0.03 0.6,-0.08s0.34,-0.14 0.48,-0.24 0.24,-0.24 0.32,-0.39 0.12,-0.33 0.12,-0.53c0,-0.23 -0.06,-0.44 -0.18,-0.61s-0.3,-0.3 -0.54,-0.39c0.1,-0.05 0.2,-0.1 0.28,-0.17s0.15,-0.14 0.2,-0.22 0.1,-0.16 0.13,-0.25 0.04,-0.18 0.04,-0.27c0,-0.2 -0.04,-0.37 -0.11,-0.53s-0.17,-0.28 -0.3,-0.38 -0.28,-0.18 -0.46,-0.23 -0.37,-0.08 -0.59,-0.08c-0.19,0 -0.38,0.03 -0.54,0.08s-0.32,0.13 -0.44,0.23 -0.23,0.22 -0.3,0.37 -0.11,0.3 -0.11,0.48h0.85c0,-0.07 0.02,-0.14 0.05,-0.2s0.07,-0.11 0.12,-0.15 0.11,-0.07 0.18,-0.1 0.14,-0.03 0.22,-0.03c0.1,0 0.18,0.01 0.25,0.04s0.13,0.06 0.18,0.11 0.08,0.11 0.11,0.17 0.04,0.14 0.04,0.22c0,0.18 -0.05,0.32 -0.16,0.43s-0.26,0.16 -0.48,0.16h-0.43v0.66h0.45c0.11,0 0.2,0.01 0.29,0.04s0.16,0.06 0.22,0.11 0.11,0.12 0.14,0.2 0.05,0.18 0.05,0.29c0,0.09 -0.01,0.17 -0.04,0.24s-0.08,0.11 -0.13,0.17zM14.44,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1 -0.33,0.18 -0.45,0.33 -0.23,0.34 -0.29,0.57 -0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57 0.28,0.26 0.46,0.33 0.37,0.1 0.59,0.1 0.41,-0.03 0.59,-0.1 0.33,-0.18 0.45,-0.33 0.22,-0.34 0.29,-0.57 0.1,-0.5 0.1,-0.82v-0.74c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57 -0.28,-0.26 -0.46,-0.33zM14.45,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32 -0.11,0.14 -0.19,0.17 -0.16,0.05 -0.25,0.05 -0.18,-0.02 -0.25,-0.05 -0.14,-0.09 -0.19,-0.17 -0.09,-0.19 -0.12,-0.32 -0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31 0.11,-0.14 0.19,-0.17 0.16,-0.05 0.25,-0.05 0.18,0.02 0.25,0.05 0.14,0.09 0.19,0.17 0.09,0.18 0.12,0.31 0.04,0.29 0.04,0.48v0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/forward_5.xml b/compose/material/material/icons/generator/raw-icons/rounded/forward_5.xml
deleted file mode 100644
index 6aaa552..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/forward_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.87,13c-0.5,0 -0.91,0.37 -0.98,0.86 -0.48,3.37 -3.77,5.84 -7.42,4.96 -2.25,-0.54 -3.91,-2.27 -4.39,-4.53C5.27,10.42 8.22,7 11.95,7v2.79c0,0.45 0.54,0.67 0.85,0.35l3.79,-3.79c0.2,-0.2 0.2,-0.51 0,-0.71L12.8,1.85c-0.31,-0.31 -0.85,-0.09 -0.85,0.35L11.95,5c-4.94,0 -8.84,4.48 -7.84,9.6 0.6,3.11 2.9,5.5 5.99,6.19 4.83,1.08 9.15,-2.2 9.77,-6.67 0.09,-0.59 -0.4,-1.12 -1,-1.12zM12.43,15.15c-0.05,0.07 -0.11,0.13 -0.18,0.17s-0.17,0.06 -0.27,0.06c-0.17,0 -0.31,-0.05 -0.42,-0.15s-0.17,-0.24 -0.19,-0.41h-0.84c0.01,0.2 0.05,0.37 0.13,0.53s0.19,0.28 0.32,0.39 0.29,0.19 0.46,0.24 0.35,0.08 0.53,0.08c0.24,0 0.46,-0.04 0.64,-0.12s0.33,-0.18 0.45,-0.31 0.21,-0.28 0.27,-0.45 0.09,-0.35 0.09,-0.54c0,-0.22 -0.03,-0.43 -0.09,-0.6s-0.14,-0.33 -0.25,-0.45 -0.25,-0.22 -0.41,-0.28 -0.34,-0.1 -0.55,-0.1c-0.07,0 -0.14,0.01 -0.2,0.02s-0.13,0.02 -0.18,0.04 -0.1,0.03 -0.15,0.05 -0.08,0.04 -0.11,0.05l0.11,-0.92h1.7v-0.71L10.9,11.74l-0.25,2.17 0.67,0.17c0.03,-0.03 0.06,-0.06 0.1,-0.09s0.07,-0.05 0.12,-0.07 0.1,-0.04 0.15,-0.05 0.13,-0.02 0.2,-0.02c0.12,0 0.22,0.02 0.3,0.05s0.16,0.09 0.21,0.15 0.1,0.14 0.13,0.24 0.04,0.19 0.04,0.31 -0.01,0.22 -0.03,0.31 -0.06,0.17 -0.11,0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/forward_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/rounded/forward_to_inbox.xml
deleted file mode 100644
index a346b22..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/forward_to_inbox.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h9v-2H4V8l6.94,4.34c0.65,0.41 1.47,0.41 2.12,0L20,8v5h2V6C22,4.9 21.1,4 20,4zM12,11L4,6h16L12,11zM19,16.21c0,-0.45 0.54,-0.67 0.85,-0.35l2.79,2.79c0.2,0.2 0.2,0.51 0,0.71l-2.79,2.79C19.54,22.46 19,22.24 19,21.79V20h-3c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3V16.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/foundation.xml b/compose/material/material/icons/generator/raw-icons/rounded/foundation.xml
deleted file mode 100644
index d07a8ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/foundation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h1.7c0.46,0 0.68,-0.57 0.33,-0.87L12.67,3.6c-0.38,-0.34 -0.96,-0.34 -1.34,0l-8.36,7.53C2.63,11.43 2.84,12 3.3,12H5v3H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h4v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h4v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1V12zM7,15v-4.81l4,-3.6V15H7zM13,15V6.59l4,3.6V15H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/free_breakfast.xml b/compose/material/material/icons/generator/raw-icons/rounded/free_breakfast.xml
deleted file mode 100644
index b4bb9e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/free_breakfast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L6,3c-1.1,0 -2,0.9 -2,2v8c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,8h-2L18,5h2v3zM5,19h14c0.55,0 1,0.45 1,1s-0.45,1 -1,1L5,21c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/free_cancellation.xml b/compose/material/material/icons/generator/raw-icons/rounded/free_cancellation.xml
deleted file mode 100644
index c5cd582..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/free_cancellation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.79,20H5V10h14v2.96c0,0.89 1.08,1.34 1.71,0.71l0,0c0.19,-0.19 0.29,-0.44 0.29,-0.71V6c0,-1.1 -0.9,-2 -2,-2h-1V3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1H8V3c0,-0.55 -0.45,-1 -1,-1h0C6.45,2 6,2.45 6,3v1H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h5.79c0.89,0 1.34,-1.08 0.71,-1.71l0,0C11.31,20.11 11.06,20 10.79,20zM13.71,18.26c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0c0.39,0.39 0.39,1.02 0,1.41l-4.24,4.24c-0.39,0.39 -1.02,0.39 -1.41,0l-2.12,-2.12C13.32,19.28 13.32,18.65 13.71,18.26zM11.29,16.29c-0.39,0.39 -1.02,0.39 -1.41,0L9,15.41l-0.88,0.88c-0.39,0.39 -1.02,0.39 -1.41,0s-0.39,-1.02 0,-1.41L7.59,14l-0.88,-0.88c-0.39,-0.39 -0.39,-1.02 0,-1.41s1.02,-0.39 1.41,0L9,12.59l0.88,-0.88c0.39,-0.39 1.02,-0.39 1.41,0s0.39,1.02 0,1.41L10.41,14l0.88,0.88C11.68,15.27 11.68,15.9 11.29,16.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/front_hand.xml b/compose/material/material/icons/generator/raw-icons/rounded/front_hand.xml
deleted file mode 100644
index 593e0a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/front_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,14.5c0,0.28 -0.22,0.5 -0.5,0.5l0,0c-1.51,0 -2.77,1.12 -2.97,2.58C15,17.82 14.78,18 14.54,18c-0.3,0 -0.54,-0.27 -0.5,-0.57c0.26,-1.77 1.68,-3.17 3.46,-3.4l0,-10.78C17.5,2.56 16.94,2 16.25,2C15.56,2 15,2.56 15,3.25v7.25c0,0.28 -0.22,0.5 -0.5,0.5S14,10.78 14,10.5V1.25C14,0.56 13.44,0 12.75,0S11.5,0.56 11.5,1.25v9.25c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5V2.75c0,-0.69 -0.56,-1.25 -1.25,-1.25S8,2.06 8,2.75v8.75C8,11.78 7.78,12 7.5,12S7,11.78 7,11.5V5.75C7,5.06 6.44,4.5 5.75,4.5S4.5,5.06 4.5,5.75v10c0,4.56 3.69,8.25 8.25,8.25S21,20.31 21,15.75v-6.5C21,8.56 20.44,8 19.75,8S18.5,8.56 18.5,9.25V14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fullscreen.xml b/compose/material/material/icons/generator/raw-icons/rounded/fullscreen.xml
deleted file mode 100644
index 65ba585..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L7,17v-2c0,-0.55 -0.45,-1 -1,-1zM6,10c0.55,0 1,-0.45 1,-1L7,7h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,5c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM17,17h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2zM14,6c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L19,6c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/fullscreen_exit.xml b/compose/material/material/icons/generator/raw-icons/rounded/fullscreen_exit.xml
deleted file mode 100644
index beaab64..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/fullscreen_exit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,16h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1L6,14c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM8,8L6,8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c0.55,0 1,-0.45 1,-1L10,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2zM15,19c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM16,8L16,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/functions.xml b/compose/material/material/icons/generator/raw-icons/rounded/functions.xml
deleted file mode 100644
index 6874109..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/functions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,4H7.56C6.7,4 6,4.7 6,5.56c0,0.28 0.12,0.55 0.32,0.74L12.5,12l-6.18,5.7c-0.2,0.19 -0.32,0.46 -0.32,0.74C6,19.3 6.7,20 7.56,20h8.94c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5H11l3.59,-3.59c0.78,-0.78 0.78,-2.05 0,-2.83L11,7h5.5c0.83,0 1.5,-0.67 1.5,-1.5S17.33,4 16.5,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/g_mobiledata.xml
deleted file mode 100644
index ca090ef4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12L12,12c0,0.55 0.45,1 1,1h1v2H9V9h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H9C7.9,7 7,7.9 7,9v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1h-2C12.45,11 12,11.45 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/g_translate.xml b/compose/material/material/icons/generator/raw-icons/rounded/g_translate.xml
deleted file mode 100644
index ad112be..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/g_translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-9.12L10,2L4,2c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h7l1,3h8c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM7.17,14.59c-2.25,0 -4.09,-1.83 -4.09,-4.09s1.83,-4.09 4.09,-4.09c1.04,0 1.99,0.37 2.74,1.07l0.07,0.06 -1.23,1.18 -0.06,-0.05c-0.29,-0.27 -0.78,-0.59 -1.52,-0.59 -1.31,0 -2.38,1.09 -2.38,2.42s1.07,2.42 2.38,2.42c1.37,0 1.96,-0.87 2.12,-1.46L7.08,11.46L7.08,9.91h3.95l0.01,0.07c0.04,0.21 0.05,0.4 0.05,0.61 0,2.35 -1.61,4 -3.92,4zM13.2,12.88c0.33,0.6 0.74,1.18 1.19,1.7l-0.54,0.53 -0.65,-2.23zM13.97,12.12h-0.99l-0.31,-1.04h3.99s-0.34,1.31 -1.56,2.74c-0.52,-0.62 -0.89,-1.23 -1.13,-1.7zM21,20c0,0.55 -0.45,1 -1,1h-7l2,-2 -0.81,-2.77 0.92,-0.92L17.79,18l0.73,-0.73 -2.71,-2.68c0.9,-1.03 1.6,-2.25 1.92,-3.51L19,11.08v-1.04h-3.64L15.36,9h-1.04v1.04h-1.96L11.18,6L20,6c0.55,0 1,0.45 1,1v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gamepad.xml b/compose/material/material/icons/generator/raw-icons/rounded/gamepad.xml
deleted file mode 100644
index b14b757..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gamepad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7.29L15,3c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4.29c0,0.13 0.05,0.26 0.15,0.35l2.5,2.5c0.2,0.2 0.51,0.2 0.71,0l2.5,-2.5c0.09,-0.09 0.14,-0.21 0.14,-0.35zM7.29,9L3,9c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4.29c0.13,0 0.26,-0.05 0.35,-0.15l2.5,-2.5c0.2,-0.2 0.2,-0.51 0,-0.71l-2.5,-2.5C7.55,9.05 7.43,9 7.29,9zM9,16.71L9,21c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-4.29c0,-0.13 -0.05,-0.26 -0.15,-0.35l-2.5,-2.5c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.5,2.5c-0.09,0.09 -0.14,0.21 -0.14,0.35zM16.35,9.15l-2.5,2.5c-0.2,0.2 -0.2,0.51 0,0.71l2.5,2.5c0.09,0.09 0.22,0.15 0.35,0.15L21,15.01c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-4.29c-0.14,-0.01 -0.26,0.04 -0.36,0.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/games.xml b/compose/material/material/icons/generator/raw-icons/rounded/games.xml
deleted file mode 100644
index b14b757..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/games.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7.29L15,3c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4.29c0,0.13 0.05,0.26 0.15,0.35l2.5,2.5c0.2,0.2 0.51,0.2 0.71,0l2.5,-2.5c0.09,-0.09 0.14,-0.21 0.14,-0.35zM7.29,9L3,9c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4.29c0.13,0 0.26,-0.05 0.35,-0.15l2.5,-2.5c0.2,-0.2 0.2,-0.51 0,-0.71l-2.5,-2.5C7.55,9.05 7.43,9 7.29,9zM9,16.71L9,21c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-4.29c0,-0.13 -0.05,-0.26 -0.15,-0.35l-2.5,-2.5c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.5,2.5c-0.09,0.09 -0.14,0.21 -0.14,0.35zM16.35,9.15l-2.5,2.5c-0.2,0.2 -0.2,0.51 0,0.71l2.5,2.5c0.09,0.09 0.22,0.15 0.35,0.15L21,15.01c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-4.29c-0.14,-0.01 -0.26,0.04 -0.36,0.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/garage.xml b/compose/material/material/icons/generator/raw-icons/rounded/garage.xml
deleted file mode 100644
index 740c199..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/garage.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.33,7.5l-0.66,2l8.66,0l-0.66,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM19,17.69c0,0.45 -0.35,0.81 -0.78,0.81h-0.44c-0.44,0 -0.78,-0.36 -0.78,-0.81V16.5H7v1.19c0,0.45 -0.35,0.81 -0.78,0.81H5.78C5.35,18.5 5,18.14 5,17.69v-6.5C5.82,8.72 6.34,7.16 6.56,6.5c0.05,-0.16 0.12,-0.29 0.19,-0.4C6.77,6.08 6.78,6.06 6.8,6.04C7.18,5.51 7.72,5.5 7.72,5.5h8.56c0,0 0.54,0.01 0.92,0.53c0.02,0.03 0.03,0.05 0.05,0.07c0.07,0.11 0.14,0.24 0.19,0.4c0.22,0.66 0.74,2.23 1.56,4.69V17.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gas_meter.xml b/compose/material/material/icons/generator/raw-icons/rounded/gas_meter.xml
deleted file mode 100644
index 6ef9319..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gas_meter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-1V3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-2V3c0,-0.55 -0.45,-1 -1,-1h0C9.45,2 9,2.45 9,3v1H8C5.79,4 4,5.79 4,8v10c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4V8C20,5.79 18.21,4 16,4zM12,18c-1.38,0 -2.5,-1.1 -2.5,-2.46c0,-1.02 0.38,-1.35 2.12,-3.35c0.2,-0.23 0.56,-0.23 0.75,0c1.73,1.99 2.12,2.34 2.12,3.35C14.5,16.9 13.38,18 12,18zM15,10H9c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v0C16,9.55 15.55,10 15,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gavel.xml b/compose/material/material/icons/generator/raw-icons/rounded/gavel.xml
deleted file mode 100644
index 3ae8797..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gavel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,21h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1L2,23c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM5.24,8.07l2.83,-2.83L20.8,17.97c0.78,0.78 0.78,2.05 0,2.83 -0.78,0.78 -2.05,0.78 -2.83,0L5.24,8.07zM13.73,2.41l2.83,2.83c0.78,0.78 0.78,2.05 0,2.83l-1.42,1.42 -5.65,-5.66 1.41,-1.41c0.78,-0.79 2.05,-0.79 2.83,-0.01zM3.83,9.48l5.66,5.66 -1.41,1.41c-0.78,0.78 -2.05,0.78 -2.83,0l-2.83,-2.83c-0.78,-0.78 -0.78,-2.05 0,-2.83l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/generating_tokens.xml b/compose/material/material/icons/generator/raw-icons/rounded/generating_tokens.xml
deleted file mode 100644
index e9190cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/generating_tokens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8C17,7.58 13.42,4 9,4zM9,15.5c-0.55,0 -1,-0.45 -1,-1v-4H6.75C6.34,10.5 6,10.16 6,9.75S6.34,9 6.75,9h4.5C11.66,9 12,9.34 12,9.75s-0.34,0.75 -0.75,0.75H10v4C10,15.05 9.55,15.5 9,15.5zM20.25,3.75L22,4.54c0.39,0.18 0.39,0.73 0,0.91l-1.75,0.79L19.46,8c-0.18,0.39 -0.73,0.39 -0.91,0l-0.79,-1.75L16,5.46c-0.39,-0.18 -0.39,-0.73 0,-0.91l1.75,-0.79L18.54,2c0.18,-0.39 0.73,-0.39 0.91,0L20.25,3.75zM20.25,17.75L22,18.54c0.39,0.18 0.39,0.73 0,0.91l-1.75,0.79L19.46,22c-0.18,0.39 -0.73,0.39 -0.91,0l-0.79,-1.75L16,19.46c-0.39,-0.18 -0.39,-0.73 0,-0.91l1.75,-0.79L18.54,16c0.18,-0.39 0.73,-0.39 0.91,0L20.25,17.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gesture.xml b/compose/material/material/icons/generator/raw-icons/rounded/gesture.xml
deleted file mode 100644
index 16a630c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gesture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.72,6.04c0.47,0.46 1.21,0.48 1.71,0.06 0.37,-0.32 0.69,-0.51 0.87,-0.43 0.5,0.2 0,1.03 -0.3,1.52 -0.25,0.42 -2.86,3.89 -2.86,6.31 0,1.28 0.48,2.34 1.34,2.98 0.75,0.56 1.74,0.73 2.64,0.46 1.07,-0.31 1.95,-1.4 3.06,-2.77 1.21,-1.49 2.83,-3.44 4.08,-3.44 1.63,0 1.65,1.01 1.76,1.79 -3.78,0.64 -5.38,3.67 -5.38,5.37 0,1.7 1.44,3.09 3.21,3.09 1.63,0 4.29,-1.33 4.69,-6.1h1.21c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25h-1.22c-0.15,-1.65 -1.09,-4.2 -4.03,-4.2 -2.25,0 -4.18,1.91 -4.94,2.84 -0.58,0.73 -2.06,2.48 -2.29,2.72 -0.25,0.3 -0.68,0.84 -1.11,0.84 -0.45,0 -0.72,-0.83 -0.36,-1.92 0.35,-1.09 1.4,-2.86 1.85,-3.52 0.78,-1.14 1.3,-1.92 1.3,-3.28C8.95,3.69 7.31,3 6.44,3c-1.09,0 -2.04,0.63 -2.7,1.22 -0.53,0.48 -0.53,1.32 -0.02,1.82zM13.88,18.55c-0.31,0 -0.74,-0.26 -0.74,-0.72 0,-0.6 0.73,-2.2 2.87,-2.76 -0.3,2.69 -1.43,3.48 -2.13,3.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/get_app.xml b/compose/material/material/icons/generator/raw-icons/rounded/get_app.xml
deleted file mode 100644
index dd79e4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/get_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,9H15V4c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v5H7.41c-0.89,0 -1.34,1.08 -0.71,1.71l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.63,-0.63 0.19,-1.71 -0.7,-1.71zM5,19c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gif.xml b/compose/material/material/icons/generator/raw-icons/rounded/gif.xml
deleted file mode 100644
index c2b5340..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gif.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.25,9c0.41,0 0.75,0.34 0.75,0.75v4.5c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75v-4.5c0,-0.41 0.34,-0.75 0.75,-0.75zM10,9.75c0,-0.41 -0.34,-0.75 -0.75,-0.75L6,9c-0.6,0 -1,0.5 -1,1v4c0,0.5 0.4,1 1,1h3c0.6,0 1,-0.5 1,-1v-1.25c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75v0.75h-2v-3h2.75c0.41,0 0.75,-0.34 0.75,-0.75zM19,9.75c0,-0.41 -0.34,-0.75 -0.75,-0.75L15.5,9c-0.55,0 -1,0.45 -1,1v4.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L16,13h1.25c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75L16,11.5v-1h2.25c0.41,0 0.75,-0.34 0.75,-0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gif_box.xml b/compose/material/material/icons/generator/raw-icons/rounded/gif_box.xml
deleted file mode 100644
index 0f09178..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gif_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10.5,10.5c0,0.28 -0.22,0.5 -0.5,0.5H8.5v2h1v-0.5c0,-0.29 0.25,-0.53 0.55,-0.5c0.26,0.02 0.45,0.26 0.45,0.52V13c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1H10C10.28,10 10.5,10.22 10.5,10.5zM12,10c0.28,0 0.5,0.22 0.5,0.5v3c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5v-3C11.5,10.22 11.72,10 12,10zM14,14c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h2c0.28,0 0.5,0.22 0.5,0.5S16.28,11 16,11h-1.5v0.5h1c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5h-1v1C14.5,13.78 14.28,14 14,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/girl.xml b/compose/material/material/icons/generator/raw-icons/rounded/girl.xml
deleted file mode 100644
index 4ed554b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/girl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,16v3c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1v-3H9.44c-0.7,0 -1.18,-0.7 -0.94,-1.35l1.88,-5.03C10.63,8.95 11.28,8.5 12,8.5s1.37,0.45 1.62,1.12l1.88,5.03C15.74,15.3 15.26,16 14.56,16H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gite.xml b/compose/material/material/icons/generator/raw-icons/rounded/gite.xml
deleted file mode 100644
index 455cc7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,9.41l-2.83,-2.83C18.21,6.21 17.7,6 17.17,6H9V5c0,-0.55 -0.45,-1 -1,-1S7,4.45 7,5v1H6.83C6.3,6 5.79,6.21 5.41,6.59L2.59,9.41C2.21,9.79 2,10.3 2,10.83V17c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-6.17C22,10.3 21.79,9.79 21.41,9.41zM14,17H4v-5h10V17zM20,17h-4v-6.17l2,-2l2,2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/golf_course.xml b/compose/material/material/icons/generator/raw-icons/rounded/golf_course.xml
deleted file mode 100644
index a394827..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/golf_course.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18.03V8.98l4.22,-2.15c0.73,-0.37 0.73,-1.43 -0.01,-1.79l-4.76,-2.33C9.78,2.38 9,2.86 9,3.6V19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-0.73c-1.79,0.35 -3,0.99 -3,1.73 0,1.1 2.69,2 6,2s6,-0.9 6,-2c0,-0.99 -2.16,-1.81 -5,-1.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gpp_bad.xml b/compose/material/material/icons/generator/raw-icons/rounded/gpp_bad.xml
deleted file mode 100644
index 6289c08..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gpp_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.7,4.51l-6,-2.25c-0.45,-0.17 -0.95,-0.17 -1.4,0l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.7c0,4.94 3.27,9.57 7.71,10.83c0.19,0.05 0.39,0.05 0.57,0C16.73,20.66 20,16.03 20,11.09v-4.7C20,5.55 19.48,4.81 18.7,4.51zM14.8,14.79L14.8,14.79c-0.39,0.39 -1.02,0.39 -1.41,0.01L12,13.42l-1.39,1.38c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L10.59,12L9.2,10.61c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0L12,10.59l1.39,-1.39c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L13.42,12l1.38,1.38C15.19,13.77 15.19,14.4 14.8,14.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gpp_good.xml b/compose/material/material/icons/generator/raw-icons/rounded/gpp_good.xml
deleted file mode 100644
index 1ec98b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gpp_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.3,2.26l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.71c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V6.39c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25C12.25,2.09 11.75,2.09 11.3,2.26zM10.23,14.83l-2.12,-2.12c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41l-4.24,4.24C11.26,15.22 10.62,15.22 10.23,14.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gpp_maybe.xml b/compose/material/material/icons/generator/raw-icons/rounded/gpp_maybe.xml
deleted file mode 100644
index cb77d8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gpp_maybe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.3,2.26l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.7c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91v-4.7c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25C12.25,2.09 11.75,2.09 11.3,2.26zM12,16L12,16c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C13,15.55 12.55,16 12,16zM12,12L12,12c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C13,11.55 12.55,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gps_fixed.xml b/compose/material/material/icons/generator/raw-icons/rounded/gps_fixed.xml
deleted file mode 100644
index b861b63..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gps_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1.06C6.83,3.52 3.52,6.83 3.06,11L2,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.06c0.46,4.17 3.77,7.48 7.94,7.94L11,22c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L22,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gps_not_fixed.xml b/compose/material/material/icons/generator/raw-icons/rounded/gps_not_fixed.xml
deleted file mode 100644
index 75b73c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gps_not_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1.06C6.83,3.52 3.52,6.83 3.06,11H2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.06c0.46,4.17 3.77,7.48 7.94,7.94V22c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H22c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gps_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/gps_off.xml
deleted file mode 100644
index 09a832e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gps_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.06c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77L22,13zM20.44,18.88L5.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L5.04,6.3C3.97,7.62 3.26,9.23 3.06,11L2,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.06c0.46,4.17 3.77,7.48 7.94,7.94L11,22c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1.06c1.77,-0.2 3.38,-0.91 4.69,-1.98l1.33,1.33c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.39 0.4,-1.02 0.01,-1.41zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81C15.09,18.45 13.61,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grade.xml b/compose/material/material/icons/generator/raw-icons/rounded/grade.xml
deleted file mode 100644
index 405ee01..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27l5.17,3.12c0.38,0.23 0.85,-0.11 0.75,-0.54l-1.37,-5.88 4.56,-3.95c0.33,-0.29 0.16,-0.84 -0.29,-0.88l-6.01,-0.51 -2.35,-5.54c-0.17,-0.41 -0.75,-0.41 -0.92,0L9.19,8.63l-6.01,0.51c-0.44,0.04 -0.62,0.59 -0.28,0.88l4.56,3.95 -1.37,5.88c-0.1,0.43 0.37,0.77 0.75,0.54L12,17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/gradient.xml b/compose/material/material/icons/generator/raw-icons/rounded/gradient.xml
deleted file mode 100644
index 3944cf0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/gradient.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v2h-2L11,9zM9,11h2v2L9,13v-2zM13,11h2v2h-2v-2zM15,9h2v2h-2L15,9zM7,9h2v2L7,11L7,9zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM9,18L7,18v-2h2v2zM13,18h-2v-2h2v2zM17,18h-2v-2h2v2zM19,11h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2L9,15v-2L7,13v2L5,15v-2h2v-2L5,11L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grading.xml b/compose/material/material/icons/generator/raw-icons/rounded/grading.xml
deleted file mode 100644
index 59c09d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grading.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h14c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H5C4.45,9 4,8.55 4,8v0C4,7.45 4.45,7 5,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h14c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1v0C4,12.55 4.45,13 5,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h5c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1v0C4,16.55 4.45,17 5,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h5c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1v0C4,20.55 4.45,21 5,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,18.17l-0.71,-0.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l1.42,1.42c0.39,0.39 1.02,0.39 1.41,0l3.17,-3.17c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L15.41,18.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4L4,4c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5C4.45,3 4,3.45 4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grain.xml b/compose/material/material/icons/generator/raw-icons/rounded/grain.xml
deleted file mode 100644
index daf1370..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM14,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM14,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM10,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/graphic_eq.xml b/compose/material/material/icons/generator/raw-icons/rounded/graphic_eq.xml
deleted file mode 100644
index f77efe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/graphic_eq.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,18c0.55,0 1,-0.45 1,-1L9,7c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v10c0,0.55 0.45,1 1,1zM12,22c0.55,0 1,-0.45 1,-1L13,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v18c0,0.55 0.45,1 1,1zM4,14c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2c0,0.55 0.45,1 1,1zM16,18c0.55,0 1,-0.45 1,-1L17,7c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v10c0,0.55 0.45,1 1,1zM19,11v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grass.xml b/compose/material/material/icons/generator/raw-icons/rounded/grass.xml
deleted file mode 100644
index 20f69b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grass.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.64,11.02c0.55,-1.47 1.43,-2.78 2.56,-3.83c0.38,-0.36 0.04,-1 -0.46,-0.85c-3.32,0.98 -5.75,4.05 -5.74,7.69c0,0 0,0 0,0C12.95,12.75 14.2,11.72 15.64,11.02zM11.42,8.85c-0.6,-1.56 -1.63,-2.91 -2.96,-3.87C8.04,4.68 7.5,5.17 7.74,5.63C8.54,7.15 9,8.88 9,10.71c0,0.21 -0.03,0.41 -0.04,0.61c0.43,0.24 0.83,0.52 1.22,0.82C10.39,10.96 10.83,9.85 11.42,8.85zM12,20H3c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h4.75c-0.57,-2.19 -2.04,-4.02 -4,-5.06l0,0c-0.16,-0.08 -0.26,-0.25 -0.26,-0.44c0,-0.27 0.22,-0.49 0.49,-0.5c0.01,0 0.02,0 0.02,0C8.42,12 12,15.58 12,20zM20.26,12.94L20.26,12.94c-1.96,1.04 -3.44,2.87 -4,5.06H21c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-5h-2c0,-0.68 -0.07,-1.35 -0.2,-2c-0.15,-0.72 -0.38,-1.42 -0.67,-2.07C14.52,13.58 17.07,12 20,12c0.01,0 0.02,0 0.02,0c0.27,0 0.49,0.23 0.49,0.5C20.52,12.69 20.41,12.85 20.26,12.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grid_3x3.xml b/compose/material/material/icons/generator/raw-icons/rounded/grid_3x3.xml
deleted file mode 100644
index 61bd0a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grid_3x3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9L20,9c0,-0.55 -0.45,-1 -1,-1h-3V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3h-4V5c0,-0.55 -0.45,-1 -1,-1h0C8.45,4 8,4.45 8,5v3H5C4.45,8 4,8.45 4,9v0c0,0.55 0.45,1 1,1h3v4H5c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h3v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3h4v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-3v-4h3C19.55,10 20,9.55 20,9zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grid_4x4.xml b/compose/material/material/icons/generator/raw-icons/rounded/grid_4x4.xml
deleted file mode 100644
index b77c7784..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grid_4x4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L22,6c0,-0.55 -0.45,-1 -1,-1h-2V3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2h-4V3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2H7V3c0,-0.55 -0.45,-1 -1,-1h0C5.45,2 5,2.45 5,3v2H3C2.45,5 2,5.45 2,6v0c0,0.55 0.45,1 1,1h2v4H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v4H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h4v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h4v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-4h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2V7h2C21.55,7 22,6.55 22,6zM7,7h4v4H7V7zM7,17v-4h4v4H7zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grid_goldenratio.xml b/compose/material/material/icons/generator/raw-icons/rounded/grid_goldenratio.xml
deleted file mode 100644
index cb0d177..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grid_goldenratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13h-6v-2h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-6V3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6h-2V3c0,-0.55 -0.45,-1 -1,-1S9,2.45 9,3v6H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6v2H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-6h2v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-6h6c0.55,0 1,-0.45 1,-1S21.55,13 21,13zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grid_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/grid_off.xml
deleted file mode 100644
index 168a508..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grid_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4v0.89l2,2L10,4h4v4h-2.89l2,2L14,10v0.89l2,2L16,10h4v4h-2.89l2,2L20,16v0.89l2,2L22,4c0,-1.1 -0.9,-2 -2,-2L5.11,2l2,2L8,4zM16,4h3c0.55,0 1,0.45 1,1v3h-4L16,4zM22.16,21.88L2.12,1.84c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L2,4.55L2,20c0,1.1 0.9,2 2,2h15.45l1.3,1.3c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.03 0,-1.42zM10,12.55L11.45,14L10,14v-1.45zM4,6.55L5.45,8L4,8L4,6.55zM8,20L5,20c-0.55,0 -1,-0.45 -1,-1v-3h4v4zM8,14L4,14v-4h3.45l0.55,0.55L8,14zM14,20h-4v-4h3.45l0.55,0.55L14,20zM16,20v-1.45L17.45,20L16,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grid_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/grid_on.xml
deleted file mode 100644
index 542206c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grid_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM8,20L5,20c-0.55,0 -1,-0.45 -1,-1v-3h4v4zM8,14L4,14v-4h4v4zM8,8L4,8L4,5c0,-0.55 0.45,-1 1,-1h3v4zM14,20h-4v-4h4v4zM14,14h-4v-4h4v4zM14,8h-4L10,4h4v4zM19,20h-3v-4h4v3c0,0.55 -0.45,1 -1,1zM20,14h-4v-4h4v4zM20,8h-4L16,4h3c0.55,0 1,0.45 1,1v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/grid_view.xml b/compose/material/material/icons/generator/raw-icons/rounded/grid_view.xml
deleted file mode 100644
index 0cc8636..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/grid_view.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h4c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v4C3,10.1 3.9,11 5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h4c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v4C3,20.1 3.9,21 5,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5v4c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2h-4C13.9,3 13,3.9 13,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h4c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v4C13,20.1 13.9,21 15,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/group.xml b/compose/material/material/icons/generator/raw-icons/rounded/group.xml
deleted file mode 100644
index 4ccf41a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/group.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11c1.66,0 2.99,-1.34 2.99,-3S17.66,5 16,5s-3,1.34 -3,3 1.34,3 3,3zM8,11c1.66,0 2.99,-1.34 2.99,-3S9.66,5 8,5 5,6.34 5,8s1.34,3 3,3zM8,13c-2.33,0 -7,1.17 -7,3.5L1,18c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-1.5c0,-2.33 -4.67,-3.5 -7,-3.5zM16,13c-0.29,0 -0.62,0.02 -0.97,0.05 0.02,0.01 0.03,0.03 0.04,0.04 1.14,0.83 1.93,1.94 1.93,3.41L17,18c0,0.35 -0.07,0.69 -0.18,1L22,19c0.55,0 1,-0.45 1,-1v-1.5c0,-2.33 -4.67,-3.5 -7,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/group_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/group_add.xml
deleted file mode 100644
index 7efa157..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/group_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9V8c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-1c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4S4,5.79 4,8S5.79,12 8,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/group_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/group_off.xml
deleted file mode 100644
index 75730a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/group_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.42 -0.5,-2.73 -1.33,-3.76C14.09,4.1 14.53,4 15,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4c-0.06,0 -0.12,0 -0.18,0l-0.77,-0.77C14.65,10.29 15,9.18 15,8zM7.24,4.41C7.77,4.15 8.37,4 9,4c2.21,0 4,1.79 4,4c0,0.63 -0.15,1.23 -0.41,1.76L7.24,4.41zM21.19,21.19c0.39,0.39 0.39,1.02 0,1.41s-1.02,0.39 -1.41,0l-2.99,-2.99C16.6,19.85 16.32,20 16,20H2c-0.55,0 -1,-0.45 -1,-1v-2c0,-2.66 5.33,-4 8,-4c0.37,0 0.8,0.03 1.25,0.08L9.17,12C9.11,12 9.06,12 9,12c-2.21,0 -4,-1.79 -4,-4c0,-0.06 0,-0.11 0,-0.17L1.39,4.22C1,3.83 1,3.2 1.39,2.81s1.02,-0.39 1.41,0L21.19,21.19zM18.89,16.07c-0.29,-1.22 -1.13,-2.19 -2.23,-2.94C19.42,13.53 23,14.82 23,17v2c0,0.32 -0.15,0.6 -0.38,0.79L18.89,16.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/group_remove.xml b/compose/material/material/icons/generator/raw-icons/rounded/group_remove.xml
deleted file mode 100644
index 33dcc78..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/group_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-4C18.45,11 18,10.55 18,10zM8,4C5.79,4 4,5.79 4,8s1.79,4 4,4s4,-1.79 4,-4S10.21,4 8,4zM8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13zM12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05zM16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/group_work.xml b/compose/material/material/icons/generator/raw-icons/rounded/group_work.xml
deleted file mode 100644
index c4eb7d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/group_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM8,17.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5zM9.5,8c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5S9.5,9.38 9.5,8zM16,17.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/groups.xml b/compose/material/material/icons/generator/raw-icons/rounded/groups.xml
deleted file mode 100644
index 3cac006..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/groups.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.75c1.63,0 3.07,0.39 4.24,0.9c1.08,0.48 1.76,1.56 1.76,2.73L18,17c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1l0,-0.61c0,-1.18 0.68,-2.26 1.76,-2.73C8.93,13.14 10.37,12.75 12,12.75zM4,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C2,12.1 2.9,13 4,13zM5.13,14.1C4.76,14.04 4.39,14 4,14c-0.99,0 -1.93,0.21 -2.78,0.58C0.48,14.9 0,15.62 0,16.43L0,17c0,0.55 0.45,1 1,1l3.5,0v-1.61C4.5,15.56 4.73,14.78 5.13,14.1zM20,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C18,12.1 18.9,13 20,13zM24,16.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l3.5,0c0.55,0 1,-0.45 1,-1L24,16.43zM12,6c1.66,0 3,1.34 3,3c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3C9,7.34 10.34,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/groups_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/groups_2.xml
deleted file mode 100644
index 98413d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/groups_2.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.27,12h3.46c0.93,0 1.63,-0.83 1.48,-1.75l-0.3,-1.79C14.67,7.04 13.44,6 12,6S9.33,7.04 9.09,8.47l-0.3,1.79C8.64,11.17 9.34,12 10.27,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.66,11.11c-0.13,0.26 -0.18,0.57 -0.1,0.88c0.16,0.69 0.76,1.03 1.53,1c0,0 1.49,0 1.95,0c0.83,0 1.51,-0.58 1.51,-1.29c0,-0.14 -0.03,-0.27 -0.07,-0.4c-0.01,-0.03 -0.01,-0.05 0.01,-0.08c0.09,-0.16 0.14,-0.34 0.14,-0.53c0,-0.31 -0.14,-0.6 -0.36,-0.82c-0.03,-0.03 -0.03,-0.06 -0.02,-0.1c0.07,-0.2 0.07,-0.43 0.01,-0.65C6.1,8.69 5.71,8.4 5.27,8.38c-0.03,0 -0.05,-0.01 -0.07,-0.03C5.03,8.14 4.72,8 4.37,8C4.07,8 3.8,8.1 3.62,8.26C3.59,8.29 3.56,8.29 3.53,8.28c-0.14,-0.06 -0.3,-0.09 -0.46,-0.09c-0.65,0 -1.18,0.49 -1.24,1.12c0,0.02 -0.01,0.04 -0.03,0.06c-0.29,0.26 -0.46,0.65 -0.41,1.05c0.03,0.22 0.12,0.43 0.25,0.6C1.67,11.04 1.67,11.08 1.66,11.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39L6,17c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1l0,-0.61C18,15.21 17.32,14.13 16.24,13.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43L0,17c0,0.55 0.45,1 1,1l3.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l3.5,0c0.55,0 1,-0.45 1,-1l0,-0.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11v-0.5c0,-1.1 -0.9,-2 -2,-2h-2c-0.42,0 -0.65,0.48 -0.39,0.81l0.7,0.63C18.12,10.25 18,10.61 18,11c0,1.1 0.9,2 2,2S22,12.1 22,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/groups_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/groups_3.xml
deleted file mode 100644
index 409fc59..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/groups_3.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39L6,17c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1l0,-0.61C18,15.21 17.32,14.13 16.24,13.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43L0,17c0,0.55 0.45,1 1,1l3.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l3.5,0c0.55,0 1,-0.45 1,-1l0,-0.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,7.34 9,9C9,10.66 10.34,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.497,11l2.503,-2.503l2.503,2.503l-2.503,2.503z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9l-2.5,4l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/h_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/h_mobiledata.xml
deleted file mode 100644
index b242107..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/h_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11H9V8c0,-0.55 -0.45,-1 -1,-1h0C7.45,7 7,7.45 7,8v8c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3h6v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/h_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/h_plus_mobiledata.xml
deleted file mode 100644
index 41ddb32..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/h_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11H6V8c0,-0.55 -0.45,-1 -1,-1h0C4.45,7 4,7.45 4,8v8c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3h6v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1V11zM21,11h-1v-1c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-1c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1v0C22,11.45 21.55,11 21,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hail.xml b/compose/material/material/icons/generator/raw-icons/rounded/hail.xml
deleted file mode 100644
index bc13cfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,6 12,6zM17.95,2L17.95,2c0.59,0 1.06,0.51 1,1.09C18.93,3.24 18.74,7.15 15,8.4V21c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-5h-2v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V10.1c-0.3,0.1 -0.5,0.2 -0.6,0.3c-0.46,0.36 -1.17,0.87 -1.36,2.67C6.99,13.59 6.57,14 6.04,14h0c-0.58,0 -1.05,-0.49 -1,-1.07c0.13,-1.6 0.62,-2.98 2.07,-4.22C8.21,7.81 10,7 12,7s2.68,-0.46 3.48,-1.06c0.43,-0.34 1.28,-0.99 1.48,-3.02C17.01,2.4 17.43,2 17.95,2zM5,16h1c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1v-4C4,16.45 4.45,16 5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/handshake.xml b/compose/material/material/icons/generator/raw-icons/rounded/handshake.xml
deleted file mode 100644
index d3ece60..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/handshake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.48,10.41c-0.39,0.39 -1.04,0.39 -1.43,0l-4.47,-4.46l-7.05,7.04l-0.66,-0.63c-1.17,-1.17 -1.17,-3.07 0,-4.24l4.24,-4.24c1.17,-1.17 3.07,-1.17 4.24,0L16.48,9C16.87,9.39 16.87,10.02 16.48,10.41zM17.18,8.29c0.78,0.78 0.78,2.05 0,2.83c-1.27,1.27 -2.61,0.22 -2.83,0l-3.76,-3.76l-5.57,5.57c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.42,0l4.62,-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.42,0l4.62,-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l4.62,-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l8.32,-8.34c1.17,-1.17 1.17,-3.07 0,-4.24l-4.24,-4.24c-1.15,-1.15 -3.01,-1.17 -4.18,-0.06L17.18,8.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/handyman.xml b/compose/material/material/icons/generator/raw-icons/rounded/handyman.xml
deleted file mode 100644
index 5b93d64..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/handyman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.67,18.17l-4.72,-4.72c-0.48,-0.48 -0.99,-0.59 -1.58,-0.59l-2.54,2.54c0,0.59 0.11,1.11 0.59,1.58l4.72,4.72c0.39,0.39 1.02,0.39 1.41,0l2.12,-2.12C22.06,19.2 22.06,18.56 21.67,18.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.63,9.49c0.39,0.39 1.02,0.39 1.41,0l0.71,-0.71l2.12,2.12c1.17,-1.17 1.17,-3.07 0,-4.24l-2.83,-2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.71,0.71V2c0,-0.62 -0.76,-0.95 -1.21,-0.5l-2.54,2.54c-0.45,0.45 -0.12,1.21 0.5,1.21h2.54l-0.71,0.71c-0.39,0.39 -0.39,1.02 0,1.41l0.35,0.35l-2.89,2.89L7.85,6.48v-1c0,-0.27 -0.11,-0.52 -0.29,-0.71L5.54,2.74c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.71,4.16c-0.39,0.39 -0.39,1.02 0,1.41L4.73,7.6c0.19,0.19 0.44,0.29 0.71,0.29h1l4.13,4.13l-0.85,0.85H8.42c-0.53,0 -1.04,0.21 -1.41,0.59l-4.72,4.72c-0.39,0.39 -0.39,1.02 0,1.41l2.12,2.12c0.39,0.39 1.02,0.39 1.41,0l4.72,-4.72c0.38,-0.38 0.59,-0.88 0.59,-1.41v-1.29l5.15,-5.15L16.63,9.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hardware.xml b/compose/material/material/icons/generator/raw-icons/rounded/hardware.xml
deleted file mode 100644
index 33bdbc2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hardware.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.59,3.41L15,6V5c0,-1.1 -0.9,-2 -2,-2H9C6.24,3 4,5.24 4,8h5v3h6V8l2.59,2.59c0.26,0.26 0.62,0.41 1,0.41h0.01C19.37,11 20,10.37 20,9.59V4.41C20,3.63 19.37,3 18.59,3h-0.01C18.21,3 17.85,3.15 17.59,3.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13v7c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-7H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hd.xml b/compose/material/material/icons/generator/raw-icons/rounded/hd.xml
deleted file mode 100644
index cdd672f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hd.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM10.25,15c-0.41,0 -0.75,-0.34 -0.75,-0.75L9.5,13h-2v1.25c0,0.41 -0.34,0.75 -0.75,0.75S6,14.66 6,14.25v-4.5c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75v1.75h2L9.5,9.75c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75v4.5c0,0.41 -0.34,0.75 -0.75,0.75zM13.5,9L17,9c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-3.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-5c0,-0.28 0.22,-0.5 0.5,-0.5zM14.5,13.5h2v-3h-2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_auto.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_auto.xml
deleted file mode 100644
index 365f924..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_auto.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.04,8.04l-0.09,0l-1.6,4.55l3.29,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM15,16.41l-0.78,-2.22H9.78l-0.79,2.22C8.87,16.76 8.53,17 8.16,17h0c-0.62,0 -1.05,-0.62 -0.83,-1.2l3.34,-8.88C10.88,6.37 11.4,6 12,6h0c0.59,0 1.12,0.37 1.33,0.92l3.34,8.88c0.22,0.58 -0.21,1.2 -0.83,1.2h0C15.46,17 15.12,16.76 15,16.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_auto_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_auto_select.xml
deleted file mode 100644
index dc01142..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_auto_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H7.25c-0.41,0 -0.75,0.34 -0.75,0.75v4.5C6.5,21.66 6.84,22 7.25,22H10c0.83,0 1.5,-0.67 1.5,-1.5v-3C11.5,16.67 10.83,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.25,16c-0.41,0 -0.75,0.34 -0.75,0.75V18h-2v-1.25C1.5,16.34 1.16,16 0.75,16S0,16.34 0,16.75v4.5C0,21.66 0.34,22 0.75,22s0.75,-0.34 0.75,-0.75V19.5h2v1.75C3.5,21.66 3.84,22 4.25,22S5,21.66 5,21.25v-4.5C5,16.34 4.66,16 4.25,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.25,18.5H22v-1.25c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75v1.25h-1.25c-0.41,0 -0.75,0.34 -0.75,0.75S18.84,20 19.25,20h1.25v1.25c0,0.41 0.34,0.75 0.75,0.75S22,21.66 22,21.25V20h1.25c0.41,0 0.75,-0.34 0.75,-0.75S23.66,18.5 23.25,18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16h-2.75C13.34,16 13,16.34 13,16.75v4.56c0,0.38 0.31,0.69 0.69,0.69h0.11c0.38,0 0.69,-0.31 0.69,-0.69V20h1.1l0.72,1.59c0.11,0.25 0.36,0.41 0.63,0.41c0.5,0 0.83,-0.51 0.64,-0.97L17.1,19.9c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1C18,16.67 17.33,16 16.5,16zM16.5,18.5h-2v-1h2V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.97,5.3l-1.02,2.89l2.1,0l-1.02,-2.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM14.44,11c-0.24,0 -0.45,-0.15 -0.53,-0.38l-0.49,-1.41h-2.83l-0.5,1.41C10.01,10.85 9.8,11 9.56,11c-0.39,0 -0.67,-0.39 -0.53,-0.76l2.12,-5.65C11.29,4.23 11.62,4 12,4s0.71,0.23 0.85,0.59l2.12,5.65C15.11,10.61 14.84,11 14.44,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_enhanced_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_enhanced_select.xml
deleted file mode 100644
index cd8e57a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_enhanced_select.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM14,9h-1v1c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V9h-1C9.45,9 9,8.55 9,8v0c0,-0.55 0.45,-1 1,-1h1V6c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v1h1c0.55,0 1,0.45 1,1v0C15,8.55 14.55,9 14,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H7c-0.28,0 -0.5,0.22 -0.5,0.5v5C6.5,21.78 6.72,22 7,22h3c0.82,0 1.5,-0.67 1.5,-1.5v-3C11.5,16.67 10.82,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16H14c-0.55,0 -1,0.45 -1,1v4.31c0,0.38 0.31,0.69 0.69,0.69h0.11c0.38,0 0.69,-0.31 0.69,-0.69V20h1.1l0.72,1.59c0.11,0.25 0.36,0.41 0.63,0.41h0c0.5,0 0.83,-0.51 0.64,-0.97L17.1,19.9c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1C18,16.67 17.33,16 16.5,16zM16.5,18.5h-2v-1h2V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18h-2v-1.25C1.5,16.34 1.16,16 0.75,16h0C0.34,16 0,16.34 0,16.75v4.5C0,21.66 0.34,22 0.75,22h0c0.41,0 0.75,-0.34 0.75,-0.75V19.5h2v1.75C3.5,21.66 3.84,22 4.25,22h0C4.66,22 5,21.66 5,21.25v-4.5C5,16.34 4.66,16 4.25,16h0c-0.41,0 -0.75,0.34 -0.75,0.75V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18.5v-1.25c0,-0.41 -0.34,-0.75 -0.75,-0.75l0,0c-0.41,0 -0.75,0.34 -0.75,0.75v1.25h-1.25c-0.41,0 -0.75,0.34 -0.75,0.75l0,0c0,0.41 0.34,0.75 0.75,0.75h1.25v1.25c0,0.41 0.34,0.75 0.75,0.75l0,0c0.41,0 0.75,-0.34 0.75,-0.75V20h1.25c0.41,0 0.75,-0.34 0.75,-0.75l0,0c0,-0.41 -0.34,-0.75 -0.75,-0.75H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_off.xml
deleted file mode 100644
index 66d5e9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,14.25L17.5,13h1.1l0.72,1.59c0.11,0.25 0.36,0.41 0.63,0.41 0.5,0 0.83,-0.51 0.64,-0.96l-0.49,-1.14c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1c0,-0.83 -0.67,-1.5 -1.5,-1.5L17,9c-0.55,0 -1,0.45 -1,1v3.9l1.04,1.04c0.27,-0.11 0.46,-0.38 0.46,-0.69zM17.5,10.5h2v1h-2v-1zM13,10.5v0.4l1.5,1.5v-1.9c0,-0.82 -0.68,-1.5 -1.5,-1.5h-1.9l1.5,1.5h0.4zM21.03,21.03l-18,-18c-0.29,-0.29 -0.76,-0.29 -1.05,0 -0.29,0.29 -0.29,0.76 0,1.05l4.98,4.98c-0.27,0.11 -0.46,0.38 -0.46,0.69L6.5,11h-2L4.5,9.75c0,-0.41 -0.34,-0.75 -0.75,-0.75S3,9.34 3,9.75v4.5c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L4.5,12.5h2v1.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L8,10.1l1.5,1.5v2.9c0,0.28 0.22,0.5 0.5,0.5h2.5c0.12,0 0.24,-0.01 0.36,-0.04l7.11,7.11c0.29,0.29 0.76,0.29 1.05,0 0.29,-0.28 0.29,-0.75 0.01,-1.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_off_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_off_select.xml
deleted file mode 100644
index 8a2a4dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_off_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.83 -0.67,-1.5 -1.5,-1.5H14c-0.55,0 -1,0.45 -1,1v4.31c0,0.38 0.31,0.69 0.69,0.69h0.11c0.38,0 0.69,-0.31 0.69,-0.69V20h1.1l0.72,1.59c0.11,0.25 0.36,0.41 0.63,0.41h0c0.5,0 0.83,-0.51 0.64,-0.97L17.1,19.9C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-1.25C1.5,16.34 1.16,16 0.75,16h0C0.34,16 0,16.34 0,16.75v4.5C0,21.66 0.34,22 0.75,22h0c0.41,0 0.75,-0.34 0.75,-0.75V19.5h2v1.75C3.5,21.66 3.84,22 4.25,22h0C4.66,22 5,21.66 5,21.25v-4.5C5,16.34 4.66,16 4.25,16h0c-0.41,0 -0.75,0.34 -0.75,0.75V18zM10,16H7.5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1H10c0.82,0 1.5,-0.67 1.5,-1.5v-3C11.5,16.67 10.82,16 10,16zM10,20.5H8v-3h2V20.5zM23.25,20H22v1.25c0,0.41 -0.34,0.75 -0.75,0.75l0,0c-0.41,0 -0.75,-0.34 -0.75,-0.75V20h-1.25c-0.41,0 -0.75,-0.34 -0.75,-0.75l0,0c0,-0.41 0.34,-0.75 0.75,-0.75h1.25v-1.25c0,-0.41 0.34,-0.75 0.75,-0.75l0,0c0.41,0 0.75,0.34 0.75,0.75v1.25h1.25c0.41,0 0.75,0.34 0.75,0.75l0,0C24,19.66 23.66,20 23.25,20zM10.98,4.15L9.42,2.59c5.1,-2.42 10.41,2.89 7.99,7.99l-1.56,-1.56C16.66,6.06 13.94,3.34 10.98,4.15zM5.63,3.05L5.63,3.05c-0.39,0.39 -0.39,1.02 0,1.41l0.96,0.96c-2.42,5.1 2.88,10.41 7.99,7.99l0.95,0.95c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-9.9,-9.91C6.66,2.66 6.02,2.66 5.63,3.05zM8.15,6.98l4.87,4.87C10.06,12.66 7.34,9.94 8.15,6.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_on.xml
deleted file mode 100644
index c85aa7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,9c-0.41,0 -0.75,0.34 -0.75,0.75L6.5,11h-2L4.5,9.75c0,-0.41 -0.34,-0.75 -0.75,-0.75S3,9.34 3,9.75v4.5c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L4.5,12.5h2v1.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75v-4.5C8,9.34 7.66,9 7.25,9zM21,11.5v-1c0,-0.83 -0.67,-1.5 -1.5,-1.5L17,9c-0.55,0 -1,0.45 -1,1v4.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L17.5,13h1.1l0.72,1.59c0.11,0.25 0.36,0.41 0.63,0.41 0.5,0 0.83,-0.51 0.64,-0.96l-0.49,-1.14c0.5,-0.3 0.9,-0.8 0.9,-1.4zM17.5,11.5v-1h2v1h-2zM13,9h-3c-0.28,0 -0.5,0.22 -0.5,0.5v5c0,0.28 0.22,0.5 0.5,0.5h3c0.82,0 1.5,-0.68 1.5,-1.5v-3c0,-0.82 -0.68,-1.5 -1.5,-1.5zM13,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_on_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_on_select.xml
deleted file mode 100644
index 5ac25572..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_on_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.83 -0.67,-1.5 -1.5,-1.5H14c-0.55,0 -1,0.45 -1,1v4.31c0,0.38 0.31,0.69 0.69,0.69h0.11c0.38,0 0.69,-0.31 0.69,-0.69V20h1.1l0.72,1.59c0.11,0.25 0.36,0.41 0.63,0.41h0c0.5,0 0.83,-0.51 0.64,-0.97L17.1,19.9C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-1.25C1.5,16.34 1.16,16 0.75,16h0C0.34,16 0,16.34 0,16.75v4.5C0,21.66 0.34,22 0.75,22h0c0.41,0 0.75,-0.34 0.75,-0.75V19.5h2v1.75C3.5,21.66 3.84,22 4.25,22h0C4.66,22 5,21.66 5,21.25v-4.5C5,16.34 4.66,16 4.25,16h0c-0.41,0 -0.75,0.34 -0.75,0.75V18zM10,16H7.5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1H10c0.82,0 1.5,-0.67 1.5,-1.5v-3C11.5,16.67 10.82,16 10,16zM10,20.5H8v-3h2V20.5zM23.25,20H22v1.25c0,0.41 -0.34,0.75 -0.75,0.75l0,0c-0.41,0 -0.75,-0.34 -0.75,-0.75V20h-1.25c-0.41,0 -0.75,-0.34 -0.75,-0.75l0,0c0,-0.41 0.34,-0.75 0.75,-0.75h1.25v-1.25c0,-0.41 0.34,-0.75 0.75,-0.75l0,0c0.41,0 0.75,0.34 0.75,0.75v1.25h1.25c0.41,0 0.75,0.34 0.75,0.75l0,0C24,19.66 23.66,20 23.25,20zM12,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4s-4,-1.79 -4,-4S9.79,4 12,4M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_plus.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_plus.xml
deleted file mode 100644
index 86f8eca..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5h1.5v3h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,15.5c0,0.6 -0.4,1.1 -0.9,1.4l0.49,1.13c0.2,0.46 -0.14,0.97 -0.64,0.97h0c-0.27,0 -0.52,-0.16 -0.63,-0.41L9.6,17H8.5v1.31C8.5,18.69 8.19,19 7.81,19H7.69C7.31,19 7,18.69 7,18.31V14c0,-0.55 0.45,-1 1,-1h2.5c0.82,0 1.5,0.68 1.5,1.5V15.5zM11.25,12L11.25,12c-0.41,0 -0.75,-0.34 -0.75,-0.75V9.5h-2v1.75C8.5,11.66 8.16,12 7.75,12h0C7.34,12 7,11.66 7,11.25v-4.5C7,6.34 7.34,6 7.75,6h0C8.16,6 8.5,6.34 8.5,6.75V8h2V6.75C10.5,6.34 10.84,6 11.25,6h0C11.66,6 12,6.34 12,6.75v4.5C12,11.66 11.66,12 11.25,12zM16.75,16H16v0.75c0,0.41 -0.34,0.75 -0.75,0.75h0c-0.41,0 -0.75,-0.34 -0.75,-0.75V16h-0.75C13.34,16 13,15.66 13,15.25v0c0,-0.41 0.34,-0.75 0.75,-0.75h0.75v-0.75c0,-0.41 0.34,-0.75 0.75,-0.75h0c0.41,0 0.75,0.34 0.75,0.75v0.74h0.75c0.41,0 0.75,0.34 0.75,0.75v0.01C17.5,15.66 17.16,16 16.75,16zM17.5,10.5c0,0.82 -0.67,1.5 -1.5,1.5h-2.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-5C13,6.22 13.22,6 13.5,6H16c0.83,0 1.5,0.68 1.5,1.5V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_strong.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_strong.xml
deleted file mode 100644
index 73e3297..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM5,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hdr_weak.xml b/compose/material/material/icons/generator/raw-icons/rounded/hdr_weak.xml
deleted file mode 100644
index 0a0eb26..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hdr_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM17,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/headphones.xml b/compose/material/material/icons/generator/raw-icons/rounded/headphones.xml
deleted file mode 100644
index c84a05c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/headphones.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12v7c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2H5v-1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v1h-2c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-7c0,-4.97 -4.03,-9 -9,-9S3,7.03 3,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/headphones_battery.xml b/compose/material/material/icons/generator/raw-icons/rounded/headphones_battery.xml
deleted file mode 100644
index f4bd2ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/headphones_battery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1V6.5C20,6.22 19.78,6 19.5,6h-1C18.22,6 18,6.22 18,6.5V7h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c-3.31,0 -6,2.69 -6,6v4c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-1c0,-1.1 -0.9,-2 -2,-2H3.5v-1c0,-2.48 2.02,-4.5 4.5,-4.5s4.5,2.02 4.5,4.5v1H12c-1.1,0 -2,0.9 -2,2v1c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-4C14,8.69 11.31,6 8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/headset.xml b/compose/material/material/icons/generator/raw-icons/rounded/headset.xml
deleted file mode 100644
index 12967bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/headset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.4,1.02C6.62,1.33 3,5.52 3,10.31V17c0,1.66 1.34,3 3,3h1c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2H5v-1.71C5,6.45 7.96,3.11 11.79,3 15.76,2.89 19,6.06 19,10v2h-2c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h1c1.66,0 3,-1.34 3,-3v-7c0,-5.17 -4.36,-9.32 -9.6,-8.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/headset_mic.xml b/compose/material/material/icons/generator/raw-icons/rounded/headset_mic.xml
deleted file mode 100644
index e3fb18b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/headset_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.4,1.02C6.62,1.33 3,5.52 3,10.31V17c0,1.66 1.34,3 3,3h1c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2H5v-1.71C5,6.45 7.96,3.11 11.79,3 15.76,2.89 19,6.06 19,10v2h-2c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h2v1h-6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h5c1.66,0 3,-1.34 3,-3V10c0,-5.17 -4.36,-9.32 -9.6,-8.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/headset_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/headset_off.xml
deleted file mode 100644
index cec40d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/headset_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c3.87,0 7,3.13 7,7v1h-2c-0.6,0 -1.13,0.27 -1.49,0.68L21,18.17V11c0,-4.97 -4.03,-9 -9,-9C9.98,2 8.12,2.67 6.62,3.8l1.43,1.43C9.17,4.45 10.53,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81c-0.39,-0.39 -1.02,-0.39 -1.41,0C1,3.2 1,3.83 1.39,4.22l2.63,2.63C3.37,8.09 3,9.5 3,11v7c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2H5v-1c0,-0.94 0.19,-1.83 0.52,-2.65L15,17.83V18c0,1.1 0.9,2 2,2h0.17l1,1H13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c0.36,0 0.68,-0.1 0.97,-0.26c0.38,0.23 0.89,0.2 1.22,-0.13C21.58,22.22 21.58,21.58 21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/healing.xml b/compose/material/material/icons/generator/raw-icons/rounded/healing.xml
deleted file mode 100644
index 7e1fb8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/healing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.73,12.02l3.98,-3.98c0.39,-0.39 0.39,-1.02 0,-1.41l-4.34,-4.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.98,3.98L8,2.29C7.8,2.1 7.55,2 7.29,2c-0.25,0 -0.51,0.1 -0.7,0.29L2.25,6.63c-0.39,0.39 -0.39,1.02 0,1.41l3.98,3.98L2.25,16c-0.39,0.39 -0.39,1.02 0,1.41l4.34,4.34c0.39,0.39 1.02,0.39 1.41,0l3.98,-3.98 3.98,3.98c0.2,0.2 0.45,0.29 0.71,0.29 0.26,0 0.51,-0.1 0.71,-0.29l4.34,-4.34c0.39,-0.39 0.39,-1.02 0,-1.41l-3.99,-3.98zM12,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM7.29,10.96L3.66,7.34l3.63,-3.63 3.62,3.62 -3.62,3.63zM10,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM14,11c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16.66,20.34l-3.63,-3.62 3.63,-3.63 3.62,3.62 -3.62,3.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/health_and_safety.xml b/compose/material/material/icons/generator/raw-icons/rounded/health_and_safety.xml
deleted file mode 100644
index 0887240..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/health_and_safety.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,13h-1C8.67,13 8,12.33 8,11.5v0C8,10.67 8.67,10 9.5,10h1V9c0,-0.83 0.67,-1.5 1.5,-1.5h0c0.83,0 1.5,0.67 1.5,1.5v1h1c0.83,0 1.5,0.67 1.5,1.5v0c0,0.83 -0.67,1.5 -1.5,1.5h-1v1c0,0.83 -0.67,1.5 -1.5,1.5h0c-0.83,0 -1.5,-0.67 -1.5,-1.5V13zM11.3,2.26l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.7c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91v-4.7c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25C12.25,2.09 11.75,2.09 11.3,2.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hearing.xml b/compose/material/material/icons/generator/raw-icons/rounded/hearing.xml
deleted file mode 100644
index 78c35b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hearing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20c-0.29,0 -0.56,-0.06 -0.76,-0.15 -0.71,-0.37 -1.21,-0.88 -1.71,-2.38 -0.51,-1.56 -1.47,-2.29 -2.39,-3 -0.79,-0.61 -1.61,-1.24 -2.32,-2.53C9.29,10.98 9,9.93 9,9c0,-2.8 2.2,-5 5,-5 2.56,0 4.63,1.85 4.95,4.31 0.06,0.4 0.41,0.69 0.82,0.69h0.34c0.5,0 0.89,-0.44 0.83,-0.94C20.49,4.59 17.61,2 14,2c-3.93,0 -7,3.07 -7,7 0,1.26 0.38,2.65 1.07,3.9 0.91,1.65 1.98,2.48 2.85,3.15 0.81,0.62 1.39,1.07 1.71,2.05 0.6,1.82 1.37,2.84 2.73,3.55 0.51,0.23 1.07,0.35 1.64,0.35 1.84,0 3.39,-1.24 3.86,-2.93 0.14,-0.54 -0.25,-1.07 -0.81,-1.07h-0.35c-0.38,0 -0.68,0.27 -0.81,0.63 -0.26,0.79 -1.01,1.37 -1.89,1.37zM6.97,1.97c-0.43,-0.43 -1.12,-0.39 -1.5,0.07C3.93,3.94 3,6.36 3,9s0.93,5.06 2.47,6.95c0.38,0.46 1.07,0.5 1.49,0.08 0.36,-0.36 0.39,-0.93 0.07,-1.32C5.77,13.16 5,11.17 5,9s0.77,-4.16 2.04,-5.7c0.33,-0.4 0.29,-0.97 -0.07,-1.33zM11.5,9c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5 -1.12,-2.5 -2.5,-2.5 -2.5,1.12 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hearing_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/hearing_disabled.xml
deleted file mode 100644
index b8cf2bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hearing_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.96,3.3c-0.32,-0.39 -0.29,-0.96 0.07,-1.32l0.01,-0.01c0.42,-0.42 1.12,-0.38 1.49,0.08C20.07,3.94 21,6.36 21,9c0,2.57 -0.89,4.94 -2.36,6.81l-1.43,-1.43C18.33,12.88 19,11.02 19,9C19,6.83 18.23,4.84 16.96,3.3zM7.49,4.66C8.23,4.24 9.08,4 10,4c2.8,0 5,2.2 5,5c0,0.8 -0.23,1.69 -0.63,2.54l1.48,1.48c0.02,-0.04 0.05,-0.08 0.08,-0.13C16.62,11.65 17,10.26 17,9c0,-3.93 -3.07,-7 -7,-7C8.51,2 7.15,2.44 6.03,3.2L7.49,4.66zM10,6.5c-0.21,0 -0.4,0.03 -0.59,0.08l3.01,3.01C12.47,9.4 12.5,9.21 12.5,9C12.5,7.62 11.38,6.5 10,6.5zM20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l1.42,1.42c-0.2,0.49 -0.35,1 -0.43,1.54C2.99,8.47 3.47,9 4.06,9H4.1c0.48,0 0.89,-0.35 0.96,-0.82C5.08,8.1 5.1,8.02 5.12,7.95l6.62,6.62c-0.88,0.68 -1.78,1.41 -2.27,2.9c-0.5,1.5 -1,2.01 -1.71,2.38C7.56,19.94 7.29,20 7,20c-0.88,0 -1.63,-0.58 -1.9,-1.37C4.97,18.24 4.57,18 4.15,18C3.49,18 3,18.64 3.2,19.26C3.73,20.85 5.23,22 7,22c0.57,0 1.13,-0.12 1.64,-0.35c1.36,-0.71 2.13,-1.73 2.73,-3.55c0.32,-0.98 0.9,-1.43 1.71,-2.05c0.03,-0.02 0.05,-0.04 0.08,-0.06l5.91,5.91c0.39,0.39 1.02,0.39 1.41,0C20.88,21.51 20.88,20.88 20.49,20.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/heart_broken.xml b/compose/material/material/icons/generator/raw-icons/rounded/heart_broken.xml
deleted file mode 100644
index 2659dfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/heart_broken.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.57,3.95c-1.92,-1.29 -4.08,-1.17 -5.8,-0.26L12,9h1.66c0.67,0 1.15,0.65 0.96,1.29l-1.82,6.07c-0.09,0.29 -0.52,0.2 -0.49,-0.1L13,10h-1.67c-0.66,0 -1.14,-0.64 -0.96,-1.27l1.18,-4.11c0,0 0,0 0,0C9.7,2.89 6.71,2.32 4.27,4.04C2.82,5.07 2,6.7 2,8.49c-0.01,3.81 3.53,6.71 8.66,11.3c0.76,0.68 1.92,0.69 2.69,0.01c4.98,-4.42 8.87,-7.58 8.64,-11.62C21.9,6.45 21,4.92 19.57,3.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/heat_pump.xml b/compose/material/material/icons/generator/raw-icons/rounded/heat_pump.xml
deleted file mode 100644
index b9c5ece..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/heat_pump.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12.75,7.08c0.82,0.12 1.57,0.44 2.2,0.91l-2.2,2.2V7.08zM11.25,7.08v3.11l-2.2,-2.2C9.68,7.52 10.43,7.2 11.25,7.08zM7.99,9.05l2.2,2.2H7.08C7.2,10.43 7.52,9.68 7.99,9.05zM7.08,12.75h3.11l-2.2,2.2C7.52,14.32 7.2,13.57 7.08,12.75zM11.25,16.92c-0.82,-0.12 -1.57,-0.44 -2.2,-0.91l2.2,-2.2V16.92zM12,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,12.55 12.55,13 12,13zM12.75,16.92v-3.11l2.2,2.2C14.32,16.48 13.57,16.8 12.75,16.92zM16.01,14.95l-2.2,-2.2h3.11C16.8,13.57 16.48,14.32 16.01,14.95zM13.81,11.25l2.2,-2.2c0.47,0.64 0.79,1.39 0.91,2.2H13.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/height.xml b/compose/material/material/icons/generator/raw-icons/rounded/height.xml
deleted file mode 100644
index a74ee101..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/height.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.99h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.78c-0.2,-0.19 -0.51,-0.19 -0.71,0L8.86,6.14C8.54,6.45 8.76,6.99 9.21,6.99H11v10.02H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.78c0.2,0.19 0.51,0.19 0.71,0l2.79,-2.78c0.32,-0.31 0.09,-0.85 -0.35,-0.85H13V6.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/help.xml b/compose/material/material/icons/generator/raw-icons/rounded/help.xml
deleted file mode 100644
index aa0598d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,19h-2v-2h2v2zM15.07,11.25l-0.9,0.92c-0.5,0.51 -0.86,0.97 -1.04,1.69 -0.08,0.32 -0.13,0.68 -0.13,1.14h-2v-0.5c0,-0.46 0.08,-0.9 0.22,-1.31 0.2,-0.58 0.53,-1.1 0.95,-1.52l1.24,-1.26c0.46,-0.44 0.68,-1.1 0.55,-1.8 -0.13,-0.72 -0.69,-1.33 -1.39,-1.53 -1.11,-0.31 -2.14,0.32 -2.47,1.27 -0.12,0.37 -0.43,0.65 -0.82,0.65h-0.3C8.4,9 8,8.44 8.16,7.88c0.43,-1.47 1.68,-2.59 3.23,-2.83 1.52,-0.24 2.97,0.55 3.87,1.8 1.18,1.63 0.83,3.38 -0.19,4.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/help_center.xml b/compose/material/material/icons/generator/raw-icons/rounded/help_center.xml
deleted file mode 100644
index 369b05d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/help_center.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12.01,18c-0.7,0 -1.26,-0.56 -1.26,-1.26c0,-0.71 0.56,-1.25 1.26,-1.25c0.71,0 1.25,0.54 1.25,1.25C13.25,17.43 12.72,18 12.01,18zM15.02,10.6c-0.76,1.11 -1.48,1.46 -1.87,2.17c-0.1,0.18 -0.16,0.32 -0.19,0.63c-0.05,0.45 -0.45,0.78 -0.9,0.78H12c-0.52,0 -0.93,-0.44 -0.88,-0.96c0.03,-0.34 0.11,-0.69 0.3,-1.03c0.49,-0.87 1.42,-1.39 1.96,-2.16c0.57,-0.81 0.25,-2.33 -1.37,-2.33c-0.71,0 -1.18,0.36 -1.47,0.79c-0.25,0.36 -0.69,0.53 -1.1,0.36l0,0C8.91,8.64 8.72,8 9.04,7.54C9.65,6.65 10.67,6 11.99,6c1.48,0 2.49,0.67 3.01,1.52C15.44,8.24 15.7,9.59 15.02,10.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/help_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/help_outline.xml
deleted file mode 100644
index 9248783..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/help_outline.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM11,16h2v2h-2zM12.61,6.04c-2.06,-0.3 -3.88,0.97 -4.43,2.79 -0.18,0.58 0.26,1.17 0.87,1.17h0.2c0.41,0 0.74,-0.29 0.88,-0.67 0.32,-0.89 1.27,-1.5 2.3,-1.28 0.95,0.2 1.65,1.13 1.57,2.1 -0.1,1.34 -1.62,1.63 -2.45,2.88 0,0.01 -0.01,0.01 -0.01,0.02 -0.01,0.02 -0.02,0.03 -0.03,0.05 -0.09,0.15 -0.18,0.32 -0.25,0.5 -0.01,0.03 -0.03,0.05 -0.04,0.08 -0.01,0.02 -0.01,0.04 -0.02,0.07 -0.12,0.34 -0.2,0.75 -0.2,1.25h2c0,-0.42 0.11,-0.77 0.28,-1.07 0.02,-0.03 0.03,-0.06 0.05,-0.09 0.08,-0.14 0.18,-0.27 0.28,-0.39 0.01,-0.01 0.02,-0.03 0.03,-0.04 0.1,-0.12 0.21,-0.23 0.33,-0.34 0.96,-0.91 2.26,-1.65 1.99,-3.56 -0.24,-1.74 -1.61,-3.21 -3.35,-3.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hevc.xml b/compose/material/material/icons/generator/raw-icons/rounded/hevc.xml
deleted file mode 100644
index 65295fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hevc.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.25,9C5.84,9 5.5,9.34 5.5,9.75V11h-1V9.75C4.5,9.34 4.16,9 3.75,9S3,9.34 3,9.75v4.5C3,14.66 3.34,15 3.75,15s0.75,-0.34 0.75,-0.75V12.5h1v1.75C5.5,14.66 5.84,15 6.25,15S7,14.66 7,14.25v-4.5C7,9.34 6.66,9 6.25,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.75,10.5c0.41,0 0.75,-0.34 0.75,-0.75C11.5,9.34 11.16,9 10.75,9H9c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h1.75c0.41,0 0.75,-0.34 0.75,-0.75c0,-0.41 -0.34,-0.75 -0.75,-0.75H9.5v-1h1.25c0.41,0 0.75,-0.34 0.75,-0.75c0,-0.41 -0.34,-0.75 -0.75,-0.75H9.5v-0.5H10.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.63,9c-0.36,0 -0.67,0.26 -0.73,0.62l-0.65,3.88L13.6,9.62C13.54,9.26 13.23,9 12.87,9c-0.46,0 -0.8,0.41 -0.73,0.86l0.65,3.91c0.12,0.71 0.73,1.23 1.46,1.23s1.34,-0.52 1.46,-1.23l0.65,-3.91C16.43,9.41 16.08,9 15.63,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,10.5c0,0.28 0.22,0.5 0.5,0.5h0.5c0.28,0 0.5,-0.22 0.5,-0.5V10c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-0.5c0,-0.28 -0.22,-0.5 -0.5,-0.5H20c-0.28,0 -0.5,0.22 -0.5,0.5h-1v-3H19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hexagon.xml b/compose/material/material/icons/generator/raw-icons/rounded/hexagon.xml
deleted file mode 100644
index 5bab42a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hexagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.05,3H7.95C7.24,3 6.58,3.38 6.22,4l-4.04,7c-0.36,0.62 -0.36,1.38 0,2l4.04,7c0.36,0.62 1.02,1 1.73,1h8.09c0.71,0 1.37,-0.38 1.73,-1l4.04,-7c0.36,-0.62 0.36,-1.38 0,-2l-4.04,-7C17.42,3.38 16.76,3 16.05,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hide_image.xml b/compose/material/material/icons/generator/raw-icons/rounded/hide_image.xml
deleted file mode 100644
index fa9a509..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hide_image.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5.83L21,18.17V5C21,3.9 20.1,3 19,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L3,5.83V19c0,1.1 0.9,2 2,2h13.17l0.9,0.9c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51zM7,17c-0.41,0 -0.65,-0.47 -0.4,-0.8l2,-2.67c0.2,-0.27 0.6,-0.27 0.8,0L11.25,16l0.82,-1.1l2.1,2.1H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hide_source.xml b/compose/material/material/icons/generator/raw-icons/rounded/hide_source.xml
deleted file mode 100644
index 08f6ef1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hide_source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51C1.71,3.9 1.71,4.54 2.1,4.93l1.56,1.56c-1.25,1.88 -1.88,4.2 -1.59,6.69c0.52,4.54 4.21,8.23 8.75,8.75c2.49,0.29 4.81,-0.34 6.69,-1.59l1.56,1.56c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l10.94,10.94C14.86,19.59 13.48,20 12,20zM7.94,5.12L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8C10.52,4 9.14,4.41 7.94,5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/high_quality.xml b/compose/material/material/icons/generator/raw-icons/rounded/high_quality.xml
deleted file mode 100644
index 6b8275f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/high_quality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM10.25,15c-0.41,0 -0.75,-0.34 -0.75,-0.75L9.5,13h-2v1.25c0,0.41 -0.34,0.75 -0.75,0.75S6,14.66 6,14.25v-4.5c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75v1.75h2L9.5,9.75c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75v4.5c0,0.41 -0.34,0.75 -0.75,0.75zM18,14c0,0.55 -0.45,1 -1,1h-0.75v0.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75L14.75,15L14,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v4zM14.5,13.5h2v-3h-2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/highlight.xml b/compose/material/material/icons/generator/raw-icons/rounded/highlight.xml
deleted file mode 100644
index 35b132b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/highlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.29,14.29L9,17v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-4l2.71,-2.71c0.19,-0.19 0.29,-0.44 0.29,-0.71L18,10c0,-0.55 -0.45,-1 -1,-1L7,9c-0.55,0 -1,0.45 -1,1v3.59c0,0.26 0.11,0.52 0.29,0.7zM12,2c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,3c0,-0.55 0.45,-1 1,-1zM4.21,5.17c0.39,-0.39 1.02,-0.39 1.42,0l0.71,0.71c0.39,0.39 0.39,1.02 0,1.41 -0.39,0.39 -1.02,0.39 -1.41,0l-0.72,-0.71c-0.39,-0.39 -0.39,-1.02 0,-1.41zM17.67,5.88l0.71,-0.71c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-0.71,0.71c-0.39,0.39 -1.02,0.39 -1.41,0 -0.39,-0.39 -0.39,-1.02 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/highlight_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/highlight_alt.xml
deleted file mode 100644
index 54ed30e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/highlight_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5h-2V3h2V5zM19,9h2V7h-2V9zM19,13h2v-2h-2V13zM11,21h2v-2h-2V21zM7,5h2V3H7V5zM3,17h2v-2H3V17zM5,21v-2H3C3,20.1 3.9,21 5,21zM19,3v2h2C21,3.9 20.1,3 19,3zM11,5h2V3h-2V5zM3,9h2V7H3V9zM7,21h2v-2H7V21zM3,13h2v-2H3V13zM3,5h2V3C3.9,3 3,3.9 3,5zM18.71,17.29l1.44,-1.44c0.32,-0.32 0.09,-0.85 -0.35,-0.85H16c-0.55,0 -1,0.45 -1,1v3.79c0,0.45 0.54,0.67 0.85,0.35l1.44,-1.44l2,2c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L18.71,17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/highlight_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/highlight_off.xml
deleted file mode 100644
index ca3baac..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/highlight_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.89,8.7L12,10.59 10.11,8.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L10.59,12 8.7,13.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,13.41l1.89,1.89c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L13.41,12l1.89,-1.89c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.38 -1.03,-0.38 -1.41,0zM12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hiking.xml b/compose/material/material/icons/generator/raw-icons/rounded/hiking.xml
deleted file mode 100644
index f313726..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hiking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM18.25,9c-0.41,0 -0.75,0.34 -0.75,0.75l0,1.03c-1.23,-0.37 -2.22,-1.17 -2.8,-2.18l-1,-1.6c-0.41,-0.65 -1.11,-1 -1.84,-1c-0.78,0 -1.59,0.5 -1.78,1.44L7.25,21.76C7.12,22.4 7.61,23 8.27,23c0.49,0 0.91,-0.34 1.02,-0.81L10.9,15l2.1,2v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5.64c0,-0.55 -0.22,-1.07 -0.62,-1.45L12.9,13.5l0.6,-3c1,1.15 2.41,2.01 4,2.34v9.41c0,0.41 0.34,0.75 0.75,0.75S19,22.66 19,22.25V9.75C19,9.34 18.66,9 18.25,9zM7.43,13.13l-2.12,-0.41c-0.54,-0.11 -0.9,-0.63 -0.79,-1.17l0.76,-3.93c0.21,-1.08 1.26,-1.79 2.34,-1.58l1.16,0.23L7.43,13.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/history.xml b/compose/material/material/icons/generator/raw-icons/rounded/history.xml
deleted file mode 100644
index e1905a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.26,3C8.17,2.86 4,6.95 4,12L2.21,12c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.8c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.8c0.31,-0.31 0.09,-0.85 -0.36,-0.85L6,12c0,-3.9 3.18,-7.05 7.1,-7 3.72,0.05 6.85,3.18 6.9,6.9 0.05,3.91 -3.1,7.1 -7,7.1 -1.61,0 -3.1,-0.55 -4.28,-1.48 -0.4,-0.31 -0.96,-0.28 -1.32,0.08 -0.42,0.42 -0.39,1.13 0.08,1.49C9,20.29 10.91,21 13,21c5.05,0 9.14,-4.17 9,-9.26 -0.13,-4.69 -4.05,-8.61 -8.74,-8.74zM12.75,8c-0.41,0 -0.75,0.34 -0.75,0.75v3.68c0,0.35 0.19,0.68 0.49,0.86l3.12,1.85c0.36,0.21 0.82,0.09 1.03,-0.26 0.21,-0.36 0.09,-0.82 -0.26,-1.03l-2.88,-1.71v-3.4c0,-0.4 -0.34,-0.74 -0.75,-0.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/history_edu.xml b/compose/material/material/icons/generator/raw-icons/rounded/history_edu.xml
deleted file mode 100644
index 9645ac6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/history_edu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v0.38c-0.83,-0.33 -1.72,-0.5 -2.61,-0.5c-1.42,0 -2.84,0.43 -4.05,1.29C1.83,6.53 1.77,7.26 2.21,7.7l2.57,2.57h1.11v1.11c0.86,0.86 1.98,1.31 3.11,1.36V15H7c-0.55,0 -1,0.45 -1,1v2c0,1.1 0.9,2 2,2h10c1.66,0 3,-1.34 3,-3V5c0,-0.55 -0.45,-1 -1,-1H10C9.45,4 9,4.45 9,5zM7.89,10.41V8.26H5.61L4.57,7.22C5.14,7 5.76,6.88 6.39,6.88c1.34,0 2.59,0.52 3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51 -1.19,0.8 -1.92,0.8C8.75,10.75 8.29,10.63 7.89,10.41zM19,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-1c0,-0.55 -0.45,-1 -1,-1h-5v-2.59c0.57,-0.23 1.1,-0.57 1.56,-1.03l0.2,-0.2L15.59,14H17v-1.41l-6,-5.97V6h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/history_toggle_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/history_toggle_off.xml
deleted file mode 100644
index 2388f53..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/history_toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.1,19.37l1,1.74c-0.96,0.44 -2.01,0.73 -3.1,0.84v-2.02C13.74,19.84 14.44,19.65 15.1,19.37zM4.07,13H2.05c0.11,1.1 0.4,2.14 0.84,3.1l1.74,-1C4.35,14.44 4.16,13.74 4.07,13zM15.1,4.63l1,-1.74C15.14,2.45 14.1,2.16 13,2.05v2.02C13.74,4.16 14.44,4.35 15.1,4.63zM19.93,11h2.02c-0.11,-1.1 -0.4,-2.14 -0.84,-3.1l-1.74,1C19.65,9.56 19.84,10.26 19.93,11zM8.9,19.37l-1,1.74c0.96,0.44 2.01,0.73 3.1,0.84v-2.02C10.26,19.84 9.56,19.65 8.9,19.37zM11,4.07V2.05c-1.1,0.11 -2.14,0.4 -3.1,0.84l1,1.74C9.56,4.35 10.26,4.16 11,4.07zM18.36,7.17l1.74,-1.01c-0.63,-0.87 -1.4,-1.64 -2.27,-2.27l-1.01,1.74C17.41,6.08 17.92,6.59 18.36,7.17zM4.63,8.9l-1.74,-1C2.45,8.86 2.16,9.9 2.05,11h2.02C4.16,10.26 4.35,9.56 4.63,8.9zM19.93,13c-0.09,0.74 -0.28,1.44 -0.56,2.1l1.74,1c0.44,-0.96 0.73,-2.01 0.84,-3.1H19.93zM16.83,18.36l1.01,1.74c0.87,-0.63 1.64,-1.4 2.27,-2.27l-1.74,-1.01C17.92,17.41 17.41,17.92 16.83,18.36zM7.17,5.64L6.17,3.89C5.29,4.53 4.53,5.29 3.9,6.17l1.74,1.01C6.08,6.59 6.59,6.08 7.17,5.64zM5.64,16.83L3.9,17.83c0.63,0.87 1.4,1.64 2.27,2.27l1.01,-1.74C6.59,17.92 6.08,17.41 5.64,16.83zM12,7L12,7c-0.55,0 -1,0.45 -1,1v3.59c0,0.53 0.21,1.04 0.59,1.41l3,3c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-3,-3V8C13,7.45 12.55,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hive.xml b/compose/material/material/icons/generator/raw-icons/rounded/hive.xml
deleted file mode 100644
index 2fe9ef6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hive.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.09,7.51l1.2,-2c0.19,-0.32 0.19,-0.71 0,-1.03l-1.2,-2C13.91,2.18 13.58,2 13.23,2h-2.45c-0.35,0 -0.68,0.18 -0.86,0.49l-1.2,2c-0.19,0.32 -0.19,0.71 0,1.03l1.2,2C10.09,7.82 10.42,8 10.77,8h2.45C13.58,8 13.91,7.82 14.09,7.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.91,9.49l-1.2,2c-0.19,0.32 -0.19,0.71 0,1.03l1.2,2c0.18,0.3 0.51,0.49 0.86,0.49h2.46c0.35,0 0.68,-0.18 0.86,-0.49l1.2,-2c0.19,-0.32 0.19,-0.71 0,-1.03l-1.2,-2C13.91,9.18 13.58,9 13.23,9h-2.46C10.42,9 10.09,9.18 9.91,9.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.01,11.51h2.45c0.35,0 0.68,-0.18 0.86,-0.49l1.2,-2c0.19,-0.32 0.19,-0.71 0,-1.03l-1.2,-2c-0.18,-0.3 -0.51,-0.49 -0.86,-0.49h-2.45c-0.35,0 -0.68,0.18 -0.86,0.49l-1.2,2c-0.19,0.32 -0.19,0.71 0,1.03l1.2,2C16.34,11.33 16.66,11.51 17.01,11.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.47,12.51h-2.46c-0.35,0 -0.68,0.18 -0.86,0.49l-1.2,2c-0.19,0.32 -0.19,0.71 0,1.03l1.2,2c0.18,0.3 0.51,0.49 0.86,0.49h2.46c0.35,0 0.68,-0.18 0.86,-0.49l1.2,-2c0.19,-0.32 0.19,-0.71 0,-1.03l-1.2,-2C20.15,12.7 19.82,12.51 19.47,12.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.84,11.03l1.2,-2c0.19,-0.32 0.19,-0.71 0,-1.03l-1.2,-2C7.66,5.7 7.34,5.51 6.99,5.51H4.53C4.18,5.51 3.85,5.7 3.67,6l-1.2,2c-0.19,0.32 -0.19,0.71 0,1.03l1.2,2c0.18,0.3 0.51,0.49 0.86,0.49h2.45C7.34,11.51 7.66,11.33 7.84,11.03z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.99,12.51H4.53c-0.35,0 -0.68,0.18 -0.86,0.49l-1.2,2c-0.19,0.32 -0.19,0.71 0,1.03l1.2,2c0.18,0.3 0.51,0.49 0.86,0.49h2.46c0.35,0 0.68,-0.18 0.86,-0.49l1.2,-2c0.19,-0.32 0.19,-0.71 0,-1.03l-1.2,-2C7.66,12.7 7.34,12.51 6.99,12.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.91,16.49l-1.2,2c-0.19,0.32 -0.19,0.71 0,1.03l1.2,2c0.18,0.3 0.51,0.49 0.86,0.49h2.46c0.35,0 0.68,-0.18 0.86,-0.49l1.2,-2c0.19,-0.32 0.19,-0.71 0,-1.03l-1.2,-2c-0.18,-0.3 -0.51,-0.49 -0.86,-0.49h-2.46C10.42,16 10.09,16.18 9.91,16.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hls.xml b/compose/material/material/icons/generator/raw-icons/rounded/hls.xml
deleted file mode 100644
index 6193167..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.75,9C10.34,9 10,9.34 10,9.75V14c0,0.55 0.45,1 1,1h2.25c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75H11.5V9.75C11.5,9.34 11.16,9 10.75,9zM19.04,10.5c0.1,0.29 0.38,0.5 0.71,0.5c0.41,0 0.75,-0.34 0.75,-0.75V10c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2.04v0c-0.1,-0.29 -0.38,-0.5 -0.71,-0.5c-0.41,0 -0.75,0.34 -0.75,0.75V14c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1L19.04,10.5zM8,9.75C8,9.34 7.66,9 7.25,9S6.5,9.34 6.5,9.75V11h-2V9.75C4.5,9.34 4.16,9 3.75,9S3,9.34 3,9.75v4.5C3,14.66 3.34,15 3.75,15s0.75,-0.34 0.75,-0.75V12.5h2v1.75C6.5,14.66 6.84,15 7.25,15S8,14.66 8,14.25V9.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hls_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/hls_off.xml
deleted file mode 100644
index 53ceab8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hls_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.83,15h1.67c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1l2.04,0c0.1,0.29 0.38,0.5 0.71,0.5c0.41,0 0.75,-0.34 0.75,-0.75V10c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2.04v0c-0.1,-0.29 -0.38,-0.5 -0.71,-0.5c-0.12,0 -0.24,0.03 -0.34,0.08L17.83,15zM19.07,21.9c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0s-0.39,1.02 0,1.41l4.48,4.48C6.53,9.51 6.5,9.63 6.5,9.75V11h-2V9.75C4.5,9.34 4.16,9 3.75,9S3,9.34 3,9.75v4.5C3,14.66 3.34,15 3.75,15s0.75,-0.34 0.75,-0.75V12.5h2v1.75C6.5,14.66 6.84,15 7.25,15S8,14.66 8,14.25v-3.42l2,2V14c0,0.55 0.45,1 1,1h1.17L19.07,21.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/holiday_village.xml b/compose/material/material/icons/generator/raw-icons/rounded/holiday_village.xml
deleted file mode 100644
index a670a4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/holiday_village.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20c0.55,0 1,-0.45 1,-1V8.76c0,-0.27 -0.11,-0.52 -0.29,-0.71l-3.76,-3.76C13.76,4.11 13.51,4 13.24,4c-0.89,0 -1.34,1.08 -0.71,1.71l3.32,3.32C15.95,9.12 16,9.25 16,9.38V19C16,19.55 16.45,20 17,20zM21,20c0.55,0 1,-0.45 1,-1V7.11c0,-0.26 -0.11,-0.52 -0.29,-0.71l-2.1,-2.11C19.42,4.11 19.16,4 18.9,4C18,4 17.56,5.08 18.19,5.71l1.67,1.67C19.95,7.47 20,7.6 20,7.73V19C20,19.55 20.45,20 21,20zM8,15c0.55,0 1,0.45 1,1v4h4c0.55,0 1,-0.45 1,-1v-8.59c0,-0.27 -0.11,-0.52 -0.29,-0.71l-5,-5c-0.39,-0.39 -1.02,-0.39 -1.41,0l-5,5C2.11,9.89 2,10.15 2,10.41V19c0,0.55 0.45,1 1,1h4v-4C7,15.45 7.45,15 8,15zM8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,13 8,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/home.xml b/compose/material/material/icons/generator/raw-icons/rounded/home.xml
deleted file mode 100644
index 2a8afa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19v-5h4v5c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-7h1.7c0.46,0 0.68,-0.57 0.33,-0.87L12.67,3.6c-0.38,-0.34 -0.96,-0.34 -1.34,0l-8.36,7.53c-0.34,0.3 -0.13,0.87 0.33,0.87H5v7c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/home_max.xml b/compose/material/material/icons/generator/raw-icons/rounded/home_max.xml
deleted file mode 100644
index d1734b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/home_max.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C2.79,5 1,6.79 1,9v5c0,2.21 1.79,4 4,4h2c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1h2c2.21,0 4,-1.79 4,-4V9C23,6.79 21.21,5 19,5zM21,14c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/home_mini.xml b/compose/material/material/icons/generator/raw-icons/rounded/home_mini.xml
deleted file mode 100644
index 5d9e84e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/home_mini.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5C4.19,5 2,9.48 2,12c0,3.86 3.13,7 6.99,7h6.02c2.69,0 6.99,-2.08 6.99,-7C22,12 22,5 12,5zM12,7c7.64,0 7.99,4.51 8,5H4C4,11.8 4.09,7 12,7zM14.86,17H9.14c-2.1,0 -3.92,-1.24 -4.71,-3h15.15C18.78,15.76 16.96,17 14.86,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/home_repair_service.xml b/compose/material/material/icons/generator/raw-icons/rounded/home_repair_service.xml
deleted file mode 100644
index af91d857..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/home_repair_service.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16c-0.55,0 -1,-0.45 -1,-1H8c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1H2v3c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-3h-4C18,15.55 17.55,16 17,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3V6c0,-1.1 -0.9,-2 -2,-2H9C7.9,4 7,4.9 7,6v2H4c-1.1,0 -2,0.9 -2,2v4h4v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h8v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h4v-4C22,8.9 21.1,8 20,8zM15,8H9V6h6V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/home_work.xml b/compose/material/material/icons/generator/raw-icons/rounded/home_work.xml
deleted file mode 100644
index 438a3a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/home_work.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.16,10.4l-5,-3.57c-0.7,-0.5 -1.63,-0.5 -2.32,0l-5,3.57C1.31,10.78 1,11.38 1,12.03V20c0,0.55 0.45,1 1,1h4v-6h4v6h4c0.55,0 1,-0.45 1,-1v-7.97C15,11.38 14.69,10.78 14.16,10.4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.03,3h-9.06C10.88,3 10,3.88 10,4.97l0.09,0.09c0.08,0.05 0.16,0.09 0.24,0.14l5,3.57c0.76,0.54 1.3,1.34 1.54,2.23H19v2h-2v2h2v2h-2v3v1h4.03c1.09,0 1.97,-0.88 1.97,-1.97V4.97C23,3.88 22.12,3 21.03,3zM19,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/horizontal_distribute.xml b/compose/material/material/icons/generator/raw-icons/rounded/horizontal_distribute.xml
deleted file mode 100644
index e8f172f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/horizontal_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,22L3,22c-0.55,0 -1,-0.45 -1,-1V3c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v18C4,21.55 3.55,22 3,22zM21,2L21,2c-0.55,0 -1,0.45 -1,1v18c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V3C22,2.45 21.55,2 21,2zM12,7L12,7c-0.83,0 -1.5,0.67 -1.5,1.5v7c0,0.83 0.67,1.5 1.5,1.5h0c0.83,0 1.5,-0.67 1.5,-1.5v-7C13.5,7.67 12.83,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/horizontal_rule.xml b/compose/material/material/icons/generator/raw-icons/rounded/horizontal_rule.xml
deleted file mode 100644
index bc01f60..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/horizontal_rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v0C20,12.55 19.55,13 19,13z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/horizontal_split.xml b/compose/material/material/icons/generator/raw-icons/rounded/horizontal_split.xml
deleted file mode 100644
index 5259e4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/horizontal_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h16c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1L4,13c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM4,11h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hot_tub.xml b/compose/material/material/icons/generator/raw-icons/rounded/hot_tub.xml
deleted file mode 100644
index 262d525..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hot_tub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12h-9.85c-0.31,-0.22 -0.59,-0.46 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C6.01,9 5,10.01 5,11.25L5,12L3,12c-0.55,0 -1,0.45 -1,1v7c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-7c0,-0.55 -0.45,-1 -1,-1zM7,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4zM11,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4zM15,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4zM19,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4zM15.06,10c0.5,0 0.93,-0.39 0.94,-0.89 0.04,-1.4 -0.58,-2.48 -1.35,-3.25 -0.65,-0.72 -0.8,-1.27 -0.77,-1.91 0.02,-0.52 -0.41,-0.95 -0.94,-0.95 -0.5,0 -0.93,0.4 -0.94,0.9 -0.03,1.29 0.5,2.43 1.35,3.25 0.61,0.59 0.78,1.27 0.78,1.89 -0.01,0.52 0.4,0.96 0.93,0.96zM19.06,10c0.5,0 0.93,-0.39 0.94,-0.89 0.04,-1.4 -0.58,-2.48 -1.35,-3.25 -0.65,-0.72 -0.8,-1.27 -0.77,-1.91 0.02,-0.52 -0.41,-0.95 -0.94,-0.95 -0.5,0 -0.93,0.4 -0.94,0.9 -0.03,1.29 0.5,2.43 1.35,3.25 0.61,0.59 0.78,1.27 0.78,1.89 -0.01,0.52 0.4,0.96 0.93,0.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hotel.xml b/compose/material/material/icons/generator/raw-icons/rounded/hotel.xml
deleted file mode 100644
index cda81ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.66,0 3,-1.34 3,-3S8.66,7 7,7s-3,1.34 -3,3 1.34,3 3,3zM19,7h-6c-1.1,0 -2,0.9 -2,2v5L3,14L3,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v13c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h18v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-8c0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hotel_class.xml b/compose/material/material/icons/generator/raw-icons/rounded/hotel_class.xml
deleted file mode 100644
index 37b683e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hotel_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.58,10H2.56c-0.49,0 -0.69,0.62 -0.29,0.91l4.91,3.51l-1.89,6.1c-0.14,0.46 0.39,0.84 0.78,0.55L11,17.31l4.93,3.75c0.39,0.29 0.92,-0.08 0.78,-0.55l-1.89,-6.1l4.91,-3.51c0.4,-0.28 0.2,-0.91 -0.29,-0.91h-6.02l-1.95,-6.42c-0.14,-0.47 -0.81,-0.47 -0.96,0L8.58,10zM20.9,20.51l-1.4,-4.52l2.91,-2.08c0.4,-0.28 0.2,-0.91 -0.29,-0.91h-1.88l-3.08,2.2l1.46,4.72l1.5,1.14C20.51,21.35 21.04,20.97 20.9,20.51zM17,8l-1.34,-4.42c-0.14,-0.47 -0.81,-0.47 -0.96,0l-0.57,1.87L14.91,8H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_bottom.xml b/compose/material/material/icons/generator/raw-icons/rounded/hourglass_bottom.xml
deleted file mode 100644
index e8d21b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,22c1.1,0 2,-0.9 2,-2l-0.01,-3.18c0,-0.53 -0.21,-1.03 -0.58,-1.41L14,12l3.41,-3.43c0.37,-0.37 0.58,-0.88 0.58,-1.41L18,4c0,-1.1 -0.9,-2 -2,-2H8C6.9,2 6,2.9 6,4v3.16C6,7.69 6.21,8.2 6.58,8.58L10,12l-3.41,3.4C6.21,15.78 6,16.29 6,16.82V20c0,1.1 0.9,2 2,2H16zM8,7.09V5c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v2.09c0,0.27 -0.11,0.52 -0.29,0.71L12,11.5L8.29,7.79C8.11,7.61 8,7.35 8,7.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/hourglass_disabled.xml
deleted file mode 100644
index a6b590e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81c-0.39,-0.39 -1.02,-0.39 -1.41,0C1,3.2 1,3.83 1.39,4.22l8.19,8.19l-3,3.01C6.21,15.8 6,16.31 6,16.84V20c0,1.1 0.9,2 2,2h8c0.86,0 1.58,-0.54 1.87,-1.3l1.91,1.91c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L2.81,2.81zM16,19c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-2.5l2.84,-2.84L16,18.83V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v2.5l-2.84,2.84l1.25,1.25l3,-2.99C17.79,8.22 18,7.71 18,7.18V4c0,-1.11 -0.9,-2 -2,-2H8C7.14,2 6.42,2.54 6.13,3.3L8,5.17V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_empty.xml b/compose/material/material/icons/generator/raw-icons/rounded/hourglass_empty.xml
deleted file mode 100644
index c61c2da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_empty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,2c-1.1,0 -2,0.9 -2,2v3.17c0,0.53 0.21,1.04 0.59,1.42L10,12l-3.42,3.42c-0.37,0.38 -0.58,0.89 -0.58,1.42L6,20c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-3.16c0,-0.53 -0.21,-1.04 -0.58,-1.41L14,12l3.41,-3.4c0.38,-0.38 0.59,-0.89 0.59,-1.42L18,4c0,-1.1 -0.9,-2 -2,-2L8,2zM16,16.5L16,19c0,0.55 -0.45,1 -1,1L9,20c-0.55,0 -1,-0.45 -1,-1v-2.5l4,-4 4,4zM12,11.5l-4,-4L8,5c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v2.5l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_full.xml b/compose/material/material/icons/generator/raw-icons/rounded/hourglass_full.xml
deleted file mode 100644
index 97d32f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4v3.17c0,0.53 0.21,1.04 0.59,1.42L10,12l-3.42,3.42c-0.37,0.38 -0.58,0.89 -0.58,1.42V20c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-3.16c0,-0.53 -0.21,-1.04 -0.58,-1.41L14,12l3.41,-3.4c0.38,-0.38 0.59,-0.89 0.59,-1.42V4c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_top.xml b/compose/material/material/icons/generator/raw-icons/rounded/hourglass_top.xml
deleted file mode 100644
index 17f1e7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hourglass_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,2C6.9,2 6,2.9 6,4l0.01,3.18c0,0.53 0.21,1.03 0.58,1.41L10,12l-3.41,3.43c-0.37,0.37 -0.58,0.88 -0.58,1.41L6,20c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-3.16c0,-0.53 -0.21,-1.04 -0.58,-1.41L14,12l3.41,-3.4C17.79,8.22 18,7.71 18,7.18V4c0,-1.1 -0.9,-2 -2,-2H8zM16,16.91V19c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-2.09c0,-0.27 0.11,-0.52 0.29,-0.71L12,12.5l3.71,3.71C15.89,16.39 16,16.65 16,16.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/house.xml b/compose/material/material/icons/generator/raw-icons/rounded/house.xml
deleted file mode 100644
index 92f58da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/house.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.3V5c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v1.6l-3.33,-3c-0.38,-0.34 -0.96,-0.34 -1.34,0l-8.36,7.53C2.63,11.43 2.84,12 3.3,12H5v7c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-5h4v5c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-7h1.7c0.46,0 0.68,-0.57 0.33,-0.87L19,9.3zM10,10c0,-1.1 0.9,-2 2,-2s2,0.9 2,2H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/house_siding.xml b/compose/material/material/icons/generator/raw-icons/rounded/house_siding.xml
deleted file mode 100644
index 706ece8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/house_siding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h1.7c0.46,0 0.68,-0.57 0.33,-0.87L12.67,3.6c-0.38,-0.34 -0.96,-0.34 -1.34,0l-8.36,7.53C2.63,11.43 2.84,12 3.3,12H5v7c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h10v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V12zM7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10zM14.57,8H9.43L12,5.69L14.57,8zM7,16v-2h10v2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/houseboat.xml b/compose/material/material/icons/generator/raw-icons/rounded/houseboat.xml
deleted file mode 100644
index e548b3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/houseboat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17.83c0,-0.42 -0.27,-0.8 -0.67,-0.94C20.62,16.62 20.21,16 18.67,16c-1.91,0 -2.14,1 -3.33,1c-1.24,0 -1.39,-1 -3.34,-1s-2.1,1 -3.34,1c-1.19,0 -1.42,-1 -3.33,-1c-1.54,0 -1.95,0.62 -2.66,0.88C2.27,17.03 2,17.4 2,17.83c0,0.7 0.69,1.19 1.35,0.95c0.8,-0.29 1.18,-0.78 2,-0.78c1.19,0 1.42,1 3.33,1c1.95,0 2.08,-1 3.32,-1s1.37,1 3.32,1c1.91,0 2.14,-1 3.33,-1c0.83,0 1.21,0.49 2,0.78C21.31,19.02 22,18.52 22,17.83zM18.91,9.81c0.33,-0.45 0.23,-1.07 -0.22,-1.4l-6.1,-4.47c-0.35,-0.26 -0.83,-0.26 -1.18,0l-6.1,4.47c-0.45,0.33 -0.54,0.95 -0.22,1.4c0.33,0.45 0.95,0.54 1.4,0.22L7,9.65V13H5.74c-0.27,0 -0.52,-0.11 -0.71,-0.29l-0.66,-0.66c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l0.66,0.66C4.18,14.68 4.95,15 5.74,15h12.51c0.8,0 1.56,-0.32 2.12,-0.88l0.66,-0.66c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.66,0.66C18.78,12.89 18.52,13 18.26,13H17V9.65l0.51,0.37C17.96,10.35 18.58,10.25 18.91,9.81zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/how_to_reg.xml b/compose/material/material/icons/generator/raw-icons/rounded/how_to_reg.xml
deleted file mode 100644
index 6b8726a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/how_to_reg.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20l-0.86,-0.86c-1.18,-1.18 -1.17,-3.1 0.02,-4.26l0.84,-0.82c-0.39,-0.04 -0.68,-0.06 -1,-0.06 -2.67,0 -8,1.34 -8,4v2h9zM11,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.18,19.78c-0.39,0.39 -1.03,0.39 -1.42,0l-2.07,-2.09c-0.38,-0.39 -0.38,-1.01 0,-1.39l0.01,-0.01c0.39,-0.39 1.02,-0.39 1.4,0l1.37,1.37 4.43,-4.46c0.39,-0.39 1.02,-0.39 1.41,0l0.01,0.01c0.38,0.39 0.38,1.01 0,1.39l-5.14,5.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/how_to_vote.xml b/compose/material/material/icons/generator/raw-icons/rounded/how_to_vote.xml
deleted file mode 100644
index e6f892a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/how_to_vote.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12.18l-1.5,1.64l2,2.18h-13l2,-2.18L6,12.18l-3,3.27V20c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4.54L18,12.18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,14.42c0.78,0.79 2.05,0.8 2.84,0.01l4.98,-4.98c0.78,-0.78 0.78,-2.05 0,-2.83l-3.54,-3.53c-0.78,-0.78 -2.05,-0.78 -2.83,0L7.09,8.04c-0.78,0.78 -0.78,2.03 -0.01,2.82L10.59,14.42zM13.46,4.5l3.53,3.53l-4.94,4.94L8.52,9.44L13.46,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/html.xml b/compose/material/material/icons/generator/raw-icons/rounded/html.xml
deleted file mode 100644
index 77e88a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/html.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15c-0.55,0 -1,-0.45 -1,-1V9.75C20,9.34 20.34,9 20.75,9s0.75,0.34 0.75,0.75v3.75h1.75c0.41,0 0.75,0.34 0.75,0.75c0,0.41 -0.34,0.75 -0.75,0.75H21zM16,10.49h1v3.76c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75V10c0,-0.55 -0.45,-1 -1,-1H13c-0.55,0 -1,0.45 -1,1v4.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75V10.5h1v2.75c0,0.41 0.34,0.75 0.75,0.75S16,13.66 16,13.25V10.49zM5,9.75C5,9.34 4.66,9 4.25,9S3.5,9.34 3.5,9.75V11h-2V9.75C1.5,9.34 1.16,9 0.75,9S0,9.34 0,9.75v4.5C0,14.66 0.34,15 0.75,15s0.75,-0.34 0.75,-0.75V12.5h2v1.75C3.5,14.66 3.84,15 4.25,15S5,14.66 5,14.25V9.75zM10.25,10.5c0.41,0 0.75,-0.34 0.75,-0.75C11,9.34 10.66,9 10.25,9h-3.5C6.34,9 6,9.34 6,9.75c0,0.41 0.34,0.75 0.75,0.75h1v3.75C7.75,14.66 8.09,15 8.5,15s0.75,-0.34 0.75,-0.75V10.5H10.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/http.xml b/compose/material/material/icons/generator/raw-icons/rounded/http.xml
deleted file mode 100644
index a22ad86..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/http.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,11h-2L2.5,9.75c0,-0.41 -0.34,-0.75 -0.75,-0.75S1,9.34 1,9.75v4.5c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L2.5,12.5h2v1.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75v-4.5C6,9.34 5.66,9 5.25,9s-0.75,0.34 -0.75,0.75L4.5,11zM7.75,10.5h0.75v3.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L10,10.5h0.75c0.41,0 0.75,-0.34 0.75,-0.75S11.16,9 10.75,9h-3c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75zM13.25,10.5L14,10.5v3.75c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L15.5,10.5h0.75c0.41,0 0.75,-0.34 0.75,-0.75S16.66,9 16.25,9h-3c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75zM21.5,9L19,9c-0.55,0 -1,0.45 -1,1v4.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L19.5,13h2c0.83,0 1.5,-0.68 1.5,-1.5v-1c0,-0.82 -0.67,-1.5 -1.5,-1.5zM21.5,11.5h-2v-1h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/https.xml b/compose/material/material/icons/generator/raw-icons/rounded/https.xml
deleted file mode 100644
index c985c05..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/https.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM9,8L9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hub.xml b/compose/material/material/icons/generator/raw-icons/rounded/hub.xml
deleted file mode 100644
index fedb1a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.4,18.2C8.78,18.7 9,19.32 9,20c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3c0.44,0 0.85,0.09 1.23,0.26l1.41,-1.77c-0.92,-1.03 -1.29,-2.39 -1.09,-3.69l-2.03,-0.68C4.98,11.95 4.06,12.5 3,12.5c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3c0,0.07 0,0.14 -0.01,0.21l2.03,0.68c0.64,-1.21 1.82,-2.09 3.22,-2.32l0,-2.16C9.96,5.57 9,4.4 9,3c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,1.4 -0.96,2.57 -2.25,2.91v2.16c1.4,0.23 2.58,1.11 3.22,2.32l2.03,-0.68C18,9.64 18,9.57 18,9.5c0,-1.66 1.34,-3 3,-3s3,1.34 3,3s-1.34,3 -3,3c-1.06,0 -1.98,-0.55 -2.52,-1.37l-2.03,0.68c0.2,1.29 -0.16,2.65 -1.09,3.69l1.41,1.77C17.15,17.09 17.56,17 18,17c1.66,0 3,1.34 3,3s-1.34,3 -3,3s-3,-1.34 -3,-3c0,-0.68 0.22,-1.3 0.6,-1.8l-1.41,-1.77c-1.35,0.75 -3.01,0.76 -4.37,0L8.4,18.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/hvac.xml b/compose/material/material/icons/generator/raw-icons/rounded/hvac.xml
deleted file mode 100644
index 54f3b6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/hvac.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c1.01,0 1.91,-0.39 2.62,-1H9.38C10.09,15.61 10.99,16 12,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.56,14h6.89c0.26,-0.45 0.44,-0.96 0.51,-1.5h-7.9C8.12,13.04 8.29,13.55 8.56,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-1.01,0 -1.91,0.39 -2.62,1h5.24C13.91,8.39 13.01,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.56,10c-0.26,0.45 -0.44,0.96 -0.51,1.5h7.9c-0.07,-0.54 -0.24,-1.05 -0.51,-1.5H8.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S15.31,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ice_skating.xml b/compose/material/material/icons/generator/raw-icons/rounded/ice_skating.xml
deleted file mode 100644
index 2aa142d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ice_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.87,17c-0.47,0 -0.85,0.34 -0.98,0.8C20.54,19.07 19.38,20 18,20h-2v-2h1c1.1,0 2,-0.9 2,-2l0,-0.88c0,-2.1 -1.55,-3.53 -3.03,-3.88l-2.7,-0.67C12.4,10.35 11.7,9.76 11.32,9H8.5C8.22,9 8,8.78 8,8.5S8.22,8 8.5,8h2.52L11,7H8.5C8.22,7 8,6.78 8,6.5C8,6.22 8.22,6 8.5,6H11V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v11c0,1.1 0.9,2 2,2h1v2H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h15c2.33,0 4.29,-1.6 4.84,-3.75C23.01,17.62 22.52,17 21.87,17zM14,20H8v-2h6V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/icecream.xml b/compose/material/material/icons/generator/raw-icons/rounded/icecream.xml
deleted file mode 100644
index 252fb86..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/icecream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.38,6.24C17.79,3.24 15.14,1 12,1S6.21,3.24 5.62,6.24C4.08,6.81 3,8.29 3,10c0,2.21 1.79,4 4,4c0.12,0 0.23,-0.02 0.34,-0.02l3.83,7.31c0.38,0.72 1.41,0.71 1.78,-0.01l3.73,-7.31C16.79,13.98 16.89,14 17,14c2.21,0 4,-1.79 4,-4C21,8.29 19.92,6.81 18.38,6.24zM12.05,18.63l-2.73,-5.21C10.15,13.79 11.06,14 12,14c0.95,0 1.88,-0.21 2.72,-0.6L12.05,18.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/image.xml b/compose/material/material/icons/generator/raw-icons/rounded/image.xml
deleted file mode 100644
index 08f6184..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.9,13.98l2.1,2.53 3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8H6.02c-0.42,0 -0.65,-0.48 -0.39,-0.81L8.12,14c0.19,-0.26 0.57,-0.27 0.78,-0.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/image_aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/rounded/image_aspect_ratio.xml
deleted file mode 100644
index 2838118..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/image_aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h-2v2h2v-2zM16,14h-2v2h2v-2zM8,10L6,10v2h2v-2zM12,10h-2v2h2v-2zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/image_not_supported.xml b/compose/material/material/icons/generator/raw-icons/rounded/image_not_supported.xml
deleted file mode 100644
index a768210..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/image_not_supported.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19l-0.78,-0.78L18,18l-4.59,-4.59L3.59,3.59v0L2.81,2.81c-0.39,-0.39 -1.02,-0.39 -1.41,0C1,3.2 1,3.83 1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61c0.39,0.39 1.02,0.39 1.41,0C21.58,22.22 21.58,21.58 21.19,21.19zM6.02,18c-0.42,0 -0.65,-0.48 -0.39,-0.81l2.49,-3.2c0.2,-0.25 0.58,-0.26 0.78,-0.01l2.1,2.53L12.17,15l3,3H6.02zM21,18.17L5.83,3H19c1.1,0 2,0.9 2,2V18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/image_search.xml b/compose/material/material/icons/generator/raw-icons/rounded/image_search.xml
deleted file mode 100644
index d1b056e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/image_search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,15v4c0,0.55 -0.45,1 -1,1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 0.45,-1 1,-1h3.02c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM15.5,18L6.52,18c-0.42,0 -0.65,-0.48 -0.39,-0.81l1.74,-2.23c0.2,-0.25 0.58,-0.26 0.78,-0.01l1.56,1.88 2.35,-3.02c0.2,-0.26 0.6,-0.26 0.79,0.01l2.55,3.39c0.25,0.32 0.01,0.79 -0.4,0.79zM19.3,8.89c0.48,-0.77 0.75,-1.67 0.69,-2.66 -0.13,-2.15 -1.84,-3.97 -3.97,-4.2C13.3,1.73 11,3.84 11,6.5c0,2.49 2.01,4.5 4.49,4.5 0.88,0 1.7,-0.26 2.39,-0.7l2.41,2.41c0.39,0.39 1.03,0.39 1.42,0 0.39,-0.39 0.39,-1.03 0,-1.42l-2.41,-2.4zM15.5,9C14.12,9 13,7.88 13,6.5S14.12,4 15.5,4 18,5.12 18,6.5 16.88,9 15.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/imagesearch_roller.xml b/compose/material/material/icons/generator/raw-icons/rounded/imagesearch_roller.xml
deleted file mode 100644
index a3d9e36..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/imagesearch_roller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3v4c0,0.55 -0.45,1 -1,1H7C6.45,8 6,7.55 6,7V6H4v4h8c1.1,0 2,0.9 2,2v3h1c0.55,0 1,0.45 1,1v6c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.55 0.45,-1 1,-1h1v-3H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h2V3c0,-0.55 0.45,-1 1,-1h12C19.55,2 20,2.45 20,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/import_contacts.xml b/compose/material/material/icons/generator/raw-icons/rounded/import_contacts.xml
deleted file mode 100644
index 7db5731..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/import_contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,4.5c-1.95,0 -4.05,0.4 -5.5,1.5 -1.45,-1.1 -3.55,-1.5 -5.5,-1.5 -1.45,0 -2.99,0.22 -4.28,0.79C1.49,5.62 1,6.33 1,7.14v11.28c0,1.3 1.22,2.26 2.48,1.94 0.98,-0.25 2.02,-0.36 3.02,-0.36 1.56,0 3.22,0.26 4.56,0.92 0.6,0.3 1.28,0.3 1.87,0 1.34,-0.67 3,-0.92 4.56,-0.92 1,0 2.04,0.11 3.02,0.36 1.26,0.33 2.48,-0.63 2.48,-1.94V7.14c0,-0.81 -0.49,-1.52 -1.22,-1.85 -1.28,-0.57 -2.82,-0.79 -4.27,-0.79zM21,17.23c0,0.63 -0.58,1.09 -1.2,0.98 -0.75,-0.14 -1.53,-0.2 -2.3,-0.2 -1.7,0 -4.15,0.65 -5.5,1.5V8c1.35,-0.85 3.8,-1.5 5.5,-1.5 0.92,0 1.83,0.09 2.7,0.28 0.46,0.1 0.8,0.51 0.8,0.98v9.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/import_export.xml b/compose/material/material/icons/generator/raw-icons/rounded/import_export.xml
deleted file mode 100644
index d732ca2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/import_export.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.65,3.35L5.86,6.14c-0.32,0.31 -0.1,0.85 0.35,0.85H8V13c0,0.55 0.45,1 1,1s1,-0.45 1,-1V6.99h1.79c0.45,0 0.67,-0.54 0.35,-0.85L9.35,3.35c-0.19,-0.19 -0.51,-0.19 -0.7,0zM16,17.01V11c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6.01h-1.79c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.78c0.2,0.19 0.51,0.19 0.71,0l2.79,-2.78c0.32,-0.31 0.09,-0.85 -0.35,-0.85H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/important_devices.xml b/compose/material/material/icons/generator/raw-icons/rounded/important_devices.xml
deleted file mode 100644
index 2deefc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/important_devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11.01L18,11c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-9c0,-0.55 -0.45,-0.99 -1,-0.99zM23,20h-5v-7h5v7zM20,2L2,2C0.9,2 0,2.9 0,4v12c0,1.1 0.9,2 2,2h7v2L8,20c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-2h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,16c-0.55,0 -1,-0.45 -1,-1L2,5c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L22,4c0,-1.1 -0.9,-2 -2,-2zM11.97,9L11,6l-0.97,3L7,9l2.47,1.76 -0.94,2.91 2.47,-1.8 2.47,1.8 -0.94,-2.91L15,9h-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/inbox.xml b/compose/material/material/icons/generator/raw-icons/rounded/inbox.xml
deleted file mode 100644
index e69373b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,5v9h-3.56c-0.36,0 -0.68,0.19 -0.86,0.5C14.06,15.4 13.11,16 12,16s-2.06,-0.6 -2.58,-1.5C9.24,14.19 8.91,14 8.56,14H5V5H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/incomplete_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/incomplete_circle.xml
deleted file mode 100644
index e7e6e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/incomplete_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-2.76 1.12,-5.26 2.93,-7.07L12,12V2C17.52,2 22,6.48 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/indeterminate_check_box.xml b/compose/material/material/icons/generator/raw-icons/rounded/indeterminate_check_box.xml
deleted file mode 100644
index b9e01d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/indeterminate_check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM16,13L8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/info.xml b/compose/material/material/icons/generator/raw-icons/rounded/info.xml
deleted file mode 100644
index 0a8acfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/info.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,17c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1zM13,9h-2L11,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/input.xml b/compose/material/material/icons/generator/raw-icons/rounded/input.xml
deleted file mode 100644
index 0c31bd5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/input.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3.01L3,3.01c-1.1,0 -2,0.9 -2,2L1,8c0,0.55 0.45,1 1,1s1,-0.45 1,-1L3,5.99c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12.03c0,0.55 -0.45,1 -1,1L4,19.02c-0.55,0 -1,-0.45 -1,-1L3,16c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3.01c0,1.09 0.89,1.98 1.98,1.98L21,20.99c1.1,0 2,-0.9 2,-2L23,5.01c0,-1.1 -0.9,-2 -2,-2zM11.85,15.15l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.79c-0.31,-0.32 -0.85,-0.1 -0.85,0.35L11,11L2,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h9v1.79c0,0.45 0.54,0.67 0.85,0.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_chart.xml
deleted file mode 100644
index 6899ce1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM8,17c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5c0,0.55 -0.45,1 -1,1zM12,17c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v8c0,0.55 -0.45,1 -1,1zM16,17c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_chart_outlined.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_chart_outlined.xml
deleted file mode 100644
index dec9d84..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_chart_outlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5c0,0.55 -0.45,1 -1,1zM12,17c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v8c0,0.55 -0.45,1 -1,1zM16,17c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_comment.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_comment.xml
deleted file mode 100644
index c4c435b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4c0,-1.1 -0.9,-2 -2,-2zM17,14L7,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,11L7,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,8L7,8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_drive_file.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_drive_file.xml
deleted file mode 100644
index 096e3d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_drive_file.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83c-0.37,-0.38 -0.88,-0.59 -1.41,-0.59L6,2zM13,8L13,3.5L18.5,9L14,9c-0.55,0 -1,-0.45 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_emoticon.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_emoticon.xml
deleted file mode 100644
index af9fe28..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_emoticon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM16.75,14.75C15.8,16.39 14.03,17.5 12,17.5s-3.8,-1.11 -4.75,-2.75C7.06,14.42 7.31,14 7.69,14h8.62C16.7,14 16.94,14.42 16.75,14.75zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8S17,8.67 17,9.5S16.33,11 15.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_invitation.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_invitation.xml
deleted file mode 100644
index 9cece20..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_invitation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12h-3c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1zM16,2v1L8,3L8,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2h-1L18,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,8h14v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_link.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_link.xml
deleted file mode 100644
index bf64a9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.96,11.38C4.24,9.91 5.62,8.9 7.12,8.9h2.93c0.52,0 0.95,-0.43 0.95,-0.95S10.57,7 10.05,7L7.22,7c-2.61,0 -4.94,1.91 -5.19,4.51C1.74,14.49 4.08,17 7,17h3.05c0.52,0 0.95,-0.43 0.95,-0.95s-0.43,-0.95 -0.95,-0.95L7,15.1c-1.91,0 -3.42,-1.74 -3.04,-3.72zM9,13h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L9,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM16.78,7h-2.83c-0.52,0 -0.95,0.43 -0.95,0.95s0.43,0.95 0.95,0.95h2.93c1.5,0 2.88,1.01 3.16,2.48 0.38,1.98 -1.13,3.72 -3.04,3.72h-3.05c-0.52,0 -0.95,0.43 -0.95,0.95s0.43,0.95 0.95,0.95L17,17c2.92,0 5.26,-2.51 4.98,-5.49 -0.25,-2.6 -2.59,-4.51 -5.2,-4.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_page_break.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_page_break.xml
deleted file mode 100644
index f680ba8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_page_break.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2v-3H4L4,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2H6C4.9,2 4.01,2.89 4.01,3.99l0,7.01H20V8.83C20,8.3 19.79,7.79 19.41,7.41zM13,8V3.5L18.5,9H14C13.45,9 13,8.55 13,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14L15,14c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4C14.55,15 15,14.55 15,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14L17,14c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-4C17.45,13 17,13.45 17,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13H2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v0C7,13.45 6.55,13 6,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insert_photo.xml b/compose/material/material/icons/generator/raw-icons/rounded/insert_photo.xml
deleted file mode 100644
index 08f6184..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insert_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.9,13.98l2.1,2.53 3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8H6.02c-0.42,0 -0.65,-0.48 -0.39,-0.81L8.12,14c0.19,-0.26 0.57,-0.27 0.78,-0.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/insights.xml b/compose/material/material/icons/generator/raw-icons/rounded/insights.xml
deleted file mode 100644
index 8421a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/insights.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8c-1.45,0 -2.26,1.44 -1.93,2.51l-3.55,3.56c-0.3,-0.09 -0.74,-0.09 -1.04,0l-2.55,-2.55C12.27,10.45 11.46,9 10,9c-1.45,0 -2.27,1.44 -1.93,2.52l-4.56,4.55C2.44,15.74 1,16.55 1,18c0,1.1 0.9,2 2,2c1.45,0 2.26,-1.44 1.93,-2.51l4.55,-4.56c0.3,0.09 0.74,0.09 1.04,0l2.55,2.55C12.73,16.55 13.54,18 15,18c1.45,0 2.27,-1.44 1.93,-2.52l3.56,-3.55C21.56,12.26 23,11.45 23,10C23,8.9 22.1,8 21,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9l0.94,-2.07l2.06,-0.93l-2.06,-0.93l-0.94,-2.07l-0.92,2.07l-2.08,0.93l2.08,0.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,11l0.5,-2l2,-0.5l-2,-0.5l-0.5,-2l-0.5,2l-2,0.5l2,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/install_desktop.xml b/compose/material/material/icons/generator/raw-icons/rounded/install_desktop.xml
deleted file mode 100644
index ef2445d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/install_desktop.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17H4V5h8V3H4C2.9,3 2,3.9 2,5v12c0,1.1 0.89,2 2,2h4v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h4c1.1,0 2,-0.9 2,-2v-3h-2V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,13.29l3.59,-3.59c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L18,10.17V4c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v6.17l-1.89,-1.88c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l3.59,3.59C16.69,13.68 17.32,13.68 17.71,13.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/install_mobile.xml b/compose/material/material/icons/generator/raw-icons/rounded/install_mobile.xml
deleted file mode 100644
index ef0ae0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/install_mobile.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.71,13.29l3.59,-3.59c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L19,10.17V4c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v6.17l-1.89,-1.88c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l3.59,3.59C17.69,13.68 18.32,13.68 18.71,13.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h7V1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-5h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/integration_instructions.xml b/compose/material/material/icons/generator/raw-icons/rounded/integration_instructions.xml
deleted file mode 100644
index 8fe26a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/integration_instructions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C4.86,3 4.73,3.01 4.6,3.04C4.21,3.12 3.86,3.32 3.59,3.59c-0.18,0.18 -0.33,0.4 -0.43,0.64C3.06,4.46 3,4.72 3,5v14c0,0.27 0.06,0.54 0.16,0.78c0.1,0.24 0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55C4.73,20.99 4.86,21 5,21h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM10.3,14.88L10.3,14.88c-0.39,0.39 -1.03,0.39 -1.42,0l-2.17,-2.17c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.17,-2.17c0.39,-0.39 1.03,-0.39 1.42,0l0,0c0.39,0.39 0.39,1.02 0,1.41L8.83,12l1.46,1.46C10.68,13.85 10.69,14.49 10.3,14.88zM12,4.25c-0.41,0 -0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75s0.75,0.34 0.75,0.75S12.41,4.25 12,4.25zM13.7,14.88L13.7,14.88c-0.39,-0.39 -0.39,-1.02 0,-1.41L15.17,12l-1.47,-1.47c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.03,-0.39 1.42,0l2.17,2.17c0.39,0.39 0.39,1.02 0,1.41l-2.17,2.17C14.73,15.27 14.09,15.27 13.7,14.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/interests.xml b/compose/material/material/icons/generator/raw-icons/rounded/interests.xml
deleted file mode 100644
index 049dafc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/interests.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.02,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.23,13 7.02,13zM13,14v6c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1h-6C13.45,13 13,13.45 13,14zM6.13,3.57l-3.3,5.94C2.46,10.18 2.94,11 3.7,11h6.6c0.76,0 1.24,-0.82 0.87,-1.49l-3.3,-5.94C7.49,2.89 6.51,2.89 6.13,3.57zM19.25,2.5c-1.06,0 -1.81,0.56 -2.25,1.17c-0.44,-0.61 -1.19,-1.17 -2.25,-1.17C13.19,2.5 12,3.78 12,5.25c0,1.83 2.03,3.17 4.35,5.18c0.37,0.32 0.92,0.32 1.3,0C19.97,8.42 22,7.08 22,5.25C22,3.78 20.81,2.5 19.25,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/interpreter_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/interpreter_mode.xml
deleted file mode 100644
index 9149ddf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/interpreter_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5v-2.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5V15C22,15.83 21.33,16.5 20.5,16.5zM20.5,20c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.45 0,-1.04 0,-1.04c1.51,-0.22 2.71,-1.4 2.95,-2.89C24,15.27 23.76,15 23.46,15c-0.24,0 -0.45,0.17 -0.49,0.41c-0.2,1.18 -1.23,2.09 -2.47,2.09s-2.27,-0.9 -2.47,-2.09C17.99,15.17 17.78,15 17.54,15c-0.3,0 -0.54,0.27 -0.5,0.57c0.25,1.5 1.45,2.68 2.95,2.89c0,0 0,0.59 0,1.04C20,19.78 20.22,20 20.5,20zM9,12c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4c0.47,0 0.92,0.08 1.34,0.23C9.5,5.26 9,6.57 9,8c0,1.43 0.5,2.74 1.34,3.77C9.92,11.92 9.47,12 9,12zM7.11,13.13C5.79,14.05 5,15.57 5,17.22V20H1v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66C3.85,13.92 5.37,13.37 7.11,13.13zM11,8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S11,10.21 11,8zM18.32,20c-1.67,-0.81 -2.82,-2.52 -2.82,-4.5c0,-0.89 0.23,-1.73 0.64,-2.45C15.77,13.02 15.39,13 15,13c-2.53,0 -4.71,0.7 -6.39,1.56C7.61,15.07 7,16.1 7,17.22V20L18.32,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/inventory.xml b/compose/material/material/icons/generator/raw-icons/rounded/inventory.xml
deleted file mode 100644
index 19c8c7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/inventory.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v1c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2V5h2v5h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h6v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.75,12.25c-0.41,-0.41 -1.09,-0.41 -1.5,0L15.51,17l-2.26,-2.25c-0.41,-0.41 -1.08,-0.41 -1.5,0l0,0c-0.41,0.41 -0.41,1.09 0,1.5l3.05,3.04c0.39,0.39 1.02,0.39 1.41,0l5.53,-5.54C22.16,13.34 22.16,12.66 21.75,12.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/inventory_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/inventory_2.xml
deleted file mode 100644
index 1c8fd7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/inventory_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C3,2 2,2.9 2,4v3.01C2,7.73 2.43,8.35 3,8.7V20c0,1.1 1.1,2 2,2h14c0.9,0 2,-0.9 2,-2V8.7c0.57,-0.35 1,-0.97 1,-1.69V4C22,2.9 21,2 20,2zM14,14h-4c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C15,13.55 14.55,14 14,14zM20,7H4V4h16V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/invert_colors.xml b/compose/material/material/icons/generator/raw-icons/rounded/invert_colors.xml
deleted file mode 100644
index c78a7c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/invert_colors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.81L12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.56 0.62,-3.03 1.75,-4.14L12,4.81M6.35,7.56L6.35,7.56C4.9,8.99 4,10.96 4,13.13C4,17.48 7.58,21 12,21c4.42,0 8,-3.52 8,-7.87c0,-2.17 -0.9,-4.14 -2.35,-5.57l0,0L12.7,2.69c-0.39,-0.38 -1.01,-0.38 -1.4,0L6.35,7.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/invert_colors_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/invert_colors_off.xml
deleted file mode 100644
index d195471..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/invert_colors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l3.5,3.5c-1,1.31 -1.6,2.94 -1.6,4.7C4,17.48 7.58,21 12,21c1.75,0 3.36,-0.56 4.67,-1.5l2.4,2.4c0.39,0.39 1.02,0.39 1.41,0l0,0C20.88,21.51 20.88,20.88 20.49,20.49zM12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.19 0.36,-2.32 1.02,-3.28L12,14.83V19zM8.38,5.56l2.91,-2.87c0.39,-0.38 1.01,-0.38 1.4,0l4.95,4.87l0,0C19.1,8.99 20,10.96 20,13.13c0,1.18 -0.27,2.29 -0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ios_share.xml b/compose/material/material/icons/generator/raw-icons/rounded/ios_share.xml
deleted file mode 100644
index 84db810..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ios_share.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v11H6V10h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V10C20,8.9 19.1,8 18,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16L12,16c0.55,0 1,-0.45 1,-1V5h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0L8.85,4.15C8.54,4.46 8.76,5 9.21,5H11v10C11,15.55 11.45,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/iron.xml b/compose/material/material/icons/generator/raw-icons/rounded/iron.xml
deleted file mode 100644
index fb4066f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/iron.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.27,10c0.34,0 0.68,-0.16 0.84,-0.47C9.28,9.22 9.62,9 10,9h4c0.55,0 1,0.45 1,1v1H6c-2.21,0 -4,1.79 -4,4v2c0,0.55 0.45,1 1,1h13c0.55,0 1,-0.45 1,-1v-1c1.66,0 3,-1.34 3,-3V9c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-1.66,0 -3,1.34 -3,3v4c0,0.55 -0.45,1 -1,1v-4c0,-1.66 -1.34,-3 -3,-3h-4C8.87,7 7.89,7.62 7.37,8.55C7.01,9.2 7.53,10 8.27,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/iso.xml b/compose/material/material/icons/generator/raw-icons/rounded/iso.xml
deleted file mode 100644
index 7c48545..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/iso.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM6.25,7.5L7.5,7.5L7.5,6.25c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75L9,7.5h1.25c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75L9,9v1.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75L7.5,9L6.25,9c-0.41,0 -0.75,-0.34 -0.75,-0.75s0.34,-0.75 0.75,-0.75zM18,19L5,19L19,5v13c0,0.55 -0.45,1 -1,1zM17,16.25c0,-0.41 -0.34,-0.75 -0.75,-0.75h-3.5c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75h3.5c0.41,0 0.75,-0.34 0.75,-0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/javascript.xml b/compose/material/material/icons/generator/raw-icons/rounded/javascript.xml
deleted file mode 100644
index 74be9fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/javascript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.54,10.5c0.1,0.29 0.38,0.5 0.71,0.5c0.41,0 0.75,-0.34 0.75,-0.75V10c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2.5v1h-2.04v0c-0.1,-0.29 -0.38,-0.5 -0.71,-0.5C12.34,13 12,13.34 12,13.75V14c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1h-2.5v-1L15.54,10.5zM7.5,13.5H9V9.75C9,9.34 9.34,9 9.75,9c0.41,0 0.75,0.34 0.75,0.75v3.75c0,0.83 -0.67,1.5 -1.5,1.5H7.5C6.67,15 6,14.33 6,13.5v-0.25c0,-0.41 0.34,-0.75 0.75,-0.75c0.41,0 0.75,0.34 0.75,0.75V13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/join_full.xml b/compose/material/material/icons/generator/raw-icons/rounded/join_full.xml
deleted file mode 100644
index 6977c10..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/join_full.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.68,6.8c-0.39,-0.35 -0.98,-0.35 -1.37,0C9.35,8.56 9,10.84 9,12c0,1.15 0.35,3.44 2.32,5.2c0.39,0.35 0.98,0.35 1.37,0C14.65,15.44 15,13.16 15,12C15,10.85 14.65,8.56 12.68,6.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c2.8,2.34 3.03,5.53 3.03,6.5c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/join_inner.xml b/compose/material/material/icons/generator/raw-icons/rounded/join_inner.xml
deleted file mode 100644
index 78fdfc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/join_inner.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.68,6.8c-0.39,-0.35 -0.98,-0.35 -1.37,0C9.35,8.56 9,10.84 9,12c0,1.15 0.35,3.44 2.32,5.2c0.39,0.35 0.98,0.35 1.37,0C14.65,15.44 15,13.16 15,12C15,10.85 14.65,8.56 12.68,6.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.04,16.87C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C9.92,17.99 9.43,17.43 9.04,16.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/join_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/join_left.xml
deleted file mode 100644
index 1b8bf07..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/join_left.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.68,6.8c-0.39,-0.35 -0.98,-0.35 -1.37,0C9.35,8.56 9,10.84 9,12c0,1.15 0.35,3.44 2.32,5.2c0.39,0.35 0.98,0.35 1.37,0C14.65,15.44 15,13.16 15,12C15,10.85 14.65,8.56 12.68,6.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/join_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/join_right.xml
deleted file mode 100644
index 40c19ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/join_right.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.32,17.2c0.39,0.35 0.98,0.35 1.37,0C14.65,15.44 15,13.16 15,12c0,-1.15 -0.35,-3.44 -2.32,-5.2c-0.39,-0.35 -0.98,-0.35 -1.37,0C9.35,8.56 9,10.84 9,12C9,13.15 9.35,15.44 11.32,17.2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7s-3.14,-7 -7,-7c-0.9,0 -1.75,0.19 -2.53,0.5C16.27,7.84 16.5,11.03 16.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19c0.9,0 1.75,-0.19 2.53,-0.5c-0.61,-0.51 -1.1,-1.07 -1.49,-1.63C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7S4.14,19 8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/kayaking.xml b/compose/material/material/icons/generator/raw-icons/rounded/kayaking.xml
deleted file mode 100644
index fc4ed6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/kayaking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22c0,-0.55 0.45,-1 1,-1h0c0.87,0 1.73,-0.24 2.53,-0.7c0.29,-0.16 0.65,-0.17 0.94,0c1.59,0.9 3.48,0.9 5.06,0c0.29,-0.16 0.65,-0.16 0.94,0c1.59,0.9 3.48,0.9 5.06,0c0.29,-0.16 0.65,-0.16 0.94,0C19.27,20.76 20.13,21 21,21h0c0.55,0 1,0.45 1,1s-0.45,1 -1,1h0c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.92,1.02 -4.18,1 -6.09,-0.05c-1.79,0.87 -3.92,0.98 -5.58,-0.14C5.3,22.69 4.15,23 3,23h0C2.45,23 2,22.55 2,22zM12,5.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,5.5 12,5.5zM21.47,18.45c-0.42,0.14 -0.9,0.28 -1.41,0.42c-0.53,-0.15 -1.03,-0.43 -1.45,-0.77c-0.35,-0.29 -0.87,-0.29 -1.23,0C16.72,18.63 15.9,19 15,19s-1.72,-0.37 -2.39,-0.91c-0.35,-0.28 -0.87,-0.28 -1.22,0C10.72,18.63 9.9,19 9,19s-1.72,-0.37 -2.39,-0.91c-0.35,-0.29 -0.87,-0.28 -1.23,0c-0.43,0.35 -0.92,0.62 -1.45,0.77c-0.51,-0.14 -0.98,-0.28 -1.4,-0.42c-0.92,-0.3 -0.92,-1.6 0,-1.9c1.21,-0.39 2.79,-0.82 4.6,-1.13l1.35,-4.17c0.31,-0.95 1.32,-1.47 2.27,-1.16c0.09,0.03 0.19,0.07 0.27,0.11l0,0l2.47,1.3l2.84,-1.5l1.65,-3.71l-0.36,-0.93c-0.1,-0.25 -0.09,-0.52 0.02,-0.76l0.74,-1.68c0.22,-0.51 0.82,-0.73 1.32,-0.51l1.37,0.61c0.5,0.23 0.73,0.82 0.5,1.32l-0.75,1.68c-0.11,0.24 -0.31,0.43 -0.56,0.53L19.36,6.9l-3.72,8.34c2.33,0.3 4.35,0.84 5.82,1.31C22.39,16.85 22.4,18.15 21.47,18.45zM15.02,12.96l-0.59,0.31c-0.58,0.31 -1.28,0.31 -1.86,0l-0.81,-0.43l-0.71,2.17C11.36,15.01 11.68,15 12,15c0.71,0 1.4,0.03 2.07,0.08L15.02,12.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/kebab_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/kebab_dining.xml
deleted file mode 100644
index 4e0c4c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/kebab_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.75,13v1H8.5c1.38,0 2.5,1.12 2.5,2.5c0,1.38 -1.12,2.5 -2.5,2.5H7.75v3.25C7.75,22.66 7.41,23 7,23s-0.75,-0.34 -0.75,-0.75V19H5.5C4.12,19 3,17.88 3,16.5C3,15.12 4.12,14 5.5,14h0.75v-1H4c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h2.25V7H5.5C4.12,7 3,5.88 3,4.5C3,3.12 4.12,2 5.5,2h0.75V1.75C6.25,1.34 6.59,1 7,1s0.75,0.34 0.75,0.75V2H8.5C9.88,2 11,3.12 11,4.5C11,5.88 9.88,7 8.5,7H7.75v1H10c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1H7.75zM17.75,13v1h0.75c1.38,0 2.5,1.12 2.5,2.5c0,1.38 -1.12,2.5 -2.5,2.5h-0.75v3.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V19H15.5c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5h0.75v-1H14c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h2.25V7H15.5C14.12,7 13,5.88 13,4.5C13,3.12 14.12,2 15.5,2h0.75V1.75C16.25,1.34 16.59,1 17,1s0.75,0.34 0.75,0.75V2h0.75C19.88,2 21,3.12 21,4.5C21,5.88 19.88,7 18.5,7h-0.75v1H20c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1H17.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/key.xml b/compose/material/material/icons/generator/raw-icons/rounded/key.xml
deleted file mode 100644
index 4ef050e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.59,10h-7.94C11.7,7.31 8.89,5.5 5.77,6.12c-2.29,0.46 -4.15,2.3 -4.63,4.58C0.32,14.58 3.26,18 7,18c2.61,0 4.83,-1.67 5.65,-4H13l1.29,1.29c0.39,0.39 1.02,0.39 1.41,0L17,14l1.29,1.29c0.39,0.39 1.03,0.39 1.42,0l2.59,-2.61c0.39,-0.39 0.39,-1.03 -0.01,-1.42l-0.99,-0.97C21.1,10.1 20.85,10 20.59,10zM7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.65 1.35,-3 3,-3s3,1.35 3,3C10,13.65 8.65,15 7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/key_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/key_off.xml
deleted file mode 100644
index 302e105..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.83,10l4.09,4.09L17,14l1.29,1.29c0.39,0.39 1.03,0.39 1.42,0l2.59,-2.61c0.39,-0.39 0.39,-1.03 -0.01,-1.42l-0.99,-0.97C21.1,10.1 20.85,10 20.59,10H12.83zM19.07,21.9c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l1.88,1.88C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.21,0 4.15,-1.2 5.18,-2.99L19.07,21.9zM9.91,12.74C9.58,14.03 8.4,15 7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.4 0.97,-2.58 2.26,-2.91L9.91,12.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard.xml
deleted file mode 100644
index 6fd0f6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5L4,5c-1.1,0 -1.99,0.9 -1.99,2L2,17c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM11,8h2v2h-2L11,8zM11,11h2v2h-2v-2zM8,8h2v2L8,10L8,8zM8,11h2v2L8,13v-2zM7,13L5,13v-2h2v2zM7,10L5,10L5,8h2v2zM15,17L9,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM16,13h-2v-2h2v2zM16,10h-2L14,8h2v2zM19,13h-2v-2h2v2zM19,10h-2L17,8h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_alt.xml
deleted file mode 100644
index 18f7a91..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4H3C1.9,4 1,4.9 1,6v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4zM7,12v2H5v-2H7zM5,10V8h2v2H5zM11,12v2H9v-2H11zM9,10V8h2v2H9zM16,16.5L16,16.5c0,0.28 -0.22,0.5 -0.5,0.5h-7C8.22,17 8,16.78 8,16.5l0,0C8,16.22 8.22,16 8.5,16h7C15.78,16 16,16.22 16,16.5zM15,12v2h-2v-2H15zM13,10V8h2v2H13zM17,14v-2h2v2H17zM19,10h-2V8h2V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_down.xml
deleted file mode 100644
index 3abc794..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.12,9.29L12,13.17l3.88,-3.88c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-4.59,4.59c-0.39,0.39 -1.02,0.39 -1.41,0L6.7,10.7c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.38 1.03,-0.39 1.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_left.xml
deleted file mode 100644
index aa83a1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.71,15.88L10.83,12l3.88,-3.88c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0L8.71,11.3c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0 0.38,-0.39 0.39,-1.03 0,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_right.xml
deleted file mode 100644
index a247679..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.29,15.88L13.17,12 9.29,8.12c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0l4.59,4.59c0.39,0.39 0.39,1.02 0,1.41L10.7,17.3c-0.39,0.39 -1.02,0.39 -1.41,0 -0.38,-0.39 -0.39,-1.03 0,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_up.xml
deleted file mode 100644
index c278cf1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_arrow_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.12,14.71L12,10.83l3.88,3.88c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L12.7,8.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L6.7,13.3c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.38 1.03,0.39 1.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_backspace.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_backspace.xml
deleted file mode 100644
index d28628c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11H6.83l2.88,-2.88c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0L3.71,11.3c-0.39,0.39 -0.39,1.02 0,1.41L8.3,17.3c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L6.83,13H20c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_capslock.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_capslock.xml
deleted file mode 100644
index 5ccc102..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_capslock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.41l3.89,3.89c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L12.71,6.3c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.6,4.59c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,8.41zM7,18h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_command_key.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_command_key.xml
deleted file mode 100644
index ace30b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_command_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,3C15.57,3 14,4.57 14,6.5V8h-4V6.5C10,4.57 8.43,3 6.5,3S3,4.57 3,6.5S4.57,10 6.5,10H8v4H6.5C4.57,14 3,15.57 3,17.5S4.57,21 6.5,21s3.5,-1.57 3.5,-3.5V16h4v1.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S19.43,14 17.5,14H16v-4h1.5c1.93,0 3.5,-1.57 3.5,-3.5S19.43,3 17.5,3L17.5,3zM16,8V6.5C16,5.67 16.67,5 17.5,5S19,5.67 19,6.5S18.33,8 17.5,8H16L16,8zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5V8H6.5L6.5,8zM10,14v-4h4v4H10L10,14zM17.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5V16h1.5c0.83,0 1.5,0.67 1.5,1.5S18.33,19 17.5,19L17.5,19zM6.5,19C5.67,19 5,18.33 5,17.5S5.67,16 6.5,16H8v1.5C8,18.33 7.33,19 6.5,19L6.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_control_key.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_control_key.xml
deleted file mode 100644
index 58b8d32..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_control_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.71,12.71L5.71,12.71c0.39,0.39 1.02,0.39 1.41,0L12,7.83l4.88,4.88c0.39,0.39 1.02,0.39 1.41,0v0c0.39,-0.39 0.39,-1.02 0,-1.41l-5.59,-5.59c-0.39,-0.39 -1.02,-0.39 -1.41,0l-5.59,5.59C5.32,11.68 5.32,12.32 5.71,12.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_down.xml
deleted file mode 100644
index 1e01385..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_down.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,5.71L17.29,5.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,9.58L8.11,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59C17.68,6.73 17.68,6.1 17.29,5.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,12.3L17.29,12.3c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,16.17l-3.88,-3.88c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59C17.68,13.32 17.68,12.69 17.29,12.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_left.xml
deleted file mode 100644
index 22fb366..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_left.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.29,17.29L18.29,17.29c0.39,-0.39 0.39,-1.02 0,-1.41L14.42,12l3.88,-3.88c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.59,4.59c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59C17.27,17.68 17.9,17.68 18.29,17.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.7,17.29L11.7,17.29c0.39,-0.39 0.39,-1.02 0,-1.41L7.83,12l3.88,-3.88c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.59,4.59c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59C10.68,17.68 11.31,17.68 11.7,17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_right.xml
deleted file mode 100644
index 940dc66..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_right.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.7,6.71L5.7,6.71c-0.39,0.39 -0.39,1.02 0,1.41L9.58,12L5.7,15.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41L7.12,6.71C6.73,6.32 6.09,6.32 5.7,6.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.29,6.71L12.29,6.71c-0.39,0.39 -0.39,1.02 0,1.41L16.17,12l-3.88,3.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41l-4.59,-4.59C13.32,6.32 12.68,6.32 12.29,6.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_up.xml
deleted file mode 100644
index 094c5d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_double_arrow_up.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.7,18.29L6.7,18.29c0.39,0.39 1.02,0.39 1.41,0L12,14.42l3.88,3.88c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-4.59,-4.59c-0.39,-0.39 -1.02,-0.39 -1.41,0L6.7,16.88C6.31,17.27 6.31,17.9 6.7,18.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.7,11.7L6.7,11.7c0.39,0.39 1.02,0.39 1.41,0L12,7.83l3.88,3.88c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-4.59,-4.59c-0.39,-0.39 -1.02,-0.39 -1.41,0L6.7,10.29C6.31,10.68 6.31,11.31 6.7,11.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_hide.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_hide.xml
deleted file mode 100644
index a2cdda2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_hide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3c-1.1,0 -1.99,0.9 -1.99,2L2,15c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM11,6h2v2h-2L11,6zM11,9h2v2h-2L11,9zM8,6h2v2L8,8L8,6zM8,9h2v2L8,11L8,9zM7,11L5,11L5,9h2v2zM7,8L5,8L5,6h2v2zM15,15L9,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM16,11h-2L14,9h2v2zM16,8h-2L14,6h2v2zM19,11h-2L17,9h2v2zM19,8h-2L17,6h2v2zM12.35,22.65l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.35,-0.85L9.21,19.01c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.19,0.19 0.51,0.19 0.7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_option_key.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_option_key.xml
deleted file mode 100644
index 93c2a0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_option_key.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6L15,6c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-4C15.45,5 15,5.45 15,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.58,6C9.22,5.38 8.56,5 7.85,5H4C3.45,5 3,5.45 3,6v0c0,0.55 0.45,1 1,1h3.85l6.35,11c0.36,0.62 1.02,1 1.73,1H20c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-4.07L9.58,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_return.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_return.xml
deleted file mode 100644
index 90bb7e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8v3H5.83l2.88,-2.88c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0L2.71,11.3c-0.39,0.39 -0.39,1.02 0,1.41L7.3,17.3c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.83,13H20c0.55,0 1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_tab.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_tab.xml
deleted file mode 100644
index 1e16ebe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_tab.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.29,8.12L15.17,11H2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h13.17l-2.88,2.88c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41L13.7,6.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.38,0.39 -0.39,1.03 0,1.42zM20,7v10c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_voice.xml b/compose/material/material/icons/generator/raw-icons/rounded/keyboard_voice.xml
deleted file mode 100644
index 0e40077..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/keyboard_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c1.66,0 2.99,-1.34 2.99,-3L15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6v6c0,1.66 1.34,3 3,3zM18.08,12c-0.42,0 -0.77,0.3 -0.83,0.71 -0.37,2.61 -2.72,4.39 -5.25,4.39s-4.88,-1.77 -5.25,-4.39c-0.06,-0.41 -0.42,-0.71 -0.83,-0.71 -0.52,0 -0.92,0.46 -0.85,0.97 0.46,2.97 2.96,5.3 5.93,5.75L11,21c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2.28c2.96,-0.43 5.47,-2.78 5.93,-5.75 0.07,-0.51 -0.33,-0.97 -0.85,-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/king_bed.xml b/compose/material/material/icons/generator/raw-icons/rounded/king_bed.xml
deleted file mode 100644
index 4241434..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/king_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V7c0,-1.1 -0.9,-2 -2,-2H6C4.9,5 4,5.9 4,7v3c-1.1,0 -2,0.9 -2,2v5h1.33l0.51,1.53C3.94,18.81 4.2,19 4.5,19h0c0.3,0 0.56,-0.19 0.66,-0.47L5.67,17h12.67l0.51,1.53C18.94,18.81 19.2,19 19.5,19l0,0c0.3,0 0.56,-0.19 0.66,-0.47L20.67,17H22v-5C22,10.9 21.1,10 20,10zM11,10H6V8c0,-0.55 0.45,-1 1,-1h4V10zM18,10h-5V7h4c0.55,0 1,0.45 1,1V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/kitchen.xml b/compose/material/material/icons/generator/raw-icons/rounded/kitchen.xml
deleted file mode 100644
index e903c21..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/kitchen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2.01L6,2c-1.1,0 -2,0.89 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.11 -0.9,-1.99 -2,-1.99zM17,20L7,20c-0.55,0 -1,-0.45 -1,-1v-7.02c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1L18,19c0,0.55 -0.45,1 -1,1zM17,9L7,9c-0.55,0 -1,-0.45 -1,-1L6,5c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1zM9,5c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L8,6c0,-0.55 0.45,-1 1,-1zM9,12c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/kitesurfing.xml b/compose/material/material/icons/generator/raw-icons/rounded/kitesurfing.xml
deleted file mode 100644
index 415a8d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/kitesurfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S6,4.1 6,3zM16.03,3.97c0.29,0.29 0.77,0.29 1.06,0L20.06,1h-2.12l-1.91,1.91C15.74,3.2 15.74,3.68 16.03,3.97zM19.15,12c-1.29,0 -3.11,0.53 -5.06,1.38L13,12.16c-0.38,-0.42 -0.92,-0.66 -1.49,-0.66H9.6l0,-3.5H11c1.52,0 2.94,-0.49 4.09,-1.32c0.49,-0.35 0.52,-1.07 0.09,-1.5c-0.35,-0.35 -0.9,-0.38 -1.3,-0.09C13.06,5.66 12.07,6 11,6H8C6.9,6 6,6.9 6,8v4.04c0,0.64 0.15,1.27 0.45,1.83L8,16.84c-0.53,0.38 -1.03,0.78 -1.49,1.17C7.19,18.59 8.06,19 9,19c1.2,0 2.27,-0.66 3,-1.5c0.73,0.84 1.8,1.5 3,1.5c0.33,0 0.65,-0.05 0.96,-0.14C18.81,16.9 21,14.72 21,13.28C21,12.25 19.99,12 19.15,12zM9.83,15.61L9,13.6l2.5,-0.1l0.7,0.77C11.64,14.55 10.42,15.23 9.83,15.61zM22,22c0,-0.55 -0.45,-1 -1,-1h0c-0.87,0 -1.73,-0.24 -2.53,-0.7c-0.29,-0.16 -0.65,-0.17 -0.94,0c-1.59,0.9 -3.47,0.9 -5.06,0c-0.29,-0.16 -0.65,-0.16 -0.94,0c-1.59,0.9 -3.47,0.9 -5.06,0c-0.29,-0.16 -0.65,-0.16 -0.94,0C4.73,20.76 3.87,21 3,21h0c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h0c1.15,0 2.3,-0.31 3.33,-0.94c1.66,1.11 3.78,1.01 5.58,0.14c1.91,1.05 4.17,1.07 6.09,0.05h0c0.95,0.5 1.97,0.75 3,0.75h0C21.55,23 22,22.55 22,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/label.xml b/compose/material/material/icons/generator/raw-icons/rounded/label.xml
deleted file mode 100644
index 55a2d01..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/label.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,5.84C17.27,5.33 16.67,5 16,5L5,5.01C3.9,5.01 3,5.9 3,7v10c0,1.1 0.9,1.99 2,1.99L16,19c0.67,0 1.27,-0.33 1.63,-0.84l3.96,-5.58c0.25,-0.35 0.25,-0.81 0,-1.16l-3.96,-5.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/label_important.xml b/compose/material/material/icons/generator/raw-icons/rounded/label_important.xml
deleted file mode 100644
index 1e8bd507..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/label_important.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.94,18.99H15c0.65,0 1.26,-0.31 1.63,-0.84l3.95,-5.57c0.25,-0.35 0.25,-0.81 0,-1.16l-3.96,-5.58C16.26,5.31 15.65,5 15,5H5.94c-0.81,0 -1.28,0.93 -0.81,1.59L9,12l-3.87,5.41c-0.47,0.66 0,1.58 0.81,1.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/label_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/label_off.xml
deleted file mode 100644
index 7d7da48..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/label_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.59,12.58c0.25,-0.35 0.25,-0.81 0,-1.16l-3.96,-5.58C17.27,5.33 16.67,5 16,5H8.66l10.7,10.73 2.23,-3.15zM2.72,4.72l0.87,0.87C3.23,5.95 3,6.45 3,7v10c0,1.1 0.9,2 2,2h12l1.29,1.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.14,3.31c-0.38,-0.38 -1.01,-0.39 -1.4,-0.01 -0.41,0.38 -0.41,1.03 -0.02,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lan.xml b/compose/material/material/icons/generator/raw-icons/rounded/lan.xml
deleted file mode 100644
index adfb3f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,22h4c1.1,0 2,-0.9 2,-2v-3c0,-1.1 -0.9,-2 -2,-2h-1v-2c0,-1.1 -0.9,-2 -2,-2h-3V9h1c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2h-4C8.9,2 8,2.9 8,4v3c0,1.1 0.9,2 2,2h1v2H8c-1.1,0 -2,0.9 -2,2v2H5c-1.1,0 -2,0.9 -2,2v3c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-3c0,-1.1 -0.9,-2 -2,-2H8v-2h8v2h-1c-1.1,0 -2,0.9 -2,2v3C13,21.1 13.9,22 15,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/landscape.xml b/compose/material/material/icons/generator/raw-icons/rounded/landscape.xml
deleted file mode 100644
index 515fe49..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,7.07L10.25,11l2.25,3c0.33,0.44 0.24,1.07 -0.2,1.4 -0.44,0.33 -1.07,0.25 -1.4,-0.2 -1.05,-1.4 -2.31,-3.07 -3.1,-4.14 -0.4,-0.53 -1.2,-0.53 -1.6,0l-4,5.33c-0.49,0.67 -0.02,1.61 0.8,1.61h18c0.82,0 1.29,-0.94 0.8,-1.6l-7,-9.33c-0.4,-0.54 -1.2,-0.54 -1.6,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/landslide.xml b/compose/material/material/icons/generator/raw-icons/rounded/landslide.xml
deleted file mode 100644
index 872c377..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/landslide.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.47,13.79l-2.58,-1.03l-6.89,2.29l-4,-1.54l0,2.1l4,1.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.57,11.42L8.6,8.8C8.22,8.3 7.63,8 7,8H4c-1.1,0 -2,0.9 -2,2v1.61l4,1.33L10.57,11.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19.05l-4,-1.33V20c0,1.1 0.9,2 2,2h14c1.65,0 2.59,-1.88 1.6,-3.2l-2.57,-3.42L6,19.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4.65V2.64c0,-0.95 -0.67,-1.77 -1.61,-1.96l-2.58,-0.52c-0.52,-0.1 -1.06,0 -1.5,0.3L9.89,1.41C9.33,1.78 9,2.4 9,3.07v1.86C9,5.6 9.33,6.22 9.89,6.59l1.23,0.82c0.55,0.37 1.24,0.44 1.85,0.19l2.77,-1.11C16.5,6.2 17,5.46 17,4.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,7.6l-1,0.8C16.28,8.78 16,9.35 16,9.96v1.08c0,0.61 0.28,1.18 0.75,1.56l0.8,0.64c0.58,0.47 1.38,0.57 2.06,0.27l2.2,-0.98C22.53,12.21 23,11.49 23,10.7V9.6c0,-0.94 -0.65,-1.75 -1.57,-1.95l-2,-0.44C18.84,7.08 18.22,7.22 17.75,7.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/language.xml b/compose/material/material/icons/generator/raw-icons/rounded/language.xml
deleted file mode 100644
index e745325..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM18.92,8h-2.95c-0.32,-1.25 -0.78,-2.45 -1.38,-3.56 1.84,0.63 3.37,1.91 4.33,3.56zM12,4.04c0.83,1.2 1.48,2.53 1.91,3.96h-3.82c0.43,-1.43 1.08,-2.76 1.91,-3.96zM4.26,14C4.1,13.36 4,12.69 4,12s0.1,-1.36 0.26,-2h3.38c-0.08,0.66 -0.14,1.32 -0.14,2s0.06,1.34 0.14,2L4.26,14zM5.08,16h2.95c0.32,1.25 0.78,2.45 1.38,3.56 -1.84,-0.63 -3.37,-1.9 -4.33,-3.56zM8.03,8L5.08,8c0.96,-1.66 2.49,-2.93 4.33,-3.56C8.81,5.55 8.35,6.75 8.03,8zM12,19.96c-0.83,-1.2 -1.48,-2.53 -1.91,-3.96h3.82c-0.43,1.43 -1.08,2.76 -1.91,3.96zM14.34,14L9.66,14c-0.09,-0.66 -0.16,-1.32 -0.16,-2s0.07,-1.35 0.16,-2h4.68c0.09,0.65 0.16,1.32 0.16,2s-0.07,1.34 -0.16,2zM14.59,19.56c0.6,-1.11 1.06,-2.31 1.38,-3.56h2.95c-0.96,1.65 -2.49,2.93 -4.33,3.56zM16.36,14c0.08,-0.66 0.14,-1.32 0.14,-2s-0.06,-1.34 -0.14,-2h3.38c0.16,0.64 0.26,1.31 0.26,2s-0.1,1.36 -0.26,2h-3.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/laptop.xml b/compose/material/material/icons/generator/raw-icons/rounded/laptop.xml
deleted file mode 100644
index ad671d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/laptop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2H1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h22c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3zM5,6h14c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/laptop_chromebook.xml b/compose/material/material/icons/generator/raw-icons/rounded/laptop_chromebook.xml
deleted file mode 100644
index d58be02..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/laptop_chromebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18h-1L22,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v13L1,18c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h22c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM13.5,18h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5zM20,15L4,15L4,6c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/laptop_mac.xml b/compose/material/material/icons/generator/raw-icons/rounded/laptop_mac.xml
deleted file mode 100644
index af833ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/laptop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2L0,18c0,1.1 0.9,2 2,2h20c1.1,0 2,-0.9 2,-2h-4zM5,5h14c0.55,0 1,0.45 1,1v9c0,0.55 -0.45,1 -1,1L5,16c-0.55,0 -1,-0.45 -1,-1L4,6c0,-0.55 0.45,-1 1,-1zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/laptop_windows.xml b/compose/material/material/icons/generator/raw-icons/rounded/laptop_windows.xml
deleted file mode 100644
index 7d4e422..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/laptop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18v-1c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2v1H1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h22c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3zM5,5h14c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/last_page.xml b/compose/material/material/icons/generator/raw-icons/rounded/last_page.xml
deleted file mode 100644
index ec40c0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/last_page.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.29,8.11L10.18,12l-3.89,3.89c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41L7.7,6.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.38,0.39 -0.38,1.03 0,1.41zM17,6c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/launch.xml b/compose/material/material/icons/generator/raw-icons/rounded/launch.xml
deleted file mode 100644
index 177eeadd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/launch.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,19H6c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v5c0,0.55 -0.45,1 -1,1zM14,4c0,0.55 0.45,1 1,1h2.59l-9.13,9.13c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L19,6.41V9c0,0.55 0.45,1 1,1s1,-0.45 1,-1V3h-6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/layers.xml b/compose/material/material/icons/generator/raw-icons/rounded/layers.xml
deleted file mode 100644
index 14d93a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/layers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.6,18.06c-0.36,0.28 -0.87,0.28 -1.23,0l-6.15,-4.78c-0.36,-0.28 -0.86,-0.28 -1.22,0 -0.51,0.4 -0.51,1.17 0,1.57l6.76,5.26c0.72,0.56 1.73,0.56 2.46,0l6.76,-5.26c0.51,-0.4 0.51,-1.17 0,-1.57l-0.01,-0.01c-0.36,-0.28 -0.86,-0.28 -1.22,0l-6.15,4.79zM13.23,15.04l6.76,-5.26c0.51,-0.4 0.51,-1.18 0,-1.58l-6.76,-5.26c-0.72,-0.56 -1.73,-0.56 -2.46,0L4.01,8.21c-0.51,0.4 -0.51,1.18 0,1.58l6.76,5.26c0.72,0.56 1.74,0.56 2.46,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/layers_clear.xml b/compose/material/material/icons/generator/raw-icons/rounded/layers_clear.xml
deleted file mode 100644
index e3bd31c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/layers_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.99,9.79c0.51,-0.4 0.51,-1.18 0,-1.58l-6.76,-5.26c-0.72,-0.56 -1.73,-0.56 -2.46,0L9.41,4.02l7.88,7.88 2.7,-2.11zM19.99,13.28l-0.01,-0.01c-0.36,-0.28 -0.86,-0.28 -1.22,0l-0.05,0.04 1.4,1.4c0.37,-0.41 0.34,-1.07 -0.12,-1.43zM21.44,18.88L4.12,1.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l3.52,3.52 -2.22,1.72c-0.51,0.4 -0.51,1.18 0,1.58l6.76,5.26c0.72,0.56 1.73,0.56 2.46,0l0.87,-0.68 1.42,1.42 -2.92,2.27c-0.36,0.28 -0.87,0.28 -1.23,0l-6.15,-4.78c-0.36,-0.28 -0.86,-0.28 -1.22,0 -0.51,0.4 -0.51,1.17 0,1.57l6.76,5.26c0.72,0.56 1.73,0.56 2.46,0l3.72,-2.89 3.07,3.07c0.39,0.39 1.02,0.39 1.41,0 0.41,-0.39 0.41,-1.02 0.02,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/leaderboard.xml b/compose/material/material/icons/generator/raw-icons/rounded/leaderboard.xml
deleted file mode 100644
index 5211210..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/leaderboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,21H3c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3.5c0.55,0 1,0.45 1,1v10C7.5,20.55 7.05,21 6.5,21zM13.75,3h-3.5c-0.55,0 -1,0.45 -1,1v16c0,0.55 0.45,1 1,1h3.5c0.55,0 1,-0.45 1,-1V4C14.75,3.45 14.3,3 13.75,3zM21,11h-3.5c-0.55,0 -1,0.45 -1,1v8c0,0.55 0.45,1 1,1H21c0.55,0 1,-0.45 1,-1v-8C22,11.45 21.55,11 21,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/leak_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/leak_add.xml
deleted file mode 100644
index 03f420d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/leak_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.05,21c0.5,0 0.94,-0.37 0.99,-0.87 0.41,-4.27 3.81,-7.67 8.08,-8.08 0.5,-0.05 0.88,-0.48 0.88,-0.99 0,-0.59 -0.51,-1.06 -1.1,-1 -5.19,0.52 -9.32,4.65 -9.84,9.83 -0.06,0.59 0.4,1.11 0.99,1.11zM18,21h3v-3c-1.66,0 -3,1.34 -3,3zM15.09,21c0.49,0 0.9,-0.36 0.98,-0.85 0.36,-2.08 2,-3.72 4.08,-4.08 0.49,-0.08 0.85,-0.49 0.85,-0.98 0,-0.61 -0.54,-1.09 -1.14,-1 -2.96,0.48 -5.29,2.81 -5.77,5.77 -0.1,0.6 0.39,1.14 1,1.14zM12.97,3.02c-0.5,0 -0.94,0.37 -0.99,0.87 -0.41,4.27 -3.81,7.67 -8.08,8.08 -0.5,0.05 -0.88,0.48 -0.88,0.99 0,0.59 0.51,1.06 1.1,1 5.19,-0.52 9.32,-4.65 9.84,-9.83 0.07,-0.58 -0.39,-1.11 -0.99,-1.11zM6.03,3.02h-3v3c1.66,0 3,-1.34 3,-3zM8.94,3.02c-0.49,0 -0.9,0.36 -0.98,0.85 -0.36,2.08 -2,3.72 -4.08,4.08 -0.49,0.09 -0.85,0.49 -0.85,0.99 0,0.61 0.54,1.09 1.14,1 2.96,-0.48 5.29,-2.81 5.77,-5.77 0.09,-0.61 -0.4,-1.15 -1,-1.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/leak_remove.xml b/compose/material/material/icons/generator/raw-icons/rounded/leak_remove.xml
deleted file mode 100644
index 6915ae9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/leak_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.12,12.04c0.5,-0.05 0.88,-0.48 0.88,-0.99 0,-0.59 -0.51,-1.06 -1.1,-1 -1.5,0.15 -2.9,0.61 -4.16,1.3l1.48,1.48c0.9,-0.41 1.87,-0.69 2.9,-0.79zM21,15.09c0,-0.61 -0.54,-1.09 -1.14,-1 -0.38,0.06 -0.75,0.16 -1.11,0.28l1.62,1.62c0.37,-0.15 0.63,-0.49 0.63,-0.9zM13.97,4.14c0.06,-0.59 -0.4,-1.11 -1,-1.11 -0.5,0 -0.94,0.37 -0.99,0.87 -0.1,1.03 -0.38,2.01 -0.79,2.91l1.48,1.48c0.69,-1.26 1.15,-2.66 1.3,-4.15zM9.93,4.16c0.1,-0.6 -0.39,-1.14 -1,-1.14 -0.41,0 -0.75,0.26 -0.9,0.62l1.62,1.62c0.13,-0.35 0.22,-0.72 0.28,-1.1zM20.44,18.88L5.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l2.15,2.15c-0.59,0.41 -1.26,0.7 -1.99,0.82 -0.48,0.1 -0.84,0.5 -0.84,1 0,0.61 0.54,1.09 1.14,1 1.17,-0.19 2.23,-0.68 3.13,-1.37L8.73,10c-1.34,1.1 -3,1.82 -4.81,1.99 -0.5,0.05 -0.88,0.48 -0.88,0.99 0,0.59 0.51,1.06 1.1,1 2.28,-0.23 4.36,-1.15 6.01,-2.56l2.48,2.48c-1.4,1.65 -2.33,3.72 -2.56,6 -0.06,0.59 0.4,1.11 1,1.11 0.5,0 0.94,-0.37 0.99,-0.87 0.18,-1.82 0.9,-3.48 1.99,-4.82l1.43,1.43c-0.69,0.9 -1.18,1.96 -1.37,3.13 -0.1,0.6 0.39,1.14 1,1.14 0.49,0 0.9,-0.36 0.98,-0.85 0.12,-0.73 0.42,-1.4 0.82,-1.99l2.13,2.13c0.39,0.39 1.02,0.39 1.41,0 0.38,-0.41 0.38,-1.04 -0.01,-1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/leave_bags_at_home.xml b/compose/material/material/icons/generator/raw-icons/rounded/leave_bags_at_home.xml
deleted file mode 100644
index 98eb49b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/leave_bags_at_home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.86,9.03C11.91,9.02 11.95,9 12,9c0.41,0 0.75,0.34 0.75,0.75v0.17l1.75,1.75V9.75C14.5,9.34 14.84,9 15.25,9S16,9.34 16,9.75v3.42l3,3V8c0,-1.1 -0.9,-2 -2,-2h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H8.83L11.86,9.03zM11,4h2v2h-2V4zM20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l2.92,2.92C5.02,7.9 5,7.95 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1c0.34,0 0.65,-0.09 0.93,-0.24l1.14,1.14c0.39,0.39 1.02,0.39 1.41,0C20.88,21.51 20.88,20.88 20.49,20.49zM8.75,18C8.34,18 8,17.66 8,17.25v-6.42l1.5,1.5v4.92C9.5,17.66 9.16,18 8.75,18zM12,18c-0.41,0 -0.75,-0.34 -0.75,-0.75v-3.17l1.5,1.5v1.67C12.75,17.66 12.41,18 12,18zM14.52,17.35l0.63,0.63C14.82,17.93 14.57,17.68 14.52,17.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/legend_toggle.xml b/compose/material/material/icons/generator/raw-icons/rounded/legend_toggle.xml
deleted file mode 100644
index e49963f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/legend_toggle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15H5c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v0C20,14.55 19.55,15 19,15zM19,17H5c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v0C20,17.45 19.55,17 19,17zM15,11l4.58,-3.25C19.84,7.56 20,7.26 20,6.94v0c0,-0.81 -0.92,-1.29 -1.58,-0.82L15,8.55L10,5L4.48,8.36C4.18,8.55 4,8.87 4,9.22v0c0,0.78 0.85,1.26 1.52,0.85l4.4,-2.68L15,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lens.xml b/compose/material/material/icons/generator/raw-icons/rounded/lens.xml
deleted file mode 100644
index e45ef6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lens_blur.xml b/compose/material/material/icons/generator/raw-icons/rounded/lens_blur.xml
deleted file mode 100644
index cb8a385..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lens_blur.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,13 6,13zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,17 6,17zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,9 6,9zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,9.5 3,9.5zM6,5C5.45,5 5,5.45 5,6s0.45,1 1,1s1,-0.45 1,-1S6.55,5 6,5zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5S21.28,9.5 21,9.5s-0.5,0.22 -0.5,0.5S20.72,10.5 21,10.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S13.45,7 14,7zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5S14.28,2.5 14,2.5S13.5,2.72 13.5,3S13.72,3.5 14,3.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,13.5 3,13.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S10.28,20.5 10,20.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5S10.28,2.5 10,2.5S9.5,2.72 9.5,3S9.72,3.5 10,3.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1S9,5.45 9,6S9.45,7 10,7zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,12.5 10,12.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,13 18,13zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,17 18,17zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,9 18,9zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,5 18,5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S21.28,13.5 21,13.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S14.55,17 14,17zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S14.28,20.5 14,20.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,8.5 10,8.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S10.55,17 10,17zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,12.5 14,12.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,8.5 14,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/library_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/library_add.xml
deleted file mode 100644
index 1fee4b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/library_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6c-0.55,0 -1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM18,11h-3v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3h-3c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3L13,6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/library_add_check.xml b/compose/material/material/icons/generator/raw-icons/rounded/library_add_check.xml
deleted file mode 100644
index 4cdac86..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/library_add_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM11.76,13.28L9.69,11.2c-0.38,-0.39 -0.38,-1.01 0,-1.4l0,0c0.39,-0.39 1.02,-0.39 1.41,0l1.36,1.37l4.42,-4.46c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.38,0.39 0.38,1.01 0,1.4l-5.13,5.17C12.79,13.68 12.15,13.68 11.76,13.28zM3,6L3,6C2.45,6 2,6.45 2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,-0.45 -1,-1V7C4,6.45 3.55,6 3,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/library_books.xml b/compose/material/material/icons/generator/raw-icons/rounded/library_books.xml
deleted file mode 100644
index 6c88dc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/library_books.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6c-0.55,0 -1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM18,11h-8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM14,15h-4c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h4c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM18,7h-8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/library_music.xml b/compose/material/material/icons/generator/raw-icons/rounded/library_music.xml
deleted file mode 100644
index f25c106..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/library_music.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM17,7h-2v5.37c0,1.27 -0.9,2.44 -2.16,2.6 -1.69,0.23 -3.11,-1.25 -2.8,-2.95 0.2,-1.1 1.18,-1.95 2.3,-2.02 0.63,-0.04 1.2,0.16 1.66,0.51L14,6c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM3,6c-0.55,0 -1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/light.xml b/compose/material/material/icons/generator/raw-icons/rounded/light.xml
deleted file mode 100644
index 6bb0282..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/light.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.06V4c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2.06c-4.5,0.5 -8,4.31 -8,8.93C3,16.1 3.9,17 5.01,17L8,17c0,2.21 1.79,4 4,4s4,-1.79 4,-4l2.99,0C20.1,17 21,16.1 21,14.99C21,10.37 17.5,6.56 13,6.06zM12,15l-7,0c0,-3.86 3.14,-7 7,-7s7,3.14 7,7L12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/light_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/light_mode.xml
deleted file mode 100644
index 8880e07..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/light_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7L12,7zM2,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S1.45,13 2,13zM20,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S19.45,13 20,13zM11,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V2c0,-0.55 -0.45,-1 -1,-1S11,1.45 11,2zM11,20v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1C11.45,19 11,19.45 11,20zM5.99,4.58c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0s0.39,-1.03 0,-1.41L5.99,4.58zM18.36,16.95c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0c0.39,-0.39 0.39,-1.03 0,-1.41L18.36,16.95zM19.42,5.99c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L19.42,5.99zM7.05,18.36c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L7.05,18.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lightbulb.xml b/compose/material/material/icons/generator/raw-icons/rounded/lightbulb.xml
deleted file mode 100644
index dc27538..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lightbulb.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4C10,21.1 10.9,22 12,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,19h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H9c-0.55,0 -1,0.45 -1,1v0C8,18.55 8.45,19 9,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C7.86,2 4.5,5.36 4.5,9.5c0,3.82 2.66,5.86 3.77,6.5h7.46c1.11,-0.64 3.77,-2.68 3.77,-6.5C19.5,5.36 16.14,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lightbulb_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/lightbulb_circle.xml
deleted file mode 100644
index de8bd3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lightbulb_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,19c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C13.5,18.33 12.83,19 12,19zM14.25,16.5h-4.5C9.34,16.5 9,16.16 9,15.75v0C9,15.34 9.34,15 9.75,15h4.5c0.41,0 0.75,0.34 0.75,0.75v0C15,16.16 14.66,16.5 14.25,16.5zM14.97,14H9.03C7.8,13.09 7,11.64 7,10c0,-2.76 2.24,-5 5,-5s5,2.24 5,5C17,11.64 16.2,13.09 14.97,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/line_axis.xml b/compose/material/material/icons/generator/raw-icons/rounded/line_axis.xml
deleted file mode 100644
index 878b7e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/line_axis.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.34,6.77L21.34,6.77c-0.4,-0.4 -1.07,-0.39 -1.45,0.04l-3.33,3.74l-5.65,-5.24C10.12,4.58 8.9,4.6 8.14,5.36L2.7,10.81c-0.39,0.39 -0.39,1.02 0,1.41l0.09,0.09c0.39,0.39 1.02,0.39 1.41,0l5.44,-5.45l5.59,5.19l-1.73,1.95l-2.58,-2.58c-0.78,-0.78 -2.05,-0.78 -2.83,0L2.7,16.8c-0.39,0.39 -0.39,1.02 0,1.41L2.8,18.3c0.39,0.39 1.02,0.39 1.41,0l5.3,-5.3l2.5,2.5c0.81,0.81 2.14,0.77 2.91,-0.09l1.78,-2.01l3.19,2.96c0.39,0.36 1,0.35 1.38,-0.03l0.01,-0.01c0.4,-0.4 0.39,-1.05 -0.03,-1.43l-3.22,-2.99l3.35,-3.77C21.73,7.74 21.71,7.14 21.34,6.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/line_style.xml b/compose/material/material/icons/generator/raw-icons/rounded/line_style.xml
deleted file mode 100644
index 1e37632..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/line_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,14c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM10.5,16h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM17,16h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,20c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM8,20c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM12,20c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM16,20c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM20,20c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,12h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM14,12h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,5v2c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1L21,5c0,-0.55 -0.45,-1 -1,-1L4,4c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/line_weight.xml b/compose/material/material/icons/generator/raw-icons/rounded/line_weight.xml
deleted file mode 100644
index 0f2ef16..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/line_weight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15L4,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM20,10L4,10c-0.55,0 -1,0.45 -1,1v1c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-1c0,-0.55 -0.45,-1 -1,-1zM20,4L4,4c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1L21,5c0,-0.55 -0.45,-1 -1,-1zM20.5,19h-17c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h17c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/linear_scale.xml b/compose/material/material/icons/generator/raw-icons/rounded/linear_scale.xml
deleted file mode 100644
index c0470f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/linear_scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7c-2.41,0 -4.43,1.72 -4.9,4H6.79C6.4,10.12 5.52,9.5 4.5,9.5C3.12,9.5 2,10.62 2,12s1.12,2.5 2.5,2.5c1.02,0 1.9,-0.62 2.29,-1.5h5.31c0.46,2.28 2.48,4 4.9,4c2.76,0 5,-2.24 5,-5S19.76,7 17,7zM17,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3s3,1.35 3,3S18.65,15 17,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/link.xml b/compose/material/material/icons/generator/raw-icons/rounded/link.xml
deleted file mode 100644
index d1a3dff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.65,0 3,1.35 3,3s-1.35,3 -3,3h-3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h3c2.76,0 5,-2.24 5,-5S19.76,7 17,7zM8,12c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H9C8.45,11 8,11.45 8,12zM10,15H7c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h3c0.55,0 1,-0.45 1,-1C11,15.45 10.55,15 10,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/link_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/link_off.xml
deleted file mode 100644
index b034eda..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/link_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h2.87c1.46,0 2.8,0.98 3.08,2.42c0.31,1.64 -0.74,3.11 -2.22,3.48l1.53,1.53c1.77,-0.91 2.95,-2.82 2.7,-5.01C21.68,8.86 19.37,7 16.79,7H14c-0.55,0 -1,0.45 -1,1C13,8.55 13.45,9 14,9zM3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l2.64,2.64c-1.77,0.91 -2.95,2.82 -2.7,5.01C2.32,15.14 4.63,17 7.21,17H10c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H7.13c-1.46,0 -2.8,-0.98 -3.08,-2.42C3.74,10.94 4.8,9.47 6.27,9.1l2.12,2.12C8.16,11.41 8,11.68 8,12c0,0.55 0.45,1 1,1h1.17l8.9,8.9c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51zM14,11l1.71,1.71C15.89,12.53 16,12.28 16,12c0,-0.55 -0.45,-1 -1,-1H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/linked_camera.xml b/compose/material/material/icons/generator/raw-icons/rounded/linked_camera.xml
deleted file mode 100644
index b66d135..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/linked_camera.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,2.37c2.1,0.27 3.77,1.93 4.03,4.03C20.67,6.74 20.95,7 21.29,7l0,0c0.39,0 0.71,-0.34 0.66,-0.73c-0.33,-2.72 -2.5,-4.89 -5.22,-5.22C16.34,1 16,1.32 16,1.71l0,0C16,2.05 16.26,2.33 16.6,2.37z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.23,6.19C18.93,5 18,4.07 16.81,3.77C16.4,3.67 16,3.99 16,4.42l0,0c0,0.29 0.19,0.57 0.48,0.64c0.72,0.18 1.29,0.74 1.46,1.46C18.01,6.81 18.28,7 18.58,7l0,0C19.01,7 19.33,6.6 19.23,6.19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8c0,-1.1 -0.9,-2 -2,-2V4c0,-0.55 -0.45,-1 -1,-1H9.88C9.32,3 8.78,3.24 8.4,3.65L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-9c0,-1.1 -0.9,-2 -2,-2H17zM12,17.5c-2.48,0 -4.5,-2.02 -4.5,-4.5S9.52,8.5 12,8.5s4.5,2.02 4.5,4.5S14.48,17.5 12,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/liquor.xml b/compose/material/material/icons/generator/raw-icons/rounded/liquor.xml
deleted file mode 100644
index 3c6ff8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/liquor.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14c0,1.3 0.84,2.4 2,2.82V20H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H7v-3.18C8.16,16.4 9,15.3 9,14V7c0,-0.55 -0.45,-1 -1,-1H4C3.45,6 3,6.45 3,7V14zM5,8h2v3H5V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.64,8.54l-0.96,-0.32C19.27,8.08 19,7.7 19,7.27V3c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v4.28c0,0.43 -0.27,0.81 -0.68,0.95l-0.96,0.32C11.55,8.83 11,9.59 11,10.45V20c0,1.1 0.9,2 2,2h7c1.1,0 2,-0.9 2,-2v-9.56C22,9.58 21.45,8.82 20.64,8.54zM16,4h1v1h-1V4zM13,10.44l0.95,-0.32C15.18,9.72 16,8.57 16,7.28V7h1v0.28c0,1.29 0.82,2.44 2.05,2.85L20,10.44V12h-7V10.44zM20,20h-7v-2h7V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/list.xml b/compose/material/material/icons/generator/raw-icons/rounded/list.xml
deleted file mode 100644
index 8ddb03c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM8,13h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM8,17h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,8c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,7c-0.55,0 -1,0.45 -1,1zM4,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM8,13h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM8,17h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,8c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,7c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/list_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/list_alt.xml
deleted file mode 100644
index 72b604f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/list_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM12,13h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM12,17h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,7h2v2L7,9zM7,11h2v2L7,13zM7,15h2v2L7,17zM20,3L4,3c-0.55,0 -1,0.45 -1,1v16c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1L21,4c0,-0.55 -0.45,-1 -1,-1zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/live_help.xml b/compose/material/material/icons/generator/raw-icons/rounded/live_help.xml
deleted file mode 100644
index ec129a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/live_help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h4l2.29,2.29c0.39,0.39 1.02,0.39 1.41,0L15,20h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM13,18h-2v-2h2v2zM15.07,10.25l-0.9,0.92c-0.58,0.59 -0.99,1.1 -1.12,2.06 -0.06,0.43 -0.41,0.76 -0.85,0.76h-0.31c-0.52,0 -0.92,-0.46 -0.85,-0.98 0.11,-0.91 0.53,-1.72 1.14,-2.34l1.24,-1.26c0.36,-0.36 0.58,-0.86 0.58,-1.41 0,-1.1 -0.9,-2 -2,-2 -0.87,0 -1.62,0.57 -1.89,1.35 -0.13,0.37 -0.44,0.64 -0.83,0.64h-0.3c-0.58,0 -0.98,-0.56 -0.82,-1.12C8.65,5.21 10.18,4 12,4c2.21,0 4,1.79 4,4 0,0.88 -0.36,1.68 -0.93,2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/live_tv.xml b/compose/material/material/icons/generator/raw-icons/rounded/live_tv.xml
deleted file mode 100644
index 699353e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/live_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,17.15l3.98,-2.28c0.67,-0.38 0.67,-1.35 0,-1.74l-3.98,-2.28c-0.67,-0.38 -1.5,0.11 -1.5,0.87v4.55c0,0.77 0.83,1.26 1.5,0.88zM21,6h-7.59l2.94,-2.94c0.2,-0.2 0.2,-0.51 0,-0.71s-0.51,-0.2 -0.71,0L12,5.99 8.36,2.35c-0.2,-0.2 -0.51,-0.2 -0.71,0s-0.2,0.51 0,0.71L10.59,6L3,6c-1.1,0 -2,0.89 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.11 -0.9,-2 -2,-2zM20,20L4,20c-0.55,0 -1,-0.45 -1,-1L3,9c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/living.xml b/compose/material/material/icons/generator/raw-icons/rounded/living.xml
deleted file mode 100644
index 6304443..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/living.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,11.5c-0.55,0 -1,0.45 -1,1v2h-7v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1V16c0,0.28 0.22,0.5 0.5,0.5h10c0.28,0 0.5,-0.22 0.5,-0.5v-3.5C17.5,11.95 17.05,11.5 16.5,11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.5V13h4v-0.5c0,-1.3 0.99,-2.35 2.25,-2.47V9c0,-0.83 -0.67,-1.5 -1.5,-1.5h-5.5c-0.83,0 -1.5,0.67 -1.5,1.5v1.03C9.01,10.15 10,11.2 10,12.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM19,16c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2v-3.5c0,-0.92 0.51,-1.72 1.25,-2.15V9c0,-1.66 1.34,-3 3,-3h5.5c1.66,0 3,1.34 3,3v1.35C18.49,10.78 19,11.58 19,12.5V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_activity.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_activity.xml
deleted file mode 100644
index 8348734..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_activity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-0.76 0.43,-1.42 1.06,-1.76 0.6,-0.33 0.94,-1.01 0.94,-1.7L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.89 -1.99,1.99v2.55c0,0.69 0.33,1.37 0.94,1.69C3.58,10.58 4,11.24 4,12s-0.43,1.43 -1.06,1.76c-0.6,0.33 -0.94,1.01 -0.94,1.7L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-2.54c0,-0.69 -0.34,-1.37 -0.94,-1.7 -0.63,-0.34 -1.06,-1 -1.06,-1.76zM14.5,16.1L12,14.5l-2.5,1.61c-0.38,0.24 -0.87,-0.11 -0.75,-0.55l0.75,-2.88 -2.3,-1.88c-0.35,-0.29 -0.17,-0.86 0.29,-0.89l2.96,-0.17 1.08,-2.75c0.17,-0.42 0.77,-0.42 0.93,0l1.08,2.76 2.96,0.17c0.45,0.03 0.64,0.6 0.29,0.89l-2.3,1.88 0.76,2.86c0.12,0.45 -0.37,0.8 -0.75,0.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_airport.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_airport.xml
deleted file mode 100644
index 360739c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_airport.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.48,13.7L13.5,9V3.5C13.5,2.67 12.83,2 12,2c-0.83,0 -1.5,0.67 -1.5,1.5V9l-7.98,4.7C2.2,13.88 2,14.23 2,14.6c0,0.7 0.67,1.2 1.34,1.01l7.16,-2.1V19l-2.26,1.35C8.09,20.44 8,20.61 8,20.78l0,0.5h0v0.08c0,0.33 0.31,0.57 0.62,0.49l2.92,-0.73L12,21l0.38,0.09c0,0 0,0 0,0l0.42,0.11l1.9,0.48l0,0l0.67,0.17c0.32,0.08 0.62,-0.16 0.62,-0.49v-0.37c0,0 0,0 0,0v-0.21c0,-0.18 -0.09,-0.34 -0.24,-0.43L13.5,19v-5.5l7.16,2.1C21.33,15.8 22,15.3 22,14.6C22,14.23 21.8,13.88 21.48,13.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_atm.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_atm.xml
deleted file mode 100644
index 978789c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,17c0,0.55 -0.45,1 -1,1L5,18c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v10zM14,10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-0.01c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1L11,8h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1c0,0.55 0.45,1 1,1s1,-0.45 1,-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_bar.xml
deleted file mode 100644
index ccb05ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4.45c0,-0.8 -0.65,-1.45 -1.45,-1.45H4.45C3.65,3 3,3.65 3,4.45c0,0.35 0.13,0.7 0.37,0.96L11,14v5H7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4v-5l7.63,-8.59c0.24,-0.26 0.37,-0.61 0.37,-0.96zM7.43,7L5.66,5h12.69l-1.78,2H7.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_cafe.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_cafe.xml
deleted file mode 100644
index cb57dd5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_cafe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L6,3c-1.1,0 -2,0.9 -2,2v8c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,8h-2L18,5h2v3zM3,21h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_car_wash.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_car_wash.xml
deleted file mode 100644
index ddfb2a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_car_wash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.66 -0.66,-1.64 -1.11,-2.22 -0.2,-0.26 -0.59,-0.26 -0.79,0 -0.44,0.58 -1.1,1.56 -1.1,2.22 0,0.83 0.67,1.5 1.5,1.5zM12,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.66 -0.66,-1.64 -1.11,-2.22 -0.2,-0.26 -0.59,-0.26 -0.79,0 -0.44,0.58 -1.1,1.56 -1.1,2.22 0,0.83 0.67,1.5 1.5,1.5zM7,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.66 -0.66,-1.64 -1.11,-2.22 -0.2,-0.26 -0.59,-0.26 -0.79,0 -0.44,0.58 -1.1,1.56 -1.1,2.22C5.5,4.33 6.17,5 7,5zM18.92,8.01C18.72,7.42 18.16,7 17.5,7h-11c-0.66,0 -1.21,0.42 -1.42,1.01l-1.97,5.67c-0.07,0.21 -0.11,0.43 -0.11,0.66v7.16c0,0.83 0.67,1.5 1.5,1.5S6,22.33 6,21.5L6,21h12v0.5c0,0.82 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5v-7.16c0,-0.22 -0.04,-0.45 -0.11,-0.66l-1.97,-5.67zM6.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,15 6.5,15s1.5,0.67 1.5,1.5S7.33,18 6.5,18zM17.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,13l1.27,-3.82c0.14,-0.4 0.52,-0.68 0.95,-0.68h9.56c0.43,0 0.81,0.28 0.95,0.68L19,13L5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_convenience_store.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_convenience_store.xml
deleted file mode 100644
index b6ee160..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_convenience_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,7.89l-1.05,-3.37c-0.22,-0.9 -1,-1.52 -1.91,-1.52H5.05c-0.9,0 -1.69,0.63 -1.9,1.52L2.1,7.89C1.64,9.86 2.95,11 3,11.06V19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-7.94C22.12,9.94 22.09,8.65 21.9,7.89zM13,5h1.96l0.54,3.52C15.59,9.23 15.11,10 14.22,10C13.55,10 13,9.41 13,8.69V5zM6.44,8.86C6.36,9.51 5.84,10 5.23,10C4.3,10 3.88,9.03 4.04,8.36L5.05,5h1.97L6.44,8.86zM10.5,16H9v1h1.5c0.28,0 0.5,0.22 0.5,0.5l0,0c0,0.28 -0.22,0.5 -0.5,0.5h-2C8.22,18 8,17.78 8,17.5v-2C8,15.22 8.22,15 8.5,15H10v-1H8.5C8.22,14 8,13.78 8,13.5v0C8,13.22 8.22,13 8.5,13h2c0.28,0 0.5,0.22 0.5,0.5v2C11,15.78 10.78,16 10.5,16zM11,8.69C11,9.41 10.45,10 9.71,10c-0.75,0 -1.3,-0.7 -1.22,-1.48L9.04,5H11V8.69zM15.5,18L15.5,18c-0.28,0 -0.5,-0.22 -0.5,-0.5V16h-1.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-2c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5V15h1v-1.5c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v4C16,17.78 15.78,18 15.5,18zM18.77,10c-0.61,0 -1.14,-0.49 -1.21,-1.14L16.98,5l1.93,-0.01l1.05,3.37C20.12,9.03 19.71,10 18.77,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_dining.xml
deleted file mode 100644
index 3e84bb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83 -6.19,-6.18c-0.48,-0.48 -1.31,-0.35 -1.61,0.27 -0.71,1.49 -0.45,3.32 0.78,4.56l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27l-9.05,9.05c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,14.41l6.18,6.18c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_drink.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_drink.xml
deleted file mode 100644
index b0fd704..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_drink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.23,2C4.04,2 3.11,3.04 3.24,4.22l1.77,16.01C5.13,21.23 5.97,22 7,22h10c1.03,0 1.87,-0.77 1.99,-1.77l1.77,-16.01c0.13,-1.18 -0.8,-2.22 -1.99,-2.22L5.23,2zM12,19c-1.66,0 -3,-1.34 -3,-3 0,-1.55 1.81,-3.95 2.62,-4.94 0.2,-0.25 0.57,-0.25 0.77,0 0.81,1 2.62,3.39 2.62,4.94 -0.01,1.66 -1.35,3 -3.01,3zM18.33,8L5.67,8l-0.32,-2.89c-0.06,-0.59 0.4,-1.11 1,-1.11h11.3c0.59,0 1.06,0.52 0.99,1.11L18.33,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_fire_department.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_fire_department.xml
deleted file mode 100644
index 313d65f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_fire_department.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.9l-2.03,2c-0.46,0.46 -0.82,1.03 -0.93,1.67C8.74,18.41 10.18,20 12,20s3.26,-1.59 2.96,-3.42c-0.11,-0.64 -0.46,-1.22 -0.93,-1.67L12,12.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.56,6.55L15.56,6.55C14.38,8.02 12,7.19 12,5.3V3.77c0,-0.8 -0.89,-1.28 -1.55,-0.84C8.12,4.49 4,7.97 4,13c0,2.92 1.56,5.47 3.89,6.86c-0.71,-1.02 -1.06,-2.31 -0.81,-3.68c0.19,-1.04 0.75,-1.98 1.51,-2.72l2.71,-2.67c0.39,-0.38 1.01,-0.38 1.4,0l2.73,2.69c0.74,0.73 1.3,1.65 1.48,2.68c0.25,1.36 -0.07,2.64 -0.77,3.66c1.89,-1.15 3.29,-3.06 3.71,-5.3c0.61,-3.27 -0.81,-6.37 -3.22,-8.1C16.3,6.17 15.83,6.22 15.56,6.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_florist.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_florist.xml
deleted file mode 100644
index 42bd051..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_florist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c4.56,0 8.33,-3.4 8.92,-7.8 0.09,-0.64 -0.48,-1.21 -1.12,-1.12 -4.4,0.59 -7.8,4.36 -7.8,8.92zM5.6,10.25c0,1.38 1.12,2.5 2.5,2.5 0.53,0 1.01,-0.16 1.42,-0.44l-0.02,0.19c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5l-0.02,-0.19c0.4,0.28 0.89,0.44 1.42,0.44 1.38,0 2.5,-1.12 2.5,-2.5 0,-1 -0.59,-1.85 -1.43,-2.25 0.84,-0.4 1.43,-1.25 1.43,-2.25 0,-1.38 -1.12,-2.5 -2.5,-2.5 -0.53,0 -1.01,0.16 -1.42,0.44l0.02,-0.19C14.5,2.12 13.38,1 12,1S9.5,2.12 9.5,3.5l0.02,0.19c-0.4,-0.28 -0.89,-0.44 -1.42,-0.44 -1.38,0 -2.5,1.12 -2.5,2.5 0,1 0.59,1.85 1.43,2.25 -0.84,0.4 -1.43,1.25 -1.43,2.25zM12,5.5c1.38,0 2.5,1.12 2.5,2.5s-1.12,2.5 -2.5,2.5S9.5,9.38 9.5,8s1.12,-2.5 2.5,-2.5zM3.08,14.2C3.67,18.6 7.44,22 12,22c0,-4.56 -3.4,-8.33 -7.8,-8.92 -0.64,-0.09 -1.21,0.48 -1.12,1.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_gas_station.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_gas_station.xml
deleted file mode 100644
index c20adae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_gas_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.19,-3.19c-0.29,-0.29 -0.77,-0.29 -1.06,0 -0.29,0.29 -0.29,0.77 0,1.06l1.58,1.58c-1.05,0.4 -1.76,1.47 -1.58,2.71 0.16,1.1 1.1,1.99 2.2,2.11 0.47,0.05 0.88,-0.03 1.27,-0.2v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L17,14c0,-1.1 -0.9,-2 -2,-2h-1L14,5c0,-1.1 -0.9,-2 -2,-2L6,3c-1.1,0 -2,0.9 -2,2v15c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-6.5h1.5v4.86c0,1.31 0.94,2.5 2.24,2.63 1.5,0.15 2.76,-1.02 2.76,-2.49L20.5,9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM12,10L6,10L6,6c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v4zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_grocery_store.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_grocery_store.xml
deleted file mode 100644
index d3cb399..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_grocery_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM2,4h1l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h11c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L7,15l1.1,-2h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.37,-0.66 -0.11,-1.48 -0.87,-1.48L5.21,4l-0.67,-1.43c-0.16,-0.35 -0.52,-0.57 -0.9,-0.57L2,2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_hospital.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_hospital.xml
deleted file mode 100644
index 4f59c4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_hospital.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM17,14h-3v3c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1v-3L7,14c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1h3L10,7c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v3h3c0.55,0 1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_hotel.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_hotel.xml
deleted file mode 100644
index cda81ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.66,0 3,-1.34 3,-3S8.66,7 7,7s-3,1.34 -3,3 1.34,3 3,3zM19,7h-6c-1.1,0 -2,0.9 -2,2v5L3,14L3,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v13c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h18v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-8c0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_laundry_service.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_laundry_service.xml
deleted file mode 100644
index 264c592..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_laundry_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.64,16.36c1.3,1.3 3.42,1.3 4.72,0c1.3,-1.3 1.3,-3.42 0,-4.72L9.64,16.36zM18,2.01L6,2C4.89,2 4,2.89 4,4v16c0,1.11 0.89,2 2,2h12c1.11,0 2,-0.89 2,-2V4C20,2.89 19.11,2.01 18,2.01zM11,5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S10.45,5 11,5zM8,5c0.55,0 1,0.45 1,1S8.55,7 8,7S7,6.55 7,6S7.45,5 8,5zM12,19c-2.76,0 -5,-2.24 -5,-5c0,-2.76 2.24,-5 5,-5s5,2.24 5,5C17,16.76 14.76,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_library.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_library.xml
deleted file mode 100644
index 8ba3a08..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11.55c-1.82,-1.7 -4.12,-2.89 -6.68,-3.35C4.11,7.99 3,8.95 3,10.18v6.24c0,1.68 0.72,2.56 1.71,2.69 2.5,0.32 4.77,1.35 6.63,2.87 0.35,0.29 0.92,0.32 1.27,0.04 1.87,-1.53 4.16,-2.58 6.68,-2.9 0.94,-0.13 1.71,-1.06 1.71,-2.02v-6.92c0,-1.23 -1.11,-2.19 -2.32,-1.98 -2.56,0.46 -4.86,1.65 -6.68,3.35zM12,8c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3 1.34,3 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_mall.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_mall.xml
deleted file mode 100644
index a292c6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_mall.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-2c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6L5,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,8c0,-1.1 -0.9,-2 -2,-2zM12,3c1.66,0 3,1.34 3,3L9,6c0,-1.66 1.34,-3 3,-3zM12,13c-2.33,0 -4.29,-1.59 -4.84,-3.75 -0.17,-0.63 0.32,-1.25 0.97,-1.25 0.47,0 0.85,0.34 0.98,0.8 0.35,1.27 1.51,2.2 2.89,2.2s2.54,-0.93 2.89,-2.2c0.13,-0.46 0.51,-0.8 0.98,-0.8 0.65,0 1.13,0.62 0.97,1.25C16.29,11.41 14.33,13 12,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_movies.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_movies.xml
deleted file mode 100644
index 3fe1f95..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_movies.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v1h-2L16,4c0,-0.55 -0.45,-1 -1,-1L9,3c-0.55,0 -1,0.45 -1,1v1L6,5L6,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h2v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h2v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1L20,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_offer.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_offer.xml
deleted file mode 100644
index 5e29267..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_offer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.58l-9,-9C12.05,2.22 11.55,2 11,2H4c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58s1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41s-0.23,-1.06 -0.59,-1.42zM5.5,7C4.67,7 4,6.33 4,5.5S4.67,4 5.5,4 7,4.67 7,5.5 6.33,7 5.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_parking.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_parking.xml
deleted file mode 100644
index a48b3e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_parking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.79,3L8,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-4h3c3.57,0 6.42,-3.13 5.95,-6.79C18.56,5.19 15.84,3 12.79,3zM13.2,11L10,11L10,7h3.2c1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_pharmacy.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_pharmacy.xml
deleted file mode 100644
index 898b344..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_pharmacy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,5h-0.53l0.71,-1.97c0.24,-0.65 -0.1,-1.37 -0.75,-1.6 -0.65,-0.24 -1.37,0.1 -1.61,0.75L15.69,5H5.1C3.73,5 2.77,6.34 3.2,7.63L5,13l-1.79,5.37C2.77,19.66 3.74,21 5.1,21h13.78c1.36,0 2.33,-1.34 1.9,-2.63L19,13l1.78,-5.37C21.21,6.34 20.25,5 18.89,5zM15,14h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_phone.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_phone.xml
deleted file mode 100644
index 0c2d257..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77H5.03c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_pizza.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_pizza.xml
deleted file mode 100644
index fdbd04f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_pizza.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C9.01,2 6.28,3.08 4.17,4.88c-0.71,0.61 -0.86,1.65 -0.4,2.46l7.36,13.11c0.38,0.68 1.36,0.68 1.74,0l7.36,-13.11c0.46,-0.81 0.31,-1.86 -0.4,-2.46C17.73,3.09 14.99,2 12,2zM7,7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2zM12,15c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_play.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_play.xml
deleted file mode 100644
index eba3021..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-0.76 0.43,-1.42 1.06,-1.76 0.6,-0.33 0.94,-1.01 0.94,-1.7L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.89 -1.99,1.99v2.55c0,0.69 0.33,1.37 0.94,1.69C3.58,10.58 4,11.24 4,12s-0.43,1.43 -1.06,1.76c-0.6,0.33 -0.94,1.01 -0.94,1.7v2.25C2,19.1 2.9,20 4,20h16c1.1,0 2,-0.9 2,-2v-2.54c0,-0.69 -0.34,-1.37 -0.94,-1.7 -0.63,-0.34 -1.06,-1 -1.06,-1.76zM14.5,16.1L12,14.5l-2.5,1.61c-0.38,0.24 -0.87,-0.11 -0.75,-0.55l0.75,-2.88 -2.3,-1.88c-0.35,-0.29 -0.17,-0.86 0.29,-0.89l2.96,-0.17 1.08,-2.75c0.17,-0.42 0.77,-0.42 0.93,0l1.08,2.76 2.96,0.17c0.45,0.03 0.64,0.6 0.29,0.89l-2.3,1.88 0.76,2.86c0.12,0.45 -0.37,0.8 -0.75,0.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_police.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_police.xml
deleted file mode 100644
index 6732730..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_police.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.59l0.63,2.73c0.1,0.43 -0.37,0.77 -0.75,0.54L12,14.42l-2.39,1.44c-0.38,0.23 -0.85,-0.11 -0.75,-0.54L9.5,12.6l-2.1,-1.81C7.06,10.5 7.24,9.95 7.68,9.91l2.78,-0.24l1.08,-2.56c0.17,-0.41 0.75,-0.41 0.92,0l1.08,2.55l2.78,0.24c0.44,0.04 0.62,0.59 0.28,0.88L14.5,12.59zM4.19,4.47C3.47,4.79 3,5.51 3,6.3V11c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V6.3c0,-0.79 -0.47,-1.51 -1.19,-1.83l-7,-3.11c-0.52,-0.23 -1.11,-0.23 -1.62,0L4.19,4.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_post_office.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_post_office.xml
deleted file mode 100644
index d171466..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_post_office.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM19.6,8.25l-6.54,4.09c-0.65,0.41 -1.47,0.41 -2.12,0L4.4,8.25c-0.25,-0.16 -0.4,-0.43 -0.4,-0.72 0,-0.67 0.73,-1.07 1.3,-0.72L12,11l6.7,-4.19c0.57,-0.35 1.3,0.05 1.3,0.72 0,0.29 -0.15,0.56 -0.4,0.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_printshop.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_printshop.xml
deleted file mode 100644
index 280de1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_printshop.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7V4c0,-0.55 -0.45,-1 -1,-1H7C6.45,3 6,3.45 6,4v3H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8H5c-1.66,0 -3,1.34 -3,3v5c0,0.55 0.45,1 1,1h3v2c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-2h3c0.55,0 1,-0.45 1,-1v-5C22,9.34 20.66,8 19,8zM16,19H8v-4h8V19zM18,12.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S18.55,12.5 18,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_see.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_see.xml
deleted file mode 100644
index 6809753..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_see.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,14c0,1.38 1.12,2.5 2.5,2.5c1.23,0 2.25,-0.9 2.46,-2.07c-1,-1.01 -1.83,-1.98 -2.48,-2.93C10.61,11.52 9.5,12.63 9.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.65,17.08c-0.37,0.32 -0.92,0.32 -1.3,0c-1.26,-1.08 -0.7,-0.61 -1.3,-1.14c-0.83,1.74 -2.73,2.87 -4.85,2.5c-1.83,-0.32 -3.31,-1.8 -3.63,-3.63c-0.42,-2.44 1.13,-4.58 3.31,-5.14C10.3,8.45 10,7.28 10,6.15C10,5.4 10.1,4.68 10.28,4h-0.4c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,6H4C2.9,6 2,6.9 2,8v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-6.03C20.59,15.46 19.35,16.48 18.65,17.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.42c0.37,0.33 0.95,0.33 1.33,0C22.22,11.25 24,8.5 24,6.15C24,2.42 21.15,0 18,0s-6,2.42 -6,6.15C12,8.5 13.78,11.25 17.34,14.42zM17.27,5.25L18,3l0.73,2.25H21l-1.85,1.47L19.85,9L18,7.59L16.15,9l0.7,-2.28L15,5.25H17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_shipping.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_shipping.xml
deleted file mode 100644
index ade1315..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_shipping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,8L17,8L17,6c0,-1.1 -0.9,-2 -2,-2L3,4c-1.1,0 -2,0.9 -2,2v9c0,1.1 0.9,2 2,2 0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h1c0.55,0 1,-0.45 1,-1v-3.33c0,-0.43 -0.14,-0.85 -0.4,-1.2L20.3,8.4c-0.19,-0.25 -0.49,-0.4 -0.8,-0.4zM6,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM19.5,9.5l1.96,2.5L17,12L17,9.5h2.5zM18,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/local_taxi.xml b/compose/material/material/icons/generator/raw-icons/rounded/local_taxi.xml
deleted file mode 100644
index d23bdaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/local_taxi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5L15,5L15,4c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v1L6.5,5c-0.66,0 -1.21,0.42 -1.42,1.01l-1.97,5.67c-0.07,0.21 -0.11,0.43 -0.11,0.66v7.16c0,0.83 0.67,1.5 1.5,1.5S6,20.33 6,19.5L6,19h12v0.5c0,0.82 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5v-7.16c0,-0.22 -0.04,-0.45 -0.11,-0.66l-1.97,-5.67zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.5,-4.5h11L19,11L5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/location_city.xml b/compose/material/material/icons/generator/raw-icons/rounded/location_city.xml
deleted file mode 100644
index 0465c33..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/location_city.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11L15,5.83c0,-0.53 -0.21,-1.04 -0.59,-1.41L12.7,2.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.7,1.7C9.21,4.79 9,5.3 9,5.83L9,7L5,7c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6c0,-1.1 -0.9,-2 -2,-2h-4zM7,19L5,19v-2h2v2zM7,15L5,15v-2h2v2zM7,11L5,11L5,9h2v2zM13,19h-2v-2h2v2zM13,15h-2v-2h2v2zM13,11h-2L11,9h2v2zM13,7h-2L11,5h2v2zM19,19h-2v-2h2v2zM19,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/location_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/location_disabled.xml
deleted file mode 100644
index 09a832e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/location_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.06c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77L22,13zM20.44,18.88L5.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L5.04,6.3C3.97,7.62 3.26,9.23 3.06,11L2,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.06c0.46,4.17 3.77,7.48 7.94,7.94L11,22c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1.06c1.77,-0.2 3.38,-0.91 4.69,-1.98l1.33,1.33c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.39 0.4,-1.02 0.01,-1.41zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81C15.09,18.45 13.61,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/location_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/location_off.xml
deleted file mode 100644
index 78084f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/location_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.71,3.56c-0.39,0.39 -0.39,1.02 0,1.41l2.47,2.47C5.07,7.95 5,8.47 5,9c0,4.17 4.42,9.92 6.23,12.11 0.4,0.48 1.13,0.48 1.53,0 0.65,-0.78 1.62,-2.01 2.61,-3.46l2.65,2.65c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0zM12,2c-1.84,0 -3.5,0.71 -4.75,1.86l3.19,3.19c0.43,-0.34 0.97,-0.55 1.56,-0.55 1.38,0 2.5,1.12 2.5,2.5 0,0.59 -0.21,1.13 -0.56,1.56l3.55,3.55C18.37,12.36 19,10.57 19,9c0,-3.87 -3.13,-7 -7,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/location_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/location_on.xml
deleted file mode 100644
index bcab94916..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/location_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM12,12c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C14,11.1 13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/location_searching.xml b/compose/material/material/icons/generator/raw-icons/rounded/location_searching.xml
deleted file mode 100644
index 75b73c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/location_searching.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1.06C6.83,3.52 3.52,6.83 3.06,11H2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.06c0.46,4.17 3.77,7.48 7.94,7.94V22c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H22c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lock.xml b/compose/material/material/icons/generator/raw-icons/rounded/lock.xml
deleted file mode 100644
index c985c05..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM9,8L9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lock_clock.xml b/compose/material/material/icons/generator/raw-icons/rounded/lock_clock.xml
deleted file mode 100644
index c5f0eae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lock_clock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.7,0 1.37,0.1 2,0.29V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h6.26C11.47,20.87 11,19.49 11,18C11,14.13 14.13,11 18,11zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2H9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM20,20c-0.2,0.2 -0.51,0.2 -0.71,0l-1.65,-1.65c-0.09,-0.09 -0.15,-0.22 -0.15,-0.35v-2.5c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v2.29l1.5,1.5C20.2,19.49 20.2,19.8 20,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lock_open.xml b/compose/material/material/icons/generator/raw-icons/rounded/lock_open.xml
deleted file mode 100644
index def7919..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lock_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5 -2.28,0 -4.27,1.54 -4.84,3.75 -0.14,0.54 0.18,1.08 0.72,1.22 0.53,0.14 1.08,-0.18 1.22,-0.72C9.44,3.93 10.63,3 12,3c1.65,0 3,1.35 3,3v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM18,19c0,0.55 -0.45,1 -1,1L7,20c-0.55,0 -1,-0.45 -1,-1v-8c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lock_person.xml b/compose/material/material/icons/generator/raw-icons/rounded/lock_person.xml
deleted file mode 100644
index 86b3106..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lock_person.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.7,0 1.37,0.1 2,0.29V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h6.26C11.47,20.87 11,19.49 11,18C11,14.13 14.13,11 18,11zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2H8.9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM18,15c0.83,0 1.5,0.67 1.5,1.5S18.83,18 18,18s-1.5,-0.67 -1.5,-1.5S17.17,15 18,15zM18,21c-1.03,0 -1.94,-0.52 -2.48,-1.32C16.25,19.26 17.09,19 18,19s1.75,0.26 2.48,0.68C19.94,20.48 19.03,21 18,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lock_reset.xml b/compose/material/material/icons/generator/raw-icons/rounded/lock_reset.xml
deleted file mode 100644
index 1948779..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lock_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.26,3C8.17,2.86 4,6.94 4,12H2.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.8,-2.79C8.46,12.54 8.24,12 7.79,12H6c0,-3.89 3.2,-7.06 7.1,-7c3.71,0.05 6.84,3.18 6.9,6.9c0.06,3.91 -3.1,7.1 -7,7.1c-1.59,0 -3.05,-0.53 -4.23,-1.43c-0.4,-0.3 -0.96,-0.27 -1.31,0.09l0,0c-0.43,0.43 -0.39,1.14 0.09,1.5C9.06,20.31 10.95,21 13,21c5.06,0 9.14,-4.17 9,-9.25C21.87,7.05 17.95,3.13 13.26,3zM15,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C16,11.45 15.55,11 15,11zM14,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/login.xml b/compose/material/material/icons/generator/raw-icons/rounded/login.xml
deleted file mode 100644
index 207b6d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/login.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.3,7.7L10.3,7.7c-0.39,0.39 -0.39,1.01 0,1.4l1.9,1.9H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h9.2l-1.9,1.9c-0.39,0.39 -0.39,1.01 0,1.4l0,0c0.39,0.39 1.01,0.39 1.4,0l3.59,-3.59c0.39,-0.39 0.39,-1.02 0,-1.41L11.7,7.7C11.31,7.31 10.69,7.31 10.3,7.7zM20,19h-7c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h7c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2h-7c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h7V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/logo_dev.xml b/compose/material/material/icons/generator/raw-icons/rounded/logo_dev.xml
deleted file mode 100644
index 8659d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/logo_dev.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.68,14.98H6V9h1.71c1.28,0 1.71,1.03 1.71,1.71l0,2.56C9.42,13.95 9,14.98 7.68,14.98zM12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25c-0.4,0.01 -0.74,-0.31 -0.75,-0.71V9.75c-0.01,-0.4 0.31,-0.74 0.71,-0.75h2.28l0,1.07h-1.92v1.39H12.38zM16.88,14.23c-0.48,1.11 -1.33,0.89 -1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,10.12H7.14v3.77h0.63c0.14,0 0.28,-0.05 0.42,-0.16c0.14,-0.1 0.21,-0.26 0.21,-0.47v-2.52c0,-0.21 -0.07,-0.37 -0.21,-0.47C8.05,10.17 7.91,10.12 7.77,10.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/logout.xml b/compose/material/material/icons/generator/raw-icons/rounded/logout.xml
deleted file mode 100644
index eecb5ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/logout.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.65,11.65l-2.79,-2.79C17.54,8.54 17,8.76 17,9.21V11h-7c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h7v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79C20.84,12.16 20.84,11.84 20.65,11.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/looks.xml b/compose/material/material/icons/generator/raw-icons/rounded/looks.xml
deleted file mode 100644
index a58b7b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/looks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c-3.47,0 -6.36,2.54 -6.91,5.86 -0.1,0.6 0.39,1.14 1,1.14 0.49,0 0.9,-0.36 0.98,-0.85C7.48,13.79 9.53,12 12,12s4.52,1.79 4.93,4.15c0.08,0.49 0.49,0.85 0.98,0.85 0.61,0 1.09,-0.54 0.99,-1.14C18.36,12.54 15.47,10 12,10zM12,6C6.3,6 1.61,10.34 1.05,15.9c-0.05,0.59 0.41,1.1 1.01,1.1 0.51,0 0.94,-0.38 0.99,-0.88C3.49,11.57 7.34,8 12,8s8.51,3.57 8.96,8.12c0.05,0.5 0.48,0.88 0.99,0.88 0.59,0 1.06,-0.51 1,-1.1C22.39,10.34 17.7,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/looks_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/looks_3.xml
deleted file mode 100644
index bb47494..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/looks_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5.01,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM15.01,10.5c0,0.83 -0.67,1.5 -1.5,1.5 0.83,0 1.5,0.67 1.5,1.5L15.01,15c0,1.11 -0.9,2 -2,2L10,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3.01L13,13h-1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1l0.01,-2L10,9c-0.55,0 -0.99,-0.45 -0.99,-1s0.44,-1 0.99,-1h3.01c1.1,0 2,0.9 2,2v1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/looks_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/looks_4.xml
deleted file mode 100644
index 25d6a6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/looks_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.04,3h-14c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21.04,5c0,-1.1 -0.9,-2 -2,-2zM14.04,17c-0.55,0 -1,-0.45 -1,-1v-3h-3c-0.55,0 -1,-0.45 -1,-1L9.04,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h2L13.04,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v8c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/looks_5.xml b/compose/material/material/icons/generator/raw-icons/rounded/looks_5.xml
deleted file mode 100644
index f5be9c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/looks_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14,9h-3v2h2c1.1,0 2,0.9 2,2v2c0,1.11 -0.9,2 -2,2h-3c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3v-2h-3c-0.55,0 -1,-0.45 -1,-1L9,8c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/looks_6.xml b/compose/material/material/icons/generator/raw-icons/rounded/looks_6.xml
deleted file mode 100644
index 402935a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/looks_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v-2h-2v2zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM14,9h-3v2h2c1.1,0 2,0.9 2,2v2c0,1.11 -0.9,2 -2,2h-2c-1.1,0 -2,-0.89 -2,-2L9,9c0,-1.1 0.9,-2 2,-2h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/looks_one.xml b/compose/material/material/icons/generator/raw-icons/rounded/looks_one.xml
deleted file mode 100644
index 1810aff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/looks_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM13,17c-0.55,0 -1,-0.45 -1,-1L12,9h-1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/looks_two.xml b/compose/material/material/icons/generator/raw-icons/rounded/looks_two.xml
deleted file mode 100644
index b81815e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/looks_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM15,11c0,1.1 -0.9,2 -2,2h-2v2h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-1.1 0.9,-2 2,-2h2L13,9h-3c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3c1.1,0 2,0.9 2,2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/loop.xml b/compose/material/material/icons/generator/raw-icons/rounded/loop.xml
deleted file mode 100644
index 0ea3056..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/loop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,2.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.8,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.32,0.31 0.86,0.09 0.86,-0.36L12,6c3.31,0 6,2.69 6,6 0,0.79 -0.15,1.56 -0.44,2.25 -0.15,0.36 -0.04,0.77 0.23,1.04 0.51,0.51 1.37,0.33 1.64,-0.34 0.37,-0.91 0.57,-1.91 0.57,-2.95 0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-0.79 0.15,-1.56 0.44,-2.25 0.15,-0.36 0.04,-0.77 -0.23,-1.04 -0.51,-0.51 -1.37,-0.33 -1.64,0.34C4.2,9.96 4,10.96 4,12c0,4.42 3.58,8 8,8v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/loupe.xml b/compose/material/material/icons/generator/raw-icons/rounded/loupe.xml
deleted file mode 100644
index 6608b06..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/loupe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-0.55,0 -1,0.45 -1,1v3L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L13,8c0,-0.55 -0.45,-1 -1,-1zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10h8c1.1,0 2,-0.9 2,-2v-8c0,-5.51 -4.49,-10 -10,-10zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/low_priority.xml b/compose/material/material/icons/generator/raw-icons/rounded/low_priority.xml
deleted file mode 100644
index 2cab168..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/low_priority.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM15,10.5h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM15,16h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM9.85,19.15l1.79,-1.79c0.2,-0.2 0.2,-0.51 0,-0.71l-1.79,-1.79c-0.31,-0.32 -0.85,-0.1 -0.85,0.35v3.59c0,0.44 0.54,0.66 0.85,0.35zM9,16h-0.3c-2.35,0 -4.45,-1.71 -4.68,-4.05C3.76,9.27 5.87,7 8.5,7L11,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8.5,5c-3.86,0 -6.96,3.4 -6.44,7.36C2.48,15.64 5.43,18 8.73,18L9,18"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/loyalty.xml b/compose/material/material/icons/generator/raw-icons/rounded/loyalty.xml
deleted file mode 100644
index 63a7163..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/loyalty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.58l-9,-9C12.05,2.22 11.55,2 11,2L4,2c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58s1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41s-0.23,-1.06 -0.59,-1.42zM5.5,7C4.67,7 4,6.33 4,5.5S4.67,4 5.5,4 7,4.67 7,5.5 6.33,7 5.5,7zM17.27,15.27l-3.92,3.92c-0.2,0.2 -0.51,0.2 -0.71,0l-3.92,-3.92c-0.57,-0.58 -0.87,-1.43 -0.67,-2.34 0.19,-0.88 0.89,-1.61 1.76,-1.84 0.94,-0.25 1.85,0.04 2.44,0.65l0.75,0.72 0.73,-0.73c0.45,-0.45 1.08,-0.73 1.77,-0.73 1.38,0 2.5,1.12 2.5,2.5 0,0.69 -0.28,1.32 -0.73,1.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lte_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/lte_mobiledata.xml
deleted file mode 100644
index 3a7f227..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lte_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14h2c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1V14zM10,10h1v5c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-4C9.45,8 9,8.45 9,9v0C9,9.55 9.45,10 10,10zM21,9L21,9c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-1h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-1h2C20.55,10 21,9.55 21,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lte_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/lte_plus_mobiledata.xml
deleted file mode 100644
index a49251c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lte_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h2c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H2c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1V14zM6,10h1v5c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5h1c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6C5.45,8 5,8.45 5,9v0C5,9.55 5.45,10 6,10zM13,16h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-1h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-1h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v6C12,15.55 12.45,16 13,16zM23,11h-1v-1c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-1c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1v0C24,11.45 23.55,11 23,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/luggage.xml b/compose/material/material/icons/generator/raw-icons/rounded/luggage.xml
deleted file mode 100644
index fe535e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H7C5.9,6 5,6.9 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1c1.1,0 2,-0.9 2,-2V8C19,6.9 18.1,6 17,6zM8.75,18L8.75,18C8.34,18 8,17.66 8,17.25v-7.5C8,9.34 8.34,9 8.75,9h0C9.16,9 9.5,9.34 9.5,9.75v7.5C9.5,17.66 9.16,18 8.75,18zM12,18L12,18c-0.41,0 -0.75,-0.34 -0.75,-0.75v-7.5C11.25,9.34 11.59,9 12,9h0c0.41,0 0.75,0.34 0.75,0.75v7.5C12.75,17.66 12.41,18 12,18zM13.5,6h-3V3.5h3V6zM15.25,18L15.25,18c-0.41,0 -0.75,-0.34 -0.75,-0.75v-7.5C14.5,9.34 14.84,9 15.25,9h0C15.66,9 16,9.34 16,9.75v7.5C16,17.66 15.66,18 15.25,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lunch_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/lunch_dining.xml
deleted file mode 100644
index 527b749..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lunch_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.37,14.28c0.79,-0.29 1.17,-0.78 1.99,-0.78c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c0.81,0 1.17,0.46 1.93,0.76c0.67,0.26 1.39,-0.25 1.39,-0.96c0,-0.43 -0.28,-0.81 -0.69,-0.96c-0.97,-0.35 -1.22,-0.83 -2.65,-0.83c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.55,0 -1.96,0.63 -2.68,0.89c-0.39,0.14 -0.65,0.52 -0.65,0.94C2.01,14.03 2.71,14.52 3.37,14.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-1c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9c0.02,-4 -4.28,-6 -10,-6C6.29,3 2,5 2,9v0c0,0.55 0.45,1 1,1h18C21.55,10 22,9.55 22,9L22,9L22,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/lyrics.xml b/compose/material/material/icons/generator/raw-icons/rounded/lyrics.xml
deleted file mode 100644
index 6ae0343..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/lyrics.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9c0,-2.04 1.24,-3.79 3,-4.57V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9c1.1,0 2,-0.9 2,-2v-2.42C15.24,12.8 14,11.05 14,9zM10,14H6v-2h4V14zM13,11H6V9h7V11zM13,8H6V6h7V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.18C19.69,6.07 19.35,6 19,6c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3V3h2V1h-4V6.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/macro_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/macro_off.xml
deleted file mode 100644
index 1a46e79..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/macro_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.2,13.08c-0.64,-0.09 -1.21,0.48 -1.12,1.12C3.67,18.6 7.44,22 12,22C12,17.44 8.6,13.67 4.2,13.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5c1.38,0 2.5,1.12 2.5,2.5c0,0.99 -0.58,1.84 -1.42,2.25l2.48,2.48c0.11,0.02 0.23,0.03 0.35,0.03c1.38,0 2.5,-1.12 2.5,-2.5c0,-1 -0.59,-1.85 -1.43,-2.25c0.84,-0.4 1.43,-1.25 1.43,-2.25c0,-1.38 -1.12,-2.5 -2.5,-2.5c-0.53,0 -1.01,0.16 -1.42,0.44L14.5,3.5C14.5,2.12 13.38,1 12,1S9.5,2.12 9.5,3.5l0.02,0.19C9.12,3.41 8.63,3.25 8.1,3.25c-0.57,0 -1.09,0.2 -1.51,0.52l3.16,3.16C10.16,6.08 11.01,5.5 12,5.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,17.15c0.47,-0.91 0.8,-1.9 0.94,-2.95c0.09,-0.64 -0.48,-1.21 -1.12,-1.12c-1.05,0.14 -2.05,0.47 -2.95,0.94L19.98,17.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l3.93,3.93c-0.35,0.52 -0.53,1.17 -0.38,1.89c0.22,1.13 1.26,1.98 2.41,2c0.54,0.01 1.02,-0.15 1.44,-0.43l0.02,0.02L9.5,12.5c0,1.38 1.12,2.5 2.5,2.5c0.05,0 0.1,-0.01 0.16,-0.02l1.64,1.64C12.67,18.12 12,19.98 12,22c2.02,0 3.88,-0.67 5.38,-1.79l1.69,1.69c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mail.xml b/compose/material/material/icons/generator/raw-icons/rounded/mail.xml
deleted file mode 100644
index d171466..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM19.6,8.25l-6.54,4.09c-0.65,0.41 -1.47,0.41 -2.12,0L4.4,8.25c-0.25,-0.16 -0.4,-0.43 -0.4,-0.72 0,-0.67 0.73,-1.07 1.3,-0.72L12,11l6.7,-4.19c0.57,-0.35 1.3,0.05 1.3,0.72 0,0.29 -0.15,0.56 -0.4,0.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mail_lock.xml b/compose/material/material/icons/generator/raw-icons/rounded/mail_lock.xml
deleted file mode 100644
index 5265880..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mail_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.97V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h12v-5.03c0,-2.76 2.24,-5 5,-5H22zM19.6,8.25l-6.54,4.09c-0.65,0.41 -1.47,0.41 -2.12,0L4.4,8.25C4.15,8.09 4,7.82 4,7.53v0c0,-0.67 0.73,-1.07 1.3,-0.72L12,11l6.7,-4.19C19.27,6.46 20,6.86 20,7.53v0C20,7.82 19.85,8.09 19.6,8.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C24,15.45 23.55,15 23,15zM22,15h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mail_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/mail_outline.xml
deleted file mode 100644
index 27fd8be..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mail_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18c-0.55,0 -1,-0.45 -1,-1L4,8l6.94,4.34c0.65,0.41 1.47,0.41 2.12,0L20,8v9c0,0.55 -0.45,1 -1,1zM12,11L4,6h16l-8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/male.xml b/compose/material/material/icons/generator/raw-icons/rounded/male.xml
deleted file mode 100644
index fe73992..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/male.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h1.58l-3.97,3.97C11.73,9.36 10.66,9 9.5,9C6.46,9 4,11.46 4,14.5C4,17.54 6.46,20 9.5,20s5.5,-2.46 5.5,-5.5c0,-1.16 -0.36,-2.23 -0.97,-3.12L18,7.42V9c0,0.55 0.45,1 1,1s1,-0.45 1,-1V5C20,4.45 19.55,4 19,4zM9.5,18C7.57,18 6,16.43 6,14.5C6,12.57 7.57,11 9.5,11s3.5,1.57 3.5,3.5C13,16.43 11.43,18 9.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/man.xml b/compose/material/material/icons/generator/raw-icons/rounded/man.xml
deleted file mode 100644
index d8f416b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/man.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v5c0,0.55 0.45,1 1,1h1v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-6h1c0.55,0 1,-0.45 1,-1V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/man_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/man_2.xml
deleted file mode 100644
index c67d12c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/man_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v5c0,0.55 0.45,1 1,1h1.5v5.5c0,0.83 0.67,1.5 1.5,1.5h0c0.83,0 1.5,-0.67 1.5,-1.5V15H15c0.55,0 1,-0.45 1,-1V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/man_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/man_3.xml
deleted file mode 100644
index 10be7186..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/man_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v5c0,0.55 0.45,1 1,1h1v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-6h1c0.55,0 1,-0.45 1,-1V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.65,5.9L10.1,4.35c-0.2,-0.2 -0.2,-0.51 0,-0.71l1.54,-1.54c0.2,-0.2 0.51,-0.2 0.71,0l1.54,1.54c0.2,0.2 0.2,0.51 0,0.71L12.35,5.9C12.16,6.09 11.84,6.09 11.65,5.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/man_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/man_4.xml
deleted file mode 100644
index 7289be0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/man_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.75,7h-3.5C9.04,7 8.11,8.07 8.27,9.26L9.82,20.7c0.1,0.74 0.74,1.3 1.49,1.3h1.38c0.75,0 1.39,-0.55 1.49,-1.3l1.56,-11.44C15.89,8.07 14.96,7 13.75,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/manage_accounts.xml b/compose/material/material/icons/generator/raw-icons/rounded/manage_accounts.xml
deleted file mode 100644
index 762b060..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/manage_accounts.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,13.02C10.45,13.01 10.23,13 10,13c-2.42,0 -4.68,0.67 -6.61,1.82C2.51,15.34 2,16.32 2,17.35V19c0,0.55 0.45,1 1,1h8.26C10.47,18.87 10,17.49 10,16C10,14.93 10.25,13.93 10.67,13.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0,-0.22 -0.03,-0.42 -0.06,-0.63l0.84,-0.73c0.18,-0.16 0.22,-0.42 0.1,-0.63l-0.59,-1.02c-0.12,-0.21 -0.37,-0.3 -0.59,-0.22l-1.06,0.36c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63l-0.22,-1.09c-0.05,-0.23 -0.25,-0.4 -0.49,-0.4h-1.18c-0.24,0 -0.44,0.17 -0.49,0.4l-0.22,1.09c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.06,-0.36c-0.23,-0.08 -0.47,0.02 -0.59,0.22l-0.59,1.02c-0.12,0.21 -0.08,0.47 0.1,0.63l0.84,0.73c-0.03,0.21 -0.06,0.41 -0.06,0.63s0.03,0.42 0.06,0.63l-0.84,0.73c-0.18,0.16 -0.22,0.42 -0.1,0.63l0.59,1.02c0.12,0.21 0.37,0.3 0.59,0.22l1.06,-0.36c0.32,0.27 0.68,0.48 1.08,0.63l0.22,1.09c0.05,0.23 0.25,0.4 0.49,0.4h1.18c0.24,0 0.44,-0.17 0.49,-0.4l0.22,-1.09c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.06,0.36c0.23,0.08 0.47,-0.02 0.59,-0.22l0.59,-1.02c0.12,-0.21 0.08,-0.47 -0.1,-0.63l-0.84,-0.73C20.72,16.42 20.75,16.22 20.75,16zM17,18c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S18.1,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/manage_history.xml b/compose/material/material/icons/generator/raw-icons/rounded/manage_history.xml
deleted file mode 100644
index 8aee5f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/manage_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.75,19c0,-0.22 -0.03,-0.42 -0.06,-0.63l0.84,-0.73c0.18,-0.16 0.22,-0.42 0.1,-0.63l-0.59,-1.02c-0.12,-0.21 -0.37,-0.3 -0.59,-0.22l-1.06,0.36c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63l-0.22,-1.09c-0.05,-0.23 -0.25,-0.4 -0.49,-0.4h-1.18c-0.24,0 -0.44,0.17 -0.49,0.4l-0.22,1.09c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.06,-0.36c-0.23,-0.08 -0.47,0.02 -0.59,0.22l-0.59,1.02c-0.12,0.21 -0.08,0.47 0.1,0.63l0.84,0.73c-0.03,0.21 -0.06,0.41 -0.06,0.63s0.03,0.42 0.06,0.63l-0.84,0.73c-0.18,0.16 -0.22,0.42 -0.1,0.63l0.59,1.02c0.12,0.21 0.37,0.3 0.59,0.22l1.06,-0.36c0.32,0.27 0.68,0.48 1.08,0.63l0.22,1.09c0.05,0.23 0.25,0.4 0.49,0.4h1.18c0.24,0 0.44,-0.17 0.49,-0.4l0.22,-1.09c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.06,0.36c0.23,0.08 0.47,-0.02 0.59,-0.22l0.59,-1.02c0.12,-0.21 0.08,-0.47 -0.1,-0.63l-0.84,-0.73C22.72,19.42 22.75,19.22 22.75,19zM19,21c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S20.1,21 19,21zM12,7c-0.55,0 -1,0.45 -1,1v4c0,0.27 0.11,0.52 0.29,0.71l2.07,2.07l1.04,-1.79L13,11.59V8C13,7.45 12.55,7 12,7zM4.26,13c-0.65,0 -1.14,0.61 -0.98,1.24C4.28,18.13 7.8,21 12,21c0.02,0 0.05,0 0.07,0l-1.21,-2.09c-2.75,-0.45 -4.96,-2.51 -5.64,-5.18C5.11,13.29 4.71,13 4.26,13zM4,10c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1.36C6.65,4.32 9.17,3 12,3c4.97,0 9,4.03 9,9h-2c0,-3.86 -3.14,-7 -7,-7C9.63,5 7.53,6.19 6.26,8H8c0.55,0 1,0.45 1,1s-0.45,1 -1,1H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/manage_search.xml b/compose/material/material/icons/generator/raw-icons/rounded/manage_search.xml
deleted file mode 100644
index ab0fa50..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/manage_search.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9H3C2.45,9 2,8.55 2,8v0c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v0C7,8.55 6.55,9 6,9zM6,12H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v0C7,12.45 6.55,12 6,12zM19.88,18.29l-3.12,-3.12c-0.86,0.56 -1.89,0.88 -3,0.82c-2.37,-0.11 -4.4,-1.96 -4.72,-4.31C8.6,8.33 11.49,5.5 14.87,6.07c1.95,0.33 3.57,1.85 4,3.78c0.33,1.46 0.01,2.82 -0.7,3.9l3.13,3.13c0.39,0.39 0.39,1.02 0,1.41l0,0C20.91,18.68 20.27,18.68 19.88,18.29zM17,11c0,-1.65 -1.35,-3 -3,-3s-3,1.35 -3,3s1.35,3 3,3S17,12.65 17,11zM3,19h8c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1v0C2,18.55 2.45,19 3,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/map.xml b/compose/material/material/icons/generator/raw-icons/rounded/map.xml
deleted file mode 100644
index b6f2bc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.65,4.98l-5,-1.75c-0.42,-0.15 -0.88,-0.15 -1.3,-0.01L4.36,4.56C3.55,4.84 3,5.6 3,6.46v11.85c0,1.41 1.41,2.37 2.72,1.86l2.93,-1.14c0.22,-0.09 0.47,-0.09 0.69,-0.01l5,1.75c0.42,0.15 0.88,0.15 1.3,0.01l3.99,-1.34c0.81,-0.27 1.36,-1.04 1.36,-1.9V5.69c0,-1.41 -1.41,-2.37 -2.72,-1.86l-2.93,1.14c-0.22,0.08 -0.46,0.09 -0.69,0.01zM15,18.89l-6,-2.11V5.11l6,2.11v11.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/maps_home_work.xml b/compose/material/material/icons/generator/raw-icons/rounded/maps_home_work.xml
deleted file mode 100644
index 438a3a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/maps_home_work.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.16,10.4l-5,-3.57c-0.7,-0.5 -1.63,-0.5 -2.32,0l-5,3.57C1.31,10.78 1,11.38 1,12.03V20c0,0.55 0.45,1 1,1h4v-6h4v6h4c0.55,0 1,-0.45 1,-1v-7.97C15,11.38 14.69,10.78 14.16,10.4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.03,3h-9.06C10.88,3 10,3.88 10,4.97l0.09,0.09c0.08,0.05 0.16,0.09 0.24,0.14l5,3.57c0.76,0.54 1.3,1.34 1.54,2.23H19v2h-2v2h2v2h-2v3v1h4.03c1.09,0 1.97,-0.88 1.97,-1.97V4.97C23,3.88 22.12,3 21.03,3zM19,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/maps_ugc.xml b/compose/material/material/icons/generator/raw-icons/rounded/maps_ugc.xml
deleted file mode 100644
index 753a785..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/maps_ugc.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.97,0 8.9,4.56 7.82,9.72c-0.68,3.23 -3.4,5.74 -6.67,6.2c-1.59,0.22 -3.14,-0.01 -4.58,-0.7c-0.27,-0.13 -0.56,-0.19 -0.86,-0.19c-0.19,0 -0.38,0.03 -0.56,0.08l-2.31,0.68c-0.38,0.11 -0.74,-0.24 -0.63,-0.63l0.7,-2.39c0.13,-0.45 0.07,-0.92 -0.14,-1.35C4.26,14.34 4,13.18 4,12C4,7.59 7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,1.54 0.36,2.98 0.97,4.29l-1.46,4.96C1.29,22 2,22.71 2.76,22.48l4.96,-1.46c1.66,0.79 3.56,1.15 5.58,0.89c4.56,-0.59 8.21,-4.35 8.66,-8.92C22.53,7.03 17.85,2 12,2L12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8L12,8c-0.55,0 -1,0.45 -1,1v2H9c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2V9C13,8.45 12.55,8 12,8z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/margin.xml b/compose/material/material/icons/generator/raw-icons/rounded/margin.xml
deleted file mode 100644
index 57fdde4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/margin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5zM9,8c0,0.55 -0.45,1 -1,1S7,8.55 7,8s0.45,-1 1,-1S9,7.45 9,8zM13,8c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,7.45 13,8zM17,8c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1C16.55,7 17,7.45 17,8zM17,12c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1C16.55,11 17,11.45 17,12zM13,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,11.45 13,12zM9,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S9,11.45 9,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mark_as_unread.xml b/compose/material/material/icons/generator/raw-icons/rounded/mark_as_unread.xml
deleted file mode 100644
index e9d3388..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mark_as_unread.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.23,7h2.6c-0.06,-0.47 -0.36,-0.94 -0.79,-1.17L11.4,2.45c-0.56,-0.29 -1.23,-0.29 -1.8,-0.01L2.8,5.83C2.32,6.09 2,6.64 2,7.17V15c0,1.1 0.9,2 2,2V7.4L10.5,4L16.23,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8H7c-1.1,0 -2,0.9 -2,2v9c0,1.1 0.9,2 2,2h13c1.1,0 2,-0.9 2,-2v-9C22,8.9 21.1,8 20,8zM20,11.46c0,0.33 -0.19,0.64 -0.48,0.79l-5.61,2.88c-0.25,0.13 -0.56,0.13 -0.81,0l-5.61,-2.88C7.19,12.1 7,11.79 7,11.46v0c0,-0.67 0.7,-1.1 1.3,-0.79l5.2,2.67l5.2,-2.67C19.3,10.36 20,10.79 20,11.46L20,11.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mark_chat_read.xml b/compose/material/material/icons/generator/raw-icons/rounded/mark_chat_read.xml
deleted file mode 100644
index 7fba7aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mark_chat_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.05,19.29c-0.39,0.39 -1.02,0.39 -1.41,0l-2.12,-2.12c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L18.05,19.29zM12,17c0,-3.87 3.13,-7 7,-7c1.08,0 2.09,0.25 3,0.68V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2,2.9 2,4v18l4,-4h6v0c0,-0.17 0.01,-0.33 0.03,-0.5C12.01,17.33 12,17.17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mark_chat_unread.xml b/compose/material/material/icons/generator/raw-icons/rounded/mark_chat_unread.xml
deleted file mode 100644
index cd605e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mark_chat_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.98V16c0,1.1 -0.9,2 -2,2H6l-4,4V4c0,-1.1 0.9,-2 2,-2h10.1C14.04,2.32 14,2.66 14,3c0,2.76 2.24,5 5,5C20.13,8 21.16,7.61 22,6.98zM16,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,1.34 16,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mark_email_read.xml b/compose/material/material/icons/generator/raw-icons/rounded/mark_email_read.xml
deleted file mode 100644
index cbcad37..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mark_email_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.05,21.29c-0.39,0.39 -1.02,0.39 -1.41,0l-2.12,-2.12c-0.39,-0.39 -0.39,-1.02 0,-1.41h0c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L18.05,21.29zM12.08,20H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2v6.68C21.09,12.25 20.08,12 19,12c-3.87,0 -7,3.13 -7,7C12,19.34 12.03,19.67 12.08,20zM11.47,12.67c0.32,0.2 0.74,0.2 1.06,0l7.07,-4.42C19.85,8.09 20,7.82 20,7.53c0,-0.67 -0.73,-1.07 -1.3,-0.72L12,11L5.3,6.81C4.73,6.46 4,6.86 4,7.53c0,0.29 0.15,0.56 0.4,0.72L11.47,12.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mark_email_unread.xml b/compose/material/material/icons/generator/raw-icons/rounded/mark_email_unread.xml
deleted file mode 100644
index da86869..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mark_email_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10c1.13,0 2.16,-0.39 3,-1.02V18c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10.1C14.04,4.32 14,4.66 14,5c0,1.48 0.65,2.79 1.67,3.71L12,11L5.3,6.81C4.73,6.46 4,6.86 4,7.53c0,0.29 0.15,0.56 0.4,0.72l7.07,4.42c0.32,0.2 0.74,0.2 1.06,0l4.77,-2.98C17.84,9.88 18.4,10 19,10zM16,5c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,3.34 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mark_unread_chat_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/mark_unread_chat_alt.xml
deleted file mode 100644
index a106dde..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mark_unread_chat_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8C6.45,8 6,7.55 6,7c0,-0.55 0.45,-1 1,-1h8.03c-1.21,-1.6 -1.08,-3.21 -0.92,-4H4.01c-1.1,0 -2,0.89 -2,2L2,19.58c0,0.89 1.08,1.34 1.71,0.71L6,18h14c1.1,0 2,-0.9 2,-2V6.97C21.16,7.61 20.13,8 19,8H7zM13,14H7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1C14,13.55 13.55,14 13,14zM17,11H7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1C18,10.55 17.55,11 17,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/markunread.xml b/compose/material/material/icons/generator/raw-icons/rounded/markunread.xml
deleted file mode 100644
index d171466..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/markunread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM19.6,8.25l-6.54,4.09c-0.65,0.41 -1.47,0.41 -2.12,0L4.4,8.25c-0.25,-0.16 -0.4,-0.43 -0.4,-0.72 0,-0.67 0.73,-1.07 1.3,-0.72L12,11l6.7,-4.19c0.57,-0.35 1.3,0.05 1.3,0.72 0,0.29 -0.15,0.56 -0.4,0.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/markunread_mailbox.xml b/compose/material/material/icons/generator/raw-icons/rounded/markunread_mailbox.xml
deleted file mode 100644
index 166591a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/markunread_mailbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6H10v5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V4h5c0.55,0 1,-0.45 1,-1V1c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/masks.xml b/compose/material/material/icons/generator/raw-icons/rounded/masks.xml
deleted file mode 100644
index 2e3dd7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/masks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,6c-1.31,0 -2.37,1.01 -2.48,2.3C15.14,7.8 14.18,6.5 12,6.5c-2.19,0 -3.14,1.3 -5.02,1.8C6.87,7.02 5.81,6 4.5,6C3.12,6 2,7.12 2,8.5V9c0,6 3.6,7.81 6.52,7.98C9.53,17.62 10.72,18 12,18s2.47,-0.38 3.48,-1.02C18.4,16.81 22,15 22,9V8.5C22,7.12 20.88,6 19.5,6zM3.5,9V8.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3c0,1.28 0.38,2.47 1.01,3.48C4.99,14.27 3.5,12.65 3.5,9zM14.3,11.01c-0.4,-0.17 -0.72,-0.36 -1.01,-0.53C12.83,10.2 12.49,10 12,10c-0.49,0 -0.84,0.2 -1.31,0.48c-0.28,0.17 -0.6,0.35 -0.98,0.51C9.37,11.14 9,10.91 9,10.54v0c0,-0.2 0.11,-0.38 0.29,-0.45c0.34,-0.14 0.62,-0.31 0.88,-0.46C10.72,9.3 11.23,9 12,9s1.27,0.3 1.8,0.62c0.27,0.16 0.55,0.33 0.9,0.48c0.18,0.08 0.29,0.26 0.29,0.45C15,10.91 14.63,11.15 14.3,11.01zM20.5,9c0,3.65 -1.49,5.27 -3.01,5.98c0.64,-1.01 1.01,-2.2 1.01,-3.48v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/maximize.xml b/compose/material/material/icons/generator/raw-icons/rounded/maximize.xml
deleted file mode 100644
index f0f1875d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/maximize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h16c0.55,0 1,0.45 1,1s-0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/media_bluetooth_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/media_bluetooth_off.xml
deleted file mode 100644
index 2771f46..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/media_bluetooth_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V5c0,-1.1 0.9,-2 2,-2h2c1.1,0 2,0.9 2,2v0c0,1.1 -0.9,2 -2,2h-2v1.17L9,6.17zM19.42,15l2.18,2.17c0.22,0.22 0.22,0.58 0,0.8l0,0c-0.22,0.22 -0.58,0.22 -0.8,0l-5.98,-5.98c-0.22,-0.22 -0.22,-0.58 0,-0.8l0,0c0.22,-0.22 0.58,-0.22 0.8,0l2.35,2.35V9.61c0,-0.45 0.54,-0.67 0.85,-0.35l2.82,2.82c0.2,0.2 0.2,0.51 0,0.71L19.42,15zM19.17,13.55l1.13,-1.13l-1.13,-1.13V13.55zM20.49,20.49c0.39,0.39 0.39,1.02 0,1.41l0,0c-0.39,0.39 -1.02,0.39 -1.41,0l-3.28,-3.28l-0.16,0.16c-0.23,0.23 -0.62,0.23 -0.85,0l0,0c-0.23,-0.23 -0.23,-0.62 0,-0.85l0.16,-0.16L11,13.83l0,3.02c0,2.07 -1.68,4.01 -3.74,4.14C4.94,21.13 3,19.29 3,17c0,-2.21 1.79,-4 4.01,-4c0.73,0 1.41,0.21 2,0.55v-1.72L2.1,4.92c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0L20.49,20.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/media_bluetooth_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/media_bluetooth_on.xml
deleted file mode 100644
index b93c5f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/media_bluetooth_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5l0.01,8.55c-0.6,-0.34 -1.28,-0.55 -2,-0.55C4.79,13 3,14.79 3,17s1.79,4 4.01,4S11,19.21 11,17V7h2c1.1,0 2,-0.9 2,-2v0c0,-1.1 -0.9,-2 -2,-2h-2C9.9,3 9,3.9 9,5zM20.29,11.72l-2.47,-2.47c-0.32,-0.31 -0.85,-0.09 -0.85,0.35v3.94l-2.33,-2.33c-0.23,-0.23 -0.61,-0.23 -0.85,0l0,0c-0.23,0.23 -0.23,0.62 0,0.85L16.73,15l-2.93,2.93c-0.23,0.23 -0.23,0.61 0,0.85l0,0c0.23,0.23 0.61,0.23 0.85,0l2.33,-2.33v3.94c0,0.45 0.54,0.67 0.85,0.35l2.46,-2.46c0.39,-0.39 0.39,-1.02 0,-1.41L18.42,15l1.87,-1.86C20.68,12.75 20.68,12.11 20.29,11.72zM18.17,11.3l1.13,1.13l-1.13,1.13V11.3zM19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mediation.xml b/compose/material/material/icons/generator/raw-icons/rounded/mediation.xml
deleted file mode 100644
index be7a7aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mediation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h-5.06c-0.34,3.1 -2.26,5.72 -4.94,7.05c-0.03,1.81 -1.66,3.23 -3.55,2.9c-1.2,-0.21 -2.19,-1.2 -2.4,-2.4C1.71,18.65 3.16,17 5,17c0.95,0 1.78,0.45 2.33,1.14c1.9,-1.03 3.26,-2.91 3.58,-5.14h-3.1c-0.48,1.34 -1.86,2.24 -3.42,1.94c-1.18,-0.23 -2.13,-1.2 -2.35,-2.38C1.7,10.66 3.16,9 5,9c1.3,0 2.4,0.84 2.82,2h3.1C10.6,8.77 9.23,6.9 7.33,5.86c-0.64,0.8 -1.67,1.28 -2.81,1.1C3.29,6.77 2.26,5.77 2.05,4.54C1.72,2.65 3.17,1 5,1c1.64,0 2.96,1.31 2.99,2.95c2.68,1.33 4.6,3.95 4.94,7.05H18V9.21c0,-0.45 0.54,-0.67 0.85,-0.35l2.79,2.79c0.2,0.2 0.2,0.51 0,0.71l-2.79,2.79C18.54,15.46 18,15.24 18,14.79V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/medical_information.xml b/compose/material/material/icons/generator/raw-icons/rounded/medical_information.xml
deleted file mode 100644
index 495ef7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/medical_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM11,4h2v5h-2V4zM7,16H6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h1c0.55,0 1,0.45 1,1s-0.45,1 -1,1H9v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V16zM13.75,14.5c-0.41,0 -0.75,-0.34 -0.75,-0.75S13.34,13 13.75,13h4.5c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H13.75zM13.75,17.5c-0.41,0 -0.75,-0.34 -0.75,-0.75S13.34,16 13.75,16h2.5c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75H13.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/medical_services.xml b/compose/material/material/icons/generator/raw-icons/rounded/medical_services.xml
deleted file mode 100644
index baeb04c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/medical_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4V4c0,-1.1 -0.9,-2 -2,-2h-4C8.9,2 8,2.9 8,4v2H4C2.9,6 2,6.9 2,8v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM10,4h4v2h-4V4zM15,15h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2H9c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h2v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1C16,14.55 15.55,15 15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/medication.xml b/compose/material/material/icons/generator/raw-icons/rounded/medication.xml
deleted file mode 100644
index fbdc9428..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/medication.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3H7C6.45,3 6,3.45 6,4v0c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1v0C18,3.45 17.55,3 17,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6H7C5.9,6 5,6.9 5,8v11c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V8C19,6.9 18.1,6 17,6zM14.5,15h-1v1c0,0.83 -0.67,1.5 -1.5,1.5h0c-0.83,0 -1.5,-0.67 -1.5,-1.5v-1h-1C8.67,15 8,14.33 8,13.5v0C8,12.67 8.67,12 9.5,12h1v-1c0,-0.83 0.67,-1.5 1.5,-1.5h0c0.83,0 1.5,0.67 1.5,1.5v1h1c0.83,0 1.5,0.67 1.5,1.5v0C16,14.33 15.33,15 14.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/meeting_room.xml b/compose/material/material/icons/generator/raw-icons/rounded/meeting_room.xml
deleted file mode 100644
index ac111d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19h-1V5c0,-0.55 -0.45,-1 -1,-1h-4c0,-0.55 -0.45,-1 -1,-1H6C5.45,3 5,3.45 5,4v15H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h9c0.55,0 1,-0.45 1,-1V6h3v14c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1S20.55,19 20,19zM11,13L11,13c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C12,12.55 11.55,13 11,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/memory.xml b/compose/material/material/icons/generator/raw-icons/rounded/memory.xml
deleted file mode 100644
index ea4f4a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/memory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM13,13h-2v-2h2v2zM21,10c0,-0.55 -0.45,-1 -1,-1h-1L19,7c0,-1.1 -0.9,-2 -2,-2h-2L15,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h-2L11,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L7,5c-1.1,0 -2,0.9 -2,2v2L4,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v2L4,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v2c0,1.1 0.9,2 2,2h2v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h2v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h2c1.1,0 2,-0.9 2,-2v-2h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-2h1c0.55,0 1,-0.45 1,-1zM16,17L8,17c-0.55,0 -1,-0.45 -1,-1L7,8c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/menu.xml b/compose/material/material/icons/generator/raw-icons/rounded/menu.xml
deleted file mode 100644
index ff67e556..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,16c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,13h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,7c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/menu_book.xml b/compose/material/material/icons/generator/raw-icons/rounded/menu_book.xml
deleted file mode 100644
index cf2be78..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/menu_book.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,4.5c-1.95,0 -4.05,0.4 -5.5,1.5c-1.45,-1.1 -3.55,-1.5 -5.5,-1.5c-1.45,0 -2.99,0.22 -4.28,0.79C1.49,5.62 1,6.33 1,7.14l0,11.28c0,1.3 1.22,2.26 2.48,1.94C4.46,20.11 5.5,20 6.5,20c1.56,0 3.22,0.26 4.56,0.92c0.6,0.3 1.28,0.3 1.87,0c1.34,-0.67 3,-0.92 4.56,-0.92c1,0 2.04,0.11 3.02,0.36c1.26,0.33 2.48,-0.63 2.48,-1.94l0,-11.28c0,-0.81 -0.49,-1.52 -1.22,-1.85C20.49,4.72 18.95,4.5 17.5,4.5zM21,17.23c0,0.63 -0.58,1.09 -1.2,0.98c-0.75,-0.14 -1.53,-0.2 -2.3,-0.2c-1.7,0 -4.15,0.65 -5.5,1.5V8c1.35,-0.85 3.8,-1.5 5.5,-1.5c0.92,0 1.83,0.09 2.7,0.28c0.46,0.1 0.8,0.51 0.8,0.98V17.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.98,11.01c-0.32,0 -0.61,-0.2 -0.71,-0.52c-0.13,-0.39 0.09,-0.82 0.48,-0.94c1.54,-0.5 3.53,-0.66 5.36,-0.45c0.41,0.05 0.71,0.42 0.66,0.83c-0.05,0.41 -0.42,0.71 -0.83,0.66c-1.62,-0.19 -3.39,-0.04 -4.73,0.39C14.13,10.99 14.05,11.01 13.98,11.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.98,13.67c-0.32,0 -0.61,-0.2 -0.71,-0.52c-0.13,-0.39 0.09,-0.82 0.48,-0.94c1.53,-0.5 3.53,-0.66 5.36,-0.45c0.41,0.05 0.71,0.42 0.66,0.83c-0.05,0.41 -0.42,0.71 -0.83,0.66c-1.62,-0.19 -3.39,-0.04 -4.73,0.39C14.13,13.66 14.05,13.67 13.98,13.67z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.98,16.33c-0.32,0 -0.61,-0.2 -0.71,-0.52c-0.13,-0.39 0.09,-0.82 0.48,-0.94c1.53,-0.5 3.53,-0.66 5.36,-0.45c0.41,0.05 0.71,0.42 0.66,0.83c-0.05,0.41 -0.42,0.7 -0.83,0.66c-1.62,-0.19 -3.39,-0.04 -4.73,0.39C14.13,16.32 14.05,16.33 13.98,16.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/menu_open.xml b/compose/material/material/icons/generator/raw-icons/rounded/menu_open.xml
deleted file mode 100644
index 3952985..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/menu_open.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h11c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v0C3,17.55 3.45,18 4,18zM4,13h8c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v0C3,12.55 3.45,13 4,13zM3,7L3,7c0,0.55 0.45,1 1,1h11c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4C3.45,6 3,6.45 3,7zM20.3,14.88L17.42,12l2.88,-2.88c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.59,3.59c-0.39,0.39 -0.39,1.02 0,1.41l3.59,3.59c0.39,0.39 1.02,0.39 1.41,0l0,0C20.68,15.91 20.69,15.27 20.3,14.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/merge.xml b/compose/material/material/icons/generator/raw-icons/rounded/merge.xml
deleted file mode 100644
index ea56f41..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/merge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.71,7.71c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.59,-2.59c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.39,0.39 0.39,1.02 0,1.41c-0.39,0.39 -1.02,0.39 -1.41,0L13,6.83v5.1c0,1.06 0.42,2.08 1.17,2.83l4.12,4.12c0.39,0.39 0.39,1.02 0,1.41s-1.02,0.39 -1.41,0L12,15.41l-4.88,4.88c-0.39,0.39 -1.02,0.39 -1.41,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l4.12,-4.12c0.75,-0.75 1.17,-1.77 1.17,-2.83v-5.1l-0.88,0.88C9.73,8.1 9.1,8.1 8.71,7.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/merge_type.xml b/compose/material/material/icons/generator/raw-icons/rounded/merge_type.xml
deleted file mode 100644
index 9cf562c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/merge_type.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.7,19.7c0.39,-0.39 0.39,-1.02 0,-1.41l-2.7,-2.7L13.59,17l2.7,2.7c0.39,0.39 1.03,0.39 1.41,0zM8.71,8H11v5.59l-4.71,4.7c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l4.71,-4.7c0.38,-0.38 0.59,-0.88 0.59,-1.41V8h2.29c0.45,0 0.67,-0.54 0.35,-0.85l-3.29,-3.29c-0.2,-0.2 -0.51,-0.2 -0.71,0L8.35,7.15c-0.31,0.31 -0.09,0.85 0.36,0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/message.xml b/compose/material/material/icons/generator/raw-icons/rounded/message.xml
deleted file mode 100644
index 8d0c7b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/message.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM17,14L7,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,11L7,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,8L7,8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mic.xml b/compose/material/material/icons/generator/raw-icons/rounded/mic.xml
deleted file mode 100644
index 137e720..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zM17.91,11c-0.49,0 -0.9,0.36 -0.98,0.85C16.52,14.2 14.47,16 12,16s-4.52,-1.8 -4.93,-4.15c-0.08,-0.49 -0.49,-0.85 -0.98,-0.85 -0.61,0 -1.09,0.54 -1,1.14 0.49,3 2.89,5.35 5.91,5.78L11,20c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2.08c3.02,-0.43 5.42,-2.78 5.91,-5.78 0.1,-0.6 -0.39,-1.14 -1,-1.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mic_external_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/mic_external_off.xml
deleted file mode 100644
index 03d3f0fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mic_external_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6c0,-1.24 1.14,-2.22 2.42,-1.96C17.36,4.24 18,5.13 18,6.09v9.08l2,2V6.16c0,-2.08 -1.68,-4.03 -3.76,-4.15C13.92,1.87 12,3.71 12,6v3.17l2,2V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5c0,-1.66 -1.34,-3 -3,-3C6.38,2 5.81,2.19 5.33,2.5l4.15,4.15C9.8,6.18 10,5.61 10,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,2.81L1.39,2.81C1,3.2 1,3.83 1.39,4.22L5.17,8H5.1c-0.59,0 -1.05,0.51 -1,1.1l0.85,8.45C4.98,17.81 5.2,18 5.45,18H6c0,2.34 2.01,4.21 4.39,3.98c2.08,-0.2 3.61,-2.06 3.61,-4.15l0,-1l5.78,5.78c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L2.81,2.81C2.42,2.42 1.78,2.42 1.39,2.81zM12,17.91c0,0.96 -0.64,1.86 -1.58,2.05C9.14,20.22 8,19.24 8,18h0.55c0.26,0 0.47,-0.19 0.5,-0.45l0.52,-5.16L12,14.83V17.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mic_external_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/mic_external_on.xml
deleted file mode 100644
index 6f50ff3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mic_external_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.22,7H4.78C4.3,6.47 4,5.77 4,5c0,-1.66 1.34,-3 3,-3s3,1.34 3,3C10,5.77 9.7,6.47 9.22,7zM16.24,2.01C18.32,2.13 20,4.08 20,6.16L20,21c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1l0,-14.91c0,-0.96 -0.64,-1.86 -1.58,-2.05C15.14,3.78 14,4.76 14,6l0,11.84c0,2.08 -1.68,4.03 -3.76,4.15C7.92,22.13 6,20.29 6,18H5.45c-0.26,0 -0.47,-0.19 -0.5,-0.45L4.11,9.1C4.05,8.51 4.51,8 5.1,8H8.9c0.59,0 1.05,0.51 1,1.1l-0.85,8.45C9.02,17.81 8.8,18 8.55,18H8c0,1.24 1.14,2.22 2.42,1.96c0.94,-0.19 1.58,-1.09 1.58,-2.05L12,6C12,3.71 13.92,1.87 16.24,2.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mic_none.xml b/compose/material/material/icons/generator/raw-icons/rounded/mic_none.xml
deleted file mode 100644
index 4d73267..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mic_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,5zM17.91,11c-0.49,0 -0.9,0.36 -0.98,0.85C16.52,14.2 14.47,16 12,16s-4.52,-1.8 -4.93,-4.15c-0.08,-0.49 -0.49,-0.85 -0.98,-0.85 -0.61,0 -1.09,0.54 -1,1.14 0.49,3 2.89,5.35 5.91,5.78L11,20c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2.08c3.02,-0.43 5.42,-2.78 5.91,-5.78 0.1,-0.6 -0.39,-1.14 -1,-1.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mic_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/mic_off.xml
deleted file mode 100644
index b0790ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mic_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10.6L15,5c0,-1.66 -1.34,-3 -3,-3 -1.54,0 -2.79,1.16 -2.96,2.65L15,10.6zM18.08,11c-0.41,0 -0.77,0.3 -0.83,0.71 -0.05,0.32 -0.12,0.64 -0.22,0.93l1.27,1.27c0.3,-0.6 0.52,-1.25 0.63,-1.94 0.07,-0.51 -0.33,-0.97 -0.85,-0.97zM3.71,3.56c-0.39,0.39 -0.39,1.02 0,1.41L9,10.27v0.43c0,1.19 0.6,2.32 1.63,2.91 0.75,0.43 1.41,0.44 2.02,0.31l1.66,1.66c-0.71,0.33 -1.5,0.52 -2.31,0.52 -2.54,0 -4.88,-1.77 -5.25,-4.39 -0.06,-0.41 -0.42,-0.71 -0.83,-0.71 -0.52,0 -0.92,0.46 -0.85,0.97 0.46,2.96 2.96,5.3 5.93,5.75L11,20c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2.28c0.91,-0.13 1.77,-0.45 2.55,-0.9l3.49,3.49c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/microwave.xml b/compose/material/material/icons/generator/raw-icons/rounded/microwave.xml
deleted file mode 100644
index ee3e813..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/microwave.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.15,9.97L6.15,9.97C5.69,9.51 5.77,8.73 6.33,8.4C6.73,8.18 7.21,8 7.75,8c0.8,0 1.39,0.39 1.81,0.67C9.87,8.88 10.07,9 10.25,9c0.13,0 0.26,-0.05 0.39,-0.12c0.39,-0.22 0.88,-0.16 1.2,0.16l0,0c0.46,0.46 0.38,1.24 -0.18,1.56c-0.39,0.23 -0.87,0.4 -1.41,0.4c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,10.12 7.94,10 7.75,10c-0.13,0 -0.26,0.05 -0.39,0.12C6.96,10.35 6.47,10.28 6.15,9.97zM7.75,15c0.19,0 0.38,0.12 0.71,0.34c0.42,0.28 1,0.66 1.79,0.66c0.54,0 1.02,-0.17 1.41,-0.4c0.56,-0.32 0.64,-1.1 0.18,-1.56l0,0c-0.32,-0.32 -0.81,-0.38 -1.2,-0.16C10.51,13.95 10.38,14 10.25,14c-0.18,0 -0.38,-0.12 -0.69,-0.33C9.14,13.39 8.55,13 7.75,13c-0.54,0 -1.02,0.18 -1.42,0.4c-0.56,0.33 -0.64,1.11 -0.18,1.56l0,0c0.32,0.32 0.81,0.38 1.2,0.16C7.49,15.05 7.62,15 7.75,15zM22,6v12c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h16C21.1,4 22,4.9 22,6zM14,6H4v12h10V6zM19,16c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1C18.55,17 19,16.55 19,16zM19,12c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1C18.55,13 19,12.55 19,12zM19,7h-2v2h2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/military_tech.xml b/compose/material/material/icons/generator/raw-icons/rounded/military_tech.xml
deleted file mode 100644
index ce10455..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/military_tech.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.43V3c0,-0.55 -0.45,-1 -1,-1H8C7.45,2 7,2.45 7,3v7.43c0,0.35 0.18,0.68 0.49,0.86l4.18,2.51l-0.99,2.34l-2.22,0.19C8,16.37 7.82,16.92 8.16,17.21l1.69,1.46l-0.51,2.18c-0.1,0.43 0.37,0.77 0.75,0.54L12,20.23l1.91,1.15c0.38,0.23 0.85,-0.11 0.75,-0.54l-0.51,-2.18l1.69,-1.46c0.33,-0.29 0.16,-0.84 -0.29,-0.88l-2.22,-0.19l-0.99,-2.34l4.18,-2.51C16.82,11.11 17,10.79 17,10.43zM13,12.23l-1,0.6l-1,-0.6V3h2V12.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/minimize.xml b/compose/material/material/icons/generator/raw-icons/rounded/minimize.xml
deleted file mode 100644
index 8a1485f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/minimize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/minor_crash.xml b/compose/material/material/icons/generator/raw-icons/rounded/minor_crash.xml
deleted file mode 100644
index 8ccc795..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/minor_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,24c0.82,0 1.5,-0.67 1.5,-1.5v-7.16c0,-0.22 -0.04,-0.45 -0.11,-0.66l-1.97,-5.67C18.72,8.42 18.16,8 17.5,8h-11C5.84,8 5.29,8.42 5.08,9.01l-1.97,5.67C3.04,14.89 3,15.11 3,15.34v7.16C3,23.33 3.68,24 4.5,24S6,23.33 6,22.5V22h12v0.5C18,23.33 18.67,24 19.5,24zM6.85,10h10.29l1.04,3H5.81L6.85,10zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM8.71,5.71c-0.39,0.39 -1.02,0.39 -1.41,0L5.71,4.12c-0.39,-0.39 -0.39,-1.02 0,-1.41s1.02,-0.39 1.41,0l1.59,1.59C9.1,4.68 9.1,5.32 8.71,5.71zM18.29,2.71c0.39,0.39 0.39,1.02 0,1.41l-1.59,1.59c-0.39,0.39 -1.02,0.39 -1.41,0s-0.39,-1.02 0,-1.41l1.59,-1.59C17.27,2.32 17.9,2.32 18.29,2.71zM12,5c-0.55,0 -1,-0.45 -1,-1V1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3C13,4.55 12.55,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/miscellaneous_services.xml b/compose/material/material/icons/generator/raw-icons/rounded/miscellaneous_services.xml
deleted file mode 100644
index 5bbe6bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/miscellaneous_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,13.71l1.4,-2.42c0.09,-0.15 0.05,-0.34 -0.08,-0.45l-1.48,-1.16c0.03,-0.22 0.05,-0.45 0.05,-0.68s-0.02,-0.46 -0.05,-0.69l1.48,-1.16c0.13,-0.11 0.17,-0.3 0.08,-0.45l-1.4,-2.42c-0.09,-0.15 -0.27,-0.21 -0.43,-0.15L12,4.83c-0.36,-0.28 -0.75,-0.51 -1.18,-0.69l-0.26,-1.85C10.53,2.13 10.38,2 10.21,2h-2.8C7.24,2 7.09,2.13 7.06,2.3L6.8,4.15C6.38,4.33 5.98,4.56 5.62,4.84l-1.74,-0.7c-0.16,-0.06 -0.34,0 -0.43,0.15l-1.4,2.42C1.96,6.86 2,7.05 2.13,7.16l1.48,1.16C3.58,8.54 3.56,8.77 3.56,9s0.02,0.46 0.05,0.69l-1.48,1.16C2,10.96 1.96,11.15 2.05,11.3l1.4,2.42c0.09,0.15 0.27,0.21 0.43,0.15l1.74,-0.7c0.36,0.28 0.75,0.51 1.18,0.69l0.26,1.85C7.09,15.87 7.24,16 7.41,16h2.8c0.17,0 0.32,-0.13 0.35,-0.3l0.26,-1.85c0.42,-0.18 0.82,-0.41 1.18,-0.69l1.74,0.7C13.9,13.92 14.08,13.86 14.17,13.71zM8.81,11c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C10.81,10.1 9.91,11 8.81,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.92,18.67l-0.96,-0.74c0.02,-0.14 0.04,-0.29 0.04,-0.44c0,-0.15 -0.01,-0.3 -0.04,-0.44l0.95,-0.74c0.08,-0.07 0.11,-0.19 0.05,-0.29l-0.9,-1.55c-0.05,-0.1 -0.17,-0.13 -0.28,-0.1l-1.11,0.45c-0.23,-0.18 -0.48,-0.33 -0.76,-0.44l-0.17,-1.18C18.73,13.08 18.63,13 18.53,13h-1.79c-0.11,0 -0.21,0.08 -0.22,0.19l-0.17,1.18c-0.27,0.12 -0.53,0.26 -0.76,0.44l-1.11,-0.45c-0.1,-0.04 -0.22,0 -0.28,0.1l-0.9,1.55c-0.05,0.1 -0.04,0.22 0.05,0.29l0.95,0.74c-0.02,0.14 -0.03,0.29 -0.03,0.44c0,0.15 0.01,0.3 0.03,0.44l-0.95,0.74c-0.08,0.07 -0.11,0.19 -0.05,0.29l0.9,1.55c0.05,0.1 0.17,0.13 0.28,0.1l1.11,-0.45c0.23,0.18 0.48,0.33 0.76,0.44l0.17,1.18c0.02,0.11 0.11,0.19 0.22,0.19h1.79c0.11,0 0.21,-0.08 0.22,-0.19l0.17,-1.18c0.27,-0.12 0.53,-0.26 0.75,-0.44l1.12,0.45c0.1,0.04 0.22,0 0.28,-0.1l0.9,-1.55C22.03,18.86 22,18.74 21.92,18.67zM17.63,18.83c-0.74,0 -1.35,-0.6 -1.35,-1.35s0.6,-1.35 1.35,-1.35s1.35,0.6 1.35,1.35S18.37,18.83 17.63,18.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/missed_video_call.xml b/compose/material/material/icons/generator/raw-icons/rounded/missed_video_call.xml
deleted file mode 100644
index a37b5e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/missed_video_call.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5L17,7c0,-0.55 -0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l2.29,2.29c0.63,0.63 1.71,0.18 1.71,-0.71L21,8.91c0,-0.89 -1.08,-1.34 -1.71,-0.71L17,10.5zM10.71,14.29c-0.39,0.39 -1.02,0.39 -1.41,0l-3.18,-3.18v2.55L5,13.66L5,9.72c0,-0.28 0.22,-0.5 0.5,-0.5h3.94v1.11L6.89,10.33l3.11,3.1 4.22,-4.22 0.78,0.79 -4.29,4.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mms.xml b/compose/material/material/icons/generator/raw-icons/rounded/mms.xml
deleted file mode 100644
index a0d99a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2zM5.63,13.19l2.49,-3.2c0.2,-0.25 0.58,-0.26 0.78,-0.01l2.1,2.53 3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8H6.02c-0.41,-0.01 -0.65,-0.49 -0.39,-0.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mobile_friendly.xml b/compose/material/material/icons/generator/raw-icons/rounded/mobile_friendly.xml
deleted file mode 100644
index b1e1bc2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mobile_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H9c-1.1,0 -2,0.9 -2,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V4h10v16H9v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2zM7.01,13.47l-1.92,-1.92c-0.35,-0.35 -0.92,-0.35 -1.27,0s-0.35,0.92 0,1.27l2.47,2.47c0.39,0.39 1.02,0.39 1.41,0l5.85,-5.85c0.35,-0.35 0.35,-0.92 0,-1.27s-0.92,-0.35 -1.27,0l-5.27,5.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mobile_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/mobile_off.xml
deleted file mode 100644
index 2289378..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mobile_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16.44L3.61,3.05c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L5,7.27V21c0,1.1 0.9,2 2,2h10c1.02,0 1.85,-0.77 1.98,-1.75L20,22.27c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L19,18.44l-2,-2zM7,19V9.27L16.73,19H7zM17,5v8.61l2,2V3c0,-1.1 -0.9,-2 -2,-2H7c-0.71,0 -1.33,0.37 -1.68,0.93L8.39,5H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mobile_screen_share.xml b/compose/material/material/icons/generator/raw-icons/rounded/mobile_screen_share.xml
deleted file mode 100644
index a62bfd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mobile_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14zM12.8,13.22v1.75l2.81,-2.62c0.21,-0.2 0.21,-0.53 0,-0.73L12.8,9v1.7c-3.11,0.43 -4.35,2.56 -4.8,4.7 1.11,-1.5 2.58,-2.18 4.8,-2.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mobiledata_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/mobiledata_off.xml
deleted file mode 100644
index 3845acc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mobiledata_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.79,2.79C11.54,6.46 11.76,7 12.21,7H14v4.17l2,2V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l5.9,5.9v6.18l-1.79,0c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.78c0.2,0.19 0.51,0.19 0.71,0l2.79,-2.79c0.32,-0.32 0.09,-0.85 -0.35,-0.85l-1.79,0v-4.18l9.07,9.07c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode.xml
deleted file mode 100644
index 1599eed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.46v3.04c0,0.28 0.22,0.5 0.5,0.5h3.04c0.13,0 0.26,-0.05 0.35,-0.15L17.81,9.94l-3.75,-3.75L3.15,17.1c-0.1,0.1 -0.15,0.22 -0.15,0.36zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode_comment.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode_comment.xml
deleted file mode 100644
index 366bca7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode_edit.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode_edit.xml
deleted file mode 100644
index 89fee4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode_edit.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.46l0,3.04C3,20.78 3.22,21 3.5,21h3.04c0.13,0 0.26,-0.05 0.35,-0.15L17.81,9.94l-3.75,-3.75L3.15,17.1C3.05,17.2 3,17.32 3,17.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83C21.1,6.65 21.1,6.02 20.71,5.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode_edit_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode_edit_outline.xml
deleted file mode 100644
index 89fee4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode_edit_outline.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.46l0,3.04C3,20.78 3.22,21 3.5,21h3.04c0.13,0 0.26,-0.05 0.35,-0.15L17.81,9.94l-3.75,-3.75L3.15,17.1C3.05,17.2 3,17.32 3,17.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83C21.1,6.65 21.1,6.02 20.71,5.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode_fan_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode_fan_off.xml
deleted file mode 100644
index fb9678e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode_fan_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.34,8.36l-2.29,0.82c-0.18,-0.13 -0.38,-0.25 -0.58,-0.34c0.17,-0.83 0.63,-1.58 1.36,-2.06C16.85,5.44 16.18,2 13.39,2c-3.08,0 -4.9,1.47 -5.3,3.26L18.73,15.9c1.5,0.39 3.27,-0.51 3.27,-2.51C22,9 18.99,7.16 16.34,8.36z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41L5.27,8.1C3.77,7.7 2,8.61 2,10.61c0,4.4 3.01,6.24 5.66,5.03l2.29,-0.82c0.18,0.13 0.38,0.25 0.58,0.34c-0.17,0.83 -0.63,1.58 -1.36,2.06C7.15,18.56 7.82,22 10.61,22c3.08,0 4.9,-1.47 5.3,-3.26l3.16,3.16c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode_night.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode_night.xml
deleted file mode 100644
index ce56b3d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode_night.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.93,2.3C9.89,1.8 7.91,1.95 6.16,2.58C5.44,2.84 5.25,3.8 5.85,4.29C8.08,6.12 9.5,8.89 9.5,12c0,3.11 -1.42,5.88 -3.65,7.71c-0.59,0.49 -0.42,1.45 0.31,1.7C7.2,21.79 8.33,22 9.5,22c6.05,0 10.85,-5.38 9.87,-11.6C18.76,6.48 15.78,3.24 11.93,2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode_of_travel.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode_of_travel.xml
deleted file mode 100644
index 79483f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode_of_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10.2C4,5.22 7.8,2 12,2c4,0 7.64,2.92 7.97,7.5l2.32,0c0.45,0 0.67,0.54 0.35,0.85l-3.29,3.29c-0.2,0.2 -0.51,0.2 -0.71,0l-3.29,-3.29c-0.31,-0.31 -0.09,-0.85 0.35,-0.85l2.26,0C17.65,6.24 15.13,4 12,4c-3.35,0 -6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14c0.64,-0.59 1.23,-1.16 1.77,-1.71c-0.17,-0.34 -0.27,-0.72 -0.27,-1.12c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5S17.38,19 16,19c-0.24,0 -0.47,-0.03 -0.69,-0.1c-0.78,0.82 -1.67,1.66 -2.65,2.52c-0.38,0.33 -0.95,0.33 -1.33,0C6.45,17.12 4,13.38 4,10.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mode_standby.xml b/compose/material/material/icons/generator/raw-icons/rounded/mode_standby.xml
deleted file mode 100644
index ef7b898..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mode_standby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,10.34 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/model_training.xml b/compose/material/material/icons/generator/raw-icons/rounded/model_training.xml
deleted file mode 100644
index c438e92..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/model_training.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,13.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5h0C13.93,10 15.5,11.57 15.5,13.5zM13,19.5h-2V20c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V19.5zM19,13c0,1.39 -0.41,2.69 -1.12,3.78c-0.25,0.39 -0.19,0.91 0.14,1.24l0,0c0.44,0.44 1.2,0.38 1.54,-0.15C20.47,16.47 21,14.8 21,13c0,-2.36 -0.91,-4.51 -2.4,-6.12c-0.39,-0.42 -1.05,-0.43 -1.45,-0.03l0,0c-0.38,0.38 -0.38,0.99 -0.02,1.39C18.29,9.49 19,11.16 19,13zM15.65,4.65l-2.79,-2.79C12.54,1.54 12,1.76 12,2.21V4l0,0c-4.97,0 -9,4.03 -9,9c0,1.8 0.53,3.47 1.44,4.88c0.34,0.53 1.1,0.59 1.54,0.15l0,0c0.33,-0.33 0.39,-0.84 0.14,-1.23C4.73,14.65 4.48,11.7 6.25,8.8C7.45,6.85 9.71,5.81 12,6l0,0v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79C15.84,5.16 15.84,4.84 15.65,4.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/monetization_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/monetization_on.xml
deleted file mode 100644
index 4c35f52..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/monetization_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13.41,18.09v0.58c0,0.73 -0.6,1.33 -1.33,1.33h-0.01c-0.73,0 -1.33,-0.6 -1.33,-1.33v-0.6c-1.33,-0.28 -2.51,-1.01 -3.01,-2.24 -0.23,-0.55 0.2,-1.16 0.8,-1.16h0.24c0.37,0 0.67,0.25 0.81,0.6 0.29,0.75 1.05,1.27 2.51,1.27 1.96,0 2.4,-0.98 2.4,-1.59 0,-0.83 -0.44,-1.61 -2.67,-2.14 -2.48,-0.6 -4.18,-1.62 -4.18,-3.67 0,-1.72 1.39,-2.84 3.11,-3.21v-0.6c0,-0.73 0.6,-1.33 1.33,-1.33h0.01c0.73,0 1.33,0.6 1.33,1.33v0.62c1.38,0.34 2.25,1.2 2.63,2.26 0.2,0.55 -0.22,1.13 -0.81,1.13h-0.26c-0.37,0 -0.67,-0.26 -0.77,-0.62 -0.23,-0.76 -0.86,-1.25 -2.12,-1.25 -1.5,0 -2.4,0.68 -2.4,1.64 0,0.84 0.65,1.39 2.67,1.91s4.18,1.39 4.18,3.91c-0.02,1.83 -1.39,2.83 -3.13,3.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/money.xml b/compose/material/material/icons/generator/raw-icons/rounded/money.xml
deleted file mode 100644
index 91fc2ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16h3c0.55,0 1,-0.45 1,-1L19,9c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM16,10h1v4h-1v-4zM9,16h3c0.55,0 1,-0.45 1,-1L13,9c0,-0.55 -0.45,-1 -1,-1L9,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM10,10h1v4h-1v-4zM6,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1L7,9c0,-0.55 -0.45,-1 -1,-1zM2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2zM19,18L5,18c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/money_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/money_off.xml
deleted file mode 100644
index cc4a1de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/money_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.42,0 2.13,0.54 2.39,1.4 0.13,0.43 0.56,0.7 1.01,0.7h0.06c0.7,0 1.22,-0.71 0.97,-1.36 -0.44,-1.15 -1.41,-2.08 -2.93,-2.45V4.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S11,3.67 11,4.5v0.66c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM4.77,4.62c-0.39,0.39 -0.39,1.02 0,1.41L7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -1.65,0 -2.5,-0.59 -2.83,-1.43 -0.15,-0.39 -0.49,-0.67 -0.9,-0.67H8.6c-0.72,0 -1.24,0.74 -0.95,1.39 0.59,1.33 1.89,2.12 3.36,2.44v0.67c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5v-0.65c0.96,-0.18 1.83,-0.55 2.46,-1.12l1.51,1.51c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L6.18,4.62c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/money_off_csred.xml b/compose/material/material/icons/generator/raw-icons/rounded/money_off_csred.xml
deleted file mode 100644
index cc4a1de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/money_off_csred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.42,0 2.13,0.54 2.39,1.4 0.13,0.43 0.56,0.7 1.01,0.7h0.06c0.7,0 1.22,-0.71 0.97,-1.36 -0.44,-1.15 -1.41,-2.08 -2.93,-2.45V4.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S11,3.67 11,4.5v0.66c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM4.77,4.62c-0.39,0.39 -0.39,1.02 0,1.41L7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -1.65,0 -2.5,-0.59 -2.83,-1.43 -0.15,-0.39 -0.49,-0.67 -0.9,-0.67H8.6c-0.72,0 -1.24,0.74 -0.95,1.39 0.59,1.33 1.89,2.12 3.36,2.44v0.67c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5v-0.65c0.96,-0.18 1.83,-0.55 2.46,-1.12l1.51,1.51c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L6.18,4.62c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/monitor.xml b/compose/material/material/icons/generator/raw-icons/rounded/monitor.xml
deleted file mode 100644
index 8e53efe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/monitor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v11c0,1.1 0.9,2 2,2h3c-0.55,0.55 -1,0.87 -1,1.59v0C6,20.37 6.63,21 7.41,21h9.17c0.78,0 1.41,-0.63 1.41,-1.41v0c0,-0.72 -0.44,-1.03 -1,-1.59h3c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,16H4V5h16V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/monitor_heart.xml b/compose/material/material/icons/generator/raw-icons/rounded/monitor_heart.xml
deleted file mode 100644
index 8e215cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/monitor_heart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.11,12.45L14,10.24l-3.11,6.21C10.73,16.79 10.38,17 10,17s-0.73,-0.21 -0.89,-0.55L7.38,13H2v5c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-5h-6C15.62,13 15.27,12.79 15.11,12.45z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v5h6c0.38,0 0.73,0.21 0.89,0.55L10,13.76l3.11,-6.21c0.34,-0.68 1.45,-0.68 1.79,0L16.62,11H22V6C22,4.9 21.1,4 20,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/monitor_weight.xml b/compose/material/material/icons/generator/raw-icons/rounded/monitor_weight.xml
deleted file mode 100644
index 7f4ef3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/monitor_weight.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,12c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,9m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/monochrome_photos.xml b/compose/material/material/icons/generator/raw-icons/rounded/monochrome_photos.xml
deleted file mode 100644
index d264781..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/monochrome_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.2l-1.2,-1.34c-0.38,-0.42 -0.92,-0.66 -1.49,-0.66L9.89,3c-0.57,0 -1.11,0.24 -1.49,0.66L7.2,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,18c0,0.55 -0.45,1 -1,1h-7v-1c-2.8,0 -5,-2.2 -5,-5s2.2,-5 5,-5L12,7h7c0.55,0 1,0.45 1,1v10zM17,13c0,-2.8 -2.2,-5 -5,-5v1.8c1.8,0 3.2,1.4 3.2,3.2s-1.4,3.2 -3.2,3.2L12,18c2.8,0 5,-2.2 5,-5zM8.8,13c0,1.8 1.4,3.2 3.2,3.2L12,9.8c-1.8,0 -3.2,1.4 -3.2,3.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mood.xml b/compose/material/material/icons/generator/raw-icons/rounded/mood.xml
deleted file mode 100644
index 4a1b68e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.03,0 3.8,-1.11 4.75,-2.75 0.19,-0.33 -0.05,-0.75 -0.44,-0.75L7.69,14c-0.38,0 -0.63,0.42 -0.44,0.75 0.95,1.64 2.72,2.75 4.75,2.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mood_bad.xml b/compose/material/material/icons/generator/raw-icons/rounded/mood_bad.xml
deleted file mode 100644
index 5832be0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mood_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,13.5c-2.03,0 -3.8,1.11 -4.75,2.75 -0.19,0.33 0.06,0.75 0.44,0.75h8.62c0.38,0 0.63,-0.42 0.44,-0.75 -0.95,-1.64 -2.72,-2.75 -4.75,-2.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/moped.xml b/compose/material/material/icons/generator/raw-icons/rounded/moped.xml
deleted file mode 100644
index 918b767..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/moped.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2.65L13.52,14H10v-4c0,-0.55 -0.45,-1 -1,-1H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35V7zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6H6C5.45,6 5,6.45 5,7v0c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v0C10,6.45 9.55,6 9,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/more.xml b/compose/material/material/icons/generator/raw-icons/rounded/more.xml
deleted file mode 100644
index 3e254d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/more.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0.37,11.45c-0.22,0.34 -0.22,0.77 0,1.11l5.04,7.56c0.36,0.52 0.97,0.88 1.66,0.88L22,21c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM9,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM14,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/more_horiz.xml b/compose/material/material/icons/generator/raw-icons/rounded/more_horiz.xml
deleted file mode 100644
index 6439bcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/more_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/more_time.xml b/compose/material/material/icons/generator/raw-icons/rounded/more_time.xml
deleted file mode 100644
index 4250cae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/more_time.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.75,8C10.34,8 10,8.34 10,8.75v4.69c0,0.35 0.18,0.67 0.47,0.85l3.64,2.24c0.33,0.2 0.76,0.11 0.97,-0.21c0.23,-0.34 0.12,-0.8 -0.23,-1.01L11.5,13.3V8.75C11.5,8.34 11.16,8 10.75,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,12c0.05,0.33 0.08,0.66 0.08,1c0,3.9 -3.1,7 -7,7s-7,-3.1 -7,-7c0,-3.9 3.1,-7 7,-7c0.7,0 1.37,0.1 2,0.29V4.23C12.36,4.08 11.69,4 11,4c-5,0 -9,4 -9,9s4,9 9,9s9,-4 9,-9c0,-0.34 -0.02,-0.67 -0.06,-1H17.92z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5h-2V3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7h2c0.55,0 1,-0.45 1,-1C23,5.45 22.55,5 22,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/more_vert.xml b/compose/material/material/icons/generator/raw-icons/rounded/more_vert.xml
deleted file mode 100644
index 34b93ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/more_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mosque.xml b/compose/material/material/icons/generator/raw-icons/rounded/mosque.xml
deleted file mode 100644
index f6e8106..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mosque.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8h10c0.29,0 0.57,0.06 0.84,0.13C17.93,7.8 18,7.46 18,7.09c0,-1.31 -0.65,-2.53 -1.74,-3.25L12,1L7.74,3.84C6.65,4.56 6,5.78 6,7.09C6,7.46 6.07,7.8 6.16,8.13C6.43,8.06 6.71,8 7,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,7c0,-1.1 -2,-3 -2,-3s-2,1.9 -2,3c0,0.74 0.4,1.38 1,1.72V13h-2v-2c0,-1.1 -0.9,-2 -2,-2H7c-1.1,0 -2,0.9 -2,2v2H3V8.72C3.6,8.38 4,7.74 4,7c0,-1.1 -2,-3 -2,-3S0,5.9 0,7c0,0.74 0.4,1.38 1,1.72V21h9v-4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v4h9V8.72C23.6,8.38 24,7.74 24,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_auto.xml b/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_auto.xml
deleted file mode 100644
index 83fda60..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9L4,9c0.26,0.26 0.34,0.63 0.25,0.98c-0.35,1.36 -0.36,2.87 0.1,4.38c0.88,2.91 3.44,5.1 6.44,5.55c5.52,0.81 10.19,-4.06 9.03,-9.62c-0.65,-3.13 -3.23,-5.61 -6.37,-6.16c-1.21,-0.21 -2.38,-0.15 -3.46,0.13C9.64,4.35 9.26,4.26 9.01,4.01l0,0C8.45,3.45 8.73,2.52 9.48,2.32c1.47,-0.38 3.06,-0.44 4.7,-0.09c3.98,0.86 7.09,4.18 7.7,8.2c1.04,6.81 -4.82,12.58 -11.64,11.42C6.23,21.16 2.98,17.99 2.2,14c-0.31,-1.59 -0.24,-3.12 0.12,-4.53C2.52,8.72 3.45,8.45 4,9zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99zM12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6s-6,2.69 -6,6S8.69,18 12,18zM8.61,14.63l2.43,-6.46C11.19,7.77 11.57,7.5 12,7.5s0.82,0.27 0.97,0.67l2.43,6.46c0.16,0.42 -0.15,0.87 -0.6,0.87c-0.27,0 -0.52,-0.17 -0.61,-0.43l-0.56,-1.61h-3.23l-0.57,1.62c-0.09,0.26 -0.33,0.43 -0.61,0.43C8.76,15.5 8.45,15.05 8.61,14.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_off.xml
deleted file mode 100644
index 0c01dfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-0.92,0 -1.8,0.22 -2.58,0.59l7.99,7.99C17.78,13.8 18,12.92 18,12C18,8.69 15.31,6 12,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.03 0,1.42l1.56,1.56c-1.25,1.88 -1.88,4.21 -1.59,6.7c0.52,4.54 4.21,8.23 8.75,8.75c2.49,0.28 4.81,-0.34 6.69,-1.59l1.56,1.56c0.39,0.39 1.03,0.39 1.42,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.13,3.13 2.49,3.12 2.1,3.51zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l1.47,1.47C6.22,10.2 6,11.08 6,12c0,3.31 2.69,6 6,6c0.92,0 1.8,-0.22 2.58,-0.59l1.47,1.47C14.86,19.59 13.48,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8c0,1.48 -0.41,2.86 -1.12,4.05l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66l1.45,1.45C9.14,4.41 10.52,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_on.xml
deleted file mode 100644
index edcb4a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9L4,9c0.26,0.26 0.34,0.63 0.25,0.98c-0.35,1.36 -0.36,2.87 0.1,4.38c0.88,2.91 3.44,5.1 6.44,5.55c5.52,0.81 10.19,-4.06 9.03,-9.62c-0.65,-3.13 -3.23,-5.61 -6.37,-6.16c-1.21,-0.21 -2.38,-0.15 -3.46,0.13C9.64,4.35 9.26,4.26 9.01,4.01l0,0C8.45,3.45 8.73,2.52 9.48,2.32c1.47,-0.38 3.06,-0.44 4.7,-0.09c3.98,0.86 7.09,4.18 7.7,8.2c1.04,6.81 -4.82,12.58 -11.64,11.42C6.23,21.16 2.98,17.99 2.2,14c-0.31,-1.59 -0.24,-3.12 0.12,-4.53C2.52,8.72 3.45,8.45 4,9zM6,12c0,-3.31 2.69,-6 6,-6s6,2.69 6,6s-2.69,6 -6,6S6,15.31 6,12zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_pause.xml b/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_pause.xml
deleted file mode 100644
index 7886f6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9L4,9c0.26,0.26 0.34,0.63 0.25,0.98c-0.35,1.36 -0.36,2.87 0.1,4.38c0.88,2.91 3.44,5.1 6.44,5.55c5.52,0.81 10.19,-4.06 9.03,-9.62c-0.65,-3.13 -3.23,-5.61 -6.37,-6.16c-1.21,-0.21 -2.38,-0.15 -3.46,0.13C9.64,4.35 9.26,4.26 9.01,4.01l0,0C8.45,3.45 8.73,2.52 9.48,2.32c1.47,-0.38 3.06,-0.44 4.7,-0.09c3.98,0.86 7.09,4.18 7.7,8.2c1.04,6.81 -4.82,12.58 -11.64,11.42C6.23,21.16 2.98,17.99 2.2,14c-0.31,-1.59 -0.24,-3.12 0.12,-4.53C2.52,8.72 3.45,8.45 4,9zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S15.31,6 12,6zM10,15L10,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v4C11,14.55 10.55,15 10,15zM14,15L14,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v4C15,14.55 14.55,15 14,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_paused.xml b/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_paused.xml
deleted file mode 100644
index 7886f6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/motion_photos_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9L4,9c0.26,0.26 0.34,0.63 0.25,0.98c-0.35,1.36 -0.36,2.87 0.1,4.38c0.88,2.91 3.44,5.1 6.44,5.55c5.52,0.81 10.19,-4.06 9.03,-9.62c-0.65,-3.13 -3.23,-5.61 -6.37,-6.16c-1.21,-0.21 -2.38,-0.15 -3.46,0.13C9.64,4.35 9.26,4.26 9.01,4.01l0,0C8.45,3.45 8.73,2.52 9.48,2.32c1.47,-0.38 3.06,-0.44 4.7,-0.09c3.98,0.86 7.09,4.18 7.7,8.2c1.04,6.81 -4.82,12.58 -11.64,11.42C6.23,21.16 2.98,17.99 2.2,14c-0.31,-1.59 -0.24,-3.12 0.12,-4.53C2.52,8.72 3.45,8.45 4,9zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S15.31,6 12,6zM10,15L10,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v4C11,14.55 10.55,15 10,15zM14,15L14,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v4C15,14.55 14.55,15 14,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/motorcycle.xml b/compose/material/material/icons/generator/raw-icons/rounded/motorcycle.xml
deleted file mode 100644
index 67cd7c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/motorcycle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.44,9.03L17.31,6.9l-1.6,-1.6c-0.19,-0.19 -0.45,-0.3 -0.71,-0.3h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2.59l2,2L5,9c-2.8,0 -5,2.2 -5,5s2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h0.82c0.53,0 1.04,-0.21 1.41,-0.59l2.18,-2.18c-0.2,0.54 -0.31,1.14 -0.31,1.77 0,2.8 2.2,5 5,5s5,-2.2 5,-5c0,-2.65 -1.97,-4.77 -4.56,-4.97zM5,15h2.82C7.4,16.15 6.28,17 5,17c-1.63,0 -3,-1.37 -3,-3s1.37,-3 3,-3c1.28,0 2.4,0.85 2.82,2L5,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM19,17c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mouse.xml b/compose/material/material/icons/generator/raw-icons/rounded/mouse.xml
deleted file mode 100644
index a19d2dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,1.07L13,9h7c0,-4.08 -3.05,-7.44 -7,-7.93zM4,15c0,4.42 3.58,8 8,8s8,-3.58 8,-8v-4L4,11v4zM11,1.07C7.05,1.56 4,4.92 4,9h7L11,1.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/move_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/move_down.xml
deleted file mode 100644
index 98b28ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/move_down.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.01,10.72c-0.14,2.57 1.66,4.73 4.07,5.18l-0.79,-0.79c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.39,0.39 0.39,1.02 0,1.41L7.71,20.3c-0.39,0.39 -1.02,0.39 -1.41,0h0c-0.39,-0.39 -0.39,-1.02 0,-1.41l0.88,-0.88l0,-0.06c-3.64,-0.43 -6.43,-3.65 -6.15,-7.47C1.29,6.78 4.55,4 8.26,4L10,4c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1L8.22,6C5.52,6 3.15,8.04 3.01,10.72z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11h5c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v3C13,10.1 13.9,11 15,11zM20,9h-5V6h5V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,20h-5c-1.1,0 -2,-0.9 -2,-2v-3c0,-1.1 0.9,-2 2,-2h5c1.1,0 2,0.9 2,2v3C22,19.1 21.1,20 20,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/move_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/rounded/move_to_inbox.xml
deleted file mode 100644
index df77f99..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/move_to_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,14h-3.56c-0.36,0 -0.68,0.19 -0.86,0.5C14.06,15.4 13.11,16 12,16s-2.06,-0.6 -2.58,-1.5C9.24,14.19 8.91,14 8.56,14H5V5h14V14zM14.79,10H13V7c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79C15.46,10.54 15.24,10 14.79,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/move_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/move_up.xml
deleted file mode 100644
index 382af03..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/move_up.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.01,13.28c-0.14,-2.57 1.66,-4.73 4.07,-5.18L6.29,8.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.39,-0.39 0.39,-1.02 0,-1.41L7.71,3.7c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l0.88,0.88l0,0.06c-3.64,0.43 -6.43,3.65 -6.15,7.47C1.29,17.22 4.55,20 8.26,20H10c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H8.22C5.52,18 3.15,15.96 3.01,13.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15v3c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-3c0,-1.1 -0.9,-2 -2,-2h-5C13.9,13 13,13.9 13,15zM20,18h-5v-3h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-5c-1.1,0 -2,0.9 -2,2v3c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/movie.xml b/compose/material/material/icons/generator/raw-icons/rounded/movie.xml
deleted file mode 100644
index 33a3e31..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/movie.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l1.82,3.64c0.08,0.16 -0.04,0.36 -0.22,0.36h-1.98c-0.38,0 -0.73,-0.21 -0.89,-0.55L15,4h-2l1.82,3.64c0.08,0.16 -0.04,0.36 -0.22,0.36h-1.98c-0.38,0 -0.73,-0.21 -0.89,-0.55L10,4H8l1.82,3.64c0.08,0.16 -0.04,0.36 -0.22,0.36H7.62c-0.38,0 -0.73,-0.21 -0.9,-0.55L5,4H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V5c0,-0.55 -0.45,-1 -1,-1h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/movie_creation.xml b/compose/material/material/icons/generator/raw-icons/rounded/movie_creation.xml
deleted file mode 100644
index 33a3e31..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/movie_creation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l1.82,3.64c0.08,0.16 -0.04,0.36 -0.22,0.36h-1.98c-0.38,0 -0.73,-0.21 -0.89,-0.55L15,4h-2l1.82,3.64c0.08,0.16 -0.04,0.36 -0.22,0.36h-1.98c-0.38,0 -0.73,-0.21 -0.89,-0.55L10,4H8l1.82,3.64c0.08,0.16 -0.04,0.36 -0.22,0.36H7.62c-0.38,0 -0.73,-0.21 -0.9,-0.55L5,4H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V5c0,-0.55 -0.45,-1 -1,-1h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/movie_filter.xml b/compose/material/material/icons/generator/raw-icons/rounded/movie_filter.xml
deleted file mode 100644
index c32b03b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/movie_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,4L18,4l1.74,2.61c0.11,0.17 -0.01,0.39 -0.21,0.39h-2c-0.33,0 -0.65,-0.17 -0.83,-0.45L15,4h-2l1.74,2.61c0.11,0.17 -0.01,0.39 -0.21,0.39h-2c-0.33,0 -0.65,-0.17 -0.83,-0.45L10,4L8,4l1.74,2.61c0.11,0.17 -0.01,0.39 -0.21,0.39h-2c-0.33,0 -0.64,-0.17 -0.83,-0.45L5,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM11.25,15.25L10,18l-1.25,-2.75L6,14l2.75,-1.25L10,10l1.25,2.75L14,14l-2.75,1.25zM16.94,11.94L16,14l-0.94,-2.06L13,11l2.06,-0.94L16,8l0.94,2.06L19,11l-2.06,0.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/moving.xml b/compose/material/material/icons/generator/raw-icons/rounded/moving.xml
deleted file mode 100644
index bb0f99d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/moving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.7,17.29c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 1.02,-0.39 1.41,0l1.17,1.17c1.17,1.17 3.07,1.17 4.24,0l4.18,-4.17l1.44,1.44c0.31,0.31 0.85,0.09 0.85,-0.35V6.5C22,6.22 21.78,6 21.5,6h-4.29c-0.45,0 -0.67,0.54 -0.35,0.85l1.44,1.44l-4.17,4.17c-0.39,0.39 -1.02,0.39 -1.41,0l-1.17,-1.17c-1.17,-1.17 -3.07,-1.17 -4.24,0L2.7,15.88C2.32,16.27 2.32,16.91 2.7,17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/mp.xml b/compose/material/material/icons/generator/raw-icons/rounded/mp.xml
deleted file mode 100644
index b270d96..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7,9h4.5c0.55,0 1,0.45 1,1v4.25c0,0.41 -0.34,0.75 -0.75,0.75h0C11.34,15 11,14.66 11,14.25V10.5h-1v2.25c0,0.41 -0.34,0.75 -0.75,0.75h0c-0.41,0 -0.75,-0.34 -0.75,-0.75V10.5h-1v3.75C7.5,14.66 7.16,15 6.75,15h0C6.34,15 6,14.66 6,14.25V10C6,9.45 6.45,9 7,9zM14.25,15L14.25,15c-0.41,0 -0.75,-0.33 -0.75,-0.75V10c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1v2.5c0,0.55 -0.45,1 -1,1h-2v0.75C15,14.66 14.66,15 14.25,15zM15,12h1.5v-1.5H15V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/multiline_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/multiline_chart.xml
deleted file mode 100644
index 14d85ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/multiline_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.36,6.28l-0.06,-0.06c-0.39,-0.39 -1.03,-0.37 -1.39,0.04l-2.18,2.45C15.68,6.4 12.83,5 9.61,5c-2.5,0 -4.83,0.87 -6.75,2.3 -0.47,0.35 -0.52,1.04 -0.11,1.45l0.06,0.06c0.33,0.33 0.86,0.39 1.23,0.11C5.63,7.72 7.54,7 9.61,7c2.74,0 5.09,1.26 6.77,3.24l-2.88,3.24 -3.29,-3.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-6.12,6.13c-0.37,0.37 -0.37,0.98 0,1.35l0.15,0.15c0.37,0.37 0.98,0.37 1.35,0l5.32,-5.33 3.25,3.25c0.41,0.41 1.07,0.39 1.45,-0.04l3.35,-3.76c0.62,1.12 1.08,2.39 1.32,3.73 0.08,0.47 0.47,0.82 0.95,0.82h0.09c0.6,0 1.05,-0.55 0.94,-1.14 -0.32,-1.85 -0.98,-3.54 -1.89,-5L21.4,7.6c0.34,-0.38 0.32,-0.96 -0.04,-1.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/multiple_stop.xml b/compose/material/material/icons/generator/raw-icons/rounded/multiple_stop.xml
deleted file mode 100644
index 61579e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/multiple_stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5.21c0,-0.45 0.54,-0.67 0.85,-0.35l2.79,2.79c0.2,0.2 0.2,0.51 0,0.71l-2.79,2.79C17.54,11.46 17,11.24 17,10.79V9h-3c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3V5.21zM10,7C9.45,7 9,7.45 9,8s0.45,1 1,1s1,-0.45 1,-1S10.55,7 10,7zM6,7C5.45,7 5,7.45 5,8s0.45,1 1,1s1,-0.45 1,-1S6.55,7 6,7zM7,17h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H7v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79C6.46,19.46 7,19.24 7,18.79V17zM14,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C13,16.55 13.45,17 14,17zM18,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C17,16.55 17.45,17 18,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/museum.xml b/compose/material/material/icons/generator/raw-icons/rounded/museum.xml
deleted file mode 100644
index a184244..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/museum.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,11c0.28,0 0.5,-0.22 0.5,-0.5V9.26c0,-0.16 -0.08,-0.32 -0.21,-0.41L12.57,2.4c-0.34,-0.24 -0.8,-0.24 -1.15,0L2.21,8.85C2.08,8.94 2,9.1 2,9.26v1.24C2,10.78 2.22,11 2.5,11H4v9H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-1v-9H21.5zM16,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3l-1.17,1.75c-0.4,0.59 -1.27,0.59 -1.66,0L10,14v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-4.7C8,11.58 8.58,11 9.3,11h0c0.43,0 0.84,0.22 1.08,0.58L12,14l1.61,-2.42C13.86,11.22 14.26,11 14.7,11h0c0.72,0 1.3,0.58 1.3,1.3V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/music_note.xml b/compose/material/material/icons/generator/raw-icons/rounded/music_note.xml
deleted file mode 100644
index 20ed3cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/music_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5v8.55c-0.94,-0.54 -2.1,-0.75 -3.33,-0.32 -1.34,0.48 -2.37,1.67 -2.61,3.07 -0.46,2.74 1.86,5.08 4.59,4.65 1.96,-0.31 3.35,-2.11 3.35,-4.1V7h2c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2h-2c-1.1,0 -2,0.9 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/music_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/music_off.xml
deleted file mode 100644
index af1ca73..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/music_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9.61V7h2c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2h-3c-0.55,0 -1,0.45 -1,1v3.61l2,2zM5.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l8.29,8.3v0.28c-0.94,-0.54 -2.1,-0.75 -3.33,-0.32 -1.34,0.48 -2.37,1.67 -2.61,3.07 -0.46,2.74 1.86,5.08 4.59,4.65 1.96,-0.31 3.35,-2.11 3.35,-4.1v-1.58l5.02,5.02c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.12,3.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/music_video.xml b/compose/material/material/icons/generator/raw-icons/rounded/music_video.xml
deleted file mode 100644
index 119e9df..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/music_video.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.84,16.98c1.26,-0.17 2.16,-1.33 2.16,-2.6L13,9h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v4.51c-0.46,-0.35 -1.02,-0.54 -1.66,-0.51c-1.11,0.07 -2.09,0.92 -2.3,2.02C7.73,15.73 9.15,17.2 10.84,16.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/my_location.xml b/compose/material/material/icons/generator/raw-icons/rounded/my_location.xml
deleted file mode 100644
index b861b63..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/my_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1.06C6.83,3.52 3.52,6.83 3.06,11L2,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.06c0.46,4.17 3.77,7.48 7.94,7.94L11,22c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L22,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nat.xml b/compose/material/material/icons/generator/raw-icons/rounded/nat.xml
deleted file mode 100644
index 2d407c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nat.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.82,13H11v-2H6.82C6.4,9.84 5.3,9 4,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C5.3,15 6.4,14.16 6.82,13zM4,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C5,12.55 4.55,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.47,12.4c0.27,-0.2 0.27,-0.6 0,-0.8L19,9v2h-4.05c-0.47,-4.69 -4.16,-8.42 -8.83,-8.94C5.52,2 5,2.46 5,3.06v0c0,0.5 0.37,0.93 0.87,0.99C9.88,4.48 13,7.87 13,12s-3.12,7.52 -7.13,7.95C5.37,20.01 5,20.44 5,20.94v0c0,0.6 0.52,1.07 1.11,1c4.67,-0.52 8.37,-4.25 8.83,-8.94H19v2L22.47,12.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nature.xml b/compose/material/material/icons/generator/raw-icons/rounded/nature.xml
deleted file mode 100644
index 271d883..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nature.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16.12c3.37,-0.4 6.01,-3.19 6.16,-6.64 0.17,-3.87 -3.02,-7.25 -6.89,-7.31 -3.92,-0.05 -7.1,3.1 -7.1,7 0,3.47 2.52,6.34 5.83,6.89V20H6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-5v-3.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nature_people.xml b/compose/material/material/icons/generator/raw-icons/rounded/nature_people.xml
deleted file mode 100644
index b64a50e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nature_people.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.17,9.17c0,-3.91 -3.19,-7.06 -7.11,-7 -3.83,0.06 -6.99,3.37 -6.88,7.19 0.09,3.38 2.58,6.16 5.83,6.7V20H6v-3h0.5c0.28,0 0.5,-0.22 0.5,-0.5V13c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1v3.5c0,0.28 0.22,0.5 0.5,0.5H3v4c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2v-3.88c3.47,-0.41 6.17,-3.36 6.17,-6.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/navigate_before.xml b/compose/material/material/icons/generator/raw-icons/rounded/navigate_before.xml
deleted file mode 100644
index d39b55a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/navigate_before.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.91,6.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.91,11.3c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L11.03,12l3.88,-3.88c0.38,-0.39 0.38,-1.03 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/navigate_next.xml b/compose/material/material/icons/generator/raw-icons/rounded/navigate_next.xml
deleted file mode 100644
index 725db07..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/navigate_next.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.31,6.71c-0.39,0.39 -0.39,1.02 0,1.41L13.19,12l-3.88,3.88c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41L10.72,6.7c-0.38,-0.38 -1.02,-0.38 -1.41,0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/navigation.xml b/compose/material/material/icons/generator/raw-icons/rounded/navigation.xml
deleted file mode 100644
index 6eb8edc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/navigation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.93,4.26l6.15,14.99c0.34,0.83 -0.51,1.66 -1.33,1.29l-5.34,-2.36c-0.26,-0.11 -0.55,-0.11 -0.81,0l-5.34,2.36c-0.82,0.36 -1.67,-0.46 -1.33,-1.29l6.15,-14.99c0.33,-0.83 1.51,-0.83 1.85,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/near_me.xml b/compose/material/material/icons/generator/raw-icons/rounded/near_me.xml
deleted file mode 100644
index 140db90..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/near_me.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.75,3.94L4.07,10.08c-0.83,0.35 -0.81,1.53 0.02,1.85L9.43,14c0.26,0.1 0.47,0.31 0.57,0.57l2.06,5.33c0.32,0.84 1.51,0.86 1.86,0.03l6.15,-14.67c0.33,-0.83 -0.5,-1.66 -1.32,-1.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/near_me_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/near_me_disabled.xml
deleted file mode 100644
index 14e093a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/near_me_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.34l6.95,-2.58c0.8,-0.3 1.58,0.48 1.29,1.29L17.66,12L12,6.34zM21.9,19.07L4.93,2.1c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l4.36,4.36l-4.2,1.56C3.27,9.59 3,9.97 3,10.4c0,0.42 0.26,0.8 0.65,0.96l6.42,2.57l2.57,6.42C12.8,20.74 13.18,21 13.6,21c0.43,0 0.82,-0.27 0.97,-0.67l1.56,-4.2l4.36,4.36c0.39,0.39 1.02,0.39 1.41,0C22.29,20.09 22.29,19.46 21.9,19.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nearby_error.xml b/compose/material/material/icons/generator/raw-icons/rounded/nearby_error.xml
deleted file mode 100644
index 2806c5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nearby_error.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.29,8.28l-3.01,3.01c-0.39,0.39 -0.39,1.02 0,1.41l3.01,3.01c0.39,0.39 1.02,0.39 1.41,0l3.01,-3.01c0.39,-0.39 0.39,-1.02 0,-1.41l-3.01,-3.01C12.32,7.89 11.68,7.89 11.29,8.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,2.59l-8.01,8c-0.78,0.78 -0.78,2.05 0,2.83l8.01,8c0.78,0.78 2.05,0.78 2.83,0L18,16.82V13.2l-6,6L4.79,12L12,4.79l6,6V7.17l-4.58,-4.58C12.64,1.8 11.37,1.8 10.59,2.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11v6c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1h0C20.45,10 20,10.45 20,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,21m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nearby_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/nearby_off.xml
deleted file mode 100644
index 7a0346c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nearby_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,13.42L18.83,16l-1.81,-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58,-2.58c0.78,-0.78 2.05,-0.78 2.83,0l8,8C22.2,11.37 22.2,12.63 21.41,13.42zM20.48,21.9L20.48,21.9c-0.39,0.39 -1.02,0.39 -1.41,0L16,18.83l-2.58,2.58c-0.78,0.78 -2.05,0.78 -2.83,0l-8,-8c-0.78,-0.78 -0.78,-2.05 0,-2.83L5.17,8L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l16.98,16.97C20.87,20.87 20.87,21.51 20.48,21.9zM14.19,17.02l-1.39,-1.39l-0.09,0.09c-0.39,0.39 -1.02,0.39 -1.42,0l-3.01,-3.01c-0.39,-0.39 -0.39,-1.02 0,-1.41l0.09,-0.09l-1.4,-1.39L4.8,12l7.2,7.2L14.19,17.02zM15.71,11.29l-3.01,-3.01c-0.39,-0.39 -1.02,-0.39 -1.41,0L11.2,8.38l4.42,4.42l0.09,-0.09C16.1,12.32 16.1,11.68 15.71,11.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nest_cam_wired_stand.xml b/compose/material/material/icons/generator/raw-icons/rounded/nest_cam_wired_stand.xml
deleted file mode 100644
index 787613a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nest_cam_wired_stand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.83,1.01l-4.11,0.42C8.47,1.75 6,4.48 6,7.75s2.47,6 5.72,6.33l1.9,0.19l-0.56,0.85C12.71,15.04 12.36,15 12,15c-2.76,0 -5,2.24 -5,5v2c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-2c0,-1.67 -0.83,-3.15 -2.09,-4.06l0.97,-1.45C17.02,14.56 18,13.66 18,12.5V3C18,1.83 17,0.91 15.83,1.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_cell.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_cell.xml
deleted file mode 100644
index dffd6e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.41,22H21c0.55,0 1,-0.45 1,-1V4.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L3.71,20.29C3.08,20.92 3.52,22 4.41,22zM20,20h-3V9.83l3,-3V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_check.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_check.xml
deleted file mode 100644
index e16bb9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,5c-0.17,0 -0.32,0.09 -0.41,0.23l-0.07,0.15 -5.18,11.65c-0.16,0.29 -0.26,0.61 -0.26,0.96 0,1.11 0.9,2.01 2.01,2.01 0.96,0 1.77,-0.68 1.96,-1.59l0.01,-0.03L16.4,5.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM2.06,10.06c0.51,0.51 1.33,0.55 1.89,0.09 2.76,-2.26 6.24,-3.18 9.58,-2.76l1.19,-2.68c-4.35,-0.78 -8.96,0.3 -12.57,3.25 -0.64,0.53 -0.68,1.51 -0.09,2.1zM21.94,10.06c0.59,-0.59 0.55,-1.57 -0.1,-2.1 -1.36,-1.11 -2.86,-1.95 -4.44,-2.53l-0.53,2.82c1.13,0.47 2.19,1.09 3.17,1.89 0.58,0.46 1.39,0.43 1.9,-0.08zM17.91,14.09c0.6,-0.6 0.56,-1.63 -0.14,-2.12 -0.46,-0.33 -0.94,-0.61 -1.44,-0.86l-0.55,2.92c0.11,0.07 0.22,0.14 0.32,0.22 0.57,0.4 1.33,0.32 1.81,-0.16zM6.08,14.08c0.5,0.5 1.27,0.54 1.85,0.13 0.94,-0.66 2.01,-1.06 3.1,-1.22l1.28,-2.88c-2.13,-0.06 -4.28,0.54 -6.09,1.84 -0.69,0.51 -0.74,1.53 -0.14,2.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_locked.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_locked.xml
deleted file mode 100644
index 4a59807..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_locked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l0,-7.58c0,-0.89 -1.08,-1.34 -1.71,-0.71L3.71,20.29C3.08,20.92 3.52,22 4.41,22H15v-6c0,-2.21 1.79,-4 4,-4H22zM22,17v-1c0,-1.1 -0.9,-2 -2,-2c-1.1,0 -2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,17.45 22.55,17 22,17zM19,16c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h-2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_ping.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_ping.xml
deleted file mode 100644
index 275aea4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_ping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.71,6.79c-0.39,0.39 -0.39,1.02 0,1.41L10.5,16H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-5.5l5.15,-5.15C18.91,10.95 19.2,11 19.5,11c1.38,0 2.5,-1.12 2.5,-2.5S20.88,6 19.5,6S17,7.12 17,8.5c0,0.35 0.07,0.67 0.2,0.97l-5.2,5.2L4.12,6.79C3.73,6.4 3.1,6.4 2.71,6.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_wifi.xml
deleted file mode 100644
index d2b5f61..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.39,0.39 1.02,0.39 1.42,0L23.27,9.71c0.41,-0.41 0.38,-1.08 -0.06,-1.47C20.22,5.6 16.3,4 12,4zM12,8c-2.86,0 -5.5,0.94 -7.65,2.51L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-1.43,1.43C17.5,8.94 14.86,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_1_bar.xml
deleted file mode 100644
index 8e1c804..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM15.32,14.84C14.34,14.3 13.2,14 12,14c-1.2,0 -2.34,0.3 -3.32,0.84L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L15.32,14.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_2_bar.xml
deleted file mode 100644
index 85b6d9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.39,0.39 1.02,0.39 1.42,0L23.27,9.71c0.41,-0.41 0.38,-1.08 -0.06,-1.47C20.22,5.6 16.3,4 12,4zM16.78,13.38C15.4,12.5 13.76,12 12,12c-1.76,0 -3.4,0.5 -4.78,1.38l-4.3,-4.3C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L16.78,13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_3_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_3_bar.xml
deleted file mode 100644
index 6071b01..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/network_wifi_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.39,0.39 1.02,0.39 1.42,0L23.27,9.71c0.41,-0.41 0.38,-1.08 -0.06,-1.47C20.22,5.6 16.3,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-2.85,2.86C16.46,10.71 14.31,10 12,10c-2.31,0 -4.46,0.71 -6.23,1.93L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/new_label.xml b/compose/material/material/icons/generator/raw-icons/rounded/new_label.xml
deleted file mode 100644
index 2a32334..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/new_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.18,13.16l-3.55,5C16.25,18.69 15.65,19 15,19h-3l0,-2l0,-1c0,-1.66 -1.34,-3 -3,-3h0v0c0,-1.66 -1.34,-3 -3,-3H3V7c0,-1.1 0.9,-2 2,-2h10c0.65,0 1.26,0.31 1.63,0.84l3.55,5C20.67,11.54 20.67,12.46 20.18,13.16zM10,16c0,-0.55 -0.45,-1 -1,-1H7v-2c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1v2H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-2h2C9.55,17 10,16.55 10,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/new_releases.xml b/compose/material/material/icons/generator/raw-icons/rounded/new_releases.xml
deleted file mode 100644
index 8e8d522..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/new_releases.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.42,11.34l-1.86,-2.12 0.26,-2.81c0.05,-0.5 -0.29,-0.96 -0.77,-1.07l-2.76,-0.63 -1.44,-2.43c-0.26,-0.43 -0.79,-0.61 -1.25,-0.41L12,3 9.41,1.89c-0.46,-0.2 -1,-0.02 -1.25,0.41L6.71,4.72l-2.75,0.62c-0.49,0.11 -0.83,0.56 -0.78,1.07l0.26,2.8 -1.86,2.13c-0.33,0.38 -0.33,0.94 0,1.32l1.86,2.12 -0.26,2.82c-0.05,0.5 0.29,0.96 0.77,1.07l2.76,0.63 1.44,2.42c0.26,0.43 0.79,0.61 1.26,0.41L12,21l2.59,1.11c0.46,0.2 1,0.02 1.25,-0.41l1.44,-2.43 2.76,-0.63c0.49,-0.11 0.82,-0.57 0.77,-1.07l-0.26,-2.81 1.86,-2.12c0.34,-0.36 0.34,-0.92 0.01,-1.3zM13,17h-2v-2h2v2zM12,13c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/newspaper.xml b/compose/material/material/icons/generator/raw-icons/rounded/newspaper.xml
deleted file mode 100644
index f986aef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/newspaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.15,3.85l-0.82,0.82l-0.95,-0.96c-0.39,-0.39 -1.02,-0.39 -1.42,0L17,4.67l-0.96,-0.96c-0.39,-0.39 -1.03,-0.39 -1.42,0l-0.95,0.96l-0.96,-0.96c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.96,0.96L9.38,3.71c-0.39,-0.39 -1.02,-0.39 -1.42,0L7,4.67L6.04,3.71c-0.39,-0.39 -1.03,-0.39 -1.42,0L3.67,4.67L2.85,3.85C2.54,3.54 2,3.76 2,4.21V19c0,1.1 0.9,2 2,2l16,0c1.1,0 2,-0.9 2,-2V4.21C22,3.76 21.46,3.54 21.15,3.85zM11,19H4v-6h7V19zM20,19h-7v-2h7V19zM20,15h-7v-2h7V15zM20,11H4V8h16V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/next_plan.xml b/compose/material/material/icons/generator/raw-icons/rounded/next_plan.xml
deleted file mode 100644
index 190436f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/next_plan.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM18,13.97h-5l2.26,-2.26c-0.91,-1.06 -2.25,-1.74 -3.76,-1.74c-2.37,0 -4.35,1.66 -4.86,3.88l-0.96,-0.32c0.64,-2.62 3,-4.56 5.82,-4.56c1.78,0 3.37,0.79 4.47,2.03L18,8.97V13.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/next_week.xml b/compose/material/material/icons/generator/raw-icons/rounded/next_week.xml
deleted file mode 100644
index 07d1cf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/next_week.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-4L16,5c0,-0.55 -0.22,-1.05 -0.59,-1.41C15.05,3.22 14.55,3 14,3h-4c-1.1,0 -2,0.9 -2,2v2L4,7c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9c0,-1.1 -0.9,-2 -2,-2zM10,5h4v2h-4L10,5zM10.5,18c-0.28,-0.28 -0.28,-0.72 0,-1l2.5,-2.5 -2.5,-2.5c-0.28,-0.28 -0.28,-0.72 0,-1s0.72,-0.28 1,0l3.15,3.15c0.2,0.2 0.2,0.51 0,0.71L11.5,18c-0.28,0.28 -0.72,0.28 -1,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nfc.xml b/compose/material/material/icons/generator/raw-icons/rounded/nfc.xml
deleted file mode 100644
index 576fb0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nfc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM19,20L5,20c-0.55,0 -1,-0.45 -1,-1L4,5c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v14c0,0.55 -0.45,1 -1,1zM16,6h-3c-1.1,0 -2,0.9 -2,2v2.28c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72L13,8h3v7c0,0.55 -0.45,1 -1,1L9,16c-0.55,0 -1,-0.45 -1,-1L8,8h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,8c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/night_shelter.xml b/compose/material/material/icons/generator/raw-icons/rounded/night_shelter.xml
deleted file mode 100644
index 242923a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/night_shelter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.8,3.9l-6,4.5C4.3,8.78 4,9.37 4,10v9c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-9c0,-0.63 -0.3,-1.22 -0.8,-1.6l-6,-4.5C12.49,3.37 11.51,3.37 10.8,3.9zM9.75,12.5c0.69,0 1.25,0.56 1.25,1.25S10.44,15 9.75,15S8.5,14.44 8.5,13.75S9.06,12.5 9.75,12.5zM16.5,18L16.5,18c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1H8v1C8,17.78 7.78,18 7.5,18h0C7.22,18 7,17.78 7,17.5v-6C7,11.22 7.22,11 7.5,11h0C7.78,11 8,11.22 8,11.5v4h3.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c1.1,0 2,0.9 2,2v3.5C17,17.78 16.78,18 16.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nightlife.xml b/compose/material/material/icons/generator/raw-icons/rounded/nightlife.xml
deleted file mode 100644
index 89a292af..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nightlife.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.87,5h10.26c0.8,0 1.28,0.89 0.83,1.55L9,14v4h1c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H6c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h1v-4L2.04,6.55C1.59,5.89 2.07,5 2.87,5zM10.1,9l1.4,-2H4.49l1.4,2H10.1zM19,5h1.5C21.33,5 22,5.67 22,6.5v0C22,7.33 21.33,8 20.5,8H19v9l0,0c0,1.84 -1.64,3.28 -3.54,2.95c-1.21,-0.21 -2.2,-1.2 -2.41,-2.41C12.72,15.64 14.16,14 16,14c0.35,0 0.69,0.06 1,0.17V7C17,5.9 17.9,5 19,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nightlight.xml b/compose/material/material/icons/generator/raw-icons/rounded/nightlight.xml
deleted file mode 100644
index 35661d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nightlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.57,2.3c2.38,-0.59 4.68,-0.27 6.63,0.64c0.35,0.16 0.41,0.64 0.1,0.86C15.7,5.6 14,8.6 14,12s1.7,6.4 4.3,8.2c0.32,0.22 0.26,0.7 -0.09,0.86C16.93,21.66 15.5,22 14,22c-6.05,0 -10.85,-5.38 -9.87,-11.6C4.74,6.48 7.72,3.24 11.57,2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nightlight_round.xml b/compose/material/material/icons/generator/raw-icons/rounded/nightlight_round.xml
deleted file mode 100644
index 6c6e2ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nightlight_round.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,22c0.07,0 0.14,0 0.21,0c0.84,-0.02 1.12,-1.11 0.41,-1.56c-2.78,-1.77 -4.63,-4.89 -4.63,-8.43c0,-3.55 1.85,-6.66 4.63,-8.44c0.7,-0.45 0.44,-1.54 -0.39,-1.56c-0.04,0 -0.09,0 -0.13,0c-4.9,-0.05 -9.21,3.53 -9.98,8.37C4.64,16.61 9.45,22 15.5,22L15.5,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nights_stay.xml b/compose/material/material/icons/generator/raw-icons/rounded/nights_stay.xml
deleted file mode 100644
index af57e5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nights_stay.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.1,12.08c-2,-3.88 -0.92,-7.36 0.07,-9.27c0.19,-0.36 -0.12,-0.77 -0.53,-0.72C5.62,2.77 1.78,7.16 1.99,12.41c0.01,0 0.01,0 0.01,0.01C2.62,12.15 3.29,12 4,12c1.66,0 3.18,0.83 4.1,2.15C9.77,14.63 11,16.17 11,18c0,1.52 -0.87,2.83 -2.12,3.51c0.98,0.32 2.03,0.5 3.11,0.5c3.13,0 5.92,-1.44 7.76,-3.69c0.26,-0.32 0.04,-0.79 -0.37,-0.82C16.89,17.37 13.1,15.97 11.1,12.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16l-0.18,0C6.4,14.84 5.3,14 4,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.62,0 2.49,0 3,0c1.1,0 2,-0.9 2,-2C9,16.9 8.1,16 7,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_accounts.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_accounts.xml
deleted file mode 100644
index 8b4850b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_accounts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.18,10.94c0.2,-0.44 0.32,-0.92 0.32,-1.44C15.5,7.57 13.93,6 12,6c-0.52,0 -1,0.12 -1.44,0.32L15.18,10.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,15c-2.32,0 -4.45,0.8 -6.14,2.12C4.7,15.73 4,13.95 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l2.86,2.86c0.21,1.56 1.43,2.79 2.99,2.99l2.2,2.2C13.17,15.05 12.59,15 12,15zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.54 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_adult_content.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_adult_content.xml
deleted file mode 100644
index 27a37a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_adult_content.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-1.85 0.63,-3.54 1.69,-4.9L7.59,9h2.83L7.1,5.69C8.46,4.63 10.15,4 12,4c4.41,0 8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.9,-1.9h-2.83l3.31,3.31C15.54,19.37 13.85,20 12,20C7.59,20 4,16.41 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,14l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_backpack.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_backpack.xml
deleted file mode 100644
index 85ec285..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.98,4.15c0.01,0 0.01,-0.01 0.02,-0.01V3.5C7,2.67 7.67,2 8.5,2S10,2.67 10,3.5V4h4V3.5C14,2.67 14.67,2 15.5,2S17,2.67 17,3.5v0.64c1.72,0.45 3,2 3,3.86v9.17l-2.03,-2.03C17.98,15.09 18,15.05 18,15v-2c0,-0.55 -0.45,-1 -1,-1h-2.17L6.98,4.15zM20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-0.14,-0.14C18.65,21.91 18.34,22 18,22H6c-1.1,0 -2,-0.9 -2,-2V8c0,-0.36 0.06,-0.69 0.15,-1.02L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9zM11.17,14l-2,-2H7c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1H11.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_cell.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_cell.xml
deleted file mode 100644
index 072bedb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.83,6l-3.7,-3.7C5.42,1.55 6.15,1 7,1l10,0.01c1.1,0 2,0.89 2,1.99v13.17l-2,-2V6H8.83zM20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-0.2,-0.2C18.58,22.45 17.85,23 17,23H7c-1.1,0 -2,-0.9 -2,-2V7.83l-2.9,-2.9c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9zM15.17,18L7,9.83V18H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_crash.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_crash.xml
deleted file mode 100644
index b972506..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,24c0.82,0 1.5,-0.67 1.5,-1.5v-7.16c0,-0.22 -0.04,-0.45 -0.11,-0.66l-1.97,-5.67C18.72,8.42 18.16,8 17.5,8h-11C5.84,8 5.29,8.42 5.08,9.01l-1.97,5.67C3.04,14.89 3,15.11 3,15.34v7.16C3,23.33 3.68,24 4.5,24S6,23.33 6,22.5V22h12v0.5C18,23.33 18.67,24 19.5,24zM6.85,10h10.29l1.04,3H5.81L6.85,10zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM16.24,0.71c0.39,0.39 0.39,1.02 0,1.41l-3.54,3.54c-0.39,0.39 -1.02,0.39 -1.41,0L9.88,4.24c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0L12,3.54l2.83,-2.83C15.22,0.32 15.85,0.32 16.24,0.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_drinks.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_drinks.xml
deleted file mode 100644
index 438e12b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_drinks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l7.54,7.54L11,14v5H7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.32,0 0.59,-0.16 0.78,-0.4l1.3,1.3c0.39,0.39 1.02,0.39 1.41,0C20.88,21.51 20.88,20.88 20.49,20.49zM13,19v-3.17L16.17,19H13zM7.83,5l-2,-2h13.72C20.35,3 21,3.65 21,4.45c0,0.35 -0.13,0.7 -0.37,0.96l-5.83,6.56L9.83,7h6.74l1.78,-2H7.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_encryption.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_encryption.xml
deleted file mode 100644
index 38f058b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66L20,17.56L20,10c0,-1.1 -0.9,-2 -2,-2h-1L17,6c0,-2.76 -2.24,-5 -5,-5 -2.32,0 -4.26,1.59 -4.82,3.74L8.9,6.46L8.9,6zM5.12,5.51c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l1.33,1.33C4.42,8.6 4,9.25 4,10v10c0,1.1 0.9,2 2,2h12.78l0.29,0.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.12,5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_encryption_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_encryption_gmailerrorred.xml
deleted file mode 100644
index 38f058b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_encryption_gmailerrorred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66L20,17.56L20,10c0,-1.1 -0.9,-2 -2,-2h-1L17,6c0,-2.76 -2.24,-5 -5,-5 -2.32,0 -4.26,1.59 -4.82,3.74L8.9,6.46L8.9,6zM5.12,5.51c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l1.33,1.33C4.42,8.6 4,9.25 4,10v10c0,1.1 0.9,2 2,2h12.78l0.29,0.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.12,5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_flash.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_flash.xml
deleted file mode 100644
index 2b49834..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_flash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.16,3.16c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l4.6,4.6L6.14,9.4H3.6C2.72,9.4 2,10.12 2,11v9.4C2,21.28 2.72,22 3.6,22h12.8c0.75,0 1.38,-0.52 1.55,-1.22l1.47,1.47c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.16,3.16zM10,20c-2.21,0 -4,-1.79 -4,-4c0,-1.95 1.4,-3.57 3.25,-3.92l1.57,1.57c-0.26,-0.09 -0.53,-0.15 -0.82,-0.15c-1.38,0 -2.5,1.12 -2.5,2.5c0,1.38 1.12,2.5 2.5,2.5c1.38,0 2.5,-1.12 2.5,-2.5c0,-0.29 -0.06,-0.56 -0.15,-0.82l1.57,1.57C13.57,18.6 11.95,20 10,20zM18,15.17L10.83,8h0.87c0.56,0 1.1,0.24 1.48,0.65l0.69,0.75h2.54c0.88,0 1.6,0.72 1.6,1.6V15.17zM20.4,5.6h0.75c0.38,0 0.62,0.41 0.44,0.74L19,11V7h-0.5C18.22,7 18,6.78 18,6.5v-4C18,2.22 18.22,2 18.5,2h2.73c0.36,0 0.6,0.37 0.46,0.7L20.4,5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_food.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_food.xml
deleted file mode 100644
index 12f4ebb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_food.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,22c0,0.55 -0.45,1 -1,1H2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h13C15.55,21 16,21.45 16,22zM22.89,6.1C22.95,5.51 22.49,5 21.9,5H18V2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-3.9c-0.59,0 -1.05,0.51 -1,1.1l0.24,2.41L18,15.17l3.62,3.62L22.89,6.1zM21.19,22.61c0.39,-0.39 0.39,-1.02 0,-1.41L12,12L9.01,9.01h0l-6.2,-6.2c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C1,3.2 1,3.83 1.39,4.22l4.99,4.99c-2.56,0.54 -4.76,2.08 -5.28,4.63C0.99,14.45 1.49,15 2.1,15l10.07,0l2,2H2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h13c0.32,0 0.59,-0.16 0.78,-0.4l4,4C20.17,23 20.8,23 21.19,22.61L21.19,22.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_luggage.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_luggage.xml
deleted file mode 100644
index ed28238..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l2.92,2.92C5.02,7.9 5,7.95 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1c0.34,0 0.65,-0.09 0.93,-0.24l1.14,1.14c0.39,0.39 1.02,0.39 1.41,0C20.88,21.51 20.88,20.88 20.49,20.49zM8.75,18C8.34,18 8,17.66 8,17.25v-6.42l1.5,1.5v4.92C9.5,17.66 9.16,18 8.75,18zM12,18c-0.41,0 -0.75,-0.34 -0.75,-0.75v-3.17l1.5,1.5v1.67C12.75,17.66 12.41,18 12,18zM12,9c0.41,0 0.75,0.34 0.75,0.75v0.17l1.75,1.75V9.75C14.5,9.34 14.84,9 15.25,9S16,9.34 16,9.75v3.42l3,3V8c0,-1.1 -0.9,-2 -2,-2h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H8.83l3.03,3.03C11.91,9.02 11.95,9 12,9zM10.5,3.5h3V6h-3V3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_meals.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_meals.xml
deleted file mode 100644
index dded229..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_meals.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18.17l-2,-2V14h-1c-1.1,0 -2,-0.9 -2,-2V6c0,-1.49 1.6,-3.32 3.76,-3.85C20.39,2 21,2.48 21,3.13V18.17zM21.19,22.61c-0.39,0.39 -1.02,0.39 -1.41,0l-9.76,-9.76C9.69,12.94 9.36,13 9,13v8c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-8c-2.21,0 -4,-1.79 -4,-4V5.83L1.39,4.22C1,3.83 1,3.2 1.39,2.81c0.39,-0.39 1.02,-0.39 1.41,0l18.38,18.38C21.58,21.58 21.58,22.22 21.19,22.61zM6.17,9L5,7.83V9H6.17zM13,9V3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v5.17l1.85,1.85C12.94,9.69 13,9.36 13,9zM9,3c0,-0.55 -0.45,-1 -1,-1S7,2.45 7,3v1.17l2,2V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_meeting_room.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_meeting_room.xml
deleted file mode 100644
index 65f82f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6h3v7.88l2,2L19,5c0,-0.55 -0.45,-1 -1,-1h-4c0,-0.55 -0.45,-1 -1,-1L6.12,3L14,10.88L14,6zM21.17,20.88L12,11.71L12,13h-2v-2h1.29L3.12,2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L5,7.54L5,19L4,19c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h9c0.55,0 1,-0.45 1,-1v-3.46l5.75,5.75c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.39 0.4,-1.02 0.01,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_photography.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_photography.xml
deleted file mode 100644
index a41d36f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_photography.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.94,8.12L7.48,4.66L8.4,3.65C8.78,3.24 9.32,3 9.88,3h4.24c0.56,0 1.1,0.24 1.47,0.65L16.83,5H20c1.1,0 2,0.9 2,2v12c0,0.05 -0.01,0.1 -0.02,0.16l-5.1,-5.1C16.96,13.71 17,13.36 17,13c0,-2.76 -2.24,-5 -5,-5C11.64,8 11.29,8.04 10.94,8.12zM19.78,22.61L18.17,21H4c-1.1,0 -2,-0.9 -2,-2V7c0,-0.59 0.27,-1.12 0.68,-1.49L1.39,4.22C1,3.83 1,3.2 1.39,2.81l0,0c0.39,-0.39 1.02,-0.39 1.41,0l18.38,18.38c0.39,0.39 0.39,1.02 0,1.41l0,0C20.8,23 20.17,23 19.78,22.61zM14.49,17.32l-1.5,-1.5C12.67,15.92 12.35,16 12,16c-1.66,0 -3,-1.34 -3,-3c0,-0.35 0.08,-0.67 0.19,-0.98l-1.5,-1.5C7.25,11.24 7,12.09 7,13c0,2.76 2.24,5 5,5C12.91,18 13.76,17.75 14.49,17.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_sim.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_sim.xml
deleted file mode 100644
index f292c9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.09,4.44c-0.39,0.39 -0.39,1.02 0,1.41l2.03,2.03 -0.12,0.13V19c0,1.1 0.9,2 2,2h10c0.35,0 0.68,-0.1 0.97,-0.26l1.17,1.17c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.5,4.44c-0.39,-0.39 -1.02,-0.39 -1.41,0zM19,16.11V5c0,-1.1 -0.9,-2 -2,-2h-6.99L7.95,5.06 19,16.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_stroller.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_stroller.xml
deleted file mode 100644
index f282604..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_stroller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S8,18.9 8,20zM14.3,4.1C13.03,3.4 11.56,3 10,3C8.77,3 7.61,3.26 6.54,3.71l4.37,4.37L14.3,4.1zM20.49,21.9c0.39,-0.39 0.39,-1.02 0,-1.41l-9.82,-9.82L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l7.26,7.26l-2.66,3.12c-0.55,0.65 -0.09,1.65 0.76,1.65h6.66l1.17,1.17c-0.88,0.33 -1.47,1.25 -1.26,2.28c0.15,0.76 0.78,1.39 1.54,1.54c1.03,0.21 1.95,-0.38 2.28,-1.26l1.2,1.2C19.46,22.29 20.09,22.29 20.49,21.9L20.49,21.9zM17,6.27C17.58,5.59 17.97,5 18.65,5c0.68,0 1.22,0.52 1.33,1.21C20.08,6.66 20.48,7 20.96,7c0.55,0 1,-0.45 1,-1c0,-0.06 0,-0.11 -0.01,-0.16l0,-0.01C21.65,4.22 20.3,3 18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03l-3.5,4.11L17,14.17V6.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/no_transfer.xml b/compose/material/material/icons/generator/raw-icons/rounded/no_transfer.xml
deleted file mode 100644
index 350d470..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/no_transfer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.78,2.95C7.24,2.16 9.48,2 12,2c4.42,0 8,0.5 8,4v10c0,0.35 -0.08,0.67 -0.19,0.98L13.83,11H18V6H8.83L5.78,2.95zM20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-1.01,-1.01C17.89,20.96 17.7,21 17.5,21c-0.83,0 -1.5,-0.68 -1.5,-1.5V19H8v0.5C8,20.33 7.33,21 6.5,21S5,20.33 5,19.5v-1.28C4.39,17.67 4,16.88 4,16V6.83l-1.9,-1.9c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9zM9,15.5C9,14.67 8.33,14 7.5,14S6,14.67 6,15.5C6,16.33 6.67,17 7.5,17S9,16.33 9,15.5zM8.17,11L6,8.83V11H8.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/noise_aware.xml b/compose/material/material/icons/generator/raw-icons/rounded/noise_aware.xml
deleted file mode 100644
index aed94cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/noise_aware.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.62,16.45c0.36,-0.65 -0.15,-1.45 -0.9,-1.45c-0.34,0 -0.68,0.16 -0.84,0.47C13.72,15.78 13.38,16 13,16c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c0.98,0 1.84,0.57 2.24,1.4c0.18,0.36 0.52,0.6 0.91,0.6c0.75,0 1.22,-0.79 0.89,-1.46C14.82,7.04 13.28,6 11.5,6c-2.89,0 -5.15,2.74 -4.33,5.76c0.22,0.8 0.68,1.51 1.27,2.1l1.27,1.27c0.15,0.16 0.28,0.38 0.4,0.71c0.41,1.13 1.38,2.04 2.58,2.16C13.95,18.11 15.07,17.46 15.62,16.45z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.75,7.01c0.34,-0.43 0.27,-1.06 -0.16,-1.41C5.16,5.26 4.53,5.33 4.18,5.77C3.84,6.2 3.91,6.83 4.34,7.17C4.77,7.51 5.4,7.44 5.75,7.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.25,16.99c-0.34,0.43 -0.27,1.06 0.16,1.41s1.06,0.27 1.41,-0.16c0.34,-0.43 0.27,-1.06 -0.16,-1.41C19.23,16.49 18.6,16.56 18.25,16.99z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.2,13.78c-0.12,-0.54 -0.66,-0.88 -1.2,-0.75s-0.88,0.66 -0.75,1.2c0.12,0.54 0.66,0.88 1.2,0.75C3.99,14.86 4.32,14.32 4.2,13.78z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,10.22c0.12,0.54 0.66,0.88 1.2,0.75s0.88,-0.66 0.75,-1.2s-0.66,-0.88 -1.2,-0.75C20.01,9.14 19.68,9.68 19.8,10.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.53,19.21c-0.5,-0.24 -1.1,-0.03 -1.33,0.47c-0.24,0.5 -0.03,1.1 0.47,1.33c0.5,0.24 1.1,0.03 1.33,-0.47C9.24,20.05 9.03,19.45 8.53,19.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.47,4.79c0.5,0.24 1.1,0.03 1.33,-0.47c0.24,-0.5 0.03,-1.1 -0.47,-1.33c-0.5,-0.24 -1.1,-0.03 -1.33,0.47C14.76,3.95 14.97,4.55 15.47,4.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.47,19.21c-0.5,0.24 -0.71,0.84 -0.47,1.33s0.84,0.71 1.33,0.47c0.5,-0.24 0.71,-0.84 0.47,-1.33C16.57,19.18 15.97,18.97 15.47,19.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.53,4.79C9.03,4.55 9.23,3.96 9,3.46c-0.24,-0.5 -0.84,-0.71 -1.33,-0.47S6.95,3.83 7.19,4.33S8.03,5.03 8.53,4.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13.03c-0.54,-0.12 -1.07,0.21 -1.2,0.75c-0.12,0.54 0.21,1.07 0.75,1.2c0.54,0.12 1.07,-0.21 1.2,-0.75C21.87,13.69 21.54,13.15 21,13.03z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10.97c0.54,0.12 1.07,-0.21 1.2,-0.75c0.12,-0.54 -0.21,-1.07 -0.75,-1.2s-1.07,0.21 -1.2,0.75C2.13,10.31 2.46,10.85 3,10.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,7.17c0.43,-0.34 0.5,-0.97 0.16,-1.41s-0.97,-0.5 -1.41,-0.16c-0.43,0.34 -0.5,0.97 -0.16,1.41C18.6,7.44 19.23,7.51 19.66,7.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.34,16.83c-0.43,0.34 -0.5,0.97 -0.16,1.41c0.34,0.43 0.97,0.5 1.41,0.16c0.43,-0.34 0.5,-0.97 0.16,-1.41S4.77,16.49 4.34,16.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/noise_control_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/noise_control_off.xml
deleted file mode 100644
index c808770..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/noise_control_off.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.2,0 2.33,0.26 3.35,0.74c0.36,0.17 0.79,0.12 1.07,-0.17l0.06,-0.06c0.47,-0.47 0.35,-1.29 -0.25,-1.57C14.95,2.34 13.51,2 12,2S9.05,2.34 7.76,2.94c-0.6,0.28 -0.72,1.1 -0.25,1.57l0.06,0.06c0.28,0.28 0.71,0.34 1.07,0.17C9.67,4.26 10.8,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,1.2 -0.26,2.33 -0.74,3.35c-0.17,0.36 -0.12,0.79 0.17,1.07l0.06,0.06c0.47,0.47 1.29,0.35 1.57,-0.25C21.66,14.95 22,13.51 22,12s-0.34,-2.95 -0.94,-4.24c-0.28,-0.6 -1.1,-0.72 -1.57,-0.25l-0.06,0.06c-0.28,0.28 -0.34,0.71 -0.17,1.07C19.74,9.67 20,10.8 20,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-1.2,0 -2.33,-0.26 -3.35,-0.74c-0.36,-0.17 -0.79,-0.12 -1.07,0.17l-0.06,0.06c-0.47,0.47 -0.35,1.29 0.25,1.57C9.05,21.66 10.49,22 12,22s2.95,-0.34 4.24,-0.94c0.6,-0.28 0.72,-1.1 0.25,-1.57l-0.06,-0.06c-0.28,-0.28 -0.71,-0.34 -1.07,-0.17C14.33,19.74 13.2,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-1.2 0.26,-2.33 0.74,-3.35c0.17,-0.36 0.12,-0.79 -0.17,-1.07L4.51,7.51C4.04,7.04 3.23,7.16 2.94,7.76C2.34,9.05 2,10.49 2,12s0.34,2.95 0.94,4.24c0.28,0.6 1.1,0.72 1.57,0.25l0.06,-0.06c0.28,-0.28 0.34,-0.71 0.17,-1.07C4.26,14.33 4,13.2 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6c-2.89,0 -5.15,2.74 -4.33,5.76c0.22,0.8 0.68,1.51 1.27,2.1l1.27,1.27c0.15,0.16 0.28,0.38 0.4,0.71c0.41,1.13 1.38,2.04 2.58,2.16c1.25,0.12 2.37,-0.53 2.93,-1.53c0.36,-0.65 -0.15,-1.45 -0.9,-1.45h0c-0.34,0 -0.68,0.16 -0.84,0.47C13.72,15.78 13.38,16 13,16c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c0.98,0 1.83,0.57 2.24,1.4c0.18,0.36 0.52,0.6 0.91,0.6h0c0.75,0 1.22,-0.79 0.89,-1.46C14.82,7.04 13.28,6 11.5,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/nordic_walking.xml b/compose/material/material/icons/generator/raw-icons/rounded/nordic_walking.xml
deleted file mode 100644
index 2288871..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/nordic_walking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.25,23c-0.41,0 -0.75,-0.34 -0.75,-0.75V14H19v8.25C19,22.66 18.66,23 18.25,23zM4.93,23c0.35,0 0.66,-0.24 0.73,-0.59L7.53,14H6l-1.8,8.09C4.1,22.56 4.45,23 4.93,23zM13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM14,23c0.55,0 1,-0.45 1,-1v-5.64c0,-0.55 -0.22,-1.07 -0.62,-1.45L12.9,13.5l0.6,-3c1.07,1.24 2.62,2.13 4.36,2.41c0.6,0.1 1.14,-0.38 1.14,-0.99c0,-0.49 -0.35,-0.91 -0.83,-0.98c-1.53,-0.24 -2.79,-1.14 -3.47,-2.33l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.66,-0.84L7.22,7.78C6.48,8.1 6,8.82 6,9.62V12c0,0.55 0.45,1 1,1s1,-0.45 1,-1V9.6l1.8,-0.7L7.25,21.76C7.12,22.4 7.61,23 8.27,23c0.49,0 0.91,-0.34 1.02,-0.81L10.9,15l2.1,2v5C13,22.55 13.45,23 14,23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/north.xml b/compose/material/material/icons/generator/raw-icons/rounded/north.xml
deleted file mode 100644
index e5c7fa9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/north.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.71,9.7L5.71,9.7c0.39,0.39 1.02,0.39 1.41,0L11,5.83V21c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V5.83l3.88,3.88c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L12.7,2.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L5.71,8.29C5.32,8.68 5.32,9.32 5.71,9.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/north_east.xml b/compose/material/material/icons/generator/raw-icons/rounded/north_east.xml
deleted file mode 100644
index 4b40018..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/north_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6L9,6c0,0.56 0.45,1 1,1h5.59L4.7,17.89c-0.39,0.39 -0.39,1.02 0,1.41h0c0.39,0.39 1.02,0.39 1.41,0L17,8.41V14c0,0.55 0.45,1 1,1H18c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1H10C9.45,5 9,5.45 9,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/north_west.xml b/compose/material/material/icons/generator/raw-icons/rounded/north_west.xml
deleted file mode 100644
index a52f193..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/north_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15L6,15c0.56,0 1,-0.45 1,-1V8.41L17.89,19.3c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L8.41,7H14c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1H6C5.45,5 5,5.45 5,6V14C5,14.55 5.45,15 6,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/not_accessible.xml b/compose/material/material/icons/generator/raw-icons/rounded/not_accessible.xml
deleted file mode 100644
index 7e7db2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/not_accessible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,2 12,2zM10,20c-1.66,0 -3,-1.34 -3,-3c0,-1.31 0.84,-2.41 2,-2.83V12.1c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h-2.07C12.42,19.16 11.31,20 10,20zM20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l7.9,7.9V15c0,1.1 0.9,2 2,2h2.17l4.9,4.9c0.39,0.39 1.02,0.39 1.41,0C20.88,21.51 20.88,20.88 20.49,20.49zM18.16,10.93c-1.25,-0.21 -2.43,-0.88 -3.23,-1.76l-1.29,-1.43C13.4,7.5 13.2,7.38 13.01,7.28c-0.36,-0.19 -0.72,-0.3 -1.2,-0.26c-0.49,0.04 -0.91,0.27 -1.23,0.61L14,11.05c1,0.83 2.4,1.54 3.8,1.82C18.42,13 19,12.53 19,11.9C19,11.42 18.64,11.01 18.16,10.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/not_interested.xml b/compose/material/material/icons/generator/raw-icons/rounded/not_interested.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/not_interested.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/not_listed_location.xml b/compose/material/material/icons/generator/raw-icons/rounded/not_listed_location.xml
deleted file mode 100644
index 7962899c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/not_listed_location.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.22c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM12.01,16c-0.59,0 -1.05,-0.47 -1.05,-1.05c0,-0.59 0.47,-1.04 1.05,-1.04c0.59,0 1.04,0.45 1.04,1.04C13.05,15.53 12.61,16 12.01,16zM14.52,9.83c-0.63,0.93 -1.23,1.21 -1.56,1.81c-0.08,0.14 -0.13,0.26 -0.16,0.49c-0.05,0.39 -0.36,0.68 -0.75,0.68h-0.03c-0.44,0 -0.79,-0.38 -0.75,-0.82c0.03,-0.27 0.09,-0.57 0.25,-0.84c0.41,-0.73 1.18,-1.16 1.63,-1.8c0.48,-0.68 0.21,-1.94 -1.14,-1.94c-0.61,0 -1.01,0.32 -1.26,0.7c-0.19,0.29 -0.57,0.39 -0.89,0.25c-0.42,-0.18 -0.6,-0.7 -0.34,-1.07C10.03,6.55 10.88,6 12,6c1.23,0 2.08,0.56 2.51,1.26C14.87,7.87 15.09,8.99 14.52,9.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/not_started.xml b/compose/material/material/icons/generator/raw-icons/rounded/not_started.xml
deleted file mode 100644
index 4cd3e10..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/not_started.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM11,15c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V15zM16.02,12.78l-2.4,1.92C12.97,15.22 12,14.76 12,13.92v-3.84c0,-0.84 0.97,-1.3 1.62,-0.78l2.4,1.92C16.52,11.62 16.52,12.38 16.02,12.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/note.xml b/compose/material/material/icons/generator/raw-icons/rounded/note.xml
deleted file mode 100644
index 69b9f82..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,9.41l-4.83,-4.83c-0.37,-0.37 -0.88,-0.58 -1.41,-0.58H4c-1.1,0 -2,0.9 -2,2v12.01c0,1.1 0.89,1.99 1.99,1.99H20c1.1,0 2,-0.9 2,-2v-7.17c0,-0.53 -0.21,-1.04 -0.59,-1.42zM15,5.5l5.5,5.5H16c-0.55,0 -1,-0.45 -1,-1V5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/note_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/note_add.xml
deleted file mode 100644
index 881b623..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/note_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,2.59c-0.38,-0.38 -0.89,-0.59 -1.42,-0.59L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.82,-4.83zM15,16h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2L9,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM13,8L13,3.5L18.5,9L14,9c-0.55,0 -1,-0.45 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/note_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/note_alt.xml
deleted file mode 100644
index 12f1dc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/note_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75S12.41,4.25 12,4.25s-0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75zM8.9,17H7.5C7.22,17 7,16.78 7,16.5v-1.43c0,-0.13 0.05,-0.26 0.15,-0.35l5.81,-5.81l2.12,2.12l-5.83,5.83C9.16,16.95 9.03,17 8.9,17zM16.85,9.27l-1.06,1.06l-2.12,-2.12l1.06,-1.06c0.2,-0.2 0.51,-0.2 0.71,0l1.41,1.41C17.05,8.76 17.05,9.07 16.85,9.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notes.xml b/compose/material/material/icons/generator/raw-icons/rounded/notes.xml
deleted file mode 100644
index fc3306c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM4,18h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM20,6H4c-0.55,0 -1,0.45 -1,1v0.01c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notification_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/notification_add.xml
deleted file mode 100644
index 68139dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notification_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20zM14,9c0,2.61 1.67,4.83 4,5.66L18,17h1c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h1v-7c0,-2.79 1.91,-5.14 4.5,-5.8V3.5C10.5,2.67 11.17,2 12,2s1.5,0.67 1.5,1.5v0.7c0.71,0.18 1.36,0.49 1.95,0.9C14.54,6.14 14,7.51 14,9zM23,8h-2V6c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0C24,8.45 23.55,8 23,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notification_important.xml b/compose/material/material/icons/generator/raw-icons/rounded/notification_important.xml
deleted file mode 100644
index 4279646..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notification_important.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,23c1.1,0 1.99,-0.89 1.99,-1.99h-3.98c0,1.1 0.89,1.99 1.99,1.99zM20.29,18.29L19,17v-6c0,-3.35 -2.36,-6.15 -5.5,-6.83L13.5,3c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v1.17C7.36,4.85 5,7.65 5,11v6l-1.29,1.29c-0.63,0.63 -0.19,1.71 0.7,1.71h15.17c0.9,0 1.34,-1.08 0.71,-1.71zM13,16h-2v-2h2v2zM13,11c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notifications.xml b/compose/material/material/icons/generator/raw-icons/rounded/notifications.xml
deleted file mode 100644
index 1ccc080..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-1.29,1.29c-0.63,0.63 -0.19,1.71 0.7,1.71h13.17c0.89,0 1.34,-1.08 0.71,-1.71L18,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notifications_active.xml b/compose/material/material/icons/generator/raw-icons/rounded/notifications_active.xml
deleted file mode 100644
index af6e83a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notifications_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.68,-1.5 -1.51,-1.5S10.5,3.17 10.5,4v0.68C7.63,5.36 6,7.92 6,11v5l-1.3,1.29c-0.63,0.63 -0.19,1.71 0.7,1.71h13.17c0.89,0 1.34,-1.08 0.71,-1.71L18,16zM11.99,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM6.77,4.73c0.42,-0.38 0.43,-1.03 0.03,-1.43 -0.38,-0.38 -1,-0.39 -1.39,-0.02C3.7,4.84 2.52,6.96 2.14,9.34c-0.09,0.61 0.38,1.16 1,1.16 0.48,0 0.9,-0.35 0.98,-0.83 0.3,-1.94 1.26,-3.67 2.65,-4.94zM18.6,3.28c-0.4,-0.37 -1.02,-0.36 -1.4,0.02 -0.4,0.4 -0.38,1.04 0.03,1.42 1.38,1.27 2.35,3 2.65,4.94 0.07,0.48 0.49,0.83 0.98,0.83 0.61,0 1.09,-0.55 0.99,-1.16 -0.38,-2.37 -1.55,-4.48 -3.25,-6.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notifications_none.xml b/compose/material/material/icons/generator/raw-icons/rounded/notifications_none.xml
deleted file mode 100644
index 0c3442b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notifications_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.29,17.29L18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-1.29,1.29c-0.63,0.63 -0.19,1.71 0.7,1.71h13.17c0.9,0 1.34,-1.08 0.71,-1.71zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6zM12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notifications_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/notifications_off.xml
deleted file mode 100644
index 490cf79..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notifications_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,11c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68c-0.24,0.06 -0.47,0.15 -0.69,0.23L18,13.1L18,11zM5.41,3.35L4,4.76l2.81,2.81C6.29,8.57 6,9.73 6,11v5l-1.29,1.29c-0.63,0.63 -0.19,1.71 0.7,1.71h12.83l1.74,1.74 1.41,-1.41L5.41,3.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/notifications_paused.xml b/compose/material/material/icons/generator/raw-icons/rounded/notifications_paused.xml
deleted file mode 100644
index 5dec0e2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/notifications_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM19.29,17.29L18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-1.29,1.29c-0.63,0.63 -0.19,1.71 0.7,1.71h13.17c0.9,0 1.34,-1.08 0.71,-1.71zM14.5,9.33c0,0.31 -0.11,0.6 -0.3,0.84l-2.5,3.03h1.9c0.5,0 0.9,0.4 0.9,0.9s-0.4,0.9 -0.9,0.9h-2.78c-0.73,0 -1.32,-0.59 -1.32,-1.32v-0.01c0,-0.31 0.11,-0.6 0.3,-0.84l2.5,-3.03h-1.9c-0.5,0 -0.9,-0.4 -0.9,-0.9s0.4,-0.9 0.9,-0.9h2.78c0.73,0 1.32,0.59 1.32,1.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/numbers.xml b/compose/material/material/icons/generator/raw-icons/rounded/numbers.xml
deleted file mode 100644
index cef9d55..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/numbers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.68,9.27l0.01,-0.06C20.85,8.59 20.39,8 19.76,8H17l0.7,-2.79C17.85,4.59 17.39,4 16.76,4h0c-0.45,0 -0.83,0.3 -0.94,0.73L15,8h-4l0.7,-2.79C11.85,4.59 11.39,4 10.76,4h0c-0.45,0 -0.83,0.3 -0.94,0.73L9,8H5.76C5.31,8 4.92,8.3 4.82,8.73L4.8,8.79C4.65,9.41 5.11,10 5.74,10H8.5l-1,4H4.26c-0.45,0 -0.83,0.3 -0.94,0.73L3.3,14.79C3.15,15.41 3.61,16 4.24,16H7l-0.7,2.79C6.15,19.41 6.61,20 7.24,20h0c0.45,0 0.83,-0.3 0.94,-0.73L9,16h4l-0.7,2.79C12.15,19.41 12.61,20 13.24,20h0c0.45,0 0.83,-0.3 0.94,-0.73L15,16h3.24c0.45,0 0.83,-0.3 0.94,-0.73l0.01,-0.06c0.15,-0.61 -0.31,-1.21 -0.94,-1.21H15.5l1,-4h3.24C20.19,10 20.58,9.7 20.68,9.27zM13.5,14h-4l1,-4h4L13.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/offline_bolt.xml b/compose/material/material/icons/generator/raw-icons/rounded/offline_bolt.xml
deleted file mode 100644
index 0a6275f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/offline_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2.02c-5.51,0 -9.98,4.47 -9.98,9.98s4.47,9.98 9.98,9.98 9.98,-4.47 9.98,-9.98S17.51,2.02 12,2.02zM11.48,17.88v-4.14L8.82,13.74c-0.37,0 -0.62,-0.4 -0.44,-0.73l3.68,-7.17c0.23,-0.47 0.94,-0.3 0.94,0.23v4.19h2.54c0.37,0 0.61,0.39 0.45,0.72l-3.56,7.12c-0.24,0.48 -0.95,0.31 -0.95,-0.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/offline_pin.xml b/compose/material/material/icons/generator/raw-icons/rounded/offline_pin.xml
deleted file mode 100644
index c141193..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/offline_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM16,18L8,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM9.59,13.29L7.7,11.4c-0.39,-0.39 -0.39,-1.01 0,-1.4 0.39,-0.39 1.01,-0.39 1.4,0l1.2,1.2 4.6,-4.6c0.39,-0.39 1.01,-0.39 1.4,0 0.39,0.39 0.39,1.01 0,1.4l-5.29,5.29c-0.39,0.39 -1.03,0.39 -1.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/offline_share.xml b/compose/material/material/icons/generator/raw-icons/rounded/offline_share.xml
deleted file mode 100644
index 599180f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/offline_share.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5L5,5C4.45,5 4,5.45 4,6v15c0,1.1 0.9,2 2,2h9c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H6V6C6,5.45 5.55,5 5,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1h-8C8.9,1 8,1.9 8,3v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V3C20,1.9 19.1,1 18,1zM18,15h-8V5h8V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,10.25h2v0.54c0,0.45 0.54,0.67 0.85,0.35l1.29,-1.29c0.2,-0.2 0.2,-0.51 0,-0.71l-1.29,-1.29c-0.31,-0.31 -0.85,-0.09 -0.85,0.35v0.54H12c-0.55,0 -1,0.45 -1,1v1.5c0,0.41 0.34,0.75 0.75,0.75h0c0.41,0 0.75,-0.34 0.75,-0.75V10.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/oil_barrel.xml b/compose/material/material/icons/generator/raw-icons/rounded/oil_barrel.xml
deleted file mode 100644
index d379f49..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/oil_barrel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1V5h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-6H20zM12,16c-1.66,0 -3,-1.32 -3,-2.95c0,-1.16 0.41,-1.58 2.24,-3.68c0.4,-0.46 1.12,-0.46 1.51,0c1.82,2.09 2.24,2.52 2.24,3.68C15,14.68 13.66,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/on_device_training.xml b/compose/material/material/icons/generator/raw-icons/rounded/on_device_training.xml
deleted file mode 100644
index 902fe09..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/on_device_training.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,17h1c0.28,0 0.5,-0.22 0.5,-0.5l0,0c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5l0,0C11,16.78 11.22,17 11.5,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.52,11.06c-0.71,0.16 -1.29,0.74 -1.46,1.44c-0.23,0.94 0.21,1.8 0.94,2.22v0.53c0,0.14 0.11,0.25 0.25,0.25h1.5c0.14,0 0.25,-0.11 0.25,-0.25v-0.53c0.6,-0.35 1,-0.98 1,-1.72C14,11.74 12.83,10.75 11.52,11.06z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L6,1C4.9,1 4,1.9 4,3v18c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V3C20,1.9 19.1,1.01 18,1.01zM18,18H6V6h12V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.33,15.27c0.36,0.36 0.99,0.26 1.21,-0.2C16.83,14.44 17,13.74 17,13s-0.17,-1.44 -0.46,-2.07c-0.22,-0.47 -0.84,-0.57 -1.21,-0.2l0,0c-0.22,0.22 -0.28,0.56 -0.15,0.84c0.2,0.44 0.31,0.92 0.31,1.43s-0.11,0.99 -0.31,1.43C15.06,14.72 15.11,15.05 15.33,15.27L15.33,15.27z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.67,15.27c0.22,-0.22 0.28,-0.56 0.15,-0.84C8.61,13.99 8.5,13.51 8.5,13c0,-1.93 1.57,-3.5 3.5,-3.5v0.69c0,0.22 0.25,0.33 0.42,0.19l1.62,-1.44c0.11,-0.1 0.11,-0.27 0,-0.37l-1.62,-1.44C12.25,6.98 12,7.09 12,7.31V8c-2.76,0 -5,2.24 -5,5c0,0.74 0.17,1.44 0.46,2.07C7.68,15.54 8.3,15.64 8.67,15.27L8.67,15.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ondemand_video.xml b/compose/material/material/icons/generator/raw-icons/rounded/ondemand_video.xml
deleted file mode 100644
index 0b5376d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ondemand_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM20,17L4,17c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1zM14.48,11.87l-3.98,2.28c-0.67,0.38 -1.5,-0.11 -1.5,-0.87L9,8.72c0,-0.77 0.83,-1.25 1.5,-0.87l3.98,2.28c0.67,0.39 0.67,1.35 0,1.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/online_prediction.xml b/compose/material/material/icons/generator/raw-icons/rounded/online_prediction.xml
deleted file mode 100644
index 75f71e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/online_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5C8.5,9.57 10.07,8 12,8S15.5,9.57 15.5,11.5zM13,17.5h-2V18c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V17.5zM22,12c0,-2.46 -0.89,-4.71 -2.36,-6.45c-0.29,-0.34 -0.8,-0.38 -1.12,-0.06l0,0c-0.27,0.27 -0.3,0.71 -0.06,1C19.73,7.97 20.5,9.9 20.5,12c0,2.1 -0.77,4.03 -2.04,5.52c-0.25,0.29 -0.21,0.73 0.06,1l0,0c0.32,0.32 0.83,0.28 1.12,-0.06C21.11,16.71 22,14.46 22,12zM3.5,12c0,-2.1 0.77,-4.03 2.04,-5.52c0.25,-0.29 0.21,-0.73 -0.06,-1l0,0C5.17,5.17 4.65,5.2 4.36,5.54C2.89,7.29 2,9.54 2,12c0,2.46 0.89,4.71 2.36,6.46c0.29,0.34 0.8,0.38 1.12,0.06l0,0c0.27,-0.27 0.3,-0.71 0.06,-1C4.27,16.03 3.5,14.1 3.5,12zM17.5,12c0,1.28 -0.44,2.47 -1.18,3.41c-0.23,0.29 -0.2,0.71 0.07,0.98l0,0c0.32,0.32 0.85,0.29 1.13,-0.07C18.44,15.13 19,13.63 19,12c0,-1.63 -0.56,-3.13 -1.49,-4.31c-0.28,-0.36 -0.81,-0.39 -1.13,-0.07l0,0c-0.26,0.26 -0.3,0.68 -0.07,0.98C17.06,9.53 17.5,10.72 17.5,12zM7.62,16.38L7.62,16.38c0.26,-0.26 0.3,-0.68 0.07,-0.98C6.94,14.47 6.5,13.28 6.5,12c0,-1.28 0.44,-2.47 1.18,-3.41c0.23,-0.29 0.2,-0.71 -0.07,-0.98l0,0C7.3,7.3 6.77,7.33 6.49,7.68C5.56,8.87 5,10.37 5,12c0,1.63 0.56,3.13 1.49,4.32C6.77,16.67 7.3,16.7 7.62,16.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/opacity.xml b/compose/material/material/icons/generator/raw-icons/rounded/opacity.xml
deleted file mode 100644
index f277167..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/opacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,7.56L17.65,7.56L12.7,2.69c-0.39,-0.38 -1.01,-0.38 -1.4,0L6.35,7.56l0,0C4.9,8.99 4,10.96 4,13.13C4,17.48 7.58,21 12,21c4.42,0 8,-3.52 8,-7.87C20,10.96 19.1,8.99 17.65,7.56zM7.75,8.99L12,4.81l4.25,4.18c0.88,0.87 2.04,2.59 1.67,5.01H6.07C5.7,11.58 6.87,9.85 7.75,8.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/open_in_browser.xml b/compose/material/material/icons/generator/raw-icons/rounded/open_in_browser.xml
deleted file mode 100644
index cccbfb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/open_in_browser.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,18L5,8h14v10h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM11.65,10.35l-2.79,2.79c-0.32,0.32 -0.1,0.86 0.35,0.86L11,14v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.19,-0.2 -0.51,-0.2 -0.7,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/open_in_full.xml b/compose/material/material/icons/generator/raw-icons/rounded/open_in_full.xml
deleted file mode 100644
index d5ed48e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/open_in_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8.59V4c0,-0.55 -0.45,-1 -1,-1h-4.59c-0.89,0 -1.34,1.08 -0.71,1.71l1.59,1.59l-10,10l-1.59,-1.59C4.08,14.08 3,14.52 3,15.41V20c0,0.55 0.45,1 1,1h4.59c0.89,0 1.34,-1.08 0.71,-1.71l-1.59,-1.59l10,-10l1.59,1.59C19.92,9.92 21,9.48 21,8.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/open_in_new.xml b/compose/material/material/icons/generator/raw-icons/rounded/open_in_new.xml
deleted file mode 100644
index cb047ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/open_in_new.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,19H6c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v5c0,0.55 -0.45,1 -1,1zM14,4c0,0.55 0.45,1 1,1h2.59l-9.13,9.13c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L19,6.41V9c0,0.55 0.45,1 1,1s1,-0.45 1,-1V4c0,-0.55 -0.45,-1 -1,-1h-5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/open_in_new_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/open_in_new_off.xml
deleted file mode 100644
index a287be9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/open_in_new_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.79,5.8l-1.94,-1.94C14.54,3.54 14.76,3 15.21,3h5.29C20.78,3 21,3.22 21,3.5v5.29c0,0.45 -0.54,0.67 -0.85,0.35L18.21,7.2l-4.09,4.09l-1.41,-1.41L16.79,5.8zM19,13v3.17l2,2V13c0,-0.55 -0.45,-1 -1,-1H20C19.45,12 19,12.45 19,13zM19.07,21.9l-0.9,-0.9H5c-1.11,0 -2,-0.9 -2,-2V5.83l-0.9,-0.9c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97c0.39,0.39 0.39,1.02 0,1.41l0,0C20.09,22.29 19.46,22.29 19.07,21.9zM16.17,19l-4.88,-4.88L10.41,15c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l0.88,-0.88L5,7.83V19H16.17zM7.83,5H11c0.55,0 1,-0.45 1,-1V4c0,-0.55 -0.45,-1 -1,-1H5.83L7.83,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/open_with.xml b/compose/material/material/icons/generator/raw-icons/rounded/open_with.xml
deleted file mode 100644
index 1d51634..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/open_with.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,9h3c0.28,0 0.5,-0.22 0.5,-0.5L14,6h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-3.79,-3.79c-0.2,-0.2 -0.51,-0.2 -0.71,0L7.85,5.15c-0.31,0.31 -0.09,0.85 0.36,0.85L10,6v2.5c0,0.28 0.22,0.5 0.5,0.5zM8.5,10L6,10L6,8.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-3.79,3.79c-0.2,0.2 -0.2,0.51 0,0.71l3.79,3.79c0.31,0.31 0.85,0.09 0.85,-0.36L6,14h2.5c0.28,0 0.5,-0.22 0.5,-0.5v-3c0,-0.28 -0.22,-0.5 -0.5,-0.5zM22.65,11.65l-3.79,-3.79c-0.32,-0.32 -0.86,-0.1 -0.86,0.35L18,10h-2.5c-0.28,0 -0.5,0.22 -0.5,0.5v3c0,0.28 0.22,0.5 0.5,0.5L18,14v1.79c0,0.45 0.54,0.67 0.85,0.35l3.79,-3.79c0.2,-0.19 0.2,-0.51 0.01,-0.7zM13.5,15h-3c-0.28,0 -0.5,0.22 -0.5,0.5L10,18L8.21,18c-0.45,0 -0.67,0.54 -0.35,0.85l3.79,3.79c0.2,0.2 0.51,0.2 0.71,0l3.79,-3.79c0.31,-0.31 0.09,-0.85 -0.35,-0.85L14,18v-2.5c0,-0.28 -0.22,-0.5 -0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/other_houses.xml b/compose/material/material/icons/generator/raw-icons/rounded/other_houses.xml
deleted file mode 100644
index 5b67ffc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/other_houses.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.61,12.19c0.34,0.44 0.96,0.52 1.4,0.19L4,11.62V20c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-8.38l0.99,0.76c0.44,0.34 1.07,0.25 1.4,-0.19c0.34,-0.44 0.25,-1.07 -0.19,-1.4l-9.6,-7.33c-0.36,-0.27 -0.86,-0.27 -1.21,0l-9.6,7.33C1.36,11.13 1.27,11.76 1.61,12.19zM8,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9,14.55 8.55,15 8,15zM12,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,14.55 12.55,15 12,15zM16,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,14.55 16.55,15 16,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/outbond.xml b/compose/material/material/icons/generator/raw-icons/rounded/outbond.xml
deleted file mode 100644
index 5495c98..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/outbond.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.88,11.54l-4.25,4.25c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l4.25,-4.25L11.2,8.86C10.88,8.54 11.11,8 11.55,8l3.94,0c0.28,0 0.5,0.22 0.5,0.5l0,3.94c0,0.45 -0.54,0.67 -0.85,0.35L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/outbound.xml b/compose/material/material/icons/generator/raw-icons/rounded/outbound.xml
deleted file mode 100644
index 860cb67..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/outbound.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.88,11.54l-4.25,4.25c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l4.25,-4.25L11.2,8.86C10.88,8.54 11.11,8 11.55,8l3.94,0c0.28,0 0.5,0.22 0.5,0.5l0,3.94c0,0.45 -0.54,0.67 -0.85,0.35L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/outbox.xml b/compose/material/material/icons/generator/raw-icons/rounded/outbox.xml
deleted file mode 100644
index 6d94c69..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/outbox.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.21,11H11v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.79,2.79C8.54,10.46 8.76,11 9.21,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,14h-3.02c-0.63,0 -1.22,0.3 -1.6,0.8C13.84,15.53 12.98,16 12,16s-1.84,-0.47 -2.38,-1.2C9.24,14.3 8.65,14 8.02,14H5V5h14V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/outdoor_grill.xml b/compose/material/material/icons/generator/raw-icons/rounded/outdoor_grill.xml
deleted file mode 100644
index 2c12759..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/outdoor_grill.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,22c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3c-1.3,0 -2.4,0.84 -2.82,2H9.14l1.99,-3.06C11.42,14.98 11.71,15 12,15s0.58,-0.02 0.87,-0.06l1.02,1.57c0.42,-0.53 0.96,-0.95 1.6,-1.21l-0.6,-0.93c2.1,-0.95 3.64,-2.9 4.02,-5.24C19.01,8.54 18.52,8 17.92,8C15.31,8 8.69,8 6.08,8C5.48,8 4.99,8.54 5.09,9.14c0.38,2.34 1.93,4.29 4.02,5.24l-3.95,6.08c-0.3,0.46 -0.17,1.08 0.29,1.38h0c0.46,0.3 1.08,0.17 1.38,-0.29l1,-1.55h6.34C14.6,21.16 15.7,22 17,22zM17,18c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C16,18.45 16.45,18 17,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,6.47C9.48,6.75 9.68,7 9.96,7H10c0.24,0 0.44,-0.18 0.46,-0.42c0.1,-0.87 0.04,-1.39 -0.94,-2.54C9.16,3.61 8.92,3.35 8.99,2.49C9.02,2.23 8.8,2 8.53,2H8.48C8.24,2 8.03,2.19 8.01,2.43c-0.08,0.93 0.2,1.74 0.95,2.53C9.15,5.17 9.6,5.52 9.5,6.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,6.47C11.96,6.75 12.17,7 12.45,7h0.03c0.24,0 0.44,-0.18 0.46,-0.42c0.1,-0.87 0.04,-1.39 -0.94,-2.54c-0.36,-0.43 -0.61,-0.69 -0.53,-1.55C11.5,2.23 11.28,2 11.01,2h-0.05c-0.24,0 -0.45,0.19 -0.47,0.43c-0.08,0.93 0.2,1.74 0.95,2.53C11.63,5.17 12.08,5.52 11.99,6.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,6.47C14.48,6.75 14.68,7 14.96,7H15c0.24,0 0.44,-0.18 0.46,-0.42c0.1,-0.87 0.04,-1.39 -0.94,-2.54c-0.36,-0.43 -0.61,-0.69 -0.53,-1.55C14.02,2.23 13.8,2 13.53,2h-0.05c-0.24,0 -0.45,0.19 -0.47,0.43c-0.08,0.93 0.2,1.74 0.95,2.53C14.15,5.17 14.6,5.52 14.5,6.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/outlet.xml b/compose/material/material/icons/generator/raw-icons/rounded/outlet.xml
deleted file mode 100644
index 8dbea43..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/outlet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM9,12c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3C10,11.55 9.55,12 9,12zM13,18h-2c-0.55,0 -1,-0.45 -1,-1v-0.89c0,-1 0.68,-1.92 1.66,-2.08C12.92,13.82 14,14.79 14,16v1C14,17.55 13.55,18 13,18zM16,11c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/outlined_flag.xml b/compose/material/material/icons/generator/raw-icons/rounded/outlined_flag.xml
deleted file mode 100644
index adc2d01..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/outlined_flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-0.72,-1.45c-0.17,-0.34 -0.52,-0.55 -0.9,-0.55L6,4c-0.55,0 -1,0.45 -1,1v15c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-6h5l0.72,1.45c0.17,0.34 0.52,0.55 0.89,0.55L19,16c0.55,0 1,-0.45 1,-1L20,7c0,-0.55 -0.45,-1 -1,-1h-5zM18,14h-4l-1,-2L7,12L7,6h5l1,2h5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/output.xml b/compose/material/material/icons/generator/raw-icons/rounded/output.xml
deleted file mode 100644
index 0e4fd09..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/output.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,16.29l3.59,-3.59c0.39,-0.39 0.39,-1.02 0,-1.41l-3.59,-3.59c-0.39,-0.39 -1.02,-0.39 -1.41,0v0c-0.39,0.39 -0.39,1.02 0,1.41L18.17,11H10c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h8.17l-1.88,1.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0C16.68,16.68 17.32,16.68 17.71,16.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.11,0 2,-0.9 2,-2v-1c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/padding.xml b/compose/material/material/icons/generator/raw-icons/rounded/padding.xml
deleted file mode 100644
index 2037c5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/padding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5zM9,8c0,0.55 -0.45,1 -1,1S7,8.55 7,8s0.45,-1 1,-1S9,7.45 9,8zM13,8c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,7.45 13,8zM17,8c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1C16.55,7 17,7.45 17,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pages.xml b/compose/material/material/icons/generator/raw-icons/rounded/pages.xml
deleted file mode 100644
index bdeca29..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pages.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v6h5l-0.6,-2.38c-0.18,-0.74 0.48,-1.4 1.22,-1.22L11,8L11,3L5,3c-1.1,0 -2,0.9 -2,2zM8,13L3,13v6c0,1.1 0.9,2 2,2h6v-5l-2.38,0.6c-0.73,0.18 -1.4,-0.48 -1.21,-1.21L8,13zM15.38,16.6L13,16v5h6c1.1,0 2,-0.9 2,-2v-6h-5l0.6,2.38c0.18,0.74 -0.48,1.4 -1.22,1.22zM19,3h-6v5l2.38,-0.6c0.73,-0.18 1.4,0.48 1.21,1.21L16,11h5L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pageview.xml b/compose/material/material/icons/generator/raw-icons/rounded/pageview.xml
deleted file mode 100644
index 6e39997..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pageview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9C10.12,9 9,10.12 9,11.5s1.12,2.5 2.5,2.5 2.5,-1.12 2.5,-2.5S12.88,9 11.5,9zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM16.08,17.5l-2.2,-2.2c-0.9,0.58 -2.03,0.84 -3.22,0.62 -1.88,-0.35 -3.38,-1.93 -3.62,-3.83 -0.38,-3.01 2.18,-5.52 5.21,-5.04 1.88,0.3 3.39,1.84 3.7,3.71 0.19,1.16 -0.08,2.23 -0.64,3.12l2.2,2.19c0.39,0.39 0.39,1.03 0,1.42 -0.4,0.4 -1.04,0.4 -1.43,0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/paid.xml b/compose/material/material/icons/generator/raw-icons/rounded/paid.xml
deleted file mode 100644
index aa85c66..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/paid.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12.88,17.76v0.36c0,0.48 -0.39,0.88 -0.88,0.88h0c-0.48,0 -0.88,-0.39 -0.88,-0.88v-0.42c-0.63,-0.15 -1.93,-0.61 -2.69,-2.1c-0.23,-0.44 -0.01,-0.99 0.45,-1.18l0.07,-0.03c0.41,-0.17 0.87,0 1.08,0.39c0.32,0.61 0.95,1.37 2.12,1.37c0.93,0 1.98,-0.48 1.98,-1.61c0,-0.96 -0.7,-1.46 -2.28,-2.03c-1.1,-0.39 -3.35,-1.03 -3.35,-3.31c0,-0.1 0.01,-2.4 2.62,-2.96V5.88C11.12,5.39 11.52,5 12,5h0c0.48,0 0.88,0.39 0.88,0.88v0.37c1.07,0.19 1.75,0.76 2.16,1.3c0.34,0.44 0.16,1.08 -0.36,1.3l0,0C14.32,9 13.9,8.88 13.66,8.57c-0.28,-0.38 -0.78,-0.77 -1.6,-0.77c-0.7,0 -1.81,0.37 -1.81,1.39c0,0.95 0.86,1.31 2.64,1.9c2.4,0.83 3.01,2.05 3.01,3.45C15.9,17.17 13.4,17.67 12.88,17.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/palette.xml b/compose/material/material/icons/generator/raw-icons/rounded/palette.xml
deleted file mode 100644
index 0d97f03..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/palette.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10c1.38,0 2.5,-1.12 2.5,-2.5c0,-0.61 -0.23,-1.2 -0.64,-1.67c-0.08,-0.1 -0.13,-0.21 -0.13,-0.33c0,-0.28 0.22,-0.5 0.5,-0.5H16c3.31,0 6,-2.69 6,-6C22,6.04 17.51,2 12,2zM17.5,13c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C19,12.33 18.33,13 17.5,13zM14.5,9C13.67,9 13,8.33 13,7.5C13,6.67 13.67,6 14.5,6S16,6.67 16,7.5C16,8.33 15.33,9 14.5,9zM5,11.5C5,10.67 5.67,10 6.5,10S8,10.67 8,11.5C8,12.33 7.33,13 6.5,13S5,12.33 5,11.5zM11,7.5C11,8.33 10.33,9 9.5,9S8,8.33 8,7.5C8,6.67 8.67,6 9.5,6S11,6.67 11,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pan_tool.xml b/compose/material/material/icons/generator/raw-icons/rounded/pan_tool.xml
deleted file mode 100644
index 86704ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pan_tool.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,4c-0.83,0 -1.5,0.67 -1.5,1.5v5c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5v-8c0,-0.83 -0.67,-1.5 -1.5,-1.5S16,1.67 16,2.5v8c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5v-9c0,-0.83 -0.67,-1.5 -1.5,-1.5S12,0.67 12,1.5v8.99c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5V4.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S8,3.67 8,4.5v11.41l-4.12,-2.35c-0.58,-0.33 -1.3,-0.24 -1.78,0.22 -0.6,0.58 -0.62,1.54 -0.03,2.13l6.78,6.89c0.75,0.77 1.77,1.2 2.85,1.2H19c2.21,0 4,-1.79 4,-4V5.5c0,-0.83 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pan_tool_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/pan_tool_alt.xml
deleted file mode 100644
index 89a6607..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pan_tool_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.2,15.43c0,-0.65 0.6,-1.13 1.24,-0.99L10,15.24V4.5C10,3.67 10.67,3 11.5,3S13,3.67 13,4.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04c0.77,0.38 1.21,1.22 1.09,2.07l-0.63,4.46C19.21,20.27 18.36,21 17.37,21h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59l-4.07,-4.29C5.3,15.94 5.2,15.69 5.2,15.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama.xml
deleted file mode 100644
index f4772055..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18V6c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2zM8.9,12.98l2.1,2.53 3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8H6.02c-0.42,0 -0.65,-0.48 -0.39,-0.81L8.12,13c0.19,-0.26 0.57,-0.27 0.78,-0.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_fish_eye.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_fish_eye.xml
deleted file mode 100644
index 2d4d03b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_fish_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_horizontal.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_horizontal.xml
deleted file mode 100644
index 050443c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.54v10.91c-2.6,-0.77 -5.28,-1.16 -8,-1.16s-5.4,0.39 -8,1.16V6.54c2.6,0.77 5.28,1.16 8,1.16 2.72,0.01 5.4,-0.38 8,-1.16M21.43,4c-0.1,0 -0.2,0.02 -0.31,0.06C18.18,5.16 15.09,5.7 12,5.7s-6.18,-0.55 -9.12,-1.64C2.77,4.02 2.66,4 2.57,4c-0.34,0 -0.57,0.23 -0.57,0.63v14.75c0,0.39 0.23,0.62 0.57,0.62 0.1,0 0.2,-0.02 0.31,-0.06 2.94,-1.1 6.03,-1.64 9.12,-1.64s6.18,0.55 9.12,1.64c0.11,0.04 0.21,0.06 0.31,0.06 0.33,0 0.57,-0.23 0.57,-0.63V4.63c0,-0.4 -0.24,-0.63 -0.57,-0.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_horizontal_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_horizontal_select.xml
deleted file mode 100644
index 7b37a7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_horizontal_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5c-3.89,0 -6.95,-0.84 -8.69,-1.43C2.67,3.85 2,4.33 2,5.02L2,19c0,0.68 0.66,1.17 1.31,0.95C5.36,19.26 8.1,18.5 12,18.5c3.87,0 6.66,0.76 8.69,1.45C21.34,20.16 22,19.68 22,19l0,-14c0,-0.68 -0.66,-1.17 -1.31,-0.95C18.66,4.73 15.86,5.5 12,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_photosphere.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_photosphere.xml
deleted file mode 100644
index 756f12d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_photosphere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,8.15c-0.29,-0.16 -0.61,-0.31 -0.93,-0.46C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68c-0.33,0.15 -0.64,0.3 -0.93,0.46C1.41,8.5 1,9.17 1,9.91v4.18c0,0.74 0.41,1.41 1.05,1.77c0.29,0.16 0.61,0.31 0.93,0.46C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.33,-0.15 0.64,-0.3 0.93,-0.46C22.59,15.5 23,14.83 23,14.09V9.91C23,9.17 22.59,8.5 21.95,8.15zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_photosphere_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_photosphere_select.xml
deleted file mode 100644
index 756f12d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_photosphere_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,8.15c-0.29,-0.16 -0.61,-0.31 -0.93,-0.46C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68c-0.33,0.15 -0.64,0.3 -0.93,0.46C1.41,8.5 1,9.17 1,9.91v4.18c0,0.74 0.41,1.41 1.05,1.77c0.29,0.16 0.61,0.31 0.93,0.46C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.33,-0.15 0.64,-0.3 0.93,-0.46C22.59,15.5 23,14.83 23,14.09V9.91C23,9.17 22.59,8.5 21.95,8.15zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_vertical.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_vertical.xml
deleted file mode 100644
index e4a60b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,21.12c-1.1,-2.94 -1.64,-6.03 -1.64,-9.12s0.55,-6.18 1.64,-9.12c0.04,-0.11 0.06,-0.22 0.06,-0.31 0,-0.34 -0.23,-0.57 -0.63,-0.57H4.63c-0.4,0 -0.63,0.23 -0.63,0.57 0,0.1 0.02,0.2 0.06,0.31C5.16,5.82 5.71,8.91 5.71,12s-0.55,6.18 -1.64,9.12c-0.05,0.11 -0.07,0.22 -0.07,0.31 0,0.33 0.23,0.57 0.63,0.57h14.75c0.39,0 0.63,-0.24 0.63,-0.57 -0.01,-0.1 -0.03,-0.2 -0.07,-0.31zM6.54,20c0.77,-2.6 1.16,-5.28 1.16,-8s-0.39,-5.4 -1.16,-8h10.91c-0.77,2.6 -1.16,5.28 -1.16,8s0.39,5.4 1.16,8H6.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_vertical_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_vertical_select.xml
deleted file mode 100644
index a5cdcb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_vertical_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,12c0,-3.89 0.84,-6.95 1.43,-8.69C20.15,2.67 19.67,2 18.98,2L5,2C4.32,2 3.84,2.66 4.05,3.31C4.74,5.36 5.5,8.1 5.5,12c0,3.87 -0.76,6.66 -1.45,8.69C3.84,21.34 4.32,22 5,22h14c0.68,0 1.17,-0.66 0.95,-1.31C19.27,18.66 18.5,15.86 18.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_wide_angle.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_wide_angle.xml
deleted file mode 100644
index 5ad0e55a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_wide_angle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c2.45,0 4.71,0.2 7.29,0.64 0.47,1.78 0.71,3.58 0.71,5.36s-0.24,3.58 -0.71,5.36c-2.58,0.44 -4.84,0.64 -7.29,0.64s-4.71,-0.2 -7.29,-0.64C4.24,15.58 4,13.78 4,12s0.24,-3.58 0.71,-5.36C7.29,6.2 9.55,6 12,6m0,-2c-2.73,0 -5.22,0.24 -7.95,0.72l-0.93,0.16 -0.25,0.9C2.29,7.85 2,9.93 2,12s0.29,4.15 0.87,6.22l0.25,0.89 0.93,0.16c2.73,0.49 5.22,0.73 7.95,0.73s5.22,-0.24 7.95,-0.72l0.93,-0.16 0.25,-0.89c0.58,-2.08 0.87,-4.16 0.87,-6.23s-0.29,-4.15 -0.87,-6.22l-0.25,-0.89 -0.93,-0.16C17.22,4.24 14.73,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/panorama_wide_angle_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/panorama_wide_angle_select.xml
deleted file mode 100644
index e88dd33..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/panorama_wide_angle_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C8.03,4 5.15,4.63 3,5c-0.55,1.97 -1,3.92 -1,7c0,3.03 0.45,5.06 1,7c2.15,0.37 4.98,1 9,1c3.97,0 6.85,-0.63 9,-1c0.57,-2.02 1,-3.99 1,-7c0,-3.03 -0.45,-5.06 -1,-7C18.85,4.63 16.02,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/paragliding.xml b/compose/material/material/icons/generator/raw-icons/rounded/paragliding.xml
deleted file mode 100644
index 9a3bf83..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/paragliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,17 12,17zM17.95,14c-0.52,0 -0.94,0.4 -0.99,0.92c-0.2,2.03 -1.05,2.68 -1.48,3.02C14.68,18.54 14,19 12,19s-2.68,-0.46 -3.48,-1.06c-0.43,-0.34 -1.28,-0.99 -1.48,-3.02C6.99,14.4 6.57,14 6.05,14c-0.59,0 -1.06,0.51 -1,1.09c0.22,2.08 1.07,3.47 2.24,4.41c0.5,0.4 1.1,0.7 1.7,0.9L9,24h6v-3.6c0.6,-0.2 1.2,-0.5 1.7,-0.9c1.17,-0.94 2.03,-2.32 2.24,-4.41C19.01,14.51 18.53,14 17.95,14zM12,0C5.92,0 1,1.9 1,4.25v3.49C1,8.55 1.88,9 2.56,8.57C2.7,8.48 2.84,8.39 3,8.31L5,13h2l1.5,-6.28C9.6,6.58 10.78,6.5 12,6.5s2.4,0.08 3.5,0.22L17,13h2l2,-4.69c0.16,0.09 0.3,0.17 0.44,0.26C22.12,9 23,8.55 23,7.74V4.25C23,1.9 18.08,0 12,0zM5.88,11.24L4.37,7.69c0.75,-0.28 1.6,-0.52 2.53,-0.71L5.88,11.24zM18.12,11.24L17.1,6.98c0.93,0.19 1.78,0.43 2.53,0.71L18.12,11.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/park.xml b/compose/material/material/icons/generator/raw-icons/rounded/park.xml
deleted file mode 100644
index 94759da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/park.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.96,12h0.08c0.81,0 1.28,-0.91 0.82,-1.57l-5.08,-7.25c-0.4,-0.57 -1.24,-0.57 -1.64,0L6.1,10.43C5.64,11.09 6.12,12 6.93,12h0.04l-2.9,4.46C3.63,17.12 4.11,18 4.91,18h5.08v2.02c0,1.09 0.89,1.98 1.98,1.98h0c1.09,0 1.98,-0.89 1.98,-1.98V18h5.15c0.8,0 1.28,-0.89 0.83,-1.55L16.96,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/party_mode.xml b/compose/material/material/icons/generator/raw-icons/rounded/party_mode.xml
deleted file mode 100644
index b26dd7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/party_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17l-1.24,-1.35c-0.37,-0.41 -0.91,-0.65 -1.47,-0.65L9.88,2c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,7c1.63,0 3.06,0.79 3.98,2L12,9c-1.66,0 -3,1.34 -3,3 0,0.35 0.07,0.69 0.18,1L7.1,13c-0.06,-0.32 -0.1,-0.66 -0.1,-1 0,-2.76 2.24,-5 5,-5zM12,17c-1.63,0 -3.06,-0.79 -3.98,-2L12,15c1.66,0 3,-1.34 3,-3 0,-0.35 -0.07,-0.69 -0.18,-1h2.08c0.07,0.32 0.1,0.66 0.1,1 0,2.76 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/password.xml b/compose/material/material/icons/generator/raw-icons/rounded/password.xml
deleted file mode 100644
index 0ce11ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H3c-0.55,0 -1,-0.45 -1,-1v0C2,17.45 2.45,17 3,17zM2.5,12.57c0.36,0.21 0.82,0.08 1.03,-0.28L4,11.47l0.48,0.83c0.21,0.36 0.67,0.48 1.03,0.28l0,0c0.36,-0.21 0.48,-0.66 0.28,-1.02L5.3,10.72h0.95C6.66,10.72 7,10.38 7,9.97v0c0,-0.41 -0.34,-0.75 -0.75,-0.75H5.3L5.77,8.4C5.98,8.04 5.86,7.58 5.5,7.37l0,0C5.14,7.17 4.68,7.29 4.47,7.65L4,8.47L3.53,7.65C3.32,7.29 2.86,7.17 2.5,7.37l0,0C2.14,7.58 2.02,8.04 2.23,8.4L2.7,9.22H1.75C1.34,9.22 1,9.56 1,9.97v0c0,0.41 0.34,0.75 0.75,0.75H2.7l-0.48,0.83C2.02,11.91 2.14,12.37 2.5,12.57L2.5,12.57zM10.5,12.57L10.5,12.57c0.36,0.21 0.82,0.08 1.03,-0.28L12,11.47l0.48,0.83c0.21,0.36 0.67,0.48 1.03,0.28l0,0c0.36,-0.21 0.48,-0.66 0.28,-1.02l-0.48,-0.83h0.95c0.41,0 0.75,-0.34 0.75,-0.75v0c0,-0.41 -0.34,-0.75 -0.75,-0.75H13.3l0.47,-0.82c0.21,-0.36 0.08,-0.82 -0.27,-1.03l0,0c-0.36,-0.21 -0.82,-0.08 -1.02,0.27L12,8.47l-0.47,-0.82c-0.21,-0.36 -0.67,-0.48 -1.02,-0.27l0,0c-0.36,0.21 -0.48,0.67 -0.27,1.03l0.47,0.82H9.75C9.34,9.22 9,9.56 9,9.97v0c0,0.41 0.34,0.75 0.75,0.75h0.95l-0.48,0.83C10.02,11.91 10.14,12.37 10.5,12.57zM23,9.97c0,-0.41 -0.34,-0.75 -0.75,-0.75H21.3l0.47,-0.82c0.21,-0.36 0.08,-0.82 -0.27,-1.03l0,0c-0.36,-0.21 -0.82,-0.08 -1.02,0.27L20,8.47l-0.47,-0.82c-0.21,-0.36 -0.67,-0.48 -1.02,-0.27l0,0c-0.36,0.21 -0.48,0.67 -0.27,1.03l0.47,0.82h-0.95C17.34,9.22 17,9.56 17,9.97v0c0,0.41 0.34,0.75 0.75,0.75h0.95l-0.48,0.83c-0.21,0.36 -0.08,0.82 0.28,1.02l0,0c0.36,0.21 0.82,0.08 1.03,-0.28L20,11.47l0.48,0.83c0.21,0.36 0.67,0.48 1.03,0.28l0,0c0.36,-0.21 0.48,-0.66 0.28,-1.02l-0.48,-0.83h0.95C22.66,10.72 23,10.38 23,9.97L23,9.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pattern.xml b/compose/material/material/icons/generator/raw-icons/rounded/pattern.xml
deleted file mode 100644
index e72bdb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pattern.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM6,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S4.9,14 6,14zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,8 12,8zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S19.1,10 18,10zM17.98,16c-0.74,0 -1.37,0.4 -1.72,1h-2.54c-0.34,-0.6 -0.98,-1 -1.72,-1s-1.37,0.4 -1.72,1H8.41l3.07,-3.07C11.65,13.97 11.82,14 12,14c1.1,0 2,-0.9 2,-2c0,-0.18 -0.03,-0.35 -0.07,-0.51l3.56,-3.56C17.65,7.97 17.82,8 18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C12.35,10.03 12.18,10 12,10c-1.1,0 -2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C6.35,16.03 6.18,16 6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c0.74,0 1.37,-0.4 1.72,-1h2.57c0.34,0.6 0.98,1 1.72,1s1.37,-0.4 1.72,-1h2.55c0.34,0.6 0.98,1 1.72,1c1.1,0 2,-0.9 2,-2C19.98,16.9 19.08,16 17.98,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pause.xml b/compose/material/material/icons/generator/raw-icons/rounded/pause.xml
deleted file mode 100644
index 3492405..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19c1.1,0 2,-0.9 2,-2L10,7c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v10c0,1.1 0.9,2 2,2zM14,7v10c0,1.1 0.9,2 2,2s2,-0.9 2,-2L18,7c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pause_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/pause_circle.xml
deleted file mode 100644
index 6650a37..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pause_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM10,16L10,16c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1l0,0c0.55,0 1,0.45 1,1v6C11,15.55 10.55,16 10,16zM14,16L14,16c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1l0,0c0.55,0 1,0.45 1,1v6C15,15.55 14.55,16 14,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pause_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/pause_circle_filled.xml
deleted file mode 100644
index 4f834cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pause_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,16c-0.55,0 -1,-0.45 -1,-1L9,9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.55 -0.45,1 -1,1zM14,16c-0.55,0 -1,-0.45 -1,-1L13,9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pause_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/pause_circle_outline.xml
deleted file mode 100644
index c11df56..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pause_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16c0.55,0 1,-0.45 1,-1L11,9c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM14,16c0.55,0 1,-0.45 1,-1L15,9c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pause_presentation.xml b/compose/material/material/icons/generator/raw-icons/rounded/pause_presentation.xml
deleted file mode 100644
index 7c7c450..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pause_presentation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,18c0,0.55 -0.45,1 -1,1L4,19c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12zM10,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1L11,9c0,-0.55 -0.45,-1 -1,-1zM14,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1L15,9c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/payment.xml b/compose/material/material/icons/generator/raw-icons/rounded/payment.xml
deleted file mode 100644
index 6564c58..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/payment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM19,18L5,18c-0.55,0 -1,-0.45 -1,-1v-5h16v5c0,0.55 -0.45,1 -1,1zM20,8L4,8L4,7c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/payments.xml b/compose/material/material/icons/generator/raw-icons/rounded/payments.xml
deleted file mode 100644
index f4b1894..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/payments.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8v10c0,1.1 -0.9,2 -2,2H5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h16V8c0,-0.55 0.45,-1 1,-1S23,7.45 23,8zM4,16c-1.66,0 -3,-1.34 -3,-3V7c0,-1.66 1.34,-3 3,-3h12c1.66,0 3,1.34 3,3v7c0,1.1 -0.9,2 -2,2H4zM7,10c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S7,8.34 7,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pedal_bike.xml b/compose/material/material/icons/generator/raw-icons/rounded/pedal_bike.xml
deleted file mode 100644
index d4acc0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pedal_bike.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.18,10l-1.7,-4.68C16.19,4.53 15.44,4 14.6,4H13c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1.6l1.46,4h-4.81l-0.36,-1h0.09c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H8C7.45,7 7,7.45 7,8v0c0,0.55 0.45,1 1,1h0.75l1.82,5H9.9c-0.44,-2.23 -2.31,-3.88 -4.65,-3.99C2.45,9.87 0,12.2 0,15c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5c0,-2.8 -2.2,-5 -5,-5H18.18zM7.82,16c-0.42,1.23 -1.6,2.08 -3.02,1.99C3.31,17.9 2.07,16.64 2,15.14C1.93,13.39 3.27,12 5,12c1.33,0 2.42,0.83 2.82,2H6c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1H7.82zM14.1,14h-1.4l-0.73,-2H15C14.56,12.58 14.24,13.25 14.1,14zM18.88,18c-1.54,-0.06 -2.84,-1.37 -2.88,-2.92c-0.02,-0.96 0.39,-1.8 1.05,-2.36l0.62,1.7c0.19,0.52 0.76,0.79 1.28,0.6l0,0c0.52,-0.19 0.79,-0.76 0.6,-1.28l-0.63,-1.73c0,0 0,0 0.01,-0.01c1.72,-0.04 3.08,1.29 3.08,3C22,16.72 20.62,18.06 18.88,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pending.xml b/compose/material/material/icons/generator/raw-icons/rounded/pending.xml
deleted file mode 100644
index ce424ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pending.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM7,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C8.5,12.83 7.83,13.5 7,13.5zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C13.5,12.83 12.83,13.5 12,13.5zM17,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C18.5,12.83 17.83,13.5 17,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pending_actions.xml b/compose/material/material/icons/generator/raw-icons/rounded/pending_actions.xml
deleted file mode 100644
index 70277e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pending_actions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3h-3.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H6C4.9,3 4,3.9 4,5v15c0,1.1 0.9,2 2,2h6.11c-0.59,-0.57 -1.07,-1.25 -1.42,-2H6V5h2v1c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2V5h2v5.08c0.71,0.1 1.38,0.31 2,0.6V5C20,3.9 19.1,3 18,3zM12,5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C13,4.55 12.55,5 12,5zM17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.29,19l-1.65,-1.65c-0.09,-0.09 -0.15,-0.22 -0.15,-0.35l0,-2.49c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5l0,2.29l1.5,1.5c0.2,0.2 0.2,0.51 0,0.71v0C18.8,19.2 18.49,19.2 18.29,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pentagon.xml b/compose/material/material/icons/generator/raw-icons/rounded/pentagon.xml
deleted file mode 100644
index 4314cc1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pentagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.47,10.42l3.07,9.22C5.82,20.45 6.58,21 7.44,21h9.12c0.86,0 1.63,-0.55 1.9,-1.37l3.07,-9.22c0.28,-0.84 -0.03,-1.76 -0.75,-2.27L13.15,2.8c-0.69,-0.48 -1.61,-0.48 -2.29,0L3.22,8.14C2.5,8.65 2.19,9.58 2.47,10.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/people.xml b/compose/material/material/icons/generator/raw-icons/rounded/people.xml
deleted file mode 100644
index 4ccf41a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/people.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11c1.66,0 2.99,-1.34 2.99,-3S17.66,5 16,5s-3,1.34 -3,3 1.34,3 3,3zM8,11c1.66,0 2.99,-1.34 2.99,-3S9.66,5 8,5 5,6.34 5,8s1.34,3 3,3zM8,13c-2.33,0 -7,1.17 -7,3.5L1,18c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-1.5c0,-2.33 -4.67,-3.5 -7,-3.5zM16,13c-0.29,0 -0.62,0.02 -0.97,0.05 0.02,0.01 0.03,0.03 0.04,0.04 1.14,0.83 1.93,1.94 1.93,3.41L17,18c0,0.35 -0.07,0.69 -0.18,1L22,19c0.55,0 1,-0.45 1,-1v-1.5c0,-2.33 -4.67,-3.5 -7,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/people_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/people_alt.xml
deleted file mode 100644
index 00f8e40..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/people_alt.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.67,13.13C18.04,14.06 19,15.32 19,17v3h3c0.55,0 1,-0.45 1,-1v-2C23,14.82 19.43,13.53 16.67,13.13z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.47,0 -0.91,0.1 -1.33,0.24C14.5,5.27 15,6.58 15,8s-0.5,2.73 -1.33,3.76C14.09,11.9 14.53,12 15,12z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c-2.67,0 -8,1.34 -8,4v2c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-2C17,14.34 11.67,13 9,13z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/people_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/people_outline.xml
deleted file mode 100644
index a7b76015..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/people_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM9,13.75c-2.34,0 -7,1.17 -7,3.5L2,18c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-0.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h3c0.55,0 1,-0.45 1,-1v-0.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/percent.xml b/compose/material/material/icons/generator/raw-icons/rounded/percent.xml
deleted file mode 100644
index e2aeabb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/percent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,4C5.57,4 4,5.57 4,7.5S5.57,11 7.5,11S11,9.43 11,7.5S9.43,4 7.5,4zM7.5,9C6.67,9 6,8.33 6,7.5S6.67,6 7.5,6S9,6.67 9,7.5S8.33,9 7.5,9zM16.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S18.43,13 16.5,13zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,18 16.5,18zM19.29,4.71c0.39,0.39 0.39,1.02 0,1.41L6.12,19.29c-0.39,0.39 -1.02,0.39 -1.41,0s-0.39,-1.02 0,-1.41L17.88,4.71C18.27,4.32 18.9,4.32 19.29,4.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_camera_mic.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_camera_mic.xml
deleted file mode 100644
index 1775b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_camera_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17l-1.24,-1.35c-0.37,-0.41 -0.91,-0.65 -1.47,-0.65L9.88,3c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7v-2.09c-2.45,-0.42 -4.41,-2.32 -4.89,-4.75 -0.12,-0.61 0.38,-1.16 0.99,-1.16 0.49,0 0.88,0.35 0.98,0.83C8.47,15.64 10.07,17 12,17s3.53,-1.36 3.91,-3.17c0.1,-0.48 0.5,-0.83 0.98,-0.83 0.61,0 1.11,0.55 0.99,1.16 -0.48,2.43 -2.44,4.34 -4.89,4.75L12.99,21h7c1.1,0 2,-0.9 2,-2L21.99,7C22,5.9 21.1,5 20,5zM14,13c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2L10,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_contact_calendar.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_contact_calendar.xml
deleted file mode 100644
index 2572c1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_contact_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L8,3L8,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM18,18L6,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_data_setting.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_data_setting.xml
deleted file mode 100644
index dad1480..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_data_setting.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.99,11.5c0.34,0 0.68,0.03 1.01,0.07L20,2.42c0,-0.89 -1.08,-1.34 -1.71,-0.71L1.71,18.29c-0.63,0.63 -0.19,1.71 0.7,1.71h9.15c-0.04,-0.33 -0.07,-0.66 -0.07,-1 0,-4.14 3.36,-7.5 7.5,-7.5zM22.7,19.49c0.02,-0.16 0.04,-0.32 0.04,-0.49s-0.01,-0.33 -0.04,-0.49l1.06,-0.83c0.09,-0.08 0.12,-0.21 0.06,-0.32l-1,-1.73c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11l-1.24,0.5c-0.26,-0.2 -0.54,-0.37 -0.85,-0.49l-0.19,-1.32c-0.01,-0.12 -0.12,-0.21 -0.24,-0.21h-2c-0.12,0 -0.23,0.09 -0.25,0.21l-0.19,1.32c-0.3,0.13 -0.59,0.29 -0.85,0.49l-1.24,-0.5c-0.11,-0.04 -0.24,0 -0.31,0.11l-1,1.73c-0.06,0.11 -0.04,0.24 0.06,0.32l1.06,0.83c-0.02,0.16 -0.03,0.32 -0.03,0.49s0.01,0.33 0.03,0.49l-1.06,0.83c-0.09,0.08 -0.12,0.21 -0.06,0.32l1,1.73c0.06,0.11 0.19,0.15 0.31,0.11l1.24,-0.5c0.26,0.2 0.54,0.37 0.85,0.49l0.19,1.32c0.02,0.12 0.12,0.21 0.25,0.21h2c0.12,0 0.23,-0.09 0.25,-0.21l0.19,-1.32c0.3,-0.13 0.59,-0.29 0.84,-0.49l1.25,0.5c0.11,0.04 0.24,0 0.31,-0.11l1,-1.73c0.06,-0.11 0.03,-0.24 -0.06,-0.32l-1.07,-0.83zM18.99,20.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_device_information.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_device_information.xml
deleted file mode 100644
index 6139265..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_device_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v2h2L13,7zM12,11c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_identity.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_identity.xml
deleted file mode 100644
index 528642b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_identity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM12,13c-2.67,0 -8,1.34 -8,4v2c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-2c0,-2.66 -5.33,-4 -8,-4zM18,18L6,18v-0.99c0.2,-0.72 3.3,-2.01 6,-2.01s5.8,1.29 6,2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_media.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_media.xml
deleted file mode 100644
index e3637d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_media.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H3V7c0,-0.55 -0.45,-1 -1,-1S1,6.45 1,7v12c0,1.1 0.9,2 2,2h16c0.55,0 1,-0.45 1,-1S19.55,19 19,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4h-7l-1.41,-1.41C12.21,2.21 11.7,2 11.17,2H7C5.9,2 5.01,2.9 5.01,4L5,15c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4zM18,13h-8c-0.41,0 -0.65,-0.47 -0.4,-0.8l1.38,-1.83c0.2,-0.27 0.6,-0.27 0.8,0L13,12l2.22,-2.97c0.2,-0.27 0.6,-0.27 0.8,0l2.38,3.17C18.65,12.53 18.41,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_phone_msg.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_phone_msg.xml
deleted file mode 100644
index 0746d2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_phone_msg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-7c-0.55,0 -1,0.45 -1,1v9l3,-3h5c0.55,0 1,-0.45 1,-1L21,4c0,-0.55 -0.45,-1 -1,-1zM19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77L5.03,3.01c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/perm_scan_wifi.xml b/compose/material/material/icons/generator/raw-icons/rounded/perm_scan_wifi.xml
deleted file mode 100644
index 9fa7088..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/perm_scan_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C7.41,3 3.86,4.53 0.89,6.59c-0.49,0.33 -0.59,1 -0.22,1.46l9.78,12.04c0.8,0.98 2.3,0.99 3.1,0l9.78,-12.02c0.37,-0.46 0.27,-1.13 -0.22,-1.46C20.14,4.54 16.59,3 12,3zM12,16c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1zM11,8L11,6h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person.xml b/compose/material/material/icons/generator/raw-icons/rounded/person.xml
deleted file mode 100644
index 64194a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,14c-2.67,0 -8,1.34 -8,4v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_2.xml
deleted file mode 100644
index 0bee87c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22L4,18c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2l0,-0.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,12h4.44c1.21,0 2.14,-1.06 1.98,-2.26l-0.32,-2.45C15.57,5.39 13.92,4 12,4S8.43,5.39 8.12,7.29L7.8,9.74C7.64,10.94 8.57,12 9.78,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_3.xml
deleted file mode 100644
index 1028367..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22L4,18c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2l0,-0.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c0.17,0 3.83,0 4,0c1.66,0 3,-1.34 3,-3c0,-0.73 -0.27,-1.4 -0.71,-1.92C16.42,6.75 16.5,6.38 16.5,6c0,-1.25 -0.77,-2.32 -1.86,-2.77C14,2.48 13.06,2 12,2s-2,0.48 -2.64,1.23C8.27,3.68 7.5,4.75 7.5,6c0,0.38 0.08,0.75 0.21,1.08C7.27,7.6 7,8.27 7,9C7,10.66 8.34,12 10,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_4.xml
deleted file mode 100644
index 9baac8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22L4,18c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2l0,-0.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4c0,-1.37 0,-3.5 0,-3.5C16,3.67 15.33,3 14.5,3c-0.52,0 -0.98,0.27 -1.25,0.67C12.98,3.27 12.52,3 12,3s-0.98,0.27 -1.25,0.67C10.48,3.27 10.02,3 9.5,3C8.67,3 8,3.67 8,4.5c0,0 0,2.12 0,3.5C8,10.21 9.79,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_add.xml
deleted file mode 100644
index edb87ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM6,10L6,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2L2,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,10zM15,14c-2.67,0 -8,1.34 -8,4v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_add_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_add_alt.xml
deleted file mode 100644
index e021785..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_add_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,14.56C13.71,13.7 11.53,13 9,13c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,15.07 1,16.1 1,17.22V20h16v-2.78C17,16.1 16.39,15.07 15.39,14.56zM9,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8C5,10.21 6.79,12 9,12zM20,9V7c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_add_alt_1.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_add_alt_1.xml
deleted file mode 100644
index 57a56f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_add_alt_1.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14c-2.67,0 -8,1.34 -8,4v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1C17,15.34 11.67,14 9,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_add_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_add_disabled.xml
deleted file mode 100644
index 90454b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_add_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.48,11.95c0.17,0.02 0.34,0.05 0.52,0.05 2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4c0,0.18 0.03,0.35 0.05,0.52l3.43,3.43zM16.69,14.16l5.74,5.74c0.33,-0.17 0.57,-0.5 0.57,-0.9v-1c0,-2.14 -3.56,-3.5 -6.31,-3.84zM2.12,2.42c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L4,7.12L4,10L2,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2.88l2.51,2.51C9.19,15.11 7,16.3 7,18v1c0,0.55 0.45,1 1,1h8.88l3.29,3.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L2.12,2.42zM6,10v-0.88l0.88,0.88L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_off.xml
deleted file mode 100644
index 604e46e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.65,5.82C9.36,4.72 10.6,4 12,4c2.21,0 4,1.79 4,4c0,1.4 -0.72,2.64 -1.82,3.35L8.65,5.82zM20,17.17c-0.02,-1.1 -0.63,-2.11 -1.61,-2.62c-0.54,-0.28 -1.13,-0.54 -1.77,-0.76L20,17.17zM20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l8.18,8.18c-1.82,0.23 -3.41,0.8 -4.7,1.46C4.6,15.08 4,16.11 4,17.22L4,20h13.17l1.9,1.9c0.39,0.39 1.02,0.39 1.41,0l0,0C20.88,21.51 20.88,20.88 20.49,20.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_outline.xml
deleted file mode 100644
index d0a38d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.9c1.16,0 2.1,0.94 2.1,2.1s-0.94,2.1 -2.1,2.1S9.9,9.16 9.9,8s0.94,-2.1 2.1,-2.1m0,9c2.97,0 6.1,1.46 6.1,2.1v1.1L5.9,18.1L5.9,17c0,-0.64 3.13,-2.1 6.1,-2.1M12,4C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,13c-2.67,0 -8,1.34 -8,4v2c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-2c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_pin.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_pin.xml
deleted file mode 100644
index 6618262..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h4l2.29,2.29c0.39,0.39 1.02,0.39 1.41,0L15,20h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,5.3c1.49,0 2.7,1.21 2.7,2.7s-1.21,2.7 -2.7,2.7S9.3,9.49 9.3,8s1.21,-2.7 2.7,-2.7zM18,16L6,16v-0.9c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v0.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_pin_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_pin_circle.xml
deleted file mode 100644
index 7ec74ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_pin_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.22c0.36,0.32 0.97,0.32 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM7.69,12.49C8.88,11.56 10.37,11 12,11s3.12,0.56 4.31,1.49C15.45,13.98 13.85,15 12,15S8.55,13.98 7.69,12.49zM12,6c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,6.9 10.9,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_remove.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_remove.xml
deleted file mode 100644
index b6fad420..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4S6,5.79 6,8s1.79,4 4,4S14,10.21 14,8zM2,18v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1c0,-2.66 -5.33,-4 -8,-4S2,15.34 2,18zM18,10h4c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v0C17,10.45 17.45,10 18,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_remove_alt_1.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_remove_alt_1.xml
deleted file mode 100644
index b6fad420..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_remove_alt_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4S6,5.79 6,8s1.79,4 4,4S14,10.21 14,8zM2,18v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1c0,-2.66 -5.33,-4 -8,-4S2,15.34 2,18zM18,10h4c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v0C17,10.45 17.45,10 18,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/person_search.xml b/compose/material/material/icons/generator/raw-icons/rounded/person_search.xml
deleted file mode 100644
index 1a04048..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/person_search.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.35,14.01C7.62,13.91 2,15.27 2,18v1c0,0.55 0.45,1 1,1h8.54C9.07,17.24 10.31,14.11 10.35,14.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.43,18.02c0.47,-0.8 0.7,-1.77 0.48,-2.82c-0.34,-1.64 -1.72,-2.95 -3.38,-3.16c-2.63,-0.34 -4.85,1.87 -4.5,4.5c0.22,1.66 1.52,3.04 3.16,3.38c1.05,0.22 2.02,-0.01 2.82,-0.48l1.86,1.86c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L19.43,18.02zM16,18c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C18,17.1 17.1,18 16,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/personal_injury.xml b/compose/material/material/icons/generator/raw-icons/rounded/personal_injury.xml
deleted file mode 100644
index 22c5d7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/personal_injury.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S8,8.21 8,6zM17,22h1c1.1,0 2,-0.9 2,-2l0,-4.78c0,-1.12 -0.61,-2.15 -1.61,-2.66c-0.43,-0.22 -0.9,-0.43 -1.39,-0.62L17,22zM12.34,17L15,11.33C14.07,11.12 13.07,11 12,11c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,13.07 4,14.1 4,15.22L4,22h2.34C6.12,21.55 6,21.04 6,20.5C6,18.57 7.57,17 9.5,17H12.34zM10,22l1.41,-3H9.5C8.67,19 8,19.67 8,20.5S8.67,22 9.5,22H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/personal_video.xml b/compose/material/material/icons/generator/raw-icons/rounded/personal_video.xml
deleted file mode 100644
index e741592..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/personal_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM20,17L4,17c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pest_control.xml b/compose/material/material/icons/generator/raw-icons/rounded/pest_control.xml
deleted file mode 100644
index 4b708a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pest_control.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14L21,14c0,-0.55 -0.45,-1 -1,-1h-2.07c-0.05,-0.39 -0.12,-0.77 -0.22,-1.14l1.72,-0.99c0.48,-0.28 0.64,-0.89 0.37,-1.37l0,0c-0.28,-0.48 -0.89,-0.64 -1.37,-0.37L16.92,10c-0.28,-0.48 -0.62,-0.91 -0.99,-1.29C15.97,8.48 16,8.25 16,8c0,-0.8 -0.24,-1.55 -0.65,-2.18l0.94,-0.94c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.02,1.02c-1.68,-0.89 -3.1,-0.33 -3.73,0L9.12,3.46c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l0.94,0.94C8.24,6.45 8,7.2 8,8c0,0.25 0.03,0.48 0.07,0.72C7.7,9.1 7.36,9.53 7.08,10L5.57,9.13C5.09,8.86 4.48,9.02 4.21,9.5l0,0c-0.28,0.48 -0.11,1.09 0.37,1.37l1.72,0.99c-0.1,0.37 -0.17,0.75 -0.22,1.14H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2.07c0.05,0.39 0.12,0.77 0.22,1.14l-1.72,0.99c-0.48,0.28 -0.64,0.89 -0.37,1.37l0,0c0.28,0.48 0.89,0.64 1.37,0.37L7.08,18c1.08,1.81 2.88,3 4.92,3s3.84,-1.19 4.92,-3l1.51,0.87c0.48,0.28 1.09,0.11 1.37,-0.37l0,0c0.28,-0.48 0.11,-1.09 -0.37,-1.37l-1.72,-0.99c0.1,-0.37 0.17,-0.75 0.22,-1.14H20C20.55,15 21,14.55 21,14zM12,17L12,17c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v4C13,16.55 12.55,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pest_control_rodent.xml b/compose/material/material/icons/generator/raw-icons/rounded/pest_control_rodent.xml
deleted file mode 100644
index abfe6c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pest_control_rodent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.31,17.38l-2.39,-2.13C19.44,12.89 17.56,11 15.5,11c-1.16,0 -3.5,0.9 -3.5,3.5c0,0.81 0.27,1.55 0.74,2.15c0.15,0.2 0.14,0.48 -0.04,0.66l0,0c-0.21,0.21 -0.56,0.19 -0.75,-0.04C11.35,16.5 11,15.54 11,14.5c0,-1.7 0.96,-3.17 2.35,-3.93c-0.7,-0.36 -1.48,-0.57 -2.28,-0.57c-2.38,0 -4.37,1.65 -4.91,3.87c-1.33,-0.39 -2.28,-1.66 -2.15,-3.14C4.15,9.16 5.54,8 7.11,8l2,0c1.58,0 2.75,-0.95 2.87,-2.25C12.13,4.25 10.96,3 9.5,3H8.05c-0.5,0 -0.96,0.34 -1.04,0.83C6.91,4.46 7.39,5 8,5h1.5C9.78,5 10,5.22 10,5.5C10,5.78 9.78,6 9.5,6L7.16,6c-2.67,0 -4.99,2.03 -5.15,4.7C1.86,13.25 3.62,15.42 6,15.9v0.03C6,18.73 8.27,21 11.07,21h8.86C21.8,21 22.74,18.66 21.31,17.38zM18,19c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,18.55 18.55,19 18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pets.xml b/compose/material/material/icons/generator/raw-icons/rounded/pets.xml
deleted file mode 100644
index 7adc005..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pets.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.86c-0.87,-1.02 -1.6,-1.89 -2.48,-2.91 -0.46,-0.54 -1.05,-1.08 -1.75,-1.32 -0.11,-0.04 -0.22,-0.07 -0.33,-0.09 -0.25,-0.04 -0.52,-0.04 -0.78,-0.04s-0.53,0 -0.79,0.05c-0.11,0.02 -0.22,0.05 -0.33,0.09 -0.7,0.24 -1.28,0.78 -1.75,1.32 -0.87,1.02 -1.6,1.89 -2.48,2.91 -1.31,1.31 -2.92,2.76 -2.62,4.79 0.29,1.02 1.02,2.03 2.33,2.32 0.73,0.15 3.06,-0.44 5.54,-0.44h0.18c2.48,0 4.81,0.58 5.54,0.44 1.31,-0.29 2.04,-1.31 2.33,-2.32 0.31,-2.04 -1.3,-3.49 -2.61,-4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phishing.xml b/compose/material/material/icons/generator/raw-icons/rounded/phishing.xml
deleted file mode 100644
index 1b73ac3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phishing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9c0,-1.3 -0.84,-2.4 -2,-2.82V3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3.18C13.84,6.6 13,7.7 13,9s0.84,2.4 2,2.82l0,3.01c0,2.09 -1.52,3.96 -3.6,4.16C9.02,19.21 7,17.34 7,15v-1h1.79c0.45,0 0.67,-0.54 0.35,-0.85L5.85,9.85C5.54,9.54 5,9.76 5,10.21l0,4.58c0,3.05 2.19,5.77 5.21,6.16C13.87,21.42 17,18.57 17,15v-3.18C18.16,11.4 19,10.3 19,9zM16,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S16.55,10 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone.xml
deleted file mode 100644
index 0c2d257..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77H5.03c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_android.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_android.xml
deleted file mode 100644
index 26aacf1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L8,1C6.34,1 5,2.34 5,4v16c0,1.66 1.34,3 3,3h8c1.66,0 3,-1.34 3,-3L19,4c0,-1.66 -1.34,-3 -3,-3zM13.5,21h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5zM17,18L7,18L7,4h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_bluetooth_speaker.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_bluetooth_speaker.xml
deleted file mode 100644
index 8b7ff87..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_bluetooth_speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77L5.03,3.01c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98zM16.79,6.01l-2.45,2.45c-0.2,0.2 -0.2,0.52 0,0.71 0.2,0.2 0.52,0.2 0.71,0L17,7.23v3.15c0,0.2 0.12,0.39 0.31,0.47 0.06,0.03 0.13,0.04 0.19,0.04 0.13,0 0.26,-0.05 0.36,-0.15l2.18,-2.18c0.2,-0.2 0.2,-0.52 0,-0.71l-1.83,-1.83 1.83,-1.83c0.09,-0.09 0.15,-0.22 0.15,-0.36s-0.05,-0.26 -0.15,-0.36l-2.18,-2.18c-0.14,-0.14 -0.36,-0.19 -0.55,-0.11 -0.19,0.08 -0.31,0.26 -0.31,0.46v3.15l-1.95,-1.95c-0.2,-0.2 -0.52,-0.2 -0.71,0 -0.2,0.2 -0.2,0.52 0,0.71l2.45,2.46zM18.01,2.86l0.96,0.96 -0.96,0.96L18.01,2.86zM18.01,7.23l0.96,0.96 -0.96,0.96L18.01,7.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_callback.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_callback.xml
deleted file mode 100644
index 55bb6e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_callback.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77H5.03c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98zM13,11h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1.59l4.31,-4.31c0.39,-0.39 0.39,-1.02 0,-1.41s-1.02,-0.39 -1.41,0L14,7.59V6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_disabled.xml
deleted file mode 100644
index 355e3bd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.54,17.37c-2.63,2.08 -5.89,3.39 -9.45,3.61c-1.13,0.07 -2.07,-0.87 -2.07,-2v-1.73c-0.01,-1.01 0.75,-1.86 1.76,-1.98l2.54,-0.29c0.61,-0.07 1.21,0.14 1.64,0.57l1.84,1.84c0.81,-0.41 1.59,-0.9 2.31,-1.45L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.03,-0.39 1.42,0L20.49,20.5c0.39,0.39 0.39,1.02 0,1.41s-1.02,0.39 -1.41,0L14.54,17.37zM17.39,10.8l-1.85,-1.85c-0.43,-0.43 -0.64,-1.03 -0.57,-1.64l0.29,-2.52c0.12,-1.01 0.97,-1.77 1.99,-1.77h1.73c1.13,0 2.07,0.94 2,2.07c-0.22,3.57 -1.54,6.83 -3.62,9.47l-1.43,-1.43C16.48,12.4 16.97,11.62 17.39,10.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_enabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_enabled.xml
deleted file mode 100644
index b388329..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_enabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.78,15.27l2.54,-0.29c0.61,-0.07 1.21,0.14 1.64,0.57l1.84,1.84c2.83,-1.44 5.15,-3.75 6.59,-6.59l-1.85,-1.85c-0.43,-0.43 -0.64,-1.03 -0.57,-1.64l0.29,-2.52c0.12,-1.01 0.97,-1.77 1.99,-1.77h1.73c1.13,0 2.07,0.94 2,2.07c-0.53,8.54 -7.36,15.36 -15.89,15.89c-1.13,0.07 -2.07,-0.87 -2.07,-2v-1.73C3.01,16.24 3.77,15.39 4.78,15.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_forwarded.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_forwarded.xml
deleted file mode 100644
index 67a2264..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_forwarded.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.65,5.65l-3.79,-3.79c-0.32,-0.32 -0.86,-0.1 -0.86,0.35L18,4h-3.5c-0.28,0 -0.5,0.22 -0.5,0.5v3c0,0.28 0.22,0.5 0.5,0.5L18,8v1.79c0,0.45 0.54,0.67 0.85,0.35l3.79,-3.79c0.2,-0.19 0.2,-0.51 0.01,-0.7zM19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77L5.03,3.01c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_in_talk.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_in_talk.xml
deleted file mode 100644
index a9d5476..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_in_talk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.88,5.05c3.18,0.4 5.67,2.89 6.07,6.07 0.06,0.51 0.49,0.88 0.99,0.88 0.04,0 0.08,0 0.12,-0.01 0.55,-0.07 0.94,-0.57 0.87,-1.12 -0.51,-4.09 -3.72,-7.3 -7.81,-7.81 -0.55,-0.06 -1.05,0.33 -1.11,0.88 -0.07,0.55 0.32,1.05 0.87,1.11zM13.26,7.16c-0.53,-0.14 -1.08,0.18 -1.22,0.72s0.18,1.08 0.72,1.22c1.05,0.27 1.87,1.09 2.15,2.15 0.12,0.45 0.52,0.75 0.97,0.75 0.08,0 0.17,-0.01 0.25,-0.03 0.53,-0.14 0.85,-0.69 0.72,-1.22 -0.47,-1.77 -1.84,-3.14 -3.59,-3.59zM19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77L5.03,3.01c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_iphone.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_iphone.xml
deleted file mode 100644
index 23ef826..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_iphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,1h-8C6.12,1 5,2.12 5,3.5v17C5,21.88 6.12,23 7.5,23h8c1.38,0 2.5,-1.12 2.5,-2.5v-17C18,2.12 16.88,1 15.5,1zM11.5,22c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,18L7,18L7,4h9v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_locked.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_locked.xml
deleted file mode 100644
index 342e242..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_locked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4.11c0,-1 -0.68,-1.92 -1.66,-2.08C17.08,1.82 16,2.79 16,4v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V6C21,5.45 20.55,5 20,5zM19,5h-2V4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.63,14.4l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3L4,3C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.56,0.03 1.03,-0.44 1.03,-1l0,-4.15c0,-0.48 -0.34,-0.89 -0.8,-0.98l-3.67,-0.73C16.2,14.07 15.86,14.17 15.63,14.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_missed.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_missed.xml
deleted file mode 100644
index 99ed568..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.09,16.2c-6.33,-5.59 -15.86,-5.59 -22.18,0 -0.84,0.74 -0.84,2.05 -0.05,2.84l1.2,1.2c0.71,0.71 1.84,0.77 2.62,0.15l1.97,-1.57c0.47,-0.37 0.75,-0.94 0.75,-1.55V14.7c2.98,-0.97 6.21,-0.98 9.2,0v2.58c0,0.6 0.28,1.17 0.75,1.55l1.96,1.56c0.79,0.62 1.91,0.56 2.62,-0.15l1.2,-1.2c0.8,-0.79 0.79,-2.1 -0.04,-2.84zM6,9c0.55,0 1,-0.45 1,-1V6.43l4.24,4.24c0.39,0.39 1.02,0.39 1.41,0l5.66,-5.66c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0l-4.95,4.95L8.4,5H10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phone_paused.xml b/compose/material/material/icons/generator/raw-icons/rounded/phone_paused.xml
deleted file mode 100644
index c77de43..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phone_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3c-0.55,0 -1,0.45 -1,1v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1L17,4c0,-0.55 -0.45,-1 -1,-1zM19,4v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1L21,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM19.23,15.26l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.03 0.57,-1.64l-0.29,-2.52c-0.12,-1.01 -0.97,-1.77 -1.99,-1.77L5.03,3.01c-1.13,0 -2.07,0.94 -2,2.07 0.53,8.54 7.36,15.36 15.89,15.89 1.13,0.07 2.07,-0.87 2.07,-2v-1.73c0.01,-1.01 -0.75,-1.86 -1.76,-1.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phonelink.xml b/compose/material/material/icons/generator/raw-icons/rounded/phonelink.xml
deleted file mode 100644
index 6d3f0dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phonelink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,4c-1.1,0 -2,0.9 -2,2v11h-0.5c-0.83,0 -1.5,0.67 -1.5,1.5S0.67,20 1.5,20h11c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5L4,17L4,7zM23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_erase.xml b/compose/material/material/icons/generator/raw-icons/rounded/phonelink_erase.xml
deleted file mode 100644
index 58474f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_erase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7.7c-0.28,-0.28 -0.72,-0.28 -1,0L8,11.2 4.5,7.7c-0.28,-0.28 -0.72,-0.28 -1,0s-0.28,0.72 0,1L7,12.2l-3.5,3.5c-0.28,0.28 -0.28,0.72 0,1s0.72,0.28 1,0L8,13.2l3.5,3.5c0.28,0.28 0.72,0.28 1,0s0.28,-0.72 0,-1L9,12.2l3.5,-3.5c0.28,-0.28 0.28,-0.72 0,-1zM19,1H9c-1.1,0 -2,0.9 -2,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V4h10v16H9v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_lock.xml b/compose/material/material/icons/generator/raw-icons/rounded/phonelink_lock.xml
deleted file mode 100644
index 6f99662..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2L7,1.01C5.9,1.01 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C21,11.45 20.55,11 20,11zM19,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/phonelink_off.xml
deleted file mode 100644
index 5ece215..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,19V9c0,-0.55 -0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1v3.61l2,2V10h4v7h-1.61l2.93,2.93c0.39,-0.13 0.68,-0.49 0.68,-0.93zM21,6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H7.39l2,2H21zM1.36,2.21c-0.39,0.39 -0.39,1.02 0,1.41l1.11,1.11C2.18,5.08 2,5.52 2,6v11h-0.5c-0.83,0 -1.5,0.67 -1.5,1.5S0.67,20 1.5,20h16.23l1.64,1.64c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L2.77,2.21c-0.39,-0.39 -1.02,-0.39 -1.41,0zM4,17V6.27L14.73,17H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_ring.xml b/compose/material/material/icons/generator/raw-icons/rounded/phonelink_ring.xml
deleted file mode 100644
index f876967..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_ring.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,1L4,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L16,3c0,-1.1 -0.9,-2 -2,-2zM14,20L4,20L4,4h10v16zM20.63,8.26c-0.26,-0.32 -0.74,-0.36 -1.04,-0.06l-0.03,0.03c-0.25,0.25 -0.26,0.65 -0.05,0.93 1.26,1.64 1.25,3.87 -0.02,5.57 -0.21,0.28 -0.19,0.67 0.05,0.92l0.05,0.05c0.29,0.29 0.76,0.26 1.03,-0.05 1.8,-2.13 1.8,-5.19 0.01,-7.39zM17.42,10.37l-0.06,0.06c-0.2,0.2 -0.26,0.5 -0.15,0.76 0.21,0.49 0.21,1.03 0,1.52 -0.11,0.26 -0.05,0.56 0.15,0.76l0.08,0.08c0.32,0.32 0.87,0.25 1.09,-0.15 0.49,-0.89 0.49,-1.94 -0.01,-2.86 -0.22,-0.42 -0.77,-0.5 -1.1,-0.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_setup.xml b/compose/material/material/icons/generator/raw-icons/rounded/phonelink_setup.xml
deleted file mode 100644
index 1367b7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/phonelink_setup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1L9,4h10v16L9,20v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L21,3c0,-1.1 -0.9,-2 -2,-2L9,1c-1.1,0 -2,0.9 -2,2zM9.5,15.5c0.29,-0.12 0.55,-0.29 0.8,-0.48l-0.02,0.03 1.01,0.39c0.23,0.09 0.49,0 0.61,-0.22l0.84,-1.46c0.12,-0.21 0.07,-0.49 -0.12,-0.64l-0.85,-0.68 -0.02,0.03c0.02,-0.16 0.05,-0.32 0.05,-0.48s-0.03,-0.32 -0.05,-0.48l0.02,0.03 0.85,-0.68c0.19,-0.15 0.24,-0.43 0.12,-0.64l-0.84,-1.46c-0.12,-0.21 -0.38,-0.31 -0.61,-0.22l-1.01,0.39 0.02,0.03c-0.25,-0.17 -0.51,-0.34 -0.8,-0.46l-0.17,-1.08C9.3,7.18 9.09,7 8.84,7L7.16,7c-0.25,0 -0.46,0.18 -0.49,0.42L6.5,8.5c-0.29,0.12 -0.55,0.29 -0.8,0.48l0.02,-0.03 -1.02,-0.39c-0.23,-0.09 -0.49,0 -0.61,0.22l-0.84,1.46c-0.12,0.21 -0.07,0.49 0.12,0.64l0.85,0.68 0.02,-0.03c-0.02,0.15 -0.05,0.31 -0.05,0.47s0.03,0.32 0.05,0.48l-0.02,-0.03 -0.85,0.68c-0.19,0.15 -0.24,0.43 -0.12,0.64l0.84,1.46c0.12,0.21 0.38,0.31 0.61,0.22l1.01,-0.39 -0.01,-0.04c0.25,0.19 0.51,0.36 0.8,0.48l0.17,1.07c0.03,0.25 0.24,0.43 0.49,0.43h1.68c0.25,0 0.46,-0.18 0.49,-0.42l0.17,-1.08zM6,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo.xml
deleted file mode 100644
index 08f6184..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.9,13.98l2.1,2.53 3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8H6.02c-0.42,0 -0.65,-0.48 -0.39,-0.81L8.12,14c0.19,-0.26 0.57,-0.27 0.78,-0.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_album.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_album.xml
deleted file mode 100644
index ef90e9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM15.24,10.55L13.5,9.5l-1.74,1.05c-0.33,0.2 -0.76,-0.04 -0.76,-0.43V4h5v6.12C16,10.51 15.58,10.75 15.24,10.55zM7.6,17.2l1.38,-1.83c0.2,-0.27 0.6,-0.27 0.8,0L11,17l2.23,-2.97c0.2,-0.27 0.6,-0.27 0.8,0l2.38,3.17c0.25,0.33 0.01,0.8 -0.4,0.8H8C7.59,18 7.35,17.53 7.6,17.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_camera.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_camera.xml
deleted file mode 100644
index ddeb49b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17l-1.24,-1.35c-0.37,-0.41 -0.91,-0.65 -1.47,-0.65L9.88,2c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_camera_back.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_camera_back.xml
deleted file mode 100644
index 0bc34ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_camera_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17l-1.24,-1.35C15.22,3.24 14.68,3 14.12,3H9.88C9.32,3 8.78,3.24 8.41,3.65L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM17,17H7c-0.41,0 -0.65,-0.47 -0.4,-0.8l2,-2.67c0.2,-0.27 0.6,-0.27 0.8,0L11.25,16l2.6,-3.47c0.2,-0.27 0.6,-0.27 0.8,0l2.75,3.67C17.65,16.53 17.41,17 17,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_camera_front.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_camera_front.xml
deleted file mode 100644
index 6d38b67..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17l-1.24,-1.35C15.22,3.24 14.68,3 14.12,3H9.88C9.32,3 8.78,3.24 8.41,3.65L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM12,9c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,9.9 10.9,9 12,9zM16,17H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,14.21 11.01,14 12,14s1.93,0.21 2.78,0.58C15.52,14.9 16,15.62 16,16.43V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_filter.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_filter.xml
deleted file mode 100644
index 9a36777..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.02,10.99L19.02,18c0,0.55 -0.45,1 -1,1L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5.02,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2L19,21c1.1,0 2,-0.89 2,-2v-8.01c0,-0.55 -0.44,-0.99 -0.99,-0.99s-0.99,0.44 -0.99,0.99zM13.25,10.75L12.46,9c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.79,1.75 -1.76,0.79c-0.39,0.18 -0.39,0.73 0,0.91l1.75,0.79 0.79,1.76c0.18,0.39 0.73,0.39 0.91,0l0.79,-1.75 1.76,-0.79c0.39,-0.18 0.39,-0.73 0,-0.91l-1.75,-0.8zM17.94,6.06l-0.6,-1.32c-0.13,-0.29 -0.55,-0.29 -0.69,0l-0.6,1.32 -1.32,0.6c-0.29,0.13 -0.29,0.55 0,0.69l1.32,0.6 0.6,1.32c0.13,0.29 0.55,0.29 0.69,0l0.6,-1.32 1.32,-0.6c0.29,-0.13 0.29,-0.55 0,-0.69l-1.32,-0.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_library.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_library.xml
deleted file mode 100644
index 6690de0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zM11.4,12.53l1.63,2.18 2.58,-3.22c0.2,-0.25 0.58,-0.25 0.78,0l2.96,3.7c0.26,0.33 0.03,0.81 -0.39,0.81L9,16c-0.41,0 -0.65,-0.47 -0.4,-0.8l2,-2.67c0.2,-0.26 0.6,-0.26 0.8,0zM2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_actual.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_actual.xml
deleted file mode 100644
index d70b496..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_actual.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C2,3 1,4 1,5v14c0,1.1 0.9,2 2,2h18c1,0 2,-1 2,-2V5c0,-1 -1,-2 -2,-2zM5.63,16.19l2.49,-3.2c0.2,-0.25 0.58,-0.26 0.78,-0.01l2.1,2.53 3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8H6.02c-0.41,-0.01 -0.65,-0.49 -0.39,-0.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_large.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_large.xml
deleted file mode 100644
index 8ac7995..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15h2v2h-2v-2zM21,11h2v2h-2v-2zM23,19h-2v2c1,0 2,-1 2,-2zM13,3h2v2h-2L13,3zM21,7h2v2h-2L21,7zM21,3v2h2c0,-1 -1,-2 -2,-2zM1,7h2v2L1,9L1,7zM17,3h2v2h-2L17,3zM17,19h2v2h-2v-2zM3,3C2,3 1,4 1,5h2L3,3zM9,3h2v2L9,5L9,3zM5,3h2v2L5,5L5,3zM1,11v8c0,1.1 0.9,2 2,2h12v-8c0,-1.1 -0.9,-2 -2,-2L1,11zM3.63,18.19l1.49,-1.91c0.2,-0.25 0.57,-0.26 0.78,-0.01l1.39,1.67 2.1,-2.7c0.2,-0.26 0.6,-0.26 0.79,0.01l2.22,2.96c0.25,0.33 0.01,0.8 -0.4,0.8L4.02,19.01c-0.41,-0.01 -0.65,-0.49 -0.39,-0.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_small.xml b/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_small.xml
deleted file mode 100644
index 7938f8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/photo_size_select_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15h-2v2h2v-2zM23,11h-2v2h2v-2zM23,19h-2v2c1,0 2,-1 2,-2zM15,3h-2v2h2L15,3zM23,7h-2v2h2L23,7zM21,3v2h2c0,-1 -1,-2 -2,-2zM3,21h8v-4c0,-1.1 -0.9,-2 -2,-2L1,15v4c0,1.1 0.9,2 2,2zM3,7L1,7v2h2L3,7zM15,19h-2v2h2v-2zM19,3h-2v2h2L19,3zM19,19h-2v2h2v-2zM3,3C2,3 1,4 1,5h2L3,3zM3,11L1,11v2h2v-2zM11,3L9,3v2h2L11,3zM7,3L5,3v2h2L7,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/php.xml b/compose/material/material/icons/generator/raw-icons/rounded/php.xml
deleted file mode 100644
index c7673d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/php.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,10.5h-2v1h2V10.5zM20,10.5h-2v1h2V10.5zM13,12.5h-2v1.75c0,0.41 -0.34,0.75 -0.75,0.75S9.5,14.66 9.5,14.25v-4.5C9.5,9.34 9.84,9 10.25,9S11,9.34 11,9.75V11h2V9.75C13,9.34 13.34,9 13.75,9s0.75,0.34 0.75,0.75v4.5c0,0.41 -0.34,0.75 -0.75,0.75S13,14.66 13,14.25V12.5zM18,14.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V10c0,-0.55 0.45,-1 1,-1H20c0.83,0 1.5,0.68 1.5,1.5v1c0,0.82 -0.67,1.5 -1.5,1.5h-2V14.25zM3,10c0,-0.55 0.45,-1 1,-1h2.5C7.33,9 8,9.68 8,10.5v1C8,12.32 7.33,13 6.5,13h-2v1.25C4.5,14.66 4.16,15 3.75,15S3,14.66 3,14.25V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/piano.xml b/compose/material/material/icons/generator/raw-icons/rounded/piano.xml
deleted file mode 100644
index 2df4e33..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/piano.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM14,14.5h0.25V19h-4.5v-4.5H10c0.55,0 1,-0.45 1,-1V5h2v8.5C13,14.05 13.45,14.5 14,14.5zM5,5h2v8.5c0,0.55 0.45,1 1,1h0.25V19H5V5zM19,19h-3.25v-4.5H16c0.55,0 1,-0.45 1,-1V5h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/piano_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/piano_off.xml
deleted file mode 100644
index f1888ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/piano_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,21.9c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L3,5.83V19c0,1.1 0.9,2 2,2h13.17l0.9,0.9C19.46,22.29 20.09,22.29 20.49,21.9zM8.25,19H5V7.83l2,2v3.67c0,0.55 0.45,1 1,1h0.25V19zM9.75,19v-4.5H10c0.46,0 0.82,-0.31 0.94,-0.73l3.31,3.31V19H9.75zM11,8.17L5.83,3H19c1.1,0 2,0.9 2,2v13.17l-2,-2V5h-2v8.5c0,0.19 -0.07,0.36 -0.16,0.51L13,10.17V5h-2V8.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/picture_as_pdf.xml b/compose/material/material/icons/generator/raw-icons/rounded/picture_as_pdf.xml
deleted file mode 100644
index 96c630de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/picture_as_pdf.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM11.5,9.5c0,0.83 -0.67,1.5 -1.5,1.5L9,11v1.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75L7.5,8c0,-0.55 0.45,-1 1,-1L10,7c0.83,0 1.5,0.67 1.5,1.5v1zM16.5,11.5c0,0.83 -0.67,1.5 -1.5,1.5h-2c-0.28,0 -0.5,-0.22 -0.5,-0.5v-5c0,-0.28 0.22,-0.5 0.5,-0.5h2c0.83,0 1.5,0.67 1.5,1.5v3zM20.5,7.75c0,0.41 -0.34,0.75 -0.75,0.75L19,8.5v1h0.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75L19,11v1.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75L17.5,8c0,-0.55 0.45,-1 1,-1h1.25c0.41,0 0.75,0.34 0.75,0.75zM9,9.5h1v-1L9,8.5v1zM3,6c-0.55,0 -1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1zM14,11.5h1v-3h-1v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/picture_in_picture.xml b/compose/material/material/icons/generator/raw-icons/rounded/picture_in_picture.xml
deleted file mode 100644
index e6ee1b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/picture_in_picture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7h-6c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L19,8c0,-0.55 -0.45,-1 -1,-1zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98L23,5c0,-1.1 -0.9,-2 -2,-2zM20,19.01L4,19.01c-0.55,0 -1,-0.45 -1,-1L3,5.98c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12.03c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/picture_in_picture_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/picture_in_picture_alt.xml
deleted file mode 100644
index cc48534..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/picture_in_picture_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11h-6c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM23,19L23,4.98C23,3.88 22.1,3 21,3L3,3c-1.1,0 -2,0.88 -2,1.98L1,19c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2zM20,19.02L4,19.02c-0.55,0 -1,-0.45 -1,-1L3,5.97c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12.05c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pie_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/pie_chart.xml
deleted file mode 100644
index ff69f48..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pie_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3.18v17.64c0,0.64 -0.59,1.12 -1.21,0.98C5.32,20.8 2,16.79 2,12s3.32,-8.8 7.79,-9.8c0.62,-0.14 1.21,0.34 1.21,0.98zM13.03,3.18v6.81c0,0.55 0.45,1 1,1h6.79c0.64,0 1.12,-0.59 0.98,-1.22 -0.85,-3.76 -3.8,-6.72 -7.55,-7.57 -0.63,-0.14 -1.22,0.34 -1.22,0.98zM13.03,14.01v6.81c0,0.64 0.59,1.12 1.22,0.98 3.76,-0.85 6.71,-3.82 7.56,-7.58 0.14,-0.62 -0.35,-1.22 -0.98,-1.22h-6.79c-0.56,0.01 -1.01,0.46 -1.01,1.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pie_chart_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/pie_chart_outline.xml
deleted file mode 100644
index 99e3633..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pie_chart_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM13,4.07c3.61,0.45 6.48,3.33 6.93,6.93L14,11c-0.55,0 -1,-0.45 -1,-1L13,4.07zM4,12c0,-4.06 3.07,-7.44 7,-7.93v15.87c-3.93,-0.5 -7,-3.88 -7,-7.94zM13,19.93L13,14c0,-0.55 0.45,-1 1,-1h5.93c-0.45,3.61 -3.32,6.48 -6.93,6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pin.xml b/compose/material/material/icons/generator/raw-icons/rounded/pin.xml
deleted file mode 100644
index b4c1a5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM7.64,14.47C7.64,14.76 7.4,15 7.11,15H7.02c-0.29,0 -0.53,-0.24 -0.53,-0.53V10.5l-0.45,0.33c-0.24,0.18 -0.59,0.12 -0.76,-0.14c-0.15,-0.24 -0.1,-0.55 0.13,-0.72L6.6,9.12C6.71,9.04 6.84,9 6.98,9c0.36,0 0.66,0.29 0.66,0.66V14.47zM13.01,15h-2.67c-0.4,0 -0.72,-0.32 -0.72,-0.72c0,-0.19 0.08,-0.38 0.21,-0.51c0.95,-0.95 1.58,-1.58 1.92,-1.94c0.4,-0.42 0.54,-0.69 0.54,-1.06c0,-0.4 -0.31,-0.72 -0.81,-0.72c-0.34,0 -0.57,0.16 -0.72,0.37c-0.15,0.2 -0.41,0.26 -0.64,0.16c-0.34,-0.14 -0.45,-0.57 -0.22,-0.85c0.15,-0.19 0.37,-0.38 0.67,-0.53c0.69,-0.33 1.48,-0.2 1.95,0.03c0.86,0.44 0.91,1.24 0.91,1.48c0,0.64 -0.31,1.26 -0.92,1.86c-0.25,0.25 -0.72,0.71 -1.4,1.39l0.03,0.05h1.88c0.27,0 0.49,0.22 0.49,0.49S13.28,15 13.01,15zM18.75,14.15C18.67,14.28 18.19,15 16.99,15c-0.03,0 -1.23,0.06 -1.83,-0.98c-0.15,-0.26 -0.04,-0.6 0.24,-0.71l0.12,-0.05c0.22,-0.09 0.47,-0.01 0.59,0.19c0.14,0.24 0.39,0.49 0.88,0.49c0.41,0 0.89,-0.28 0.89,-0.77c0,-0.55 -0.48,-0.79 -1.04,-0.79l0,0c-0.27,0 -0.49,-0.23 -0.49,-0.5c0,-0.26 0.2,-0.47 0.45,-0.49l0,-0.01c0.33,0 0.88,-0.14 0.88,-0.72c0,-0.39 -0.31,-0.65 -0.75,-0.65c-0.32,0 -0.53,0.13 -0.67,0.3c-0.14,0.18 -0.37,0.26 -0.58,0.17l-0.08,-0.03c-0.3,-0.12 -0.4,-0.5 -0.2,-0.75C15.67,9.35 16.16,9 16.94,9c1.09,0 1.54,0.64 1.62,0.75c0.33,0.5 0.28,1.16 0.02,1.57c-0.15,0.22 -0.32,0.38 -0.52,0.48v0.07c0.28,0.11 0.51,0.28 0.68,0.52C19.11,12.91 19.07,13.66 18.75,14.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pin_drop.xml b/compose/material/material/icons/generator/raw-icons/rounded/pin_drop.xml
deleted file mode 100644
index 3dd7a21..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pin_drop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12c0.55,0 1,0.45 1,1s-0.45,1 -1,1H6c-0.55,0 -1,-0.45 -1,-1S5.45,20 6,20zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,7 12,7zM12,2c3.27,0 7,2.46 7,7.15c0,2.98 -2.13,6.12 -6.39,9.39c-0.36,0.28 -0.86,0.28 -1.22,0C7.13,15.26 5,12.13 5,9.15C5,4.46 8.73,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pin_end.xml b/compose/material/material/icons/generator/raw-icons/rounded/pin_end.xml
deleted file mode 100644
index b1cb9d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pin_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12V6H4v12h10l0,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2v6H20zM19,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.66,0 3,-1.34 3,-3S20.66,14 19,14zM14.66,13.66c0.39,-0.39 0.39,-1.02 0,-1.41l-2.12,-2.12l1.27,-1.27C14.12,8.54 13.9,8 13.45,8H9.5C9.22,8 9,8.22 9,8.5v3.95c0,0.45 0.54,0.67 0.85,0.35l1.27,-1.27l2.12,2.12C13.63,14.05 14.27,14.05 14.66,13.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pin_invoke.xml b/compose/material/material/icons/generator/raw-icons/rounded/pin_invoke.xml
deleted file mode 100644
index d7851dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pin_invoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12v6c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10l0,2H4v12h16v-6H22zM22,7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C20.66,10 22,8.66 22,7zM9.34,15.66c0.39,0.39 1.02,0.39 1.41,0l2.12,-2.12l1.27,1.27C14.46,15.12 15,14.9 15,14.45V10.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-3.95c-0.45,0 -0.67,0.54 -0.35,0.85l1.27,1.27l-2.12,2.12C8.95,14.63 8.95,15.27 9.34,15.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pinch.xml b/compose/material/material/icons/generator/raw-icons/rounded/pinch.xml
deleted file mode 100644
index d67ae2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pinch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.2,17.43c0,-0.65 0.6,-1.13 1.24,-0.99L13,17.24V6.5C13,5.67 13.67,5 14.5,5S16,5.67 16,6.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04c0.77,0.38 1.21,1.22 1.09,2.07l-0.63,4.46C22.21,22.27 21.36,23 20.37,23h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59l-4.07,-4.29C8.3,17.94 8.2,17.69 8.2,17.43zM9.5,5.25C9.5,5.66 9.84,6 10.25,6S11,5.66 11,5.25V2c0,-0.55 -0.45,-1 -1,-1H6.75C6.34,1 6,1.34 6,1.75S6.34,2.5 6.75,2.5h1.69L2.5,8.44V6.75C2.5,6.34 2.16,6 1.75,6S1,6.34 1,6.75V10c0,0.55 0.45,1 1,1h3.25C5.66,11 6,10.66 6,10.25S5.66,9.5 5.25,9.5H3.56L9.5,3.56V5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pivot_table_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/pivot_table_chart.xml
deleted file mode 100644
index 241bd87..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pivot_table_chart.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c0,-1.1 -0.9,-2 -2,-2h-9v5h11V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19c0,1.1 0.9,2 2,2h3V10H3V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v3h5V3H5C3.9,3 3,3.9 3,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,9.35l-2.79,2.79C14.54,12.46 14.76,13 15.21,13H17v2c0,1.1 -0.9,2 -2,2h-2v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.31,0.31 0.85,0.09 0.85,-0.35V19h2c2.21,0 4,-1.79 4,-4v-2h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79C18.16,9.16 17.84,9.16 17.65,9.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pix.xml b/compose/material/material/icons/generator/raw-icons/rounded/pix.xml
deleted file mode 100644
index a1fea47..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pix.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.45,16.52l-3.01,-3.01c-0.11,-0.11 -0.24,-0.13 -0.31,-0.13s-0.2,0.02 -0.31,0.13L8.8,16.53c-0.34,0.34 -0.87,0.89 -2.64,0.89l3.71,3.7c1.17,1.17 3.07,1.17 4.24,0l3.72,-3.71C16.92,17.41 16.16,17.23 15.45,16.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,7.47l3.02,3.02c0.08,0.08 0.2,0.13 0.31,0.13s0.23,-0.05 0.31,-0.13l2.99,-2.99c0.71,-0.74 1.52,-0.91 2.43,-0.91l-3.72,-3.71c-1.17,-1.17 -3.07,-1.17 -4.24,0l-3.71,3.7C7.95,6.58 8.49,7.16 8.8,7.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,9.85l-2.25,-2.26H17.6c-0.54,0 -1.08,0.22 -1.45,0.61l-3,3c-0.28,0.28 -0.65,0.42 -1.02,0.42c-0.36,0 -0.74,-0.15 -1.02,-0.42L8.09,8.17c-0.38,-0.38 -0.9,-0.6 -1.45,-0.6H5.17l-2.29,2.3c-1.17,1.17 -1.17,3.07 0,4.24l2.29,2.3h1.48c0.54,0 1.06,-0.22 1.45,-0.6l3.02,-3.02c0.28,-0.28 0.65,-0.42 1.02,-0.42c0.37,0 0.74,0.14 1.02,0.42l3.01,3.01c0.38,0.38 0.9,0.6 1.45,0.6h1.26l2.25,-2.26C22.3,12.96 22.3,11.04 21.11,9.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/place.xml b/compose/material/material/icons/generator/raw-icons/rounded/place.xml
deleted file mode 100644
index bcab94916..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/place.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM12,12c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C14,11.1 13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/plagiarism.xml b/compose/material/material/icons/generator/raw-icons/rounded/plagiarism.xml
deleted file mode 100644
index 0147471..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/plagiarism.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8.83C20,8.3 19.79,7.79 19.41,7.41zM15.74,18.74L15.74,18.74c-0.39,0.39 -1.02,0.39 -1.41,0l-1.18,-1.18c-1.33,0.71 -3.01,0.53 -4.13,-0.59c-1.52,-1.52 -1.35,-4.08 0.5,-5.37c1.16,-0.81 2.78,-0.81 3.95,0c1.55,1.08 1.9,3.04 1.09,4.55l1.18,1.18C16.13,17.72 16.13,18.35 15.74,18.74zM14,9c-0.55,0 -1,-0.45 -1,-1V3.5L18.5,9H14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/play_arrow.xml b/compose/material/material/icons/generator/raw-icons/rounded/play_arrow.xml
deleted file mode 100644
index d2ff9a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/play_arrow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6.82v10.36c0,0.79 0.87,1.27 1.54,0.84l8.14,-5.18c0.62,-0.39 0.62,-1.29 0,-1.69L9.54,5.98C8.87,5.55 8,6.03 8,6.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/play_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/play_circle.xml
deleted file mode 100644
index 3f3648d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/play_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM9.5,14.67V9.33c0,-0.79 0.88,-1.27 1.54,-0.84l4.15,2.67c0.61,0.39 0.61,1.29 0,1.68l-4.15,2.67C10.38,15.94 9.5,15.46 9.5,14.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/play_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/play_circle_filled.xml
deleted file mode 100644
index c3f5d8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/play_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,15.5v-7c0,-0.41 0.47,-0.65 0.8,-0.4l4.67,3.5c0.27,0.2 0.27,0.6 0,0.8l-4.67,3.5c-0.33,0.25 -0.8,0.01 -0.8,-0.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/play_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/play_circle_outline.xml
deleted file mode 100644
index 9dd6f83b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/play_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.8,15.9l4.67,-3.5c0.27,-0.2 0.27,-0.6 0,-0.8L10.8,8.1c-0.33,-0.25 -0.8,-0.01 -0.8,0.4v7c0,0.41 0.47,0.65 0.8,0.4zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/play_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/play_disabled.xml
deleted file mode 100644
index 586c403..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/play_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l5.9,5.9v6.35c0,0.79 0.87,1.27 1.54,0.84l3.45,-2.2l6.08,6.08c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51zM17.68,12.84c0.62,-0.39 0.62,-1.29 0,-1.69L9.54,5.98C9.27,5.81 8.97,5.79 8.7,5.87l7.75,7.75L17.68,12.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/play_for_work.xml b/compose/material/material/icons/generator/raw-icons/rounded/play_for_work.xml
deleted file mode 100644
index 2b66e20..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/play_for_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6v4.59L8.71,10.59c-0.45,0 -0.67,0.54 -0.35,0.85l3.29,3.29c0.2,0.2 0.51,0.2 0.71,0l3.29,-3.29c0.31,-0.31 0.09,-0.85 -0.35,-0.85L13,10.59L13,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM7.1,14c-0.61,0 -1.11,0.55 -0.99,1.15C6.65,17.91 9.08,20 12,20s5.35,-2.09 5.89,-4.85c0.12,-0.6 -0.38,-1.15 -0.99,-1.15 -0.49,0 -0.88,0.35 -0.98,0.83C15.53,16.64 13.93,18 12,18s-3.53,-1.36 -3.91,-3.17c-0.1,-0.48 -0.5,-0.83 -0.99,-0.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/play_lesson.xml b/compose/material/material/icons/generator/raw-icons/rounded/play_lesson.xml
deleted file mode 100644
index 74ea6fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/play_lesson.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.34,0 0.67,0.03 1,0.08V4c0,-1.1 -0.9,-2 -2,-2H5C3.9,2 3,2.9 3,4v16c0,1.1 0.9,2 2,2h7.26C11.47,20.87 11,19.49 11,18C11,14.13 14.13,11 18,11zM7.76,10.55C7.42,10.75 7,10.51 7,10.12V4h5v6.12c0,0.39 -0.42,0.63 -0.76,0.43L9.5,9.5L7.76,10.55z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM16.75,19.6v-3.2c0,-0.39 0.43,-0.63 0.76,-0.42l2.56,1.6c0.31,0.2 0.31,0.65 0,0.85l-2.56,1.6C17.18,20.23 16.75,19.99 16.75,19.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/playlist_add.xml
deleted file mode 100644
index 82a08b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10L3,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM13,6L3,6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM18,14v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3zM3,16h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,14c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_check.xml b/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_check.xml
deleted file mode 100644
index 919bff6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_check.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10L3,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM13,6L3,6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM3,16h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,14c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM22.21,12.21l0.09,0.09c0.39,0.39 0.39,1.02 0,1.41l-5.58,5.59c-0.39,0.39 -1.02,0.39 -1.41,0l-3.09,-3.09c-0.39,-0.39 -0.39,-1.02 0,-1.41l0.09,-0.09c0.39,-0.39 1.02,-0.39 1.41,0l2.3,2.3 4.78,-4.79c0.38,-0.4 1.02,-0.4 1.41,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_check_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_check_circle.xml
deleted file mode 100644
index addd436..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2zM7,8c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8C7.45,9 7,8.55 7,8L7,8zM7,11c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8C7.45,12 7,11.55 7,11L7,11zM10,14c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h1C9.55,13 10,13.45 10,14L10,14zM18.29,14.12l-3.54,3.54c-0.39,0.39 -1.02,0.39 -1.41,0l-1.41,-1.41c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71l2.83,-2.83c0.39,-0.39 1.02,-0.39 1.41,0C18.68,13.1 18.68,13.73 18.29,14.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_circle.xml
deleted file mode 100644
index 10a0825..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/playlist_add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM7,8c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8C7.45,9 7,8.55 7,8L7,8zM10,14c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h1C9.55,13 10,13.45 10,14L10,14zM8,12c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8zM18,15h-1v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-1h-1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h1c0.55,0 1,0.45 1,1S18.55,15 18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/playlist_play.xml b/compose/material/material/icons/generator/raw-icons/rounded/playlist_play.xml
deleted file mode 100644
index 4c2be06..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/playlist_play.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1L5,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM5,6h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1L5,8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM5,14h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1L5,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM14,14.88v4.23c0,0.39 0.42,0.63 0.76,0.43l3.53,-2.12c0.32,-0.19 0.32,-0.66 0,-0.86l-3.53,-2.12c-0.34,-0.19 -0.76,0.05 -0.76,0.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/playlist_remove.xml b/compose/material/material/icons/generator/raw-icons/rounded/playlist_remove.xml
deleted file mode 100644
index 9f5903b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/playlist_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.71,21.3c0.39,0.39 1.02,0.39 1.41,0L17,19.41l1.89,1.89c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L18.41,18l1.89,-1.89c0.39,-0.39 0.39,-1.02 0,-1.41s-1.02,-0.39 -1.41,0L17,16.59l-1.89,-1.89c-0.39,-0.39 -1.02,-0.39 -1.41,0s-0.39,1.02 0,1.41L15.59,18l-1.89,1.89C13.32,20.27 13.32,20.91 13.71,21.3zM14,11c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h9C13.55,12 14,11.55 14,11zM14,7c0,-0.55 -0.45,-1 -1,-1H4C3.45,6 3,6.45 3,7s0.45,1 1,1h9C13.55,8 14,7.55 14,7zM3,15c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4C3.45,14 3,14.45 3,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/plumbing.xml b/compose/material/material/icons/generator/raw-icons/rounded/plumbing.xml
deleted file mode 100644
index 7412c2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/plumbing.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.28,4.93l-2.12,-2.12c-0.78,-0.78 -2.05,-0.78 -2.83,0L11.5,5.64l2.12,2.12l2.12,-2.12l3.54,3.54C20.45,8 20.45,6.1 19.28,4.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.49,13.77c0.59,0.59 1.54,0.59 2.12,0l2.47,-2.47L7.96,9.17l-2.47,2.47C4.9,12.23 4.9,13.18 5.49,13.77L5.49,13.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.33,8.46l-0.71,0.71l-3.18,-3.18C9.85,5.4 8.9,5.4 8.32,5.99c-0.59,0.59 -0.59,1.54 0,2.12l3.18,3.18l-7,7c-0.7,0.7 -0.88,1.84 -0.29,2.65c0.74,1.03 2.19,1.12 3.05,0.26L16.45,12c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-2.12,-2.12C15.35,8.07 14.72,8.07 14.33,8.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/plus_one.xml b/compose/material/material/icons/generator/raw-icons/rounded/plus_one.xml
deleted file mode 100644
index 0545630..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/plus_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8c-0.55,0 -1,0.45 -1,1v3L5,12c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L10,9c0,-0.55 -0.45,-1 -1,-1zM14.5,6.79c0,0.57 0.52,1 1.08,0.89L17,7.4L17,17c0,0.55 0.45,1 1,1s1,-0.45 1,-1L19,6.27c0,-0.65 -0.6,-1.12 -1.23,-0.97l-2.57,0.62c-0.41,0.09 -0.7,0.46 -0.7,0.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/podcasts.xml b/compose/material/material/icons/generator/raw-icons/rounded/podcasts.xml
deleted file mode 100644
index 36579ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/podcasts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,0.74 -0.4,1.38 -1,1.72V21c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-7.28c-0.6,-0.35 -1,-0.98 -1,-1.72c0,-1.1 0.9,-2 2,-2S14,10.9 14,12zM10.75,6.13c-2.27,0.46 -4.12,2.28 -4.61,4.55c-0.4,1.86 0.07,3.62 1.08,4.94c0.35,0.45 1.03,0.47 1.43,0.07l0.07,-0.07c0.34,-0.34 0.34,-0.87 0.06,-1.25c-0.68,-0.9 -0.98,-2.1 -0.66,-3.37c0.35,-1.42 1.52,-2.57 2.95,-2.88C13.69,7.52 16,9.49 16,12c0,0.87 -0.28,1.67 -0.76,2.32c-0.3,0.41 -0.29,0.97 0.07,1.33l0,0c0.44,0.44 1.17,0.37 1.54,-0.14C17.57,14.53 18,13.31 18,12C18,8.28 14.61,5.35 10.75,6.13zM10.83,2.07C6.3,2.58 2.61,6.25 2.07,10.78c-0.35,2.95 0.59,5.67 2.32,7.7c0.37,0.43 1.03,0.46 1.43,0.06l0.05,-0.05c0.35,-0.35 0.38,-0.92 0.05,-1.3c-1.56,-1.83 -2.33,-4.37 -1.7,-7.06c0.7,-3.01 3.18,-5.39 6.22,-5.97C15.53,3.18 20,7.08 20,12c0,1.96 -0.72,3.76 -1.9,5.16c-0.34,0.4 -0.31,0.98 0.05,1.35l0,0c0.42,0.42 1.11,0.39 1.49,-0.07C21.11,16.7 22,14.46 22,12C22,6.09 16.87,1.38 10.83,2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/point_of_sale.xml b/compose/material/material/icons/generator/raw-icons/rounded/point_of_sale.xml
deleted file mode 100644
index 34170ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/point_of_sale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2H7C5.9,2 5,2.9 5,4v2c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V4C19,2.9 18.1,2 17,2zM16.5,6h-9C7.22,6 7,5.78 7,5.5v-1C7,4.22 7.22,4 7.5,4h9C16.78,4 17,4.22 17,4.5v1C17,5.78 16.78,6 16.5,6zM20,22H4c-1.1,0 -2,-0.9 -2,-2v-1h20v1C22,21.1 21.1,22 20,22zM18.53,10.19C18.21,9.47 17.49,9 16.7,9H7.3c-0.79,0 -1.51,0.47 -1.83,1.19L2,18h20L18.53,10.19zM9.5,16h-1C8.22,16 8,15.78 8,15.5C8,15.22 8.22,15 8.5,15h1c0.28,0 0.5,0.22 0.5,0.5C10,15.78 9.78,16 9.5,16zM9.5,14h-1C8.22,14 8,13.78 8,13.5C8,13.22 8.22,13 8.5,13h1c0.28,0 0.5,0.22 0.5,0.5C10,13.78 9.78,14 9.5,14zM9.5,12h-1C8.22,12 8,11.78 8,11.5C8,11.22 8.22,11 8.5,11h1c0.28,0 0.5,0.22 0.5,0.5C10,11.78 9.78,12 9.5,12zM12.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,15.78 12.78,16 12.5,16zM12.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,13.78 12.78,14 12.5,14zM12.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,11.78 12.78,12 12.5,12zM15.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,15.78 15.78,16 15.5,16zM15.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,13.78 15.78,14 15.5,14zM15.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,11.78 15.78,12 15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/policy.xml b/compose/material/material/icons/generator/raw-icons/rounded/policy.xml
deleted file mode 100644
index 49a8176..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/policy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6.3c0,-0.79 -0.47,-1.51 -1.19,-1.83l-7,-3.11c-0.52,-0.23 -1.11,-0.23 -1.62,0l-7,3.11C3.47,4.79 3,5.51 3,6.3V11c0,5.55 3.84,10.74 9,12c2.3,-0.56 4.33,-1.9 5.88,-3.71l-3.12,-3.12c-1.94,1.29 -4.58,1.07 -6.29,-0.64c-1.95,-1.95 -1.95,-5.12 0,-7.07c1.95,-1.95 5.12,-1.95 7.07,0c1.71,1.71 1.92,4.35 0.64,6.29l2.9,2.9C20.29,15.69 21,13.38 21,11V6.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/poll.xml b/compose/material/material/icons/generator/raw-icons/rounded/poll.xml
deleted file mode 100644
index 6899ce1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/poll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM8,17c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5c0,0.55 -0.45,1 -1,1zM12,17c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v8c0,0.55 -0.45,1 -1,1zM16,17c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/polyline.xml b/compose/material/material/icons/generator/raw-icons/rounded/polyline.xml
deleted file mode 100644
index 420493c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/polyline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.04,6.85L7.3,10H4.5C3.67,10 3,10.67 3,11.5v3C3,15.33 3.67,16 4.5,16h3c0.14,0 0.27,-0.02 0.39,-0.05L15,19.5v1c0,0.83 0.67,1.5 1.5,1.5h3c0.83,0 1.5,-0.67 1.5,-1.5v-3c0,-0.83 -0.67,-1.5 -1.5,-1.5h-3c-0.75,0 -1.37,0.55 -1.48,1.27L9,14.26V11.5c0,-0.12 -0.01,-0.24 -0.04,-0.36L11.7,8h2.8C15.33,8 16,7.33 16,6.5v-3C16,2.67 15.33,2 14.5,2h-3C10.67,2 10,2.67 10,3.5v3C10,6.62 10.01,6.74 10.04,6.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/polymer.xml b/compose/material/material/icons/generator/raw-icons/rounded/polymer.xml
deleted file mode 100644
index b7134f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/polymer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-4L7.11,16.63 4.5,12 9,4H5L0.5,12 5,20h4l7.89,-12.63L19.5,12 15,20h4l4.5,-8L19,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pool.xml b/compose/material/material/icons/generator/raw-icons/rounded/pool.xml
deleted file mode 100644
index 134d6d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pool.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.11,5.56C7.3,5.7 8.14,6.14 9,7l1,1 -3.25,3.25c0.31,0.12 0.56,0.27 0.77,0.39 0.37,0.23 0.59,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36 0.55,0 0.78,-0.13 1.15,-0.36 0.12,-0.07 0.26,-0.15 0.41,-0.23L10.48,5C9.22,3.74 8.04,3.2 6.3,3.05 5.6,2.99 5,3.56 5,4.26v0.09c0,0.63 0.49,1.13 1.11,1.21zM21.35,18.91c-0.17,-0.06 -0.32,-0.15 -0.5,-0.27 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.6,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36s-0.78,-0.13 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.18,0.11 -0.33,0.2 -0.5,0.27 -0.38,0.13 -0.65,0.45 -0.65,0.85v0.12c0,0.67 0.66,1.13 1.3,0.91 0.37,-0.13 0.65,-0.3 0.89,-0.44 0.37,-0.22 0.6,-0.35 1.15,-0.35 0.55,0 0.78,0.13 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.19,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.72,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.23,0.14 0.51,0.31 0.88,0.44 0.63,0.22 1.3,-0.24 1.3,-0.91v-0.12c0,-0.41 -0.27,-0.73 -0.65,-0.86zM3.11,16.35c0.47,-0.13 0.81,-0.33 1.09,-0.49 0.37,-0.23 0.6,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.23,0.14 0.5,0.3 0.85,0.43 0.63,0.23 1.31,-0.24 1.31,-0.91v-0.12c0,-0.4 -0.27,-0.72 -0.64,-0.86 -0.17,-0.06 -0.32,-0.15 -0.51,-0.26 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.6,0.36 -1.15,0.36s-0.78,-0.14 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.18,0.11 -0.33,0.2 -0.5,0.27 -0.38,0.13 -0.65,0.45 -0.65,0.85v0.23c0,0.58 0.55,1.02 1.11,0.86z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/portable_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/portable_wifi_off.xml
deleted file mode 100644
index e5eed00..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/portable_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.71,3.07c-0.39,0.39 -0.39,1.02 0,1.41L4.1,5.87C2.79,7.57 2,9.69 2,12c0,3.3 1.6,6.22 4.06,8.04 0.48,0.35 1.16,0.21 1.46,-0.31 0.25,-0.43 0.14,-0.99 -0.26,-1.29C5.29,16.98 4,14.65 4,12c0,-1.76 0.57,-3.38 1.53,-4.69l1.43,1.44C6.36,9.68 6,10.8 6,12c0,1.8 0.8,3.41 2.06,4.51 0.46,0.4 1.19,0.25 1.5,-0.28l0.01,-0.01c0.24,-0.42 0.13,-0.94 -0.23,-1.26C8.52,14.23 8,13.18 8,12c0,-0.65 0.17,-1.25 0.44,-1.79l1.58,1.58L10,12c0,1.1 0.9,2 2,2l0.21,-0.02 6.81,6.81c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.13,3.07c-0.39,-0.39 -1.03,-0.39 -1.42,0zM17.71,13.82c0.18,-0.57 0.29,-1.19 0.29,-1.82 0,-3.31 -2.69,-6 -6,-6 -0.63,0 -1.25,0.11 -1.82,0.29l1.72,1.72c0.03,0 0.06,-0.01 0.1,-0.01 2.21,0 4,1.79 4,4 0,0.04 -0.01,0.07 -0.01,0.11l1.72,1.71zM12,4c4.42,0 8,3.58 8,8 0,1.2 -0.29,2.32 -0.77,3.35l1.49,1.49C21.53,15.4 22,13.76 22,12c0,-5.52 -4.48,-10 -10,-10 -1.76,0 -3.4,0.48 -4.84,1.28l1.48,1.48C9.66,4.28 10.8,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/portrait.xml b/compose/material/material/icons/generator/raw-icons/rounded/portrait.xml
deleted file mode 100644
index b5f6d48..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.25c1.24,0 2.25,-1.01 2.25,-2.25S13.24,7.75 12,7.75 9.75,8.76 9.75,10s1.01,2.25 2.25,2.25zM16.5,16.25c0,-1.5 -3,-2.25 -4.5,-2.25s-4.5,0.75 -4.5,2.25L7.5,17h9v-0.75zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/post_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/post_add.xml
deleted file mode 100644
index 6fc983c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/post_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12c-0.55,0 -1,0.45 -1,1v5.22c0,0.55 -0.45,1 -1,1H6c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H5C3.9,5 3,5.9 3,7v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-6C19,12.45 18.55,12 18,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.02,5H19V2.98C19,2.44 18.56,2 18.02,2h-0.03C17.44,2 17,2.44 17,2.98V5h-2.01C14.45,5 14.01,5.44 14,5.98c0,0.01 0,0.02 0,0.03C14,6.56 14.44,7 14.99,7H17v2.01c0,0.54 0.44,0.99 0.99,0.98c0.01,0 0.02,0 0.03,0c0.54,0 0.98,-0.44 0.98,-0.98V7h2.02C21.56,7 22,6.56 22,6.02V5.98C22,5.44 21.56,5 21.02,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9H8c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1C15,9.45 14.55,9 14,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12H8c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1C15,12.45 14.55,12 14,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,15H8c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1C15,15.45 14.55,15 14,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/power.xml b/compose/material/material/icons/generator/raw-icons/rounded/power.xml
deleted file mode 100644
index 4ffcef2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,7L16,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-4V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-0.01C6.9,7 6,7.9 6,8.99v4.66c0,0.53 0.21,1.04 0.58,1.41L9.5,18v2c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-2l2.92,-2.92c0.37,-0.38 0.58,-0.89 0.58,-1.42V8.99C18,7.89 17.11,7 16.01,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/power_input.xml b/compose/material/material/icons/generator/raw-icons/rounded/power_input.xml
deleted file mode 100644
index 998ecd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/power_input.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,10c0,0.55 0.45,1 1,1h17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,9c-0.55,0 -1,0.45 -1,1zM3,15h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L3,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM10,15h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM17,15h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/power_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/power_off.xml
deleted file mode 100644
index 119c3d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/power_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13.66L18,8.99c0,-1 -1.01,-2 -2,-1.99L16,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-3.88l7.63,7.63c0.15,-0.3 0.25,-0.63 0.25,-0.97zM10,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v0.88l2,2L10,4zM20.15,19.86l-7.66,-7.66 -5.1,-5.1 -2.56,-2.56c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l2.63,2.63c-0.03,0.13 -0.05,0.27 -0.05,0.41v4.66c0,0.53 0.21,1.04 0.58,1.41L9.5,18v2c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-2l0.48,-0.48 3.76,3.76c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.03 0,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/power_settings_new.xml b/compose/material/material/icons/generator/raw-icons/rounded/power_settings_new.xml
deleted file mode 100644
index b9c4730..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/power_settings_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-0.55,0 -1,0.45 -1,1v8c0,0.55 0.45,1 1,1s1,-0.45 1,-1L13,4c0,-0.55 -0.45,-1 -1,-1zM17.14,5.86c-0.39,0.39 -0.38,1 -0.01,1.39 1.13,1.2 1.83,2.8 1.87,4.57 0.09,3.83 -3.08,7.13 -6.91,7.17C8.18,19.05 5,15.9 5,12c0,-1.84 0.71,-3.51 1.87,-4.76 0.37,-0.39 0.37,-1 -0.01,-1.38 -0.4,-0.4 -1.05,-0.39 -1.43,0.02C3.98,7.42 3.07,9.47 3,11.74c-0.14,4.88 3.83,9.1 8.71,9.25 5.1,0.16 9.29,-3.93 9.29,-9 0,-2.37 -0.92,-4.51 -2.42,-6.11 -0.38,-0.41 -1.04,-0.42 -1.44,-0.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/precision_manufacturing.xml b/compose/material/material/icons/generator/raw-icons/rounded/precision_manufacturing.xml
deleted file mode 100644
index 51e3957..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/precision_manufacturing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33,-2.33l3.6,1.68c0.38,0.18 0.82,0.01 1,-0.36c0.18,-0.38 0.01,-0.82 -0.36,-1l-3.92,-1.83c-0.38,-0.18 -0.83,-0.1 -1.13,0.2L13.78,4.4C13.6,4.16 13.32,4 13,4c-0.55,0 -1,0.45 -1,1v1H8.82C8.34,4.66 6.96,3.75 5.4,4.06C4.23,4.29 3.27,5.25 3.05,6.42C2.8,7.76 3.45,8.96 4.48,9.58L7.08,18H5.5C4.67,18 4,18.67 4,19.5v0C4,20.33 4.67,21 5.5,21h10c0.83,0 1.5,-0.67 1.5,-1.5v0c0,-0.83 -0.67,-1.5 -1.5,-1.5h-2.12L8.41,8.77C8.58,8.53 8.72,8.28 8.82,8H12v1c0,0.55 0.45,1 1,1c0.32,0 0.6,-0.16 0.78,-0.4l1.74,1.74c0.3,0.3 0.75,0.38 1.13,0.2l3.92,-1.83c0.38,-0.18 0.54,-0.62 0.36,-1C20.75,8.34 20.31,8.17 19.93,8.35zM6,8C5.45,8 5,7.55 5,7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C7,7.55 6.55,8 6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/pregnant_woman.xml b/compose/material/material/icons/generator/raw-icons/rounded/pregnant_woman.xml
deleted file mode 100644
index b724be2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/pregnant_woman.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2 -0.89,2 -2,2 -2,-0.89 -2,-2zM16,13c-0.01,-1.34 -0.83,-2.51 -2,-3 0,-1.71 -1.42,-3.08 -3.16,-3C9.22,7.09 8,8.54 8,10.16L8,16c0,0.55 0.45,1 1,1h1v3.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5L13,17h2c0.55,0 1,-0.45 1,-1v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/present_to_all.xml b/compose/material/material/icons/generator/raw-icons/rounded/present_to_all.xml
deleted file mode 100644
index ad0e792c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/present_to_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v14c0,1.11 0.89,2 2,2h18c1.11,0 2,-0.89 2,-2L23,5c0,-1.11 -0.89,-2 -2,-2zM20,19.02L4,19.02c-0.55,0 -1,-0.45 -1,-1L3,5.98c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12.04c0,0.55 -0.45,1 -1,1zM10,12L8,12l3.65,-3.65c0.2,-0.2 0.51,-0.2 0.71,0L16,12h-2v4h-4v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/preview.xml b/compose/material/material/icons/generator/raw-icons/rounded/preview.xml
deleted file mode 100644
index 2bf3bca..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/preview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM13.5,13c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5S13.5,12.17 13.5,13zM12,9c-2.73,0 -5.06,1.66 -6,4c0.94,2.34 3.27,4 6,4s5.06,-1.66 6,-4C17.06,10.66 14.73,9 12,9zM12,15.5c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5c1.38,0 2.5,1.12 2.5,2.5C14.5,14.38 13.38,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/price_change.xml b/compose/material/material/icons/generator/raw-icons/rounded/price_change.xml
deleted file mode 100644
index 25740eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/price_change.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V6C22,4.89 21.11,4 20,4zM11,10H8v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0H7c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3v-1H7c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0h1c0.55,0 1,0.45 1,1v0C12,9.55 11.55,10 11,10zM15.65,15.9L14,14.25h4l-1.65,1.65C16.16,16.09 15.84,16.09 15.65,15.9zM14,10l1.65,-1.65c0.2,-0.2 0.51,-0.2 0.71,0L18,10H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/price_check.xml b/compose/material/material/icons/generator/raw-icons/rounded/price_check.xml
deleted file mode 100644
index 4464bae..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/price_check.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13V9c0,-0.55 -0.45,-1 -1,-1H6V6h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H8.5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1H5C4.45,4 4,4.45 4,5v4c0,0.55 0.45,1 1,1h4v2H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1.5c0,0.55 0.45,1 1,1s1,-0.45 1,-1H10C10.55,14 11,13.55 11,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.88,13.22l-4.95,4.95l-2.12,-2.12c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83c0.39,0.39 1.02,0.39 1.41,0l5.66,-5.66c0.39,-0.39 0.39,-1.02 0,-1.41v0C19.9,12.83 19.27,12.83 18.88,13.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/print.xml b/compose/material/material/icons/generator/raw-icons/rounded/print.xml
deleted file mode 100644
index 063cd55..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/print.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8L5,8c-1.66,0 -3,1.34 -3,3v4c0,1.1 0.9,2 2,2h2v2c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-2h2c1.1,0 2,-0.9 2,-2v-4c0,-1.66 -1.34,-3 -3,-3zM15,19L9,19c-0.55,0 -1,-0.45 -1,-1v-4h8v4c0,0.55 -0.45,1 -1,1zM19,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM17,3L7,3c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1L18,4c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/print_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/print_disabled.xml
deleted file mode 100644
index b979a49..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/print_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.12,2.32c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L4.98,8C3.33,8.01 2,9.35 2,11v4c0,1.1 0.9,2 2,2h2v2c0,1.1 0.9,2 2,2h8c0.55,0 1.04,-0.22 1.4,-0.58l2.83,2.83c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L2.12,2.32zM15,19L9,19c-0.55,0 -1,-0.45 -1,-1v-4h2.98l4.72,4.72c-0.19,0.17 -0.43,0.28 -0.7,0.28zM19,8h-8.37l9,9L20,17c1.1,0 2,-0.9 2,-2v-4c0,-1.66 -1.34,-3 -3,-3zM19,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM17,7c0.55,0 1,-0.45 1,-1L18,4c0,-0.55 -0.45,-1 -1,-1L7,3c-0.37,0 -0.68,0.21 -0.85,0.51L9.63,7L17,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/priority_high.xml b/compose/material/material/icons/generator/raw-icons/rounded/priority_high.xml
deleted file mode 100644
index 0a7e4e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/priority_high.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2s2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/privacy_tip.xml b/compose/material/material/icons/generator/raw-icons/rounded/privacy_tip.xml
deleted file mode 100644
index 2ea8189..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/privacy_tip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.19,4.47C3.47,4.79 3,5.51 3,6.3V11c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V6.3c0,-0.79 -0.47,-1.51 -1.19,-1.83l-7,-3.11c-0.52,-0.23 -1.11,-0.23 -1.62,0L4.19,4.47zM12,7L12,7c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C11,7.45 11.45,7 12,7zM12,11L12,11c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-4C11,11.45 11.45,11 12,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/private_connectivity.xml b/compose/material/material/icons/generator/raw-icons/rounded/private_connectivity.xml
deleted file mode 100644
index 73cdc5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/private_connectivity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-0.55 -0.45,-1 -1,-1h-2.07c-0.49,-3.39 -3.4,-6 -6.93,-6s-6.44,2.61 -6.93,6H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2.07c0.49,3.39 3.4,6 6.93,6s6.44,-2.61 6.93,-6H21C21.55,13 22,12.55 22,12zM15,14.5c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1v-1c0,-1.21 1.08,-2.18 2.34,-1.97C13.32,7.69 14,8.61 14,9.61v0.89c0.55,0 1,0.45 1,1V14.5zM12.75,13c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75S12.75,12.59 12.75,13zM13,9.5v1h-2v-1c0,-0.55 0.45,-1 1,-1S13,8.95 13,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/production_quantity_limits.xml b/compose/material/material/icons/generator/raw-icons/rounded/production_quantity_limits.xml
deleted file mode 100644
index 0e62779..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/production_quantity_limits.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10L12,10c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C13,9.55 12.55,10 12,10zM12,6L12,6c-0.55,0 -1,-0.45 -1,-1V2c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C13,5.55 12.55,6 12,6zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.24,-6.14c0.25,-0.48 0.08,-1.08 -0.4,-1.34v0c-0.49,-0.27 -1.1,-0.08 -1.36,0.41L15.55,11H8.53L4.27,2H2C1.45,2 1,2.45 1,3v0c0,0.55 0.45,1 1,1h1l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h11c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H7L8.1,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/propane.xml b/compose/material/material/icons/generator/raw-icons/rounded/propane.xml
deleted file mode 100644
index 3134449..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/propane.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.75,6L16,6V5c0,-1.1 -0.9,-2 -2,-2h-4C8.9,3 8,3.9 8,5v1L7.25,6C3.97,6 1.1,8.53 1,11.82C0.9,15.21 3.62,18 7,18v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2h6v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2c3.38,0 6.1,-2.79 6,-6.18C22.9,8.53 20.03,6 16.75,6zM10,5h4v1h-4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/propane_tank.xml b/compose/material/material/icons/generator/raw-icons/rounded/propane_tank.xml
deleted file mode 100644
index 88ba74e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/propane_tank.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15v3c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4v-3H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13v-3c0,-1.86 -1.28,-3.41 -3,-3.86V4c0,-1.1 -0.9,-2 -2,-2H9C7.9,2 7,2.9 7,4v2.14c-1.72,0.45 -3,2 -3,3.86v3H20zM9,4h6v2h-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1H9V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/psychology.xml b/compose/material/material/icons/generator/raw-icons/rounded/psychology.xml
deleted file mode 100644
index bd1c63c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/psychology.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.57c-0.79,0 -1.43,0.64 -1.43,1.43s0.64,1.43 1.43,1.43s1.43,-0.64 1.43,-1.43S13.79,8.57 13,8.57z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.21,3c-3.84,-0.11 -7,2.87 -7.19,6.64L4.1,12.2C3.85,12.53 4.09,13 4.5,13H6v3c0,1.1 0.9,2 2,2h1v2c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-3.68c2.44,-1.16 4.1,-3.68 4,-6.58C19.86,6.12 16.82,3.11 13.21,3zM16,10c0,0.13 -0.01,0.26 -0.02,0.39l0.83,0.66c0.08,0.06 0.1,0.16 0.05,0.25l-0.8,1.39c-0.05,0.09 -0.16,0.12 -0.24,0.09l-0.99,-0.4c-0.21,0.16 -0.43,0.29 -0.67,0.39L14,13.83c-0.01,0.1 -0.1,0.17 -0.2,0.17h-1.6c-0.1,0 -0.18,-0.07 -0.2,-0.17l-0.15,-1.06c-0.25,-0.1 -0.47,-0.23 -0.68,-0.39l-0.99,0.4c-0.09,0.03 -0.2,0 -0.25,-0.09l-0.8,-1.39c-0.05,-0.08 -0.03,-0.19 0.05,-0.25l0.84,-0.66C10.01,10.26 10,10.13 10,10c0,-0.13 0.02,-0.27 0.04,-0.39L9.19,8.95c-0.08,-0.06 -0.1,-0.16 -0.05,-0.26l0.8,-1.38c0.05,-0.09 0.15,-0.12 0.24,-0.09l1,0.4c0.2,-0.15 0.43,-0.29 0.67,-0.39l0.15,-1.06C12.02,6.07 12.1,6 12.2,6h1.6c0.1,0 0.18,0.07 0.2,0.17l0.15,1.06c0.24,0.1 0.46,0.23 0.67,0.39l1,-0.4c0.09,-0.03 0.2,0 0.24,0.09l0.8,1.38c0.05,0.09 0.03,0.2 -0.05,0.26l-0.85,0.66C15.99,9.73 16,9.86 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/psychology_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/psychology_alt.xml
deleted file mode 100644
index 543b04b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/psychology_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,9.06C19.5,5.73 16.57,3 13,3C9.47,3 6.57,5.61 6.08,9l-1.93,3.48C3.74,13.14 4.22,14 5,14h1l0,2c0,1.1 0.9,2 2,2h1v2c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1l0,-3.68C18.62,15.07 20.35,12.24 19.94,9.06zM12.5,14c-0.41,0 -0.74,-0.33 -0.74,-0.74c0,-0.41 0.33,-0.73 0.74,-0.73c0.41,0 0.73,0.32 0.73,0.73C13.23,13.67 12.92,14 12.5,14zM14.26,9.68c-0.44,0.65 -0.86,0.85 -1.09,1.27c-0.09,0.17 -0.13,0.28 -0.13,0.82h-1.06c0,-0.29 -0.04,-0.75 0.18,-1.16c0.28,-0.51 0.83,-0.81 1.14,-1.26c0.33,-0.47 0.15,-1.36 -0.8,-1.36c-0.62,0 -0.92,0.47 -1.05,0.86l-0.96,-0.4C10.76,7.67 11.46,7 12.5,7c0.86,0 1.45,0.39 1.75,0.88C14.51,8.31 14.66,9.1 14.26,9.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/public.xml b/compose/material/material/icons/generator/raw-icons/rounded/public.xml
deleted file mode 100644
index 19fb425..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/public.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L9,15v1c0,1.1 0.9,2 2,2v1.93zM17.9,17.39c-0.26,-0.81 -1,-1.39 -1.9,-1.39h-1v-3c0,-0.55 -0.45,-1 -1,-1L8,12v-2h2c0.55,0 1,-0.45 1,-1L11,7h2c1.1,0 2,-0.9 2,-2v-0.41c2.93,1.19 5,4.06 5,7.41 0,2.08 -0.8,3.97 -2.1,5.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/public_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/public_off.xml
deleted file mode 100644
index f5ef489..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/public_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.87 20,13.48 20,12c0,-3.35 -2.07,-6.22 -5,-7.41V5c0,1.1 -0.9,2 -2,2h-2V8.17zM20.49,21.9L20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-1.56,-1.56c-2.07,1.37 -4.68,2 -7.45,1.48c-3.95,-0.75 -7.13,-3.92 -7.88,-7.88c-0.52,-2.77 0.1,-5.38 1.48,-7.45L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9zM11,18c-1.1,0 -2,-0.9 -2,-2v-1l-4.79,-4.79C4.08,10.79 4,11.38 4,12c0,4.08 3.05,7.44 7,7.93V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/publish.xml b/compose/material/material/icons/generator/raw-icons/rounded/publish.xml
deleted file mode 100644
index 242565b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/publish.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,4c-0.55,0 -1,0.45 -1,1zM7.41,14L9,14v5c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-5h1.59c0.89,0 1.34,-1.08 0.71,-1.71L12.71,7.7c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.59,4.59c-0.63,0.63 -0.19,1.71 0.7,1.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/published_with_changes.xml b/compose/material/material/icons/generator/raw-icons/rounded/published_with_changes.xml
deleted file mode 100644
index 72aa61d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/published_with_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.95,10.23l-5.66,5.66c-0.39,0.39 -1.02,0.39 -1.41,0l-2.83,-2.83c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l2.12,2.12l4.95,-4.95c0.39,-0.39 1.02,-0.39 1.41,0l0,0C17.34,9.21 17.34,9.84 16.95,10.23zM4,12c0,-2.33 1.02,-4.42 2.62,-5.88l1.53,1.53C8.46,7.96 9,7.74 9,7.29V3c0,-0.28 -0.22,-0.5 -0.5,-0.5H4.21c-0.45,0 -0.67,0.54 -0.35,0.85L5.2,4.7C3.24,6.52 2,9.11 2,12c0,4.75 3.32,8.73 7.76,9.75c0.63,0.14 1.24,-0.33 1.24,-0.98v0c0,-0.47 -0.33,-0.87 -0.79,-0.98C6.66,18.98 4,15.8 4,12zM22,12c0,-4.75 -3.32,-8.73 -7.76,-9.75C13.61,2.11 13,2.58 13,3.23v0c0,0.47 0.33,0.87 0.79,0.98C17.34,5.02 20,8.2 20,12c0,2.33 -1.02,4.42 -2.62,5.88l-1.53,-1.53C15.54,16.04 15,16.26 15,16.71V21c0,0.28 0.22,0.5 0.5,0.5h4.29c0.45,0 0.67,-0.54 0.35,-0.85L18.8,19.3C20.76,17.48 22,14.89 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/punch_clock.xml b/compose/material/material/icons/generator/raw-icons/rounded/punch_clock.xml
deleted file mode 100644
index 90e92658..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/punch_clock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-1V3c0,-1.1 -0.9,-2 -2,-2H8C6.9,1 6,1.9 6,3v3H5C3.9,6 3,6.9 3,8v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM8,3h8v3H8V3zM12,19c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c2.76,0 5,2.24 5,5S14.76,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,13.79V12c0,-0.28 -0.22,-0.5 -0.5,-0.5h0c-0.28,0 -0.5,0.22 -0.5,0.5v2c0,0.13 0.05,0.26 0.15,0.35l1.14,1.14c0.2,0.2 0.51,0.2 0.71,0c0.2,-0.2 0.2,-0.51 0,-0.71L12.5,13.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/push_pin.xml b/compose/material/material/icons/generator/raw-icons/rounded/push_pin.xml
deleted file mode 100644
index c3bcd1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/push_pin.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12.87c0,-0.47 -0.34,-0.85 -0.8,-0.98C16.93,11.54 16,10.38 16,9V4l1,0c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H7C6.45,2 6,2.45 6,3c0,0.55 0.45,1 1,1l1,0v5c0,1.38 -0.93,2.54 -2.2,2.89C5.34,12.02 5,12.4 5,12.87V13c0,0.55 0.45,1 1,1h4.98L11,21c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1l-0.02,-7H18c0.55,0 1,-0.45 1,-1V12.87z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/qr_code.xml b/compose/material/material/icons/generator/raw-icons/rounded/qr_code.xml
deleted file mode 100644
index e01f58b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/qr_code.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h4c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v4C3,10.1 3.9,11 5,11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h4c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v4C3,20.1 3.9,21 5,21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5v4c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2h-4C13.9,3 13,3.9 13,5zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,20.5v-1c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5v1c0,0.28 0.22,0.5 0.5,0.5h1C20.78,21 21,20.78 21,20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.5v1c0,0.28 0.22,0.5 0.5,0.5h1c0.28,0 0.5,-0.22 0.5,-0.5v-1c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1C13.22,13 13,13.22 13,13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,15h-1c-0.28,0 -0.5,0.22 -0.5,0.5v1c0,0.28 0.22,0.5 0.5,0.5h1c0.28,0 0.5,-0.22 0.5,-0.5v-1C17,15.22 16.78,15 16.5,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17.5v1c0,0.28 0.22,0.5 0.5,0.5h1c0.28,0 0.5,-0.22 0.5,-0.5v-1c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1C13.22,17 13,17.22 13,17.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,21h1c0.28,0 0.5,-0.22 0.5,-0.5v-1c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5v1C15,20.78 15.22,21 15.5,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,19h1c0.28,0 0.5,-0.22 0.5,-0.5v-1c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5v1C17,18.78 17.22,19 17.5,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,13h-1c-0.28,0 -0.5,0.22 -0.5,0.5v1c0,0.28 0.22,0.5 0.5,0.5h1c0.28,0 0.5,-0.22 0.5,-0.5v-1C19,13.22 18.78,13 18.5,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,17h1c0.28,0 0.5,-0.22 0.5,-0.5v-1c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5v1C19,16.78 19.22,17 19.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/qr_code_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/qr_code_2.xml
deleted file mode 100644
index fe9bc55..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/qr_code_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h-2v-2h2V21zM13,14h-2v5h2V14zM21,12h-2v4h2V12zM19,10h-2v2h2V10zM7,12H5v2h2V12zM5,10H3v2h2V10zM12,5h2V3h-2V5zM4.5,4.5v3h3v-3H4.5zM8,9H4C3.45,9 3,8.55 3,8V4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v4C9,8.55 8.55,9 8,9zM4.5,16.5v3h3v-3H4.5zM8,21H4c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v4C9,20.55 8.55,21 8,21zM16.5,4.5v3h3v-3H16.5zM20,9h-4c-0.55,0 -1,-0.45 -1,-1V4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v4C21,8.55 20.55,9 20,9zM19,19v-3l-4,0v2h2v3h4v-2H19zM17,12l-4,0v2h4V12zM13,10H7v2h2v2h2v-2h2V10zM14,9V7h-2V5h-2v4L14,9zM6.75,5.25h-1.5v1.5h1.5V5.25zM6.75,17.25h-1.5v1.5h1.5V17.25zM18.75,5.25h-1.5v1.5h1.5V5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/qr_code_scanner.xml b/compose/material/material/icons/generator/raw-icons/rounded/qr_code_scanner.xml
deleted file mode 100644
index 8f22d03..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/qr_code_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,6.5v3h-3v-3H9.5M11,5H5v6h6V5L11,5zM9.5,14.5v3h-3v-3H9.5M11,13H5v6h6V13L11,13zM17.5,6.5v3h-3v-3H17.5M19,5h-6v6h6V5L19,5zM13,13h1.5v1.5H13V13zM14.5,14.5H16V16h-1.5V14.5zM16,13h1.5v1.5H16V13zM13,16h1.5v1.5H13V16zM14.5,17.5H16V19h-1.5V17.5zM16,16h1.5v1.5H16V16zM17.5,14.5H19V16h-1.5V14.5zM17.5,17.5H19V19h-1.5V17.5zM21,7L21,7c-0.55,0 -1,-0.45 -1,-1V4h-2c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v3C22,6.55 21.55,7 21,7zM22,21v-3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2h-2c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h3C21.55,22 22,21.55 22,21zM3,22h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3C2,21.55 2.45,22 3,22zM2,3v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V4h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H3C2.45,2 2,2.45 2,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/query_builder.xml b/compose/material/material/icons/generator/raw-icons/rounded/query_builder.xml
deleted file mode 100644
index 07b7ee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/query_builder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM11.78,7h-0.06c-0.4,0 -0.72,0.32 -0.72,0.72v4.72c0,0.35 0.18,0.68 0.49,0.86l4.15,2.49c0.34,0.2 0.78,0.1 0.98,-0.24 0.21,-0.34 0.1,-0.79 -0.25,-0.99l-3.87,-2.3L12.5,7.72c0,-0.4 -0.32,-0.72 -0.72,-0.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/query_stats.xml b/compose/material/material/icons/generator/raw-icons/rounded/query_stats.xml
deleted file mode 100644
index e0eb332..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/query_stats.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.88,18.47c0.48,-0.77 0.75,-1.67 0.69,-2.66c-0.13,-2.15 -1.84,-3.97 -3.97,-4.2c-2.72,-0.3 -5.02,1.81 -5.02,4.47c0,2.49 2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7l2.41,2.41c0.39,0.39 1.03,0.39 1.42,0v0c0.39,-0.39 0.39,-1.03 0,-1.42L19.88,18.47zM16.08,18.58c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C18.58,17.46 17.46,18.58 16.08,18.58zM15.72,10.08c-0.74,0.02 -1.45,0.18 -2.1,0.45l-0.55,-0.83l-3.08,5.01c-0.36,0.58 -1.17,0.64 -1.61,0.13l-2.12,-2.47l-3.06,4.9c-0.31,0.49 -0.97,0.62 -1.44,0.28l0,0c-0.42,-0.31 -0.54,-0.89 -0.26,-1.34l3.78,-6.05c0.36,-0.57 1.17,-0.63 1.61,-0.12L9,12.5l3.18,-5.17c0.38,-0.62 1.28,-0.64 1.68,-0.03L15.72,10.08zM18.31,10.58c-0.64,-0.28 -1.33,-0.45 -2.05,-0.49L20.8,2.9c0.31,-0.49 0.97,-0.61 1.43,-0.27l0,0c0.43,0.31 0.54,0.9 0.26,1.34L18.31,10.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/question_answer.xml b/compose/material/material/icons/generator/raw-icons/rounded/question_answer.xml
deleted file mode 100644
index e63e167..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/question_answer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-1v8c0,0.55 -0.45,1 -1,1L6,15v1c0,1.1 0.9,2 2,2h10l4,4L22,8c0,-1.1 -0.9,-2 -2,-2zM17,11L17,4c0,-1.1 -0.9,-2 -2,-2L4,2c-1.1,0 -2,0.9 -2,2v13l4,-4h9c1.1,0 2,-0.9 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/question_mark.xml b/compose/material/material/icons/generator/raw-icons/rounded/question_mark.xml
deleted file mode 100644
index 0be58ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/question_mark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.92,7.54C7.12,7.2 6.78,6.21 7.26,5.49C8.23,4.05 9.85,3 11.99,3c2.35,0 3.96,1.07 4.78,2.41c0.7,1.15 1.11,3.3 0.03,4.9c-1.2,1.77 -2.35,2.31 -2.97,3.45c-0.15,0.27 -0.24,0.49 -0.3,0.94c-0.09,0.73 -0.69,1.3 -1.43,1.3c-0.87,0 -1.58,-0.75 -1.48,-1.62c0.06,-0.51 0.18,-1.04 0.46,-1.54c0.77,-1.39 2.25,-2.21 3.11,-3.44c0.91,-1.29 0.4,-3.7 -2.18,-3.7c-1.17,0 -1.93,0.61 -2.4,1.34C9.26,7.61 8.53,7.79 7.92,7.54zM14,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2S14,18.9 14,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/queue.xml b/compose/material/material/icons/generator/raw-icons/rounded/queue.xml
deleted file mode 100644
index 1fee4b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6c-0.55,0 -1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM18,11h-3v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3h-3c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3L13,6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/queue_music.xml b/compose/material/material/icons/generator/raw-icons/rounded/queue_music.xml
deleted file mode 100644
index f5013dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/queue_music.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6L4,6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM14,10L4,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM4,16h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,14c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM19,6c-1.1,0 -2,0.9 -2,2v6.18c-0.31,-0.11 -0.65,-0.18 -1,-0.18 -1.84,0 -3.28,1.64 -2.95,3.54 0.21,1.21 1.2,2.2 2.41,2.41 1.9,0.33 3.54,-1.11 3.54,-2.95L19,8h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/queue_play_next.xml b/compose/material/material/icons/generator/raw-icons/rounded/queue_play_next.xml
deleted file mode 100644
index 89842c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/queue_play_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,17c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1L23,5c0,-1.1 -0.9,-2 -2,-2zM13,10L13,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v2L9,10c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h2c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2zM23.29,18.71l-3.04,3.04c-0.41,0.41 -1.09,0.41 -1.5,0 -0.41,-0.41 -0.41,-1.09 0,-1.5L21,18l-2.25,-2.25c-0.41,-0.41 -0.41,-1.09 0,-1.5 0.41,-0.41 1.09,-0.41 1.5,0l3.04,3.04c0.39,0.39 0.39,1.03 0,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/quickreply.xml b/compose/material/material/icons/generator/raw-icons/rounded/quickreply.xml
deleted file mode 100644
index 9eccee7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/quickreply.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9v-7c0,-0.55 0.45,-1 1,-1h6V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.69,16H20.3l1.4,-3.3c0.14,-0.33 -0.1,-0.7 -0.46,-0.7H17.5c-0.28,0 -0.5,0.22 -0.5,0.5v5c0,0.28 0.22,0.5 0.5,0.5H19v3.94c0,0.26 0.36,0.35 0.47,0.11l2.66,-5.33C22.3,16.39 22.06,16 21.69,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/quiz.xml b/compose/material/material/icons/generator/raw-icons/rounded/quiz.xml
deleted file mode 100644
index d08085e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/quiz.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20H4V7c0,-0.55 -0.45,-1 -1,-1S2,6.45 2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1S17.55,20 17,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM14.01,15c-0.59,0 -1.05,-0.47 -1.05,-1.05c0,-0.59 0.47,-1.04 1.05,-1.04c0.59,0 1.04,0.45 1.04,1.04C15.04,14.53 14.6,15 14.01,15zM16.51,8.83c-0.63,0.93 -1.23,1.21 -1.56,1.81c-0.08,0.14 -0.13,0.26 -0.16,0.49c-0.05,0.39 -0.36,0.68 -0.75,0.68h-0.03c-0.44,0 -0.79,-0.38 -0.75,-0.82c0.03,-0.28 0.09,-0.57 0.25,-0.84c0.41,-0.73 1.18,-1.16 1.63,-1.8c0.48,-0.68 0.21,-1.94 -1.14,-1.94c-0.61,0 -1.01,0.32 -1.26,0.7c-0.19,0.29 -0.57,0.39 -0.89,0.25l0,0c-0.42,-0.18 -0.6,-0.7 -0.34,-1.07C12.02,5.55 12.87,5 13.99,5c1.23,0 2.08,0.56 2.51,1.26C16.87,6.87 17.08,7.99 16.51,8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/r_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/rounded/r_mobiledata.xml
deleted file mode 100644
index f8f8608..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/r_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.8,7.2l0.65,1.52C8.71,9.33 8.27,10 7.61,10h0c-0.37,0 -0.7,-0.22 -0.85,-0.56L5.87,7.33H4v1.75C4,9.59 3.59,10 3.08,10H2.92C2.41,10 2,9.59 2,9.08V3c0,-0.55 0.45,-1 1,-1h4c1.1,0 2,0.9 2,2v1.33C9,6.13 8.47,6.87 7.8,7.2zM7,4H4v1.33h3V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/radar.xml b/compose/material/material/icons/generator/raw-icons/rounded/radar.xml
deleted file mode 100644
index b811ecf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/radar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.74,18.33C21.15,16.6 22,14.4 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10c2.4,0 4.6,-0.85 6.33,-2.26c0.27,-0.22 0.53,-0.46 0.78,-0.71c0.03,-0.03 0.05,-0.06 0.07,-0.08C19.38,18.75 19.57,18.54 19.74,18.33zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.43,-1.43c0.69,-0.98 1.1,-2.17 1.1,-3.46c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6s2.69,6 6,6c1.3,0 2.51,-0.42 3.49,-1.13l1.42,1.42C15.54,19.37 13.85,20 12,20zM13.92,12.51c0.17,-0.66 0.02,-1.38 -0.49,-1.9l-0.02,-0.02c-0.77,-0.77 -2,-0.78 -2.78,-0.04c-0.01,0.01 -0.03,0.02 -0.05,0.04c-0.78,0.78 -0.78,2.05 0,2.83l0.02,0.02c0.52,0.51 1.25,0.67 1.91,0.49l1.51,1.51c-0.6,0.36 -1.29,0.58 -2.04,0.58c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4c0,0.73 -0.21,1.41 -0.56,2L13.92,12.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/radio.xml b/compose/material/material/icons/generator/raw-icons/rounded/radio.xml
deleted file mode 100644
index fa61e45..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/radio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.24,6.15C2.51,6.43 2,7.17 2,8v12c0,1.1 0.9,2 2,2h16c1.11,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2L8.3,6l7.43,-3c0.46,-0.19 0.68,-0.71 0.49,-1.17 -0.19,-0.46 -0.71,-0.68 -1.17,-0.49L3.24,6.15zM7,20c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM20,12h-2v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L4,12L4,9c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/radio_button_checked.xml b/compose/material/material/icons/generator/raw-icons/rounded/radio_button_checked.xml
deleted file mode 100644
index 6d654e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/radio_button_checked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/radio_button_unchecked.xml b/compose/material/material/icons/generator/raw-icons/rounded/radio_button_unchecked.xml
deleted file mode 100644
index bcb6fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/radio_button_unchecked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/railway_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/railway_alert.xml
deleted file mode 100644
index 4e8b15c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/railway_alert.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29c-0.77,-2.6 0.21,-4.61 0.37,-4.97C2.97,2.67 2,5.02 2,7v9.5C2,18.43 3.57,20 5.5,20l-1.21,0.81C4.11,20.93 4,21.13 4,21.35v0C4,21.71 4.29,22 4.65,22h10.7c0.36,0 0.65,-0.29 0.65,-0.65v0c0,-0.22 -0.11,-0.42 -0.29,-0.54L14.5,20c1.93,0 3.5,-1.57 3.5,-3.5V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM10,17c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C11.5,16.33 10.83,17 10,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18,9c-0.28,0 -0.5,-0.22 -0.5,-0.5C17.5,8.22 17.72,8 18,8s0.5,0.22 0.5,0.5C18.5,8.78 18.28,9 18,9zM18.5,6.5C18.5,6.78 18.28,7 18,7s-0.5,-0.22 -0.5,-0.5v-3C17.5,3.22 17.72,3 18,3s0.5,0.22 0.5,0.5V6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ramen_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/ramen_dining.xml
deleted file mode 100644
index 377fcbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ramen_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2.84L22,2.84c0,-0.45 -0.39,-0.79 -0.83,-0.75L4.89,3.9C4.38,3.95 4,4.38 4,4.89V12H3.08c-0.6,0 -1.08,0.53 -1,1.13C2.52,16.33 4.83,19 8,20.25V21c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-0.75c3.17,-1.25 5.48,-3.92 5.92,-7.12c0.08,-0.6 -0.4,-1.13 -1,-1.13H10.5V8h10.75C21.66,8 22,7.66 22,7.25v0c0,-0.41 -0.34,-0.75 -0.75,-0.75H10.5V4.78l10.83,-1.19C21.71,3.54 22,3.22 22,2.84zM6.5,5.22V6.5h-1V5.34L6.5,5.22zM5.5,8h1v4h-1V8zM9,12H8V8h1V12zM9,6.5H8V5.06l1,-0.11V6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ramp_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/ramp_left.xml
deleted file mode 100644
index 83700e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ramp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c-0.55,0 -1,-0.45 -1,-1V6.83l-0.88,0.88C9.73,8.1 9.1,8.1 8.71,7.71c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.59,-2.59c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.39,0.39 0.39,1.02 0,1.41c-0.39,0.39 -1.02,0.39 -1.41,0L13,6.83v0V9c0,3.62 2.89,6.22 4.97,7.62c0.52,0.35 0.59,1.09 0.14,1.53c-0.33,0.33 -0.87,0.4 -1.26,0.13c-1.59,-1.06 -2.89,-2.28 -3.85,-3.59l0,5.3C13,20.55 12.55,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ramp_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/ramp_right.xml
deleted file mode 100644
index f9b4e3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ramp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c0.55,0 1,-0.45 1,-1V6.83l0.88,0.88c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.71,6.29c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L11,6.83v0V9c0,3.62 -2.89,6.22 -4.97,7.62c-0.52,0.35 -0.59,1.09 -0.14,1.53c0.33,0.33 0.87,0.4 1.26,0.13c1.59,-1.06 2.89,-2.28 3.85,-3.59l0,5.3C11,20.55 11.45,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rate_review.xml b/compose/material/material/icons/generator/raw-icons/rounded/rate_review.xml
deleted file mode 100644
index 9da9b39..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rate_review.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM6,14v-2.47l6.88,-6.88c0.2,-0.2 0.51,-0.2 0.71,0l1.77,1.77c0.2,0.2 0.2,0.51 0,0.71L8.47,14L6,14zM17,14h-6.5l2,-2L17,12c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/raw_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/raw_off.xml
deleted file mode 100644
index 7ac3e38..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/raw_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.55,9c-0.33,0 -0.63,0.23 -0.71,0.55L19.24,12l-0.56,-2.26C18.58,9.3 18.19,9 17.74,9S16.9,9.3 16.8,9.74L16.24,12l-0.6,-2.45C15.56,9.23 15.27,9 14.93,9c-0.47,0 -0.82,0.44 -0.71,0.9l0.5,1.99l2.42,2.42c0,-0.01 0.01,-0.02 0.01,-0.03l0.58,-2.32l0.58,2.32C18.43,14.7 18.81,15 19.24,15s0.81,-0.3 0.92,-0.72l1.09,-4.38C21.37,9.44 21.02,9 20.55,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L6.17,9H4c-0.55,0 -1,0.45 -1,1v4.31C3,14.69 3.31,15 3.69,15h0.11c0.38,0 0.69,-0.31 0.69,-0.69V13h1.1l0.72,1.59C6.43,14.84 6.68,15 6.95,15c0.5,0 0.83,-0.51 0.64,-0.97L7.1,12.9C7.6,12.6 8,12.1 8,11.5v-0.67l1.43,1.43L8.98,14.1C8.86,14.56 9.21,15 9.68,15h0c0.33,0 0.62,-0.23 0.7,-0.55l0.24,-0.95h0.04l8.4,8.4c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51zM6.5,11.5h-2v-1h2V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/raw_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/raw_on.xml
deleted file mode 100644
index 2f6f701..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/raw_on.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H4c-0.55,0 -1,0.45 -1,1v4.31C3,14.69 3.31,15 3.69,15h0.11c0.38,0 0.69,-0.31 0.69,-0.69V13h1.1l0.72,1.59C6.43,14.84 6.68,15 6.95,15h0c0.5,0 0.83,-0.51 0.64,-0.97L7.1,12.9C7.6,12.6 8,12.1 8,11.5v-1C8,9.68 7.32,9 6.5,9zM6.5,11.5h-2v-1h2V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9c-0.73,0 -1.37,0.5 -1.55,1.21L8.98,14.1C8.86,14.56 9.21,15 9.68,15h0c0.33,0 0.62,-0.23 0.7,-0.55l0.24,-0.95h1.75l0.23,0.95c0.08,0.32 0.37,0.55 0.71,0.55h0c0.47,0 0.82,-0.44 0.71,-0.9l-0.97,-3.88C12.87,9.5 12.23,9 11.5,9L11.5,9zM11,12l0.25,-1h0.5L12,12H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.84,9.55L19.24,12l-0.56,-2.26C18.58,9.3 18.19,9 17.74,9l0,0c-0.45,0 -0.84,0.3 -0.94,0.74L16.24,12l-0.6,-2.45C15.56,9.23 15.27,9 14.93,9h0c-0.47,0 -0.82,0.44 -0.71,0.9l1.09,4.38C15.43,14.7 15.81,15 16.24,15l0,0c0.43,0 0.81,-0.3 0.92,-0.72l0.58,-2.32l0.58,2.32C18.43,14.7 18.81,15 19.24,15l0,0c0.43,0 0.81,-0.3 0.92,-0.72l1.09,-4.38C21.37,9.44 21.02,9 20.55,9h0C20.21,9 19.92,9.23 19.84,9.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/read_more.xml b/compose/material/material/icons/generator/raw-icons/rounded/read_more.xml
deleted file mode 100644
index ccacef4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/read_more.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h7c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-7c-0.55,0 -1,0.45 -1,1C13,8.55 13.45,9 14,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15h-7c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h7c0.55,0 1,-0.45 1,-1C22,15.45 21.55,15 21,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1C22,11.45 21.55,11 21,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.85,7.85C8.54,7.54 8,7.76 8,8.21V11H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h5v2.79c0,0.45 0.54,0.67 0.85,0.35l3.79,-3.79c0.2,-0.2 0.2,-0.51 0,-0.71L8.85,7.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/real_estate_agent.xml b/compose/material/material/icons/generator/raw-icons/rounded/real_estate_agent.xml
deleted file mode 100644
index e136f7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/real_estate_agent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,22c1.1,0 2,-0.9 2,-2v-7c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v7C1,21.1 1.9,22 3,22zM11.37,16.43l1.47,0.51c0.11,0.04 0.22,0.06 0.33,0.06h6.83c1.11,0 2,0.89 2.01,2l0,0l-7.39,2.77c-0.4,0.15 -0.84,0.17 -1.25,0.05L7,20.02V11H8.6c0.24,0 0.48,0.04 0.7,0.13l6.93,2.59c0.46,0.17 0.77,0.61 0.77,1.11v0c0,0.65 -0.53,1.18 -1.18,1.18h-2.63c-0.12,0 -0.24,-0.02 -0.36,-0.07l-1.12,-0.43c-0.26,-0.1 -0.55,0.04 -0.64,0.3C10.98,16.06 11.11,16.34 11.37,16.43zM20.16,5.9l-5,-3.57c-0.7,-0.5 -1.63,-0.5 -2.32,0l-5,3.57C7.31,6.28 7,6.88 7,7.53V9h1.61c0.25,0 0.51,0.05 0.74,0.14l7.79,3.11C18.26,12.71 19,13.79 19,15h2V7.53C21,6.88 20.69,6.28 20.16,5.9zM13,10c-0.28,0 -0.5,-0.22 -0.5,-0.5C12.5,9.22 12.72,9 13,9s0.5,0.22 0.5,0.5C13.5,9.78 13.28,10 13,10zM13,8c-0.28,0 -0.5,-0.22 -0.5,-0.5C12.5,7.22 12.72,7 13,7s0.5,0.22 0.5,0.5C13.5,7.78 13.28,8 13,8zM15,10c-0.28,0 -0.5,-0.22 -0.5,-0.5C14.5,9.22 14.72,9 15,9s0.5,0.22 0.5,0.5C15.5,9.78 15.28,10 15,10zM15,8c-0.28,0 -0.5,-0.22 -0.5,-0.5C14.5,7.22 14.72,7 15,7s0.5,0.22 0.5,0.5C15.5,7.78 15.28,8 15,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/receipt.xml b/compose/material/material/icons/generator/raw-icons/rounded/receipt.xml
deleted file mode 100644
index 1d34513..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/receipt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2.21c-0.13,0 -0.26,0.05 -0.35,0.15l-0.79,0.79c-0.2,0.2 -0.51,0.2 -0.71,0l-0.79,-0.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.79,0.79c-0.2,0.2 -0.51,0.2 -0.71,0l-0.79,-0.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.79,0.79c-0.2,0.2 -0.51,0.2 -0.71,0l-0.79,-0.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.79,0.79c-0.2,0.2 -0.51,0.2 -0.71,0l-0.8,-0.8c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.79,0.8c-0.2,0.2 -0.51,0.2 -0.71,0l-0.79,-0.8c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.79,0.8c-0.2,0.2 -0.51,0.2 -0.71,0l-0.79,-0.8c-0.09,-0.09 -0.22,-0.14 -0.35,-0.14L3,21.8c0.13,0 0.26,-0.05 0.35,-0.15l0.79,-0.79c0.2,-0.2 0.51,-0.2 0.71,0l0.79,0.79c0.2,0.2 0.51,0.2 0.71,0l0.79,-0.79c0.2,-0.2 0.51,-0.2 0.71,0l0.79,0.79c0.2,0.2 0.51,0.2 0.71,0l0.79,-0.79c0.2,-0.2 0.51,-0.2 0.71,0l0.79,0.79c0.2,0.2 0.51,0.2 0.71,0l0.79,-0.79c0.2,-0.2 0.51,-0.2 0.71,0l0.79,0.79c0.2,0.2 0.51,0.2 0.71,0l0.79,-0.79c0.2,-0.2 0.51,-0.2 0.71,0l0.79,0.79c0.2,0.2 0.51,0.2 0.71,0l0.79,-0.79c0.2,-0.2 0.51,-0.2 0.71,0l0.79,0.79c0.1,0.1 0.23,0.15 0.35,0.15L20.99,2.21zM17,17L7,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,13L7,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,9L7,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h10c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/receipt_long.xml b/compose/material/material/icons/generator/raw-icons/rounded/receipt_long.xml
deleted file mode 100644
index 47867c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/receipt_long.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h-4C9.45,9 9,8.55 9,8v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C15,8.55 14.55,9 14,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12h-4c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C15,11.55 14.55,12 14,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H4c-0.55,0 -1,0.45 -1,1v2c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3V2L19.5,3.5zM15,20H6c-0.55,0 -1,-0.45 -1,-1v-1h3h4h3V20zM19,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2c0,-0.55 -0.45,-1 -1,-1h-2h-2H8V5h11V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/recent_actors.xml b/compose/material/material/icons/generator/raw-icons/rounded/recent_actors.xml
deleted file mode 100644
index f678902..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/recent_actors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6v12c0,0.55 0.45,1 1,1s1,-0.45 1,-1L23,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM18,19c0.55,0 1,-0.45 1,-1L19,6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v12c0,0.55 0.45,1 1,1zM14,5L2,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L15,6c0,-0.55 -0.45,-1 -1,-1zM8,7.75c1.24,0 2.25,1.01 2.25,2.25S9.24,12.25 8,12.25 5.75,11.24 5.75,10 6.76,7.75 8,7.75zM12.5,17h-9v-0.75c0,-1.5 3,-2.25 4.5,-2.25s4.5,0.75 4.5,2.25L12.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/recommend.xml b/compose/material/material/icons/generator/raw-icons/rounded/recommend.xml
deleted file mode 100644
index 2dcf9ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/recommend.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM18,11.8c0.02,0.17 -0.02,0.35 -0.1,0.5l-2.1,4.9c-0.22,0.51 -0.74,0.83 -1.3,0.8H9c-1.1,0 -2,-0.9 -2,-2v-5c-0.02,-0.38 0.13,-0.74 0.4,-1L12,5l0.69,0.69c0.18,0.19 0.29,0.44 0.3,0.7v0.2L12.41,10H17c0.55,0 1,0.45 1,1V11.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/record_voice_over.xml b/compose/material/material/icons/generator/raw-icons/rounded/record_voice_over.xml
deleted file mode 100644
index 859ed75..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/record_voice_over.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1c0,-2.66 -5.33,-4 -8,-4zM15.47,7.77c0.32,0.79 0.32,1.67 0,2.46 -0.19,0.47 -0.11,1 0.25,1.36l0.03,0.03c0.58,0.58 1.57,0.46 1.95,-0.27 0.76,-1.45 0.76,-3.15 -0.02,-4.66 -0.38,-0.74 -1.38,-0.88 -1.97,-0.29l-0.01,0.01c-0.34,0.35 -0.42,0.89 -0.23,1.36zM19.18,2.89c-0.4,0.4 -0.46,1.02 -0.13,1.48 1.97,2.74 1.96,6.41 -0.03,9.25 -0.32,0.45 -0.25,1.07 0.14,1.46l0.03,0.03c0.49,0.49 1.32,0.45 1.74,-0.1 2.75,-3.54 2.76,-8.37 0,-12.02 -0.42,-0.55 -1.26,-0.59 -1.75,-0.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rectangle.xml b/compose/material/material/icons/generator/raw-icons/rounded/rectangle.xml
deleted file mode 100644
index 525e983..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rectangle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/recycling.xml b/compose/material/material/icons/generator/raw-icons/rounded/recycling.xml
deleted file mode 100644
index 2de3949..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/recycling.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.2,7.41C5.97,7.27 5.89,6.96 6.03,6.73L7.2,4.78l1.03,-1.71c0.39,-0.65 1.33,-0.65 1.72,0l1.48,2.46l-1.23,2.06l-0.72,1.2C9.32,9.02 9.01,9.1 8.77,8.96L6.2,7.41zM21.72,12.97l-1.34,-2.24c-0.14,-0.23 -0.44,-0.31 -0.68,-0.18l-2.6,1.5c-0.24,0.14 -0.32,0.45 -0.18,0.69L18.87,16l1.09,0c0.61,0 1.2,-0.26 1.59,-0.73C21.85,14.9 22,14.45 22,14C22,13.64 21.9,13.29 21.72,12.97zM16,21h1.5c0.76,0 1.45,-0.43 1.79,-1.11L20.74,17H16v-0.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.31,0.31 0.85,0.09 0.85,-0.35V21zM9.5,17H5.7l-0.84,1.41c-0.3,0.5 -0.32,1.12 -0.06,1.65l0,0C5.08,20.63 5.67,21 6.32,21H9.5c0.28,0 0.5,-0.22 0.5,-0.5v-3C10,17.22 9.78,17 9.5,17zM6.12,14.35l0.7,0.42c0.38,0.23 0.85,-0.12 0.74,-0.55L6.6,10.38C6.54,10.12 6.27,9.95 6,10.02l-3.83,0.96c-0.43,0.11 -0.52,0.68 -0.14,0.91l0.66,0.4l-0.41,0.69c-0.35,0.59 -0.38,1.31 -0.07,1.92l1.63,3.26L6.12,14.35zM17.02,5.14l-1.3,-2.17C15.35,2.37 14.7,2 14,2h-3.53l3.12,5.2L12.9,7.61c-0.38,0.23 -0.3,0.81 0.14,0.91l3.83,0.96c0.27,0.07 0.54,-0.1 0.61,-0.36l0.96,-3.83c0.11,-0.43 -0.36,-0.78 -0.74,-0.55L17.02,5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/redeem.xml b/compose/material/material/icons/generator/raw-icons/rounded/redeem.xml
deleted file mode 100644
index 309157d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/redeem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,19L5,19c-0.55,0 -1,-0.45 -1,-1v-1h16v1c0,0.55 -0.45,1 -1,1zM20,14L4,14L4,9c0,-0.55 0.45,-1 1,-1h4.08L7.6,10.02c-0.33,0.45 -0.23,1.08 0.22,1.4 0.44,0.32 1.07,0.22 1.39,-0.22L12,7.4l2.79,3.8c0.32,0.44 0.95,0.54 1.39,0.22 0.45,-0.32 0.55,-0.95 0.22,-1.4L14.92,8L19,8c0.55,0 1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/redo.xml b/compose/material/material/icons/generator/raw-icons/rounded/redo.xml
deleted file mode 100644
index f2eb4e6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/redo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.4,10.6C16.55,8.99 14.15,8 11.5,8c-4.16,0 -7.74,2.42 -9.44,5.93 -0.32,0.67 0.04,1.47 0.75,1.71 0.59,0.2 1.23,-0.08 1.5,-0.64 1.3,-2.66 4.03,-4.5 7.19,-4.5 1.95,0 3.73,0.72 5.12,1.88l-1.91,1.91c-0.63,0.63 -0.19,1.71 0.7,1.71H21c0.55,0 1,-0.45 1,-1V9.41c0,-0.89 -1.08,-1.34 -1.71,-0.71l-1.89,1.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/reduce_capacity.xml b/compose/material/material/icons/generator/raw-icons/rounded/reduce_capacity.xml
deleted file mode 100644
index 02d1f61..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/reduce_capacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S16,5.1 16,4zM20.78,7.58C19.93,7.21 18.99,7 18,7c-0.67,0 -1.31,0.1 -1.92,0.28C16.66,7.83 17,8.6 17,9.43V10h5V9.43C22,8.62 21.52,7.9 20.78,7.58zM6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM7.92,7.28C7.31,7.1 6.67,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h5V9.43C7,8.6 7.34,7.83 7.92,7.28zM10,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,5.1 10,4zM16,10H8V9.43C8,8.62 8.48,7.9 9.22,7.58C10.07,7.21 11.01,7 12,7c0.99,0 1.93,0.21 2.78,0.58C15.52,7.9 16,8.62 16,9.43V10zM15,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S15,17.1 15,16zM21,22h-8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C15.07,19.21 16.01,19 17,19c0.99,0 1.93,0.21 2.78,0.58C20.52,19.9 21,20.62 21,21.43V22zM5,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S5,17.1 5,16zM11,22H3v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C5.07,19.21 6.01,19 7,19c0.99,0 1.93,0.21 2.78,0.58C10.52,19.9 11,20.62 11,21.43V22zM13.79,13h-1.04v-1.25c0,-0.41 -0.34,-0.75 -0.75,-0.75s-0.75,0.34 -0.75,0.75V13h-1.04c-0.45,0 -0.67,0.54 -0.35,0.85l1.79,1.79c0.2,0.2 0.51,0.2 0.71,0l1.79,-1.79C14.46,13.54 14.24,13 13.79,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/refresh.xml b/compose/material/material/icons/generator/raw-icons/rounded/refresh.xml
deleted file mode 100644
index 5cdbeb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/refresh.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,6.35c-1.63,-1.63 -3.94,-2.57 -6.48,-2.31 -3.67,0.37 -6.69,3.35 -7.1,7.02C3.52,15.91 7.27,20 12,20c3.19,0 5.93,-1.87 7.21,-4.56 0.32,-0.67 -0.16,-1.44 -0.9,-1.44 -0.37,0 -0.72,0.2 -0.88,0.53 -1.13,2.43 -3.84,3.97 -6.8,3.31 -2.22,-0.49 -4.01,-2.3 -4.48,-4.52C5.31,9.44 8.26,6 12,6c1.66,0 3.14,0.69 4.22,1.78l-1.51,1.51c-0.63,0.63 -0.19,1.71 0.7,1.71H19c0.55,0 1,-0.45 1,-1V6.41c0,-0.89 -1.08,-1.34 -1.71,-0.71l-0.64,0.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remember_me.xml b/compose/material/material/icons/generator/raw-icons/rounded/remember_me.xml
deleted file mode 100644
index 81cd2f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remember_me.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,15.21C15.5,14.44 13.8,14 12,14s-3.5,0.44 -5,1.21V6h10V15.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove.xml
deleted file mode 100644
index a4437b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13H6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h12c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_circle.xml
deleted file mode 100644
index 68d8599..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM16,13L8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_circle_outline.xml
deleted file mode 100644
index dbd6450..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,11c-0.55,0 -1,0.45 -1,1zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_done.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_done.xml
deleted file mode 100644
index 79ad879..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.14,2.69L4.14,2.69c-0.39,0.39 -0.39,1.02 0,1.41l9.67,9.67l-1.41,1.41l-3.54,-3.53c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l4.24,4.24c0.39,0.39 1.02,0.39 1.41,0l2.12,-2.12l5.89,5.89c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L5.55,2.69C5.16,2.3 4.53,2.3 4.14,2.69zM18.05,12.36l4.24,-4.24c0.39,-0.39 0.39,-1.03 -0.01,-1.42l0,0c-0.39,-0.38 -1.02,-0.38 -1.41,0.01l-4.24,4.24L18.05,12.36zM16.64,6.7L16.64,6.7c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.42,1.42l1.41,1.41l1.42,-1.42C17.03,7.72 17.03,7.09 16.64,6.7zM1.79,13.06l4.95,4.95l1.41,-1.41L3.2,11.65c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0C1.4,12.04 1.4,12.67 1.79,13.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_from_queue.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_from_queue.xml
deleted file mode 100644
index 7ce659d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_from_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM20,17L4,17c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1zM16,11c0,0.55 -0.45,1 -1,1L9,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_moderator.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_moderator.xml
deleted file mode 100644
index c95c3a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_moderator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11.09v-4.7c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25c-0.45,-0.17 -0.95,-0.17 -1.4,0L6.78,3.96l12.09,12.09C19.59,14.52 20,12.83 20,11.09zM20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L4,6.83v4.26c0,4.83 3.13,9.37 7.43,10.75c0.37,0.12 0.77,0.12 1.14,0c1.49,-0.48 2.84,-1.35 3.97,-2.47l2.53,2.53c0.39,0.39 1.02,0.39 1.41,0C20.88,21.51 20.88,20.88 20.49,20.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_red_eye.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_red_eye.xml
deleted file mode 100644
index a3e222a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_red_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_road.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_road.xml
deleted file mode 100644
index 013948d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L19,4c-0.55,0 -1,0.45 -1,1v7c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V5C20,4.45 19.55,4 19,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20L5,20c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h0C4.45,4 4,4.45 4,5v14C4,19.55 4.45,20 5,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8L12,8c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C11,7.55 11.45,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14L12,14c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C11,13.55 11.45,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20L12,20c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2C11,19.55 11.45,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.79,15.71L21.79,15.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L19,17.09l-1.38,-1.38c-0.39,-0.39 -1.02,-0.39 -1.41,0v0c-0.39,0.39 -0.39,1.02 0,1.41l1.38,1.38l-1.38,1.38c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0L19,19.91l1.38,1.38c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-1.38,-1.38l1.38,-1.38C22.18,16.73 22.18,16.1 21.79,15.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/remove_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/rounded/remove_shopping_cart.xml
deleted file mode 100644
index bd92646..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/remove_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.71,1.83c-0.39,0.39 -0.39,1.02 0,1.41l3.68,3.68 2.21,4.66 -1.35,2.45c-0.19,0.33 -0.28,0.73 -0.24,1.15 0.1,1.06 1.06,1.82 2.12,1.82h7.33l1.38,1.38c-0.5,0.36 -0.83,0.95 -0.83,1.62 0,1.1 0.89,2 1.99,2 0.67,0 1.26,-0.33 1.62,-0.84l2.13,2.13c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L2.12,1.83c-0.39,-0.39 -1.02,-0.39 -1.41,0zM7,15l1.1,-2h2.36l2,2L7,15zM16.05,12.94c0.54,-0.14 0.99,-0.49 1.25,-0.97l3.58,-6.49C21.25,4.82 20.76,4 20,4L7.12,4l8.93,8.94zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/reorder.xml b/compose/material/material/icons/generator/raw-icons/rounded/reorder.xml
deleted file mode 100644
index fe18307..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/reorder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,19h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,11h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/repartition.xml b/compose/material/material/icons/generator/raw-icons/rounded/repartition.xml
deleted file mode 100644
index bfcb42f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/repartition.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,21h15c0.83,0 1.5,-0.67 1.5,-1.5v-3c0,-0.83 -0.67,-1.5 -1.5,-1.5h-15C3.67,15 3,15.67 3,16.5v3C3,20.33 3.67,21 4.5,21zM10.33,19v-2h3.33v2H10.33zM19,19h-3.33v-2H19V19zM5,17h3.33v2H5V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.71,9.29L6.71,9.29c0.39,-0.39 0.39,-1.02 0,-1.42L5.83,7l11.06,0c1,0 1.92,0.68 2.08,1.66C19.18,9.91 18.21,11 17,11H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1l12.82,0c2.09,0 3.96,-1.52 4.16,-3.6C21.21,7.02 19.34,5 17,5H5.83l0.88,-0.88c0.39,-0.39 0.39,-1.02 0,-1.42l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.71,5.29c-0.39,0.39 -0.39,1.02 0,1.41l2.59,2.59C5.68,9.68 6.32,9.68 6.71,9.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/repeat.xml b/compose/material/material/icons/generator/raw-icons/rounded/repeat.xml
deleted file mode 100644
index a63feb7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L17,5L6,5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1L7,7zM17,17L7,17v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.31,0.31 0.85,0.09 0.85,-0.36L7,19h11c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/repeat_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/repeat_on.xml
deleted file mode 100644
index 1c23e30..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/repeat_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,18c0,0.55 -0.45,1 -1,1H7v1.79c0,0.45 -0.54,0.67 -0.85,0.36l-2.79,-2.79c-0.2,-0.2 -0.2,-0.51 0,-0.71l2.79,-2.79C6.46,14.54 7,14.76 7,15.21V17h10v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V18zM20.64,6.35l-2.79,2.79C17.54,9.46 17,9.24 17,8.79V7H7v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h11V3.21c0,-0.45 0.54,-0.67 0.85,-0.36l2.79,2.79C20.84,5.84 20.84,6.15 20.64,6.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/repeat_one.xml b/compose/material/material/icons/generator/raw-icons/rounded/repeat_one.xml
deleted file mode 100644
index c62ab9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/repeat_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L17,5L6,5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1L7,7zM17,17L7,17v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.31,0.31 0.85,0.09 0.85,-0.36L7,19h11c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3zM13,14.25L13,9.81c0,-0.45 -0.36,-0.81 -0.81,-0.81 -0.13,0 -0.25,0.03 -0.36,0.09l-1.49,0.74c-0.21,0.1 -0.34,0.32 -0.34,0.55 0,0.34 0.28,0.62 0.62,0.62h0.88v3.25c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/repeat_one_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/repeat_one_on.xml
deleted file mode 100644
index 660d185..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/repeat_one_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,18c0,0.55 -0.45,1 -1,1H7v1.79c0,0.45 -0.54,0.67 -0.85,0.36l-2.79,-2.79c-0.2,-0.2 -0.2,-0.51 0,-0.71l2.79,-2.79C6.46,14.54 7,14.76 7,15.21V17h10v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V18zM10.75,10.5c-0.41,0 -0.75,-0.34 -0.75,-0.75S10.34,9 10.75,9h1.5C12.66,9 13,9.34 13,9.75v4.5c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75V10.5H10.75zM20.64,6.35l-2.79,2.79C17.54,9.46 17,9.24 17,8.79V7H7v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h11V3.21c0,-0.45 0.54,-0.67 0.85,-0.36l2.79,2.79C20.84,5.84 20.84,6.15 20.64,6.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/replay.xml b/compose/material/material/icons/generator/raw-icons/rounded/replay.xml
deleted file mode 100644
index af52268..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/replay.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V2.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-3.8,3.79c-0.2,0.2 -0.2,0.51 0,0.71l3.79,3.79c0.32,0.31 0.86,0.09 0.86,-0.36V7c3.73,0 6.68,3.42 5.86,7.29 -0.47,2.27 -2.31,4.1 -4.57,4.57 -3.57,0.75 -6.75,-1.7 -7.23,-5.01 -0.07,-0.48 -0.49,-0.85 -0.98,-0.85 -0.6,0 -1.08,0.53 -1,1.13 0.62,4.39 4.8,7.64 9.53,6.72 3.12,-0.61 5.63,-3.12 6.24,-6.24C20.84,9.48 16.94,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/replay_10.xml b/compose/material/material/icons/generator/raw-icons/rounded/replay_10.xml
deleted file mode 100644
index c4e3831..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/replay_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,5L11.99,2.21c0,-0.45 -0.54,-0.67 -0.85,-0.35L7.35,5.65c-0.2,0.2 -0.2,0.51 0,0.71l3.79,3.79c0.31,0.31 0.85,0.09 0.85,-0.35L11.99,7c3.73,0 6.68,3.42 5.86,7.29 -0.47,2.27 -2.31,4.1 -4.57,4.57 -3.57,0.75 -6.75,-1.7 -7.23,-5.01 -0.06,-0.48 -0.48,-0.85 -0.98,-0.85 -0.6,0 -1.08,0.53 -1,1.13 0.62,4.39 4.8,7.64 9.53,6.72 3.12,-0.61 5.63,-3.12 6.24,-6.24 0.99,-5.13 -2.9,-9.61 -7.85,-9.61zM10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77,-0.63h0.09L10.89,16zM15.17,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.32,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/replay_30.xml b/compose/material/material/icons/generator/raw-icons/rounded/replay_30.xml
deleted file mode 100644
index f25cfaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/replay_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,2.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-3.8,3.79c-0.2,0.2 -0.2,0.51 0,0.71l3.79,3.79c0.32,0.31 0.86,0.09 0.86,-0.36L12,7c3.73,0 6.68,3.42 5.86,7.29 -0.47,2.27 -2.31,4.1 -4.57,4.57 -3.57,0.75 -6.75,-1.7 -7.23,-5.01 -0.07,-0.48 -0.49,-0.85 -0.98,-0.85 -0.6,0 -1.08,0.53 -1,1.13 0.62,4.39 4.8,7.64 9.53,6.72 3.12,-0.61 5.63,-3.12 6.24,-6.24C20.84,9.48 16.94,5 12,5zM9.56,13.49h0.45c0.21,0 0.37,-0.05 0.48,-0.16s0.16,-0.25 0.16,-0.43c0,-0.08 -0.01,-0.15 -0.04,-0.22s-0.06,-0.12 -0.11,-0.17 -0.11,-0.09 -0.18,-0.11 -0.16,-0.04 -0.25,-0.04c-0.08,0 -0.15,0.01 -0.22,0.03s-0.13,0.05 -0.18,0.1 -0.09,0.09 -0.12,0.15 -0.05,0.13 -0.05,0.2h-0.85c0,-0.18 0.04,-0.34 0.11,-0.48s0.17,-0.27 0.3,-0.37 0.27,-0.18 0.44,-0.23 0.35,-0.08 0.54,-0.08c0.21,0 0.41,0.03 0.59,0.08s0.33,0.13 0.46,0.23 0.23,0.23 0.3,0.38 0.11,0.33 0.11,0.53c0,0.09 -0.01,0.18 -0.04,0.27s-0.07,0.17 -0.13,0.25 -0.12,0.15 -0.2,0.22 -0.17,0.12 -0.28,0.17c0.24,0.09 0.42,0.21 0.54,0.39s0.18,0.38 0.18,0.61c0,0.2 -0.04,0.38 -0.12,0.53s-0.18,0.29 -0.32,0.39 -0.29,0.19 -0.48,0.24 -0.38,0.08 -0.6,0.08c-0.18,0 -0.36,-0.02 -0.53,-0.07s-0.33,-0.12 -0.46,-0.23 -0.25,-0.23 -0.33,-0.38 -0.12,-0.34 -0.12,-0.55h0.85c0,0.08 0.02,0.15 0.05,0.22s0.07,0.12 0.13,0.17 0.12,0.09 0.2,0.11 0.16,0.04 0.25,0.04c0.1,0 0.19,-0.01 0.27,-0.04s0.15,-0.07 0.2,-0.12 0.1,-0.11 0.13,-0.18 0.04,-0.15 0.04,-0.24c0,-0.11 -0.02,-0.21 -0.05,-0.29s-0.08,-0.15 -0.14,-0.2 -0.13,-0.09 -0.22,-0.11 -0.18,-0.04 -0.29,-0.04h-0.47v-0.65zM15.3,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.45,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32c0.03,-0.13 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/replay_5.xml b/compose/material/material/icons/generator/raw-icons/rounded/replay_5.xml
deleted file mode 100644
index 6c5f16f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/replay_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,2.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-3.8,3.79c-0.2,0.2 -0.2,0.51 0,0.71l3.79,3.79c0.32,0.31 0.86,0.09 0.86,-0.36L12,7c3.73,0 6.68,3.42 5.86,7.29 -0.47,2.26 -2.14,3.99 -4.39,4.53 -3.64,0.88 -6.93,-1.6 -7.42,-4.96 -0.06,-0.49 -0.48,-0.86 -0.97,-0.86 -0.6,0 -1.08,0.53 -1,1.13 0.63,4.47 4.94,7.75 9.77,6.67 3.09,-0.69 5.39,-3.08 5.99,-6.19C20.84,9.48 16.94,5 12,5zM10.69,13.9l0.25,-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03,-0.02 0.07,-0.03 0.11,-0.05s0.09,-0.04 0.15,-0.05 0.12,-0.03 0.18,-0.04 0.13,-0.02 0.2,-0.02c0.21,0 0.39,0.03 0.55,0.1s0.3,0.16 0.41,0.28 0.2,0.27 0.25,0.45 0.09,0.38 0.09,0.6c0,0.19 -0.03,0.37 -0.09,0.54s-0.15,0.32 -0.27,0.45 -0.27,0.24 -0.45,0.31 -0.39,0.12 -0.64,0.12c-0.18,0 -0.36,-0.03 -0.53,-0.08s-0.32,-0.14 -0.46,-0.24 -0.24,-0.24 -0.32,-0.39 -0.13,-0.33 -0.13,-0.53h0.84c0.02,0.18 0.08,0.32 0.19,0.41s0.25,0.15 0.42,0.15c0.11,0 0.2,-0.02 0.27,-0.06s0.14,-0.1 0.18,-0.17 0.08,-0.15 0.11,-0.25 0.03,-0.2 0.03,-0.31 -0.01,-0.21 -0.04,-0.31 -0.07,-0.17 -0.13,-0.24 -0.13,-0.12 -0.21,-0.15 -0.19,-0.05 -0.3,-0.05c-0.08,0 -0.15,0.01 -0.2,0.02s-0.11,0.03 -0.15,0.05 -0.08,0.05 -0.12,0.07 -0.07,0.06 -0.1,0.09l-0.67,-0.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/replay_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/rounded/replay_circle_filled.xml
deleted file mode 100644
index 44cba3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/replay_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM18,12.74c-0.12,3.09 -2.67,5.64 -5.76,5.76c-3.01,0.12 -5.56,-1.99 -6.12,-4.82C5.99,13.07 6.48,12.5 7.1,12.5h0c0.47,0 0.88,0.33 0.98,0.8c0.42,2.07 2.44,3.57 4.72,3.12c1.56,-0.3 2.82,-1.56 3.12,-3.12c0.5,-2.56 -1.45,-4.8 -3.92,-4.8v1.79c0,0.45 -0.54,0.67 -0.85,0.35L8.35,7.85c-0.2,-0.2 -0.2,-0.51 0,-0.71l2.79,-2.79C11.46,4.04 12,4.26 12,4.71V6.5C15.39,6.5 18.13,9.32 18,12.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/reply.xml b/compose/material/material/icons/generator/raw-icons/rounded/reply.xml
deleted file mode 100644
index af74973..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/reply.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9V7.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L3.7,11.29c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.63,0.63 1.71,0.19 1.71,-0.7V14.9c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/reply_all.xml b/compose/material/material/icons/generator/raw-icons/rounded/reply_all.xml
deleted file mode 100644
index 748aec9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/reply_all.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7.56c0,-0.94 -1.14,-1.42 -1.81,-0.75L0.71,11.29c-0.39,0.39 -0.39,1.02 0,1.41l4.48,4.48c0.67,0.68 1.81,0.2 1.81,-0.74 0,-0.28 -0.11,-0.55 -0.31,-0.75L3,12l3.69,-3.69c0.2,-0.2 0.31,-0.47 0.31,-0.75zM13,9V7.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L6.7,11.29c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.63,0.63 1.71,0.18 1.71,-0.71V14.9c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/report.xml b/compose/material/material/icons/generator/raw-icons/rounded/report.xml
deleted file mode 100644
index 6313627..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/report.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.32,3L8.68,3c-0.26,0 -0.52,0.11 -0.7,0.29L3.29,7.98c-0.18,0.18 -0.29,0.44 -0.29,0.7v6.63c0,0.27 0.11,0.52 0.29,0.71l4.68,4.68c0.19,0.19 0.45,0.3 0.71,0.3h6.63c0.27,0 0.52,-0.11 0.71,-0.29l4.68,-4.68c0.19,-0.19 0.29,-0.44 0.29,-0.71L20.99,8.68c0,-0.27 -0.11,-0.52 -0.29,-0.71l-4.68,-4.68c-0.18,-0.18 -0.44,-0.29 -0.7,-0.29zM12,17.3c-0.72,0 -1.3,-0.58 -1.3,-1.3s0.58,-1.3 1.3,-1.3 1.3,0.58 1.3,1.3 -0.58,1.3 -1.3,1.3zM12,13c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/report_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/rounded/report_gmailerrorred.xml
deleted file mode 100644
index 09e2f83..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/report_gmailerrorred.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,7.98L16.03,3.3c-0.19,-0.19 -0.45,-0.3 -0.71,-0.3H8.68c-0.26,0 -0.52,0.11 -0.7,0.29L3.29,7.98c-0.18,0.18 -0.29,0.44 -0.29,0.7v6.63c0,0.27 0.11,0.52 0.29,0.71l4.68,4.68c0.19,0.19 0.45,0.3 0.71,0.3h6.63c0.27,0 0.52,-0.11 0.71,-0.29l4.68,-4.68c0.19,-0.19 0.29,-0.44 0.29,-0.71V8.68c0.01,-0.26 -0.1,-0.52 -0.28,-0.7zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1v5.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-0.55,0 -1,0.45 -1,1v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/report_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/report_off.xml
deleted file mode 100644
index 0784e76..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/report_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c0.55,0 1,0.45 1,1v1.33l7.2,7.2 0.51,-0.51c0.19,-0.19 0.29,-0.44 0.29,-0.71V8.68c0,-0.27 -0.11,-0.52 -0.29,-0.71l-4.68,-4.68c-0.19,-0.18 -0.45,-0.29 -0.71,-0.29H8.68c-0.26,0 -0.52,0.11 -0.7,0.29l-0.51,0.51 3.69,3.69c0.17,-0.29 0.48,-0.49 0.84,-0.49zM2.41,1.58L1,2.99l3.64,3.64 -1.35,1.35c-0.18,0.18 -0.29,0.44 -0.29,0.7v6.63c0,0.27 0.11,0.52 0.29,0.71l4.68,4.68c0.19,0.19 0.45,0.3 0.71,0.3h6.63c0.27,0 0.52,-0.11 0.71,-0.29l1.35,-1.35L21.01,23l1.41,-1.41L2.41,1.58zM12,17.3c-0.72,0 -1.3,-0.58 -1.3,-1.3 0,-0.72 0.58,-1.3 1.3,-1.3s1.3,0.58 1.3,1.3c0,0.72 -0.58,1.3 -1.3,1.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/report_problem.xml b/compose/material/material/icons/generator/raw-icons/rounded/report_problem.xml
deleted file mode 100644
index 1f939aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/report_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.73,21h18.53c0.77,0 1.25,-0.83 0.87,-1.5l-9.27,-16c-0.39,-0.67 -1.35,-0.67 -1.73,0l-9.27,16c-0.38,0.67 0.1,1.5 0.87,1.5zM13,18h-2v-2h2v2zM12,14c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/request_page.xml b/compose/material/material/icons/generator/raw-icons/rounded/request_page.xml
deleted file mode 100644
index 089c81d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/request_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8.83C20,8.3 19.79,7.79 19.41,7.41zM14,12c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1h-1c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3v-1h-3c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h1c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1h-3v1H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/request_quote.xml b/compose/material/material/icons/generator/raw-icons/rounded/request_quote.xml
deleted file mode 100644
index f527a0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/request_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8.83C20,8.3 19.79,7.79 19.41,7.41zM14,13c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1h-1c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3v-1h-3c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h1c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1h-3v1H14zM14,8c-0.55,0 -1,-0.45 -1,-1V3.5L17.5,8H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/reset_tv.xml b/compose/material/material/icons/generator/raw-icons/rounded/reset_tv.xml
deleted file mode 100644
index 01541bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/reset_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h-7.01V8.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.78,2.79c-0.19,0.2 -0.19,0.51 0,0.71l2.78,2.79c0.31,0.32 0.85,0.09 0.85,-0.35V12H20v5H4V5h16v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1l0,-2c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v12c0,1.1 0.9,2 2,2h4v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h4c1.1,0 2,-0.9 2,-2v-5C22,10.9 21.1,10 20,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/restart_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/restart_alt.xml
deleted file mode 100644
index 22e4307..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/restart_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V3.21c0,-0.45 -0.54,-0.67 -0.85,-0.35L8.35,5.65c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79C11.46,9.46 12,9.24 12,8.79V7c3.31,0 6,2.69 6,6c0,2.72 -1.83,5.02 -4.31,5.75C13.27,18.87 13,19.27 13,19.7v0c0,0.65 0.62,1.16 1.25,0.97C17.57,19.7 20,16.64 20,13C20,8.58 16.42,5 12,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c0,-1.34 0.44,-2.58 1.19,-3.59c0.3,-0.4 0.26,-0.95 -0.09,-1.31l0,0C6.68,7.68 5.96,7.72 5.6,8.2C4.6,9.54 4,11.2 4,13c0,3.64 2.43,6.7 5.75,7.67C10.38,20.86 11,20.35 11,19.7v0c0,-0.43 -0.27,-0.83 -0.69,-0.95C7.83,18.02 6,15.72 6,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/restaurant.xml b/compose/material/material/icons/generator/raw-icons/rounded/restaurant.xml
deleted file mode 100644
index 3af52d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6v6c0,1.1 0.9,2 2,2h1v7c0,0.55 0.45,1 1,1s1,-0.45 1,-1L21,3.13c0,-0.65 -0.61,-1.13 -1.24,-0.98C17.6,2.68 16,4.51 16,6zM11,9L9,9L9,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6L5,9L5,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6c0,2.21 1.79,4 4,4v8c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-8c2.21,0 4,-1.79 4,-4L13,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/restaurant_menu.xml b/compose/material/material/icons/generator/raw-icons/rounded/restaurant_menu.xml
deleted file mode 100644
index a056d74..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/restaurant_menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83 -6.19,-6.18c-0.48,-0.48 -1.31,-0.35 -1.61,0.27 -0.71,1.49 -0.45,3.32 0.78,4.56l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L4.4,19.17c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,14.41l6.18,6.18c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/restore.xml b/compose/material/material/icons/generator/raw-icons/rounded/restore.xml
deleted file mode 100644
index b3abbac..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.25,3c-5.09,-0.14 -9.26,3.94 -9.26,9L2.2,12c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.8c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.8c0.32,-0.31 0.09,-0.85 -0.35,-0.85h-1.8c0,-3.9 3.18,-7.05 7.1,-7 3.72,0.05 6.85,3.18 6.9,6.9 0.05,3.91 -3.1,7.1 -7,7.1 -1.61,0 -3.1,-0.55 -4.28,-1.48 -0.4,-0.31 -0.96,-0.28 -1.32,0.08 -0.42,0.43 -0.39,1.13 0.08,1.5 1.52,1.19 3.44,1.9 5.52,1.9 5.05,0 9.14,-4.17 9,-9.26 -0.13,-4.69 -4.05,-8.61 -8.74,-8.74zM12.74,8c-0.41,0 -0.75,0.34 -0.75,0.75v3.68c0,0.35 0.19,0.68 0.49,0.86l3.12,1.85c0.36,0.21 0.82,0.09 1.03,-0.26 0.21,-0.36 0.09,-0.82 -0.26,-1.03l-2.88,-1.71v-3.4c0,-0.4 -0.33,-0.74 -0.75,-0.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/restore_from_trash.xml b/compose/material/material/icons/generator/raw-icons/rounded/restore_from_trash.xml
deleted file mode 100644
index 52f2520..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/restore_from_trash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,9c0,-1.1 -0.9,-2 -2,-2L8,7c-1.1,0 -2,0.9 -2,2v10zM11.65,10.35c0.2,-0.2 0.51,-0.2 0.71,0L16,14h-2v4h-4v-4L8,14l3.65,-3.65zM15.5,4l-0.71,-0.71c-0.18,-0.18 -0.44,-0.29 -0.7,-0.29L9.91,3c-0.26,0 -0.52,0.11 -0.7,0.29L8.5,4L6,4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/restore_page.xml b/compose/material/material/icons/generator/raw-icons/rounded/restore_page.xml
deleted file mode 100644
index 8a74fe0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/restore_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83c-0.37,-0.37 -0.88,-0.58 -1.41,-0.58H6c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8.83c0,-0.53 -0.21,-1.04 -0.59,-1.42zM12,18c-1.65,0 -3.19,-0.81 -4.12,-2.17 -0.23,-0.34 -0.15,-0.81 0.19,-1.04 0.34,-0.24 0.81,-0.15 1.04,0.19 0.65,0.95 1.73,1.52 2.88,1.52 1.93,0 3.5,-1.57 3.5,-3.5S13.93,9.5 12,9.5c-1.33,0 -2.52,0.74 -3.11,1.89L10.5,13H7c-0.28,0 -0.5,-0.22 -0.5,-0.5V9l1.3,1.3C8.71,8.89 10.26,8 12,8c2.76,0 5,2.24 5,5s-2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/reviews.xml b/compose/material/material/icons/generator/raw-icons/rounded/reviews.xml
deleted file mode 100644
index c9f725e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/reviews.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v15.59c0,0.89 1.08,1.34 1.71,0.71L6,18h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM13.57,11.57l-1.12,2.44c-0.18,0.39 -0.73,0.39 -0.91,0l-1.12,-2.44l-2.44,-1.12c-0.39,-0.18 -0.39,-0.73 0,-0.91l2.44,-1.12l1.12,-2.44c0.18,-0.39 0.73,-0.39 0.91,0l1.12,2.44l2.44,1.12c0.39,0.18 0.39,0.73 0,0.91L13.57,11.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rice_bowl.xml b/compose/material/material/icons/generator/raw-icons/rounded/rice_bowl.xml
deleted file mode 100644
index ce0dc5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rice_bowl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12L22,12c0,-5.48 -4.4,-9.93 -9.86,-10C8.52,1.95 5.29,4.03 3.43,7.14C0.1,12.69 2.98,18.27 8,20.25v0.25C8,21.33 8.67,22 9.5,22h5c0.83,0 1.5,-0.67 1.5,-1.5v-0.25C19.53,18.86 22,15.69 22,12zM20,12h-4V5.08C18.39,6.47 20,9.05 20,12zM14,4.26V12h-4V4.26C10.64,4.1 11.31,4 12,4S13.36,4.1 14,4.26zM4,12c0,-2.95 1.61,-5.53 4,-6.92V12H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ring_volume.xml b/compose/material/material/icons/generator/raw-icons/rounded/ring_volume.xml
deleted file mode 100644
index 12101df..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ring_volume.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.98,7h0.03c0.55,0 0.99,-0.44 0.99,-0.98L13,2.98c0,-0.54 -0.44,-0.98 -0.98,-0.98h-0.03c-0.55,0 -0.99,0.44 -0.99,0.98v3.03c0,0.55 0.44,0.99 0.98,0.99zM16.9,9.11c0.39,0.39 1.01,0.39 1.4,0 0.62,-0.63 1.52,-1.54 2.15,-2.17 0.39,-0.38 0.39,-1.01 0,-1.39 -0.38,-0.38 -1.01,-0.38 -1.39,0L16.89,7.7c-0.39,0.38 -0.39,1.01 0,1.39l0.01,0.02zM5.71,9.1c0.38,0.39 1.01,0.39 1.4,0 0.38,-0.38 0.38,-1.01 0,-1.39L4.96,5.54c-0.38,-0.39 -1.01,-0.39 -1.39,0l-0.02,0.01c-0.39,0.39 -0.39,1.01 0,1.39 0.63,0.62 1.54,1.53 2.16,2.16zM23.29,16.23c-6.41,-5.66 -16.07,-5.66 -22.48,0 -0.85,0.75 -0.85,2.08 -0.05,2.88l1.22,1.22c0.72,0.72 1.86,0.78 2.66,0.15l2,-1.59c0.48,-0.38 0.76,-0.96 0.76,-1.57v-2.6c3.02,-0.98 6.29,-0.99 9.32,0v2.61c0,0.61 0.28,1.19 0.76,1.57l1.99,1.58c0.8,0.63 1.94,0.57 2.66,-0.15l1.22,-1.22c0.79,-0.8 0.79,-2.13 -0.06,-2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rocket.xml b/compose/material/material/icons/generator/raw-icons/rounded/rocket.xml
deleted file mode 100644
index 78d3de2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rocket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.41,2.87c0.35,-0.26 0.82,-0.26 1.18,0C13.81,3.75 16.5,6.46 16.5,13c0,2.16 -0.78,4.76 -1.36,6.35C15,19.74 14.63,20 14.21,20l-4.41,0c-0.42,0 -0.8,-0.26 -0.94,-0.65C8.28,17.76 7.5,15.16 7.5,13C7.5,6.46 10.19,3.75 11.41,2.87zM14,11c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2S14,12.1 14,11zM7.69,20.52c-0.48,-1.23 -1.52,-4.17 -1.67,-6.87l-1.13,0.75C4.33,14.78 4,15.4 4,16.07v4.45c0,0.71 0.71,1.19 1.37,0.93L7.69,20.52zM20,20.52v-4.45c0,-0.67 -0.33,-1.29 -0.89,-1.66l-1.13,-0.75c-0.15,2.69 -1.2,5.64 -1.67,6.87l2.32,0.93C19.29,21.71 20,21.23 20,20.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rocket_launch.xml b/compose/material/material/icons/generator/raw-icons/rounded/rocket_launch.xml
deleted file mode 100644
index 906132d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rocket_launch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.19,6.35c-2.04,2.29 -3.44,5.58 -3.57,5.89l-2.26,-0.97c-0.65,-0.28 -0.81,-1.13 -0.31,-1.63l3.01,-3.01c0.47,-0.47 1.15,-0.68 1.81,-0.55L9.19,6.35L9.19,6.35zM10.68,16.51c0.3,0.3 0.74,0.38 1.12,0.2c1.16,-0.54 3.65,-1.81 5.26,-3.42c4.59,-4.59 4.63,-8.33 4.36,-9.93c-0.07,-0.4 -0.39,-0.72 -0.79,-0.79c-1.6,-0.27 -5.34,-0.23 -9.93,4.36c-1.61,1.61 -2.87,4.1 -3.42,5.26c-0.18,0.38 -0.09,0.83 0.2,1.12L10.68,16.51zM17.65,14.81c-2.29,2.04 -5.58,3.44 -5.89,3.57l0.97,2.26c0.28,0.65 1.13,0.81 1.63,0.31l3.01,-3.01c0.47,-0.47 0.68,-1.15 0.55,-1.81L17.65,14.81L17.65,14.81zM8.94,17.41c0.2,1.06 -0.15,2.04 -0.82,2.71c-0.77,0.77 -3.16,1.34 -4.71,1.64c-0.69,0.13 -1.3,-0.48 -1.17,-1.17c0.3,-1.55 0.86,-3.94 1.64,-4.71c0.67,-0.67 1.65,-1.02 2.71,-0.82C7.76,15.28 8.72,16.24 8.94,17.41zM13,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S13,10.1 13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/roller_shades.xml b/compose/material/material/icons/generator/raw-icons/rounded/roller_shades.xml
deleted file mode 100644
index f25b0de4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/roller_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM6,19v-6h5v1.8c-0.4,0.3 -0.8,0.8 -0.8,1.4c0,1 0.8,1.8 1.8,1.8s1.8,-0.8 1.8,-1.8c0,-0.6 -0.3,-1.1 -0.8,-1.4V13h5v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/roller_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/rounded/roller_shades_closed.xml
deleted file mode 100644
index e182969..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/roller_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h7.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H21c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM6,19v-2h5v2H6zM13,19v-2h5v2H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/roller_skating.xml b/compose/material/material/icons/generator/raw-icons/rounded/roller_skating.xml
deleted file mode 100644
index 5967c93..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/roller_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16c1.1,0 2,-0.9 2,-2l0,-0.88c0,-2.1 -1.55,-3.53 -3.03,-3.88l-2.7,-0.67C13.4,8.35 12.7,7.76 12.32,7H9.5C9.22,7 9,6.78 9,6.5S9.22,6 9.5,6h2.52L12,5H9.5C9.22,5 9,4.78 9,4.5C9,4.22 9.22,4 9.5,4H12V3c0,-1.1 -0.9,-2 -2,-2H6C4.9,1 4,1.9 4,3v11c0,1.1 0.9,2 2,2H18zM5,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S6.66,23 5,23zM19,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S20.66,23 19,23zM12,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,23 12,23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/roofing.xml b/compose/material/material/icons/generator/raw-icons/rounded/roofing.xml
deleted file mode 100644
index 27dd7ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/roofing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18h-2v-2h2V18zM9,15v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-4C9.45,14 9,14.45 9,15zM19,9.3L19,9.3V5c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v1.6v0l-3.33,-3c-0.38,-0.34 -0.96,-0.34 -1.34,0l-8.36,7.53C2.63,11.43 2.84,12 3.3,12h1.31c0.25,0 0.49,-0.09 0.67,-0.26L12,5.69l6.71,6.05C18.9,11.91 19.14,12 19.38,12h1.31c0.46,0 0.68,-0.57 0.33,-0.87L19,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/room.xml b/compose/material/material/icons/generator/raw-icons/rounded/room.xml
deleted file mode 100644
index bcab94916..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM12,12c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C14,11.1 13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/room_preferences.xml b/compose/material/material/icons/generator/raw-icons/rounded/room_preferences.xml
deleted file mode 100644
index aaa00bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/room_preferences.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.75,17c0,-0.22 -0.03,-0.42 -0.06,-0.63l0.84,-0.73c0.18,-0.16 0.22,-0.42 0.1,-0.63l-0.59,-1.02c-0.12,-0.21 -0.37,-0.3 -0.59,-0.22l-1.06,0.36c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63l-0.22,-1.09c-0.05,-0.23 -0.25,-0.4 -0.49,-0.4h-1.18c-0.24,0 -0.44,0.17 -0.49,0.4l-0.22,1.09c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.06,-0.36c-0.23,-0.08 -0.47,0.02 -0.59,0.22l-0.59,1.02c-0.12,0.21 -0.08,0.47 0.1,0.63l0.84,0.73c-0.03,0.21 -0.06,0.41 -0.06,0.63s0.03,0.42 0.06,0.63l-0.84,0.73c-0.18,0.16 -0.22,0.42 -0.1,0.63l0.59,1.02c0.12,0.21 0.37,0.3 0.59,0.22l1.06,-0.36c0.32,0.27 0.68,0.48 1.08,0.63l0.22,1.09c0.05,0.23 0.25,0.4 0.49,0.4h1.18c0.24,0 0.44,-0.17 0.49,-0.4l0.22,-1.09c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.06,0.36c0.23,0.08 0.47,-0.02 0.59,-0.22l0.59,-1.02c0.12,-0.21 0.08,-0.47 -0.1,-0.63l-0.84,-0.73C21.72,17.42 21.75,17.22 21.75,17zM18,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S19.1,19 18,19zM14,11.26V6h3v4h2V5c0,-0.55 -0.45,-1 -1,-1h-4c0,-0.55 -0.45,-1 -1,-1H6C5.45,3 5,3.45 5,4v15H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h8.26C11.47,19.87 11,18.49 11,17C11,14.62 12.19,12.53 14,11.26zM10,12c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S10,12.55 10,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/room_service.xml b/compose/material/material/icons/generator/raw-icons/rounded/room_service.xml
deleted file mode 100644
index 8f1d63e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/room_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18c0.55,0 1,0.45 1,1s-0.45,1 -1,1L3,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM13.84,7.79c0.1,-0.24 0.16,-0.51 0.16,-0.79 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2c0,0.28 0.06,0.55 0.16,0.79C6.25,8.6 3.27,11.93 3,16h18c-0.27,-4.07 -3.25,-7.4 -7.16,-8.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rotate_90_degrees_ccw.xml b/compose/material/material/icons/generator/raw-icons/rounded/rotate_90_degrees_ccw.xml
deleted file mode 100644
index 6cc62e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rotate_90_degrees_ccw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.93,7.83l-3.65,3.66c-0.78,0.78 -0.78,2.05 0,2.83l3.66,3.66c0.78,0.78 2.05,0.78 2.83,0l3.66,-3.65c0.78,-0.78 0.78,-2.05 0,-2.83L8.76,7.82c-0.79,-0.78 -2.05,-0.78 -2.83,0.01zM4.4,12.19l2.25,-2.25c0.39,-0.39 1.02,-0.39 1.42,0l2.24,2.24c0.39,0.39 0.39,1.02 0,1.41l-2.25,2.25c-0.39,0.39 -1.02,0.39 -1.42,0L4.4,13.61c-0.39,-0.39 -0.39,-1.03 0,-1.42zM19.36,6.64C17.61,4.88 15.3,4 13,4v-0.83c0,-0.89 -1.08,-1.34 -1.71,-0.71L9.47,4.29c-0.39,0.39 -0.39,1.02 0,1.41l1.83,1.83c0.62,0.63 1.7,0.19 1.7,-0.7L13,6c2.02,0 4.03,0.86 5.45,2.61 2.05,2.52 2.05,6.27 0,8.79C17.03,19.14 15.02,20 13,20c-0.78,0 -1.55,-0.13 -2.29,-0.39 -0.36,-0.12 -0.75,-0.01 -1.02,0.26 -0.5,0.5 -0.34,1.39 0.34,1.62 0.96,0.34 1.96,0.51 2.97,0.51 2.3,0 4.61,-0.88 6.36,-2.64 3.52,-3.51 3.52,-9.21 0,-12.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rotate_90_degrees_cw.xml b/compose/material/material/icons/generator/raw-icons/rounded/rotate_90_degrees_cw.xml
deleted file mode 100644
index c8c6099..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rotate_90_degrees_cw.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.86,18.46c2.65,3.45 7.11,4.37 10.74,2.79c0.61,-0.27 0.74,-1.09 0.27,-1.56l-0.05,-0.05c-0.29,-0.29 -0.72,-0.35 -1.1,-0.19c-2.96,1.24 -6.59,0.37 -8.58,-2.62c-1.58,-2.37 -1.55,-5.37 0.05,-7.73C6.6,7.03 8.8,6.03 11,6.03v1.76c0,0.45 0.54,0.67 0.86,0.36l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.8,-2.79C11.54,1.54 11,1.76 11,2.21v1.8c-2.76,0 -5.52,1.25 -7.34,3.78C1.38,10.96 1.46,15.37 3.86,18.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.7,7.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.59,4.58c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41L17.7,7.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rotate_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/rotate_left.xml
deleted file mode 100644
index 47016ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rotate_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.56,7.98C6.1,7.52 5.31,7.6 5,8.17c-0.28,0.51 -0.5,1.03 -0.67,1.58 -0.19,0.63 0.31,1.25 0.96,1.25h0.01c0.43,0 0.82,-0.28 0.94,-0.7 0.12,-0.4 0.28,-0.79 0.48,-1.17 0.22,-0.37 0.15,-0.84 -0.16,-1.15zM5.31,13h-0.02c-0.65,0 -1.15,0.62 -0.96,1.25 0.16,0.54 0.38,1.07 0.66,1.58 0.31,0.57 1.11,0.66 1.57,0.2 0.3,-0.31 0.38,-0.77 0.17,-1.15 -0.2,-0.37 -0.36,-0.76 -0.48,-1.16 -0.12,-0.44 -0.51,-0.72 -0.94,-0.72zM8.16,19.02c0.51,0.28 1.04,0.5 1.59,0.66 0.62,0.18 1.24,-0.32 1.24,-0.96v-0.03c0,-0.43 -0.28,-0.82 -0.7,-0.94 -0.4,-0.12 -0.78,-0.28 -1.15,-0.48 -0.38,-0.21 -0.86,-0.14 -1.16,0.17l-0.03,0.03c-0.45,0.45 -0.36,1.24 0.21,1.55zM13,4.07v-0.66c0,-0.89 -1.08,-1.34 -1.71,-0.71L9.17,4.83c-0.4,0.4 -0.4,1.04 0,1.43l2.13,2.08c0.63,0.62 1.7,0.17 1.7,-0.72L13,6.09c2.84,0.48 5,2.94 5,5.91 0,2.73 -1.82,5.02 -4.32,5.75 -0.41,0.12 -0.68,0.51 -0.68,0.94v0.02c0,0.65 0.61,1.14 1.23,0.96C17.57,18.71 20,15.64 20,12c0,-4.08 -3.05,-7.44 -7,-7.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rotate_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/rotate_right.xml
deleted file mode 100644
index 00ac5be8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rotate_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.83,4.83L12.7,2.7c-0.62,-0.62 -1.7,-0.18 -1.7,0.71v0.66C7.06,4.56 4,7.92 4,12c0,3.64 2.43,6.71 5.77,7.68 0.62,0.18 1.23,-0.32 1.23,-0.96v-0.03c0,-0.43 -0.27,-0.82 -0.68,-0.94C7.82,17.03 6,14.73 6,12c0,-2.97 2.16,-5.43 5,-5.91v1.53c0,0.89 1.07,1.33 1.7,0.71l2.13,-2.08c0.4,-0.38 0.4,-1.02 0,-1.42zM19.67,9.76c-0.16,-0.55 -0.38,-1.08 -0.66,-1.59 -0.31,-0.57 -1.1,-0.66 -1.56,-0.2l-0.01,0.01c-0.31,0.31 -0.38,0.78 -0.17,1.16 0.2,0.37 0.36,0.76 0.48,1.16 0.12,0.42 0.51,0.7 0.94,0.7h0.02c0.65,0 1.15,-0.62 0.96,-1.24zM13,18.68v0.02c0,0.65 0.62,1.14 1.24,0.96 0.55,-0.16 1.08,-0.38 1.59,-0.66 0.57,-0.31 0.66,-1.1 0.2,-1.56l-0.02,-0.02c-0.31,-0.31 -0.78,-0.38 -1.16,-0.17 -0.37,0.21 -0.76,0.37 -1.16,0.49 -0.41,0.12 -0.69,0.51 -0.69,0.94zM17.44,16.03c0.46,0.46 1.25,0.37 1.56,-0.2 0.28,-0.51 0.5,-1.04 0.67,-1.59 0.18,-0.62 -0.31,-1.24 -0.96,-1.24h-0.02c-0.44,0 -0.82,0.28 -0.94,0.7 -0.12,0.4 -0.28,0.79 -0.48,1.17 -0.21,0.38 -0.13,0.86 0.17,1.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/roundabout_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/roundabout_left.xml
deleted file mode 100644
index a93a629..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/roundabout_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,21c-0.55,0 -1,-0.45 -1,-1l0,-5.09c0,-0.98 0.71,-1.8 1.67,-1.97C18.56,12.63 20,10.98 20,9c0,-2.21 -1.79,-4 -4,-4c-1.98,0 -3.63,1.44 -3.94,3.33C11.89,9.29 11.07,10 10.09,10l-4.26,0l0.88,0.88c0.39,0.39 0.39,1.02 0,1.41c-0.39,0.39 -1.02,0.39 -1.41,0L2.71,9.71c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.59,-2.59c0.39,-0.39 1.02,-0.39 1.41,0c0.39,0.39 0.39,1.02 0,1.41L5.83,8l4.25,0c0.48,-2.84 2.94,-5 5.92,-5c3.31,0 6,2.69 6,6c0,2.97 -2.16,5.44 -5,5.92L17,20C17,20.55 16.55,21 16,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/roundabout_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/roundabout_right.xml
deleted file mode 100644
index 85b72a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/roundabout_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,21c0.55,0 1,-0.45 1,-1l0,-5.09c0,-0.98 -0.71,-1.8 -1.67,-1.97C5.44,12.63 4,10.98 4,9c0,-2.21 1.79,-4 4,-4c1.98,0 3.63,1.44 3.94,3.33C12.11,9.29 12.93,10 13.91,10l4.26,0l-0.88,0.88c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L18.17,8l-4.25,0C13.44,5.16 10.97,3 8,3C4.69,3 2,5.69 2,9c0,2.97 2.16,5.44 5,5.92L7,20C7,20.55 7.45,21 8,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rounded_corner.xml b/compose/material/material/icons/generator/raw-icons/rounded/rounded_corner.xml
deleted file mode 100644
index afb1b77..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rounded_corner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2v-2zM19,17h2v-2h-2v2zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM7,5h2L9,3L7,3v2zM15,21h2v-2h-2v2zM11,21h2v-2h-2v2zM15,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM3,21h2v-2L3,19v2zM21,8c0,-2.76 -2.24,-5 -5,-5h-5v2h5c1.65,0 3,1.35 3,3v5h2L21,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/route.xml b/compose/material/material/icons/generator/raw-icons/rounded/route.xml
deleted file mode 100644
index 58cd9d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/route.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15.18V7c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v10c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8.82C8.16,8.4 9,7.3 9,6c0,-1.66 -1.34,-3 -3,-3S3,4.34 3,6c0,1.3 0.84,2.4 2,2.82V17c0,2.21 1.79,4 4,4s4,-1.79 4,-4V7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v8.18c-1.16,0.41 -2,1.51 -2,2.82c0,1.66 1.34,3 3,3s3,-1.34 3,-3C21,16.7 20.16,15.6 19,15.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/router.xml b/compose/material/material/icons/generator/raw-icons/rounded/router.xml
deleted file mode 100644
index 75e482b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/router.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.45,5.55c0.19,0.19 0.5,0.21 0.72,0.04C13.3,4.69 14.65,4.2 16,4.2s2.7,0.49 3.84,1.39c0.21,0.17 0.52,0.15 0.72,-0.04l0.04,-0.05c0.22,-0.22 0.21,-0.59 -0.03,-0.8C19.24,3.57 17.62,3 16,3s-3.24,0.57 -4.57,1.7c-0.24,0.21 -0.26,0.57 -0.03,0.8l0.05,0.05zM13.15,6.31c-0.25,0.2 -0.26,0.58 -0.04,0.8l0.04,0.04c0.2,0.2 0.5,0.2 0.72,0.04 0.63,-0.48 1.38,-0.69 2.13,-0.69s1.5,0.21 2.13,0.68c0.22,0.17 0.53,0.16 0.72,-0.04l0.04,-0.04c0.23,-0.23 0.21,-0.6 -0.04,-0.8 -0.83,-0.64 -1.84,-1 -2.85,-1s-2.02,0.36 -2.85,1.01zM19,13h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3L5,13c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2zM8,18L6,18v-2h2v2zM11.5,18h-2v-2h2v2zM15,18h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rowing.xml b/compose/material/material/icons/generator/raw-icons/rounded/rowing.xml
deleted file mode 100644
index 7fa2cd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rowing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.75,18.25c-0.41,0.41 -0.41,1.09 0,1.5 0.41,0.41 1.09,0.41 1.5,0L9,17h2l-2.5,-2.5 -3.75,3.75zM15,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM20.29,20.3l-2,-2.01c-0.18,-0.18 -0.44,-0.29 -0.71,-0.29L16.5,18l-6.29,-6.29c0.79,-0.33 1.66,-0.87 2.29,-1.39v2.27l3.58,3.58c0.57,-0.55 0.92,-1.32 0.92,-2.16L17,8.26C17,7.02 15.98,6 14.74,6h-0.02c-0.34,0 -0.67,0.09 -0.96,0.23 -0.26,0.12 -0.5,0.29 -0.69,0.5l-1.4,1.55C10.61,9.45 8.66,10.35 7,10.32c-0.6,0 -1.08,0.48 -1.08,1.08 0,0.6 0.48,1.08 1.08,1.08 0.31,0 0.61,-0.03 0.9,-0.07l7.11,7.09v1.08c0,0.26 0.1,0.52 0.29,0.7l1.99,2.01c0.39,0.39 1.02,0.39 1.42,0l1.58,-1.58c0.39,-0.38 0.39,-1.02 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rss_feed.xml b/compose/material/material/icons/generator/raw-icons/rounded/rss_feed.xml
deleted file mode 100644
index 32e43d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rss_feed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.18,17.82m-2.18,0a2.18,2.18 0,1 1,4.36 0a2.18,2.18 0,1 1,-4.36 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.59,10.23c-0.84,-0.14 -1.59,0.55 -1.59,1.4 0,0.71 0.53,1.28 1.23,1.4 2.92,0.51 5.22,2.82 5.74,5.74 0.12,0.7 0.69,1.23 1.4,1.23 0.85,0 1.54,-0.75 1.41,-1.59 -0.68,-4.2 -3.99,-7.51 -8.19,-8.18zM5.56,4.52C4.73,4.43 4,5.1 4,5.93c0,0.73 0.55,1.33 1.27,1.4 6.01,0.6 10.79,5.38 11.39,11.39 0.07,0.73 0.67,1.28 1.4,1.28 0.84,0 1.5,-0.73 1.42,-1.56 -0.73,-7.34 -6.57,-13.19 -13.92,-13.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rsvp.xml b/compose/material/material/icons/generator/raw-icons/rounded/rsvp.xml
deleted file mode 100644
index a9c8d62..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rsvp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.54,9L16.54,9c0.48,0 0.83,0.46 0.69,0.92l-1.27,4.36C15.84,14.71 15.44,15 15,15h0c-0.44,0 -0.84,-0.29 -0.96,-0.72l-1.27,-4.36C12.63,9.46 12.98,9 13.46,9h0c0.32,0 0.6,0.21 0.69,0.52L15,12.43l0.85,-2.91C15.94,9.21 16.22,9 16.54,9zM5.1,12.9l0.49,1.14C5.78,14.49 5.45,15 4.96,15h0c-0.28,0 -0.53,-0.17 -0.63,-0.42L3.65,13H2.5v1.31C2.5,14.69 2.19,15 1.81,15H1.69C1.31,15 1,14.69 1,14.31V10c0,-0.55 0.45,-1 1,-1h2.5C5.33,9 6,9.67 6,10.5v1C6,12.1 5.6,12.65 5.1,12.9zM4.5,10.5h-2v1h2V10.5zM21.5,13h-2v1.25c0,0.41 -0.34,0.75 -0.75,0.75l0,0C18.34,15 18,14.66 18,14.25V10c0,-0.55 0.45,-1 1,-1h2.5c0.83,0 1.5,0.67 1.5,1.5v1C23,12.33 22.33,13 21.5,13zM21.5,10.5h-2v1h2V10.5zM11.5,9.75L11.5,9.75c0,0.41 -0.34,0.75 -0.75,0.75H8.5v0.75h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7.75C7.34,15 7,14.66 7,14.25v0c0,-0.41 0.34,-0.75 0.75,-0.75H10v-0.75H7.75C7.34,12.75 7,12.41 7,12v-2c0,-0.55 0.45,-1 1,-1h2.75C11.16,9 11.5,9.34 11.5,9.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rtt.xml b/compose/material/material/icons/generator/raw-icons/rounded/rtt.xml
deleted file mode 100644
index 51bf0dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rtt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.76,4.69L8.15,8.58c-0.12,0.78 0.48,1.49 1.28,1.49h0c0.64,0 1.18,-0.46 1.28,-1.09l0.53,-3.41h2.58L11.8,18.43h-1.24c-0.63,0 -1.16,0.46 -1.26,1.08l0,0.01C9.17,20.3 9.77,21 10.56,21h4.67c0.63,0 1.17,-0.46 1.26,-1.08l0,-0.01c0.12,-0.78 -0.48,-1.48 -1.26,-1.48h-0.86l2,-12.86h2.58l-0.47,3.01c-0.12,0.78 0.48,1.49 1.28,1.49h0.03c0.64,0 1.18,-0.46 1.28,-1.09l0.57,-3.67C21.83,4.09 20.89,3 19.66,3h-8.92C9.76,3 8.92,3.72 8.76,4.69zM8,5H4.86C4.36,5 3.94,5.36 3.87,5.85l0,0C3.77,6.45 4.24,7 4.86,7h2.83L8,5zM7.39,9H4.25C3.75,9 3.33,9.36 3.26,9.85l0,0C3.16,10.45 3.63,11 4.25,11h2.83L7.39,9zM8.31,17H3.17c-0.49,0 -0.91,0.36 -0.99,0.85l0,0C2.08,18.45 2.55,19 3.17,19H8L8.31,17zM8.93,13H3.79c-0.49,0 -0.91,0.36 -0.99,0.85l0,0C2.7,14.45 3.17,15 3.79,15h4.84L8.93,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rule.xml b/compose/material/material/icons/generator/raw-icons/rounded/rule.xml
deleted file mode 100644
index 4091f60..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.83,10.29l-2.12,-2.12c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41l-4.24,4.24C16.85,10.68 16.22,10.68 15.83,10.29zM10,7H3C2.45,7 2,7.45 2,8v0c0,0.55 0.45,1 1,1h7c0.55,0 1,-0.45 1,-1v0C11,7.45 10.55,7 10,7zM20.29,12.71L20.29,12.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L17,14.59l-1.88,-1.88c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L15.59,16l-1.88,1.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0L17,17.41l1.88,1.88c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L18.41,16l1.88,-1.88C20.68,13.73 20.68,13.1 20.29,12.71zM10,15H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h7c0.55,0 1,-0.45 1,-1v0C11,15.45 10.55,15 10,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rule_folder.xml b/compose/material/material/icons/generator/raw-icons/rounded/rule_folder.xml
deleted file mode 100644
index 49875bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rule_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM7.12,15.29l-1.41,-1.41c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71l2.83,-2.83c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41l-3.54,3.54C8.14,15.68 7.51,15.68 7.12,15.29zM17.41,13l0.88,0.88c0.39,0.39 0.39,1.02 0,1.41l0,0c-0.39,0.39 -1.02,0.39 -1.41,0L16,14.41l-0.88,0.88c-0.39,0.39 -1.02,0.39 -1.41,0l0,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L14.59,13l-0.88,-0.88c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0L16,11.59l0.88,-0.88c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41L17.41,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/run_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/run_circle.xml
deleted file mode 100644
index ee54bd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/run_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.5,6c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C12.5,6.45 12.95,6 13.5,6zM15.41,11.91c-0.71,-0.2 -1.63,-0.74 -2.32,-1.66l-0.41,2.35l1.19,1.3C13.95,13.98 14,14.1 14,14.22v3.28c0,0.28 -0.22,0.5 -0.5,0.5h0c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3.08l-1.11,-1.21l-0.43,2.15c-0.05,0.27 -0.32,0.45 -0.59,0.39l-2.78,-0.57c-0.27,-0.06 -0.45,-0.32 -0.39,-0.59v0c0.06,-0.27 0.32,-0.44 0.59,-0.39l2.29,0.47l0.96,-4.89L10,10.35v1.15c0,0.28 -0.22,0.5 -0.5,0.5h0C9.22,12 9,11.78 9,11.5V10c0,-0.21 0.13,-0.4 0.33,-0.47l2.95,-1.09c0.49,-0.18 1.02,0.04 1.25,0.51c0.65,1.35 1.55,1.85 2.1,2C15.85,11 16,11.18 16,11.4v0.04C16,11.75 15.71,11.99 15.41,11.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/running_with_errors.xml b/compose/material/material/icons/generator/raw-icons/rounded/running_with_errors.xml
deleted file mode 100644
index dd62f18..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/running_with_errors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6C22,17.55 21.55,18 21,18zM21,20c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S21.55,20 21,20zM18,17.29C16.53,18.95 14.39,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8v9l7.55,-7.55C17.72,3.34 15.02,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c2.25,0 4.33,-0.74 6,-2V17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/rv_hookup.xml b/compose/material/material/icons/generator/raw-icons/rounded/rv_hookup.xml
deleted file mode 100644
index 481cd08..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/rv_hookup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,17h-1v-6c0,-1.1 -0.9,-2 -2,-2L7,9v-0.74c0,-0.46 -0.56,-0.7 -0.89,-0.37L4.37,9.63c-0.2,0.2 -0.2,0.53 0,0.74l1.74,1.74c0.33,0.33 0.89,0.1 0.89,-0.37L7,11h4v3L5,14c-0.55,0 -1,0.45 -1,1v2c0,1.1 0.9,2 2,2h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM11,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,14h-4v-3h3c0.55,0 1,0.45 1,1v2zM10,6h7v0.74c0,0.46 0.56,0.7 0.89,0.37l1.74,-1.74c0.2,-0.2 0.2,-0.53 0,-0.74l-1.74,-1.74c-0.33,-0.33 -0.89,-0.1 -0.89,0.37L17,4h-7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/safety_check.xml b/compose/material/material/icons/generator/raw-icons/rounded/safety_check.xml
deleted file mode 100644
index df3955a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/safety_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.3,2.26l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.7c0,4.83 3.13,9.37 7.43,10.75c0.37,0.12 0.77,0.12 1.14,0c4.3,-1.38 7.43,-5.91 7.43,-10.75v-4.7c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25C12.25,2.09 11.75,2.09 11.3,2.26zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S14.76,17 12,17zM14,14c-0.2,0.2 -0.51,0.2 -0.71,0l-1.65,-1.65c-0.09,-0.09 -0.15,-0.22 -0.15,-0.35V9.5C11.5,9.22 11.72,9 12,9c0.28,0 0.5,0.22 0.5,0.5v2.29l1.5,1.5C14.2,13.49 14.2,13.8 14,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/safety_divider.xml b/compose/material/material/icons/generator/raw-icons/rounded/safety_divider.xml
deleted file mode 100644
index 4cdfc8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/safety_divider.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5h2v14h-2V5zM5,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C3,11.1 3.9,12 5,12zM7.78,13.58C6.93,13.21 5.99,13 5,13s-1.93,0.21 -2.78,0.58C1.48,13.9 1,14.62 1,15.43L1,16h8l0,-0.57C9,14.62 8.52,13.9 7.78,13.58zM19,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C17,11.1 17.9,12 19,12zM21.78,13.58C20.93,13.21 19.99,13 19,13s-1.93,0.21 -2.78,0.58C15.48,13.9 15,14.62 15,15.43L15,16h8l0,-0.57C23,14.62 22.52,13.9 21.78,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sailing.xml b/compose/material/material/icons/generator/raw-icons/rounded/sailing.xml
deleted file mode 100644
index 0625629..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sailing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13V3.59c0,-0.49 -0.63,-0.69 -0.91,-0.29l-6.54,9.41c-0.23,0.33 0.01,0.79 0.41,0.79h6.54C10.78,13.5 11,13.28 11,13zM20.99,12.98C20.72,7.07 15.9,2.32 13.4,1.23c-0.37,-0.16 -0.77,0.2 -0.67,0.59c0.3,1.13 0.76,3.28 0.76,5.68c0,2.44 -0.49,4.39 -0.78,5.35c-0.1,0.32 0.14,0.65 0.48,0.65h7.28C20.76,13.5 21,13.26 20.99,12.98zM20.62,15H3.38c-0.73,0 -1.22,0.76 -0.92,1.42c0.43,0.92 1.07,1.71 1.86,2.31c0.38,-0.16 0.74,-0.38 1.06,-0.63c0.35,-0.29 0.87,-0.29 1.23,0C7.28,18.63 8.1,19 9,19c0.9,0 1.72,-0.37 2.39,-0.91c0.35,-0.28 0.87,-0.28 1.22,0C13.28,18.63 14.1,19 15,19c0.9,0 1.72,-0.37 2.39,-0.91c0.35,-0.29 0.87,-0.28 1.23,0c0.32,0.26 0.67,0.48 1.06,0.63c0.79,-0.6 1.43,-1.39 1.86,-2.31C21.84,15.76 21.35,15 20.62,15zM22,22c0,-0.55 -0.45,-1 -1,-1h0c-0.87,0 -1.73,-0.24 -2.53,-0.7c-0.29,-0.16 -0.65,-0.17 -0.94,0c-1.59,0.9 -3.47,0.9 -5.06,0c-0.29,-0.16 -0.65,-0.16 -0.94,0c-1.59,0.9 -3.47,0.9 -5.06,0c-0.29,-0.16 -0.65,-0.16 -0.94,0C4.73,20.76 3.87,21 3,21h0c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h0c1.15,0 2.3,-0.31 3.33,-0.94c1.66,1.11 3.78,1.01 5.58,0.14c1.91,1.05 4.17,1.07 6.09,0.05h0c0.95,0.5 1.97,0.75 3,0.75h0C21.55,23 22,22.55 22,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sanitizer.xml b/compose/material/material/icons/generator/raw-icons/rounded/sanitizer.xml
deleted file mode 100644
index c848029..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sanitizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,6.5c0,-0.56 0.67,-1.49 1.11,-2.04c0.2,-0.25 0.58,-0.25 0.77,0c0.44,0.55 1.11,1.48 1.11,2.04C18.5,7.33 17.83,8 17,8S15.5,7.33 15.5,6.5zM19.5,15c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.25 -1.41,-3.16 -2.11,-4.04c-0.2,-0.25 -0.57,-0.25 -0.77,0C18.41,9.34 17,11.25 17,12.5C17,13.88 18.12,15 19.5,15zM12,14h-1v-1c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1H8c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1v0C13,14.45 12.55,14 12,14zM16,12v8c0,1.1 -0.9,2 -2,2H6c-1.1,0 -2,-0.9 -2,-2v-8c0,-2.97 2.16,-5.43 5,-5.91V4H8C7.45,4 7,3.55 7,3v0c0,-0.55 0.45,-1 1,-1h5c0.61,0 1.19,0.11 1.72,0.31c0.67,0.25 0.83,1.13 0.33,1.64l0,0C14.77,4.23 14.36,4.31 14,4.18C13.68,4.06 13.35,4 13,4h-2v2.09C13.84,6.57 16,9.03 16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/satellite.xml b/compose/material/material/icons/generator/raw-icons/rounded/satellite.xml
deleted file mode 100644
index 8d4c48d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/satellite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM5,5h3c0,1.66 -1.34,3 -3,3L5,5zM5,10.91c0,-0.49 0.36,-0.9 0.85,-0.98 2.08,-0.36 3.72,-2 4.08,-4.08 0.08,-0.49 0.49,-0.85 0.98,-0.85 0.61,0 1.09,0.53 1,1.13 -0.48,2.96 -2.81,5.3 -5.77,5.78 -0.6,0.1 -1.14,-0.39 -1.14,-1zM5.63,17.19l2.49,-3.2c0.2,-0.25 0.58,-0.26 0.78,-0.01l2.1,2.53 3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8L6.02,18.01c-0.41,-0.01 -0.65,-0.49 -0.39,-0.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/satellite_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/satellite_alt.xml
deleted file mode 100644
index d7f8004..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/satellite_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.95,14.88c-0.4,3.18 -2.89,5.67 -6.07,6.07C14.37,21.01 14,21.44 14,21.94c0,0.04 0,0.08 0.01,0.12c0.07,0.55 0.57,0.94 1.12,0.87c4.09,-0.51 7.3,-3.72 7.81,-7.81c0.06,-0.55 -0.33,-1.05 -0.88,-1.11C21.51,13.94 21.01,14.33 20.95,14.88zM18.84,15.26c0.14,-0.53 -0.18,-1.08 -0.72,-1.22c-0.54,-0.14 -1.08,0.18 -1.22,0.72c-0.27,1.05 -1.09,1.87 -2.15,2.15C14.3,17.03 14,17.43 14,17.88c0,0.08 0.01,0.17 0.03,0.25c0.14,0.53 0.69,0.85 1.22,0.72C17.02,18.38 18.39,17.01 18.84,15.26zM21.8,4.12l-3.54,-3.54c-0.78,-0.78 -2.05,-0.78 -2.83,0l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l1.24,1.24l-0.71,0.71L11.55,7.3c-0.78,-0.78 -2.05,-0.78 -2.83,0L7.3,8.72c-0.78,0.78 -0.78,2.05 0,2.83l1.24,1.24l-0.71,0.71L6.6,12.25c-0.78,-0.78 -2.05,-0.78 -2.83,0l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l3.54,3.54c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18c0.78,-0.78 0.78,-2.05 0,-2.83l-1.24,-1.24l0.71,-0.71l1.24,1.24c0.78,0.78 2.05,0.78 2.83,0l1.41,-1.41c0.78,-0.78 0.78,-2.05 0,-2.83L13.84,9.6l0.71,-0.71l1.24,1.24c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18C22.58,6.17 22.58,4.9 21.8,4.12zM5.54,20.38L2,16.85l1.06,-1.06l3.54,3.54L5.54,20.38zM7.66,18.26l-3.54,-3.54l1.06,-1.06l3.54,3.54L7.66,18.26zM17.2,8.72l-3.54,-3.54l1.06,-1.06l3.54,3.54L17.2,8.72zM19.32,6.6l-3.54,-3.54L16.85,2l3.54,3.54L19.32,6.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/save.xml b/compose/material/material/icons/generator/raw-icons/rounded/save.xml
deleted file mode 100644
index e05287f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/save.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.59,3.59c-0.38,-0.38 -0.89,-0.59 -1.42,-0.59L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-2.82,-2.83zM12,19c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM13,9L7,9c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2h6c1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/save_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/save_alt.xml
deleted file mode 100644
index b4e4746..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/save_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13v5c0,0.55 -0.45,1 -1,1L6,19c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM13,12.67l1.88,-1.88c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-3.59,3.59c-0.39,0.39 -1.02,0.39 -1.41,0L7.7,12.2c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L11,12.67L11,4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v8.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/save_as.xml b/compose/material/material/icons/generator/raw-icons/rounded/save_as.xml
deleted file mode 100644
index 0973757..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/save_as.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.41,6.41l-2.83,-2.83C17.21,3.21 16.7,3 16.17,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h7.4l8.6,-8.6V7.83C21,7.3 20.79,6.79 20.41,6.41zM12,18c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,18 12,18zM15,9c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1h7c0.55,0 1,0.45 1,1V9zM19.99,16.25l1.77,1.77l-4.84,4.84C16.82,22.95 16.69,23 16.56,23H15.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v-1.06c0,-0.13 0.05,-0.26 0.15,-0.35L19.99,16.25zM23.25,16.51l-0.85,0.85l-1.77,-1.77l0.85,-0.85c0.2,-0.2 0.51,-0.2 0.71,0l1.06,1.06C23.45,16 23.45,16.32 23.25,16.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/saved_search.xml b/compose/material/material/icons/generator/raw-icons/rounded/saved_search.xml
deleted file mode 100644
index edba027..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/saved_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.73,13.31c1.13,-1.55 1.63,-3.58 0.98,-5.74c-0.68,-2.23 -2.57,-3.98 -4.85,-4.44C6.21,2.2 2.2,6.22 3.14,10.86c0.46,2.29 2.21,4.18 4.44,4.85c2.16,0.65 4.19,0.15 5.74,-0.98l5.56,5.56c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L14.73,13.31zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5S14,7.01 14,9.5S11.99,14 9.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.44l-0.79,-2.44l-0.79,2.44l-2.46,0l2.01,1.59l-0.77,2.47l2.01,-1.53l2.01,1.53l-0.77,-2.47l2.01,-1.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/savings.xml b/compose/material/material/icons/generator/raw-icons/rounded/savings.xml
deleted file mode 100644
index 7ab6614..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/savings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.83,7.5l-2.27,-2.27c0.07,-0.42 0.18,-0.81 0.32,-1.15c0.11,-0.26 0.15,-0.56 0.09,-0.87C17.84,2.49 17.14,1.99 16.4,2c-1.59,0.03 -3,0.81 -3.9,2l-5,0C4.46,4 2,6.46 2,9.5c0,2.25 1.37,7.48 2.08,10.04C4.32,20.4 5.11,21 6.01,21L8,21c1.1,0 2,-0.9 2,-2v0h2v0c0,1.1 0.9,2 2,2l2.01,0c0.88,0 1.66,-0.58 1.92,-1.43l1.25,-4.16l2.14,-0.72c0.41,-0.14 0.68,-0.52 0.68,-0.95V8.5c0,-0.55 -0.45,-1 -1,-1H19.83zM12,9H9C8.45,9 8,8.55 8,8v0c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v0C13,8.55 12.55,9 12,9zM16,11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,10.55 16.55,11 16,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/scale.xml b/compose/material/material/icons/generator/raw-icons/rounded/scale.xml
deleted file mode 100644
index 3434cc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,21c0,0.55 0.45,1 1,1l3.43,0c0.87,0 1.58,-0.75 1.5,-1.62C21.34,14.18 17.4,11.68 14,11V8c3.31,-0.42 6.03,-1.86 7.27,-3.73C21.92,3.3 21.15,2 19.98,2H4.02C2.85,2 2.08,3.3 2.73,4.27C3.97,6.14 6.69,7.58 10,8l0,3c-3.4,0.68 -7.34,3.18 -7.93,9.38C1.99,21.25 2.7,22 3.57,22L7,22c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H4.13c0.93,-6.83 6.65,-7.2 7.87,-7.2s6.94,0.37 7.87,7.2H17C16.45,20 16,20.45 16,21zM11.5,21.94c-0.7,-0.17 -1.27,-0.74 -1.44,-1.44c-0.18,-0.74 0.06,-1.44 0.53,-1.91c0.55,-0.55 2.91,-1.57 4.33,-2.15c0.41,-0.17 0.82,0.24 0.65,0.65c-0.58,1.42 -1.6,3.78 -2.15,4.33C12.95,21.88 12.25,22.12 11.5,21.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/scanner.xml b/compose/material/material/icons/generator/raw-icons/rounded/scanner.xml
deleted file mode 100644
index 44e257c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,10.7L5.15,5.35c-0.52,-0.19 -1.1,0.08 -1.3,0.6 -0.19,0.53 0.08,1.11 0.6,1.3L17.6,12L5,12c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5.5c0,-0.8 -0.5,-1.6 -1.2,-1.8zM7,17L5,17v-2h2v2zM18,17h-8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/scatter_plot.xml b/compose/material/material/icons/generator/raw-icons/rounded/scatter_plot.xml
deleted file mode 100644
index c192675..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/scatter_plot.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,17.6m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/schedule.xml b/compose/material/material/icons/generator/raw-icons/rounded/schedule.xml
deleted file mode 100644
index 07b7ee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/schedule.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM11.78,7h-0.06c-0.4,0 -0.72,0.32 -0.72,0.72v4.72c0,0.35 0.18,0.68 0.49,0.86l4.15,2.49c0.34,0.2 0.78,0.1 0.98,-0.24 0.21,-0.34 0.1,-0.79 -0.25,-0.99l-3.87,-2.3L12.5,7.72c0,-0.4 -0.32,-0.72 -0.72,-0.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/schedule_send.xml b/compose/material/material/icons/generator/raw-icons/rounded/schedule_send.xml
deleted file mode 100644
index ded134b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/schedule_send.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c0.1,0 0.19,0.01 0.28,0.01L4.39,4.58C3.73,4.31 3,4.79 3,5.51v3.71c0,0.46 0.31,0.86 0.76,0.97L11,12l-7.24,1.81C3.31,13.92 3,14.32 3,14.78v3.71c0,0.72 0.73,1.2 1.39,0.92L10,17.05c0,-0.02 0,-0.03 0,-0.05C10,13.14 13.14,10 17,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.29,19l-1.65,-1.65c-0.09,-0.09 -0.15,-0.22 -0.15,-0.35v-2.5c0,-0.28 0.22,-0.5 0.5,-0.5h0c0.28,0 0.5,0.22 0.5,0.5v2.29l1.5,1.5c0.2,0.2 0.2,0.51 0,0.71l0,0C18.8,19.2 18.49,19.2 18.29,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/schema.xml b/compose/material/material/icons/generator/raw-icons/rounded/schema.xml
deleted file mode 100644
index 07479c38..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/schema.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10.5V11h-3v-0.5C11,9.67 10.33,9 9.5,9h-1V7h1C10.33,7 11,6.33 11,5.5v-3C11,1.67 10.33,1 9.5,1h-4C4.67,1 4,1.67 4,2.5v3C4,6.33 4.67,7 5.5,7h1v2h-1C4.67,9 4,9.67 4,10.5v3C4,14.33 4.67,15 5.5,15h1v2h-1C4.67,17 4,17.67 4,18.5v3C4,22.33 4.67,23 5.5,23h4c0.83,0 1.5,-0.67 1.5,-1.5v-3c0,-0.83 -0.67,-1.5 -1.5,-1.5h-1v-2h1c0.83,0 1.5,-0.67 1.5,-1.5V13h3v0.5c0,0.83 0.67,1.5 1.5,1.5h4c0.83,0 1.5,-0.67 1.5,-1.5v-3C21,9.67 20.33,9 19.5,9h-4C14.67,9 14,9.67 14,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/school.xml b/compose/material/material/icons/generator/raw-icons/rounded/school.xml
deleted file mode 100644
index 2d88878..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/school.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13.18v2.81c0,0.73 0.4,1.41 1.04,1.76l5,2.73c0.6,0.33 1.32,0.33 1.92,0l5,-2.73c0.64,-0.35 1.04,-1.03 1.04,-1.76v-2.81l-6.04,3.3c-0.6,0.33 -1.32,0.33 -1.92,0L5,13.18zM11.04,3.52l-8.43,4.6c-0.69,0.38 -0.69,1.38 0,1.76l8.43,4.6c0.6,0.33 1.32,0.33 1.92,0L21,10.09L21,16c0,0.55 0.45,1 1,1s1,-0.45 1,-1L23,9.59c0,-0.37 -0.2,-0.7 -0.52,-0.88l-9.52,-5.19c-0.6,-0.32 -1.32,-0.32 -1.92,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/science.xml b/compose/material/material/icons/generator/raw-icons/rounded/science.xml
deleted file mode 100644
index 9a64074..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/science.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.54,17.73L15,11V5h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H8C7.45,3 7,3.45 7,4s0.45,1 1,1h1v6l-5.54,6.73C3.14,18.12 3,18.56 3,19c0.01,1.03 0.82,2 2,2H19c1.19,0 2,-0.97 2,-2C21,18.56 20.86,18.12 20.54,17.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/score.xml b/compose/material/material/icons/generator/raw-icons/rounded/score.xml
deleted file mode 100644
index 89e02d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,5.75c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75L13.5,8l1.79,-2.69c0.13,-0.19 0.35,-0.31 0.59,-0.31 0.56,0 0.9,0.63 0.59,1.1L15.2,8l1.27,1.9c0.31,0.47 -0.02,1.1 -0.59,1.1 -0.24,0 -0.46,-0.12 -0.59,-0.31L13.5,8v2.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75v-4.5zM7,8.25c0,-0.55 0.45,-1 1,-1h1.5L9.5,6.5L7.75,6.5c-0.41,0 -0.75,-0.34 -0.75,-0.75S7.34,5 7.75,5L10,5c0.55,0 1,0.45 1,1v1.75c0,0.55 -0.45,1 -1,1L8.5,8.75v0.75h1.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75L8,11c-0.55,0 -1,-0.45 -1,-1L7,8.25zM18.74,13.26l-5.03,5.03c-0.39,0.39 -1.02,0.39 -1.41,0L9,15l-2.49,2.49c-0.56,0.56 -1.51,0.16 -1.51,-0.62 0,-0.23 0.09,-0.46 0.26,-0.62l3.03,-3.03c0.39,-0.39 1.02,-0.39 1.41,0L13,16.5l4.49,-4.49c0.56,-0.56 1.51,-0.16 1.51,0.62 0,0.24 -0.09,0.46 -0.26,0.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/scoreboard.xml b/compose/material/material/icons/generator/raw-icons/rounded/scoreboard.xml
deleted file mode 100644
index bb74480..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/scoreboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,13.5H16v-3h1.5V13.5zM16,2c-0.55,0 -1,0.45 -1,1v1H9V3c0,-0.55 -0.45,-1 -1,-1S7,2.45 7,3v1H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2h-3V3C17,2.45 16.55,2 16,2zM9.5,14.25C9.5,14.66 9.16,15 8.75,15H6c-0.55,0 -1,-0.45 -1,-1v-1.5c0,-0.55 0.45,-1 1,-1h2v-1H5.75C5.34,10.5 5,10.16 5,9.75S5.34,9 5.75,9H8.5c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1h-2v1h2.25C9.16,13.5 9.5,13.84 9.5,14.25zM19,14c0,0.55 -0.45,1 -1,1h-2.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H18c0.55,0 1,0.45 1,1V14zM12.75,6.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75S11.59,6 12,6S12.75,6.34 12.75,6.75zM12.75,10.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75S11.59,9.5 12,9.5S12.75,9.84 12.75,10.25zM12.75,13.75c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75S11.59,13 12,13S12.75,13.34 12.75,13.75zM12.75,17.25c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75S11.59,16.5 12,16.5S12.75,16.84 12.75,17.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_landscape.xml b/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_landscape.xml
deleted file mode 100644
index 9b7b9da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5H3C1.9,5 1.01,5.9 1.01,7L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7C23,5.9 22.1,5 21,5zM18,17H6V7h12V17zM14,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C15,11.45 14.55,11 14,11zM13,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_portrait.xml b/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_portrait.xml
deleted file mode 100644
index b85a0f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_portrait.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,1.99 2,1.99L17,23c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C15,11.45 14.55,11 14,11zM13,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_rotation.xml b/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_rotation.xml
deleted file mode 100644
index 649eced..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screen_lock_rotation.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.41,11.36l-0.35,-0.35c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L19,12.77l-4.24,4.24L6.98,9.23l4.24,-4.24l0.35,0.35c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-0.35,-0.36c-0.79,-0.79 -2.03,-0.79 -2.82,0L5.57,7.82c-0.78,0.78 -0.78,2.05 0,2.83l7.78,7.78c0.79,0.79 2.03,0.79 2.82,0l4.24,-4.24C21.2,13.41 21.2,12.14 20.41,11.36z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.85,17.85C10.54,17.54 10,17.76 10,18.21v1.53c-3.17,-0.82 -5.59,-3.54 -5.95,-6.86C3.99,12.37 3.56,12 3.06,12c-0.6,0 -1.07,0.53 -1,1.12C2.62,18.11 6.87,22 12,22c0.59,0 1.17,-0.06 1.73,-0.16c0.4,-0.07 0.55,-0.56 0.27,-0.85L10.85,17.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h4c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1V3.11c0,-1 -0.68,-1.92 -1.66,-2.08C17.08,0.82 16,1.79 16,3v1c-0.55,0 -1,0.45 -1,1v3C15,8.55 15.45,9 16,9zM17,3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h-2V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screen_rotation.xml b/compose/material/material/icons/generator/raw-icons/rounded/screen_rotation.xml
deleted file mode 100644
index 0fccc2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screen_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.23,1.75c-0.59,-0.59 -1.54,-0.59 -2.12,0L1.75,8.11c-0.59,0.59 -0.59,1.54 0,2.12l12.02,12.02c0.59,0.59 1.54,0.59 2.12,0l6.36,-6.36c0.59,-0.59 0.59,-1.54 0,-2.12L10.23,1.75zM14.12,20.48L3.52,9.88c-0.39,-0.39 -0.39,-1.02 0,-1.41l4.95,-4.95c0.39,-0.39 1.02,-0.39 1.41,0l10.61,10.61c0.39,0.39 0.39,1.02 0,1.41l-4.95,4.95c-0.39,0.38 -1.03,0.38 -1.42,-0.01zM17.61,1.4C16.04,0.57 14.06,-0.03 11.81,0.02c-0.18,0 -0.26,0.22 -0.14,0.35l3.48,3.48 1.33,-1.33c3.09,1.46 5.34,4.37 5.89,7.86 0.06,0.41 0.44,0.69 0.86,0.62 0.41,-0.06 0.69,-0.45 0.62,-0.86 -0.6,-3.8 -2.96,-7 -6.24,-8.74zM8.85,20.16l-1.33,1.33c-3.09,-1.46 -5.34,-4.37 -5.89,-7.86 -0.06,-0.41 -0.44,-0.69 -0.86,-0.62 -0.41,0.06 -0.69,0.45 -0.62,0.86 0.6,3.81 2.96,7.01 6.24,8.75 1.57,0.83 3.55,1.43 5.8,1.38 0.18,0 0.26,-0.22 0.14,-0.35l-3.48,-3.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screen_rotation_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/screen_rotation_alt.xml
deleted file mode 100644
index 288a708..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screen_rotation_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.53,9.29C19.16,9.92 18.71,11 17.82,11c-0.27,0 -0.52,-0.11 -0.71,-0.29L10.4,4L5.41,9H7c0.55,0 1,0.45 1,1s-0.45,1 -1,1H3c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1.59l5,-5c0.78,-0.78 2.05,-0.78 2.83,0L18.53,9.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.47,14.71C4.84,14.08 5.29,13 6.18,13c0.27,0 0.52,0.11 0.71,0.29L13.6,20l4.99,-5H17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-1.59l-5,5c-0.78,0.78 -2.05,0.78 -2.83,0L5.47,14.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screen_search_desktop.xml b/compose/material/material/icons/generator/raw-icons/rounded/screen_search_desktop.xml
deleted file mode 100644
index 2a1f8c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screen_search_desktop.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,19H2c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h20c0.55,0 1,-0.45 1,-1C23,19.45 22.55,19 22,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v11C2,17.1 2.9,18 4,18zM8.59,8.05C9.87,6.18 12.45,6 13.97,7.53c1.18,1.18 1.34,3 0.47,4.36L16,13.44c0.29,0.29 0.29,0.77 0,1.06c-0.29,0.29 -0.77,0.29 -1.06,0l-1.55,-1.55c-1.57,1 -3.76,0.64 -4.87,-1.11C7.79,10.7 7.83,9.17 8.59,8.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,10m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screen_share.xml b/compose/material/material/icons/generator/raw-icons/rounded/screen_share.xml
deleted file mode 100644
index fbb60d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.89,2 2,2L1,18c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h22c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3zM13,14.47v-2.19c-2.78,0 -4.61,0.85 -6,2.72 0.56,-2.67 2.11,-5.33 6,-5.87L13,7l3.61,3.36c0.21,0.2 0.21,0.53 0,0.73L13,14.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screenshot.xml b/compose/material/material/icons/generator/raw-icons/rounded/screenshot.xml
deleted file mode 100644
index c982101..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screenshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM9.5,8.5h1.75C11.66,8.5 12,8.16 12,7.75v0C12,7.34 11.66,7 11.25,7h-2.5C8.34,7 8,7.34 8,7.75v2.5C8,10.66 8.34,11 8.75,11h0c0.41,0 0.75,-0.34 0.75,-0.75V8.5zM12.75,17h2.5c0.41,0 0.75,-0.34 0.75,-0.75v-2.5c0,-0.41 -0.34,-0.75 -0.75,-0.75h0c-0.41,0 -0.75,0.34 -0.75,0.75v1.75h-1.75c-0.41,0 -0.75,0.34 -0.75,0.75l0,0C12,16.66 12.34,17 12.75,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/screenshot_monitor.xml b/compose/material/material/icons/generator/raw-icons/rounded/screenshot_monitor.xml
deleted file mode 100644
index 2e40829..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/screenshot_monitor.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v12c0,1.1 0.89,2 2,2h4v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,7.5h1.75C8.66,7.5 9,7.16 9,6.75v0C9,6.34 8.66,6 8.25,6H6C5.45,6 5,6.45 5,7v2.25C5,9.66 5.34,10 5.75,10h0C6.16,10 6.5,9.66 6.5,9.25V7.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.25,12L18.25,12c-0.41,0 -0.75,0.34 -0.75,0.75v1.75h-1.75c-0.41,0 -0.75,0.34 -0.75,0.75v0c0,0.41 0.34,0.75 0.75,0.75H18c0.55,0 1,-0.45 1,-1v-2.25C19,12.34 18.66,12 18.25,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/scuba_diving.xml b/compose/material/material/icons/generator/raw-icons/rounded/scuba_diving.xml
deleted file mode 100644
index 9fa2320..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/scuba_diving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S1,14.1 1,13zM8.89,10.11l3.56,-0.95c0.53,-0.14 0.85,-0.69 0.71,-1.22L12.9,6.97c-0.14,-0.53 -0.69,-0.85 -1.22,-0.71L8.11,7.21c-0.8,0.21 -1.28,1.04 -1.06,1.84l0,0C7.27,9.85 8.09,10.33 8.89,10.11zM22.52,2.52c-0.29,-0.29 -0.75,-0.29 -1.04,0L19,5l-2,4l-9.48,2.87c-0.82,0.2 -1.39,0.89 -1.5,1.68L5.24,18L3,21c-0.33,0.44 -0.24,1.07 0.2,1.4c0.44,0.33 1.07,0.24 1.4,-0.2L7,19l1.14,-3.14l5.57,-1.77c0.19,-0.06 0.38,-0.15 0.54,-0.27l4.2,-2.94c0.36,-0.25 0.62,-0.61 0.75,-1.02L20.5,5.9l2.06,-2.38C22.81,3.22 22.79,2.79 22.52,2.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sd.xml b/compose/material/material/icons/generator/raw-icons/rounded/sd.xml
deleted file mode 100644
index f189079..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sd.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2,4.9 2,6v12c0,1.1 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM13,9h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-4V9zM9.5,13.5v-1H7c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H9.5v-0.5h-2v1H10c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-1h1.5v0.5H9.5zM14.5,13.5h2v-3h-2V13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sd_card.xml b/compose/material/material/icons/generator/raw-icons/rounded/sd_card.xml
deleted file mode 100644
index 38e9552..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sd_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-7.17c-0.53,0 -1.04,0.21 -1.42,0.59L4.6,7.42c-0.37,0.37 -0.6,0.88 -0.6,1.4L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM11,8c-0.55,0 -1,-0.45 -1,-1L10,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM14,8c-0.55,0 -1,-0.45 -1,-1L13,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM17,8c-0.55,0 -1,-0.45 -1,-1L16,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sd_card_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/sd_card_alert.xml
deleted file mode 100644
index 7228ccb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sd_card_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-7.17c-0.53,0 -1.04,0.21 -1.42,0.59L4.6,7.42c-0.37,0.37 -0.58,0.88 -0.58,1.4L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM13,17h-2v-2h2v2zM12,13c-0.55,0 -1,-0.45 -1,-1L11,9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sd_storage.xml b/compose/material/material/icons/generator/raw-icons/rounded/sd_storage.xml
deleted file mode 100644
index 38e9552..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sd_storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-7.17c-0.53,0 -1.04,0.21 -1.42,0.59L4.6,7.42c-0.37,0.37 -0.6,0.88 -0.6,1.4L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM11,8c-0.55,0 -1,-0.45 -1,-1L10,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM14,8c-0.55,0 -1,-0.45 -1,-1L13,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM17,8c-0.55,0 -1,-0.45 -1,-1L16,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/search.xml b/compose/material/material/icons/generator/raw-icons/rounded/search.xml
deleted file mode 100644
index c1818d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27c1.2,-1.4 1.82,-3.31 1.48,-5.34 -0.47,-2.78 -2.79,-5 -5.59,-5.34 -4.23,-0.52 -7.79,3.04 -7.27,7.27 0.34,2.8 2.56,5.12 5.34,5.59 2.03,0.34 3.94,-0.28 5.34,-1.48l0.27,0.28v0.79l4.25,4.25c0.41,0.41 1.08,0.41 1.49,0 0.41,-0.41 0.41,-1.08 0,-1.49L15.5,14zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/search_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/search_off.xml
deleted file mode 100644
index 34e35b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/search_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27c1.2,-1.4 1.82,-3.31 1.48,-5.34c-0.47,-2.78 -2.79,-4.99 -5.58,-5.34C6.54,2.58 3.3,5.38 3.03,9h2.02c0.24,-2.12 1.92,-3.8 4.06,-3.98C11.65,4.8 14,6.95 14,9.5c0,2.49 -2.01,4.5 -4.5,4.5c-0.17,0 -0.33,-0.03 -0.5,-0.05l0,2.02c0,0 0,0 0.01,0.01c1.8,0.13 3.47,-0.47 4.72,-1.55L14,14.71v0.79l4.25,4.25c0.41,0.41 1.08,0.41 1.49,0l0,0c0.41,-0.41 0.41,-1.08 0,-1.49L15.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.12,11.17L4,13.29l-2.12,-2.12c-0.2,-0.2 -0.51,-0.2 -0.71,0l0,0c-0.2,0.2 -0.2,0.51 0,0.71L3.29,14l-2.12,2.12c-0.2,0.2 -0.2,0.51 0,0.71l0,0c0.2,0.2 0.51,0.2 0.71,0L4,14.71l2.12,2.12c0.2,0.2 0.51,0.2 0.71,0l0,0c0.2,-0.2 0.2,-0.51 0,-0.71L4.71,14l2.12,-2.12c0.2,-0.2 0.2,-0.51 0,-0.71l0,0C6.63,10.98 6.32,10.98 6.12,11.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/security.xml b/compose/material/material/icons/generator/raw-icons/rounded/security.xml
deleted file mode 100644
index 43954d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/security.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.19,1.36l-7,3.11C3.47,4.79 3,5.51 3,6.3V11c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12V6.3c0,-0.79 -0.47,-1.51 -1.19,-1.83l-7,-3.11c-0.51,-0.23 -1.11,-0.23 -1.62,0zM12,11.99h7c-0.53,4.12 -3.28,7.79 -7,8.94V12H5V6.3l7,-3.11v8.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/security_update.xml b/compose/material/material/icons/generator/raw-icons/rounded/security_update.xml
deleted file mode 100644
index f17c1de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM14.79,12.21H13V9c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3.21H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79C15.46,12.75 15.24,12.21 14.79,12.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/security_update_good.xml b/compose/material/material/icons/generator/raw-icons/rounded/security_update_good.xml
deleted file mode 100644
index fe70453..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM10.34,14.29c0.39,0.39 1.02,0.39 1.41,0l3.54,-3.54c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2.83,2.83l-0.71,-0.71c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L10.34,14.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/rounded/security_update_warning.xml
deleted file mode 100644
index 53a49df..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c0.55,0 1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4C11,12.55 11.45,13 12,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5.01,1.9 5.01,3v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/segment.xml b/compose/material/material/icons/generator/raw-icons/rounded/segment.xml
deleted file mode 100644
index db23a78..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/segment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18h10c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H10c-0.55,0 -1,0.45 -1,1v0C9,17.55 9.45,18 10,18zM3,7L3,7c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4C3.45,6 3,6.45 3,7zM10,13h10c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H10c-0.55,0 -1,0.45 -1,1v0C9,12.55 9.45,13 10,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/select_all.xml b/compose/material/material/icons/generator/raw-icons/rounded/select_all.xml
deleted file mode 100644
index 4e8aecd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/select_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h2L5,3c-1.1,0 -2,0.9 -2,2zM3,13h2v-2L3,11v2zM7,21h2v-2L7,19v2zM3,9h2L5,7L3,7v2zM13,3h-2v2h2L13,3zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM5,21v-2L3,19c0,1.1 0.9,2 2,2zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM11,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2zM19,9h2L21,7h-2v2zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM8,17h8c0.55,0 1,-0.45 1,-1L17,8c0,-0.55 -0.45,-1 -1,-1L8,7c-0.55,0 -1,0.45 -1,1v8c0,0.55 0.45,1 1,1zM9,9h6v6L9,15L9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/self_improvement.xml b/compose/material/material/icons/generator/raw-icons/rounded/self_improvement.xml
deleted file mode 100644
index ecb94f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/self_improvement.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14.94L21,14.94c0,-0.5 -0.36,-0.93 -0.85,-0.98c-1.88,-0.21 -3.49,-1.13 -4.75,-2.63l-1.34,-1.6C13.68,9.26 13.12,9 12.53,9h-1.05c-0.59,0 -1.15,0.26 -1.53,0.72l-1.34,1.6c-1.25,1.5 -2.87,2.42 -4.75,2.63C3.36,14.01 3,14.44 3,14.94v0c0,0.6 0.53,1.07 1.13,1c2.3,-0.27 4.32,-1.39 5.87,-3.19V15l-3.76,1.5c-0.65,0.26 -1.16,0.83 -1.23,1.53C4.91,19.1 5.74,20 6.79,20H9v-0.5c0,-1.38 1.12,-2.5 2.5,-2.5h3c0.28,0 0.5,0.22 0.5,0.5S14.78,18 14.5,18h-3c-0.83,0 -1.5,0.67 -1.5,1.5V20l7.1,0c0.85,0 1.65,-0.54 1.85,-1.37c0.21,-0.89 -0.27,-1.76 -1.08,-2.08L14,15v-2.25c1.56,1.8 3.57,2.91 5.87,3.19C20.47,16 21,15.54 21,14.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sell.xml b/compose/material/material/icons/generator/raw-icons/rounded/sell.xml
deleted file mode 100644
index b6dfa29..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.41l-8.83,-8.83C12.21,2.21 11.7,2 11.17,2H4C2.9,2 2,2.9 2,4v7.17c0,0.53 0.21,1.04 0.59,1.41l8.83,8.83c0.78,0.78 2.05,0.78 2.83,0l7.17,-7.17C22.2,13.46 22.2,12.2 21.41,11.41zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5S7.33,8 6.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/send.xml b/compose/material/material/icons/generator/raw-icons/rounded/send.xml
deleted file mode 100644
index ae931b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/send.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4,20.4l17.45,-7.48c0.81,-0.35 0.81,-1.49 0,-1.84L3.4,3.6c-0.66,-0.29 -1.39,0.2 -1.39,0.91L2,9.12c0,0.5 0.37,0.93 0.87,0.99L17,12 2.87,13.88c-0.5,0.07 -0.87,0.5 -0.87,1l0.01,4.61c0,0.71 0.73,1.2 1.39,0.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/send_and_archive.xml b/compose/material/material/icons/generator/raw-icons/rounded/send_and_archive.xml
deleted file mode 100644
index fe9f28b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/send_and_archive.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM19.15,17.85l-1.79,1.79c-0.2,0.2 -0.51,0.2 -0.71,0l-1.79,-1.79C14.54,17.54 14.76,17 15.21,17h1.29v-2.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V17h1.29C19.24,17 19.46,17.54 19.15,17.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c0.1,0 0.19,0.01 0.28,0.01L3,4v6l8,2l-8,2v6l7,-2.95c0,-0.02 0,-0.03 0,-0.05C10,13.13 13.13,10 17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/send_time_extension.xml b/compose/material/material/icons/generator/raw-icons/rounded/send_time_extension.xml
deleted file mode 100644
index 1b306e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/send_time_extension.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H5.01c-1.1,0 -2,0.9 -2,2v3.8C5.7,9.8 6,11.96 6,12.5c0,0.54 -0.29,2.7 -3,2.7V19c0,1.1 0.9,2 2,2h3.8c0,-2.16 1.37,-2.78 2.2,-2.94v-9.3l9,4.5V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l0,4l4,1l-4,1l0,4l10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/send_to_mobile.xml b/compose/material/material/icons/generator/raw-icons/rounded/send_to_mobile.xml
deleted file mode 100644
index 71da50e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/send_to_mobile.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v0c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V3c0,-1.1 -0.9,-2 -2,-2L7,1.01C5.9,1.01 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-3c0,-0.55 -0.45,-1 -1,-1h0C17.45,17 17,17.45 17,18L17,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.65,11.65l-2.79,-2.79C18.54,8.54 18,8.76 18,9.21V11h-4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79C21.84,12.16 21.84,11.84 21.65,11.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sensor_door.xml b/compose/material/material/icons/generator/raw-icons/rounded/sensor_door.xml
deleted file mode 100644
index 4567c47..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sensor_door.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM15.5,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5S17,11.17 17,12S16.33,13.5 15.5,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sensor_occupied.xml b/compose/material/material/icons/generator/raw-icons/rounded/sensor_occupied.xml
deleted file mode 100644
index b61af4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sensor_occupied.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3S9,6.34 9,8S10.34,11 12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.84,0 -3.56,0.5 -5.03,1.37C6.36,13.73 6,14.39 6,15.09L6,16c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1l0,-0.91c0,-0.7 -0.36,-1.36 -0.97,-1.72C15.56,12.5 13.84,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.11,7.79L22.11,7.79c0.55,-0.23 0.78,-0.88 0.5,-1.41c-1.13,-2.12 -2.87,-3.86 -4.99,-4.99c-0.52,-0.28 -1.17,-0.04 -1.4,0.5v0c-0.19,0.47 -0.01,1.02 0.43,1.25c1.79,0.94 3.26,2.42 4.21,4.21C21.09,7.8 21.64,7.98 22.11,7.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.79,1.89L7.79,1.89c-0.23,-0.55 -0.88,-0.78 -1.4,-0.5C4.27,2.52 2.52,4.26 1.4,6.38c-0.28,0.52 -0.05,1.18 0.5,1.41l0,0c0.47,0.2 1.02,0.01 1.25,-0.43c0.94,-1.79 2.42,-3.26 4.21,-4.21C7.8,2.91 7.98,2.36 7.79,1.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.89,16.21L1.89,16.21c-0.55,0.23 -0.78,0.88 -0.5,1.4c1.13,2.12 2.87,3.87 5,5c0.52,0.28 1.17,0.04 1.4,-0.5l0,0c0.19,-0.47 0.01,-1.02 -0.43,-1.25c-1.79,-0.94 -3.26,-2.42 -4.21,-4.21C2.91,16.2 2.36,16.02 1.89,16.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.21,22.11L16.21,22.11c0.23,0.55 0.88,0.78 1.4,0.5c2.12,-1.13 3.87,-2.87 5,-5c0.28,-0.52 0.04,-1.17 -0.5,-1.4h0c-0.47,-0.19 -1.02,-0.01 -1.25,0.43c-0.94,1.79 -2.42,3.26 -4.21,4.21C16.2,21.09 16.02,21.64 16.21,22.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sensor_window.xml b/compose/material/material/icons/generator/raw-icons/rounded/sensor_window.xml
deleted file mode 100644
index bffa14dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sensor_window.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v16H6V4H18M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2L18,2zM7,19h10v-6H7V19zM10,10h4v1h3V5H7v6h3V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sensors.xml b/compose/material/material/icons/generator/raw-icons/rounded/sensors.xml
deleted file mode 100644
index eff2ad5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sensors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.54,8.54c0.35,0.35 0.37,0.88 0.1,1.29C8.24,10.45 8,11.2 8,12c0,0.8 0.24,1.55 0.64,2.17c0.27,0.41 0.24,0.95 -0.11,1.29c-0.43,0.43 -1.17,0.4 -1.51,-0.11C6.38,14.4 6,13.24 6,12c0,-1.21 0.36,-2.33 0.97,-3.28C7.33,8.18 8.08,8.08 8.54,8.54zM15.46,15.46c0.43,0.43 1.17,0.4 1.51,-0.11C17.62,14.4 18,13.24 18,12c0,-1.24 -0.38,-2.4 -1.03,-3.36c-0.34,-0.5 -1.08,-0.54 -1.51,-0.11c-0.35,0.35 -0.37,0.88 -0.11,1.29C15.76,10.45 16,11.2 16,12c0,0.8 -0.24,1.55 -0.64,2.17C15.09,14.58 15.12,15.12 15.46,15.46zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM18.32,18.32c0.42,0.42 1.12,0.39 1.5,-0.08C21.18,16.53 22,14.36 22,12s-0.82,-4.53 -2.18,-6.24c-0.37,-0.47 -1.07,-0.5 -1.5,-0.08c-0.36,0.36 -0.4,0.92 -0.08,1.32c1.1,1.37 1.76,3.11 1.76,5s-0.66,3.63 -1.76,5C17.92,17.39 17.96,17.96 18.32,18.32zM5.68,5.68c-0.42,-0.42 -1.12,-0.39 -1.5,0.08C2.82,7.47 2,9.64 2,12s0.82,4.53 2.18,6.24c0.37,0.47 1.07,0.5 1.5,0.08c0.36,-0.36 0.4,-0.92 0.08,-1.32C4.66,15.63 4,13.89 4,12s0.66,-3.63 1.76,-5C6.08,6.61 6.04,6.04 5.68,5.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sensors_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/sensors_off.xml
deleted file mode 100644
index 50139b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sensors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.68,18.32c-0.42,0.42 -1.12,0.39 -1.5,-0.08C2.82,16.53 2,14.36 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97c0.39,0.39 0.39,1.02 0,1.41s-1.02,0.39 -1.41,0L8.14,10.96C8.05,11.29 8,11.64 8,12c0,0.8 0.24,1.55 0.64,2.17c0.27,0.41 0.24,0.94 -0.1,1.29c-0.43,0.43 -1.17,0.4 -1.51,-0.11C6.38,14.4 6,13.24 6,12c0,-0.93 0.21,-1.8 0.58,-2.59L5.11,7.94C4.4,9.13 4,10.52 4,12c0,1.89 0.66,3.63 1.76,5C6.08,17.39 6.04,17.96 5.68,18.32zM15.46,8.54c-0.35,0.35 -0.37,0.88 -0.11,1.29C15.76,10.45 16,11.2 16,12c0,0.36 -0.05,0.71 -0.14,1.04l1.55,1.55C17.79,13.8 18,12.93 18,12c0,-1.24 -0.38,-2.4 -1.03,-3.36C16.63,8.14 15.9,8.1 15.46,8.54zM18.32,5.68c-0.36,0.36 -0.4,0.92 -0.08,1.32c1.1,1.37 1.76,3.11 1.76,5c0,1.48 -0.4,2.87 -1.11,4.06l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-2.36 -0.82,-4.53 -2.18,-6.24C19.44,5.29 18.74,5.26 18.32,5.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/rounded/sentiment_dissatisfied.xml
deleted file mode 100644
index e1d439d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_dissatisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,14c-1.9,0 -3.63,0.97 -4.65,2.58 -0.22,0.35 -0.11,0.81 0.24,1.03 0.35,0.22 0.81,0.11 1.03,-0.24 0.74,-1.18 2,-1.88 3.38,-1.88s2.64,0.7 3.38,1.88c0.14,0.23 0.39,0.35 0.64,0.35 0.14,0 0.27,-0.04 0.4,-0.11 0.35,-0.22 0.46,-0.68 0.24,-1.03C15.63,14.96 13.9,14 12,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_neutral.xml b/compose/material/material/icons/generator/raw-icons/rounded/sentiment_neutral.xml
deleted file mode 100644
index 70735fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_neutral.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.75,15.5h4.5c0.41,0 0.75,-0.34 0.75,-0.75s-0.34,-0.75 -0.75,-0.75h-4.5c-0.41,0 -0.75,0.34 -0.75,0.75s0.34,0.75 0.75,0.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_satisfied.xml b/compose/material/material/icons/generator/raw-icons/rounded/sentiment_satisfied.xml
deleted file mode 100644
index 4c8205f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_satisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM16.41,13.89c-0.35,-0.22 -0.82,-0.11 -1.03,0.24 -0.74,1.17 -2,1.87 -3.38,1.87s-2.64,-0.7 -3.38,-1.88c-0.22,-0.35 -0.68,-0.46 -1.03,-0.24 -0.35,0.22 -0.46,0.68 -0.24,1.03C8.37,16.54 10.1,17.5 12,17.5s3.63,-0.97 4.65,-2.58c0.22,-0.35 0.11,-0.81 -0.24,-1.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_satisfied_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/sentiment_satisfied_alt.xml
deleted file mode 100644
index 4c8205f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_satisfied_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM16.41,13.89c-0.35,-0.22 -0.82,-0.11 -1.03,0.24 -0.74,1.17 -2,1.87 -3.38,1.87s-2.64,-0.7 -3.38,-1.88c-0.22,-0.35 -0.68,-0.46 -1.03,-0.24 -0.35,0.22 -0.46,0.68 -0.24,1.03C8.37,16.54 10.1,17.5 12,17.5s3.63,-0.97 4.65,-2.58c0.22,-0.35 0.11,-0.81 -0.24,-1.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_very_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/rounded/sentiment_very_dissatisfied.xml
deleted file mode 100644
index 4db5de0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_very_dissatisfied.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.5c-2.03,0 -3.8,1.11 -4.75,2.75 -0.19,0.33 0.06,0.75 0.44,0.75h8.62c0.38,0 0.63,-0.42 0.44,-0.75 -0.95,-1.64 -2.72,-2.75 -4.75,-2.75zM8.35,11.47l0.53,-0.53 0.53,0.53c0.29,0.29 0.77,0.29 1.06,0 0.29,-0.29 0.29,-0.77 0,-1.06l-0.53,-0.53 0.53,-0.53c0.29,-0.29 0.29,-0.77 0,-1.06 -0.29,-0.29 -0.77,-0.29 -1.06,0l-0.53,0.53 -0.53,-0.53c-0.29,-0.29 -0.77,-0.29 -1.06,0 -0.29,0.29 -0.29,0.77 0,1.06l0.53,0.53 -0.53,0.53c-0.29,0.29 -0.29,0.77 0,1.06 0.29,0.29 0.77,0.29 1.06,0zM11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.65,8.29l-0.53,0.53 -0.53,-0.53c-0.29,-0.29 -0.77,-0.29 -1.06,0 -0.29,0.29 -0.29,0.77 0,1.06l0.53,0.53 -0.53,0.53c-0.29,0.29 -0.29,0.77 0,1.06 0.29,0.29 0.77,0.29 1.06,0l0.53,-0.53 0.53,0.53c0.29,0.29 0.77,0.29 1.06,0 0.29,-0.29 0.29,-0.77 0,-1.06l-0.53,-0.53 0.53,-0.53c0.29,-0.29 0.29,-0.77 0,-1.06 -0.29,-0.29 -0.77,-0.29 -1.06,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_very_satisfied.xml b/compose/material/material/icons/generator/raw-icons/rounded/sentiment_very_satisfied.xml
deleted file mode 100644
index fda446f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sentiment_very_satisfied.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.88,9.94l0.53,0.53c0.29,0.29 0.77,0.29 1.06,0 0.29,-0.29 0.29,-0.77 0,-1.06l-0.88,-0.88c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.89,0.88c-0.29,0.29 -0.29,0.77 0,1.06 0.29,0.29 0.77,0.29 1.06,0l0.53,-0.53zM12,17.5c2.03,0 3.8,-1.11 4.75,-2.75 0.19,-0.33 -0.05,-0.75 -0.44,-0.75L7.69,14c-0.38,0 -0.63,0.42 -0.44,0.75 0.95,1.64 2.72,2.75 4.75,2.75zM13.53,10.47c0.29,0.29 0.77,0.29 1.06,0l0.53,-0.53 0.53,0.53c0.29,0.29 0.77,0.29 1.06,0 0.29,-0.29 0.29,-0.77 0,-1.06l-0.88,-0.88c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.88,0.88c-0.3,0.29 -0.3,0.77 -0.01,1.06zM11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/set_meal.xml b/compose/material/material/icons/generator/raw-icons/rounded/set_meal.xml
deleted file mode 100644
index ad2047c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/set_meal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.3,17.6L3.83,18.46c-0.41,0.02 -0.77,-0.3 -0.79,-0.71l0,0c-0.02,-0.41 0.3,-0.77 0.71,-0.79l16.48,-0.86c0.41,-0.02 0.77,0.3 0.79,0.71v0C21.04,17.22 20.72,17.58 20.3,17.6zM20.25,19.48H3.75C3.34,19.48 3,19.82 3,20.23l0,0c0,0.41 0.34,0.75 0.75,0.75h16.5c0.41,0 0.75,-0.34 0.75,-0.75l0,0C21,19.82 20.66,19.48 20.25,19.48zM22,5v7c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h16C21.1,3 22,3.9 22,5zM19.12,6.09c-1.25,0.27 -2.19,1.11 -2.33,2.14C16.15,7.5 14.06,5.5 10.25,5.5c-3.44,0 -5.48,1.63 -6.31,2.49c-0.28,0.29 -0.28,0.74 0,1.03c0.83,0.86 2.87,2.49 6.31,2.49c3.81,0 5.9,-2 6.54,-2.73c0.14,1.02 1.08,1.86 2.33,2.14c0.46,0.1 0.88,-0.28 0.88,-0.74V6.84C20,6.37 19.57,5.99 19.12,6.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings.xml
deleted file mode 100644
index fb416af..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,12c0,-0.23 -0.01,-0.45 -0.03,-0.68l1.86,-1.41c0.4,-0.3 0.51,-0.86 0.26,-1.3l-1.87,-3.23c-0.25,-0.44 -0.79,-0.62 -1.25,-0.42l-2.15,0.91c-0.37,-0.26 -0.76,-0.49 -1.17,-0.68l-0.29,-2.31C14.8,2.38 14.37,2 13.87,2h-3.73C9.63,2 9.2,2.38 9.14,2.88L8.85,5.19c-0.41,0.19 -0.8,0.42 -1.17,0.68L5.53,4.96c-0.46,-0.2 -1,-0.02 -1.25,0.42L2.41,8.62c-0.25,0.44 -0.14,0.99 0.26,1.3l1.86,1.41C4.51,11.55 4.5,11.77 4.5,12s0.01,0.45 0.03,0.68l-1.86,1.41c-0.4,0.3 -0.51,0.86 -0.26,1.3l1.87,3.23c0.25,0.44 0.79,0.62 1.25,0.42l2.15,-0.91c0.37,0.26 0.76,0.49 1.17,0.68l0.29,2.31C9.2,21.62 9.63,22 10.13,22h3.73c0.5,0 0.93,-0.38 0.99,-0.88l0.29,-2.31c0.41,-0.19 0.8,-0.42 1.17,-0.68l2.15,0.91c0.46,0.2 1,0.02 1.25,-0.42l1.87,-3.23c0.25,-0.44 0.14,-0.99 -0.26,-1.3l-1.86,-1.41C19.49,12.45 19.5,12.23 19.5,12zM12.04,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.97,15.5 12.04,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_accessibility.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_accessibility.xml
deleted file mode 100644
index d458110e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.74,4.96c-0.13,-0.53 -0.67,-0.85 -1.2,-0.73C17.16,4.77 14.49,5 12,5S6.84,4.77 4.46,4.24c-0.54,-0.12 -1.07,0.19 -1.2,0.73L3.24,5.02C3.11,5.56 3.43,6.12 3.97,6.24C5.59,6.61 7.34,6.86 9,7v11c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5h2v5c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V7c1.66,-0.14 3.41,-0.39 5.03,-0.76c0.54,-0.12 0.86,-0.68 0.73,-1.22L20.74,4.96zM12,4c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,4 12,4zM8,24L8,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C7,23.55 7.45,24 8,24zM12,24L12,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C11,23.55 11.45,24 12,24zM16,24L16,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C15,23.55 15.45,24 16,24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_applications.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_applications.xml
deleted file mode 100644
index 8dcf967..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_applications.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.11,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM15.75,12c0,0.22 -0.03,0.42 -0.06,0.63l0.84,0.73c0.18,0.16 0.22,0.42 0.1,0.63l-0.59,1.02c-0.12,0.21 -0.37,0.3 -0.59,0.22l-1.06,-0.36c-0.32,0.27 -0.68,0.48 -1.08,0.63l-0.22,1.09c-0.05,0.23 -0.25,0.4 -0.49,0.4h-1.18c-0.24,0 -0.44,-0.17 -0.49,-0.4l-0.22,-1.09c-0.4,-0.15 -0.76,-0.36 -1.08,-0.63l-1.06,0.36c-0.23,0.08 -0.47,-0.02 -0.59,-0.22l-0.59,-1.02c-0.12,-0.21 -0.08,-0.47 0.1,-0.63l0.84,-0.73C8.28,12.42 8.25,12.22 8.25,12s0.03,-0.42 0.06,-0.63l-0.84,-0.73c-0.18,-0.16 -0.22,-0.42 -0.1,-0.63l0.59,-1.02c0.12,-0.21 0.37,-0.3 0.59,-0.22l1.06,0.36c0.32,-0.27 0.68,-0.48 1.08,-0.63l0.22,-1.09C10.97,7.17 11.17,7 11.41,7h1.18c0.24,0 0.44,0.17 0.49,0.4l0.22,1.09c0.4,0.15 0.76,0.36 1.08,0.63l1.06,-0.36c0.23,-0.08 0.47,0.02 0.59,0.22l0.59,1.02c0.12,0.21 0.08,0.47 -0.1,0.63l-0.84,0.73C15.72,11.58 15.75,11.78 15.75,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_backup_restore.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_backup_restore.xml
deleted file mode 100644
index 265553f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_backup_restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.77,3c-2.65,0.07 -5,1.28 -6.6,3.16L3.85,4.85C3.54,4.54 3,4.76 3,5.21V9.5C3,9.78 3.22,10 3.5,10h4.29c0.45,0 0.67,-0.54 0.35,-0.85L6.59,7.59C7.88,6.02 9.82,5 12,5c4.32,0 7.74,3.94 6.86,8.41c-0.54,2.77 -2.81,4.98 -5.58,5.47c-3.8,0.68 -7.18,-1.74 -8.05,-5.16C5.11,13.3 4.71,13 4.27,13h0c-0.65,0 -1.14,0.61 -0.98,1.23C4.28,18.12 7.8,21 12,21c5.06,0 9.14,-4.17 9,-9.26C20.86,6.86 16.65,2.88 11.77,3zM14,12c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2S14,13.1 14,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_bluetooth.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_bluetooth.xml
deleted file mode 100644
index 86e584f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_bluetooth.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,23m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,23m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,23m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.41,10L17,6.42c0.39,-0.39 0.39,-1.02 0,-1.42l-4.79,-4.79C12.07,0.07 11.89,0 11.71,0C11.32,0 11,0.32 11,0.71v6.88L7.11,3.71c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L10.59,10l-4.89,4.89c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L11,12.41v6.88c0,0.39 0.32,0.71 0.71,0.71c0.19,0 0.37,-0.07 0.5,-0.21L17,15c0.39,-0.39 0.39,-1.02 0,-1.42L13.41,10zM13,3.83l1.88,1.88L13,7.59V3.83zM13,16.17v-3.76l1.88,1.88L13,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_brightness.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_brightness.xml
deleted file mode 100644
index 86abf8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_brightness.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM17.15,12.35L16,13.5v2c0,0.28 -0.22,0.5 -0.5,0.5h-2l-1.15,1.15c-0.2,0.2 -0.51,0.2 -0.71,0L10.5,16h-2C8.22,16 8,15.78 8,15.5v-2l-1.15,-1.15c-0.2,-0.2 -0.2,-0.51 0,-0.71L8,10.5v-2C8,8.22 8.22,8 8.5,8h2l1.15,-1.15c0.2,-0.2 0.51,-0.2 0.71,0L13.5,8h2C15.78,8 16,8.22 16,8.5v2l1.15,1.15C17.34,11.84 17.34,12.16 17.15,12.35zM12,9v6c1.66,0 3,-1.34 3,-3C15,10.34 13.66,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_cell.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_cell.xml
deleted file mode 100644
index 584259c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,24L8,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C7,23.55 7.45,24 8,24zM12,24L12,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C11,23.55 11.45,24 12,24zM16,24L16,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C15,23.55 15.45,24 16,24zM16,0.01L8,0C6.9,0 6,0.9 6,2v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V2C18,0.9 17.1,0.01 16,0.01zM16,16H8V4h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_ethernet.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_ethernet.xml
deleted file mode 100644
index 18d8404..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_ethernet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.71,6.71L7.71,6.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.59,4.59c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.83,12l3.88,-3.88C8.09,7.73 8.09,7.09 7.71,6.71zM16.29,6.71L16.29,6.71c-0.39,0.39 -0.39,1.02 0,1.41L20.17,12l-3.88,3.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41l-4.59,-4.59C17.32,6.32 16.68,6.32 16.29,6.71zM8,13L8,13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C7,12.55 7.45,13 8,13zM12,13L12,13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C11,12.55 11.45,13 12,13zM16,11L16,11c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v0C17,11.45 16.55,11 16,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_antenna.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_input_antenna.xml
deleted file mode 100644
index 3d6315f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_antenna.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-3.48,0 -6.37,2.54 -6.91,5.87c-0.1,0.59 0.39,1.13 1,1.13c0.49,0 0.9,-0.36 0.98,-0.85C7.48,8.79 9.53,7 12,7s4.52,1.79 4.93,4.15c0.08,0.49 0.49,0.85 0.98,0.85c0.61,0 1.09,-0.54 0.99,-1.13C18.37,7.54 15.48,5 12,5zM13,14.29c1.07,-0.48 1.76,-1.66 1.41,-2.99c-0.22,-0.81 -0.87,-1.47 -1.68,-1.7C11.04,9.12 9.5,10.38 9.5,12c0,1.02 0.62,1.9 1.5,2.29v3.3l-2.71,2.7c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l2.3,-2.3l2.3,2.3c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L13,17.59V14.29zM12,1C6.3,1 1.61,5.34 1.05,10.9C1,11.49 1.46,12 2.05,12c0.51,0 0.94,-0.38 0.99,-0.88C3.48,6.56 7.33,3 12,3s8.52,3.56 8.96,8.12c0.05,0.5 0.48,0.88 0.99,0.88c0.59,0 1.06,-0.51 1,-1.1C22.39,5.34 17.7,1 12,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_component.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_input_component.xml
deleted file mode 100644
index f24fca3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_component.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1S3,1.45 3,2v4H2C1.45,6 1,6.45 1,7v5h6V7c0,-0.55 -0.45,-1 -1,-1H5V2zM9,16c0,1.3 0.84,2.4 2,2.82V22c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3.18c1.16,-0.41 2,-1.51 2,-2.82v-2H9V16zM1,16c0,1.3 0.84,2.4 2,2.82V22c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3.18C6.16,18.4 7,17.3 7,16v-2H1V16zM21,6V2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-1c-0.55,0 -1,0.45 -1,1v5h6V7c0,-0.55 -0.45,-1 -1,-1H21zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-1C9.45,6 9,6.45 9,7v5h6V7c0,-0.55 -0.45,-1 -1,-1h-1V2zM17,16c0,1.3 0.84,2.4 2,2.82V22c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3.18c1.16,-0.41 2,-1.51 2,-2.82v-2h-6V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_composite.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_input_composite.xml
deleted file mode 100644
index f24fca3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_composite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1S3,1.45 3,2v4H2C1.45,6 1,6.45 1,7v5h6V7c0,-0.55 -0.45,-1 -1,-1H5V2zM9,16c0,1.3 0.84,2.4 2,2.82V22c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3.18c1.16,-0.41 2,-1.51 2,-2.82v-2H9V16zM1,16c0,1.3 0.84,2.4 2,2.82V22c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3.18C6.16,18.4 7,17.3 7,16v-2H1V16zM21,6V2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-1c-0.55,0 -1,0.45 -1,1v5h6V7c0,-0.55 -0.45,-1 -1,-1H21zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-1C9.45,6 9,6.45 9,7v5h6V7c0,-0.55 -0.45,-1 -1,-1h-1V2zM17,16c0,1.3 0.84,2.4 2,2.82V22c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3.18c1.16,-0.41 2,-1.51 2,-2.82v-2h-6V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_hdmi.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_input_hdmi.xml
deleted file mode 100644
index 32ff8f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_hdmi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7V4c0,-1.1 -0.9,-2 -2,-2H8C6.9,2 6,2.9 6,4v3C5.45,7 5,7.45 5,8v4.7c0,0.2 0.06,0.39 0.17,0.55L8,19v2c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-2l2.83,-5.75C18.94,13.09 19,12.89 19,12.7V8C19,7.45 18.55,7 18,7zM16,7h-2V5.5C14,5.22 13.78,5 13.5,5S13,5.22 13,5.5V7h-2V5.5C11,5.22 10.78,5 10.5,5S10,5.22 10,5.5V7H8V4h8V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_svideo.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_input_svideo.xml
deleted file mode 100644
index 46a45d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_input_svideo.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7.5C15,6.67 14.33,6 13.5,6h-3C9.67,6 9,6.67 9,7.5S9.67,9 10.5,9h3C14.33,9 15,8.33 15,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_overscan.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_overscan.xml
deleted file mode 100644
index adb6c77..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_overscan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,7L10,9h4L12.01,7zM17,10v4l2,-1.99L17,10zM7,10l-2,2.01L7,14V10zM14,15h-4l2.01,2L14,15zM20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18.01H4V5.99h16V18.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_phone.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_phone.xml
deleted file mode 100644
index 9065947..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_phone.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.63,14.4l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3L4,3C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.56,0.03 1.03,-0.44 1.03,-1l0,-4.15c0,-0.48 -0.34,-0.89 -0.8,-0.98l-3.67,-0.73C16.2,14.07 15.86,14.17 15.63,14.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_power.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_power.xml
deleted file mode 100644
index 5b9cedf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,24L8,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C7,23.55 7.45,24 8,24zM12,24L12,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C11,23.55 11.45,24 12,24zM12,2c-0.55,0 -1,0.45 -1,1v8c0,0.55 0.45,1 1,1s1,-0.45 1,-1V3C13,2.45 12.55,2 12,2zM15.94,5.06l-0.02,0.02C15.51,5.49 15.56,6.16 16,6.54c1.51,1.34 2.33,3.43 1.88,5.7c-0.46,2.28 -2.29,4.14 -4.56,4.62C9.43,17.69 6,14.74 6,11c0,-1.78 0.78,-3.37 2.01,-4.47c0.43,-0.39 0.47,-1.04 0.07,-1.45L8.06,5.06C7.69,4.69 7.1,4.67 6.7,5.02c-2.01,1.77 -3.12,4.53 -2.56,7.52c0.59,3.15 3.11,5.7 6.26,6.31c5.12,0.99 9.6,-2.9 9.6,-7.85c0,-2.38 -1.05,-4.52 -2.71,-5.99C16.9,4.67 16.31,4.69 15.94,5.06zM16,24L16,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C15,23.55 15.45,24 16,24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_remote.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_remote.xml
deleted file mode 100644
index e33895b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_remote.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9H9c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1V10C16,9.45 15.55,9 15,9zM12,14.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25S12.69,14.25 12,14.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.82,6.82L7.82,6.82c0.35,0.35 0.9,0.38 1.3,0.1C9.93,6.34 10.93,6 12,6c1.07,0 2.07,0.34 2.88,0.91c0.4,0.28 0.95,0.26 1.3,-0.09l0,0c0.43,-0.43 0.39,-1.15 -0.09,-1.5C14.94,4.49 13.53,4 12,4c-1.53,0 -2.94,0.49 -4.09,1.32C7.42,5.67 7.39,6.39 7.82,6.82z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,0C9.36,0 6.94,0.93 5.05,2.47c-0.46,0.38 -0.5,1.07 -0.08,1.49l0,0c0.36,0.36 0.93,0.39 1.32,0.07C7.84,2.77 9.83,2 12,2c2.17,0 4.16,0.77 5.7,2.04c0.39,0.32 0.96,0.29 1.32,-0.07l0,0c0.42,-0.42 0.38,-1.11 -0.08,-1.49C17.06,0.93 14.64,0 12,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_suggest.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_suggest.xml
deleted file mode 100644
index 072b6a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_suggest.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.04,7.99l-0.63,-1.4l-1.4,-0.63c-0.39,-0.18 -0.39,-0.73 0,-0.91l1.4,-0.63l0.63,-1.4c0.18,-0.39 0.73,-0.39 0.91,0l0.63,1.4l1.4,0.63c0.39,0.18 0.39,0.73 0,0.91l-1.4,0.63l-0.63,1.4C18.78,8.38 18.22,8.38 18.04,7.99zM21.28,12.72L20.96,12c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.32,0.72L19,13.04c-0.39,0.18 -0.39,0.73 0,0.91l0.72,0.32L20.04,15c0.18,0.39 0.73,0.39 0.91,0l0.32,-0.72L22,13.96c0.39,-0.18 0.39,-0.73 0,-0.91L21.28,12.72zM16.24,14.37l1.23,0.93c0.4,0.3 0.51,0.86 0.26,1.3l-1.62,2.8c-0.25,0.44 -0.79,0.62 -1.25,0.42l-1.43,-0.6c-0.2,0.13 -0.42,0.26 -0.64,0.37l-0.19,1.54c-0.06,0.5 -0.49,0.88 -0.99,0.88H8.38c-0.5,0 -0.93,-0.38 -0.99,-0.88L7.2,19.59c-0.22,-0.11 -0.43,-0.23 -0.64,-0.37l-1.43,0.6c-0.46,0.2 -1,0.02 -1.25,-0.42l-1.62,-2.8c-0.25,-0.44 -0.14,-0.99 0.26,-1.3l1.23,-0.93C3.75,14.25 3.75,14.12 3.75,14s0,-0.25 0.01,-0.37L2.53,12.7c-0.4,-0.3 -0.51,-0.86 -0.26,-1.3l1.62,-2.8c0.25,-0.44 0.79,-0.62 1.25,-0.42l1.43,0.6c0.2,-0.13 0.42,-0.26 0.64,-0.37l0.19,-1.54C7.45,6.38 7.88,6 8.38,6h3.23c0.5,0 0.93,0.38 0.99,0.88l0.19,1.54c0.22,0.11 0.43,0.23 0.64,0.37l1.43,-0.6c0.46,-0.2 1,-0.02 1.25,0.42l1.62,2.8c0.25,0.44 0.14,0.99 -0.26,1.3l-1.23,0.93c0.01,0.12 0.01,0.24 0.01,0.37S16.25,14.25 16.24,14.37zM13,14c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3S13,15.66 13,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_system_daydream.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_system_daydream.xml
deleted file mode 100644
index 4435521..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_system_daydream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6.5c1.38,0 2.5,-1.12 2.5,-2.5S16.88,11 15.5,11h-0.05c-0.24,-1.69 -1.69,-3 -3.45,-3 -1.4,0 -2.6,0.83 -3.16,2.02h-0.16C7.17,10.18 6,11.45 6,13c0,1.66 1.34,3 3,3zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM20,19.01L4,19.01c-0.55,0 -1,-0.45 -1,-1L3,5.99c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v12.02c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/settings_voice.xml b/compose/material/material/icons/generator/raw-icons/rounded/settings_voice.xml
deleted file mode 100644
index c39bcc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/settings_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,24L8,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C7,23.55 7.45,24 8,24zM12,24L12,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C11,23.55 11.45,24 12,24zM16,24L16,24c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C15,23.55 15.45,24 16,24zM9,10V4c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v6c0,1.66 -1.34,3 -3,3S9,11.66 9,10zM17.91,10c0.61,0 1.09,0.54 1,1.14c-0.49,3 -2.89,5.34 -5.91,5.78V19c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-2.08c-3.02,-0.44 -5.42,-2.78 -5.91,-5.78c-0.1,-0.6 0.39,-1.14 1,-1.14h0c0.49,0 0.9,0.36 0.98,0.85C7.48,13.21 9.53,15 12,15s4.52,-1.79 4.93,-4.15C17.01,10.36 17.42,10 17.91,10L17.91,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/severe_cold.xml b/compose/material/material/icons/generator/raw-icons/rounded/severe_cold.xml
deleted file mode 100644
index 9fc9352..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/severe_cold.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1V3C21,2.45 20.55,2 20,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.41l3.29,-3.29c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,7.59V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v2.59L8.12,5.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L10,10.41V12H8.41L5.12,8.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L5.59,12H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h2.59l-1.88,1.88c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0L8.41,14H10v1.59l-3.29,3.29c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0L10,18.41V21c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2.59l1.88,1.88c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L12,15.59V14h1.59l3.29,3.29c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L16.41,14H19c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-7V10.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shape_line.xml b/compose/material/material/icons/generator/raw-icons/rounded/shape_line.xml
deleted file mode 100644
index 1007dca..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shape_line.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11c2.76,0 5,-2.24 5,-5S8.76,1 6,1S1,3.24 1,6S3.24,11 6,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-5c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-5C23,14.9 22.1,14 21,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.7C18.11,7.89 18.54,8 19,8c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3s-3,1.35 -3,3c0,0.46 0.11,0.89 0.3,1.29L6.29,16.3C5.89,16.11 5.46,16 5,16c-1.65,0 -3,1.35 -3,3s1.35,3 3,3s3,-1.35 3,-3c0,-0.46 -0.11,-0.89 -0.3,-1.29L17.71,7.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/share.xml b/compose/material/material/icons/generator/raw-icons/rounded/share.xml
deleted file mode 100644
index 17f4f4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92s2.92,-1.31 2.92,-2.92 -1.31,-2.92 -2.92,-2.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/share_location.xml b/compose/material/material/icons/generator/raw-icons/rounded/share_location.xml
deleted file mode 100644
index 438b52e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/share_location.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.02,20.77L13.02,20.77c0,0.64 0.59,1.13 1.21,0.99c1.12,-0.26 2.18,-0.7 3.12,-1.3c0.53,-0.34 0.61,-1.1 0.16,-1.55l0,0c-0.32,-0.32 -0.83,-0.4 -1.21,-0.16c-0.77,0.49 -1.62,0.85 -2.53,1.05C13.32,19.9 13.02,20.31 13.02,20.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.03,12c0,-3.79 2.65,-6.97 6.2,-7.79c0.44,-0.1 0.75,-0.51 0.75,-0.96v0c0,-0.64 -0.6,-1.13 -1.22,-0.98C5.33,3.29 2.03,7.26 2.03,12c0,4.74 3.3,8.71 7.73,9.74c0.62,0.15 1.22,-0.34 1.22,-0.98v0c0,-0.46 -0.31,-0.86 -0.75,-0.96C6.68,18.97 4.03,15.79 4.03,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.79,11L20.79,11c0.64,0 1.13,-0.59 0.99,-1.21c-0.26,-1.12 -0.7,-2.17 -1.3,-3.12c-0.34,-0.54 -1.1,-0.61 -1.55,-0.16l0,0c-0.32,0.32 -0.4,0.83 -0.15,1.21c0.49,0.76 0.85,1.61 1.05,2.53C19.92,10.7 20.33,11 20.79,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.35,3.55c-0.95,-0.6 -2,-1.04 -3.12,-1.3c-0.62,-0.14 -1.21,0.35 -1.21,0.98v0c0,0.45 0.3,0.87 0.74,0.96c0.91,0.2 1.77,0.57 2.53,1.05c0.39,0.24 0.89,0.17 1.21,-0.16l0,0C17.96,4.64 17.89,3.89 17.35,3.55z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,17.49L18.92,17.49c0.45,0.45 1.21,0.38 1.55,-0.16c0.6,-0.94 1.04,-2 1.3,-3.12c0.14,-0.62 -0.35,-1.21 -0.98,-1.21h0c-0.45,0 -0.87,0.3 -0.96,0.74c-0.2,0.91 -0.57,1.77 -1.05,2.53C18.52,16.66 18.6,17.17 18.92,17.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11.1C16,8.61 14.1,7 12,7s-4,1.61 -4,4.1c0,1.51 1.1,3.28 3.31,5.3c0.39,0.36 0.98,0.36 1.38,0C14.9,14.37 16,12.61 16,11.1zM12,12c-0.59,0 -1.07,-0.48 -1.07,-1.07c0,-0.59 0.48,-1.07 1.07,-1.07s1.07,0.48 1.07,1.07C13.07,11.52 12.59,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shield.xml b/compose/material/material/icons/generator/raw-icons/rounded/shield.xml
deleted file mode 100644
index 86af0d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shield.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.3,2.26l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.7c0,4.83 3.13,9.37 7.43,10.75c0.37,0.12 0.77,0.12 1.14,0c4.3,-1.38 7.43,-5.91 7.43,-10.75v-4.7c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25C12.25,2.09 11.75,2.09 11.3,2.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shield_moon.xml b/compose/material/material/icons/generator/raw-icons/rounded/shield_moon.xml
deleted file mode 100644
index 10ba37f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shield_moon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.3,2.26l-6,2.25C4.52,4.81 4,5.55 4,6.39v4.7c0,4.83 3.13,9.37 7.43,10.75c0.37,0.12 0.77,0.12 1.14,0c4.3,-1.38 7.43,-5.91 7.43,-10.75v-4.7c0,-0.83 -0.52,-1.58 -1.3,-1.87l-6,-2.25C12.25,2.09 11.75,2.09 11.3,2.26zM15.97,14.41c-1.84,2.17 -5.21,2.1 -6.96,-0.07c-2.19,-2.72 -0.65,-6.72 2.69,-7.33c0.34,-0.06 0.63,0.27 0.51,0.6c-0.46,1.23 -0.39,2.64 0.32,3.86c0.71,1.22 1.89,1.99 3.18,2.2C16.05,13.72 16.2,14.14 15.97,14.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shop.xml b/compose/material/material/icons/generator/raw-icons/rounded/shop.xml
deleted file mode 100644
index 3ab2e20..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6L16,4c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2L4,6c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2h-4zM10,4h4v2h-4L10,4zM9,17.07L9,9.83c0,-0.38 0.4,-0.62 0.74,-0.44l6.03,3.21c0.33,0.18 0.36,0.65 0.04,0.86l-6.03,4.02c-0.33,0.22 -0.78,-0.01 -0.78,-0.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shop_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/shop_2.xml
deleted file mode 100644
index 94c3b5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shop_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9L2,9c-0.55,0 -1,0.45 -1,1v10c0,1.1 0.9,2 2,2h15c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H3V10C3,9.45 2.55,9 2,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V3c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2H5v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2V5H18zM12,3h4v2h-4V3zM12,14.09V8.91c0,-0.39 0.44,-0.63 0.77,-0.42l4.07,2.59c0.31,0.2 0.31,0.65 0,0.84l-4.07,2.59C12.44,14.72 12,14.48 12,14.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shop_two.xml b/compose/material/material/icons/generator/raw-icons/rounded/shop_two.xml
deleted file mode 100644
index 642a153..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shop_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9c-0.55,0 -1,0.45 -1,1v10c0,1.1 0.9,2 2,2h14c1.11,0 2,-0.89 2,-2L4,20c-0.55,0 -1,-0.45 -1,-1v-9c0,-0.55 -0.45,-1 -1,-1zM18,5L18,3c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2L7,5c-1.1,0 -2,0.9 -2,2v9c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,7c0,-1.1 -0.9,-2 -2,-2h-3zM12,3h4v2h-4L12,3zM12,14.02L12,8.84c0,-0.38 0.41,-0.62 0.74,-0.44l4.07,2.22c0.32,0.18 0.35,0.63 0.05,0.84l-4.07,2.96c-0.33,0.24 -0.79,0.01 -0.79,-0.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shopping_bag.xml b/compose/material/material/icons/generator/raw-icons/rounded/shopping_bag.xml
deleted file mode 100644
index a82c672..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shopping_bag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6h-2c0,-2.21 -1.79,-4 -4,-4S8,3.79 8,6H6C4.9,6 4,6.9 4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8C20,6.9 19.1,6 18,6zM10,10c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V8h2V10zM12,4c1.1,0 2,0.9 2,2h-4C10,4.9 10.9,4 12,4zM16,10c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V8h2V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shopping_basket.xml b/compose/material/material/icons/generator/raw-icons/rounded/shopping_basket.xml
deleted file mode 100644
index 8ee01fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shopping_basket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9h-4.79l-4.39,-6.57c-0.4,-0.59 -1.27,-0.59 -1.66,0L6.77,9H2c-0.55,0 -1,0.45 -1,1 0,0.09 0.01,0.18 0.04,0.27l2.54,9.27c0.23,0.84 1,1.46 1.92,1.46h13c0.92,0 1.69,-0.62 1.93,-1.46l2.54,-9.27L23,10c0,-0.55 -0.45,-1 -1,-1zM11.99,4.79L14.8,9H9.18l2.81,-4.21zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/rounded/shopping_cart.xml
deleted file mode 100644
index 8e442dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM1,3c0,0.55 0.45,1 1,1h1l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h11c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L7,15l1.1,-2h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.37,-0.66 -0.11,-1.48 -0.87,-1.48L5.21,4l-0.67,-1.43c-0.16,-0.35 -0.52,-0.57 -0.9,-0.57L2,2c-0.55,0 -1,0.45 -1,1zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shopping_cart_checkout.xml b/compose/material/material/icons/generator/raw-icons/rounded/shopping_cart_checkout.xml
deleted file mode 100644
index 016cf93..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shopping_cart_checkout.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM19,16c0,-0.55 -0.45,-1 -1,-1H7l1.1,-2h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.24,-6.14c0.25,-0.48 0.08,-1.08 -0.4,-1.34c-0.49,-0.27 -1.1,-0.08 -1.36,0.41L15.55,11H8.53L4.54,2.57C4.38,2.22 4.02,2 3.64,2H2C1.45,2 1,2.45 1,3s0.45,1 1,1h1l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h11C18.55,17 19,16.55 19,16zM11.29,2.71c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.39,0.39 0.39,1.02 0,1.41l-2.59,2.59c-0.39,0.39 -1.02,0.39 -1.41,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L12.17,7L9,7C8.45,7 8,6.55 8,6c0,-0.55 0.45,-1 1,-1l3.17,0l-0.88,-0.88C10.9,3.73 10.9,3.1 11.29,2.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/short_text.xml b/compose/material/material/icons/generator/raw-icons/rounded/short_text.xml
deleted file mode 100644
index d2cdbb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/short_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9h14c0.55,0 1,0.45 1,1s-0.45,1 -1,1L5,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM5,13h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1L5,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shortcut.xml b/compose/material/material/icons/generator/raw-icons/rounded/shortcut.xml
deleted file mode 100644
index cf5a256..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shortcut.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.29,10.29l-3.59,-3.59C16.08,6.08 15,6.52 15,7.41V10H8c-2.76,0 -5,2.24 -5,5v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3c0,-1.65 1.35,-3 3,-3h7v2.59c0,0.89 1.08,1.34 1.71,0.71l3.59,-3.59C20.68,11.32 20.68,10.68 20.29,10.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/show_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/show_chart.xml
deleted file mode 100644
index 4dfa21d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/show_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.2,17.78l5.3,-5.3 3.25,3.25c0.41,0.41 1.07,0.39 1.45,-0.04l7.17,-8.07c0.35,-0.39 0.33,-0.99 -0.04,-1.37 -0.4,-0.4 -1.07,-0.39 -1.45,0.04l-6.39,7.18 -3.29,-3.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-6.09,6.1c-0.39,0.39 -0.39,1.02 0,1.41l0.09,0.09c0.39,0.39 1.03,0.39 1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shower.xml b/compose/material/material/icons/generator/raw-icons/rounded/shower.xml
deleted file mode 100644
index e10a22a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shower.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.08V4c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1.08C7.61,5.57 5,8.47 5,12v1c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-1C19,8.47 16.39,5.57 13,5.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shuffle.xml b/compose/material/material/icons/generator/raw-icons/rounded/shuffle.xml
deleted file mode 100644
index 0d35020..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shuffle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,9.17L6.12,4.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l4.46,4.46 1.42,-1.4zM15.35,4.85l1.19,1.19L4.7,17.88c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L17.96,7.46l1.19,1.19c0.31,0.31 0.85,0.09 0.85,-0.36L20,4.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-3.79c-0.45,0 -0.67,0.54 -0.36,0.85zM14.83,13.41l-1.41,1.41 3.13,3.13 -1.2,1.2c-0.31,0.31 -0.09,0.85 0.36,0.85h3.79c0.28,0 0.5,-0.22 0.5,-0.5v-3.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-1.19,1.19 -3.13,-3.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shuffle_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/shuffle_on.xml
deleted file mode 100644
index 236b97b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shuffle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM4.3,4.7c0.39,-0.39 1.02,-0.39 1.41,0l4.47,4.47l-1.42,1.4L4.3,6.11C3.91,5.72 3.91,5.09 4.3,4.7zM19.59,19.5c0,0.28 -0.22,0.5 -0.5,0.5H15.3c-0.45,0 -0.67,-0.54 -0.36,-0.85l1.2,-1.2l-3.13,-3.13l1.41,-1.41l3.13,3.14l1.19,-1.19c0.31,-0.32 0.85,-0.1 0.85,0.35V19.5zM19.59,8.29c0,0.45 -0.54,0.67 -0.85,0.36l-1.19,-1.19L5.7,19.29c-0.39,0.39 -1.02,0.39 -1.41,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L16.13,6.04l-1.19,-1.19C14.63,4.54 14.85,4 15.3,4h3.79c0.28,0 0.5,0.22 0.5,0.5V8.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/shutter_speed.xml b/compose/material/material/icons/generator/raw-icons/rounded/shutter_speed.xml
deleted file mode 100644
index 43242bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/shutter_speed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM19.03,7.39l0.75,-0.75c0.38,-0.38 0.39,-1.01 0,-1.4l-0.01,-0.01c-0.39,-0.39 -1.01,-0.38 -1.4,0l-0.75,0.75C16.07,4.74 14.12,4 12,4c-4.8,0 -8.88,3.96 -9,8.76C2.87,17.84 6.94,22 12,22c4.98,0 9,-4.03 9,-9 0,-2.12 -0.74,-4.07 -1.97,-5.61zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM10.81,15h-3.7c-0.38,0 -0.62,0.4 -0.45,0.74 0.56,1.12 1.44,2.01 2.57,2.57 0.23,0.11 0.52,0.02 0.65,-0.21l1.37,-2.35c0.19,-0.33 -0.05,-0.75 -0.44,-0.75zM14.73,7.65c-0.23,-0.12 -0.52,-0.02 -0.65,0.2l-1.38,2.39c-0.2,0.34 0.04,0.76 0.43,0.76h3.76c0.38,0 0.62,-0.4 0.45,-0.73 -0.58,-1.13 -1.49,-2.04 -2.61,-2.62zM13.88,14.7c-0.19,-0.34 -0.68,-0.35 -0.87,-0.01l-2.04,3.52c-0.18,0.32 0.02,0.72 0.39,0.75 1.34,0.14 2.69,-0.18 3.83,-0.89 0.22,-0.14 0.28,-0.43 0.16,-0.66l-1.47,-2.71zM10.31,13.23L7.93,9.57c-0.2,-0.3 -0.64,-0.3 -0.84,0 -0.81,1.16 -1.17,2.57 -1.05,3.98 0.02,0.26 0.24,0.45 0.5,0.45h3.35c0.39,0 0.63,-0.44 0.42,-0.77zM13.97,12.74l2.02,3.74c0.18,0.33 0.64,0.35 0.86,0.05 0.86,-1.18 1.24,-2.62 1.12,-4.08 -0.02,-0.26 -0.25,-0.45 -0.5,-0.45h-3.05c-0.39,0 -0.63,0.4 -0.45,0.74zM10.17,11.17c0.2,0.31 0.66,0.3 0.85,-0.02l1.94,-3.35c0.19,-0.32 -0.03,-0.72 -0.4,-0.76 -1.36,-0.12 -2.73,0.21 -3.88,0.97 -0.22,0.15 -0.27,0.46 -0.13,0.68l1.62,2.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sick.xml b/compose/material/material/icons/generator/raw-icons/rounded/sick.xml
deleted file mode 100644
index a57a0a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sick.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.78 0.99,-2.44 1.58,-3.36c0.2,-0.31 0.64,-0.31 0.84,0C22.01,4.56 23,6.22 23,7zM21.86,10.38C21.94,10.91 22,11.45 22,12c0,5.52 -4.48,10 -10.01,10C6.47,22 2,17.52 2,12C2,6.48 6.47,2 11.99,2c2.45,0 4.69,0.88 6.43,2.34C17.91,5.29 17.5,6.27 17.5,7c0,1.93 1.57,3.5 3.5,3.5C21.3,10.5 21.58,10.45 21.86,10.38zM14.03,10.03l1.06,1.06c0.29,0.29 0.77,0.29 1.06,0c0.29,-0.29 0.29,-0.77 0,-1.06L15.62,9.5l0.53,-0.53c0.29,-0.29 0.29,-0.77 0,-1.06s-0.77,-0.29 -1.06,0l-1.06,1.06C13.74,9.26 13.74,9.74 14.03,10.03zM8.38,9.5l-0.53,0.53c-0.29,0.29 -0.29,0.77 0,1.06c0.29,0.29 0.77,0.29 1.06,0l1.06,-1.06c0.29,-0.29 0.29,-0.77 0,-1.06L8.91,7.91c-0.29,-0.29 -0.77,-0.29 -1.06,0s-0.29,0.77 0,1.06L8.38,9.5zM16.47,15.8c-1,-1.39 -2.62,-2.3 -4.47,-2.3c-0.87,0 -1.69,0.2 -2.43,0.56L5.99,12c0,-0.52 -0.26,-1.02 -0.74,-1.29c-0.8,-0.46 -1.84,-0.11 -2.17,0.8c-0.21,0.57 -0.03,1.25 0.44,1.64c0.52,0.44 1.2,0.45 1.72,0.16l2.97,1.72c-0.25,0.24 -0.48,0.5 -0.68,0.78C7.17,16.3 7.53,17 8.15,17c0.23,0 0.46,-0.1 0.6,-0.3C9.47,15.68 10.65,15 12,15s2.53,0.68 3.25,1.7c0.14,0.19 0.36,0.3 0.6,0.3h0C16.47,17 16.83,16.3 16.47,15.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sign_language.xml b/compose/material/material/icons/generator/raw-icons/rounded/sign_language.xml
deleted file mode 100644
index af1b68c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sign_language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.49,13l-0.93,-1.86c-0.37,-0.74 -0.07,-1.64 0.67,-2.01l0,0c0.16,-0.08 0.34,-0.05 0.47,0.07l5.53,5.26c0.5,0.47 0.78,1.13 0.78,1.81v5.23c0,1.38 -1.12,2.5 -2.5,2.5h-11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H10v-1H4c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h6v-1H3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h7v-1H4.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H12.49zM11.78,7.12c-0.84,0.4 -1.17,0.62 -1.63,1.19l-2.7,-2.85c-0.38,-0.4 -0.36,-1.03 0.04,-1.41c0.4,-0.38 1.03,-0.36 1.41,0.04L11.78,7.12zM9.64,9.21C9.41,9.76 9.35,10.45 9.44,11H8.58L6.31,8.61C5.93,8.21 5.94,7.58 6.35,7.2c0.4,-0.38 1.03,-0.36 1.41,0.04L9.64,9.21zM20.33,13.91l0.88,-0.83c0.5,-0.47 0.79,-1.13 0.79,-1.82V3.64c0,-0.17 -0.11,-0.33 -0.27,-0.39l0,0c-0.78,-0.28 -1.64,0.12 -1.92,0.9L19.1,6.11l-5.5,-5.8c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.79,3.99l-0.73,0.69l-4.82,-5.08c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.78,3.98L15.38,9l3.61,3.43l0.61,0.58C19.89,13.28 20.13,13.58 20.33,13.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_0_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_0_bar.xml
deleted file mode 100644
index a2c8357..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.41,22H21c0.55,0 1,-0.45 1,-1V4.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L3.71,20.29C3.08,20.92 3.52,22 4.41,22zM20,20H6.83L20,6.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_4_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_4_bar.xml
deleted file mode 100644
index b22cb46..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.41,22H20c1.1,0 2,-0.9 2,-2V4.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L3.71,20.29c-0.63,0.63 -0.19,1.71 0.7,1.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt.xml
deleted file mode 100644
index fcb1c5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,4c0.83,0 1.5,0.67 1.5,1.5v13c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5v-13c0,-0.83 0.67,-1.5 1.5,-1.5zM6.5,14c0.83,0 1.5,0.67 1.5,1.5v3c0,0.83 -0.67,1.5 -1.5,1.5S5,19.33 5,18.5v-3c0,-0.83 0.67,-1.5 1.5,-1.5zM12.5,9c0.83,0 1.5,0.67 1.5,1.5v8c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5v-8c0,-0.83 0.67,-1.5 1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt_1_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt_1_bar.xml
deleted file mode 100644
index 51cd49a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,20C5.67,20 5,19.33 5,18.5v-3C5,14.67 5.67,14 6.5,14S8,14.67 8,15.5v3C8,19.33 7.33,20 6.5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt_2_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt_2_bar.xml
deleted file mode 100644
index ddc04a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_alt_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,20C5.67,20 5,19.33 5,18.5v-3C5,14.67 5.67,14 6.5,14S8,14.67 8,15.5v3C8,19.33 7.33,20 6.5,20zM12.5,20c-0.83,0 -1.5,-0.67 -1.5,-1.5v-8C11,9.67 11.67,9 12.5,9S14,9.67 14,10.5v8C14,19.33 13.33,20 12.5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_connected_no_internet_0_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_connected_no_internet_0_bar.xml
deleted file mode 100644
index e3de59a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_connected_no_internet_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18L21,18c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v6C20,17.55 20.45,18 21,18zM21,22L21,22c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C20,21.55 20.45,22 21,22zM18,20v2H2L22,2v6h-2V6.83L6.83,20H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_connected_no_internet_4_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_connected_no_internet_4_bar.xml
deleted file mode 100644
index dbedf92..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_connected_no_internet_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18L21,18c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1l0,0c-0.55,0 -1,0.45 -1,1v6C20,17.55 20.45,18 21,18zM21,22L21,22c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v0C20,21.55 20.45,22 21,22zM4.41,22H18V11c0,-1.66 1.34,-3 3,-3h1V4.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L3.71,20.29C3.08,20.92 3.52,22 4.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_no_sim.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_no_sim.xml
deleted file mode 100644
index 2a09a3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5c0,-1.1 -0.9,-2 -2,-2h-6.17c-0.53,0 -1.04,0.21 -1.42,0.59L7.95,5.06 19,16.11V5zM3.09,4.44c-0.39,0.39 -0.39,1.02 0,1.41L5,7.78V19c0,1.11 0.9,2 2,2h11.23l0.91,0.91c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.5,4.44c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_nodata.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_nodata.xml
deleted file mode 100644
index d62bbd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_nodata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-7c-1.1,0 -2,0.9 -2,2v7H4.41c-0.89,0 -1.34,-1.08 -0.71,-1.71L20.29,3.71C20.92,3.08 22,3.52 22,4.41V13zM20.3,14.71L20.3,14.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.39,1.39l-1.39,-1.39c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l1.39,1.39l-1.39,1.39c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l1.39,-1.38l1.39,1.38c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-1.38,-1.39l1.38,-1.39C20.69,15.73 20.69,15.1 20.3,14.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_null.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_null.xml
deleted file mode 100644
index d6e7bed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.83V19c0,0.55 -0.45,1 -1,1H6.83L20,6.83m0.29,-3.12L3.71,20.29c-0.63,0.63 -0.19,1.71 0.7,1.71H20c1.1,0 2,-0.9 2,-2V4.41c0,-0.89 -1.08,-1.33 -1.71,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_off.xml
deleted file mode 100644
index c77a3ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_cellular_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3.41c0,-0.89 -1.08,-1.34 -1.71,-0.71l-6.6,6.6L21,17.61L21,3.41zM21.44,20.88L5.62,5.06c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l5.66,5.66 -7.16,7.16c-0.63,0.63 -0.19,1.71 0.7,1.71h15.32l1.29,1.29c0.39,0.39 1.02,0.39 1.41,0 0.4,-0.39 0.4,-1.02 0.01,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_0_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_0_bar.xml
deleted file mode 100644
index fdebff3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.39,0.39 1.02,0.39 1.42,0L23.27,9.71c0.41,-0.41 0.38,-1.08 -0.06,-1.47C20.22,5.6 16.3,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_4_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_4_bar.xml
deleted file mode 100644
index 99571e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4C5.28,3 0.81,6.66 0.36,7l10.08,12.56c0.8,1 2.32,1 3.12,0L23.64,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_4_bar_lock.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_4_bar_lock.xml
deleted file mode 100644
index 9ed65e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_4_bar_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.21,8.24C20.22,5.6 16.3,4 12,4S3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l5.62,5.63l4.94,4.95c0.39,0.39 1.02,0.39 1.42,0l2.34,-2.34V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71h2.94l1.29,-1.29C23.68,9.3 23.65,8.63 23.21,8.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_bad.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_bad.xml
deleted file mode 100644
index 437e28f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_bad.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.21,8.24C20.22,5.6 16.3,4 12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.19,0.19 0.45,0.29 0.7,0.29V14c0,-1.1 0.9,-2 2,-2h6.99l2.29,-2.29C23.68,9.3 23.65,8.63 23.21,8.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.3,14.71L20.3,14.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.39,1.38l-1.39,-1.38c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l1.39,1.39l-1.39,1.39c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l1.39,-1.38l1.39,1.38c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-1.38,-1.39l1.38,-1.39C20.69,15.73 20.69,15.1 20.3,14.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_connected_no_internet_4.xml
deleted file mode 100644
index 437e28f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_connected_no_internet_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.21,8.24C20.22,5.6 16.3,4 12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.19,0.19 0.45,0.29 0.7,0.29V14c0,-1.1 0.9,-2 2,-2h6.99l2.29,-2.29C23.68,9.3 23.65,8.63 23.21,8.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.3,14.71L20.3,14.71c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.39,1.38l-1.39,-1.38c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l1.39,1.39l-1.39,1.39c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l1.39,-1.38l1.39,1.38c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41l-1.38,-1.39l1.38,-1.39C20.69,15.73 20.69,15.1 20.3,14.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_off.xml
deleted file mode 100644
index 2001792..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4 -1.32,0 -2.55,0.14 -3.69,0.38L18.43,13.5 23.64,7zM4.12,2.01c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l1.35,1.35C1.91,5.76 0.59,6.82 0.36,7l10.08,12.56c0.8,1 2.32,1 3.12,0l2.35,-2.93 2.61,2.61c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.12,2.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_4_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_4_bar.xml
deleted file mode 100644
index 36c6256..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.39,0.39 1.02,0.39 1.42,0L23.27,9.71c0.41,-0.41 0.38,-1.08 -0.06,-1.47C20.22,5.6 16.3,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_connected_no_internet_4.xml
deleted file mode 100644
index f081acf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_connected_no_internet_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.92,8H17v7.99l-4.29,4.3c-0.39,0.39 -1.02,0.39 -1.42,0L0.73,9.71C0.32,9.3 0.35,8.63 0.79,8.24C3.78,5.6 7.7,4 12,4C16.16,4 19.97,5.51 22.92,8zM20,18c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S20.55,18 20,18zM20,10c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4C21,10.45 20.55,10 20,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_null.xml b/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_null.xml
deleted file mode 100644
index b6e3b3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signal_wifi_statusbar_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.7,4 3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l10.56,10.58c0.39,0.39 1.02,0.39 1.42,0L23.27,9.71c0.41,-0.41 0.38,-1.08 -0.06,-1.47C20.22,5.6 16.3,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6c3.33,0 6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/signpost.xml b/compose/material/material/icons/generator/raw-icons/rounded/signpost.xml
deleted file mode 100644
index 1c64321..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/signpost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10l5,0l3,-3l-3,-3l-5,0l0,-2l-2,0l0,2l-7,0l0,6l7,0l0,2l-5,0l-3,3l3,3l5,0l0,4l2,0l0,-4l7,0l0,-6l-7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sim_card.xml b/compose/material/material/icons/generator/raw-icons/rounded/sim_card.xml
deleted file mode 100644
index 9be0267..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sim_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.99,4c0,-1.1 -0.89,-2 -1.99,-2h-7.17c-0.53,0 -1.04,0.21 -1.42,0.59L4.59,7.41C4.21,7.79 4,8.3 4,8.83L4,20c0,1.1 0.9,2 2,2h12.01c1.1,0 1.99,-0.9 1.99,-2l-0.01,-16zM8,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM16,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM8,15c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM12,19c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM12,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM16,15c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sim_card_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/sim_card_alert.xml
deleted file mode 100644
index f71953f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sim_card_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-7.17C10.3,2 9.79,2.21 9.41,2.59L4.6,7.42C4.23,7.79 4.02,8.3 4.02,8.82L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM12,17L12,17c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C13,16.55 12.55,17 12,17zM12,13L12,13c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1l0,0c0.55,0 1,0.45 1,1v3C13,12.55 12.55,13 12,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sim_card_download.xml b/compose/material/material/icons/generator/raw-icons/rounded/sim_card_download.xml
deleted file mode 100644
index 2baa602..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sim_card_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-7.17C10.3,2 9.79,2.21 9.41,2.59L4.59,7.41C4.21,7.79 4,8.3 4,8.83V20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM11.65,16.65l-2.79,-2.79C8.54,13.54 8.76,13 9.21,13H11v-2.99c0,-0.55 0.44,-0.99 0.99,-1h0C12.55,9 13,9.45 13,10.01V13h1.79c0.45,0 0.67,0.54 0.35,0.85l-2.79,2.79C12.16,16.84 11.84,16.84 11.65,16.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/single_bed.xml b/compose/material/material/icons/generator/raw-icons/rounded/single_bed.xml
deleted file mode 100644
index b4fddd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/single_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10V7c0,-1.1 -0.9,-2 -2,-2H8C6.9,5 6,5.9 6,7v3c-1.1,0 -2,0.9 -2,2v5h1.33l0.51,1.53C5.94,18.81 6.2,19 6.5,19h0c0.3,0 0.56,-0.19 0.66,-0.47L7.67,17h8.67l0.51,1.53C16.94,18.81 17.2,19 17.5,19l0,0c0.3,0 0.56,-0.19 0.66,-0.47L18.67,17H20v-5C20,10.9 19.1,10 18,10zM11,10H8V8c0,-0.55 0.45,-1 1,-1h2V10zM16,10h-3V7h2c0.55,0 1,0.45 1,1V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sip.xml b/compose/material/material/icons/generator/raw-icons/rounded/sip.xml
deleted file mode 100644
index a4470e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sip.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,10.5h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM10,9.75c0,0.41 -0.34,0.75 -0.75,0.75H6.5v0.75H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H5.75C5.34,15 5,14.66 5,14.25v0c0,-0.41 0.34,-0.75 0.75,-0.75H8.5v-0.75H6c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3.25C9.66,9 10,9.34 10,9.75L10,9.75zM12,15L12,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v4C13,14.55 12.55,15 12,15zM19,12c0,0.55 -0.45,1 -1,1h-2.5v1.25c0,0.41 -0.34,0.75 -0.75,0.75h0C14.34,15 14,14.66 14,14.25V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/skateboarding.xml b/compose/material/material/icons/generator/raw-icons/rounded/skateboarding.xml
deleted file mode 100644
index 412075c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/skateboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S13,4.1 13,3zM7.25,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S6.84,24 7.25,24S8,23.66 8,23.25S7.66,22.5 7.25,22.5zM15.75,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S15.34,24 15.75,24s0.75,-0.34 0.75,-0.75S16.16,22.5 15.75,22.5zM19.24,19c-0.24,0 -0.45,0.11 -0.59,0.3c-0.55,0.73 -1.42,1.2 -2.4,1.2H16v-4.88c0,-0.69 -0.36,-1.34 -0.95,-1.7l-3.37,-2.08l1.8,-2.89c0.96,1.53 2.54,2.64 4.39,2.96c0.6,0.11 1.13,-0.39 1.13,-0.99v0c0,-0.48 -0.35,-0.89 -0.83,-0.98c-1.49,-0.28 -2.72,-1.29 -3.3,-2.64l-0.52,-1.21C14.16,5.64 13.61,5 12.7,5H8.11c-0.69,0 -1.33,0.36 -1.7,0.94L5.03,8.15C4.74,8.62 4.88,9.24 5.35,9.53l0,0c0.47,0.29 1.09,0.15 1.38,-0.32L8.1,7h2.35l-2.4,3.84c-0.31,0.5 -0.39,1.11 -0.21,1.67l1.34,4.15l-3.12,3.76c-0.7,-0.16 -1.3,-0.57 -1.71,-1.12C4.21,19.11 3.99,19 3.75,19C3.31,19 3,19.36 3,19.75c0,0.15 0.05,0.31 0.15,0.45c0.82,1.1 2.13,1.8 3.6,1.8h9.5c1.47,0 2.78,-0.7 3.6,-1.8c0.1,-0.14 0.15,-0.3 0.15,-0.45C20,19.36 19.68,19 19.24,19zM14,20.5H8.6l2.21,-2.67c0.43,-0.52 0.57,-1.21 0.37,-1.86L10.5,13.7l3.5,2.2V20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/skip_next.xml b/compose/material/material/icons/generator/raw-icons/rounded/skip_next.xml
deleted file mode 100644
index 7c4d464..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/skip_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.58,16.89l5.77,-4.07c0.56,-0.4 0.56,-1.24 0,-1.63L7.58,7.11C6.91,6.65 6,7.12 6,7.93v8.14c0,0.81 0.91,1.28 1.58,0.82zM16,7v10c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/skip_previous.xml b/compose/material/material/icons/generator/raw-icons/rounded/skip_previous.xml
deleted file mode 100644
index 37bee91..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/skip_previous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L6,7c0,-0.55 0.45,-1 1,-1zM10.66,12.82l5.77,4.07c0.66,0.47 1.58,-0.01 1.58,-0.82L18.01,7.93c0,-0.81 -0.91,-1.28 -1.58,-0.82l-5.77,4.07c-0.57,0.4 -0.57,1.24 0,1.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sledding.xml b/compose/material/material/icons/generator/raw-icons/rounded/sledding.xml
deleted file mode 100644
index 6858645..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sledding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S14,3.4 14,4.5zM18.92,19.24c-0.13,0.39 -0.55,0.61 -0.95,0.48l-2.61,-0.85L14.9,20.3l3.32,1.08l0,0c1.31,0.43 2.72,-0.29 3.15,-1.61c0.36,-1.12 -0.11,-2.32 -1.07,-2.91c-0.32,-0.2 -0.45,-0.6 -0.3,-0.95c0.2,-0.44 0.71,-0.57 1.12,-0.31c1.52,0.95 2.25,2.85 1.68,4.62c-0.68,2.1 -2.94,3.25 -5.04,2.57h0L1.74,17.6c-0.39,-0.13 -0.63,-0.54 -0.52,-0.93c0.12,-0.41 0.55,-0.63 0.95,-0.5l3.22,1.05l0.46,-1.43l-3.19,-1.04c-0.39,-0.13 -0.63,-0.54 -0.52,-0.93c0.12,-0.41 0.55,-0.63 0.95,-0.5L4,13.6v-2.78c0,-0.8 0.48,-1.52 1.21,-1.84c0.75,-0.32 4.11,-1.76 4.26,-1.83c0.41,-0.18 0.89,-0.21 1.35,-0.04c0.91,0.34 1.37,1.36 1.07,2.28l-1.04,3.2L13,12.25c0.89,-0.15 1.76,0.32 2.14,1.14l2.08,4.51l1.22,0.4C18.84,18.42 19.05,18.84 18.92,19.24zM6,14.25l1.01,0.33c-0.22,-0.42 -0.28,-0.92 -0.12,-1.4L7.92,10L6,10.82V14.25zM13.94,18.41l-6.66,-2.16l-0.46,1.43l6.66,2.16L13.94,18.41zM14.63,17.05l-1.18,-2.56l-3.97,0.89L14.63,17.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/slideshow.xml b/compose/material/material/icons/generator/raw-icons/rounded/slideshow.xml
deleted file mode 100644
index 52b796a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/slideshow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9.04v5.92c0,0.42 0.48,0.65 0.81,0.39l3.7,-2.96c0.25,-0.2 0.25,-0.58 0,-0.78l-3.7,-2.96c-0.33,-0.26 -0.81,-0.03 -0.81,0.39zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,6c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/slow_motion_video.xml b/compose/material/material/icons/generator/raw-icons/rounded/slow_motion_video.xml
deleted file mode 100644
index c1c015b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/slow_motion_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8.5v7c0,0.41 0.47,0.65 0.8,0.4l4.67,-3.5c0.27,-0.2 0.27,-0.6 0,-0.8L10.8,8.1c-0.33,-0.25 -0.8,-0.01 -0.8,0.4zM11,3.23c0,-0.64 -0.59,-1.13 -1.21,-0.99 -1.12,0.26 -2.18,0.7 -3.12,1.3 -0.53,0.34 -0.61,1.1 -0.16,1.55 0.32,0.32 0.83,0.4 1.21,0.16 0.77,-0.49 1.62,-0.85 2.54,-1.05 0.44,-0.1 0.74,-0.51 0.74,-0.97zM5.1,6.51c-0.46,-0.45 -1.21,-0.38 -1.55,0.16 -0.6,0.94 -1.04,2 -1.3,3.12 -0.14,0.62 0.34,1.21 0.98,1.21 0.45,0 0.87,-0.3 0.96,-0.74 0.2,-0.91 0.57,-1.77 1.05,-2.53 0.26,-0.39 0.18,-0.9 -0.14,-1.22zM3.23,13c-0.64,0 -1.13,0.59 -0.99,1.21 0.26,1.12 0.7,2.17 1.3,3.12 0.34,0.54 1.1,0.61 1.55,0.16 0.32,-0.32 0.4,-0.83 0.15,-1.21 -0.49,-0.76 -0.85,-1.61 -1.05,-2.53 -0.09,-0.45 -0.5,-0.75 -0.96,-0.75zM6.67,20.45c0.95,0.6 2,1.04 3.12,1.3 0.62,0.14 1.21,-0.35 1.21,-0.98 0,-0.45 -0.3,-0.87 -0.74,-0.96 -0.91,-0.2 -1.77,-0.57 -2.53,-1.05 -0.39,-0.24 -0.89,-0.17 -1.21,0.16 -0.46,0.44 -0.39,1.19 0.15,1.53zM22,12c0,4.73 -3.3,8.71 -7.73,9.74 -0.62,0.15 -1.22,-0.34 -1.22,-0.98 0,-0.46 0.31,-0.86 0.75,-0.97 3.55,-0.82 6.2,-4 6.2,-7.79s-2.65,-6.97 -6.2,-7.79c-0.44,-0.1 -0.75,-0.51 -0.75,-0.97 0,-0.64 0.6,-1.13 1.22,-0.98C18.7,3.29 22,7.27 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/smart_button.xml b/compose/material/material/icons/generator/raw-icons/rounded/smart_button.xml
deleted file mode 100644
index 4a73012..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/smart_button.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9v6c0,1.1 -0.9,2 -2,2h-1l0,-2h1V9H4v6h6v2H4c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h16C21.1,7 22,7.9 22,9zM14.04,17.99c0.18,0.39 0.73,0.39 0.91,0l0.63,-1.4l1.4,-0.63c0.39,-0.18 0.39,-0.73 0,-0.91l-1.4,-0.63l-0.63,-1.4c-0.18,-0.39 -0.73,-0.39 -0.91,0l-0.63,1.4l-1.4,0.63c-0.39,0.18 -0.39,0.73 0,0.91l1.4,0.63L14.04,17.99zM16.74,13.43c0.1,0.22 0.42,0.22 0.52,0l0.36,-0.8l0.8,-0.36c0.22,-0.1 0.22,-0.42 0,-0.52l-0.8,-0.36l-0.36,-0.8c-0.1,-0.22 -0.42,-0.22 -0.52,0l-0.36,0.8l-0.8,0.36c-0.22,0.1 -0.22,0.42 0,0.52l0.8,0.36L16.74,13.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/smart_display.xml b/compose/material/material/icons/generator/raw-icons/rounded/smart_display.xml
deleted file mode 100644
index 4ca1f2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/smart_display.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM9.5,14.67V9.33c0,-0.79 0.88,-1.27 1.54,-0.84l4.15,2.67c0.61,0.39 0.61,1.29 0,1.68l-4.15,2.67C10.38,15.94 9.5,15.46 9.5,14.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/smart_screen.xml b/compose/material/material/icons/generator/raw-icons/rounded/smart_screen.xml
deleted file mode 100644
index 8c5163b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/smart_screen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5H3C1.9,5 1,5.9 1,7v10c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7C23,5.9 22.1,5 21,5zM18,7v10H6V7H18zM14,12c0,-0.41 -0.34,-0.75 -0.75,-0.75S12.5,11.59 12.5,12s0.34,0.75 0.75,0.75S14,12.41 14,12zM9,12c0,-0.41 -0.34,-0.75 -0.75,-0.75S7.5,11.59 7.5,12s0.34,0.75 0.75,0.75S9,12.41 9,12zM16.5,12c0,-0.41 -0.34,-0.75 -0.75,-0.75S15,11.59 15,12s0.34,0.75 0.75,0.75S16.5,12.41 16.5,12zM11.5,12c0,-0.41 -0.34,-0.75 -0.75,-0.75S10,11.59 10,12s0.34,0.75 0.75,0.75S11.5,12.41 11.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/smart_toy.xml b/compose/material/material/icons/generator/raw-icons/rounded/smart_toy.xml
deleted file mode 100644
index 4a9e923..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/smart_toy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9V7c0,-1.1 -0.9,-2 -2,-2h-3c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5H6C4.9,5 4,5.9 4,7v2c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3v4c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4c1.66,0 3,-1.34 3,-3C23,10.34 21.66,9 20,9zM7.5,11.5C7.5,10.67 8.17,10 9,10s1.5,0.67 1.5,1.5S9.83,13 9,13S7.5,12.33 7.5,11.5zM15,17H9c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v0C16,16.55 15.55,17 15,17zM15,13c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.17,10 15,10s1.5,0.67 1.5,1.5S15.83,13 15,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/smartphone.xml b/compose/material/material/icons/generator/raw-icons/rounded/smartphone.xml
deleted file mode 100644
index bd22f2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/smartphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/smoke_free.xml b/compose/material/material/icons/generator/raw-icons/rounded/smoke_free.xml
deleted file mode 100644
index d463c1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/smoke_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,13L22,13v3h-1.5zM18,13h1.5v3L18,16zM17,14.5c0,-0.83 -0.67,-1.5 -1.5,-1.5h-0.84l2.18,2.18c0.1,-0.21 0.16,-0.44 0.16,-0.68zM18.96,2.35L19,2.35h-0.04zM18.85,4.73c0.38,-0.38 0.67,-0.84 0.84,-1.35 0.16,-0.5 -0.19,-1.01 -0.71,-1.02 -0.34,0.01 -0.61,0.25 -0.72,0.58 -0.18,0.55 -0.62,0.99 -1.17,1.17 -0.34,0.11 -0.59,0.39 -0.59,0.74L16.5,5c0,0.37 0.27,0.69 0.64,0.75 1.93,0.31 3.36,2 3.36,4.02v1.48c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75L22,9.76c0,-2.22 -1.28,-4.14 -3.15,-5.03zM14.61,8.65h1.42c1.05,0 1.97,0.74 1.97,2.05v0.55c0,0.41 0.33,0.75 0.75,0.75h0.01c0.41,0 0.75,-0.33 0.75,-0.75v-0.89c0,-1.81 -1.6,-3.16 -3.47,-3.16h-1.3c-1.02,0 -1.94,-0.73 -2.07,-1.75 -0.12,-0.95 0.46,-1.7 1.3,-1.93 0.32,-0.09 0.54,-0.38 0.54,-0.72 0,-0.49 -0.46,-0.86 -0.93,-0.72 -1.42,0.41 -2.45,1.73 -2.42,3.28 0.02,1.85 1.61,3.29 3.45,3.29zM4.12,5.29c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L9,13L3.5,13c-0.83,0 -1.5,0.67 -1.5,1.5S2.67,16 3.5,16L12,16l6.29,6.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.12,5.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/smoking_rooms.xml b/compose/material/material/icons/generator/raw-icons/rounded/smoking_rooms.xml
deleted file mode 100644
index 83a2e2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/smoking_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,16h-12c-0.83,0 -1.5,0.67 -1.5,1.5S2.67,19 3.5,19h12c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38 0,-1.51 -1,-2.79 -2.38,-3.21 -0.48,-0.14 -0.97,0.22 -0.97,0.72 0,0.33 0.21,0.62 0.52,0.71 0.77,0.23 1.33,0.94 1.33,1.78 0,0.82 -0.53,1.51 -1.27,1.76 -0.33,0.11 -0.58,0.39 -0.58,0.74L16.5,8c0,0.37 0.27,0.69 0.64,0.75 1.93,0.31 3.36,2 3.36,4.02v1.48c0,0.41 0.34,0.75 0.75,0.75s0.75,-0.34 0.75,-0.75v-1.49c0,-2.22 -1.28,-4.14 -3.15,-5.03zM16.03,10.2h-1.3c-1.02,0 -1.94,-0.73 -2.07,-1.75 -0.12,-0.95 0.46,-1.7 1.3,-1.93 0.32,-0.09 0.54,-0.38 0.54,-0.72 0,-0.49 -0.46,-0.86 -0.93,-0.72 -1.42,0.41 -2.45,1.73 -2.42,3.28 0.03,1.84 1.62,3.29 3.46,3.29h1.42c1.05,0 1.97,0.74 1.97,2.05v0.55c0,0.41 0.33,0.75 0.75,0.75h0.01c0.41,0 0.75,-0.33 0.75,-0.75v-0.89c-0.01,-1.81 -1.61,-3.16 -3.48,-3.16zM18,16h1.5v3L18,19zM20.5,16L22,16v3h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sms.xml b/compose/material/material/icons/generator/raw-icons/rounded/sms.xml
deleted file mode 100644
index 9479c61..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM9,11L7,11L7,9h2v2zM13,11h-2L11,9h2v2zM17,11h-2L15,9h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sms_failed.xml b/compose/material/material/icons/generator/raw-icons/rounded/sms_failed.xml
deleted file mode 100644
index 24d52ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sms_failed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM13,14h-2v-2h2v2zM12,10c-0.55,0 -1,-0.45 -1,-1L11,7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/snippet_folder.xml b/compose/material/material/icons/generator/raw-icons/rounded/snippet_folder.xml
deleted file mode 100644
index 3beac46..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/snippet_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88zM22,8v10c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2L2.01,6C2.01,4.9 2.9,4 4,4h5.17c0.53,0 1.04,0.21 1.41,0.59L12,6h8C21.1,6 22,6.9 22,8zM19,11.91c0,-0.27 -0.11,-0.52 -0.29,-0.71l-1.91,-1.91C16.61,9.11 16.35,9 16.09,9H14c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1l4,0c0.55,0 1,-0.45 1,-1V11.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/snooze.xml b/compose/material/material/icons/generator/raw-icons/rounded/snooze.xml
deleted file mode 100644
index c77cdc2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/snooze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,11h2.63l-3.72,4.35C8.36,16 8.82,17 9.67,17L14,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-2.63l3.72,-4.35c0.55,-0.65 0.09,-1.65 -0.76,-1.65L10,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM21.3,6.42c-0.35,0.42 -0.98,0.48 -1.41,0.13l-3.07,-2.56c-0.42,-0.36 -0.48,-0.99 -0.12,-1.41 0.35,-0.42 0.98,-0.48 1.41,-0.13l3.07,2.56c0.42,0.36 0.48,0.99 0.12,1.41zM2.7,6.42c0.35,0.43 0.98,0.48 1.4,0.13l3.07,-2.56c0.43,-0.36 0.49,-0.99 0.13,-1.41 -0.35,-0.43 -0.98,-0.48 -1.4,-0.13L2.82,5.01c-0.42,0.36 -0.48,0.99 -0.12,1.41zM12,6c3.86,0 7,3.14 7,7s-3.14,7 -7,7 -7,-3.14 -7,-7 3.14,-7 7,-7m0,-2c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/snowboarding.xml b/compose/material/material/icons/generator/raw-icons/rounded/snowboarding.xml
deleted file mode 100644
index 5c6f0a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/snowboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S14,4.1 14,3zM6.35,9.53c0.47,0.29 1.09,0.15 1.38,-0.32L9.1,7h2.35l-2.51,3.99c-0.28,0.45 -0.37,1 -0.25,1.52L9.5,16L6,18.35l-0.47,-0.1c-0.96,-0.2 -1.71,-0.85 -2.1,-1.67c-0.1,-0.21 -0.28,-0.37 -0.51,-0.42c-0.43,-0.09 -0.82,0.2 -0.9,0.58C1.98,16.88 2,17.05 2.07,17.2c0.58,1.24 1.71,2.2 3.15,2.51l12.63,2.69c1.44,0.31 2.86,-0.11 3.9,-1.01c0.13,-0.11 0.21,-0.26 0.24,-0.41c0.08,-0.38 -0.16,-0.8 -0.59,-0.89c-0.23,-0.05 -0.46,0.02 -0.64,0.17c-0.69,0.6 -1.64,0.88 -2.6,0.67L17,20.69l-0.88,-5.43c-0.08,-0.49 -0.34,-0.93 -0.72,-1.24l-2.72,-2.19l1.8,-2.89c0.96,1.53 2.54,2.64 4.39,2.96c0.6,0.11 1.13,-0.39 1.13,-1c0,-0.48 -0.35,-0.89 -0.83,-0.98c-1.49,-0.28 -2.72,-1.29 -3.3,-2.64l-0.52,-1.21C15.16,5.64 14.61,5 13.7,5H9.11c-0.69,0 -1.33,0.36 -1.7,0.94L6.03,8.15C5.74,8.62 5.88,9.24 6.35,9.53zM8.73,18.93l2.25,-1.51c0.47,-0.32 0.73,-0.88 0.65,-1.44l-0.32,-2.4l2.84,2.02l0.75,4.64L8.73,18.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/snowmobile.xml b/compose/material/material/icons/generator/raw-icons/rounded/snowmobile.xml
deleted file mode 100644
index 86c287e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/snowmobile.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6c0,0.55 0.45,1 1,1h1.25l1.45,1.3L11,11l-9.12,-0.96C0.88,9.93 0,10.72 0,11.73c0,0.75 0.49,1.41 1.21,1.63l3.33,1l-3.49,1.88C-0.77,17.22 -0.07,20 2,20h6c2.21,0 4,-1.79 4,-4h4l2,2h-2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h5c1.13,0 2.11,-0.62 2.63,-1.55c0.36,-0.65 -0.15,-1.45 -0.9,-1.45c-0.34,0 -0.68,0.16 -0.84,0.47C21.72,17.78 21.38,18 21,18h-0.17l-2.2,-2.2C20.58,15.37 22,14.4 22,13c0,-0.89 -7.72,-7.75 -7.72,-7.75C14.1,5.09 13.87,5 13.62,5H12C11.45,5 11,5.45 11,6zM8,18H2l5.25,-2.83L10,16C10,17.1 9.11,18 8,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/snowshoeing.xml b/compose/material/material/icons/generator/raw-icons/rounded/snowshoeing.xml
deleted file mode 100644
index 054378a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/snowshoeing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,3.5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S12.5,4.6 12.5,3.5zM20,11.91c0,-0.49 -0.36,-0.9 -0.84,-0.98c-1.53,-0.25 -2.79,-1.16 -3.47,-2.35l-1,-1.58c-0.4,-0.6 -1,-1 -1.7,-1c-0.68,0 -1.28,0.28 -4.77,1.76C7.49,8.07 7,8.8 7,9.6V12c0,0.55 0.45,1 1,1s1,-0.45 1,-1V9.58l1.79,-0.7L9.2,17l-2.88,2.03l-1.14,-1.47L4,18.5l2.38,3.04c0.51,0.65 1.16,1.15 1.88,1.41c0.28,0.1 0.53,0.04 0.72,-0.11c0.3,-0.23 0.42,-0.7 0.12,-1.07c-0.08,-0.1 -0.2,-0.17 -0.31,-0.22c-0.43,-0.18 -0.82,-0.45 -1.14,-0.83l-0.08,-0.1l2.85,-2.01c0.38,-0.27 0.65,-0.66 0.77,-1.1l0.7,-2.53l2.11,2v4.52h-2V23h3.87c0.82,0 1.61,-0.21 2.26,-0.61c0.26,-0.16 0.37,-0.39 0.37,-0.64c0,-0.38 -0.3,-0.75 -0.77,-0.75c-0.13,0 -0.26,0.04 -0.37,0.1c-0.4,0.23 -0.87,0.37 -1.36,0.4l0,-5.16c0,-0.55 -0.23,-1.07 -0.62,-1.45l-1.49,-1.41l0.6,-3c1.07,1.24 2.63,2.15 4.37,2.43C19.46,13.01 20,12.52 20,11.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/soap.xml b/compose/material/material/icons/generator/raw-icons/rounded/soap.xml
deleted file mode 100644
index 8faa2cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/soap.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,6C14.66,6 15,6.34 15,6.75S14.66,7.5 14.25,7.5S13.5,7.16 13.5,6.75S13.84,6 14.25,6M14.25,4.5C13.01,4.5 12,5.51 12,6.75S13.01,9 14.25,9s2.25,-1.01 2.25,-2.25S15.49,4.5 14.25,4.5L14.25,4.5zM20,5.5c0.28,0 0.5,0.22 0.5,0.5S20.28,6.5 20,6.5S19.5,6.28 19.5,6S19.72,5.5 20,5.5M20,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S21.1,4 20,4L20,4zM18,2.5C18,3.33 17.33,4 16.5,4C15.67,4 15,3.33 15,2.5S15.67,1 16.5,1C17.33,1 18,1.67 18,2.5zM1.94,11.79C1.34,12.35 1,13.14 1,13.97V20c0,1.66 1.34,3 3,3l13.68,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5l7.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5l0,0c0,-0.28 0.22,-0.5 0.5,-0.5l8.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5l6.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H8.86l1.49,-2.61c0.09,-0.16 0.14,-0.33 0.14,-0.53c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.81,5.71C9.43,5.32 8.8,5.3 8.4,5.68L1.94,11.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/social_distance.xml b/compose/material/material/icons/generator/raw-icons/rounded/social_distance.xml
deleted file mode 100644
index 4745717..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/social_distance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S4,6.1 4,5zM8.78,8.58C7.93,8.21 6.99,8 6,8S4.07,8.21 3.22,8.58C2.48,8.9 2,9.62 2,10.43L2,11h8l0,-0.57C10,9.62 9.52,8.9 8.78,8.58zM18,7c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C16,6.1 16.9,7 18,7zM20.78,8.58C19.93,8.21 18.99,8 18,8c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,8.9 14,9.62 14,10.43L14,11h8l0,-0.57C22,9.62 21.52,8.9 20.78,8.58zM21.65,16.65l-2.79,-2.79C18.54,13.54 18,13.76 18,14.21V16H6v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79C5.46,20.46 6,20.24 6,19.79V18h12v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79C21.84,17.16 21.84,16.84 21.65,16.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/solar_power.xml b/compose/material/material/icons/generator/raw-icons/rounded/solar_power.xml
deleted file mode 100644
index 819ff5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/solar_power.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.33,16H11v-3H5.6c-0.94,0 -1.75,0.65 -1.95,1.57L3.33,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16h7.67l-0.32,-1.43C20.14,13.65 19.33,13 18.4,13H13V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,18H13v4h6.51c1.28,0 2.23,-1.18 1.95,-2.43L21.11,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.49,22H11v-4H2.89l-0.35,1.57C2.26,20.82 3.21,22 4.49,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8L12,8c-0.55,0 -1,0.45 -1,1v1c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V9C13,8.45 12.55,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.59,8.62L18.59,8.62c0.39,-0.39 0.39,-1.02 0,-1.41L17.88,6.5c-0.39,-0.39 -1.02,-0.39 -1.41,0v0c-0.39,0.39 -0.39,1.02 0,1.41l0.71,0.71C17.57,9.01 18.2,9.01 18.59,8.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.82,8.62l0.71,-0.71c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L5.41,7.2c-0.39,0.39 -0.39,1.02 0,1.41l0,0C5.8,9.01 6.43,9.01 6.82,8.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2H4C3.45,2 3,2.45 3,3v0c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v0C6,2.45 5.55,2 5,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h-1c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v0C21,2.45 20.55,2 20,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,-2.24 5,-5H7C7,4.76 9.24,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sort.xml b/compose/material/material/icons/generator/raw-icons/rounded/sort.xml
deleted file mode 100644
index 28d006e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sort.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,16c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,7c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1zM4,13h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sort_by_alpha.xml b/compose/material/material/icons/generator/raw-icons/rounded/sort_by_alpha.xml
deleted file mode 100644
index 5dd7bd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sort_by_alpha.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.93,2.65c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.01,2.01h4.72l-2,-2.01zM12.23,21.35c0.2,0.2 0.51,0.2 0.71,0l1.98,-1.98h-4.66l1.97,1.98zM10.98,17.73c0.6,0 1.01,-0.6 0.79,-1.16L8.04,7.03c-0.18,-0.46 -0.63,-0.76 -1.12,-0.76 -0.49,0 -0.94,0.3 -1.12,0.76l-3.74,9.53c-0.22,0.56 0.19,1.16 0.79,1.16 0.35,0 0.67,-0.22 0.8,-0.55l0.71,-1.9h5.11l0.71,1.9c0.13,0.34 0.45,0.56 0.8,0.56zM4.97,13.64l1.94,-5.18 1.94,5.18L4.97,13.64zM21.05,16.14h-5.33l5.72,-8.29c0.46,-0.66 -0.02,-1.57 -0.82,-1.57h-6.48c-0.44,0 -0.79,0.36 -0.79,0.8v0.01c0,0.44 0.36,0.8 0.79,0.8h5.09l-5.73,8.28c-0.46,0.66 0.02,1.57 0.82,1.57h6.72c0.44,0 0.79,-0.36 0.79,-0.79 0.02,-0.45 -0.34,-0.81 -0.78,-0.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sos.xml b/compose/material/material/icons/generator/raw-icons/rounded/sos.xml
deleted file mode 100644
index 9197ed6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V9C15.5,7.9 14.6,7 13.5,7zM13.5,15h-3V9h3V15zM3,9v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2H2c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3v-2H3c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h3c0.55,0 1,0.45 1,1S6.55,9 6,9H3zM19,9v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2h-3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3v-2h-2c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/soup_kitchen.xml b/compose/material/material/icons/generator/raw-icons/rounded/soup_kitchen.xml
deleted file mode 100644
index 340f483..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/soup_kitchen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.15,13.5c-0.46,0 -0.8,-0.42 -0.71,-0.87C5.48,12.45 5.5,12.24 5.5,12c0,-1 -1,-2.85 -1,-3.62c0,-0.29 0.03,-0.59 0.17,-0.93C4.78,7.18 5.04,7 5.34,7c0.45,0 0.8,0.42 0.71,0.86C6.01,8.04 6,8.21 6,8.38C6,9.15 7,11 7,12c0,0.42 -0.08,0.76 -0.17,1.01C6.73,13.31 6.46,13.5 6.15,13.5zM12.65,13.5c0.31,0 0.58,-0.19 0.68,-0.49c0.09,-0.25 0.17,-0.59 0.17,-1.01c0,-1 -1,-2.85 -1,-3.62c0,-0.17 0.01,-0.34 0.04,-0.51C12.63,7.42 12.29,7 11.84,7c-0.29,0 -0.56,0.18 -0.67,0.45C11.03,7.79 11,8.08 11,8.38C11,9.15 12,11 12,12c0,0.24 -0.02,0.45 -0.06,0.63C11.85,13.08 12.19,13.5 12.65,13.5zM9.4,13.5c0.31,0 0.58,-0.19 0.68,-0.49c0.09,-0.25 0.17,-0.59 0.17,-1.01c0,-1 -1,-2.85 -1,-3.62c0,-0.17 0.01,-0.34 0.04,-0.51C9.38,7.42 9.04,7 8.59,7C8.29,7 8.03,7.18 7.92,7.45C7.78,7.79 7.75,8.08 7.75,8.38c0,0.77 1,2.63 1,3.62c0,0.24 -0.02,0.45 -0.06,0.63C8.6,13.08 8.94,13.5 9.4,13.5zM20.46,6.37c0.57,0.07 1.08,-0.34 1.12,-0.91C21.59,5.28 21.6,5.12 21.6,5c0,-1.65 -1.35,-3 -3,-3c-1.54,0 -2.81,1.16 -2.98,2.65L14.53,15H3.99c-0.6,0 -1.07,0.54 -0.98,1.14C3.54,19.46 6.39,22 9.75,22c3.48,0 6.34,-2.73 6.71,-6.23l1.15,-10.87C17.66,4.39 18.08,4 18.6,4c0.55,0 1,0.45 1,1c0,0.07 -0.01,0.18 -0.01,0.31C19.55,5.84 19.93,6.3 20.46,6.37L20.46,6.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/source.xml b/compose/material/material/icons/generator/raw-icons/rounded/source.xml
deleted file mode 100644
index a39131a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM14,16H6v-2h8V16zM18,12H6v-2h12V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/south.xml b/compose/material/material/icons/generator/raw-icons/rounded/south.xml
deleted file mode 100644
index 3fa1b00..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/south.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.3,14.29L18.3,14.29c-0.39,-0.39 -1.02,-0.39 -1.41,0L13,18.17V3c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v15.18l-3.88,-3.88c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l5.59,5.59c0.39,0.39 1.02,0.39 1.41,0l5.59,-5.59C18.68,15.32 18.68,14.68 18.3,14.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/south_america.xml b/compose/material/material/icons/generator/raw-icons/rounded/south_america.xml
deleted file mode 100644
index ca13a97..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/south_america.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM4,12c0,-1.95 0.7,-3.74 1.87,-5.13L9,10v1c0,1.1 0.9,2 2,2v5.59c0,0.27 0.11,0.52 0.29,0.71L12,20C7.58,20 4,16.42 4,12zM13,19.94V18l3.75,-5.62c0.16,-0.25 0.25,-0.54 0.25,-0.83V10.5c0,-0.55 -0.45,-1 -1,-1h-1.5l-1.4,-1.75C12.72,7.28 12.15,7 11.54,7H8V5.07C9.18,4.39 10.54,4 12,4c4.41,0 8,3.59 8,8C20,16.07 16.94,19.44 13,19.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/south_east.xml b/compose/material/material/icons/generator/raw-icons/rounded/south_east.xml
deleted file mode 100644
index db893ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/south_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9L18,9c-0.56,0 -1,0.45 -1,1v5.59L6.12,4.7c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L15.59,17H10c-0.55,0 -1,0.45 -1,1V18c0,0.55 0.45,1 1,1H18c0.55,0 1,-0.45 1,-1V10C19,9.45 18.55,9 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/south_west.xml b/compose/material/material/icons/generator/raw-icons/rounded/south_west.xml
deleted file mode 100644
index e1484a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/south_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18L15,18c0,-0.56 -0.45,-1 -1,-1H8.41L19.3,6.11c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L7,15.59V10c0,-0.55 -0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1V18c0,0.55 0.45,1 1,1H14C14.55,19 15,18.55 15,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/spa.xml b/compose/material/material/icons/generator/raw-icons/rounded/spa.xml
deleted file mode 100644
index db7c51d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/spa.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.49,9.63c-0.16,-2.42 -1.03,-4.79 -2.64,-6.76 -0.41,-0.5 -1.16,-0.5 -1.57,0 -1.65,1.98 -2.57,4.35 -2.77,6.76 1.28,0.68 2.46,1.56 3.49,2.63 1.03,-1.06 2.21,-1.94 3.49,-2.63zM8.99,12.28c-0.14,-0.1 -0.3,-0.19 -0.45,-0.29 0.15,0.11 0.31,0.19 0.45,0.29zM15.41,12.03c-0.13,0.09 -0.27,0.16 -0.4,0.26 0.13,-0.1 0.27,-0.17 0.4,-0.26zM12,15.45c-1.95,-2.97 -5.14,-5.03 -8.83,-5.39 -0.64,-0.06 -1.17,0.47 -1.11,1.11 0.45,4.8 3.65,8.78 7.98,10.33 0.63,0.23 1.29,0.4 1.97,0.51 0.68,-0.12 1.33,-0.29 1.97,-0.51 4.33,-1.55 7.53,-5.52 7.98,-10.33 0.06,-0.64 -0.48,-1.17 -1.11,-1.11 -3.71,0.36 -6.9,2.42 -8.85,5.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/space_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/space_bar.xml
deleted file mode 100644
index 95320d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/space_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10v3H6v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/space_dashboard.xml b/compose/material/material/icons/generator/raw-icons/rounded/space_dashboard.xml
deleted file mode 100644
index 3201869..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/space_dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,21H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h4c1.1,0 2,0.9 2,2v14C11,20.1 10.1,21 9,21zM15,21h4c1.1,0 2,-0.9 2,-2v-5c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v5C13,20.1 13.9,21 15,21zM21,8V5c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v3c0,1.1 0.9,2 2,2h4C20.1,10 21,9.1 21,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/spatial_audio.xml b/compose/material/material/icons/generator/raw-icons/rounded/spatial_audio.xml
deleted file mode 100644
index 7a84a9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/spatial_audio.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.11,7.95c-1.89,-0.23 -5.57,-1.83 -6.09,-6.09C15.96,1.36 15.54,1 15.04,1h0c-0.6,0 -1.07,0.53 -1,1.13c0.31,2.43 2.38,7.12 7.8,7.8c0.6,0.08 1.13,-0.4 1.13,-1v0C22.97,8.43 22.6,8.01 22.11,7.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,5.83c0.64,0.17 1.26,-0.31 1.26,-0.97c0,-0.47 -0.34,-0.85 -0.79,-0.97c-0.49,-0.14 -1.72,-0.68 -2.11,-2.13C19.95,1.32 19.57,1 19.11,1H19.1c-0.66,0 -1.14,0.64 -0.96,1.28C18.74,4.5 20.58,5.53 21.71,5.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/spatial_audio_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/spatial_audio_off.xml
deleted file mode 100644
index 249bb35..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/spatial_audio_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22L2,19c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2l0,-0.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,1.85c-0.37,-0.48 -1.08,-0.52 -1.5,-0.09l0,0c-0.35,0.35 -0.39,0.91 -0.09,1.3c1.17,1.5 2.64,5.23 0,8.61c-0.3,0.39 -0.26,0.95 0.09,1.3l0,0c0.43,0.43 1.13,0.38 1.5,-0.09C22.61,10.95 24.46,6.16 21.11,1.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.31,4.84c-0.33,-0.57 -1.11,-0.67 -1.58,-0.21c-0.33,0.33 -0.36,0.84 -0.13,1.25c0.25,0.44 0.74,1.69 -0.01,2.99c-0.23,0.4 -0.19,0.9 0.14,1.22l0,0c0.47,0.47 1.25,0.35 1.58,-0.22C19.47,7.88 18.89,5.85 18.31,4.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/spatial_tracking.xml b/compose/material/material/icons/generator/raw-icons/rounded/spatial_tracking.xml
deleted file mode 100644
index b345bb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/spatial_tracking.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.39,1.76L19.39,1.76c-0.43,-0.43 -1.14,-0.39 -1.51,0.09c-1.5,1.93 -3.35,6.72 0,11.03c0.37,0.48 1.08,0.52 1.5,0.09l0,0c0.35,-0.35 0.39,-0.91 0.09,-1.3c-1.17,-1.5 -2.64,-5.23 0,-8.61C19.78,2.67 19.74,2.11 19.39,1.76z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.4,5.86c0.23,-0.4 0.19,-0.9 -0.14,-1.22l0,0C21.79,4.16 21,4.27 20.67,4.85c-1.15,2 -0.57,4.03 0.01,5.04c0.33,0.57 1.11,0.67 1.58,0.21c0.33,-0.33 0.36,-0.84 0.13,-1.25C22.14,8.41 21.65,7.16 22.4,5.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/speaker.xml b/compose/material/material/icons/generator/raw-icons/rounded/speaker.xml
deleted file mode 100644
index c5604ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2L7,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,1.99 2,1.99L17,22c1.1,0 2,-0.9 2,-2L19,4c0,-1.1 -0.9,-2 -2,-2zM12,4c1.1,0 2,0.9 2,2s-0.9,2 -2,2c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2zM12,20c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/speaker_group.xml b/compose/material/material/icons/generator/raw-icons/rounded/speaker_group.xml
deleted file mode 100644
index 7159b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/speaker_group.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.2,1L9.8,1C8.81,1 8,1.81 8,2.8v14.4c0,0.99 0.81,1.79 1.8,1.79l8.4,0.01c0.99,0 1.8,-0.81 1.8,-1.8L20,2.8c0,-0.99 -0.81,-1.8 -1.8,-1.8zM14,3c1.1,0 2,0.89 2,2s-0.9,2 -2,2 -2,-0.89 -2,-2 0.9,-2 2,-2zM14,16.5c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5c-0.55,0 -1,0.45 -1,1v15c0,1.1 0.89,2 2,2h9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H7c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/speaker_notes.xml b/compose/material/material/icons/generator/raw-icons/rounded/speaker_notes.xml
deleted file mode 100644
index 05db2a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/speaker_notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM8,14L6,14v-2h2v2zM8,11L6,11L6,9h2v2zM8,8L6,8L6,6h2v2zM14,14h-3c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h3c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,11h-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,8h-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/speaker_notes_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/speaker_notes_off.xml
deleted file mode 100644
index ae6439e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/speaker_notes_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.91,2.36c-0.35,-0.35 -0.92,-0.35 -1.27,0s-0.35,0.92 0,1.27l1.38,1.38L2,22l4,-4h9l5.09,5.09c0.35,0.35 0.92,0.35 1.27,0s0.35,-0.92 0,-1.27L1.91,2.36zM7,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM7,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM20,2L4.08,2l7,7L17,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-3.92l6.99,6.99C21.14,17.95 22,17.08 22,16L22,4c0,-1.1 -0.9,-2 -2,-2zM17,8h-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/speaker_phone.xml b/compose/material/material/icons/generator/raw-icons/rounded/speaker_phone.xml
deleted file mode 100644
index 7821399..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/speaker_phone.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.76,7.83l0.02,0.02c0.35,0.35 0.89,0.38 1.3,0.09C9.91,7.37 10.92,7.02 12,7.02s2.09,0.35 2.92,0.93c0.4,0.29 0.95,0.26 1.3,-0.09l0.02,-0.02c0.42,-0.42 0.39,-1.14 -0.09,-1.49C14.98,5.5 13.55,5 12,5S9.02,5.5 7.86,6.34C7.37,6.69 7.34,7.41 7.76,7.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C9.38,1 6.97,1.93 5.08,3.47C4.62,3.84 4.57,4.53 5,4.96l0,0c0.36,0.36 0.93,0.39 1.32,0.07C7.86,3.76 9.85,3 12,3s4.14,0.76 5.69,2.03c0.39,0.32 0.96,0.29 1.32,-0.07l0,0c0.42,-0.42 0.38,-1.11 -0.08,-1.49C17.03,1.93 14.62,1 12,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10l-6,0c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h5.99c0.55,0 1,-0.45 1,-1L16,11C16,10.45 15.55,10 15,10zM15,20H9v-8h6V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/speed.xml b/compose/material/material/icons/generator/raw-icons/rounded/speed.xml
deleted file mode 100644
index 0c1f5b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/speed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.46,10a1,1 0,0 0,-0.07 1,7.55 7.55,0 0,1 0.52,1.81 8,8 0,0 1,-0.69 4.73,1 1,0 0,1 -0.89,0.53H5.68a1,1 0,0 1,-0.89 -0.54A8,8 0,0 1,13 6.06a7.69,7.69 0,0 1,2.11 0.56,1 1,0 0,0 1,-0.07 1,1 0,0 0,-0.17 -1.76A10,10 0,0 0,3.35 19a2,2 0,0 0,1.72 1h13.85a2,2 0,0 0,1.74 -1,10 10,0 0,0 0.55,-8.89 1,1 0,0 0,-1.75 -0.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,12.59a2,2 0,0 0,2.83 2.83l5.66,-8.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/spellcheck.xml b/compose/material/material/icons/generator/raw-icons/rounded/spellcheck.xml
deleted file mode 100644
index a5f5e8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/spellcheck.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.12,16c0.69,0 1.15,-0.69 0.9,-1.32L9.77,3.87C9.56,3.34 9.06,3 8.5,3s-1.06,0.34 -1.27,0.87L2.98,14.68c-0.25,0.63 0.22,1.32 0.9,1.32 0.4,0 0.76,-0.25 0.91,-0.63L5.67,13h5.64l0.9,2.38c0.15,0.37 0.51,0.62 0.91,0.62zM6.43,11L8.5,5.48 10.57,11L6.43,11zM20.89,12.29l-7.39,7.39 -2.97,-2.97c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l3.68,3.68c0.39,0.39 1.02,0.39 1.41,0l8.08,-8.09c0.39,-0.39 0.39,-1.02 0,-1.41 -0.38,-0.39 -1.02,-0.39 -1.4,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/splitscreen.xml b/compose/material/material/icons/generator/raw-icons/rounded/splitscreen.xml
deleted file mode 100644
index 9276ed9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/splitscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v5H6V4H18zM18,2H6C4.9,2 4,2.9 4,4v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,15v5H6v-5H18zM18,13H6c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-5C20,13.9 19.1,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/spoke.xml b/compose/material/material/icons/generator/raw-icons/rounded/spoke.xml
deleted file mode 100644
index b271345..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/spoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7c0,2.21 -1.79,4 -4,4S8,9.21 8,7s1.79,-4 4,-4S16,4.79 16,7zM7,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.21,13 7,13zM17,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S19.21,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports.xml
deleted file mode 100644
index 44374f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-9.77C9.57,6 8.01,6.66 6.87,7.73C6.54,6.73 5.61,6 4.5,6C3.12,6 2,7.12 2,8.5C2,9.88 3.12,11 4.5,11c0.21,0 0.41,-0.03 0.61,-0.08c-0.05,0.25 -0.09,0.51 -0.1,0.78c-0.18,3.68 2.95,6.68 6.68,6.27c2.55,-0.28 4.68,-2.26 5.19,-4.77c0.15,-0.71 0.15,-1.4 0.06,-2.06c-0.09,-0.6 0.38,-1.13 0.99,-1.13l2.76,0C21.56,10 22,9.55 22,9V7C22,6.45 21.55,6 21,6zM4.5,9C4.22,9 4,8.78 4,8.5C4,8.22 4.22,8 4.5,8S5,8.22 5,8.5C5,8.78 4.78,9 4.5,9zM11,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S12.66,15 11,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_bar.xml
deleted file mode 100644
index 7d88359..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-1.56c0.33,-0.55 0.53,-1.18 0.55,-1.86c0.04,-1.03 -0.43,-1.99 -1.16,-2.71c-1.54,-1.54 -2.74,-1.56 -3.82,-1.29C12.2,2.45 11.16,2.02 10,2.02c-1.89,0 -3.51,1.11 -4.27,2.71C4.15,5.26 3,6.74 3,8.5c0,1.86 1.28,3.41 3,3.86L6,19c0,1.1 0.9,2 2,2h7c1.1,0 2,-0.9 2,-2v0h2c1.1,0 2,-0.9 2,-2v-6C21,9.9 20.1,9 19,9zM7,10.5c-1.1,0 -2,-0.9 -2,-2c0,-0.85 0.55,-1.6 1.37,-1.88l0.8,-0.27l0.36,-0.76C8,4.62 8.94,4.02 10,4.02c0.79,0 1.39,0.35 1.74,0.65l0.78,0.65c0,0 0.64,-0.32 1.47,-0.32c1.1,0 2,0.9 2,2c0,0 -3,0 -3,0C9.67,7 9.15,10.5 7,10.5zM19,17h-2v-6h2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_baseball.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_baseball.xml
deleted file mode 100644
index 49199a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_baseball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.81,6.28C2.67,7.9 2,9.87 2,12s0.67,4.1 1.81,5.72C6.23,16.95 8,14.68 8,12S6.23,7.05 3.81,6.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.19,6.28C17.77,7.05 16,9.32 16,12s1.77,4.95 4.19,5.72C21.33,16.1 22,14.13 22,12S21.33,7.9 20.19,6.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-3.28 1.97,-6.09 4.79,-7.33C17.01,3.02 14.63,2 12,2S6.99,3.02 5.21,4.67C8.03,5.91 10,8.72 10,12s-1.97,6.09 -4.79,7.33C6.99,20.98 9.37,22 12,22s5.01,-1.02 6.79,-2.67C15.97,18.09 14,15.28 14,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_basketball.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_basketball.xml
deleted file mode 100644
index 98bb2cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_basketball.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.09,11h4.86c-0.16,-1.61 -0.71,-3.11 -1.54,-4.4C18.68,7.43 17.42,9.05 17.09,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.91,11C6.58,9.05 5.32,7.43 3.59,6.6C2.76,7.89 2.21,9.39 2.05,11H6.91z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.07,11c0.32,-2.59 1.88,-4.79 4.06,-6c-1.6,-1.63 -3.74,-2.71 -6.13,-2.95V11H15.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,11H11V2.05C8.61,2.29 6.46,3.37 4.87,5C7.05,6.21 8.61,8.41 8.93,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.07,13H13v8.95c2.39,-0.24 4.54,-1.32 6.13,-2.95C16.95,17.79 15.39,15.59 15.07,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.59,17.4c1.72,-0.83 2.99,-2.46 3.32,-4.4H2.05C2.21,14.61 2.76,16.11 3.59,17.4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.09,13c0.33,1.95 1.59,3.57 3.32,4.4c0.83,-1.29 1.38,-2.79 1.54,-4.4H17.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,13c-0.32,2.59 -1.88,4.79 -4.06,6c1.6,1.63 3.74,2.71 6.13,2.95V13H8.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_cricket.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_cricket.xml
deleted file mode 100644
index 5c402b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_cricket.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.05,12.81L6.56,4.32c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.32,7.15c-0.39,0.39 -0.39,1.02 0,1.41l8.49,8.49c0.39,0.39 1.02,0.39 1.41,0l2.83,-2.83C15.44,13.83 15.44,13.2 15.05,12.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.34,17.76l3.53,3.53c0.39,0.39 1.03,0.39 1.42,0l0,0c0.39,-0.39 0.39,-1.03 0,-1.42l-3.53,-3.53L14.34,17.76z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,5.5m-3.5,0a3.5,3.5 0,1 1,7 0a3.5,3.5 0,1 1,-7 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_esports.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_esports.xml
deleted file mode 100644
index ee0e0f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_esports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.58,16.09l-1.09,-7.66C20.21,6.46 18.52,5 16.53,5H7.47C5.48,5 3.79,6.46 3.51,8.43l-1.09,7.66C2.2,17.63 3.39,19 4.94,19h0c0.68,0 1.32,-0.27 1.8,-0.75L9,16h6l2.25,2.25c0.48,0.48 1.13,0.75 1.8,0.75h0C20.61,19 21.8,17.63 21.58,16.09zM11,11H9v2H8v-2H6v-1h2V8h1v2h2V11zM15,10c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,9.55 15.55,10 15,10zM17,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C18,12.55 17.55,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_football.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_football.xml
deleted file mode 100644
index 66483c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_football.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.02,15.62c-0.08,2.42 0.32,4.34 0.67,4.69s2.28,0.76 4.69,0.67L3.02,15.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.08,3.28C10.75,3.7 8.29,4.62 6.46,6.46s-2.76,4.29 -3.18,6.62l7.63,7.63c2.34,-0.41 4.79,-1.34 6.62,-3.18s2.76,-4.29 3.18,-6.62L13.08,3.28zM14.8,10.6l-4.2,4.2c-0.39,0.39 -1.01,0.39 -1.4,0s-0.39,-1.01 0,-1.4l4.2,-4.2c0.39,-0.39 1.01,-0.39 1.4,0S15.19,10.21 14.8,10.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.98,8.38c0.08,-2.42 -0.32,-4.34 -0.67,-4.69s-2.28,-0.76 -4.69,-0.67L20.98,8.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_golf.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_golf.xml
deleted file mode 100644
index 89e3cfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_golf.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c3.87,0 7,-3.13 7,-7c0,-3.87 -3.13,-7 -7,-7C8.13,2 5,5.13 5,9C5,12.87 8.13,16 12,16zM12,4c2.76,0 5,2.24 5,5s-2.24,5 -5,5s-5,-2.24 -5,-5S9.24,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17H8c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h1c1.1,0 2,0.9 2,2v1h2v-1c0,-1.1 0.9,-2 2,-2h1c0.55,0 1,-0.45 1,-1C17,17.45 16.55,17 16,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_gymnastics.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_gymnastics.xml
deleted file mode 100644
index af786c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_gymnastics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM13,22c-0.56,0 -1.02,-0.44 -1.05,-1l-0.45,-9L8,11H2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h5l6.26,-4.47c0.42,-0.3 1,-0.23 1.34,0.16c0.38,0.45 0.3,1.12 -0.18,1.46L11.14,8.5H14l7.09,-4.09c0.41,-0.24 0.93,-0.15 1.24,0.21c0.36,0.43 0.3,1.07 -0.14,1.41L14.5,12l-0.45,9C14.02,21.56 13.56,22 13,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_handball.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_handball.xml
deleted file mode 100644
index ff8729d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_handball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.27,6C13.72,6.95 14.05,8.18 15,8.73c0.95,0.55 2.18,0.22 2.73,-0.73c0.55,-0.95 0.22,-2.18 -0.73,-2.73C16.05,4.72 14.82,5.05 14.27,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.84,10.41c0,0 -1.63,-0.94 -2.6,-1.5c-2.13,-1.24 -3.01,-3.83 -2.18,-6.07c0.17,-0.46 -0.01,-0.97 -0.43,-1.21C10.1,1.33 9.41,1.56 9.2,2.13C8.25,4.64 8.85,7.48 10.66,9.4l-4.65,8.05c-0.28,0.48 -0.11,1.09 0.37,1.37c0.48,0.28 1.09,0.11 1.37,-0.37l1,-1.73l1.73,1l-2.5,4.33c-0.28,0.48 -0.11,1.09 0.37,1.37c0.48,0.28 1.09,0.11 1.37,-0.37l5.79,-10.02c0.98,1.34 1.26,3.12 0.66,4.72c-0.17,0.45 0.02,0.96 0.43,1.2c0.53,0.31 1.22,0.08 1.44,-0.5C19.01,15.83 18.45,12.61 15.84,10.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,3.8c0.72,0.41 1.63,0.17 2.05,-0.55c0.41,-0.72 0.17,-1.63 -0.55,-2.05c-0.72,-0.41 -1.63,-0.17 -2.05,0.55C11.79,2.47 12.03,3.39 12.75,3.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_hockey.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_hockey.xml
deleted file mode 100644
index 520fe43..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_hockey.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17v3l2,0v-4H3C2.45,16 2,16.45 2,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16H5v4l4.69,-0.01c0.38,0 0.72,-0.21 0.89,-0.55l0.87,-1.9l-1.59,-3.48L9,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,16.29C21.53,16.11 21.28,16 21,16h-1v4l2,0v-3C22,16.72 21.89,16.47 21.71,16.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1c0.17,0.34 0.51,0.55 0.89,0.55L19,20v-4h-4L13.6,12.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_kabaddi.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_kabaddi.xml
deleted file mode 100644
index f956961..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_kabaddi.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,2.38m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,10.88v-3.7l-4.99,-2.11c-0.98,-0.41 -2.12,-0.07 -2.71,0.81l0,0l-1,1.6c-0.67,1.18 -1.91,2.06 -3.41,2.32l0.06,0.06c0.69,0.69 1.52,1.07 2.46,1.17c0.8,-0.42 1.52,-0.98 2.09,-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v5.74c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5l2.1,-2l1.62,7.19c0.11,0.47 0.53,0.81 1.02,0.81h0c0.66,0 1.15,-0.6 1.02,-1.24l-1.94,-9.76l-0.62,-3.1l1.8,0.7v2.4c0,0.55 0.45,1 1,1h0C23.55,11.88 24,11.43 24,10.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.09c0.22,0.15 0.47,0.24 0.72,0.29c0.13,0.02 0.25,0.04 0.38,0.04s0.26,-0.01 0.38,-0.04c0.13,-0.02 0.25,-0.06 0.37,-0.11c0.24,-0.1 0.47,-0.24 0.66,-0.44c0.49,-0.49 0.67,-1.17 0.55,-1.8C13.28,5.66 13.1,5.29 12.8,5c-0.19,-0.19 -0.42,-0.34 -0.66,-0.44c-0.12,-0.05 -0.24,-0.09 -0.37,-0.11s-0.25,-0.04 -0.38,-0.04c-0.12,0 -0.23,0.01 -0.35,0.03c-0.14,0.02 -0.28,0.06 -0.41,0.11C10.4,4.66 10.17,4.81 9.98,5C9.68,5.29 9.5,5.66 9.43,6.03c-0.12,0.63 0.06,1.31 0.55,1.8C10.07,7.93 10.18,8.01 10.29,8.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.24,10.56l-2,-2c-0.1,-0.1 -0.2,-0.18 -0.31,-0.26C8.71,8.16 8.46,8.06 8.21,8.02C8.08,7.99 7.96,7.98 7.83,7.98c-0.51,0 -1.02,0.2 -1.41,0.59l-3.34,3.34c-0.41,0.41 -0.62,0.98 -0.58,1.54C2.5,13.63 2.54,13.82 2.61,14l1.07,2.95l-2.92,2.92c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0l3.54,-3.54v-2.22L7,16.75v4.13c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5l-2.12,-2.12l2.36,-2.36l0.71,0.71l0,0c1.02,1 2.28,1.69 3.79,1.94c0.64,0.11 1.21,-0.45 1.16,-1.1v0c-0.03,-0.48 -0.4,-0.87 -0.87,-0.94C12.9,11.83 11.97,11.29 11.24,10.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_martial_arts.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_martial_arts.xml
deleted file mode 100644
index 38d2fcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_martial_arts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.06,2.6L11.6,8.7l-1.21,-1.04l2.48,-1.43c0.57,-0.33 0.67,-1.11 0.21,-1.57l-2.95,-2.95c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l2.03,2.03L5.35,8.26c-0.23,0.13 -0.39,0.35 -0.46,0.6l-0.96,3.49c-0.07,0.26 -0.04,0.53 0.1,0.77l1.74,3.02c0.28,0.48 0.89,0.64 1.37,0.37h0c0.48,-0.28 0.64,-0.89 0.37,-1.37l-1.53,-2.66l0.36,-1.29L9.5,13l0.44,8c0.03,0.56 0.49,1 1.05,1h0c0.56,0 1.02,-0.44 1.05,-1l0.45,-9l7.87,-7.96c0.36,-0.36 0.38,-0.93 0.05,-1.32l0,0C20.07,2.32 19.47,2.27 19.06,2.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_mma.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_mma.xml
deleted file mode 100644
index 9ddc0fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_mma.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-3H7V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c-0.55,0 -1,0.45 -1,1V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v5.8c0,0.13 0.01,0.26 0.04,0.39l0.8,4c0.09,0.47 0.5,0.8 0.98,0.8h10.36c0.45,0 0.89,-0.36 0.98,-0.8l0.8,-4C18.99,11.06 19,10.93 19,10.8V8C19,7.45 18.55,7 18,7zM14,10H8c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v1C15,9.55 14.55,10 14,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_motorsports.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_motorsports.xml
deleted file mode 100644
index 99386ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_motorsports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11.39c0,-0.65 -0.39,-1.23 -0.98,-1.48L5.44,7.55c-1.48,1.68 -2.32,3.7 -2.8,5.45h7.75C11.28,13 12,12.28 12,11.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,11.22c-0.41,-4.41 -4.56,-7.49 -8.98,-7.2c-2.51,0.16 -4.44,0.94 -5.93,2.04l4.74,2.01c1.33,0.57 2.2,1.87 2.2,3.32c0,1.99 -1.62,3.61 -3.61,3.61H2.21C2,16.31 2,17.2 2,17.2V18c0,1.1 0.9,2 2,2h10C18.67,20 22.41,15.99 21.96,11.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_rugby.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_rugby.xml
deleted file mode 100644
index c4608dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_rugby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,3.51c-0.56,-0.56 -2.15,-0.97 -4.16,-0.97c-3.08,0 -7.15,0.96 -9.98,3.79C1.66,11.03 2.1,19.07 3.51,20.49c0.56,0.56 2.15,0.97 4.16,0.97c3.08,0 7.15,-0.96 9.98,-3.79C22.34,12.97 21.9,4.93 20.49,3.51zM7.76,7.76c2.64,-2.64 6.35,-3.12 8.03,-3.19c-2.05,0.94 -4.46,2.45 -6.61,4.61c-2.16,2.16 -3.67,4.58 -4.61,6.63C4.66,13.33 5.44,10.07 7.76,7.76zM16.24,16.24c-2.64,2.64 -6.35,3.12 -8.03,3.19c2.05,-0.94 4.46,-2.45 6.61,-4.61c2.16,-2.16 3.67,-4.58 4.62,-6.63C19.34,10.67 18.56,13.93 16.24,16.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_score.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_score.xml
deleted file mode 100644
index 971845a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6H9V4h2V6zM15,4h-2v2h2V4zM9,14h2v-2H9V14zM19,10V8h-2v2H19zM19,14v-2h-2v2H19zM13,14h2v-2h-2V14zM19,4h-2v2h2V4zM13,8V6h-2v2H13zM7,10V8h2V6H7V5c0,-0.55 -0.45,-1 -1,-1h0C5.45,4 5,4.45 5,5v14c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-7h2v-2H7zM15,12h2v-2h-2V12zM11,10v2h2v-2H11zM9,8v2h2V8H9zM13,10h2V8h-2V10zM15,6v2h2V6H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_soccer.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_soccer.xml
deleted file mode 100644
index d01405e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_soccer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,5.3l1.35,-0.95c1.82,0.56 3.37,1.76 4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3zM9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69C6.28,6.12 7.83,4.92 9.65,4.35zM7.08,17.11l-1.14,0.1C4.73,15.81 4,13.99 4,12c0,-0.12 0.01,-0.23 0.02,-0.35l1,-0.73L6.4,11.4l1.46,4.34L7.08,17.11zM14.5,19.59C13.71,19.85 12.87,20 12,20s-1.71,-0.15 -2.5,-0.41l-0.69,-1.49L9.45,17h5.11l0.64,1.11L14.5,19.59zM14.27,15H9.73l-1.35,-4.02L12,8.44l3.63,2.54L14.27,15zM18.06,17.21l-1.14,-0.1l-0.79,-1.37l1.46,-4.34l1.39,-0.47l1,0.73C19.99,11.77 20,11.88 20,12C20,13.99 19.27,15.81 18.06,17.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_tennis.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_tennis.xml
deleted file mode 100644
index 3b1d39b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_tennis.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.52,2.49c-2.34,-2.34 -6.62,-1.87 -9.55,1.06c-1.6,1.6 -2.52,3.87 -2.54,5.46c-0.02,1.58 0.26,3.89 -1.35,5.5l-3.54,3.53c-0.39,0.39 -0.39,1.02 0,1.42l0,0c0.39,0.39 1.02,0.39 1.42,0l3.53,-3.54c1.61,-1.61 3.92,-1.33 5.5,-1.35s3.86,-0.94 5.46,-2.54C21.38,9.11 21.86,4.83 19.52,2.49zM10.32,11.68c-1.53,-1.53 -1.05,-4.61 1.06,-6.72s5.18,-2.59 6.72,-1.06c1.53,1.53 1.05,4.61 -1.06,6.72S11.86,13.21 10.32,11.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17c0.53,0 1.04,0.21 1.41,0.59c0.78,0.78 0.78,2.05 0,2.83C19.04,20.79 18.53,21 18,21s-1.04,-0.21 -1.41,-0.59c-0.78,-0.78 -0.78,-2.05 0,-2.83C16.96,17.21 17.47,17 18,17M18,15c-1.02,0 -2.05,0.39 -2.83,1.17c-1.56,1.56 -1.56,4.09 0,5.66C15.95,22.61 16.98,23 18,23s2.05,-0.39 2.83,-1.17c1.56,-1.56 1.56,-4.09 0,-5.66C20.05,15.39 19.02,15 18,15L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sports_volleyball.xml b/compose/material/material/icons/generator/raw-icons/rounded/sports_volleyball.xml
deleted file mode 100644
index 6df9d54..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sports_volleyball.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4.01C3.58,5.84 2,8.73 2,12c0,1.46 0.32,2.85 0.89,4.11L6,14.31V4.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11.42V2.05C9.94,2.16 8.93,2.43 8,2.84v10.32L11,11.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.15l-8.11,4.68c0.61,0.84 1.34,1.59 2.18,2.2L15,14.89L12,13.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.96v3.46l8.11,4.68c0.42,-0.93 0.7,-1.93 0.82,-2.98L13,7.96z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.07,21.2C9.28,21.71 10.6,22 12,22c3.34,0 6.29,-1.65 8.11,-4.16L17,16.04L8.07,21.2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.92,10.81c-0.55,-4.63 -4.26,-8.3 -8.92,-8.76v3.6L21.92,10.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/square.xml b/compose/material/material/icons/generator/raw-icons/rounded/square.xml
deleted file mode 100644
index 2a767b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/square_foot.xml b/compose/material/material/icons/generator/raw-icons/rounded/square_foot.xml
deleted file mode 100644
index b116b38..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/square_foot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,17.66l-0.71,0.71c-0.2,0.2 -0.51,0.2 -0.71,0l0,0c-0.2,-0.2 -0.2,-0.51 0,-0.71l0.71,-0.71l-1.94,-1.94l-0.71,0.71c-0.2,0.2 -0.51,0.2 -0.71,0l0,0c-0.2,-0.2 -0.2,-0.51 0,-0.71l0.71,-0.71l-1.94,-1.94l-0.71,0.71c-0.2,0.2 -0.51,0.2 -0.71,0l0,0c-0.2,-0.2 -0.2,-0.51 0,-0.71l0.71,-0.71L9.7,9.7l-0.71,0.71c-0.2,0.2 -0.51,0.2 -0.71,0l0,0c-0.2,-0.2 -0.2,-0.51 0,-0.71l0.71,-0.71L7.05,7.05L6.34,7.76c-0.2,0.2 -0.51,0.2 -0.71,0l0,0c-0.2,-0.2 -0.2,-0.51 0,-0.71l0.71,-0.71L4.85,4.85C4.54,4.54 4,4.76 4,5.21V18c0,1.1 0.9,2 2,2h12.79c0.45,0 0.67,-0.54 0.35,-0.85L17.66,17.66zM7,16v-4.76L12.76,17H8C7.45,17 7,16.55 7,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/ssid_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/ssid_chart.xml
deleted file mode 100644
index 86e458f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/ssid_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.03c0,-0.32 0.15,-0.62 0.41,-0.81L7.14,5.5c0.4,-0.29 0.95,-0.25 1.3,0.1l3.78,3.78l7.2,-5.23C20.07,3.67 21,4.14 21,4.96c0,0.32 -0.15,0.62 -0.41,0.81l-7.9,5.73c-0.4,0.29 -0.95,0.25 -1.29,-0.1L7.62,7.62L4.59,9.84C3.93,10.32 3,9.85 3,9.03zM21,16c0,-0.55 -0.45,-1 -1,-1h-3.35c-0.23,0 -0.45,0.08 -0.62,0.22l-3.9,3.12L6.6,12.99c-0.35,-0.34 -0.88,-0.38 -1.27,-0.1l-1.9,1.35C3.16,14.43 3,14.74 3,15.06c0,0.81 0.92,1.29 1.58,0.81L5.8,15l5.57,5.39c0.36,0.35 0.93,0.38 1.32,0.06L17,17h3C20.55,17 21,16.55 21,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stacked_bar_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/stacked_bar_chart.xml
deleted file mode 100644
index 4735c4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stacked_bar_chart.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20L6,20c1.1,0 2,-0.9 2,-2V9H4v9C4,19.1 4.9,20 6,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4V6c0,-1.1 -0.9,-2 -2,-2h0C4.9,4 4,4.9 4,6V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,11h4V9c0,-1.1 -0.9,-2 -2,-2h0c-1.1,0 -2,0.9 -2,2V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12v2h4v-2c0,-1.1 -0.9,-2 -2,-2h0C16.9,10 16,10.9 16,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20L18,20c1.1,0 2,-0.9 2,-2v-3h-4v3C16,19.1 16.9,20 18,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20L12,20c1.1,0 2,-0.9 2,-2v-6h-4v6C10,19.1 10.9,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stacked_line_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/stacked_line_chart.xml
deleted file mode 100644
index a201b9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stacked_line_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.79,14.78L2.7,14.69c-0.39,-0.39 -0.39,-1.02 0,-1.41l6.09,-6.1c0.39,-0.39 1.02,-0.39 1.41,0l3.29,3.29l6.39,-7.18c0.38,-0.43 1.05,-0.44 1.45,-0.04l0,0c0.37,0.38 0.39,0.98 0.04,1.37l-7.17,8.07c-0.38,0.43 -1.04,0.45 -1.45,0.04L9.5,9.48l-5.3,5.3C3.82,15.17 3.18,15.17 2.79,14.78zM4.2,20.78l5.3,-5.3l3.25,3.25c0.41,0.41 1.07,0.39 1.45,-0.04l7.17,-8.07c0.35,-0.39 0.33,-0.99 -0.04,-1.37l0,0c-0.4,-0.4 -1.07,-0.39 -1.45,0.04l-6.39,7.18l-3.29,-3.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-6.09,6.1c-0.39,0.39 -0.39,1.02 0,1.41l0.09,0.09C3.18,21.17 3.82,21.17 4.2,20.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stadium.xml b/compose/material/material/icons/generator/raw-icons/rounded/stadium.xml
deleted file mode 100644
index 13d35c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stadium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.11,5.45L3.72,6.64C3.39,6.8 3,6.56 3,6.19V3.81C3,3.44 3.39,3.2 3.72,3.36l2.38,1.19C6.47,4.74 6.47,5.26 6.11,5.45zM18,3.81v2.38c0,0.37 0.39,0.61 0.72,0.45l2.38,-1.19c0.37,-0.18 0.37,-0.71 0,-0.89l-2.38,-1.19C18.39,3.2 18,3.44 18,3.81zM11,2.81v2.38c0,0.37 0.39,0.61 0.72,0.45l2.38,-1.19c0.37,-0.18 0.37,-0.71 0,-0.89l-2.38,-1.19C11.39,2.2 11,2.44 11,2.81zM5,10.04C6.38,10.53 8.77,11 12,11s5.62,-0.47 7,-0.96C19,9.86 16.22,9 12,9S5,9.86 5,10.04zM14,17h-4c-0.55,0 -1,0.45 -1,1l0,3.88C4.94,21.49 2,20.34 2,19v-9c0,-1.66 4.48,-3 10,-3s10,1.34 10,3v9c0,1.34 -2.94,2.48 -7,2.87L15,18C15,17.45 14.55,17 14,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stairs.xml b/compose/material/material/icons/generator/raw-icons/rounded/stairs.xml
deleted file mode 100644
index 09a6ca4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stairs.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM17,8h-1.42v3.33H13v3.33h-2.58L10.45,18H7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h1.42v-3.33H11V9.33h2.58V6H17c0.55,0 1,0.45 1,1C18,7.55 17.55,8 17,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/star.xml b/compose/material/material/icons/generator/raw-icons/rounded/star.xml
deleted file mode 100644
index 76a947b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/star.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27l4.15,2.51c0.76,0.46 1.69,-0.22 1.49,-1.08l-1.1,-4.72l3.67,-3.18c0.67,-0.58 0.31,-1.68 -0.57,-1.75l-4.83,-0.41l-1.89,-4.46c-0.34,-0.81 -1.5,-0.81 -1.84,0L9.19,8.63L4.36,9.04c-0.88,0.07 -1.24,1.17 -0.57,1.75l3.67,3.18l-1.1,4.72c-0.2,0.86 0.73,1.54 1.49,1.08L12,17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/star_border.xml b/compose/material/material/icons/generator/raw-icons/rounded/star_border.xml
deleted file mode 100644
index 16a2efc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/star_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.65,9.04l-4.84,-0.42 -1.89,-4.45c-0.34,-0.81 -1.5,-0.81 -1.84,0L9.19,8.63l-4.83,0.41c-0.88,0.07 -1.24,1.17 -0.57,1.75l3.67,3.18 -1.1,4.72c-0.2,0.86 0.73,1.54 1.49,1.08l4.15,-2.5 4.15,2.51c0.76,0.46 1.69,-0.22 1.49,-1.08l-1.1,-4.73 3.67,-3.18c0.67,-0.58 0.32,-1.68 -0.56,-1.75zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/star_border_purple500.xml b/compose/material/material/icons/generator/raw-icons/rounded/star_border_purple500.xml
deleted file mode 100644
index cb4f3f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/star_border_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89M9.58,10H5.12c-0.97,0 -1.37,1.25 -0.58,1.81l3.64,2.6l-1.43,4.61c-0.29,0.93 0.79,1.68 1.56,1.09L12,17.31l3.69,2.81c0.77,0.59 1.85,-0.16 1.56,-1.09l-1.43,-4.61l3.64,-2.6c0.79,-0.57 0.39,-1.81 -0.58,-1.81h-4.46l-1.47,-4.84c-0.29,-0.95 -1.63,-0.95 -1.91,0L9.58,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/star_half.xml b/compose/material/material/icons/generator/raw-icons/rounded/star_half.xml
deleted file mode 100644
index 219b90a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/star_half.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.65,9.04l-4.84,-0.42 -1.89,-4.45c-0.34,-0.81 -1.5,-0.81 -1.84,0L9.19,8.63l-4.83,0.41c-0.88,0.07 -1.24,1.17 -0.57,1.75l3.67,3.18 -1.1,4.72c-0.2,0.86 0.73,1.54 1.49,1.08l4.15,-2.5 4.15,2.51c0.76,0.46 1.69,-0.22 1.49,-1.08l-1.1,-4.73 3.67,-3.18c0.67,-0.58 0.32,-1.68 -0.56,-1.75zM12,15.4V6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/star_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/star_outline.xml
deleted file mode 100644
index 16a2efc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/star_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.65,9.04l-4.84,-0.42 -1.89,-4.45c-0.34,-0.81 -1.5,-0.81 -1.84,0L9.19,8.63l-4.83,0.41c-0.88,0.07 -1.24,1.17 -0.57,1.75l3.67,3.18 -1.1,4.72c-0.2,0.86 0.73,1.54 1.49,1.08l4.15,-2.5 4.15,2.51c0.76,0.46 1.69,-0.22 1.49,-1.08l-1.1,-4.73 3.67,-3.18c0.67,-0.58 0.32,-1.68 -0.56,-1.75zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/star_purple500.xml b/compose/material/material/icons/generator/raw-icons/rounded/star_purple500.xml
deleted file mode 100644
index cb4f3f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/star_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89M9.58,10H5.12c-0.97,0 -1.37,1.25 -0.58,1.81l3.64,2.6l-1.43,4.61c-0.29,0.93 0.79,1.68 1.56,1.09L12,17.31l3.69,2.81c0.77,0.59 1.85,-0.16 1.56,-1.09l-1.43,-4.61l3.64,-2.6c0.79,-0.57 0.39,-1.81 -0.58,-1.81h-4.46l-1.47,-4.84c-0.29,-0.95 -1.63,-0.95 -1.91,0L9.58,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/star_rate.xml b/compose/material/material/icons/generator/raw-icons/rounded/star_rate.xml
deleted file mode 100644
index 61a30e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/star_rate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.43,10l-1.47,-4.84c-0.29,-0.95 -1.63,-0.95 -1.91,0L9.57,10H5.12c-0.97,0 -1.37,1.25 -0.58,1.81l3.64,2.6l-1.43,4.61c-0.29,0.93 0.79,1.68 1.56,1.09L12,17.31l3.69,2.81c0.77,0.59 1.85,-0.16 1.56,-1.09l-1.43,-4.61l3.64,-2.6c0.79,-0.57 0.39,-1.81 -0.58,-1.81H14.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stars.xml b/compose/material/material/icons/generator/raw-icons/rounded/stars.xml
deleted file mode 100644
index adea02a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stars.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM15.22,17.39L12,15.45l-3.22,1.94c-0.38,0.23 -0.85,-0.11 -0.75,-0.54l0.85,-3.66 -2.83,-2.45c-0.33,-0.29 -0.15,-0.84 0.29,-0.88l3.74,-0.32 1.46,-3.45c0.17,-0.41 0.75,-0.41 0.92,0l1.46,3.44 3.74,0.32c0.44,0.04 0.62,0.59 0.28,0.88l-2.83,2.45 0.85,3.67c0.1,0.43 -0.36,0.77 -0.74,0.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/start.xml b/compose/material/material/icons/generator/raw-icons/rounded/start.xml
deleted file mode 100644
index 2e63094..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/start.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.29,17.29c0.39,0.39 1.02,0.39 1.41,0l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41L16.7,6.7c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.38,0.39 -0.39,1.03 0,1.42L18.17,11H7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h11.17l-2.88,2.88C14.9,16.27 14.9,16.9 15.29,17.29zM3,18c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1S2,6.45 2,7v10C2,17.55 2.45,18 3,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stay_current_landscape.xml b/compose/material/material/icons/generator/raw-icons/rounded/stay_current_landscape.xml
deleted file mode 100644
index 798c036..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stay_current_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.01,7L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -1.99,0.9 -1.99,2zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stay_current_portrait.xml b/compose/material/material/icons/generator/raw-icons/rounded/stay_current_portrait.xml
deleted file mode 100644
index 7b9fc07..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stay_current_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stay_primary_landscape.xml b/compose/material/material/icons/generator/raw-icons/rounded/stay_primary_landscape.xml
deleted file mode 100644
index 798c036..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stay_primary_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.01,7L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H3c-1.1,0 -1.99,0.9 -1.99,2zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stay_primary_portrait.xml b/compose/material/material/icons/generator/raw-icons/rounded/stay_primary_portrait.xml
deleted file mode 100644
index 7b9fc07..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stay_primary_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sticky_note_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/sticky_note_2.xml
deleted file mode 100644
index 417403f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sticky_note_2.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H4.99C3.89,3 3,3.9 3,5l0.01,14c0,1.1 0.89,2 1.99,2h10l6,-6V5C21,3.9 20.1,3 19,3zM8,8h8c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1v0C7,8.45 7.45,8 8,8zM11,14H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v0C12,13.55 11.55,14 11,14zM14,19.5V15c0,-0.55 0.45,-1 1,-1h4.5L14,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stop.xml b/compose/material/material/icons/generator/raw-icons/rounded/stop.xml
deleted file mode 100644
index 812b445..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6h8c1.1,0 2,0.9 2,2v8c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2V8c0,-1.1 0.9,-2 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stop_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/stop_circle.xml
deleted file mode 100644
index b6e8c2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stop_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM15,16H9c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v6C16,15.55 15.55,16 15,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stop_screen_share.xml b/compose/material/material/icons/generator/raw-icons/rounded/stop_screen_share.xml
deleted file mode 100644
index ee0d19c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stop_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18h-1.2l1.79,1.79c0.24,-0.18 0.41,-0.46 0.41,-0.79 0,-0.55 -0.45,-1 -1,-1zM3.23,2.28c-0.39,-0.39 -1.03,-0.39 -1.42,0 -0.39,0.39 -0.39,1.02 0,1.41l0.84,0.86s-0.66,0.57 -0.66,1.47C2,6.92 2,16 2,16l0.01,0.01c0,1.09 0.88,1.98 1.97,1.99L1,18c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h17.13l2,2c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L3.23,2.28zM7,15c0.31,-1.48 0.94,-2.93 2.08,-4.05l1.59,1.59C9.13,12.92 7.96,13.71 7,15zM13,9.13v-0.98c0,-0.44 0.52,-0.66 0.84,-0.37L15,8.87l1.61,1.5c0.21,0.2 0.21,0.53 0,0.73l-0.89,0.83 5.58,5.58c0.43,-0.37 0.7,-0.9 0.7,-1.51L22,6c0,-1.09 -0.89,-1.98 -1.98,-1.98L7.8,4.02l5.14,5.13c0.02,-0.01 0.04,-0.02 0.06,-0.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/storage.xml b/compose/material/material/icons/generator/raw-icons/rounded/storage.xml
deleted file mode 100644
index 46a63e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2L4,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2zM4,17h2v2L4,19v-2zM2,6c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2zM6,7L4,7L4,5h2v2zM4,14h16c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2L4,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2zM4,11h2v2L4,13v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/store.xml b/compose/material/material/icons/generator/raw-icons/rounded/store.xml
deleted file mode 100644
index db931e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM20.16,7.8c-0.09,-0.46 -0.5,-0.8 -0.98,-0.8L4.82,7c-0.48,0 -0.89,0.34 -0.98,0.8l-1,5c-0.12,0.62 0.35,1.2 0.98,1.2L4,14v5c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-5h4v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5h0.18c0.63,0 1.1,-0.58 0.98,-1.2l-1,-5zM12,18L6,18v-4h6v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/store_mall_directory.xml b/compose/material/material/icons/generator/raw-icons/rounded/store_mall_directory.xml
deleted file mode 100644
index aecafd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/store_mall_directory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.16,7.8c-0.09,-0.46 -0.5,-0.8 -0.98,-0.8H4.82c-0.48,0 -0.89,0.34 -0.98,0.8L3,12v1c0,0.55 0.45,1 1,1v5c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-5h4v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5c0.55,0 1,-0.45 1,-1v-1l-0.84,-4.2zM12,18H6v-4h6v4zM5,6h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/storefront.xml b/compose/material/material/icons/generator/raw-icons/rounded/storefront.xml
deleted file mode 100644
index 7669541..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/storefront.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,7.89l-1.05,-3.37c-0.22,-0.9 -1,-1.52 -1.91,-1.52H5.05c-0.9,0 -1.69,0.63 -1.9,1.52L2.1,7.89C1.64,9.86 2.95,11 3,11.06V19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-7.94C22.12,9.94 22.09,8.65 21.9,7.89zM13,5h1.96l0.54,3.52C15.59,9.23 15.11,10 14.22,10C13.55,10 13,9.41 13,8.69V5zM6.44,8.86C6.36,9.51 5.84,10 5.23,10C4.3,10 3.88,9.03 4.04,8.36L5.05,5h1.97L6.44,8.86zM11,8.69C11,9.41 10.45,10 9.71,10c-0.75,0 -1.3,-0.7 -1.22,-1.48L9.04,5H11V8.69zM18.77,10c-0.61,0 -1.14,-0.49 -1.21,-1.14L16.98,5l1.93,-0.01l1.05,3.37C20.12,9.03 19.71,10 18.77,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/storm.xml b/compose/material/material/icons/generator/raw-icons/rounded/storm.xml
deleted file mode 100644
index 939f82c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/storm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.93,8C16.72,4.18 11.82,2.87 8,5.07c-1.41,0.82 -2.48,2 -3.16,3.37c-0.1,-1.75 0.1,-3.5 0.59,-5.17C5.61,2.63 5.14,2 4.48,2H4.47C4.04,2 3.64,2.28 3.52,2.7C2.24,7.01 2.65,11.81 5.07,16c1.1,1.91 2.88,3.19 4.86,3.72c1.98,0.53 4.16,0.31 6.07,-0.79c1.41,-0.82 2.48,-2 3.16,-3.37c0.1,1.75 -0.09,3.5 -0.58,5.18C18.4,21.37 18.87,22 19.53,22h0c0.44,0 0.83,-0.28 0.95,-0.7C21.75,16.99 21.35,12.19 18.93,8zM15,17.2c-2.87,1.65 -6.54,0.67 -8.2,-2.2c-0.11,-0.2 -0.21,-0.4 -0.3,-0.6C5.3,11.64 6.33,8.34 9,6.8c2.86,-1.65 6.54,-0.67 8.2,2.2c0.11,0.2 0.21,0.4 0.3,0.6C18.7,12.36 17.67,15.66 15,17.2zM12,10c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,10 12,10M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S14.21,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/straight.xml b/compose/material/material/icons/generator/raw-icons/rounded/straight.xml
deleted file mode 100644
index 21a2eb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/straight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.83l0.88,0.88c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.71,6.29c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L11,6.83V20c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V6.83L13,6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/straighten.xml b/compose/material/material/icons/generator/raw-icons/rounded/straighten.xml
deleted file mode 100644
index 1772057..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/straighten.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM20,16L4,16c-0.55,0 -1,-0.45 -1,-1L3,9c0,-0.55 0.45,-1 1,-1h1v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L7,8h2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L11,8h2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L15,8h2v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1L19,8h1c0.55,0 1,0.45 1,1v6c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stream.xml b/compose/material/material/icons/generator/raw-icons/rounded/stream.xml
deleted file mode 100644
index 1bd229b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stream.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.89,14.65l-2.94,2.93c-0.39,0.39 -0.39,1.02 0,1.41s1.02,0.39 1.41,0l2.94,-2.93c0.39,-0.38 0.39,-1.02 0,-1.41C8.91,14.26 8.28,14.26 7.89,14.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,4.94C6.02,4.55 5.39,4.55 5,4.94C4.61,5.33 4.61,5.96 5,6.35l2.93,2.94c0.39,0.39 1.02,0.39 1.42,0C9.73,8.9 9.73,8.27 9.34,7.88L6.41,4.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.12,14.65c-0.39,-0.39 -1.02,-0.39 -1.42,0c-0.39,0.39 -0.39,1.02 0,1.41L17.64,19c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L16.12,14.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.06,9.33l2.99,-2.98c0.39,-0.4 0.39,-1.03 0,-1.42c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2.99,2.98c-0.39,0.39 -0.39,1.02 0,1.42C15.04,9.72 15.67,9.72 16.06,9.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/streetview.xml b/compose/material/material/icons/generator/raw-icons/rounded/streetview.xml
deleted file mode 100644
index 4085e83..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/streetview.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.56,14.33c-0.34,0.27 -0.56,0.7 -0.56,1.17V21h7c1.1,0 2,-0.9 2,-2v-5.98c-0.94,-0.33 -1.95,-0.52 -3,-0.52 -2.03,0 -3.93,0.7 -5.44,1.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6c0,-1.08 0.27,-2.1 0.74,-3H5c-1.1,0 -2,0.9 -2,2v14c0,0.55 0.23,1.05 0.59,1.41l9.82,-9.82C12.23,9.42 11.5,7.8 11.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/strikethrough_s.xml b/compose/material/material/icons/generator/raw-icons/rounded/strikethrough_s.xml
deleted file mode 100644
index cf9a013..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/strikethrough_s.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,7.52c0,-0.31 -0.05,-0.59 -0.15,-0.85 -0.09,-0.27 -0.24,-0.49 -0.44,-0.68 -0.2,-0.19 -0.45,-0.33 -0.75,-0.44 -0.3,-0.1 -0.66,-0.16 -1.06,-0.16 -0.39,0 -0.74,0.04 -1.03,0.13s-0.53,0.21 -0.72,0.36c-0.19,0.16 -0.34,0.34 -0.44,0.55 -0.1,0.21 -0.15,0.43 -0.15,0.66 0,0.48 0.25,0.88 0.74,1.21 0.38,0.25 0.77,0.48 1.41,0.7H7.39c-0.05,-0.08 -0.11,-0.17 -0.15,-0.25 -0.26,-0.48 -0.39,-1.03 -0.39,-1.67 0,-0.61 0.13,-1.16 0.4,-1.67 0.26,-0.5 0.63,-0.93 1.11,-1.29 0.48,-0.35 1.05,-0.63 1.7,-0.83 0.66,-0.19 1.39,-0.29 2.18,-0.29 0.81,0 1.54,0.11 2.21,0.34 0.66,0.22 1.23,0.54 1.69,0.94 0.47,0.4 0.83,0.88 1.08,1.43s0.38,1.15 0.38,1.81h-3.01M20,10H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h8.62c0.18,0.07 0.4,0.14 0.55,0.2 0.37,0.17 0.66,0.34 0.87,0.51s0.35,0.36 0.43,0.57c0.07,0.2 0.11,0.43 0.11,0.69 0,0.23 -0.05,0.45 -0.14,0.66 -0.09,0.2 -0.23,0.38 -0.42,0.53 -0.19,0.15 -0.42,0.26 -0.71,0.35 -0.29,0.08 -0.63,0.13 -1.01,0.13 -0.43,0 -0.83,-0.04 -1.18,-0.13s-0.66,-0.23 -0.91,-0.42c-0.25,-0.19 -0.45,-0.44 -0.59,-0.75s-0.25,-0.76 -0.25,-1.21H6.4c0,0.55 0.08,1.13 0.24,1.58s0.37,0.85 0.65,1.21c0.28,0.35 0.6,0.66 0.98,0.92 0.37,0.26 0.78,0.48 1.22,0.65 0.44,0.17 0.9,0.3 1.38,0.39 0.48,0.08 0.96,0.13 1.44,0.13 0.8,0 1.53,-0.09 2.18,-0.28s1.21,-0.45 1.67,-0.79c0.46,-0.34 0.82,-0.77 1.07,-1.27s0.38,-1.07 0.38,-1.71c0,-0.6 -0.1,-1.14 -0.31,-1.61 -0.05,-0.11 -0.11,-0.23 -0.17,-0.33H20c0.55,0 1,-0.45 1,-1V11c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/stroller.xml b/compose/material/material/icons/generator/raw-icons/rounded/stroller.xml
deleted file mode 100644
index e6633af..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/stroller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18,18.9 18,20zM6,18c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S7.1,18 6,18zM14.3,4.1C13.03,3.4 11.56,3 10,3C8.49,3 7.07,3.38 5.83,4.03C5.24,4.34 5.15,5.15 5.61,5.61l3.99,3.99L14.3,4.1zM21.94,5.83C21.65,4.22 20.3,3 18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03L6.71,15.31c-0.55,0.65 -0.09,1.65 0.76,1.65H15c1.1,0 2,-0.9 2,-2V6.27C17.58,5.59 17.97,5 18.65,5c0.68,0 1.22,0.52 1.33,1.21l0,0C20.08,6.66 20.48,7 20.96,7c0.55,0 1,-0.45 1,-1C21.96,5.94 21.95,5.89 21.94,5.83L21.94,5.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/style.xml b/compose/material/material/icons/generator/raw-icons/rounded/style.xml
deleted file mode 100644
index 8420955..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.53,19.65l1.34,0.56v-9.03l-2.43,5.86c-0.41,1.02 0.08,2.19 1.09,2.61zM22.03,15.95L17.07,3.98c-0.31,-0.75 -1.04,-1.21 -1.81,-1.23 -0.26,0 -0.53,0.04 -0.79,0.15L7.1,5.95c-0.75,0.31 -1.21,1.03 -1.23,1.8 -0.01,0.27 0.04,0.54 0.15,0.8l4.96,11.97c0.31,0.76 1.05,1.22 1.83,1.23 0.26,0 0.52,-0.05 0.77,-0.15l7.36,-3.05c1.02,-0.42 1.51,-1.59 1.09,-2.6zM7.88,8.75c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM5.88,19.75c0,1.1 0.9,2 2,2h1.45l-3.45,-8.34v6.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subdirectory_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/subdirectory_arrow_left.xml
deleted file mode 100644
index 5a615ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subdirectory_arrow_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.71,15.71l4.58,4.58c0.39,0.39 1.03,0.39 1.42,0 0.39,-0.39 0.39,-1.03 0,-1.42L8.83,16H19c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v9H8.83l2.88,-2.87c0.39,-0.39 0.39,-1.03 0,-1.42 -0.39,-0.39 -1.03,-0.39 -1.42,0l-4.58,4.58c-0.39,0.39 -0.39,1.03 0,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subdirectory_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/subdirectory_arrow_right.xml
deleted file mode 100644
index c72707f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subdirectory_arrow_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.29,15.71l-4.58,4.58c-0.39,0.39 -1.03,0.39 -1.42,0 -0.39,-0.39 -0.39,-1.03 0,-1.42L15.17,16H5c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v9h9.17l-2.88,-2.87c-0.39,-0.39 -0.39,-1.03 0,-1.42 0.39,-0.39 1.03,-0.39 1.42,0l4.58,4.58c0.39,0.39 0.39,1.03 0,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subject.xml b/compose/material/material/icons/generator/raw-icons/rounded/subject.xml
deleted file mode 100644
index 9d58e6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subject.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17L5,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h8c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM19,9L5,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM5,15h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,6c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subscript.xml b/compose/material/material/icons/generator/raw-icons/rounded/subscript.xml
deleted file mode 100644
index 5606fbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.52,10.73L7.3,5.72C6.82,4.97 7.35,4 8.23,4h0c0.39,0 0.74,0.2 0.95,0.53l2.76,4.46h0.12l2.74,-4.45C15.01,4.2 15.37,4 15.76,4h0c0.88,0 1.42,0.98 0.94,1.72l-3.23,5l3.55,5.55C17.5,17.02 16.96,18 16.08,18h0c-0.38,0 -0.74,-0.2 -0.95,-0.52l-3.07,-4.89h-0.12l-3.07,4.89C8.67,17.8 8.31,18 7.92,18h0c-0.88,0 -1.42,-0.97 -0.94,-1.72L10.52,10.73zM23,19.5L23,19.5c0,-0.28 -0.22,-0.5 -0.5,-0.5c0,0 0,0 0,0H20v-1h2c0.55,0 1,-0.45 1,-1v-1c0,-0.55 -0.45,-1 -1,-1h-2.5c-0.28,0 -0.5,0.22 -0.5,0.5v0c0,0.28 0.22,0.5 0.5,0.5H22v1h-2c-0.55,0 -1,0.45 -1,1v1c0,0.55 0.45,1 1,1h2.5C22.78,20 23,19.78 23,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subscriptions.xml b/compose/material/material/icons/generator/raw-icons/rounded/subscriptions.xml
deleted file mode 100644
index 813dab2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subscriptions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8L5,8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h14c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM17,2L7,2c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM22,12v8c0,1.1 -0.9,2 -2,2L4,22c-1.1,0 -2,-0.9 -2,-2v-8c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2zM15.19,15.56L10,12.73v6.53l5.19,-2.82c0.35,-0.19 0.35,-0.69 0,-0.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subtitles.xml b/compose/material/material/icons/generator/raw-icons/rounded/subtitles.xml
deleted file mode 100644
index e785953..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subtitles.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM5,12h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1L5,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1zM13,18L5,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM19,18h-2c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM19,14h-8c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h8c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subtitles_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/subtitles_off.xml
deleted file mode 100644
index 3c5a32f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subtitles_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H6.83l8,8H19c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1h-2.17l4.93,4.93C21.91,18.65 22,18.34 22,18V6C22,4.9 21.1,4 20,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,20l-6,-6l-1.71,-1.71L12,12L3.16,3.16c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l0.49,0.49C2.09,5.35 2,5.66 2,6v12c0,1.1 0.9,2 2,2h13.17l2.25,2.25c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L20,20zM8,13c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h2C7.55,12 8,12.45 8,13zM14,17c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h8c0.08,0 0.14,0.03 0.21,0.04l0.74,0.74C13.97,16.86 14,16.92 14,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/subway.xml b/compose/material/material/icons/generator/raw-icons/rounded/subway.xml
deleted file mode 100644
index eece4b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/subway.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.01,9h10v5h-10zM17.8,2.8C16,2.09 13.86,2 12,2s-4,0.09 -5.8,0.8C3.53,3.84 2,6.05 2,8.86L2,22h20L22,8.86c0,-2.81 -1.53,-5.02 -4.2,-6.06zM18,15.5c0,1.54 -1.16,2.79 -2.65,2.96l1.15,1.16L16.5,20h-1.67l-1.5,-1.5h-2.66L9.17,20L7.5,20v-0.38l1.15,-1.16C7.16,18.29 6,17.04 6,15.5L6,9c0,-2.63 3,-3 6,-3s6,0.37 6,3v6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/summarize.xml b/compose/material/material/icons/generator/raw-icons/rounded/summarize.xml
deleted file mode 100644
index 4b479b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/summarize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.59,3.59C15.21,3.21 14.7,3 14.17,3H5C3.9,3 3.01,3.9 3.01,5L3,19c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V9.83c0,-0.53 -0.21,-1.04 -0.59,-1.41L15.59,3.59zM8,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,17 8,17zM8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,13 8,13zM8,9C7.45,9 7,8.55 7,8s0.45,-1 1,-1s1,0.45 1,1S8.55,9 8,9zM14,9V4.5l5.5,5.5H15C14.45,10 14,9.55 14,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/superscript.xml b/compose/material/material/icons/generator/raw-icons/rounded/superscript.xml
deleted file mode 100644
index f23e7bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/superscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.51,12.73L7.3,7.72C6.82,6.97 7.35,6 8.23,6h0c0.39,0 0.74,0.2 0.95,0.53l2.76,4.46h0.12l2.74,-4.45C15,6.2 15.36,6 15.75,6h0c0.88,0 1.42,0.98 0.94,1.72l-3.23,5l3.55,5.55C17.5,19.02 16.96,20 16.08,20h0c-0.38,0 -0.74,-0.2 -0.95,-0.52l-3.07,-4.89h-0.12l-3.07,4.89C8.66,19.8 8.31,20 7.92,20h0c-0.88,0 -1.42,-0.97 -0.94,-1.72L10.51,12.73zM23,8.5L23,8.5C23,8.22 22.78,8 22.5,8c0,0 0,0 0,0H20V7h2c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h-2.5C19.22,4 19,4.22 19,4.5v0C19,4.78 19.22,5 19.5,5H22v1h-2c-0.55,0 -1,0.45 -1,1v1c0,0.55 0.45,1 1,1h2.5C22.78,9 23,8.78 23,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/supervised_user_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/supervised_user_circle.xml
deleted file mode 100644
index b494c0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/supervised_user_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM15.61,8.34c1.07,0 1.93,0.86 1.93,1.93s-0.86,1.93 -1.93,1.93 -1.93,-0.86 -1.93,-1.93c-0.01,-1.07 0.86,-1.93 1.93,-1.93zM9.61,6.76c1.3,0 2.36,1.06 2.36,2.36s-1.06,2.36 -2.36,2.36 -2.36,-1.06 -2.36,-2.36c0,-1.31 1.05,-2.36 2.36,-2.36zM9.61,15.89v3.75c-2.4,-0.75 -4.3,-2.6 -5.14,-4.96 1.05,-1.12 3.67,-1.69 5.14,-1.69 0.53,0 1.2,0.08 1.9,0.22 -1.64,0.87 -1.9,2.02 -1.9,2.68zM12,20c-0.27,0 -0.53,-0.01 -0.79,-0.04v-4.07c0,-1.42 2.94,-2.13 4.4,-2.13 1.07,0 2.92,0.39 3.84,1.15C18.28,17.88 15.39,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/supervisor_account.xml b/compose/material/material/icons/generator/raw-icons/rounded/supervisor_account.xml
deleted file mode 100644
index f2ae882..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/supervisor_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c1.38,0 2.49,-1.12 2.49,-2.5S17.88,7 16.5,7 14,8.12 14,9.5s1.12,2.5 2.5,2.5zM9,11c1.66,0 2.99,-1.34 2.99,-3S10.66,5 9,5 6,6.34 6,8s1.34,3 3,3zM16.5,14c-1.83,0 -5.5,0.92 -5.5,2.75L11,18c0,0.55 0.45,1 1,1h9c0.55,0 1,-0.45 1,-1v-1.25c0,-1.83 -3.67,-2.75 -5.5,-2.75zM9,13c-2.33,0 -7,1.17 -7,3.5L2,18c0,0.55 0.45,1 1,1h6v-2.25c0,-0.85 0.33,-2.34 2.37,-3.47C10.5,13.1 9.66,13 9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/support.xml b/compose/material/material/icons/generator/raw-icons/rounded/support.xml
deleted file mode 100644
index b9b10ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/support.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM19.46,9.12l-2.78,1.15c-0.51,-1.36 -1.58,-2.44 -2.95,-2.94l1.15,-2.78C16.98,5.35 18.65,7.02 19.46,9.12zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15zM9.13,4.54l1.17,2.78c-1.38,0.5 -2.47,1.59 -2.98,2.97L4.54,9.13C5.35,7.02 7.02,5.35 9.13,4.54zM4.54,14.87l2.78,-1.15c0.51,1.38 1.59,2.46 2.97,2.96l-1.17,2.78C7.02,18.65 5.35,16.98 4.54,14.87zM14.88,19.46l-1.15,-2.78c1.37,-0.51 2.45,-1.59 2.95,-2.97l2.78,1.17C18.65,16.98 16.98,18.65 14.88,19.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/support_agent.xml b/compose/material/material/icons/generator/raw-icons/rounded/support_agent.xml
deleted file mode 100644
index c4d0208..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/support_agent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.22C21,6.73 16.74,3 12,3c-4.69,0 -9,3.65 -9,9.28C2.4,12.62 2,13.26 2,14v2c0,1.1 0.9,2 2,2h0c0.55,0 1,-0.45 1,-1l0,-4.81c0,-3.83 2.95,-7.18 6.78,-7.29c3.96,-0.12 7.22,3.06 7.22,7V19h-7c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h7c1.1,0 2,-0.9 2,-2v-1.22c0.59,-0.31 1,-0.92 1,-1.64v-2.3C22,13.14 21.59,12.53 21,12.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.03C17.52,8.18 15.04,6 12.05,6c-3.03,0 -6.29,2.51 -6.03,6.45c2.47,-1.01 4.33,-3.21 4.86,-5.89C12.19,9.19 14.88,11 18,11.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/surfing.xml b/compose/material/material/icons/generator/raw-icons/rounded/surfing.xml
deleted file mode 100644
index c2268de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/surfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S18.1,1.5 17,1.5zM22,22c0,0.55 -0.45,1 -1,1h0c-1.03,0 -2.05,-0.25 -3,-0.75c-1.92,1.02 -4.18,1 -6.09,-0.05c-1.79,0.87 -3.92,0.98 -5.58,-0.14C5.3,22.69 4.15,23 3,23h0c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h0c0.87,0 1.73,-0.24 2.53,-0.7c0.29,-0.16 0.65,-0.17 0.94,0c1.59,0.9 3.48,0.9 5.06,0c0.29,-0.16 0.65,-0.16 0.94,0c1.59,0.9 3.48,0.9 5.06,0c0.29,-0.16 0.65,-0.16 0.94,0C19.27,20.76 20.13,21 21,21h0C21.55,21 22,21.45 22,22zM8.04,18.86C8.35,18.95 8.67,19 9,19c0.9,0 1.72,-0.37 2.39,-0.91c0.35,-0.28 0.87,-0.28 1.22,0C13.28,18.63 14.1,19 15,19s1.72,-0.37 2.39,-0.91c0.03,-0.03 0.07,-0.05 0.11,-0.07c-0.46,-0.39 -0.97,-0.79 -1.5,-1.17v-2.87c0,-0.61 -0.28,-1.19 -0.77,-1.57L12.17,10l2.25,-1.52c1.03,1.79 2.82,3.08 4.93,3.43c0.6,0.1 1.14,-0.39 1.14,-1c0,-0.49 -0.36,-0.9 -0.84,-0.98c-1.5,-0.25 -2.78,-1.18 -3.51,-2.46l-0.88,-1.55c-0.29,-0.52 -0.77,-0.8 -1.22,-0.89L9.31,4.15c-0.52,-0.1 -1.06,0.02 -1.5,0.32L5.82,5.83C5.37,6.15 5.25,6.77 5.56,7.22C5.88,7.68 6.5,7.8 6.96,7.49l1.99,-1.37l2,0.37L8.8,7.94C8.2,8.35 7.91,9.06 8.03,9.73l0.52,3.1C7.13,12.31 5.83,12 4.85,12C4.01,12 3,12.25 3,13.28C3,14.72 5.19,16.9 8.04,18.86zM14,14v1.5c-0.78,-0.48 -2.34,-1.33 -3.26,-1.75L10.3,11.1L14,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/surround_sound.xml b/compose/material/material/icons/generator/raw-icons/rounded/surround_sound.xml
deleted file mode 100644
index deaa997..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/surround_sound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM7.11,16.89c-0.43,0.43 -1.14,0.39 -1.51,-0.09C4.53,15.39 4,13.69 4,12s0.53,-3.38 1.59,-4.8c0.37,-0.48 1.08,-0.53 1.51,-0.1 0.35,0.35 0.39,0.9 0.1,1.29C6.4,9.46 6,10.73 6,12s0.4,2.53 1.2,3.6c0.3,0.39 0.26,0.94 -0.09,1.29zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM16.9,16.9c-0.35,-0.35 -0.39,-0.9 -0.09,-1.29C17.6,14.54 18,13.27 18,12s-0.4,-2.53 -1.2,-3.6c-0.3,-0.39 -0.26,-0.95 0.09,-1.3 0.43,-0.43 1.14,-0.39 1.51,0.09 1.07,1.41 1.6,3.1 1.6,4.8 0,1.69 -0.53,3.38 -1.59,4.8 -0.37,0.49 -1.08,0.54 -1.51,0.11zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swap_calls.xml b/compose/material/material/icons/generator/raw-icons/rounded/swap_calls.xml
deleted file mode 100644
index bc19ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swap_calls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,4.35l-2.79,2.79c-0.32,0.32 -0.1,0.86 0.35,0.86H17v6.88c0,1 -0.67,1.93 -1.66,2.09 -1.25,0.21 -2.34,-0.76 -2.34,-1.97V8.17c0,-2.09 -1.53,-3.95 -3.61,-4.15C7.01,3.79 5,5.66 5,8v7H3.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.36,-0.85H7V8.12c0,-1 0.67,-1.93 1.66,-2.09C9.91,5.82 11,6.79 11,8v6.83c0,2.09 1.53,3.95 3.61,4.15C16.99,19.21 19,17.34 19,15V8h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.19,-0.2 -0.51,-0.2 -0.7,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swap_horiz.xml b/compose/material/material/icons/generator/raw-icons/rounded/swap_horiz.xml
deleted file mode 100644
index 456800b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swap_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.14,11.86l-2.78,2.79c-0.19,0.2 -0.19,0.51 0,0.71l2.78,2.79c0.31,0.32 0.85,0.09 0.85,-0.35L6.99,16L13,16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6.99,14v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35zM20.65,8.65l-2.78,-2.79c-0.31,-0.32 -0.85,-0.09 -0.85,0.35L17.02,8L11,8c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6.01v1.79c0,0.45 0.54,0.67 0.85,0.35l2.78,-2.79c0.2,-0.19 0.2,-0.51 0.01,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swap_horizontal_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/swap_horizontal_circle.xml
deleted file mode 100644
index 843dc05..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swap_horizontal_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10zM15,6.5l3.15,3.15c0.2,0.2 0.2,0.51 0,0.71L15,13.5L15,11h-4L11,9h4L15,6.5zM9,17.5l-3.15,-3.15c-0.2,-0.2 -0.2,-0.51 0,-0.71L9,10.5L9,13h4v2L9,15v2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swap_vert.xml b/compose/material/material/icons/generator/raw-icons/rounded/swap_vert.xml
deleted file mode 100644
index 1af00b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swap_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.01V11c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6.01h-1.79c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.78c0.2,0.19 0.51,0.19 0.71,0l2.79,-2.78c0.32,-0.31 0.09,-0.85 -0.35,-0.85H16zM8.65,3.35L5.86,6.14c-0.32,0.31 -0.1,0.85 0.35,0.85H8V13c0,0.55 0.45,1 1,1s1,-0.45 1,-1V6.99h1.79c0.45,0 0.67,-0.54 0.35,-0.85L9.35,3.35c-0.19,-0.19 -0.51,-0.19 -0.7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swap_vertical_circle.xml b/compose/material/material/icons/generator/raw-icons/rounded/swap_vertical_circle.xml
deleted file mode 100644
index a4e5b7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swap_vertical_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM6.5,9l3.15,-3.15c0.2,-0.2 0.51,-0.2 0.71,0L13.5,9L11,9v4L9,13L9,9L6.5,9zM14.35,18.15c-0.2,0.2 -0.51,0.2 -0.71,0L10.5,15L13,15v-4h2v4h2.5l-3.15,3.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe.xml
deleted file mode 100644
index 97518ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.15,2.85l-1.02,1.02C18.69,2.17 15.6,1 12,1S5.31,2.17 3.87,3.87L2.85,2.85C2.54,2.54 2,2.76 2,3.21V6.5C2,6.78 2.22,7 2.5,7h3.29c0.45,0 0.67,-0.54 0.35,-0.85L4.93,4.93c1,-1.29 3.7,-2.43 7.07,-2.43s6.07,1.14 7.07,2.43l-1.22,1.22C17.54,6.46 17.76,7 18.21,7h3.29C21.78,7 22,6.78 22,6.5V3.21C22,2.76 21.46,2.54 21.15,2.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.71c-0.28,-0.14 -0.58,-0.21 -0.89,-0.21H13v-6C13,5.67 12.33,5 11.5,5S10,5.67 10,6.5v10.74l-3.44,-0.72c-0.37,-0.08 -0.76,0.04 -1.03,0.31l0,0c-0.43,0.44 -0.43,1.14 0.01,1.58l4.01,4.01C9.92,22.79 10.43,23 10.96,23h6.41c1,0 1.84,-0.73 1.98,-1.72l0.63,-4.46c0.12,-0.85 -0.32,-1.69 -1.09,-2.07L14.5,12.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_down.xml
deleted file mode 100644
index b0150e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.83,19.1c-0.26,-0.6 0.09,-1.28 0.73,-1.41l3.58,-0.71L8.79,7.17c-0.34,-0.76 0,-1.64 0.76,-1.98c0.76,-0.34 1.64,0 1.98,0.76l2.43,5.49l0.84,-0.37c0.28,-0.13 0.59,-0.18 0.9,-0.17l4.56,0.21c0.86,0.04 1.6,0.63 1.83,1.45l1.23,4.33c0.27,0.96 -0.2,1.97 -1.11,2.37l-5.63,2.49c-0.48,0.21 -1.26,0.33 -1.76,0.14l-5.45,-2.27C9.13,19.53 8.93,19.34 8.83,19.1zM5.59,2.73C4.27,4.65 3.5,6.99 3.5,9.5c0,0.92 0.1,1.82 0.3,2.68l-1.19,-1.19c-0.29,-0.29 -0.77,-0.32 -1.07,-0.04c-0.31,0.29 -0.31,0.78 -0.02,1.08l2.26,2.26c0.39,0.39 1.02,0.39 1.41,0l2.24,-2.24c0.29,-0.29 0.32,-0.77 0.04,-1.07c-0.29,-0.31 -0.78,-0.31 -1.08,-0.02l-1.09,1.09C5.11,11.24 5,10.38 5,9.5c0,-2.2 0.68,-4.24 1.83,-5.93c0.2,-0.3 0.17,-0.7 -0.09,-0.95C6.41,2.28 5.86,2.34 5.59,2.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_down_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_down_alt.xml
deleted file mode 100644
index 624a09e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.9c2.28,-0.46 4,-2.48 4,-4.9c0,-2.76 -2.24,-5 -5,-5S7,6.24 7,9c0,2.42 1.72,4.44 4,4.9v4.27l-0.88,-0.88c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l2.59,2.59c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0L13,18.17V13.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_left.xml
deleted file mode 100644
index fb129a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,4.02V2.75C3.5,2.34 3.16,2 2.75,2S2,2.34 2,2.75V6c0,0.55 0.45,1 1,1h3.25C6.66,7 7,6.66 7,6.25S6.66,5.5 6.25,5.5H4.09c2.11,-1.86 4.88,-3 7.91,-3c4.42,0 7.27,2.19 8.25,4.1C20.37,6.85 20.63,7 20.91,7c0.56,0 0.93,-0.59 0.67,-1.08C20.3,3.39 16.81,1 12,1C8.78,1 5.82,2.13 3.5,4.02zM5.2,17.43c0,-0.65 0.6,-1.13 1.24,-0.99L10,17.24V6.5C10,5.67 10.67,5 11.5,5S13,5.67 13,6.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04c0.77,0.38 1.21,1.22 1.09,2.07l-0.63,4.46C19.21,22.27 18.36,23 17.37,23h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59l-4.07,-4.29C5.3,17.94 5.2,17.69 5.2,17.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_left_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_left_alt.xml
deleted file mode 100644
index 4bf0def..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_left_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,13c0.46,2.28 2.48,4 4.9,4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5c-2.42,0 -4.44,1.72 -4.9,4H5.83l0.88,-0.88c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2.59,2.59c-0.39,0.39 -0.39,1.02 0,1.41l2.59,2.59c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L5.83,13H10.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_right.xml
deleted file mode 100644
index 51d8edd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C7.19,1 3.7,3.39 2.41,5.92C2.16,6.41 2.53,7 3.09,7c0.28,0 0.54,-0.15 0.66,-0.4C4.73,4.69 7.58,2.5 12,2.5c3.03,0 5.79,1.14 7.91,3h-2.16C17.34,5.5 17,5.84 17,6.25S17.34,7 17.75,7H21c0.55,0 1,-0.45 1,-1V2.75C22,2.34 21.66,2 21.25,2S20.5,2.34 20.5,2.75v1.27C18.18,2.13 15.22,1 12,1zM5.2,17.43c0,-0.65 0.6,-1.13 1.24,-0.99L10,17.24V6.5C10,5.67 10.67,5 11.5,5S13,5.67 13,6.5v6h0.91c0.31,0 0.62,0.07 0.89,0.21l4.09,2.04c0.77,0.38 1.21,1.22 1.09,2.07l-0.63,4.46C19.21,22.27 18.36,23 17.37,23h-6.16c-0.53,0 -1.29,-0.21 -1.66,-0.59l-4.07,-4.29C5.3,17.94 5.2,17.69 5.2,17.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_right_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_right_alt.xml
deleted file mode 100644
index 35af098..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_right_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.9,11C13.44,8.72 11.42,7 9,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h4.27l-0.88,0.88c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L18.17,11H13.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_up.xml
deleted file mode 100644
index cae7d12..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.83,19.1c-0.26,-0.6 0.09,-1.28 0.73,-1.41l3.58,-0.71L8.79,7.17c-0.34,-0.76 0,-1.64 0.76,-1.98c0.76,-0.34 1.64,0 1.98,0.76l2.43,5.49l0.84,-0.37c0.28,-0.13 0.59,-0.18 0.9,-0.17l4.56,0.21c0.86,0.04 1.6,0.63 1.83,1.45l1.23,4.33c0.27,0.96 -0.2,1.97 -1.11,2.37l-5.63,2.49c-0.48,0.21 -1.26,0.33 -1.76,0.14l-5.45,-2.27C9.13,19.53 8.93,19.34 8.83,19.1zM6.75,13.38c0.26,-0.26 0.29,-0.66 0.09,-0.95C5.68,10.74 5,8.7 5,6.5c0,-0.88 0.11,-1.74 0.32,-2.56l1.09,1.09c0.3,0.3 0.79,0.29 1.08,-0.02c0.28,-0.3 0.25,-0.78 -0.04,-1.07L5.21,1.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L1.53,3.97c-0.3,0.3 -0.29,0.79 0.02,1.08c0.3,0.28 0.78,0.25 1.07,-0.04L3.8,3.82C3.6,4.68 3.5,5.58 3.5,6.5c0,2.51 0.77,4.85 2.09,6.77C5.86,13.66 6.41,13.72 6.75,13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_up_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_up_alt.xml
deleted file mode 100644
index 3577db5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.41l0.88,0.88c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.71,4.88c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L11,5.41v4.27c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-2.42 -1.72,-4.44 -4,-4.9V5.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/swipe_vertical.xml b/compose/material/material/icons/generator/raw-icons/rounded/swipe_vertical.xml
deleted file mode 100644
index 8d6d972..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/swipe_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0,12c0,3.22 1.13,6.18 3.02,8.5H1.75C1.34,20.5 1,20.84 1,21.25S1.34,22 1.75,22H5c0.55,0 1,-0.45 1,-1v-3.25C6,17.34 5.66,17 5.25,17c-0.41,0 -0.75,0.34 -0.75,0.75v2.16c-1.86,-2.11 -3,-4.88 -3,-7.91s1.14,-5.79 3,-7.91v2.16C4.5,6.66 4.84,7 5.25,7C5.66,7 6,6.66 6,6.25V3c0,-0.55 -0.45,-1 -1,-1H1.75C1.34,2 1,2.34 1,2.75S1.34,3.5 1.75,3.5h1.27C1.13,5.82 0,8.78 0,12zM8.83,19.1c-0.26,-0.6 0.09,-1.28 0.73,-1.41l3.58,-0.71L8.79,7.17c-0.34,-0.76 0,-1.64 0.76,-1.98c0.76,-0.34 1.64,0 1.98,0.76l2.43,5.49l0.84,-0.37c0.28,-0.13 0.59,-0.18 0.9,-0.17l4.56,0.21c0.86,0.04 1.6,0.63 1.83,1.45l1.23,4.33c0.27,0.96 -0.2,1.97 -1.11,2.37l-5.63,2.49c-0.48,0.21 -1.26,0.33 -1.76,0.14l-5.45,-2.27C9.13,19.53 8.93,19.34 8.83,19.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/switch_access_shortcut.xml b/compose/material/material/icons/generator/raw-icons/rounded/switch_access_shortcut.xml
deleted file mode 100644
index 2116f5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/switch_access_shortcut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM19,20.41c0,0.78 -0.84,1.25 -1.51,0.86C14.21,19.36 12,15.79 12,12c0,-2.73 1.08,-5.27 2.75,-7.25l-1.9,-1.9C12.54,2.54 12.76,2 13.21,2h5.29C18.78,2 19,2.22 19,2.5v5.29c0,0.45 -0.54,0.67 -0.85,0.35l-1.97,-1.97C14.84,7.82 14,9.88 14,12c0,3.13 1.86,6.01 4.51,7.55C18.81,19.73 19,20.06 19,20.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/switch_access_shortcut_add.xml b/compose/material/material/icons/generator/raw-icons/rounded/switch_access_shortcut_add.xml
deleted file mode 100644
index 91ce3c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/switch_access_shortcut_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18c0.55,0 1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-1v-1c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1v1h-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h1v1C20,17.55 20.45,18 21,18zM7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM19,20.41c0,0.78 -0.84,1.25 -1.51,0.86C14.21,19.36 12,15.79 12,12c0,-2.73 1.08,-5.27 2.75,-7.25l-1.9,-1.9C12.54,2.54 12.76,2 13.21,2h5.29C18.78,2 19,2.22 19,2.5v5.29c0,0.45 -0.54,0.67 -0.85,0.35l-1.97,-1.97C14.84,7.82 14,9.88 14,12c0,3.13 1.86,6.01 4.51,7.55C18.81,19.73 19,20.06 19,20.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/switch_account.xml b/compose/material/material/icons/generator/raw-icons/rounded/switch_account.xml
deleted file mode 100644
index ae0c137..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/switch_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20H4V7c0,-0.55 -0.45,-1 -1,-1S2,6.45 2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1S17.55,20 17,20zM20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM14,5c1.66,0 3,1.34 3,3c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3C11,6.34 12.34,5 14,5zM7.76,16c1.47,-1.83 3.71,-3 6.24,-3s4.77,1.17 6.24,3H7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/switch_camera.xml b/compose/material/material/icons/generator/raw-icons/rounded/switch_camera.xml
deleted file mode 100644
index c856dac..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/switch_camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17l-1.24,-1.35c-0.37,-0.41 -0.91,-0.65 -1.47,-0.65L9.88,2c-0.56,0 -1.1,0.24 -1.48,0.65L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM15,15.5L15,13L9,13v2.5l-3.15,-3.15c-0.2,-0.2 -0.2,-0.51 0,-0.71L9,8.5L9,11h6L15,8.5l3.15,3.15c0.2,0.2 0.2,0.51 0,0.71L15,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/switch_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/switch_left.xml
deleted file mode 100644
index d442cea..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/switch_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,8.62v6.76L5.12,12L8.5,8.62M3.71,11.29c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59C8.92,17.92 10,17.48 10,16.59V7.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L3.71,11.29zM14,7.41v9.17c0,0.89 1.08,1.34 1.71,0.71l4.59,-4.59c0.39,-0.39 0.39,-1.02 0,-1.41l-4.59,-4.59C15.08,6.08 14,6.52 14,7.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/switch_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/switch_right.xml
deleted file mode 100644
index a5e9354..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/switch_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.38V8.62L18.88,12L15.5,15.38M20.29,12.71c0.39,-0.39 0.39,-1.02 0,-1.41l-4.59,-4.59C15.08,6.08 14,6.52 14,7.41v9.17c0,0.89 1.08,1.34 1.71,0.71L20.29,12.71zM10,16.59V7.41c0,-0.89 -1.08,-1.34 -1.71,-0.71l-4.59,4.59c-0.39,0.39 -0.39,1.02 0,1.41l4.59,4.59C8.92,17.92 10,17.48 10,16.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/switch_video.xml b/compose/material/material/icons/generator/raw-icons/rounded/switch_video.xml
deleted file mode 100644
index bd20128..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/switch_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.5L18,6c0,-0.55 -0.45,-1 -1,-1L3,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-3.5l2.29,2.29c0.63,0.63 1.71,0.18 1.71,-0.71L22,7.91c0,-0.89 -1.08,-1.34 -1.71,-0.71L18,9.5zM13,15.5L13,13L7,13v2.5l-3.15,-3.15c-0.2,-0.2 -0.2,-0.51 0,-0.71L7,8.5L7,11h6L13,8.5l3.15,3.15c0.2,0.2 0.2,0.51 0,0.71L13,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/synagogue.xml b/compose/material/material/icons/generator/raw-icons/rounded/synagogue.xml
deleted file mode 100644
index d7656ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/synagogue.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.94V21h4l0,-4.89c0,-1 0.68,-1.92 1.66,-2.08C12.92,13.82 14,14.79 14,16v5h4V8.94c0,-0.59 -0.26,-1.16 -0.72,-1.54l-4,-3.33c-0.74,-0.62 -1.82,-0.62 -2.56,0l-4,3.33C6.26,7.78 6,8.34 6,8.94zM13.5,10c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5S13.5,9.17 13.5,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5C1.9,5 1,5.9 1,7v1h4V7C5,5.9 4.1,5 3,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2V9H1v10C1,20.1 1.9,21 3,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.1,0 -2,0.9 -2,2v1h4V7C23,5.9 22.1,5 21,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,21h2c1.1,0 2,-0.9 2,-2V9h-4V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sync.xml b/compose/material/material/icons/generator/raw-icons/rounded/sync.xml
deleted file mode 100644
index 0ea3056..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,2.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.8,2.79c-0.2,0.2 -0.2,0.51 0,0.71l2.79,2.79c0.32,0.31 0.86,0.09 0.86,-0.36L12,6c3.31,0 6,2.69 6,6 0,0.79 -0.15,1.56 -0.44,2.25 -0.15,0.36 -0.04,0.77 0.23,1.04 0.51,0.51 1.37,0.33 1.64,-0.34 0.37,-0.91 0.57,-1.91 0.57,-2.95 0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-0.79 0.15,-1.56 0.44,-2.25 0.15,-0.36 0.04,-0.77 -0.23,-1.04 -0.51,-0.51 -1.37,-0.33 -1.64,0.34C4.2,9.96 4,10.96 4,12c0,4.42 3.58,8 8,8v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.2 0.2,-0.51 0,-0.71l-2.79,-2.79c-0.31,-0.31 -0.85,-0.09 -0.85,0.36L12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sync_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/sync_alt.xml
deleted file mode 100644
index 85de8b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sync_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.65,7.65l-2.79,-2.79C18.54,4.54 18,4.76 18,5.21V7H4C3.45,7 3,7.45 3,8s0.45,1 1,1h14v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79C21.84,8.16 21.84,7.84 21.65,7.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15H6v-1.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-2.79,2.79c-0.2,0.19 -0.2,0.51 -0.01,0.7l2.79,2.79C5.46,19.46 6,19.24 6,18.79V17h14c0.55,0 1,-0.45 1,-1S20.55,15 20,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sync_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/sync_disabled.xml
deleted file mode 100644
index 73df03c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sync_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.74v-0.19c0,-0.68 -0.71,-1.11 -1.32,-0.82 -0.19,0.09 -0.36,0.2 -0.54,0.3L9.6,6.49c0.24,-0.18 0.4,-0.45 0.4,-0.75zM20,12c0,-2.21 -0.91,-4.2 -2.36,-5.64l1.51,-1.51c0.31,-0.31 0.09,-0.85 -0.36,-0.85H14v4.79c0,0.45 0.54,0.67 0.85,0.35l1.39,-1.39C17.32,8.85 18,10.34 18,12c0,0.85 -0.18,1.66 -0.5,2.39l1.48,1.48C19.62,14.72 20,13.41 20,12zM3.57,4.7c-0.39,0.39 -0.39,1.02 0,1.41l1.65,1.65C4.45,9 4,10.44 4,12c0,2.21 0.91,4.2 2.36,5.64l-1.51,1.51c-0.31,0.31 -0.09,0.85 0.36,0.85H9.5c0.28,0 0.5,-0.22 0.5,-0.5v-4.29c0,-0.45 -0.54,-0.67 -0.85,-0.35l-1.39,1.39C6.68,15.15 6,13.66 6,12c0,-1 0.26,-1.93 0.69,-2.76l8.07,8.07c-0.01,0.02 -0.01,0.02 -0.01,0.04 -0.43,0.12 -0.75,0.48 -0.75,0.91v0.18c0,0.68 0.71,1.11 1.32,0.82 0.31,-0.14 0.61,-0.31 0.9,-0.49l1.87,1.87c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.98,4.7c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sync_lock.xml b/compose/material/material/icons/generator/raw-icons/rounded/sync_lock.xml
deleted file mode 100644
index 6de6a88..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sync_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19c0,0.55 -0.45,1 -1,1H5c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h1.73C5.06,16.54 4,14.4 4,12c0,-3.19 1.87,-5.93 4.56,-7.22C9.23,4.47 10,4.96 10,5.7c0,0.38 -0.22,0.72 -0.57,0.88C7.41,7.55 6,9.61 6,12c0,1.77 0.78,3.34 2,4.44V15c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1V19zM15,4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V7.56c1.22,1.1 2,2.67 2,4.44h2c0,-2.4 -1.06,-4.54 -2.73,-6H19c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H15zM20,17v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C21,17.45 20.55,17 20,17zM19,17h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/sync_problem.xml b/compose/material/material/icons/generator/raw-icons/rounded/sync_problem.xml
deleted file mode 100644
index 875b299..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/sync_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12c0,2.21 0.91,4.2 2.36,5.64l-1.51,1.51c-0.31,0.31 -0.09,0.85 0.36,0.85L8.5,20c0.28,0 0.5,-0.22 0.5,-0.5v-4.29c0,-0.45 -0.54,-0.67 -0.85,-0.35l-1.39,1.39C5.68,15.15 5,13.66 5,12c0,-2.39 1.4,-4.46 3.43,-5.42 0.34,-0.16 0.57,-0.47 0.57,-0.84v-0.19c0,-0.68 -0.71,-1.11 -1.32,-0.82C4.92,5.99 3,8.77 3,12zM11,17h2v-2h-2v2zM19.79,4L15.5,4c-0.28,0 -0.5,0.22 -0.5,0.5v4.29c0,0.45 0.54,0.67 0.85,0.35l1.39,-1.39C18.32,8.85 19,10.34 19,12c0,2.39 -1.4,4.46 -3.43,5.42 -0.34,0.16 -0.57,0.47 -0.57,0.84v0.18c0,0.68 0.71,1.11 1.32,0.82C19.08,18.01 21,15.23 21,12c0,-2.21 -0.91,-4.2 -2.36,-5.64l1.51,-1.51c0.31,-0.31 0.09,-0.85 -0.36,-0.85zM12,13c0.55,0 1,-0.45 1,-1L13,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/system_security_update.xml b/compose/material/material/icons/generator/raw-icons/rounded/system_security_update.xml
deleted file mode 100644
index f17c1de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/system_security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM14.79,12.21H13V9c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3.21H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79C15.46,12.75 15.24,12.21 14.79,12.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/system_security_update_good.xml b/compose/material/material/icons/generator/raw-icons/rounded/system_security_update_good.xml
deleted file mode 100644
index fe70453..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/system_security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,18H7V6h10V18zM10.34,14.29c0.39,0.39 1.02,0.39 1.41,0l3.54,-3.54c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2.83,2.83l-0.71,-0.71c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L10.34,14.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/system_security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/rounded/system_security_update_warning.xml
deleted file mode 100644
index 53a49df..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/system_security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c0.55,0 1,-0.45 1,-1V8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4C11,12.55 11.45,13 12,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5.01,1.9 5.01,3v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,18H7V6h10V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/system_update.xml b/compose/material/material/icons/generator/raw-icons/rounded/system_update.xml
deleted file mode 100644
index 8136e6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/system_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM14.79,13L13,13L13,9c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9.21,13c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.36,-0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/system_update_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/system_update_alt.xml
deleted file mode 100644
index ad19875..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/system_update_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.35,15.65l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.35,-0.85H13V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.19,0.2 0.51,0.2 0.7,0.01zM21,3h-5.01c-0.54,0 -0.99,0.45 -0.99,0.99 0,0.55 0.45,0.99 0.99,0.99H20c0.55,0 1,0.45 1,1v12.03c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1V5.99c0,-0.55 0.45,-1 1,-1h4.01c0.54,0 0.99,-0.45 0.99,-0.99 0,-0.55 -0.45,-1 -0.99,-1H3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tab.xml b/compose/material/material/icons/generator/raw-icons/rounded/tab.xml
deleted file mode 100644
index b236027..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tab.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM20,19L4,19c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h9v3c0,0.55 0.45,1 1,1h7v9c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tab_unselected.xml b/compose/material/material/icons/generator/raw-icons/rounded/tab_unselected.xml
deleted file mode 100644
index 89471a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tab_unselected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h2L3,7L1,7v2zM1,13h2v-2L1,11v2zM1,5h2L3,3c-1.1,0 -2,0.9 -2,2zM9,21h2v-2L9,19v2zM1,17h2v-2L1,15v2zM3,21v-2L1,19c0,1.1 0.9,2 2,2zM21,3h-8v5c0,0.55 0.45,1 1,1h9L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17h2v-2h-2v2zM9,5h2L11,3L9,3v2zM5,21h2v-2L5,19v2zM5,5h2L7,3L5,3v2zM21,21c1.1,0 2,-0.9 2,-2h-2v2zM21,13h2v-2h-2v2zM13,21h2v-2h-2v2zM17,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/table_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/table_bar.xml
deleted file mode 100644
index 872239c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/table_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.5C22,5.57 17.52,4 12,4S2,5.57 2,7.5c0,1.81 3.95,3.31 9,3.48V15H9.35c-0.82,0 -1.55,0.5 -1.86,1.26l-0.99,2.47C6.27,19.34 6.71,20 7.37,20h0c0.38,0 0.72,-0.23 0.86,-0.58L9.2,17h5.6l0.97,2.42c0.14,0.35 0.48,0.58 0.86,0.58h0c0.66,0 1.11,-0.66 0.86,-1.27l-0.99,-2.47C16.2,15.5 15.46,15 14.65,15H13v-4.02C18.05,10.81 22,9.31 22,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/table_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/table_chart.xml
deleted file mode 100644
index ca6e494..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/table_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10.02h5L15,21h-5L10,10.02zM17,21h3c1.1,0 2,-0.9 2,-2v-9h-5v11zM20,3L5,3c-1.1,0 -2,0.9 -2,2v3h19L22,5c0,-1.1 -0.9,-2 -2,-2zM3,19c0,1.1 0.9,2 2,2h3L8,10L3,10v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/table_restaurant.xml b/compose/material/material/icons/generator/raw-icons/rounded/table_restaurant.xml
deleted file mode 100644
index 31a136e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/table_restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,9.73l-1.43,-5C20.41,4.3 20.02,4 19.57,4H4.43C3.98,4 3.59,4.3 3.47,4.73l-1.43,5C1.86,10.36 2.34,11 3,11h2.2l-1.05,7.88C4.07,19.47 4.53,20 5.13,20h0c0.5,0 0.92,-0.37 0.98,-0.86L6.67,15h10.67l0.55,4.14c0.07,0.49 0.49,0.86 0.98,0.86h0c0.6,0 1.06,-0.53 0.98,-1.12L18.8,11H21C21.66,11 22.14,10.36 21.96,9.73zM6.93,13l0.27,-2h9.6l0.27,2H6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/table_rows.xml b/compose/material/material/icons/generator/raw-icons/rounded/table_rows.xml
deleted file mode 100644
index 108cb49..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/table_rows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8H5C3.9,8 3,7.1 3,6v0c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2v0C21,7.1 20.1,8 19,8zM19,10H5c-1.1,0 -2,0.9 -2,2v0c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v0C21,10.9 20.1,10 19,10zM19,16H5c-1.1,0 -2,0.9 -2,2v0c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v0C21,16.9 20.1,16 19,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/table_view.xml b/compose/material/material/icons/generator/raw-icons/rounded/table_view.xml
deleted file mode 100644
index 30ab309..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/table_view.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H9C7.9,7 7,7.9 7,9v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,10L19,10c0,0.55 -0.45,1 -1,1h-8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h8C18.55,9 19,9.45 19,10zM13,15v-2h2v2H13zM15,17v2h-2v-2H15zM11,15H9v-2h2V15zM17,13h2v2h-2V13zM9,17h2v2H9V17zM17,19v-2h2v2H17zM6,17H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2v1h-2V5H5v10h1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tablet.xml b/compose/material/material/icons/generator/raw-icons/rounded/tablet.xml
deleted file mode 100644
index 66bb458..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tablet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 1.99,-0.9 1.99,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18L5,6h14v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tablet_android.xml b/compose/material/material/icons/generator/raw-icons/rounded/tablet_android.xml
deleted file mode 100644
index 196147c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tablet_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,0L6,0C4.34,0 3,1.34 3,3v18c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3L21,3c0,-1.66 -1.34,-3 -3,-3zM13.5,22h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5zM19.25,19L4.75,19L4.75,3h14.5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tablet_mac.xml b/compose/material/material/icons/generator/raw-icons/rounded/tablet_mac.xml
deleted file mode 100644
index 84c2007..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tablet_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,0h-14C3.12,0 2,1.12 2,2.5v19C2,22.88 3.12,24 4.5,24h14c1.38,0 2.5,-1.12 2.5,-2.5v-19C21,1.12 19.88,0 18.5,0zM11.5,23c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,19L4,19L4,3h15v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tag.xml b/compose/material/material/icons/generator/raw-icons/rounded/tag.xml
deleted file mode 100644
index 61bd0a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9L20,9c0,-0.55 -0.45,-1 -1,-1h-3V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3h-4V5c0,-0.55 -0.45,-1 -1,-1h0C8.45,4 8,4.45 8,5v3H5C4.45,8 4,8.45 4,9v0c0,0.55 0.45,1 1,1h3v4H5c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h3v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3h4v3c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-3h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-3v-4h3C19.55,10 20,9.55 20,9zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tag_faces.xml b/compose/material/material/icons/generator/raw-icons/rounded/tag_faces.xml
deleted file mode 100644
index af9fe28..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tag_faces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM16.75,14.75C15.8,16.39 14.03,17.5 12,17.5s-3.8,-1.11 -4.75,-2.75C7.06,14.42 7.31,14 7.69,14h8.62C16.7,14 16.94,14.42 16.75,14.75zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8S17,8.67 17,9.5S16.33,11 15.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/takeout_dining.xml b/compose/material/material/icons/generator/raw-icons/rounded/takeout_dining.xml
deleted file mode 100644
index 3dc44a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/takeout_dining.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,6.75c-0.39,-0.39 -1.01,-0.39 -1.4,0L19,7.63l0.03,-0.56l-3.46,-3.48C15.19,3.21 14.68,3 14.15,3h-4.3C9.32,3 8.81,3.21 8.43,3.59L4.97,7.07L5,7.57L4.11,6.7C3.72,6.32 3.1,6.32 2.72,6.71L2.7,6.73C2.32,7.12 2.32,7.75 2.72,8.13L4.66,10h14.69l1.92,-1.84C21.67,7.78 21.68,7.14 21.29,6.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.79,18.15C5.87,19.19 6.74,20 7.79,20h8.43c1.05,0 1.92,-0.81 1.99,-1.85l0.49,-6.6H5.3L5.79,18.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tap_and_play.xml b/compose/material/material/icons/generator/raw-icons/rounded/tap_and_play.xml
deleted file mode 100644
index ad7463c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tap_and_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.14,16.09c-0.6,-0.1 -1.14,0.39 -1.14,1 0,0.49 0.36,0.9 0.85,0.98 2.08,0.36 3.72,2 4.08,4.08 0.08,0.49 0.49,0.85 0.98,0.85 0.61,0 1.09,-0.54 1,-1.14 -0.48,-2.95 -2.81,-5.29 -5.77,-5.77zM2,20v3h3c0,-1.66 -1.34,-3 -3,-3zM3.11,12.06c-0.59,-0.06 -1.11,0.4 -1.11,0.99 0,0.5 0.37,0.94 0.87,0.99 4.27,0.41 7.67,3.81 8.08,8.08 0.05,0.5 0.48,0.88 0.99,0.88 0.59,0 1.06,-0.51 1,-1.1 -0.51,-5.2 -4.63,-9.32 -9.83,-9.84zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v7.37c0.69,0.16 1.36,0.37 2,0.64L7,5h10v13h-3.03c0.52,1.25 0.84,2.59 0.95,4L17,22c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tapas.xml b/compose/material/material/icons/generator/raw-icons/rounded/tapas.xml
deleted file mode 100644
index 31f1436..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tapas.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10V2c0,-0.55 -0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1v8c0,1.86 1.28,3.41 3,3.86V21h-1c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-1v-7.14C20.72,13.41 22,11.86 22,10zM20,3v3h-4V3H20zM9.86,9L8,9V8l1.86,0c1.31,0 2.5,-0.94 2.63,-2.24C12.64,4.26 11.47,3 10,3H8V2c0,-0.55 -0.45,-1 -1,-1h0C6.45,1 6,1.45 6,2v1L4.14,3c-1.31,0 -2.5,0.94 -2.63,2.24C1.36,6.74 2.53,8 4,8h2v1L4.14,9c-1.31,0 -2.5,0.94 -2.63,2.24C1.36,12.74 2.53,14 4,14h2v8c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-8h2c1.47,0 2.64,-1.26 2.49,-2.76C12.36,9.94 11.17,9 9.86,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/task.xml b/compose/material/material/icons/generator/raw-icons/rounded/task.xml
deleted file mode 100644
index b4cd09e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8.83C20,8.3 19.79,7.79 19.41,7.41zM10.23,17.29l-2.12,-2.12c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l1.41,1.41l3.54,-3.54c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41l-4.24,4.24C11.26,17.68 10.62,17.68 10.23,17.29zM14,9c-0.55,0 -1,-0.45 -1,-1V3.5L18.5,9H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/task_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/task_alt.xml
deleted file mode 100644
index 0f382b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/task_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,5.89l-10,10c-0.39,0.39 -1.02,0.39 -1.41,0l-2.83,-2.83c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l2.12,2.12l9.29,-9.29c0.39,-0.39 1.02,-0.39 1.41,0l0,0C21.68,4.87 21.68,5.5 21.29,5.89zM15.77,2.74c-1.69,-0.69 -3.61,-0.93 -5.61,-0.57C6.09,2.9 2.84,6.18 2.15,10.25C1.01,17 6.63,22.78 13.34,21.91c3.96,-0.51 7.28,-3.46 8.32,-7.31c0.4,-1.47 0.44,-2.89 0.21,-4.22c-0.13,-0.8 -1.12,-1.11 -1.7,-0.54v0c-0.23,0.23 -0.33,0.57 -0.27,0.89c0.22,1.33 0.12,2.75 -0.52,4.26c-1.16,2.71 -3.68,4.7 -6.61,4.97c-5.1,0.47 -9.33,-3.85 -8.7,-8.98c0.43,-3.54 3.28,-6.42 6.81,-6.91c1.73,-0.24 3.37,0.09 4.77,0.81c0.39,0.2 0.86,0.13 1.17,-0.18l0,0c0.48,-0.48 0.36,-1.29 -0.24,-1.6C16.31,2.98 16.04,2.85 15.77,2.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/taxi_alert.xml b/compose/material/material/icons/generator/raw-icons/rounded/taxi_alert.xml
deleted file mode 100644
index 8744cd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/taxi_alert.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-1.91,0 -3.63,-0.76 -4.89,-2H4.81l1.04,-3h5.44C11.1,7.37 11,6.7 11,6s0.1,-1.37 0.29,-2H9C8.45,4 8,4.45 8,5v1H5.5C4.84,6 4.29,6.42 4.08,7.01L2,13v7.5C2,21.32 2.67,22 3.5,22S5,21.32 5,20.5V20h12v0.5c0,0.82 0.67,1.5 1.5,1.5s1.5,-0.68 1.5,-1.5V13l-0.09,-0.27C19.3,12.9 18.66,13 18,13zM6.5,17C5.67,17 5,16.33 5,15.5S5.67,14 6.5,14S8,14.67 8,15.5S7.33,17 6.5,17zM15.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,17 15.5,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18,9c-0.28,0 -0.5,-0.22 -0.5,-0.5S17.72,8 18,8s0.5,0.22 0.5,0.5S18.28,9 18,9zM18.5,6.5C18.5,6.78 18.28,7 18,7s-0.5,-0.22 -0.5,-0.5v-3C17.5,3.22 17.72,3 18,3s0.5,0.22 0.5,0.5V6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/temple_buddhist.xml b/compose/material/material/icons/generator/raw-icons/rounded/temple_buddhist.xml
deleted file mode 100644
index cce0bef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/temple_buddhist.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.85,9.01c-0.41,0 -0.82,0.24 -0.95,0.63C20.64,10.43 19.89,11 19.02,11H4.98c-0.87,0 -1.62,-0.57 -1.88,-1.36C2.97,9.25 2.57,9.02 2.16,9.02h0C1.5,9.02 1,9.66 1.21,10.28c0.43,1.27 1.48,2.24 2.79,2.58V20c0,1.1 0.9,2 2,2h4l0,-2.89c0,-1 0.68,-1.92 1.66,-2.08C12.92,16.82 14,17.79 14,19v3h4c1.1,0 2,-0.9 2,-2v-7.14c0.46,-0.12 2.22,-0.76 2.81,-2.58C23.01,9.65 22.51,9 21.85,9.01L21.85,9.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.86V10h12V8.86c0.46,-0.12 2.22,-0.76 2.81,-2.58c0.2,-0.63 -0.3,-1.27 -0.96,-1.27l0,0c-0.41,0 -0.82,0.24 -0.95,0.63C18.64,6.43 17.89,7 17.02,7H6.98C6.11,7 5.36,6.43 5.1,5.64C4.97,5.25 4.57,5.02 4.16,5.02h0C3.5,5.02 3,5.66 3.21,6.28C3.64,7.55 4.69,8.53 6,8.86z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.2,2.07L8.25,6h7.5L12.8,2.07C12.4,1.53 11.6,1.53 11.2,2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/temple_hindu.xml b/compose/material/material/icons/generator/raw-icons/rounded/temple_hindu.xml
deleted file mode 100644
index 55c639d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/temple_hindu.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.6,11l10.8,0l-0.9,-3l-9,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12v1H4v-1c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v8c0,1.1 0.9,2 2,2h6v-3c0,-1.1 0.9,-2 2,-2h0c1.1,0 2,0.9 2,2v3h6c1.1,0 2,-0.9 2,-2v-8c0,-0.55 -0.45,-1 -1,-1h0C20.45,11 20,11.45 20,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,6L15,3V2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1h-2.03V2c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1.12L8.1,6H15.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/terminal.xml b/compose/material/material/icons/generator/raw-icons/rounded/terminal.xml
deleted file mode 100644
index dbfcfc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/terminal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2,4.9 2,6v12c0,1.1 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.11,4 20,4zM20,18H4V8h16V18zM12,16c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1h-4C12.45,17 12,16.55 12,16zM6.79,9.71c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.39,0.39 0.39,1.02 0,1.41l-2.59,2.59c-0.39,0.39 -1.02,0.39 -1.41,0c-0.39,-0.39 -0.39,-1.02 0,-1.41L8.67,13l-1.88,-1.88C6.4,10.73 6.4,10.1 6.79,9.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/terrain.xml b/compose/material/material/icons/generator/raw-icons/rounded/terrain.xml
deleted file mode 100644
index 515fe49..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/terrain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,7.07L10.25,11l2.25,3c0.33,0.44 0.24,1.07 -0.2,1.4 -0.44,0.33 -1.07,0.25 -1.4,-0.2 -1.05,-1.4 -2.31,-3.07 -3.1,-4.14 -0.4,-0.53 -1.2,-0.53 -1.6,0l-4,5.33c-0.49,0.67 -0.02,1.61 0.8,1.61h18c0.82,0 1.29,-0.94 0.8,-1.6l-7,-9.33c-0.4,-0.54 -1.2,-0.54 -1.6,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_decrease.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_decrease.xml
deleted file mode 100644
index dd26128..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_decrease.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.61,19L2.61,19c0.48,0 0.91,-0.3 1.06,-0.75l1.01,-2.83h5.65l0.99,2.82C11.48,18.7 11.91,19 12.39,19c0.79,0 1.33,-0.79 1.05,-1.52L9.19,6.17C8.93,5.47 8.25,5 7.5,5S6.07,5.47 5.81,6.17L1.56,17.48C1.28,18.21 1.83,19 2.61,19zM7.44,7.6h0.12l2.03,5.79H5.41L7.44,7.6zM15,12c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-6C15.45,13 15,12.55 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_fields.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_fields.xml
deleted file mode 100644
index 9a62f73..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_fields.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,5.5C2.5,6.33 3.17,7 4,7h3.5v10.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5V7H14c0.83,0 1.5,-0.67 1.5,-1.5S14.83,4 14,4H4c-0.83,0 -1.5,0.67 -1.5,1.5zM20,9h-6c-0.83,0 -1.5,0.67 -1.5,1.5S13.17,12 14,12h1.5v5.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5V12H20c0.83,0 1.5,-0.67 1.5,-1.5S20.83,9 20,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_format.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_format.xml
deleted file mode 100644
index a4c6756..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_format.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L6,17c-0.55,0 -1,0.45 -1,1zM9.5,12.8h5l0.66,1.6c0.15,0.36 0.5,0.6 0.89,0.6 0.69,0 1.15,-0.71 0.88,-1.34l-3.88,-8.97C12.87,4.27 12.46,4 12,4c-0.46,0 -0.87,0.27 -1.05,0.69l-3.88,8.97c-0.27,0.63 0.2,1.34 0.89,1.34 0.39,0 0.74,-0.24 0.89,-0.6l0.65,-1.6zM12,5.98L13.87,11h-3.74L12,5.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_increase.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_increase.xml
deleted file mode 100644
index 7941ed2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_increase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.61,19L2.61,19c0.48,0 0.91,-0.3 1.06,-0.75l1.01,-2.83h5.65l0.99,2.82C11.48,18.7 11.91,19 12.39,19c0.79,0 1.33,-0.79 1.05,-1.52L9.19,6.17C8.93,5.47 8.25,5 7.5,5S6.07,5.47 5.81,6.17L1.56,17.48C1.28,18.21 1.83,19 2.61,19zM7.44,7.6h0.12l2.03,5.79H5.41L7.44,7.6zM15,12c0,-0.55 0.45,-1 1,-1h2V9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h-2C15.45,13 15,12.55 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_rotate_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_rotate_up.xml
deleted file mode 100644
index 8680f49..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_rotate_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.35,4.35c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.79,1.79c-0.31,0.32 -0.09,0.86 0.36,0.86H17v12c0,0.55 0.45,1 1,1s1,-0.45 1,-1V7h0.79c0.45,0 0.67,-0.54 0.35,-0.85l-1.79,-1.8zM11.8,15.5v-5l1.6,-0.66c0.36,-0.14 0.6,-0.49 0.6,-0.88 0,-0.69 -0.71,-1.15 -1.34,-0.88l-8.97,3.88c-0.42,0.17 -0.69,0.58 -0.69,1.04 0,0.46 0.27,0.87 0.69,1.05l8.97,3.88c0.63,0.27 1.34,-0.2 1.34,-0.89 0,-0.39 -0.24,-0.74 -0.6,-0.89l-1.6,-0.65zM4.98,13L10,11.13v3.74L4.98,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_rotate_vertical.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_rotate_vertical.xml
deleted file mode 100644
index 303272e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_rotate_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5c-0.46,0 -0.87,0.27 -1.05,0.69l-3.88,8.97c-0.27,0.63 0.2,1.34 0.89,1.34 0.39,0 0.74,-0.24 0.89,-0.6l0.66,-1.6h5l0.66,1.6c0.15,0.36 0.5,0.6 0.89,0.6 0.69,0 1.15,-0.71 0.88,-1.34l-3.88,-8.97C15.87,5.27 15.46,5 15,5zM13.13,12L15,6.98 16.87,12h-3.74zM6.35,19.64l1.79,-1.79c0.32,-0.31 0.1,-0.85 -0.35,-0.85L7,17L7,5c0,-0.55 -0.45,-1 -1,-1s-1,0.44 -1,1v12h-0.79c-0.45,0 -0.67,0.54 -0.35,0.85l1.79,1.79c0.19,0.2 0.51,0.2 0.7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_angledown.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_angledown.xml
deleted file mode 100644
index 1e81ea3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_angledown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,20.5v-2.54c0,-0.45 -0.54,-0.67 -0.85,-0.35l-0.56,0.56L5.1,9.68c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l8.49,8.49 -0.56,0.56c-0.32,0.32 -0.1,0.86 0.34,0.86h2.54c0.28,0 0.5,-0.23 0.5,-0.5zM11.25,8.48l3.54,3.54 -0.67,1.6c-0.15,0.36 -0.07,0.77 0.21,1.05 0.49,0.49 1.31,0.32 1.57,-0.32l3.61,-9.09c0.17,-0.42 0.07,-0.91 -0.25,-1.23 -0.32,-0.32 -0.8,-0.42 -1.23,-0.25l-9.1,3.6c-0.64,0.25 -0.81,1.08 -0.32,1.57 0.27,0.27 0.68,0.35 1.04,0.2l1.6,-0.67zM17.84,5.43l-2.23,4.87 -2.64,-2.64 4.87,-2.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_angleup.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_angleup.xml
deleted file mode 100644
index 72b83cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_angleup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.61,9.85l0.56,0.56 -8.48,8.49c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l8.49,-8.49 0.56,0.56c0.31,0.32 0.85,0.1 0.85,-0.34L21,9.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-2.54c-0.44,0 -0.66,0.54 -0.35,0.85zM8.48,12.75l3.54,-3.54 1.6,0.67c0.36,0.15 0.77,0.07 1.05,-0.21 0.49,-0.49 0.32,-1.31 -0.32,-1.57L5.26,4.5c-0.43,-0.16 -0.91,-0.06 -1.23,0.26 -0.32,0.32 -0.42,0.8 -0.25,1.23l3.61,9.09c0.25,0.64 1.08,0.81 1.57,0.32 0.28,-0.28 0.36,-0.69 0.21,-1.05l-0.69,-1.6zM7.66,11.03L5.43,6.16l4.87,2.23 -2.64,2.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_down.xml
deleted file mode 100644
index f5ee726..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.35,19.65l1.79,-1.79c0.32,-0.32 0.1,-0.86 -0.35,-0.86L7,17L7,5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v12h-0.79c-0.45,0 -0.67,0.54 -0.35,0.85l1.79,1.79c0.19,0.2 0.51,0.2 0.7,0.01zM12.2,8.5v5l-1.6,0.66c-0.36,0.15 -0.6,0.5 -0.6,0.89 0,0.69 0.71,1.15 1.34,0.88l8.97,-3.88c0.42,-0.18 0.69,-0.59 0.69,-1.05 0,-0.46 -0.27,-0.87 -0.69,-1.05l-8.97,-3.88c-0.63,-0.27 -1.34,0.2 -1.34,0.89 0,0.39 0.24,0.74 0.6,0.89l1.6,0.65zM19.02,11L14,12.87L14,9.13L19.02,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_none.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_none.xml
deleted file mode 100644
index a564809..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_rotation_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.65,17.65l-1.79,-1.79c-0.32,-0.32 -0.86,-0.1 -0.86,0.35V17H6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12v0.79c0,0.45 0.54,0.67 0.85,0.35l1.79,-1.79c0.2,-0.19 0.2,-0.51 0.01,-0.7zM9.5,11.8h5l0.66,1.6c0.15,0.36 0.5,0.6 0.89,0.6 0.69,0 1.15,-0.71 0.88,-1.34l-3.88,-8.97C12.87,3.27 12.46,3 12,3c-0.46,0 -0.87,0.27 -1.05,0.69l-3.88,8.97c-0.27,0.63 0.2,1.34 0.89,1.34 0.39,0 0.74,-0.24 0.89,-0.6l0.65,-1.6zM12,4.98L13.87,10h-3.74L12,4.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/text_snippet.xml b/compose/material/material/icons/generator/raw-icons/rounded/text_snippet.xml
deleted file mode 100644
index 28a4880..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/text_snippet.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83C15.21,3.21 14.7,3 14.17,3L14.17,3zM8,15h8c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1v0C7,15.45 7.45,15 8,15zM8,11h8c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1v0C7,11.45 7.45,11 8,11zM8,7h5c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1H8C7.45,9 7,8.55 7,8v0C7,7.45 7.45,7 8,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/textsms.xml b/compose/material/material/icons/generator/raw-icons/rounded/textsms.xml
deleted file mode 100644
index ab72164..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/textsms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM9,11L7,11L7,9h2v2zM13,11h-2L11,9h2v2zM17,11h-2L15,9h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/texture.xml b/compose/material/material/icons/generator/raw-icons/rounded/texture.xml
deleted file mode 100644
index 47894fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/texture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.58,3.08L3.15,19.51c0.09,0.34 0.27,0.65 0.51,0.9 0.25,0.24 0.56,0.42 0.9,0.51L21,4.49c-0.19,-0.69 -0.73,-1.23 -1.42,-1.41zM11.95,3l-8.88,8.88v2.83L14.78,3h-2.83zM5.07,3c-1.1,0 -2,0.9 -2,2v2l4,-4h-2zM19.07,21c0.55,0 1.05,-0.22 1.41,-0.59 0.37,-0.36 0.59,-0.86 0.59,-1.41v-2l-4,4h2zM9.36,21h2.83l8.88,-8.88L21.07,9.29L9.36,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/theater_comedy.xml b/compose/material/material/icons/generator/raw-icons/rounded/theater_comedy.xml
deleted file mode 100644
index e199c52..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/theater_comedy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2h-8c-1.1,0 -2,0.9 -2,2v3.5h1.5c1.1,0 2,0.9 2,2v4.95c1.04,0.48 2.24,0.68 3.5,0.47c2.93,-0.49 5,-3.17 5,-6.14V4C23,2.9 22.1,2 21,2zM14,6.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S14,7.05 14,6.5zM18.85,10.88h-3.72c-0.38,0 -0.63,-0.41 -0.44,-0.75C15.08,9.47 15.96,9 16.99,9s1.91,0.47 2.3,1.14C19.48,10.47 19.23,10.88 18.85,10.88zM19,7.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,7.5 19,7.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9H3c-1.1,0 -2,0.9 -2,2v4.79c0,3.05 2.19,5.77 5.21,6.16C9.87,22.42 13,19.57 13,16v-5C13,9.9 12.1,9 11,9zM4,13.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S4,14.05 4,13.5zM9.3,16.75c-0.38,0.67 -1.27,1.14 -2.3,1.14s-1.91,-0.47 -2.3,-1.14C4.51,16.41 4.76,16 5.14,16h3.72C9.24,16 9.49,16.41 9.3,16.75zM9,14.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,14.5 9,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/theaters.xml b/compose/material/material/icons/generator/raw-icons/rounded/theaters.xml
deleted file mode 100644
index 3fe1f95..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/theaters.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v1h-2L16,4c0,-0.55 -0.45,-1 -1,-1L9,3c-0.55,0 -1,0.45 -1,1v1L6,5L6,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h2v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h2v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1L20,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thermostat.xml b/compose/material/material/icons/generator/raw-icons/rounded/thermostat.xml
deleted file mode 100644
index 7c4e852..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4 0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-1.63 -0.79,-3.09 -2,-4zM13,11h-2L11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h-0.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h0.5v2h-0.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5h0.5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thermostat_auto.xml b/compose/material/material/icons/generator/raw-icons/rounded/thermostat_auto.xml
deleted file mode 100644
index 21cace9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thermostat_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12V6c0,-1.66 -1.34,-3 -3,-3S5,4.34 5,6v6c-1.21,0.91 -2,2.37 -2,4c0,1.12 0.38,2.14 1,2.97V19h0.02c0.91,1.21 2.35,2 3.98,2s3.06,-0.79 3.98,-2H12v-0.03c0.62,-0.83 1,-1.85 1,-2.97C13,14.37 12.21,12.91 11,12zM5,16c0,-0.94 0.45,-1.84 1.2,-2.4L7,13V6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v7l0.8,0.6c0.75,0.57 1.2,1.46 1.2,2.4H5zM17.81,4L17.81,4c-0.48,0 -0.92,0.3 -1.09,0.75L14,12.02C13.82,12.49 14.17,13 14.67,13h0c0.31,0 0.58,-0.19 0.68,-0.48L16,10.7h3.63l0.64,1.82c0.1,0.29 0.38,0.48 0.68,0.48l0,0c0.51,0 0.86,-0.51 0.68,-0.98L18.9,4.75C18.73,4.3 18.3,4 17.81,4zM16.47,9.39l1.31,-3.72h0.08l1.31,3.72H16.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thumb_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/thumb_down.xml
deleted file mode 100644
index a708b03..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thumb_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.88,21.94l5.53,-5.54c0.37,-0.37 0.58,-0.88 0.58,-1.41V5c0,-1.1 -0.9,-2 -2,-2H6c-0.8,0 -1.52,0.48 -1.83,1.21L0.91,11.82C0.06,13.8 1.51,16 3.66,16h5.65l-0.95,4.58c-0.1,0.5 0.05,1.01 0.41,1.37 0.59,0.58 1.53,0.58 2.11,-0.01zM21,3c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2s2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thumb_down_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/thumb_down_alt.xml
deleted file mode 100644
index a708b03..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thumb_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.88,21.94l5.53,-5.54c0.37,-0.37 0.58,-0.88 0.58,-1.41V5c0,-1.1 -0.9,-2 -2,-2H6c-0.8,0 -1.52,0.48 -1.83,1.21L0.91,11.82C0.06,13.8 1.51,16 3.66,16h5.65l-0.95,4.58c-0.1,0.5 0.05,1.01 0.41,1.37 0.59,0.58 1.53,0.58 2.11,-0.01zM21,3c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2s2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thumb_down_off_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/thumb_down_off_alt.xml
deleted file mode 100644
index 04ca0cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thumb_down_off_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.99,3H6C5.2,3 4.48,3.48 4.17,4.21l-3.26,7.61C0.06,13.8 1.51,16 3.66,16h5.65l-0.95,4.58c-0.1,0.5 0.05,1.01 0.41,1.37c0.29,0.29 0.67,0.43 1.05,0.43c0.38,0 0.77,-0.15 1.06,-0.44l5.53,-5.54c0.37,-0.37 0.58,-0.88 0.58,-1.41V5C16.99,3.9 16.09,3 14.99,3zM10.66,19.33l0.61,-2.92l0.5,-2.41H9.31H3.66c-0.47,0 -0.72,-0.28 -0.83,-0.45c-0.11,-0.17 -0.27,-0.51 -0.08,-0.95L6,5h8.99l0,9.99L10.66,19.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2s2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thumb_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/thumb_up.xml
deleted file mode 100644
index e20fc37..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thumb_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.12,2.06L7.58,7.6c-0.37,0.37 -0.58,0.88 -0.58,1.41V19c0,1.1 0.9,2 2,2h9c0.8,0 1.52,-0.48 1.84,-1.21l3.26,-7.61C23.94,10.2 22.49,8 20.34,8h-5.65l0.95,-4.58c0.1,-0.5 -0.05,-1.01 -0.41,-1.37 -0.59,-0.58 -1.53,-0.58 -2.11,0.01zM3,21c1.1,0 2,-0.9 2,-2v-8c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v8c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thumb_up_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/thumb_up_alt.xml
deleted file mode 100644
index e20fc37..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thumb_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.12,2.06L7.58,7.6c-0.37,0.37 -0.58,0.88 -0.58,1.41V19c0,1.1 0.9,2 2,2h9c0.8,0 1.52,-0.48 1.84,-1.21l3.26,-7.61C23.94,10.2 22.49,8 20.34,8h-5.65l0.95,-4.58c0.1,-0.5 -0.05,-1.01 -0.41,-1.37 -0.59,-0.58 -1.53,-0.58 -2.11,0.01zM3,21c1.1,0 2,-0.9 2,-2v-8c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v8c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thumb_up_off_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/thumb_up_off_alt.xml
deleted file mode 100644
index 363e6e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thumb_up_off_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.12,2.06L7.58,7.6C7.21,7.97 7,8.48 7,9.01V19c0,1.1 0.9,2 2,2h9c0.8,0 1.52,-0.48 1.84,-1.21l3.26,-7.61C23.94,10.2 22.49,8 20.34,8h-5.65l0.95,-4.58c0.1,-0.5 -0.05,-1.01 -0.41,-1.37C14.64,1.47 13.7,1.47 13.12,2.06zM3,21c1.1,0 2,-0.9 2,-2v-8c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v8C1,20.1 1.9,21 3,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thumbs_up_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/thumbs_up_down.xml
deleted file mode 100644
index fed4b3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thumbs_up_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.06,5H5.82l0.66,-3.18c0.08,-0.37 -0.04,-0.75 -0.3,-1.02C5.74,0.36 5.03,0.36 4.6,0.8l-4,4c-0.39,0.37 -0.6,0.88 -0.6,1.41V12c0,1.1 0.9,2 2,2h5.92c0.8,0 1.52,-0.48 1.84,-1.21l2.14,-5C12.46,6.47 11.49,5 10.06,5zM22,10h-5.92c-0.8,0 -1.52,0.48 -1.84,1.21l-2.14,5c-0.56,1.32 0.4,2.79 1.84,2.79h4.24l-0.66,3.18c-0.08,0.37 0.04,0.75 0.3,1.02 0.44,0.44 1.15,0.44 1.58,0l4,-4c0.38,-0.38 0.59,-0.88 0.59,-1.41V12c0.01,-1.1 -0.89,-2 -1.99,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/thunderstorm.xml b/compose/material/material/icons/generator/raw-icons/rounded/thunderstorm.xml
deleted file mode 100644
index e9f73e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/thunderstorm.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,7.02C17.45,4.18 14.97,2 12,2C9.82,2 7.83,3.18 6.78,5.06C4.09,5.41 2,7.74 2,10.5C2,13.53 4.47,16 7.5,16h10c2.48,0 4.5,-2.02 4.5,-4.5C22,9.16 20.21,7.23 17.92,7.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.95,20.11l-0.84,-0.42l0.9,-1.03c0.36,-0.42 0.32,-1.05 -0.09,-1.41c-0.42,-0.36 -1.05,-0.32 -1.41,0.09l-1.75,2c-0.2,0.23 -0.29,0.55 -0.23,0.85c0.06,0.3 0.26,0.56 0.53,0.7l0.84,0.42L13,22.34c-0.36,0.42 -0.32,1.05 0.09,1.41c0.19,0.17 0.42,0.25 0.66,0.25c0.28,0 0.55,-0.12 0.75,-0.34l1.75,-2c0.2,-0.23 0.29,-0.55 0.23,-0.85C16.42,20.5 16.22,20.24 15.95,20.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.95,20.11L9.1,19.68l0.9,-1.03c0.36,-0.42 0.32,-1.05 -0.09,-1.41c-0.42,-0.36 -1.05,-0.32 -1.41,0.09l-1.75,2c-0.2,0.23 -0.29,0.55 -0.23,0.85c0.06,0.3 0.26,0.56 0.53,0.7l0.84,0.42L7,22.34c-0.36,0.42 -0.32,1.05 0.09,1.41C7.28,23.92 7.52,24 7.75,24c0.28,0 0.55,-0.12 0.75,-0.34l1.75,-2c0.2,-0.23 0.29,-0.55 0.23,-0.85C10.42,20.5 10.22,20.24 9.95,20.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/time_to_leave.xml b/compose/material/material/icons/generator/raw-icons/rounded/time_to_leave.xml
deleted file mode 100644
index f1714e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/time_to_leave.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01l-1.97,5.67c-0.07,0.21 -0.11,0.43 -0.11,0.66v7.16c0,0.83 0.67,1.5 1.5,1.5S6,19.33 6,18.5L6,18h12v0.5c0,0.82 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5v-7.16c0,-0.22 -0.04,-0.45 -0.11,-0.66l-1.97,-5.67zM6.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,12 6.5,12s1.5,0.67 1.5,1.5S7.33,15 6.5,15zM17.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,10l1.27,-3.82c0.14,-0.4 0.52,-0.68 0.95,-0.68h9.56c0.43,0 0.81,0.28 0.95,0.68L19,10L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timelapse.xml b/compose/material/material/icons/generator/raw-icons/rounded/timelapse.xml
deleted file mode 100644
index b03e05f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timelapse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,7.76C15.07,6.59 13.54,6 12,6v6l-4.24,4.24c2.34,2.34 6.14,2.34 8.49,0 2.34,-2.34 2.34,-6.14 -0.01,-8.48zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timeline.xml b/compose/material/material/icons/generator/raw-icons/rounded/timeline.xml
deleted file mode 100644
index 310490c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8c0,1.1 -0.9,2 -2,2c-0.18,0 -0.35,-0.02 -0.51,-0.07l-3.56,3.55C16.98,13.64 17,13.82 17,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.18 0.02,-0.36 0.07,-0.52l-2.55,-2.55C10.36,10.98 10.18,11 10,11c-0.18,0 -0.36,-0.02 -0.52,-0.07l-4.55,4.56C4.98,15.65 5,15.82 5,16c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.18,0 0.35,0.02 0.51,0.07l4.56,-4.55C8.02,9.36 8,9.18 8,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,0.18 -0.02,0.36 -0.07,0.52l2.55,2.55C14.64,12.02 14.82,12 15,12c0.18,0 0.36,0.02 0.52,0.07l3.55,-3.56C19.02,8.35 19,8.18 19,8c0,-1.1 0.9,-2 2,-2S23,6.9 23,8zM23,8c0,1.1 -0.9,2 -2,2c-0.18,0 -0.35,-0.02 -0.51,-0.07l-3.56,3.55C16.98,13.64 17,13.82 17,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.18 0.02,-0.36 0.07,-0.52l-2.55,-2.55C10.36,10.98 10.18,11 10,11c-0.18,0 -0.36,-0.02 -0.52,-0.07l-4.55,4.56C4.98,15.65 5,15.82 5,16c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.18,0 0.35,0.02 0.51,0.07l4.56,-4.55C8.02,9.36 8,9.18 8,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,0.18 -0.02,0.36 -0.07,0.52l2.55,2.55C14.64,12.02 14.82,12 15,12c0.18,0 0.36,0.02 0.52,0.07l3.55,-3.56C19.02,8.35 19,8.18 19,8c0,-1.1 0.9,-2 2,-2S23,6.9 23,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timer.xml b/compose/material/material/icons/generator/raw-icons/rounded/timer.xml
deleted file mode 100644
index b1b826c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timer.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h4c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-4C9.45,1 9,1.45 9,2C9,2.55 9.45,3 10,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.03,7.39l0.75,-0.75c0.38,-0.38 0.39,-1.01 0,-1.4c0,0 -0.01,-0.01 -0.01,-0.01c-0.39,-0.39 -1.01,-0.38 -1.4,0l-0.75,0.75C16.07,4.74 14.12,4 12,4c-4.8,0 -8.88,3.96 -9,8.76C2.87,17.84 6.94,22 12,22c4.98,0 9,-4.03 9,-9C21,10.88 20.26,8.93 19.03,7.39zM13,13c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timer_10.xml b/compose/material/material/icons/generator/raw-icons/rounded/timer_10.xml
deleted file mode 100644
index d707d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timer_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M-0.01,7.72L-0.01,9.4l3,-1L2.99,18h2L4.99,6h-0.25L-0.01,7.72zM23.77,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25s-0.23,-0.19 -0.28,-0.3c-0.05,-0.11 -0.08,-0.24 -0.08,-0.39 0,-0.14 0.03,-0.28 0.09,-0.41s0.15,-0.25 0.27,-0.34c0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11s0.35,0.17 0.48,0.29 0.22,0.26 0.29,0.42c0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09s-0.39,-0.63 -0.69,-0.88c-0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21s-0.77,0.33 -1.06,0.57c-0.29,0.24 -0.51,0.52 -0.67,0.84 -0.16,0.32 -0.23,0.65 -0.23,1.01s0.08,0.69 0.23,0.96c0.15,0.28 0.36,0.52 0.64,0.73 0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77s-0.66,0.29 -1.17,0.29c-0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05s0.39,0.65 0.7,0.93c0.31,0.27 0.69,0.49 1.15,0.66s0.98,0.25 1.58,0.25c0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02zM13.81,7.05c-0.34,-0.4 -0.75,-0.7 -1.23,-0.88 -0.47,-0.18 -1.01,-0.27 -1.59,-0.27s-1.11,0.09 -1.59,0.27c-0.48,0.18 -0.89,0.47 -1.23,0.88 -0.34,0.41 -0.6,0.93 -0.79,1.59 -0.18,0.65 -0.28,1.45 -0.28,2.39v1.92c0,0.94 0.09,1.74 0.28,2.39 0.19,0.66 0.45,1.19 0.8,1.6 0.34,0.41 0.75,0.71 1.23,0.89s1.01,0.28 1.59,0.28c0.59,0 1.12,-0.09 1.59,-0.28 0.48,-0.18 0.88,-0.48 1.22,-0.89s0.6,-0.94 0.78,-1.6c0.18,-0.65 0.28,-1.45 0.28,-2.39v-1.92c0,-0.94 -0.09,-1.74 -0.28,-2.39 -0.18,-0.66 -0.44,-1.19 -0.78,-1.59zM12.89,13.22c0,0.6 -0.04,1.11 -0.12,1.53s-0.2,0.76 -0.36,1.02c-0.16,0.26 -0.36,0.45 -0.59,0.57 -0.23,0.12 -0.51,0.18 -0.82,0.18 -0.3,0 -0.58,-0.06 -0.82,-0.18s-0.44,-0.31 -0.6,-0.57c-0.16,-0.26 -0.29,-0.6 -0.38,-1.02s-0.13,-0.93 -0.13,-1.53v-2.5c0,-0.6 0.04,-1.11 0.13,-1.52s0.21,-0.74 0.38,-1c0.16,-0.25 0.36,-0.43 0.6,-0.55 0.24,-0.11 0.51,-0.17 0.81,-0.17 0.31,0 0.58,0.06 0.81,0.17 0.24,0.11 0.44,0.29 0.6,0.55 0.16,0.25 0.29,0.58 0.37,0.99s0.13,0.92 0.13,1.52v2.51h-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timer_10_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/timer_10_select.xml
deleted file mode 100644
index e8c3d15..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timer_10_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8v8h-3V8H13M13,5h-3C8.34,5 7,6.34 7,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3V8C16,6.34 14.66,5 13,5zM2.5,8H3v9.5C3,18.33 3.67,19 4.5,19h0C5.33,19 6,18.33 6,17.5V7c0,-1.1 -0.9,-2 -2,-2H2.5C1.67,5 1,5.67 1,6.5v0C1,7.33 1.67,8 2.5,8zM18.5,11c-0.83,0 -1.5,0.68 -1.5,1.5v2c0,0.82 0.67,1.5 1.5,1.5H21v1h-3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h3.5c0.83,0 1.5,-0.67 1.5,-1.5v-2c0,-0.83 -0.67,-1.5 -1.5,-1.5H19v-1h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timer_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/timer_3.xml
deleted file mode 100644
index 215e2d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timer_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.61,12.97c-0.16,-0.24 -0.36,-0.46 -0.62,-0.65 -0.25,-0.19 -0.56,-0.35 -0.93,-0.48 0.3,-0.14 0.57,-0.3 0.8,-0.5 0.23,-0.2 0.42,-0.41 0.57,-0.64 0.15,-0.23 0.27,-0.46 0.34,-0.71 0.08,-0.24 0.11,-0.49 0.11,-0.73 0,-0.55 -0.09,-1.04 -0.28,-1.46 -0.18,-0.42 -0.44,-0.77 -0.78,-1.06 -0.33,-0.28 -0.73,-0.5 -1.2,-0.64 -0.45,-0.13 -0.97,-0.2 -1.53,-0.2 -0.55,0 -1.06,0.08 -1.52,0.24 -0.47,0.17 -0.87,0.4 -1.2,0.69 -0.33,0.29 -0.6,0.63 -0.78,1.03 -0.2,0.39 -0.29,0.83 -0.29,1.29h1.98c0,-0.26 0.05,-0.49 0.14,-0.69 0.09,-0.2 0.22,-0.38 0.38,-0.52 0.17,-0.14 0.36,-0.25 0.58,-0.33s0.46,-0.12 0.73,-0.12c0.61,0 1.06,0.16 1.36,0.47 0.3,0.31 0.44,0.75 0.44,1.32 0,0.27 -0.04,0.52 -0.12,0.74 -0.08,0.22 -0.21,0.41 -0.38,0.57s-0.38,0.28 -0.63,0.37 -0.55,0.13 -0.89,0.13L6.72,11.09v1.57L7.9,12.66c0.34,0 0.64,0.04 0.91,0.11 0.27,0.08 0.5,0.19 0.69,0.35 0.19,0.16 0.34,0.36 0.44,0.61 0.1,0.24 0.16,0.54 0.16,0.87 0,0.62 -0.18,1.09 -0.53,1.42 -0.35,0.33 -0.84,0.49 -1.45,0.49 -0.29,0 -0.56,-0.04 -0.8,-0.13 -0.24,-0.08 -0.44,-0.2 -0.61,-0.36s-0.3,-0.34 -0.39,-0.56c-0.09,-0.22 -0.14,-0.46 -0.14,-0.72L4.19,14.74c0,0.55 0.11,1.03 0.32,1.45 0.21,0.42 0.5,0.77 0.86,1.05s0.77,0.49 1.24,0.63 0.96,0.21 1.48,0.21c0.57,0 1.09,-0.08 1.58,-0.23s0.91,-0.38 1.26,-0.68c0.36,-0.3 0.64,-0.66 0.84,-1.1 0.2,-0.43 0.3,-0.93 0.3,-1.48 0,-0.29 -0.04,-0.58 -0.11,-0.86 -0.08,-0.25 -0.19,-0.51 -0.35,-0.76zM20.87,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25s-0.23,-0.19 -0.28,-0.3c-0.05,-0.11 -0.08,-0.24 -0.08,-0.39s0.03,-0.28 0.09,-0.41 0.15,-0.25 0.27,-0.34c0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11s0.35,0.17 0.48,0.29 0.22,0.26 0.29,0.42c0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09s-0.39,-0.63 -0.69,-0.88c-0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21s-0.77,0.33 -1.06,0.57c-0.29,0.24 -0.51,0.52 -0.67,0.84s-0.23,0.65 -0.23,1.01 0.08,0.68 0.23,0.96 0.37,0.52 0.64,0.73c0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77s-0.66,0.29 -1.17,0.29c-0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05s0.39,0.65 0.7,0.93c0.31,0.27 0.69,0.49 1.15,0.66 0.46,0.17 0.98,0.25 1.58,0.25 0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timer_3_select.xml b/compose/material/material/icons/generator/raw-icons/rounded/timer_3_select.xml
deleted file mode 100644
index 6974700..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timer_3_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12L21,12c0,0.55 -0.45,1 -1,1h-3v1h2.5c0.83,0 1.5,0.68 1.5,1.5v2c0,0.83 -0.67,1.5 -1.5,1.5H16c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3v-1h-2.5c-0.82,0 -1.5,-0.68 -1.5,-1.5v-2c0,-0.82 0.68,-1.5 1.5,-1.5H20C20.55,11 21,11.45 21,12zM4,6.5L4,6.5C4,7.33 4.67,8 5.5,8H10v2.5H5.5C4.67,10.5 4,11.17 4,12v0c0,0.83 0.67,1.5 1.5,1.5H10V16H5.5C4.67,16 4,16.67 4,17.5v0C4,18.33 4.67,19 5.5,19H10c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H5.5C4.67,5 4,5.67 4,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/timer_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/timer_off.xml
deleted file mode 100644
index b523db3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/timer_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h4c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-4C9.45,1 9,1.45 9,2C9,2.55 9.45,3 10,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c0.55,0 1,0.45 1,1v1.17l6.98,6.98C20.63,15.91 21,14.5 21,13c0,-2.12 -0.74,-4.07 -1.97,-5.61l0.75,-0.75c0.38,-0.38 0.39,-1.01 0,-1.4c0,0 -0.01,-0.01 -0.01,-0.01c-0.39,-0.39 -1.01,-0.38 -1.4,0l-0.75,0.75C16.07,4.74 14.12,4 12,4c-1.48,0 -2.89,0.38 -4.13,1.04l3.36,3.36C11.41,8.16 11.68,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l2.72,2.72C3.73,9.09 3.05,10.86 3,12.76C2.87,17.84 6.94,22 12,22c2.02,0 3.88,-0.67 5.38,-1.79l1.69,1.69c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tips_and_updates.xml b/compose/material/material/icons/generator/raw-icons/rounded/tips_and_updates.xml
deleted file mode 100644
index b5af81f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tips_and_updates.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h4c0,1.1 -0.9,2 -2,2S7,21.1 7,20zM5,18c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H6C5.45,17 5,17.45 5,18zM16.5,9.5c0,3.82 -2.66,5.86 -3.77,6.5H5.27C4.16,15.36 1.5,13.32 1.5,9.5C1.5,5.36 4.86,2 9,2S16.5,5.36 16.5,9.5zM21.37,7.37L20,8l1.37,0.63L22,10l0.63,-1.37L24,8l-1.37,-0.63L22,6L21.37,7.37zM19,6l0.94,-2.06L22,3l-2.06,-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tire_repair.xml b/compose/material/material/icons/generator/raw-icons/rounded/tire_repair.xml
deleted file mode 100644
index a3d6883..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tire_repair.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c0,0.55 0.45,1 1,1c0.28,0 0.53,-0.11 0.71,-0.29c0.4,-0.4 1.04,-2.46 1.04,-2.46s-2.06,0.64 -2.46,1.04C18.11,6.47 18,6.72 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2c-2.76,0 -5,2.24 -5,5c0,2.05 1.23,3.81 3,4.58V12c0,0.55 0.45,1 1,1v5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3c0,-1.65 -1.35,-3 -3,-3c-0.35,0 -0.69,0.06 -1,0.17V5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3c0,1.65 1.35,3 3,3s3,-1.35 3,-3v-5c0.55,0 1,-0.45 1,-1v-0.42c1.77,-0.77 3,-2.53 3,-4.58C24,4.24 21.76,2 19,2zM6,19.5l-2,-2v-2.83l2,2V19.5zM6,14.5l-2,-2V9.67l2,2V14.5zM6,9.5l-2,-2V4.67l2,2V9.5zM10,17.5l-2,2v-2.83l2,-2V17.5zM10,12.5l-2,2v-2.83l2,-2V12.5zM10,7.5l-2,2V6.67l2,-2V7.5zM19,10c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S20.66,10 19,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/title.xml b/compose/material/material/icons/generator/raw-icons/rounded/title.xml
deleted file mode 100644
index 1daddf2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/title.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5.5C5,6.33 5.67,7 6.5,7h4v10.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5V7h4c0.83,0 1.5,-0.67 1.5,-1.5S18.33,4 17.5,4h-11C5.67,4 5,4.67 5,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/toc.xml b/compose/material/material/icons/generator/raw-icons/rounded/toc.xml
deleted file mode 100644
index a965a7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/toc.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,7c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,13h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,17h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM19,17h2v-2h-2v2zM19,7v2h2L21,7h-2zM19,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/today.xml b/compose/material/material/icons/generator/raw-icons/rounded/today.xml
deleted file mode 100644
index 5d633eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L8,3L8,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM18,19L6,19c-0.55,0 -1,-0.45 -1,-1L5,8h14v10c0,0.55 -0.45,1 -1,1zM8,10h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1L8,15c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/toggle_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/toggle_off.xml
deleted file mode 100644
index 1af8c24..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7H7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h10c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM7,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/toggle_on.xml b/compose/material/material/icons/generator/raw-icons/rounded/toggle_on.xml
deleted file mode 100644
index 914671e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/toggle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h10c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM17,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/token.xml b/compose/material/material/icons/generator/raw-icons/rounded/token.xml
deleted file mode 100644
index 6b6c385..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/token.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.97,2.54c-0.6,-0.34 -1.34,-0.34 -1.94,0l-7,3.89L9.1,9.24C9.83,8.48 10.86,8 12,8s2.17,0.48 2.9,1.24l5.07,-2.82L12.97,2.54zM10,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,13.1 10,12zM3,8.14l5.13,2.85C8.04,11.31 8,11.65 8,12c0,1.86 1.27,3.43 3,3.87v5.57l-6.97,-3.87C3.39,17.22 3,16.55 3,15.82V8.14zM13,21.44v-5.57c1.73,-0.44 3,-2.01 3,-3.87c0,-0.35 -0.04,-0.69 -0.13,-1.01L21,8.14l0,7.68c0,0.73 -0.39,1.4 -1.03,1.75L13,21.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/toll.xml b/compose/material/material/icons/generator/raw-icons/rounded/toll.xml
deleted file mode 100644
index 3ee7a7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/toll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM3,12c0,-2.39 1.4,-4.46 3.43,-5.42 0.34,-0.16 0.57,-0.47 0.57,-0.84v-0.19c0,-0.68 -0.71,-1.11 -1.32,-0.82C2.92,5.99 1,8.77 1,12s1.92,6.01 4.68,7.27c0.61,0.28 1.32,-0.14 1.32,-0.82v-0.18c0,-0.37 -0.23,-0.69 -0.57,-0.85C4.4,16.46 3,14.39 3,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tonality.xml b/compose/material/material/icons/generator/raw-icons/rounded/tonality.xml
deleted file mode 100644
index 5b331db..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tonality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.94,-0.49 -7,-3.85 -7,-7.93s3.05,-7.44 7,-7.93v15.86zM13,4.07c1.03,0.13 2,0.45 2.87,0.93L13,5v-0.93zM13,7h5.24c0.25,0.31 0.48,0.65 0.68,1L13,8L13,7zM13,10h6.74c0.08,0.33 0.15,0.66 0.19,1L13,11v-1zM13,19.93L13,19h2.87c-0.87,0.48 -1.84,0.8 -2.87,0.93zM18.24,17L13,17v-1h5.92c-0.2,0.35 -0.43,0.69 -0.68,1zM19.74,14L13,14v-1h6.93c-0.04,0.34 -0.11,0.67 -0.19,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/topic.xml b/compose/material/material/icons/generator/raw-icons/rounded/topic.xml
deleted file mode 100644
index c8bb350..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/topic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-1.41,-1.41C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM13,16H7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1C14,15.55 13.55,16 13,16zM17,12H7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1C18,11.55 17.55,12 17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tornado.xml b/compose/material/material/icons/generator/raw-icons/rounded/tornado.xml
deleted file mode 100644
index 8264e0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tornado.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.11,8l1.16,-2c0.77,-1.33 -0.19,-3 -1.73,-3H4.47c-1.54,0 -2.5,1.67 -1.73,3l1.16,2H20.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.95,15l2.32,4.01c0.77,1.33 2.69,1.33 3.46,0L16.05,15H7.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.95,10l-13.9,0l1.74,3l10.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/touch_app.xml b/compose/material/material/icons/generator/raw-icons/rounded/touch_app.xml
deleted file mode 100644
index 7b31bd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/touch_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.79,9.24V5.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5v3.74c1.21,-0.81 2,-2.18 2,-3.74c0,-2.49 -2.01,-4.5 -4.5,-4.5s-4.5,2.01 -4.5,4.5C6.79,7.06 7.58,8.43 8.79,9.24zM14.29,11.71c-0.28,-0.14 -0.58,-0.21 -0.89,-0.21h-0.61v-6c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v10.74l-3.44,-0.72c-0.37,-0.08 -0.76,0.04 -1.03,0.31c-0.43,0.44 -0.43,1.14 0,1.58l4.01,4.01C9.71,21.79 10.22,22 10.75,22h6.1c1,0 1.84,-0.73 1.98,-1.72l0.63,-4.47c0.12,-0.85 -0.32,-1.69 -1.09,-2.07L14.29,11.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tour.xml b/compose/material/material/icons/generator/raw-icons/rounded/tour.xml
deleted file mode 100644
index a48905f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tour.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.45,5.37C20.71,4.71 20.23,4 19.52,4H13h-1H7V3c0,-0.55 -0.45,-1 -1,-1h0C5.45,2 5,2.45 5,3v1v10v8h2v-8h4h1h7.52c0.71,0 1.19,-0.71 0.93,-1.37L19,9L20.45,5.37zM15,9c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S15,7.9 15,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/toys.xml b/compose/material/material/icons/generator/raw-icons/rounded/toys.xml
deleted file mode 100644
index 3e70572..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/toys.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,14c0,-1.95 -1.4,-3.57 -3.25,-3.92L17.4,6.05C17,4.82 15.85,4 14.56,4H9.44C8.15,4 7,4.82 6.6,6.05L5.81,8.4L4.41,7l0.29,-0.29c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2,2c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L3,8.41l1.79,1.79C3.18,10.72 2,12.22 2,14c0,1.5 0.83,2.79 2.05,3.48C4.28,18.9 5.51,20 7,20c1.3,0 2.4,-0.84 2.82,-2h4.37c0.41,1.16 1.51,2 2.82,2c1.49,0 2.72,-1.1 2.95,-2.52C21.17,16.79 22,15.5 22,14zM7,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,18 7,18zM11,10H7.41L7.39,9.98l1.1,-3.3C8.63,6.27 9.01,6 9.44,6H11V10zM13,6h1.56c0.43,0 0.81,0.27 0.95,0.68L16.61,10H13V6zM17,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/track_changes.xml b/compose/material/material/icons/generator/raw-icons/rounded/track_changes.xml
deleted file mode 100644
index aff2c76..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/track_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.32,5.68c-0.36,0.36 -0.39,0.92 -0.07,1.32 1.45,1.82 2.21,4.31 1.53,6.92 -0.79,3.05 -3.18,5.33 -6.21,5.94C8.47,20.87 4,16.93 4,12c0,-4.08 3.05,-7.44 7,-7.93v2.02c-3.13,0.53 -5.43,3.46 -4.93,6.83 0.39,2.61 2.56,4.71 5.18,5.03C14.89,18.4 18,15.56 18,12c0,-1.25 -0.38,-2.4 -1.03,-3.36 -0.34,-0.5 -1.07,-0.53 -1.5,-0.11l-0.01,0.01c-0.34,0.34 -0.37,0.87 -0.11,1.27 0.6,0.92 0.84,2.1 0.49,3.32 -0.39,1.37 -1.54,2.46 -2.94,2.77 -2.6,0.57 -4.9,-1.39 -4.9,-3.9 0,-1.86 1.28,-3.41 3,-3.86v2.14c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72V2.71c0,-0.39 -0.32,-0.71 -0.71,-0.71 -5.36,-0.2 -9.98,4.06 -10.27,9.4 -0.36,6.55 5.41,11.82 12.01,10.4 3.88,-0.83 6.88,-3.8 7.75,-7.67 0.71,-3.16 -0.2,-6.16 -1.97,-8.37 -0.37,-0.47 -1.07,-0.5 -1.49,-0.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/traffic.xml b/compose/material/material/icons/generator/raw-icons/rounded/traffic.xml
deleted file mode 100644
index a8fedd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/traffic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.96,10.59c0.04,-0.31 -0.19,-0.59 -0.5,-0.59L17,10L17,8.86c1.54,-0.4 2.72,-1.68 2.96,-3.27 0.04,-0.31 -0.19,-0.59 -0.5,-0.59L17,5L17,4c0,-0.55 -0.45,-1 -1,-1L8,3c-0.55,0 -1,0.45 -1,1v1L4.54,5c-0.31,0 -0.54,0.28 -0.5,0.59C4.28,7.18 5.46,8.46 7,8.86L7,10L4.54,10c-0.31,0 -0.54,0.28 -0.5,0.59 0.24,1.59 1.42,2.87 2.96,3.27L7,15L4.54,15c-0.31,0 -0.54,0.28 -0.5,0.59 0.24,1.59 1.42,2.87 2.96,3.27L7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-1.14c1.54,-0.4 2.72,-1.68 2.96,-3.27 0.04,-0.31 -0.19,-0.59 -0.5,-0.59L17,15v-1.14c1.54,-0.4 2.72,-1.68 2.96,-3.27zM12,19c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2c1.1,0 2,0.9 2,2s-0.89,2 -2,2zM12,14c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2c1.1,0 2,0.9 2,2s-0.89,2 -2,2zM12,9c-1.11,0 -2,-0.9 -2,-2 0,-1.11 0.89,-2 2,-2 1.1,0 2,0.89 2,2 0,1.1 -0.89,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/train.xml b/compose/material/material/icons/generator/raw-icons/rounded/train.xml
deleted file mode 100644
index b6fb42a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/train.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19l-1.15,1.15c-0.31,0.31 -0.09,0.85 0.36,0.85L7.8,21c0.13,0 0.26,-0.05 0.35,-0.15L10,19h4l1.85,1.85c0.09,0.09 0.22,0.15 0.35,0.15h1.09c0.45,0 0.67,-0.54 0.35,-0.85L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -4,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,10L6,10L6,6h5v4zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,10h-5L13,6h5v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tram.xml b/compose/material/material/icons/generator/raw-icons/rounded/tram.xml
deleted file mode 100644
index 97f5e25..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tram.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5l0.75,-1.5L17,3.5L17,2L7,2v1.5h4.75L11,5c-3.13,0.09 -6,0.73 -6,3.5L5,17c0,1.5 1.11,2.73 2.55,2.95l-1.19,1.19c-0.32,0.32 -0.1,0.86 0.35,0.86L7.8,22c0.13,0 0.26,-0.05 0.35,-0.15L10,20h4l1.85,1.85c0.09,0.09 0.22,0.15 0.35,0.15h1.09c0.45,0 0.67,-0.54 0.35,-0.85l-1.19,-1.19C17.89,19.73 19,18.5 19,17L19,8.5c0,-2.77 -2.87,-3.41 -6,-3.5zM12,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM17,14L7,14L7,9h10v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/transcribe.xml b/compose/material/material/icons/generator/raw-icons/rounded/transcribe.xml
deleted file mode 100644
index 786839e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/transcribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.54,10.28c-0.34,-0.82 -0.34,-1.72 0,-2.54c0.19,-0.45 0.1,-0.96 -0.24,-1.3l-0.1,-0.1c-0.56,-0.56 -1.51,-0.44 -1.88,0.26c-0.8,1.48 -0.79,3.24 0.03,4.79c0.37,0.69 1.31,0.83 1.86,0.27l0.1,-0.1C22.65,11.23 22.73,10.72 22.54,10.28zM18.82,15.11L18.82,15.11c0.4,-0.4 0.46,-1.02 0.13,-1.48c-1.97,-2.73 -1.96,-6.39 0.01,-9.23c0.32,-0.47 0.26,-1.1 -0.14,-1.5l0,0c-0.5,-0.5 -1.34,-0.46 -1.78,0.1c-2.73,3.54 -2.73,8.36 0.02,12C17.49,15.56 18.33,15.61 18.82,15.11zM9,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,6.79 5,9C5,11.21 6.79,13 9,13zM15.39,15.56C13.71,14.7 11.53,14 9,14c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,16.07 1,17.1 1,18.22L1,20c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1l0,-1.78C17,17.1 16.39,16.07 15.39,15.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/transfer_within_a_station.xml b/compose/material/material/icons/generator/raw-icons/rounded/transfer_within_a_station.xml
deleted file mode 100644
index f4b7191..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/transfer_within_a_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,15.5h-5.52v-0.77c0,-0.36 -0.44,-0.54 -0.69,-0.29l-1.51,1.52c-0.16,0.16 -0.16,0.41 0,0.57l1.51,1.52c0.26,0.26 0.69,0.08 0.69,-0.29L16.48,17L22,17v-1.5zM21.72,20.21l-1.51,-1.52c-0.26,-0.26 -0.69,-0.08 -0.69,0.29v0.77L14,19.75v1.5h5.52v0.77c0,0.36 0.44,0.54 0.69,0.29l1.51,-1.52c0.16,-0.16 0.16,-0.42 0,-0.58zM9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5.75,8.9L3.23,21.81c-0.12,0.62 0.35,1.19 0.98,1.19h0.09c0.47,0 0.88,-0.33 0.98,-0.79L6.85,15 9,17v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5.72c0,-0.53 -0.21,-1.04 -0.59,-1.41L8.95,13.4l0.6,-3c1.07,1.32 2.58,2.23 4.31,2.51 0.6,0.1 1.14,-0.39 1.14,-1 0,-0.49 -0.36,-0.9 -0.84,-0.98 -1.49,-0.25 -2.75,-1.15 -3.51,-2.38l-0.95,-1.6C9.35,6.35 8.7,6 8,6c-0.25,0 -0.5,0.05 -0.75,0.15L3.24,7.79C2.49,8.1 2,8.83 2,9.64L2,12c0,0.55 0.45,1 1,1s1,-0.45 1,-1L4,9.65l1.75,-0.75"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/transform.xml b/compose/material/material/icons/generator/raw-icons/rounded/transform.xml
deleted file mode 100644
index 1cbf298..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/transform.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16L9,16c-0.55,0 -1,-0.45 -1,-1L8,4h0.79c0.45,0 0.67,-0.54 0.35,-0.85l-1.79,-1.8c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.79,1.8c-0.31,0.31 -0.09,0.85 0.36,0.85L6,4v2L3,6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v8c0,1.1 0.9,2 2,2h8v2h-0.79c-0.45,0 -0.67,0.54 -0.35,0.85l1.79,1.79c0.2,0.2 0.51,0.2 0.71,0l1.79,-1.79c0.32,-0.31 0.09,-0.85 -0.35,-0.85L18,20v-2h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1zM16,14h2L18,8c0,-1.1 -0.9,-2 -2,-2h-6v2h5c0.55,0 1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/transgender.xml b/compose/material/material/icons/generator/raw-icons/rounded/transgender.xml
deleted file mode 100644
index 9f0a7da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/transgender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,1h-4c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h1.58l-3.97,3.97C14.23,6.36 13.16,6 12,6S9.77,6.36 8.89,6.97L8.24,6.32l0.7,-0.7c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.7,0.7L4.92,3H6.5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1V4.42l1.91,1.9L4.7,7.03c-0.39,0.39 -0.39,1.02 0,1.41s1.02,0.39 1.41,0l0.71,-0.71l0.65,0.65C6.86,9.27 6.5,10.34 6.5,11.5c0,2.7 1.94,4.94 4.5,5.41V19h-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1h1v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h1c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-1v-2.09c2.56,-0.47 4.5,-2.71 4.5,-5.41c0,-1.16 -0.36,-2.23 -0.97,-3.12l3.97,-3.96V6c0,0.55 0.45,1 1,1s1,-0.45 1,-1V2C22.5,1.45 22.05,1 21.5,1zM12,15c-1.93,0 -3.5,-1.57 -3.5,-3.5C8.5,9.57 10.07,8 12,8s3.5,1.57 3.5,3.5C15.5,13.43 13.93,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/transit_enterexit.xml b/compose/material/material/icons/generator/raw-icons/rounded/transit_enterexit.xml
deleted file mode 100644
index d3fec36..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/transit_enterexit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,18H8c-1.1,0 -2,-0.9 -2,-2V9.5C6,8.67 6.67,8 7.5,8S9,8.67 9,9.5v3.27L14.95,7c0.57,-0.55 1.48,-0.54 2.04,0.02s0.56,1.47 0.01,2.04L11.15,15h3.35c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/translate.xml b/compose/material/material/icons/generator/raw-icons/rounded/translate.xml
deleted file mode 100644
index c8a3b46..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.65,15.67c0.14,-0.36 0.05,-0.77 -0.23,-1.05l-2.09,-2.06 0.03,-0.03c1.74,-1.94 2.98,-4.17 3.71,-6.53h1.94c0.54,0 0.99,-0.45 0.99,-0.99v-0.02c0,-0.54 -0.45,-0.99 -0.99,-0.99L10,4L10,3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1L1.99,4c-0.54,0 -0.99,0.45 -0.99,0.99 0,0.55 0.45,0.99 0.99,0.99h10.18C11.5,7.92 10.44,9.75 9,11.35c-0.81,-0.89 -1.49,-1.86 -2.06,-2.88 -0.16,-0.29 -0.45,-0.47 -0.78,-0.47 -0.69,0 -1.13,0.75 -0.79,1.35 0.63,1.13 1.4,2.21 2.3,3.21L3.3,16.87c-0.4,0.39 -0.4,1.03 0,1.42 0.39,0.39 1.02,0.39 1.42,0L9,14l2.02,2.02c0.51,0.51 1.38,0.32 1.63,-0.35zM17.5,10c-0.6,0 -1.14,0.37 -1.35,0.94l-3.67,9.8c-0.24,0.61 0.22,1.26 0.87,1.26 0.39,0 0.74,-0.24 0.88,-0.61l0.89,-2.39h4.75l0.9,2.39c0.14,0.36 0.49,0.61 0.88,0.61 0.65,0 1.11,-0.65 0.88,-1.26l-3.67,-9.8c-0.22,-0.57 -0.76,-0.94 -1.36,-0.94zM15.88,17l1.62,-4.33L19.12,17h-3.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/travel_explore.xml b/compose/material/material/icons/generator/raw-icons/rounded/travel_explore.xml
deleted file mode 100644
index 066f4cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/travel_explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.3,16.9c0.58,-1.01 0.95,-2.23 0.51,-3.65c-0.53,-1.72 -2.04,-3.05 -3.84,-3.22c-2.87,-0.28 -5.23,2.07 -4.95,4.95c0.18,1.79 1.5,3.31 3.22,3.84c1.43,0.44 2.64,0.07 3.65,-0.51l2.5,2.5c0.39,0.39 1.01,0.39 1.4,0l0,0c0.39,-0.39 0.39,-1.01 0,-1.4L19.3,16.9zM15.5,17c-1.4,0 -2.5,-1.1 -2.5,-2.5s1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5S16.9,17 15.5,17zM12,20v2C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2c4.84,0 8.87,3.44 9.8,8h-2.07c-0.64,-2.46 -2.4,-4.47 -4.73,-5.41V5c0,1.1 -0.9,2 -2,2h-2v2c0,0.55 -0.45,1 -1,1H8v2h2v3H9l-4.79,-4.79C4.08,10.79 4,11.38 4,12C4,16.41 7.59,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/trending_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/trending_down.xml
deleted file mode 100644
index e3ebf2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/trending_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.85,17.15l1.44,-1.44 -4.88,-4.88 -3.29,3.29c-0.39,0.39 -1.02,0.39 -1.41,0l-6,-6.01c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L9.41,12l3.29,-3.29c0.39,-0.39 1.02,-0.39 1.41,0l5.59,5.58 1.44,-1.44c0.31,-0.31 0.85,-0.09 0.85,0.35v4.29c0,0.28 -0.22,0.5 -0.5,0.5H17.2c-0.44,0.01 -0.66,-0.53 -0.35,-0.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/trending_flat.xml b/compose/material/material/icons/generator/raw-icons/rounded/trending_flat.xml
deleted file mode 100644
index f8da8a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/trending_flat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.65,11.65l-2.79,-2.79c-0.32,-0.32 -0.86,-0.1 -0.86,0.35V11H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h14v1.79c0,0.45 0.54,0.67 0.85,0.35l2.79,-2.79c0.2,-0.19 0.2,-0.51 0.01,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/trending_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/trending_up.xml
deleted file mode 100644
index 0a5ce01..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/trending_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.85,6.85l1.44,1.44 -4.88,4.88 -3.29,-3.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-6,6.01c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L9.41,12l3.29,3.29c0.39,0.39 1.02,0.39 1.41,0l5.59,-5.58 1.44,1.44c0.31,0.31 0.85,0.09 0.85,-0.35V6.5c0.01,-0.28 -0.21,-0.5 -0.49,-0.5h-4.29c-0.45,0 -0.67,0.54 -0.36,0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/trip_origin.xml b/compose/material/material/icons/generator/raw-icons/rounded/trip_origin.xml
deleted file mode 100644
index ed73ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/trip_origin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12C2,6.48 6.48,2 12,2s10,4.48 10,10 -4.48,10 -10,10S2,17.52 2,12zM12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6 -6,2.69 -6,6 2.69,6 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/troubleshoot.xml b/compose/material/material/icons/generator/raw-icons/rounded/troubleshoot.xml
deleted file mode 100644
index a1fa8f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/troubleshoot.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,19.88l-3.98,-3.98c1.3,-1.67 1.96,-3.85 1.58,-6.2c-0.54,-3.41 -3.33,-6.14 -6.75,-6.62C7.57,2.44 3.61,5.69 3.07,10h2.02c0.53,-3.13 3.48,-5.44 6.85,-4.93c2.61,0.4 4.7,2.57 5.02,5.2C17.39,13.9 14.55,17 11,17c-2.42,0 -4.5,-1.44 -5.45,-3.5H3.4C4.45,16.69 7.46,19 11,19c1.85,0 3.55,-0.63 4.9,-1.69l3.98,3.98c0.39,0.39 1.02,0.39 1.41,0l0,0C21.68,20.9 21.68,20.27 21.29,19.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.43,9.69l1.03,4.47C9.57,14.65 10.01,15 10.51,15h0c0.46,0 0.87,-0.3 1.02,-0.74l1.01,-3.04l0.69,1.66c0.16,0.37 0.52,0.62 0.92,0.62h0.58c0.41,0 0.75,-0.34 0.75,-0.75v0c0,-0.41 -0.34,-0.75 -0.75,-0.75H14.5l-0.97,-2.34C13.36,9.26 12.97,9 12.53,9h-0.05c-0.46,0 -0.87,0.3 -1.02,0.74l-0.88,2.63L9.54,7.83C9.43,7.35 8.99,7 8.49,7h0C8.02,7 7.6,7.31 7.46,7.76L6.45,11h-4.7C1.34,11 1,11.34 1,11.75v0c0,0.41 0.34,0.75 0.75,0.75h5.07c0.44,0 0.82,-0.28 0.95,-0.7L8.43,9.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/try.xml b/compose/material/material/icons/generator/raw-icons/rounded/try.xml
deleted file mode 100644
index c9f725e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/try.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v15.59c0,0.89 1.08,1.34 1.71,0.71L6,18h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM13.57,11.57l-1.12,2.44c-0.18,0.39 -0.73,0.39 -0.91,0l-1.12,-2.44l-2.44,-1.12c-0.39,-0.18 -0.39,-0.73 0,-0.91l2.44,-1.12l1.12,-2.44c0.18,-0.39 0.73,-0.39 0.91,0l1.12,2.44l2.44,1.12c0.39,0.18 0.39,0.73 0,0.91L13.57,11.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tsunami.xml b/compose/material/material/icons/generator/raw-icons/rounded/tsunami.xml
deleted file mode 100644
index 1ce54d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tsunami.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.16,17.98c-2.76,1.76 -4.67,0.77 -5.61,0.08c-0.34,-0.24 -0.78,-0.23 -1.12,0.01c-0.97,0.7 -2.83,1.65 -5.55,-0.06C5.55,17.8 5.13,17.78 4.81,18c-0.91,0.61 -1.53,0.85 -2,0.94C2.34,19.03 2,19.44 2,19.91v0c0,0.6 0.54,1.09 1.13,0.98c0.77,-0.14 1.51,-0.42 2.2,-0.83c2.04,1.21 4.63,1.21 6.67,0c2.06,1.22 4.61,1.22 6.67,0c0.69,0.41 1.44,0.69 2.21,0.83c0.59,0.11 1.13,-0.38 1.13,-0.98v-0.01c0,-0.47 -0.33,-0.88 -0.8,-0.97c-0.49,-0.1 -1.11,-0.34 -2.02,-0.94C18.88,17.79 18.47,17.78 18.16,17.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.33,12H21c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1l-1.61,0c-1.86,0 -3.4,-1.5 -3.39,-3.36c0,-0.37 0.06,-0.7 0.16,-1.05C16.53,4.3 15.6,3.03 14.27,3C14.18,3 14.09,3 14,3C7.36,3 2.15,8.03 2.01,14.5l0,0.03c-0.04,1.13 1.07,1.98 2.14,1.6c0.4,-0.14 0.78,-0.32 1.15,-0.54c2.08,1.2 4.64,1.22 6.7,-0.02c2.06,1.22 4.61,1.22 6.67,0c0.68,0.41 1.42,0.68 2.18,0.82c0.6,0.11 1.16,-0.36 1.16,-0.98v-0.01c0,-0.46 -0.32,-0.88 -0.78,-0.97c-0.49,-0.09 -1.12,-0.33 -2.03,-0.94c-0.31,-0.21 -0.73,-0.22 -1.05,-0.01c-2.73,1.74 -4.63,0.77 -5.58,0.09c-0.35,-0.25 -0.81,-0.26 -1.16,-0.01c-0.15,0.11 -0.09,0.06 -0.32,0.2C10.39,12.82 10,11.7 10,10.5c0,-2.58 1.77,-4.74 4.21,-5.33C14.08,5.68 14,6.19 14,6.67C14,9.61 16.39,12 19.33,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tty.xml b/compose/material/material/icons/generator/raw-icons/rounded/tty.xml
deleted file mode 100644
index 274df9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4L15,4c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C14,4.45 14.45,4 15,4zM14,7L14,7c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C13,7.45 13.45,7 14,7zM12,4L12,4c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C11,4.45 11.45,4 12,4zM17,9L17,9c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C18,8.55 17.55,9 17,9zM18,6L18,6c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C19,5.55 18.55,6 18,6zM20,9L20,9c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C21,8.55 20.55,9 20,9zM21,6L21,6c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C22,5.55 21.55,6 21,6zM14.62,14.38L12.1,16.9c-2.5,-1.43 -4.57,-3.5 -6,-6l2.52,-2.52C8.86,8.14 8.96,7.8 8.9,7.48L8.16,3.8C8.07,3.34 7.66,3 7.18,3H3.03C2.47,3 2,3.47 2.03,4.03C2.2,6.92 3.05,9.63 4.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.23 7.97,2.4c0.56,0.03 1.03,-0.44 1.03,-1v-4.15c0,-0.48 -0.34,-0.89 -0.8,-0.98l-3.67,-0.73C15.2,14.04 14.86,14.14 14.62,14.38zM15,10L15,10c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C14,10.45 14.45,10 15,10zM12,10L12,10c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C11,10.45 11.45,10 12,10zM18,12L18,12c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C19,11.55 18.55,12 18,12zM21,12L21,12c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C22,11.55 21.55,12 21,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tune.xml b/compose/material/material/icons/generator/raw-icons/rounded/tune.xml
deleted file mode 100644
index eec23d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tune.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18c0,0.55 0.45,1 1,1h5v-2L4,17c-0.55,0 -1,0.45 -1,1zM3,6c0,0.55 0.45,1 1,1h9L13,5L4,5c-0.55,0 -1,0.45 -1,1zM13,20v-1h7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-7v-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1zM7,10v1L4,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h3v1c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM21,12c0,-0.55 -0.45,-1 -1,-1h-9v2h9c0.55,0 1,-0.45 1,-1zM16,9c0.55,0 1,-0.45 1,-1L17,7h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L17,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tungsten.xml b/compose/material/material/icons/generator/raw-icons/rounded/tungsten.xml
deleted file mode 100644
index 0d9a3ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tungsten.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19L12,19c-0.56,0 -1,0.45 -1,1V21c0,0.55 0.45,1 1,1H12c0.55,0 1,-0.45 1,-1V20C13,19.45 12.55,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.99,17.09L5.28,17.8c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0l0.71,-0.71c0.39,-0.39 0.39,-1.02 0,-1.41C7.02,16.71 6.38,16.71 5.99,17.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1V12c0,0.55 0.45,1 1,1H4C4.55,13 5,12.55 5,12L5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11H20c-0.55,0 -1,0.45 -1,1V12c0,0.55 0.45,1 1,1H21c0.55,0 1,-0.45 1,-1V12C22,11.45 21.55,11 21,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.01,17.09c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l0.71,0.71c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L18.01,17.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.02V5c0,-1.1 -0.9,-2 -2,-2h-2C9.9,3 9,3.9 9,5v3.02c-1.43,1.08 -2.28,2.9 -1.91,4.91c0.36,1.95 1.9,3.55 3.84,3.95C14.16,17.56 17,15.11 17,12C17,10.37 16.21,8.94 15,8.02zM13,7.1C12.68,7.04 12.34,7 12,7s-0.68,0.04 -1,0.1V5h2V7.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turn_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/turn_left.xml
deleted file mode 100644
index 3b0f556..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.71,13.29c-0.39,0.39 -1.02,0.39 -1.41,0l-2.59,-2.59c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.59,-2.59c0.39,-0.39 1.02,-0.39 1.41,0c0.39,0.39 0.39,1.02 0,1.41L6.83,9L15,9c1.1,0 2,0.9 2,2v8c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1v-8l-8.17,0l0.88,0.88C8.1,12.27 8.1,12.9 7.71,13.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turn_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/turn_right.xml
deleted file mode 100644
index 549f29e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.29,13.29c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59c0.39,-0.39 0.39,-1.02 0,-1.41l-2.59,-2.59c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L17.17,9L9,9c-1.1,0 -2,0.9 -2,2v8c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-8l8.17,0l-0.88,0.88C15.9,12.27 15.9,12.9 16.29,13.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turn_sharp_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/turn_sharp_left.xml
deleted file mode 100644
index 1fc33cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turn_sharp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6.83l0.88,0.88c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L7.71,3.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L3.71,6.29c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L6,6.83V13c0,1.1 0.9,2 2,2h8v5c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-5c0,-1.1 -0.9,-2 -2,-2H8V6.83L8,6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turn_sharp_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/turn_sharp_right.xml
deleted file mode 100644
index 34d3d1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turn_sharp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6.83l-0.88,0.88c-0.39,0.39 -1.02,0.39 -1.41,0c-0.39,-0.39 -0.39,-1.02 0,-1.41l2.59,-2.59c0.39,-0.39 1.02,-0.39 1.41,0l2.59,2.59c0.39,0.39 0.39,1.02 0,1.41c-0.39,0.39 -1.02,0.39 -1.41,0L18,6.83V13c0,1.1 -0.9,2 -2,2H8v5c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-5c0,-1.1 0.9,-2 2,-2h8V6.83L16,6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turn_slight_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/turn_slight_left.xml
deleted file mode 100644
index 050e9de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turn_slight_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.66,5L11.66,5c0,-0.55 -0.45,-1 -1,-1H7C6.45,4 6,4.45 6,5v3.66c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V7.41l5,5V19c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-6.58c0,-0.53 -0.21,-1.04 -0.59,-1.41l-5,-5h1.24C11.21,6 11.66,5.55 11.66,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turn_slight_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/turn_slight_right.xml
deleted file mode 100644
index d8eb244..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turn_slight_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,5L12.34,5c0,-0.55 0.45,-1 1,-1H17c0.55,0 1,0.45 1,1v3.66c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1V7.41l-5,5V19c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-6.58c0,-0.53 0.21,-1.04 0.59,-1.41l5,-5h-1.24C12.79,6 12.34,5.55 12.34,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turned_in.xml b/compose/material/material/icons/generator/raw-icons/rounded/turned_in.xml
deleted file mode 100644
index 7e480e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3H7c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/turned_in_not.xml b/compose/material/material/icons/generator/raw-icons/rounded/turned_in_not.xml
deleted file mode 100644
index b1a66da..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/turned_in_not.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,6c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tv.xml b/compose/material/material/icons/generator/raw-icons/rounded/tv.xml
deleted file mode 100644
index bdf805e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v1c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-1h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM20,17L4,17c-0.55,0 -1,-0.45 -1,-1L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/tv_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/tv_off.xml
deleted file mode 100644
index e4ffc2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/tv_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8v9.88l1.85,1.85c0.1,-0.22 0.15,-0.47 0.15,-0.73V7c0,-1.11 -0.9,-2 -2,-2h-7.59l2.94,-2.94c0.2,-0.2 0.2,-0.51 0,-0.71s-0.51,-0.2 -0.71,0L12,4.99 8.36,1.35c-0.2,-0.2 -0.51,-0.2 -0.71,0s-0.2,0.51 0,0.71L10.59,5H8.12l2,2H20c0.55,0 1,0.45 1,1zM3.12,2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l0.82,0.82C1.65,5.28 1,6.06 1,7v12c0,1.1 0.9,2 2,2h15.46l1.29,1.29c0.39,0.39 1.02,0.39 1.41,0 0.36,-0.36 0.37,-0.92 0.07,-1.31h0.03L3.12,2.83zM3,18V8c0,-0.55 0.45,-1 1,-1h0.46l12,12H4c-0.55,0 -1,-0.45 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/two_wheeler.xml b/compose/material/material/icons/generator/raw-icons/rounded/two_wheeler.xml
deleted file mode 100644
index a0b9027..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/two_wheeler.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11c-0.18,0 -0.36,0.03 -0.53,0.05L17.41,9H19c0.55,0 1,-0.45 1,-1V7.62c0,-0.74 -0.78,-1.23 -1.45,-0.89l-2.28,1.14l-2.57,-2.57C13.52,5.11 13.26,5 13,5h-3C9.45,5 9,5.45 9,6v0c0,0.55 0.45,1 1,1h2.17c0.27,0 0.52,0.11 0.71,0.29L14.59,9h-3.35c-0.16,0 -0.31,0.04 -0.45,0.11l-3.14,1.57c-0.38,0.19 -0.85,0.12 -1.15,-0.19l-1.2,-1.2C5.11,9.11 4.85,9 4.59,9H1c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h3c-2.52,0 -4.49,2.32 -3.89,4.94c0.33,1.45 1.5,2.62 2.95,2.95C5.68,19.49 8,17.52 8,15l1.41,1.41C9.79,16.79 10.3,17 10.83,17h1.01c0.72,0 1.38,-0.38 1.74,-1.01l2.91,-5.09l1.01,1.01c-1.13,0.91 -1.76,2.41 -1.38,4.05c0.34,1.44 1.51,2.61 2.95,2.94C21.68,19.49 24,17.51 24,15C24,12.79 22.21,11 20,11zM4,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C6,16.1 5.1,17 4,17zM20,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C22,16.1 21.1,17 20,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/type_specimen.xml b/compose/material/material/icons/generator/raw-icons/rounded/type_specimen.xml
deleted file mode 100644
index 114d7df..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/type_specimen.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6L3,6C2.45,6 2,6.45 2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4V7C4,6.45 3.55,6 3,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM16.46,14.01l-0.63,-1.82h-3.63l-0.65,1.82c-0.1,0.29 -0.38,0.48 -0.68,0.48h0c-0.51,0 -0.86,-0.51 -0.68,-0.98l2.73,-7.27C13.08,5.8 13.52,5.5 14,5.5h0c0.48,0 0.92,0.3 1.09,0.75l2.73,7.27c0.18,0.47 -0.17,0.98 -0.68,0.98h0C16.83,14.5 16.56,14.31 16.46,14.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.96,7.17l-1.31,3.72l2.69,0l-1.3,-3.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/u_turn_left.xml b/compose/material/material/icons/generator/raw-icons/rounded/u_turn_left.xml
deleted file mode 100644
index 7ef678f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/u_turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.71,12.29c0.39,-0.39 1.02,-0.39 1.41,0L6,13.17V9c0,-3.31 2.69,-6 6,-6s6,2.69 6,6v11c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V9c0,-2.21 -1.79,-4 -4,-4S8,6.79 8,9v4.17l0.88,-0.88c0.39,-0.39 1.02,-0.39 1.41,0c0.39,0.39 0.39,1.02 0,1.41l-2.59,2.59c-0.39,0.39 -1.02,0.39 -1.41,0l-2.59,-2.59C3.32,13.32 3.32,12.68 3.71,12.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/u_turn_right.xml b/compose/material/material/icons/generator/raw-icons/rounded/u_turn_right.xml
deleted file mode 100644
index 92aa483..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/u_turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.29,12.29c-0.39,-0.39 -1.02,-0.39 -1.41,0L18,13.17V9c0,-3.31 -2.69,-6 -6,-6S6,5.69 6,9v11c0,0.55 0.45,1 1,1s1,-0.45 1,-1V9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v4.17l-0.88,-0.88c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l2.59,2.59c0.39,0.39 1.02,0.39 1.41,0l2.59,-2.59C20.68,13.32 20.68,12.68 20.29,12.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/umbrella.xml b/compose/material/material/icons/generator/raw-icons/rounded/umbrella.xml
deleted file mode 100644
index 7745233..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/umbrella.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.12,6.28L14.5,6.92L13,5.77V3.88V3.4c0,-0.26 0.22,-0.48 0.5,-0.48c0.23,0 0.43,0.16 0.49,0.36C14.1,3.7 14.49,4 14.94,4c0.55,0 1,-0.45 1,-1c0,-0.1 -0.02,-0.2 -0.05,-0.3C15.59,1.72 14.63,1 13.5,1C12.12,1 11,2.07 11,3.4v0.48v1.89L9.5,6.92L6.88,6.28C6.5,6.19 6.16,6.55 6.28,6.92l4.77,14.39C11.2,21.77 11.6,22 12,22s0.8,-0.23 0.95,-0.69l4.77,-14.39C17.84,6.55 17.5,6.19 17.12,6.28zM11,14.8L9.03,8.86l0.92,0.23l0.76,-0.58L11,8.29V14.8zM13,14.8V8.29l0.28,0.22l0.76,0.58l0.92,-0.23L13,14.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/unarchive.xml b/compose/material/material/icons/generator/raw-icons/rounded/unarchive.xml
deleted file mode 100644
index 46dda22..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/unarchive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.55,5.22l-1.39,-1.68C18.88,3.21 18.47,3 18,3L6,3c-0.47,0 -0.88,0.21 -1.15,0.55L3.46,5.22C3.17,5.57 3,6.01 3,6.5L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6.5c0,-0.49 -0.17,-0.93 -0.45,-1.28zM12.35,9.85L17.5,15L14,15v2h-4v-2L6.5,15l5.15,-5.15c0.19,-0.19 0.51,-0.19 0.7,0zM5.12,5l0.82,-1h12l0.93,1L5.12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/undo.xml b/compose/material/material/icons/generator/raw-icons/rounded/undo.xml
deleted file mode 100644
index eca90675..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/undo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8c-2.65,0 -5.05,0.99 -6.9,2.6L3.71,8.71C3.08,8.08 2,8.52 2,9.41V15c0,0.55 0.45,1 1,1h5.59c0.89,0 1.34,-1.08 0.71,-1.71l-1.91,-1.91c1.39,-1.16 3.16,-1.88 5.12,-1.88 3.16,0 5.89,1.84 7.19,4.5 0.27,0.56 0.91,0.84 1.5,0.64 0.71,-0.23 1.07,-1.04 0.75,-1.72C20.23,10.42 16.65,8 12.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/unfold_less.xml b/compose/material/material/icons/generator/raw-icons/rounded/unfold_less.xml
deleted file mode 100644
index 8b13997..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/unfold_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.12,19.3c0.39,0.39 1.02,0.39 1.41,0L12,16.83l2.47,2.47c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41l-3.17,-3.17c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.17,3.17c-0.4,0.38 -0.4,1.02 -0.01,1.41zM15.88,4.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,7.17 9.53,4.7c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.03 0,1.42l3.17,3.17c0.39,0.39 1.02,0.39 1.41,0l3.17,-3.17c0.4,-0.39 0.4,-1.03 0.01,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/unfold_less_double.xml b/compose/material/material/icons/generator/raw-icons/rounded/unfold_less_double.xml
deleted file mode 100644
index 6ffd037..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/unfold_less_double.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.46,5.7l-2.47,2.46L9.53,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0s-0.39,1.02 0,1.41l3.17,3.18c0.39,0.39 1.02,0.39 1.41,0l3.17,-3.18c0.39,-0.39 0.39,-1.02 0,-1.41S14.85,5.31 14.46,5.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.46,0.7l-2.47,2.46L9.53,0.7c-0.39,-0.39 -1.02,-0.39 -1.41,0s-0.39,1.02 0,1.41l3.17,3.18c0.39,0.39 1.02,0.39 1.41,0l3.17,-3.18c0.39,-0.39 0.39,-1.02 0,-1.41S14.85,0.31 14.46,0.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.54,23.3l2.47,-2.46l2.46,2.46c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-3.17,-3.18c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.17,3.18c-0.39,0.39 -0.39,1.02 0,1.41C8.52,23.69 9.15,23.69 9.54,23.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.54,18.29l2.47,-2.45l2.46,2.46c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41l-3.17,-3.18c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.17,3.17c-0.39,0.39 -0.39,1.02 0,1.41S9.15,18.68 9.54,18.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/unfold_more.xml b/compose/material/material/icons/generator/raw-icons/rounded/unfold_more.xml
deleted file mode 100644
index 1748641..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/unfold_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.83l2.46,2.46c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L12.7,3.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.12,6.88c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0L12,5.83zM12,18.17l-2.46,-2.46c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l3.17,3.18c0.39,0.39 1.02,0.39 1.41,0l3.17,-3.17c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0L12,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/unfold_more_double.xml b/compose/material/material/icons/generator/raw-icons/rounded/unfold_more_double.xml
deleted file mode 100644
index a1b92fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/unfold_more_double.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.53,5.29L12,2.83l2.46,2.46c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L12.7,0.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.12,3.88c-0.39,0.39 -0.39,1.02 0,1.41S9.14,5.68 9.53,5.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.53,10.29L12,7.83l2.46,2.46c0.39,0.39 1.02,0.39 1.41,0s0.39,-1.02 0,-1.41L12.7,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.12,8.88c-0.39,0.39 -0.39,1.02 0,1.41S9.14,10.68 9.53,10.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.47,13.71L12,16.17l-2.46,-2.46c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l3.17,3.18c0.39,0.39 1.02,0.39 1.41,0l3.17,-3.18c0.39,-0.39 0.39,-1.02 0,-1.41C15.49,13.32 14.86,13.32 14.47,13.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.47,18.72L12,21.17l-2.46,-2.46c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l3.17,3.18c0.39,0.39 1.02,0.39 1.41,0l3.17,-3.17c0.39,-0.39 0.39,-1.02 0,-1.41S14.86,18.33 14.47,18.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/unpublished.xml b/compose/material/material/icons/generator/raw-icons/rounded/unpublished.xml
deleted file mode 100644
index c404a65..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/unpublished.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l1.56,1.56c-1.25,1.88 -1.88,4.21 -1.59,6.7c0.53,4.54 4.21,8.22 8.74,8.74c2.49,0.29 4.81,-0.34 6.7,-1.59l1.56,1.56c0.39,0.39 1.02,0.39 1.41,0l0,0C20.88,21.51 20.88,20.88 20.49,20.49zM9.88,15.89l-2.83,-2.83c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l2.12,2.12l0.18,-0.18l1.41,1.41l-0.88,0.88C10.9,16.28 10.27,16.28 9.88,15.89zM13.59,10.76l-7.1,-7.1c1.88,-1.25 4.21,-1.88 6.7,-1.59c4.54,0.53 8.22,4.21 8.74,8.74c0.29,2.49 -0.34,4.82 -1.59,6.7l-5.34,-5.34l1.94,-1.94c0.39,-0.39 0.39,-1.02 0,-1.41v0c-0.39,-0.39 -1.02,-0.39 -1.41,0L13.59,10.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/unsubscribe.xml b/compose/material/material/icons/generator/raw-icons/rounded/unsubscribe.xml
deleted file mode 100644
index e3157e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/unsubscribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,11.5c0.92,0 1.75,0.26 2.49,0.69L20.99,5c0,-1.1 -0.89,-2 -1.99,-2L5,3c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h8.55c-0.02,-0.17 -0.05,-0.33 -0.05,-0.5 0,-2.76 2.24,-5 5,-5zM12.89,10.05c-0.56,0.28 -1.23,0.28 -1.79,0l-5.61,-2.8c-0.3,-0.15 -0.49,-0.46 -0.49,-0.8 0,-0.66 0.7,-1.1 1.29,-0.8L12,8.5l5.71,-2.85c0.59,-0.3 1.29,0.13 1.29,0.8 0,0.34 -0.19,0.65 -0.49,0.8l-5.62,2.8zM18.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5 3.5,-1.57 3.5,-3.5 -1.57,-3.5 -3.5,-3.5zM20.5,16.5c0,0.28 -0.22,0.5 -0.5,0.5h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/upcoming.xml b/compose/material/material/icons/generator/raw-icons/rounded/upcoming.xml
deleted file mode 100644
index f3c7980..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/upcoming.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.45,6.55L20.45,6.55c-0.38,-0.38 -1.01,-0.38 -1.39,0L16.89,8.7c-0.39,0.38 -0.39,1.01 0,1.39l0.01,0.01c0.39,0.39 1.01,0.39 1.4,0c0.62,-0.63 1.52,-1.54 2.15,-2.17C20.83,7.55 20.83,6.93 20.45,6.55z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.02,3h-0.03C11.44,3 11,3.44 11,3.98v3.03C11,7.56 11.44,8 11.98,8h0.03C12.56,8 13,7.56 13,7.02V3.98C13,3.44 12.56,3 12.02,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.1,10.11l0.01,-0.01c0.38,-0.38 0.38,-1.01 0,-1.39L4.96,6.54c-0.38,-0.39 -1.01,-0.39 -1.39,0L3.55,6.55c-0.39,0.39 -0.39,1.01 0,1.39c0.63,0.62 1.53,1.54 2.15,2.17C6.09,10.49 6.72,10.49 7.1,10.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c-1.24,0 -2.31,-0.75 -2.76,-1.83C8.92,12.43 8.14,12 7.34,12L4,12c-1.1,0 -2,0.9 -2,2l0,5c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-5c0,-1.1 -0.9,-2 -2,-2l-3.34,0c-0.8,0 -1.58,0.43 -1.9,1.17C14.31,14.25 13.24,15 12,15"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/update.xml b/compose/material/material/icons/generator/raw-icons/rounded/update.xml
deleted file mode 100644
index 2425d97..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.75v3.68c0,0.35 0.19,0.68 0.49,0.86l3.12,1.85c0.36,0.21 0.82,0.09 1.03,-0.26c0.21,-0.36 0.1,-0.82 -0.26,-1.03l-2.87,-1.71v-3.4C12.5,8.34 12.16,8 11.75,8S11,8.34 11,8.75zM21,9.5V4.21c0,-0.45 -0.54,-0.67 -0.85,-0.35l-1.78,1.78c-1.81,-1.81 -4.39,-2.85 -7.21,-2.6c-4.19,0.38 -7.64,3.75 -8.1,7.94C2.46,16.4 6.69,21 12,21c4.59,0 8.38,-3.44 8.93,-7.88c0.07,-0.6 -0.4,-1.12 -1,-1.12c-0.5,0 -0.92,0.37 -0.98,0.86c-0.43,3.49 -3.44,6.19 -7.05,6.14c-3.71,-0.05 -6.84,-3.18 -6.9,-6.9C4.94,8.2 8.11,5 12,5c1.93,0 3.68,0.79 4.95,2.05l-2.09,2.09C14.54,9.46 14.76,10 15.21,10h5.29C20.78,10 21,9.78 21,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/update_disabled.xml b/compose/material/material/icons/generator/raw-icons/rounded/update_disabled.xml
deleted file mode 100644
index c69c12f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/update_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l2.31,2.31C3.57,8.56 3.05,10.09 3,11.74C2.86,16.83 6.94,21 12,21c1.76,0 3.39,-0.52 4.78,-1.39l2.29,2.29c0.39,0.39 1.02,0.39 1.41,0l0,0C20.88,21.51 20.88,20.88 20.49,20.49zM10.72,18.89c-2.78,-0.49 -5.04,-2.71 -5.58,-5.47c-0.34,-1.72 -0.03,-3.36 0.72,-4.73l9.46,9.46C13.98,18.87 12.4,19.18 10.72,18.89zM13,8v2.17l-2,-2V8c0,-0.55 0.45,-1 1,-1S13,7.45 13,8zM20.72,14.23c-0.23,0.92 -0.61,1.77 -1.1,2.55l-1.47,-1.47c0.27,-0.5 0.49,-1.03 0.63,-1.59C18.89,13.3 19.29,13 19.73,13h0C20.38,13 20.88,13.61 20.72,14.23zM7.24,4.41c1.46,-0.93 3.18,-1.45 5,-1.41c2.65,0.07 5,1.28 6.6,3.16l1.31,-1.31C20.46,4.54 21,4.76 21,5.21V9.5c0,0.28 -0.22,0.5 -0.5,0.5h-4.29c-0.45,0 -0.67,-0.54 -0.35,-0.85l1.55,-1.55C16.12,6.02 14.18,5 12,5c-1.2,0 -2.33,0.31 -3.32,0.85L7.24,4.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/upgrade.xml b/compose/material/material/icons/generator/raw-icons/rounded/upgrade.xml
deleted file mode 100644
index db27e88..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/upgrade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,19L16,19c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h6C15.55,18 16,18.45 16,19zM11,7.99V15c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V7.99h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.78c-0.2,-0.19 -0.51,-0.19 -0.71,0L8.86,7.14C8.54,7.45 8.76,7.99 9.21,7.99H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/upload.xml b/compose/material/material/icons/generator/raw-icons/rounded/upload.xml
deleted file mode 100644
index ff67014..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4c0.55,0 1,-0.45 1,-1v-5h1.59c0.89,0 1.34,-1.08 0.71,-1.71L12.71,3.7c-0.39,-0.39 -1.02,-0.39 -1.41,0L6.71,8.29c-0.63,0.63 -0.19,1.71 0.7,1.71L9,10v5c0,0.55 0.45,1 1,1zM6,18h12c0.55,0 1,0.45 1,1s-0.45,1 -1,1L6,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/upload_file.xml b/compose/material/material/icons/generator/raw-icons/rounded/upload_file.xml
deleted file mode 100644
index 8bb6398..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/upload_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,7.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8.83C20,8.3 19.79,7.79 19.41,7.41zM14.8,15H13v3c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3H9.21c-0.45,0 -0.67,-0.54 -0.35,-0.85l2.8,-2.79c0.2,-0.19 0.51,-0.19 0.71,0l2.79,2.79C15.46,14.46 15.24,15 14.8,15zM14,9c-0.55,0 -1,-0.45 -1,-1V3.5L18.5,9H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/usb.xml b/compose/material/material/icons/generator/raw-icons/rounded/usb.xml
deleted file mode 100644
index 616bdbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/usb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7h-2c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1v2h-3V5h1c0.41,0 0.65,-0.47 0.4,-0.8l-2,-2.67c-0.2,-0.27 -0.6,-0.27 -0.8,0l-2,2.67c-0.25,0.33 -0.01,0.8 0.4,0.8h1v8H8v-2.07c0.83,-0.44 1.38,-1.36 1.14,-2.43 -0.17,-0.77 -0.77,-1.4 -1.52,-1.61C6.15,6.48 4.8,7.59 4.8,9c0,0.85 0.5,1.56 1.2,1.93V13c0,1.1 0.9,2 2,2h3v3.05c-0.86,0.45 -1.39,1.42 -1.13,2.49 0.18,0.75 0.79,1.38 1.54,1.58 1.46,0.39 2.8,-0.7 2.8,-2.12 0,-0.85 -0.49,-1.58 -1.2,-1.95V15h3c1.1,0 2,-0.9 2,-2v-2c0.55,0 1,-0.45 1,-1V8C19,7.45 18.55,7 18,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/usb_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/usb_off.xml
deleted file mode 100644
index a785af9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/usb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.6,5.2l2,-2.67c0.2,-0.27 0.6,-0.27 0.8,0l2,2.67C14.65,5.53 14.41,6 14,6h-1v4.17l-2,-2V6h-1C9.59,6 9.35,5.53 9.6,5.2zM15.5,12H16v1.17l1.77,1.77C17.91,14.66 18,14.34 18,14v-2h0.5c0.28,0 0.5,-0.22 0.5,-0.5v-3C19,8.22 18.78,8 18.5,8h-3C15.22,8 15,8.22 15,8.5v3C15,11.78 15.22,12 15.5,12zM20.49,21.9L20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-5.9,-5.9H13v2.28c0.6,0.34 1,0.98 1,1.72c0,1.2 -1.07,2.16 -2.31,1.98c-0.88,-0.13 -1.59,-0.88 -1.68,-1.77c-0.08,-0.83 0.33,-1.55 0.99,-1.93V16H8c-1.1,0 -2,-0.9 -2,-2v-2.28C5.4,11.38 5,10.74 5,10c0,-0.59 0.26,-1.13 0.68,-1.5L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41c0.39,-0.39 1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9zM11,13.83l-2.51,-2.51c-0.14,0.16 -0.31,0.29 -0.49,0.4V14h3V13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vaccines.xml b/compose/material/material/icons/generator/raw-icons/rounded/vaccines.xml
deleted file mode 100644
index 94fb5a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vaccines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,22.5c0.55,0 1,-0.45 1,-1V17h1c1.1,0 2,-0.9 2,-2V7.5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1H8V4h0.5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1H6v1.5H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1V15c0,1.1 0.9,2 2,2h1v4.5C6,22.05 6.45,22.5 7,22.5zM9,9H7.25C6.84,9 6.5,9.34 6.5,9.75c0,0.41 0.34,0.75 0.75,0.75H9V12H7.25c-0.41,0 -0.75,0.34 -0.75,0.75c0,0.41 0.34,0.75 0.75,0.75H9L9,15H5V7.5h4V9zM19.5,10.5V10c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-5c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1v0.5c0,0.5 -1.5,1.16 -1.5,3V20c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-6.5C21,11.66 19.5,11 19.5,10.5zM16.5,10.5V10h1v0.5c0,1.6 1.5,2 1.5,3V14h-4c0,-0.21 0,-0.39 0,-0.5C15,12.5 16.5,12.1 16.5,10.5zM15,20c0,0 0,-0.63 0,-1.5h4V20H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vape_free.xml b/compose/material/material/icons/generator/raw-icons/rounded/vape_free.xml
deleted file mode 100644
index c75e111..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vape_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,21.9c-0.39,0.39 -1.02,0.39 -1.41,0l-2.9,-2.9H8v-3h5.17L2.1,4.93c-0.39,-0.39 -0.39,-1.02 0,-1.41s1.02,-0.39 1.41,0l16.97,16.97C20.88,20.88 20.88,21.51 20.49,21.9zM18.83,16h1.67c0.83,0 1.5,0.67 1.5,1.5c0,0.46 -0.21,0.87 -0.53,1.14L18.83,16zM10.5,17c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S10.78,17 10.5,17zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38c0,-1.51 -1,-2.79 -2.38,-3.21C16.99,2 16.5,2.36 16.5,2.86c0,0.33 0.21,0.62 0.52,0.71c0.77,0.23 1.33,0.94 1.33,1.78c0,0.82 -0.53,1.51 -1.27,1.76C16.75,7.22 16.5,7.5 16.5,7.85V8c0,0.37 0.27,0.69 0.64,0.75c1.93,0.31 3.36,2 3.36,4.02v1.48c0,0.41 0.34,0.75 0.75,0.75S22,14.66 22,14.25v-1.49C22,10.54 20.72,8.62 18.85,7.73zM14.48,11.65c0.04,0 0.09,0 0.13,0h1.42c1.05,0 1.97,0.74 1.97,2.05v0.55c0,0.41 0.34,0.75 0.76,0.75c0.41,0 0.75,-0.33 0.75,-0.75v-0.89c-0.01,-1.81 -1.61,-3.16 -3.48,-3.16h-1.3c-1.02,0 -1.94,-0.73 -2.07,-1.75c-0.12,-0.95 0.46,-1.7 1.3,-1.93c0.32,-0.09 0.54,-0.38 0.54,-0.72c0,-0.49 -0.46,-0.86 -0.93,-0.72c-1.41,0.41 -2.43,1.71 -2.42,3.24L14.48,11.65zM3,18.5c1.33,0 2.71,0.18 4,0.5v-3c-1.29,0.32 -2.67,0.5 -4,0.5c-0.55,0 -1,0.45 -1,1S2.45,18.5 3,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vaping_rooms.xml b/compose/material/material/icons/generator/raw-icons/rounded/vaping_rooms.xml
deleted file mode 100644
index 93d8141..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vaping_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17.5c0,0.83 -0.67,1.5 -1.5,1.5H8v-3h12.5C21.33,16 22,16.67 22,17.5zM10.5,17c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S10.78,17 10.5,17zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38c0,-1.51 -1,-2.79 -2.38,-3.21C16.99,2 16.5,2.36 16.5,2.86c0,0.33 0.21,0.62 0.52,0.71c0.77,0.23 1.33,0.94 1.33,1.78c0,0.82 -0.53,1.51 -1.27,1.76C16.75,7.22 16.5,7.5 16.5,7.85V8c0,0.37 0.27,0.69 0.64,0.75c1.93,0.31 3.36,2 3.36,4.02v1.48c0,0.41 0.34,0.75 0.75,0.75S22,14.66 22,14.25v-1.49C22,10.54 20.72,8.62 18.85,7.73zM18.76,15c0.41,0 0.75,-0.33 0.75,-0.75v-0.89c-0.01,-1.81 -1.61,-3.16 -3.48,-3.16h-1.3c-1.02,0 -1.94,-0.73 -2.07,-1.75c-0.12,-0.95 0.46,-1.7 1.3,-1.93c0.32,-0.09 0.54,-0.38 0.54,-0.72c0,-0.49 -0.46,-0.86 -0.93,-0.72c-1.42,0.41 -2.45,1.73 -2.42,3.28c0.03,1.84 1.62,3.29 3.46,3.29h1.42c1.05,0 1.97,0.74 1.97,2.05v0.55C18,14.66 18.34,15 18.76,15zM3,18.5c1.33,0 2.71,0.18 4,0.5v-3c-1.29,0.32 -2.67,0.5 -4,0.5c-0.55,0 -1,0.45 -1,1S2.45,18.5 3,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/verified.xml b/compose/material/material/icons/generator/raw-icons/rounded/verified.xml
deleted file mode 100644
index 45660ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/verified.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-2.44,-2.79l0.34,-3.69l-3.61,-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7l3.61,0.82L8.6,22.5l3.4,-1.47l3.4,1.46l1.89,-3.19l3.61,-0.82l-0.34,-3.69L23,12zM9.38,16.01L7,13.61c-0.39,-0.39 -0.39,-1.02 0,-1.41l0.07,-0.07c0.39,-0.39 1.03,-0.39 1.42,0l1.61,1.62l5.15,-5.16c0.39,-0.39 1.03,-0.39 1.42,0l0.07,0.07c0.39,0.39 0.39,1.02 0,1.41l-5.92,5.94C10.41,16.4 9.78,16.4 9.38,16.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/verified_user.xml b/compose/material/material/icons/generator/raw-icons/rounded/verified_user.xml
deleted file mode 100644
index 620af50..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/verified_user.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.19,1.36l-7,3.11C3.47,4.79 3,5.51 3,6.3L3,11c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,6.3c0,-0.79 -0.47,-1.51 -1.19,-1.83l-7,-3.11c-0.51,-0.23 -1.11,-0.23 -1.62,0zM9.29,16.29L6.7,13.7c-0.39,-0.39 -0.39,-1.02 0,-1.41 0.39,-0.39 1.02,-0.39 1.41,0L10,14.17l5.88,-5.88c0.39,-0.39 1.02,-0.39 1.41,0 0.39,0.39 0.39,1.02 0,1.41l-6.59,6.59c-0.38,0.39 -1.02,0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_bottom.xml b/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_bottom.xml
deleted file mode 100644
index fba1808..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.79,13H13V4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v9H9.21c-0.45,0 -0.67,0.54 -0.35,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79c0.31,-0.31 0.09,-0.85 -0.36,-0.85zM4,20c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_center.xml b/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_center.xml
deleted file mode 100644
index 997228f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.21,19L11,19v3c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-3h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.79,2.79c-0.31,0.31 -0.09,0.85 0.36,0.85zM14.79,5L13,5L13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3L9.21,5c-0.45,0 -0.67,0.54 -0.36,0.85l2.79,2.79c0.2,0.2 0.51,0.2 0.71,0l2.79,-2.79c0.32,-0.31 0.1,-0.85 -0.35,-0.85zM4,12c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,11c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_top.xml b/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_top.xml
deleted file mode 100644
index 79ad572..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vertical_align_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.21,11H11v9c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-9h1.79c0.45,0 0.67,-0.54 0.35,-0.85l-2.79,-2.79c-0.2,-0.2 -0.51,-0.2 -0.71,0l-2.79,2.79c-0.31,0.31 -0.09,0.85 0.36,0.85zM4,4c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vertical_distribute.xml b/compose/material/material/icons/generator/raw-icons/rounded/vertical_distribute.xml
deleted file mode 100644
index 75d9e4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vertical_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L22,3c0,0.55 -0.45,1 -1,1H3C2.45,4 2,3.55 2,3v0c0,-0.55 0.45,-1 1,-1h18C21.55,2 22,2.45 22,3zM7,12L7,12c0,0.83 0.67,1.5 1.5,1.5h7c0.83,0 1.5,-0.67 1.5,-1.5v0c0,-0.83 -0.67,-1.5 -1.5,-1.5h-7C7.67,10.5 7,11.17 7,12zM2,21L2,21c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H3C2.45,20 2,20.45 2,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vertical_shades.xml b/compose/material/material/icons/generator/raw-icons/rounded/vertical_shades.xml
deleted file mode 100644
index 1843b79..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vertical_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM10,19V5h4v14H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vertical_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/rounded/vertical_shades_closed.xml
deleted file mode 100644
index e7a2fa9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vertical_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H20zM13,5h1.5v14H13V5zM11,19H9.5V5H11V19zM6,5h1.5v14H6V5zM16.5,19V5H18v14H16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vertical_split.xml b/compose/material/material/icons/generator/raw-icons/rounded/vertical_split.xml
deleted file mode 100644
index 1041d937..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vertical_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,19h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,11h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM3,6c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,5c-0.55,0 -1,0.45 -1,1zM14,5h6c0.55,0 1,0.45 1,1v12c0,0.55 -0.45,1 -1,1h-6c-0.55,0 -1,-0.45 -1,-1L13,6c0,-0.55 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vibration.xml b/compose/material/material/icons/generator/raw-icons/rounded/vibration.xml
deleted file mode 100644
index 633f459..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vibration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,15c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM4,17c0.55,0 1,-0.45 1,-1L5,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8c0,0.55 0.45,1 1,1zM22,10v4c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM20,17c0.55,0 1,-0.45 1,-1L21,8c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v8c0,0.55 0.45,1 1,1zM16.5,3h-9C6.67,3 6,3.67 6,4.5v15c0,0.83 0.67,1.5 1.5,1.5h9c0.83,0 1.5,-0.67 1.5,-1.5v-15c0,-0.83 -0.67,-1.5 -1.5,-1.5zM16,19L8,19L8,5h8v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_call.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_call.xml
deleted file mode 100644
index 8b5a3a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V7c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l2.29,2.29c0.63,0.63 1.71,0.18 1.71,-0.71V8.91c0,-0.89 -1.08,-1.34 -1.71,-0.71L17,10.5zM13,13h-2v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2H7c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2V9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_camera_back.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_camera_back.xml
deleted file mode 100644
index f98c3d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_camera_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l3.15,3.13C21.46,16.97 22,16.74 22,16.3V7.7c0,-0.44 -0.54,-0.67 -0.85,-0.35L18,10.48zM5.6,15.2l1.38,-1.83c0.2,-0.27 0.6,-0.27 0.8,0L9,15l2.23,-2.97c0.2,-0.27 0.6,-0.27 0.8,0l2.38,3.17c0.25,0.33 0.01,0.8 -0.4,0.8H6C5.59,16 5.35,15.53 5.6,15.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_camera_front.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_camera_front.xml
deleted file mode 100644
index d1c0707..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l3.15,3.13C21.46,16.97 22,16.74 22,16.3V7.7c0,-0.44 -0.54,-0.67 -0.85,-0.35L18,10.48zM10,8c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S8.9,8 10,8zM14,16H6v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C8.07,13.21 9.01,13 10,13c0.99,0 1.93,0.21 2.78,0.58C13.52,13.9 14,14.62 14,15.43V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_chat.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_chat.xml
deleted file mode 100644
index f23743f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_chat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2.01,2.9 2.01,4L2,19.58c0,0.89 1.08,1.34 1.71,0.71L6,18h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM16.15,12.15L15,11.01V13c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V7c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v1.99l1.15,-1.14C16.46,7.53 17,7.76 17,8.2v3.59C17,12.24 16.46,12.47 16.15,12.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_file.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_file.xml
deleted file mode 100644
index 9f6b1fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,2H6.01c-1.1,0 -2,0.89 -2,2L4,20c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83C14.21,2.21 13.7,2 13.17,2zM13,8V3.5L18.5,9H14C13.45,9 13,8.55 13,8zM14,14l1.27,-0.67C15.6,13.15 16,13.39 16,13.77v2.46c0,0.38 -0.4,0.62 -0.73,0.44L14,16v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_label.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_label.xml
deleted file mode 100644
index 6b9445b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,6c0,-0.55 0.45,-1 1,-1h16c0.55,0 1,0.45 1,1v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_library.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_library.xml
deleted file mode 100644
index 1062992..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6c-0.55,0 -1,0.45 -1,1v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1L4,7c0,-0.55 -0.45,-1 -1,-1zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM12,14.5v-9l5.47,4.1c0.27,0.2 0.27,0.6 0,0.8L12,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_settings.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_settings.xml
deleted file mode 100644
index f94cfe7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_settings.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16c0.55,0 1,0.45 1,1v4h2V6c0,-1.1 -0.9,-2 -2,-2H3C1.9,4 1,4.9 1,6v12c0,1.1 0.9,2 2,2h9v-2H4c-0.55,0 -1,-0.45 -1,-1V7C3,6.45 3.45,6 4,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12l-6,-4l0,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.71,18.43c0.03,-0.29 0.04,-0.58 0.01,-0.86l1.07,-0.85c0.1,-0.08 0.12,-0.21 0.06,-0.32l-1.03,-1.79c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11L21.23,15c-0.23,-0.17 -0.48,-0.31 -0.75,-0.42l-0.2,-1.36C20.26,13.09 20.16,13 20.03,13h-2.07c-0.12,0 -0.23,0.09 -0.25,0.21l-0.2,1.36c-0.26,0.11 -0.51,0.26 -0.74,0.42l-1.28,-0.5c-0.12,-0.05 -0.25,0 -0.31,0.11l-1.03,1.79c-0.06,0.11 -0.04,0.24 0.06,0.32l1.07,0.86c-0.03,0.29 -0.04,0.58 -0.01,0.86l-1.07,0.85c-0.1,0.08 -0.12,0.21 -0.06,0.32l1.03,1.79c0.06,0.11 0.19,0.15 0.31,0.11l1.27,-0.5c0.23,0.17 0.48,0.31 0.75,0.42l0.2,1.36c0.02,0.12 0.12,0.21 0.25,0.21h2.07c0.12,0 0.23,-0.09 0.25,-0.21l0.2,-1.36c0.26,-0.11 0.51,-0.26 0.74,-0.42l1.28,0.5c0.12,0.05 0.25,0 0.31,-0.11l1.03,-1.79c0.06,-0.11 0.04,-0.24 -0.06,-0.32L22.71,18.43zM19,19.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S19.83,19.5 19,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/video_stable.xml b/compose/material/material/icons/generator/raw-icons/rounded/video_stable.xml
deleted file mode 100644
index 75dab33..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/video_stable.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.96,4.01h-16c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-12C21.96,4.91 21.06,4.01 19.96,4.01zM20,6v12H4V6H20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.42,9.01L7.92,6.18C7.39,6.04 6.84,6.35 6.7,6.88l-1.85,6.87c-0.14,0.53 0.17,1.08 0.71,1.23l10.5,2.83c0.53,0.14 1.08,-0.17 1.23,-0.71l1.85,-6.87C19.27,9.7 18.95,9.15 18.42,9.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/videocam.xml b/compose/material/material/icons/generator/raw-icons/rounded/videocam.xml
deleted file mode 100644
index f755b5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/videocam.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V7c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l2.29,2.29c0.63,0.63 1.71,0.18 1.71,-0.71V8.91c0,-0.89 -1.08,-1.34 -1.71,-0.71L17,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/videocam_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/videocam_off.xml
deleted file mode 100644
index 495cd0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/videocam_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14.2V8.91c0,-0.89 -1.08,-1.34 -1.71,-0.71L17,10.5V7c0,-0.55 -0.45,-1 -1,-1h-5.61l8.91,8.91c0.62,0.63 1.7,0.18 1.7,-0.71zM2.71,2.56c-0.39,0.39 -0.39,1.02 0,1.41L4.73,6H4c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.21,0 0.39,-0.08 0.55,-0.18l2.48,2.48c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.12,2.56c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/videogame_asset.xml b/compose/material/material/icons/generator/raw-icons/rounded/videogame_asset.xml
deleted file mode 100644
index ea4d3d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/videogame_asset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM10,13L8,13v2c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2L4,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h2L6,9c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h2c0.55,0 1,0.45 1,1s-0.45,1 -1,1zM15.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S18.67,9 19.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/videogame_asset_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/videogame_asset_off.xml
deleted file mode 100644
index de37cc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/videogame_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.7,17.87C21.46,17.59 22,16.85 22,16V8c0,-1.1 -0.9,-2 -2,-2H8.83L20.7,17.87zM17.5,9c0.83,0 1.5,0.67 1.5,1.5S18.33,12 17.5,12S16,11.33 16,10.5S16.67,9 17.5,9zM20.49,20.49L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41l1.2,1.2C2.54,6.41 2,7.15 2,8v8c0,1.1 0.9,2 2,2h11.17l3.9,3.9c0.39,0.39 1.02,0.39 1.41,0h0C20.88,21.51 20.88,20.88 20.49,20.49zM10,13H9v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-1H6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h1v-1c0,-0.05 0.01,-0.11 0.01,-0.16l3.14,3.14C10.11,12.99 10.05,13 10,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_agenda.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_agenda.xml
deleted file mode 100644
index 18e3342..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_agenda.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4C21,13.9 20.1,13 19,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_array.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_array.xml
deleted file mode 100644
index 53aba8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_array.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-1c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1V6C21,5.45 20.55,5 20,5zM16,5H8C7.45,5 7,5.45 7,6v12c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1V6C17,5.45 16.55,5 16,5zM5,5H4C3.45,5 3,5.45 3,6v12c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1V6C6,5.45 5.55,5 5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_carousel.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_carousel.xml
deleted file mode 100644
index 98ad8b60..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_carousel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7h2c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1H3c-0.55,0 -1,-0.45 -1,-1V8C2,7.45 2.45,7 3,7zM8,19h8c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1H8C7.45,5 7,5.45 7,6v12C7,18.55 7.45,19 8,19zM19,7h2c0.55,0 1,0.45 1,1v8c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1V8C18,7.45 18.45,7 19,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_column.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_column.xml
deleted file mode 100644
index 12e231d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_column.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.67,6v12c0,0.55 -0.45,1 -1,1h-3.33c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h3.33C14.22,5 14.67,5.45 14.67,6zM16.67,19H20c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1h-3.33c-0.55,0 -1,0.45 -1,1v12C15.67,18.55 16.11,19 16.67,19zM8.33,18V6c0,-0.55 -0.45,-1 -1,-1H4C3.45,5 3,5.45 3,6v12c0,0.55 0.45,1 1,1h3.33C7.89,19 8.33,18.55 8.33,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_comfy.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_comfy.xml
deleted file mode 100644
index 517a5fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_comfy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5v5c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1H3C2.45,4 2,4.45 2,5zM11,20h10c0.55,0 1,-0.45 1,-1v-5c0,-0.55 -0.45,-1 -1,-1H11c-0.55,0 -1,0.45 -1,1v5C10,19.55 10.45,20 11,20zM3,20h4c0.55,0 1,-0.45 1,-1v-5c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1v5C2,19.55 2.45,20 3,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_comfy_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_comfy_alt.xml
deleted file mode 100644
index 38d1c0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_comfy_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM10.5,17h-3C7.22,17 7,16.78 7,16.5v-3C7,13.22 7.22,13 7.5,13h3c0.28,0 0.5,0.22 0.5,0.5v3C11,16.78 10.78,17 10.5,17zM10.5,11h-3C7.22,11 7,10.78 7,10.5v-3C7,7.22 7.22,7 7.5,7h3C10.78,7 11,7.22 11,7.5v3C11,10.78 10.78,11 10.5,11zM16.5,17h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C17,16.78 16.78,17 16.5,17zM16.5,11h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3C13,7.22 13.22,7 13.5,7h3C16.78,7 17,7.22 17,7.5v3C17,10.78 16.78,11 16.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_compact.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_compact.xml
deleted file mode 100644
index f2330a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_compact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h2.5v-2.5H4V18zM4,13.25h2.5v-2.5H4V13.25zM4,8.5h2.5V6H4V8.5zM17.5,6v2.5H20V6H17.5zM13,8.5h2.5V6H13V8.5zM17.5,18H20v-2.5h-2.5V18zM17.5,13.25H20v-2.5h-2.5V13.25zM8.5,18H11v-2.5H8.5V18zM13,18h2.5v-2.5H13V18zM8.5,8.5H11V6H8.5V8.5zM13,13.25h2.5v-2.5H13V13.25zM8.5,13.25H11v-2.5H8.5V13.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_compact_alt.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_compact_alt.xml
deleted file mode 100644
index f831fdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_compact_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM11,16.5H8c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C11.5,16.28 11.28,16.5 11,16.5zM11,11.5H8c-0.28,0 -0.5,-0.22 -0.5,-0.5V8c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C11.5,11.28 11.28,11.5 11,11.5zM16,16.5h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C16.5,16.28 16.28,16.5 16,16.5zM16,11.5h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5V8c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C16.5,11.28 16.28,11.5 16,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_cozy.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_cozy.xml
deleted file mode 100644
index 4913534..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_cozy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM10.75,16.75h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C11.25,16.53 11.03,16.75 10.75,16.75zM10.75,11.25h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C11.25,11.03 11.03,11.25 10.75,11.25zM16.25,16.75h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C16.75,16.53 16.53,16.75 16.25,16.75zM16.25,11.25h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5v-3c0,-0.28 0.22,-0.5 0.5,-0.5h3c0.28,0 0.5,0.22 0.5,0.5v3C16.75,11.03 16.53,11.25 16.25,11.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_day.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_day.xml
deleted file mode 100644
index 6164e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h17c0.55,0 1,-0.45 1,-1v-1c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1v1c0,0.55 0.45,1 1,1zM20,8H3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h17c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1zM2,4v1c0,0.55 0.45,1 1,1h17c0.55,0 1,-0.45 1,-1V4c0,-0.55 -0.45,-1 -1,-1H3c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_headline.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_headline.xml
deleted file mode 100644
index 4395ffc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_headline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM5,19h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM5,11h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM4,6c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,5c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_in_ar.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_in_ar.xml
deleted file mode 100644
index f85e762e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_in_ar.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6c0.55,0 1,-0.45 1,-1V4c0,-0.55 0.45,-1 1,-1h1c0.55,0 1,-0.45 1,-1S5.55,1 5,1H4C2.34,1 1,2.34 1,4v1C1,5.55 1.45,6 2,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21H4c-0.55,0 -1,-0.45 -1,-1v-1c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1v1c0,1.66 1.34,3 3,3h1c0.55,0 1,-0.45 1,-1S5.55,21 5,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1h-1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1c0.55,0 1,0.45 1,1v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1V4C23,2.34 21.66,1 20,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18c-0.55,0 -1,0.45 -1,1v1c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1c1.66,0 3,-1.34 3,-3v-1C23,18.45 22.55,18 22,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14.87V9.13c0,-0.72 -0.38,-1.38 -1,-1.73l-5,-2.88c-0.31,-0.18 -0.65,-0.27 -1,-0.27s-0.69,0.09 -1,0.27L6,7.39C5.38,7.75 5,8.41 5,9.13v5.74c0,0.72 0.38,1.38 1,1.73l5,2.88c0.31,0.18 0.65,0.27 1,0.27s0.69,-0.09 1,-0.27l5,-2.88C18.62,16.25 19,15.59 19,14.87zM11,17.17l-4,-2.3v-4.63l4,2.33V17.17zM12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84zM17,14.87l-4,2.3v-4.6l4,-2.33V14.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_kanban.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_kanban.xml
deleted file mode 100644
index 12aa6a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_kanban.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM8,17L8,17c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v8C9,16.55 8.55,17 8,17zM12,12L12,12c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3C13,11.55 12.55,12 12,12zM16,15L16,15c-0.55,0 -1,-0.45 -1,-1V8c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v6C17,14.55 16.55,15 16,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_list.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_list.xml
deleted file mode 100644
index 2ceb1b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14h2c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v2C3,13.55 3.45,14 4,14zM4,19h2c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v2C3,18.55 3.45,19 4,19zM4,9h2c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1H4C3.45,5 3,5.45 3,6v2C3,8.55 3.45,9 4,9zM9,14h11c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1H9c-0.55,0 -1,0.45 -1,1v2C8,13.55 8.45,14 9,14zM9,19h11c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1H9c-0.55,0 -1,0.45 -1,1v2C8,18.55 8.45,19 9,19zM8,6v2c0,0.55 0.45,1 1,1h11c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1H9C8.45,5 8,5.45 8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_module.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_module.xml
deleted file mode 100644
index dd00e5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_module.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.67,6v4.5c0,0.55 -0.45,1 -1,1h-3.33c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1h3.33C14.22,5 14.67,5.45 14.67,6zM16.67,11.5H20c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1h-3.33c-0.55,0 -1,0.45 -1,1v4.5C15.67,11.05 16.11,11.5 16.67,11.5zM14.67,18v-4.5c0,-0.55 -0.45,-1 -1,-1h-3.33c-0.55,0 -1,0.45 -1,1V18c0,0.55 0.45,1 1,1h3.33C14.22,19 14.67,18.55 14.67,18zM15.67,13.5V18c0,0.55 0.45,1 1,1H20c0.55,0 1,-0.45 1,-1v-4.5c0,-0.55 -0.45,-1 -1,-1h-3.33C16.11,12.5 15.67,12.95 15.67,13.5zM7.33,12.5H4c-0.55,0 -1,0.45 -1,1V18c0,0.55 0.45,1 1,1h3.33c0.55,0 1,-0.45 1,-1v-4.5C8.33,12.95 7.89,12.5 7.33,12.5zM8.33,10.5V6c0,-0.55 -0.45,-1 -1,-1H4C3.45,5 3,5.45 3,6v4.5c0,0.55 0.45,1 1,1h3.33C7.89,11.5 8.33,11.05 8.33,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_quilt.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_quilt.xml
deleted file mode 100644
index 3784d3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_quilt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6v4.5c0,0.55 -0.45,1 -1,1h-9.67c-0.55,0 -1,-0.45 -1,-1V6c0,-0.55 0.45,-1 1,-1H20C20.55,5 21,5.45 21,6zM14.67,18v-4.5c0,-0.55 -0.45,-1 -1,-1h-3.33c-0.55,0 -1,0.45 -1,1V18c0,0.55 0.45,1 1,1h3.33C14.22,19 14.67,18.55 14.67,18zM15.67,13.5V18c0,0.55 0.45,1 1,1H20c0.55,0 1,-0.45 1,-1v-4.5c0,-0.55 -0.45,-1 -1,-1h-3.33C16.11,12.5 15.67,12.95 15.67,13.5zM8.33,18V6c0,-0.55 -0.45,-1 -1,-1H4C3.45,5 3,5.45 3,6v12c0,0.55 0.45,1 1,1h3.33C7.89,19 8.33,18.55 8.33,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_sidebar.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_sidebar.xml
deleted file mode 100644
index c2b6bbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_sidebar.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,20H3c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v14C16,19.55 15.55,20 15,20zM19,8h2c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v2C18,7.55 18.45,8 19,8zM19,20h2c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v2C18,19.55 18.45,20 19,20zM19,14h2c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v2C18,13.55 18.45,14 19,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_stream.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_stream.xml
deleted file mode 100644
index 06bf209..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_stream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17v-2c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2H5C3.9,19 3,18.1 3,17zM3,7v2c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H5C3.9,5 3,5.9 3,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_timeline.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_timeline.xml
deleted file mode 100644
index a40da9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,17H7c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C12,16.55 11.55,17 11,17zM14,13h-4c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C15,12.55 14.55,13 14,13zM17,9h-4c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C18,8.55 17.55,9 17,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/view_week.xml b/compose/material/material/icons/generator/raw-icons/rounded/view_week.xml
deleted file mode 100644
index 2cc8d6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.33,20H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h1.33c1.1,0 2,0.9 2,2v12C7.33,19.1 6.44,20 5.33,20zM22,18V6c0,-1.1 -0.9,-2 -2,-2h-1.33c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2H20C21.11,20 22,19.1 22,18zM14.67,18V6c0,-1.1 -0.9,-2 -2,-2h-1.33c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h1.33C13.77,20 14.67,19.1 14.67,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vignette.xml b/compose/material/material/icons/generator/raw-icons/rounded/vignette.xml
deleted file mode 100644
index fa65401..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vignette.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM12,18c-4.42,0 -8,-2.69 -8,-6s3.58,-6 8,-6 8,2.69 8,6 -3.58,6 -8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/villa.xml b/compose/material/material/icons/generator/raw-icons/rounded/villa.xml
deleted file mode 100644
index f2df54d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/villa.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21H4c-0.55,0 -1,-0.45 -1,-1V8.69C3,8.27 3.25,7.9 3.64,7.75l11,-4.23C15.3,3.27 16,3.75 16,4.46V10H8c-0.55,0 -1,0.45 -1,1V21zM17,12h-7c-0.55,0 -1,0.45 -1,1v7c0,0.55 0.45,1 1,1h4v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h4c0.55,0 1,-0.45 1,-1v-8c0,-1.1 -0.9,-2 -2,-2S17,10.9 17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/visibility.xml b/compose/material/material/icons/generator/raw-icons/rounded/visibility.xml
deleted file mode 100644
index 13d5808..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/visibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7,4 2.73,7.11 1,11.5 2.73,15.89 7,19 12,19s9.27,-3.11 11,-7.5C21.27,7.11 17,4 12,4zM12,16.5c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,8.5c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/visibility_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/visibility_off.xml
deleted file mode 100644
index ba18b4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/visibility_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c2.76,0 5,2.24 5,5 0,0.51 -0.1,1 -0.24,1.46l3.06,3.06c1.39,-1.23 2.49,-2.77 3.18,-4.53C21.27,7.11 17,4 12,4c-1.27,0 -2.49,0.2 -3.64,0.57l2.17,2.17c0.47,-0.14 0.96,-0.24 1.47,-0.24zM2.71,3.16c-0.39,0.39 -0.39,1.02 0,1.41l1.97,1.97C3.06,7.83 1.77,9.53 1,11.5 2.73,15.89 7,19 12,19c1.52,0 2.97,-0.3 4.31,-0.82l2.72,2.72c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.13,3.16c-0.39,-0.39 -1.03,-0.39 -1.42,0zM12,16.5c-2.76,0 -5,-2.24 -5,-5 0,-0.77 0.18,-1.5 0.49,-2.14l1.57,1.57c-0.03,0.18 -0.06,0.37 -0.06,0.57 0,1.66 1.34,3 3,3 0.2,0 0.38,-0.03 0.57,-0.07L14.14,16c-0.65,0.32 -1.37,0.5 -2.14,0.5zM14.97,11.17c-0.15,-1.4 -1.25,-2.49 -2.64,-2.64l2.64,2.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/voice_chat.xml b/compose/material/material/icons/generator/raw-icons/rounded/voice_chat.xml
deleted file mode 100644
index d2593f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/voice_chat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM16.38,12.7L14,10.8L14,13c0,0.55 -0.45,1 -1,1L7,14c-0.55,0 -1,-0.45 -1,-1L6,7c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v2.2l2.38,-1.9c0.65,-0.52 1.62,-0.06 1.62,0.78v3.84c0,0.84 -0.97,1.3 -1.62,0.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/voice_over_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/voice_over_off.xml
deleted file mode 100644
index 6fa7bbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/voice_over_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.72,6.41c-0.35,0.35 -0.44,0.88 -0.25,1.35 0.3,0.75 0.32,1.58 0.05,2.34 -0.16,0.46 -0.06,0.98 0.29,1.32 0.6,0.6 1.66,0.47 2.02,-0.31 0.64,-1.39 0.6,-2.99 -0.12,-4.41 -0.4,-0.75 -1.41,-0.88 -1.99,-0.29zM19.18,2.89c-0.4,0.4 -0.46,1.02 -0.13,1.48 1.93,2.68 1.95,6.25 0.09,9.07 -0.31,0.46 -0.23,1.08 0.16,1.47 0.51,0.51 1.38,0.46 1.81,-0.13 2.57,-3.51 2.52,-8.2 -0.17,-11.77 -0.43,-0.56 -1.26,-0.62 -1.76,-0.12zM9.43,5.04l3.53,3.53c-0.2,-1.86 -1.67,-3.33 -3.53,-3.53zM3.71,3.56c-0.39,0.39 -0.39,1.02 0,1.41l1.91,1.91c-0.56,0.89 -0.79,2.01 -0.47,3.2 0.36,1.33 1.44,2.4 2.77,2.77 1.19,0.33 2.31,0.09 3.2,-0.47l4.4,4.4C13.74,15.6 10.78,15 9,15c-2.67,0 -8,1.34 -8,4v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1c0,-0.37 -0.11,-0.7 -0.29,-1.02l2.31,2.31c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.12,3.56c-0.39,-0.39 -1.02,-0.39 -1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/voicemail.xml b/compose/material/material/icons/generator/raw-icons/rounded/voicemail.xml
deleted file mode 100644
index 4947802..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/voicemail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,6C15.46,6 13,8.46 13,11.5c0,1.33 0.47,2.55 1.26,3.5L9.74,15c0.79,-0.95 1.26,-2.17 1.26,-3.5C11,8.46 8.54,6 5.5,6S0,8.46 0,11.5 2.46,17 5.5,17h13c3.04,0 5.5,-2.46 5.5,-5.5S21.54,6 18.5,6zM5.5,15C3.57,15 2,13.43 2,11.5S3.57,8 5.5,8 9,9.57 9,11.5 7.43,15 5.5,15zM18.5,15c-1.93,0 -3.5,-1.57 -3.5,-3.5S16.57,8 18.5,8 22,9.57 22,11.5 20.43,15 18.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/volcano.xml b/compose/material/material/icons/generator/raw-icons/rounded/volcano.xml
deleted file mode 100644
index e69a156..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/volcano.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,8h-4.14c-0.82,0 -1.55,0.5 -1.86,1.26L9,13H7.3c-0.79,0 -1.51,0.47 -1.83,1.19l-2.22,5C2.66,20.51 3.63,22 5.08,22h14.27c1.33,0 2.29,-1.27 1.92,-2.55l-2.86,-10C18.17,8.59 17.38,8 16.49,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,1L14,1c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V2C15,1.45 14.55,1 14,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,3.34L19.66,3.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.41,1.41c-0.39,0.39 -0.39,1.02 0,1.41v0c0.39,0.39 1.02,0.39 1.41,0l1.41,-1.41C20.05,4.37 20.05,3.73 19.66,3.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,4.76L9.76,3.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41l1.41,1.41c0.39,0.39 1.02,0.39 1.41,0l0,0C11.56,5.78 11.56,5.15 11.17,4.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/volume_down.xml b/compose/material/material/icons/generator/raw-icons/rounded/volume_down.xml
deleted file mode 100644
index fb6c283..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/volume_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM5,10v4c0,0.55 0.45,1 1,1h3l3.29,3.29c0.63,0.63 1.71,0.18 1.71,-0.71V6.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L9,9H6c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/volume_mute.xml b/compose/material/material/icons/generator/raw-icons/rounded/volume_mute.xml
deleted file mode 100644
index 46a00ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/volume_mute.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10v4c0,0.55 0.45,1 1,1h3l3.29,3.29c0.63,0.63 1.71,0.18 1.71,-0.71V6.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L11,9H8c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/volume_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/volume_off.xml
deleted file mode 100644
index 7ff837d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/volume_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.63,3.63c-0.39,0.39 -0.39,1.02 0,1.41L7.29,8.7 7,9L4,9c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3l3.29,3.29c0.63,0.63 1.71,0.18 1.71,-0.71v-4.17l4.18,4.18c-0.49,0.37 -1.02,0.68 -1.6,0.91 -0.36,0.15 -0.58,0.53 -0.58,0.92 0,0.72 0.73,1.18 1.39,0.91 0.8,-0.33 1.55,-0.77 2.22,-1.31l1.34,1.34c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L5.05,3.63c-0.39,-0.39 -1.02,-0.39 -1.42,0zM19,12c0,0.82 -0.15,1.61 -0.41,2.34l1.53,1.53c0.56,-1.17 0.88,-2.48 0.88,-3.87 0,-3.83 -2.4,-7.11 -5.78,-8.4 -0.59,-0.23 -1.22,0.23 -1.22,0.86v0.19c0,0.38 0.25,0.71 0.61,0.85C17.18,6.54 19,9.06 19,12zM10.29,5.71l-0.17,0.17L12,7.76L12,6.41c0,-0.89 -1.08,-1.33 -1.71,-0.7zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v1.79l2.48,2.48c0.01,-0.08 0.02,-0.16 0.02,-0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/volume_up.xml b/compose/material/material/icons/generator/raw-icons/rounded/volume_up.xml
deleted file mode 100644
index 61f5856..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/volume_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10v4c0,0.55 0.45,1 1,1h3l3.29,3.29c0.63,0.63 1.71,0.18 1.71,-0.71L12,6.41c0,-0.89 -1.08,-1.34 -1.71,-0.71L7,9L4,9c-0.55,0 -1,0.45 -1,1zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM14,4.45v0.2c0,0.38 0.25,0.71 0.6,0.85C17.18,6.53 19,9.06 19,12s-1.82,5.47 -4.4,6.5c-0.36,0.14 -0.6,0.47 -0.6,0.85v0.2c0,0.63 0.63,1.07 1.21,0.85C18.6,19.11 21,15.84 21,12s-2.4,-7.11 -5.79,-8.4c-0.58,-0.23 -1.21,0.22 -1.21,0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/volunteer_activism.xml b/compose/material/material/icons/generator/raw-icons/rounded/volunteer_activism.xml
deleted file mode 100644
index 92ba137..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/volunteer_activism.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11L3,11c-1.1,0 -2,0.9 -2,2v7c0,1.1 0.9,2 2,2h0c1.1,0 2,-0.9 2,-2v-7C5,11.9 4.1,11 3,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.3C10,3.45 11.45,2 13.3,2c1.04,0 2.05,0.49 2.7,1.25C16.65,2.49 17.66,2 18.7,2C20.55,2 22,3.45 22,5.3c0,2.1 -2.5,4.51 -5.33,7.09c-0.38,0.35 -0.97,0.35 -1.35,0C12.5,9.81 10,7.4 10,5.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.99,17h-6.83c-0.11,0 -0.22,-0.02 -0.33,-0.06l-1.47,-0.51c-0.26,-0.09 -0.39,-0.37 -0.3,-0.63l0,0c0.09,-0.26 0.38,-0.4 0.64,-0.3l1.12,0.43c0.11,0.04 0.24,0.07 0.36,0.07h2.63c0.65,0 1.18,-0.53 1.18,-1.18v0c0,-0.49 -0.31,-0.93 -0.77,-1.11L9.3,11.13C9.08,11.04 8.84,11 8.6,11H7v9.02l6.37,1.81c0.41,0.12 0.85,0.1 1.25,-0.05L22,19l0,0C22,17.89 21.1,17 19.99,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vpn_key.xml b/compose/material/material/icons/generator/raw-icons/rounded/vpn_key.xml
deleted file mode 100644
index 7c52a71..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vpn_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.65,10C11.7,7.31 8.9,5.5 5.77,6.12c-2.29,0.46 -4.15,2.29 -4.63,4.58C0.32,14.57 3.26,18 7,18c2.61,0 4.83,-1.67 5.65,-4H17v2c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-2c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2h-8.35zM7,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vpn_key_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/vpn_key_off.xml
deleted file mode 100644
index ee4358e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vpn_key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.98,6.81C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.21,0 4.15,-1.2 5.18,-2.99l6.89,6.89c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L3.98,6.81zM8.99,11.82C9,11.88 9,11.94 9,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.06,0 0.12,0 0.18,0.01L8.99,11.82zM20.32,17.5C20.74,17.13 21,16.59 21,16v-2c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2h-8.17L20.32,17.5"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vpn_lock.xml b/compose/material/material/icons/generator/raw-icons/rounded/vpn_lock.xml
deleted file mode 100644
index f65efc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vpn_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.92,11c0.44,3.63 -1.52,5.85 -2.02,6.39C17.64,16.58 16.9,16 16,16h-1v-3c0,-0.55 -0.45,-1 -1,-1H8v-2h2c0.55,0 1,-0.45 1,-1V7h2c1.1,0 2,-0.9 2,-2V2.46C14.05,2.16 13.05,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c5.73,0 10.51,-4.86 9.95,-11H19.92zM11,19.93C7.05,19.44 4,16.08 4,12c0,-0.62 0.08,-1.21 0.21,-1.79L9,15v1c0,1.1 0.9,2 2,2V19.93zM22,4V3.11c0,-1 -0.68,-1.92 -1.66,-2.08C19.08,0.82 18,1.79 18,3v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V5C23,4.45 22.55,4 22,4zM21,4h-2V3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/vrpano.xml b/compose/material/material/icons/generator/raw-icons/rounded/vrpano.xml
deleted file mode 100644
index 2004251..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/vrpano.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.69,4.05C18.66,4.73 15.86,5.5 12,5.5c-3.89,0 -6.95,-0.84 -8.69,-1.43C2.67,3.85 2,4.33 2,5.02V19c0,0.68 0.66,1.17 1.31,0.95C5.36,19.26 8.1,18.5 12,18.5c3.87,0 6.66,0.76 8.69,1.45C21.34,20.16 22,19.68 22,19V5C22,4.32 21.34,3.84 20.69,4.05zM17.28,15.26C15.62,15.1 13.84,15 12,15c-1.87,0 -3.63,0.1 -5.28,0.27C6.27,15.31 6,14.79 6.29,14.45l2.5,-3c0.2,-0.24 0.57,-0.24 0.77,0l1.62,1.94l2.44,-2.93c0.2,-0.24 0.57,-0.24 0.77,0l3.32,3.99C17.99,14.79 17.72,15.31 17.28,15.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wallet.xml b/compose/material/material/icons/generator/raw-icons/rounded/wallet.xml
deleted file mode 100644
index b5ad926..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wallet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4H6C3.79,4 2,5.79 2,8v8c0,2.21 1.79,4 4,4h12c2.21,0 4,-1.79 4,-4V8C22,5.79 20.21,4 18,4zM16.14,13.77c-0.24,0.2 -0.57,0.28 -0.88,0.2L4.15,11.25C4.45,10.52 5.16,10 6,10h12c0.67,0 1.26,0.34 1.63,0.84L16.14,13.77zM6,6h12c1.1,0 2,0.9 2,2v0.55C19.41,8.21 18.73,8 18,8H6C5.27,8 4.59,8.21 4,8.55V8C4,6.9 4.9,6 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wallpaper.xml b/compose/material/material/icons/generator/raw-icons/rounded/wallpaper.xml
deleted file mode 100644
index 07ff9cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wallpaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5c0,-0.55 0.45,-1 1,-1h5c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L4,2c-1.1,0 -2,0.9 -2,2v6c0,0.55 0.45,1 1,1s1,-0.45 1,-1L4,5zM9.61,13.49l-2.96,3.7c-0.26,0.33 -0.03,0.81 0.39,0.81L17,18c0.41,0 0.65,-0.47 0.4,-0.8l-2,-2.67c-0.2,-0.27 -0.6,-0.27 -0.8,0l-1.63,2.18 -2.58,-3.22c-0.2,-0.25 -0.58,-0.25 -0.78,0zM17,8.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S14,7.67 14,8.5s0.67,1.5 1.5,1.5S17,9.33 17,8.5zM20,2h-6c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h5c0.55,0 1,0.45 1,1v5c0,0.55 0.45,1 1,1s1,-0.45 1,-1L22,4c0,-1.1 -0.9,-2 -2,-2zM20,19c0,0.55 -0.45,1 -1,1h-5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h6c1.1,0 2,-0.9 2,-2v-6c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v5zM3,13c-0.55,0 -1,0.45 -1,1v6c0,1.1 0.9,2 2,2h6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,20c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/warehouse.xml b/compose/material/material/icons/generator/raw-icons/rounded/warehouse.xml
deleted file mode 100644
index 6615604..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/warehouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,19V8.35c0,-0.82 -0.5,-1.55 -1.26,-1.86l-8,-3.2c-0.48,-0.19 -1.01,-0.19 -1.49,0l-8,3.2C2.5,6.8 2,7.54 2,8.35V19c0,1.1 0.9,2 2,2h3v-9h10v9h3C21.1,21 22,20.1 22,19zM11,19H9v2h2V19zM13,16h-2v2h2V16zM15,19h-2v2h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/warning.xml b/compose/material/material/icons/generator/raw-icons/rounded/warning.xml
deleted file mode 100644
index 506d058..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.47,21h15.06c1.54,0 2.5,-1.67 1.73,-3L13.73,4.99c-0.77,-1.33 -2.69,-1.33 -3.46,0L2.74,18c-0.77,1.33 0.19,3 1.73,3zM12,14c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2c0,0.55 -0.45,1 -1,1zM13,18h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/warning_amber.xml b/compose/material/material/icons/generator/raw-icons/rounded/warning_amber.xml
deleted file mode 100644
index 3a5a1ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/warning_amber.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.99L19.53,19L4.47,19L12,5.99M2.74,18c-0.77,1.33 0.19,3 1.73,3h15.06c1.54,0 2.5,-1.67 1.73,-3L13.73,4.99c-0.77,-1.33 -2.69,-1.33 -3.46,0L2.74,18zM11,11v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM11,16h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wash.xml b/compose/material/material/icons/generator/raw-icons/rounded/wash.xml
deleted file mode 100644
index 0ccbd45..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.94,11.79C1.34,12.35 1,13.14 1,13.97V20c0,1.66 1.34,3 3,3l13.68,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5l7.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5l0,0c0,-0.28 0.22,-0.5 0.5,-0.5l8.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5v0c0,-0.28 0.22,-0.5 0.5,-0.5l6.18,0c0.65,0 1.25,-0.47 1.32,-1.12c0.08,-0.75 -0.51,-1.38 -1.24,-1.38H8.86l1.49,-2.61c0.09,-0.16 0.14,-0.33 0.14,-0.53c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.81,5.71C9.43,5.32 8.8,5.3 8.4,5.68L1.94,11.79zM18.5,8C19.88,8 21,6.88 21,5.5c0,-1.25 -1.41,-3.16 -2.11,-4.04c-0.2,-0.25 -0.57,-0.25 -0.77,0C17.41,2.34 16,4.25 16,5.5C16,6.88 17.12,8 18.5,8zM13.5,9C14.33,9 15,8.33 15,7.5c0,-0.56 -0.67,-1.49 -1.11,-2.04c-0.2,-0.25 -0.58,-0.25 -0.77,0C12.67,6.01 12,6.94 12,7.5C12,8.33 12.67,9 13.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/watch.xml b/compose/material/material/icons/generator/raw-icons/rounded/watch.xml
deleted file mode 100644
index 1fbd491..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/watch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-2.54 -1.19,-4.81 -3.04,-6.27l-0.68,-4.06C16.12,0.71 15.28,0 14.31,0H9.7c-0.98,0 -1.82,0.71 -1.98,1.67l-0.67,4.06C5.19,7.19 4,9.45 4,12s1.19,4.81 3.05,6.27l0.67,4.06c0.16,0.96 1,1.67 1.98,1.67h4.61c0.98,0 1.81,-0.71 1.97,-1.67l0.68,-4.06C18.81,16.81 20,14.54 20,12zM6,12c0,-3.31 2.69,-6 6,-6s6,2.69 6,6 -2.69,6 -6,6 -6,-2.69 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/watch_later.xml b/compose/material/material/icons/generator/raw-icons/rounded/watch_later.xml
deleted file mode 100644
index 96b73db..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/watch_later.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM15.55,15.8l-4.08,-2.51c-0.3,-0.18 -0.48,-0.5 -0.48,-0.85V7.75C11,7.34 11.34,7 11.75,7s0.75,0.34 0.75,0.75v4.45l3.84,2.31c0.36,0.22 0.48,0.69 0.26,1.05C16.38,15.91 15.91,16.02 15.55,15.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/watch_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/watch_off.xml
deleted file mode 100644
index ff0b360..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/watch_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5c0,0.64 -0.13,1.25 -0.35,1.82l1.5,1.5C18.69,14.33 19,13.2 19,12c0,-2.22 -1.03,-4.19 -2.64,-5.47l-0.93,-3.1C15.17,2.58 14.4,2 13.51,2h-3.02C9.6,2 8.83,2.58 8.57,3.42L8.04,5.21l2.14,2.14C10.75,7.13 11.36,7 12,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,3.51L2.1,3.51c-0.39,0.39 -0.39,1.02 0,1.41l3.75,3.75C5.31,9.67 5,10.8 5,12c0,2.22 1.03,4.19 2.64,5.47l0.93,3.1C8.83,21.42 9.6,22 10.49,22h3.02c0.88,0 1.66,-0.58 1.92,-1.43l0.53,-1.78l3.11,3.11c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.1,3.51zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-0.64 0.13,-1.25 0.35,-1.82l6.47,6.47C13.25,16.87 12.64,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/water.xml b/compose/material/material/icons/generator/raw-icons/rounded/water.xml
deleted file mode 100644
index c142e42..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/water.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,14H22H21.98zM5.35,13c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c0.93,0 1.05,0.45 2.01,0.79c0.63,0.22 1.3,-0.24 1.3,-0.91c0,-0.52 -0.23,-0.83 -0.64,-0.97c-0.6,-0.22 -1.15,-0.9 -2.69,-0.9c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.54,0 -2.13,0.71 -2.68,0.91C2.24,12.05 2,12.35 2,12.89c0,0.67 0.66,1.13 1.29,0.91C4.35,13.44 4.39,13 5.35,13zM18.67,15c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.53,0 -2.15,0.71 -2.69,0.91C2.24,16.05 2,16.36 2,16.89c0,0.67 0.66,1.13 1.3,0.91C4.32,17.44 4.38,17 5.34,17c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.19,0 1.42,1 3.33,1c1.94,0 2.09,-1 3.33,-1c0.94,0 1.06,0.46 2.03,0.8c0.63,0.22 1.3,-0.24 1.3,-0.91c0,-0.53 -0.24,-0.83 -0.65,-0.98C20.82,15.72 20.21,15 18.67,15zM5.35,9c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c0.93,0 1.05,0.45 2.01,0.79c0.63,0.22 1.3,-0.24 1.3,-0.91c0,-0.52 -0.23,-0.83 -0.64,-0.97C20.74,7.68 20.19,7 18.65,7c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C10.04,7 9.9,8 8.66,8C7.47,8 7.24,7 5.33,7C3.79,7 3.2,7.71 2.65,7.91C2.24,8.05 2,8.35 2,8.89c0,0.67 0.66,1.13 1.29,0.91C4.35,9.44 4.39,9 5.35,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/water_damage.xml b/compose/material/material/icons/generator/raw-icons/rounded/water_damage.xml
deleted file mode 100644
index 863e6ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/water_damage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.33,3.6l-8.36,7.53C2.63,11.43 2.84,12 3.3,12H5v7c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-7h1.7c0.46,0 0.68,-0.57 0.33,-0.87L12.67,3.6C12.29,3.26 11.71,3.26 11.33,3.6zM12,16c-1.1,0 -2,-0.9 -2,-2c0,-0.78 0.99,-2.44 1.58,-3.36c0.2,-0.31 0.64,-0.31 0.84,0C13.01,11.56 14,13.22 14,14C14,15.1 13.1,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/water_drop.xml b/compose/material/material/icons/generator/raw-icons/rounded/water_drop.xml
deleted file mode 100644
index 4411f51..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/water_drop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.66,2.58c-0.38,-0.33 -0.95,-0.33 -1.33,0C6.45,6.88 4,10.62 4,13.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.62 17.55,6.88 12.66,2.58zM7.83,14c0.37,0 0.67,0.26 0.74,0.62c0.41,2.22 2.28,2.98 3.64,2.87c0.43,-0.02 0.79,0.32 0.79,0.75c0,0.4 -0.32,0.73 -0.72,0.75c-2.13,0.13 -4.62,-1.09 -5.19,-4.12C7.01,14.42 7.37,14 7.83,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/waterfall_chart.xml b/compose/material/material/icons/generator/raw-icons/rounded/waterfall_chart.xml
deleted file mode 100644
index 838bee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/waterfall_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,4L19.5,4C20.33,4 21,4.67 21,5.5v13c0,0.83 -0.67,1.5 -1.5,1.5h0c-0.83,0 -1.5,-0.67 -1.5,-1.5v-13C18,4.67 18.67,4 19.5,4zM4.5,13L4.5,13C5.33,13 6,13.67 6,14.5v4C6,19.33 5.33,20 4.5,20h0C3.67,20 3,19.33 3,18.5v-4C3,13.67 3.67,13 4.5,13zM15.5,4L15.5,4C16.33,4 17,4.67 17,5.5v0C17,6.33 16.33,7 15.5,7h0C14.67,7 14,6.33 14,5.5v0C14,4.67 14.67,4 15.5,4zM11.5,5L11.5,5C12.33,5 13,5.67 13,6.5v1C13,8.33 12.33,9 11.5,9h0C10.67,9 10,8.33 10,7.5v-1C10,5.67 10.67,5 11.5,5zM8.5,10L8.5,10c0.83,0 1.5,0.67 1.5,1.5v1c0,0.83 -0.67,1.5 -1.5,1.5h0C7.67,14 7,13.33 7,12.5v-1C7,10.67 7.67,10 8.5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/waves.xml b/compose/material/material/icons/generator/raw-icons/rounded/waves.xml
deleted file mode 100644
index b08f182..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/waves.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16.99c-1.35,0 -2.2,0.42 -2.95,0.8 -0.65,0.33 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.43,0.22 -0.81,0.41 -1.27,0.52 -0.45,0.1 -0.78,0.46 -0.78,0.91v0.1c0,0.6 0.56,1.03 1.14,0.91 0.74,-0.15 1.3,-0.43 1.81,-0.69 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.42 2.95,-0.8c0.65,-0.33 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.52,0.26 1.08,0.55 1.83,0.7 0.58,0.11 1.12,-0.33 1.12,-0.91v-0.09c0,-0.46 -0.34,-0.82 -0.79,-0.92 -0.46,-0.1 -0.83,-0.29 -1.26,-0.52 -0.75,-0.39 -1.6,-0.81 -2.95,-0.81zM17,12.54c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.43,0.21 -0.81,0.41 -1.28,0.52 -0.44,0.1 -0.77,0.46 -0.77,0.91v0.1c0,0.59 0.54,1.03 1.12,0.91 0.75,-0.15 1.31,-0.44 1.83,-0.69 0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.52,0.26 1.08,0.55 1.83,0.7 0.58,0.11 1.12,-0.33 1.12,-0.92v-0.09c0,-0.46 -0.34,-0.82 -0.79,-0.92 -0.46,-0.1 -0.83,-0.29 -1.26,-0.52 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM19.95,4.46c-0.75,-0.38 -1.58,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.37 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.43,0.22 -0.81,0.41 -1.27,0.52 -0.45,0.1 -0.78,0.46 -0.78,0.91v0.07c0,0.6 0.54,1.04 1.12,0.92 0.75,-0.15 1.31,-0.44 1.83,-0.69 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.52,0.26 1.08,0.55 1.83,0.7 0.58,0.11 1.12,-0.33 1.12,-0.92v-0.09c0,-0.46 -0.34,-0.82 -0.79,-0.92 -0.46,-0.1 -0.83,-0.28 -1.26,-0.5zM17,8.09c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.35 -1.15,0.6 -2.05,0.6s-1.4,-0.25 -2.05,-0.6c-0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.43,0.23 -0.8,0.42 -1.26,0.52 -0.45,0.1 -0.79,0.46 -0.79,0.92v0.09c0,0.59 0.54,1.03 1.12,0.91 0.75,-0.15 1.31,-0.44 1.83,-0.69 0.65,-0.32 1.18,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.52,0.26 1.08,0.55 1.83,0.7 0.58,0.11 1.12,-0.33 1.12,-0.91v-0.09c0,-0.46 -0.34,-0.82 -0.79,-0.92 -0.46,-0.1 -0.83,-0.29 -1.26,-0.52 -0.75,-0.39 -1.6,-0.81 -2.95,-0.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/waving_hand.xml b/compose/material/material/icons/generator/raw-icons/rounded/waving_hand.xml
deleted file mode 100644
index b9363c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/waving_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.07,9.8c-0.2,0.2 -0.2,0.51 0,0.71l0,0c1.07,1.07 1.16,2.75 0.28,3.92c-0.15,0.2 -0.12,0.47 0.05,0.65c0.22,0.22 0.57,0.19 0.76,-0.05c1.07,-1.43 1.06,-3.43 -0.04,-4.85l7.62,-7.62c0.49,-0.49 1.28,-0.49 1.77,0s0.49,1.28 0,1.77l-5.13,5.13c-0.2,0.2 -0.2,0.51 0,0.71s0.51,0.2 0.71,0l6.54,-6.54c0.49,-0.49 1.28,-0.49 1.77,0s0.49,1.28 0,1.77l-6.54,6.54c-0.2,0.2 -0.2,0.51 0,0.71s0.51,0.2 0.71,0l5.48,-5.48c0.49,-0.49 1.28,-0.49 1.77,0s0.49,1.28 0,1.77l-6.19,6.19c-0.2,0.2 -0.2,0.51 0,0.71c0.2,0.2 0.51,0.2 0.71,0l4.07,-4.07c0.49,-0.49 1.28,-0.49 1.77,0c0.49,0.49 0.49,1.28 0,1.77l-7.07,7.07c-3.22,3.22 -8.45,3.22 -11.67,0s-3.22,-8.45 0,-11.67l4.6,-4.6c0.49,-0.49 1.28,-0.49 1.77,0c0.49,0.49 0.49,1.28 0,1.77L6.07,9.8zM7,1.8c0,-0.41 -0.34,-0.75 -0.75,-0.75c-0.04,0 -0.07,0 -0.11,0.01c-2.63,0.38 -4.7,2.46 -5.08,5.08c0,0.03 -0.01,0.07 -0.01,0.11C1.05,6.66 1.39,7 1.8,7c0.38,0 0.69,-0.28 0.74,-0.64c0.28,-1.97 1.84,-3.53 3.81,-3.81C6.72,2.49 7,2.18 7,1.8zM17,22.2c0,0.41 0.34,0.75 0.75,0.75c0.04,0 0.07,0 0.11,-0.01c2.63,-0.38 4.7,-2.46 5.08,-5.08c0,-0.03 0.01,-0.07 0.01,-0.11c0,-0.41 -0.34,-0.75 -0.75,-0.75c-0.38,0 -0.69,0.28 -0.74,0.64c-0.28,1.97 -1.84,3.53 -3.81,3.81C17.28,21.51 17,21.82 17,22.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wb_auto.xml b/compose/material/material/icons/generator/raw-icons/rounded/wb_auto.xml
deleted file mode 100644
index dff90b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wb_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.85,12.65h2.3L8,9zM22.72,7c-0.42,0 -0.77,0.3 -0.85,0.7l-1.07,5.59 -1.31,-5.51c-0.11,-0.46 -0.52,-0.78 -0.99,-0.78s-0.88,0.32 -0.98,0.78l-1.31,5.51 -1.07,-5.59c-0.08,-0.4 -0.44,-0.7 -0.85,-0.7 -0.01,0 -0.03,0.01 -0.04,0.01C12.78,5.18 10.53,4 8,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8c3.17,0 5.9,-1.85 7.2,-4.52 0.2,0.32 0.55,0.52 0.94,0.52 0.51,0 0.95,-0.35 1.07,-0.84L18.5,9.9l1.29,5.26c0.12,0.49 0.57,0.84 1.07,0.84 0.52,0 0.96,-0.36 1.08,-0.86l1.61,-7.08c0.13,-0.54 -0.28,-1.06 -0.83,-1.06zM10.93,16c-0.38,0 -0.72,-0.24 -0.84,-0.6L9.6,14L6.4,14l-0.49,1.4c-0.13,0.36 -0.46,0.6 -0.84,0.6 -0.62,0 -1.05,-0.61 -0.84,-1.19l2.44,-6.86C6.87,7.38 7.4,7 8,7s1.13,0.38 1.34,0.94l2.44,6.86c0.2,0.59 -0.23,1.2 -0.85,1.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wb_cloudy.xml b/compose/material/material/icons/generator/raw-icons/rounded/wb_cloudy.xml
deleted file mode 100644
index d77abd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wb_cloudy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.37,10.04C18.68,6.59 15.65,4 12.01,4c-2.89,0 -5.4,1.64 -6.65,4.04C2.35,8.36 0.01,10.91 0.01,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.64,-4.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wb_incandescent.xml b/compose/material/material/icons/generator/raw-icons/rounded/wb_incandescent.xml
deleted file mode 100644
index b0155c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wb_incandescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.25,19.79c0.39,0.39 1.02,0.39 1.41,0l0.39,-0.39c0.39,-0.39 0.38,-1.02 0,-1.4l-0.01,-0.01c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.39,0.39c-0.38,0.4 -0.38,1.02 0.01,1.41zM11.99,23L12,23c0.55,0 0.99,-0.44 0.99,-0.99v-0.96c0,-0.55 -0.44,-0.99 -0.99,-0.99h-0.01c-0.55,0 -0.99,0.44 -0.99,0.99v0.96c0,0.55 0.44,0.99 0.99,0.99zM3.01,11.05L1.99,11.05c-0.55,0 -0.99,0.44 -0.99,0.99v0.01c0,0.55 0.44,0.99 0.99,0.99L3,13.04c0.55,0 0.99,-0.44 0.99,-0.99v-0.01c0.01,-0.55 -0.43,-0.99 -0.98,-0.99zM15,6.86L15,3.05c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v3.81c-2.04,1.18 -3.32,3.52 -2.93,6.13 0.4,2.61 2.56,4.7 5.18,5.02 3.64,0.44 6.75,-2.4 6.75,-5.95 0,-2.23 -1.21,-4.16 -3,-5.2zM20,12.04v0.01c0,0.55 0.44,0.99 0.99,0.99L22,13.04c0.55,0 0.99,-0.44 0.99,-0.99v-0.01c0,-0.55 -0.44,-0.99 -0.99,-0.99h-1.01c-0.55,0 -0.99,0.44 -0.99,0.99zM17.94,19.41l0.39,0.39c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41l-0.39,-0.39c-0.39,-0.39 -1.02,-0.38 -1.4,0 -0.4,0.4 -0.4,1.02 -0.01,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wb_iridescent.xml b/compose/material/material/icons/generator/raw-icons/rounded/wb_iridescent.xml
deleted file mode 100644
index 031d905..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wb_iridescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15h12c0.55,0 1,-0.45 1,-1v-3.95c0,-0.55 -0.45,-1 -1,-1L6,9.05c-0.55,0 -1,0.45 -1,1L5,14c0,0.55 0.45,1 1,1zM11,2v1.05c0,0.55 0.45,0.95 1,0.95s1,-0.4 1,-0.95L13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1zM18.34,4.3l-0.38,0.38c-0.39,0.39 -0.39,1.02 0,1.41 0.39,0.39 1.02,0.39 1.41,0l0.38,-0.38c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0zM13,22v-0.96c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1L11,22c0,0.55 0.45,1 1,1s1,-0.45 1,-1zM19.74,18.39l-0.39,-0.39c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41l0.38,0.39c0.39,0.39 1.02,0.39 1.41,0l0.01,-0.01c0.39,-0.38 0.39,-1.02 0,-1.4zM4.25,5.71l0.39,0.39c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41l-0.39,-0.39c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.38,0.39 -0.38,1.03 0,1.41zM5.67,19.79l0.38,-0.38c0.39,-0.39 0.39,-1.02 0,-1.41 -0.39,-0.39 -1.02,-0.39 -1.41,0l-0.38,0.38c-0.39,0.39 -0.39,1.02 0,1.41 0.38,0.39 1.02,0.39 1.41,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wb_shade.xml b/compose/material/material/icons/generator/raw-icons/rounded/wb_shade.xml
deleted file mode 100644
index 3c3d981..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wb_shade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,14.13L14,14.13c0,0.23 0.09,0.46 0.26,0.63l4.98,4.98c0.17,0.17 0.39,0.26 0.62,0.26h0c0.79,0 1.18,-0.95 0.62,-1.51l-4.98,-4.98C14.95,12.95 14,13.35 14,14.13zM15,20h2l-3,-3v2C14,19.55 14.45,20 15,20zM7.65,4.35L2.85,9.15C2.54,9.46 2.76,10 3.21,10H4v9c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-9h0.79c0.45,0 0.67,-0.54 0.35,-0.85L8.35,4.35C8.16,4.16 7.84,4.16 7.65,4.35zM9,14H7v-4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wb_sunny.xml b/compose/material/material/icons/generator/raw-icons/rounded/wb_sunny.xml
deleted file mode 100644
index 558f9ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wb_sunny.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.05,4.14l-0.39,-0.39c-0.39,-0.39 -1.02,-0.38 -1.4,0l-0.01,0.01c-0.39,0.39 -0.39,1.02 0,1.4l0.39,0.39c0.39,0.39 1.01,0.39 1.4,0l0.01,-0.01c0.39,-0.38 0.39,-1.02 0,-1.4zM3.01,10.5L1.99,10.5c-0.55,0 -0.99,0.44 -0.99,0.99v0.01c0,0.55 0.44,0.99 0.99,0.99L3,12.49c0.56,0.01 1,-0.43 1,-0.98v-0.01c0,-0.56 -0.44,-1 -0.99,-1zM12.01,0.55L12,0.55c-0.56,0 -1,0.44 -1,0.99v0.96c0,0.55 0.44,0.99 0.99,0.99L12,3.49c0.56,0.01 1,-0.43 1,-0.98v-0.97c0,-0.55 -0.44,-0.99 -0.99,-0.99zM19.75,3.76c-0.39,-0.39 -1.02,-0.39 -1.41,-0.01l-0.39,0.39c-0.39,0.39 -0.39,1.02 0,1.4l0.01,0.01c0.39,0.39 1.02,0.39 1.4,0l0.39,-0.39c0.39,-0.39 0.39,-1.01 0,-1.4zM17.94,18.86l0.39,0.39c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41l-0.39,-0.39c-0.39,-0.39 -1.02,-0.38 -1.4,0 -0.4,0.4 -0.4,1.02 -0.01,1.41zM20,11.49v0.01c0,0.55 0.44,0.99 0.99,0.99L22,12.49c0.55,0 0.99,-0.44 0.99,-0.99v-0.01c0,-0.55 -0.44,-0.99 -0.99,-0.99h-1.01c-0.55,0 -0.99,0.44 -0.99,0.99zM12,5.5c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM11.99,22.45L12,22.45c0.55,0 0.99,-0.44 0.99,-0.99v-0.96c0,-0.55 -0.44,-0.99 -0.99,-0.99h-0.01c-0.55,0 -0.99,0.44 -0.99,0.99v0.96c0,0.55 0.44,0.99 0.99,0.99zM4.25,19.24c0.39,0.39 1.02,0.39 1.41,0l0.39,-0.39c0.39,-0.39 0.38,-1.02 0,-1.4l-0.01,-0.01c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.39,0.39c-0.38,0.4 -0.38,1.02 0.01,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wb_twilight.xml b/compose/material/material/icons/generator/raw-icons/rounded/wb_twilight.xml
deleted file mode 100644
index 47b83ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wb_twilight.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.07,9.37l0.71,-0.71c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.71,0.71c-0.39,0.39 -0.39,1.02 0,1.41C18.04,9.76 18.68,9.76 19.07,9.37z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18H3c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h18c0.55,0 1,-0.45 1,-1S21.55,18 21,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,7c0.56,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v1C11,6.55 11.45,7 12,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.96,9.34c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L5.66,7.22c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L4.96,9.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,16c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wc.xml b/compose/material/material/icons/generator/raw-icons/rounded/wc.xml
deleted file mode 100644
index ba98da1..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,21v-6.5L5,14.5c-0.55,0 -1,-0.45 -1,-1L4,9c0,-1.1 0.9,-2 2,-2h3c1.1,0 2,0.9 2,2v4.5c0,0.55 -0.45,1 -1,1h-0.5L9.5,21c0,0.55 -0.45,1 -1,1h-2c-0.55,0 -1,-0.45 -1,-1zM18,21v-5h1.61c0.68,0 1.16,-0.67 0.95,-1.32l-2.1,-6.31C18.18,7.55 17.42,7 16.56,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37l-2.1,6.31c-0.22,0.65 0.26,1.32 0.95,1.32L15,16v5c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1zM7.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2zM16.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/web.xml b/compose/material/material/icons/generator/raw-icons/rounded/web.xml
deleted file mode 100644
index 7e38b59..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/web.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM4,9h10.5v3.5L4,12.5L4,9zM4,14.5h10.5L14.5,18L5,18c-0.55,0 -1,-0.45 -1,-1v-2.5zM19,18h-2.5L16.5,9L20,9v8c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/web_asset.xml b/compose/material/material/icons/generator/raw-icons/rounded/web_asset.xml
deleted file mode 100644
index 7e0637d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/web_asset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM18,18L6,18c-0.55,0 -1,-0.45 -1,-1L5,8h14v9c0,0.55 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/web_asset_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/web_asset_off.xml
deleted file mode 100644
index a84793e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/web_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H20c1.11,0 2,0.9 2,2v12c0,0.34 -0.09,0.66 -0.23,0.94L20,17.17V8h-9.17L6.83,4zM19.78,22.61L17.17,20H4c-1.11,0 -2,-0.9 -2,-2V6c0,-0.34 0.08,-0.66 0.23,-0.94L1.39,4.22C1,3.83 1,3.2 1.39,2.81l0,0c0.39,-0.39 1.02,-0.39 1.41,0l18.38,18.38c0.39,0.39 0.39,1.02 0,1.41l0,0C20.8,23 20.17,23 19.78,22.61zM15.17,18l-10,-10H4v10H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/web_stories.xml b/compose/material/material/icons/generator/raw-icons/rounded/web_stories.xml
deleted file mode 100644
index a5b16c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/web_stories.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4c1.1,0 2,0.9 2,2v12c0,1.1 -0.9,2 -2,2V4zM2,20c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2,2.9 2,4V20zM21,18c0.83,0 1.5,-0.67 1.5,-1.5v-9C22.5,6.67 21.83,6 21,6V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/webhook.xml b/compose/material/material/icons/generator/raw-icons/rounded/webhook.xml
deleted file mode 100644
index 05dd009..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/webhook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16c0,-1.84 1,-3.45 2.48,-4.32C5.15,11.29 6,11.76 6,12.54c0,0.36 -0.19,0.68 -0.5,0.86C4.6,13.92 4,14.89 4,16c0,1.85 1.68,3.31 3.6,2.94c1.42,-0.28 2.4,-1.61 2.4,-3.06v0c0,-0.49 0.39,-0.88 0.88,-0.88l5,0c0.27,-0.31 0.67,-0.5 1.12,-0.5c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5c-0.44,0 -0.84,-0.19 -1.12,-0.5l-3.98,0c-0.46,2.28 -2.48,4 -4.9,4C4.24,21 2,18.76 2,16zM16.37,7c0.65,0 1.14,-0.62 0.97,-1.25C16.79,3.59 14.83,2 12.5,2c-2.76,0 -5,2.24 -5,5c0,1.43 0.6,2.71 1.55,3.62l-2.35,3.9C6.02,14.66 5.5,15.27 5.5,16c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5c0,-0.16 -0.02,-0.31 -0.07,-0.45l2.86,-4.75c0.25,-0.41 0.13,-0.95 -0.28,-1.19C10.11,9.08 9.5,8.11 9.5,7c0,-1.65 1.35,-3 3,-3c1.38,0 2.54,0.93 2.89,2.2C15.52,6.66 15.9,7 16.37,7zM17,13c-0.38,0 -0.75,0.07 -1.09,0.2c-0.4,0.16 -0.86,-0.04 -1.08,-0.41l-2.6,-4.32C11.53,8.35 11,7.74 11,7c0,-0.83 0.67,-1.5 1.5,-1.5S14,6.17 14,7c0,0.15 -0.02,0.29 -0.06,0.43l2.19,3.65C16.41,11.03 16.7,11 17,11l0,0c2.76,0 5,2.24 5,5c0,2.76 -2.24,5 -5,5c-0.86,0 -1.68,-0.22 -2.39,-0.61c-0.92,-0.5 -0.58,-1.89 0.47,-1.89c0.17,0 0.34,0.05 0.49,0.14C15.99,18.87 16.48,19 17,19c1.65,0 3,-1.35 3,-3S18.65,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/weekend.xml b/compose/material/material/icons/generator/raw-icons/rounded/weekend.xml
deleted file mode 100644
index 12888f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/weekend.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10c-1.1,0 -2,0.9 -2,2v3L5,15v-3c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v5c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2v-5c0,-1.1 -0.9,-2 -2,-2zM18,5L6,5c-1.1,0 -2,0.9 -2,2v2.15c1.16,0.41 2,1.51 2,2.82L6,14h12v-2.03c0,-1.3 0.84,-2.4 2,-2.82L20,7c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/west.xml b/compose/material/material/icons/generator/raw-icons/rounded/west.xml
deleted file mode 100644
index 6bb1c1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.7,18.3L9.7,18.3c0.39,-0.39 0.39,-1.02 0,-1.41L5.83,13H21c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5.83l3.88,-3.88c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.7,11.3c-0.39,0.39 -0.39,1.02 0,1.41l5.59,5.59C8.68,18.68 9.32,18.68 9.7,18.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/whatsapp.xml b/compose/material/material/icons/generator/raw-icons/rounded/whatsapp.xml
deleted file mode 100644
index 82a2a5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/whatsapp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.05,4.91C17.18,3.03 14.69,2 12.04,2c-5.46,0 -9.91,4.45 -9.91,9.91c0,1.75 0.46,3.45 1.32,4.95L2.05,22l5.25,-1.38c1.45,0.79 3.08,1.21 4.74,1.21h0c0,0 0,0 0,0c5.46,0 9.91,-4.45 9.91,-9.91C21.95,9.27 20.92,6.78 19.05,4.91zM12.04,20.15L12.04,20.15c-1.48,0 -2.93,-0.4 -4.2,-1.15l-0.3,-0.18l-3.12,0.82l0.83,-3.04l-0.2,-0.31c-0.82,-1.31 -1.26,-2.83 -1.26,-4.38c0,-4.54 3.7,-8.24 8.24,-8.24c2.2,0 4.27,0.86 5.82,2.42c1.56,1.56 2.41,3.63 2.41,5.83C20.28,16.46 16.58,20.15 12.04,20.15zM16.56,13.99c-0.25,-0.12 -1.47,-0.72 -1.69,-0.81c-0.23,-0.08 -0.39,-0.12 -0.56,0.12c-0.17,0.25 -0.64,0.81 -0.78,0.97c-0.14,0.17 -0.29,0.19 -0.54,0.06c-0.25,-0.12 -1.05,-0.39 -1.99,-1.23c-0.74,-0.66 -1.23,-1.47 -1.38,-1.72c-0.14,-0.25 -0.02,-0.38 0.11,-0.51c0.11,-0.11 0.25,-0.29 0.37,-0.43c0.12,-0.14 0.17,-0.25 0.25,-0.41c0.08,-0.17 0.04,-0.31 -0.02,-0.43c-0.06,-0.12 -0.56,-1.34 -0.76,-1.84c-0.2,-0.48 -0.41,-0.42 -0.56,-0.43C8.86,7.33 8.7,7.33 8.53,7.33c-0.17,0 -0.43,0.06 -0.66,0.31C7.65,7.89 7.01,8.49 7.01,9.71c0,1.22 0.89,2.4 1.01,2.56c0.12,0.17 1.75,2.67 4.23,3.74c0.59,0.26 1.05,0.41 1.41,0.52c0.59,0.19 1.13,0.16 1.56,0.1c0.48,-0.07 1.47,-0.6 1.67,-1.18c0.21,-0.58 0.21,-1.07 0.14,-1.18S16.81,14.11 16.56,13.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/whatshot.xml b/compose/material/material/icons/generator/raw-icons/rounded/whatshot.xml
deleted file mode 100644
index 32e5c98..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/whatshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.09,4.56c-0.7,-1.03 -1.5,-1.99 -2.4,-2.85 -0.35,-0.34 -0.94,-0.02 -0.84,0.46 0.19,0.94 0.39,2.18 0.39,3.29 0,2.06 -1.35,3.73 -3.41,3.73 -1.54,0 -2.8,-0.93 -3.35,-2.26 -0.1,-0.2 -0.14,-0.32 -0.2,-0.54 -0.11,-0.42 -0.66,-0.55 -0.9,-0.18 -0.18,0.27 -0.35,0.54 -0.51,0.83C4.68,9.08 4,11.46 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8c0,-3.49 -1.08,-6.73 -2.91,-9.44zM11.71,19c-1.78,0 -3.22,-1.4 -3.22,-3.14 0,-1.62 1.05,-2.76 2.81,-3.12 1.47,-0.3 2.98,-0.93 4.03,-1.92 0.28,-0.26 0.74,-0.14 0.82,0.23 0.23,1.02 0.35,2.08 0.35,3.15 0.01,2.65 -2.14,4.8 -4.79,4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wheelchair_pickup.xml b/compose/material/material/icons/generator/raw-icons/rounded/wheelchair_pickup.xml
deleted file mode 100644
index 6054ae2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wheelchair_pickup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S4.5,5.11 4.5,4zM10,10.95V9c0,-1.1 -0.9,-2 -2,-2H5C3.9,7 3,7.9 3,9v5c0,0.55 0.45,1 1,1h1v6c0,0.55 0.45,1 1,1h2.5v-0.11c-1.24,-1.26 -2,-2.99 -2,-4.89C6.5,14.42 7.91,12.16 10,10.95zM16.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3c0,-1.11 0.61,-2.06 1.5,-2.58v-2.16C9.98,12.9 8.5,14.77 8.5,17c0,2.76 2.24,5 5,5s5,-2.24 5,-5H16.5zM19,14h-4V9c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h4.46l1.92,2.88c0.31,0.46 0.93,0.58 1.39,0.28h0c0.46,-0.31 0.58,-0.93 0.28,-1.39l-2.21,-3.32C19.65,14.17 19.33,14 19,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/where_to_vote.xml b/compose/material/material/icons/generator/raw-icons/rounded/where_to_vote.xml
deleted file mode 100644
index 62785de..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/where_to_vote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2C20,5.22 16.2,2 12,2zM10.23,12.66l-1.41,-1.41c-0.39,-0.39 -0.39,-1.02 0,-1.41l0,0c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71l2.83,-2.83c0.39,-0.39 1.02,-0.39 1.41,0l0,0c0.39,0.39 0.39,1.02 0,1.41l-3.54,3.54C11.26,13.05 10.62,13.05 10.23,12.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/widgets.xml b/compose/material/material/icons/generator/raw-icons/rounded/widgets.xml
deleted file mode 100644
index 1b7a115..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/widgets.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,14v6c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1h-6c-0.55,0 -1,0.45 -1,1zM4,21h6c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1L4,13c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM3,4v6c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L11,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1zM15.95,2.4L11.7,6.64c-0.39,0.39 -0.39,1.02 0,1.41l4.25,4.25c0.39,0.39 1.02,0.39 1.41,0l4.25,-4.25c0.39,-0.39 0.39,-1.02 0,-1.41L17.37,2.4c-0.39,-0.39 -1.03,-0.39 -1.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/width_full.xml b/compose/material/material/icons/generator/raw-icons/rounded/width_full.xml
deleted file mode 100644
index b7fb52b..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/width_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h1v12H4V6zM20,18h-1V6h1V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/width_normal.xml b/compose/material/material/icons/generator/raw-icons/rounded/width_normal.xml
deleted file mode 100644
index 5f327b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/width_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h4v12H4V6zM20,18h-4V6h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/width_wide.xml b/compose/material/material/icons/generator/raw-icons/rounded/width_wide.xml
deleted file mode 100644
index aacd7be..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/width_wide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h2v12H4V6zM20,18h-2V6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi.xml
deleted file mode 100644
index edd4e9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.06,10.06c0.51,0.51 1.32,0.56 1.87,0.1 4.67,-3.84 11.45,-3.84 16.13,-0.01 0.56,0.46 1.38,0.42 1.89,-0.09 0.59,-0.59 0.55,-1.57 -0.1,-2.1 -5.71,-4.67 -13.97,-4.67 -19.69,0 -0.65,0.52 -0.7,1.5 -0.1,2.1zM9.82,17.82l1.47,1.47c0.39,0.39 1.02,0.39 1.41,0l1.47,-1.47c0.47,-0.47 0.37,-1.28 -0.23,-1.59 -1.22,-0.63 -2.68,-0.63 -3.91,0 -0.57,0.31 -0.68,1.12 -0.21,1.59zM6.09,14.09c0.49,0.49 1.26,0.54 1.83,0.13 2.44,-1.73 5.72,-1.73 8.16,0 0.57,0.4 1.34,0.36 1.83,-0.13l0.01,-0.01c0.6,-0.6 0.56,-1.62 -0.13,-2.11 -3.44,-2.49 -8.13,-2.49 -11.58,0 -0.69,0.5 -0.73,1.51 -0.12,2.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_1_bar.xml
deleted file mode 100644
index b334de7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_2_bar.xml
deleted file mode 100644
index 4ffbd7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,16 12,16zM5.38,14.37c-0.63,-0.63 -0.59,-1.71 0.13,-2.24C7.33,10.79 9.57,10 12,10c2.43,0 4.67,0.79 6.49,2.13c0.72,0.53 0.76,1.6 0.13,2.24c-0.53,0.54 -1.37,0.57 -1.98,0.12C15.33,13.55 13.73,13 12,13c-1.73,0 -3.33,0.55 -4.64,1.49C6.75,14.93 5.91,14.9 5.38,14.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_calling.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_calling.xml
deleted file mode 100644
index 8170698..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_calling.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4.95C21.79,4.78 19.67,3 16.5,3c-3.18,0 -5.29,1.78 -5.5,1.95L16.5,12L22,4.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.2,15.28l-2.54,-0.29c-0.61,-0.07 -1.21,0.14 -1.64,0.57l-1.84,1.84c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l1.85,-1.85c0.43,-0.43 0.64,-1.04 0.57,-1.64L8.72,4.8C8.6,3.79 7.75,3.03 6.73,3.03H5c-1.13,0 -2.07,0.94 -2,2.07C3.53,13.64 10.36,20.47 18.9,21c1.13,0.07 2.07,-0.87 2.07,-2v-1.73C20.97,16.25 20.21,15.4 19.2,15.28z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_calling_3.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_calling_3.xml
deleted file mode 100644
index aa7a73d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_calling_3.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.54,4.8C20.17,3.67 18.41,3 16.49,3c-1.92,0 -3.67,0.67 -5.05,1.8c-0.34,0.28 -0.36,0.79 -0.05,1.1l0.01,0.01c0.27,0.27 0.7,0.29 1,0.05c1.12,-0.91 2.54,-1.45 4.09,-1.45s2.97,0.55 4.09,1.45c0.3,0.24 0.73,0.23 1,-0.05l0.01,-0.01C21.9,5.59 21.88,5.07 21.54,4.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.45,8.04L19.45,8.04c0.33,-0.33 0.28,-0.88 -0.11,-1.15C18.54,6.33 17.55,6 16.49,6s-2.04,0.33 -2.85,0.89c-0.38,0.27 -0.44,0.82 -0.11,1.15l0,0c0.25,0.25 0.65,0.31 0.94,0.1c0.57,-0.4 1.27,-0.64 2.02,-0.64s1.45,0.24 2.02,0.64C18.8,8.35 19.2,8.29 19.45,8.04z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,8.9c-0.32,0 -0.62,0.08 -0.89,0.21c-0.3,0.15 -0.34,0.56 -0.11,0.79l0.65,0.65c0.2,0.2 0.51,0.2 0.71,0l0.65,-0.65c0.23,-0.23 0.19,-0.64 -0.11,-0.79C17.12,8.97 16.81,8.9 16.49,8.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.63,14.4l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3L4,3C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.56,0.03 1.03,-0.44 1.03,-1l0,-4.15c0,-0.48 -0.34,-0.89 -0.8,-0.98l-3.67,-0.73C16.2,14.07 15.86,14.17 15.63,14.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_channel.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_channel.xml
deleted file mode 100644
index 660f026..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_channel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.13,21c0.5,0 0.92,-0.38 0.99,-0.87c0.65,-4.89 1.95,-9.01 2.88,-10c0.91,0.98 2.19,5.01 2.86,9.82c0.08,0.6 0.59,1.05 1.19,1.05c0.54,0 1.02,-0.36 1.16,-0.89C13.83,17.73 15.11,15 16,15c0.9,0 2.19,2.83 2.81,5.2c0.12,0.48 0.56,0.8 1.05,0.8c0.62,0 1.12,-0.52 1.09,-1.14C20.75,15.89 19.81,3 16,3c-2.51,0 -3.77,5.61 -4.4,10.57C10.79,10.66 9.61,8 8,8c-2.92,0 -4.41,8.71 -4.85,11.87C3.06,20.47 3.53,21 4.13,21zM16,13c-0.99,0 -1.82,0.62 -2.5,1.5c0.57,-4.77 1.54,-8.62 2.5,-9.44c0.97,0.81 1.91,4.67 2.49,9.43C17.81,13.62 16.98,13 16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_find.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_find.xml
deleted file mode 100644
index 99eacf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_find.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14c0,-3.36 2.64,-6 6,-6c2.2,0 4.08,1.13 5.13,2.86l0.36,-0.37c0.86,-0.86 0.76,-2.27 -0.2,-3.01C19.44,5.3 15.87,4 12,4C8.13,4 4.56,5.3 1.71,7.48c-0.96,0.74 -1.06,2.15 -0.2,3.01l9.08,9.09c0.78,0.78 2.05,0.78 2.83,0l0.45,-0.45C12.14,18.09 11,16.2 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.44,16.03C20.79,15.44 21,14.75 21,14c0,-2.24 -1.76,-4 -4,-4s-4,1.76 -4,4c0,2.24 1.76,4 4,4c0.75,0 1.44,-0.21 2.03,-0.56l1.85,1.85c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L20.44,16.03zM17,16c-1.12,0 -2,-0.88 -2,-2c0,-1.12 0.88,-2 2,-2s2,0.88 2,2C19,15.12 18.12,16 17,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_lock.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_lock.xml
deleted file mode 100644
index 9ed65e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.21,8.24C20.22,5.6 16.3,4 12,4S3.78,5.6 0.79,8.24C0.35,8.63 0.32,9.3 0.73,9.71l5.62,5.63l4.94,4.95c0.39,0.39 1.02,0.39 1.42,0l2.34,-2.34V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71h2.94l1.29,-1.29C23.68,9.3 23.65,8.63 23.21,8.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_off.xml
deleted file mode 100644
index 2de664f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.06,10.14c0.56,0.46 1.38,0.42 1.89,-0.09 0.59,-0.59 0.55,-1.57 -0.1,-2.1 -3.59,-2.94 -8.2,-4.03 -12.55,-3.26l2.59,2.59c2.89,-0.03 5.8,0.92 8.17,2.86zM17.79,11.97c-0.78,-0.57 -1.63,-1 -2.52,-1.3l2.95,2.95c0.24,-0.58 0.1,-1.27 -0.43,-1.65zM13.95,16.23c-1.22,-0.63 -2.68,-0.63 -3.91,0 -0.59,0.31 -0.7,1.12 -0.23,1.59l1.47,1.47c0.39,0.39 1.02,0.39 1.41,0l1.47,-1.47c0.49,-0.47 0.39,-1.28 -0.21,-1.59zM19.68,17.9L4.12,2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L5.05,6.1c-1.01,0.5 -1.99,1.11 -2.89,1.85 -0.65,0.53 -0.69,1.51 -0.1,2.1 0.51,0.51 1.32,0.56 1.87,0.1 1,-0.82 2.1,-1.46 3.25,-1.93l2.23,2.23c-1.13,0.3 -2.21,0.8 -3.19,1.51 -0.69,0.5 -0.73,1.51 -0.13,2.11l0.01,0.01c0.49,0.49 1.26,0.54 1.83,0.13 1.19,-0.84 2.58,-1.26 3.97,-1.29l6.37,6.37c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.37 0.39,-1 0,-1.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_password.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_password.xml
deleted file mode 100644
index 3e07c5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.49,12.13C16.67,10.79 14.43,10 12,10c-2.43,0 -4.67,0.79 -6.49,2.13c-0.72,0.53 -0.76,1.6 -0.13,2.24c0.53,0.54 1.37,0.57 1.98,0.12C8.67,13.55 10.27,13 12,13c1.73,0 3.33,0.55 4.64,1.49c0.62,0.44 1.45,0.41 1.98,-0.12C19.26,13.73 19.22,12.66 18.49,12.13zM22.8,7.89C19.86,5.46 16.1,4 12,4S4.14,5.46 1.2,7.89C0.53,8.44 0.49,9.47 1.11,10.1l0,0c0.55,0.55 1.42,0.58 2.02,0.09C5.55,8.2 8.64,7 12,7s6.45,1.2 8.87,3.19c0.6,0.49 1.47,0.46 2.02,-0.09l0,0C23.51,9.47 23.47,8.44 22.8,7.89zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,16 12,16zM23,19v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C24,19.45 23.55,19 23,19zM22,19h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_protected_setup.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_protected_setup.xml
deleted file mode 100644
index c4c0187..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_protected_setup.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.7,5.3l1.44,-1.44c0.32,-0.32 0.09,-0.85 -0.35,-0.85H11.5c-0.28,0 -0.5,0.22 -0.5,0.5V9.8c0,0.45 0.54,0.67 0.85,0.35l1.45,-1.45c1.97,1.46 3.25,3.78 3.25,6.42c0,0.66 -0.08,1.31 -0.24,1.92c-0.12,0.5 0.48,0.86 0.84,0.49c1.48,-1.53 2.4,-3.61 2.4,-5.91C19.55,9.11 18.44,6.86 16.7,5.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.15,13.86L10.7,15.3c-1.97,-1.46 -3.25,-3.78 -3.25,-6.42c0,-0.66 0.08,-1.31 0.24,-1.92c0.12,-0.5 -0.48,-0.86 -0.84,-0.49c-1.48,1.53 -2.4,3.61 -2.4,5.91c0,2.52 1.1,4.77 2.84,6.33l-1.44,1.44c-0.32,0.32 -0.09,0.85 0.35,0.85h6.29c0.28,0 0.5,-0.22 0.5,-0.5v-6.29C13,13.77 12.46,13.54 12.15,13.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering.xml
deleted file mode 100644
index 779d64f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c0,-3.56 -3.11,-6.4 -6.75,-5.95 -2.62,0.32 -4.78,2.41 -5.18,5.02 -0.33,2.15 0.49,4.11 1.93,5.4 0.48,0.43 1.23,0.33 1.56,-0.23l0.01,-0.01c0.24,-0.42 0.14,-0.93 -0.22,-1.26 -1.03,-0.93 -1.59,-2.37 -1.22,-3.94 0.33,-1.42 1.48,-2.57 2.9,-2.91C13.65,8.49 16,10.47 16,13c0,1.18 -0.52,2.23 -1.33,2.96 -0.36,0.32 -0.47,0.84 -0.23,1.26l0.01,0.01c0.31,0.53 1.03,0.69 1.5,0.28C17.2,16.41 18,14.8 18,13zM10.83,3.07c-4.62,0.52 -8.35,4.33 -8.78,8.96 -0.35,3.7 1.32,7.02 4.02,9.01 0.48,0.35 1.16,0.2 1.46,-0.31 0.25,-0.43 0.14,-0.99 -0.26,-1.29 -2.28,-1.69 -3.65,-4.55 -3.16,-7.7 0.54,-3.5 3.46,-6.29 6.98,-6.68C15.91,4.51 20,8.28 20,13c0,2.65 -1.29,4.98 -3.27,6.44 -0.4,0.3 -0.51,0.85 -0.26,1.29 0.3,0.52 0.98,0.66 1.46,0.31C20.4,19.22 22,16.3 22,13c0,-5.91 -5.13,-10.62 -11.17,-9.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_error.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_error.xml
deleted file mode 100644
index b417d7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.66,7.14c-2.24,0.48 -4.04,2.3 -4.52,4.54c-0.37,1.75 0.02,3.38 0.89,4.66c0.34,0.51 1.08,0.55 1.51,0.11l0,0c0.35,-0.35 0.37,-0.88 0.1,-1.28c-0.5,-0.76 -0.75,-1.71 -0.61,-2.73c0.23,-1.74 1.67,-3.17 3.41,-3.4C13.9,8.71 16,10.61 16,13c0,0.8 -0.24,1.54 -0.64,2.16c-0.27,0.41 -0.25,0.95 0.1,1.29l0,0c0.43,0.43 1.17,0.4 1.51,-0.11C17.62,15.4 18,14.25 18,13C18,9.25 14.55,6.3 10.66,7.14zM10.25,3.15c-4.05,0.69 -7.19,3.69 -8.03,7.72c-0.66,3.17 0.2,6.16 1.97,8.38c0.37,0.46 1.07,0.49 1.49,0.07l0,0c0.36,-0.36 0.39,-0.93 0.07,-1.32c-1.34,-1.67 -2.03,-3.9 -1.66,-6.28c0.55,-3.47 3.42,-6.24 6.92,-6.65c2.76,-0.33 5.27,0.74 6.93,2.59C18.14,7.87 18.41,8 18.7,8h0c0.85,0 1.34,-1.01 0.77,-1.65C17.28,3.9 13.91,2.53 10.25,3.15zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM21,10L21,10c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-4C20,10.45 20.45,10 21,10zM21,18L21,18c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C20,18.45 20.45,18 21,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_error_rounded.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_error_rounded.xml
deleted file mode 100644
index b417d7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_error_rounded.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.66,7.14c-2.24,0.48 -4.04,2.3 -4.52,4.54c-0.37,1.75 0.02,3.38 0.89,4.66c0.34,0.51 1.08,0.55 1.51,0.11l0,0c0.35,-0.35 0.37,-0.88 0.1,-1.28c-0.5,-0.76 -0.75,-1.71 -0.61,-2.73c0.23,-1.74 1.67,-3.17 3.41,-3.4C13.9,8.71 16,10.61 16,13c0,0.8 -0.24,1.54 -0.64,2.16c-0.27,0.41 -0.25,0.95 0.1,1.29l0,0c0.43,0.43 1.17,0.4 1.51,-0.11C17.62,15.4 18,14.25 18,13C18,9.25 14.55,6.3 10.66,7.14zM10.25,3.15c-4.05,0.69 -7.19,3.69 -8.03,7.72c-0.66,3.17 0.2,6.16 1.97,8.38c0.37,0.46 1.07,0.49 1.49,0.07l0,0c0.36,-0.36 0.39,-0.93 0.07,-1.32c-1.34,-1.67 -2.03,-3.9 -1.66,-6.28c0.55,-3.47 3.42,-6.24 6.92,-6.65c2.76,-0.33 5.27,0.74 6.93,2.59C18.14,7.87 18.41,8 18.7,8h0c0.85,0 1.34,-1.01 0.77,-1.65C17.28,3.9 13.91,2.53 10.25,3.15zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM21,10L21,10c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-4C20,10.45 20.45,10 21,10zM21,18L21,18c0.55,0 1,0.45 1,1v0c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v0C20,18.45 20.45,18 21,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_off.xml
deleted file mode 100644
index 63c6515..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wifi_tethering_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.11,3.51L2.11,3.51C1.71,3.9 1.71,4.54 2.1,4.93l1.98,1.98C2.78,8.6 2,10.71 2,13c0,2.36 0.82,4.53 2.19,6.24c0.37,0.47 1.07,0.5 1.5,0.08l0,0c0.36,-0.36 0.39,-0.92 0.08,-1.32C4.66,16.63 4,14.89 4,13c0,-1.75 0.57,-3.35 1.51,-4.66l1.43,1.43C6.35,10.7 6,11.81 6,13c0,1.25 0.38,2.4 1.03,3.35c0.34,0.5 1.08,0.54 1.51,0.11l0,0c0.35,-0.35 0.37,-0.88 0.1,-1.29C8.24,14.54 8,13.8 8,13c0,-0.63 0.15,-1.23 0.41,-1.76l1.61,1.61c0,0.05 -0.02,0.1 -0.02,0.15c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15c0.05,0 0.1,-0.01 0.16,-0.02l6.91,6.91c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L3.51,3.51C3.12,3.12 2.49,3.12 2.11,3.51zM17.7,14.87C17.89,14.28 18,13.65 18,13c0,-3.31 -2.69,-6 -6,-6c-0.65,0 -1.28,0.1 -1.87,0.3l1.71,1.71C11.89,9 11.95,9 12,9c2.21,0 4,1.79 4,4c0,0.05 0,0.11 -0.01,0.16L17.7,14.87zM12,5c4.42,0 8,3.58 8,8c0,1.22 -0.27,2.37 -0.77,3.4l1.49,1.49C21.53,16.45 22,14.78 22,13c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.46 -4.89,1.28l1.48,1.48C9.63,5.27 10.78,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wind_power.xml b/compose/material/material/icons/generator/raw-icons/rounded/wind_power.xml
deleted file mode 100644
index 1c95ba8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wind_power.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3H5C4.45,3 4,3.45 4,4v0c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v0C10,3.45 9.55,3 9,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7H2C1.45,7 1,7.45 1,8v0c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v0C6,7.45 5.55,7 5,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21h3c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v0C3,20.55 3.45,21 4,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.73,10.61c0.75,0.23 1.3,0.78 1.57,1.46l4.27,-7.11c0.65,-1.08 0.3,-2.48 -0.78,-3.13c-0.87,-0.52 -1.99,-0.41 -2.73,0.29l-3.43,3.21C12.23,5.7 12,6.23 12,6.78v3.93C12.36,10.56 12.98,10.38 13.73,10.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.61,12.27c0.16,-0.52 0.48,-0.96 0.89,-1.27H3.28C2.02,11 1,12.02 1,13.28c0,1.02 0.67,1.91 1.65,2.19l4.51,1.29c0.53,0.15 1.1,0.08 1.58,-0.21l2.69,-1.61C10.66,14.32 10.3,13.27 10.61,12.27z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.21,18.61l-2.28,-4.1c-0.27,-0.48 -0.73,-0.83 -1.26,-0.97l-3.18,-0.8c0.03,0.32 0,0.66 -0.1,0.99c-0.32,1.06 -1.28,1.77 -2.39,1.77c-0.61,0 -0.99,-0.22 -1,-0.22V21c-1.1,0 -2,0.9 -2,2h6c0,-1.1 -0.9,-2 -2,-2v-4.28l4.61,4.61c0.89,0.89 2.33,0.89 3.22,0C22.55,20.61 22.71,19.5 22.21,18.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.56,14.43c0.79,0.24 1.63,-0.2 1.87,-1c0.24,-0.79 -0.2,-1.63 -1,-1.87c-0.79,-0.24 -1.63,0.2 -1.87,1C11.32,13.35 11.77,14.19 12.56,14.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/window.xml b/compose/material/material/icons/generator/raw-icons/rounded/window.xml
deleted file mode 100644
index 85e9280..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/window.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11V3H5C3.9,3 3,3.9 3,5v6H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11h8V5c0,-1.1 -0.9,-2 -2,-2h-6V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13H3v6c0,1.1 0.9,2 2,2h6V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v8h6c1.1,0 2,-0.9 2,-2v-6H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wine_bar.xml b/compose/material/material/icons/generator/raw-icons/rounded/wine_bar.xml
deleted file mode 100644
index fbcbfdd..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wine_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3C6.45,3 6,3.45 6,4l0,5c0,2.97 2.16,5.43 5,5.91V19H9c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1h-2v-4.09c2.84,-0.48 5,-2.94 5,-5.91l0,-5c0,-0.55 -0.45,-1 -1,-1H7zM16,8H8l0,-3h8C16,5 16,8 16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/woman.xml b/compose/material/material/icons/generator/raw-icons/rounded/woman.xml
deleted file mode 100644
index 4764fd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.45,14.63l-2.52,-6.32c-0.32,-0.79 -1.08,-1.3 -1.94,-1.31c-0.85,0 -1.62,0.51 -1.94,1.31l-2.52,6.32C7.28,15.29 7.77,16 8.47,16H10v5c0,0.55 0.45,1 1,1h1h1c0.55,0 1,-0.45 1,-1v-5h1.53C16.23,16 16.72,15.29 16.45,14.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/woman_2.xml b/compose/material/material/icons/generator/raw-icons/rounded/woman_2.xml
deleted file mode 100644
index 57ab3d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/woman_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,8.31c-0.38,-0.96 -1.42,-1.52 -2.48,-1.24c-0.66,0.17 -1.18,0.7 -1.43,1.34l-2.48,6.22C7.28,15.29 7.77,16 8.47,16h2.03v5c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-5h2.03c0.71,0 1.19,-0.71 0.93,-1.37L13.94,8.31z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/work.xml b/compose/material/material/icons/generator/raw-icons/rounded/work.xml
deleted file mode 100644
index 4cc0c1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM14,6h-4L10,4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/work_history.xml b/compose/material/material/icons/generator/raw-icons/rounded/work_history.xml
deleted file mode 100644
index 170ef05..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/work_history.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c1.49,0 2.87,0.47 4,1.26V8c0,-1.11 -0.89,-2 -2,-2h-4V4c0,-1.11 -0.89,-2 -2,-2h-4C8.89,2 8,2.89 8,4v2H4C2.89,6 2.01,6.89 2.01,8L2,19c0,1.11 0.89,2 2,2h7.68C11.25,20.09 11,19.08 11,18C11,14.13 14.13,11 18,11zM10,4h4v2h-4V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/work_off.xml b/compose/material/material/icons/generator/raw-icons/rounded/work_off.xml
deleted file mode 100644
index bf2f8a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/work_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.11,2.54c-0.39,-0.39 -1.02,-0.39 -1.41,0 -0.39,0.39 -0.39,1.02 0,1.41L4.74,6H4c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h15.74l1.29,1.29c0.39,0.39 1.02,0.39 1.41,0 0.39,-0.39 0.39,-1.02 0,-1.41L4.11,2.54zM10,4h4v2h-3.6L22,17.6V8c0,-1.11 -0.89,-2 -2,-2h-4V4c0,-1.11 -0.89,-2 -2,-2h-4c-0.99,0 -1.8,0.7 -1.96,1.64L10,5.6V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/work_outline.xml b/compose/material/material/icons/generator/raw-icons/rounded/work_outline.xml
deleted file mode 100644
index 872628e..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/work_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6L14,4h-4v2h4zM4,9v9c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1L20,9c0,-0.55 -0.45,-1 -1,-1L5,8c-0.55,0 -1,0.45 -1,1zM20,6c1.11,0 2,0.89 2,2v11c0,1.11 -0.89,2 -2,2L4,21c-1.11,0 -2,-0.89 -2,-2l0.01,-11c0,-1.11 0.88,-2 1.99,-2h4L8,4c0,-1.11 0.89,-2 2,-2h4c1.11,0 2,0.89 2,2v2h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/workspace_premium.xml b/compose/material/material/icons/generator/raw-icons/rounded/workspace_premium.xml
deleted file mode 100644
index 819afd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/workspace_premium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.92,12.75L12,11.93l1.07,0.81c0.39,0.29 0.92,-0.08 0.78,-0.55l-0.42,-1.36l1.2,-0.95C15,9.6 14.79,9 14.31,9h-1.4l-0.43,-1.34c-0.15,-0.46 -0.8,-0.46 -0.95,0L11.09,9H9.68C9.21,9 9,9.6 9.37,9.89l1.19,0.95l-0.42,1.36C10,12.67 10.53,13.04 10.92,12.75zM6,21.61c0,0.68 0.67,1.16 1.32,0.95L12,21l4.68,1.56C17.33,22.78 18,22.3 18,21.61v-6.33c1.24,-1.41 2,-3.25 2,-5.28c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8c0,2.03 0.76,3.87 2,5.28V21.61zM12,4c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/workspaces.xml b/compose/material/material/icons/generator/raw-icons/rounded/workspaces.xml
deleted file mode 100644
index 875a70a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/workspaces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S8.2,13 6,13zM12,3C9.8,3 8,4.8 8,7s1.8,4 4,4s4,-1.8 4,-4S14.2,3 12,3zM18,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S20.2,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wrap_text.xml b/compose/material/material/icons/generator/raw-icons/rounded/wrap_text.xml
deleted file mode 100644
index 4d17718..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wrap_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h14c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L5,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM16.83,11L5,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h12.13c1,0 1.93,0.67 2.09,1.66 0.21,1.25 -0.76,2.34 -1.97,2.34L15,17v-0.79c0,-0.45 -0.54,-0.67 -0.85,-0.35l-1.79,1.79c-0.2,0.2 -0.2,0.51 0,0.71l1.79,1.79c0.32,0.32 0.85,0.09 0.85,-0.35L15,19h2c2.34,0 4.21,-2.01 3.98,-4.39 -0.2,-2.08 -2.06,-3.61 -4.15,-3.61zM9,17L5,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h4c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wrong_location.xml b/compose/material/material/icons/generator/raw-icons/rounded/wrong_location.xml
deleted file mode 100644
index 7ee4c77..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wrong_location.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.42,4.5l1.38,-1.38c0.39,-0.39 0.39,-1.02 0,-1.41l0,0c-0.39,-0.39 -1.02,-0.39 -1.41,0L19,3.08l-1.38,-1.38c-0.39,-0.39 -1.02,-0.39 -1.41,0s-0.39,1.02 0,1.41l1.38,1.38l-1.38,1.38c-0.39,0.39 -0.39,1.02 0,1.41l0,0c0.39,0.39 1.02,0.39 1.41,0L19,5.92l1.38,1.38c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L20.42,4.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.67,8L19,7.33l-0.59,0.59c-0.7,0.7 -1.84,0.88 -2.65,0.3c-1.03,-0.74 -1.12,-2.19 -0.26,-3.05l0.67,-0.67L15.5,3.83c-0.36,-0.36 -0.54,-0.81 -0.57,-1.28C14.01,2.19 13.02,2 12,2c-4.2,0 -8,3.22 -8,8.2c0,3.18 2.45,6.92 7.34,11.23c0.38,0.33 0.95,0.33 1.33,0C17.55,17.12 20,13.38 20,10.2c0,-0.76 -0.1,-1.47 -0.26,-2.14C19.72,8.04 19.69,8.02 19.67,8zM12,12c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2c1.1,0 2,0.9 2,2S13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/wysiwyg.xml b/compose/material/material/icons/generator/raw-icons/rounded/wysiwyg.xml
deleted file mode 100644
index ddb723d..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/wysiwyg.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM16,12H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v0C17,11.55 16.55,12 16,12zM12,16H8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v0C13,15.55 12.55,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/yard.xml b/compose/material/material/icons/generator/raw-icons/rounded/yard.xml
deleted file mode 100644
index e772edc..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/yard.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM8,8.22c0,-0.86 0.7,-1.56 1.56,-1.56c0.33,0 0.64,0.1 0.89,0.28l-0.01,-0.12c0,-0.86 0.7,-1.56 1.56,-1.56s1.56,0.7 1.56,1.56l-0.01,0.12c0.26,-0.18 0.56,-0.28 0.89,-0.28c0.86,0 1.56,0.7 1.56,1.56c0,0.62 -0.37,1.16 -0.89,1.4C15.63,9.87 16,10.41 16,11.03c0,0.86 -0.7,1.56 -1.56,1.56c-0.33,0 -0.64,-0.11 -0.89,-0.28l0.01,0.12c0,0.86 -0.7,1.56 -1.56,1.56s-1.56,-0.7 -1.56,-1.56l0.01,-0.12c-0.26,0.18 -0.56,0.28 -0.89,0.28C8.7,12.59 8,11.89 8,11.03c0,-0.62 0.37,-1.16 0.89,-1.4C8.37,9.38 8,8.84 8,8.22zM12,19c-2.83,0 -5.21,-1.97 -5.84,-4.61c-0.18,-0.74 0.49,-1.4 1.23,-1.23C10.03,13.79 12,16.17 12,19c0,-2.83 1.97,-5.21 4.61,-5.84c0.74,-0.18 1.4,0.49 1.23,1.23C17.21,17.03 14.83,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9.62m-1.56,0a1.56,1.56 0,1 1,3.12 0a1.56,1.56 0,1 1,-3.12 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/youtube_searched_for.xml b/compose/material/material/icons/generator/raw-icons/rounded/youtube_searched_for.xml
deleted file mode 100644
index ad2c33c..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/youtube_searched_for.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.01,14h-0.8l-0.27,-0.27c1.15,-1.34 1.76,-3.14 1.51,-5.09C17.11,6 15.1,3.78 12.5,3.18 8.26,2.2 4.51,5.53 4.51,9.5h-2.1c-0.47,0 -0.68,0.59 -0.31,0.89l3.4,2.75c0.19,0.2 0.51,0.21 0.71,0.01l2.9,-2.79c0.32,-0.31 0.1,-0.86 -0.35,-0.86H6.51c0,-2.49 2,-4.48 4.46,-4.5 2.44,-0.02 4.54,2.05 4.54,4.49 0,2.48 -2.02,4.51 -4.5,4.51 -0.45,0 -0.89,-0.07 -1.3,-0.19 -0.34,-0.1 -0.71,0 -0.96,0.26 -0.53,0.53 -0.32,1.45 0.39,1.66 0.59,0.17 1.22,0.27 1.87,0.27 1.61,0 3.08,-0.59 4.22,-1.57l0.27,0.27v0.79l4.27,4.25c0.41,0.41 1.07,0.41 1.48,0 0.41,-0.41 0.41,-1.08 0,-1.49L17.01,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/zoom_in.xml b/compose/material/material/icons/generator/raw-icons/rounded/zoom_in.xml
deleted file mode 100644
index 047cc2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/zoom_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27c1.2,-1.4 1.82,-3.31 1.48,-5.34 -0.47,-2.78 -2.79,-5 -5.59,-5.34 -4.23,-0.52 -7.78,3.04 -7.27,7.27 0.34,2.8 2.56,5.12 5.34,5.59 2.03,0.34 3.94,-0.28 5.34,-1.48l0.27,0.28v0.79l4.26,4.25c0.41,0.41 1.07,0.41 1.48,0l0.01,-0.01c0.41,-0.41 0.41,-1.07 0,-1.48L15.5,14zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM9.5,7c-0.28,0 -0.5,0.22 -0.5,0.5L9,9L7.5,9c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5L9,10v1.5c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5L10,10h1.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5L10,9L10,7.5c0,-0.28 -0.22,-0.5 -0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/zoom_in_map.xml b/compose/material/material/icons/generator/raw-icons/rounded/zoom_in_map.xml
deleted file mode 100644
index ae3acaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/zoom_in_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8c0,0.55 0.45,1 1,1l4,0c0.55,0 1,-0.45 1,-1l0,-4c0,-0.55 -0.45,-1 -1,-1S7,3.45 7,4l0,1.59L4.62,3.21c-0.39,-0.39 -1.02,-0.39 -1.41,0c-0.39,0.39 -0.39,1.02 0,1.41L5.59,7L4,7C3.45,7 3,7.45 3,8zM20,7h-1.59l2.38,-2.38c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0L17,5.59V4c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1S20.55,7 20,7zM4,17h1.59l-2.38,2.38c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L7,18.41L7,20c0,0.55 0.45,1 1,1s1,-0.45 1,-1l0,-4c0,-0.55 -0.45,-1 -1,-1l-4,0c-0.55,0 -1,0.45 -1,1C3,16.55 3.45,17 4,17zM21,16c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1.59l2.38,2.38c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L18.41,17H20C20.55,17 21,16.55 21,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/zoom_out.xml b/compose/material/material/icons/generator/raw-icons/rounded/zoom_out.xml
deleted file mode 100644
index 523b959..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/zoom_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27c1.2,-1.4 1.82,-3.31 1.48,-5.34 -0.47,-2.78 -2.79,-5 -5.59,-5.34 -4.23,-0.52 -7.79,3.04 -7.27,7.27 0.34,2.8 2.56,5.12 5.34,5.59 2.03,0.34 3.94,-0.28 5.34,-1.48l0.27,0.28v0.79l4.26,4.25c0.41,0.41 1.07,0.41 1.48,0l0.01,-0.01c0.41,-0.41 0.41,-1.07 0,-1.48L15.5,14zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM7.5,9h4c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5h-4c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/rounded/zoom_out_map.xml b/compose/material/material/icons/generator/raw-icons/rounded/zoom_out_map.xml
deleted file mode 100644
index 1ad9997..0000000
--- a/compose/material/material/icons/generator/raw-icons/rounded/zoom_out_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.85,3.85L17.3,5.3l-2.18,2.16c-0.39,0.39 -0.39,1.03 0,1.42l0,0c0.39,0.39 1.03,0.39 1.42,0L18.7,6.7l1.45,1.45C20.46,8.46 21,8.24 21,7.79V3.5C21,3.22 20.78,3 20.5,3h-4.29C15.76,3 15.54,3.54 15.85,3.85zM3.85,8.15L5.3,6.7l2.16,2.18c0.39,0.39 1.03,0.39 1.42,0l0,0c0.39,-0.39 0.39,-1.03 0,-1.42L6.7,5.3l1.45,-1.45C8.46,3.54 8.24,3 7.79,3H3.5C3.22,3 3,3.22 3,3.5v4.29C3,8.24 3.54,8.46 3.85,8.15zM8.15,20.15L6.7,18.7l2.18,-2.16c0.39,-0.39 0.39,-1.03 0,-1.42l0,0c-0.39,-0.39 -1.03,-0.39 -1.42,0L5.3,17.3l-1.45,-1.45C3.54,15.54 3,15.76 3,16.21v4.29C3,20.78 3.22,21 3.5,21h4.29C8.24,21 8.46,20.46 8.15,20.15zM20.15,15.85L18.7,17.3l-2.16,-2.18c-0.39,-0.39 -1.03,-0.39 -1.42,0l0,0c-0.39,0.39 -0.39,1.03 0,1.42l2.18,2.16l-1.45,1.45C15.54,20.46 15.76,21 16.21,21h4.29c0.28,0 0.5,-0.22 0.5,-0.5v-4.29C21,15.76 20.46,15.54 20.15,15.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/10k.xml b/compose/material/material/icons/generator/raw-icons/sharp/10k.xml
deleted file mode 100644
index d6d4720..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/10k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10.5h1.5v3H10V10.5zM21,3H3v18h18V3zM7.5,15H6v-4.5H4.5V9h3V15zM13,9v6H8.5V9H13zM19,15h-1.75l-1.75,-2.25V15H14V9h1.5v2.25L17.25,9H19l-2.25,3L19,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/10mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/10mp.xml
deleted file mode 100644
index 0c28f91..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/10mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7H15v3h-1.5V7zM21,3H3v18h18V3zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM15,18.5h-1.5v-6H18V17h-3V18.5zM10,5.5v6H8.5V7H7V5.5H10zM16.5,5.5v6H12v-6H16.5zM15,14h1.5v1.5H15V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/11mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/11mp.xml
deleted file mode 100644
index 8ece48d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/11mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM8,5.5h3v6H9.5V7H8V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM13,5.5h3v6h-1.5V7H13V5.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/123.xml b/compose/material/material/icons/generator/raw-icons/sharp/123.xml
deleted file mode 100644
index 0456975..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/123.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15H5.5v-4.5H4V9h3V15zM13.5,13.5h-3v-1h3V9H9v1.5h3v1H9V15h4.5V13.5zM19.5,15V9H15v1.5h3v1h-2v1h2v1h-3V15H19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/12mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/12mp.xml
deleted file mode 100644
index acd8ddf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/12mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H12V8zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/13mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/13mp.xml
deleted file mode 100644
index bcc742a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/13mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,10h3V9h-2V8h2V7h-3V5.5h4.5v6H12V10zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/14mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/14mp.xml
deleted file mode 100644
index 2b96a78..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/14mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,5.5h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/15mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/15mp.xml
deleted file mode 100644
index 20c5f7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/15mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,10h3V9h-3V5.5h4.5V7h-3v1h3v3.5H12V10zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/16mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/16mp.xml
deleted file mode 100644
index 27ac3ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/16mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,5.5h4.5V7h-3v1h3v3.5H12V5.5zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/17mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/17mp.xml
deleted file mode 100644
index 105bc2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/17mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM12,7V5.5h4.87l-1.87,6h-1.75L14.62,7H12zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/18_up_rating.xml b/compose/material/material/icons/generator/raw-icons/sharp/18_up_rating.xml
deleted file mode 100644
index ac13cd8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/18_up_rating.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM10,15H8.5v-4.5H7V9h3V15zM16,14c0,0.55 -0.45,1 -1,1h-2.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H15c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/18mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/18mp.xml
deleted file mode 100644
index 2412504..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/18mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,6.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,5.5h4.5v6H12V5.5zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/19mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/19mp.xml
deleted file mode 100644
index 6987b30..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/19mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,6.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,10h3V9h-3V5.5h4.5v6H12V10zM7,5.5h3v6H8.5V7H7V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/1k.xml b/compose/material/material/icons/generator/raw-icons/sharp/1k.xml
deleted file mode 100644
index 1a23da0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/1k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM10,15H8.5v-4.5H7V9h3V15zM17,15h-1.75l-1.75,-2.25V15H12V9h1.5v2.25L15.25,9H17l-2.25,3L17,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/1k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/1k_plus.xml
deleted file mode 100644
index a19711c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/1k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM9,15H7.5v-4.5H6V9h3V15zM13.75,15L12,12.75V15h-1.5V9H12v2.25L13.75,9h1.75l-2.25,3l2.25,3H13.75zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/1x_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/1x_mobiledata.xml
deleted file mode 100644
index 2b10b9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/1x_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h4v10H6V9H4V7zM15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2,-3.34l2,3.34H19L15.83,11.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/20mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/20mp.xml
deleted file mode 100644
index 8098164..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/20mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7h1.5v3h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM13,5.5h4.5v6H13V5.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/21mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/21mp.xml
deleted file mode 100644
index 997dbe7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/21mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM7.5,8h3V7h-3V5.5H12V9H9v1h3v1.5H7.5V8zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM13,5.5h3v6h-1.5V7H13V5.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/22mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/22mp.xml
deleted file mode 100644
index 2d6a9bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/22mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM13,8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H13V8zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/23mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/23mp.xml
deleted file mode 100644
index 3ef9500..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/23mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM13,10h3V9h-2V8h2V7h-3V5.5h4.5v6H13V10zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/24mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/24mp.xml
deleted file mode 100644
index 9699b5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/24mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17zM18.5,10h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/2k.xml b/compose/material/material/icons/generator/raw-icons/sharp/2k.xml
deleted file mode 100644
index 2ec2c93..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/2k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM8,12.5v1h3V15H6.5v-3.5h3v-1h-3V9H11v3.5H8zM18,15h-1.75l-1.75,-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/2k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/2k_plus.xml
deleted file mode 100644
index 411494b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/2k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM10,12.5H7.5v1H10V15H6v-3.5h2.5v-1H6V9h4V12.5zM14.25,15l-1.75,-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15H14.25zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/2mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/2mp.xml
deleted file mode 100644
index 97e64d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/2mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM10,8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H10V8zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/30fps.xml b/compose/material/material/icons/generator/raw-icons/sharp/30fps.xml
deleted file mode 100644
index 07d2e75..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/30fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5v3h6v2.5H3v3h5V16H2v3h9V5H2zM19,8v8h-4V8H19M22,5H12v14h10V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/30fps_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/30fps_select.xml
deleted file mode 100644
index fd44e49..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/30fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v2h5v2H5v2h4v2H4v2h7V4H4zM13,4h7v10h-7V4zM18,6h-3v6h3V6zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/360.xml b/compose/material/material/icons/generator/raw-icons/sharp/360.xml
deleted file mode 100644
index 8be05d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/360.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7C6.48,7 2,9.24 2,12c0,2.24 2.94,4.13 7,4.77V20l4,-4 -4,-4v2.73c-3.15,-0.56 -5,-1.9 -5,-2.73 0,-1.06 3.04,-3 8,-3s8,1.94 8,3c0,0.73 -1.46,1.89 -4,2.53v2.05c3.53,-0.77 6,-2.53 6,-4.58 0,-2.76 -4.48,-5 -10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/3d_rotation.xml b/compose/material/material/icons/generator/raw-icons/sharp/3d_rotation.xml
deleted file mode 100644
index 3193e77..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/3d_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.53,21.48C4.26,19.94 1.92,16.76 1.56,13L0.06,13c0.51,6.16 5.66,11 11.95,11l0.66,-0.03 -3.81,-3.81 -1.33,1.32zM8.42,14.96c-0.19,0 -0.37,-0.03 -0.52,-0.08 -0.16,-0.06 -0.29,-0.13 -0.4,-0.24 -0.11,-0.1 -0.2,-0.22 -0.26,-0.37 -0.06,-0.14 -0.09,-0.3 -0.09,-0.47h-1.3c0,0.36 0.07,0.68 0.21,0.95 0.14,0.27 0.33,0.5 0.56,0.69 0.24,0.18 0.51,0.32 0.82,0.41 0.3,0.1 0.62,0.15 0.96,0.15 0.37,0 0.72,-0.05 1.03,-0.15 0.32,-0.1 0.6,-0.25 0.83,-0.44s0.42,-0.43 0.55,-0.72 0.2,-0.61 0.2,-0.97c0,-0.19 -0.02,-0.38 -0.07,-0.56 -0.05,-0.18 -0.12,-0.35 -0.23,-0.51 -0.1,-0.16 -0.24,-0.3 -0.4,-0.43 -0.17,-0.13 -0.37,-0.23 -0.61,-0.31 0.2,-0.09 0.37,-0.2 0.52,-0.33 0.15,-0.13 0.27,-0.27 0.37,-0.42 0.1,-0.15 0.17,-0.3 0.22,-0.46s0.07,-0.32 0.07,-0.48c0,-0.36 -0.06,-0.68 -0.18,-0.96s-0.29,-0.51 -0.51,-0.69c-0.2,-0.19 -0.47,-0.33 -0.77,-0.43C9.11,8.05 8.77,8 8.4,8c-0.36,0 -0.69,0.05 -1,0.16 -0.3,0.11 -0.57,0.26 -0.79,0.45 -0.21,0.19 -0.38,0.41 -0.51,0.67 -0.12,0.26 -0.18,0.54 -0.18,0.85h1.3c0,-0.17 0.03,-0.32 0.09,-0.45s0.14,-0.25 0.25,-0.34 0.23,-0.17 0.38,-0.22 0.3,-0.08 0.48,-0.08c0.4,0 0.7,0.1 0.89,0.31 0.19,0.2 0.29,0.49 0.29,0.86 0,0.18 -0.03,0.34 -0.08,0.49s-0.14,0.27 -0.25,0.37c-0.11,0.1 -0.25,0.18 -0.41,0.24 -0.16,0.06 -0.36,0.09 -0.58,0.09h-0.77v1.03h0.77c0.22,0 0.42,0.02 0.6,0.07s0.33,0.13 0.45,0.23c0.12,0.11 0.22,0.24 0.29,0.4s0.1,0.35 0.1,0.57c0,0.41 -0.12,0.72 -0.35,0.93 -0.23,0.23 -0.55,0.33 -0.95,0.33zM16.97,9.04c-0.32,-0.33 -0.7,-0.59 -1.14,-0.77 -0.44,-0.18 -0.93,-0.27 -1.47,-0.27L12,8v8h2.3c0.55,0 1.06,-0.09 1.51,-0.27s0.84,-0.43 1.16,-0.76c0.32,-0.33 0.57,-0.73 0.74,-1.19 0.17,-0.47 0.26,-0.99 0.26,-1.57v-0.4c0,-0.58 -0.09,-1.1 -0.26,-1.57s-0.42,-0.87 -0.74,-1.2zM16.58,12.2c0,0.42 -0.05,0.79 -0.14,1.13 -0.1,0.33 -0.24,0.62 -0.43,0.85 -0.19,0.23 -0.43,0.41 -0.71,0.53 -0.29,0.12 -0.62,0.18 -0.99,0.18h-0.91L13.4,9.12h0.97c0.72,0 1.27,0.23 1.64,0.69 0.38,0.46 0.57,1.12 0.57,1.99v0.4zM12.01,0l-0.66,0.03 3.81,3.81 1.33,-1.33c3.27,1.55 5.61,4.72 5.96,8.48h1.5C23.45,4.84 18.3,0 12.01,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/3g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/3g_mobiledata.xml
deleted file mode 100644
index 1e3c98f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/3g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7v2h5v2H4v2h4v2H3v2h7V7H3zM21,11v6h-9V7h9v2h-7v6h5v-2h-2.5v-2H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/3k.xml b/compose/material/material/icons/generator/raw-icons/sharp/3k.xml
deleted file mode 100644
index 23cfa7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/3k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM11,9v6H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H11zM18,15h-1.75l-1.75,-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/3k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/3k_plus.xml
deleted file mode 100644
index 5352f33..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/3k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM10,9v6H5.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10zM16,15h-1.75l-1.75,-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/3mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/3mp.xml
deleted file mode 100644
index 82c4e2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/3mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM10,10h3V9h-2V8h2V7h-3V5.5h4.5v6H10V10zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/3p.xml b/compose/material/material/icons/generator/raw-icons/sharp/3p.xml
deleted file mode 100644
index e240663..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/3p.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v20l4,-4h16V2H2zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,6 12,6zM16,14H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,11.21 11.01,11 12,11c0.99,0 1.93,0.21 2.78,0.58C15.52,11.9 16,12.62 16,13.43V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/4g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/4g_mobiledata.xml
deleted file mode 100644
index 83b420d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/4g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zM17,11v2h2v2h-5V9h7V7h-9v10h9v-6H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/4g_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/4g_plus_mobiledata.xml
deleted file mode 100644
index 18f9c9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/4g_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11v2h2v2h-4V9h6V7H9v10h8v-6H13zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11zM7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/4k.xml b/compose/material/material/icons/generator/raw-icons/sharp/4k.xml
deleted file mode 100644
index 54f685b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/4k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM12,13.51h-1L11,15L9.5,15v-1.5h-3L6.5,9L8,9v3h1.5L9.5,9L11,9v3h1v1.51zM18.2,15h-1.7l-2,-3v3L13,15L13,9h1.5v3l2,-3h1.7l-2,3 2,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/4k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/4k_plus.xml
deleted file mode 100644
index 16fce41..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/4k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM11,13.5h-1V15H8.5v-1.5h-3V9H7v3h1.5V9H10v3h1V13.5zM14.75,15L13,12.75V15h-1.5V9H13v2.25L14.75,9h1.75l-2.25,3l2.25,3H14.75zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/4mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/4mp.xml
deleted file mode 100644
index ef5c655..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/4mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM9.5,10V5.5H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10H9.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/5g.xml b/compose/material/material/icons/generator/raw-icons/sharp/5g.xml
deleted file mode 100644
index 816817a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/5g.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13l2,0l0,2l-5,0l0,-6l7,0l0,-2l-9,0l0,10l9,0l0,-6l-4,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13l5,0l0,2l-5,0l0,2l7,0l0,-6l-5,0l0,-2l5,0l0,-2l-7,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/5k.xml b/compose/material/material/icons/generator/raw-icons/sharp/5k.xml
deleted file mode 100644
index 736a833..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/5k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM11,10.5H8v1h3V15H6.5v-1.5h3v-1h-3V9H11V10.5zM18,15h-1.75l-1.75,-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/5k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/5k_plus.xml
deleted file mode 100644
index ca4e177..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/5k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM10,10.5H7.5v1H10V15H6v-1.5h2.5v-1H6V9h4V10.5zM16,15h-1.75l-1.75,-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/5mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/5mp.xml
deleted file mode 100644
index c6cfa80..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/5mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM10,10h3V9h-3V5.5h4.5V7h-3v1h3v3.5H10V10zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/60fps.xml b/compose/material/material/icons/generator/raw-icons/sharp/60fps.xml
deleted file mode 100644
index 539c721..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/60fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8v8h-4V8H19M22,5H12v14h10V5zM10,8V5H2v14h9v-9H5V8H10zM8,13v3H5v-3H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/60fps_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/60fps_select.xml
deleted file mode 100644
index fe7e697..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/60fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6v6h-3V6H18zM20,4h-7v10h7V4zM11,6V4H4v10h7V8H6V6H11zM9,10v2H6v-2H9zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/6_ft_apart.xml b/compose/material/material/icons/generator/raw-icons/sharp/6_ft_apart.xml
deleted file mode 100644
index 23aaaa9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/6_ft_apart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM10,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C7.93,7.21 6.99,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h8V9.43zM18,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S16.9,6 18,6zM22,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C19.93,7.21 18.99,7 18,7c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,7.9 14,8.62 14,9.43V10h8V9.43zM19,17v-2.01L5,15v2l-3,-3l3,-3v2.01L19,13v-2l3,3L19,17zM10,19v-1H7v4h3v-2.5H8V19H10zM9,20.5V21H8v-0.5H9zM17.5,19h-1v3h-1v-3h-1v-1h3V19zM12.5,19v0.5h1v1h-1V22h-1v-4H14v1H12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/6k.xml b/compose/material/material/icons/generator/raw-icons/sharp/6k.xml
deleted file mode 100644
index 60b0588..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/6k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5V14H8V12.5zM21,3H3v18h18V3zM11,10.5H8v1h3V15H6.5V9H11V10.5zM18,15h-1.75l-1.75,-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/6k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/6k_plus.xml
deleted file mode 100644
index 6b5d686..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/6k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h1V14h-1V12.5zM21,3H3v18h18V3zM10,10.5H7.5v1H10V15H6V9h4V10.5zM16,15h-1.75l-1.75,-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/6mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/6mp.xml
deleted file mode 100644
index 0448540..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/6mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM10,5.5h4.5V7h-3v1h3v3.5H10V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/7k.xml b/compose/material/material/icons/generator/raw-icons/sharp/7k.xml
deleted file mode 100644
index f839002..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/7k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM9.5,15H7.75l1.38,-4.5H6.5V9h4.86L9.5,15zM18,15h-1.75l-1.75,-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/7k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/7k_plus.xml
deleted file mode 100644
index d519015..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/7k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM8.5,15H6.75l1.38,-4.5H5.5V9h4.86L8.5,15zM16,15h-1.75l-1.75,-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/7mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/7mp.xml
deleted file mode 100644
index 239c3ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/7mp.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM11.25,11.5L12.62,7H10V5.5h4.87l-1.87,6H11.25zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/8k.xml b/compose/material/material/icons/generator/raw-icons/sharp/8k.xml
deleted file mode 100644
index 2ee483c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/8k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5V14H8V12.5zM8,10h1.5v1.5H8V10zM21,3H3v18h18V3zM11,10v4c0,0.55 -0.45,1 -1,1H7.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H10C10.55,9 11,9.45 11,10zM18,15h-1.75l-1.75,-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/8k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/8k_plus.xml
deleted file mode 100644
index 9ebce78..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/8k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h1V14h-1V12.5zM7.5,10h1v1.5h-1V10zM21,3H3v18h18V3zM10,14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1V14zM16,15h-1.75l-1.75,-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/8mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/8mp.xml
deleted file mode 100644
index 9070fa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/8mp.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6.5h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM10,5.5h4.5v6H10V5.5zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/9k.xml b/compose/material/material/icons/generator/raw-icons/sharp/9k.xml
deleted file mode 100644
index 6146ad5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/9k.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10h1.5v1.5H8V10zM21,3H3v18h18V3zM11,9v6H6.5v-1.5h3v-1h-3V9H11zM18,15h-1.75l-1.75,-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/9k_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/9k_plus.xml
deleted file mode 100644
index 6ab0094..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/9k_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,10h1v1.5h-1V10zM21,3H3v18h18V3zM10,9v6H6v-1.5h2.5v-1H6V9H10zM16,15h-1.75l-1.75,-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15zM19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/9mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/9mp.xml
deleted file mode 100644
index f9edc55..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/9mp.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM10,10h3V9h-3V5.5h4.5v6H10V10zM12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5zM18,17h-3v1.5h-1.5v-6H18V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6.5h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/abc.xml b/compose/material/material/icons/generator/raw-icons/sharp/abc.xml
deleted file mode 100644
index c33cd44..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/abc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-1.5v-0.5h-2v3h2V13H21v2h-5V9h5V11zM8,9v6H6.5v-1.5h-2V15H3V9H8zM6.5,10.5h-2V12h2V10.5zM13.5,12c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1h-4V9h4c0.55,0 1,0.45 1,1v1C14.5,11.55 14.05,12 13.5,12zM11,10.5v0.75h2V10.5H11zM13,12.75h-2v0.75h2V12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ac_unit.xml b/compose/material/material/icons/generator/raw-icons/sharp/ac_unit.xml
deleted file mode 100644
index 8779cbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ac_unit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11h-4.17l3.24,-3.24 -1.41,-1.42L15,11h-2V9l4.66,-4.66 -1.42,-1.41L13,6.17V2h-2v4.17L7.76,2.93 6.34,4.34 11,9v2H9L4.34,6.34 2.93,7.76 6.17,11H2v2h4.17l-3.24,3.24 1.41,1.42L9,13h2v2l-4.66,4.66 1.42,1.41L11,17.83V22h2v-4.17l3.24,3.24 1.42,-1.41L13,15v-2h2l4.66,4.66 1.41,-1.42L17.83,13H22v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/access_alarm.xml b/compose/material/material/icons/generator/raw-icons/sharp/access_alarm.xml
deleted file mode 100644
index 5c0154b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/access_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37L12.5,8zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/access_alarms.xml b/compose/material/material/icons/generator/raw-icons/sharp/access_alarms.xml
deleted file mode 100644
index bbef213..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/access_alarms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.7l-4.6,-3.9 -1.3,1.5 4.6,3.9L22,5.7zM7.9,3.4L6.6,1.9 2,5.7l1.3,1.5 4.6,-3.8zM12.5,8L11,8v6l4.7,2.9 0.8,-1.2 -4,-2.4L12.5,8zM12,4c-5,0 -9,4 -9,9s4,9 9,9 9,-4 9,-9 -4,-9 -9,-9zM12,20c-3.9,0 -7,-3.1 -7,-7s3.1,-7 7,-7 7,3.1 7,7 -3.1,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/access_time.xml b/compose/material/material/icons/generator/raw-icons/sharp/access_time.xml
deleted file mode 100644
index 28e127d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/access_time.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/access_time_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/access_time_filled.xml
deleted file mode 100644
index a021dc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/access_time_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM15.29,16.71L11,12.41V7h2v4.59l3.71,3.71L15.29,16.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/accessibility.xml b/compose/material/material/icons/generator/raw-icons/sharp/accessibility.xml
deleted file mode 100644
index f29b9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM21,9h-6v13h-2v-6h-2v6L9,22L9,9L3,9L3,7h18v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/accessibility_new.xml b/compose/material/material/icons/generator/raw-icons/sharp/accessibility_new.xml
deleted file mode 100644
index e25d6f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/accessibility_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,6c-2.61,0.7 -5.67,1 -8.5,1s-5.89,-0.3 -8.5,-1L3,8c1.86,0.5 4,0.83 6,1v13h2v-6h2v6h2V9c2,-0.17 4.14,-0.5 6,-1l-0.5,-2zM12,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/accessible.xml b/compose/material/material/icons/generator/raw-icons/sharp/accessible.xml
deleted file mode 100644
index 018240a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/accessible.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43c-0.17,-0.19 -0.38,-0.34 -0.61,-0.45 -0.01,0 -0.01,-0.01 -0.02,-0.01L13,7.28c-0.37,-0.21 -0.78,-0.31 -1.25,-0.25C10.73,7.15 10,8.07 10,9.1L10,17h7v5h2v-7.5h-5v-3.45c1.29,1.07 3.25,1.94 5,1.95zM12.83,18c-0.41,1.16 -1.52,2 -2.83,2 -1.66,0 -3,-1.34 -3,-3 0,-1.31 0.84,-2.41 2,-2.83L9,12.1c-2.28,0.46 -4,2.48 -4,4.9 0,2.76 2.24,5 5,5 2.42,0 4.44,-1.72 4.9,-4h-2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/accessible_forward.xml b/compose/material/material/icons/generator/raw-icons/sharp/accessible_forward.xml
deleted file mode 100644
index 54ec623..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/accessible_forward.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4.54m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h-2c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3 1.35,-3 3,-3v-2c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5zM20,13.5h-3.86l1.67,-3.67C18.42,8.5 17.44,7 15.96,7h-5.2c-0.81,0 -1.54,0.47 -1.87,1.2L8.22,10l1.92,0.53 0.65,-1.53L13,9l-3.12,7L18,16v5h2v-7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/account_balance.xml b/compose/material/material/icons/generator/raw-icons/sharp/account_balance.xml
deleted file mode 100644
index f5e7fe7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/account_balance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10v7h3v-7L4,10zM10,10v7h3v-7h-3zM2,22h19v-3L2,19v3zM16,10v7h3v-7h-3zM11.5,1L2,6v2h19L21,6l-9.5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/account_balance_wallet.xml b/compose/material/material/icons/generator/raw-icons/sharp/account_balance_wallet.xml
deleted file mode 100644
index 447b602..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/account_balance_wallet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18v3L3,21L3,3h18v3L10,6v12h11zM12,16h10L22,8L12,8v8zM16,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/account_box.xml b/compose/material/material/icons/generator/raw-icons/sharp/account_box.xml
deleted file mode 100644
index 3107ff0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/account_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM12,6c1.93,0 3.5,1.57 3.5,3.5c0,1.93 -1.57,3.5 -3.5,3.5s-3.5,-1.57 -3.5,-3.5C8.5,7.57 10.07,6 12,6zM19,19H5v-0.23c0,-0.62 0.28,-1.2 0.76,-1.58C7.47,15.82 9.64,15 12,15s4.53,0.82 6.24,2.19c0.48,0.38 0.76,0.97 0.76,1.58V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/account_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/account_circle.xml
deleted file mode 100644
index 6476320..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/account_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,6c1.93,0 3.5,1.57 3.5,3.5S13.93,13 12,13s-3.5,-1.57 -3.5,-3.5S10.07,6 12,6zM12,20c-2.03,0 -4.43,-0.82 -6.14,-2.88C7.55,15.8 9.68,15 12,15s4.45,0.8 6.14,2.12C16.43,19.18 14.03,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/account_tree.xml b/compose/material/material/icons/generator/raw-icons/sharp/account_tree.xml
deleted file mode 100644
index b4549529..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/account_tree.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11l0,-8l-7,0l0,3l-6,0l0,-3l-7,0l0,8l7,0l0,-3l2,0l0,10l4,0l0,3l7,0l0,-8l-7,0l0,3l-2,0l0,-8l2,0l0,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ad_units.xml b/compose/material/material/icons/generator/raw-icons/sharp/ad_units.xml
deleted file mode 100644
index 3e9f9b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ad_units.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H5v22h14V1zM17,19H7V5h10V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/adb.xml b/compose/material/material/icons/generator/raw-icons/sharp/adb.xml
deleted file mode 100644
index c96346e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/adb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16c0,3.87 3.13,7 7,7s7,-3.13 7,-7v-4L5,12v4zM16.12,4.37l2.1,-2.1 -0.82,-0.83 -2.3,2.31C14.16,3.28 13.12,3 12,3s-2.16,0.28 -3.09,0.75L6.6,1.44l-0.82,0.83 2.1,2.1C6.14,5.64 5,7.68 5,10v1h14v-1c0,-2.32 -1.14,-4.36 -2.88,-5.63zM9,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add.xml b/compose/material/material/icons/generator/raw-icons/sharp/add.xml
deleted file mode 100644
index eb23254..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_a_photo.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_a_photo.xml
deleted file mode 100644
index cc068db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_a_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4L3,1h2v3h3v2L5,6v3L3,9L3,6L0,6L0,4h3zM6,10L6,7h3L9,4h7l1.83,2L23,6v16L3,22L3,10h3zM13,19c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5 -5,2.24 -5,5 2.24,5 5,5zM10,14c0,1.66 1.34,3 3,3s3,-1.34 3,-3 -1.34,-3 -3,-3 -3,1.34 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_alarm.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_alarm.xml
deleted file mode 100644
index 9c88f054..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.88,3.39L6.6,1.86 2,5.71l1.29,1.53 4.59,-3.85zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86L22,5.72zM12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_alert.xml
deleted file mode 100644
index f638bd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,23c1.1,0 1.99,-0.89 1.99,-1.99h-3.98c0,1.1 0.89,1.99 1.99,1.99zM19,17v-6c0,-3.35 -2.36,-6.15 -5.5,-6.83L13.5,1.5h-3v2.67C7.36,4.85 5,7.65 5,11v6l-2,2v1h18v-1l-2,-2zM16,13.01h-3v3h-2v-3L8,13.01L8,11h3L11,8h2v3h3v2.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_box.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_box.xml
deleted file mode 100644
index 6caa64e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_business.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_business.xml
deleted file mode 100644
index 4cd9e2b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_business.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h2v-3h1v-2l-1,-5H2l-1,5v2h1v6h9v-6h4V17zM9,18H4v-4h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4h15v2h-15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_card.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_card.xml
deleted file mode 100644
index 3c8735d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.01,4L2,20h12v-2H4v-6h18V4H2.01zM20,8H4V6h16V8zM24,17v2h-3v3h-2v-3h-3v-2h3v-3h2v3H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_chart.xml
deleted file mode 100644
index ef08b7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_chart.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19l-14,0l0,-14l9,0l0,-2l-11,0l0,18l18,0l0,-11l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v10h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5l0,-2l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_circle.xml
deleted file mode 100644
index 2bb63e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_circle_outline.xml
deleted file mode 100644
index a1c721d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_comment.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_comment.xml
deleted file mode 100644
index 83cce3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v16h16l4,4L22,2zM17,11h-4v4h-2v-4L7,11L7,9h4L11,5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_home.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_home.xml
deleted file mode 100644
index 8286982..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_home.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.7,0 1.37,0.1 2,0.29V9l-8,-6L4,9v12h7.68C11.25,20.09 11,19.08 11,18C11,14.13 14.13,11 18,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_home_work.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_home_work.xml
deleted file mode 100644
index bcc11f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_home_work.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.68V11L8,6l-7,5v10h5v-6h4v6h1.68C11.25,20.09 11,19.08 11,18C11,15.21 12.64,12.81 15,11.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,13.11V3H10v1.97l7,5v1.11c0.33,-0.05 0.66,-0.08 1,-0.08C19.96,11 21.73,11.81 23,13.11zM17,7h2v2h-2V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5s2.24,5 5,5S23,20.76 23,18zM17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_ic_call.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_ic_call.xml
deleted file mode 100644
index d6047f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_ic_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-3L18,3h-2v3h-3v2h3v3h2L18,8h3zM21,15.46l-5.27,-0.61 -2.52,2.52c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_link.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_link.xml
deleted file mode 100644
index a585f0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h8v2H8V11zM20.1,12H22c0,-2.76 -2.24,-5 -5,-5h-4v1.9h4C18.71,8.9 20.1,10.29 20.1,12zM3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4V7H7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9H7C5.29,15.1 3.9,13.71 3.9,12zM19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_location.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_location.xml
deleted file mode 100644
index 989c69a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6h-2v3H8v2h3v3h2v-3h3V9h-3V6zM12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_location_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_location_alt.xml
deleted file mode 100644
index d47a005..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_location_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1v3h3v2h-3v3h-2L18,6h-3L15,4h3L18,1h2zM12,13c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM14,3.25L14,7h3v3h2.92c0.05,0.39 0.08,0.79 0.08,1.2 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,6.22 7.8,3 12,3c0.68,0 1.35,0.08 2,0.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_moderator.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_moderator.xml
deleted file mode 100644
index abbf6c46..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_moderator.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c1.08,0 2.09,0.25 3,0.68V5l-8,-3L4,5v6.09c0,5.05 3.41,9.76 8,10.91c0.03,-0.01 0.05,-0.02 0.08,-0.02C10.8,20.71 10,18.95 10,17C10,13.13 13.13,10 17,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_photo_alternate.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_photo_alternate.xml
deleted file mode 100644
index 677822e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_photo_alternate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7v2.99s-1.99,0.01 -2,0L17,7h-3s0.01,-1.99 0,-2h3L17,2h2v3h3v2h-3zM16,11L16,8h-3L13,5L3,5v16h16L19,11h-3zM5,19l3,-4 2,3 3,-4 4,5L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_reaction.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_reaction.xml
deleted file mode 100644
index 6d40b26..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_reaction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9V7h-2V2.84C14.77,2.3 13.42,2 11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12c0,-1.05 -0.17,-2.05 -0.47,-3H18zM15.5,8C16.33,8 17,8.67 17,9.5S16.33,11 15.5,11S14,10.33 14,9.5S14.67,8 15.5,8zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM12,17.5c-2.33,0 -4.31,-1.46 -5.11,-3.5h10.22C16.31,16.04 14.33,17.5 12,17.5zM22,3h2v2h-2v2h-2V5h-2V3h2V1h2V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_road.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_road.xml
deleted file mode 100644
index 0b8771e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_shopping_cart.xml
deleted file mode 100644
index 9132a72..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2L13,6h3L16,4h-3L13,1h-2v3L8,4v2h3v3zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.86,-7.01L19.42,4l-3.87,7L8.53,11L4.27,2L1,2v2h2l3.6,7.59L3.62,17L19,17v-2L7,15l1.1,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_task.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_task.xml
deleted file mode 100644
index 295ddfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8c1.57,0 3.04,0.46 4.28,1.25l1.45,-1.45C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c1.73,0 3.36,-0.44 4.78,-1.22l-1.5,-1.5C14.28,19.74 13.17,20 12,20zM19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_to_drive.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_to_drive.xml
deleted file mode 100644
index 698536b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_to_drive.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c0.17,0 0.33,0.01 0.49,0.02L15,3H9l5.68,9.84C15.77,11.71 17.3,11 19,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,4.52l-6.15,10.98l3,5.5l6.33,-10.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94 13,18.54 13,17C13,16.48 13.07,15.98 13.2,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l1,0l1,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_to_home_screen.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_to_home_screen.xml
deleted file mode 100644
index b5ee845..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_to_home_screen.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1.01L6,1v5h2V5h10v14H8v-1H6v5h14V1.01zM10,15h2V8H5v2h3.59L3,15.59 4.41,17 10,11.41V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_to_photos.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_to_photos.xml
deleted file mode 100644
index f638651..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_to_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v16h16v-2L4,20L4,6zM22,2L6,2v16h16L22,2zM19,11h-4v4h-2v-4L9,11L9,9h4L13,5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/add_to_queue.xml b/compose/material/material/icons/generator/raw-icons/sharp/add_to_queue.xml
deleted file mode 100644
index 42710b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/add_to_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v16h7v2h8v-2h7L23,3zM21,17L3,17L3,5h18v12zM16,10v2h-3v3h-2v-3L8,12v-2h3L11,7h2v3h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/addchart.xml b/compose/material/material/icons/generator/raw-icons/sharp/addchart.xml
deleted file mode 100644
index 936b480..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/addchart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v8h-2V9zM9,17v-6H7v6H9zM19,19H5V5h6V3H3v18h18v-8h-2V19zM15,13v4h2v-4H15zM19,5V2h-2v3h-3v2h3v3h2V7h3V5H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/adf_scanner.xml b/compose/material/material/icons/generator/raw-icons/sharp/adf_scanner.xml
deleted file mode 100644
index 3ee33f68..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/adf_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12h-4V4H6v8H2v8h20V12zM16,12H8V6h8V12zM18,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,16.55 18.55,17 18,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/adjust.xml b/compose/material/material/icons/generator/raw-icons/sharp/adjust.xml
deleted file mode 100644
index 85c2377..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/adjust.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3 1.34,-3 3,-3 3,1.34 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/admin_panel_settings.xml b/compose/material/material/icons/generator/raw-icons/sharp/admin_panel_settings.xml
deleted file mode 100644
index a3ecd48c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/admin_panel_settings.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11c0.34,0 0.67,0.04 1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54 3.2,8.79 7.5,9.82c0.55,-0.13 1.08,-0.32 1.6,-0.55C11.41,19.47 11,18.28 11,17C11,13.69 13.69,11 17,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C21,14.79 19.21,13 17,13zM17,14.38c0.62,0 1.12,0.51 1.12,1.12s-0.51,1.12 -1.12,1.12s-1.12,-0.51 -1.12,-1.12S16.38,14.38 17,14.38zM17,19.75c-0.93,0 -1.74,-0.46 -2.24,-1.17c0.05,-0.72 1.51,-1.08 2.24,-1.08s2.19,0.36 2.24,1.08C18.74,19.29 17.93,19.75 17,19.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ads_click.xml b/compose/material/material/icons/generator/raw-icons/sharp/ads_click.xml
deleted file mode 100644
index 79f2284..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ads_click.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.71,17.99C8.53,17.84 6,15.22 6,12c0,-3.31 2.69,-6 6,-6c3.22,0 5.84,2.53 5.99,5.71l-2.1,-0.63C15.48,9.31 13.89,8 12,8c-2.21,0 -4,1.79 -4,4c0,1.89 1.31,3.48 3.08,3.89L11.71,17.99zM22,12c0,0.3 -0.01,0.6 -0.04,0.9l-1.97,-0.59C20,12.21 20,12.1 20,12c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8s3.58,8 8,8c0.1,0 0.21,0 0.31,-0.01l0.59,1.97C12.6,21.99 12.3,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2S22,6.48 22,12zM18.23,16.26L22,15l-10,-3l3,10l1.26,-3.77l4.27,4.27l1.98,-1.98L18.23,16.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/agriculture.xml b/compose/material/material/icons/generator/raw-icons/sharp/agriculture.xml
deleted file mode 100644
index d95c86c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/agriculture.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,12c0.93,0 1.78,0.28 2.5,0.76V8c0,-1.1 -0.9,-2 -2,-2h-6.29l-1.06,-1.06l1.41,-1.41l-0.71,-0.71L9.82,6.35l0.71,0.71l1.41,-1.41L13,6.71V9c0,1.1 -0.9,2 -2,2h-0.54c0.95,1.06 1.54,2.46 1.54,4c0,0.34 -0.04,0.67 -0.09,1h3.14C15.3,13.75 17.19,12 19.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S21.43,13 19.5,13zM19.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S20.33,18 19.5,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h5c0,-1.1 -0.9,-2 -2,-2H4C3.45,7 3,7.45 3,8C3,8.55 3.45,9 4,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,13.82l-0.18,-0.47L10.58,13c-0.46,-1.06 -1.28,-1.91 -2.31,-2.43l-0.4,0.89l-0.46,-0.21l0.4,-0.9C7.26,10.13 6.64,10 6,10c-0.53,0 -1.04,0.11 -1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46 -1.91,1.28 -2.43,2.31l0.89,0.4l-0.21,0.46l-0.9,-0.4C1.13,13.74 1,14.36 1,15c0,0.53 0.11,1.04 0.26,1.52l0.91,-0.34l0.18,0.47L1.42,17c0.46,1.06 1.28,1.91 2.31,2.43l0.4,-0.89l0.46,0.21l-0.4,0.9C4.74,19.87 5.36,20 6,20c0.53,0 1.04,-0.11 1.52,-0.26l-0.34,-0.91l0.47,-0.18L8,19.58c1.06,-0.46 1.91,-1.28 2.43,-2.31l-0.89,-0.4l0.21,-0.46l0.9,0.4C10.87,16.26 11,15.64 11,15c0,-0.53 -0.11,-1.04 -0.26,-1.52L9.83,13.82zM7.15,17.77c-1.53,0.63 -3.29,-0.09 -3.92,-1.62c-0.63,-1.53 0.09,-3.29 1.62,-3.92c1.53,-0.63 3.29,0.09 3.92,1.62C9.41,15.38 8.68,17.14 7.15,17.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/air.xml b/compose/material/material/icons/generator/raw-icons/sharp/air.xml
deleted file mode 100644
index 4ea67a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/air.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3h2c0,0.55 0.45,1 1,1s1,-0.45 1,-1s-0.45,-1 -1,-1H2v-2h9.5C13.15,14 14.5,15.35 14.5,17zM19,6.5C19,4.57 17.43,3 15.5,3S12,4.57 12,6.5h2C14,5.67 14.67,5 15.5,5S17,5.67 17,6.5S16.33,8 15.5,8H2v2h13.5C17.43,10 19,8.43 19,6.5zM18.5,11H2v2h16.5c0.83,0 1.5,0.67 1.5,1.5S19.33,16 18.5,16v2c1.93,0 3.5,-1.57 3.5,-3.5S20.43,11 18.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_flat.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_flat.xml
deleted file mode 100644
index 1e8282b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_flat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7v6L9,13L9,7h13zM2,14v2h6v2h8v-2h6v-2L2,14zM7.14,12.1c1.16,-1.19 1.14,-3.08 -0.04,-4.24 -1.19,-1.16 -3.08,-1.14 -4.24,0.04 -1.16,1.19 -1.14,3.08 0.04,4.24 1.19,1.16 3.08,1.14 4.24,-0.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_flat_angled.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_flat_angled.xml
deleted file mode 100644
index c431e87..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_flat_angled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.56,16.18L9.2,11.71l2.08,-5.66 12.35,4.47 -2.07,5.66zM1.5,12.14L8,14.48L8,19h8v-1.63L20.52,19l0.69,-1.89 -19.02,-6.86 -0.69,1.89zM7.3,10.2c1.49,-0.72 2.12,-2.51 1.41,-4C7.99,4.71 6.2,4.08 4.7,4.8c-1.49,0.71 -2.12,2.5 -1.4,4 0.71,1.49 2.5,2.12 4,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_individual_suite.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_individual_suite.xml
deleted file mode 100644
index a3083bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_individual_suite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.65,0 3,-1.35 3,-3S8.65,7 7,7s-3,1.35 -3,3 1.35,3 3,3zM23,7L11,7v7L3,14L3,7L1,7v10h22L23,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_extra.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_extra.xml
deleted file mode 100644
index 30690af..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3L2,3v14h11v-2L4,15zM22.24,15.96l-2.53,1.15 -3.41,-6.98C15.96,9.45 15.27,9 14.51,9L11,9L11,3L5,3v11h10l3.41,7 5.07,-2.32 -1.24,-2.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_normal.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_normal.xml
deleted file mode 100644
index 9973248..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15L5,3L3,3v14h11v-2L5,15zM22,18h-3v-7c0,-1.1 -0.9,-2 -2,-2h-5L12,3L6,3v11h10v7h6v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_reduced.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_reduced.xml
deleted file mode 100644
index b6d5e9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_legroom_reduced.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.97,21H14v-3l1,-4H6V3h6v6h5c1.1,0 2,0.9 2,2l-2,7h2.97v3zM5,15V3H3v14h9v-2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_recline_extra.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_recline_extra.xml
deleted file mode 100644
index 1da6562..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_recline_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.35,5.64c-0.9,-0.64 -1.12,-1.88 -0.49,-2.79 0.63,-0.9 1.88,-1.12 2.79,-0.49 0.9,0.64 1.12,1.88 0.49,2.79 -0.64,0.9 -1.88,1.12 -2.79,0.49zM16,19L6.5,19L4,7L2,7l2.85,14L16,21v-2zM16.23,15h-4.88l-1.03,-4.1c1.58,0.89 3.28,1.54 5.15,1.22L15.47,9.99c-1.63,0.31 -3.44,-0.27 -4.69,-1.25L9.14,7.47c-0.23,-0.18 -0.49,-0.3 -0.76,-0.38 -0.32,-0.09 -0.66,-0.12 -0.99,-0.06h-0.02c-1.23,0.22 -2.05,1.39 -1.84,2.61L7.44,18h9.24l3.82,3 1.5,-1.5 -5.77,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_recline_normal.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_recline_normal.xml
deleted file mode 100644
index 50236e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_seat_recline_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.59,5.41c-0.78,-0.78 -0.78,-2.05 0,-2.83s2.05,-0.78 2.83,0 0.78,2.05 0,2.83c-0.79,0.79 -2.05,0.79 -2.83,0zM6,19L6,7L4,7v14h11v-2L6,19zM20,20.07L14.93,15L11.5,15v-3.68c1.4,1.15 3.6,2.16 5.5,2.16v-2.16c-1.66,0.02 -3.61,-0.87 -4.67,-2.04l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C8.01,7 7,8.01 7,9.25L7,18h8.07l3.5,3.5L20,20.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airline_stops.xml b/compose/material/material/icons/generator/raw-icons/sharp/airline_stops.xml
deleted file mode 100644
index f3b3692..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airline_stops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.21,9.21C15.93,10.78 13.45,13.3 13,17h2v2H9v-2h2c-0.5,-4.5 -4.37,-8 -9,-8V7c4.39,0 8.22,2.55 10,6.3c1.13,-2.43 2.99,-4.25 4.78,-5.52L14,5h7v7L18.21,9.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airlines.xml b/compose/material/material/icons/generator/raw-icons/sharp/airlines.xml
deleted file mode 100644
index e578a22..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airlines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4L2,20h17l3,-16H13zM14.5,14c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C17,12.88 15.88,14 14.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airplane_ticket.xml b/compose/material/material/icons/generator/raw-icons/sharp/airplane_ticket.xml
deleted file mode 100644
index 34fe398..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airplane_ticket.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2.01v6C3.11,10 4,10.9 4,12s-0.89,2 -2,2v6h20V4zM17.73,13.3l-8.86,2.36l-1.66,-2.88l0.93,-0.25l1.26,0.99l2.39,-0.64l-2.4,-4.16l1.4,-0.38l4.01,3.74l2.44,-0.65c0.51,-0.14 1.04,0.17 1.18,0.68C18.55,12.62 18.25,13.15 17.73,13.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airplanemode_active.xml b/compose/material/material/icons/generator/raw-icons/sharp/airplanemode_active.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airplanemode_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airplanemode_inactive.xml b/compose/material/material/icons/generator/raw-icons/sharp/airplanemode_inactive.xml
deleted file mode 100644
index 4bcfad61..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airplanemode_inactive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,7.67V3.5C10.5,2.67 11.17,2 12,2c0.83,0 1.5,0.67 1.5,1.5V9l8.5,5v2l-4.49,-1.32L10.5,7.67zM19.78,22.61l1.41,-1.41L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-2.67L19.78,22.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airplay.xml b/compose/material/material/icons/generator/raw-icons/sharp/airplay.xml
deleted file mode 100644
index 02c8179..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airplay.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22h12l-6,-6L6,22zM23,3H1v16h6v-2H3V5h18v12h-4v2h6V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/airport_shuttle.xml b/compose/material/material/icons/generator/raw-icons/sharp/airport_shuttle.xml
deleted file mode 100644
index a06f740..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/airport_shuttle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5L1,5v11h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2v-5l-6,-6zM3,11L3,7h4v4L3,11zM6,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM13,11L9,11L9,7h4v4zM18,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM15,11L15,7h1l4,4h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/alarm.xml b/compose/material/material/icons/generator/raw-icons/sharp/alarm.xml
deleted file mode 100644
index d2dc60f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/alarm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/alarm_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/alarm_add.xml
deleted file mode 100644
index 70a063b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/alarm_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/alarm_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/alarm_off.xml
deleted file mode 100644
index 7aaebfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/alarm_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.04,6.29C10.66,6.11 11.32,6 12,6c3.86,0 7,3.14 7,7 0,0.68 -0.11,1.34 -0.29,1.96l1.56,1.56c0.47,-1.08 0.73,-2.27 0.73,-3.52 0,-4.97 -4.03,-9 -9,-9 -1.25,0 -2.44,0.26 -3.53,0.72l1.57,1.57zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM3.02,2.1L1.61,3.51l1.37,1.37 -0.92,0.77 1.28,1.54 1.06,-0.88 0.8,0.8C3.83,8.69 3,10.75 3,13c0,4.97 4.03,9 9,9 2.25,0 4.31,-0.83 5.89,-2.2l2.1,2.1 1.41,-1.41L3.02,2.1zM12,20c-3.86,0 -7,-3.14 -7,-7 0,-1.7 0.61,-3.26 1.62,-4.47l9.85,9.85C15.26,19.39 13.7,20 12,20zM7.48,3.73l0.46,-0.38 -1.28,-1.54 -0.6,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/alarm_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/alarm_on.xml
deleted file mode 100644
index 0bcd154..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/alarm_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.54,14.53L8.41,12.4l-1.06,1.06 3.18,3.18 6,-6 -1.06,-1.06zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/album.xml b/compose/material/material/icons/generator/raw-icons/sharp/album.xml
deleted file mode 100644
index 58c0ba6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,16.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,7.5 12,7.5s4.5,2.01 4.5,4.5 -2.01,4.5 -4.5,4.5zM12,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_center.xml b/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_center.xml
deleted file mode 100644
index 548deed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2l2,0l0,5l8,0l0,3l-8,0l0,4l5,0l0,3l-5,0l0,5l-2,0l0,-5l-5,0l0,-3l5,0l0,-4l-8,0l0,-3l8,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_left.xml
deleted file mode 100644
index e1e2594..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,7H6v3h16V7zM16,14H6v3h10V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_right.xml
deleted file mode 100644
index 7f71206..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/align_horizontal_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h2v20h-2V2zM2,10h16V7H2V10zM8,17h10v-3H8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_bottom.xml b/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_bottom.xml
deleted file mode 100644
index 73c47f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,22H2v-2h20V22zM10,2H7v16h3V2zM17,8h-3v10h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_center.xml b/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_center.xml
deleted file mode 100644
index ab69d62..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11l-5,0l0,-5l-3,0l0,5l-4,0l0,-8l-3,0l0,8l-5.16,0l0,2l5.16,0l0,8l3,0l0,-8l4,0l0,5l3,0l0,-5l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_top.xml b/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_top.xml
deleted file mode 100644
index 2f71879..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/align_vertical_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,22h3V6H7V22zM14,16h3V6h-3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/all_inbox.xml b/compose/material/material/icons/generator/raw-icons/sharp/all_inbox.xml
deleted file mode 100644
index 3eb0be0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/all_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v11h18L21,3zM19,9h-4c0,1.62 -1.38,3 -3,3s-3,-1.38 -3,-3L5,9L5,5h14v4zM15,16h6v5L3,21v-5h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/all_inclusive.xml b/compose/material/material/icons/generator/raw-icons/sharp/all_inclusive.xml
deleted file mode 100644
index f3a372a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/all_inclusive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.6,6.62c-1.44,0 -2.8,0.56 -3.77,1.53L7.8,14.39c-0.64,0.64 -1.49,0.99 -2.4,0.99 -1.87,0 -3.39,-1.51 -3.39,-3.38S3.53,8.62 5.4,8.62c0.91,0 1.76,0.35 2.44,1.03l1.13,1 1.51,-1.34L9.22,8.2C8.2,7.18 6.84,6.62 5.4,6.62 2.42,6.62 0,9.04 0,12s2.42,5.38 5.4,5.38c1.44,0 2.8,-0.56 3.77,-1.53L13.51,12l2.69,-2.39c0.64,-0.64 1.49,-0.99 2.4,-0.99 1.87,0 3.39,1.51 3.39,3.38s-1.52,3.38 -3.39,3.38c-0.9,0 -1.76,-0.35 -2.44,-1.03l-1.14,-1.01 -1.51,1.34 1.27,1.12c1.02,1.01 2.37,1.57 3.82,1.57 2.98,0 5.4,-2.41 5.4,-5.38s-2.42,-5.37 -5.4,-5.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/all_out.xml b/compose/material/material/icons/generator/raw-icons/sharp/all_out.xml
deleted file mode 100644
index 432f64c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/all_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v4l4,-4zM16,4l4,4L20,4zM20,20v-4l-4,4zM4,20h4l-4,-4zM19,12c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7 3.13,7 7,7 7,-3.13 7,-7zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/alt_route.xml b/compose/material/material/icons/generator/raw-icons/sharp/alt_route.xml
deleted file mode 100644
index 75b0f0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/alt_route.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.16l-1.42,1.42c-0.68,-0.69 -1.34,-1.58 -1.79,-2.94l1.94,-0.49C8.83,10.04 9.28,10.65 9.78,11.16zM11,6L7,2L3,6h3.02C6.04,6.81 6.1,7.54 6.21,8.17l1.94,-0.49C8.08,7.2 8.03,6.63 8.02,6H11zM21,6l-4,-4l-4,4h2.99c-0.1,3.68 -1.28,4.75 -2.54,5.88c-0.5,0.44 -1.01,0.92 -1.45,1.55c-0.34,-0.49 -0.73,-0.88 -1.13,-1.24L9.46,13.6C10.39,14.45 11,15.14 11,17c0,0 0,0 0,0h0v5h2v-5c0,0 0,0 0,0c0,-2.02 0.71,-2.66 1.79,-3.63c1.38,-1.24 3.08,-2.78 3.2,-7.37H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/alternate_email.xml b/compose/material/material/icons/generator/raw-icons/sharp/alternate_email.xml
deleted file mode 100644
index 13a64aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/alternate_email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10h5v-2h-5c-4.34,0 -8,-3.66 -8,-8s3.66,-8 8,-8 8,3.66 8,8v1.43c0,0.79 -0.71,1.57 -1.5,1.57s-1.5,-0.78 -1.5,-1.57L17,12c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5 2.24,5 5,5c1.38,0 2.64,-0.56 3.54,-1.47 0.65,0.89 1.77,1.47 2.96,1.47 1.97,0 3.5,-1.6 3.5,-3.57L22,12c0,-5.52 -4.48,-10 -10,-10zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/amp_stories.xml b/compose/material/material/icons/generator/raw-icons/sharp/amp_stories.xml
deleted file mode 100644
index 0a96a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/amp_stories.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,4h10v15h-10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h2v11h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h2v11h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/analytics.xml b/compose/material/material/icons/generator/raw-icons/sharp/analytics.xml
deleted file mode 100644
index a7a50e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/analytics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM9,17H7v-5h2V17zM13,17h-2v-3h2V17zM13,12h-2v-2h2V12zM17,17h-2V7h2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/anchor.xml b/compose/material/material/icons/generator/raw-icons/sharp/anchor.xml
deleted file mode 100644
index 7ad4f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/anchor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15l1.55,1.55c-0.96,1.69 -3.33,3.04 -5.55,3.37V11h3V9h-3V7.82C14.16,7.4 15,6.3 15,5c0,-1.65 -1.35,-3 -3,-3S9,3.35 9,5c0,1.3 0.84,2.4 2,2.82V9H8v2h3v8.92c-2.22,-0.33 -4.59,-1.68 -5.55,-3.37L7,15l-4,-3v3c0,3.88 4.92,7 9,7s9,-3.12 9,-7v-3L17,15zM12,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/android.xml b/compose/material/material/icons/generator/raw-icons/sharp/android.xml
deleted file mode 100644
index 28c533f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.6,9.48l1.84,-3.18c0.16,-0.31 0.04,-0.69 -0.26,-0.85c-0.29,-0.15 -0.65,-0.06 -0.83,0.22l-1.88,3.24c-2.86,-1.21 -6.08,-1.21 -8.94,0L5.65,5.67c-0.19,-0.29 -0.58,-0.38 -0.87,-0.2C4.5,5.65 4.41,6.01 4.56,6.3L6.4,9.48C3.3,11.25 1.28,14.44 1,18h22C22.72,14.44 20.7,11.25 17.6,9.48zM7,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25S8.25,13.31 8.25,14C8.25,14.69 7.69,15.25 7,15.25zM17,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25C18.25,14.69 17.69,15.25 17,15.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/animation.xml b/compose/material/material/icons/generator/raw-icons/sharp/animation.xml
deleted file mode 100644
index 8851c08..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/animation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2c-2.71,0 -5.05,1.54 -6.22,3.78c-1.28,0.67 -2.34,1.72 -3,3C3.54,9.95 2,12.29 2,15c0,3.87 3.13,7 7,7c2.71,0 5.05,-1.54 6.22,-3.78c1.28,-0.67 2.34,-1.72 3,-3C20.46,14.05 22,11.71 22,9C22,5.13 18.87,2 15,2zM9,20c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.87 3.13,7 7,7C11.16,19.63 10.12,20 9,20zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.86 3.13,6.99 7,7C14.16,16.63 13.12,17 12,17zM16.7,13.7C16.17,13.89 15.6,14 15,14c-2.76,0 -5,-2.24 -5,-5c0,-0.6 0.11,-1.17 0.3,-1.7C10.83,7.11 11.4,7 12,7c2.76,0 5,2.24 5,5C17,12.6 16.89,13.17 16.7,13.7zM19,12c0,-3.86 -3.13,-6.99 -7,-7c0.84,-0.63 1.87,-1 3,-1c2.76,0 5,2.24 5,5C20,10.12 19.63,11.16 19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/announcement.xml b/compose/material/material/icons/generator/raw-icons/sharp/announcement.xml
deleted file mode 100644
index b1c6d56..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/announcement.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v20l4,-4h16L22,2zM13,11h-2L11,5h2v6zM13,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/aod.xml b/compose/material/material/icons/generator/raw-icons/sharp/aod.xml
deleted file mode 100644
index d2f1047..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/aod.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H5v22h14V1zM17,18H7V6h10V18zM8,10h8v1.5H8V10zM9,13h6v1.5H9V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/apartment.xml b/compose/material/material/icons/generator/raw-icons/sharp/apartment.xml
deleted file mode 100644
index d5b846b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/apartment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11V3H7v4H3v14h8v-4h2v4h8V11H17zM7,19H5v-2h2V19zM7,15H5v-2h2V15zM7,11H5V9h2V11zM11,15H9v-2h2V15zM11,11H9V9h2V11zM11,7H9V5h2V7zM15,15h-2v-2h2V15zM15,11h-2V9h2V11zM15,7h-2V5h2V7zM19,19h-2v-2h2V19zM19,15h-2v-2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/api.xml b/compose/material/material/icons/generator/raw-icons/sharp/api.xml
deleted file mode 100644
index b7f8f017..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/api.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12l-2,2l-2,-2l2,-2L14,12zM12,6l2.12,2.12l2.5,-2.5L12,1L7.38,5.62l2.5,2.5L12,6zM6,12l2.12,-2.12l-2.5,-2.5L1,12l4.62,4.62l2.5,-2.5L6,12zM18,12l-2.12,2.12l2.5,2.5L23,12l-4.62,-4.62l-2.5,2.5L18,12zM12,18l-2.12,-2.12l-2.5,2.5L12,23l4.62,-4.62l-2.5,-2.5L12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/app_blocking.xml b/compose/material/material/icons/generator/raw-icons/sharp/app_blocking.xml
deleted file mode 100644
index a31698e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/app_blocking.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C22,9.79 20.21,8 18,8zM15.5,12c0,-1.38 1.12,-2.5 2.5,-2.5c0.42,0 0.8,0.11 1.15,0.29l-3.36,3.36C15.61,12.8 15.5,12.42 15.5,12zM18,14.5c-0.42,0 -0.8,-0.11 -1.15,-0.29l3.36,-3.36c0.18,0.35 0.29,0.73 0.29,1.15C20.5,13.38 19.38,14.5 18,14.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,23v-6h-2v1H7V6h10v1h2V0.94L5,1v22H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/app_registration.xml b/compose/material/material/icons/generator/raw-icons/sharp/app_registration.xml
deleted file mode 100644
index 540e380..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/app_registration.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17.86l0,2.14l2.1,0l5.98,-5.97l-2.12,-2.12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12.03l0,-2.03l-4,0l0,4l2.03,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.671,11.206l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/app_settings_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/app_settings_alt.xml
deleted file mode 100644
index 53336ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/app_settings_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.81,12.74l-0.82,-0.63c0,-0.09 0,-0.13 0,-0.22l0.8,-0.63c0.16,-0.12 0.2,-0.34 0.1,-0.51l-0.85,-1.48c-0.07,-0.13 -0.21,-0.2 -0.35,-0.2c-0.05,0 -0.1,0.01 -0.15,0.03l-0.95,0.38c-0.08,-0.05 -0.11,-0.07 -0.19,-0.11l-0.15,-1.01C19.22,8.15 19.05,8 18.85,8h-1.71c-0.2,0 -0.37,0.15 -0.4,0.34L16.6,9.35c-0.03,0.02 -0.07,0.03 -0.1,0.05c-0.03,0.02 -0.06,0.04 -0.09,0.06l-0.95,-0.38c-0.05,-0.02 -0.1,-0.03 -0.15,-0.03c-0.14,0 -0.27,0.07 -0.35,0.2l-0.85,1.48c-0.1,0.17 -0.06,0.39 0.1,0.51l0.8,0.63c0,0.09 0,0.13 0,0.23l-0.8,0.63c-0.16,0.12 -0.2,0.34 -0.1,0.51l0.85,1.48c0.07,0.13 0.21,0.2 0.35,0.2c0.05,0 0.1,-0.01 0.15,-0.03l0.95,-0.37c0.08,0.05 0.12,0.07 0.2,0.11l0.15,1.01c0.03,0.2 0.2,0.34 0.4,0.34h1.71c0.2,0 0.37,-0.15 0.4,-0.34l0.15,-1.01c0.03,-0.02 0.07,-0.03 0.1,-0.05c0.03,-0.02 0.06,-0.04 0.09,-0.06l0.95,0.38c0.05,0.02 0.1,0.03 0.15,0.03c0.14,0 0.27,-0.07 0.35,-0.2l0.85,-1.48C22.01,13.08 21.97,12.86 21.81,12.74zM18,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C19.5,12.83 18.83,13.5 18,13.5zM5,23V1h14v6h-2V6H7v12h10v-1h2v6H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/app_shortcut.xml b/compose/material/material/icons/generator/raw-icons/sharp/app_shortcut.xml
deleted file mode 100644
index 196e1db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/app_shortcut.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18l-10,0l0,-12l10,0l0,1l2,0l0,-6l-14,0l0,0l0,22l14,0l0,-6l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,9.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62l-0.62,-1.38l-0.62,1.38l-1.38,0.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8l-1.25,2.75l-2.75,1.25l2.75,1.25l1.25,2.75l1.25,-2.75l2.75,-1.25l-2.75,-1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13l-0.62,1.38l-1.38,0.62l1.38,0.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/approval.xml b/compose/material/material/icons/generator/raw-icons/sharp/approval.xml
deleted file mode 100644
index cd0d6e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/approval.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14v8h16v-8H4zM18,18H6v-2h12V18zM12,2C9.24,2 7,4.24 7,7l5,7l5,-7C17,4.24 14.76,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/apps.xml b/compose/material/material/icons/generator/raw-icons/sharp/apps.xml
deleted file mode 100644
index 374e8f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/apps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4L8,4L4,4v4zM10,20h4v-4h-4v4zM4,20h4v-4L4,16v4zM4,14h4v-4L4,10v4zM10,14h4v-4h-4v4zM16,4v4h4L20,4h-4zM10,8h4L14,4h-4v4zM16,14h4v-4h-4v4zM16,20h4v-4h-4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/apps_outage.xml b/compose/material/material/icons/generator/raw-icons/sharp/apps_outage.xml
deleted file mode 100644
index bd84f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/apps_outage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4V4H4V8zM10,20h4v-4h-4V20zM4,20h4v-4H4V20zM4,14h4v-4H4V14zM10,14h4v-4h-4V14zM16,20h4v-4h-4V20zM19,0c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S21.76,0 19,0zM19.5,8h-1V7h1V8zM19.5,6h-1V2h1V6zM16,14h4v-2.07C19.67,11.98 19.34,12 19,12c-1.07,0 -2.09,-0.24 -3,-0.68V14zM10,4v4h2.68C12.24,7.09 12,6.07 12,5c0,-0.34 0.02,-0.67 0.07,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/architecture.xml b/compose/material/material/icons/generator/raw-icons/sharp/architecture.xml
deleted file mode 100644
index 3a8298e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/architecture.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.36,18.78L6.61,21l1.62,-1.54l2.77,-7.6c-0.68,-0.17 -1.28,-0.51 -1.77,-0.98L6.36,18.78z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.77,10.88c-0.49,0.47 -1.1,0.81 -1.77,0.98l2.77,7.6L17.39,21l0.26,-2.22L14.77,10.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.3 -0.84,-2.4 -2,-2.82V3h-2v2.18C9.84,5.6 9,6.7 9,8c0,1.66 1.34,3 3,3S15,9.66 15,8zM12,9c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,8.55 12.55,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/archive.xml b/compose/material/material/icons/generator/raw-icons/sharp/archive.xml
deleted file mode 100644
index 81fb02d9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/archive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.71,3H5.29L3,5.79V21h18V5.79L18.71,3zM12,17.5L6.5,12H10v-2h4v2h3.5L12,17.5zM5.12,5l0.81,-1h12l0.94,1H5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/area_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/area_chart.xml
deleted file mode 100644
index 1572332..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/area_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13v7h18v-1.5l-9,-7L8,17L3,13zM3,7l4,3l5,-7l5,4h4v8.97l-9.4,-7.31l-3.98,5.48L3,10.44V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_back.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_back.xml
deleted file mode 100644
index 2a31b2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_back.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_back_ios.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_back_ios.xml
deleted file mode 100644
index d72bfd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_back_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.51,3.87L15.73,2.1 5.84,12l9.9,9.9 1.77,-1.77L9.38,12l8.13,-8.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_back_ios_new.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_back_ios_new.xml
deleted file mode 100644
index c056a2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_back_ios_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.77,3.77l-1.77,-1.77l-10,10l10,10l1.77,-1.77l-8.23,-8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_down.xml
deleted file mode 100644
index baca592..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13,12l0,-4h-2l0,4H8l4,4l4,-4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_left.xml
deleted file mode 100644
index 013e109..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10S17.52,2 12,2C6.48,2 2,6.48 2,12zM12,11l4,0v2l-4,0l0,3l-4,-4l4,-4L12,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_right.xml
deleted file mode 100644
index 2bfe83c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12s4.48,10 10,10C17.52,22 22,17.52 22,12zM12,13H8v-2h4V8l4,4l-4,4V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_up.xml
deleted file mode 100644
index d37ba61..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_circle_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20M12,22c5.52,0 10,-4.48 10,-10c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22L12,22zM11,12l0,4h2l0,-4h3l-4,-4l-4,4H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_downward.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_downward.xml
deleted file mode 100644
index 8f9be44..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_downward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12l-1.41,-1.41L13,16.17V4h-2v12.17l-5.58,-5.59L4,12l8,8 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_down.xml
deleted file mode 100644
index e74555d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10l5,5 5,-5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_down_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_down_circle.xml
deleted file mode 100644
index ab67c52..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_down_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,15l-4,-4h8l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_up.xml
deleted file mode 100644
index dcd2b09..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_drop_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14l5,-5 5,5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_forward.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_forward.xml
deleted file mode 100644
index bb9a6ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4l-1.41,1.41L16.17,11H4v2h12.17l-5.58,5.59L12,20l8,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_forward_ios.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_forward_ios.xml
deleted file mode 100644
index a71005d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_forward_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.23,20.23l1.77,1.77l10,-10l-10,-10l-1.77,1.77l8.23,8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_left.xml
deleted file mode 100644
index fad3985..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7l-5,5 5,5V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_outward.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_outward.xml
deleted file mode 100644
index 842e1d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_outward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6l0,2l8.59,0l-9.59,9.59l1.41,1.41l9.59,-9.59l0,8.59l2,0l0,-12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_right.xml
deleted file mode 100644
index 11d5c2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17l5,-5 -5,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_right_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_right_alt.xml
deleted file mode 100644
index 6a97ef4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_right_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,11H4v2h12.01v3L20,12l-3.99,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/arrow_upward.xml b/compose/material/material/icons/generator/raw-icons/sharp/arrow_upward.xml
deleted file mode 100644
index 07b7a83..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/arrow_upward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12l1.41,1.41L11,7.83V20h2V7.83l5.58,5.59L20,12l-8,-8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/art_track.xml b/compose/material/material/icons/generator/raw-icons/sharp/art_track.xml
deleted file mode 100644
index fc72952..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/art_track.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-8v-2h8v2zM22,7h-8v2h8L22,7zM14,17h8v-2h-8v2zM12,7v10L2,17L2,7h10zM10.5,15l-2.25,-3 -1.75,2.26 -1.25,-1.51L3.5,15h7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/article.xml b/compose/material/material/icons/generator/raw-icons/sharp/article.xml
deleted file mode 100644
index a3e23af..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/article.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM14,17H7v-2h7V17zM17,13H7v-2h10V13zM17,9H7V7h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/sharp/aspect_ratio.xml
deleted file mode 100644
index c1e5315..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-2v3h-3v2h5v-5zM7,9h3L10,7L5,7v5h2L7,9zM23,3L1,3v18h22L23,3zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assessment.xml b/compose/material/material/icons/generator/raw-icons/sharp/assessment.xml
deleted file mode 100644
index 74f9be7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assessment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assignment.xml b/compose/material/material/icons/generator/raw-icons/sharp/assignment.xml
deleted file mode 100644
index 116b0f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assignment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L3,3v18h18L21,3zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM14,17L7,17v-2h7v2zM17,13L7,13v-2h10v2zM17,9L7,9L7,7h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assignment_ind.xml b/compose/material/material/icons/generator/raw-icons/sharp/assignment_ind.xml
deleted file mode 100644
index 3d40878..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assignment_ind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L3,3v18h18L21,3zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,7c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM18,19L6,19v-1.4c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1L18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assignment_late.xml b/compose/material/material/icons/generator/raw-icons/sharp/assignment_late.xml
deleted file mode 100644
index c1ea792..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assignment_late.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L3,3v18h18L21,3zM13,18h-2v-2h2v2zM13,14h-2L11,8h2v6zM12,5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assignment_return.xml b/compose/material/material/icons/generator/raw-icons/sharp/assignment_return.xml
deleted file mode 100644
index 4e3d9a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assignment_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L3,3v18h18L21,3zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16,15h-4v3l-5,-5 5,-5v3h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assignment_returned.xml b/compose/material/material/icons/generator/raw-icons/sharp/assignment_returned.xml
deleted file mode 100644
index b1d60dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assignment_returned.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L3,3v18h18L21,3zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,18l-5,-5h3L10,9h4v4h3l-5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assignment_turned_in.xml b/compose/material/material/icons/generator/raw-icons/sharp/assignment_turned_in.xml
deleted file mode 100644
index 2ded8fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assignment_turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L3,3v18h18L21,3zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM10,17l-4,-4 1.41,-1.41L10,14.17l6.59,-6.59L18,9l-8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assist_walker.xml b/compose/material/material/icons/generator/raw-icons/sharp/assist_walker.xml
deleted file mode 100644
index fe5593b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assist_walker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,4.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,17.72L19,10h-3c-1.5,-0.02 -2.86,-0.54 -3.76,-1.44l-2,-1.98C10.08,6.42 9.62,6 8.83,6C8.32,6 7.81,6.2 7.42,6.59l-4.2,4.17l2.08,4.07l-3.15,4.05l1.57,1.24l3.68,-4.73l-0.17,-1.36L8,14.75V20h2v-6.12l-2.12,-2.12l2.36,-2.36c0.94,0.94 1.72,1.82 3.59,2.32L13,20h1.5l0.41,-3.5h3.18l0.14,1.22c-0.44,0.26 -0.73,0.74 -0.73,1.28c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5C20.5,18.46 20.21,17.98 19.77,17.72zM15.09,15l0.41,-3.5h2l0.41,3.5H15.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assistant.xml b/compose/material/material/icons/generator/raw-icons/sharp/assistant.xml
deleted file mode 100644
index 1defe93..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assistant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2v18h6l3,3 3,-3h6L21,2zM13.88,12.88L12,17l-1.88,-4.12L6,11l4.12,-1.88L12,5l1.88,4.12L18,11l-4.12,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assistant_direction.xml b/compose/material/material/icons/generator/raw-icons/sharp/assistant_direction.xml
deleted file mode 100644
index b4e1ad8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assistant_direction.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,10H8v5h2v-3h3.5v2.5L17,11l-3.5,-3.5V10zM12,1C5.9,1 1,5.9 1,12s4.9,11 11,11s11,-4.9 11,-11S18.1,1 12,1zM20.31,12l-8.34,8.37L3.62,12l8.34,-8.37L20.31,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assistant_photo.xml b/compose/material/material/icons/generator/raw-icons/sharp/assistant_photo.xml
deleted file mode 100644
index 26b227f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assistant_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.4,6L14,4H5v17h2v-7h5.6l0.4,2h7V6h-5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/assured_workload.xml b/compose/material/material/icons/generator/raw-icons/sharp/assured_workload.xml
deleted file mode 100644
index 9ed305c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/assured_workload.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6l-10,-5l-10,5l0,2l20,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19v2h12.4c-0.21,-0.64 -0.32,-1.31 -0.36,-2H2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12.26l0,-2.26l-2,0l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14l-4,2v2.55c0,2.52 1.71,4.88 4,5.45c2.29,-0.57 4,-2.93 4,-5.45V16L20,14zM19.28,21l-2.03,-2.03l1.06,-1.06l0.97,0.97l2.41,-2.38l1.06,1.06L19.28,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/atm.xml b/compose/material/material/icons/generator/raw-icons/sharp/atm.xml
deleted file mode 100644
index b5658de..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9v1.5h2.25L10.25,15h1.5v-4.5L14,10.5L14,9L8,9zM7,9L2,9v6h1.5v-1.5h2L5.5,15L7,15L7,9zM5.5,12h-2v-1.5h2L5.5,12zM22,9h-6.5v6L17,15v-4.5h1L18,14h1.5v-3.51h1L20.5,15L22,15L22,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/attach_email.xml b/compose/material/material/icons/generator/raw-icons/sharp/attach_email.xml
deleted file mode 100644
index 167d716..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/attach_email.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10V2H1v16h13v-5c0,-1.66 1.34,-3 3,-3H21zM11,11L3,6V4l8,5l8,-5v2L11,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14v4c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V18h2v-4.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S15,12.12 15,13.5V18c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-4H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/attach_file.xml b/compose/material/material/icons/generator/raw-icons/sharp/attach_file.xml
deleted file mode 100644
index a396022..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/attach_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,6v11.5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5v10.5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6H10v9.5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5V5c0,-2.21 -1.79,-4 -4,-4S7,2.79 7,5v12.5c0,3.04 2.46,5.5 5.5,5.5s5.5,-2.46 5.5,-5.5V6h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/attach_money.xml b/compose/material/material/icons/generator/raw-icons/sharp/attach_money.xml
deleted file mode 100644
index fecf031..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/attach_money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.8,10.9c-2.27,-0.59 -3,-1.2 -3,-2.15 0,-1.09 1.01,-1.85 2.7,-1.85 1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-1.94,0.42 -3.5,1.68 -3.5,3.61 0,2.31 1.91,3.46 4.7,4.13 2.5,0.6 3,1.48 3,2.41 0,0.69 -0.49,1.79 -2.7,1.79 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c1.95,-0.37 3.5,-1.5 3.5,-3.55 0,-2.84 -2.43,-3.81 -4.7,-4.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/attachment.xml b/compose/material/material/icons/generator/raw-icons/sharp/attachment.xml
deleted file mode 100644
index dcdc76c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/attachment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,16H7c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h12.5c1.38,0 2.5,1.12 2.5,2.5S20.88,13 19.5,13H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h9.5V9.5H9c-1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5h10.5c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4H7c-3.04,0 -5.5,2.46 -5.5,5.5s2.46,5.5 5.5,5.5h11.5V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/attractions.xml b/compose/material/material/icons/generator/raw-icons/sharp/attractions.xml
deleted file mode 100644
index 63e935f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/attractions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.44,18.75c0.37,-0.46 0.94,-0.75 1.57,-0.75s1.19,0.29 1.56,0.75c0.39,-0.09 0.76,-0.21 1.12,-0.36l-1.42,-3.18c-0.39,0.15 -0.82,0.23 -1.26,0.23c-0.46,0 -0.9,-0.09 -1.3,-0.25l-1.43,3.19C9.65,18.54 10.03,18.67 10.44,18.75zM5.16,10C5,10.59 4.91,11.21 4.91,11.85c0,0.75 0.12,1.47 0.33,2.15c0.63,0.05 1.22,0.4 1.56,0.99c0.33,0.57 0.35,1.23 0.11,1.79c0.27,0.27 0.56,0.53 0.87,0.76l1.52,-3.39l0,0c-0.47,-0.58 -0.75,-1.32 -0.75,-2.13c0,-1.89 1.55,-3.41 3.46,-3.41s3.46,1.53 3.46,3.41c0,0.82 -0.29,1.57 -0.78,2.16l1.5,3.35c0.32,-0.24 0.62,-0.5 0.9,-0.79c-0.22,-0.55 -0.2,-1.2 0.12,-1.75c0.33,-0.57 0.9,-0.92 1.52,-0.99c0.22,-0.68 0.34,-1.41 0.34,-2.16c0,-0.64 -0.09,-1.27 -0.25,-1.86c-0.64,-0.04 -1.26,-0.39 -1.6,-1c-0.36,-0.62 -0.35,-1.36 -0.03,-1.95c-0.91,-0.98 -2.1,-1.71 -3.44,-2.05C13.4,5.6 12.74,6 12.01,6s-1.39,-0.41 -1.74,-1.01C8.93,5.33 7.74,6.04 6.83,7.02C7.16,7.62 7.18,8.37 6.81,9C6.45,9.62 5.82,9.97 5.16,10zM3.86,9.58C3.08,8.98 2.84,7.88 3.35,7s1.58,-1.23 2.49,-0.85c1.11,-1.17 2.56,-2.03 4.18,-2.42C10.15,2.75 10.99,2 12.01,2s1.85,0.75 1.98,1.73c1.63,0.39 3.07,1.24 4.18,2.42c0.91,-0.38 1.99,-0.03 2.49,0.85c0.51,0.88 0.27,1.98 -0.51,2.58c0.23,0.77 0.35,1.58 0.35,2.42s-0.12,1.65 -0.35,2.42c0.78,0.6 1.02,1.7 0.51,2.58s-1.58,1.23 -2.49,0.85c-0.4,0.43 -0.85,0.81 -1.34,1.15l1.34,3h-1.86l-0.97,-2.17c-0.43,0.18 -0.88,0.33 -1.34,0.44C13.86,21.25 13.02,22 12.01,22s-1.85,-0.75 -1.98,-1.73C9.55,20.15 9.09,20 8.65,19.81L7.66,22H5.79l1.36,-3.03c-0.47,-0.33 -0.91,-0.71 -1.3,-1.12c-0.92,0.38 -1.99,0.03 -2.5,-0.85s-0.27,-1.98 0.51,-2.58C3.62,13.65 3.51,12.84 3.51,12S3.62,10.35 3.86,9.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/attribution.xml b/compose/material/material/icons/generator/raw-icons/sharp/attribution.xml
deleted file mode 100644
index e0f9d51..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/attribution.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM9.25,14.5h1.5L10.75,19h2.5v-4.5h1.5v-6h-5.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/audio_file.xml b/compose/material/material/icons/generator/raw-icons/sharp/audio_file.xml
deleted file mode 100644
index c3465c93..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/audio_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM16,13h-3v3.75c0,1.24 -1.01,2.25 -2.25,2.25S8.5,17.99 8.5,16.75c0,-1.24 1.01,-2.25 2.25,-2.25c0.46,0 0.89,0.14 1.25,0.38V11h4V13zM13,9V3.5L18.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/audiotrack.xml b/compose/material/material/icons/generator/raw-icons/sharp/audiotrack.xml
deleted file mode 100644
index 35dcb2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/audiotrack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4V7h4V3h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome.xml
deleted file mode 100644
index a984475..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9l1.25,-2.75L23,5l-2.75,-1.25L19,1l-1.25,2.75L15,5l2.75,1.25L19,9zM11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5,-5.5L17,12L11.5,9.5zM19,15l-1.25,2.75L15,19l2.75,1.25L19,23l1.25,-2.75L23,19l-2.75,-1.25L19,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome_mosaic.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome_mosaic.xml
deleted file mode 100644
index e26f399..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome_mosaic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8V3L3,3V21zM21,3h-8v8h8V3zM13,21h8v-8h-8V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome_motion.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome_motion.xml
deleted file mode 100644
index f72a5f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_awesome_motion.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H2v12h2V4h10V2zM18,6H6v12h2V8h10V6zM22,10H10v12h12V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_delete.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_delete.xml
deleted file mode 100644
index f5059261..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_delete.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2l-3.5,0l-1,-1l-5,0l-1,1l-3.5,0l0,2l14,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9c-0.7,0 -1.37,0.1 -2,0.29V5H2v14h7.68c1.12,2.36 3.53,4 6.32,4c3.87,0 7,-3.13 7,-7C23,12.13 19.87,9 16,9zM16,21c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S18.76,21 16,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12l-1.5,0l0,5l3.6,2.1l0.8,-1.2l-2.9,-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_high.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_high.xml
deleted file mode 100644
index ba095c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_high.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12.5l-0.94,2.06l-2.06,0.94l2.06,0.94l0.94,2.06l0.94,-2.06l2.06,-0.94l-2.06,-0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,9.83l-4.24,-4.24L1.59,18.17l4.24,4.24L18.41,9.83zM14.21,11.21l-1.41,-1.41l1.38,-1.38l1.41,1.41L14.21,11.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_normal.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_normal.xml
deleted file mode 100644
index ad17075..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_normal.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,9.83l-4.24,-4.24L1.59,18.17l4.24,4.24L18.41,9.83zM14.21,11.21l-1.41,-1.41l1.38,-1.38l1.41,1.41L14.21,11.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_off.xml
deleted file mode 100644
index f2d18e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_fix_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,8.42l1.41,1.41l-1.46,1.46l1.42,1.42l2.87,-2.88l-4.24,-4.24l-2.88,2.87l1.42,1.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l7.07,7.07l-6.87,6.88l4.24,4.24l6.88,-6.87l7.07,7.07l1.41,-1.42l-18.38,-18.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_graph.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_graph.xml
deleted file mode 100644
index 2b7174e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_graph.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.94L12,9l2.06,-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94zM4,14l0.94,-2.06L7,11l-2.06,-0.94L4,8l-0.94,2.06L1,11l2.06,0.94L4,14zM8.5,9l1.09,-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9zM4.5,20.5l6,-6.01l4,4L23,8.93l-1.41,-1.41l-7.09,7.97l-4,-4L3,19L4.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_mode.xml
deleted file mode 100644
index fc54b2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_mode.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.03,3.56c-1.67,-1.39 -3.74,-2.3 -6.03,-2.51v2.01c1.73,0.19 3.31,0.88 4.61,1.92L19.03,3.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3.06V1.05C8.71,1.25 6.64,2.17 4.97,3.56l1.42,1.42C7.69,3.94 9.27,3.25 11,3.06z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.98,6.39L3.56,4.97C2.17,6.64 1.26,8.71 1.05,11h2.01C3.25,9.27 3.94,7.69 4.98,6.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11h2.01c-0.21,-2.29 -1.12,-4.36 -2.51,-6.03l-1.42,1.42C20.06,7.69 20.75,9.27 20.94,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l3.44,1.56l1.56,3.44l1.56,-3.44l3.44,-1.56l-3.44,-1.56l-1.56,-3.44l-1.56,3.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c-3.11,0 -5.85,-1.59 -7.46,-4H7v-2H1v6h2v-2.7c1.99,2.84 5.27,4.7 9,4.7c4.87,0 9,-3.17 10.44,-7.56l-1.96,-0.45C19.25,18.48 15.92,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/auto_stories.xml b/compose/material/material/icons/generator/raw-icons/sharp/auto_stories.xml
deleted file mode 100644
index 9f4904ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/auto_stories.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4.6v2.12v7.24v2.66C19.86,16.21 18.69,16 17.5,16c-1.9,0 -3.78,0.54 -5.5,1.58v-3.62V7.79V5.48C10.38,4.55 8.51,4 6.5,4S2.62,4.55 1,5.48V20c1.52,-1.18 3.43,-2 5.5,-2s3.98,0.82 5.5,2c1.52,-1.18 3.43,-2 5.5,-2s3.98,0.82 5.5,2V5.48C22.37,5.12 21.7,4.84 21,4.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,0.5l-5,5l0,9.5l5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/autofps_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/autofps_select.xml
deleted file mode 100644
index 43e257a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/autofps_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,6.3l-0.06,0l-1.02,2.89l2.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6S6,5.69 6,9S8.69,15 12,15zM11.37,5h1.25l2.63,7h-1.21l-0.63,-1.79h-2.83L9.96,12H8.74L11.37,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h6v5h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/autorenew.xml b/compose/material/material/icons/generator/raw-icons/sharp/autorenew.xml
deleted file mode 100644
index 3c6d07f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/autorenew.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6v3l4,-4 -4,-4v3c-4.42,0 -8,3.58 -8,8 0,1.57 0.46,3.03 1.24,4.26L6.7,14.8c-0.45,-0.83 -0.7,-1.79 -0.7,-2.8 0,-3.31 2.69,-6 6,-6zM18.76,7.74L17.3,9.2c0.44,0.84 0.7,1.79 0.7,2.8 0,3.31 -2.69,6 -6,6v-3l-4,4 4,4v-3c4.42,0 8,-3.58 8,-8 0,-1.57 -0.46,-3.03 -1.24,-4.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/av_timer.xml b/compose/material/material/icons/generator/raw-icons/sharp/av_timer.xml
deleted file mode 100644
index 6fc780c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/av_timer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17c0,0.55 0.45,1 1,1s1,-0.45 1,-1 -0.45,-1 -1,-1 -1,0.45 -1,1zM11,3v4h2L13,5.08c3.39,0.49 6,3.39 6,6.92 0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-1.68 0.59,-3.22 1.58,-4.42L12,13l1.41,-1.41 -6.8,-6.8v0.02C4.42,6.45 3,9.05 3,12c0,4.97 4.02,9 9,9 4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9h-1zM18,12c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1 0.45,1 1,1 1,-0.45 1,-1zM6,12c0,0.55 0.45,1 1,1s1,-0.45 1,-1 -0.45,-1 -1,-1 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/baby_changing_station.xml b/compose/material/material/icons/generator/raw-icons/sharp/baby_changing_station.xml
deleted file mode 100644
index 07a8786..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/baby_changing_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58,-4.63C4.86,6.53 5.63,6.01 6.46,6C6.74,6 7.02,6.05 7.3,6.18l4.15,1.83L14,8zM8,1C6.9,1 6,1.9 6,3s0.9,2 2,2s2,-0.9 2,-2S9.1,1 8,1zM9,19h12v-2H9V19zM19.5,16c0.83,0 1.5,-0.67 1.5,-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S18,13.67 18,14.5C18,15.33 18.67,16 19.5,16zM13,13v-2H9v2h2v3h6v-5h-2v2H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/back_hand.xml b/compose/material/material/icons/generator/raw-icons/sharp/back_hand.xml
deleted file mode 100644
index 9c4c5a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/back_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.21,10.47L5,9.36L7.25,15H8V2h2.5v10h1V0H14v12h1V1.5h2.5V12h1V4.5H21V16c0,4.42 -3.58,8 -8,8c-3.26,0 -6.19,-1.99 -7.4,-5.02L2.21,10.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/backpack.xml b/compose/material/material/icons/generator/raw-icons/sharp/backpack.xml
deleted file mode 100644
index e85054e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8v14H4V8c0,-1.86 1.28,-3.41 3,-3.86V2h3v2h4V2h3v2.14C18.72,4.59 20,6.14 20,8zM6,12v2h10v2h2v-4H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/backspace.xml b/compose/material/material/icons/generator/raw-icons/sharp/backspace.xml
deleted file mode 100644
index c3cbbd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,3L6,3l-6,9 6,9h18L24,3zM19,15.59L17.59,17 14,13.41 10.41,17 9,15.59 12.59,12 9,8.41 10.41,7 14,10.59 17.59,7 19,8.41 15.41,12 19,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/backup.xml b/compose/material/material/icons/generator/raw-icons/sharp/backup.xml
deleted file mode 100644
index 2896516..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/backup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM14,13v4h-4v-4H7l5,-5 5,5h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/backup_table.xml b/compose/material/material/icons/generator/raw-icons/sharp/backup_table.xml
deleted file mode 100644
index fa663a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/backup_table.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6l0,14l-14,0l0,2l16,0l0,-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H2v16h16V2zM9,16H4v-5h5V16zM16,16h-5v-5h5V16zM16,9H4V4h12V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/badge.xml b/compose/material/material/icons/generator/raw-icons/sharp/badge.xml
deleted file mode 100644
index 50611f4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/badge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-7V2H9v5H2v15h20V7zM9,12c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5C7.5,12.67 8.17,12 9,12zM12,18H6v-0.43c0,-0.6 0.36,-1.15 0.92,-1.39C7.56,15.9 8.26,15.75 9,15.75s1.44,0.15 2.08,0.43c0.55,0.24 0.92,0.78 0.92,1.39V18zM13,9h-2V4h2V9zM18,16.5h-4V15h4V16.5zM18,13.5h-4V12h4V13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bakery_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/bakery_dining.xml
deleted file mode 100644
index ea637c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bakery_dining.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.36,7.58l-0.86,9.41l1.5,0l3.16,-7.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.84,9.1l3.16,7.89l1.5,0l-0.86,-9.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.99l4,0l1,-10.99l-6,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.32,12.75l-1.81,4.5l1.95,0.96l2.06,-1.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.48,16.99l2.06,1.22l1.95,-0.96l-1.81,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/balance.xml b/compose/material/material/icons/generator/raw-icons/sharp/balance.xml
deleted file mode 100644
index f5c8d81..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/balance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.83c0.85,-0.3 1.53,-0.98 1.83,-1.83H18l-3,7c0,1.66 1.57,3 3.5,3s3.5,-1.34 3.5,-3l-3,-7h2V4h-6.17C14.42,2.83 13.31,2 12,2S9.58,2.83 9.17,4L3,4v2h2l-3,7c0,1.66 1.57,3 3.5,3S9,14.66 9,13L6,6h3.17c0.3,0.85 0.98,1.53 1.83,1.83V19H2v2h20v-2h-9V7.83zM20.37,13h-3.74l1.87,-4.36L20.37,13zM7.37,13H3.63L5.5,8.64L7.37,13zM12,6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,5.55 12.55,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/balcony.xml b/compose/material/material/icons/generator/raw-icons/sharp/balcony.xml
deleted file mode 100644
index f058880..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/balcony.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10v2H8v-2H10zM16,12v-2h-2v2H16zM21,14v8H3v-8h1v-4c0,-4.42 3.58,-8 8,-8s8,3.58 8,8v4H21zM7,16H5v4h2V16zM11,16H9v4h2V16zM11,4.08C8.16,4.56 6,7.03 6,10v4h5V4.08zM13,14h5v-4c0,-2.97 -2.16,-5.44 -5,-5.92V14zM15,16h-2v4h2V16zM19,16h-2v4h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ballot.xml b/compose/material/material/icons/generator/raw-icons/sharp/ballot.xml
deleted file mode 100644
index f6283ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ballot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9.5h5v-2h-5v2zM13,16.5h5v-2h-5v2zM21,21L3,21L3,3h18v18zM6,11h5L11,6L6,6v5zM7,7h3v3L7,10L7,7zM6,18h5v-5L6,13v5zM7,14h3v3L7,17v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bar_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/bar_chart.xml
deleted file mode 100644
index bbc825d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bar_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h4v7h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v16h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/batch_prediction.xml b/compose/material/material/icons/generator/raw-icons/sharp/batch_prediction.xml
deleted file mode 100644
index d09a280..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/batch_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8H5v14h14V8zM13,20.5h-2V19h2V20.5zM13,18h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5c1.93,0 3.5,1.57 3.5,3.5C15.5,15 13,16.5 13,18zM18,6.5H6V5h12V6.5zM17,3.5H7V2h10V3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bathroom.xml b/compose/material/material/icons/generator/raw-icons/sharp/bathroom.xml
deleted file mode 100644
index 7da5809..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bathroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM9,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,18 9,18zM9,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,15 9,15zM12,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,18 12,18zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,15 12,15zM15,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,18 15,18zM15,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,15 15,15zM17,12H7v-1c0,-2.76 2.24,-5 5,-5s5,2.24 5,5V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bathtub.xml b/compose/material/material/icons/generator/raw-icons/sharp/bathtub.xml
deleted file mode 100644
index 34c01da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bathtub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13V4.83C20,3.27 18.73,2 17.17,2c-0.75,0 -1.47,0.3 -2,0.83l-1.25,1.25C13.76,4.03 13.59,4 13.41,4c-0.4,0 -0.77,0.12 -1.08,0.32l2.76,2.76c0.2,-0.31 0.32,-0.68 0.32,-1.08c0,-0.18 -0.03,-0.34 -0.07,-0.51l1.25,-1.25C16.74,4.09 16.95,4 17.17,4C17.63,4 18,4.37 18,4.83V13h-6.85c-0.3,-0.21 -0.57,-0.45 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5C7.93,10.08 7.59,10 7.24,10C6,10.01 5,11.01 5,12.25V13H2v8h2v1h16v-1h2v-8H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_0_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_0_bar.xml
deleted file mode 100644
index 787ffbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v18H7V4h3V2h4v2H17zM15,6H9v14h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_1_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_1_bar.xml
deleted file mode 100644
index d95668b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v18H7V4h3V2h4v2H17zM15,6H9v12h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_2_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_2_bar.xml
deleted file mode 100644
index 49d6f3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v18H7V4h3V2h4v2H17zM15,6H9v10h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_3_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_3_bar.xml
deleted file mode 100644
index 8c47156..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v18H7V4h3V2h4v2H17zM15,6H9v8h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_4_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_4_bar.xml
deleted file mode 100644
index 4d96cb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v18H7V4h3V2h4v2H17zM15,6H9v6h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_5_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_5_bar.xml
deleted file mode 100644
index 8227723..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_5_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v18H7V4h3V2h4v2H17zM15,6H9v4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_6_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_6_bar.xml
deleted file mode 100644
index b6d3462..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_6_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v18H7V4h3V2h4v2H17zM15,6H9v2h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_alert.xml
deleted file mode 100644
index c8ed9fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h-3L14,2h-4v2L7,4v18h10L17,4zM13,18h-2v-2h2v2zM13,14h-2L11,9h2v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_charging_full.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_charging_full.xml
deleted file mode 100644
index ba2fbef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_charging_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h-3L14,2h-4v2L7,4v18h10L17,4zM11,20v-5.5L9,14.5L13,7v5.5h2L11,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_full.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_full.xml
deleted file mode 100644
index 3281b5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h-3V2h-4v2H7v18h10V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_saver.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_saver.xml
deleted file mode 100644
index b26c9e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_saver.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h-3V2h-4v2H7v18h10V4zM15,14h-2v2h-2v-2H9v-2h2v-2h2v2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_std.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_std.xml
deleted file mode 100644
index 3281b5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_std.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h-3V2h-4v2H7v18h10V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/battery_unknown.xml b/compose/material/material/icons/generator/raw-icons/sharp/battery_unknown.xml
deleted file mode 100644
index aaad891..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/battery_unknown.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,2h-4v2L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM14.3,12.69s-0.38,0.42 -0.67,0.71c-0.48,0.48 -0.83,1.15 -0.83,1.6h-1.6c0,-0.83 0.46,-1.52 0.93,-2l0.93,-0.94c0.27,-0.27 0.44,-0.65 0.44,-1.06 0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5L9,11c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,0.66 -0.27,1.26 -0.7,1.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/beach_access.xml b/compose/material/material/icons/generator/raw-icons/sharp/beach_access.xml
deleted file mode 100644
index 6cbe464..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/beach_access.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.95,5.98c-3.94,3.95 -3.93,10.35 0.02,14.3l2.86,-2.86C5.7,14.29 4.65,9.91 5.95,5.98zM17.42,8.83l2.86,-2.86c-3.95,-3.95 -10.35,-3.96 -14.3,-0.02 3.93,-1.3 8.31,-0.25 11.44,2.88zM5.97,5.96l-0.01,0.01c-0.38,3.01 1.17,6.88 4.3,10.02l5.73,-5.73c-3.13,-3.13 -7.01,-4.68 -10.02,-4.3zM13.126,14.56l1.428,-1.428 6.442,6.442 -1.43,1.428z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bed.xml b/compose/material/material/icons/generator/raw-icons/sharp/bed.xml
deleted file mode 100644
index 5a2195a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10V5H3v5H2v9h2v-2h16v2h2v-9H21zM13,7h6v3h-6V7zM5,10V7h6v3H5zM4,15v-3h16v3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bedroom_baby.xml b/compose/material/material/icons/generator/raw-icons/sharp/bedroom_baby.xml
deleted file mode 100644
index 8cf2483..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bedroom_baby.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM12,18c-2.64,0 -5.13,-1.03 -7,-2.9l1.06,-1.06c0.34,0.34 0.71,0.65 1.1,0.92L8,13.5V9.51L6.45,10.5l-0.95,-1L7,7.76L6,7h3.65l1.73,3H17v1h-1v2.5l0.84,1.46c0.39,-0.28 0.76,-0.58 1.1,-0.92L19,15.1C17.13,16.97 14.64,18 12,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.69,14.24c-1.74,0.65 -3.66,0.65 -5.4,0l-0.81,1.41l-0.03,0.06c1.1,0.52 2.28,0.79 3.53,0.79s2.45,-0.28 3.55,-0.79l-0.03,-0.06L14.69,14.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bedroom_child.xml b/compose/material/material/icons/generator/raw-icons/sharp/bedroom_child.xml
deleted file mode 100644
index 6d0aa73..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bedroom_child.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.51,12h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM18,17h-1.5v-1.5h-9V17H6l0,-6.32l1.5,-0.01V7h9v3.67l1.5,0V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bedroom_parent.xml b/compose/material/material/icons/generator/raw-icons/sharp/bedroom_parent.xml
deleted file mode 100644
index 9d6259c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bedroom_parent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,12h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,8.5h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,8.5h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM19,17h-1.5v-1.5h-11V17H5v-5l0.65,-0.55V7H11c0.37,0 0.72,0.12 1,0.32C12.28,7.12 12.63,7 13,7h5.35v4.45L19,12V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bedtime.xml b/compose/material/material/icons/generator/raw-icons/sharp/bedtime.xml
deleted file mode 100644
index 19955b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bedtime.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,2.02C6.59,1.82 2,6.42 2,12c0,5.52 4.48,10 10,10c3.71,0 6.93,-2.02 8.66,-5.02C13.15,16.73 8.57,8.55 12.34,2.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bedtime_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/bedtime_off.xml
deleted file mode 100644
index 254f440..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bedtime_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.08 2,9.97 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.62 5.51,-1.66l2.27,2.27L21.19,21.19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,2.02c-2.18,-0.07 -4.19,0.55 -5.85,1.64l4.59,4.59C10.81,6.2 11.18,4.03 12.34,2.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/beenhere.xml b/compose/material/material/icons/generator/raw-icons/sharp/beenhere.xml
deleted file mode 100644
index 412a914..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/beenhere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.01,1L3,17l9,6 8.99,-6L21,1H3.01zM10,16l-5,-5 1.41,-1.42L10,13.17l7.59,-7.59L19,7l-9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bento.xml b/compose/material/material/icons/generator/raw-icons/sharp/bento.xml
deleted file mode 100644
index 7f2f9cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bento.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11V5h6v6H16zM16,19h6v-6h-6V19zM14,5v14H2V5H14zM9.5,12c0,-0.83 -0.67,-1.5 -1.5,-1.5S6.5,11.17 6.5,12s0.67,1.5 1.5,1.5S9.5,12.83 9.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bike_scooter.xml b/compose/material/material/icons/generator/raw-icons/sharp/bike_scooter.xml
deleted file mode 100644
index f15ff80b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bike_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14h0.74L8.47,4H3v2h3.87l1.42,6.25c0,0 -0.01,0 -0.01,0C6.12,12.9 4.47,14.73 4.09,17H0v2h6v-1C6,15.79 7.79,14 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.18,8l-1.83,-5H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58 -0.75,1.25 -0.9,2h-2.79l0.46,2h2.33c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5c0,-2.8 -2.2,-5 -5,-5H18.18zM19,16c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,15 10,15zM10,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S10.55,19 10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/biotech.xml b/compose/material/material/icons/generator/raw-icons/sharp/biotech.xml
deleted file mode 100644
index d22d49a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/biotech.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,19v-2h5v-2h-8c-1.66,0 -3,-1.34 -3,-3c0,-1.09 0.59,-2.04 1.46,-2.56C8.17,9.03 8,8.54 8,8c0,-0.21 0.04,-0.42 0.09,-0.62C6.28,8.13 5,9.92 5,12c0,2.76 2.24,5 5,5v2H5v2h14v-2H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.56,5.51C11.91,5.54 13,6.64 13,8c0,0.75 -0.33,1.41 -0.85,1.87l0.59,1.62l0.94,-0.34l0.34,0.94l1.88,-0.68l-0.34,-0.94l0.94,-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,8m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blender.xml b/compose/material/material/icons/generator/raw-icons/sharp/blender.xml
deleted file mode 100644
index 532d9cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3h-4V2h-4v1H3v8h4.23l0.64,4.13L6,17v5h12v-5l-1.87,-1.87L18,3zM5,9V5h1.31l0.62,4H5zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,19 12,19zM14.29,14H9.72L8.33,5h7.34L14.29,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blind.xml b/compose/material/material/icons/generator/raw-icons/sharp/blind.xml
deleted file mode 100644
index 803b7dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blind.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,3.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.13,7.12c-0.17,-0.35 -0.44,-0.65 -0.8,-0.85C10.72,5.91 9.99,5.93 9.4,6.24l0,-0.01L4,9.3V14h2v-3.54l1.5,-0.85C7.18,10.71 7,11.85 7,13v5.33L4.4,21.8L6,23l3,-4l0.22,-3.54L11,18v5h2v-6.5l-1.97,-2.81c-0.04,-0.52 -0.14,-1.76 0.45,-3.4c0.75,1.14 1.88,1.98 3.2,2.41L20.63,23l0.87,-0.5L16.02,13H17v-2c-0.49,0 -2.88,0.17 -4.08,-2.21"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blinds.xml b/compose/material/material/icons/generator/raw-icons/sharp/blinds.xml
deleted file mode 100644
index 02afa6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blinds.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM16,9h2v2h-2V9zM14,11H6V9h8V11zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-6h8v1.82c-0.45,0.32 -0.75,0.84 -0.75,1.43c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75c0,-0.59 -0.3,-1.12 -0.75,-1.43V13h2v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blinds_closed.xml b/compose/material/material/icons/generator/raw-icons/sharp/blinds_closed.xml
deleted file mode 100644
index e03dcb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blinds_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h11.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM18,11h-2V9h2V11zM14,11H6V9h8V11zM14,13v2H6v-2H14zM16,13h2v2h-2V13zM18,7h-2V5h2V7zM14,5v2H6V5H14zM6,19v-2h8v2H6zM16,19v-2h2v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/block.xml b/compose/material/material/icons/generator/raw-icons/sharp/block.xml
deleted file mode 100644
index 9fefeec..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/block.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-4.42 3.58,-8 8,-8 1.85,0 3.55,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4,13.85 4,12zM12,20c-1.85,0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20,10.15 20,12c0,4.42 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bloodtype.xml b/compose/material/material/icons/generator/raw-icons/sharp/bloodtype.xml
deleted file mode 100644
index 1452af0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bloodtype.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM15,18H9v-2h6V18zM15,13h-2v2h-2v-2H9v-2h2V9h2v2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth.xml b/compose/material/material/icons/generator/raw-icons/sharp/bluetooth.xml
deleted file mode 100644
index 1e9621b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_audio.xml b/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_audio.xml
deleted file mode 100644
index 0cb6d73..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_audio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33s-0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_connected.xml b/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_connected.xml
deleted file mode 100644
index 95db32a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l-2,-2 -2,2 2,2 2,-2zM17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88zM19,10l-2,2 2,2 2,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_disabled.xml
deleted file mode 100644
index 111179b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.88,1.88 -1.6,1.6 1.41,1.41 3.02,-3.02L12,2h-1v5.03l2,2v-3.2zM5.41,4L4,5.41 10.59,12 5,17.59 6.41,19 11,14.41V22h1l4.29,-4.29 2.3,2.29L20,18.59 5.41,4zM13,18.17v-3.76l1.88,1.88L13,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_drive.xml b/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_drive.xml
deleted file mode 100644
index ec7472b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_drive.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10H4.81l1.04,-3H15V5H4.43L2,12v9h3v-2h12v2h3v-9h-3C15.9,12 15,11.1 15,10zM6.5,16C5.67,16 5,15.33 5,14.5S5.67,13 6.5,13S8,13.67 8,14.5S7.33,16 6.5,16zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.85L19.15,1h-0.5v3.79l-2.3,-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3,-2.3V11h0.5L22,8.14L19.85,6L22,3.85zM19.65,2.91l0.94,0.94l-0.94,0.94V2.91zM20.59,8.14l-0.94,0.94V7.2L20.59,8.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_searching.xml b/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_searching.xml
deleted file mode 100644
index 4421153..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bluetooth_searching.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33s-0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blur_circular.xml b/compose/material/material/icons/generator/raw-icons/sharp/blur_circular.xml
deleted file mode 100644
index 4945404..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blur_circular.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM10,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM7,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM7,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM17,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM14,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blur_linear.xml b/compose/material/material/icons/generator/raw-icons/sharp/blur_linear.xml
deleted file mode 100644
index 23a6781..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blur_linear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM9,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM3,21h18v-2L3,19v2zM5,9.5c0.83,0 1.5,-0.67 1.5,-1.5S5.83,6.5 5,6.5 3.5,7.17 3.5,8 4.17,9.5 5,9.5zM5,13.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM9,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM17,16.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,3v2h18L21,3L3,3zM17,8.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM17,12.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM13,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM13,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blur_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/blur_off.xml
deleted file mode 100644
index 332f1c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blur_off.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.8,11.48l0.2,0.02c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5l0.02,0.2c0.09,0.67 0.61,1.19 1.28,1.28zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,5.27L6,8.77l0.28,0.28L6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l2.81,2.81c-0.71,0.11 -1.25,0.73 -1.25,1.47 0,0.83 0.67,1.5 1.5,1.5 0.74,0 1.36,-0.54 1.47,-1.25l2.81,2.81c-0.09,-0.03 -0.18,-0.06 -0.28,-0.06 -0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l3.78,3.78h0.01l1.41,-1.41L3.91,3.86 2.5,5.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/blur_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/blur_on.xml
deleted file mode 100644
index 121ad7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/blur_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM6,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1 -0.45,-1 -1,-1zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bolt.xml b/compose/material/material/icons/generator/raw-icons/sharp/bolt.xml
deleted file mode 100644
index 112187b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h-1l1,-7H6.74c0,0 3.68,-6.46 6.26,-11h1l-1,7h4.28L11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/book.xml b/compose/material/material/icons/generator/raw-icons/sharp/book.xml
deleted file mode 100644
index 200fca2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/book.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4v20h16V2zM6,4h5v8l-2.5,-1.5L6,12V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/book_online.xml b/compose/material/material/icons/generator/raw-icons/sharp/book_online.xml
deleted file mode 100644
index 386defb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/book_online.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H5v22h14V1zM7,18V6h10v12H7zM16,11l0,-3H8l0,3.1c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1L8,16h8v-3c-0.55,0 -1,-0.45 -1,-1C15,11.45 15.45,11 16,11zM12.5,14.5h-1v-1h1V14.5zM12.5,12.5h-1v-1h1V12.5zM12.5,10.5h-1v-1h1V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bookmark.xml b/compose/material/material/icons/generator/raw-icons/sharp/bookmark.xml
deleted file mode 100644
index 5df9e9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bookmark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5v18l7,-3 7,3V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/bookmark_add.xml
deleted file mode 100644
index 442ac05..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7zM19,21l-7,-3l-7,3V3l9,0c-0.63,0.84 -1,1.87 -1,3c0,2.76 2.24,5 5,5c0.34,0 0.68,-0.03 1,-0.1V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_added.xml b/compose/material/material/icons/generator/raw-icons/sharp/bookmark_added.xml
deleted file mode 100644
index 6dcffa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_added.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,21l-7,-3l-7,3V3h9c-0.63,0.84 -1,1.87 -1,3c0,2.76 2.24,5 5,5c0.34,0 0.68,-0.03 1,-0.1V21zM17.83,9L15,6.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L17.83,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_border.xml b/compose/material/material/icons/generator/raw-icons/sharp/bookmark_border.xml
deleted file mode 100644
index 20b56dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3v18l7,-3 7,3L19,3zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_remove.xml b/compose/material/material/icons/generator/raw-icons/sharp/bookmark_remove.xml
deleted file mode 100644
index 57f8123..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bookmark_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-6V5h6V7zM19,10.9c-0.64,0.13 -1.32,0.14 -2.02,0c-1.91,-0.38 -3.47,-1.92 -3.87,-3.83C12.79,5.54 13.18,4.1 14,3L5,3v18l7,-3l7,3V10.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bookmarks.xml b/compose/material/material/icons/generator/raw-icons/sharp/bookmarks.xml
deleted file mode 100644
index 9a2d22c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bookmarks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18l2,1V1H7v2h12v15zM17,5H3v18l7,-3 7,3V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_all.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_all.xml
deleted file mode 100644
index 55d7d5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18L21,3L3,3zM11,19L5,19v-6h6v6zM11,11L5,11L5,5h6v6zM19,19h-6v-6h6v6zM19,11h-6L13,5h6v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_bottom.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_bottom.xml
deleted file mode 100644
index 4664baa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11L7,11v2h2v-2zM13,15h-2v2h2v-2zM9,3L7,3v2h2L9,3zM13,11h-2v2h2v-2zM5,3L3,3v2h2L5,3zM13,7h-2v2h2L13,7zM17,11h-2v2h2v-2zM13,3h-2v2h2L13,3zM17,3h-2v2h2L17,3zM19,13h2v-2h-2v2zM19,17h2v-2h-2v2zM5,7L3,7v2h2L5,7zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM5,11L3,11v2h2v-2zM3,21h18v-2L3,19v2zM5,15L3,15v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_clear.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_clear.xml
deleted file mode 100644
index 0c48776..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM7,21h2v-2L7,19v2zM11,17h2v-2h-2v2zM11,21h2v-2h-2v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM11,13h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM11,9h2L13,7h-2v2zM19,3v2h2L21,3h-2zM11,5h2L13,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_color.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_color.xml
deleted file mode 100644
index 38f671e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_color.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,24H2v-4h20V24zM13.06,5.19l3.75,3.75L7.75,18H4v-3.75L13.06,5.19zM17.88,7.87l-3.75,-3.75l2.53,-2.54l3.75,3.75L17.88,7.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_horizontal.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_horizontal.xml
deleted file mode 100644
index b9a7572..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM7,21h2v-2L7,19v2zM5,3L3,3v2h2L5,3zM9,3L7,3v2h2L9,3zM17,3h-2v2h2L17,3zM13,7h-2v2h2L13,7zM13,3h-2v2h2L13,3zM19,17h2v-2h-2v2zM11,21h2v-2h-2v2zM3,13h18v-2L3,11v2zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM11,17h2v-2h-2v2zM15,21h2v-2h-2v2zM19,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_inner.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_inner.xml
deleted file mode 100644
index 3d6be42..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_inner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h2v-2L3,19v2zM7,21h2v-2L7,19v2zM5,7L3,7v2h2L5,7zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM5,3L3,3v2h2L5,3zM17,3h-2v2h2L17,3zM19,9h2L21,7h-2v2zM19,3v2h2L21,3h-2zM15,21h2v-2h-2v2zM13,3h-2v8L3,11v2h8v8h2v-8h8v-2h-8L13,3zM19,21h2v-2h-2v2zM19,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_left.xml
deleted file mode 100644
index 5986173..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2v-2h-2v2zM11,17h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2zM11,13h2v-2h-2v2zM7,21h2v-2L7,19v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM3,21h2L5,3L3,3v18zM19,9h2L21,7h-2v2zM15,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2zM15,5h2L17,3h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_outer.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_outer.xml
deleted file mode 100644
index 02e7c70..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_outer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v2h2L13,7zM13,11h-2v2h2v-2zM17,11h-2v2h2v-2zM3,3v18h18L21,3L3,3zM19,19L5,19L5,5h14v14zM13,15h-2v2h2v-2zM9,11L7,11v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_right.xml
deleted file mode 100644
index 4bb0955..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM3,5h2L5,3L3,3v2zM7,5h2L9,3L7,3v2zM7,13h2v-2L7,11v2zM3,21h2v-2L3,19v2zM11,21h2v-2h-2v2zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM15,13h2v-2h-2v2zM19,3v18h2L21,3h-2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM11,13h2v-2h-2v2zM11,5h2L13,3h-2v2zM11,9h2L13,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_style.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_style.xml
deleted file mode 100644
index c80ce5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM11,21h2v-2h-2v2zM19,17h2v-2h-2v2zM19,13h2v-2h-2v2zM3,3v18h2L5,5h16L21,3L3,3zM19,9h2L21,7h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_top.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_top.xml
deleted file mode 100644
index 34c32f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM11,13h2v-2h-2v2zM11,21h2v-2h-2v2zM3,17h2v-2L3,15v2zM3,21h2v-2L3,19v2zM3,13h2v-2L3,11v2zM3,9h2L5,7L3,7v2zM11,17h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,13h2v-2h-2v2zM3,3v2h18L21,3L3,3zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM11,9h2L13,7h-2v2zM19,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/border_vertical.xml b/compose/material/material/icons/generator/raw-icons/sharp/border_vertical.xml
deleted file mode 100644
index 0a896af..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/border_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM7,21h2v-2L7,19v2zM7,13h2v-2L7,11v2zM3,13h2v-2L3,11v2zM3,21h2v-2L3,19v2zM3,17h2v-2L3,15v2zM7,5h2L9,3L7,3v2zM19,17h2v-2h-2v2zM11,21h2L13,3h-2v18zM19,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,3v2h2L21,3h-2zM19,9h2L21,7h-2v2zM15,5h2L17,3h-2v2zM15,21h2v-2h-2v2zM15,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/boy.xml b/compose/material/material/icons/generator/raw-icons/sharp/boy.xml
deleted file mode 100644
index 0e61c95..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/boy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,20v-5h1v-4.5c0,-1.1 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.9 -2,2V15h1v5H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/branding_watermark.xml b/compose/material/material/icons/generator/raw-icons/sharp/branding_watermark.xml
deleted file mode 100644
index be1b969..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/branding_watermark.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM21,19h-9v-6h9v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/breakfast_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/breakfast_dining.xml
deleted file mode 100644
index 08d86ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/breakfast_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.85,3L6.14,3C4.15,3 2.36,4.39 2.05,6.36C1.78,8.11 2.64,9.65 4,10.45V21h16V10.45c1.36,-0.79 2.23,-2.36 1.95,-4.11C21.63,4.38 19.83,3 17.85,3zM16.41,13L12,17.42L7.59,13L12,8.59L16.41,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_1.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_1.xml
deleted file mode 100644
index 5d957c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_2.xml
deleted file mode 100644
index ed61adf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,2c-1.82,0 -3.53,0.5 -5,1.35C7.99,5.08 10,8.3 10,12s-2.01,6.92 -5,8.65C6.47,21.5 8.18,22 10,22c5.52,0 10,-4.48 10,-10S15.52,2 10,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_3.xml
deleted file mode 100644
index 8e56edc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,2c-1.05,0 -2.05,0.16 -3,0.46 4.06,1.27 7,5.06 7,9.54s-2.94,8.27 -7,9.54c0.95,0.3 1.95,0.46 3,0.46 5.52,0 10,-4.48 10,-10S14.52,2 9,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_4.xml
deleted file mode 100644
index 38668e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69L23.31,12 20,8.69zM12,18c-0.89,0 -1.74,-0.2 -2.5,-0.55C11.56,16.5 13,14.42 13,12s-1.44,-4.5 -3.5,-5.45C10.26,6.2 11.11,6 12,6c3.31,0 6,2.69 6,6s-2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_5.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_5.xml
deleted file mode 100644
index 7573d6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_6.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_6.xml
deleted file mode 100644
index ca8893c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18V6c3.31,0 6,2.69 6,6s-2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_7.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_7.xml
deleted file mode 100644
index 5c2a285..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_auto.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_auto.xml
deleted file mode 100644
index 5d6c10e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.85,12.65h2.3L12,9l-1.15,3.65zM20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69L23.31,12 20,8.69zM14.3,16l-0.7,-2h-3.2l-0.7,2H7.8L11,7h2l3.2,9h-1.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_high.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_high.xml
deleted file mode 100644
index 5c2a285..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_low.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_low.xml
deleted file mode 100644
index 7573d6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brightness_medium.xml b/compose/material/material/icons/generator/raw-icons/sharp/brightness_medium.xml
deleted file mode 100644
index ca8893c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brightness_medium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.31L23.31,12 20,8.69V4h-4.69L12,0.69 8.69,4H4v4.69L0.69,12 4,15.31V20h4.69L12,23.31 15.31,20H20v-4.69zM12,18V6c3.31,0 6,2.69 6,6s-2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/broadcast_on_home.xml b/compose/material/material/icons/generator/raw-icons/sharp/broadcast_on_home.xml
deleted file mode 100644
index c1a972d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/broadcast_on_home.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.76V4H4v2h16v2.59C20.73,8.88 21.4,9.28 22,9.76z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9H2v11h7V9zM7,18H4v-7h3V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,16.97c0.3,-0.23 0.5,-0.57 0.5,-0.97c0,-0.69 -0.56,-1.25 -1.25,-1.25s-1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5V16.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13.5c1.38,0 2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16c0,-2.21 -1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77C14.5,14.62 15.62,13.5 17,13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/broadcast_on_personal.xml b/compose/material/material/icons/generator/raw-icons/sharp/broadcast_on_personal.xml
deleted file mode 100644
index ddc8dafc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/broadcast_on_personal.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8c0.7,0 1.38,0.1 2.02,0.27L12,3L4,9v12h6.76C9.66,19.63 9,17.89 9,16C9,11.58 12.58,8 17,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14.75c-0.69,0 -1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5v-5.03c0.3,-0.23 0.5,-0.57 0.5,-0.97C18.25,15.31 17.69,14.75 17,14.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16C21,13.79 19.21,12 17,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/broken_image.xml b/compose/material/material/icons/generator/raw-icons/sharp/broken_image.xml
deleted file mode 100644
index 7178f4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/broken_image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3v8.59l-3,-3.01 -4,4.01 -4,-4 -4,4 -3,-3.01L3,3h18zM18,11.42l3,3.01L21,21L3,21v-8.58l3,2.99 4,-4 4,4 4,-3.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/browse_gallery.xml b/compose/material/material/icons/generator/raw-icons/sharp/browse_gallery.xml
deleted file mode 100644
index 68b17c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/browse_gallery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9S13.97,3 9,3zM11.79,16.21L8,12.41V7h2v4.59l3.21,3.21L11.79,16.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,3.52v2.16C20.36,6.8 22,9.21 22,12c0,2.79 -1.64,5.2 -4.01,6.32v2.16C21.48,19.24 24,15.91 24,12C24,8.09 21.48,4.76 17.99,3.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/browser_not_supported.xml b/compose/material/material/icons/generator/raw-icons/sharp/browser_not_supported.xml
deleted file mode 100644
index 8063a1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/browser_not_supported.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6l0,10.5l2,2l0,-14.5l-14.5,0l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.22,3.32L1.95,4.59L3,5.64L3,20h14.36l2.06,2.06l1.27,-1.27L3.22,3.32zM15,18H5V7.64L15.36,18H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/browser_updated.xml b/compose/material/material/icons/generator/raw-icons/sharp/browser_updated.xml
deleted file mode 100644
index da28d37..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/browser_updated.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13v5h-5l1,1v2H6v-2l1,-1H2V3l10,0v2L4,5v11h16v-3H22zM15,15l-5,-5h4V3h2v7h4L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brunch_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/brunch_dining.xml
deleted file mode 100644
index 2a98483..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brunch_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h2V4h-2V8zM16,22H2v-2h14V22zM18,15.89l-0.4,-0.42c-1.02,-1.08 -1.6,-2.52 -1.6,-4V2h6v9.51c0,1.46 -0.54,2.87 -1.53,3.94L20,15.97V20h2v2h-4V15.89zM7,16v-2h4v2h5v2H2v-2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/brush.xml b/compose/material/material/icons/generator/raw-icons/sharp/brush.xml
deleted file mode 100644
index c5025e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/brush.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14c-1.66,0 -3,1.34 -3,3 0,1.31 -1.16,2 -2,2 0.92,1.22 2.49,2 4,2 2.21,0 4,-1.79 4,-4 0,-1.66 -1.34,-3 -3,-3zM21.41,5.34l-2.75,-2.75L9,12.25 11.75,15l9.66,-9.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bubble_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/bubble_chart.xml
deleted file mode 100644
index db1a432..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bubble_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.2,14.4m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.8,18m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,8.8m-4.8,0a4.8,4.8 0,1 1,9.6 0a4.8,4.8 0,1 1,-9.6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bug_report.xml b/compose/material/material/icons/generator/raw-icons/sharp/bug_report.xml
deleted file mode 100644
index 5d25da2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bug_report.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-2.81c-0.45,-0.78 -1.07,-1.45 -1.82,-1.96L17,4.41 15.59,3l-2.17,2.17C12.96,5.06 12.49,5 12,5s-0.96,0.06 -1.41,0.17L8.41,3 7,4.41l1.62,1.63C7.88,6.55 7.26,7.22 6.81,8L4,8v2h2.09c-0.05,0.33 -0.09,0.66 -0.09,1v1L4,12v2h2v1c0,0.34 0.04,0.67 0.09,1L4,16v2h2.81c1.04,1.79 2.97,3 5.19,3s4.15,-1.21 5.19,-3L20,18v-2h-2.09c0.05,-0.33 0.09,-0.66 0.09,-1v-1h2v-2h-2v-1c0,-0.34 -0.04,-0.67 -0.09,-1L20,10L20,8zM14,16h-4v-2h4v2zM14,12h-4v-2h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/build.xml b/compose/material/material/icons/generator/raw-icons/sharp/build.xml
deleted file mode 100644
index 007a636..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/build.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.09,2.91C10.08,0.9 7.07,0.49 4.65,1.67l4.34,4.34 -3,3 -4.34,-4.34C0.48,7.1 0.89,10.09 2.9,12.1c1.86,1.86 4.58,2.35 6.89,1.48l9.82,9.82 3.71,-3.71 -9.78,-9.79c0.92,-2.34 0.44,-5.1 -1.45,-6.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/build_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/build_circle.xml
deleted file mode 100644
index a0eafb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/build_circle.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM15.14,17.25l-3.76,-3.76c-1.22,0.43 -2.64,0.17 -3.62,-0.81c-1.11,-1.11 -1.3,-2.79 -0.59,-4.1l2.35,2.35l1.41,-1.41L8.58,7.17c1.32,-0.71 2.99,-0.52 4.1,0.59c0.98,0.98 1.24,2.4 0.81,3.62l3.76,3.76L15.14,17.25z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bungalow.xml b/compose/material/material/icons/generator/raw-icons/sharp/bungalow.xml
deleted file mode 100644
index f9bd865..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bungalow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4.2,15.5l1.7,1.06L7,14.8V21h4v-5h2v5h4v-6.21l1.1,1.77l1.7,-1.06L12,3zM13,14h-2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/burst_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/burst_mode.xml
deleted file mode 100644
index b145f56..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/burst_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h2v14L1,19L1,5zM5,5h2v14L5,19L5,5zM23,5L9,5v14h14L23,5zM11,17l2.5,-3.15L15.29,16l2.5,-3.22L21,17L11,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/bus_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/bus_alert.xml
deleted file mode 100644
index 45d219e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/bus_alert.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29c-0.77,-2.6 0.21,-4.61 0.37,-4.97C2.97,2.67 2,5.02 2,7v9.5c0,0.95 0.38,1.81 1,2.44V22h3v-2h8v2h3v-3.06c0.62,-0.63 1,-1.49 1,-2.44V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM6.5,17C5.67,17 5,16.33 5,15.5S5.67,14 6.5,14S8,14.67 8,15.5S7.33,17 6.5,17zM15,15.5c0,0.83 -0.67,1.5 -1.5,1.5S12,16.33 12,15.5s0.67,-1.5 1.5,-1.5S15,14.67 15,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/business.xml b/compose/material/material/icons/generator/raw-icons/sharp/business.xml
deleted file mode 100644
index 23ee37d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/business.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,3L2,3v18h20L22,7L12,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/business_center.xml b/compose/material/material/icons/generator/raw-icons/sharp/business_center.xml
deleted file mode 100644
index 3467aeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/business_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16v-1L3.01,15v6L21,21v-6h-7v1h-4zM22,7h-6L16,5l-2,-2h-4L8,5v2L2,7v7h8v-2h4v2h8L22,7zM14,7h-4L10,5h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cabin.xml b/compose/material/material/icons/generator/raw-icons/sharp/cabin.xml
deleted file mode 100644
index 3aeca47..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cabin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10zM12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM13.94,7h-3.89L12,5.52L13.94,7zM7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9zM18,13v2H6v-2H18zM6,19v-2h12v2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cable.xml b/compose/material/material/icons/generator/raw-icons/sharp/cable.xml
deleted file mode 100644
index 5a25507..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V3h-4v2h-1v5h2v9h-4V3H5v11H3v5h1v2h4v-2h1v-5H7V5h4v16h8V10h2V5H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cached.xml b/compose/material/material/icons/generator/raw-icons/sharp/cached.xml
deleted file mode 100644
index e4d5311..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cached.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8l-4,4h3c0,3.31 -2.69,6 -6,6 -1.01,0 -1.97,-0.25 -2.8,-0.7l-1.46,1.46C8.97,19.54 10.43,20 12,20c4.42,0 8,-3.58 8,-8h3l-4,-4zM6,12c0,-3.31 2.69,-6 6,-6 1.01,0 1.97,0.25 2.8,0.7l1.46,-1.46C15.03,4.46 13.57,4 12,4c-4.42,0 -8,3.58 -8,8H1l4,4 4,-4H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cake.xml b/compose/material/material/icons/generator/raw-icons/sharp/cake.xml
deleted file mode 100644
index 6262337..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c1.11,0 2,-0.9 2,-2 0,-0.38 -0.1,-0.73 -0.29,-1.03L12,0l-1.71,2.97c-0.19,0.3 -0.29,0.65 -0.29,1.03 0,1.1 0.9,2 2,2zM16.53,15.92l-1,-1 -1.08,1.07c-1.3,1.3 -3.58,1.31 -4.89,0l-1.07,-1.07 -1.09,1.07C6.75,16.64 5.88,17 4.96,17c-0.73,0 -1.4,-0.23 -1.96,-0.61L3,22h18v-5.61c-0.75,0.51 -1.71,0.75 -2.74,0.52 -0.66,-0.14 -1.25,-0.51 -1.73,-0.99zM18,9h-5L13,7h-2v2L6,9c-1.66,0 -3,1.34 -3,3v1.54c0,1.08 0.88,1.96 1.96,1.96 0.52,0 1.02,-0.2 1.38,-0.57l2.14,-2.13 2.13,2.13c0.74,0.74 2.03,0.74 2.77,0l2.14,-2.13 2.13,2.13c0.37,0.37 0.86,0.57 1.38,0.57 1.08,0 1.96,-0.88 1.96,-1.96L20.99,12C21,10.34 19.66,9 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/calculate.xml b/compose/material/material/icons/generator/raw-icons/sharp/calculate.xml
deleted file mode 100644
index bf89f25..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/calculate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06,-1.06l1.41,-1.41L13.03,7.06zM6.25,7.72h5v1.5h-5V7.72zM11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zM18,17.25h-5v-1.5h5V17.25zM18,14.75h-5v-1.5h5V14.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/calendar_month.xml b/compose/material/material/icons/generator/raw-icons/sharp/calendar_month.xml
deleted file mode 100644
index 964ec03..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/calendar_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,20H5V10h14V20zM9,14H7v-2h2V14zM13,14h-2v-2h2V14zM17,14h-2v-2h2V14zM9,18H7v-2h2V18zM13,18h-2v-2h2V18zM17,18h-2v-2h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/calendar_today.xml b/compose/material/material/icons/generator/raw-icons/sharp/calendar_today.xml
deleted file mode 100644
index 0d6a164..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/calendar_today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3h-3L19,1h-2v2L7,3L7,1L5,1v2L2,3v20h20L22,3zM20,21L4,21L4,8h16v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_day.xml b/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_day.xml
deleted file mode 100644
index eed542c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v2L3,19v-2zM3,10h18v5L3,15v-5zM3,6h18v2L3,8L3,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_month.xml b/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_month.xml
deleted file mode 100644
index 5314776..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_month.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM8,11H4V6h4V11zM14,11h-4V6h4V11zM20,11h-4V6h4V11zM8,18H4v-5h4V18zM14,18h-4v-5h4V18zM20,18h-4v-5h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_week.xml b/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_week.xml
deleted file mode 100644
index 5dc77a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/calendar_view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM13,6h2.5v12H13V6zM11,18H8.5V6H11V18zM4,6h2.5v12H4V6zM20,18h-2.5V6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call.xml b/compose/material/material/icons/generator/raw-icons/sharp/call.xml
deleted file mode 100644
index f528e5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15.46l-5.27,-0.61 -2.52,2.52c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3H3.03C2.45,13.18 10.82,21.55 21,20.97v-5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_end.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_end.xml
deleted file mode 100644
index 106bb2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.68,16.07l3.92,-3.11V9.59c2.85,-0.93 5.94,-0.93 8.8,0v3.38l3.91,3.1L24,12.39c-6.41,-7.19 -17.59,-7.19 -24,0l3.68,3.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_made.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_made.xml
deleted file mode 100644
index fe8f4a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_made.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v2h6.59L4,18.59 5.41,20 17,8.41V15h2V5H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_merge.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_merge.xml
deleted file mode 100644
index 360a589..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_merge.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20.41L18.41,19 15,15.59 13.59,17 17,20.41zM7.5,8H11v5.59L5.59,19 7,20.41l6,-6V8h3.5L12,3.5 7.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_missed.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_missed.xml
deleted file mode 100644
index 0c96d67..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,7L12,14.59 6.41,9H11V7H3v8h2v-4.59l7,7 9,-9L19.59,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_missed_outgoing.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_missed_outgoing.xml
deleted file mode 100644
index 888a776..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_missed_outgoing.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8.41l9,9 7,-7V15h2V7h-8v2h4.59L12,14.59 4.41,7 3,8.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_received.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_received.xml
deleted file mode 100644
index a35068b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_received.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5.41L18.59,4 7,15.59V9H5v10h10v-2H8.41L20,5.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_split.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_split.xml
deleted file mode 100644
index 221c5af..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_split.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4l2.29,2.29 -2.88,2.88 1.42,1.42 2.88,-2.88L20,10L20,4h-6zM10,4L4,4v6l2.29,-2.29 4.71,4.7L11,20h2v-8.41l-5.29,-5.3L10,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/call_to_action.xml b/compose/material/material/icons/generator/raw-icons/sharp/call_to_action.xml
deleted file mode 100644
index 85368e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/call_to_action.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM21,19L3,19v-3h18v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera.xml
deleted file mode 100644
index c0d3501..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.4,10.5l4.77,-8.26C13.47,2.09 12.75,2 12,2c-2.4,0 -4.6,0.85 -6.32,2.25l3.66,6.35 0.06,-0.1zM21.54,9c-0.92,-2.92 -3.15,-5.26 -6,-6.34L11.88,9h9.66zM21.8,10h-7.49l0.29,0.5 4.76,8.25C21,16.97 22,14.61 22,12c0,-0.69 -0.07,-1.35 -0.2,-2zM8.54,12l-3.9,-6.75C3.01,7.03 2,9.39 2,12c0,0.69 0.07,1.35 0.2,2h7.49l-1.15,-2zM2.46,15c0.92,2.92 3.15,5.26 6,6.34L12.12,15L2.46,15zM13.73,15l-3.9,6.76c0.7,0.15 1.42,0.24 2.17,0.24 2.4,0 4.6,-0.85 6.32,-2.25l-3.66,-6.35 -0.93,1.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera_alt.xml
deleted file mode 100644
index de22b42..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,4L15,2H9L7.17,4H2v16h20V4h-5.17zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera_enhance.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera_enhance.xml
deleted file mode 100644
index 00b921d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera_enhance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,5L15,3L9,3L7.17,5L2,5v16h20L22,5h-5.17zM12,18c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9l-1.25,2.75L8,13l2.75,1.25L12,17l1.25,-2.75L16,13l-2.75,-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera_front.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera_front.xml
deleted file mode 100644
index 1409a55..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20L5,20v2h5v2l3,-3 -3,-3v2zM14,20v2h5v-2h-5zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -1.99,0.9 -1.99,2S10.9,8 12,8zM19,0L5,0v18h14L19,0zM7,2h10v10.5c0,-1.67 -3.33,-2.5 -5,-2.5s-5,0.83 -5,2.5L7,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera_indoor.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera_indoor.xml
deleted file mode 100644
index cd5537c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera_indoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM16,16.06L14,15v2H8v-6h6v2l2,-1.06V16.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera_outdoor.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera_outdoor.xml
deleted file mode 100644
index 55ae491..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera_outdoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14v-2h-6v6h6v-2l2,1.06v-4.12L18,14zM12,3L4,9v12h16v-2H6v-9l6,-4.5l6,4.5v1h2V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera_rear.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera_rear.xml
deleted file mode 100644
index 7347b94..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera_rear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20L5,20v2h5v2l3,-3 -3,-3v2zM14,20v2h5v-2h-5zM19,0L5,0v18h14L19,0zM12,6c-1.11,0 -2,-0.9 -2,-2s0.89,-2 1.99,-2 2,0.9 2,2C14,5.1 13.1,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/camera_roll.xml b/compose/material/material/icons/generator/raw-icons/sharp/camera_roll.xml
deleted file mode 100644
index 29cf900..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/camera_roll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5L14,3h-3L11,1L5,1v2L2,3v19h12v-2h8L22,5h-8zM12,18h-2v-2h2v2zM12,9h-2L10,7h2v2zM16,18h-2v-2h2v2zM16,9h-2L14,7h2v2zM20,18h-2v-2h2v2zM20,9h-2L18,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cameraswitch.xml b/compose/material/material/icons/generator/raw-icons/sharp/cameraswitch.xml
deleted file mode 100644
index 57a99bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cameraswitch.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6h-4L9,7H6v10h12V7h-3L14,6zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.57,0.51l4.48,4.48V2.04c4.72,0.47 8.48,4.23 8.95,8.95c0,0 2,0 2,0C23.34,3.02 15.49,-1.59 8.57,0.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.95,21.96C6.23,21.49 2.47,17.73 2,13.01c0,0 -2,0 -2,0c0.66,7.97 8.51,12.58 15.43,10.48l-4.48,-4.48V21.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/campaign.xml b/compose/material/material/icons/generator/raw-icons/sharp/campaign.xml
deleted file mode 100644
index 611d9cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/campaign.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0,0.67 0,1.33 0,2c1.2,0 2.76,0 4,0c0,-0.67 0,-1.33 0,-2C20.76,11 19.2,11 18,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.61c0.96,0.71 2.21,1.65 3.2,2.39c0.4,-0.53 0.8,-1.07 1.2,-1.6c-0.99,-0.74 -2.24,-1.68 -3.2,-2.4C16.8,16.54 16.4,17.08 16,17.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,5.6C20,5.07 19.6,4.53 19.2,4c-0.99,0.74 -2.24,1.68 -3.2,2.4c0.4,0.53 0.8,1.07 1.2,1.6C18.16,7.28 19.41,6.35 20.4,5.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9H2v6h3v4h2v-4h1l5,3V6L8,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,12c0,-1.33 -0.58,-2.53 -1.5,-3.35v6.69C14.92,14.53 15.5,13.33 15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cancel.xml b/compose/material/material/icons/generator/raw-icons/sharp/cancel.xml
deleted file mode 100644
index 1ab7bac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cancel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM17,15.59L15.59,17 12,13.41 8.41,17 7,15.59 10.59,12 7,8.41 8.41,7 12,10.59 15.59,7 17,8.41 13.41,12 17,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cancel_presentation.xml b/compose/material/material/icons/generator/raw-icons/sharp/cancel_presentation.xml
deleted file mode 100644
index 713ab93..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cancel_presentation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,3v18h22L23,3L1,3zM21,19L3,19L3,5h18v14zM9.41,16L12,13.41 14.59,16 16,14.59 13.41,12 16,9.41 14.59,8 12,10.59 9.41,8 8,9.41 10.59,12 8,14.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cancel_schedule_send.xml b/compose/material/material/icons/generator/raw-icons/sharp/cancel_schedule_send.xml
deleted file mode 100644
index a16ccf7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cancel_schedule_send.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9c-0.42,0 -0.83,0.04 -1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07,-3.46C9.59,21.19 12.71,24 16.5,24c4.14,0 7.5,-3.36 7.5,-7.5S20.64,9 16.5,9zM16.5,22c-3.03,0 -5.5,-2.47 -5.5,-5.5s2.47,-5.5 5.5,-5.5s5.5,2.47 5.5,5.5S19.53,22 16.5,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.27,14.03l-1.77,1.76l-1.77,-1.76l-0.7,0.7l1.76,1.77l-1.76,1.77l0.7,0.7l1.77,-1.76l1.77,1.76l0.7,-0.7l-1.76,-1.77l1.76,-1.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/candlestick_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/candlestick_chart.xml
deleted file mode 100644
index c2270e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/candlestick_chart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4l-2,0l0,2l-2,0l0,12l2,0l0,2l2,0l0,-2l2,0l0,-12l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8l-2,0l0,-4l-2,0l0,4l-2,0l0,7l2,0l0,5l2,0l0,-5l2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/car_crash.xml b/compose/material/material/icons/generator/raw-icons/sharp/car_crash.xml
deleted file mode 100644
index ca0ff8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/car_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,7h-1V3h1V7zM18.5,8v1h-1V8H18.5zM17.91,13c0.06,0.16 0.09,0.33 0.09,0.5c0,0.83 -0.67,1.5 -1.5,1.5S15,14.33 15,13.5c0,-0.39 0.15,-0.74 0.39,-1.01c-1.63,-0.66 -2.96,-1.91 -3.71,-3.49H5.81l1.04,-3H11c0,-0.69 0.1,-1.37 0.29,-2H5.41L3,11v9h3v-2h12v2h3v-7.68C19.95,12.83 18.84,13.01 17.91,13zM7.5,15C6.67,15 6,14.33 6,13.5S6.67,12 7.5,12S9,12.67 9,13.5S8.33,15 7.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/car_rental.xml b/compose/material/material/icons/generator/raw-icons/sharp/car_rental.xml
deleted file mode 100644
index 5f7e9f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/car_rental.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,3C10.41,1.83 9.3,1 8,1C6.34,1 5,2.34 5,4c0,1.65 1.34,3 3,3c1.3,0 2.41,-0.84 2.83,-2H16v2h2V5h1V3H10.83zM8,5C7.45,5 7,4.55 7,4s0.45,-1 1,-1s1,0.45 1,1S8.55,5 8,5zM17.11,9H6.89L5,14.69V22h2v-2h10v2h2v-7.31L17.11,9zM9,17.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,17.5 9,17.5zM15,17.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,17.5 15,17.5zM7.67,13l0.66,-2h7.34l0.66,2H7.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/car_repair.xml b/compose/material/material/icons/generator/raw-icons/sharp/car_repair.xml
deleted file mode 100644
index 3c7edf3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/car_repair.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.01V19h7v3h2v-3h7v-1.99H4zM7,14h10v2h2V8.69L17.11,3H6.89L5,8.69V16h2V14zM9,11.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,11.5 9,11.5zM15,11.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,11.5 15,11.5zM8.33,5h7.34l0.66,2H7.67L8.33,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/card_giftcard.xml b/compose/material/material/icons/generator/raw-icons/sharp/card_giftcard.xml
deleted file mode 100644
index 69664b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/card_giftcard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6h-4.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L2.01,6v15L22,21L22,6zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 12,7.4l3.38,4.6L17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/card_membership.xml b/compose/material/material/icons/generator/raw-icons/sharp/card_membership.xml
deleted file mode 100644
index d0bd0e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/card_membership.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v15h6v5l4,-2 4,2v-5h6L22,2zM20,15L4,15v-2h16v2zM20,10L4,10L4,4h16v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/card_travel.xml b/compose/material/material/icons/generator/raw-icons/sharp/card_travel.xml
deleted file mode 100644
index 59d8b44..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/card_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6h-5L17,4c0,-1.1 -0.9,-2 -2,-2L9,2c-1.1,0 -2,0.9 -2,2v2L2,6v15h20L22,6zM9,4h6v2L9,6L9,4zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h3v2h2L9,8h6v2h2L17,8h3v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/carpenter.xml b/compose/material/material/icons/generator/raw-icons/sharp/carpenter.xml
deleted file mode 100644
index a68000f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/carpenter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,1.5L3.11,5.39l8.13,11.67l-1.41,1.41l4.24,4.24l7.07,-7.07L7,1.5zM12.66,18.47l4.24,-4.24l1.41,1.41l-4.24,4.24L12.66,18.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cases.xml b/compose/material/material/icons/generator/raw-icons/sharp/cases.xml
deleted file mode 100644
index 423e173..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cases.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V1h-8v4H5v13h18V5H18zM16,5h-4V3h4V5zM3,9H1v13h18v-2H3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/casino.xml b/compose/material/material/icons/generator/raw-icons/sharp/casino.xml
deleted file mode 100644
index 1290ccf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/casino.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM7.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,15 7.5,15s1.5,0.67 1.5,1.5S8.33,18 7.5,18zM7.5,9C6.67,9 6,8.33 6,7.5S6.67,6 7.5,6 9,6.67 9,7.5 8.33,9 7.5,9zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16.5,9c-0.83,0 -1.5,-0.67 -1.5,-1.5S15.67,6 16.5,6s1.5,0.67 1.5,1.5S17.33,9 16.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cast.xml b/compose/material/material/icons/generator/raw-icons/sharp/cast.xml
deleted file mode 100644
index a261b1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v5h2L3,5h18v14h-7v2h9L23,3zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cast_connected.xml b/compose/material/material/icons/generator/raw-icons/sharp/cast_connected.xml
deleted file mode 100644
index d27f2e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cast_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM19,7L5,7v1.63c3.96,1.28 7.09,4.41 8.37,8.37L19,17L19,7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11zM23,3L1,3v5h2L3,5h18v14h-7v2h9L23,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cast_for_education.xml b/compose/material/material/icons/generator/raw-icons/sharp/cast_for_education.xml
deleted file mode 100644
index dbd4811..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cast_for_education.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v5h2L3,5h18v14h-7v2h9L23,3zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11zM11,11.09v2L14.5,15l3.5,-1.91v-2L14.5,13 11,11.09zM14.5,6L9,9l5.5,3L20,9l-5.5,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/castle.xml b/compose/material/material/icons/generator/raw-icons/sharp/castle.xml
deleted file mode 100644
index 6cee557..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/castle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-5h4v5h9V9H21zM11,12H9V9h2V12zM15,12h-2V9h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/catching_pokemon.xml b/compose/material/material/icons/generator/raw-icons/sharp/catching_pokemon.xml
deleted file mode 100644
index d24ae6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/catching_pokemon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12c0,1.38 -1.12,2.5 -2.5,2.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5C13.38,9.5 14.5,10.62 14.5,12zM22,12c0,5.52 -4.48,10 -10,10C6.48,22 2,17.52 2,12S6.48,2 12,2C17.52,2 22,6.48 22,12zM20,12h-4c0,-2.21 -1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4H4c0,4.41 3.59,8 8,8C16.41,20 20,16.41 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/category.xml b/compose/material/material/icons/generator/raw-icons/sharp/category.xml
deleted file mode 100644
index b45741e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/category.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2l-5.5,9h11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,17.5m-4.5,0a4.5,4.5 0,1 1,9 0a4.5,4.5 0,1 1,-9 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13.5h8v8H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/celebration.xml b/compose/material/material/icons/generator/raw-icons/sharp/celebration.xml
deleted file mode 100644
index 49a232d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/celebration.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22l14,-5l-9,-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.53,12.53L21,6.05l1.48,1.48l1.06,-1.06L21,3.93l-7.53,7.53L14.53,12.53z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.94,6L9.47,7.47l1.06,1.06l2.54,-2.54l-2.54,-2.53L9.47,4.53L10.94,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.97,9.97l-3.5,3.5l1.06,1.06L19,12.06l2.5,2.49l1.06,-1.06L18.97,9.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.97,4.97l-4.5,4.5l1.06,1.06L18.07,5l-3.53,-3.53l-1.06,1.06L15.97,4.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cell_tower.xml b/compose/material/material/icons/generator/raw-icons/sharp/cell_tower.xml
deleted file mode 100644
index a36ceb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cell_tower.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.3,14.7l1.2,-1.2c-1,-1 -1.5,-2.3 -1.5,-3.5c0,-1.3 0.5,-2.6 1.5,-3.5L7.3,5.3c-1.3,1.3 -2,3 -2,4.7S6,13.4 7.3,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,2.9l-1.2,1.2c1.6,1.6 2.4,3.8 2.4,5.9c0,2.1 -0.8,4.3 -2.4,5.9l1.2,1.2c2,-2 2.9,-4.5 2.9,-7.1C22,7.4 21,4.9 19.1,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.1,4.1L4.9,2.9C3,4.9 2,7.4 2,10c0,2.6 1,5.1 2.9,7.1l1.2,-1.2c-1.6,-1.6 -2.4,-3.8 -2.4,-5.9C3.7,7.9 4.5,5.7 6.1,4.1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.7,14.7c1.3,-1.3 2,-3 2,-4.7c-0.1,-1.7 -0.7,-3.4 -2,-4.7l-1.2,1.2c1,1 1.5,2.3 1.5,3.5c0,1.3 -0.5,2.6 -1.5,3.5L16.7,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10c0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,8.62 9.5,10c0,0.76 0.34,1.42 0.87,1.88L7,22h2l0.67,-2h4.67L15,22h2l-3.37,-10.12C14.16,11.42 14.5,10.76 14.5,10zM10.33,18L12,13l1.67,5H10.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cell_wifi.xml b/compose/material/material/icons/generator/raw-icons/sharp/cell_wifi.xml
deleted file mode 100644
index 0968c62..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cell_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22h16V5.97L6,22zM20,20h-2v-7.22l2,-2V20zM5.22,7.22L3.93,5.93c3.9,-3.91 10.24,-3.91 14.15,0l-1.29,1.29C13.6,4.03 8.41,4.03 5.22,7.22zM12.93,11.07L11,13l-1.93,-1.93C10.14,10.01 11.86,10.01 12.93,11.07zM14.22,9.79c-1.78,-1.77 -4.66,-1.77 -6.43,0L6.5,8.5c2.48,-2.48 6.52,-2.48 9,0L14.22,9.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/center_focus_strong.xml b/compose/material/material/icons/generator/raw-icons/sharp/center_focus_strong.xml
deleted file mode 100644
index fdf828f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/center_focus_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM5,15L3,15v6h6v-2L5,19v-4zM5,5h4L9,3L3,3v6h2L5,5zM21,3h-6v2h4v4h2L21,3zM19,19h-4v2h6v-6h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/center_focus_weak.xml b/compose/material/material/icons/generator/raw-icons/sharp/center_focus_weak.xml
deleted file mode 100644
index cf95315..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/center_focus_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15L3,15v6h6v-2L5,19v-4zM5,5h4L9,3L3,3v6h2L5,5zM21,3h-6v2h4v4h2L21,3zM19,19h-4v2h6v-6h-2v4zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chair.xml b/compose/material/material/icons/generator/raw-icons/sharp/chair.xml
deleted file mode 100644
index e310a8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chair.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13l10,0l0,-6l3,0l0,-4l-16,0l0,4l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,9h-4v6H5V9H1v10h3v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1h3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chair_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/chair_alt.xml
deleted file mode 100644
index b72176b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chair_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h3V3H5v7h3v2H5v9h2v-3h10v3h2v-9h-3V10zM7,8V5h10v3H7zM17,16H7v-2h10V16zM14,12h-4v-2h4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chalet.xml b/compose/material/material/icons/generator/raw-icons/sharp/chalet.xml
deleted file mode 100644
index 27ef7f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chalet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5l7.5,7.5l-1.41,1.41L15,15.33V20h-4v-5H9v5H5v-4.67l-1.09,1.09L2.5,15L10,7.5zM22,6.5h-1.19l0.75,-0.75l-0.71,-0.71L19.39,6.5H18.5V5.61l1.45,-1.45l-0.71,-0.71L18.5,4.19V3h-1v1.19l-0.75,-0.75l-0.71,0.71l1.45,1.45V6.5h-0.89l-1.45,-1.45l-0.71,0.71l0.75,0.75H14v1h1.19l-0.75,0.75l0.71,0.71l1.45,-1.45h0.89v0.89l-1.45,1.45l0.71,0.71l0.75,-0.75V11h1V9.81l0.75,0.75l0.71,-0.71L18.5,8.39V7.5h0.89l1.45,1.45l0.71,-0.71L20.81,7.5H22V6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/change_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/change_circle.xml
deleted file mode 100644
index babda22..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/change_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12.06,19v-2.01c-0.02,0 -0.04,0 -0.06,0c-1.28,0 -2.56,-0.49 -3.54,-1.46c-1.71,-1.71 -1.92,-4.35 -0.64,-6.29l1.1,1.1c-0.71,1.33 -0.53,3.01 0.59,4.13c0.7,0.7 1.62,1.03 2.54,1.01v-2.14l2.83,2.83L12.06,19zM16.17,14.76l-1.1,-1.1c0.71,-1.33 0.53,-3.01 -0.59,-4.13C13.79,8.84 12.9,8.5 12,8.5c-0.02,0 -0.04,0 -0.06,0v2.15L9.11,7.83L11.94,5v2.02c1.3,-0.02 2.61,0.45 3.6,1.45C17.24,10.17 17.45,12.82 16.17,14.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/change_history.xml b/compose/material/material/icons/generator/raw-icons/sharp/change_history.xml
deleted file mode 100644
index 2aee492..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/change_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.77L18.39,18H5.61L12,7.77M12,4L2,20h20L12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/charging_station.xml b/compose/material/material/icons/generator/raw-icons/sharp/charging_station.xml
deleted file mode 100644
index 07a1186..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/charging_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11l-3,6v-4h-2l3,-6v4H14.5zM5,1h14v22H5V1zM7,6v12h10V6H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chat.xml b/compose/material/material/icons/generator/raw-icons/sharp/chat.xml
deleted file mode 100644
index 328ae8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2.01,2L2,22l4,-4h16L22,2zM6,9h12v2L6,11L6,9zM14,14L6,14v-2h8v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chat_bubble.xml b/compose/material/material/icons/generator/raw-icons/sharp/chat_bubble.xml
deleted file mode 100644
index 3bbd5e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chat_bubble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20l4,-4h16V2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chat_bubble_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/chat_bubble_outline.xml
deleted file mode 100644
index 51cd7d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chat_bubble_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v20l4,-4h16L22,2zM20,16L6,16l-2,2L4,4h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/check.xml b/compose/material/material/icons/generator/raw-icons/sharp/check.xml
deleted file mode 100644
index 6c11d35..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41L9,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/check_box.xml b/compose/material/material/icons/generator/raw-icons/sharp/check_box.xml
deleted file mode 100644
index 01988e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM10,17l-5,-5 1.41,-1.41L10,14.17l7.59,-7.59L19,8l-9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/check_box_outline_blank.xml b/compose/material/material/icons/generator/raw-icons/sharp/check_box_outline_blank.xml
deleted file mode 100644
index 849e246..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/check_box_outline_blank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5h14m2,-2H3v18h18V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/check_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/check_circle.xml
deleted file mode 100644
index 5e111ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,17l-5,-5 1.41,-1.41L10,14.17l7.59,-7.59L19,8l-9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/check_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/check_circle_outline.xml
deleted file mode 100644
index ad63e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/check_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM16.59,7.58L10,14.17l-2.59,-2.58L6,13l4,4 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/checklist.xml b/compose/material/material/icons/generator/raw-icons/sharp/checklist.xml
deleted file mode 100644
index 64e7ee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/checklist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-9v2h9V7zM22,15h-9v2h9V15zM5.54,11L2,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,11zM5.54,19L2,15.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/checklist_rtl.xml b/compose/material/material/icons/generator/raw-icons/sharp/checklist_rtl.xml
deleted file mode 100644
index eb4422c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/checklist_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7H2v2h9V7zM11,15H2v2h9V15zM16.34,11l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,5.34L16.34,11zM16.34,19l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,13.34L16.34,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/checkroom.xml b/compose/material/material/icons/generator/raw-icons/sharp/checkroom.xml
deleted file mode 100644
index 2d87b4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/checkroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.6,18.2L13,11.75v-0.91c1.65,-0.49 2.8,-2.17 2.43,-4.05c-0.26,-1.31 -1.3,-2.4 -2.61,-2.7C10.54,3.57 8.5,5.3 8.5,7.5h2C10.5,6.67 11.17,6 12,6s1.5,0.67 1.5,1.5c0,0.84 -0.69,1.52 -1.53,1.5L11,9l0,2.75L2.4,18.2C1.63,18.78 2.04,20 3,20h9h9C21.96,20 22.37,18.78 21.6,18.2zM6,18l6,-4.5l6,4.5H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chevron_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/chevron_left.xml
deleted file mode 100644
index dab785f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chevron_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12l4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chevron_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/chevron_right.xml
deleted file mode 100644
index 72e27a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chevron_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6L8.59,7.41 13.17,12l-4.58,4.59L10,18l6,-6 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/child_care.xml b/compose/material/material/icons/generator/raw-icons/sharp/child_care.xml
deleted file mode 100644
index 155d660..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/child_care.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c2.01,0 3.74,-1.23 4.5,-3h-9c0.76,1.77 2.49,3 4.5,3zM22.94,11.34c-0.25,-1.51 -1.36,-2.74 -2.81,-3.17 -0.53,-1.12 -1.28,-2.1 -2.19,-2.91C16.36,3.85 14.28,3 12,3s-4.36,0.85 -5.94,2.26c-0.92,0.81 -1.67,1.8 -2.19,2.91 -1.45,0.43 -2.56,1.65 -2.81,3.17 -0.04,0.21 -0.06,0.43 -0.06,0.66 0,0.23 0.02,0.45 0.06,0.66 0.25,1.51 1.36,2.74 2.81,3.17 0.52,1.11 1.27,2.09 2.17,2.89C7.62,20.14 9.71,21 12,21s4.38,-0.86 5.97,-2.28c0.9,-0.8 1.65,-1.79 2.17,-2.89 1.44,-0.43 2.55,-1.65 2.8,-3.17 0.04,-0.21 0.06,-0.43 0.06,-0.66 0,-0.23 -0.02,-0.45 -0.06,-0.66zM19,14c-0.1,0 -0.19,-0.02 -0.29,-0.03 -0.2,0.67 -0.49,1.29 -0.86,1.86C16.6,17.74 14.45,19 12,19s-4.6,-1.26 -5.85,-3.17c-0.37,-0.57 -0.66,-1.19 -0.86,-1.86 -0.1,0.01 -0.19,0.03 -0.29,0.03 -1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2c0.1,0 0.19,0.02 0.29,0.03 0.2,-0.67 0.49,-1.29 0.86,-1.86C7.4,6.26 9.55,5 12,5s4.6,1.26 5.85,3.17c0.37,0.57 0.66,1.19 0.86,1.86 0.1,-0.01 0.19,-0.03 0.29,-0.03 1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/child_friendly.xml b/compose/material/material/icons/generator/raw-icons/sharp/child_friendly.xml
deleted file mode 100644
index 7eb0a87..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/child_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2v8h8c0,-4.42 -3.58,-8 -8,-8zM19.32,15.89C20.37,14.54 21,12.84 21,11L6.44,11l-0.95,-2L2,9v2h2.22s1.89,4.07 2.12,4.42c-1.1,0.59 -1.84,1.75 -1.84,3.08C4.5,20.43 6.07,22 8,22c1.76,0 3.22,-1.3 3.46,-3h2.08c0.24,1.7 1.7,3 3.46,3 1.93,0 3.5,-1.57 3.5,-3.5 0,-1.04 -0.46,-1.97 -1.18,-2.61zM8,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.17,17 8,17s1.5,0.67 1.5,1.5S8.83,20 8,20zM17,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.17,17 17,17s1.5,0.67 1.5,1.5S17.83,20 17,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/chrome_reader_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/chrome_reader_mode.xml
deleted file mode 100644
index a247f0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/chrome_reader_mode.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12h7v1.5h-7L13,12zM13,9.5h7L20,11h-7L13,9.5zM13,14.5h7L20,16h-7v-1.5zM23,4L1,4v17h22L23,4zM21,19h-9L12,6h9v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/church.xml b/compose/material/material/icons/generator/raw-icons/sharp/church.xml
deleted file mode 100644
index b18e018..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/church.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12.22V9l-5,-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h8v-5h4v5h8v-8L18,12.22zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,13.5 12,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/circle.xml
deleted file mode 100644
index debf64f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10s10,-4.47 10,-10S17.53,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/circle_notifications.xml b/compose/material/material/icons/generator/raw-icons/sharp/circle_notifications.xml
deleted file mode 100644
index 948dacc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/circle_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,18.5L12,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5v0h3v0C13.5,17.83 12.83,18.5 12,18.5zM17,16H7v-2h1v-3c0,-1.86 1.28,-3.41 3,-3.86V5.5h2v1.64c1.72,0.45 3,2 3,3.86v3h1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/class.xml b/compose/material/material/icons/generator/raw-icons/sharp/class.xml
deleted file mode 100644
index 200fca2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4v20h16V2zM6,4h5v8l-2.5,-1.5L6,12V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/clean_hands.xml b/compose/material/material/icons/generator/raw-icons/sharp/clean_hands.xml
deleted file mode 100644
index 6f55d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/clean_hands.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.99,7l1.37,-0.63L16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63,-1.37L14.99,7zM20,14c1.1,0 2,-0.9 2,-2c0,-1.1 -2,-4 -2,-4s-2,2.9 -2,4C18,13.1 18.9,14 20,14zM1,22h4V11H1V22zM9.24,9.5L15,11.65V11c0,-2.42 -1.72,-4.44 -4,-4.9V4h2c0.57,0 1.1,0.17 1.55,0.45l1.43,-1.43C15.15,2.39 14.13,2 13,2c-1.48,0 -5.5,0 -5.5,0v2H9v2.11C7.22,6.48 5.8,7.79 5.25,9.5H9.24zM22,17h-9l-2.09,-0.73l0.33,-0.94L13,16h4l0,-2l-8.03,-3H7v9.02L14,22l8,-3V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cleaning_services.xml b/compose/material/material/icons/generator/raw-icons/sharp/cleaning_services.xml
deleted file mode 100644
index a049f2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cleaning_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11V1H9v10H3v12h18V11H15zM19,21h-2v-4h-2v4h-2v-4h-2v4H9v-4H7v4H5v-8h14V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/clear.xml b/compose/material/material/icons/generator/raw-icons/sharp/clear.xml
deleted file mode 100644
index 938bb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12 19,6.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/clear_all.xml b/compose/material/material/icons/generator/raw-icons/sharp/clear_all.xml
deleted file mode 100644
index dc649f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/clear_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h14v-2L5,11v2zM3,17h14v-2L3,15v2zM7,7v2h14L21,7L7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/close.xml b/compose/material/material/icons/generator/raw-icons/sharp/close.xml
deleted file mode 100644
index 938bb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/close.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12 19,6.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/close_fullscreen.xml b/compose/material/material/icons/generator/raw-icons/sharp/close_fullscreen.xml
deleted file mode 100644
index b884325..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/close_fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41zM3.41,22l5.29,-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/closed_caption.xml b/compose/material/material/icons/generator/raw-icons/sharp/closed_caption.xml
deleted file mode 100644
index da8d41b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/closed_caption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4v16h18L21,4zM11,11L9.5,11v-0.5h-2v3h2L9.5,13L11,13v2L6,15L6,9h5v2zM18,11h-1.5v-0.5h-2v3h2L16.5,13L18,13v2h-5L13,9h5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/closed_caption_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/closed_caption_disabled.xml
deleted file mode 100644
index b82ba0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/closed_caption_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H21v14.17L17.83,15H18v-2h-1.5v0.5h-0.17l-1.83,-1.83V10.5h2V11H18V9h-5v1.17L6.83,4zM19.78,22.61L17.17,20H3V5.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM11,13.83L10.17,13H9.5v0.5h-2v-3h0.17L6.17,9H6v6h5V13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/closed_caption_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/closed_caption_off.xml
deleted file mode 100644
index 0ad2f4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/closed_caption_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4H3v16h18V4zM11,11H9.5v-0.5h-2v3h2V13H11v2H6V9h5V11zM18,11h-1.5v-0.5h-2v3h2V13H18v2h-5V9h5V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud.xml
deleted file mode 100644
index 6f2f5cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud_circle.xml
deleted file mode 100644
index feaa819..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM16.5,16L8,16c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3h0.14c0.44,-1.73 1.99,-3 3.86,-3 2.21,0 4,1.79 4,4h0.5c1.38,0 2.5,1.12 2.5,2.5S17.88,16 16.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud_done.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud_done.xml
deleted file mode 100644
index 2341127..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM10,17l-3.5,-3.5 1.41,-1.41L10,14.18 15.18,9l1.41,1.41L10,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud_download.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud_download.xml
deleted file mode 100644
index 5cf9f5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM17,13l-5,5 -5,-5h3V9h4v4h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud_off.xml
deleted file mode 100644
index 52a10a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,15c0,-2.64 -2.05,-4.78 -4.65,-4.96C18.67,6.59 15.64,4 12,4c-1.33,0 -2.57,0.36 -3.65,0.97l1.49,1.49C10.51,6.17 11.23,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3 0,0.99 -0.48,1.85 -1.21,2.4l1.41,1.41c1.09,-0.92 1.8,-2.27 1.8,-3.81zM4.41,3.86L3,5.27l2.77,2.77h-0.42C2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h11.73l2,2 1.41,-1.41L4.41,3.86zM6,18c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h1.73l8,8H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud_queue.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud_queue.xml
deleted file mode 100644
index 8f71d61..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h0.71C7.37,7.69 9.48,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3s-1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud_sync.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud_sync.xml
deleted file mode 100644
index 2947d30..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud_sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,14.98c-0.02,0 -0.03,0 -0.05,0.01C21.2,13.3 19.76,12 18,12c-1.4,0 -2.6,0.83 -3.16,2.02C13.26,14.1 12,15.4 12,17c0,1.66 1.34,3 3,3l6.5,-0.02c1.38,0 2.5,-1.12 2.5,-2.5S22.88,14.98 21.5,14.98zM10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,6h-2.73c1.43,1.26 2.41,3.01 2.66,5l-2.02,0C17.68,9.64 16.98,8.45 16,7.56V10h-2V4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cloud_upload.xml b/compose/material/material/icons/generator/raw-icons/sharp/cloud_upload.xml
deleted file mode 100644
index 2896516..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cloud_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM14,13v4h-4v-4H7l5,-5 5,5h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/co2.xml b/compose/material/material/icons/generator/raw-icons/sharp/co2.xml
deleted file mode 100644
index 1492964..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/co2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9h-5v6h5V9zM13.5,13.5h-2v-3h2V13.5zM8,13v2H3V9h5v2H6.5v-0.5h-2v3h2V13H8zM18.5,15.5v1h3V18H17v-3.5h3v-1h-3V12h4.5v3.5H18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/co_present.xml b/compose/material/material/icons/generator/raw-icons/sharp/co_present.xml
deleted file mode 100644
index fc012e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/co_present.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3l-22,0l0,10l2,0l0,-8l18,0l0,16l2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,16.56C13.71,15.7 11.53,15 9,15c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,17.07 1,18.1 1,19.22V22h16v-2.78C17,18.1 16.39,17.07 15.39,16.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/code.xml b/compose/material/material/icons/generator/raw-icons/sharp/code.xml
deleted file mode 100644
index b97ee53..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/code.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.4,16.6L4.8,12l4.6,-4.6L8,6l-6,6 6,6 1.4,-1.4zM14.6,16.6l4.6,-4.6 -4.6,-4.6L16,6l6,6 -6,6 -1.4,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/code_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/code_off.xml
deleted file mode 100644
index d2cf633..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/code_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.17,12l-4.58,-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12zM1.39,4.22l4.19,4.19L2,12l6,6l1.41,-1.41L4.83,12L7,9.83l12.78,12.78l1.41,-1.41L2.81,2.81L1.39,4.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/coffee.xml b/compose/material/material/icons/generator/raw-icons/sharp/coffee.xml
deleted file mode 100644
index 42d267d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/coffee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,3H4v8c0,3.87 3.13,7 7,7h0c3.87,0 7,-3.13 7,-7v-1l0.4,0c1.67,0 3.19,-1.13 3.52,-2.77C22.39,4.98 20.67,3 18.5,3zM16,5v3H6V5H16zM18.5,8H18V5h0.5C19.33,5 20,5.67 20,6.5S19.33,8 18.5,8zM4,19h16v2H4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/coffee_maker.xml b/compose/material/material/icons/generator/raw-icons/sharp/coffee_maker.xml
deleted file mode 100644
index b4d4e7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/coffee_maker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7V4h2V2H4v20h16v-2h-4.03C17.2,19.09 18,17.64 18,16v-5H8v5c0,1.64 0.81,3.09 2.03,4H6V4h2v3H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/collections.xml b/compose/material/material/icons/generator/raw-icons/sharp/collections.xml
deleted file mode 100644
index fe7cc256..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/collections.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18L22,2L6,2v16h16zM11,12l2.03,2.71L16,11l4,5L8,16l3,-4zM2,6v16h16v-2L4,20L4,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/collections_bookmark.xml b/compose/material/material/icons/generator/raw-icons/sharp/collections_bookmark.xml
deleted file mode 100644
index bd12cd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/collections_bookmark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v16h16v-2L4,20L4,6zM22,2L6,2v16h16L22,2zM20,12l-2.5,-1.5L15,12L15,4h5v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/color_lens.xml b/compose/material/material/icons/generator/raw-icons/sharp/color_lens.xml
deleted file mode 100644
index 4bf1550..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/color_lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.39 -0.15,-0.74 -0.39,-1.01 -0.23,-0.26 -0.38,-0.61 -0.38,-0.99 0,-0.83 0.67,-1.5 1.5,-1.5L16,16c2.76,0 5,-2.24 5,-5 0,-4.42 -4.03,-8 -9,-8zM6.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,9 6.5,9 8,9.67 8,10.5 7.33,12 6.5,12zM9.5,8C8.67,8 8,7.33 8,6.5S8.67,5 9.5,5s1.5,0.67 1.5,1.5S10.33,8 9.5,8zM14.5,8c-0.83,0 -1.5,-0.67 -1.5,-1.5S13.67,5 14.5,5s1.5,0.67 1.5,1.5S15.33,8 14.5,8zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/colorize.xml b/compose/material/material/icons/generator/raw-icons/sharp/colorize.xml
deleted file mode 100644
index 25d0cad..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/colorize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.42,6.34l-3.75,-3.75 -3.82,3.82 -1.94,-1.91 -1.41,1.41 1.42,1.42L3,16.25V21h4.75l8.92,-8.92 1.42,1.42 1.41,-1.41 -1.92,-1.92 3.84,-3.83zM6.92,19L5,17.08l8.06,-8.06 1.92,1.92L6.92,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/comment.xml b/compose/material/material/icons/generator/raw-icons/sharp/comment.xml
deleted file mode 100644
index a080ffa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,2L2,2v16h16l4,4 -0.01,-20zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/comment_bank.xml b/compose/material/material/icons/generator/raw-icons/sharp/comment_bank.xml
deleted file mode 100644
index 9b62ebb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/comment_bank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v20l4,-4h16V2H2zM19,13l-2.5,-1.5L14,13V5h5V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/comments_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/comments_disabled.xml
deleted file mode 100644
index f3e6307..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/comments_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,14H18v-2h-3.17l-1,-1H18V9h-6.17l-1,-1H18V6H8.83l-4,-4H22v17.17L16.83,14zM2.1,2.1L0.69,3.51L2,4.83V18h13.17l5.31,5.31l1.41,-1.41L2.1,2.1zM6,9h0.17l2,2H6V9zM6,14v-2h3.17l2,2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/commit.xml b/compose/material/material/icons/generator/raw-icons/sharp/commit.xml
deleted file mode 100644
index 926bce2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/commit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.9,11L16.9,11c-0.46,-2.28 -2.48,-4 -4.9,-4s-4.44,1.72 -4.9,4h0H2v2h5.1h0c0.46,2.28 2.48,4 4.9,4s4.44,-1.72 4.9,-4h0H22v-2H16.9zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/commute.xml b/compose/material/material/icons/generator/raw-icons/sharp/commute.xml
deleted file mode 100644
index b9938c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/commute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L5,4C3.34,4 2,5.34 2,7v8c0,1.66 1.34,3 3,3l-1,1v1h1l2,-2h2v-5L4,13L4,6h9v2h2L15,7c0,-1.66 -1.34,-3 -3,-3zM5,14c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20.57,9.66c-0.14,-0.4 -0.52,-0.66 -0.97,-0.66h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66l-1.42,4.11v5.51c0,0.38 0.31,0.72 0.69,0.72h0.62c0.38,0 0.68,-0.38 0.68,-0.76L12,18h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72l0.01,-1.37v-4.14l-1.43,-4.11zM12.41,10h7.19l1.03,3h-9.25l1.03,-3zM12,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM20,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/compare.xml b/compose/material/material/icons/generator/raw-icons/sharp/compare.xml
deleted file mode 100644
index b0b9ca6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/compare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3L3,3v18h7v2h2L12,1h-2v2zM10,18L5,18l5,-6v6zM21,3h-7v2h5v13l-5,-6v9h7L21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/compare_arrows.xml b/compose/material/material/icons/generator/raw-icons/sharp/compare_arrows.xml
deleted file mode 100644
index 7c6cc72..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/compare_arrows.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.01,14L2,14v2h7.01v3L13,15l-3.99,-4v3zM14.99,13v-3L22,10L22,8h-7.01L14.99,5L11,9l3.99,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/compass_calibration.xml b/compose/material/material/icons/generator/raw-icons/sharp/compass_calibration.xml
deleted file mode 100644
index 9874537..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/compass_calibration.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.1,3 4.56,4.59 2,7.15l5,5c1.28,-1.28 3.05,-2.08 5,-2.08s3.72,0.79 5,2.07l5,-5C19.44,4.59 15.9,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/compost.xml b/compose/material/material/icons/generator/raw-icons/sharp/compost.xml
deleted file mode 100644
index b06253a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/compost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,11.81c-0.23,-0.38 -0.37,-0.83 -0.37,-1.31C12.5,9.12 13.62,8 15,8l1,0c1.51,0 2,-1 2,-1s0.55,6 -3,6c-0.49,0 -0.94,-0.14 -1.32,-0.38c-0.24,0.64 -0.59,1.76 -0.76,2.96c1.26,0.22 2.28,0.89 2.77,1.77c1.69,-1.17 2.81,-3.13 2.81,-5.35h3c0,5.24 -4.26,9.5 -9.5,9.5S2.5,17.24 2.5,12S6.76,2.5 12,2.5V0l4,4l-4,4V5.5c-3.58,0 -6.5,2.92 -6.5,6.5c0,2.21 1.11,4.17 2.81,5.35c0.51,-0.92 1.63,-1.62 2.98,-1.8c-0.09,-0.69 -0.26,-1.42 -0.49,-2.03C10.45,13.82 10,14 9.5,14c-1.1,0 -2,-0.9 -2,-2v-0.99c0,-0.56 -0.19,-1.09 -0.5,-1.51c0,0 4.45,-0.23 4.5,2.5c0,0.29 -0.06,0.56 -0.17,0.8C10.91,12.48 10.47,12.2 10,12c0.58,0.43 1.37,1.37 2,2.6c0.67,-1.62 1.68,-3.27 3,-4.6C14.24,10.52 13.53,11.12 12.87,11.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/compress.xml b/compose/material/material/icons/generator/raw-icons/sharp/compress.xml
deleted file mode 100644
index 1dee27a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/compress.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h16v2h-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4l-3,0l0,-3l-2,0l0,3l-3,0l4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19l3,0l0,3l2,0l0,-3l3,0l-4,-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12h16v2h-16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/computer.xml b/compose/material/material/icons/generator/raw-icons/sharp/computer.xml
deleted file mode 100644
index 51f4a2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/computer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l2,-2V4H2v12l2,2H0v2h24v-2h-4zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/confirmation_number.xml b/compose/material/material/icons/generator/raw-icons/sharp/confirmation_number.xml
deleted file mode 100644
index e20dc3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/confirmation_number.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10L22,4L2.01,4v6c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v6h20v-6c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2zM13,17.5h-2v-2h2v2zM13,13h-2v-2h2v2zM13,8.5h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/connect_without_contact.xml b/compose/material/material/icons/generator/raw-icons/sharp/connect_without_contact.xml
deleted file mode 100644
index b9a6ed4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/connect_without_contact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14H9c0,-4.97 4.03,-9 9,-9v2C14.13,7 11,10.13 11,14zM18,11V9c-2.76,0 -5,2.24 -5,5h2C15,12.34 16.34,11 18,11zM7,4c0,-1.11 -0.89,-2 -2,-2S3,2.89 3,4s0.89,2 2,2S7,5.11 7,4zM11.45,4.5h-2C9.21,5.92 7.99,7 6.5,7H2v4h6V8.74C9.86,8.15 11.25,6.51 11.45,4.5zM19,17c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S17.89,17 19,17zM17.5,18c-1.49,0 -2.71,-1.08 -2.95,-2.5h-2c0.2,2.01 1.59,3.65 3.45,4.24V22h6v-4H17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/connected_tv.xml b/compose/material/material/icons/generator/raw-icons/sharp/connected_tv.xml
deleted file mode 100644
index 42c106e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/connected_tv.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.57,16H10c0,-2.76 -2.24,-5 -5,-5v1.43C6.97,12.43 8.57,14.03 8.57,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.55,16H13c0,-4.42 -3.59,-8 -8,-8v1.45C8.61,9.45 11.55,12.38 11.55,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14v2h2C7,14.89 6.11,14 5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2v16h6v2h8v-2h6V3zM20,17H4V5h16V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/connecting_airports.xml b/compose/material/material/icons/generator/raw-icons/sharp/connecting_airports.xml
deleted file mode 100644
index 12357c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/connecting_airports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3l2.6,-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1l-0.75,-1H15.4zM5.75,7L5,6H4l0.6,2L4,10h1l0.75,-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L8.4,2.6H7.3L8.6,7H5.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/construction.xml b/compose/material/material/icons/generator/raw-icons/sharp/construction.xml
deleted file mode 100644
index 2c31758..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/construction.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.783,15.172l2.121,-2.121l5.996,5.996l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c1.93,0 3.5,-1.57 3.5,-3.5c0,-0.58 -0.16,-1.12 -0.41,-1.6l-2.7,2.7L16.4,6.11l2.7,-2.7C18.62,3.16 18.08,3 17.5,3C15.57,3 14,4.57 14,6.5c0,0.41 0.08,0.8 0.21,1.16l-1.85,1.85l-1.78,-1.78l0.71,-0.71L9.88,5.61L12,3.49c-1.17,-1.17 -3.07,-1.17 -4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71,-0.71V9.15l1.41,1.41l0.71,-0.71l1.78,1.78l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92 17.09,10 17.5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contact_emergency.xml b/compose/material/material/icons/generator/raw-icons/sharp/contact_emergency.xml
deleted file mode 100644
index 56d5f2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contact_emergency.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.99,3H0v18h23.99V3zM9,8c1.65,0 3,1.35 3,3s-1.35,3 -3,3s-3,-1.35 -3,-3S7.35,8 9,8zM2.08,19c1.38,-2.39 3.96,-4 6.92,-4s5.54,1.61 6.92,4H2.08zM20.97,9.85l-0.75,1.3l-1.47,-0.85V12h-1.5v-1.7l-1.47,0.85l-0.75,-1.3L16.5,9l-1.47,-0.85l0.75,-1.3l1.47,0.85V6h1.5v1.7l1.47,-0.85l0.75,1.3L19.5,9L20.97,9.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contact_mail.xml b/compose/material/material/icons/generator/raw-icons/sharp/contact_mail.xml
deleted file mode 100644
index 8f9a171..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contact_mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8L21,7l-3,2 -3,-2v1l3,2 3,-2zM24,3L0,3v18h23.99L24,3zM8,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM14,18L2,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1zM22,12h-8L14,6h8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contact_page.xml b/compose/material/material/icons/generator/raw-icons/sharp/contact_page.xml
deleted file mode 100644
index d5c08ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contact_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM12,10c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,10.9 10.9,10 12,10zM16,18H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,15.21 11.01,15 12,15c0.99,0 1.93,0.21 2.78,0.58C15.52,15.9 16,16.62 16,17.43V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contact_phone.xml b/compose/material/material/icons/generator/raw-icons/sharp/contact_phone.xml
deleted file mode 100644
index 2fcc29f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contact_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.99,3L0,3v18h24l-0.01,-18zM8,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM14,18L2,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1zM17.85,14h1.64L21,16l-1.99,1.99c-1.31,-0.98 -2.28,-2.38 -2.73,-3.99 -0.18,-0.64 -0.28,-1.31 -0.28,-2s0.1,-1.36 0.28,-2c0.45,-1.62 1.42,-3.01 2.73,-3.99L21,8l-1.51,2h-1.64c-0.22,0.63 -0.35,1.3 -0.35,2s0.13,1.37 0.35,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contact_support.xml b/compose/material/material/icons/generator/raw-icons/sharp/contact_support.xml
deleted file mode 100644
index b4098ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contact_support.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,2C6.81,2 3,5.81 3,10.5S6.81,19 11.5,19h0.5v3c4.86,-2.34 8,-7 8,-11.5C20,5.81 16.19,2 11.5,2zM12.5,16.5h-2v-2h2v2zM12.5,13h-2c0,-3.25 3,-3 3,-5 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2h-2c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.5 -3,2.75 -3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contactless.xml b/compose/material/material/icons/generator/raw-icons/sharp/contactless.xml
deleted file mode 100644
index 00a0d8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contactless.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM8.46,14.45L7.1,13.83c0.28,-0.61 0.41,-1.24 0.4,-1.86c-0.01,-0.63 -0.14,-1.24 -0.4,-1.8l1.36,-0.63c0.35,0.75 0.53,1.56 0.54,2.4C9.01,12.8 8.83,13.64 8.46,14.45zM11.53,16.01l-1.3,-0.74c0.52,-0.92 0.78,-1.98 0.78,-3.15c0,-1.19 -0.27,-2.33 -0.8,-3.4l1.34,-0.67c0.64,1.28 0.96,2.65 0.96,4.07C12.51,13.55 12.18,14.86 11.53,16.01zM14.67,17.33l-1.35,-0.66c0.78,-1.6 1.18,-3.18 1.18,-4.69c0,-1.51 -0.4,-3.07 -1.18,-4.64l1.34,-0.67C15.56,8.45 16,10.23 16,11.98C16,13.72 15.56,15.52 14.67,17.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contacts.xml b/compose/material/material/icons/generator/raw-icons/sharp/contacts.xml
deleted file mode 100644
index 366b031..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,0H4v2h16V0zM4,24h16v-2H4v2zM22,4H2v16h20V4zM12,6.75c1.24,0 2.25,1.01 2.25,2.25s-1.01,2.25 -2.25,2.25S9.75,10.24 9.75,9 10.76,6.75 12,6.75zM17,17H7v-1.5c0,-1.67 3.33,-2.5 5,-2.5s5,0.83 5,2.5V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/content_copy.xml b/compose/material/material/icons/generator/raw-icons/sharp/content_copy.xml
deleted file mode 100644
index e260b42..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/content_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L2,1v16h2L4,3h12L16,1zM21,5L6,5v18h15L21,5zM19,21L8,21L8,7h11v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/content_cut.xml b/compose/material/material/icons/generator/raw-icons/sharp/content_cut.xml
deleted file mode 100644
index 0df8d84..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/content_cut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.64,7.64c0.23,-0.5 0.36,-1.05 0.36,-1.64 0,-2.21 -1.79,-4 -4,-4S2,3.79 2,6s1.79,4 4,4c0.59,0 1.14,-0.13 1.64,-0.36L10,12l-2.36,2.36C7.14,14.13 6.59,14 6,14c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4c0,-0.59 -0.13,-1.14 -0.36,-1.64L12,14l7,7h3v-1L9.64,7.64zM6,8c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM6,20c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM12,12.5c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5 0.5,0.22 0.5,0.5 -0.22,0.5 -0.5,0.5zM19,3l-6,6 2,2 7,-7L22,3h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/content_paste.xml b/compose/material/material/icons/generator/raw-icons/sharp/content_paste.xml
deleted file mode 100644
index 368e1ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/content_paste.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2h-6.18C14.4,0.84 13.3,0 12,0S9.6,0.84 9.18,2L3,2v20h18L21,2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/content_paste_go.xml b/compose/material/material/icons/generator/raw-icons/sharp/content_paste_go.xml
deleted file mode 100644
index 6a3b623..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/content_paste_go.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v6h2V3h-6.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H3v18h7v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.01,13l-1.42,1.41l1.58,1.58l-6.17,0l0,2l6.17,0l-1.58,1.59l1.42,1.41l3.99,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/content_paste_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/content_paste_off.xml
deleted file mode 100644
index 824a02cb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/content_paste_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V21h15.17l1.61,1.61L21.19,21.19zM5,19V7.83L16.17,19H5zM17,8V5h2v11.17l2,2V3h-6.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5.83l5,5H17zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/content_paste_search.xml b/compose/material/material/icons/generator/raw-icons/sharp/content_paste_search.xml
deleted file mode 100644
index 9718e9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/content_paste_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v5h2V3h-6.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H3v18h7v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.3,18.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S12,14 12,16.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l2.7,2.7l1.4,-1.4L20.3,18.9zM16.5,19c-1.4,0 -2.5,-1.1 -2.5,-2.5c0,-1.4 1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5C19,17.9 17.9,19 16.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/contrast.xml b/compose/material/material/icons/generator/raw-icons/sharp/contrast.xml
deleted file mode 100644
index 8210b18..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/contrast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2S2,6.48 2,12S6.48,22 12,22zM13,4.07c3.94,0.49 7,3.85 7,7.93s-3.05,7.44 -7,7.93V4.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/control_camera.xml b/compose/material/material/icons/generator/raw-icons/sharp/control_camera.xml
deleted file mode 100644
index 4ac86f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/control_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.54,8.46L2,12l3.54,3.54 1.76,-1.77L5.54,12l1.76,-1.77zM18.46,8.46l-1.76,1.77L18.46,12l-1.76,1.77 1.76,1.77L22,12zM12,18.46l-1.77,-1.76 -1.77,1.76L12,22l3.54,-3.54 -1.77,-1.76zM8.46,5.54l1.77,1.76L12,5.54l1.77,1.76 1.77,-1.76L12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/control_point.xml b/compose/material/material/icons/generator/raw-icons/sharp/control_point.xml
deleted file mode 100644
index 58800d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/control_point.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/control_point_duplicate.xml b/compose/material/material/icons/generator/raw-icons/sharp/control_point_duplicate.xml
deleted file mode 100644
index 2d0269e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/control_point_duplicate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8h-2v3h-3v2h3v3h2v-3h3v-2h-3L16,8zM2,12c0,-2.79 1.64,-5.2 4.01,-6.32L6.01,3.52C2.52,4.76 0,8.09 0,12s2.52,7.24 6.01,8.48v-2.16C3.64,17.2 2,14.79 2,12zM15,3c-4.96,0 -9,4.04 -9,9s4.04,9 9,9 9,-4.04 9,-9 -4.04,-9 -9,-9zM15,19c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cookie.xml b/compose/material/material/icons/generator/raw-icons/sharp/cookie.xml
deleted file mode 100644
index 956a14b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cookie.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,10.99c-1.79,-0.03 -3.7,-1.95 -2.68,-4.22c-2.98,1 -5.77,-1.59 -5.19,-4.56C6.95,0.71 2,6.58 2,12c0,5.52 4.48,10 10,10C17.89,22 22.54,16.92 21.95,10.99zM8.5,15C7.67,15 7,14.33 7,13.5S7.67,12 8.5,12s1.5,0.67 1.5,1.5S9.33,15 8.5,15zM10.5,10C9.67,10 9,9.33 9,8.5S9.67,7 10.5,7S12,7.67 12,8.5S11.33,10 10.5,10zM15,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,15.55 15.55,16 15,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/copy_all.xml b/compose/material/material/icons/generator/raw-icons/sharp/copy_all.xml
deleted file mode 100644
index 5a82d53..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/copy_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H7v16h13V2zM18,16H9V4h9V16zM3,15v-2h2v2H3zM3,9.5h2v2H3V9.5zM10,20h2v2h-2V20zM3,18.5v-2h2v2H3zM5,22H3v-2h2V22zM8.5,22h-2v-2h2V22zM15.5,22h-2v-2h2V22zM3,6h2v2H3V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/copyright.xml b/compose/material/material/icons/generator/raw-icons/sharp/copyright.xml
deleted file mode 100644
index 2fde576..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/copyright.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.08,10.86c0.05,-0.33 0.16,-0.62 0.3,-0.87s0.34,-0.46 0.59,-0.62c0.24,-0.15 0.54,-0.22 0.91,-0.23 0.23,0.01 0.44,0.05 0.63,0.13 0.2,0.09 0.38,0.21 0.52,0.36s0.25,0.33 0.34,0.53 0.13,0.42 0.14,0.64h1.79c-0.02,-0.47 -0.11,-0.9 -0.28,-1.29s-0.4,-0.73 -0.7,-1.01 -0.66,-0.5 -1.08,-0.66 -0.88,-0.23 -1.39,-0.23c-0.65,0 -1.22,0.11 -1.7,0.34s-0.88,0.53 -1.2,0.92 -0.56,0.84 -0.71,1.36S8,11.29 8,11.87v0.27c0,0.58 0.08,1.12 0.23,1.64s0.39,0.97 0.71,1.35 0.72,0.69 1.2,0.91c0.48,0.22 1.05,0.34 1.7,0.34 0.47,0 0.91,-0.08 1.32,-0.23s0.77,-0.36 1.08,-0.63 0.56,-0.58 0.74,-0.94 0.29,-0.74 0.3,-1.15h-1.79c-0.01,0.21 -0.06,0.4 -0.15,0.58s-0.21,0.33 -0.36,0.46 -0.32,0.23 -0.52,0.3c-0.19,0.07 -0.39,0.09 -0.6,0.1 -0.36,-0.01 -0.66,-0.08 -0.89,-0.23 -0.25,-0.16 -0.45,-0.37 -0.59,-0.62s-0.25,-0.55 -0.3,-0.88 -0.08,-0.67 -0.08,-1v-0.27c0,-0.35 0.03,-0.68 0.08,-1.01zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/coronavirus.xml b/compose/material/material/icons/generator/raw-icons/sharp/coronavirus.xml
deleted file mode 100644
index 5946f75..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/coronavirus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,10.5v0.75h-1.54c-0.15,-1.37 -0.69,-2.63 -1.52,-3.65l1.09,-1.09l0.01,0.01l0.53,0.53l1.06,-1.06l-2.12,-2.12l-1.06,1.06l0.52,0.52l-1.09,1.09c-1.02,-0.82 -2.27,-1.36 -3.64,-1.51V3.5h0.01h0.75V2h-3v1.5h0.74v1.54C9.87,5.19 8.62,5.74 7.6,6.56L6.51,5.47l0.01,-0.01l0.53,-0.53L5.99,3.87L3.87,5.99l1.06,1.06l0.52,-0.52l1.09,1.09c-0.82,1.02 -1.36,2.26 -1.5,3.63H3.5V10.5H2v3h1.5v-0.75h1.54c0.15,1.37 0.69,2.61 1.5,3.63l-1.09,1.09l-0.52,-0.52l-1.06,1.06l2.12,2.12l1.06,-1.06l-0.53,-0.53v0l-0.01,-0.01l1.09,-1.09c1.02,0.82 2.26,1.36 3.63,1.51v1.54H10.5V22h3v-1.5h-0.75h-0.01v-1.54c1.37,-0.14 2.62,-0.69 3.64,-1.51l1.09,1.09l-0.52,0.52l1.06,1.06l2.12,-2.12l-1.06,-1.06l-0.53,0.53c0,0 0,0 0,0l-0.01,0.01l-1.09,-1.09c0.82,-1.02 1.37,-2.27 1.52,-3.65h1.54v0.75H22v-3H20.5zM13.75,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S13.2,8 13.75,8zM10.25,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S9.7,8 10.25,8zM8.5,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9.5,12.55 9.05,13 8.5,13zM10.25,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C11.25,15.55 10.8,16 10.25,16zM12,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,12.55 12.55,13 12,13zM13.75,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C14.75,15.55 14.3,16 13.75,16zM15.5,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16.5,12.55 16.05,13 15.5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/corporate_fare.xml b/compose/material/material/icons/generator/raw-icons/sharp/corporate_fare.xml
deleted file mode 100644
index 9ad3b6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/corporate_fare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h20V7H12zM10,19H4v-2h6V19zM10,15H4v-2h6V15zM10,11H4V9h6V11zM10,7H4V5h6V7zM20,19h-8V9h8V19zM18,11h-4v2h4V11zM18,15h-4v2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cottage.xml b/compose/material/material/icons/generator/raw-icons/sharp/cottage.xml
deleted file mode 100644
index db9752e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cottage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h7v-6h2v6h7v-9.38l1.79,1.36L23,11.4L12,3zM10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/countertops.xml b/compose/material/material/icons/generator/raw-icons/sharp/countertops.xml
deleted file mode 100644
index e94fab6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/countertops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10V7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3h2c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1v3H8c1.1,0 2,-0.9 2,-2V4H4v4c0,1.1 0.9,2 2,2H2v2h2v8h16v-8h2v-2H18zM13,18h-2v-6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/create.xml b/compose/material/material/icons/generator/raw-icons/sharp/create.xml
deleted file mode 100644
index 3697a34..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/create.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM21.41,6.34l-3.75,-3.75 -2.53,2.54 3.75,3.75 2.53,-2.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/create_new_folder.xml b/compose/material/material/icons/generator/raw-icons/sharp/create_new_folder.xml
deleted file mode 100644
index 77566cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/create_new_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L12,6l-2,-2L2,4v16h20L22,6zM19,14h-3v3h-2v-3h-3v-2h3L14,9h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/credit_card.xml b/compose/material/material/icons/generator/raw-icons/sharp/credit_card.xml
deleted file mode 100644
index be4b210..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/credit_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2.01,4L2,20h20L22,4zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/credit_card_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/credit_card_off.xml
deleted file mode 100644
index 31468fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/credit_card_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H22v15.17L14.83,12H20V8h-9.17L6.83,4zM20.49,23.31L17.17,20H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM9.17,12l-4,-4H4v4H9.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/credit_score.xml b/compose/material/material/icons/generator/raw-icons/sharp/credit_score.xml
deleted file mode 100644
index 29f71f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/credit_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h7v-2H4v-6h18V4H2zM20,8H4V6h16V8zM14.93,19.17l-2.83,-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41,-1.41L14.93,19.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crib.xml b/compose/material/material/icons/generator/raw-icons/sharp/crib.xml
deleted file mode 100644
index 72ea723..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crib.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9h-8V4H8C5.79,4 4,5.79 4,8v8h4v2.93c-0.61,-0.35 -1.16,-0.78 -1.65,-1.27l-1.42,1.42C6.74,20.88 9.24,22 12,22c2.76,0 5.26,-1.12 7.07,-2.93l-1.42,-1.42c-0.49,0.49 -1.05,0.92 -1.65,1.27V16h4V9zM14,19.75C13.36,19.91 12.69,20 12,20c-0.69,0 -1.36,-0.09 -2,-0.25V16h4V19.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crisis_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/crisis_alert.xml
deleted file mode 100644
index e254225..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crisis_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,2.5c0,1.06 -0.75,3.64 -1.19,5.04C13.13,8.11 12.6,8.5 12,8.5h0c-0.6,0 -1.13,-0.39 -1.31,-0.96C10.25,6.14 9.5,3.56 9.5,2.5C9.5,1.12 10.62,0 12,0S14.5,1.12 14.5,2.5zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM16.08,5.11c0.18,-0.75 0.33,-1.47 0.39,-2.06C19.75,4.69 22,8.08 22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-3.92 2.25,-7.31 5.53,-8.95C7.6,3.64 7.74,4.37 7.92,5.11C5.58,6.51 4,9.07 4,12c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,9.07 18.42,6.51 16.08,5.11zM18,12c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2 0.98,-3.77 2.48,-4.86c0.23,0.81 0.65,2.07 0.65,2.07C8.43,9.93 8,10.92 8,12c0,2.21 1.79,4 4,4s4,-1.79 4,-4c0,-1.08 -0.43,-2.07 -1.13,-2.79c0,0 0.41,-1.22 0.65,-2.07C17.02,8.23 18,10 18,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop.xml
deleted file mode 100644
index 53733d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2V5H9v2h8v8zM7,17V1H5v4H1v2h4v12h12v4h2v-4h4v-2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_16_9.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_16_9.xml
deleted file mode 100644
index a93aa0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_16_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7H3v10h18V7zM19,15H5V9h14V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_3_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_3_2.xml
deleted file mode 100644
index ebf489a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_3_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6H3v12h18V6zM19,16H5V8h14V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_5_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_5_4.xml
deleted file mode 100644
index a84f108f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_5_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4H3v16h18V4zM19,18H5V6h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_7_5.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_7_5.xml
deleted file mode 100644
index ebb0365..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_7_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5H3v14h18V5zM19,17H5V7h14V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_din.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_din.xml
deleted file mode 100644
index e4b0f48..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_din.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_free.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_free.xml
deleted file mode 100644
index a62f1f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v6h2L5,5h4L9,3L3,3zM5,15L3,15v6h6v-2L5,19v-4zM19,19h-4v2h6v-6h-2v4zM21,3h-6v2h4v4h2L21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_landscape.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_landscape.xml
deleted file mode 100644
index 22a2927..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5L3,5v14h18L21,5zM19,17L5,17L5,7h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_original.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_original.xml
deleted file mode 100644
index 16228b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_original.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM19,19L5,19L5,5h14v14zM13.96,12.29l-2.75,3.54 -1.96,-2.36L6.5,17h11l-3.54,-4.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_portrait.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_portrait.xml
deleted file mode 100644
index 48d8a06..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3v18h14L19,3zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_rotate.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_rotate.xml
deleted file mode 100644
index 01ed55c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_rotate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.47,21.49C4.2,19.93 1.86,16.76 1.5,13L0,13c0.51,6.16 5.66,11 11.95,11 0.23,0 0.44,-0.02 0.66,-0.03L8.8,20.15l-1.33,1.34zM12.05,0c-0.23,0 -0.44,0.02 -0.66,0.04l3.81,3.81 1.33,-1.33C19.8,4.07 22.14,7.24 22.5,11L24,11c-0.51,-6.16 -5.66,-11 -11.95,-11zM16,14h2L18,6h-8v2h6v6zM8,16L8,4L6,4v2L4,6v2h2v10h10v2h2v-2h2v-2L8,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/crop_square.xml b/compose/material/material/icons/generator/raw-icons/sharp/crop_square.xml
deleted file mode 100644
index c09d63f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/crop_square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4v16h16L20,4zM18,18L6,18L6,6h12v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cruelty_free.xml b/compose/material/material/icons/generator/raw-icons/sharp/cruelty_free.xml
deleted file mode 100644
index 4fc1fef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cruelty_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.84,14.52c-0.26,-0.19 -0.62,-0.63 -0.79,-0.84C17.24,12.01 19,8.87 19,5c0,-1.95 -0.74,-3 -2,-3c-1.54,0 -3.96,2.06 -5,5.97C10.96,4.06 8.54,2 7,2C5.74,2 5,3.05 5,5c0,3.87 1.76,7.01 2.95,8.68c-0.17,0.21 -0.53,0.65 -0.79,0.84c-0.5,0.41 -1.66,1.37 -1.66,2.98c0,2.21 1.79,4 4,4c1.55,0 2.5,-0.56 2.5,-0.56s0.95,0.56 2.5,0.56c2.21,0 4,-1.79 4,-4C18.5,15.89 17.34,14.93 16.84,14.52zM9.35,12.2C8.34,10.7 7,8.12 7,5c0,-0.49 0.06,-0.8 0.12,-0.97c0.94,0.31 3.24,2.71 3.38,7.64C10.03,11.79 9.66,11.97 9.35,12.2zM10.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S11,15.59 11,16C11,16.41 10.78,16.75 10.5,16.75zM12,19.5c-0.55,0 -1,-0.72 -1,-1c0,-0.28 0.45,-0.5 1,-0.5s1,0.22 1,0.5C13,18.78 12.55,19.5 12,19.5zM13.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S14,15.59 14,16C14,16.41 13.78,16.75 13.5,16.75zM13.5,11.67c0.14,-4.93 2.44,-7.33 3.38,-7.64C16.94,4.2 17,4.51 17,5c0,3.12 -1.34,5.7 -2.35,7.2C14.34,11.97 13.97,11.79 13.5,11.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/css.xml b/compose/material/material/icons/generator/raw-icons/sharp/css.xml
deleted file mode 100644
index ff84204..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/css.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,15v-2H11v0.5h2v-1H9.5V9h5v2H13v-0.5h-2v1h3.5V15H9.5zM16,15h5v-3.5h-3.5v-1h2V11H21V9h-5v3.5h3.5v1h-2V13H16V15zM8,11V9H3v6h5v-2H6.5v0.5h-2v-3h2V11H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_bitcoin.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_bitcoin.xml
deleted file mode 100644
index 8fcc49e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_bitcoin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.57C17.65,10.88 18,9.98 18,9c0,-1.86 -1.27,-3.43 -3,-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2c2.21,0 4,-1.79 4,-4C19,13.55 18.22,12.27 17.06,11.57zM10,7h4c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-4V7zM15,17h-5v-4h5c1.1,0 2,0.9 2,2S16.1,17 15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_exchange.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_exchange.xml
deleted file mode 100644
index 672b0ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_exchange.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.89,11.1c-1.78,-0.59 -2.64,-0.96 -2.64,-1.9c0,-1.02 1.11,-1.39 1.81,-1.39c1.31,0 1.79,0.99 1.9,1.34l1.58,-0.67C15.39,8.03 14.72,6.56 13,6.24V5h-2v1.26C8.52,6.82 8.51,9.12 8.51,9.22c0,2.27 2.25,2.91 3.35,3.31c1.58,0.56 2.28,1.07 2.28,2.03c0,1.13 -1.05,1.61 -1.98,1.61c-1.82,0 -2.34,-1.87 -2.4,-2.09L8.1,14.75c0.63,2.19 2.28,2.78 2.9,2.96V19h2v-1.24c0.4,-0.09 2.9,-0.59 2.9,-3.22C15.9,13.15 15.29,11.93 12.89,11.1zM3,21H1v-6h6v2l-2.48,0c1.61,2.41 4.36,4 7.48,4c4.97,0 9,-4.03 9,-9h2c0,6.08 -4.92,11 -11,11c-3.72,0 -7.01,-1.85 -9,-4.67L3,21zM1,12C1,5.92 5.92,1 12,1c3.72,0 7.01,1.85 9,4.67L21,3h2v6h-6V7l2.48,0C17.87,4.59 15.12,3 12,3c-4.97,0 -9,4.03 -9,9H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_franc.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_franc.xml
deleted file mode 100644
index 679d05e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_franc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5l0,-2l-11,0l0,13l-2,0l0,2l2,0l0,3l2,0l0,-3l4,0l0,-2l-4,0l0,-3l8,0l0,-2l-8,0l0,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_lira.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_lira.xml
deleted file mode 100644
index 857ee0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_lira.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0 5,-2.24 5,-5h2c0,3.87 -3.13,7 -7,7H9v-5.16l-3,1.88l0,-2.36l3,-1.88v-2.36L6,13l0,-2.36L9,8.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_pound.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_pound.xml
deleted file mode 100644
index 7297f11..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_pound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,21c1.93,0 3.62,-1.17 4,-3l-1.75,-0.88C16,18.21 15.33,19 14,19l-4.9,0c0.83,-1 1.5,-2.34 1.5,-4c0,-0.35 -0.03,-0.69 -0.08,-1L14,14v-2l-4.18,0C9,10.42 8,9.6 8,8c0,-1.93 1.57,-3.5 3.5,-3.5c1.5,0 2.79,0.95 3.28,2.28L16.63,6c-0.8,-2.05 -2.79,-3.5 -5.13,-3.5C8.46,2.5 6,4.96 6,8c0,1.78 0.79,2.9 1.49,4L6,12v2l2.47,0c0.08,0.31 0.13,0.64 0.13,1c0,2.7 -2.6,4 -2.6,4v2H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_ruble.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_ruble.xml
deleted file mode 100644
index 15154683..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_ruble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0 5.5,-2.46 5.5,-5.5C19,5.46 16.54,3 13.5,3zM13.5,12H9V5h4.5C15.43,5 17,6.57 17,8.5S15.43,12 13.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_rupee.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_rupee.xml
deleted file mode 100644
index 422698e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_rupee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.66,7C13.1,5.82 11.9,5 10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58 0.84,1.26 1.05,2L18,7v2l-2.02,0c-0.25,2.8 -2.61,5 -5.48,5H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0 3.22,-1.3 3.46,-3L6,9V7L13.66,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_yen.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_yen.xml
deleted file mode 100644
index 16f26eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_yen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,11l4.08,0l0,2l-5,0l0,2l5,0l0,2l-5,0l0,4l-2,0l0,-4l-5,0l0,-2l5,0l0,-2l-5,0l0,-2l4.08,0l-5.08,-8l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/currency_yuan.xml b/compose/material/material/icons/generator/raw-icons/sharp/currency_yuan.xml
deleted file mode 100644
index 5fe3115..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/currency_yuan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.28,12l4.72,0l0,2l-5,0l0,7l-2,0l0,-7l-5,0l0,-2l4.72,0l-5.72,-9l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/curtains.xml b/compose/material/material/icons/generator/raw-icons/sharp/curtains.xml
deleted file mode 100644
index ead7608..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/curtains.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM8.19,12c2.04,-1.35 3.5,-3.94 3.76,-7h0.09c0.26,3.06 1.72,5.65 3.76,7c-2.04,1.35 -3.5,3.94 -3.76,7h-0.09C11.69,15.94 10.23,13.35 8.19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/curtains_closed.xml b/compose/material/material/icons/generator/raw-icons/sharp/curtains_closed.xml
deleted file mode 100644
index f951c6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/curtains_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM11,5h2v14h-2V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/cyclone.xml b/compose/material/material/icons/generator/raw-icons/sharp/cyclone.xml
deleted file mode 100644
index dd08136a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/cyclone.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4C16,9.79 14.21,8 12,8zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.47V5.35C20.05,4.77 16.56,4 12,4C9.85,4 7.89,4.86 6.46,6.24C6.59,5.39 6.86,3.84 7.47,2H5.35C4.77,3.95 4,7.44 4,12c0,2.15 0.86,4.11 2.24,5.54c-0.85,-0.14 -2.4,-0.4 -4.24,-1.01v2.12C3.95,19.23 7.44,20 12,20c2.15,0 4.11,-0.86 5.54,-2.24c-0.14,0.85 -0.4,2.4 -1.01,4.24h2.12C19.23,20.05 20,16.56 20,12c0,-2.15 -0.86,-4.11 -2.24,-5.54C18.61,6.59 20.16,6.86 22,7.47zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S15.31,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dangerous.xml b/compose/material/material/icons/generator/raw-icons/sharp/dangerous.xml
deleted file mode 100644
index c2945c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dangerous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM16.24,14.83l-1.41,1.41L12,13.41l-2.83,2.83l-1.41,-1.41L10.59,12L7.76,9.17l1.41,-1.41L12,10.59l2.83,-2.83l1.41,1.41L13.41,12L16.24,14.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dark_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/dark_mode.xml
deleted file mode 100644
index e539116..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dark_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9c0,-0.46 -0.04,-0.92 -0.1,-1.36c-0.98,1.37 -2.58,2.26 -4.4,2.26c-2.98,0 -5.4,-2.42 -5.4,-5.4c0,-1.81 0.89,-3.42 2.26,-4.4C12.92,3.04 12.46,3 12,3L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dashboard.xml b/compose/material/material/icons/generator/raw-icons/sharp/dashboard.xml
deleted file mode 100644
index a882fd8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h8L11,3L3,3v10zM3,21h8v-6L3,15v6zM13,21h8L21,11h-8v10zM13,3v6h8L21,3h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dashboard_customize.xml b/compose/material/material/icons/generator/raw-icons/sharp/dashboard_customize.xml
deleted file mode 100644
index 46da620..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dashboard_customize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h8v8H3V3zM13,3h8v8h-8V3zM3,13h8v8H3V13zM18,13h-2v3h-3v2h3v3h2v-3h3v-2h-3V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/data_array.xml b/compose/material/material/icons/generator/raw-icons/sharp/data_array.xml
deleted file mode 100644
index 3f9d0b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/data_array.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4l0,2l3,0l0,12l-3,0l0,2l5,0l0,-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20l5,0l0,-2l-3,0l0,-12l3,0l0,-2l-5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/data_exploration.xml b/compose/material/material/icons/generator/raw-icons/sharp/data_exploration.xml
deleted file mode 100644
index c057089..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/data_exploration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,1.33 0.26,2.61 0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29,-2.79l-4.4,4.4C5.52,20.26 8.56,22 12,22h10V12C22,6.48 17.52,2 12,2zM19.5,20.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.05,20.5 19.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/data_object.xml b/compose/material/material/icons/generator/raw-icons/sharp/data_object.xml
deleted file mode 100644
index 20cfdf2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/data_object.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10l-2,0l0,4l2,0l0,6l6,0l0,-2l-4,0l0,-5.5l-2,0l0,-1l2,0l0,-5.5l4,0l0,-2l-6,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10l0,-6l-6,0l0,2l4,0l0,5.5l2,0l0,1l-2,0l0,5.5l-4,0l0,2l6,0l0,-6l2,0l0,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/data_saver_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/data_saver_off.xml
deleted file mode 100644
index 7a0a8be..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/data_saver_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/data_saver_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/data_saver_on.xml
deleted file mode 100644
index cd4a458..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/data_saver_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11zM13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/data_thresholding.xml b/compose/material/material/icons/generator/raw-icons/sharp/data_thresholding.xml
deleted file mode 100644
index ff5aad3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/data_thresholding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM10.67,8.17l2,2l3.67,-3.67l1.41,1.41L12.67,13l-2,-2l-3,3l-1.41,-1.41L10.67,8.17zM5,16h1.72L5,17.72V16zM5.84,19l3,-3h1.83l-3,3H5.84zM9.8,19l3,-3h1.62l-3,3H9.8zM13.53,19l3,-3h1.62l-3,3H13.53zM19,19h-1.73L19,17.27V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/data_usage.xml b/compose/material/material/icons/generator/raw-icons/sharp/data_usage.xml
deleted file mode 100644
index e1919ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/data_usage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92 0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53c0.56,-1.24 0.88,-2.62 0.88,-4.07 0,-5.18 -3.95,-9.45 -9,-9.95zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-3.53 2.61,-6.43 6,-6.92V2.05c-5.06,0.5 -9,4.76 -9,9.95 0,5.52 4.47,10 9.99,10 3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dataset.xml b/compose/material/material/icons/generator/raw-icons/sharp/dataset.xml
deleted file mode 100644
index 7d70f62..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dataset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM11,17H7v-4h4V17zM11,11H7V7h4V11zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dataset_linked.xml b/compose/material/material/icons/generator/raw-icons/sharp/dataset_linked.xml
deleted file mode 100644
index f5d233c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dataset_linked.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.09,17H7v-4h3.69c0.95,-0.63 2.09,-1 3.31,-1h6c0.34,0 0.67,0.04 1,0.09V3H3v18h5.81C8.3,20.12 8,19.09 8,18C8,17.66 8.04,17.33 8.09,17zM13,7h4v4h-4V7zM7,7h4v4H7V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c0,-1.1 0.9,-2 2,-2h2v-2h-2c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4h2v-2h-2C12.9,20 12,19.1 12,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14h-2v2h2c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-2v2h2c2.21,0 4,-1.79 4,-4C24,15.79 22.21,14 20,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/date_range.xml b/compose/material/material/icons/generator/raw-icons/sharp/date_range.xml
deleted file mode 100644
index 2088638..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/date_range.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11L7,11v2h2v-2zM13,11h-2v2h2v-2zM17,11h-2v2h2v-2zM21,4h-3L18,2h-2v2L8,4L8,2L6,2v2L3,4v18h18L21,4zM19,20L5,20L5,9h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/deblur.xml b/compose/material/material/icons/generator/raw-icons/sharp/deblur.xml
deleted file mode 100644
index 3c8ea52..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/deblur.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v18c4.97,0 9,-4.03 9,-9C21,7.03 16.97,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/deck.xml b/compose/material/material/icons/generator/raw-icons/sharp/deck.xml
deleted file mode 100644
index c6af7a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/deck.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9l-10,-7l-10,7l9,0l0,13l2,0l0,-13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.14,12l-1.96,0.37l0.82,4.37l0,5.26l2,0l0.02,-4l1.98,0l0,4l2,0l0,-6l-4.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,16l-4.1,0l0,6l2,0l0,-4l1.98,0l0.02,4l2,0l0,-5.26l0.82,-4.37l-1.96,-0.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dehaze.xml b/compose/material/material/icons/generator/raw-icons/sharp/dehaze.xml
deleted file mode 100644
index d068f3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dehaze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2h20v-2L2,16zM2,11v2h20v-2L2,11zM2,6v2h20L22,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/delete.xml b/compose/material/material/icons/generator/raw-icons/sharp/delete.xml
deleted file mode 100644
index 0236de7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,21h12V7H6v14zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/delete_forever.xml b/compose/material/material/icons/generator/raw-icons/sharp/delete_forever.xml
deleted file mode 100644
index 0ee354e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/delete_forever.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,21h12L18,7L6,7v14zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4h-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/delete_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/delete_outline.xml
deleted file mode 100644
index 910d1a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/delete_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,21h12L18,7L6,7v14zM8,9h8v10L8,19L8,9zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4h-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/delete_sweep.xml b/compose/material/material/icons/generator/raw-icons/sharp/delete_sweep.xml
deleted file mode 100644
index 9c36b12..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/delete_sweep.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16h4v2h-4v-2zM15,8h7v2h-7L15,8zM15,12h6v2h-6v-2zM3,20h10L13,8L3,8v12zM14,5h-3l-1,-1L6,4L5,5L2,5v2h12L14,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/delivery_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/delivery_dining.xml
deleted file mode 100644
index 009376d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/delivery_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10.35V5h-5v2h3v2.65L13.52,14H10V9H2v7h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1C20,16.55 19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/density_large.xml b/compose/material/material/icons/generator/raw-icons/sharp/density_large.xml
deleted file mode 100644
index d542113..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/density_large.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/density_medium.xml b/compose/material/material/icons/generator/raw-icons/sharp/density_medium.xml
deleted file mode 100644
index c06902b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/density_medium.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/density_small.xml b/compose/material/material/icons/generator/raw-icons/sharp/density_small.xml
deleted file mode 100644
index eb68a8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/density_small.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,20h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/departure_board.xml b/compose/material/material/icons/generator/raw-icons/sharp/departure_board.xml
deleted file mode 100644
index 212010d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/departure_board.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,1.13c-2.94,-0.55 -5.63,0.75 -7.12,2.92 0.01,-0.01 0.01,-0.02 0.02,-0.03C9.84,4 9.42,4 9,4c-4.42,0 -8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22L2,23h3v-2h8v2h3v-2.78c0.61,-0.55 1,-1.34 1,-2.22v-3.08c3.72,-0.54 6.5,-3.98 5.92,-7.97 -0.42,-2.9 -2.7,-5.29 -5.58,-5.82zM4.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5S3.67,16 4.5,16s1.5,0.67 1.5,1.5S5.33,19 4.5,19zM3,13L3,8h6c0,1.96 0.81,3.73 2.11,5L3,13zM13.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,13c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM16.5,4L15,4v5l3.62,2.16 0.75,-1.23 -2.87,-1.68L16.5,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/description.xml b/compose/material/material/icons/generator/raw-icons/sharp/description.xml
deleted file mode 100644
index b6f6404..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/description.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L4,2v20h16L20,8l-6,-6zM16,18L8,18v-2h8v2zM16,14L8,14v-2h8v2zM13,9L13,3.5L18.5,9L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/deselect.xml b/compose/material/material/icons/generator/raw-icons/sharp/deselect.xml
deleted file mode 100644
index 2fbd1f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/deselect.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2H3V13zM7,21h2v-2H7V21zM13,3h-2v2h2V3zM19,3v2h2V3H19zM5,21v-2H3v2H5zM3,17h2v-2H3V17zM11,21h2v-2h-2V21zM19,13h2v-2h-2V13zM19,9h2V7h-2V9zM15,5h2V3h-2V5zM7.83,5L7,4.17V3h2v2H7.83zM19.83,17L19,16.17V15h2v2H19.83zM21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19zM9,15v-3.17L12.17,15H9zM15,12.17V9h-3.17l-2,-2H17v7.17L15,12.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/design_services.xml b/compose/material/material/icons/generator/raw-icons/sharp/design_services.xml
deleted file mode 100644
index e0c06b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/design_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.79,17.06l-5.55,-5.55l1.57,-1.57l-3.75,-3.75l-1.57,1.57L6.94,2.21L2.21,6.94l5.55,5.55L3,17.25V21h3.75l4.76,-4.76l5.55,5.55l0,0v0L21.79,17.06zM9.18,11.07L5.04,6.94l1.9,-1.9l1.27,1.27L7.02,7.5l1.41,1.41l1.19,-1.19l1.45,1.45L9.18,11.07zM12.93,14.82l1.9,-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19,-1.19l1.27,1.27l-1.9,1.9L12.93,14.82z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.133,5.123l2.538,-2.538l3.748,3.748l-2.538,2.538z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/desk.xml b/compose/material/material/icons/generator/raw-icons/sharp/desk.xml
deleted file mode 100644
index c6f9813..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/desk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6v12h2V8h10v10h2v-2h4v2h2V6H2zM20,8v2h-4V8H20zM16,14v-2h4v2H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/desktop_access_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/desktop_access_disabled.xml
deleted file mode 100644
index 89907d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/desktop_access_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.69L0,3.1l1,0.99V18h9v2H8v2h8v-2h-2v-2h0.9l6,6 1.41,-1.41 -20.9,-20.9zM2.99,16V6.09L12.9,16H2.99zM4.55,2l2,2H21v12h-2.45l2,2h2.44V2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/desktop_mac.xml b/compose/material/material/icons/generator/raw-icons/sharp/desktop_mac.xml
deleted file mode 100644
index 4d7c13a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/desktop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,2L1,2v16h9l-2,3v1h8v-1l-2,-3h9L23,2zM21,14L3,14L3,4h18v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/desktop_windows.xml b/compose/material/material/icons/generator/raw-icons/sharp/desktop_windows.xml
deleted file mode 100644
index 36ae545..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/desktop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,2L1,2v16h9v2L8,20v2h8v-2h-2v-2h9L23,2zM21,16L3,16L3,4h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/details.xml b/compose/material/material/icons/generator/raw-icons/sharp/details.xml
deleted file mode 100644
index 91fe861..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/details.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,21h20L12,3zM13,8.92L18.6,19H13V8.92zM11,8.92V19H5.4L11,8.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/developer_board.xml b/compose/material/material/icons/generator/raw-icons/sharp/developer_board.xml
deleted file mode 100644
index d8fea0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/developer_board.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9L22,7h-2L20,3L2,3v18h18v-4h2v-2h-2v-2h2v-2h-2L20,9h2zM18,19L4,19L4,5h14v14zM6,13h5v4L6,17v-4zM12,7h4v3h-4L12,7zM6,7h5v5L6,12L6,7zM12,11h4v6h-4v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/developer_board_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/developer_board_off.xml
deleted file mode 100644
index d962567..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/developer_board_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V3H5.83L7.83,5zM12,9.17V7h4v3h-3.17L12,9.17zM9.83,7H11v1.17L9.83,7zM13.83,11H16v2.17L13.83,11zM18.17,21l2.31,2.31l1.41,-1.41L2.1,2.1L0.69,3.51L2,4.83V21H18.17zM4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/developer_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/developer_mode.xml
deleted file mode 100644
index 8466039..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/developer_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v2h2L19,1.01L5,1v6h2L7,5zM15.41,16.59L20,12l-4.59,-4.59L14,8.83 17.17,12 14,15.17l1.41,1.42zM10,15.17L6.83,12 10,8.83 8.59,7.41 4,12l4.59,4.59L10,15.17zM17,19L7,19v-2L5,17v6h14v-6h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/device_hub.xml b/compose/material/material/icons/generator/raw-icons/sharp/device_hub.xml
deleted file mode 100644
index 3490a5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/device_hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16l-4,-4V8.82C14.16,8.4 15,7.3 15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6c0,1.3 0.84,2.4 2,2.82V12l-4,4H3v5h5v-3.05l4,-4.2 4,4.2V21h5v-5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/device_thermostat.xml b/compose/material/material/icons/generator/raw-icons/sharp/device_thermostat.xml
deleted file mode 100644
index 06fdc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/device_thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,15.37 16.21,13.91 15,13zM11,11V5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h-1v1h1v1v1h-1v1h1v1H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/device_unknown.xml b/compose/material/material/icons/generator/raw-icons/sharp/device_unknown.xml
deleted file mode 100644
index cbf6ffa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/device_unknown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L5,1v22h14L19,1zM17,19L7,19L7,5h10v14zM12,6.72c-1.96,0 -3.5,1.52 -3.5,3.47h1.75c0,-0.93 0.82,-1.75 1.75,-1.75s1.75,0.82 1.75,1.75c0,1.75 -2.63,1.57 -2.63,4.45h1.76c0,-1.96 2.62,-2.19 2.62,-4.45 0,-1.96 -1.54,-3.47 -3.5,-3.47zM11,16h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/devices.xml b/compose/material/material/icons/generator/raw-icons/sharp/devices.xml
deleted file mode 100644
index 8c91261..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h18L22,4L2,4v13L0,17v3h14v-3L4,17L4,6zM24,8h-8v12h8L24,8zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/devices_fold.xml b/compose/material/material/icons/generator/raw-icons/sharp/devices_fold.xml
deleted file mode 100644
index 1bd6c0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/devices_fold.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3v-3.03l-7,3V3v18h12V3H17zM20,19h-5.33L17,18V5h3V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/devices_other.xml b/compose/material/material/icons/generator/raw-icons/sharp/devices_other.xml
deleted file mode 100644
index eb6695a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/devices_other.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h18L21,4L1,4v16h6v-2L3,18L3,6zM13,12L9,12v1.78c-0.61,0.55 -1,1.33 -1,2.22 0,0.89 0.39,1.67 1,2.22L9,20h4v-1.78c0.61,-0.55 1,-1.34 1,-2.22s-0.39,-1.67 -1,-2.22L13,12zM11,17.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM23,8h-8v12h8L23,8zM21,18h-4v-8h4v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dialer_sip.xml b/compose/material/material/icons/generator/raw-icons/sharp/dialer_sip.xml
deleted file mode 100644
index e0e8056..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dialer_sip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3h1v5h-1zM15,5h-2L13,4h2L15,3h-3v3h2v1h-2v1h3zM18,3v5h1L19,6h2L21,3h-3zM20,5h-1L19,4h1v1zM21,15.46l-5.27,-0.61 -2.52,2.52c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dialpad.xml b/compose/material/material/icons/generator/raw-icons/sharp/dialpad.xml
deleted file mode 100644
index a9a5544..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dialpad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/diamond.xml b/compose/material/material/icons/generator/raw-icons/sharp/diamond.xml
deleted file mode 100644
index cc68727..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/diamond.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.16,3l-0.32,0l-2.63,5.25l5.58,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.46,8.25l5.16,0l-2.62,-5.25l-5.16,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.38,9.75l-8.63,0l0,10.35z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,20.1l0,-10.35l-8.63,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.54,8.25l2.62,-5.25l-5.16,0l-2.62,5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/difference.xml b/compose/material/material/icons/generator/raw-icons/sharp/difference.xml
deleted file mode 100644
index dda11a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/difference.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,23H2V7h2v14h14V23zM15,1H6.01L6,19h15V7L15,1zM16.5,15h-6v-2h6V15zM16.5,9h-2v2h-2V9h-2V7h2V5h2v2h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/dining.xml
deleted file mode 100644
index 1503b0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM11,10.3c0,0.93 -0.64,1.71 -1.5,1.93V19H8v-6.77c-0.86,-0.22 -1.5,-1 -1.5,-1.93V6H7h0.5v3h0.75V6h0.5h0.5v3H10V6h0.5H11V10.3zM15.58,12.59l-0.08,0.03V19H14v-6.38l-0.08,-0.04c-0.97,-0.47 -1.67,-1.7 -1.67,-3.18c0,-1.88 1.13,-3.4 2.5,-3.4c1.38,0 2.5,1.53 2.5,3.41C17.25,10.89 16.55,12.12 15.58,12.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dinner_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/dinner_dining.xml
deleted file mode 100644
index f866ea3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dinner_dining.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19l2,2l16,0l2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18l16.97,0c0,0 0,0 0,0c0.29,-3.26 -2.28,-6 -5.48,-6c-2.35,0 -4.35,1.48 -5.14,3.55C8.94,15.32 8.48,15.17 8,15.08V9h4V6.75h9v-1.5h-9V3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85 3.22,17.39 3,18zM8,7.5V6.75h2V7.5H8zM10,5.25H8V4.5h2V5.25zM5.5,4.5h1v0.75h-1V4.5zM5.5,6.75h1V7.5h-1V6.75zM6.5,9v6.06c-0.35,0.06 -0.68,0.17 -1,0.3V9H6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions.xml
deleted file mode 100644
index 1be52f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.41,12L12,1.59 1.59,11.99 12,22.41 22.41,12zM14,14.5V12h-4v3H8v-5h6V7.5l3.5,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_bike.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_bike.xml
deleted file mode 100644
index 4406221..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_bike.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM5,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5zM10.8,10.5l2.4,-2.4 0.8,0.8c1.3,1.3 3,2.1 5.1,2.1L19.1,9c-1.5,0 -2.7,-0.6 -3.6,-1.5l-1.9,-1.9c-0.5,-0.4 -1,-0.6 -1.6,-0.6s-1.1,0.2 -1.4,0.6L6.31,9.9 11,14v5h2v-6.2l-2.2,-2.3zM19,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM19,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_boat.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_boat.xml
deleted file mode 100644
index d2a010f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_boat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21c-1.39,0 -2.78,-0.47 -4,-1.32 -2.44,1.71 -5.56,1.71 -8,0C6.78,20.53 5.39,21 4,21H2v2h2c1.38,0 2.74,-0.35 4,-0.99 2.52,1.29 5.48,1.29 8,0 1.26,0.65 2.62,0.99 4,0.99h2v-2h-2zM3.95,19H4c1.6,0 3.02,-0.88 4,-2 0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l2.18,-7.65 -2.23,-0.73V4h-5V1H9v3H4v6.62l-2.23,0.73L3.95,19zM6,6h12v3.97L12,8 6,9.97V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_boat_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_boat_filled.xml
deleted file mode 100644
index ac32c66..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_boat_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21c-1.39,0 -2.78,-0.47 -4,-1.32c-2.44,1.71 -5.56,1.71 -8,0C6.78,20.53 5.39,21 4,21H2v2h2c1.38,0 2.74,-0.35 4,-0.99c2.52,1.29 5.48,1.29 8,0c1.26,0.65 2.62,0.99 4,0.99h2v-2H20zM3.95,19H4c1.6,0 3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l2.18,-7.65L20,10.62V4h-5V1H9v3H4v6.62l-2.23,0.73L3.95,19zM6,6h12v3.97L12,8L6,9.97V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_bus.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_bus.xml
deleted file mode 100644
index f8e57b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_bus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16c0,0.88 0.39,1.67 1,2.22L5,21h3v-2h8v2h3v-2.78c0.61,-0.55 1,-1.34 1,-2.22L20,6c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11L6,11L6,6h12v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_bus_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_bus_filled.xml
deleted file mode 100644
index e09f006..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_bus_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5c0,0.95 0.38,1.81 1,2.44V21h3v-2h8v2h3v-3.06c0.62,-0.63 1,-1.49 1,-2.44V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10H6V7h12V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_car.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_car.xml
deleted file mode 100644
index 71c1198..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_car.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.58,5L5.43,5L3,12v9h3v-2h12v2h3v-9l-2.42,-7zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.5,-4.5h11L19,11L5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_car_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_car_filled.xml
deleted file mode 100644
index 17a03e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_car_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.57,5H5.43L3,12v9h3v-2h12v2h3v-9L18.57,5zM7.5,16C6.67,16 6,15.33 6,14.5S6.67,13 7.5,13S9,13.67 9,14.5S8.33,16 7.5,16zM16.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,16 16.5,16zM5.81,10l1.04,-3h10.29l1.04,3H5.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_off.xml
deleted file mode 100644
index b14c539..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.5l3.5,3.5l-1.33,1.34l3.45,3.45l3.79,-3.79l-10.4,-10.42l-3.8,3.8l4.79,4.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l3.99,3.99l-3.79,3.79L12.01,22.4l3.79,-3.79l3.99,3.99l1.41,-1.41L2.81,2.81L1.39,4.22zM9.99,12.82V15h-2v-4.18L9.99,12.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_railway.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_railway.xml
deleted file mode 100644
index 71562d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_railway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,5c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10.5zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM18,10L6,10L6,5h12v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_railway_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_railway_filled.xml
deleted file mode 100644
index 3bf7845..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_railway_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S11.17,13 12,13s1.5,0.67 1.5,1.5S12.83,16 12,16zM18,10H6V7h12V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_run.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_run.xml
deleted file mode 100644
index 077904a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_run.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,5.48c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.89,19.38l1,-4.4 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3c1.3,1.5 3.3,2.5 5.5,2.5v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.4,-0.6 -1,-1 -1.7,-1 -0.3,0 -0.5,0.1 -0.8,0.1l-5.2,2.2v4.7h2v-3.4l1.8,-0.7 -1.6,8.1 -4.9,-1 -0.4,2 7,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_subway.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_subway.xml
deleted file mode 100644
index f244191..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_subway.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.42,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,11L6,11L6,6h5v5zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11h-5L13,6h5v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_subway_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_subway_filled.xml
deleted file mode 100644
index 4ee50aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_subway_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM11,10H6V7h5V10zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_transit.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_transit.xml
deleted file mode 100644
index f244191..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_transit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.42,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,11L6,11L6,6h5v5zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,11h-5L13,6h5v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_transit_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_transit_filled.xml
deleted file mode 100644
index 4ee50aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_transit_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM8.5,16C7.67,16 7,15.33 7,14.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM11,10H6V7h5V10zM15.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,16 15.5,16zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/directions_walk.xml b/compose/material/material/icons/generator/raw-icons/sharp/directions_walk.xml
deleted file mode 100644
index 4bbabfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/directions_walk.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.8,8.9L7,23h2.1l1.8,-8 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L6,8.3V13h2V9.6l1.8,-0.7"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dirty_lens.xml b/compose/material/material/icons/generator/raw-icons/sharp/dirty_lens.xml
deleted file mode 100644
index 9e1fc0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dirty_lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5h-5.17L15,3H9L7.17,5H2v16h20V5zM16.66,16.58c-1.14,1.86 -3,-1.03 -3.81,0.09c-0.39,0.57 -0.09,1.49 0.13,2.33c0,0.47 -0.38,0.85 -0.85,0.85c-0.47,0 -0.86,-0.38 -0.86,-0.85c0.14,-0.98 0.42,-2.05 -0.16,-2.43c-0.89,-0.59 -1.27,2.06 -2.8,1.35c-1.39,-1.12 1.05,-1.29 0.5,-3.27c-0.22,-0.79 -2.28,0.36 -2.4,-1.24c-0.08,-1 1.49,-0.74 1.51,-1.49c0.03,-0.75 -1.03,-1.05 -0.25,-1.91c0.22,-0.24 0.71,-0.26 0.91,-0.19c0.79,0.27 1.55,1.82 2.51,1.19c1.03,-0.66 -1.88,-2.35 0,-2.86c1.64,-0.44 1.31,2.08 2.65,2.44c1.94,0.52 2.65,-4.55 4.41,-2.33c1.85,2.33 -3.43,2.27 -2.85,4.01c0.34,1.01 2.15,-1.2 2.76,0.53c0.64,1.83 -3.09,0.82 -3.04,1.66C15.08,15.29 17.43,15.01 16.66,16.58zM18.14,18.01c-0.47,0 -0.86,-0.38 -0.86,-0.86s0.38,-0.86 0.86,-0.86c0.47,0 0.86,0.38 0.86,0.86S18.62,18.01 18.14,18.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/disabled_by_default.xml b/compose/material/material/icons/generator/raw-icons/sharp/disabled_by_default.xml
deleted file mode 100644
index 14e55ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/disabled_by_default.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12L17,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/disabled_visible.xml b/compose/material/material/icons/generator/raw-icons/sharp/disabled_visible.xml
deleted file mode 100644
index dfeb407..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/disabled_visible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,12.34C22,12.23 22,12.11 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,5.17 3.93,9.43 8.96,9.95c-0.93,-0.73 -1.72,-1.64 -2.32,-2.68C5.9,18 4,15.22 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l5.66,5.66c0.56,-0.4 1.17,-0.73 1.82,-1L7.1,5.69C8.45,4.63 10.15,4 12,4c4.24,0 7.7,3.29 7.98,7.45C20.69,11.67 21.37,11.97 21.99,12.34zM17,13c-3.18,0 -5.9,1.87 -7,4.5c1.1,2.63 3.82,4.5 7,4.5s5.9,-1.87 7,-4.5C22.9,14.87 20.18,13 17,13zM17,20c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C19.5,18.88 18.38,20 17,20zM18.5,17.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5S18.5,16.67 18.5,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/disc_full.xml b/compose/material/material/icons/generator/raw-icons/sharp/disc_full.xml
deleted file mode 100644
index e316960..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/disc_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16h2v-2h-2v2zM20,7v5h2L22,7h-2zM10,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM10,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/discount.xml b/compose/material/material/icons/generator/raw-icons/sharp/discount.xml
deleted file mode 100644
index 10a2d6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/discount.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.79,21l-9.79,-9.79l0,2.83l9.79,9.79l9.04,-9.04l-1.42,-1.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.04l9.79,9.79l9.04,-9.04L12.04,0H3V9.04zM7.25,3C7.94,3 8.5,3.56 8.5,4.25S7.94,5.5 7.25,5.5S6,4.94 6,4.25S6.56,3 7.25,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/display_settings.xml b/compose/material/material/icons/generator/raw-icons/sharp/display_settings.xml
deleted file mode 100644
index 87fb0f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/display_settings.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2v16h6v2h8v-2h6V3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9.75l1.5,0l0,-1.5l-1.5,0l0,-1.25l-1.5,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15l1.5,0l0,-4l-1.5,0l0,1.25l-1.5,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/diversity_1.xml b/compose/material/material/icons/generator/raw-icons/sharp/diversity_1.xml
deleted file mode 100644
index e99d32f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/diversity_1.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,17.58C0.48,17.9 0,18.62 0,19.43V21l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,17.04 4.39,17 4,17C3.01,17 2.07,17.21 1.22,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,17.58C21.93,17.21 20.99,17 20,17c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V21l4.5,0v-1.57C24,18.62 23.52,17.9 22.78,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,16.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,17.13 6,18.21 6,19.39V21h12v-1.61C18,18.21 17.32,17.13 16.24,16.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,10.34 9,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.48,10.86C2.17,10.1 2,9.36 2,8.6C2,6.02 4.02,4 6.6,4c2.68,0 3.82,1.74 5.4,3.59C13.57,5.76 14.7,4 17.4,4C19.98,4 22,6.02 22,8.6c0,0.76 -0.17,1.5 -0.48,2.26c0.65,0.31 1.18,0.82 1.53,1.44C23.65,11.1 24,9.88 24,8.6C24,4.9 21.1,2 17.4,2c-2.09,0 -4.09,0.97 -5.4,2.51C10.69,2.97 8.69,2 6.6,2C2.9,2 0,4.9 0,8.6c0,1.28 0.35,2.5 0.96,3.7C1.31,11.68 1.84,11.17 2.48,10.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/diversity_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/diversity_2.xml
deleted file mode 100644
index b333db5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/diversity_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,15.9l1.42,-1.42C8.79,12.05 7,10.41 7,8.85C7,7.8 7.8,7 8.85,7c1.11,0 1.54,0.65 2.68,2h0.93c1.12,-1.31 1.53,-2 2.68,-2c0.87,0 1.55,0.54 1.77,1.32c0.35,-0.04 0.68,-0.06 1,-0.06c0.36,0 0.7,0.03 1.03,0.08C18.7,6.43 17.13,5 15.15,5c-0.12,0 -0.23,0.03 -0.35,0.04C14.92,4.71 15,4.37 15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4c0,0.37 0.08,0.71 0.2,1.04C9.08,5.03 8.97,5 8.85,5C6.69,5 5,6.69 5,8.85C5,11.27 7.04,13.16 10.1,15.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.24c-0.32,-0.18 -0.66,-0.29 -1,-0.35c0.07,-0.1 0.15,-0.18 0.21,-0.28c1.08,-1.87 0.46,-4.18 -1.41,-5.26c-2.09,-1.21 -4.76,-0.39 -8.65,0.9l0.52,1.94c3.47,-1.14 5.79,-1.88 7.14,-1.1c0.91,0.53 1.2,1.61 0.68,2.53c-0.56,0.96 -1.33,1 -3.07,1.32l-0.47,0.81c0.58,1.62 0.97,2.33 0.39,3.32c-0.53,0.91 -1.61,1.2 -2.53,0.68c-0.06,-0.03 -0.11,-0.09 -0.17,-0.13c-0.3,0.67 -0.64,1.24 -1.03,1.73c0.07,0.04 0.13,0.09 0.2,0.14c1.87,1.08 4.18,0.46 5.26,-1.41c0.06,-0.1 0.09,-0.21 0.14,-0.32c0.22,0.27 0.48,0.51 0.8,0.69c1.43,0.83 3.27,0.34 4.1,-1.1S23.93,17.06 22.5,16.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.32,14.01c-0.74,3.58 -1.27,5.95 -2.62,6.73c-0.91,0.53 -2,0.24 -2.53,-0.68c-0.56,-0.96 -0.2,-1.66 0.39,-3.32L7.1,15.93c-1.7,-0.31 -2.5,-0.33 -3.07,-1.32c-0.53,-0.91 -0.24,-2 0.68,-2.53c0.09,-0.05 0.19,-0.08 0.29,-0.11c-0.35,-0.56 -0.64,-1.17 -0.82,-1.85c-0.16,0.07 -0.32,0.14 -0.48,0.23c-1.87,1.08 -2.49,3.39 -1.41,5.26c0.06,0.1 0.14,0.18 0.21,0.28c-0.34,0.06 -0.68,0.17 -1,0.35c-1.43,0.83 -1.93,2.66 -1.1,4.1s2.66,1.93 4.1,1.1c0.32,-0.18 0.58,-0.42 0.8,-0.69c0.05,0.11 0.08,0.22 0.14,0.32c1.08,1.87 3.39,2.49 5.26,1.41c2.09,-1.21 2.71,-3.93 3.55,-7.94L12.32,14.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/diversity_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/diversity_3.xml
deleted file mode 100644
index bb41d74..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/diversity_3.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.32,13.01c0.96,0.02 1.85,0.5 2.45,1.34C9.5,15.38 10.71,16 12,16c1.29,0 2.5,-0.62 3.23,-1.66c0.6,-0.84 1.49,-1.32 2.45,-1.34C16.96,11.78 14.08,11 12,11C9.93,11 7.04,11.78 6.32,13.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13L4,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C1,11.66 2.34,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13L20,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C17,11.66 18.34,13 20,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,5.34 9,7C9,8.66 10.34,10 12,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-3.27c-0.77,0 -1.35,0.45 -1.68,0.92C16.01,14.98 14.69,17 12,17c-1.43,0 -3.03,-0.64 -4.05,-2.08C7.56,14.37 6.95,14 6.27,14H3c-1.1,0 -2,0.9 -2,2v4h7v-2.26c1.15,0.8 2.54,1.26 4,1.26s2.85,-0.46 4,-1.26V20h7v-4C23,14.9 22.1,14 21,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dns.xml b/compose/material/material/icons/generator/raw-icons/sharp/dns.xml
deleted file mode 100644
index 14b1a5f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dns.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13H3v8h18v-8zM7,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM21,3H3v8h18V3zM7,9c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_disturb.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_alt.xml
deleted file mode 100644
index 3354d6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8 1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12c0,4.4 -3.6,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_off.xml
deleted file mode 100644
index dc15993..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v2h-0.88l4.33,4.33C21.43,15.79 22,13.96 22,12c0,-5.52 -4.48,-10 -10,-10 -1.96,0 -3.79,0.57 -5.33,1.55L14.12,11H17zM2.41,2.13L1,3.54l2.78,2.78C2.66,7.93 2,9.89 2,12c0,5.52 4.48,10 10,10 2.11,0 4.07,-0.66 5.68,-1.78L20.46,23l1.41,-1.41L2.41,2.13zM7,13v-2h1.46l2,2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_on.xml
deleted file mode 100644
index 2c986ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13L7,13v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb.xml
deleted file mode 100644
index cb2d8a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.55 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_alt.xml
deleted file mode 100644
index 16a9b46..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8c1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12C20,16.4 16.4,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_off.xml
deleted file mode 100644
index 7bc6f27..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11v2h-1.17l4.51,4.51C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66L13.83,11H17zM1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81L1.39,4.22zM7,11h1.17l2,2H7V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_on.xml
deleted file mode 100644
index ceea451..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM17,13H7v-2h10V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_on_total_silence.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_on_total_silence.xml
deleted file mode 100644
index 1bfaa5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_not_disturb_on_total_silence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM12,6c-3.3,0 -6,2.7 -6,6s2.7,6 6,6s6,-2.7 6,-6S15.4,6 12,6zM15,13H9v-2h6V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_not_step.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_not_step.xml
deleted file mode 100644
index 4966bd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_not_step.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l8.24,8.24l-0.69,0.72L6.87,11.1c-0.11,0.4 -0.26,0.78 -0.45,1.12l1.75,1.75l-0.69,0.72l-1.63,-1.63c-0.24,0.29 -0.5,0.56 -0.77,0.8l1.63,1.63l-0.7,0.72l-1.74,-1.74C2.83,15.43 1.34,15.82 1,15.92L1,20h9.5l3.33,-3.33l5.94,5.94l1.41,-1.41L2.81,2.81L1.39,4.22zM18.51,15.68l-1.41,-1.41l4.48,-4.48L23,11.2L18.51,15.68zM20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2L20.88,9.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/do_not_touch.xml b/compose/material/material/icons/generator/raw-icons/sharp/do_not_touch.xml
deleted file mode 100644
index ddac2a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/do_not_touch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10.17l-2.5,-2.5V1H13V10.17zM20,4h-2.5v7h-1V2H14v9.17l6,6V4zM9.5,3H7.01v1.18L9.5,6.67V3zM21.19,21.19L2.81,2.81L1.39,4.22L7,9.83v4.3l-3.32,-1.9L2,13.88L9.68,22h9.54l0.56,0.61L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dock.xml b/compose/material/material/icons/generator/raw-icons/sharp/dock.xml
deleted file mode 100644
index f495920..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,23h8v-2H8v2zM18,1.01L6,1v18h12V1.01zM16,15H8V5h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/document_scanner.xml b/compose/material/material/icons/generator/raw-icons/sharp/document_scanner.xml
deleted file mode 100644
index ad1fbfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/document_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3H4v3H2V1h5V3zM22,6V1h-5v2h3v3H22zM7,21H4v-3H2v5h5V21zM20,18v3h-3v2h5v-5H20zM19,4v16H5V4H19zM15,8H9v2h6V8zM15,11H9v2h6V11zM15,14H9v2h6V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/domain.xml b/compose/material/material/icons/generator/raw-icons/sharp/domain.xml
deleted file mode 100644
index 23ee37d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/domain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,3L2,3v18h20L22,7L12,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10zM18,11h-2v2h2v-2zM18,15h-2v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/domain_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/domain_add.xml
deleted file mode 100644
index cddd4ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/domain_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12zM6,19H4v-2h2V19zM6,15H4v-2h2V15zM6,11H4V9h2V11zM6,7H4V5h2V7zM10,19H8v-2h2V19zM10,15H8v-2h2V15zM10,11H8V9h2V11zM10,7H8V5h2V7zM24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24zM18,11h-2v2h2V11zM18,15h-2v2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/domain_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/domain_disabled.xml
deleted file mode 100644
index d188b74..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/domain_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.69L0,3.1l2,2L2,21h15.9l3,3 1.41,-1.41 -20.9,-20.9zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM4,11L4,9h2v2L4,11zM10,19L8,19v-2h2v2zM8,15v-2h2v2L8,15zM12,19v-2h1.9l2,2L12,19zM8,5h2v2h-0.45L12,9.45L12,9h8v8.45l2,2L22,7L12,7L12,3L5.55,3L8,5.45zM16,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/domain_verification.xml b/compose/material/material/icons/generator/raw-icons/sharp/domain_verification.xml
deleted file mode 100644
index 080d85c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/domain_verification.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,10.88l-1.42,-1.42l-4.24,4.25l-2.12,-2.13l-1.42,1.42l3.54,3.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4v16h18V4H3zM19,18H5V8h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/done.xml b/compose/material/material/icons/generator/raw-icons/sharp/done.xml
deleted file mode 100644
index 899cbb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/done_all.xml b/compose/material/material/icons/generator/raw-icons/sharp/done_all.xml
deleted file mode 100644
index 648f00d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/done_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7l-1.41,-1.41 -6.34,6.34 1.41,1.41L18,7zM22.24,5.59L11.66,16.17 7.48,12l-1.41,1.41L11.66,19l12,-12 -1.42,-1.41zM0.41,13.41L6,19l1.41,-1.41L1.83,12 0.41,13.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/done_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/done_outline.xml
deleted file mode 100644
index 2a7b063..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/done_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,4.93l1.4,1.4L8.43,19.07l-5.6,-5.6 1.4,-1.4 4.2,4.2L19.77,4.93m0,-2.83L8.43,13.44l-4.2,-4.2L0,13.47l8.43,8.43L24,6.33 19.77,2.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/donut_large.xml b/compose/material/material/icons/generator/raw-icons/sharp/donut_large.xml
deleted file mode 100644
index ea91fcb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/donut_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.08c3.06,0.44 5.48,2.86 5.92,5.92h3.03c-0.47,-4.72 -4.23,-8.48 -8.95,-8.95v3.03zM18.92,13c-0.44,3.06 -2.86,5.48 -5.92,5.92v3.03c4.72,-0.47 8.48,-4.23 8.95,-8.95h-3.03zM11,18.92c-3.39,-0.49 -6,-3.4 -6,-6.92s2.61,-6.43 6,-6.92V2.05c-5.05,0.5 -9,4.76 -9,9.95 0,5.19 3.95,9.45 9,9.95v-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/donut_small.xml b/compose/material/material/icons/generator/raw-icons/sharp/donut_small.xml
deleted file mode 100644
index 7b6c47e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/donut_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9.18c0.85,0.3 1.51,0.97 1.82,1.82h7.13c-0.47,-4.72 -4.23,-8.48 -8.95,-8.95v7.13zM11,14.82C9.84,14.4 9,13.3 9,12c0,-1.3 0.84,-2.4 2,-2.82L11,2.05c-5.05,0.5 -9,4.76 -9,9.95 0,5.19 3.95,9.45 9,9.95v-7.13zM14.82,13c-0.3,0.85 -0.97,1.51 -1.82,1.82v7.13c4.72,-0.47 8.48,-4.23 8.95,-8.95h-7.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/door_back.xml b/compose/material/material/icons/generator/raw-icons/sharp/door_back.xml
deleted file mode 100644
index 030ec3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/door_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V3H5v16H3v2h18v-2H19zM11,13H9v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/door_front.xml b/compose/material/material/icons/generator/raw-icons/sharp/door_front.xml
deleted file mode 100644
index fa8c11a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/door_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V3H5v16H3v2h18v-2H19zM15,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/door_sliding.xml b/compose/material/material/icons/generator/raw-icons/sharp/door_sliding.xml
deleted file mode 100644
index e846197..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/door_sliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3h-7.25v16h-1.5V3H4v16H3v2h18v-2H20zM10,13H8v-2h2V13zM16,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/doorbell.xml b/compose/material/material/icons/generator/raw-icons/sharp/doorbell.xml
deleted file mode 100644
index d27b942..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/doorbell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM12,17.5c-0.55,0 -1,-0.45 -1,-1h2C13,17.05 12.55,17.5 12,17.5zM16,16H8v-1h1v-2.34c0,-1.54 0.82,-2.82 2.25,-3.16v-1h1.5v1C14.19,9.84 15,11.12 15,12.66V15h1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/double_arrow.xml b/compose/material/material/icons/generator/raw-icons/sharp/double_arrow.xml
deleted file mode 100644
index f38e6bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/double_arrow.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/downhill_skiing.xml b/compose/material/material/icons/generator/raw-icons/sharp/downhill_skiing.xml
deleted file mode 100644
index 311a4a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/downhill_skiing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18.5,3.4 18.5,4.5zM15.78,20.9l0.76,0.27c0.62,0.21 1.27,0.33 1.96,0.33c0.84,0 1.65,-0.18 2.38,-0.5L22,22.13C20.95,22.68 19.76,23 18.5,23c-0.86,0 -1.68,-0.14 -2.45,-0.41L2,17.47l0.5,-1.41l6.9,2.51l1.72,-4.44L7.55,10.4C6.66,9.46 6.88,7.93 8,7.28l3.48,-2.01c1.1,-0.64 2.52,-0.1 2.91,1.11l0.33,1.08c0.44,1.42 1.48,2.57 2.83,3.14L18.07,9l1.43,0.46l-1.12,3.45c-2.45,-0.4 -4.48,-2.07 -5.38,-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1,-6.44h0l0,0c0.46,0.18 0.94,0.31 1.44,0.41L15.78,20.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/download.xml b/compose/material/material/icons/generator/raw-icons/sharp/download.xml
deleted file mode 100644
index 27bb5a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/download_done.xml b/compose/material/material/icons/generator/raw-icons/sharp/download_done.xml
deleted file mode 100644
index a8299bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/download_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2L5,20v-2zM9.6,15.3L5,10.7l2,-1.9 2.6,2.6L17,4l2,2 -9.4,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/download_for_offline.xml b/compose/material/material/icons/generator/raw-icons/sharp/download_for_offline.xml
deleted file mode 100644
index f00ed59..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/download_for_offline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM11,10V6h2v4h3l-4,4l-4,-4H11zM17,17H7v-2h10V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/downloading.xml b/compose/material/material/icons/generator/raw-icons/sharp/downloading.xml
deleted file mode 100644
index 33ee314..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/downloading.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.32,4.26C16.84,3.05 15.01,2.25 13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.32,4.26zM19.93,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1C19.17,8.21 19.75,9.54 19.93,11zM18.31,16.9l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32h-2.02C19.75,14.46 19.17,15.79 18.31,16.9zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43C15.79,19.17 14.46,19.75 13,19.93zM13,12V7h-2v5H7l5,5l5,-5H13zM11,19.93v2.02c-5.05,-0.5 -9,-4.76 -9,-9.95s3.95,-9.45 9,-9.95v2.02C7.05,4.56 4,7.92 4,12S7.05,19.44 11,19.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drafts.xml b/compose/material/material/icons/generator/raw-icons/sharp/drafts.xml
deleted file mode 100644
index c567dbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drafts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,6.86L12,1 2,6.86V20h20l-0.01,-13.14zM12,13L3.74,7.84 12,3l8.26,4.84L12,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drag_handle.xml b/compose/material/material/icons/generator/raw-icons/sharp/drag_handle.xml
deleted file mode 100644
index 892b734..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drag_handle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9H4v2h16V9zM4,15h16v-2H4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drag_indicator.xml b/compose/material/material/icons/generator/raw-icons/sharp/drag_indicator.xml
deleted file mode 100644
index 6dcde80..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drag_indicator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2 0.9,-2 2,-2 2,0.9 2,2zM9,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM9,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM15,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/draw.xml b/compose/material/material/icons/generator/raw-icons/sharp/draw.xml
deleted file mode 100644
index a9532dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/draw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.85,10.39l2.48,-2.48l-4.24,-4.24l-2.48,2.48L18.85,10.39zM13.19,7.56L4,16.76V21h4.24l9.19,-9.19L13.19,7.56zM19,17.5c0,2.19 -2.54,3.5 -5,3.5c-0.48,0 -1,-0.07 -1,-0.07c0,-0.34 0,-2.03 0,-2.03S13.46,19 14,19c1.54,0 3,-0.73 3,-1.5c0,-0.47 -0.48,-0.87 -1.23,-1.2l1.48,-1.48C18.32,15.45 19,16.29 19,17.5zM4.58,13.35C3.61,12.79 3,12.06 3,11c0,-1.8 1.89,-2.63 3.56,-3.36C7.59,7.18 9,6.56 9,6c0,-0.41 -0.78,-1 -2,-1C5.76,5 5,5.61 5,6H3c0,-1.65 1.7,-3 4,-3c2.24,0 4,1.32 4,3c0,1.87 -1.93,2.72 -3.64,3.47C6.42,9.88 5,10.5 5,11c0,0.31 0.43,0.6 1.07,0.86L4.58,13.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drive_eta.xml b/compose/material/material/icons/generator/raw-icons/sharp/drive_eta.xml
deleted file mode 100644
index 49b3a45..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drive_eta.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01L18.57,4L5.43,4L3,11v9h3v-2h12v2h3v-9l-2.08,-5.99zM6.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,12 6.5,12s1.5,0.67 1.5,1.5S7.33,15 6.5,15zM17.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,10l1.5,-4.5h11L19,10L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drive_file_move.xml b/compose/material/material/icons/generator/raw-icons/sharp/drive_file_move.xml
deleted file mode 100644
index ec6c9aaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drive_file_move.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6H12l-2,-2H2v16h20V6zM12,17v-3H8v-2h4V9l4,4L12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drive_file_move_rtl.xml b/compose/material/material/icons/generator/raw-icons/sharp/drive_file_move_rtl.xml
deleted file mode 100644
index 68d55fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drive_file_move_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6H12l-2,-2H2v16h20V6zM12,17l-4,-4l4,-4v3h4v2h-4V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drive_file_rename_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/drive_file_rename_outline.xml
deleted file mode 100644
index 7af27a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drive_file_rename_outline.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16l-4,4l10,0l0,-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.06,7.19l-9.06,9.06l0,3.75l3.75,0l9.06,-9.06z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.132,6.123l2.538,-2.538l3.748,3.748l-2.538,2.538z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/drive_folder_upload.xml b/compose/material/material/icons/generator/raw-icons/sharp/drive_folder_upload.xml
deleted file mode 100644
index f75a115..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/drive_folder_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6H12l-2,-2H2v16h20V6zM13,13v4h-2v-4H8l4.01,-4L16,13H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dry.xml b/compose/material/material/icons/generator/raw-icons/sharp/dry.xml
deleted file mode 100644
index 659371b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dry.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88,-3.3L9.12,5L1,12.68zM15.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L14.98,9h1.91l0.06,-0.43C17.16,7.21 16.68,5.86 15.65,4.86zM19.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L18.98,9h1.91l0.06,-0.43C21.16,7.21 20.68,5.86 19.65,4.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dry_cleaning.xml b/compose/material/material/icons/generator/raw-icons/sharp/dry_cleaning.xml
deleted file mode 100644
index 2bb1fd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dry_cleaning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12l-8,-3.56V6h-1c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1h2c0,-1.84 -1.66,-3.3 -3.56,-2.95C10.26,2.27 9.29,3.22 9.06,4.4C8.76,5.96 9.66,7.34 11,7.82v0.63l-8,3.56L3,16h4v6h10v-6h4V12zM19,14h-2v-1H7v1H5v-0.7l7,-3.11l7,3.11V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/duo.xml b/compose/material/material/icons/generator/raw-icons/sharp/duo.xml
deleted file mode 100644
index acc6429..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/duo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h-8C6.38,2 2,6.66 2,12.28 2,17.5 6.49,22 11.72,22 17.39,22 22,17.62 22,12L22,4c0,-1.1 -0.9,-2 -2,-2zM17,15l-3,-2v2L7,15L7,9h7v2l3,-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dvr.xml b/compose/material/material/icons/generator/raw-icons/sharp/dvr.xml
deleted file mode 100644
index f5ad72e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dvr.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v16h7v2h8v-2h7L23,3zM21,17L3,17L3,5h18v12zM19,8L8,8v2h11L19,8zM19,12L8,12v2h11v-2zM7,8L5,8v2h2L7,8zM7,12L5,12v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dynamic_feed.xml b/compose/material/material/icons/generator/raw-icons/sharp/dynamic_feed.xml
deleted file mode 100644
index 29df8da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dynamic_feed.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8l-2,0l0,9l11,0l0,-2l-9,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H10v10h12V3zM20,11h-8V7h8V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12l-2,0l0,9l11,0l0,-2l-9,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/dynamic_form.xml b/compose/material/material/icons/generator/raw-icons/sharp/dynamic_form.xml
deleted file mode 100644
index ada818a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/dynamic_form.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20v-9h-2V4h7l-2,5h2L17,20zM15,13v7H2v-7H15zM6.25,15.75h-1.5v1.5h1.5V15.75zM13,4v7H2V4H13zM6.25,6.75h-1.5v1.5h1.5V6.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/e_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/e_mobiledata.xml
deleted file mode 100644
index 724ce8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/e_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/earbuds.xml b/compose/material/material/icons/generator/raw-icons/sharp/earbuds.xml
deleted file mode 100644
index 8b8dcb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/earbuds.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.2,3.01C4.44,2.89 3,4.42 3,6.19L3,16c0,2.76 2.24,5 5,5h0c2.76,0 5,-2.24 5,-5V8c0,-1.66 1.34,-3 3,-3h0c1.66,0 3,1.34 3,3v7l-0.83,0c-1.61,0 -3.06,1.18 -3.17,2.79c-0.12,1.69 1.16,3.1 2.8,3.21c1.76,0.12 3.2,-1.42 3.2,-3.18L21,8c0,-2.76 -2.24,-5 -5,-5h0c-2.76,0 -5,2.24 -5,5v8c0,1.66 -1.34,3 -3,3l0,0c-1.66,0 -3,-1.34 -3,-3V9l0.83,0C7.44,9 8.89,7.82 9,6.21C9.11,4.53 7.83,3.11 6.2,3.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h3v6h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h3v6h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/earbuds_battery.xml b/compose/material/material/icons/generator/raw-icons/sharp/earbuds_battery.xml
deleted file mode 100644
index 98b4630..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/earbuds_battery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0,-1l-2,0l0,1l-2,0l0,11l6,0l0,-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.38,16.5L5.38,16.5c-1.04,0 -1.88,-0.84 -1.88,-1.87V10H6V6H4C2.9,6 2,6.9 2,8v6.63C2,16.49 3.51,18 5.37,18h0c1.86,0 3.37,-1.51 3.37,-3.37V9.37c0,-1.04 0.84,-1.87 1.87,-1.87h0c1.04,0 1.87,0.84 1.87,1.87V14H10v4h2c1.1,0 2,-0.9 2,-2V9.37C14,7.51 12.49,6 10.63,6h0C8.76,6 7.25,7.51 7.25,9.37v5.25C7.25,15.66 6.41,16.5 5.38,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/east.xml b/compose/material/material/icons/generator/raw-icons/sharp/east.xml
deleted file mode 100644
index 5a9661d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7,-7L15,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/eco.xml b/compose/material/material/icons/generator/raw-icons/sharp/eco.xml
deleted file mode 100644
index 4244037..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/eco.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.05,8.05c-2.73,2.73 -2.73,7.15 -0.02,9.88c1.47,-3.4 4.09,-6.24 7.36,-7.93c-2.77,2.34 -4.71,5.61 -5.39,9.32c2.6,1.23 5.8,0.78 7.95,-1.37C19.43,14.47 20,4 20,4S9.53,4.57 6.05,8.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edgesensor_high.xml b/compose/material/material/icons/generator/raw-icons/sharp/edgesensor_high.xml
deleted file mode 100644
index dd861df..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edgesensor_high.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7h2v7H3V7zM0,10h2v7H0V10zM22,7h2v7h-2V7zM19,10h2v7h-2V10zM18,2H6v20h12V2zM16,17H8V7h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edgesensor_low.xml b/compose/material/material/icons/generator/raw-icons/sharp/edgesensor_low.xml
deleted file mode 100644
index 0f83b90..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edgesensor_low.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v7H2V7zM20,10h2v7h-2V10zM6,2v20h12V2H6zM16,17H8V7h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit.xml
deleted file mode 100644
index 3697a34..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM21.41,6.34l-3.75,-3.75 -2.53,2.54 3.75,3.75 2.53,-2.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_attributes.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_attributes.xml
deleted file mode 100644
index 4b4cc7db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_attributes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,7H6.37C3.96,7 2,9.24 2,12s1.96,5 4.37,5h11.26c2.41,0 4.37,-2.24 4.37,-5s-1.96,-5 -4.37,-5zM7.24,14.46l-2.57,-2.57 0.7,-0.7 1.87,1.87 3.52,-3.52 0.7,0.7 -4.22,4.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_calendar.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_calendar.xml
deleted file mode 100644
index 0007bf8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22H3V4h3V2h2v2h8V2h2v2h3v8h-2v-2H5v10h7V22zM22.13,16.99l1.41,-1.41l-2.12,-2.12l-1.41,1.41L22.13,16.99zM21.42,17.7l-5.3,5.3H14v-2.12l5.3,-5.3L21.42,17.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_location.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_location.xml
deleted file mode 100644
index 84cfbc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.11,1.77L19.78,0.1l2.12,2.12 -1.67,1.67 -2.12,-2.12zM17.11,2.77l2.12,2.12L13.12,11L11,11L11,8.89l6.11,-6.12zM15.13,2.64L9.5,8.27v4.24h4.24l5.62,-5.62c0.41,0.99 0.64,2.1 0.64,3.32 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8 0,-4.98 3.8,-8.2 8,-8.2 1.09,0 2.16,0.22 3.13,0.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_location_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_location_alt.xml
deleted file mode 100644
index a1a481a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_location_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.95,13H9V8.05l5.61,-5.61C13.78,2.16 12.9,2 12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-1.01 -0.16,-1.94 -0.45,-2.8L13.95,13zM11,11h2.12l6.16,-6.16l-2.12,-2.12L11,8.88V11zM19.29,0.59l-1.42,1.42l2.12,2.12l1.42,-1.42L19.29,0.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_note.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_note.xml
deleted file mode 100644
index 37faa7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2H3V10zM3,8h11V6H3V8zM3,16h7v-2H3V16zM18.01,12.87l1.41,-1.41l2.12,2.12l-1.41,1.41L18.01,12.87zM17.3,13.58l-5.3,5.3V21h2.12l5.3,-5.3L17.3,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_notifications.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_notifications.xml
deleted file mode 100644
index 761f915..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25zM20.85,5.81l-1.06,-1.06c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.85,0.85l1.77,1.77l0.85,-0.85C21.05,6.32 21.05,6 20.85,5.81zM18,12.2V17h2v2H4v-2h2v-7c0,-2.79 1.91,-5.14 4.5,-5.8V2h3v2.2c0.82,0.21 1.57,0.59 2.21,1.09L10.6,10.4V15h4.6L18,12.2zM10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_off.xml
deleted file mode 100644
index 81f6bbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,6.33l-3.75,-3.75l-2.53,2.54l3.75,3.75L21.41,6.33zM1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71,-5.71l7.32,7.32l1.41,-1.41L2.81,2.81L1.39,4.22zM17.81,9.94l-3.75,-3.75l-2.52,2.52l3.75,3.75L17.81,9.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/edit_road.xml b/compose/material/material/icons/generator/raw-icons/sharp/edit_road.xml
deleted file mode 100644
index 83b375d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/edit_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-2,0l0,7.9l2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.56,12.59l-1.15,-1.15c-0.59,-0.59 -1.54,-0.59 -2.12,0L14,16.73V20h3.27l5.29,-5.29C23.15,14.12 23.15,13.17 22.56,12.59zM16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/egg.xml b/compose/material/material/icons/generator/raw-icons/sharp/egg.xml
deleted file mode 100644
index 49d7b5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/egg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.5,3 5,9.33 5,14c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,9.33 15.5,3 12,3zM13,18c-3,0 -5,-1.99 -5,-5c0,-0.55 0,-1 0,-1h2c0,0 0,1 0,1c0,2.92 2.42,3 3,3c0.55,0 1,0 1,0l0,2C14,18 13.55,18 13,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/egg_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/egg_alt.xml
deleted file mode 100644
index 6aefa17..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/egg_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9C17,7 15.99,2 9.97,2C4.95,2 1.94,6 2,11.52C2.06,17.04 6.96,19 9.97,19c2.01,0 2.01,3 6.02,3C19,22 22,19 22,15.02C22,12 21.01,11 19,9zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/eject.xml b/compose/material/material/icons/generator/raw-icons/sharp/eject.xml
deleted file mode 100644
index 546d129..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/eject.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h14v2L5,19v-2zM12,5L5.33,15h13.34L12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/elderly.xml b/compose/material/material/icons/generator/raw-icons/sharp/elderly.xml
deleted file mode 100644
index dc601c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/elderly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM20,12.5V23h-1V12.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S18,12.22 18,12.5v1h-1v-0.69c-1.46,-0.38 -2.7,-1.29 -3.51,-2.52C13.18,11.16 13,12.07 13,13c0,0.23 0.02,0.46 0.03,0.69L15,16.5V23h-2v-5l-1.78,-2.54L11,19l-3,4l-1.6,-1.2L9,18.33V13c0,-1.15 0.18,-2.29 0.5,-3.39L8,10.46V14H6V9.3l5.4,-3.07l0,0.01c0.59,-0.31 1.32,-0.33 1.94,0.03c0.36,0.21 0.63,0.51 0.8,0.85l0,0l0.79,1.67C15.58,10.1 16.94,11 18.5,11C19.33,11 20,11.67 20,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/elderly_woman.xml b/compose/material/material/icons/generator/raw-icons/sharp/elderly_woman.xml
deleted file mode 100644
index 895ad06..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/elderly_woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,11c-1.56,0 -2.92,-0.9 -3.58,-2.21l-0.79,-1.67l0,0C14.12,7.1 13.63,6 12.34,6l0,0C8.72,6 6,16.69 6,19h2.5l-2.1,2.8L8,23l3,-4h2v4h2v-4.03L13,13l0.49,-2.71c0.81,1.23 2.05,2.14 3.51,2.52v0.69h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V23h1V12.5C20,11.67 19.33,11 18.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.6,2.91c-0.06,0.19 -0.1,0.38 -0.1,0.59c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2c-0.21,0 -0.4,0.04 -0.59,0.1C12.76,1.25 12.41,1 12,1c-0.55,0 -1,0.45 -1,1C11,2.41 11.25,2.76 11.6,2.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electric_bike.xml b/compose/material/material/icons/generator/raw-icons/sharp/electric_bike.xml
deleted file mode 100644
index f0cfa09..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electric_bike.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-0.82L16,1h-4v2h2.6l1.46,4h-4.81l-0.36,-1H12V4H7v2h1.75l1.82,5H9.9C9.46,8.77 7.59,7.12 5.25,7.01C2.45,6.87 0,9.2 0,12c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,9.2 21.8,7 19,7zM7.82,13c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,11h-1.4l-0.73,-2H15C14.56,9.58 14.24,10.25 14.1,11zM19,15c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67C18.94,9.01 18.97,9 19,9c1.68,0 3,1.32 3,3S20.68,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electric_bolt.xml b/compose/material/material/icons/generator/raw-icons/sharp/electric_bolt.xml
deleted file mode 100644
index a2f1754..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electric_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2l-12.5,11l10.5,1l-5,7l1,1l12.5,-11l-10.5,-1l5,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electric_car.xml b/compose/material/material/icons/generator/raw-icons/sharp/electric_car.xml
deleted file mode 100644
index f43026d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electric_car.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.58,1H5.43L3,8v9h3v-2h12v2h3V8L18.58,1zM6.5,12C5.67,12 5,11.33 5,10.5S5.67,9 6.5,9S8,9.67 8,10.5S7.33,12 6.5,12zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9S19,9.67 19,10.5S18.33,12 17.5,12zM5,7l1.5,-4.5h11L19,7H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electric_meter.xml b/compose/material/material/icons/generator/raw-icons/sharp/electric_meter.xml
deleted file mode 100644
index 884bf46..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electric_meter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.96,0 -9,4.04 -9,9c0,3.91 2.51,7.24 6,8.47V22h2v-2.06c0.33,0.04 0.66,0.06 1,0.06s0.67,-0.02 1,-0.06V22h2v-2.53c3.49,-1.24 6,-4.57 6,-8.47C21,6.04 16.96,2 12,2zM14.25,14l-3,3l-1.5,-1.5L11,14.25L9.75,13l3,-3l1.5,1.5L13,12.75L14.25,14zM16,9H8V7h8V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electric_moped.xml b/compose/material/material/icons/generator/raw-icons/sharp/electric_moped.xml
deleted file mode 100644
index d17b09d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electric_moped.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8.35V3h-5v2h3v2.65L13.52,12H10V7H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,8.35zM7,15c-0.55,0 -1,-0.45 -1,-1h2C8,14.55 7.55,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,11 19,11zM19,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electric_rickshaw.xml b/compose/material/material/icons/generator/raw-icons/sharp/electric_rickshaw.xml
deleted file mode 100644
index 348f1477..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electric_rickshaw.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.18V9l-5,-6H1v12h2.18C3.6,16.16 4.7,17 6,17s2.4,-0.84 2.82,-2h8.37c0.48,1.34 1.86,2.25 3.42,1.94c1.16,-0.23 2.11,-1.17 2.33,-2.33C23.25,13.05 22.34,11.66 21,11.18zM18.4,9H16V6.12L18.4,9zM3,5h4v4H3V5zM6,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S6.55,15 6,15zM9,13v-2h3V9H9V5h5v8H9zM20,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,15 20,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electric_scooter.xml b/compose/material/material/icons/generator/raw-icons/sharp/electric_scooter.xml
deleted file mode 100644
index cbb50497..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electric_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.82,16H15v-1c0,-2.21 1.79,-4 4,-4h0.74L17.49,1H12v2h3.89l1.4,6.25c0,0 -0.01,0 -0.01,0c-2.16,0.65 -3.81,2.48 -4.19,4.75H7.82c-0.48,-1.34 -1.86,-2.24 -3.42,-1.94c-1.18,0.23 -2.13,1.2 -2.35,2.38C1.7,16.34 3.16,18 5,18C6.3,18 7.4,17.16 7.82,16zM5,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S5.55,16 5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,12 19,12zM19,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/electrical_services.xml b/compose/material/material/icons/generator/raw-icons/sharp/electrical_services.xml
deleted file mode 100644
index 9308021..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/electrical_services.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12l0,2l-2,0l0,4l2,0l0,2l5,0l0,-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11l7,0l0,-7l-8,0l0,2l6,0l0,3l-7,0l0,8l6,0l0,-2l-4,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17h3v2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/elevator.xml b/compose/material/material/icons/generator/raw-icons/sharp/elevator.xml
deleted file mode 100644
index 8f9e067..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/elevator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM8.5,6c0.69,0 1.25,0.56 1.25,1.25c0,0.69 -0.56,1.25 -1.25,1.25S7.25,7.94 7.25,7.25C7.25,6.56 7.81,6 8.5,6zM11,14h-1v4H7v-4H6V9.5h5V14zM15.5,17L13,13h5L15.5,17zM13,11l2.5,-4l2.5,4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/email.xml b/compose/material/material/icons/generator/raw-icons/sharp/email.xml
deleted file mode 100644
index 56ccd32..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/email.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2,4v16h20L22,4zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emergency.xml b/compose/material/material/icons/generator/raw-icons/sharp/emergency.xml
deleted file mode 100644
index 0c5a61b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emergency.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.79,9.23l-2,-3.46l-4.79,2.77l0,-5.54l-4,0l0,5.54l-4.79,-2.77l-2,3.46l4.79,2.77l-4.79,2.77l2,3.46l4.79,-2.77l0,5.54l4,0l0,-5.54l4.79,2.77l2,-3.46l-4.79,-2.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emergency_recording.xml b/compose/material/material/icons/generator/raw-icons/sharp/emergency_recording.xml
deleted file mode 100644
index e785cfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emergency_recording.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V4H2v16h16v-6.48l4,3.98v-11L18,10.48zM12,12l3,1.73l-1,1.73l-3,-1.73V17H9v-3.27l-3,1.73l-1,-1.73L8,12l-3,-1.73l1,-1.73l3,1.73V7h2v3.27l3,-1.73l1,1.73L12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emergency_share.xml b/compose/material/material/icons/generator/raw-icons/sharp/emergency_share.xml
deleted file mode 100644
index 933fa67..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emergency_share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-3.15,0 -6,2.41 -6,6.15c0,2.49 2,5.44 6,8.85c4,-3.41 6,-6.36 6,-8.85C18,11.41 15.15,9 12,9zM12,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,16.5 12,16.5zM12,4c1.93,0 3.68,0.78 4.95,2.05l-1.41,1.41C14.63,6.56 13.38,6 12,6S9.37,6.56 8.46,7.46L7.05,6.05C8.32,4.78 10.07,4 12,4zM19.78,3.23l-1.41,1.41C16.74,3.01 14.49,2 12.01,2S7.27,3.01 5.64,4.63L4.22,3.22C6.22,1.23 8.97,0 12.01,0S17.79,1.23 19.78,3.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_emotions.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_emotions.xml
deleted file mode 100644
index 6a85a99..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_emotions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12C22,6.48 17.52,2 11.99,2zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM12,18c-2.28,0 -4.22,-1.66 -5,-4h10C16.22,16.34 14.28,18 12,18zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8S17,8.67 17,9.5S16.33,11 15.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_events.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_events.xml
deleted file mode 100644
index dbf6358..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_events.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5h-2V3H7v2H5C3.9,5 3,5.9 3,7v1c0,2.55 1.92,4.63 4.39,4.94c0.63,1.5 1.98,2.63 3.61,2.96V19H7v2h10v-2h-4v-3.1c1.63,-0.33 2.98,-1.46 3.61,-2.96C19.08,12.63 21,10.55 21,8V7C21,5.9 20.1,5 19,5zM5,8V7h2v3.82C5.84,10.4 5,9.3 5,8zM19,8c0,1.3 -0.84,2.4 -2,2.82V7h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_flags.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_flags.xml
deleted file mode 100644
index f649522..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_flags.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l-1,-2H7V5.72C7.6,5.38 8,4.74 8,4c0,-1.1 -0.9,-2 -2,-2S4,2.9 4,4c0,0.74 0.4,1.38 1,1.72V21h2v-4h5l1,2h7V9H14zM18,17h-4l-1,-2H7V9h5l1,2h5V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_food_beverage.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_food_beverage.xml
deleted file mode 100644
index a8b3898..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_food_beverage.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H9v2.4L11,7v5H6V7l2,-1.6V3H4v14h14v-7h2c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,8h-2V5h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_nature.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_nature.xml
deleted file mode 100644
index cf2e467..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_nature.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.94,4.88C21.76,4.35 21.25,4 20.68,4c-0.03,0 -0.06,0 -0.09,0H19.6l-0.31,-0.97C19.15,2.43 18.61,2 18,2h0c-0.61,0 -1.15,0.43 -1.29,1.04L16.4,4h-0.98c-0.03,0 -0.06,0 -0.09,0c-0.57,0 -1.08,0.35 -1.26,0.88c-0.19,0.56 0.04,1.17 0.56,1.48l0.87,0.52L15.1,8.12c-0.23,0.58 -0.04,1.25 0.45,1.62C15.78,9.91 16.06,10 16.33,10c0.31,0 0.61,-0.11 0.86,-0.32L18,8.98l0.81,0.7C19.06,9.89 19.36,10 19.67,10c0.27,0 0.55,-0.09 0.78,-0.26c0.5,-0.37 0.68,-1.04 0.45,-1.62l-0.39,-1.24l0.87,-0.52C21.89,6.05 22.12,5.44 21.94,4.88zM18,7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,6.55 18.55,7 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.49,10.51c-0.43,-0.43 -0.94,-0.73 -1.49,-0.93V8h-1v1.38c-0.11,-0.01 -0.23,-0.03 -0.34,-0.03c-1.02,0 -2.05,0.39 -2.83,1.17c-0.16,0.16 -0.3,0.34 -0.43,0.53L6,10.52c-1.56,-0.55 -3.28,0.27 -3.83,1.82c0,0 0,0 0,0c-0.27,0.75 -0.23,1.57 0.12,2.29c0.23,0.48 0.58,0.87 1,1.16c-0.38,1.35 -0.06,2.85 1,3.91c1.06,1.06 2.57,1.38 3.91,1c0.29,0.42 0.68,0.77 1.16,1C9.78,21.9 10.21,22 10.65,22c0.34,0 0.68,-0.06 1.01,-0.17c0,0 0,0 0,0c1.56,-0.55 2.38,-2.27 1.82,-3.85l-0.52,-1.37c0.18,-0.13 0.36,-0.27 0.53,-0.43c0.87,-0.87 1.24,-2.04 1.14,-3.17H16v-1h-1.59C14.22,11.46 13.92,10.95 13.49,10.51zM4.67,14.29c-0.25,-0.09 -0.45,-0.27 -0.57,-0.51s-0.13,-0.51 -0.04,-0.76c0.19,-0.52 0.76,-0.79 1.26,-0.61l3.16,1.19C7.33,14.2 5.85,14.71 4.67,14.29zM10.99,19.94c-0.25,0.09 -0.52,0.08 -0.76,-0.04c-0.24,-0.11 -0.42,-0.32 -0.51,-0.57c-0.42,-1.18 0.09,-2.65 0.7,-3.8l1.18,3.13C11.78,19.18 11.51,19.76 10.99,19.94zM12.2,14.6l-0.61,-1.61c0,-0.01 -0.01,-0.02 -0.02,-0.03c-0.02,-0.04 -0.04,-0.08 -0.06,-0.12c-0.02,-0.04 -0.04,-0.07 -0.07,-0.11c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.06,-0.06 -0.09,-0.09c-0.03,-0.03 -0.07,-0.05 -0.11,-0.07c-0.04,-0.02 -0.07,-0.05 -0.12,-0.06c-0.01,0 -0.02,-0.01 -0.03,-0.02L9.4,11.8c0.36,-0.29 0.79,-0.46 1.26,-0.46c0.53,0 1.04,0.21 1.41,0.59C12.8,12.66 12.84,13.81 12.2,14.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_objects.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_objects.xml
deleted file mode 100644
index 52004d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_objects.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-0.42,0 -0.85,0.04 -1.28,0.11c-2.81,0.5 -5.08,2.75 -5.6,5.55c-0.48,2.61 0.48,5.01 2.22,6.56C7.77,15.6 8,16.13 8,16.69C8,18.21 8,21 8,21h2.28c0.35,0.6 0.98,1 1.72,1s1.38,-0.4 1.72,-1H16v-4.31c0,-0.55 0.22,-1.09 0.64,-1.46C18.09,13.95 19,12.08 19,10C19,6.13 15.87,3 12,3zM14,19h-4v-1h4V19zM14,17h-4v-1h4V17zM12.5,11.41V14h-1v-2.59L9.67,9.59l0.71,-0.71L12,10.5l1.62,-1.62l0.71,0.71L12.5,11.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_people.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_people.xml
deleted file mode 100644
index 54d8c00..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_people.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.89,8.11C15.5,7.72 14.83,7 13.53,7c-0.21,0 -1.42,0 -2.54,0C8.24,6.99 6,4.75 6,2H4c0,3.16 2.11,5.84 5,6.71V22h2v-6h2v6h2V10.05L18.95,14l1.41,-1.41L15.89,8.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_symbols.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_symbols.xml
deleted file mode 100644
index 5c3024a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_symbols.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l2,0l0,-4l3,0l0,-2l-8,0l0,2l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.404,20.182l7.778,-7.778l1.414,1.414l-7.778,7.778z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11c1.38,0 2.5,-1.12 2.5,-2.5V4h3V2h-4v4.51C16.58,6.19 16.07,6 15.5,6C14.12,6 13,7.12 13,8.5C13,9.88 14.12,11 15.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.74,15.96l-1.41,1.41l-0.71,-0.71l0.35,-0.35c0.98,-0.98 0.98,-2.56 0,-3.54c-0.49,-0.49 -1.13,-0.73 -1.77,-0.73c-0.64,0 -1.28,0.24 -1.77,0.73c-0.98,0.98 -0.98,2.56 0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98 -0.98,2.56 0,3.54C4.22,21.76 4.86,22 5.5,22s1.28,-0.24 1.77,-0.73l1.06,-1.06l1.41,1.41l1.41,-1.41l-1.41,-1.41l1.41,-1.41L9.74,15.96zM5.85,14.2c0.12,-0.12 0.26,-0.15 0.35,-0.15s0.23,0.03 0.35,0.15c0.19,0.2 0.19,0.51 0,0.71l-0.35,0.35L5.85,14.9C5.66,14.71 5.66,14.39 5.85,14.2zM5.85,19.85C5.73,19.97 5.59,20 5.5,20s-0.23,-0.03 -0.35,-0.15c-0.19,-0.19 -0.19,-0.51 0,-0.71l1.06,-1.06l0.71,0.71L5.85,19.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/emoji_transportation.xml b/compose/material/material/icons/generator/raw-icons/sharp/emoji_transportation.xml
deleted file mode 100644
index 791567a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/emoji_transportation.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,10.66C20.43,10.26 20.05,10 19.6,10h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66L10,14.77l0.01,5.51c0,0.38 0.31,0.72 0.69,0.72h0.62C11.7,21 12,20.62 12,20.24V19h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72L22,18.91v-4.14L20.57,10.66zM12.41,11h7.19l1.03,3h-9.25L12.41,11zM12,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,17 12,17zM20,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,17 20,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l1,0l0,-6l-8,0l0,5l-5,0l0,13l1,0l0,-12l5,0l0,-5l6,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/energy_savings_leaf.xml b/compose/material/material/icons/generator/raw-icons/sharp/energy_savings_leaf.xml
deleted file mode 100644
index 1572f2b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/energy_savings_leaf.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.8,0 -9,3.86 -9,9c0,2.12 0.74,4.07 1.97,5.61L3,19.59L4.41,21l1.97,-1.97C7.93,20.26 9.88,21 12,21c2.3,0 4.61,-0.88 6.36,-2.64C20.12,16.61 21,14.3 21,12V3H12zM10.5,17L10,16.5l2.5,-3.5l-5,-0.5l6,-5.5L14,7.5L11.5,11l5,0.5L10.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/engineering.xml b/compose/material/material/icons/generator/raw-icons/sharp/engineering.xml
deleted file mode 100644
index 586231b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/engineering.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v2h16v-2C17,16.34 11.67,15 9,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.75,8H13c0,-1.48 -0.81,-2.75 -2,-3.45V5.5C11,5.78 10.78,6 10.5,6S10,5.78 10,5.5V4.14C9.68,4.06 9.35,4 9,4S8.32,4.06 8,4.14V5.5C8,5.78 7.78,6 7.5,6S7,5.78 7,5.5V4.55C5.81,5.25 5,6.52 5,8H4.25v1h9.5V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c1.86,0 3.41,-1.28 3.86,-3H5.14C5.59,11.72 7.14,13 9,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,6.23l0.93,-0.83l-0.75,-1.3l-1.19,0.39c-0.14,-0.11 -0.3,-0.2 -0.47,-0.27L20.25,3h-1.5L18.5,4.22c-0.17,0.07 -0.33,0.16 -0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4 17,6.58 17.02,6.75L16.09,7.6l0.75,1.3l1.2,-0.38c0.13,0.1 0.28,0.18 0.43,0.25L18.75,10h1.5l0.27,-1.22c0.16,-0.07 0.3,-0.15 0.44,-0.25l1.19,0.38l0.75,-1.3l-0.93,-0.85C22,6.57 21.99,6.4 21.98,6.23zM19.5,7.75c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25S20.19,7.75 19.5,7.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.4,10.79l-0.85,0.28c-0.1,-0.08 -0.21,-0.14 -0.33,-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05 -0.24,0.12 -0.34,0.19l-0.84,-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13 -0.01,0.25 0,0.37l-0.66,0.61l0.54,0.93l0.86,-0.27c0.1,0.07 0.2,0.13 0.31,0.18L16.96,15h1.07l0.19,-0.87c0.11,-0.05 0.22,-0.11 0.32,-0.18l0.85,0.27l0.54,-0.93l-0.66,-0.61c0.01,-0.13 0.01,-0.25 0,-0.37l0.66,-0.59L19.4,10.79zM17.5,13.39c-0.49,0 -0.89,-0.4 -0.89,-0.89c0,-0.49 0.4,-0.89 0.89,-0.89s0.89,0.4 0.89,0.89C18.39,12.99 17.99,13.39 17.5,13.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/enhanced_encryption.xml b/compose/material/material/icons/generator/raw-icons/sharp/enhanced_encryption.xml
deleted file mode 100644
index 71fa21e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/enhanced_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3V6.22c0,-2.61 -1.91,-4.94 -4.51,-5.19C9.51,0.74 7,3.08 7,6v2H4v14h16V8zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2H8.9V6zM16,16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/equalizer.xml b/compose/material/material/icons/generator/raw-icons/sharp/equalizer.xml
deleted file mode 100644
index 6957708..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/equalizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20h4L14,4h-4v16zM4,20h4v-8L4,12v8zM16,9v11h4L20,9h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/error.xml b/compose/material/material/icons/generator/raw-icons/sharp/error.xml
deleted file mode 100644
index b915a34..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/error_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/error_outline.xml
deleted file mode 100644
index 0f4224c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/error_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2v-2zM11,7h2v6h-2L11,7zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/escalator.xml b/compose/material/material/icons/generator/raw-icons/sharp/escalator.xml
deleted file mode 100644
index a135665..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/escalator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18L21,3zM18.5,9h-3.2l-5,9H5.5v-3h3.2l5,-9h4.8V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/escalator_warning.xml b/compose/material/material/icons/generator/raw-icons/sharp/escalator_warning.xml
deleted file mode 100644
index afed8b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/escalator_warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S5.4,2 6.5,2zM15.5,9.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S17.83,8 17,8S15.5,8.67 15.5,9.5zM14.21,12.86l-0.92,1.32L9.72,8C9.37,7.38 8.71,7 7.99,7H3v8h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-5h-4.15C15.19,12 14.58,12.32 14.21,12.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/euro.xml b/compose/material/material/icons/generator/raw-icons/sharp/euro.xml
deleted file mode 100644
index 1e31e62..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/euro.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15l1,-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15l1,-2H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3l-1,2h4.06C6.02,11.33 6,11.66 6,12s0.02,0.67 0.06,1H3l-1,2h4.52c1.24,3.49 4.56,6 8.48,6c2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77C18.09,17.91 16.62,18.5 15,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/euro_symbol.xml b/compose/material/material/icons/generator/raw-icons/sharp/euro_symbol.xml
deleted file mode 100644
index 3088536..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/euro_symbol.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15v-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15V9H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3v2h3.06c-0.04,0.33 -0.06,0.66 -0.06,1s0.02,0.67 0.06,1H3v2h3.52c1.24,3.49 4.56,6 8.48,6 2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77c-1.13,0.98 -2.6,1.57 -4.22,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ev_station.xml b/compose/material/material/icons/generator/raw-icons/sharp/ev_station.xml
deleted file mode 100644
index dad84a98..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ev_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-1.05,0.4 -1.76,1.47 -1.58,2.71 0.16,1.1 1.1,1.99 2.2,2.11 0.47,0.05 0.88,-0.03 1.27,-0.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5V21h5V9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM8,18v-4.5H6L10,6v5h2l-4,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/event.xml b/compose/material/material/icons/generator/raw-icons/sharp/event.xml
deleted file mode 100644
index afe5f21..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/event.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h-5v5h5v-5zM16,2v2L8,4L8,2L6,2v2L3.01,4L3,22h18L21,4h-3L18,2h-2zM19,20L5,20L5,9h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/event_available.xml b/compose/material/material/icons/generator/raw-icons/sharp/event_available.xml
deleted file mode 100644
index e456ebd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/event_available.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,11.06L15.47,10l-4.88,4.88 -2.12,-2.12 -1.06,1.06L10.59,17l5.94,-5.94zM21,3h-3L18,1h-2v2L8,3L8,1L6,1v2L3,3v18h18L21,3zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/event_busy.xml b/compose/material/material/icons/generator/raw-icons/sharp/event_busy.xml
deleted file mode 100644
index 2f4d896..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/event_busy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.31,17l2.44,-2.44L14.19,17l1.06,-1.06 -2.44,-2.44 2.44,-2.44L14.19,10l-2.44,2.44L9.31,10l-1.06,1.06 2.44,2.44 -2.44,2.44L9.31,17zM21,3h-3L18,1h-2v2L8,3L8,1L6,1v2L3.01,3L3,21h18L21,3zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/event_note.xml b/compose/material/material/icons/generator/raw-icons/sharp/event_note.xml
deleted file mode 100644
index 7dbe598..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/event_note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10L7,10v2h10v-2zM21,3h-3L18,1h-2v2L8,3L8,1L6,1v2L3,3v18h18L21,3zM19,19L5,19L5,8h14v11zM14,14L7,14v2h7v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/event_repeat.xml b/compose/material/material/icons/generator/raw-icons/sharp/event_repeat.xml
deleted file mode 100644
index 7f9d50a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/event_repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12V4h-3V2h-2v2H8V2H6v2H3v18h9v-2H5V10h14v2H21zM15.64,20c0.43,1.45 1.77,2.5 3.36,2.5c1.93,0 3.5,-1.57 3.5,-3.5s-1.57,-3.5 -3.5,-3.5c-0.95,0 -1.82,0.38 -2.45,1l1.45,0V18h-4v-4h1.5l0,1.43C16.4,14.55 17.64,14 19,14c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-2.42,0 -4.44,-1.72 -4.9,-4L15.64,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/event_seat.xml b/compose/material/material/icons/generator/raw-icons/sharp/event_seat.xml
deleted file mode 100644
index 2973b12..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/event_seat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21h3v-3h10v3h3v-6L4,15v6zM19,10h3v3h-3v-3zM2,10h3v3L2,13v-3zM17,13L7,13L7,5c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/exit_to_app.xml b/compose/material/material/icons/generator/raw-icons/sharp/exit_to_app.xml
deleted file mode 100644
index b78305e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/exit_to_app.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.09,15.59L11.5,17l5,-5 -5,-5 -1.41,1.41L12.67,11H3v2h9.67l-2.58,2.59zM21,3H3v6h2V5h14v14H5v-4H3v6h18V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/expand.xml b/compose/material/material/icons/generator/raw-icons/sharp/expand.xml
deleted file mode 100644
index e21ea49..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/expand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16v2H4V20zM4,2h16v2H4V2zM13,9h3l-4,-4L8,9h3v6H8l4,4l4,-4h-3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/expand_circle_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/expand_circle_down.xml
deleted file mode 100644
index 0ce65fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/expand_circle_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,15.5L7.5,11l1.42,-1.41L12,12.67l3.08,-3.08L16.5,11L12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/expand_less.xml b/compose/material/material/icons/generator/raw-icons/sharp/expand_less.xml
deleted file mode 100644
index 816e68a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/expand_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8l-6,6 1.41,1.41L12,10.83l4.59,4.58L18,14l-6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/expand_more.xml b/compose/material/material/icons/generator/raw-icons/sharp/expand_more.xml
deleted file mode 100644
index 747dc4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/expand_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,8.59L12,13.17 7.41,8.59 6,10l6,6 6,-6 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/explicit.xml b/compose/material/material/icons/generator/raw-icons/sharp/explicit.xml
deleted file mode 100644
index 7a0fcce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/explicit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM15,9h-4v2h4v2h-4v2h4v2L9,17L9,7h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/explore.xml b/compose/material/material/icons/generator/raw-icons/sharp/explore.xml
deleted file mode 100644
index 0ac168a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.9c-0.61,0 -1.1,0.49 -1.1,1.1s0.49,1.1 1.1,1.1c0.61,0 1.1,-0.49 1.1,-1.1s-0.49,-1.1 -1.1,-1.1zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM14.19,14.19L6,18l3.81,-8.19L18,6l-3.81,8.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/explore_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/explore_off.xml
deleted file mode 100644
index 46c953e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/explore_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6l-2.91,6.26 5.25,5.25C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10 -2.04,0 -3.93,0.61 -5.51,1.66l5.25,5.25L18,6zM2.1,4.93l1.56,1.56C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10 2.04,0 3.93,-0.61 5.51,-1.66l1.56,1.56 1.41,-1.41L3.51,3.51 2.1,4.93zM8.91,11.74l3.35,3.35L6,18l2.91,-6.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/exposure.xml b/compose/material/material/icons/generator/raw-icons/sharp/exposure.xml
deleted file mode 100644
index 6fd4001..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/exposure.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM6,7h5v1.5L6,8.5L6,7zM19,19L5,19L19,5v14zM14.5,16v2L16,18v-2h2v-1.5h-2v-2h-1.5v2h-2L12.5,16h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/exposure_neg_1.xml b/compose/material/material/icons/generator/raw-icons/sharp/exposure_neg_1.xml
deleted file mode 100644
index 8f4da6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/exposure_neg_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11v2h8v-2L4,11zM19,18h-2L17,7.38L14,8.4L14,6.7L18.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/exposure_neg_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/exposure_neg_2.xml
deleted file mode 100644
index e578648..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/exposure_neg_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17s0.41,-0.78 0.54,-1.17 0.19,-0.79 0.19,-1.18c0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49s0.6,-0.18 0.96,-0.18c0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43 0.28,0.4 0.37,0.65c0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H21v-1.71h-5.95zM2,11v2h8v-2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/exposure_plus_1.xml b/compose/material/material/icons/generator/raw-icons/sharp/exposure_plus_1.xml
deleted file mode 100644
index 0e693dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/exposure_plus_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7L8,7v4L4,11v2h4v4h2v-4h4v-2h-4L10,7zM20,18h-2L18,7.38L15,8.4L15,6.7L19.7,5h0.3v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/exposure_plus_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/exposure_plus_2.xml
deleted file mode 100644
index f00cb5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/exposure_plus_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.05,16.29l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18 0.32,-0.39 0.59,-0.78 0.82,-1.17s0.41,-0.78 0.54,-1.17c0.13,-0.39 0.19,-0.79 0.19,-1.18 0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49s0.6,-0.18 0.96,-0.18c0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43 0.28,0.4 0.37,0.65c0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H22v-1.71h-5.95zM8,7H6v4H2v2h4v4h2v-4h4v-2H8V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/exposure_zero.xml b/compose/material/material/icons/generator/raw-icons/sharp/exposure_zero.xml
deleted file mode 100644
index 2df61ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/exposure_zero.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.14,12.5c0,1 -0.1,1.85 -0.3,2.55s-0.48,1.27 -0.83,1.7c-0.36,0.44 -0.79,0.75 -1.3,0.95s-1.07,0.3 -1.7,0.3c-0.62,0 -1.18,-0.1 -1.69,-0.3 -0.51,-0.2 -0.95,-0.51 -1.31,-0.95s-0.65,-1.01 -0.85,-1.7c-0.2,-0.7 -0.3,-1.55 -0.3,-2.55v-2.04c0,-1 0.1,-1.85 0.3,-2.55 0.2,-0.7 0.48,-1.26 0.84,-1.69 0.36,-0.43 0.8,-0.74 1.31,-0.93C10.81,5.1 11.38,5 12,5c0.63,0 1.19,0.1 1.7,0.29 0.51,0.19 0.95,0.5 1.31,0.93 0.36,0.43 0.64,0.99 0.84,1.69 0.2,0.7 0.3,1.54 0.3,2.55v2.04h-0.01zM14.03,10.14c0,-0.64 -0.05,-1.18 -0.13,-1.62 -0.09,-0.44 -0.22,-0.79 -0.4,-1.06 -0.17,-0.27 -0.39,-0.46 -0.64,-0.58 -0.25,-0.13 -0.54,-0.19 -0.86,-0.19s-0.61,0.06 -0.86,0.18 -0.47,0.31 -0.64,0.58 -0.31,0.62 -0.4,1.06 -0.13,0.98 -0.13,1.62v2.67c0,0.64 0.05,1.18 0.14,1.62 0.09,0.45 0.23,0.81 0.4,1.09s0.39,0.48 0.64,0.61 0.54,0.19 0.87,0.19 0.62,-0.06 0.87,-0.19 0.46,-0.33 0.63,-0.61 0.3,-0.64 0.39,-1.09 0.13,-0.99 0.13,-1.62v-2.66h-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/extension.xml b/compose/material/material/icons/generator/raw-icons/sharp/extension.xml
deleted file mode 100644
index 7383b25..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/extension.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.36,11H19V5h-6V3.64c0,-1.31 -0.94,-2.5 -2.24,-2.63C9.26,0.86 8,2.03 8,3.5V5H2.01v5.8H3.4c1.31,0 2.5,0.88 2.75,2.16 0.33,1.72 -0.98,3.24 -2.65,3.24H2V22h5.8v-1.4c0,-1.31 0.88,-2.5 2.16,-2.75 1.72,-0.33 3.24,0.98 3.24,2.65V22H19v-6h1.5c1.47,0 2.64,-1.26 2.49,-2.76 -0.13,-1.3 -1.33,-2.24 -2.63,-2.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/extension_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/extension_off.xml
deleted file mode 100644
index 6431726..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/extension_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.78,22.61l-1.63,-1.63C18.1,20.98 18.05,21 18,21h-3.8c0,-2.71 -2.16,-3 -2.7,-3s-2.7,0.29 -2.7,3H3v-5.8c2.71,0 3,-2.16 3,-2.7c0,-0.54 -0.3,-2.7 -2.99,-2.7V6c0,-0.05 0.02,-0.09 0.02,-0.14L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM20,17.17V15c1.38,0 2.5,-1.12 2.5,-2.5S21.38,10 20,10V4h-6c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H6.83L20,17.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face.xml b/compose/material/material/icons/generator/raw-icons/sharp/face.xml
deleted file mode 100644
index eed089b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM15,11.75c-0.69,0 -1.25,0.56 -1.25,1.25s0.56,1.25 1.25,1.25 1.25,-0.56 1.25,-1.25 -0.56,-1.25 -1.25,-1.25zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-0.29 0.02,-0.58 0.05,-0.86 2.36,-1.05 4.23,-2.98 5.21,-5.37C11.07,8.33 14.05,10 17.42,10c0.78,0 1.53,-0.09 2.25,-0.26 0.21,0.71 0.33,1.47 0.33,2.26 0,4.41 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/face_2.xml
deleted file mode 100644
index 4b29f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.97,13.52c0,-0.01 0,-0.02 0,-0.04C23.21,12.38 24,10.78 24,9c0,-3.31 -2.69,-6 -6,-6c-0.26,0 -0.52,0.02 -0.78,0.06C16.19,1.23 14.24,0 12,0S7.81,1.23 6.78,3.06C6.52,3.02 6.26,3 6,3C2.69,3 0,5.69 0,9c0,1.78 0.79,3.38 2.02,4.48c0,0.01 0,0.02 0,0.04C0.79,14.62 0,16.22 0,18c0,3.31 2.69,6 6,6c1.39,0 2.67,-0.48 3.69,-1.28C10.43,22.9 11.2,23 12,23s1.57,-0.1 2.31,-0.28C15.33,23.52 16.61,24 18,24c3.31,0 6,-2.69 6,-6C24,16.22 23.21,14.62 21.97,13.52zM12,21c-4.41,0 -8,-3.59 -8,-8c0,-3.72 2.56,-6.85 6,-7.74c0,0.02 0,0.03 0,0.05c0,3.34 2.72,6.06 6.06,6.06c1.26,0 2.45,-0.39 3.45,-1.09C19.82,11.14 20,12.05 20,13C20,17.41 16.41,21 12,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/face_3.xml
deleted file mode 100644
index 7dc4bfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face_3.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.91,11.96c-0.54,-5.93 -5.75,-10.41 -11.8,-9.92C5.73,2.46 1.55,6.94 1.06,12.32L0,24h24c0,0 0,0 0,0L22.91,11.96zM4.54,9.13C5.41,9.68 6.43,10 7.5,10C9.36,10 11,9.07 12,7.65C13,9.07 14.64,10 16.5,10c1.07,0 2.09,-0.32 2.96,-0.87C19.8,10.02 20,10.99 20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8C4,10.99 4.2,10.02 4.54,9.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/face_4.xml
deleted file mode 100644
index 655df37..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-0.96,0 -1.88,0.14 -2.75,0.39C8.37,0.96 6.8,0 5,0C2.24,0 0,2.24 0,5c0,1.8 0.96,3.37 2.39,4.25C2.14,10.12 2,11.04 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0.01,-0.15c2.6,-0.98 4.68,-2.99 5.74,-5.55C11.58,8.56 14.37,10 17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face_5.xml b/compose/material/material/icons/generator/raw-icons/sharp/face_5.xml
deleted file mode 100644
index 525db6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face_5.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.12 0.23,-2.18 0.65,-3.15C4.74,8.94 4.86,9 5,9c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.25 -0.19,-0.45 -0.43,-0.49c0.15,-0.26 0.32,-0.51 0.49,-0.75C5.53,7.34 5.5,7.41 5.5,7.5C5.5,7.78 5.72,8 6,8s0.5,-0.22 0.5,-0.5C6.5,7.22 6.28,7 6,7C5.87,7 5.75,7.05 5.66,7.13c0.52,-0.68 1.15,-1.28 1.86,-1.76C7.51,5.41 7.5,5.45 7.5,5.5C7.5,5.78 7.72,6 8,6s0.5,-0.22 0.5,-0.5c0,-0.24 -0.17,-0.43 -0.4,-0.48c0.16,-0.09 0.32,-0.17 0.49,-0.25C8.68,4.91 8.83,5 9,5c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.03 -0.01,-0.06 -0.02,-0.09c0.39,-0.13 0.79,-0.23 1.21,-0.3C10.58,4.21 10.5,4.34 10.5,4.5C10.5,4.78 10.72,5 11,5s0.5,-0.22 0.5,-0.5c0,-0.21 -0.13,-0.38 -0.3,-0.46C11.46,4.01 11.73,4 12,4s0.54,0.01 0.8,0.04c-0.18,0.08 -0.3,0.25 -0.3,0.46C12.5,4.78 12.72,5 13,5s0.5,-0.22 0.5,-0.5c0,-0.16 -0.08,-0.29 -0.19,-0.38c0.41,0.07 0.82,0.17 1.21,0.3C14.51,4.44 14.5,4.47 14.5,4.5C14.5,4.78 14.72,5 15,5c0.17,0 0.32,-0.09 0.41,-0.23c0.17,0.08 0.33,0.16 0.49,0.25c-0.23,0.05 -0.4,0.24 -0.4,0.48C15.5,5.78 15.72,6 16,6s0.5,-0.22 0.5,-0.5c0,-0.05 -0.01,-0.09 -0.03,-0.13c0.71,0.48 1.34,1.08 1.86,1.76C18.25,7.05 18.13,7 18,7c-0.28,0 -0.5,0.22 -0.5,0.5C17.5,7.78 17.72,8 18,8s0.5,-0.22 0.5,-0.5c0,-0.09 -0.03,-0.16 -0.07,-0.23c0.18,0.24 0.34,0.49 0.49,0.75C18.69,8.05 18.5,8.25 18.5,8.5C18.5,8.78 18.72,9 19,9c0.14,0 0.26,-0.06 0.35,-0.15C19.77,9.82 20,10.88 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face_6.xml b/compose/material/material/icons/generator/raw-icons/sharp/face_6.xml
deleted file mode 100644
index 934336b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face_6.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c5.52,0 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8h2.62l2,-4h6.76l2,4H20C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face_retouching_natural.xml b/compose/material/material/icons/generator/raw-icons/sharp/face_retouching_natural.xml
deleted file mode 100644
index 64404b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face_retouching_natural.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.85,10.59C20.79,15.4 17.01,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.39 3.87,-1.12 5.74,-5.69c3.42,4.19 8.07,3.73 9.09,3.59l-1.48,-3.25L12.63,4.5l3.5,-1.59C9.51,-0.14 2,4.77 2,12c0,5.52 4.48,10 10,10c7.21,0 12.12,-7.45 9.1,-14.13L19.85,10.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.6,5.6L19.5,8l-1.1,-2.4L16,4.5l2.4,-1.1L19.5,1l1.1,2.4L23,4.5L20.6,5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/face_retouching_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/face_retouching_off.xml
deleted file mode 100644
index 4c92c0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/face_retouching_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12c0,1.22 -0.28,2.37 -0.77,3.4l1.49,1.49C21.53,15.44 22,13.78 22,12c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.47 -4.89,1.28l5.33,5.33C13.93,9.49 15.65,10 17.5,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.89,3.72l2.19,2.19C2.78,7.6 2,9.71 2,12c0,5.52 4.48,10 10,10c2.29,0 4.4,-0.78 6.09,-2.08l2.19,2.19l1.41,-1.41L3.31,2.31L1.89,3.72zM16.66,18.49C15.35,19.44 13.74,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c1.39,-0.52 2.63,-1.35 3.64,-2.39L16.66,18.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/facebook.xml b/compose/material/material/icons/generator/raw-icons/sharp/facebook.xml
deleted file mode 100644
index 308115a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/facebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,4.84 3.44,8.87 8,9.8V15H8v-3h2V9.5C10,7.57 11.57,6 13.5,6H16v3h-2c-0.55,0 -1,0.45 -1,1v2h3v3h-3v6.95C18.05,21.45 22,17.19 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fact_check.xml b/compose/material/material/icons/generator/raw-icons/sharp/fact_check.xml
deleted file mode 100644
index 82e3690..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fact_check.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,3v18h20V3H2zM10,17H5v-2h5V17zM10,13H5v-2h5V13zM10,9H5V7h5V9zM14.82,15L12,12.16l1.41,-1.41l1.41,1.42L17.99,9l1.42,1.42L14.82,15z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/factory.xml b/compose/material/material/icons/generator/raw-icons/sharp/factory.xml
deleted file mode 100644
index fd307ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/factory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10v12H2V10l7,-3v2l5,-2l0,0l0,3H22zM17.2,8.5L18,2h3l0.8,6.5H17.2zM11,18h2v-4h-2V18zM7,18h2v-4H7V18zM17,14h-2v4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/family_restroom.xml b/compose/material/material/icons/generator/raw-icons/sharp/family_restroom.xml
deleted file mode 100644
index 5adf57e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/family_restroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S16,5.11 16,4zM20,22v-6h2.5l-3,-9l-3,0l-1.17,3.5H17V22H20zM12.5,11.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5S11,9.17 11,10S11.67,11.5 12.5,11.5zM5.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S4.39,6 5.5,6zM7.5,22v-7H9V7H2v8h1.5v7H7.5zM14,22v-4h1v-5.5h-5V18h1v4H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fast_forward.xml b/compose/material/material/icons/generator/raw-icons/sharp/fast_forward.xml
deleted file mode 100644
index e63e09b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fast_forward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18l8.5,-6L4,6V18zM13,6v12l8.5,-6L13,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fast_rewind.xml b/compose/material/material/icons/generator/raw-icons/sharp/fast_rewind.xml
deleted file mode 100644
index 81f79b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fast_rewind.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18L11,6l-8.5,6 8.5,6zM11.5,12l8.5,6L20,6l-8.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fastfood.xml b/compose/material/material/icons/generator/raw-icons/sharp/fastfood.xml
deleted file mode 100644
index 0f0a078..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fastfood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V1h-2v4h-5l0.23,2.31C14.9,8.16 18,10.77 18,15l0.02,8h3.18L23,5h-5zM1,21h15v2H1zM8.5,8.99C4.75,8.99 1,11 1,15h15c0,-4 -3.75,-6.01 -7.5,-6.01zM1,17h15v2H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/favorite.xml b/compose/material/material/icons/generator/raw-icons/sharp/favorite.xml
deleted file mode 100644
index 52d4d9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/favorite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21.35l-1.45,-1.32C5.4,15.36 2,12.28 2,8.5 2,5.42 4.42,3 7.5,3c1.74,0 3.41,0.81 4.5,2.09C13.09,3.81 14.76,3 16.5,3 19.58,3 22,5.42 22,8.5c0,3.78 -3.4,6.86 -8.55,11.54L12,21.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/favorite_border.xml b/compose/material/material/icons/generator/raw-icons/sharp/favorite_border.xml
deleted file mode 100644
index 3edfe1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/favorite_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-1.74,0 -3.41,0.81 -4.5,2.09C10.91,3.81 9.24,3 7.5,3 4.42,3 2,5.42 2,8.5c0,3.78 3.4,6.86 8.55,11.54L12,21.35l1.45,-1.32C18.6,15.36 22,12.28 22,8.5 22,5.42 19.58,3 16.5,3zM12.1,18.55l-0.1,0.1 -0.1,-0.1C7.14,14.24 4,11.39 4,8.5 4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5 0,2.89 -3.14,5.74 -7.9,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fax.xml b/compose/material/material/icons/generator/raw-icons/sharp/fax.xml
deleted file mode 100644
index f0865d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fax.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9h-4V4H8v14.5V20h14V9zM10,6h6v3h-6V6zM14,17h-4v-5h4V17zM16,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,16.55 16.55,17 16,17zM16,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,13.55 16.55,14 16,14zM19,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,16.55 19.55,17 19,17zM19,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,13.55 19.55,14 19,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,8h5v13h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/featured_play_list.xml b/compose/material/material/icons/generator/raw-icons/sharp/featured_play_list.xml
deleted file mode 100644
index 9c73a4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/featured_play_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM12,11L3,11L3,9h9v2zM12,7L3,7L3,5h9v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/featured_video.xml b/compose/material/material/icons/generator/raw-icons/sharp/featured_video.xml
deleted file mode 100644
index 8d8afac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/featured_video.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM12,12L3,12L3,5h9v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/feed.xml b/compose/material/material/icons/generator/raw-icons/sharp/feed.xml
deleted file mode 100644
index 58cb5fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/feed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3H3v18h18V8L16,3zM7,7h5v2H7V7zM17,17H7v-2h10V17zM17,13H7v-2h10V13zM15,9V5l4,4H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/feedback.xml b/compose/material/material/icons/generator/raw-icons/sharp/feedback.xml
deleted file mode 100644
index 53e2888..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/feedback.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2.01,2L2,22l4,-4h16L22,2zM13,14h-2v-2h2v2zM13,10h-2L11,6h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/female.xml b/compose/material/material/icons/generator/raw-icons/sharp/female.xml
deleted file mode 100644
index bb480ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/female.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,9.5C17.5,6.46 15.04,4 12,4S6.5,6.46 6.5,9.5c0,2.7 1.94,4.93 4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1C15.56,14.43 17.5,12.2 17.5,9.5zM8.5,9.5C8.5,7.57 10.07,6 12,6s3.5,1.57 3.5,3.5S13.93,13 12,13S8.5,11.43 8.5,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fence.xml b/compose/material/material/icons/generator/raw-icons/sharp/fence.xml
deleted file mode 100644
index e8fbfb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12v-2h-2V7l-3,-3l-2,2l-2,-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21zM16,6.83l1,1V10h-2V7.83l0.41,-0.41L16,6.83zM12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41,-0.41L12,6.83zM11,14v-2h2v2H11zM13,16v2h-2v-2H13zM7,7.83l1,-1l0.59,0.59L9,7.83V10H7V7.83zM7,12h2v2H7V12zM7,16h2v2H7V16zM17,18h-2v-2h2V18zM17,14h-2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/festival.xml b/compose/material/material/icons/generator/raw-icons/sharp/festival.xml
deleted file mode 100644
index 7ba98ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/festival.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11V9c-6,-2 -11,-7 -11,-7S7,7 1,9v2c0,1.49 0.93,2.75 2.24,3.26C3.2,16.76 2.92,19.69 2,22h5h10h5c-0.92,-2.31 -1.2,-5.24 -1.24,-7.74C22.07,13.75 23,12.49 23,11zM12,4.71c1.33,1.14 3.49,2.84 6.11,4.29H5.89C8.51,7.55 10.67,5.85 12,4.71zM13,11h3c0,0.83 -0.67,1.5 -1.5,1.5S13,11.83 13,11zM9.5,12.5C8.67,12.5 8,11.83 8,11h3C11,11.83 10.33,12.5 9.5,12.5zM6,11c0,0.83 -0.67,1.5 -1.5,1.5S3,11.83 3,11H6zM4.66,20c0.39,-1.86 0.54,-3.82 0.57,-5.58c0.68,-0.15 1.29,-0.49 1.76,-0.98c0.25,0.25 0.54,0.45 0.85,0.62c-0.1,1.87 -0.26,4 -0.52,5.93H4.66zM9.35,20c0.24,-1.83 0.39,-3.78 0.48,-5.53c0.84,-0.08 1.61,-0.45 2.17,-1.02c0.56,0.57 1.32,0.94 2.17,1.02c0.1,1.75 0.24,3.7 0.48,5.53H9.35zM16.67,20c-0.27,-1.94 -0.43,-4.07 -0.52,-5.93c0.31,-0.17 0.61,-0.37 0.85,-0.62c0.47,0.48 1.08,0.83 1.76,0.98c0.03,1.76 0.18,3.72 0.57,5.58H16.67zM19.5,12.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C21,11.83 20.33,12.5 19.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fiber_dvr.xml b/compose/material/material/icons/generator/raw-icons/sharp/fiber_dvr.xml
deleted file mode 100644
index ba95327..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fiber_dvr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5h2v1h-2v-1zM4.5,10.5h2v3h-2v-3zM23,3L1,3v18h22L23,3zM8,13.5c0,0.85 -0.65,1.5 -1.5,1.5L3,15L3,9h3.5c0.85,0 1.5,0.65 1.5,1.5v3zM12.62,15h-1.5L9.37,9h1.5l1,3.43 1,-3.43h1.5l-1.75,6zM21,12.9h-0.9L21,15h-1.5l-0.85,-2L17.5,13v2L16,15L16,9h5v3.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fiber_manual_record.xml b/compose/material/material/icons/generator/raw-icons/sharp/fiber_manual_record.xml
deleted file mode 100644
index d191830..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fiber_manual_record.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-8,0a8,8 0,1 1,16 0a8,8 0,1 1,-16 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fiber_new.xml b/compose/material/material/icons/generator/raw-icons/sharp/fiber_new.xml
deleted file mode 100644
index ae8cee2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fiber_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2,4v16h20L22,4zM8.5,15L7.3,15l-2.55,-3.5L4.75,15L3.5,15L3.5,9h1.25l2.5,3.5L7.25,9L8.5,9v6zM13.5,10.26L11,10.26v1.12h2.5v1.26L11,12.64v1.11h2.5L13.5,15h-4L9.5,9h4v1.26zM20.5,15h-6L14.5,9h1.25v4.51h1.13L16.88,9.99h1.25v3.51h1.12L19.25,9h1.25v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fiber_pin.xml b/compose/material/material/icons/generator/raw-icons/sharp/fiber_pin.xml
deleted file mode 100644
index faff0ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fiber_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,10.5h2v1h-2v-1zM22,4L2,4v16h20L22,4zM9,13L5.5,13v2L4,15L4,9h5v4zM12.5,15L11,15L11,9h1.5v6zM20,15h-1.2l-2.55,-3.5L16.25,15L15,15L15,9h1.25l2.5,3.5L18.75,9L20,9v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fiber_smart_record.xml b/compose/material/material/icons/generator/raw-icons/sharp/fiber_smart_record.xml
deleted file mode 100644
index fae3f76..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fiber_smart_record.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12m-8,0a8,8 0,1 1,16 0a8,8 0,1 1,-16 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4.26v2.09c2.33,0.82 4,3.04 4,5.65s-1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74s-2.55,-6.85 -6,-7.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/file_copy.xml b/compose/material/material/icons/generator/raw-icons/sharp/file_copy.xml
deleted file mode 100644
index 77fe45e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/file_copy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L2,1v16h2L4,3h12L16,1zM15,5l6,6v12L6,23L6,5h9zM14,12h5.5L14,6.5L14,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/file_download.xml b/compose/material/material/icons/generator/raw-icons/sharp/file_download.xml
deleted file mode 100644
index 17aac60..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/file_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4V3H9v6H5l7,7L19,9zM5,18v2h14v-2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/file_download_done.xml b/compose/material/material/icons/generator/raw-icons/sharp/file_download_done.xml
deleted file mode 100644
index a63575b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/file_download_done.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.13,5.41l-1.41,-1.41l-9.19,9.19l-4.25,-4.24l-1.41,1.41l5.66,5.66z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2h-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/file_download_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/file_download_off.xml
deleted file mode 100644
index b634de7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/file_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V3h6v6h4l-3.59,3.59L9,6.17zM21.19,21.19L2.81,2.81L1.39,4.22L6.17,9H5l7,7l0.59,-0.59L15.17,18H5v2h12.17l2.61,2.61L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/file_open.xml b/compose/material/material/icons/generator/raw-icons/sharp/file_open.xml
deleted file mode 100644
index c691b9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/file_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h11v-8h5V8L14,2zM13,9V3.5L18.5,9H13zM17,21.66V16h5.66v2h-2.24l2.95,2.95l-1.41,1.41L19,19.41l0,2.24H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/file_present.xml b/compose/material/material/icons/generator/raw-icons/sharp/file_present.xml
deleted file mode 100644
index 79e0df5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/file_present.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM16,15c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V9.5C8,8.12 9.12,7 10.5,7S13,8.12 13,9.5V15h-2V9.5C11,9.22 10.78,9 10.5,9S10,9.22 10,9.5V15c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-4h2V15zM14,8V4l4,4H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/file_upload.xml b/compose/material/material/icons/generator/raw-icons/sharp/file_upload.xml
deleted file mode 100644
index 2444f1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/file_upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h4v6h6v-6h4l-7,-7L5,10zM5,18v2h14v-2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter.xml
deleted file mode 100644
index 0755007..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.96,10.29l-2.75,3.54 -1.96,-2.36L8.5,15h11l-3.54,-4.71zM3,5L1,5v18h18v-2L3,21L3,5zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_1.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_1.xml
deleted file mode 100644
index 1d93089..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM14,15h2L16,5h-4v2h2v8zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_2.xml
deleted file mode 100644
index f1f319a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14zM17,13h-4v-2h4L17,5h-6v2h4v2h-4v6h6v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_3.xml
deleted file mode 100644
index 68f21fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14zM3,5L1,5v18h18v-2L3,21L3,5zM17,15L17,5h-6v2h4v2h-2v2h2v2h-4v2h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_4.xml
deleted file mode 100644
index 149809b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM15,15h2L17,5h-2v4h-2L13,5h-2v6h4v4zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_5.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_5.xml
deleted file mode 100644
index 0885d09..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14zM3,5L1,5v18h18v-2L3,21L3,5zM17,15L17,9h-4L13,7h4L17,5h-6v6h4v2h-4v2h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_6.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_6.xml
deleted file mode 100644
index f6f3f7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14zM11,15h6L17,9h-4L13,7h4L17,5h-6v10zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_7.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_7.xml
deleted file mode 100644
index 819c3a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14zM13,15l4,-8L17,5h-6v2h4l-4,8h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_8.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_8.xml
deleted file mode 100644
index b8abde0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_8.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14zM13,15h2c1.1,0 2,-0.89 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.89 -2,2v1.5c0,0.83 0.67,1.5 1.5,1.5 -0.83,0 -1.5,0.67 -1.5,1.5L11,13c0,1.11 0.9,2 2,2zM13,7h2v2h-2L13,7zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_9.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_9.xml
deleted file mode 100644
index a3ca62f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14zM17,5h-6v6h4v2h-4v2h6L17,5zM15,9h-2L13,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_9_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_9_plus.xml
deleted file mode 100644
index f8ff5da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_9_plus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM14,14L14,6L9,6v5h3v1L9,12v2h5zM11,9L11,8h1v1h-1zM23,1L5,1v18h18L23,1zM21,9h-2L19,7h-2v2h-2v2h2v2h2v-2h2v6L7,17L7,3h14v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_alt.xml
deleted file mode 100644
index cf7d42de..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4c2.01,2.59 7,9 7,9v7h4v-7c0,0 4.98,-6.41 7,-9H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_alt_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_alt_off.xml
deleted file mode 100644
index 7405b6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_alt_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.05,4l-14.22,0l7.97,7.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81l-1.42,1.41l8.61,8.78l0,7l4,0l0,-3.17l5.78,5.78l1.41,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_b_and_w.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_b_and_w.xml
deleted file mode 100644
index 9a4cf75..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_b_and_w.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM19,19l-7,-8v8L5,19l7,-8L12,5h7v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_center_focus.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_center_focus.xml
deleted file mode 100644
index c47ab76..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_center_focus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15L3,15v6h6v-2L5,19v-4zM5,5h4L9,3L3,3v6h2L5,5zM21,3h-6v2h4v4h2L21,3zM19,19h-4v2h6v-6h-2v4zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_drama.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_drama.xml
deleted file mode 100644
index 57e77b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_drama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.61,5.64 5.36,8.04 2.35,8.36 0,10.9 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4h2c0,-2.76 -1.86,-5.08 -4.4,-5.78C8.61,6.88 10.2,6 12,6c3.03,0 5.5,2.47 5.5,5.5v0.5H19c1.65,0 3,1.35 3,3s-1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_frames.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_frames.xml
deleted file mode 100644
index 7786af5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_frames.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4h-6l-4,-4 -4,4L2,4v18h20L22,4zM20,20L4,20L4,6h4.52l3.52,-3.5L15.52,6L20,6v14zM18,8L6,8v10h12"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_hdr.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_hdr.xml
deleted file mode 100644
index 22347e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_hdr.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-3.75,5 2.85,3.8 -1.6,1.2C9.81,13.75 7,10 7,10l-6,8h22L14,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_list.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_list.xml
deleted file mode 100644
index 454bd7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_list.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18h4v-2h-4v2zM3,6v2h18L21,6L3,6zM6,13h12v-2L6,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_list_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_list_off.xml
deleted file mode 100644
index 2882f30..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_list_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8H21V6H8.83L10.83,8zM15.83,13H18v-2h-4.17L15.83,13zM14,16.83V18h-4v-2h3.17l-3,-3H6v-2h2.17l-3,-3H3V6h0.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L14,16.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_none.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_none.xml
deleted file mode 100644
index 7b57f5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5L1,5v18h18v-2L3,21L3,5zM23,1L5,1v18h18L23,1zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_tilt_shift.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_tilt_shift.xml
deleted file mode 100644
index f7ab736..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_tilt_shift.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4.07L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62zM18.32,4.26C16.84,3.05 15.01,2.25 13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62l1.42,-1.43zM19.93,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1c0.86,1.11 1.44,2.44 1.62,3.9zM5.69,7.1L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9zM4.07,13L2.05,13c0.2,2.01 1,3.84 2.21,5.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89zM15,12c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3 1.34,3 3,3 3,-1.34 3,-3zM18.31,16.9l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32h-2.02c-0.18,1.45 -0.76,2.78 -1.62,3.89zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43c-1.1,0.86 -2.43,1.44 -3.89,1.62zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/filter_vintage.xml b/compose/material/material/icons/generator/raw-icons/sharp/filter_vintage.xml
deleted file mode 100644
index 8233677..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/filter_vintage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.7,12.4c-0.28,-0.16 -0.57,-0.29 -0.86,-0.4 0.29,-0.11 0.58,-0.24 0.86,-0.4 1.92,-1.11 2.99,-3.12 3,-5.19 -1.79,-1.03 -4.07,-1.11 -6,0 -0.28,0.16 -0.54,0.35 -0.78,0.54 0.05,-0.31 0.08,-0.63 0.08,-0.95 0,-2.22 -1.21,-4.15 -3,-5.19C10.21,1.85 9,3.78 9,6c0,0.32 0.03,0.64 0.08,0.95 -0.24,-0.2 -0.5,-0.39 -0.78,-0.55 -1.92,-1.11 -4.2,-1.03 -6,0 0,2.07 1.07,4.08 3,5.19 0.28,0.16 0.57,0.29 0.86,0.4 -0.29,0.11 -0.58,0.24 -0.86,0.4 -1.92,1.11 -2.99,3.12 -3,5.19 1.79,1.03 4.07,1.11 6,0 0.28,-0.16 0.54,-0.35 0.78,-0.54 -0.05,0.32 -0.08,0.64 -0.08,0.96 0,2.22 1.21,4.15 3,5.19 1.79,-1.04 3,-2.97 3,-5.19 0,-0.32 -0.03,-0.64 -0.08,-0.95 0.24,0.2 0.5,0.38 0.78,0.54 1.92,1.11 4.2,1.03 6,0 -0.01,-2.07 -1.08,-4.08 -3,-5.19zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/find_in_page.xml b/compose/material/material/icons/generator/raw-icons/sharp/find_in_page.xml
deleted file mode 100644
index bdb9571..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/find_in_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19.59V8l-6,-6H4v20l15.57,-0.02 -4.81,-4.81c-0.8,0.52 -1.74,0.83 -2.76,0.83 -2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5c0,1.02 -0.31,1.96 -0.83,2.75L20,19.59zM9,13c0,1.66 1.34,3 3,3s3,-1.34 3,-3 -1.34,-3 -3,-3 -3,1.34 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/find_replace.xml b/compose/material/material/icons/generator/raw-icons/sharp/find_replace.xml
deleted file mode 100644
index c4ad579..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/find_replace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6c1.38,0 2.63,0.56 3.54,1.46L12,10h6L18,4l-2.05,2.05C14.68,4.78 12.93,4 11,4c-3.53,0 -6.43,2.61 -6.92,6L6.1,10c0.46,-2.28 2.48,-4 4.9,-4zM16.64,15.14c0.66,-0.9 1.12,-1.97 1.28,-3.14L15.9,12c-0.46,2.28 -2.48,4 -4.9,4 -1.38,0 -2.63,-0.56 -3.54,-1.46L10,12L4,12v6l2.05,-2.05C7.32,17.22 9.07,18 11,18c1.55,0 2.98,-0.51 4.14,-1.36L20,21.49 21.49,20l-4.85,-4.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fingerprint.xml b/compose/material/material/icons/generator/raw-icons/sharp/fingerprint.xml
deleted file mode 100644
index 2dfd992..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fingerprint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.81,4.47c-0.08,0 -0.16,-0.02 -0.23,-0.06C15.66,3.42 14,3 12.01,3c-1.98,0 -3.86,0.47 -5.57,1.41 -0.24,0.13 -0.54,0.04 -0.68,-0.2 -0.13,-0.24 -0.04,-0.55 0.2,-0.68C7.82,2.52 9.86,2 12.01,2c2.13,0 3.99,0.47 6.03,1.52 0.25,0.13 0.34,0.43 0.21,0.67 -0.09,0.18 -0.26,0.28 -0.44,0.28zM3.5,9.72c-0.1,0 -0.2,-0.03 -0.29,-0.09 -0.23,-0.16 -0.28,-0.47 -0.12,-0.7 0.99,-1.4 2.25,-2.5 3.75,-3.27C9.98,4.04 14,4.03 17.15,5.65c1.5,0.77 2.76,1.86 3.75,3.25 0.16,0.22 0.11,0.54 -0.12,0.7 -0.23,0.16 -0.54,0.11 -0.7,-0.12 -0.9,-1.26 -2.04,-2.25 -3.39,-2.94 -2.87,-1.47 -6.54,-1.47 -9.4,0.01 -1.36,0.7 -2.5,1.7 -3.4,2.96 -0.08,0.14 -0.23,0.21 -0.39,0.21zM9.75,21.79c-0.13,0 -0.26,-0.05 -0.35,-0.15 -0.87,-0.87 -1.34,-1.43 -2.01,-2.64 -0.69,-1.23 -1.05,-2.73 -1.05,-4.34 0,-2.97 2.54,-5.39 5.66,-5.39s5.66,2.42 5.66,5.39c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5c0,-2.42 -2.09,-4.39 -4.66,-4.39s-4.66,1.97 -4.66,4.39c0,1.44 0.32,2.77 0.93,3.85 0.64,1.15 1.08,1.64 1.85,2.42 0.19,0.2 0.19,0.51 0,0.71 -0.11,0.1 -0.24,0.15 -0.37,0.15zM16.92,19.94c-1.19,0 -2.24,-0.3 -3.1,-0.89 -1.49,-1.01 -2.38,-2.65 -2.38,-4.39 0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5c0,1.41 0.72,2.74 1.94,3.56 0.71,0.48 1.54,0.71 2.54,0.71 0.24,0 0.64,-0.03 1.04,-0.1 0.27,-0.05 0.53,0.13 0.58,0.41 0.05,0.27 -0.13,0.53 -0.41,0.58 -0.57,0.11 -1.07,0.12 -1.21,0.12zM14.91,22c-0.04,0 -0.09,-0.01 -0.13,-0.02 -1.59,-0.44 -2.63,-1.03 -3.72,-2.1 -1.4,-1.39 -2.17,-3.24 -2.17,-5.22 0,-1.62 1.38,-2.94 3.08,-2.94s3.08,1.32 3.08,2.94c0,1.07 0.93,1.94 2.08,1.94s2.08,-0.87 2.08,-1.94c0,-3.77 -3.25,-6.83 -7.25,-6.83 -2.84,0 -5.44,1.58 -6.61,4.03 -0.39,0.81 -0.59,1.76 -0.59,2.8 0,0.78 0.07,2.01 0.67,3.61 0.1,0.26 -0.03,0.55 -0.29,0.64 -0.26,0.1 -0.55,-0.04 -0.64,-0.29 -0.49,-1.31 -0.73,-2.61 -0.73,-3.96 0,-1.2 0.23,-2.29 0.68,-3.24 1.33,-2.79 4.28,-4.6 7.51,-4.6 4.55,0 8.25,3.51 8.25,7.83 0,1.62 -1.38,2.94 -3.08,2.94s-3.08,-1.32 -3.08,-2.94c0,-1.07 -0.93,-1.94 -2.08,-1.94s-2.08,0.87 -2.08,1.94c0,1.71 0.66,3.31 1.87,4.51 0.95,0.94 1.86,1.46 3.27,1.85 0.27,0.07 0.42,0.35 0.35,0.61 -0.05,0.23 -0.26,0.38 -0.47,0.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fire_extinguisher.xml b/compose/material/material/icons/generator/raw-icons/sharp/fire_extinguisher.xml
deleted file mode 100644
index 8eb4235..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fire_extinguisher.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10v3H7V19zM7,18h10v-5H7V18zM17,3v6l-3.15,-0.66c-0.01,0 -0.01,0.01 -0.02,0.02c1.55,0.62 2.72,1.98 3.07,3.64H7.1c0.34,-1.66 1.52,-3.02 3.07,-3.64c-0.33,-0.26 -0.6,-0.58 -0.8,-0.95L5,6.5v-1l4.37,-0.91C9.87,3.65 10.86,3 12,3c0.7,0 1.34,0.25 1.85,0.66L17,3zM13,6c-0.03,-0.59 -0.45,-1 -1,-1s-1,0.45 -1,1s0.45,1 1,1S13,6.55 13,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fire_hydrant_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/fire_hydrant_alt.xml
deleted file mode 100644
index d546c6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fire_hydrant_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-3V8h2V6h-2.35C16.83,3.67 14.61,2 12,2S7.17,3.67 6.35,6H4v2h2v3H3v6h3v3H4v2h16v-2h-2v-3h3V11zM12,17.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,17.5 12,17.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fire_truck.xml b/compose/material/material/icons/generator/raw-icons/sharp/fire_truck.xml
deleted file mode 100644
index 6ab969d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fire_truck.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11l-2,-6h-2V3h-3v2h-4v6H1v7h3c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4c0,1.66 1.34,3 3,3s3,-1.34 3,-3h3V11zM7,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,19 7,19zM17,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,19 17,19zM14,11V7h5.56l1.33,4H14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5zM5.25,8.5H3.5v-2h1.75V8.5zM8.5,8.5H6.75v-2H8.5V8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fireplace.xml b/compose/material/material/icons/generator/raw-icons/sharp/fireplace.xml
deleted file mode 100644
index 87dfb3c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fireplace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v20h20V2H2zM13.2,13.74c-0.08,-0.46 -0.07,-0.85 0.08,-1.28c0.54,1.21 2.15,1.64 1.98,3.18c-0.19,1.69 -2.11,2.37 -3.39,1.32c0.76,-0.24 1.4,-1.04 1.53,-1.63C13.52,14.78 13.29,14.29 13.2,13.74zM20,20h-2v-2h-2.02c0.63,-0.84 1.02,-1.87 1.02,-3c0,-1.89 -1.09,-2.85 -1.85,-3.37C12.2,9.61 13,7 13,7c-6.73,3.57 -6.02,7.47 -6,8c0.03,0.96 0.49,2.07 1.23,3H6v2H4V4h16V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/first_page.xml b/compose/material/material/icons/generator/raw-icons/sharp/first_page.xml
deleted file mode 100644
index 81068b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/first_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,16.59L13.82,12l4.59,-4.59L17,6l-6,6 6,6 1.41,-1.41zM6,6h2v12H6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fit_screen.xml b/compose/material/material/icons/generator/raw-icons/sharp/fit_screen.xml
deleted file mode 100644
index d09f439..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fit_screen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h5v5h-2V6h-3V4zM4,9V6h3V4H2v5H4zM20,15v3h-3v2h5v-5H20zM7,18H4v-3H2v5h5V18zM18,8H6v8h12V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fitbit.xml b/compose/material/material/icons/generator/raw-icons/sharp/fitbit.xml
deleted file mode 100644
index da71490..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fitbit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.89,13.89c1.04,0 1.89,-0.85 1.89,-1.89s-0.85,-1.89 -1.89,-1.89C18.85,10.11 18,10.96 18,12S18.85,13.89 19.89,13.89zM15.65,13.68c0.93,0 1.68,-0.75 1.68,-1.68s-0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68S14.72,13.68 15.65,13.68zM15.65,9.42c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,8.67 14.72,9.42 15.65,9.42zM15.65,17.93c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,17.17 14.72,17.93 15.65,17.93zM11.41,13.47c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,13.47 11.41,13.47zM11.41,9.21c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,9.21 11.41,9.21zM11.41,17.73c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,17.07 10.59,17.73 11.41,17.73zM11.41,22c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,21.34 10.59,22 11.41,22zM11.41,4.94c0.81,0 1.47,-0.66 1.47,-1.47S12.22,2 11.41,2c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,4.94 11.41,4.94zM7.16,13.26c0.7,0 1.26,-0.57 1.26,-1.26s-0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26S6.46,13.26 7.16,13.26zM7.16,17.51c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,16.94 6.46,17.51 7.16,17.51zM7.16,9.02c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,8.45 6.46,9.02 7.16,9.02zM3.29,13.05c0.58,0 1.05,-0.47 1.05,-1.05s-0.47,-1.05 -1.05,-1.05c-0.58,0 -1.05,0.47 -1.05,1.05S2.71,13.05 3.29,13.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fitness_center.xml b/compose/material/material/icons/generator/raw-icons/sharp/fitness_center.xml
deleted file mode 100644
index 1d166b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fitness_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,14.86L22,13.43 20.57,12 17,15.57 8.43,7 12,3.43 10.57,2 9.14,3.43 7.71,2 5.57,4.14 4.14,2.71 2.71,4.14l1.43,1.43L2,7.71l1.43,1.43L2,10.57 3.43,12 7,8.43 15.57,17 12,20.57 13.43,22l1.43,-1.43L16.29,22l2.14,-2.14 1.43,1.43 1.43,-1.43 -1.43,-1.43L22,16.29l-1.43,-1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flag.xml b/compose/material/material/icons/generator/raw-icons/sharp/flag.xml
deleted file mode 100644
index 26b227f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.4,6L14,4H5v17h2v-7h5.6l0.4,2h7V6h-5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flag_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/flag_circle.xml
deleted file mode 100644
index 311a89e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flag_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM18,15h-5l-1,-2H9.5v5H8V7h6l1,2h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flaky.xml b/compose/material/material/icons/generator/raw-icons/sharp/flaky.xml
deleted file mode 100644
index bbaaa70..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flaky.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.05,17.58l-0.01,0.01l-2.4,-2.4l1.06,-1.06l1.35,1.35L16.54,13l1.06,1.06l-3.54,3.54L14.05,17.58zM12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM7.34,6.28l1.41,1.41l1.41,-1.41l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06,-1.06l1.41,-1.41L6.28,7.34L7.34,6.28zM12,20c-2.2,0 -4.2,-0.9 -5.7,-2.3L17.7,6.3C19.1,7.8 20,9.8 20,12C20,16.4 16.4,20 12,20z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flare.xml b/compose/material/material/icons/generator/raw-icons/sharp/flare.xml
deleted file mode 100644
index 0698aaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11L1,11v2h6v-2zM9.17,7.76L7.05,5.64 5.64,7.05l2.12,2.12 1.41,-1.41zM13,1h-2v6h2L13,1zM18.36,7.05l-1.41,-1.41 -2.12,2.12 1.41,1.41 2.12,-2.12zM17,11v2h6v-2h-6zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM14.83,16.24l2.12,2.12 1.41,-1.41 -2.12,-2.12 -1.41,1.41zM5.64,16.95l1.41,1.41 2.12,-2.12 -1.41,-1.41 -2.12,2.12zM11,23h2v-6h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flash_auto.xml b/compose/material/material/icons/generator/raw-icons/sharp/flash_auto.xml
deleted file mode 100644
index cf9dd59..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flash_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2v12h3v9l7,-12L9,11l4,-9L3,2zM19,2h-2l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L19,2zM16.85,7.65L18,4l1.15,3.65h-2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flash_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/flash_off.xml
deleted file mode 100644
index 01dae3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flash_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h-3.61l2.28,2.28zM17,2L7,2v1.61l6.13,6.13zM3.41,2.86L2,4.27l5,5L7,13h3v9l3.58,-6.15L17.73,20l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flash_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/flash_on.xml
deleted file mode 100644
index d37d34c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flash_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,2v11h3v9l7,-12h-4l3,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flashlight_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/flashlight_off.xml
deleted file mode 100644
index cc36135..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flashlight_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5l0,-3l-12,0l0,1.17l1.83,1.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11l2,-3l0,-1l-8.17,0l6.17,6.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flashlight_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/flashlight_on.xml
deleted file mode 100644
index 90aa7da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flashlight_on.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2h12v3h-12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7v1l2,3v11h8V11l2,-3V7H6zM12,15.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flatware.xml b/compose/material/material/icons/generator/raw-icons/sharp/flatware.xml
deleted file mode 100644
index 7535b8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flatware.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.08c0,1.77 -0.84,3.25 -2,3.82V21h-2V10.9c-1.16,-0.57 -2,-2.05 -2,-3.82C10.01,4.83 11.35,3 13,3C14.66,3 16,4.83 16,7.08zM17,3v18h2v-8h2V7C21,5.24 19.76,3 17,3zM8.28,3H7.56v4H6.72V3L6,3L5.28,3v4H4.44V3L3.72,3H3v8c0,0 0.9,0 2,0v10h2V11c1.1,0 2,0 2,0V3L8.28,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flight.xml b/compose/material/material/icons/generator/raw-icons/sharp/flight.xml
deleted file mode 100644
index bd16985..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16v-2l-8,-5V3.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,2.67 10,3.5V9l-8,5v2l8,-2.5V19l-2,1.5V22l3.5,-1 3.5,1v-1.5L13,19v-5.5l8,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flight_class.xml b/compose/material/material/icons/generator/raw-icons/sharp/flight_class.xml
deleted file mode 100644
index 1930b55..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flight_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h-6v9h6V4zM9.5,16H18v2H8L5,8V4h2v4L9.5,16zM8,19h10v2H8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flight_land.xml b/compose/material/material/icons/generator/raw-icons/sharp/flight_land.xml
deleted file mode 100644
index af88aa2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flight_land.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19v-2zM19.34,15.85c0.8,0.21 1.62,-0.26 1.84,-1.06 0.21,-0.8 -0.26,-1.62 -1.06,-1.84l-5.31,-1.42 -2.76,-9.02L10.12,2v8.28L5.15,8.95l-0.93,-2.32 -1.45,-0.39v5.17l16.57,4.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flight_takeoff.xml b/compose/material/material/icons/generator/raw-icons/sharp/flight_takeoff.xml
deleted file mode 100644
index 93e0e7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flight_takeoff.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19v-2zM22.07,9.64c-0.21,-0.8 -1.04,-1.28 -1.84,-1.06L14.92,10l-6.9,-6.43 -1.93,0.51 4.14,7.17 -4.97,1.33 -1.97,-1.54 -1.45,0.39 1.82,3.16 0.77,1.33L21,11.49c0.81,-0.23 1.28,-1.05 1.07,-1.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flip.xml b/compose/material/material/icons/generator/raw-icons/sharp/flip.xml
deleted file mode 100644
index 67600e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h2v-2h-2v2zM19,9h2L21,7h-2v2zM3,3v18h6v-2L5,19L5,5h4L9,3L3,3zM19,3v2h2L21,3h-2zM11,23h2L13,1h-2v22zM19,17h2v-2h-2v2zM15,5h2L17,3h-2v2zM19,13h2v-2h-2v2zM19,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flip_camera_android.xml b/compose/material/material/icons/generator/raw-icons/sharp/flip_camera_android.xml
deleted file mode 100644
index 951aa1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flip_camera_android.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S9,10.34 9,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10V8H5.09C6.47,5.61 9.05,4 12,4c3.72,0 6.85,2.56 7.74,6h2.06c-0.93,-4.56 -4.96,-8 -9.8,-8C8.73,2 5.82,3.58 4,6.01V4H2v6H8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14v2h2.91c-1.38,2.39 -3.96,4 -6.91,4c-3.72,0 -6.85,-2.56 -7.74,-6H2.2c0.93,4.56 4.96,8 9.8,8c3.27,0 6.18,-1.58 8,-4.01V20h2v-6H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flip_camera_ios.xml b/compose/material/material/icons/generator/raw-icons/sharp/flip_camera_ios.xml
deleted file mode 100644
index 2e1e319..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flip_camera_ios.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,5L15,3H9L7.17,5H2v16h20V5H16.83zM12,18c-2.76,0 -5,-2.24 -5,-5H5l2.5,-2.5L10,13H8c0,2.21 1.79,4 4,4c0.58,0 1.13,-0.13 1.62,-0.35l0.74,0.74C13.65,17.76 12.86,18 12,18zM16.5,15.5L14,13h2c0,-2.21 -1.79,-4 -4,-4c-0.58,0 -1.13,0.13 -1.62,0.35L9.64,8.62C10.35,8.24 11.14,8 12,8c2.76,0 5,2.24 5,5h2L16.5,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flip_to_back.xml b/compose/material/material/icons/generator/raw-icons/sharp/flip_to_back.xml
deleted file mode 100644
index aab3bd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flip_to_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7L7,7v2h2L9,7zM9,11L7,11v2h2v-2zM13,15h-2v2h2v-2zM13,3h-2v2h2L13,3zM9,3L7,3v2h2L9,3zM21,3h-2v2h2L21,3zM21,15h-2v2h2v-2zM9,15L7,15v2h2v-2zM19,13h2v-2h-2v2zM19,9h2L21,7h-2v2zM5,7L3,7v14h14v-2L5,19L5,7zM15,5h2L17,3h-2v2zM15,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flip_to_front.xml b/compose/material/material/icons/generator/raw-icons/sharp/flip_to_front.xml
deleted file mode 100644
index a7a1008..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flip_to_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM15,21h2v-2h-2v2zM21,3L7,3v14h14L21,3zM19,15L9,15L9,5h10v10zM11,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM3,21h2v-2L3,19v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flood.xml b/compose/material/material/icons/generator/raw-icons/sharp/flood.xml
deleted file mode 100644
index 33ae3a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flood.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,19c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.22,0 1.4,1 3.33,1c1.93,0 2.1,-1 3.33,-1c1.22,0 1.4,1 3.33,1v-2C20.76,20 20.62,19 18.67,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.68,17.5c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-0.63,0 -1,-0.28 -1.48,-0.55l-2.02,-7.53l2.09,0.85l0.74,-1.86L9.78,2L2,11.61l1.57,1.23l1.39,-1.78l0.93,3.48c-0.18,-0.02 -0.35,-0.05 -0.56,-0.05c-1.95,0 -2.09,1 -3.33,1v2c1.9,0 2.17,-1 3.35,-1C6.54,16.5 6.77,17.5 8.68,17.5zM14.04,10.18l1.42,5.31c-1.34,0.09 -1.47,-0.99 -3.47,-0.99c-0.36,0 -0.65,0.04 -0.91,0.1l-0.91,-3.39L14.04,10.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flourescent.xml b/compose/material/material/icons/generator/raw-icons/sharp/flourescent.xml
deleted file mode 100644
index 5a3a920..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flourescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9h14v6h-14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2864,6.3989l1.7897,-1.8024l1.4192,1.4092l-1.7897,1.8024z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4947,6.0091l1.4071,-1.4071l1.789,1.789l-1.4071,1.4071z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4922,18.0762l1.8024,-1.7897l1.4092,1.4192l-1.8024,1.7897z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fluorescent.xml b/compose/material/material/icons/generator/raw-icons/sharp/fluorescent.xml
deleted file mode 100644
index 2056c86..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fluorescent.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9h14v6h-14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.286,6.399l1.79,-1.802l1.419,1.409l-1.79,1.802z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.495,6.009l1.407,-1.407l1.789,1.789l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.492,18.076l1.802,-1.79l1.409,1.419l-1.802,1.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/flutter_dash.xml b/compose/material/material/icons/generator/raw-icons/sharp/flutter_dash.xml
deleted file mode 100644
index bfd69ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/flutter_dash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,11.7c0.29,-0.39 0.81,-0.56 1.27,-0.37c0.17,0.07 0.32,0.18 0.43,0.33c0.22,0.28 0.25,0.59 0.22,0.85c-0.05,0.33 -0.25,0.63 -0.54,0.79c0,0 -4.87,2.95 -5.07,2.69S11.07,11.7 11.07,11.7zM22,10c0,2.5 -1,3 -1.5,3c-0.23,0 -0.44,-0.1 -0.62,-0.26c-0.48,3.32 -2.36,5.31 -5.33,5.99c0.11,0.44 0.48,0.77 0.95,0.77l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C15.18,22.07 15,21.71 15,21.26c0,-0.3 0.04,-0.57 0.09,-0.8c-0.78,-0.16 -1.39,-0.78 -1.55,-1.56c-0.49,0.06 -1,0.1 -1.54,0.1c-0.88,0 -1.7,-0.09 -2.45,-0.25C9.53,18.83 9.5,18.91 9.5,19c0,0.55 0.45,1 1,1l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C10.18,22.57 10,22.21 10,21.76c0,-0.3 0.04,-0.57 0.09,-0.8C9.19,20.77 8.5,19.96 8.5,19c0,-0.18 0.03,-0.36 0.08,-0.53c-2.46,-0.86 -4.03,-2.78 -4.46,-5.74C3.94,12.9 3.74,13 3.5,13C3,13 2,12.5 2,10c0,-2.27 1.7,-4.5 3,-4.5c0.43,0 0.49,0.49 0.5,0.85c1.28,-1.78 3.26,-3.02 5.55,-3.29C11.25,2.1 12.13,1.5 13,1.5v1c0,0 0.33,-0.5 1,-0.5c0.67,0 1,0.5 1,0.5c-0.49,0 -0.85,0.35 -0.96,0.77c1.82,0.48 3.39,1.59 4.46,3.08C18.51,5.99 18.57,5.5 19,5.5C20.3,5.5 22,7.73 22,10zM5,11c0,0.81 0.1,1.53 0.25,2.21c0.18,-0.69 0.46,-1.33 0.83,-1.92c-0.21,-0.47 -0.34,-0.99 -0.34,-1.54C5.75,7.68 7.43,6 9.5,6c0.96,0 1.84,0.37 2.5,0.97C12.66,6.37 13.54,6 14.5,6c2.07,0 3.75,1.68 3.75,3.75c0,0.55 -0.12,1.07 -0.34,1.54c0.37,0.59 0.66,1.24 0.84,1.94C18.9,12.55 19,11.82 19,11c0,-3.86 -3.14,-7 -7,-7C8.14,4 5,7.14 5,11zM17.98,15.29c0,-0.1 0.02,-0.19 0.02,-0.29c0,-1.01 -0.26,-1.95 -0.7,-2.78c-0.69,0.78 -1.68,1.28 -2.8,1.28c-0.27,0 -0.54,-0.03 -0.79,-0.09c0.14,-0.23 0.23,-0.49 0.27,-0.77c0.01,-0.07 0.01,-0.13 0.02,-0.19c0.17,0.03 0.33,0.05 0.5,0.05c1.52,0 2.75,-1.23 2.75,-2.75S16.02,7 14.5,7c-0.67,0 -1.32,0.25 -1.83,0.72L12,8.32l-0.67,-0.6C10.82,7.25 10.17,7 9.5,7C7.98,7 6.75,8.23 6.75,9.75c0,1.34 0.96,2.46 2.23,2.7l-0.76,0.83c-0.6,-0.22 -1.12,-0.59 -1.53,-1.05C6.26,13.06 6,14 6,15c0,0.08 0.01,0.15 0.01,0.24C7.13,17.06 9.14,18 12,18C14.88,18 16.88,17.09 17.98,15.29zM16,9.75c0,0.97 -0.67,1.75 -1.5,1.75S13,10.72 13,9.75S13.67,8 14.5,8S16,8.78 16,9.75zM15.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S14.5,8.67 14.5,8.88s0.17,0.38 0.38,0.38S15.25,9.08 15.25,8.88zM11,9.75c0,0.97 -0.67,1.75 -1.5,1.75S8,10.72 8,9.75S8.67,8 9.5,8S11,8.78 11,9.75zM10.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S9.5,8.67 9.5,8.88s0.17,0.38 0.38,0.38S10.25,9.08 10.25,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fmd_bad.xml b/compose/material/material/icons/generator/raw-icons/sharp/fmd_bad.xml
deleted file mode 100644
index bb6dfcd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fmd_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2zM13,15h-2v-2h2V15zM13,11h-2V6h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fmd_good.xml b/compose/material/material/icons/generator/raw-icons/sharp/fmd_good.xml
deleted file mode 100644
index 2ebdd64..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fmd_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2zM12,12c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C14,11.1 13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder.xml
deleted file mode 100644
index b8b17d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4H2v16h20V6H12l-2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder_copy.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder_copy.xml
deleted file mode 100644
index 0081666..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder_copy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6l-2,0l0,15l19,0l0,-2l-17,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,4h-9l-2,-2H5.01L5,17h18V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder_delete.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder_delete.xml
deleted file mode 100644
index 933bbdd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder_delete.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6v14H2V4h8l2,2H22zM16.5,10V9h-2v1H12v1.5h1V17h5v-5.5h1V10H16.5zM16.5,15.5h-2v-4h2V15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder_off.xml
deleted file mode 100644
index 40c2288..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6l-2,-2l-3.17,0l15.17,15.17l0,-13.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1l-1.41,1.41l1.31,1.32l0,15.17l15.17,0l3.32,3.31l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder_open.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder_open.xml
deleted file mode 100644
index 31d59b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L12,6l-2,-2L2,4v16h20L22,6zM20,18L4,18L4,8h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder_shared.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder_shared.xml
deleted file mode 100644
index d9148e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder_shared.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L12,6l-2,-2L2,4v16h20L22,6zM15,9c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM19,17h-8v-1c0,-1.33 2.67,-2 4,-2s4,0.67 4,2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder_special.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder_special.xml
deleted file mode 100644
index 1eb319b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder_special.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L12,6l-2,-2L2,4v16h20L22,6zM17.94,17L15,15.28 12.06,17l0.78,-3.33 -2.59,-2.24 3.41,-0.29L15,8l1.34,3.14 3.41,0.29 -2.59,2.24 0.78,3.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/folder_zip.xml b/compose/material/material/icons/generator/raw-icons/sharp/folder_zip.xml
deleted file mode 100644
index 4956867..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/folder_zip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6l-2,-2H2v16h20V6H12zM18,12h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/follow_the_signs.xml b/compose/material/material/icons/generator/raw-icons/sharp/follow_the_signs.xml
deleted file mode 100644
index 78da1c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/follow_the_signs.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S8.4,5.5 9.5,5.5zM5.75,8.9L3,23h2.1l1.75,-8L9,17v6h2v-7.55L8.95,13.4l0.6,-3C10.85,12 12.8,13 15,13v-2c-1.85,0 -3.45,-1 -4.35,-2.45L9.7,6.95C9.35,6.35 8.7,6 8,6C7.75,6 7.5,6.05 7.25,6.15L2,8.3V13h2V9.65L5.75,8.9M13,2v7h3.75v14h1.5V9H22V2H13zM18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/font_download.xml b/compose/material/material/icons/generator/raw-icons/sharp/font_download.xml
deleted file mode 100644
index bf4f970..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/font_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.93,13.5h4.14L12,7.98 9.93,13.5zM22,2L2,2v20h20L22,2zM15.95,18.5l-1.14,-3L9.17,15.5l-1.12,3L5.96,18.5l5.11,-13h1.86l5.11,13h-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/font_download_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/font_download_off.xml
deleted file mode 100644
index beaad2db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/font_download_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.58,9.75l-0.87,-0.87l0.23,-0.66h0.1L12.58,9.75zM20.49,23.31L19.17,22H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM12.1,14.93l-3.3,-3.3L6.41,18h2.08l1.09,-3.07H12.1zM10.35,7.52L10.92,6h2.14l2.55,6.79L22,19.17V2H4.83L10.35,7.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/food_bank.xml b/compose/material/material/icons/generator/raw-icons/sharp/food_bank.xml
deleted file mode 100644
index ee660b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/food_bank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM12.5,12.5c0,0.83 -0.67,1.5 -1.5,1.5v4h-1v-4c-0.83,0 -1.5,-0.67 -1.5,-1.5v-3h1v3H10v-3h1v3h0.5v-3h1V12.5zM15,18h-1v-3.5h-1v-3c0,-1.1 0.9,-2 2,-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/forest.xml b/compose/material/material/icons/generator/raw-icons/sharp/forest.xml
deleted file mode 100644
index 4932462..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/forest.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12l-7,-10l-7,10l1.86,0l-3.86,6l7,0l0,4l4,0l0,-4l7,0l-3.86,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.14,12l1.86,0l-7,-10l-2.39,3.41l5.31,7.59l-1.92,0l-0.03,0l3.22,5l4.81,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,19h4v3h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fork_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/fork_left.xml
deleted file mode 100644
index 30a26f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fork_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,15.59L8,17l-4,-4l4,-4l1.41,1.41L7.83,12c1.51,-0.33 3.73,0.08 5.17,1.36l0,-6.53l-1.59,1.59L10,7l4,-4l4,4l-1.41,1.41L15,6.83V21l-2,0v-4c-0.73,-2.58 -3.07,-3.47 -5.17,-3L9.41,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fork_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/fork_right.xml
deleted file mode 100644
index a3a186d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fork_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,15.59L16,17l4,-4l-4,-4l-1.41,1.41L16.17,12c-1.51,-0.33 -3.73,0.08 -5.17,1.36l0,-6.53l1.59,1.59L14,7l-4,-4L6,7l1.41,1.41L9,6.83V21l2,0v-4c0.73,-2.58 3.07,-3.47 5.17,-3L14.59,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_align_center.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_align_center.xml
deleted file mode 100644
index 363e9a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15v2h10v-2L7,15zM3,21h18v-2L3,19v2zM3,13h18v-2L3,11v2zM7,7v2h10L17,7L7,7zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_align_justify.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_align_justify.xml
deleted file mode 100644
index e587932..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_align_justify.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM3,17h18v-2L3,15v2zM3,13h18v-2L3,11v2zM3,9h18L21,7L3,7v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_align_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_align_left.xml
deleted file mode 100644
index 4ff0c3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_align_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15L3,15v2h12v-2zM15,7L3,7v2h12L15,7zM3,13h18v-2L3,11v2zM3,21h18v-2L3,19v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_align_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_align_right.xml
deleted file mode 100644
index 5828e5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_align_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM9,17h12v-2L9,15v2zM3,13h18v-2L3,11v2zM9,9h12L21,7L9,7v2zM3,3v2h18L21,3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_bold.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_bold.xml
deleted file mode 100644
index 25e5865..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_bold.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.6,10.79c0.97,-0.67 1.65,-1.77 1.65,-2.79 0,-2.26 -1.75,-4 -4,-4L7,4v14h7.04c2.09,0 3.71,-1.7 3.71,-3.79 0,-1.52 -0.86,-2.82 -2.15,-3.42zM10,6.5h3c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5h-3v-3zM13.5,15.5L10,15.5v-3h3.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_clear.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_clear.xml
deleted file mode 100644
index 6aee2d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8V5H6.39l3,3h1.83l-0.55,1.28 2.09,2.1L14.21,8zM3.41,4.86L2,6.27l6.97,6.97L6.5,19h3l1.57,-3.66L16.73,21l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_color_fill.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_color_fill.xml
deleted file mode 100644
index 8226c8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_color_fill.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17.62L17.62,10l-10,-10L6.21,1.41l2.38,2.38L2.38,10L10,17.62zM10,5.21L14.79,10H5.21L10,5.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17c1.1,0 2,-0.9 2,-2c0,-1.33 -2,-3.5 -2,-3.5s-2,2.17 -2,3.5C17,16.1 17.9,17 19,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v4h-20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_color_reset.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_color_reset.xml
deleted file mode 100644
index d8f8a3913..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_color_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14c0,-3.98 -6,-10.8 -6,-10.8s-1.18,1.35 -2.5,3.19l8.44,8.44c0.03,-0.27 0.06,-0.55 0.06,-0.83zM5.41,5.14L4,6.55l3.32,3.32C6.55,11.33 6,12.79 6,14c0,3.31 2.69,6 6,6 1.52,0 2.9,-0.57 3.95,-1.5l2.63,2.63L20,19.72 5.41,5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_color_text.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_color_text.xml
deleted file mode 100644
index 6cdb775..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_color_text.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v4H2V20zM5.49,17h2.42l1.27,-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17zM9.91,11.39l2.03,-5.79h0.12l2.03,5.79H9.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_indent_decrease.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_indent_decrease.xml
deleted file mode 100644
index acd2481..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_indent_decrease.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h10v-2L11,15v2zM3,12l4,4L7,8l-4,4zM3,21h18v-2L3,19v2zM3,3v2h18L21,3L3,3zM11,9h10L21,7L11,7v2zM11,13h10v-2L11,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_indent_increase.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_indent_increase.xml
deleted file mode 100644
index 0ce524e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_indent_increase.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2L3,19v2zM3,8v8l4,-4 -4,-4zM11,17h10v-2L11,15v2zM3,3v2h18L21,3L3,3zM11,9h10L21,7L11,7v2zM11,13h10v-2L11,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_italic.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_italic.xml
deleted file mode 100644
index d84b45f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_italic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4v3h2.21l-3.42,8H6v3h8v-3h-2.21l3.42,-8H18V4h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_line_spacing.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_line_spacing.xml
deleted file mode 100644
index 24e211d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_line_spacing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7h2.5L5,3.5 1.5,7L4,7v10L1.5,17L5,20.5 8.5,17L6,17L6,7zM10,5v2h12L22,5L10,5zM10,19h12v-2L10,17v2zM10,13h12v-2L10,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_list_bulleted.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_list_bulleted.xml
deleted file mode 100644
index 1f7cbc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_list_bulleted.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM4,4.5c-0.83,0 -1.5,0.67 -1.5,1.5S3.17,7.5 4,7.5 5.5,6.83 5.5,6 4.83,4.5 4,4.5zM4,16.5c-0.83,0 -1.5,0.68 -1.5,1.5s0.68,1.5 1.5,1.5 1.5,-0.68 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM7,19h14v-2L7,17v2zM7,13h14v-2L7,11v2zM7,5v2h14L21,5L7,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_list_numbered.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_list_numbered.xml
deleted file mode 100644
index c089156..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_list_numbered.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h2v0.5L3,17.5v1h1v0.5L2,19v1h3v-4L2,16v1zM3,8h1L4,4L2,4v1h1v3zM2,11h1.8L2,13.1v0.9h3v-1L3.2,13L5,10.9L5,10L2,10v1zM7,5v2h14L21,5L7,5zM7,19h14v-2L7,17v2zM7,13h14v-2L7,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_list_numbered_rtl.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_list_numbered_rtl.xml
deleted file mode 100644
index ad2b8c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_list_numbered_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17h2v0.5h-1v1h1v0.5h-2v1h3v-4h-3v1zM19,8h1L20,4h-2v1h1v3zM18,11h1.8L18,13.1v0.9h3v-1h-1.8l1.8,-2.1L21,10h-3v1zM2,5h14v2L2,7L2,5zM2,17h14v2L2,19v-2zM2,11h14v2L2,13v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_overline.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_overline.xml
deleted file mode 100644
index 601edd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_overline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3v2H5V3H19zM12,7c-3.87,0 -7,3.13 -7,7c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,10.13 15.87,7 12,7zM12,18.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,9.5 12,9.5s4.5,2.01 4.5,4.5S14.49,18.5 12,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_paint.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_paint.xml
deleted file mode 100644
index 99d3038..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_paint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4V2H4v6h14V6h1v4H9v12h4V12h8V4h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_quote.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_quote.xml
deleted file mode 100644
index 01bfe13..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h3l2,-4L10,7L4,7v6h3l-2,4zM15,17h3l2,-4L20,7h-6v6h3l-2,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_shapes.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_shapes.xml
deleted file mode 100644
index 9c5332d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_shapes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,7L23,1h-6v2L7,3L7,1L1,1v6h2v10L1,17v6h6v-2h10v2h6v-6h-2L21,7h2zM3,3h2v2L3,5L3,3zM5,21L3,21v-2h2v2zM17,19L7,19v-2L5,17L5,7h2L7,5h10v2h2v10h-2v2zM21,21h-2v-2h2v2zM19,5L19,3h2v2h-2zM13.73,14h-3.49l-0.73,2L7.89,16l3.4,-9h1.4l3.41,9h-1.63l-0.74,-2zM10.69,12.74h2.61L12,8.91l-1.31,3.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_size.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_size.xml
deleted file mode 100644
index 4cfa4c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_size.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v3h5v12h3L17,7h5L22,4L9,4zM3,12h3v7h3v-7h3L12,9L3,9v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_strikethrough.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_strikethrough.xml
deleted file mode 100644
index df6860c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_strikethrough.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19h4v-3h-4v3zM5,4v3h5v3h4V7h5V4H5zM3,14h18v-2H3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_textdirection_l_to_r.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_textdirection_l_to_r.xml
deleted file mode 100644
index c3ffb03..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_textdirection_l_to_r.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10v5h2L11,4h2v11h2L15,4h2L17,2L9,2C6.79,2 5,3.79 5,6s1.79,4 4,4zM21,18l-4,-4v3L5,17v2h12v3l4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_textdirection_r_to_l.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_textdirection_r_to_l.xml
deleted file mode 100644
index 8b49223..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_textdirection_r_to_l.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10v5h2L12,4h2v11h2L16,4h2L18,2h-8C7.79,2 6,3.79 6,6s1.79,4 4,4zM8,17v-3l-4,4 4,4v-3h12v-2L8,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/format_underlined.xml b/compose/material/material/icons/generator/raw-icons/sharp/format_underlined.xml
deleted file mode 100644
index e97ab8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/format_underlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c3.31,0 6,-2.69 6,-6L18,3h-2.5v8c0,1.93 -1.57,3.5 -3.5,3.5S8.5,12.93 8.5,11L8.5,3L6,3v8c0,3.31 2.69,6 6,6zM5,19v2h14v-2L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fort.xml b/compose/material/material/icons/generator/raw-icons/sharp/fort.xml
deleted file mode 100644
index 3b2c4f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fort.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3l0,2l-2,0l0,-2l-2,0l0,2l-2,0l0,-2l-2,0l0,4l2,2l0,1l-6,0l0,-1l2,-2l0,-4l-2,0l0,2l-2,0l0,-2l-2,0l0,2l-2,0l0,-2l-2,0l0,4l2,2l0,6l-2,2l0,4l9,0l0,-5l4,0l0,5l9,0l0,-4l-2,-2l0,-6l2,-2l0,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/forum.xml b/compose/material/material/icons/generator/raw-icons/sharp/forum.xml
deleted file mode 100644
index a170682..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/forum.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6h-3v9L6,15v3h12l4,4L22,6zM17,13L17,2L2,2v15l4,-4h11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/forward.xml b/compose/material/material/icons/generator/raw-icons/sharp/forward.xml
deleted file mode 100644
index d435e7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8V4l8,8 -8,8v-4H4V8h8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/forward_10.xml b/compose/material/material/icons/generator/raw-icons/sharp/forward_10.xml
deleted file mode 100644
index 43a3bb8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/forward_10.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6s2.69,-6 6,-6v4l5,-5l-5,-5v4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.9,16l0,-4.27l-0.09,0l-1.77,0.63l0,0.69l1.01,-0.31l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.32,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1s-0.33,0.18 -0.45,0.33s-0.23,0.34 -0.29,0.57s-0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57s0.28,0.26 0.46,0.33s0.37,0.1 0.59,0.1s0.41,-0.03 0.59,-0.1s0.33,-0.18 0.45,-0.33s0.22,-0.34 0.29,-0.57s0.1,-0.5 0.1,-0.82V13.5c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57S14.49,11.85 14.32,11.78zM14.33,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32s-0.11,0.14 -0.19,0.17s-0.16,0.05 -0.25,0.05s-0.18,-0.02 -0.25,-0.05s-0.14,-0.09 -0.19,-0.17s-0.09,-0.19 -0.12,-0.32s-0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31s0.11,-0.14 0.19,-0.17s0.16,-0.05 0.25,-0.05s0.18,0.02 0.25,0.05s0.14,0.09 0.19,0.17s0.09,0.18 0.12,0.31s0.04,0.29 0.04,0.48V14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/forward_30.xml b/compose/material/material/icons/generator/raw-icons/sharp/forward_30.xml
deleted file mode 100644
index a70c4b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/forward_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6 2.69,-6 6,-6v4l5,-5 -5,-5v4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8h-2zM10.54,15.22c-0.06,0.05 -0.12,0.09 -0.2,0.12s-0.17,0.04 -0.27,0.04c-0.09,0 -0.17,-0.01 -0.25,-0.04s-0.14,-0.06 -0.2,-0.11 -0.1,-0.1 -0.13,-0.17 -0.05,-0.14 -0.05,-0.22h-0.85c0,0.21 0.04,0.39 0.12,0.55s0.19,0.28 0.33,0.38 0.29,0.18 0.46,0.23 0.35,0.07 0.53,0.07c0.21,0 0.41,-0.03 0.6,-0.08s0.34,-0.14 0.48,-0.24 0.24,-0.24 0.32,-0.39 0.12,-0.33 0.12,-0.53c0,-0.23 -0.06,-0.44 -0.18,-0.61s-0.3,-0.3 -0.54,-0.39c0.1,-0.05 0.2,-0.1 0.28,-0.17s0.15,-0.14 0.2,-0.22 0.1,-0.16 0.13,-0.25 0.04,-0.18 0.04,-0.27c0,-0.2 -0.04,-0.37 -0.11,-0.53s-0.17,-0.28 -0.3,-0.38 -0.28,-0.18 -0.46,-0.23 -0.37,-0.08 -0.59,-0.08c-0.19,0 -0.38,0.03 -0.54,0.08s-0.32,0.13 -0.44,0.23 -0.23,0.22 -0.3,0.37 -0.11,0.3 -0.11,0.48h0.85c0,-0.07 0.02,-0.14 0.05,-0.2s0.07,-0.11 0.12,-0.15 0.11,-0.07 0.18,-0.1 0.14,-0.03 0.22,-0.03c0.1,0 0.18,0.01 0.25,0.04s0.13,0.06 0.18,0.11 0.08,0.11 0.11,0.17 0.04,0.14 0.04,0.22c0,0.18 -0.05,0.32 -0.16,0.43s-0.26,0.16 -0.48,0.16h-0.43v0.66h0.45c0.11,0 0.2,0.01 0.29,0.04s0.16,0.06 0.22,0.11 0.11,0.12 0.14,0.2 0.05,0.18 0.05,0.29c0,0.09 -0.01,0.17 -0.04,0.24s-0.08,0.11 -0.13,0.17zM14.44,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1 -0.33,0.18 -0.45,0.33 -0.23,0.34 -0.29,0.57 -0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57 0.28,0.26 0.46,0.33 0.37,0.1 0.59,0.1 0.41,-0.03 0.59,-0.1 0.33,-0.18 0.45,-0.33 0.22,-0.34 0.29,-0.57 0.1,-0.5 0.1,-0.82v-0.74c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57 -0.28,-0.26 -0.46,-0.33zM14.45,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32 -0.11,0.14 -0.19,0.17 -0.16,0.05 -0.25,0.05 -0.18,-0.02 -0.25,-0.05 -0.14,-0.09 -0.19,-0.17 -0.09,-0.19 -0.12,-0.32 -0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31 0.11,-0.14 0.19,-0.17 0.16,-0.05 0.25,-0.05 0.18,0.02 0.25,0.05 0.14,0.09 0.19,0.17 0.09,0.18 0.12,0.31 0.04,0.29 0.04,0.48v0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/forward_5.xml b/compose/material/material/icons/generator/raw-icons/sharp/forward_5.xml
deleted file mode 100644
index 96096d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/forward_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.95,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6 2.69,-6 6,-6v4l5,-5 -5,-5v4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8h-2zM12.43,15.15c-0.05,0.07 -0.11,0.13 -0.18,0.17s-0.17,0.06 -0.27,0.06c-0.17,0 -0.31,-0.05 -0.42,-0.15s-0.17,-0.24 -0.19,-0.41h-0.84c0.01,0.2 0.05,0.37 0.13,0.53s0.19,0.28 0.32,0.39 0.29,0.19 0.46,0.24 0.35,0.08 0.53,0.08c0.24,0 0.46,-0.04 0.64,-0.12s0.33,-0.18 0.45,-0.31 0.21,-0.28 0.27,-0.45 0.09,-0.35 0.09,-0.54c0,-0.22 -0.03,-0.43 -0.09,-0.6s-0.14,-0.33 -0.25,-0.45 -0.25,-0.22 -0.41,-0.28 -0.34,-0.1 -0.55,-0.1c-0.07,0 -0.14,0.01 -0.2,0.02s-0.13,0.02 -0.18,0.04 -0.1,0.03 -0.15,0.05 -0.08,0.04 -0.11,0.05l0.11,-0.92h1.7v-0.71L10.9,11.74l-0.25,2.17 0.67,0.17c0.03,-0.03 0.06,-0.06 0.1,-0.09s0.07,-0.05 0.12,-0.07 0.1,-0.04 0.15,-0.05 0.13,-0.02 0.2,-0.02c0.12,0 0.22,0.02 0.3,0.05s0.16,0.09 0.21,0.15 0.1,0.14 0.13,0.24 0.04,0.19 0.04,0.31 -0.01,0.22 -0.03,0.31 -0.06,0.17 -0.11,0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/forward_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/sharp/forward_to_inbox.xml
deleted file mode 100644
index 09ce348..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/forward_to_inbox.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h11v-2H4V8l8,5l8,-5v5h2V4zM12,11L4,6h16L12,11zM19,15l4,4l-4,4v-3h-4v-2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/foundation.xml b/compose/material/material/icons/generator/raw-icons/sharp/foundation.xml
deleted file mode 100644
index 5c2d36f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/foundation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12zM7,15v-4.81l4,-3.6V15H7zM13,15V6.59l4,3.6V15H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/free_breakfast.xml b/compose/material/material/icons/generator/raw-icons/sharp/free_breakfast.xml
deleted file mode 100644
index c547c74..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/free_breakfast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3v14h14v-7h2c1.11,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,8h-2L18,5h2v3zM4,19h16v2L4,21v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/free_cancellation.xml b/compose/material/material/icons/generator/raw-icons/sharp/free_cancellation.xml
deleted file mode 100644
index 7630ee9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/free_cancellation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.21,20H5V10h14v4.38l2,-2V4h-3V2h-2v2H8V2H6v2H3v18h10.21L11.21,20zM16.54,22.5L13,18.96l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,22.5zM10.41,14L12,15.59L10.59,17L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/front_hand.xml b/compose/material/material/icons/generator/raw-icons/sharp/front_hand.xml
deleted file mode 100644
index 204441a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/front_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,8v7H18c-1.65,0 -3,1.35 -3,3h-1c0,-2.04 1.53,-3.72 3.5,-3.97V2H15v9h-1V0h-2.5v11h-1V1.5H8V12H7V4.5H4.5v11.25c0,4.56 3.69,8.25 8.25,8.25S21,20.31 21,15.75V8H18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fullscreen.xml b/compose/material/material/icons/generator/raw-icons/sharp/fullscreen.xml
deleted file mode 100644
index 804cebc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14L5,14v5h5v-2L7,17v-3zM5,10h2L7,7h3L10,5L5,5v5zM17,17h-3v2h5v-5h-2v3zM14,5v2h3v3h2L19,5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/fullscreen_exit.xml b/compose/material/material/icons/generator/raw-icons/sharp/fullscreen_exit.xml
deleted file mode 100644
index 1efbe0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/fullscreen_exit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h3v3h2v-5L5,14v2zM8,8L5,8v2h5L10,5L8,5v3zM14,19h2v-3h3v-2h-5v5zM16,8L16,5h-2v5h5L19,8h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/functions.xml b/compose/material/material/icons/generator/raw-icons/sharp/functions.xml
deleted file mode 100644
index d449837..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/functions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4H6v2l6.5,6L6,18v2h12v-3h-7l5,-5 -5,-5h7V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/g_mobiledata.xml
deleted file mode 100644
index 4f8091f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11v2h2v2H9V9h7V7H7v10h9v-6H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/g_translate.xml b/compose/material/material/icons/generator/raw-icons/sharp/g_translate.xml
deleted file mode 100644
index ad112be..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/g_translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-9.12L10,2L4,2c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h7l1,3h8c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM7.17,14.59c-2.25,0 -4.09,-1.83 -4.09,-4.09s1.83,-4.09 4.09,-4.09c1.04,0 1.99,0.37 2.74,1.07l0.07,0.06 -1.23,1.18 -0.06,-0.05c-0.29,-0.27 -0.78,-0.59 -1.52,-0.59 -1.31,0 -2.38,1.09 -2.38,2.42s1.07,2.42 2.38,2.42c1.37,0 1.96,-0.87 2.12,-1.46L7.08,11.46L7.08,9.91h3.95l0.01,0.07c0.04,0.21 0.05,0.4 0.05,0.61 0,2.35 -1.61,4 -3.92,4zM13.2,12.88c0.33,0.6 0.74,1.18 1.19,1.7l-0.54,0.53 -0.65,-2.23zM13.97,12.12h-0.99l-0.31,-1.04h3.99s-0.34,1.31 -1.56,2.74c-0.52,-0.62 -0.89,-1.23 -1.13,-1.7zM21,20c0,0.55 -0.45,1 -1,1h-7l2,-2 -0.81,-2.77 0.92,-0.92L17.79,18l0.73,-0.73 -2.71,-2.68c0.9,-1.03 1.6,-2.25 1.92,-3.51L19,11.08v-1.04h-3.64L15.36,9h-1.04v1.04h-1.96L11.18,6L20,6c0.55,0 1,0.45 1,1v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gamepad.xml b/compose/material/material/icons/generator/raw-icons/sharp/gamepad.xml
deleted file mode 100644
index fcf518c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gamepad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7.5V2H9v5.5l3,3 3,-3zM7.5,9H2v6h5.5l3,-3 -3,-3zM9,16.5V22h6v-5.5l-3,-3 -3,3zM16.5,9l-3,3 3,3H22V9h-5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/games.xml b/compose/material/material/icons/generator/raw-icons/sharp/games.xml
deleted file mode 100644
index fcf518c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/games.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7.5V2H9v5.5l3,3 3,-3zM7.5,9H2v6h5.5l3,-3 -3,-3zM9,16.5V22h6v-5.5l-3,-3 -3,3zM16.5,9l-3,3 3,3H22V9h-5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/garage.xml b/compose/material/material/icons/generator/raw-icons/sharp/garage.xml
deleted file mode 100644
index b96db29..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/garage.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.33,7.5l-0.66,2l8.66,0l-0.66,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM19,18.5h-2v-2H7v2H5v-7.31L6.89,5.5h10.21L19,11.19V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gas_meter.xml b/compose/material/material/icons/generator/raw-icons/sharp/gas_meter.xml
deleted file mode 100644
index ed00703..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gas_meter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-5V2h-2v2h-2V2H9v2H4v18h16V4zM12,18c-1.38,0 -2.5,-1.1 -2.5,-2.46c0,-1.09 0.43,-1.39 2.5,-3.79c2.05,2.38 2.5,2.7 2.5,3.79C14.5,16.9 13.38,18 12,18zM16,10H8V8h8V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gavel.xml b/compose/material/material/icons/generator/raw-icons/sharp/gavel.xml
deleted file mode 100644
index 48c0e59..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gavel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h12v2H1v-2zM5.24,8.07l2.83,-2.83 14.14,14.14 -2.83,2.83L5.24,8.07zM12.32,1l5.66,5.66 -2.83,2.83 -5.66,-5.66L12.32,1zM3.83,9.48l5.66,5.66 -2.83,2.83L1,12.31l2.83,-2.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/generating_tokens.xml b/compose/material/material/icons/generator/raw-icons/sharp/generating_tokens.xml
deleted file mode 100644
index 8f331f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/generating_tokens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8C17,7.58 13.42,4 9,4zM12,10.5h-2v5H8v-5H6V9h6V10.5zM20.25,3.75L23,5l-2.75,1.25L19,9l-1.25,-2.75L15,5l2.75,-1.25L19,1L20.25,3.75zM20.25,17.75L23,19l-2.75,1.25L19,23l-1.25,-2.75L15,19l2.75,-1.25L19,15L20.25,17.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gesture.xml b/compose/material/material/icons/generator/raw-icons/sharp/gesture.xml
deleted file mode 100644
index c3087f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gesture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.59,6.89c0.7,-0.71 1.4,-1.35 1.71,-1.22 0.5,0.2 0,1.03 -0.3,1.52 -0.25,0.42 -2.86,3.89 -2.86,6.31 0,1.28 0.48,2.34 1.34,2.98 0.75,0.56 1.74,0.73 2.64,0.46 1.07,-0.31 1.95,-1.4 3.06,-2.77 1.21,-1.49 2.83,-3.44 4.08,-3.44 1.63,0 1.65,1.01 1.76,1.79 -3.78,0.64 -5.38,3.67 -5.38,5.37 0,1.7 1.44,3.09 3.21,3.09 1.63,0 4.29,-1.33 4.69,-6.1L21,14.88v-2.5h-2.47c-0.15,-1.65 -1.09,-4.2 -4.03,-4.2 -2.25,0 -4.18,1.91 -4.94,2.84 -0.58,0.73 -2.06,2.48 -2.29,2.72 -0.25,0.3 -0.68,0.84 -1.11,0.84 -0.45,0 -0.72,-0.83 -0.36,-1.92 0.35,-1.09 1.4,-2.86 1.85,-3.52 0.78,-1.14 1.3,-1.92 1.3,-3.28C8.95,3.69 7.31,3 6.44,3 5.12,3 3.97,4 3.72,4.25c-0.36,0.36 -0.66,0.66 -0.88,0.93l1.75,1.71zM13.88,18.55c-0.31,0 -0.74,-0.26 -0.74,-0.72 0,-0.6 0.73,-2.2 2.87,-2.76 -0.3,2.69 -1.43,3.48 -2.13,3.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/get_app.xml b/compose/material/material/icons/generator/raw-icons/sharp/get_app.xml
deleted file mode 100644
index 27bb5a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/get_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gif.xml b/compose/material/material/icons/generator/raw-icons/sharp/gif.xml
deleted file mode 100644
index e1a2b2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gif.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9L13,9v6h-1.5L11.5,9zM10,9L5,9v6h5v-3L8.5,12v1.5h-2v-3L10,10.5L10,9zM19,10.5L19,9h-4.5v6L16,15v-2h2v-1.5h-2v-1h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gif_box.xml b/compose/material/material/icons/generator/raw-icons/sharp/gif_box.xml
deleted file mode 100644
index eed1049..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gif_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM9.5,13v-1h1v2h-3v-4h3v1h-2v2H9.5zM12.5,14h-1v-4h1V14zM16.5,11h-2v0.5H16v1h-1.5V14h-1v-4h3V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/girl.xml b/compose/material/material/icons/generator/raw-icons/sharp/girl.xml
deleted file mode 100644
index 96b3cd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/girl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,16v4h-4v-4H8l2.38,-6.38C10.63,8.95 11.28,8.5 12,8.5s1.37,0.45 1.62,1.12L16,16H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gite.xml b/compose/material/material/icons/generator/raw-icons/sharp/gite.xml
deleted file mode 100644
index 2ee3d8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6zM4,12h10v5H4V12zM20,17h-4v-6.17l2,-2v0l2,2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/golf_course.xml b/compose/material/material/icons/generator/raw-icons/sharp/golf_course.xml
deleted file mode 100644
index f3593e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/golf_course.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5.92L9,2v18H7v-1.73c-1.79,0.35 -3,0.99 -3,1.73 0,1.1 2.69,2 6,2s6,-0.9 6,-2c0,-0.99 -2.16,-1.81 -5,-1.97V8.98l6,-3.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gpp_bad.xml b/compose/material/material/icons/generator/raw-icons/sharp/gpp_bad.xml
deleted file mode 100644
index f32ef25..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gpp_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM15.5,14.09l-1.41,1.41L12,13.42L9.91,15.5L8.5,14.09L10.59,12L8.5,9.91L9.91,8.5L12,10.59l2.09,-2.09l1.41,1.41L13.42,12L15.5,14.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gpp_good.xml b/compose/material/material/icons/generator/raw-icons/sharp/gpp_good.xml
deleted file mode 100644
index 5085f4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gpp_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM10.94,15.54L7.4,12l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L10.94,15.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gpp_maybe.xml b/compose/material/material/icons/generator/raw-icons/sharp/gpp_maybe.xml
deleted file mode 100644
index 5ce1d87..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gpp_maybe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM13,16h-2v-2h2V16zM13,12h-2V7h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gps_fixed.xml b/compose/material/material/icons/generator/raw-icons/sharp/gps_fixed.xml
deleted file mode 100644
index b050330..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gps_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gps_not_fixed.xml b/compose/material/material/icons/generator/raw-icons/sharp/gps_not_fixed.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gps_not_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gps_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/gps_off.xml
deleted file mode 100644
index a580646..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gps_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77L23,13v-2h-2.06zM3,4.27l2.04,2.04C3.97,7.62 3.26,9.23 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21l1.41,-1.41L4.41,2.86 3,4.27zM16.27,17.54C15.09,18.45 13.61,19 12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grade.xml b/compose/material/material/icons/generator/raw-icons/sharp/grade.xml
deleted file mode 100644
index 659416d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/gradient.xml b/compose/material/material/icons/generator/raw-icons/sharp/gradient.xml
deleted file mode 100644
index 6d6799a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/gradient.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v2h-2L11,9zM9,11h2v2L9,13v-2zM13,11h2v2h-2v-2zM15,9h2v2h-2L15,9zM7,9h2v2L7,11L7,9zM21,3L3,3v18h18L21,3zM9,18L7,18v-2h2v2zM13,18h-2v-2h2v2zM17,18h-2v-2h2v2zM19,11h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2L9,15v-2L7,13v2L5,15v-2h2v-2L5,11L5,5h14v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grading.xml b/compose/material/material/icons/generator/raw-icons/sharp/grading.xml
deleted file mode 100644
index b5d0218..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grading.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h16v2H4V7zM4,13h16v-2H4V13zM4,17h7v-2H4V17zM4,21h7v-2H4V21zM15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42L18.58,15L15.41,18.17zM4,3v2h16V3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grain.xml b/compose/material/material/icons/generator/raw-icons/sharp/grain.xml
deleted file mode 100644
index daf1370..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM14,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,12c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM14,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM10,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/graphic_eq.xml b/compose/material/material/icons/generator/raw-icons/sharp/graphic_eq.xml
deleted file mode 100644
index 42f814b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/graphic_eq.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18h2L9,6L7,6v12zM11,22h2L13,2h-2v20zM3,14h2v-4L3,10v4zM15,18h2L17,6h-2v12zM19,10v4h2v-4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grass.xml b/compose/material/material/icons/generator/raw-icons/sharp/grass.xml
deleted file mode 100644
index aafa3e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grass.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20H2v-2h5.75l0,0C7.02,15.19 4.81,12.99 2,12.26C2.64,12.1 3.31,12 4,12C8.42,12 12,15.58 12,20zM22,12.26C21.36,12.1 20.69,12 20,12c-2.93,0 -5.48,1.58 -6.88,3.93c0.29,0.66 0.53,1.35 0.67,2.07c0.13,0.65 0.2,1.32 0.2,2h2h6v-2h-5.75C16.98,15.19 19.19,12.99 22,12.26zM15.64,11.02c0.78,-2.09 2.23,-3.84 4.09,-5C15.44,6.16 12,9.67 12,14c0,0.01 0,0.02 0,0.02C12.95,12.75 14.2,11.72 15.64,11.02zM11.42,8.85C10.58,6.66 8.88,4.89 6.7,4C8.14,5.86 9,8.18 9,10.71c0,0.21 -0.03,0.41 -0.04,0.61c0.43,0.24 0.83,0.52 1.22,0.82C10.39,10.96 10.83,9.85 11.42,8.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grid_3x3.xml b/compose/material/material/icons/generator/raw-icons/sharp/grid_3x3.xml
deleted file mode 100644
index bdc2232..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grid_3x3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grid_4x4.xml b/compose/material/material/icons/generator/raw-icons/sharp/grid_4x4.xml
deleted file mode 100644
index 460133b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grid_4x4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22zM7,7h4v4H7V7zM7,17v-4h4v4H7zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grid_goldenratio.xml b/compose/material/material/icons/generator/raw-icons/sharp/grid_goldenratio.xml
deleted file mode 100644
index 96956d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grid_goldenratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grid_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/grid_off.xml
deleted file mode 100644
index 4fde636..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grid_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4v0.89l2,2L10,4h4v4h-2.89l2,2L14,10v0.89l2,2L16,10h4v4h-2.89l2,2L20,16v0.89l2,2L22,2L5.11,2l2,2L8,4zM16,4h4v4h-4L16,4zM1.41,1.14L0,2.55l2,2L2,22h17.45l2.01,2.01 1.41,-1.41L1.41,1.14zM10,12.55L11.45,14L10,14v-1.45zM4,6.55L5.45,8L4,8L4,6.55zM8,20L4,20v-4h4v4zM8,14L4,14v-4h3.45l0.55,0.55L8,14zM14,20h-4v-4h3.45l0.55,0.55L14,20zM16,20v-1.45L17.45,20L16,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grid_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/grid_on.xml
deleted file mode 100644
index a96eec9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grid_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v20h20L22,2zM8,20L4,20v-4h4v4zM8,14L4,14v-4h4v4zM8,8L4,8L4,4h4v4zM14,20h-4v-4h4v4zM14,14h-4v-4h4v4zM14,8h-4L10,4h4v4zM20,20h-4v-4h4v4zM20,14h-4v-4h4v4zM20,8h-4L16,4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/grid_view.xml b/compose/material/material/icons/generator/raw-icons/sharp/grid_view.xml
deleted file mode 100644
index 7e95fe7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/grid_view.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h8v8h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h8v8h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3h8v8h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h8v8h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/group.xml b/compose/material/material/icons/generator/raw-icons/sharp/group.xml
deleted file mode 100644
index c5b8edf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/group.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11c1.66,0 2.99,-1.34 2.99,-3S17.66,5 16,5s-3,1.34 -3,3 1.34,3 3,3zM8,11c1.66,0 2.99,-1.34 2.99,-3S9.66,5 8,5 5,6.34 5,8s1.34,3 3,3zM8,13c-2.33,0 -7,1.17 -7,3.5L1,19h14v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5zM16,13c-0.29,0 -0.62,0.02 -0.97,0.05 1.16,0.84 1.97,1.97 1.97,3.45L17,19h6v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/group_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/group_add.xml
deleted file mode 100644
index 2ab0b72..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/group_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9l0,-2l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4S4,5.79 4,8S5.79,12 8,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/group_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/group_off.xml
deleted file mode 100644
index 6868f1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/group_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.42 -0.5,-2.73 -1.33,-3.76C14.09,4.1 14.53,4 15,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4c-0.06,0 -0.12,0 -0.18,0l-0.77,-0.77C14.65,10.29 15,9.18 15,8zM22.83,20H23v-3c0,-2.18 -3.58,-3.47 -6.34,-3.87c1.1,0.75 1.95,1.71 2.23,2.94L22.83,20zM7.24,4.41C7.77,4.15 8.37,4 9,4c2.21,0 4,1.79 4,4c0,0.63 -0.15,1.23 -0.41,1.76L7.24,4.41zM9.17,12C9.11,12 9.06,12 9,12c-2.21,0 -4,-1.79 -4,-4c0,-0.06 0,-0.11 0,-0.17L0.69,3.51L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0,-2.66 5.33,-4 8,-4c0.37,0 0.8,0.03 1.25,0.08L9.17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/group_remove.xml b/compose/material/material/icons/generator/raw-icons/sharp/group_remove.xml
deleted file mode 100644
index c71530e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/group_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,9v2h-6V9H24zM8,4C5.79,4 4,5.79 4,8s1.79,4 4,4s4,-1.79 4,-4S10.21,4 8,4zM8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13zM12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05zM16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/group_work.xml b/compose/material/material/icons/generator/raw-icons/sharp/group_work.xml
deleted file mode 100644
index c4eb7d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/group_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM8,17.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5zM9.5,8c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5S9.5,9.38 9.5,8zM16,17.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/groups.xml b/compose/material/material/icons/generator/raw-icons/sharp/groups.xml
deleted file mode 100644
index a6df105..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/groups.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.75c1.63,0 3.07,0.39 4.24,0.9c1.08,0.48 1.76,1.56 1.76,2.73L18,18H6l0,-1.61c0,-1.18 0.68,-2.26 1.76,-2.73C8.93,13.14 10.37,12.75 12,12.75zM4,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C2,12.1 2.9,13 4,13zM5.13,14.1C4.76,14.04 4.39,14 4,14c-0.99,0 -1.93,0.21 -2.78,0.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61C4.5,15.56 4.73,14.78 5.13,14.1zM20,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C18,12.1 18.9,13 20,13zM24,16.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0V16.43zM12,6c1.66,0 3,1.34 3,3c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3C9,7.34 10.34,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/groups_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/groups_2.xml
deleted file mode 100644
index de0bfd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/groups_2.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.27,12h3.46c0.93,0 1.63,-0.83 1.48,-1.75l-0.3,-1.79C14.67,7.04 13.44,6 12,6S9.33,7.04 9.09,8.47l-0.3,1.79C8.64,11.17 9.34,12 10.27,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.66,11.11c-0.13,0.26 -0.18,0.57 -0.1,0.88c0.16,0.69 0.76,1.03 1.53,1c0,0 1.49,0 1.95,0c0.83,0 1.51,-0.58 1.51,-1.29c0,-0.14 -0.03,-0.27 -0.07,-0.4c-0.01,-0.03 -0.01,-0.05 0.01,-0.08c0.09,-0.16 0.14,-0.34 0.14,-0.53c0,-0.31 -0.14,-0.6 -0.36,-0.82c-0.03,-0.03 -0.03,-0.06 -0.02,-0.1c0.07,-0.2 0.07,-0.43 0.01,-0.65C6.1,8.69 5.71,8.4 5.27,8.38c-0.03,0 -0.05,-0.01 -0.07,-0.03C5.03,8.14 4.72,8 4.37,8C4.07,8 3.8,8.1 3.62,8.26C3.59,8.29 3.56,8.29 3.53,8.28c-0.14,-0.06 -0.3,-0.09 -0.46,-0.09c-0.65,0 -1.18,0.49 -1.24,1.12c0,0.02 -0.01,0.04 -0.03,0.06c-0.29,0.26 -0.46,0.65 -0.41,1.05c0.03,0.22 0.12,0.43 0.25,0.6C1.67,11.04 1.67,11.08 1.66,11.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11v-0.5c0,-1.1 -0.9,-2 -2,-2h-2c-0.42,0 -0.65,0.48 -0.39,0.81l0.7,0.63C18.12,10.25 18,10.61 18,11c0,1.1 0.9,2 2,2S22,12.1 22,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/groups_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/groups_3.xml
deleted file mode 100644
index 66b5e90..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/groups_3.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,7.34 9,9C9,10.66 10.34,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.497,11l2.503,-2.503l2.503,2.503l-2.503,2.503z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9l-2.5,4l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/h_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/h_mobiledata.xml
deleted file mode 100644
index 2e267be..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/h_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/h_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/h_plus_mobiledata.xml
deleted file mode 100644
index 119aa12..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/h_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11zM22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hail.xml b/compose/material/material/icons/generator/raw-icons/sharp/hail.xml
deleted file mode 100644
index ff85537..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,6 12,6zM17,2h2c0,2.7 -0.93,4.41 -2.3,5.5c-0.5,0.4 -1.1,0.7 -1.7,0.9V22h-2v-6h-2v6H9V10.1c-0.3,0.1 -0.5,0.2 -0.6,0.3C7.87,10.81 7,11.43 7,14H5c0,-2.06 0.35,-3.78 2.11,-5.29C8.21,7.81 10,7 12,7s2.68,-0.46 3.48,-1.06C15.96,5.55 17,4.76 17,2zM4,16h3v6H4V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/handshake.xml b/compose/material/material/icons/generator/raw-icons/sharp/handshake.xml
deleted file mode 100644
index 39228bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/handshake.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,5.95l-7.05,7.04L0.7,10.3l8.55,-8.55l7.95,7.95l-1.42,1.42L10.59,5.95zM23.24,10.24l-8.49,-8.49l-2.06,2.06l5.9,5.88l-2.83,2.83l-5.17,-5.17l-6.27,6.27l1.42,1.41l5.32,-5.32l0.71,0.71l-5.32,5.32l1.42,1.41l5.32,-5.32l0.71,0.71l-5.32,5.32l1.41,1.41l5.32,-5.32l0.71,0.71L10.68,20l1.41,1.41L23.24,10.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/handyman.xml b/compose/material/material/icons/generator/raw-icons/sharp/handyman.xml
deleted file mode 100644
index eab37b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/handyman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.37,12.87h-0.99l-2.54,2.54v0.99l6.01,6.01l3.54,-3.54L16.37,12.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,10.19l1.41,-1.41l2.12,2.12c1.17,-1.17 1.17,-3.07 0,-4.24l-3.54,-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-6.01,6.01l3.54,3.54l6.01,-6.01v-2.12l5.15,-5.15L17.34,10.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hardware.xml b/compose/material/material/icons/generator/raw-icons/sharp/hardware.xml
deleted file mode 100644
index 3966c4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hardware.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3l-3,3V3H9C6.24,3 4,5.24 4,8h5v3h6V8l3,3h2V3H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13v8h6v-8H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hd.xml b/compose/material/material/icons/generator/raw-icons/sharp/hd.xml
deleted file mode 100644
index f738c9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hd.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM11,15L9.5,15v-2h-2v2L6,15L6,9h1.5v2.5h2L9.5,9L11,9v6zM13,9h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-4L13,9zM14.5,13.5h2v-3h-2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_auto.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_auto.xml
deleted file mode 100644
index ce25cd8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_auto.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.04,8.04l-0.09,0l-1.6,4.55l3.29,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM15.21,17l-0.98,-2.81H9.78l-1,2.81h-1.9l4.13,-11h1.97l4.13,11H15.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_auto_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_auto_select.xml
deleted file mode 100644
index 4626018..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_auto_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18l-2,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l2,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18.5l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0l0,2l1.5,0l0,-2l2,0l0,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,22h1.5v-2h1.1l0.9,2H18l-0.86,-2H18v-4h-5V22zM14.5,17.5h2v1h-2V17.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.97,5.3l-1.02,2.89l2.1,0l-1.02,-2.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM14.04,11l-0.63,-1.79h-2.83L9.96,11H8.74l2.63,-7h1.25l2.63,7H14.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_enhanced_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_enhanced_select.xml
deleted file mode 100644
index a62af02..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_enhanced_select.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM15,9h-2v2h-2V9H9V7h2V5h2v2h2V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16h-5v6h1.5v-2h1.1l0.9,2H18l-0.86,-2H18V16zM16.5,18.5h-2v-1h2V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18l-2,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l2,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18.5l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0l0,2l1.5,0l0,-2l2,0l0,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_off.xml
deleted file mode 100644
index cd44495..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,15v-2h1.1l0.9,2L21,15l-0.9,-2.1h0.9L21,9h-5v4.86L17.14,15h0.36zM17.5,10.5h2v1h-2v-1zM13,10.5v0.36l1.5,1.5L14.5,10.5c0,-0.8 -0.7,-1.5 -1.5,-1.5h-1.86l1.5,1.5L13,10.5zM2.51,2.49L1.45,3.55 6.9,9h-0.4v2h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15v-4.9l1.5,1.5L9.5,15h3.4l7.6,7.6 1.06,-1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_off_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_off_select.xml
deleted file mode 100644
index 4a9a71a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_off_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20v-4h-5v6h1.5v-2h1.1l0.9,2H18l-0.86,-2L18,20zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98,4.15L9.42,2.59c5.1,-2.42 10.41,2.89 7.99,7.99l-1.56,-1.56C16.66,6.06 13.94,3.34 10.98,4.15zM6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1 2.89,10.41 7.99,7.99l1.66,1.66l1.41,-1.41L6.34,2.34zM8.15,6.98l4.87,4.87C10.06,12.66 7.34,9.94 8.15,6.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_on.xml
deleted file mode 100644
index 0698c0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.9L21,9h-5v6h1.5v-2h1.1l0.9,2L21,15l-0.9,-2.1h0.9zM19.5,11.5h-2v-1h2v1zM6.5,11h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15L8,9L6.5,9v2zM13,9L9.5,9v6L13,15c0.8,0 1.5,-0.7 1.5,-1.5v-3c0,-0.8 -0.7,-1.5 -1.5,-1.5zM13,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_on_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_on_select.xml
deleted file mode 100644
index c3917d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_on_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,19.9V16h-5v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1H18zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4s-4,-1.79 -4,-4S9.79,4 12,4M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_plus.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_plus.xml
deleted file mode 100644
index afc57f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_plus.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5h1.5v3h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,17l-0.86,-0.01L12,19h-1.5l-0.9,-2H8.5v2H7v-6h5c0,0 0,0.7 0,1.5V17zM12,12h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12V12zM17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zM17.5,10.5c0,0.8 -0.7,1.5 -1.5,1.5h-3V6h3c0.8,0 1.5,0.7 1.5,1.5V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_strong.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_strong.xml
deleted file mode 100644
index 73e3297..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_strong.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM5,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hdr_weak.xml b/compose/material/material/icons/generator/raw-icons/sharp/hdr_weak.xml
deleted file mode 100644
index 0a0eb26..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hdr_weak.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM17,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/headphones.xml b/compose/material/material/icons/generator/raw-icons/sharp/headphones.xml
deleted file mode 100644
index d8320ced..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/headphones.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9v9h6v-8H5v-1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v1h-4v8h6v-9C21,7.03 16.97,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/headphones_battery.xml b/compose/material/material/icons/generator/raw-icons/sharp/headphones_battery.xml
deleted file mode 100644
index d50584e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/headphones_battery.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0,-1l-2,0l0,1l-2,0l0,11l6,0l0,-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c-3.31,0 -6,2.69 -6,6v6h4v-5H3.5v-1c0,-2.48 2.02,-4.5 4.5,-4.5s4.5,2.02 4.5,4.5v1H10v5h4v-6C14,8.69 11.31,6 8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/headset.xml b/compose/material/material/icons/generator/raw-icons/sharp/headset.xml
deleted file mode 100644
index 77f98c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/headset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.4,1.02C6.62,1.33 3,5.52 3,10.31V20h6v-8H5v-1.71C5,6.45 7.96,3.11 11.79,3 15.76,2.89 19,6.06 19,10v2h-4v8h6V10c0,-5.17 -4.36,-9.32 -9.6,-8.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/headset_mic.xml b/compose/material/material/icons/generator/raw-icons/sharp/headset_mic.xml
deleted file mode 100644
index b4a35f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/headset_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.4,1.02C6.62,1.33 3,5.51 3,10.31V20h6v-8H5v-1.71C5,6.45 7.96,3.11 11.79,3 15.76,2.89 19,6.06 19,10v2h-4v8h4v1h-7v2h9V10c0,-5.17 -4.36,-9.32 -9.6,-8.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/headset_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/headset_off.xml
deleted file mode 100644
index 4eeca44..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/headset_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c3.87,0 7,3.13 7,7v1h-4v0.17l6,6V11c0,-4.97 -4.03,-9 -9,-9C9.98,2 8.12,2.67 6.62,3.8l1.43,1.43C9.17,4.45 10.53,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09 3,9.5 3,11v9h6v-8H5v-1c0,-0.94 0.19,-1.83 0.52,-2.65L15,17.83V20h2.17l1,1H12v2h8.17l0.31,0.31l1.41,-1.41L2.1,2.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/healing.xml b/compose/material/material/icons/generator/raw-icons/sharp/healing.xml
deleted file mode 100644
index 98151b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/healing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.74,12.01l4.68,-4.68 -5.75,-5.75 -4.68,4.68L7.3,1.58 1.55,7.34l4.68,4.69 -4.68,4.68 5.75,5.75 4.68,-4.68 4.69,4.69 5.76,-5.76 -4.69,-4.7zM12,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM7.29,10.96L3.66,7.34l3.63,-3.63 3.62,3.62 -3.62,3.63zM10,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM14,11c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16.66,20.34l-3.63,-3.62 3.63,-3.63 3.62,3.62 -3.62,3.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/health_and_safety.xml b/compose/material/material/icons/generator/raw-icons/sharp/health_and_safety.xml
deleted file mode 100644
index a73e54a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/health_and_safety.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hearing.xml b/compose/material/material/icons/generator/raw-icons/sharp/hearing.xml
deleted file mode 100644
index 42f6db0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hearing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20c-0.29,0 -0.56,-0.06 -0.76,-0.15 -0.71,-0.37 -1.21,-0.88 -1.71,-2.38 -0.51,-1.56 -1.47,-2.29 -2.39,-3 -0.79,-0.61 -1.61,-1.24 -2.32,-2.53C9.29,10.98 9,9.93 9,9c0,-2.8 2.2,-5 5,-5s5,2.2 5,5h2c0,-3.93 -3.07,-7 -7,-7S7,5.07 7,9c0,1.26 0.38,2.65 1.07,3.9 0.91,1.65 1.98,2.48 2.85,3.15 0.81,0.62 1.39,1.07 1.71,2.05 0.6,1.82 1.37,2.84 2.73,3.55 0.51,0.23 1.07,0.35 1.64,0.35 2.21,0 4,-1.79 4,-4h-2c0,1.1 -0.9,2 -2,2zM7.64,2.64L6.22,1.22C4.23,3.21 3,5.96 3,9s1.23,5.79 3.22,7.78l1.41,-1.41C6.01,13.74 5,11.49 5,9s1.01,-4.74 2.64,-6.36zM11.5,9c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5 -1.12,-2.5 -2.5,-2.5 -2.5,1.12 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hearing_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/hearing_disabled.xml
deleted file mode 100644
index c86d496..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hearing_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.03,3.2C7.15,2.44 8.51,2 10,2c3.93,0 7,3.07 7,7c0,1.26 -0.38,2.65 -1.07,3.9c-0.02,0.04 -0.05,0.08 -0.08,0.13l-1.48,-1.48C14.77,10.69 15,9.8 15,9c0,-2.8 -2.2,-5 -5,-5C9.08,4 8.24,4.26 7.5,4.67L6.03,3.2zM17.21,14.38l1.43,1.43C20.11,13.93 21,11.57 21,9c0,-3.04 -1.23,-5.79 -3.22,-7.78l-1.42,1.42C17.99,4.26 19,6.51 19,9C19,11.02 18.33,12.88 17.21,14.38zM10,6.5c-0.21,0 -0.4,0.03 -0.59,0.08l3.01,3.01C12.47,9.4 12.5,9.21 12.5,9C12.5,7.62 11.38,6.5 10,6.5zM21.19,21.19L2.81,2.81L1.39,4.22l2.13,2.13C3.19,7.16 3,8.05 3,9h2c0,-0.36 0.05,-0.71 0.12,-1.05l6.61,6.61c-0.88,0.68 -1.78,1.41 -2.27,2.9c-0.5,1.5 -1,2.01 -1.71,2.38C7.56,19.94 7.29,20 7,20c-1.1,0 -2,-0.9 -2,-2H3c0,2.21 1.79,4 4,4c0.57,0 1.13,-0.12 1.64,-0.35c1.36,-0.71 2.13,-1.73 2.73,-3.55c0.32,-0.98 0.9,-1.43 1.71,-2.05c0.03,-0.02 0.05,-0.04 0.08,-0.06l6.62,6.62L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/heart_broken.xml b/compose/material/material/icons/generator/raw-icons/sharp/heart_broken.xml
deleted file mode 100644
index bf5c730..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/heart_broken.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-0.96,0 -1.9,0.25 -2.73,0.69L12,9h3l-3,10l1,-9h-3l1.54,-5.39C10.47,3.61 9.01,3 7.5,3C4.42,3 2,5.42 2,8.5c0,4.13 4.16,7.18 10,12.5c5.47,-4.94 10,-8.26 10,-12.5C22,5.42 19.58,3 16.5,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/heat_pump.xml b/compose/material/material/icons/generator/raw-icons/sharp/heat_pump.xml
deleted file mode 100644
index b2988e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/heat_pump.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM12.75,7.08c0.82,0.12 1.57,0.44 2.2,0.91l-2.2,2.2V7.08zM11.25,7.08v3.11l-2.2,-2.2C9.68,7.52 10.43,7.2 11.25,7.08zM7.99,9.05l2.2,2.2H7.08C7.2,10.43 7.52,9.68 7.99,9.05zM7.08,12.75h3.11l-2.2,2.2C7.52,14.32 7.2,13.57 7.08,12.75zM11.25,16.92c-0.82,-0.12 -1.57,-0.44 -2.2,-0.91l2.2,-2.2V16.92zM12,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,12.55 12.55,13 12,13zM12.75,16.92v-3.11l2.2,2.2C14.32,16.48 13.57,16.8 12.75,16.92zM16.01,14.95l-2.2,-2.2h3.11C16.8,13.57 16.48,14.32 16.01,14.95zM13.81,11.25l2.2,-2.2c0.47,0.64 0.79,1.39 0.91,2.2H13.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/height.xml b/compose/material/material/icons/generator/raw-icons/sharp/height.xml
deleted file mode 100644
index 4addea0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/height.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.99l3,0l-4,-3.99l-4,3.99l3,0l0,10.02l-3,0l4,3.99l4,-3.99l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/help.xml b/compose/material/material/icons/generator/raw-icons/sharp/help.xml
deleted file mode 100644
index 08187d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,19h-2v-2h2v2zM15.07,11.25l-0.9,0.92C13.45,12.9 13,13.5 13,15h-2v-0.5c0,-1.1 0.45,-2.1 1.17,-2.83l1.24,-1.26c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2L8,9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,0.88 -0.36,1.68 -0.93,2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/help_center.xml b/compose/material/material/icons/generator/raw-icons/sharp/help_center.xml
deleted file mode 100644
index d42d9c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/help_center.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM12.01,18c-0.7,0 -1.26,-0.56 -1.26,-1.26c0,-0.71 0.56,-1.25 1.26,-1.25c0.71,0 1.25,0.54 1.25,1.25C13.25,17.43 12.72,18 12.01,18zM15.02,10.6c-0.76,1.11 -1.48,1.46 -1.87,2.17c-0.16,0.29 -0.22,0.48 -0.22,1.41h-1.82c0,-0.49 -0.08,-1.29 0.31,-1.98c0.49,-0.87 1.42,-1.39 1.96,-2.16c0.57,-0.81 0.25,-2.33 -1.37,-2.33c-1.06,0 -1.58,0.8 -1.8,1.48L8.56,8.49C9.01,7.15 10.22,6 11.99,6c1.48,0 2.49,0.67 3.01,1.52C15.44,8.24 15.7,9.59 15.02,10.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/help_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/help_outline.xml
deleted file mode 100644
index 94242b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/help_outline.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18h2v-2h-2v2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,6c-2.21,0 -4,1.79 -4,4h2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hevc.xml b/compose/material/material/icons/generator/raw-icons/sharp/hevc.xml
deleted file mode 100644
index 8902a64..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hevc.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,11l-1,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l1,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l0,-2l-4,0l0,6l4,0l0,-2l-1.5,0l0,0.5l-1,0l0,-3l1,0l0,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,13.5l-0.75,-4.5l-1.5,0l1,6l2.5,0l1,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9l0,6l3.5,0l0,-1.5l-2,0l0,-1l2,0l0,-1.5l-2,0l0,-0.5l2,0l0,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hexagon.xml b/compose/material/material/icons/generator/raw-icons/sharp/hexagon.xml
deleted file mode 100644
index 63103a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hexagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2,3l-10.4,0l-5.2,9l5.2,9l10.4,0l5.2,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hide_image.xml b/compose/material/material/icons/generator/raw-icons/sharp/hide_image.xml
deleted file mode 100644
index 4fe4e89..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hide_image.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3l-15.17,0l15.17,15.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L3,5.83V21h15.17l1.61,1.61l1.41,-1.41L2.81,2.81zM6,17l3,-4l2.25,3l0.82,-1.1l2.1,2.1H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hide_source.xml b/compose/material/material/icons/generator/raw-icons/sharp/hide_source.xml
deleted file mode 100644
index b502aac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hide_source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l10.94,10.94C14.86,19.59 13.48,20 12,20zM7.94,5.12L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8C10.52,4 9.14,4.41 7.94,5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/high_quality.xml b/compose/material/material/icons/generator/raw-icons/sharp/high_quality.xml
deleted file mode 100644
index f816bd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/high_quality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4v16h18L21,4zM11,15L9.5,15v-2h-2v2L6,15L6,9h1.5v2.5h2L9.5,9L11,9v6zM18,15h-1.75v1.5h-1.5L14.75,15L13,15L13,9h5v6zM14.5,13.5h2v-3h-2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/highlight.xml b/compose/material/material/icons/generator/raw-icons/sharp/highlight.xml
deleted file mode 100644
index 13b3f01..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/highlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14l3,3v5h6v-5l3,-3L18,9L6,9v5zM11,2h2v3h-2L11,2zM3.5,5.88l1.41,-1.41 2.12,2.12L5.62,8 3.5,5.88zM16.96,6.59l2.12,-2.12 1.41,1.41L18.38,8l-1.42,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/highlight_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/highlight_alt.xml
deleted file mode 100644
index 96f35ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/highlight_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5h-2V3h2V5zM19,3v2h2V3H19zM19,9h2V7h-2V9zM19,13h2v-2h-2V13zM11,21h2v-2h-2V21zM7,5h2V3H7V5zM3,5h2V3H3V5zM3,17h2v-2H3V17zM3,21h2v-2H3V21zM11,5h2V3h-2V5zM3,9h2V7H3V9zM7,21h2v-2H7V21zM3,13h2v-2H3V13zM15,15v6l2.29,-2.29L19.59,21L21,19.59l-2.29,-2.29L21,15H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/highlight_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/highlight_off.xml
deleted file mode 100644
index 6a21d0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/highlight_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,8L12,10.59 9.41,8 8,9.41 10.59,12 8,14.59 9.41,16 12,13.41 14.59,16 16,14.59 13.41,12 16,9.41 14.59,8zM12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hiking.xml b/compose/material/material/icons/generator/raw-icons/sharp/hiking.xml
deleted file mode 100644
index cdc6e2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hiking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM17.5,10.78c-1.23,-0.37 -2.22,-1.17 -2.8,-2.18l-1,-1.6c-0.41,-0.65 -1.11,-1 -1.84,-1c-0.78,0 -1.59,0.5 -1.78,1.44S7,23 7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3c1,1.15 2.41,2.01 4,2.34V23H19V9h-1.5L17.5,10.78zM7.43,13.13l-3.1,-0.6l1.34,-6.87l3.13,0.61L7.43,13.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/history.xml b/compose/material/material/icons/generator/raw-icons/sharp/history.xml
deleted file mode 100644
index 6c76321..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.25,2.52 0.77,-1.29 -3.52,-2.09L13.5,8L12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/history_edu.xml b/compose/material/material/icons/generator/raw-icons/sharp/history_edu.xml
deleted file mode 100644
index 9bae096..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/history_edu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v1.38c-0.83,-0.33 -1.72,-0.5 -2.61,-0.5c-1.79,0 -3.58,0.68 -4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86 1.98,1.31 3.11,1.36V15H6v3c0,1.1 0.9,2 2,2h10c1.66,0 3,-1.34 3,-3V4H9zM7.89,10.41V8.26H5.61L4.57,7.22C5.14,7 5.76,6.88 6.39,6.88c1.34,0 2.59,0.52 3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51 -1.19,0.8 -1.92,0.8C8.75,10.75 8.29,10.63 7.89,10.41zM19,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h-6v-2.59c0.57,-0.23 1.1,-0.57 1.56,-1.03l0.2,-0.2L15.59,14H17v-1.41l-6,-5.97V6h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/history_toggle_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/history_toggle_off.xml
deleted file mode 100644
index ece916d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/history_toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.1,19.37l1,1.74c-0.96,0.44 -2.01,0.73 -3.1,0.84v-2.02C13.74,19.84 14.44,19.65 15.1,19.37zM4.07,13H2.05c0.11,1.1 0.4,2.14 0.84,3.1l1.74,-1C4.35,14.44 4.16,13.74 4.07,13zM15.1,4.63l1,-1.74C15.14,2.45 14.1,2.16 13,2.05v2.02C13.74,4.16 14.44,4.35 15.1,4.63zM19.93,11h2.02c-0.11,-1.1 -0.4,-2.14 -0.84,-3.1l-1.74,1C19.65,9.56 19.84,10.26 19.93,11zM8.9,19.37l-1,1.74c0.96,0.44 2.01,0.73 3.1,0.84v-2.02C10.26,19.84 9.56,19.65 8.9,19.37zM11,4.07V2.05c-1.1,0.11 -2.14,0.4 -3.1,0.84l1,1.74C9.56,4.35 10.26,4.16 11,4.07zM18.36,7.17l1.74,-1.01c-0.63,-0.87 -1.4,-1.64 -2.27,-2.27l-1.01,1.74C17.41,6.08 17.92,6.59 18.36,7.17zM4.63,8.9l-1.74,-1C2.45,8.86 2.16,9.9 2.05,11h2.02C4.16,10.26 4.35,9.56 4.63,8.9zM19.93,13c-0.09,0.74 -0.28,1.44 -0.56,2.1l1.74,1c0.44,-0.96 0.73,-2.01 0.84,-3.1H19.93zM16.83,18.36l1.01,1.74c0.87,-0.63 1.64,-1.4 2.27,-2.27l-1.74,-1.01C17.92,17.41 17.41,17.92 16.83,18.36zM7.17,5.64L6.17,3.89C5.29,4.53 4.53,5.29 3.9,6.17l1.74,1.01C6.08,6.59 6.59,6.08 7.17,5.64zM5.64,16.83L3.9,17.83c0.63,0.87 1.4,1.64 2.27,2.27l1.01,-1.74C6.59,17.92 6.08,17.41 5.64,16.83zM13,7h-2v5.41l4.29,4.29l1.41,-1.41L13,11.59V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hive.xml b/compose/material/material/icons/generator/raw-icons/sharp/hive.xml
deleted file mode 100644
index e1a58f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hive.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.79,8l1.8,-3l-1.8,-3l-3.58,0l-1.8,3l1.8,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.21,9l-1.8,3l1.8,3l3.58,0l1.8,-3l-1.8,-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.45,11.51l3.59,0l1.79,-3l-1.79,-3l-3.59,0l-1.8,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.04,12.51l-3.59,0l-1.8,3l1.8,3l3.59,0l1.79,-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.55,11.51l1.8,-3l-1.8,-3l-3.59,0l-1.79,3l1.79,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.55,12.51l-3.59,0l-1.79,3l1.79,3l3.59,0l1.8,-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.21,16l-1.8,3l1.8,3l3.58,0l1.8,-3l-1.8,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hls.xml b/compose/material/material/icons/generator/raw-icons/sharp/hls.xml
deleted file mode 100644
index ac21d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9zM15.5,15h5v-3.5H17v-1h2V11h1.5V9h-5v3.5H19v1h-2V13h-1.5V15zM14,15v-1.5h-2.5V9H10v6H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hls_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/hls_off.xml
deleted file mode 100644
index c5a08e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hls_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.83,15h2.67v-3.5H17v-1h2V11h1.5V9h-5v3.5H19v1h-2V13h-1.17L17.83,15zM8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L12.17,15H10v-2.17L8,10.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/holiday_village.xml b/compose/material/material/icons/generator/raw-icons/sharp/holiday_village.xml
deleted file mode 100644
index 452f33e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/holiday_village.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20V8.35L13.65,4h-2.83L16,9.18V20H18zM22,20V6.69L19.31,4h-2.83L20,7.52V20H22zM8,4l-6,6v10h5v-5h2v5h5V10L8,4zM9,13H7v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/home.xml b/compose/material/material/icons/generator/raw-icons/sharp/home.xml
deleted file mode 100644
index adf10080..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20v-6h4v6h5v-8h3L12,3 2,12h3v8h5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/home_max.xml b/compose/material/material/icons/generator/raw-icons/sharp/home_max.xml
deleted file mode 100644
index d5ec38b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/home_max.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C2.79,5 1,6.79 1,9v5c0,2.21 1.79,4 4,4h2v1h10v-1h2c2.21,0 4,-1.79 4,-4V9C23,6.79 21.21,5 19,5zM21,14c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/home_mini.xml b/compose/material/material/icons/generator/raw-icons/sharp/home_mini.xml
deleted file mode 100644
index 5d9e84e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/home_mini.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5C4.19,5 2,9.48 2,12c0,3.86 3.13,7 6.99,7h6.02c2.69,0 6.99,-2.08 6.99,-7C22,12 22,5 12,5zM12,7c7.64,0 7.99,4.51 8,5H4C4,11.8 4.09,7 12,7zM14.86,17H9.14c-2.1,0 -3.92,-1.24 -4.71,-3h15.15C18.78,15.76 16.96,17 14.86,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/home_repair_service.xml b/compose/material/material/icons/generator/raw-icons/sharp/home_repair_service.xml
deleted file mode 100644
index 69beb03d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/home_repair_service.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16l-2,0l0,-1l-8,0l0,1l-2,0l0,-1l-4,0l0,5l20,0l0,-5l-4,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8V4H7v4H2v6h4v-2h2v2h8v-2h2v2h4V8H17zM9,6h6v2H9V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/home_work.xml b/compose/material/material/icons/generator/raw-icons/sharp/home_work.xml
deleted file mode 100644
index 2ba7ff2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/home_work.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11l0,10l5,0l0,-6l4,0l0,6l5,0l0,-10l-7,-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10zM19,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/horizontal_distribute.xml b/compose/material/material/icons/generator/raw-icons/sharp/horizontal_distribute.xml
deleted file mode 100644
index eb2e40a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/horizontal_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,2h-2v20h2V2zM13.5,7h-3v10h3V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/horizontal_rule.xml b/compose/material/material/icons/generator/raw-icons/sharp/horizontal_rule.xml
deleted file mode 100644
index 765877d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/horizontal_rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11h16v2h-16z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/horizontal_split.xml b/compose/material/material/icons/generator/raw-icons/sharp/horizontal_split.xml
deleted file mode 100644
index 6e718e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/horizontal_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v-6L3,13v6zM3,11h18L21,9L3,9v2zM3,5v2h18L21,5L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hot_tub.xml b/compose/material/material/icons/generator/raw-icons/sharp/hot_tub.xml
deleted file mode 100644
index 5d726a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hot_tub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.15,12c-0.31,-0.22 -0.59,-0.46 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C6.01,9 5,10.01 5,11.25L5,12L2,12v10h20L22,12L11.15,12zM7,20L5,20v-6h2v6zM11,20L9,20v-6h2v6zM15,20h-2v-6h2v6zM19,20h-2v-6h2v6zM18.65,5.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L18,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71zM14.65,5.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L14,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hotel.xml b/compose/material/material/icons/generator/raw-icons/sharp/hotel.xml
deleted file mode 100644
index ca9115c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.66,0 3,-1.34 3,-3S8.66,7 7,7s-3,1.34 -3,3 1.34,3 3,3zM23,7L11,7v7L3,14L3,5L1,5v15h2v-3h18v3h2L23,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hotel_class.xml b/compose/material/material/icons/generator/raw-icons/sharp/hotel_class.xml
deleted file mode 100644
index b2aecb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hotel_class.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.58,10H1l6.17,4.41L4.83,22L11,17.31L17.18,22l-2.35,-7.59L21,10h-7.58L11,2L8.58,10zM21.36,22l-1.86,-6.01L23.68,13h-3.44l-3.08,2.2l1.46,4.72L21.36,22zM17,8l-1.82,-6l-1.04,3.45L14.91,8H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_bottom.xml b/compose/material/material/icons/generator/raw-icons/sharp/hourglass_bottom.xml
deleted file mode 100644
index bab0c3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,22l-0.01,-6L14,12l3.99,-4.01L18,2H6v6l4,4l-4,3.99V22H18zM8,7.5V4h8v3.5l-4,4L8,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/hourglass_disabled.xml
deleted file mode 100644
index 8d66ecc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4l8,0l0,3.5l-2.84,2.84l1.25,1.25l3.59,-3.58l-0.01,-0.01l0.01,0l0,-6l-12,0l0,1.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41,-1.41L2.1,2.1zM16,20H8v-3.5l2.84,-2.84L16,18.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_empty.xml b/compose/material/material/icons/generator/raw-icons/sharp/hourglass_empty.xml
deleted file mode 100644
index 450dbe5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_empty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01L6,16.01L6,22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01L18,8L18,2L6,2zM16,16.5L16,20L8,20v-3.5l4,-4 4,4zM12,11.5l-4,-4L8,4h8v3.5l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_full.xml b/compose/material/material/icons/generator/raw-icons/sharp/hourglass_full.xml
deleted file mode 100644
index 780d2b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01H6V22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01H18V2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_top.xml b/compose/material/material/icons/generator/raw-icons/sharp/hourglass_top.xml
deleted file mode 100644
index b84544b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hourglass_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4,-4l4,-3.99V2H6zM16,16.5V20H8v-3.5l4,-4L16,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/house.xml b/compose/material/material/icons/generator/raw-icons/sharp/house.xml
deleted file mode 100644
index c199d14..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/house.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3zM10,10c0,-1.1 0.9,-2 2,-2s2,0.9 2,2H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/house_siding.xml b/compose/material/material/icons/generator/raw-icons/sharp/house_siding.xml
deleted file mode 100644
index 4bb637b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/house_siding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12zM7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10zM14.57,8H9.43L12,5.69L14.57,8zM7,16v-2h10v2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/houseboat.xml b/compose/material/material/icons/generator/raw-icons/sharp/houseboat.xml
deleted file mode 100644
index 0eb9d8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/houseboat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.95,0 -2.1,1 -3.34,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,16 3.24,17 2,17v2c1.9,0 2.17,-1 3.35,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.08,-1 3.32,-1s1.37,1 3.32,1c1.91,0 2.14,-1 3.33,-1c1.18,0 1.45,1 3.35,1v-2c-1.24,0 -1.38,-1 -3.33,-1c-1.91,0 -2.14,1 -3.33,1C14.1,17 13.95,16 12,16zM20.34,11.34L18.67,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61L7,9.65V13H5.33l-1.66,-1.66l-1.41,1.41L4.5,15h15l2.25,-2.25L20.34,11.34zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/how_to_reg.xml b/compose/material/material/icons/generator/raw-icons/sharp/how_to_reg.xml
deleted file mode 100644
index 6aba5eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/how_to_reg.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17l3,-2.94c-0.39,-0.04 -0.68,-0.06 -1,-0.06 -2.67,0 -8,1.34 -8,4v2h9l-3,-3zM11,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.47,20.5L12,17l1.4,-1.41 2.07,2.08 5.13,-5.17 1.4,1.41 -6.53,6.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/how_to_vote.xml b/compose/material/material/icons/generator/raw-icons/sharp/how_to_vote.xml
deleted file mode 100644
index 36409c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/how_to_vote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h-0.68l-2,2h1.91L19,17L5,17l1.78,-2h2.05l-2,-2L6,13l-3,3v6h18v-6zM19.81,7.96L13.45,1.6 5.68,9.36l6.36,6.36 7.77,-7.76zM13.46,4.41L17,7.95l-4.95,4.95 -3.54,-3.54 4.95,-4.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/html.xml b/compose/material/material/icons/generator/raw-icons/sharp/html.xml
deleted file mode 100644
index a03910f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/html.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9zM18.5,9H12v6h1.5v-4.5h1V14H16v-3.51h1V15h1.5V9zM11,9H6v1.5h1.75V15h1.5v-4.5H11V9zM24,15v-1.5h-2.5V9H20v6H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/http.xml b/compose/material/material/icons/generator/raw-icons/sharp/http.xml
deleted file mode 100644
index de63924..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/http.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,11h-2L2.5,9L1,9v6h1.5v-2.5h2L4.5,15L6,15L6,9L4.5,9v2zM7,10.5h1.5L8.5,15L10,15v-4.5h1.5L11.5,9L7,9v1.5zM12.5,10.5L14,10.5L14,15h1.5v-4.5L17,10.5L17,9h-4.5v1.5zM23,9h-5v6h1.5v-2L23,13L23,9zM21.5,11.5h-2v-1h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/https.xml b/compose/material/material/icons/generator/raw-icons/sharp/https.xml
deleted file mode 100644
index 536af4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/https.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3L17,6.21c0,-2.61 -1.91,-4.94 -4.51,-5.19C9.51,0.74 7,3.08 7,6v2L4,8v14h16L20,8zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM9,8L9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hub.xml b/compose/material/material/icons/generator/raw-icons/sharp/hub.xml
deleted file mode 100644
index fedb1a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.4,18.2C8.78,18.7 9,19.32 9,20c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3c0.44,0 0.85,0.09 1.23,0.26l1.41,-1.77c-0.92,-1.03 -1.29,-2.39 -1.09,-3.69l-2.03,-0.68C4.98,11.95 4.06,12.5 3,12.5c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3c0,0.07 0,0.14 -0.01,0.21l2.03,0.68c0.64,-1.21 1.82,-2.09 3.22,-2.32l0,-2.16C9.96,5.57 9,4.4 9,3c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,1.4 -0.96,2.57 -2.25,2.91v2.16c1.4,0.23 2.58,1.11 3.22,2.32l2.03,-0.68C18,9.64 18,9.57 18,9.5c0,-1.66 1.34,-3 3,-3s3,1.34 3,3s-1.34,3 -3,3c-1.06,0 -1.98,-0.55 -2.52,-1.37l-2.03,0.68c0.2,1.29 -0.16,2.65 -1.09,3.69l1.41,1.77C17.15,17.09 17.56,17 18,17c1.66,0 3,1.34 3,3s-1.34,3 -3,3s-3,-1.34 -3,-3c0,-0.68 0.22,-1.3 0.6,-1.8l-1.41,-1.77c-1.35,0.75 -3.01,0.76 -4.37,0L8.4,18.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/hvac.xml b/compose/material/material/icons/generator/raw-icons/sharp/hvac.xml
deleted file mode 100644
index d66a62f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/hvac.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.56,14h6.89c0.26,-0.45 0.44,-0.96 0.51,-1.5h-7.9C8.12,13.04 8.29,13.55 8.56,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c1.01,0 1.91,-0.39 2.62,-1H9.38C10.09,15.61 10.99,16 12,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-1.01,0 -1.91,0.39 -2.62,1h5.24C13.91,8.39 13.01,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.56,10c-0.26,0.45 -0.44,0.96 -0.51,1.5h7.9c-0.07,-0.54 -0.24,-1.05 -0.51,-1.5H8.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S15.31,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ice_skating.xml b/compose/material/material/icons/generator/raw-icons/sharp/ice_skating.xml
deleted file mode 100644
index 0ee6619..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ice_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,17c0,1.66 -1.34,3 -3,3h-2v-2h3l-0.01,-6l-5.71,-1.43C12.4,10.35 11.7,9.76 11.32,9H8V8h3.02L11,7H8V6h3V3H3v15h3v2H2v2h16c2.76,0 5,-2.24 5,-5H21zM14,20H8v-2h6V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/icecream.xml b/compose/material/material/icons/generator/raw-icons/sharp/icecream.xml
deleted file mode 100644
index b69fa26..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/icecream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.38,6.24C17.79,3.24 15.14,1 12,1S6.21,3.24 5.62,6.24C4.08,6.81 3,8.29 3,10c0,2.21 1.79,4 4,4c0.12,0 0.23,-0.02 0.34,-0.02L12.07,23l4.61,-9.03C16.79,13.98 16.89,14 17,14c2.21,0 4,-1.79 4,-4C21,8.29 19.92,6.81 18.38,6.24zM12.05,18.63l-2.73,-5.21C10.15,13.79 11.06,14 12,14c0.95,0 1.88,-0.21 2.72,-0.6L12.05,18.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/image.xml b/compose/material/material/icons/generator/raw-icons/sharp/image.xml
deleted file mode 100644
index a3d37ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/image.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,21V3H3v18h18zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/image_aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/sharp/image_aspect_ratio.xml
deleted file mode 100644
index 1059dd8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/image_aspect_ratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h-2v2h2v-2zM16,14h-2v2h2v-2zM8,10L6,10v2h2v-2zM12,10h-2v2h2v-2zM22,4L2,4v16h20L22,4zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/image_not_supported.xml b/compose/material/material/icons/generator/raw-icons/sharp/image_not_supported.xml
deleted file mode 100644
index 6e5de6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/image_not_supported.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,21.9l-8.49,-8.49l0,0L3,3l0,0L2.1,2.1L0.69,3.51L3,5.83V21h15.17l2.31,2.31L21.9,21.9zM5,18l3.5,-4.5l2.5,3.01L12.17,15l3,3H5zM21,18.17L5.83,3H21V18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/image_search.xml b/compose/material/material/icons/generator/raw-icons/sharp/image_search.xml
deleted file mode 100644
index 6cdd80d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/image_search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13v7L4,20L4,6h5.02c0.05,-0.71 0.22,-1.38 0.48,-2L2,4v18h18v-7l-2,-2zM16.5,18h-11l2.75,-3.53 1.96,2.36 2.75,-3.54L16.5,18zM19.3,8.89c0.44,-0.7 0.7,-1.51 0.7,-2.39C20,4.01 17.99,2 15.5,2S11,4.01 11,6.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21,13.42 22.42,12 19.3,8.89zM15.5,9C14.12,9 13,7.88 13,6.5S14.12,4 15.5,4 18,5.12 18,6.5 16.88,9 15.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/imagesearch_roller.xml b/compose/material/material/icons/generator/raw-icons/sharp/imagesearch_roller.xml
deleted file mode 100644
index 1636631..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/imagesearch_roller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/import_contacts.xml b/compose/material/material/icons/generator/raw-icons/sharp/import_contacts.xml
deleted file mode 100644
index 72f98a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/import_contacts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.11,-0.35 -2.33,-0.5 -3.5,-0.5 -1.95,0 -4.05,0.4 -5.5,1.5 -1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v15.5C2.45,20.4 4.55,20 6.5,20s4.05,0.4 5.5,1.5c1.45,-1.1 3.55,-1.5 5.5,-1.5 1.17,0 2.39,0.15 3.5,0.5 0.75,0.25 1.4,0.55 2,1L23,6c-0.6,-0.45 -1.25,-0.75 -2,-1zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5 -1.7,0 -4.15,0.65 -5.5,1.5L12,8c1.35,-0.85 3.8,-1.5 5.5,-1.5 1.2,0 2.4,0.15 3.5,0.5v11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/import_export.xml b/compose/material/material/icons/generator/raw-icons/sharp/import_export.xml
deleted file mode 100644
index bc5c0ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/import_export.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3L5,6.99h3L8,14h2L10,6.99h3L9,3zM16,17.01L16,10h-2v7.01h-3L15,21l4,-3.99h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/important_devices.xml b/compose/material/material/icons/generator/raw-icons/sharp/important_devices.xml
deleted file mode 100644
index 05e28fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/important_devices.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,11.01L17,11v11h7V11.01zM23,20h-5v-7h5v7zM22,2H0v16h9v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V2zM11.97,9L11,6l-0.97,3H7l2.47,1.76 -0.94,2.91 2.47,-1.8 2.47,1.8 -0.94,-2.91L15,9h-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/inbox.xml b/compose/material/material/icons/generator/raw-icons/sharp/inbox.xml
deleted file mode 100644
index 9e9b3b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3.01,3v18L21,21L21,3zM19,15h-4c0,1.66 -1.35,3 -3,3s-3,-1.34 -3,-3L5,15L5,5h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/incomplete_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/incomplete_circle.xml
deleted file mode 100644
index e7e6e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/incomplete_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-2.76 1.12,-5.26 2.93,-7.07L12,12V2C17.52,2 22,6.48 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/indeterminate_check_box.xml b/compose/material/material/icons/generator/raw-icons/sharp/indeterminate_check_box.xml
deleted file mode 100644
index 097c6c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/indeterminate_check_box.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM17,13L7,13v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/info.xml b/compose/material/material/icons/generator/raw-icons/sharp/info.xml
deleted file mode 100644
index 17255b7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/info.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-6h2v6zM13,9h-2L11,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/input.xml b/compose/material/material/icons/generator/raw-icons/sharp/input.xml
deleted file mode 100644
index 2bbb074..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/input.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3.01H3c-1.1,0 -2,0.9 -2,2V9h2V4.99h18v14.03H3V15H1v4.01c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98v-14c0,-1.11 -0.9,-2 -2,-2zM11,16l4,-4 -4,-4v3H1v2h10v3zM23,3.01H1V9h2V4.99h18v14.03H3V15H1v5.99h22V3.01zM11,16l4,-4 -4,-4v3H1v2h10v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_chart.xml
deleted file mode 100644
index 74f9be7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_chart_outlined.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_chart_outlined.xml
deleted file mode 100644
index 598f66c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_chart_outlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4zM19,19L5,19L5,5h14v14zM21,3L3,3v18h18L21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_comment.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_comment.xml
deleted file mode 100644
index 6b00e66..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_comment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v16h16l4,4L22,2zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_drive_file.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_drive_file.xml
deleted file mode 100644
index 88af374..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_drive_file.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.01,2L4,22h16V8l-6,-6H4.01zM13,9V3.5L18.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_emoticon.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_emoticon.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_emoticon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_invitation.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_invitation.xml
deleted file mode 100644
index b015c4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_invitation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h-5v5h5v-5zM16,1v2L8,3L8,1L6,1v2L3.01,3v18L21,21L21,3h-3L18,1h-2zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_link.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_link.xml
deleted file mode 100644
index 2c0a73f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9L7,15.1c-1.71,0 -3.1,-1.39 -3.1,-3.1zM8,13h8v-2L8,11v2zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1s-1.39,3.1 -3.1,3.1h-4L13,17h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_page_break.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_page_break.xml
deleted file mode 100644
index a2f4a4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_page_break.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h16v5h-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8l-6,-6H4.01l-0.01,9H20V8zM13,9V3.5L18.5,9H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insert_photo.xml b/compose/material/material/icons/generator/raw-icons/sharp/insert_photo.xml
deleted file mode 100644
index a3d37ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insert_photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,21V3H3v18h18zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/insights.xml b/compose/material/material/icons/generator/raw-icons/sharp/insights.xml
deleted file mode 100644
index 8421a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/insights.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8c-1.45,0 -2.26,1.44 -1.93,2.51l-3.55,3.56c-0.3,-0.09 -0.74,-0.09 -1.04,0l-2.55,-2.55C12.27,10.45 11.46,9 10,9c-1.45,0 -2.27,1.44 -1.93,2.52l-4.56,4.55C2.44,15.74 1,16.55 1,18c0,1.1 0.9,2 2,2c1.45,0 2.26,-1.44 1.93,-2.51l4.55,-4.56c0.3,0.09 0.74,0.09 1.04,0l2.55,2.55C12.73,16.55 13.54,18 15,18c1.45,0 2.27,-1.44 1.93,-2.52l3.56,-3.55C21.56,12.26 23,11.45 23,10C23,8.9 22.1,8 21,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9l0.94,-2.07l2.06,-0.93l-2.06,-0.93l-0.94,-2.07l-0.92,2.07l-2.08,0.93l2.08,0.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,11l0.5,-2l2,-0.5l-2,-0.5l-0.5,-2l-0.5,2l-2,0.5l2,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/install_desktop.xml b/compose/material/material/icons/generator/raw-icons/sharp/install_desktop.xml
deleted file mode 100644
index 42554d4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/install_desktop.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17l-16,0l0,-12l8,0l0,-2l-10,0l0,16l6,0l0,2l8,0l0,-2l6,0l0,-5l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14l5,-5l-1.41,-1.41l-2.59,2.58l0,-7.17l-2,0l0,7.17l-2.59,-2.58l-1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/install_mobile.xml b/compose/material/material/icons/generator/raw-icons/sharp/install_mobile.xml
deleted file mode 100644
index 189e483..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/install_mobile.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18l-10,0l0,-12l7,0l0,-5l-9,0l0,22l14,0l0,-7l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14l5,-5l-1.41,-1.41l-2.59,2.58l0,-7.17l-2,0l0,7.17l-2.59,-2.58l-1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/integration_instructions.xml b/compose/material/material/icons/generator/raw-icons/sharp/integration_instructions.xml
deleted file mode 100644
index 523a763..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/integration_instructions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H3v18h18V3zM11,14.17l-1.41,1.42L6,12l3.59,-3.59L11,9.83L8.83,12L11,14.17zM12,4.25c-0.41,0 -0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75s0.75,0.34 0.75,0.75S12.41,4.25 12,4.25zM14.41,15.59L13,14.17L15.17,12L13,9.83l1.41,-1.42L18,12L14.41,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/interests.xml b/compose/material/material/icons/generator/raw-icons/sharp/interests.xml
deleted file mode 100644
index ab45afd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/interests.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.02,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.23,13 7.02,13zM13,13v8h8v-8H13zM7,2l-5,9h10L7,2zM19.25,2.5c-1.06,0 -1.81,0.56 -2.25,1.17c-0.44,-0.61 -1.19,-1.17 -2.25,-1.17C13.19,2.5 12,3.78 12,5.25c0,2 2.42,3.42 5,5.75c2.58,-2.33 5,-3.75 5,-5.75C22,3.78 20.81,2.5 19.25,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/interpreter_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/interpreter_mode.xml
deleted file mode 100644
index f5c71e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/interpreter_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5v-2.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5V15C22,15.83 21.33,16.5 20.5,16.5zM20,20h1c0,0 0,-1.54 0,-1.54c1.69,-0.24 3,-1.7 3,-3.46h-1c0,1.38 -1.12,2.5 -2.5,2.5S18,16.38 18,15h-1c0,1.76 1.31,3.22 3,3.46C20,18.46 20,20 20,20zM9,12c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4c0.47,0 0.92,0.08 1.34,0.23C9.5,5.26 9,6.57 9,8c0,1.43 0.5,2.74 1.34,3.77C9.92,11.92 9.47,12 9,12zM7.11,13.13C5.79,14.05 5,15.57 5,17.22V20H1v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66C3.85,13.92 5.37,13.37 7.11,13.13zM11,8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S11,10.21 11,8zM18.32,20c-1.67,-0.81 -2.82,-2.52 -2.82,-4.5c0,-0.89 0.23,-1.73 0.64,-2.45C15.77,13.02 15.39,13 15,13c-2.53,0 -4.71,0.7 -6.39,1.56C7.61,15.07 7,16.1 7,17.22V20L18.32,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/inventory.xml b/compose/material/material/icons/generator/raw-icons/sharp/inventory.xml
deleted file mode 100644
index 78e9203..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/inventory.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h2v3h10V5h2v5h2V3h-6.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H3v18h8v-2H5V5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.5l-5.49,5.5l-3.01,-3l-1.5,1.5l4.51,4.5l6.99,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/inventory_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/inventory_2.xml
deleted file mode 100644
index 6dcdd68..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/inventory_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v6.7h1V22h18V8.7h1V2H2zM15,14H9v-2h6V14zM20,7H4V4h16V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/invert_colors.xml b/compose/material/material/icons/generator/raw-icons/sharp/invert_colors.xml
deleted file mode 100644
index 8f0bc38..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/invert_colors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.81L12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.56 0.62,-3.03 1.75,-4.14L12,4.81M6.35,7.56L6.35,7.56C4.9,8.99 4,10.96 4,13.13C4,17.48 7.58,21 12,21c4.42,0 8,-3.52 8,-7.87c0,-2.17 -0.9,-4.14 -2.35,-5.57l0,0L12,2L6.35,7.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/invert_colors_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/invert_colors_off.xml
deleted file mode 100644
index 375722c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/invert_colors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31 -1.6,2.94 -1.6,4.7C4,17.48 7.58,21 12,21c1.75,0 3.36,-0.56 4.67,-1.5l3.1,3.1L21.19,21.19zM12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.19 0.36,-2.32 1.02,-3.28L12,14.83V19zM8.38,5.56L12,2l5.65,5.56l0,0C19.1,8.99 20,10.96 20,13.13c0,1.18 -0.27,2.29 -0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ios_share.xml b/compose/material/material/icons/generator/raw-icons/sharp/ios_share.xml
deleted file mode 100644
index 5558c13..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ios_share.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8l-5,0l0,2l3,0l0,11l-12,0l0,-11l3,0l0,-2l-5,0l0,15l16,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16l2,0l0,-11l3,0l-4,-4l-4,4l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/iron.xml b/compose/material/material/icons/generator/raw-icons/sharp/iron.xml
deleted file mode 100644
index 4a36ff4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/iron.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6v8h-1V7H7v3h2V9h6v2H6c-2.21,0 -4,1.79 -4,4v3h15v-2h3V8h2V6H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/iso.xml b/compose/material/material/icons/generator/raw-icons/sharp/iso.xml
deleted file mode 100644
index 97e1b01..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/iso.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM5.5,7.5h2v-2L9,5.5v2h2L11,9L9,9v2L7.5,11L7.5,9h-2L5.5,7.5zM19,19L5,19L19,5v14zM17,17v-1.5h-5L12,17h5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/javascript.xml b/compose/material/material/icons/generator/raw-icons/sharp/javascript.xml
deleted file mode 100644
index 7cdbda1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/javascript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15v-2h1.5v0.5h2v-1H12V9h5v2h-1.5v-0.5h-2v1H17V15H12zM9,9v4.5H7.5v-1H6V15h4.5V9H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/join_full.xml b/compose/material/material/icons/generator/raw-icons/sharp/join_full.xml
deleted file mode 100644
index ca61971..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/join_full.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c2.8,2.34 3.03,5.53 3.03,6.5c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/join_inner.xml b/compose/material/material/icons/generator/raw-icons/sharp/join_inner.xml
deleted file mode 100644
index 9b7010f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/join_inner.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.04,16.87C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C9.92,17.99 9.43,17.43 9.04,16.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/join_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/join_left.xml
deleted file mode 100644
index d5b460b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/join_left.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/join_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/join_right.xml
deleted file mode 100644
index 111631a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/join_right.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7s-3.14,-7 -7,-7c-0.9,0 -1.75,0.19 -2.53,0.5C16.27,7.84 16.5,11.03 16.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19c0.9,0 1.75,-0.19 2.53,-0.5c-0.61,-0.51 -1.1,-1.07 -1.49,-1.63C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7S4.14,19 8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/kayaking.xml b/compose/material/material/icons/generator/raw-icons/sharp/kayaking.xml
deleted file mode 100644
index 9860090..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/kayaking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM12,5.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,5.5 12,5.5zM24,17.5c0,0 -1.52,0.71 -3.93,1.37c-0.82,-0.23 -1.53,-0.75 -2.07,-1.37c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.54,0.61 -1.25,1.13 -2.07,1.37C1.52,18.21 0,17.5 0,17.5s2.93,-1.36 7.13,-2.08l1.35,-4.17c0.31,-0.95 1.32,-1.47 2.27,-1.16c0.09,0.03 0.19,0.07 0.27,0.11l0,0l2.47,1.3l2.84,-1.5l1.65,-3.71l-0.51,-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87 24,17.5 24,17.5zM15.02,12.96l-1.52,0.8l-1.75,-0.92l-0.71,2.17C11.36,15.01 11.68,15 12,15c0.71,0 1.4,0.03 2.07,0.08L15.02,12.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/kebab_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/kebab_dining.xml
deleted file mode 100644
index 7c3b622..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/kebab_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.75,8H11v5H7.75v1H8.5c1.38,0 2.5,1.12 2.5,2.5S9.88,19 8.5,19H7.75v4h-1.5v-4H5.5C4.12,19 3,17.88 3,16.5S4.12,14 5.5,14h0.75v-1H3V8h3.25V7H5.5C4.12,7 3,5.88 3,4.5S4.12,2 5.5,2h0.75V1h1.5v1H8.5C9.88,2 11,3.12 11,4.5S9.88,7 8.5,7H7.75V8zM17.75,7h0.75C19.88,7 21,5.88 21,4.5S19.88,2 18.5,2h-0.75V1h-1.5v1H15.5C14.12,2 13,3.12 13,4.5S14.12,7 15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5h0.75v4h1.5v-4h0.75c1.38,0 2.5,-1.12 2.5,-2.5S19.88,14 18.5,14h-0.75v-1H21V8h-3.25V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/key.xml b/compose/material/material/icons/generator/raw-icons/sharp/key.xml
deleted file mode 100644
index d8b0448..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10h-8.35C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H13l2,2l2,-2l2,2l4,-4.04L21,10zM7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.65 1.35,-3 3,-3s3,1.35 3,3C10,13.65 8.65,15 7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/key_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/key_off.xml
deleted file mode 100644
index 2318203..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.91,14.09L17,14l2,2l4,-4.04L21,10h-8.17L16.91,14.09zM3.98,6.81C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.21,0 4.15,-1.2 5.18,-2.99l7.59,7.59l1.41,-1.41L2.81,2.81L1.39,4.22L3.98,6.81zM9.91,12.74C9.58,14.03 8.4,15 7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.4 0.97,-2.58 2.26,-2.91L9.91,12.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard.xml
deleted file mode 100644
index fb7cd0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5L2.01,5L2,19h20L22,5zM11,8h2v2h-2L11,8zM11,11h2v2h-2v-2zM8,8h2v2L8,10L8,8zM8,11h2v2L8,13v-2zM7,13L5,13v-2h2v2zM7,10L5,10L5,8h2v2zM16,17L8,17v-2h8v2zM16,13h-2v-2h2v2zM16,10h-2L14,8h2v2zM19,13h-2v-2h2v2zM19,10h-2L17,8h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_alt.xml
deleted file mode 100644
index e59952d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,4H1v17h22V4zM7,12v2H5v-2H7zM5,10V8h2v2H5zM11,12v2H9v-2H11zM9,10V8h2v2H9zM16,16v1H8v-1H16zM15,12v2h-2v-2H15zM13,10V8h2v2H13zM17,14v-2h2v2H17zM19,10h-2V8h2V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_down.xml
deleted file mode 100644
index 884bee1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,8.59L12,13.17l4.59,-4.58L18,10l-6,6 -6,-6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_left.xml
deleted file mode 100644
index 60a7180..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,16.59L10.83,12l4.58,-4.59L14,6l-6,6 6,6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_right.xml
deleted file mode 100644
index 7f7b33e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.59,16.59L13.17,12 8.59,7.41 10,6l6,6 -6,6 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_up.xml
deleted file mode 100644
index bd55228..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_arrow_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,15.41L12,10.83l4.59,4.58L18,14l-6,-6 -6,6 1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_backspace.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_backspace.xml
deleted file mode 100644
index 3c1d665..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11H6.83l3.58,-3.59L9,6l-6,6 6,6 1.41,-1.41L6.83,13H21v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_capslock.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_capslock.xml
deleted file mode 100644
index 519081e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_capslock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.41L16.59,13 18,11.59l-6,-6 -6,6L7.41,13 12,8.41zM6,18h12v-2H6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_command_key.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_command_key.xml
deleted file mode 100644
index ace30b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_command_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,3C15.57,3 14,4.57 14,6.5V8h-4V6.5C10,4.57 8.43,3 6.5,3S3,4.57 3,6.5S4.57,10 6.5,10H8v4H6.5C4.57,14 3,15.57 3,17.5S4.57,21 6.5,21s3.5,-1.57 3.5,-3.5V16h4v1.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S19.43,14 17.5,14H16v-4h1.5c1.93,0 3.5,-1.57 3.5,-3.5S19.43,3 17.5,3L17.5,3zM16,8V6.5C16,5.67 16.67,5 17.5,5S19,5.67 19,6.5S18.33,8 17.5,8H16L16,8zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5V8H6.5L6.5,8zM10,14v-4h4v4H10L10,14zM17.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5V16h1.5c0.83,0 1.5,0.67 1.5,1.5S18.33,19 17.5,19L17.5,19zM6.5,19C5.67,19 5,18.33 5,17.5S5.67,16 6.5,16H8v1.5C8,18.33 7.33,19 6.5,19L6.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_control_key.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_control_key.xml
deleted file mode 100644
index 409e44c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_control_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12l1.41,1.41l5.59,-5.58l5.59,5.58l1.41,-1.41l-7,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_down.xml
deleted file mode 100644
index 985ba4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_down.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.41l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_left.xml
deleted file mode 100644
index b5e455e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_left.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.59,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_right.xml
deleted file mode 100644
index 0a22b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_right.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_up.xml
deleted file mode 100644
index 105da37..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_double_arrow_up.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17.59l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_hide.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_hide.xml
deleted file mode 100644
index 5503ea7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_hide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L2.01,3L2,17h20L22,3zM11,6h2v2h-2L11,6zM11,9h2v2h-2L11,9zM8,6h2v2L8,8L8,6zM8,9h2v2L8,11L8,9zM7,11L5,11L5,9h2v2zM7,8L5,8L5,6h2v2zM16,15L8,15v-2h8v2zM16,11h-2L14,9h2v2zM16,8h-2L14,6h2v2zM19,11h-2L17,9h2v2zM19,8h-2L17,6h2v2zM12,23l4,-4L8,19l4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_option_key.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_option_key.xml
deleted file mode 100644
index 9970f59..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_option_key.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5l-6,0l0,2l4.85,0l6.92,12l6.23,0l0,-2l-5.07,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_return.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_return.xml
deleted file mode 100644
index cdb33b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7v4H5.83l3.58,-3.59L8,6l-6,6 6,6 1.41,-1.41L5.83,13H21V7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_tab.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_tab.xml
deleted file mode 100644
index 4949420..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_tab.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.59,7.41L15.17,11H1v2h14.17l-3.59,3.59L13,18l6,-6 -6,-6 -1.41,1.41zM20,6v12h2V6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_voice.xml b/compose/material/material/icons/generator/raw-icons/sharp/keyboard_voice.xml
deleted file mode 100644
index de0050b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/keyboard_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c1.66,0 2.99,-1.34 2.99,-3L15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6v6c0,1.66 1.34,3 3,3zM17.3,12c0,3 -2.54,5.1 -5.3,5.1S6.7,15 6.7,12L5,12c0,3.42 2.72,6.23 6,6.72L11,22h2v-3.28c3.28,-0.48 6,-3.3 6,-6.72h-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/king_bed.xml b/compose/material/material/icons/generator/raw-icons/sharp/king_bed.xml
deleted file mode 100644
index 979c825..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/king_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V5H4v5H2v7h1.33L4,19h1l0.67,-2h12.67L19,19h1l0.67,-2H22v-7H20zM11,10H6V7h5V10zM18,10h-5V7h5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/kitchen.xml b/compose/material/material/icons/generator/raw-icons/sharp/kitchen.xml
deleted file mode 100644
index d9194c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/kitchen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2.01L4,2v20h16L20,2.01zM18,20L6,20v-9.02h12L18,20zM18,9L6,9L6,4h12v5zM8,5h2v3L8,8L8,5zM8,12h2v5L8,17v-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/kitesurfing.xml b/compose/material/material/icons/generator/raw-icons/sharp/kitesurfing.xml
deleted file mode 100644
index 5337c56..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/kitesurfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S6,4.1 6,3zM20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22zM21,13.28c0,1.44 -2.19,3.62 -5.04,5.58C15.65,18.95 15.33,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.94,0 -1.81,-0.41 -2.49,-0.99c0.46,-0.39 0.96,-0.78 1.49,-1.17L6,13V8c0,-1.1 0.9,-2 2,-2h3c1.38,0 2.63,-0.56 3.54,-1.46l1.41,1.41C14.68,7.21 12.93,8 11,8H9.6l0,3.5h2.8l1.69,1.88c1.95,-0.84 3.77,-1.38 5.06,-1.38C19.99,12 21,12.25 21,13.28zM12.2,14.27l-0.7,-0.77L9,13.6l0.83,2.01C10.42,15.23 11.64,14.55 12.2,14.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/label.xml b/compose/material/material/icons/generator/raw-icons/sharp/label.xml
deleted file mode 100644
index 80681b7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/label.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.03,5L3,5.01v13.98l14.03,0.01L22,12l-4.97,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/label_important.xml b/compose/material/material/icons/generator/raw-icons/sharp/label_important.xml
deleted file mode 100644
index 3354076..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/label_important.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18.99h12.04L21,12l-4.97,-7H4l5,7 -5,6.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/label_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/label_off.xml
deleted file mode 100644
index 12bca4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/label_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4.97,-7H8.66l10.7,10.73zM2,4l1,1v14h14l2,2 1.41,-1.41L3.44,2.62z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lan.xml b/compose/material/material/icons/generator/raw-icons/sharp/lan.xml
deleted file mode 100644
index 6d52813..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,22l8,0l0,-7l-3,0l0,-4l-5,0l0,-2l3,0l0,-7l-8,0l0,7l3,0l0,2l-5,0l0,4l-3,0l0,7l8,0l0,-7l-3,0l0,-2l8,0l0,2l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/landscape.xml b/compose/material/material/icons/generator/raw-icons/sharp/landscape.xml
deleted file mode 100644
index 22347e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-3.75,5 2.85,3.8 -1.6,1.2C9.81,13.75 7,10 7,10l-6,8h22L14,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/landslide.xml b/compose/material/material/icons/generator/raw-icons/sharp/landslide.xml
deleted file mode 100644
index 3a40aed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/landslide.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.47,13.79l-2.58,-1.03l-6.89,2.29l-4,-1.54l0,2.1l4,1.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.57,11.42l-2.57,-3.42l-6,0l0,3.61l4,1.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19.05l-4,-1.33l0,4.28l20,0l-4.97,-6.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6l0,-5l-5,-1l-3,2l0,4l3,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,7l-2.5,2l0,3l2.5,2l4.5,-2l0,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/language.xml b/compose/material/material/icons/generator/raw-icons/sharp/language.xml
deleted file mode 100644
index e745325..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM18.92,8h-2.95c-0.32,-1.25 -0.78,-2.45 -1.38,-3.56 1.84,0.63 3.37,1.91 4.33,3.56zM12,4.04c0.83,1.2 1.48,2.53 1.91,3.96h-3.82c0.43,-1.43 1.08,-2.76 1.91,-3.96zM4.26,14C4.1,13.36 4,12.69 4,12s0.1,-1.36 0.26,-2h3.38c-0.08,0.66 -0.14,1.32 -0.14,2s0.06,1.34 0.14,2L4.26,14zM5.08,16h2.95c0.32,1.25 0.78,2.45 1.38,3.56 -1.84,-0.63 -3.37,-1.9 -4.33,-3.56zM8.03,8L5.08,8c0.96,-1.66 2.49,-2.93 4.33,-3.56C8.81,5.55 8.35,6.75 8.03,8zM12,19.96c-0.83,-1.2 -1.48,-2.53 -1.91,-3.96h3.82c-0.43,1.43 -1.08,2.76 -1.91,3.96zM14.34,14L9.66,14c-0.09,-0.66 -0.16,-1.32 -0.16,-2s0.07,-1.35 0.16,-2h4.68c0.09,0.65 0.16,1.32 0.16,2s-0.07,1.34 -0.16,2zM14.59,19.56c0.6,-1.11 1.06,-2.31 1.38,-3.56h2.95c-0.96,1.65 -2.49,2.93 -4.33,3.56zM16.36,14c0.08,-0.66 0.14,-1.32 0.14,-2s-0.06,-1.34 -0.14,-2h3.38c0.16,0.64 0.26,1.31 0.26,2s-0.1,1.36 -0.26,2h-3.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/laptop.xml b/compose/material/material/icons/generator/raw-icons/sharp/laptop.xml
deleted file mode 100644
index 9100561..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/laptop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l2,-2V4H2v12l2,2H0v2h24v-2H20zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/laptop_chromebook.xml b/compose/material/material/icons/generator/raw-icons/sharp/laptop_chromebook.xml
deleted file mode 100644
index efe55f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/laptop_chromebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18L22,3L2,3v15L0,18v2h24v-2h-2zM14,18h-4v-1h4v1zM20,15L4,15L4,5h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/laptop_mac.xml b/compose/material/material/icons/generator/raw-icons/sharp/laptop_mac.xml
deleted file mode 100644
index 39985bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/laptop_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l1.99,-2L22,3L2,3v13l2,2L0,18v2h24v-2h-4zM4,5h16v11L4,16L4,5zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/laptop_windows.xml b/compose/material/material/icons/generator/raw-icons/sharp/laptop_windows.xml
deleted file mode 100644
index 677f136..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/laptop_windows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18v-1h1.99L22,3H2v14h2v1H0v2h24v-2h-4zM4,5h16v10H4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/last_page.xml b/compose/material/material/icons/generator/raw-icons/sharp/last_page.xml
deleted file mode 100644
index cf1b035..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/last_page.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.59,7.41L10.18,12l-4.59,4.59L7,18l6,-6 -6,-6 -1.41,1.41zM16,6h2v12h-2V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/launch.xml b/compose/material/material/icons/generator/raw-icons/sharp/launch.xml
deleted file mode 100644
index ca400ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/launch.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H3v18h18v-9h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/layers.xml b/compose/material/material/icons/generator/raw-icons/sharp/layers.xml
deleted file mode 100644
index 478fe9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/layers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,18.54l-7.37,-5.73L3,14.07l9,7 9,-7 -1.63,-1.27 -7.38,5.74zM12,16l7.36,-5.73L21,9l-9,-7 -9,7 1.63,1.27L12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/layers_clear.xml b/compose/material/material/icons/generator/raw-icons/sharp/layers_clear.xml
deleted file mode 100644
index b1fbd35..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/layers_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9l-9,-7 -2.59,2.02 7.87,7.87zM21,14.07l-1.63,-1.27 -0.67,0.52 1.43,1.43zM3.41,0.86L2,2.27l4.22,4.22L3,9l9,7 2.1,-1.63 1.42,1.42 -3.53,2.75 -7.37,-5.73L3,14.07l9,7 4.95,-3.85L20.73,21l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/leaderboard.xml b/compose/material/material/icons/generator/raw-icons/sharp/leaderboard.xml
deleted file mode 100644
index 78b2f8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/leaderboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,21H2V9h5.5V21zM14.75,3h-5.5v18h5.5V3zM22,11h-5.5v10H22V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/leak_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/leak_add.xml
deleted file mode 100644
index 975e8fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/leak_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3L3,3v3c1.66,0 3,-1.34 3,-3zM14,3h-2c0,4.97 -4.03,9 -9,9v2c6.08,0 11,-4.93 11,-11zM10,3L8,3c0,2.76 -2.24,5 -5,5v2c3.87,0 7,-3.13 7,-7zM10,21h2c0,-4.97 4.03,-9 9,-9v-2c-6.07,0 -11,4.93 -11,11zM18,21h3v-3c-1.66,0 -3,1.34 -3,3zM14,21h2c0,-2.76 2.24,-5 5,-5v-2c-3.87,0 -7,3.13 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/leak_remove.xml b/compose/material/material/icons/generator/raw-icons/sharp/leak_remove.xml
deleted file mode 100644
index b83ca95..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/leak_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3h-2c0,1.35 -0.31,2.63 -0.84,3.77l1.49,1.49C13.51,6.7 14,4.91 14,3zM21,12v-2c-1.91,0 -3.7,0.49 -5.27,1.35l1.49,1.49c1.15,-0.53 2.43,-0.84 3.78,-0.84zM21,16v-2c-0.79,0 -1.54,0.13 -2.24,0.37l1.68,1.68c0.19,-0.01 0.37,-0.05 0.56,-0.05zM10,3L8,3c0,0.19 -0.04,0.37 -0.06,0.56l1.68,1.68c0.25,-0.7 0.38,-1.46 0.38,-2.24zM4.41,2.86L3,4.27l2.84,2.84C5.03,7.67 4.06,8 3,8v2c1.61,0 3.09,-0.55 4.27,-1.46L8.7,9.97C7.14,11.24 5.16,12 3,12v2c2.72,0 5.2,-0.99 7.11,-2.62l2.51,2.51C10.99,15.81 10,18.29 10,21h2c0,-2.16 0.76,-4.14 2.03,-5.7l1.43,1.43C14.55,17.91 14,19.39 14,21h2c0,-1.06 0.33,-2.03 0.89,-2.84L19.73,21l1.41,-1.41L4.41,2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/leave_bags_at_home.xml b/compose/material/material/icons/generator/raw-icons/sharp/leave_bags_at_home.xml
deleted file mode 100644
index 184efdf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/leave_bags_at_home.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.83,9h0.92v0.92l1.75,1.75V9H16v4.17l3,3V6h-4V2H9v4H8.83L11.83,9zM11,4h2v2h-2V4zM21.19,21.19L2.81,2.81L1.39,4.22L5,7.83V21h2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h1.17l1.61,1.61L21.19,21.19zM8,18v-7.17l1.5,1.5V18H8zM11.25,18v-3.92l1.5,1.5V18H11.25zM14.5,18v-0.67L15.17,18H14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/legend_toggle.xml b/compose/material/material/icons/generator/raw-icons/sharp/legend_toggle.xml
deleted file mode 100644
index ea17c5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/legend_toggle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15H4v-2h16V15zM20,17H4v2h16V17zM15,11l5,-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92,-3.61L15,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lens.xml b/compose/material/material/icons/generator/raw-icons/sharp/lens.xml
deleted file mode 100644
index e45ef6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lens.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lens_blur.xml b/compose/material/material/icons/generator/raw-icons/sharp/lens_blur.xml
deleted file mode 100644
index cb8a385..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lens_blur.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,13 6,13zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,17 6,17zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,9 6,9zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,9.5 3,9.5zM6,5C5.45,5 5,5.45 5,6s0.45,1 1,1s1,-0.45 1,-1S6.55,5 6,5zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5S21.28,9.5 21,9.5s-0.5,0.22 -0.5,0.5S20.72,10.5 21,10.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S13.45,7 14,7zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5S14.28,2.5 14,2.5S13.5,2.72 13.5,3S13.72,3.5 14,3.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,13.5 3,13.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S10.28,20.5 10,20.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5S10.28,2.5 10,2.5S9.5,2.72 9.5,3S9.72,3.5 10,3.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1S9,5.45 9,6S9.45,7 10,7zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,12.5 10,12.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,13 18,13zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,17 18,17zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,9 18,9zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,5 18,5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S21.28,13.5 21,13.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S14.55,17 14,17zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S14.28,20.5 14,20.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,8.5 10,8.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S10.55,17 10,17zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,12.5 14,12.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,8.5 14,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/library_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/library_add.xml
deleted file mode 100644
index f638651..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/library_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v16h16v-2L4,20L4,6zM22,2L6,2v16h16L22,2zM19,11h-4v4h-2v-4L9,11L9,9h4L13,5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/library_add_check.xml b/compose/material/material/icons/generator/raw-icons/sharp/library_add_check.xml
deleted file mode 100644
index 5dfc23a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/library_add_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H6v16h16V2zM12.47,14L9,10.5l1.4,-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14zM4,6H2v16h16v-2H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/library_books.xml b/compose/material/material/icons/generator/raw-icons/sharp/library_books.xml
deleted file mode 100644
index 4934ea3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/library_books.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v16h16v-2L4,20L4,6zM22,2L6,2v16h16L22,2zM19,11L9,11L9,9h10v2zM15,15L9,15v-2h6v2zM19,7L9,7L9,5h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/library_music.xml b/compose/material/material/icons/generator/raw-icons/sharp/library_music.xml
deleted file mode 100644
index 849894d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/library_music.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L6,2v16h16L22,2zM18,7h-3v5.5c0,1.38 -1.12,2.5 -2.5,2.5S10,13.88 10,12.5s1.12,-2.5 2.5,-2.5c0.57,0 1.08,0.19 1.5,0.51L14,5h4v2zM4,6L2,6v16h16v-2L4,20L4,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/light.xml b/compose/material/material/icons/generator/raw-icons/sharp/light.xml
deleted file mode 100644
index eabd34d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/light.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.06V3h-2v3.06C5.87,6.63 2.03,11.51 3.22,17L8,17c0,2.21 1.79,4 4,4s4,-1.79 4,-4l4.78,0C21.97,11.51 18.13,6.63 13,6.06zM12,15H5c0,-3.86 3.14,-7 7,-7s7,3.14 7,7H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/light_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/light_mode.xml
deleted file mode 100644
index a5bfb76..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/light_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7L12,7zM11,1v4h2V1L11,1zM11,19v4h2v-4L11,19zM23,11l-4,0v2l4,0V11zM5,11l-4,0l0,2l4,0L5,11zM16.24,17.66l2.47,2.47l1.41,-1.41l-2.47,-2.47L16.24,17.66zM3.87,5.28l2.47,2.47l1.41,-1.41L5.28,3.87L3.87,5.28zM6.34,16.24l-2.47,2.47l1.41,1.41l2.47,-2.47L6.34,16.24zM18.72,3.87l-2.47,2.47l1.41,1.41l2.47,-2.47L18.72,3.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lightbulb.xml b/compose/material/material/icons/generator/raw-icons/sharp/lightbulb.xml
deleted file mode 100644
index 8b5efb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lightbulb.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4C10,21.1 10.9,22 12,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C7.86,2 4.5,5.36 4.5,9.5c0,3.82 2.66,5.86 3.77,6.5h7.46c1.11,-0.64 3.77,-2.68 3.77,-6.5C19.5,5.36 16.14,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lightbulb_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/lightbulb_circle.xml
deleted file mode 100644
index a4d538a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lightbulb_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,19c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C13.5,18.33 12.83,19 12,19zM15,16.5H9V15h6V16.5zM14.97,14H9.03C7.8,13.09 7,11.64 7,10c0,-2.76 2.24,-5 5,-5s5,2.24 5,5C17,11.64 16.2,13.09 14.97,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/line_axis.xml b/compose/material/material/icons/generator/raw-icons/sharp/line_axis.xml
deleted file mode 100644
index 94bb0ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/line_axis.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.43l-1.41,-1.41l-4.03,4.53l-7.06,-6.55l-7.5,7.51l1.5,1.5l6.14,-6.15l5.59,5.18l-1.73,1.95l-4,-4l-7.5,7.51l1.5,1.5l6,-6.01l4,4l3.19,-3.59l3.9,3.61l1.41,-1.41l-3.98,-3.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/line_style.xml b/compose/material/material/icons/generator/raw-icons/sharp/line_style.xml
deleted file mode 100644
index 4c94c8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/line_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,16h5v-2L3,14v2zM9.5,16h5v-2h-5v2zM16,16h5v-2h-5v2zM3,20h2v-2L3,18v2zM7,20h2v-2L7,18v2zM11,20h2v-2h-2v2zM15,20h2v-2h-2v2zM19,20h2v-2h-2v2zM3,12h8v-2L3,10v2zM13,12h8v-2h-8v2zM3,4v4h18L21,4L3,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/line_weight.xml b/compose/material/material/icons/generator/raw-icons/sharp/line_weight.xml
deleted file mode 100644
index 10b6def..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/line_weight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v-2L3,15v2zM3,20h18v-1L3,19v1zM3,13h18v-3L3,10v3zM3,4v4h18L21,4L3,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/linear_scale.xml b/compose/material/material/icons/generator/raw-icons/sharp/linear_scale.xml
deleted file mode 100644
index 5a85d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/linear_scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5c-1.03,0 -1.9,0.62 -2.29,1.5h-2.92c-0.39,-0.88 -1.26,-1.5 -2.29,-1.5s-1.9,0.62 -2.29,1.5H6.79c-0.39,-0.88 -1.26,-1.5 -2.29,-1.5C3.12,9.5 2,10.62 2,12s1.12,2.5 2.5,2.5c1.03,0 1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5s1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5 1.38,0 2.5,-1.12 2.5,-2.5s-1.12,-2.5 -2.5,-2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/link.xml b/compose/material/material/icons/generator/raw-icons/sharp/link.xml
deleted file mode 100644
index b0cd292..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h-4v2h4c1.65,0 3,1.35 3,3s-1.35,3 -3,3h-4v2h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM11,15L7,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-2zM8,11h8v2L8,13zM17,7h-4v2h4c1.65,0 3,1.35 3,3s-1.35,3 -3,3h-4v2h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM11,15L7,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-2zM8,11h8v2L8,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/link_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/link_off.xml
deleted file mode 100644
index d9d49a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/link_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.39,11L16,12.61V11zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1 0,1.27 -0.77,2.37 -1.87,2.84l1.4,1.4C21.05,15.36 22,13.79 22,12c0,-2.76 -2.24,-5 -5,-5zM2,4.27l3.11,3.11C3.29,8.12 2,9.91 2,12c0,2.76 2.24,5 5,5h4v-1.9H7c-1.71,0 -3.1,-1.39 -3.1,-3.1 0,-1.59 1.21,-2.9 2.76,-3.07L8.73,11H8v2h2.73L13,15.27V17h1.73l4.01,4.01 1.41,-1.41L3.41,2.86 2,4.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/linked_camera.xml b/compose/material/material/icons/generator/raw-icons/sharp/linked_camera.xml
deleted file mode 100644
index a2cdf11..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/linked_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h1.33c0,-1.84 -1.49,-3.33 -3.33,-3.33L16,6c1.11,0 2,0.89 2,2zM20.67,8L22,8c0,-3.31 -2.69,-6 -6,-6v1.33c2.58,0 4.67,2.09 4.67,4.67zM15,7L15,4L9,4L7.17,6L2,6v16h20L22,9h-5c0,-1.1 -0.9,-2 -2,-2zM12,19c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/liquor.xml b/compose/material/material/icons/generator/raw-icons/sharp/liquor.xml
deleted file mode 100644
index 6f70e3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/liquor.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14c0,1.3 0.84,2.4 2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4 9,15.3 9,14V6H3V14zM5,8h2v3H5V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9l-3,-1.01V2h-5v6l-3,1.01V22h11V9zM16,4h1v1h-1V4zM13,10.44l3,-0.98V7h1v2.46l3,0.98V12h-7V10.44zM20,20h-7v-2h7V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/list.xml b/compose/material/material/icons/generator/raw-icons/sharp/list.xml
deleted file mode 100644
index 1104a1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/list_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/list_alt.xml
deleted file mode 100644
index 37f37ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/list_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h6v2h-6zM11,11h6v2h-6zM11,15h6v2h-6zM7,7h2v2L7,9zM7,11h2v2L7,13zM7,15h2v2L7,17zM3,3v18h18L21,3L3,3zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/live_help.xml b/compose/material/material/icons/generator/raw-icons/sharp/live_help.xml
deleted file mode 100644
index 38d3aef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/live_help.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2v18h6l3,3 3,-3h6L21,2zM13,18h-2v-2h2v2zM15.07,10.25l-0.9,0.92C13.45,11.9 13,12.5 13,14h-2v-0.5c0,-1.1 0.45,-2.1 1.17,-2.83l1.24,-1.26c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2L8,8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,0.88 -0.36,1.68 -0.93,2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/live_tv.xml b/compose/material/material/icons/generator/raw-icons/sharp/live_tv.xml
deleted file mode 100644
index edc9f01..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/live_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,6h-9.59l3.29,-3.29L16,2l-4,4 -4,-4 -0.71,0.71L10.59,6L1,6v16h22L23,6zM21,20L3,20L3,8h18v12zM9,10v8l7,-4 -7,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/living.xml b/compose/material/material/icons/generator/raw-icons/sharp/living.xml
deleted file mode 100644
index 1a52781..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/living.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,12l0,2.5l-7,0l0,-2.5l-0.98,0l-1.02,0l0,4.5l11,0l0,-4.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10l0,3l4,0l0,-3l2.25,-0.01l0,-2.49l-8.5,0l0,2.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM19,9.99V18H5v-8l1.25,-0.01V6h11.5v3.99H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_activity.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_activity.xml
deleted file mode 100644
index 42bd2af..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_activity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.1 0.9,-2 2,-2L22,4L2.01,4v6c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v6h20v-6c-1.1,0 -2,-0.9 -2,-2zM15.58,16.8L12,14.5l-3.58,2.3 1.08,-4.12 -3.29,-2.69 4.24,-0.25L12,5.8l1.54,3.95 4.24,0.25 -3.29,2.69 1.09,4.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_airport.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_airport.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_airport.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_atm.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_atm.xml
deleted file mode 100644
index 822217f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v-1h2v-5h-4v-1h4L15,8h-2L13,7h-2v1L9,8v5h4v1L9,14v2h2v1zM22,4L2.01,4L2,20h20L22,4zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_bar.xml
deleted file mode 100644
index 2a55e49..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5V3H3v2l8,9v5H6v2h12v-2h-5v-5l8,-9zM7.43,7L5.66,5h12.69l-1.78,2H7.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_cafe.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_cafe.xml
deleted file mode 100644
index a97e1ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_cafe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3v14h14v-7h2c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,8h-2L18,5h2v3zM2,21h18v-2L2,19v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_car_wash.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_car_wash.xml
deleted file mode 100644
index 3fd4f46..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_car_wash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.58,7L5.43,7L3,14v9h3v-2h12v2h3v-9l-2.42,-7zM6.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,15 6.5,15s1.5,0.67 1.5,1.5S7.33,18 6.5,18zM17.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,13l1.5,-4.5h11L19,13L5,13zM17,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7c0,0.83 0.67,1.5 1.5,1.5zM12,5c0.83,0 1.5,-0.67 1.5,-1.5 0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7c0,0.83 0.67,1.5 1.5,1.5zM7,5c0.83,0 1.5,-0.67 1.5,-1.5C8.5,2.5 7,0.8 7,0.8S5.5,2.5 5.5,3.5C5.5,4.33 6.17,5 7,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_convenience_store.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_convenience_store.xml
deleted file mode 100644
index 5a67b65..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_convenience_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7L19,4L5,4v3L2,7v13h8v-4h4v4h8L22,7h-3zM11,10L9,10v1h2v1L8,12L8,9h2L10,8L8,8L8,7h3v3zM16,12h-1v-2h-2L13,7h1v2h1L15,7h1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_dining.xml
deleted file mode 100644
index 4797566..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_drink.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_drink.xml
deleted file mode 100644
index 77b2fd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_drink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2l2.21,20L18.8,22L21,2L3,2zM12,19c-1.66,0 -3,-1.34 -3,-3 0,-2 3,-5.4 3,-5.4s3,3.4 3,5.4c0,1.66 -1.34,3 -3,3zM18.33,8L5.67,8l-0.44,-4h13.53l-0.43,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_fire_department.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_fire_department.xml
deleted file mode 100644
index 4bc17cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_fire_department.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.9l-2.13,2.09C9.31,15.55 9,16.28 9,17.06C9,18.68 10.35,20 12,20s3,-1.32 3,-2.94c0,-0.78 -0.31,-1.52 -0.87,-2.07L12,12.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l-0.44,0.55C14.38,8.02 12,7.19 12,5.3V2c0,0 -8,4 -8,11c0,2.92 1.56,5.47 3.89,6.86C7.33,19.07 7,18.1 7,17.06c0,-1.32 0.52,-2.56 1.47,-3.5L12,10.1l3.53,3.47c0.95,0.93 1.47,2.17 1.47,3.5c0,1.02 -0.31,1.96 -0.85,2.75c1.89,-1.15 3.29,-3.06 3.71,-5.3C20.52,10.97 18.79,7.62 16,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_florist.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_florist.xml
deleted file mode 100644
index b154a07..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_florist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c4.97,0 9,-4.03 9,-9 -4.97,0 -9,4.03 -9,9zM5.6,10.25c0,1.38 1.12,2.5 2.5,2.5 0.53,0 1.01,-0.16 1.42,-0.44l-0.02,0.19c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5l-0.02,-0.19c0.4,0.28 0.89,0.44 1.42,0.44 1.38,0 2.5,-1.12 2.5,-2.5 0,-1 -0.59,-1.85 -1.43,-2.25 0.84,-0.4 1.43,-1.25 1.43,-2.25 0,-1.38 -1.12,-2.5 -2.5,-2.5 -0.53,0 -1.01,0.16 -1.42,0.44l0.02,-0.19C14.5,2.12 13.38,1 12,1S9.5,2.12 9.5,3.5l0.02,0.19c-0.4,-0.28 -0.89,-0.44 -1.42,-0.44 -1.38,0 -2.5,1.12 -2.5,2.5 0,1 0.59,1.85 1.43,2.25 -0.84,0.4 -1.43,1.25 -1.43,2.25zM12,5.5c1.38,0 2.5,1.12 2.5,2.5s-1.12,2.5 -2.5,2.5S9.5,9.38 9.5,8s1.12,-2.5 2.5,-2.5zM3,13c0,4.97 4.03,9 9,9 0,-4.97 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_gas_station.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_gas_station.xml
deleted file mode 100644
index 4f1fe77..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_gas_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,7.23l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-1.05,0.4 -1.76,1.47 -1.58,2.71 0.16,1.1 1.1,1.99 2.2,2.11 0.47,0.05 0.88,-0.03 1.27,-0.2v8.21h-2L17,12h-3L14,3L4,3v18h10v-7.5h1.5v7.49h5L20.5,9c0,-0.69 -0.28,-1.32 -0.73,-1.77zM12,10L6,10L6,5h6v5zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_grocery_store.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_grocery_store.xml
deleted file mode 100644
index 1a1fbca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_grocery_store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM1,4h2l3.6,7.59L3.62,17L19,17v-2L7,15l1.1,-2h8.64l4.97,-9L5.21,4l-0.94,-2L1,2v2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_hospital.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_hospital.xml
deleted file mode 100644
index 0daddb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_hospital.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3.01,3L3,21h18L21,3zM18,14h-4v4h-4v-4L6,14v-4h4L10,6h4v4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_hotel.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_hotel.xml
deleted file mode 100644
index ca9115c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_hotel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13c1.66,0 3,-1.34 3,-3S8.66,7 7,7s-3,1.34 -3,3 1.34,3 3,3zM23,7L11,7v7L3,14L3,5L1,5v15h2v-3h18v3h2L23,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_laundry_service.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_laundry_service.xml
deleted file mode 100644
index e1f7a1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_laundry_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,16.83c1.56,1.56 4.1,1.56 5.66,0s1.56,-4.1 0,-5.66l-5.66,5.66zM20,2.01L4,2v20h16L20,2.01zM10,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM7,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,20c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_library.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_library.xml
deleted file mode 100644
index 95df0ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11.55C9.64,9.35 6.48,8 3,8v11c3.48,0 6.64,1.35 9,3.55 2.36,-2.19 5.52,-3.55 9,-3.55V8c-3.48,0 -6.64,1.35 -9,3.55zM12,8c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3 1.34,3 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_mall.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_mall.xml
deleted file mode 100644
index 1edd655..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_mall.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-4c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6L3,6v16h18L21,6zM12,3c1.66,0 3,1.34 3,3L9,6c0,-1.66 1.34,-3 3,-3zM12,13c-2.76,0 -5,-2.24 -5,-5h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2c0,2.76 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_movies.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_movies.xml
deleted file mode 100644
index afcfb9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_movies.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2L20,3h-2zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_offer.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_offer.xml
deleted file mode 100644
index cec8f4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_offer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.83,12.99L11.83,2H2v9.83l10.99,10.99 9.84,-9.83zM5.5,7C4.67,7 4,6.33 4,5.5S4.67,4 5.5,4 7,4.67 7,5.5 6.33,7 5.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_parking.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_parking.xml
deleted file mode 100644
index 01605cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_parking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3L6,3v18h4v-6h3c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM13.2,11L10,11L10,7h3.2c1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_pharmacy.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_pharmacy.xml
deleted file mode 100644
index de50022..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_pharmacy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5h-2.64l1.14,-3.14L17.15,1l-1.46,4L3,5v2l2,6 -2,6v2h18v-2l-2,-6 2,-6L21,5zM16,14h-3v3h-2v-3L8,14v-2h3L11,9h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_phone.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_phone.xml
deleted file mode 100644
index f528e5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15.46l-5.27,-0.61 -2.52,2.52c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3H3.03C2.45,13.18 10.82,21.55 21,20.97v-5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_pizza.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_pizza.xml
deleted file mode 100644
index 625d67b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_pizza.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.43,2 5.23,3.54 3.01,6L12,22l8.99,-16C18.78,3.55 15.57,2 12,2zM7,7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2zM12,15c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_play.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_play.xml
deleted file mode 100644
index 42bd2af..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.1 0.9,-2 2,-2L22,4L2.01,4v6c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v6h20v-6c-1.1,0 -2,-0.9 -2,-2zM15.58,16.8L12,14.5l-3.58,2.3 1.08,-4.12 -3.29,-2.69 4.24,-0.25L12,5.8l1.54,3.95 4.24,0.25 -3.29,2.69 1.09,4.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_police.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_police.xml
deleted file mode 100644
index 39ad854..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_police.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9,-3.87l-3,-2.59l3.96,-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59zM3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5l-9,-4L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_post_office.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_post_office.xml
deleted file mode 100644
index 8a141a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_post_office.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2.01,4v16L22,20L22,4zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_printshop.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_printshop.xml
deleted file mode 100644
index b43fe77..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_printshop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,8v9h4v4h12v-4h4L22,8L2,8zM16,19L8,19v-5h8v5zM19,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,3L6,3v4h12L18,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_see.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_see.xml
deleted file mode 100644
index 7555a02..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_see.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4h-5.17L15,2H9L7.17,4H2v16h20V4zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_shipping.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_shipping.xml
deleted file mode 100644
index f6ae269..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_shipping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3L17,4L1,4v13h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2v-5l-3,-4zM6,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM19.5,9.5l1.96,2.5L17,12L17,9.5h2.5zM18,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/local_taxi.xml b/compose/material/material/icons/generator/raw-icons/sharp/local_taxi.xml
deleted file mode 100644
index 6c68914..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/local_taxi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.58,5L15,5L15,3L9,3v2L5.43,5L3,12v9h3v-2h12v2h3v-9l-2.42,-7zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.5,-4.5h11L19,11L5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/location_city.xml b/compose/material/material/icons/generator/raw-icons/sharp/location_city.xml
deleted file mode 100644
index de6615f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/location_city.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11L15,5l-3,-3 -3,3v2L3,7v14h18L21,11h-6zM7,19L5,19v-2h2v2zM7,15L5,15v-2h2v2zM7,11L5,11L5,9h2v2zM13,19h-2v-2h2v2zM13,15h-2v-2h2v2zM13,11h-2L11,9h2v2zM13,7h-2L11,5h2v2zM19,19h-2v-2h2v2zM19,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/location_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/location_disabled.xml
deleted file mode 100644
index d9b464a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/location_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,13v-2h-2.06c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77H23zM4.41,2.86L3,4.27l2.04,2.04C3.97,7.62 3.26,9.23 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21l1.41,-1.41L4.41,2.86zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81C15.09,18.45 13.61,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/location_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/location_off.xml
deleted file mode 100644
index 5e584fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/location_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.41,2.86L2,4.27l3.18,3.18C5.07,7.95 5,8.47 5,9c0,5.25 7,13 7,13s1.67,-1.85 3.38,-4.35L18.73,21l1.41,-1.41L3.41,2.86zM12,2c-1.84,0 -3.5,0.71 -4.75,1.86l3.19,3.19c0.43,-0.34 0.97,-0.55 1.56,-0.55 1.38,0 2.5,1.12 2.5,2.5 0,0.59 -0.21,1.13 -0.56,1.56l3.55,3.55C18.37,12.36 19,10.57 19,9c0,-3.87 -3.13,-7 -7,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/location_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/location_on.xml
deleted file mode 100644
index e6dfeb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/location_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/location_searching.xml b/compose/material/material/icons/generator/raw-icons/sharp/location_searching.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/location_searching.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lock.xml b/compose/material/material/icons/generator/raw-icons/sharp/lock.xml
deleted file mode 100644
index 536af4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3L17,6.21c0,-2.61 -1.91,-4.94 -4.51,-5.19C9.51,0.74 7,3.08 7,6v2L4,8v14h16L20,8zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM9,8L9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lock_clock.xml b/compose/material/material/icons/generator/raw-icons/sharp/lock_clock.xml
deleted file mode 100644
index 8470336..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lock_clock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.7,0 1.37,0.1 2,0.29V8h-3V6.21c0,-2.61 -1.91,-4.94 -4.51,-5.19C9.51,0.74 7,3.08 7,6v2H4v14h8.26C11.47,20.87 11,19.49 11,18C11,14.13 14.13,11 18,11zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2H9V6zM18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lock_open.xml b/compose/material/material/icons/generator/raw-icons/sharp/lock_open.xml
deleted file mode 100644
index 6497429..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lock_open.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3L17,6.21c0,-2.61 -1.91,-4.94 -4.51,-5.19C9.51,0.74 7,3.08 7,6h2c0,-1.13 0.6,-2.24 1.64,-2.7C12.85,2.31 15,3.9 15,6v2L4,8v14h16L20,8zM18,20L6,20L6,10h12v10zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lock_person.xml b/compose/material/material/icons/generator/raw-icons/sharp/lock_person.xml
deleted file mode 100644
index 5ecd14f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lock_person.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.43,11.18c1.26,-0.29 2.47,-0.21 3.57,0.12V8h-3V6.22c0,-2.61 -1.91,-4.94 -4.51,-5.19C9.51,0.74 7,3.08 7,6v2H4v14h8.26c-1.01,-1.45 -1.5,-3.3 -1.15,-5.27C11.6,14 13.74,11.79 16.43,11.18zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2H8.9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM18,15c0.83,0 1.5,0.67 1.5,1.5S18.83,18 18,18s-1.5,-0.67 -1.5,-1.5S17.17,15 18,15zM18,21c-1.03,0 -1.94,-0.52 -2.48,-1.32C16.25,19.26 17.09,19 18,19s1.75,0.26 2.48,0.68C19.94,20.48 19.03,21 18,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lock_reset.xml b/compose/material/material/icons/generator/raw-icons/sharp/lock_reset.xml
deleted file mode 100644
index fd35c51..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lock_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9H1l4,4l4,-4H6c0,-3.86 3.14,-7 7,-7s7,3.14 7,7s-3.14,7 -7,7c-1.9,0 -3.62,-0.76 -4.88,-1.99L6.7,18.42C8.32,20.01 10.55,21 13,21c4.97,0 9,-4.03 9,-9S17.97,3 13,3zM15,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1h-1v5h6v-5H15zM14,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/login.xml b/compose/material/material/icons/generator/raw-icons/sharp/login.xml
deleted file mode 100644
index db41fe7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/login.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5,-5L11,7zM20,19h-8v2h10V3H12v2h8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/logo_dev.xml b/compose/material/material/icons/generator/raw-icons/sharp/logo_dev.xml
deleted file mode 100644
index 8659d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/logo_dev.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.68,14.98H6V9h1.71c1.28,0 1.71,1.03 1.71,1.71l0,2.56C9.42,13.95 9,14.98 7.68,14.98zM12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25c-0.4,0.01 -0.74,-0.31 -0.75,-0.71V9.75c-0.01,-0.4 0.31,-0.74 0.71,-0.75h2.28l0,1.07h-1.92v1.39H12.38zM16.88,14.23c-0.48,1.11 -1.33,0.89 -1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,10.12H7.14v3.77h0.63c0.14,0 0.28,-0.05 0.42,-0.16c0.14,-0.1 0.21,-0.26 0.21,-0.47v-2.52c0,-0.21 -0.07,-0.37 -0.21,-0.47C8.05,10.17 7.91,10.12 7.77,10.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/logout.xml b/compose/material/material/icons/generator/raw-icons/sharp/logout.xml
deleted file mode 100644
index 18bec83..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/logout.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5l7,0l0,-2l-9,0l0,18l9,0l0,-2l-7,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12l-4,-4l0,3l-8,0l0,2l8,0l0,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/looks.xml b/compose/material/material/icons/generator/raw-icons/sharp/looks.xml
deleted file mode 100644
index 8cb77cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/looks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c-3.86,0 -7,3.14 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.86 -3.14,-7 -7,-7zM12,6C5.93,6 1,10.93 1,17h2c0,-4.96 4.04,-9 9,-9s9,4.04 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/looks_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/looks_3.xml
deleted file mode 100644
index 6739ac1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/looks_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3.01,3v18L21,21L21,3zM15.01,17L9,17v-2h4v-2h-2v-2h2L13,9L9,9L9,7h6.01v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/looks_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/looks_4.xml
deleted file mode 100644
index 1a43711..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/looks_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.04,3h-18v18h18L21.04,3zM15.04,17h-2v-4h-4L9.04,7h2v4h2L13.04,7h2v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/looks_5.xml b/compose/material/material/icons/generator/raw-icons/sharp/looks_5.xml
deleted file mode 100644
index df8369a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/looks_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM15,9h-4v2h4v6L9,17v-2h4v-2L9,13L9,7h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/looks_6.xml b/compose/material/material/icons/generator/raw-icons/sharp/looks_6.xml
deleted file mode 100644
index ae5ddb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/looks_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v-2h-2v2zM21,3L3,3v18h18L21,3zM15,9h-4v2h4v6L9,17L9,7h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/looks_one.xml b/compose/material/material/icons/generator/raw-icons/sharp/looks_one.xml
deleted file mode 100644
index 6bf121d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/looks_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM14,17h-2L12,9h-2L10,7h4v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/looks_two.xml b/compose/material/material/icons/generator/raw-icons/sharp/looks_two.xml
deleted file mode 100644
index a9deea7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/looks_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM15,13h-4v2h4v2L9,17v-6h4L13,9L9,9L9,7h6v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/loop.xml b/compose/material/material/icons/generator/raw-icons/sharp/loop.xml
deleted file mode 100644
index c2f773a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/loop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,1L8,5l4,4L12,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46C19.54,15.03 20,13.57 20,12c0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.24,7.74C4.46,8.97 4,10.43 4,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/loupe.xml b/compose/material/material/icons/generator/raw-icons/sharp/loupe.xml
deleted file mode 100644
index 192d433..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/loupe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4L13,7zM12.73,2.03c-6.08,-0.44 -11.14,4.62 -10.7,10.7 0.38,5.28 5,9.27 10.29,9.27L22,22v-9.68c0,-5.3 -3.98,-9.91 -9.27,-10.29zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/low_priority.xml b/compose/material/material/icons/generator/raw-icons/sharp/low_priority.xml
deleted file mode 100644
index a7792fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/low_priority.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5h8v2h-8L14,5zM14,10.5h8v2h-8v-2zM14,16h8v2h-8v-2zM2,11.5C2,15.08 4.92,18 8.5,18L9,18v2l3,-3 -3,-3v2h-0.5C6.02,16 4,13.98 4,11.5S6.02,7 8.5,7L12,7L12,5L8.5,5C4.92,5 2,7.92 2,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/loyalty.xml b/compose/material/material/icons/generator/raw-icons/sharp/loyalty.xml
deleted file mode 100644
index 206026d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/loyalty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.83,2H2v9.83l10.99,11s1.05,-1.05 1.41,-1.42L22.82,13 11.83,2zM5.5,7C4.67,7 4,6.33 4,5.5S4.67,4 5.5,4 7,4.67 7,5.5 6.33,7 5.5,7zM13,19.54l-4.27,-4.27C8.28,14.81 8,14.19 8,13.5c0,-1.38 1.12,-2.5 2.5,-2.5 0.69,0 1.32,0.28 1.77,0.74l0.73,0.72 0.73,-0.73c0.45,-0.45 1.08,-0.73 1.77,-0.73 1.38,0 2.5,1.12 2.5,2.5 0,0.69 -0.28,1.32 -0.73,1.77L13,19.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lte_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/lte_mobiledata.xml
deleted file mode 100644
index 7fc5c97..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lte_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14h3v2H4V8h2V14zM9,10h2v6h2v-6h2V8H9V10zM21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lte_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/lte_plus_mobiledata.xml
deleted file mode 100644
index 64fd585..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lte_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h3v2H1V8h2V14zM5,10h2v6h2v-6h2V8H5V10zM12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/luggage.xml b/compose/material/material/icons/generator/raw-icons/sharp/luggage.xml
deleted file mode 100644
index 66daa82..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-4V2H9v4H5v15h2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h2V6zM9.5,18H8V9h1.5V18zM12.75,18h-1.5V9h1.5V18zM13.5,6h-3V3.5h3V6zM16,18h-1.5V9H16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lunch_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/lunch_dining.xml
deleted file mode 100644
index 6e1b502..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lunch_dining.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16h20v5h-20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.66,11.5c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1v2c1.9,0 2.17,-1 3.35,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.32,1l-0.01,-1.98C20.38,12.19 20.37,11.5 18.66,11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9c0.02,-4 -4.28,-6 -10,-6C6.29,3 2,5 2,9v1h20L22,9L22,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/lyrics.xml b/compose/material/material/icons/generator/raw-icons/sharp/lyrics.xml
deleted file mode 100644
index 6ae0343..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/lyrics.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9c0,-2.04 1.24,-3.79 3,-4.57V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9c1.1,0 2,-0.9 2,-2v-2.42C15.24,12.8 14,11.05 14,9zM10,14H6v-2h4V14zM13,11H6V9h7V11zM13,8H6V6h7V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.18C19.69,6.07 19.35,6 19,6c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3V3h2V1h-4V6.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/macro_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/macro_off.xml
deleted file mode 100644
index bae1caf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/macro_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,17.15C20.63,15.91 21,14.5 21,13c-1.5,0 -2.91,0.37 -4.15,1.02L19.98,17.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,4.97 4.03,9 9,9C12,17.03 7.97,13 3,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5c1.38,0 2.5,1.12 2.5,2.5c0,0.99 -0.58,1.84 -1.42,2.25l2.48,2.48c0.11,0.02 0.23,0.03 0.35,0.03c1.38,0 2.5,-1.12 2.5,-2.5c0,-1 -0.59,-1.85 -1.43,-2.25c0.84,-0.4 1.43,-1.25 1.43,-2.25c0,-1.38 -1.12,-2.5 -2.5,-2.5c-0.53,0 -1.01,0.16 -1.42,0.44L14.5,3.5C14.5,2.12 13.38,1 12,1S9.5,2.12 9.5,3.5l0.02,0.19C9.12,3.41 8.63,3.25 8.1,3.25c-0.57,0 -1.09,0.2 -1.51,0.52l3.16,3.16C10.16,6.08 11.01,5.5 12,5.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.64,4.64C5.76,9.26 5.6,9.73 5.6,10.25c0,1.38 1.12,2.5 2.5,2.5c0.52,0 0.99,-0.16 1.4,-0.43l0.02,0.02L9.5,12.5c0,1.38 1.12,2.5 2.5,2.5c0.05,0 0.1,-0.01 0.16,-0.02l1.64,1.64C12.67,18.12 12,19.98 12,22c2.02,0 3.88,-0.67 5.38,-1.8l2.4,2.4l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mail.xml b/compose/material/material/icons/generator/raw-icons/sharp/mail.xml
deleted file mode 100644
index 56ccd32..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2,4v16h20L22,4zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mail_lock.xml b/compose/material/material/icons/generator/raw-icons/sharp/mail_lock.xml
deleted file mode 100644
index 75bf655..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mail_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.97V4H2.01L2,20h14v-5.03c0,-2.76 2.24,-5 5,-5H22zM20,8l-8,5L4,8V6l8,5l8,-5V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15v-0.89c0,-1 -0.68,-1.92 -1.66,-2.08C20.08,11.82 19,12.79 19,14v1h-1v5h6v-5H23zM22,15h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mail_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/mail_outline.xml
deleted file mode 100644
index d044a20..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mail_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2.01,4L2,20h20L22,4zM20,18L4,18L4,8l8,5 8,-5v10zM12,11L4,6h16l-8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/male.xml b/compose/material/material/icons/generator/raw-icons/sharp/male.xml
deleted file mode 100644
index ac67026..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/male.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,11c1.93,0 3.5,1.57 3.5,3.5S11.43,18 9.5,18S6,16.43 6,14.5S7.57,11 9.5,11zM9.5,9C6.46,9 4,11.46 4,14.5S6.46,20 9.5,20s5.5,-2.46 5.5,-5.5c0,-1.16 -0.36,-2.23 -0.97,-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36 10.66,9 9.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/man.xml b/compose/material/material/icons/generator/raw-icons/sharp/man.xml
deleted file mode 100644
index 98a1499..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/man.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l-8,0l0,8l2,0l0,7l4,0l0,-7l2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/man_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/man_2.xml
deleted file mode 100644
index 1ac323f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/man_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l-8,0l0,8l2.5,0l0,7l3,0l0,-7l2.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/man_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/man_3.xml
deleted file mode 100644
index 5a56373..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/man_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l-8,0l0,8l2,0l0,7l4,0l0,-7l2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1.751l2.249,2.249l-2.249,2.249l-2.249,-2.249z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/man_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/man_4.xml
deleted file mode 100644
index 22afb5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/man_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.96,7l2.04,15l4,0l2.04,-15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/manage_accounts.xml b/compose/material/material/icons/generator/raw-icons/sharp/manage_accounts.xml
deleted file mode 100644
index bd74033..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/manage_accounts.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,13.02C10.45,13.01 10.23,13 10,13c-2.42,0 -4.68,0.67 -6.61,1.82C2.51,15.34 2,16.32 2,17.35V20h9.26C10.47,18.87 10,17.49 10,16C10,14.93 10.25,13.93 10.67,13.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0,-0.22 -0.03,-0.42 -0.06,-0.63l1.14,-1.01l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L18,11h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1.01c-0.03,0.21 -0.06,0.41 -0.06,0.63s0.03,0.42 0.06,0.63l-1.14,1.01l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L16,21h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1.01C20.72,16.42 20.75,16.22 20.75,16zM17,18c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S18.1,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/manage_history.xml b/compose/material/material/icons/generator/raw-icons/sharp/manage_history.xml
deleted file mode 100644
index 8fd7758..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/manage_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.69,18.37l1.14,-1l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L20,14h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.08,0.5 -0.08,0.76 0,1.26l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L18,24h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1C22.77,19.13 22.77,18.87 22.69,18.37zM19,21c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S20.1,21 19,21zM11,7v5.41l2.36,2.36l1.04,-1.79L13,11.59V7H11zM21,12c0,-4.97 -4.03,-9 -9,-9C9.17,3 6.65,4.32 5,6.36V4H3v6h6V8H6.26C7.53,6.19 9.63,5 12,5c3.86,0 7,3.14 7,7H21zM10.86,18.91C7.87,18.42 5.51,16.01 5.08,13H3.06c0.5,4.5 4.31,8 8.94,8c0.02,0 0.05,0 0.07,0L10.86,18.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/manage_search.xml b/compose/material/material/icons/generator/raw-icons/sharp/manage_search.xml
deleted file mode 100644
index 44aed15..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/manage_search.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9H2V7h5V9zM7,12H2v2h5V12zM20.59,19l-3.83,-3.83C15.96,15.69 15.02,16 14,16c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5c0,1.02 -0.31,1.96 -0.83,2.75L22,17.59L20.59,19zM17,11c0,-1.65 -1.35,-3 -3,-3s-3,1.35 -3,3s1.35,3 3,3S17,12.65 17,11zM2,19h10v-2H2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/map.xml b/compose/material/material/icons/generator/raw-icons/sharp/map.xml
deleted file mode 100644
index c204d49..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5.1L9,3 3,5.02v16.2l6,-2.33 6,2.1 6,-2.02L21,2.77L15,5.1zM15,18.89l-6,-2.11L9,5.11l6,2.11v11.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/maps_home_work.xml b/compose/material/material/icons/generator/raw-icons/sharp/maps_home_work.xml
deleted file mode 100644
index 2ba7ff2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/maps_home_work.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11l0,10l5,0l0,-6l4,0l0,6l5,0l0,-10l-7,-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10zM19,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/maps_ugc.xml b/compose/material/material/icons/generator/raw-icons/sharp/maps_ugc.xml
deleted file mode 100644
index ef44980..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/maps_ugc.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8c-1.18,0 -2.34,-0.26 -3.43,-0.78c-0.27,-0.13 -0.56,-0.19 -0.86,-0.19c-0.19,0 -0.38,0.03 -0.56,0.08l-3.2,0.94l0.94,-3.2c0.14,-0.47 0.1,-0.98 -0.11,-1.42C4.26,14.34 4,13.18 4,12C4,7.59 7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,1.54 0.36,2.98 0.97,4.29L1,23l6.71,-1.97C9.02,21.64 10.46,22 12,22c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/margin.xml b/compose/material/material/icons/generator/raw-icons/sharp/margin.xml
deleted file mode 100644
index 02423b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/margin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM9,13H7v-2h2V13zM9,9H7V7h2V9zM13,13h-2v-2h2V13zM13,9h-2V7h2V9zM17,13h-2v-2h2V13zM17,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mark_as_unread.xml b/compose/material/material/icons/generator/raw-icons/sharp/mark_as_unread.xml
deleted file mode 100644
index 4e16c58..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mark_as_unread.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.23,7l4.12,0l-9.85,-5l-8.5,4.21l0,10.79l2,0l0,-9.6l6.5,-3.4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8v13h17V8H5zM20,12l-6.5,3.33L7,12v-2l6.5,3.33L20,10V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mark_chat_read.xml b/compose/material/material/icons/generator/raw-icons/sharp/mark_chat_read.xml
deleted file mode 100644
index 9b41cd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mark_chat_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,17.5C12.01,17.67 12,17.83 12,18v0H6l-4,4V2h20v8.68C21.09,10.25 20.08,10 19,10c-3.87,0 -7,3.13 -7,7C12,17.17 12.01,17.33 12.03,17.5zM23,14.34l-1.41,-1.41l-4.24,4.24l-2.12,-2.12l-1.41,1.41L17.34,20L23,14.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mark_chat_unread.xml b/compose/material/material/icons/generator/raw-icons/sharp/mark_chat_unread.xml
deleted file mode 100644
index 1632c5d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mark_chat_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.98V18H6l-4,4V2h12.1C14.04,2.32 14,2.66 14,3c0,2.76 2.24,5 5,5C20.13,8 21.16,7.61 22,6.98zM16,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,1.34 16,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mark_email_read.xml b/compose/material/material/icons/generator/raw-icons/sharp/mark_email_read.xml
deleted file mode 100644
index b554196..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mark_email_read.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c0,-3.87 3.13,-7 7,-7c1.08,0 2.09,0.25 3,0.68V4H2v16h10.08C12.03,19.67 12,19.34 12,19zM4,6l8,5l8,-5v2l-8,5L4,8V6zM17.34,22l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L23,16.34L17.34,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mark_email_unread.xml b/compose/material/material/icons/generator/raw-icons/sharp/mark_email_unread.xml
deleted file mode 100644
index d525471..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mark_email_unread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8.98V20H2V4h12.1C14.04,4.32 14,4.66 14,5c0,1.48 0.65,2.79 1.67,3.71L12,11L4,6v2l8,5l5.3,-3.32C17.84,9.88 18.4,10 19,10C20.13,10 21.16,9.61 22,8.98zM16,5c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,3.34 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mark_unread_chat_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/mark_unread_chat_alt.xml
deleted file mode 100644
index 9bee357..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mark_unread_chat_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8V6h9.03c-1.21,-1.6 -1.08,-3.21 -0.92,-4H2.01L2,22l4,-4h16V6.97C21.16,7.61 20.13,8 19,8H6zM14,14H6v-2h8V14zM18,11H6V9h12V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/markunread.xml b/compose/material/material/icons/generator/raw-icons/sharp/markunread.xml
deleted file mode 100644
index 56ccd32..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/markunread.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2,4v16h20L22,4zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/markunread_mailbox.xml b/compose/material/material/icons/generator/raw-icons/sharp/markunread_mailbox.xml
deleted file mode 100644
index 7341a0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/markunread_mailbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6H10v6H8V4h6V0H6v6H2v16h20V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/masks.xml b/compose/material/material/icons/generator/raw-icons/sharp/masks.xml
deleted file mode 100644
index 04cafc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/masks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,6c-1.31,0 -2.37,1.01 -2.48,2.3C15.14,7.8 14.18,6.5 12,6.5c-2.19,0 -3.14,1.3 -5.02,1.8C6.87,7.02 5.81,6 4.5,6C3.12,6 2,7.12 2,8.5V9c0,6 3.6,7.81 6.52,7.98C9.53,17.62 10.72,18 12,18s2.47,-0.38 3.48,-1.02C18.4,16.81 22,15 22,9V8.5C22,7.12 20.88,6 19.5,6zM3.5,9V8.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3c0,1.28 0.38,2.47 1.01,3.48C4.99,14.27 3.5,12.65 3.5,9zM20.5,9c0,3.65 -1.49,5.27 -3.01,5.98c0.64,-1.01 1.01,-2.2 1.01,-3.48v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V9zM10.69,10.48c-0.44,0.26 -0.96,0.56 -1.69,0.76V10.2c0.48,-0.17 0.84,-0.38 1.18,-0.58C10.72,9.3 11.23,9 12,9s1.27,0.3 1.8,0.62c0.34,0.2 0.71,0.42 1.2,0.59v1.04c-0.75,-0.21 -1.26,-0.51 -1.71,-0.78C12.83,10.2 12.49,10 12,10C11.51,10 11.16,10.2 10.69,10.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/maximize.xml b/compose/material/material/icons/generator/raw-icons/sharp/maximize.xml
deleted file mode 100644
index be82c77..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/maximize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2H3V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/media_bluetooth_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/media_bluetooth_off.xml
deleted file mode 100644
index 22e42b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/media_bluetooth_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V3h6v4h-4v1.17L9,6.17zM19.42,15L22,17.57l-0.8,0.8l-6.78,-6.78l0.8,-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15zM19.17,13.55l1.13,-1.13l-1.13,-1.13V13.55zM17.21,17.21l3.98,3.98l-1.41,1.41l-3.98,-3.98l-0.58,0.58l-0.85,-0.85l0.58,-0.58L11,13.83V17c0,2.21 -1.78,4 -3.99,4S3,19.21 3,17s1.79,-4 4.01,-4c0.73,0 1.41,0.21 2,0.55v-1.72L1.39,4.22L2.8,2.81l13.56,13.56L17.21,17.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/media_bluetooth_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/media_bluetooth_on.xml
deleted file mode 100644
index 9f09f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/media_bluetooth_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3l0.01,10.55c-0.6,-0.34 -1.28,-0.55 -2,-0.55C4.79,13 3,14.79 3,17s1.79,4 4.01,4S11,19.21 11,17V7h4V3H9zM21,12.43L17.57,9h-0.6v4.55l-2.75,-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75,-2.75V21h0.6L21,17.57L18.42,15L21,12.43zM18.17,11.3l1.13,1.13l-1.13,1.13V11.3zM19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mediation.xml b/compose/material/material/icons/generator/raw-icons/sharp/mediation.xml
deleted file mode 100644
index cddf0de..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mediation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h-5.06c-0.34,3.1 -2.26,5.72 -4.94,7.05C7.96,21.69 6.64,23 5,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3c0.95,0 1.78,0.45 2.33,1.14c1.9,-1.03 3.26,-2.91 3.58,-5.14h-3.1C7.4,14.16 6.3,15 5,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3c1.3,0 2.4,0.84 2.82,2h3.1C10.6,8.77 9.23,6.9 7.33,5.86C6.78,6.55 5.95,7 5,7C3.34,7 2,5.66 2,4s1.34,-3 3,-3c1.64,0 2.96,1.31 2.99,2.95c2.68,1.33 4.6,3.95 4.94,7.05H18V8l4,4l-4,4V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/medical_information.xml b/compose/material/material/icons/generator/raw-icons/sharp/medical_information.xml
deleted file mode 100644
index 670bcf9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/medical_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-7V2H9v5H2v15h20V7zM11,4h2v5h-2V4zM11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16zM13,14.5V13h6v1.5H13zM13,17.5V16h4v1.5H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/medical_services.xml b/compose/material/material/icons/generator/raw-icons/sharp/medical_services.xml
deleted file mode 100644
index 8175391..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/medical_services.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6V2H8v4H2v16h20V6H16zM10,4h4v2h-4V4zM16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/medication.xml b/compose/material/material/icons/generator/raw-icons/sharp/medication.xml
deleted file mode 100644
index 8deda9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/medication.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h12v2h-12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6H5v15h14V6zM16,15h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/meeting_room.xml b/compose/material/material/icons/generator/raw-icons/sharp/meeting_room.xml
deleted file mode 100644
index d14eeed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6v15L3,21v-2h2L5,3h9v1h5v15h2v2h-4L17,6h-3zM10,11v2h2v-2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/memory.xml b/compose/material/material/icons/generator/raw-icons/sharp/memory.xml
deleted file mode 100644
index 0de3b69..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/memory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9L9,9v6h6L15,9zM13,13h-2v-2h2v2zM21,11L21,9h-2L19,5h-4L15,3h-2v2h-2L11,3L9,3v2L5,5v4L3,9v2h2v2L3,13v2h2v4h4v2h2v-2h2v2h2v-2h4v-4h2v-2h-2v-2h2zM17,17L7,17L7,7h10v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/menu.xml b/compose/material/material/icons/generator/raw-icons/sharp/menu.xml
deleted file mode 100644
index 4350ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h18v-2L3,16v2zM3,13h18v-2L3,11v2zM3,6v2h18L21,6L3,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/menu_book.xml b/compose/material/material/icons/generator/raw-icons/sharp/menu_book.xml
deleted file mode 100644
index 29afebd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/menu_book.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.11,-0.35 -2.33,-0.5 -3.5,-0.5c-1.95,0 -4.05,0.4 -5.5,1.5c-1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v15.5C2.45,20.4 4.55,20 6.5,20s4.05,0.4 5.5,1.5c1.45,-1.1 3.55,-1.5 5.5,-1.5c1.17,0 2.39,0.15 3.5,0.5c0.75,0.25 1.4,0.55 2,1V6C22.4,5.55 21.75,5.25 21,5zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5c-1.7,0 -4.15,0.65 -5.5,1.5V8c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.2,0 2.4,0.15 3.5,0.5V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5c0.88,0 1.73,0.09 2.5,0.26V9.24C19.21,9.09 18.36,9 17.5,9c-1.7,0 -3.24,0.29 -4.5,0.83v1.66C14.13,10.85 15.7,10.5 17.5,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.49v1.66c1.13,-0.64 2.7,-0.99 4.5,-0.99c0.88,0 1.73,0.09 2.5,0.26V11.9c-0.79,-0.15 -1.64,-0.24 -2.5,-0.24C15.8,11.66 14.26,11.96 13,12.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,14.33c-1.7,0 -3.24,0.29 -4.5,0.83v1.66c1.13,-0.64 2.7,-0.99 4.5,-0.99c0.88,0 1.73,0.09 2.5,0.26v-1.52C19.21,14.41 18.36,14.33 17.5,14.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/menu_open.xml b/compose/material/material/icons/generator/raw-icons/sharp/menu_open.xml
deleted file mode 100644
index 9ada967..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/menu_open.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h13v-2H3V18zM3,13h10v-2H3V13zM3,6v2h13V6H3zM21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/merge.xml b/compose/material/material/icons/generator/raw-icons/sharp/merge.xml
deleted file mode 100644
index 07394ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/merge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,21L5,19.59l4.83,-4.83c0.75,-0.75 1.17,-1.77 1.17,-2.83v-5.1L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83v5.1c0,1.06 0.42,2.08 1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/merge_type.xml b/compose/material/material/icons/generator/raw-icons/sharp/merge_type.xml
deleted file mode 100644
index 360a589..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/merge_type.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20.41L18.41,19 15,15.59 13.59,17 17,20.41zM7.5,8H11v5.59L5.59,19 7,20.41l6,-6V8h3.5L12,3.5 7.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/message.xml b/compose/material/material/icons/generator/raw-icons/sharp/message.xml
deleted file mode 100644
index 6a42798..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/message.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2.01,2L2,22l4,-4h16L22,2zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mic.xml b/compose/material/material/icons/generator/raw-icons/sharp/mic.xml
deleted file mode 100644
index 7d9c6fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mic.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6C9,12.66 10.34,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5H5c0,3.53 2.61,6.43 6,6.92V21h2v-3.08c3.39,-0.49 6,-3.39 6,-6.92H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mic_external_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/mic_external_off.xml
deleted file mode 100644
index 73321ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mic_external_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5c0,-1.66 -1.34,-3 -3,-3C6.38,2 5.81,2.19 5.33,2.5l4.15,4.15C9.8,6.18 10,5.61 10,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4l4,0l0,11.17l2,2l0,-15.17l-8,0l0,7.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21 0,4 0,4h8v-5.17l6.49,6.49l1.41,-1.41L2.1,2.1zM12,20H8v-2h1l0.56,-5.61L12,14.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mic_external_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/mic_external_on.xml
deleted file mode 100644
index 542e148..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mic_external_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.22,7H4.78C4.3,6.47 4,5.77 4,5c0,-1.66 1.34,-3 3,-3s3,1.34 3,3C10,5.77 9.7,6.47 9.22,7zM20,2v20h-2V4h-4v18H6c0,0 0,-1.79 0,-4H5L4,8h6L9,18H8v2h4V2H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mic_none.xml b/compose/material/material/icons/generator/raw-icons/sharp/mic_none.xml
deleted file mode 100644
index 2810bc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mic_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,5zM17,11c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5L5,11c0,3.53 2.61,6.43 6,6.92L11,21h2v-3.08c3.39,-0.49 6,-3.39 6,-6.92h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mic_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/mic_off.xml
deleted file mode 100644
index 306c40c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mic_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10.6L15,5c0,-1.66 -1.34,-3 -3,-3 -1.54,0 -2.79,1.16 -2.96,2.65L15,10.6zM19,11h-1.7c0,0.58 -0.1,1.13 -0.27,1.64l1.27,1.27c0.44,-0.88 0.7,-1.87 0.7,-2.91zM4.41,2.86L3,4.27l6,6L9,11c0,1.66 1.34,3 3,3 0.23,0 0.44,-0.03 0.65,-0.08l1.66,1.66c-0.71,0.33 -1.5,0.52 -2.31,0.52 -2.76,0 -5.3,-2.1 -5.3,-5.1L5,11c0,3.41 2.72,6.23 6,6.72L11,21h2v-3.28c0.91,-0.13 1.77,-0.45 2.55,-0.9l4.2,4.2 1.41,-1.41L4.41,2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/microwave.xml b/compose/material/material/icons/generator/raw-icons/sharp/microwave.xml
deleted file mode 100644
index 3fdd611..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/microwave.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.8,10.61L5.37,9.19C5.73,8.79 6.59,8 7.75,8c0.8,0 1.39,0.39 1.81,0.67C9.87,8.88 10.07,9 10.25,9c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42c-0.36,0.4 -1.22,1.19 -2.37,1.19c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,10.12 7.94,10 7.75,10C7.38,10 6.95,10.41 6.8,10.61zM7.75,15c0.19,0 0.38,0.12 0.71,0.34c0.42,0.28 1,0.66 1.79,0.66c1.16,0 2.01,-0.79 2.37,-1.19l-1.42,-1.42c-0.15,0.2 -0.59,0.61 -0.95,0.61c-0.18,0 -0.38,-0.12 -0.69,-0.33C9.14,13.39 8.55,13 7.75,13c-1.16,0 -2.02,0.79 -2.38,1.19l1.42,1.42C6.95,15.41 7.38,15 7.75,15zM22,4v16H2V4H22zM14,6H4v12h10V6zM19,16c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1C18.55,17 19,16.55 19,16zM19,12c0,-0.55 -0.45,-1 -1,-1c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1C18.55,13 19,12.55 19,12zM19,7h-2v2h2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/military_tech.xml b/compose/material/material/icons/generator/raw-icons/sharp/military_tech.xml
deleted file mode 100644
index 0d95ab6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/military_tech.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11V2H7v9l4.66,2.8l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22l-0.78,-3.33l2.59,-2.24l-3.41,-0.29l-0.99,-2.34L17,11zM13,12.23l-1,0.6l-1,-0.6V3h2V12.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/minimize.xml b/compose/material/material/icons/generator/raw-icons/sharp/minimize.xml
deleted file mode 100644
index d564d78..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/minimize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h12v2H6v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/minor_crash.xml b/compose/material/material/icons/generator/raw-icons/sharp/minor_crash.xml
deleted file mode 100644
index ea6b50c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/minor_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.57,8H5.43L3,15v9h3v-2h12v2h3v-9L18.57,8zM6.85,10h10.29l1.04,3H5.81L6.85,10zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM9.41,5L8,6.41l-3,-3L6.41,2L9.41,5zM16,6.41L14.59,5l3,-3L19,3.41L16,6.41zM13,5h-2V0h2V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/miscellaneous_services.xml b/compose/material/material/icons/generator/raw-icons/sharp/miscellaneous_services.xml
deleted file mode 100644
index 193333f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/miscellaneous_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.02,13.97l1.7,-2.94c0,0 -0.09,-0.08 -0.23,-0.18l-1.47,-1.16l-0.01,0.02c0.03,-0.24 0.05,-0.47 0.05,-0.71S14.04,8.53 14,8.31l0.01,0.01l1.71,-1.34l-1.7,-2.95l-2.01,0.81v0.01c-0.37,-0.28 -0.77,-0.52 -1.2,-0.7h0.01L10.52,2H7.11L6.8,4.15h0.01c-0.43,0.18 -0.83,0.42 -1.2,0.7V4.84L3.6,4.03L1.9,6.98l1.7,1.34l0.01,-0.01C3.58,8.53 3.56,8.76 3.56,9s0.02,0.47 0.05,0.71L3.6,9.69l-1.47,1.16C2,10.95 1.9,11.03 1.9,11.03l1.7,2.94l2.02,-0.8L5.6,13.14c0.37,0.29 0.77,0.53 1.21,0.71H6.8L7.11,16h3.4c0,0 0.02,-0.13 0.04,-0.3l0.27,-1.85h-0.01c0.44,-0.18 0.84,-0.42 1.21,-0.71L12,13.17L14.02,13.97zM8.81,11c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S9.91,11 8.81,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.98,17.94l-0.01,0.01C20.99,17.8 21,17.65 21,17.5c0,-0.15 -0.01,-0.3 -0.04,-0.44l0.01,0.01l1.1,-0.86l-1.09,-1.9l-1.29,0.52v0.01c-0.24,-0.18 -0.49,-0.33 -0.77,-0.45h0.01L18.73,13h-2.19l-0.2,1.38h0.01c-0.28,0.12 -0.53,0.27 -0.77,0.45v-0.01l-1.29,-0.52l-1.09,1.9l1.09,0.86l0.01,-0.01c-0.02,0.14 -0.03,0.29 -0.03,0.44c0,0.15 0.01,0.3 0.03,0.46l-0.01,-0.01l-0.94,0.75c-0.08,0.06 -0.15,0.12 -0.15,0.12l1.09,1.89l1.3,-0.51l-0.01,-0.02c0.24,0.19 0.5,0.34 0.78,0.46h-0.01l0.2,1.38h2.19c0,0 0.01,-0.08 0.03,-0.19l0.17,-1.19h-0.01c0.28,-0.12 0.54,-0.27 0.78,-0.46l-0.01,0.02l1.3,0.51l1.09,-1.89c0,0 -0.06,-0.05 -0.15,-0.12L20.98,17.94zM17.63,18.79c-0.71,0 -1.29,-0.58 -1.29,-1.29s0.58,-1.29 1.29,-1.29s1.29,0.58 1.29,1.29S18.34,18.79 17.63,18.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/missed_video_call.xml b/compose/material/material/icons/generator/raw-icons/sharp/missed_video_call.xml
deleted file mode 100644
index 10636db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/missed_video_call.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V6H3v12h14v-4.5l4,4v-11l-4,4zM10,15l-3.89,-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11,3.1 4.22,-4.22 0.78,0.79 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mms.xml b/compose/material/material/icons/generator/raw-icons/sharp/mms.xml
deleted file mode 100644
index dc5c868..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20l4,-4h16V2zM5,14l3.5,-4.5 2.5,3.01L14.5,8l4.5,6H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mobile_friendly.xml b/compose/material/material/icons/generator/raw-icons/sharp/mobile_friendly.xml
deleted file mode 100644
index fc0aa86..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mobile_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H7v5h2V4h10v16H9v-2H7v5h14V1zM7.01,13.47l-2.55,-2.55 -1.27,1.27L7,16l7.19,-7.19 -1.27,-1.27 -5.91,5.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mobile_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/mobile_off.xml
deleted file mode 100644
index f6a4062..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mobile_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v8.61l2,2V1H5v0.61L8.39,5zM2.9,2.35L1.49,3.76 5,7.27V23h14v-1.73l1.7,1.7 1.41,-1.41L2.9,2.35zM7,19V9.27L16.73,19H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mobile_screen_share.xml b/compose/material/material/icons/generator/raw-icons/sharp/mobile_screen_share.xml
deleted file mode 100644
index 9cc371d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mobile_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.01,1v22L19,23L19,1L5.01,1zM17,19L7,19L7,5h10v14zM12.8,13.24v1.75L16,12l-3.2,-2.98v1.7c-3.11,0.43 -4.35,2.56 -4.8,4.7 1.11,-1.5 2.58,-2.18 4.8,-2.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mobiledata_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/mobiledata_off.xml
deleted file mode 100644
index a283e04..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mobiledata_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l3,0l-4,-4l-4,4l3,0l0,4.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81l-1.42,1.41l6.61,6.61l0,6.18l-3,0.01l4,3.98l4,-4l-3,0.01l0,-4.18l9.78,9.78l1.41,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode.xml
deleted file mode 100644
index 3697a34..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM21.41,6.34l-3.75,-3.75 -2.53,2.54 3.75,3.75 2.53,-2.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode_comment.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode_comment.xml
deleted file mode 100644
index e8e7d65..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode_comment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v16h16l4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode_edit.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode_edit.xml
deleted file mode 100644
index 8bb6653..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode_edit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM21.41,6.34l-3.75,-3.75l-2.53,2.54l3.75,3.75L21.41,6.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode_edit_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode_edit_outline.xml
deleted file mode 100644
index 8bb6653..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode_edit_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM21.41,6.34l-3.75,-3.75l-2.53,2.54l3.75,3.75L21.41,6.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode_fan_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode_fan_off.xml
deleted file mode 100644
index 5a5e79d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode_fan_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.34,8.36l-2.29,0.82c-0.18,-0.13 -0.38,-0.25 -0.58,-0.34c0.17,-0.83 0.63,-1.58 1.36,-2.06C16.85,5.44 16.18,2 13.39,2c-3.08,0 -4.9,1.47 -5.3,3.26L18.73,15.9c1.5,0.39 3.27,-0.51 3.27,-2.51C22,9 18.99,7.16 16.34,8.36z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L5.27,8.1C3.77,7.7 2,8.61 2,10.61c0,4.4 3.01,6.24 5.66,5.03l2.29,-0.82c0.18,0.13 0.38,0.25 0.58,0.34c-0.17,0.83 -0.63,1.58 -1.36,2.06C7.15,18.56 7.82,22 10.61,22c3.08,0 4.9,-1.47 5.3,-3.26l3.87,3.87l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode_night.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode_night.xml
deleted file mode 100644
index 180c1ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode_night.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,2c-1.82,0 -3.53,0.5 -5,1.35c2.99,1.73 5,4.95 5,8.65s-2.01,6.92 -5,8.65C5.97,21.5 7.68,22 9.5,22c5.52,0 10,-4.48 10,-10S15.02,2 9.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode_of_travel.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode_of_travel.xml
deleted file mode 100644
index 1cc03da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode_of_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.31,18.9c-0.96,1 -2.06,2.03 -3.31,3.1c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2c4,0 7.64,2.92 7.97,7.5l3.53,0L19,14l-4.5,-4.5l3.47,0C17.65,6.24 15.13,4 12,4c-3.35,0 -6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14c0.64,-0.59 1.23,-1.16 1.77,-1.71c-0.17,-0.34 -0.27,-0.72 -0.27,-1.12c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5S17.38,19 16,19C15.76,19 15.53,18.97 15.31,18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mode_standby.xml b/compose/material/material/icons/generator/raw-icons/sharp/mode_standby.xml
deleted file mode 100644
index ef7b898..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mode_standby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,10.34 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/model_training.xml b/compose/material/material/icons/generator/raw-icons/sharp/model_training.xml
deleted file mode 100644
index 8158a10..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/model_training.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,13.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5h0C13.93,10 15.5,11.57 15.5,13.5zM13,19.5h-2V21h2V19.5zM19,13c0,1.68 -0.59,3.21 -1.58,4.42l1.42,1.42C20.18,17.27 21,15.23 21,13c0,-2.74 -1.23,-5.19 -3.16,-6.84l-1.42,1.42C17.99,8.86 19,10.82 19,13zM16,5l-4,-4v3c0,0 0,0 0,0c-4.97,0 -9,4.03 -9,9c0,2.23 0.82,4.27 2.16,5.84l1.42,-1.42C5.59,16.21 5,14.68 5,13c0,-3.86 3.14,-7 7,-7c0,0 0,0 0,0v3L16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/monetization_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/monetization_on.xml
deleted file mode 100644
index 4b5b299..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/monetization_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13.41,18.09L13.41,20h-2.67v-1.93c-1.71,-0.36 -3.16,-1.46 -3.27,-3.4h1.96c0.1,1.05 0.82,1.87 2.65,1.87 1.96,0 2.4,-0.98 2.4,-1.59 0,-0.83 -0.44,-1.61 -2.67,-2.14 -2.48,-0.6 -4.18,-1.62 -4.18,-3.67 0,-1.72 1.39,-2.84 3.11,-3.21L10.74,4h2.67v1.95c1.86,0.45 2.79,1.86 2.85,3.39L14.3,9.34c-0.05,-1.11 -0.64,-1.87 -2.22,-1.87 -1.5,0 -2.4,0.68 -2.4,1.64 0,0.84 0.65,1.39 2.67,1.91s4.18,1.39 4.18,3.91c-0.01,1.83 -1.38,2.83 -3.12,3.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/money.xml b/compose/material/material/icons/generator/raw-icons/sharp/money.xml
deleted file mode 100644
index de9e61a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,16h5L19,8h-5v8zM16,10h1v4h-1v-4zM8,16h5L13,8L8,8v8zM10,10h1v4h-1v-4zM5,8h2v8L5,16zM2,4v16h20L22,4L2,4zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/money_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/money_off.xml
deleted file mode 100644
index cf77830..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/money_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM5.47,3.92L4.06,5.33 7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c0.96,-0.18 1.83,-0.55 2.46,-1.12l2.22,2.22 1.41,-1.41L5.47,3.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/money_off_csred.xml b/compose/material/material/icons/generator/raw-icons/sharp/money_off_csred.xml
deleted file mode 100644
index cf77830..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/money_off_csred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM5.47,3.92L4.06,5.33 7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c0.96,-0.18 1.83,-0.55 2.46,-1.12l2.22,2.22 1.41,-1.41L5.47,3.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/monitor.xml b/compose/material/material/icons/generator/raw-icons/sharp/monitor.xml
deleted file mode 100644
index 0bd13a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/monitor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2v15h5l-1,1v2h12v-2l-1,-1h5V3zM20,16H4V5h16V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/monitor_heart.xml b/compose/material/material/icons/generator/raw-icons/sharp/monitor_heart.xml
deleted file mode 100644
index a6b05ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/monitor_heart.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.11,12.45L14,10.24l-3.11,6.21C10.73,16.79 10.38,17 10,17s-0.73,-0.21 -0.89,-0.55L7.38,13H2v7h20v-7h-6C15.62,13 15.27,12.79 15.11,12.45z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v7h6c0.38,0 0.73,0.21 0.89,0.55L10,13.76l3.11,-6.21c0.37,-0.74 1.42,-0.74 1.79,0L16.62,11H22V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/monitor_weight.xml b/compose/material/material/icons/generator/raw-icons/sharp/monitor_weight.xml
deleted file mode 100644
index 87751af..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/monitor_weight.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM14.2,11.2c-3.23,2.43 -6.84,-1.18 -4.4,-4.41C13.03,4.37 16.63,7.98 14.2,11.2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8.5h1v1h-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,8.5h1v1h-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5h1v1h-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/monochrome_photos.xml b/compose/material/material/icons/generator/raw-icons/sharp/monochrome_photos.xml
deleted file mode 100644
index 70f86b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/monochrome_photos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5h-5.2L15,3L9,3L7.2,5L2,5v16h20L22,5zM20,19h-8v-1c-2.8,0 -5,-2.2 -5,-5s2.2,-5 5,-5L12,7h8v12zM17,13c0,-2.8 -2.2,-5 -5,-5v1.8c1.8,0 3.2,1.4 3.2,3.2s-1.4,3.2 -3.2,3.2L12,18c2.8,0 5,-2.2 5,-5zM8.8,13c0,1.8 1.4,3.2 3.2,3.2L12,9.8c-1.8,0 -3.2,1.4 -3.2,3.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mood.xml b/compose/material/material/icons/generator/raw-icons/sharp/mood.xml
deleted file mode 100644
index b657042..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mood.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mood_bad.xml b/compose/material/material/icons/generator/raw-icons/sharp/mood_bad.xml
deleted file mode 100644
index 0b5aabc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mood_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5S16.33,8 15.5,8 14,8.67 14,9.5s0.67,1.5 1.5,1.5zM8.5,11c0.83,0 1.5,-0.67 1.5,-1.5S9.33,8 8.5,8 7,8.67 7,9.5 7.67,11 8.5,11zM12,13.5c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/moped.xml b/compose/material/material/icons/generator/raw-icons/sharp/moped.xml
deleted file mode 100644
index d1add03..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/moped.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10.35V5h-5v2h3v2.65L13.52,14H10V9H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/more.xml b/compose/material/material/icons/generator/raw-icons/sharp/more.xml
deleted file mode 100644
index 65e5f83..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/more.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,3L6,3l-6,9 6,9h18L24,3zM9,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM14,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/more_horiz.xml b/compose/material/material/icons/generator/raw-icons/sharp/more_horiz.xml
deleted file mode 100644
index 6439bcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/more_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/more_time.xml b/compose/material/material/icons/generator/raw-icons/sharp/more_time.xml
deleted file mode 100644
index 1cfb3c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/more_time.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8l0,6l4.7,2.9l0.8,-1.2l-4,-2.4l0,-5.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,12c0.05,0.33 0.08,0.66 0.08,1c0,3.9 -3.1,7 -7,7s-7,-3.1 -7,-7c0,-3.9 3.1,-7 7,-7c0.7,0 1.37,0.1 2,0.29V4.23C12.36,4.08 11.69,4 11,4c-5,0 -9,4 -9,9s4,9 9,9s9,-4 9,-9c0,-0.34 -0.02,-0.67 -0.06,-1H17.92z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/more_vert.xml b/compose/material/material/icons/generator/raw-icons/sharp/more_vert.xml
deleted file mode 100644
index 34b93ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/more_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mosque.xml b/compose/material/material/icons/generator/raw-icons/sharp/mosque.xml
deleted file mode 100644
index 4b3e2f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mosque.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.12,8C6,8 18,8 17.88,8"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.88,8C17.95,7.71 18,7.41 18,7.09c0,-1.31 -0.65,-2.53 -1.74,-3.25L12,1L7.74,3.84C6.65,4.56 6,5.78 6,7.09C6,7.41 6.05,7.71 6.12,8"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,7c0,-1.1 -2,-3 -2,-3s-2,1.9 -2,3c0,0.74 0.4,1.38 1,1.72V13h-2V9H5v4H3V8.72C3.6,8.38 4,7.74 4,7c0,-1.1 -2,-3 -2,-3S0,5.9 0,7c0,0.74 0.4,1.38 1,1.72V21h9v-6h4v6h9V8.72C23.6,8.38 24,7.74 24,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_auto.xml b/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_auto.xml
deleted file mode 100644
index 70c32f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99zM12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6s-6,2.69 -6,6S8.69,18 12,18zM11.29,7.5h1.43l3.01,8h-1.39l-0.72,-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_off.xml
deleted file mode 100644
index 14c3e9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-0.92,0 -1.8,0.22 -2.58,0.59l7.99,7.99C17.78,13.8 18,12.92 18,12C18,8.69 15.31,6 12,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.42L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l1.47,1.47C6.22,10.2 6,11.08 6,12c0,3.31 2.69,6 6,6c0.92,0 1.8,-0.22 2.58,-0.59l1.47,1.47C14.86,19.59 13.48,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8c0,1.48 -0.41,2.86 -1.12,4.05l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66l1.45,1.45C9.14,4.41 10.52,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_on.xml
deleted file mode 100644
index 95eea80..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM6,12c0,-3.31 2.69,-6 6,-6s6,2.69 6,6s-2.69,6 -6,6S6,15.31 6,12zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_pause.xml b/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_pause.xml
deleted file mode 100644
index bf78062..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S15.31,6 12,6zM11,15H9V9h2V15zM15,15h-2V9h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_paused.xml b/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_paused.xml
deleted file mode 100644
index bf0fc9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/motion_photos_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-1.19 0.22,-2.32 0.6,-3.38L4.48,9.3C4.17,10.14 4,11.05 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.95,0 -1.85,0.17 -2.69,0.48L8.63,2.59C9.69,2.22 10.82,2 12,2C17.52,2 22,6.48 22,12zM5.5,4C4.67,4 4,4.67 4,5.5S4.67,7 5.5,7S7,6.33 7,5.5S6.33,4 5.5,4zM11,16V8H9v8H11zM15,16V8h-2v8H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/motorcycle.xml b/compose/material/material/icons/generator/raw-icons/sharp/motorcycle.xml
deleted file mode 100644
index e95b66b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/motorcycle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.44,9.03L15.41,5H11v2h3.59l2,2H5c-2.8,0 -5,2.2 -5,5s2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h1.65l2.77,-2.77c-0.21,0.54 -0.32,1.14 -0.32,1.77 0,2.8 2.2,5 5,5s5,-2.2 5,-5c0,-2.65 -1.97,-4.77 -4.56,-4.97zM7.82,15C7.4,16.15 6.28,17 5,17c-1.63,0 -3,-1.37 -3,-3s1.37,-3 3,-3c1.28,0 2.4,0.85 2.82,2H5v2h2.82zM19,17c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mouse.xml b/compose/material/material/icons/generator/raw-icons/sharp/mouse.xml
deleted file mode 100644
index a19d2dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,1.07L13,9h7c0,-4.08 -3.05,-7.44 -7,-7.93zM4,15c0,4.42 3.58,8 8,8s8,-3.58 8,-8v-4L4,11v4zM11,1.07C7.05,1.56 4,4.92 4,9h7L11,1.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/move_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/move_down.xml
deleted file mode 100644
index 3bbdcd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/move_down.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11c0,2.45 1.76,4.47 4.08,4.91l-1.49,-1.49L7,13l4,4.01L7,21l-1.41,-1.41l1.58,-1.58l0,-0.06C3.7,17.54 1,14.58 1,11c0,-3.87 3.13,-7 7,-7h3v2H8C5.24,6 3,8.24 3,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V4h-9v7H22zM20,9h-5V6h5V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/move_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/sharp/move_to_inbox.xml
deleted file mode 100644
index bb4477c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/move_to_inbox.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM19,15h-4c0,1.66 -1.35,3 -3,3s-3,-1.34 -3,-3L4.99,15L4.99,5L19,5v10zM16,10h-2L14,7h-4v3L8,10l4,4 4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/move_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/move_up.xml
deleted file mode 100644
index c546547..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/move_up.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,-2.45 1.76,-4.47 4.08,-4.91L5.59,9.59L7,11l4,-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46 1,9.42 1,13c0,3.87 3.13,7 7,7h3v-2H8C5.24,18 3,15.76 3,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v7h9v-7H13zM20,18h-5v-3h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/movie.xml b/compose/material/material/icons/generator/raw-icons/sharp/movie.xml
deleted file mode 100644
index b43fbf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/movie.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4H8l2,4H7L5,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/movie_creation.xml b/compose/material/material/icons/generator/raw-icons/sharp/movie_creation.xml
deleted file mode 100644
index b43fbf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/movie_creation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4H8l2,4H7L5,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/movie_filter.xml b/compose/material/material/icons/generator/raw-icons/sharp/movie_filter.xml
deleted file mode 100644
index 697e4c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/movie_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l2,3h-3l-2,-3h-2l2,3h-3l-2,-3L8,4l2,3L7,7L5,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4h-4zM11.25,15.25L10,18l-1.25,-2.75L6,14l2.75,-1.25L10,10l1.25,2.75L14,14l-2.75,1.25zM16.94,11.94L16,14l-0.94,-2.06L13,11l2.06,-0.94L16,8l0.94,2.06L19,11l-2.06,0.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/moving.xml b/compose/material/material/icons/generator/raw-icons/sharp/moving.xml
deleted file mode 100644
index 933867f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/moving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.71,9.71L22,12V6h-6l2.29,2.29l-4.17,4.17c-0.39,0.39 -1.02,0.39 -1.41,0l-1.17,-1.17c-1.17,-1.17 -3.07,-1.17 -4.24,0L2,16.59L3.41,18l5.29,-5.29c0.39,-0.39 1.02,-0.39 1.41,0l1.17,1.17c1.17,1.17 3.07,1.17 4.24,0L19.71,9.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/mp.xml b/compose/material/material/icons/generator/raw-icons/sharp/mp.xml
deleted file mode 100644
index 2ad25ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/mp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM6,9h6.5v6H11v-4.5h-1v3H8.5v-3h-1V15H6V9zM15,15h-1.5V9H18v4.5h-3V15zM15,12h1.5v-1.5H15V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/multiline_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/multiline_chart.xml
deleted file mode 100644
index 96a6a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/multiline_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.92l-1.41,-1.41 -2.85,3.21C15.68,6.4 12.83,5 9.61,5 6.72,5 4.07,6.16 2,8l1.42,1.42C5.12,7.93 7.27,7 9.61,7c2.74,0 5.09,1.26 6.77,3.24l-2.88,3.24 -4,-4L2,16.99l1.5,1.5 6,-6.01 4,4 4.05,-4.55c0.75,1.35 1.25,2.9 1.44,4.55H21c-0.22,-2.3 -0.95,-4.39 -2.04,-6.14L22,6.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/multiple_stop.xml b/compose/material/material/icons/generator/raw-icons/sharp/multiple_stop.xml
deleted file mode 100644
index 0a68bfd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/multiple_stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4l4,4l-4,4V9h-4V7h4V4zM7,17h4v-2H7v-3l-4,4l4,4V17zM19,15h-2v2h2V15zM15,15h-2v2h2V15zM11,7H9v2h2V7zM7,7H5v2h2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/museum.xml b/compose/material/material/icons/generator/raw-icons/sharp/museum.xml
deleted file mode 100644
index cd239cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/museum.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22zM16,18h-2v-4l-2,3l-2,-3v4H8v-7h2l2,3l2,-3h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/music_note.xml b/compose/material/material/icons/generator/raw-icons/sharp/music_note.xml
deleted file mode 100644
index 35dcb2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/music_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4V7h4V3h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/music_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/music_off.xml
deleted file mode 100644
index 06f476d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/music_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9.61V7h4V3h-6v4.61zM4.41,2.86L3,4.27l9,9v0.28c-0.94,-0.54 -2.1,-0.75 -3.33,-0.32 -1.34,0.48 -2.37,1.67 -2.61,3.07 -0.46,2.74 1.86,5.08 4.59,4.65 1.96,-0.31 3.35,-2.11 3.35,-4.1v-1.58L19.73,21l1.41,-1.41L12,10.44 4.41,2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/music_video.xml b/compose/material/material/icons/generator/raw-icons/sharp/music_video.xml
deleted file mode 100644
index e0e61f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/music_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM21,19L3,19L3,5h18v14zM8,15c0,-1.66 1.34,-3 3,-3 0.35,0 0.69,0.07 1,0.18L12,6h5v2h-3v7.03c-0.02,1.64 -1.35,2.97 -3,2.97 -1.66,0 -3,-1.34 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/my_location.xml b/compose/material/material/icons/generator/raw-icons/sharp/my_location.xml
deleted file mode 100644
index b050330..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/my_location.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nat.xml b/compose/material/material/icons/generator/raw-icons/sharp/nat.xml
deleted file mode 100644
index bc3e7ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nat.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.82,13H11v-2H6.82C6.4,9.84 5.3,9 4,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C5.3,15 6.4,14.16 6.82,13zM4,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C5,12.55 4.55,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-4,-3v2h-4.05C14.45,5.95 10.19,2 5,2v2c4.42,0 8,3.58 8,8s-3.58,8 -8,8v2c5.19,0 9.45,-3.95 9.95,-9H19v2L23,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nature.xml b/compose/material/material/icons/generator/raw-icons/sharp/nature.xml
deleted file mode 100644
index fd74dd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nature.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16.12c3.47,-0.41 6.17,-3.36 6.17,-6.95 0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7c0,3.47 2.52,6.34 5.83,6.89V20H5v2h14v-2h-6v-3.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nature_people.xml b/compose/material/material/icons/generator/raw-icons/sharp/nature_people.xml
deleted file mode 100644
index e4eb678..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nature_people.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.17,9.17c0,-3.91 -3.19,-7.06 -7.11,-7 -3.83,0.06 -6.99,3.37 -6.88,7.19 0.09,3.38 2.58,6.16 5.83,6.7V20H6v-3h1v-5H2v5h1v5h16v-2h-3v-3.88c3.47,-0.41 6.17,-3.36 6.17,-6.95zM4.5,11c0.83,0 1.5,-0.67 1.5,-1.5S5.33,8 4.5,8 3,8.67 3,9.5 3.67,11 4.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/navigate_before.xml b/compose/material/material/icons/generator/raw-icons/sharp/navigate_before.xml
deleted file mode 100644
index a34f31d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/navigate_before.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.61,7.41L14.2,6l-6,6 6,6 1.41,-1.41L11.03,12l4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/navigate_next.xml b/compose/material/material/icons/generator/raw-icons/sharp/navigate_next.xml
deleted file mode 100644
index 0f1cb72..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/navigate_next.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.02,6L8.61,7.41 13.19,12l-4.58,4.59L10.02,18l6,-6 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/navigation.xml b/compose/material/material/icons/generator/raw-icons/sharp/navigation.xml
deleted file mode 100644
index 5787644..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/navigation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4.5,20.29l0.71,0.71L12,18l6.79,3 0.71,-0.71L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/near_me.xml b/compose/material/material/icons/generator/raw-icons/sharp/near_me.xml
deleted file mode 100644
index 957e58c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/near_me.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,10.53v0.98l6.84,2.65L12.48,21h0.98L21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/near_me_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/near_me_disabled.xml
deleted file mode 100644
index de223f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/near_me_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.34L21,3l-3.34,9L12,6.34zM22.61,19.78L4.22,1.39L2.81,2.81l5.07,5.07L3,9.69v1.41l7.07,2.83L12.9,21h1.41l1.81,-4.88l5.07,5.07L22.61,19.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nearby_error.xml b/compose/material/material/icons/generator/raw-icons/sharp/nearby_error.xml
deleted file mode 100644
index 7c8b2e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nearby_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.58L16.42,12L12,16.42L7.58,12L12,7.58zM12,19.2L4.8,12L12,4.8l6,6V7.17l-5.99,-5.99L1.18,12.01l10.83,10.83L18,16.83V13.2L12,19.2zM20,20h2v2h-2V20zM22,10h-2v8h2V10"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nearby_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/nearby_off.xml
deleted file mode 100644
index 3cb250e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nearby_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.82,12.01L18.83,16l-1.81,-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l3.99,-3.99L22.82,12.01zM21.19,21.19l-1.41,1.41L16,18.83l-3.99,3.99L1.18,11.99L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19zM14.19,17.02l-1.39,-1.39l-0.8,0.8L7.58,12l0.8,-0.8l-1.4,-1.39L4.8,12l7.2,7.2L14.19,17.02zM16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nest_cam_wired_stand.xml b/compose/material/material/icons/generator/raw-icons/sharp/nest_cam_wired_stand.xml
deleted file mode 100644
index 25c0749..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nest_cam_wired_stand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,0.85L11.98,1.4C8.95,1.7 6.37,4 6.04,7.03c-0.39,3.57 2.2,6.69 5.68,7.04l1.9,0.19l-0.56,0.85c-0.88,-0.19 -1.83,-0.18 -2.85,0.25C8.21,16.21 7,18.25 7,20.41L7,23h10v-3c0,-1.67 -0.83,-3.15 -2.09,-4.06l0.97,-1.45L18,14.72V0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_cell.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_cell.xml
deleted file mode 100644
index 3491dda..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22zM20,20h-3V9.83l3,-3V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_check.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_check.xml
deleted file mode 100644
index af7300d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,5c-0.17,0 -0.32,0.09 -0.41,0.23l-0.07,0.15 -5.18,11.65c-0.16,0.29 -0.26,0.61 -0.26,0.96 0,1.11 0.9,2.01 2.01,2.01 0.96,0 1.77,-0.68 1.96,-1.59l0.01,-0.03L16.4,5.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM1,9l2,2c2.88,-2.88 6.79,-4.08 10.53,-3.62l1.19,-2.68C9.89,3.84 4.74,5.27 1,9zM21,11l2,-2c-1.64,-1.64 -3.55,-2.82 -5.59,-3.57l-0.53,2.82c1.5,0.62 2.9,1.53 4.12,2.75zM17,15l2,-2c-0.8,-0.8 -1.7,-1.42 -2.66,-1.89l-0.55,2.92c0.42,0.27 0.83,0.59 1.21,0.97zM5,13l2,2c1.13,-1.13 2.56,-1.79 4.03,-2l1.28,-2.88c-2.63,-0.08 -5.3,0.87 -7.31,2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_locked.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_locked.xml
deleted file mode 100644
index 03b63da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_locked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-0.36c0,-1.31 -0.94,-2.5 -2.24,-2.63 -1.5,-0.15 -2.76,1.02 -2.76,2.49v0.5h-1v6h7v-6h-1zM21,16h-3v-0.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5v0.5zM19.5,11c0.15,0 0.3,0.01 0.46,0.02 0.01,0 0.03,0.01 0.04,0.01L20,1L1,20h13v-6h1.26c0.22,-0.63 0.58,-1.2 1.06,-1.68 0.85,-0.85 1.98,-1.32 3.18,-1.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_ping.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_ping.xml
deleted file mode 100644
index a884b95..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_ping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15,-5.15C18.91,10.95 19.2,11 19.5,11c1.38,0 2.5,-1.12 2.5,-2.5S20.88,6 19.5,6S17,7.12 17,8.5c0,0.35 0.07,0.67 0.2,0.97L12,14.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_wifi.xml
deleted file mode 100644
index d842dcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM12,8c-2.86,0 -5.5,0.94 -7.65,2.51L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-1.43,1.43C17.5,8.94 14.86,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_1_bar.xml
deleted file mode 100644
index 8e1c804..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM15.32,14.84C14.34,14.3 13.2,14 12,14c-1.2,0 -2.34,0.3 -3.32,0.84L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L15.32,14.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_2_bar.xml
deleted file mode 100644
index 5c8d026..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM16.78,13.38C15.4,12.5 13.76,12 12,12c-1.76,0 -3.4,0.5 -4.78,1.38l-4.3,-4.3C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L16.78,13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_3_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_3_bar.xml
deleted file mode 100644
index cf4868a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/network_wifi_3_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-2.85,2.86C16.46,10.71 14.31,10 12,10c-2.31,0 -4.46,0.71 -6.23,1.93L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/new_label.xml b/compose/material/material/icons/generator/raw-icons/sharp/new_label.xml
deleted file mode 100644
index 6ef49f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/new_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12l-4.97,7H12l0,-2l0,-4H9v-3H3V5h13.03L21,12zM10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/new_releases.xml b/compose/material/material/icons/generator/raw-icons/sharp/new_releases.xml
deleted file mode 100644
index 40ad9444..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/new_releases.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-2.44,-2.78 0.34,-3.68 -3.61,-0.82 -1.89,-3.18L12,3 8.6,1.54 6.71,4.72l-3.61,0.81 0.34,3.68L1,12l2.44,2.78 -0.34,3.69 3.61,0.82 1.89,3.18L12,21l3.4,1.46 1.89,-3.18 3.61,-0.82 -0.34,-3.68L23,12zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/newspaper.xml b/compose/material/material/icons/generator/raw-icons/sharp/newspaper.xml
deleted file mode 100644
index 15fd2e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/newspaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v18c0,0 0,0 0,0l20,0V3zM11,19H4v-6h7V19zM20,19h-7v-2h7V19zM20,15h-7v-2h7V15zM20,11H4V8h16V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/next_plan.xml b/compose/material/material/icons/generator/raw-icons/sharp/next_plan.xml
deleted file mode 100644
index 190436f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/next_plan.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM18,13.97h-5l2.26,-2.26c-0.91,-1.06 -2.25,-1.74 -3.76,-1.74c-2.37,0 -4.35,1.66 -4.86,3.88l-0.96,-0.32c0.64,-2.62 3,-4.56 5.82,-4.56c1.78,0 3.37,0.79 4.47,2.03L18,8.97V13.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/next_week.xml b/compose/material/material/icons/generator/raw-icons/sharp/next_week.xml
deleted file mode 100644
index 9f92b9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/next_week.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-6L16,5c0,-0.55 -0.22,-1.05 -0.59,-1.41C15.05,3.22 14.55,3 14,3h-4c-1.1,0 -2,0.9 -2,2v2L2,7v15h20L22,7zM10,5h4v2h-4L10,5zM11,18.5l-1,-1 3,-3 -3,-3 1,-1 4,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nfc.xml b/compose/material/material/icons/generator/raw-icons/sharp/nfc.xml
deleted file mode 100644
index c06ea60..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nfc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v20h20L22,2zM20,20L4,20L4,4h16v16zM18,6h-7v4.28c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72L13,8h3v8L8,16L8,8h2L10,6L6,6v12h12L18,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/night_shelter.xml b/compose/material/material/icons/generator/raw-icons/sharp/night_shelter.xml
deleted file mode 100644
index a721b57..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/night_shelter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM9.75,12.5c0.69,0 1.25,0.56 1.25,1.25S10.44,15 9.75,15S8.5,14.44 8.5,13.75S9.06,12.5 9.75,12.5zM17,18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H17V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nightlife.xml b/compose/material/material/icons/generator/raw-icons/sharp/nightlife.xml
deleted file mode 100644
index 0b2ba69..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nightlife.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5zM10.1,9l1.4,-2H4.49l1.4,2H10.1zM17,5h5v3h-3v9l0,0c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3c0.35,0 0.69,0.06 1,0.17V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nightlight.xml b/compose/material/material/icons/generator/raw-icons/sharp/nightlight.xml
deleted file mode 100644
index 11123d678..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nightlight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2c1.82,0 3.53,0.5 5,1.35C16.01,5.08 14,8.3 14,12s2.01,6.92 5,8.65C17.53,21.5 15.82,22 14,22C8.48,22 4,17.52 4,12S8.48,2 14,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nightlight_round.xml b/compose/material/material/icons/generator/raw-icons/sharp/nightlight_round.xml
deleted file mode 100644
index bf86043..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nightlight_round.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,22c1.05,0 2.05,-0.16 3,-0.46c-4.06,-1.27 -7,-5.06 -7,-9.54s2.94,-8.27 7,-9.54C17.55,2.16 16.55,2 15.5,2c-5.52,0 -10,4.48 -10,10S9.98,22 15.5,22L15.5,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nights_stay.xml b/compose/material/material/icons/generator/raw-icons/sharp/nights_stay.xml
deleted file mode 100644
index dac2591..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nights_stay.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.1,12.08C8.77,7.57 10.6,3.6 11.63,2.01C6.27,2.2 1.98,6.59 1.98,12c0,0.14 0.02,0.28 0.02,0.42C2.62,12.15 3.29,12 4,12c1.66,0 3.18,0.83 4.1,2.15C9.77,14.63 11,16.17 11,18c0,1.52 -0.87,2.83 -2.12,3.51c0.98,0.32 2.03,0.5 3.11,0.5c3.5,0 6.58,-1.8 8.37,-4.52C18,17.72 13.38,16.52 11.1,12.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16l-0.18,0C6.4,14.84 5.3,14 4,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.62,0 2.49,0 3,0c1.1,0 2,-0.9 2,-2C9,16.9 8.1,16 7,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_accounts.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_accounts.xml
deleted file mode 100644
index 8b4850b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_accounts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.18,10.94c0.2,-0.44 0.32,-0.92 0.32,-1.44C15.5,7.57 13.93,6 12,6c-0.52,0 -1,0.12 -1.44,0.32L15.18,10.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,15c-2.32,0 -4.45,0.8 -6.14,2.12C4.7,15.73 4,13.95 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l2.86,2.86c0.21,1.56 1.43,2.79 2.99,2.99l2.2,2.2C13.17,15.05 12.59,15 12,15zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.54 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_adult_content.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_adult_content.xml
deleted file mode 100644
index 27a37a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_adult_content.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-1.85 0.63,-3.54 1.69,-4.9L7.59,9h2.83L7.1,5.69C8.46,4.63 10.15,4 12,4c4.41,0 8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.9,-1.9h-2.83l3.31,3.31C15.54,19.37 13.85,20 12,20C7.59,20 4,16.41 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,14l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_backpack.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_backpack.xml
deleted file mode 100644
index ae4ad32..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_backpack.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l2.76,2.76C4.06,7.31 4,7.64 4,8v14h15.17l0.61,0.61L21.19,21.19zM6,14v-2h3.17l2,2H6zM6.98,4.15c0.01,0 0.01,-0.01 0.02,-0.01V2h3v2h4V2h3v2.14c1.72,0.45 3,2 3,3.86v9.17l-2,-2V12h-3.17L6.98,4.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_cell.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_cell.xml
deleted file mode 100644
index eab8857..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L5,7.83V23h14v-1.17l0.78,0.78L21.19,21.19zM7,18V9.83L15.17,18H7zM8.83,6L5,2.17V1h14v15.17l-2,-2V6H8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_crash.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_crash.xml
deleted file mode 100644
index 1d7cc10..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_crash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.57,8H5.43L3,15v9h3v-2h12v2h3v-9L18.57,8zM6.85,10h10.29l1.04,3H5.81L6.85,10zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM12,6.36L9.17,3.54l1.41,-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_drinks.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_drinks.xml
deleted file mode 100644
index d61da54..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_drinks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19zM13,19v-3.17L16.17,19H13zM7.83,5l-2,-2H21v2l-6.2,6.97L9.83,7h6.74l1.78,-2H7.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_encryption.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_encryption.xml
deleted file mode 100644
index a344666..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_encryption.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66L20,17.56V8h-3V6.22c0,-2.61 -1.91,-4.94 -4.51,-5.19 -2.53,-0.25 -4.72,1.41 -5.32,3.7L8.9,6.46V6zM4.41,4.81L3,6.22 4.78,8H4v14h14.78l1,1 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_encryption_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_encryption_gmailerrorred.xml
deleted file mode 100644
index a344666..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_encryption_gmailerrorred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66L20,17.56V8h-3V6.22c0,-2.61 -1.91,-4.94 -4.51,-5.19 -2.53,-0.25 -4.72,1.41 -5.32,3.7L8.9,6.46V6zM4.41,4.81L3,6.22 4.78,8H4v14h14.78l1,1 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_flash.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_flash.xml
deleted file mode 100644
index d99c115..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_flash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H2V22h16v-1.17l2.13,2.13l1.41,-1.41L2.45,2.45zM10,20c-2.21,0 -4,-1.79 -4,-4c0,-1.95 1.4,-3.57 3.25,-3.92l1.57,1.57c-0.26,-0.09 -0.53,-0.15 -0.82,-0.15c-1.38,0 -2.5,1.12 -2.5,2.5c0,1.38 1.12,2.5 2.5,2.5c1.38,0 2.5,-1.12 2.5,-2.5c0,-0.29 -0.06,-0.56 -0.15,-0.82l1.57,1.57C13.57,18.6 11.95,20 10,20zM18,15.17L10.83,8h1.75l1.28,1.4H18V15.17zM20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_food.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_food.xml
deleted file mode 100644
index a6c2d74..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_food.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L18,15.17L11.35,8.52zM21.9,21.9L2.1,2.1L0.69,3.51l5.7,5.7C3.46,9.83 1,11.76 1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9zM1,23h15v-2H1V23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_luggage.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_luggage.xml
deleted file mode 100644
index 5f8286e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_luggage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,9v0.92l1.75,1.75V9H16v4.17l3,3V6h-4V2H9v4H8.83l3,3H12.75zM10.5,3.5h3V6h-3V3.5zM21.19,21.19L2.81,2.81L1.39,4.22L5,7.83V21h2v1h2v-1h6v1h2v-1h1.17l1.61,1.61L21.19,21.19zM8,18v-7.17l1.5,1.5V18H8zM11.25,18v-3.92l1.5,1.5V18H11.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_meals.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_meals.xml
deleted file mode 100644
index 8b15d15..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_meals.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14V6c0,-1.76 2.24,-4 5,-4v16.17l-2,-2V14H16zM20.49,23.31L10.02,12.85C9.69,12.94 9.36,13 9,13v9H7v-9c-2.21,0 -4,-1.79 -4,-4V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM6.17,9L5,7.83V9H6.17zM9,2H7v2.17l2,2V2zM13,9V2h-2v6.17l1.85,1.85C12.94,9.69 13,9.36 13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_meeting_room.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_meeting_room.xml
deleted file mode 100644
index 9f83585..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_meeting_room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6h3v7.88l2,2L19,4h-5L14,3L6.12,3L14,10.88zM12,11.71L12,13h-2v-2h1.29L2.41,2.13 1,3.54l4,4L5,19L3,19v2h11v-4.46L20.46,23l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_photography.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_photography.xml
deleted file mode 100644
index 687cf10..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_photography.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.94,8.12L7.48,4.66L9,3h6l1.83,2H22v14.17l-5.12,-5.12C16.96,13.71 17,13.36 17,13c0,-2.76 -2.24,-5 -5,-5C11.64,8 11.29,8.04 10.94,8.12zM20.49,23.31L18.17,21H2V5h0.17L0.69,3.51L2.1,2.1L21,21l0.9,0.9L20.49,23.31zM14.49,17.32l-1.5,-1.5C12.67,15.92 12.35,16 12,16c-1.66,0 -3,-1.34 -3,-3c0,-0.35 0.08,-0.67 0.19,-0.98l-1.5,-1.5C7.25,11.24 7,12.09 7,13c0,2.76 2.24,5 5,5C12.91,18 13.76,17.75 14.49,17.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_sim.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_sim.xml
deleted file mode 100644
index 9456df5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.79,3.74L2.38,5.15l2.74,2.74 -0.12,0.12V21h13.27l1.58,1.62 1.41,-1.41zM19,16.11V3h-8.99L7.95,5.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_stroller.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_stroller.xml
deleted file mode 100644
index d051227..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_stroller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.91,8.08L6.53,3.7C7.6,3.25 8.77,3 10,3c1.56,0 3.03,0.4 4.3,1.1L10.91,8.08zM21.19,21.19l-4.78,-4.78l-5.75,-5.75L2.81,2.81L1.39,4.22l7.97,7.97L5.27,17h8.9l1.13,1.13c-0.88,0.33 -1.47,1.25 -1.26,2.28c0.15,0.76 0.78,1.39 1.54,1.54c1.03,0.21 1.95,-0.38 2.28,-1.26l1.91,1.91L21.19,21.19zM6,18c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S7.1,18 6,18zM17,6.27C17.58,5.59 17.97,5 18.65,5C19.42,5 20,5.66 20,6.48V7h2V6.48C22,4.56 20.52,3 18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03l-3.5,4.11L17,14.17V6.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/no_transfer.xml b/compose/material/material/icons/generator/raw-icons/sharp/no_transfer.xml
deleted file mode 100644
index 8bbb357..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/no_transfer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.78,2.95C7.24,2.16 9.48,2 12,2c4.42,0 8,0.5 8,4v10c0,0.35 -0.08,0.67 -0.19,0.98L13.83,11H18V6H8.83L5.78,2.95zM19.78,22.61L18.17,21H16v-2H8v2H5v-2.78C4.39,17.67 4,16.88 4,16V6.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM9,15.5C9,14.67 8.33,14 7.5,14S6,14.67 6,15.5C6,16.33 6.67,17 7.5,17S9,16.33 9,15.5zM8.17,11L6,8.83V11H8.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/noise_aware.xml b/compose/material/material/icons/generator/raw-icons/sharp/noise_aware.xml
deleted file mode 100644
index cc4e0b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/noise_aware.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02c-0.25,-2.25 -2.16,-4 -4.47,-4C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18C14.65,18 16,16.65 16,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,6.58l1.58,1.26c0.35,-0.57 0.77,-1.1 1.24,-1.57L4.85,5.02C4.38,5.49 3.97,6.02 3.6,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.46,4.42L8.59,2.61c-0.63,0.23 -1.24,0.52 -1.8,0.87l0.87,1.81C8.22,4.93 8.82,4.64 9.46,4.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.49,9.26L2.53,8.81c-0.21,0.63 -0.36,1.28 -0.44,1.95l1.96,0.45C4.11,10.53 4.27,9.88 4.49,9.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,6.58c-0.36,-0.56 -0.78,-1.09 -1.25,-1.56l-1.58,1.26c0.48,0.47 0.89,0.99 1.24,1.57L20.4,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.04,12.79l-1.96,0.45c0.08,0.67 0.23,1.33 0.44,1.95l1.97,-0.45C4.27,14.12 4.11,13.47 4.04,12.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.21,3.48c-0.57,-0.35 -1.17,-0.64 -1.8,-0.87l-0.87,1.81c0.64,0.22 1.24,0.51 1.8,0.87L17.21,3.48z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4.07V2.05C12.67,2.02 12.34,2 12,2s-0.67,0.02 -1,0.05v2.02C11.33,4.03 11.66,4 12,4S12.67,4.03 13,4.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19.93v2.02c0.33,0.03 0.66,0.05 1,0.05s0.67,-0.02 1,-0.05v-2.02C12.67,19.97 12.34,20 12,20S11.33,19.97 11,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.51,14.74l1.97,0.45c0.21,-0.63 0.36,-1.28 0.44,-1.95l-1.96,-0.45C19.89,13.47 19.73,14.12 19.51,14.74z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.96,11.21l1.96,-0.45c-0.08,-0.67 -0.23,-1.33 -0.44,-1.95l-1.97,0.45C19.73,9.88 19.89,10.53 19.96,11.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,17.73l1.58,1.26c0.47,-0.48 0.88,-1 1.25,-1.56l-1.58,-1.26C18.47,16.73 18.05,17.26 17.58,17.73z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.79,20.52c0.57,0.35 1.17,0.64 1.8,0.87l0.87,-1.81c-0.64,-0.22 -1.24,-0.51 -1.8,-0.87L6.79,20.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.54,19.58l0.87,1.81c0.63,-0.23 1.24,-0.52 1.8,-0.87l-0.87,-1.81C15.78,19.07 15.18,19.36 14.54,19.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,17.42c0.36,0.56 0.78,1.09 1.25,1.56l1.58,-1.26c-0.48,-0.47 -0.89,-0.99 -1.24,-1.57L3.6,17.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/noise_control_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/noise_control_off.xml
deleted file mode 100644
index 4d023ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/noise_control_off.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.44,0 2.79,0.38 3.95,1.05l1.45,-1.45C15.85,2.59 13.99,2 12,2S8.15,2.59 6.59,3.59l1.45,1.45C9.21,4.38 10.56,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,1.44 -0.38,2.79 -1.05,3.95l1.45,1.45C21.41,15.85 22,13.99 22,12s-0.59,-3.85 -1.59,-5.41l-1.45,1.45C19.62,9.21 20,10.56 20,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-1.44,0 -2.79,-0.38 -3.95,-1.05l-1.45,1.45C8.15,21.41 10.01,22 12,22s3.85,-0.59 5.41,-1.59l-1.45,-1.45C14.79,19.62 13.44,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-1.44 0.38,-2.79 1.05,-3.95L3.59,6.59C2.59,8.15 2,10.01 2,12s0.59,3.85 1.59,5.41l1.45,-1.45C4.38,14.79 4,13.44 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18c1.65,0 3,-1.35 3,-3h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02C15.72,7.75 13.81,6 11.5,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/nordic_walking.xml b/compose/material/material/icons/generator/raw-icons/sharp/nordic_walking.xml
deleted file mode 100644
index e8e9f6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/nordic_walking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,23h-1.5v-9H19V23zM7.53,14H6l-2,9h1.53L7.53,14zM13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM9.8,8.9L7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L6,8.3V13h2V9.6L9.8,8.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/north.xml b/compose/material/material/icons/generator/raw-icons/sharp/north.xml
deleted file mode 100644
index 129add2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/north.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7,-7L5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/north_east.xml b/compose/material/material/icons/generator/raw-icons/sharp/north_east.xml
deleted file mode 100644
index 5893394..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/north_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/north_west.xml b/compose/material/material/icons/generator/raw-icons/sharp/north_west.xml
deleted file mode 100644
index 5e3792e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/north_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/not_accessible.xml b/compose/material/material/icons/generator/raw-icons/sharp/not_accessible.xml
deleted file mode 100644
index 81a64f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/not_accessible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,2 12,2zM10,20c-1.66,0 -3,-1.34 -3,-3c0,-1.31 0.84,-2.41 2,-2.83V12.1c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h-2.07C12.42,19.16 11.31,20 10,20zM21.19,21.19L2.81,2.81L1.39,4.22L10,12.83V17h4.17l5.61,5.61L21.19,21.19zM19,11c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43C13.4,7.5 13.2,7.38 13.01,7.28c-0.36,-0.19 -0.72,-0.3 -1.2,-0.26c-0.49,0.04 -0.91,0.27 -1.23,0.61L14,11.05c1.29,1.07 3.25,1.94 5,1.95V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/not_interested.xml b/compose/material/material/icons/generator/raw-icons/sharp/not_interested.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/not_interested.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/not_listed_location.xml b/compose/material/material/icons/generator/raw-icons/sharp/not_listed_location.xml
deleted file mode 100644
index 0b5e6f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/not_listed_location.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,16a0.99,0.99 0,0 0,1 -1,0.99 0.99,0 0,0 -1,-1c-0.28,0 -0.51,0.1 -0.71,0.29 -0.2,0.19 -0.3,0.43 -0.3,0.7s0.1,0.51 0.29,0.71c0.2,0.2 0.44,0.3 0.72,0.3zM11.13,12.34L11.13,13h1.85v-0.42c0,-0.33 0.06,-0.6 0.18,-0.81 0.12,-0.21 0.33,-0.47 0.65,-0.77 0.4,-0.38 0.68,-0.75 0.89,-1.09 0.19,-0.35 0.3,-0.76 0.3,-1.25s-0.13,-0.94 -0.39,-1.35a2.57,2.57 0,0 0,-1.05 -0.96C13.11,6.12 12.58,6 12,6c-0.78,0 -1.51,0.32 -2.03,0.79C9.46,7.27 9,7.99 9,9h1.68c0,-0.52 0.19,-0.77 0.4,-0.98 0.21,-0.2 0.58,-0.3 0.96,-0.3 0.35,0 0.64,0.1 0.85,0.3 0.21,0.2 0.32,0.45 0.32,0.74 0,0.24 -0.06,0.46 -0.19,0.64 -0.13,0.19 -0.33,0.41 -0.61,0.66 -0.48,0.42 -0.81,0.79 -1,1.12 -0.19,0.33 -0.28,0.71 -0.28,1.16zM12,2c4.2,0 8,3.22 8,8.2 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/not_started.xml b/compose/material/material/icons/generator/raw-icons/sharp/not_started.xml
deleted file mode 100644
index 32913a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/not_started.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM11,16H9V8h2V16zM12,16V8l5,4L12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/note.xml b/compose/material/material/icons/generator/raw-icons/sharp/note.xml
deleted file mode 100644
index 78e1e42..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/note.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10l-6,-6L2,4v16h20L22,10zM15,5.5l5.5,5.5L15,11L15,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/note_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/note_add.xml
deleted file mode 100644
index 55de313..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/note_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L4,2v20h16L20,8l-6,-6zM16,16h-3v3h-2v-3L8,16v-2h3v-3h2v3h3v2zM13,9L13,3.5L18.5,9L13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/note_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/note_alt.xml
deleted file mode 100644
index 922d2a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/note_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-6.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H3v18h18V3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75S12.41,4.25 12,4.25s-0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75zM9.1,17H7v-2.14l5.96,-5.96l2.12,2.12L9.1,17zM17.2,8.91l-1.41,1.41L13.66,8.2l1.41,-1.41L17.2,8.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notes.xml b/compose/material/material/icons/generator/raw-icons/sharp/notes.xml
deleted file mode 100644
index 69f886d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.01L3,11v2h18zM3,16h12v2H3zM21,6H3v2.01L21,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notification_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/notification_add.xml
deleted file mode 100644
index 8023b9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notification_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20zM14,9c0,2.61 1.67,4.83 4,5.66L18,17h2v2H4v-2h2v-7c0,-2.79 1.91,-5.14 4.5,-5.8V2l3,0v2.2c0.71,0.18 1.36,0.49 1.95,0.9C14.54,6.14 14,7.51 14,9zM24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notification_important.xml b/compose/material/material/icons/generator/raw-icons/sharp/notification_important.xml
deleted file mode 100644
index f93b700..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notification_important.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,23c1.1,0 1.99,-0.89 1.99,-1.99h-3.98c0,1.1 0.89,1.99 1.99,1.99zM19,17v-6c0,-3.35 -2.36,-6.15 -5.5,-6.83L13.5,1.5h-3v2.67C7.36,4.85 5,7.65 5,11v6l-2,2v1h18v-1l-2,-2zM13,16h-2v-2h2v2zM13,12h-2L11,8h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notifications.xml b/compose/material/material/icons/generator/raw-icons/sharp/notifications.xml
deleted file mode 100644
index 603e84e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notifications.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,2.5h-3v2.18C7.63,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notifications_active.xml b/compose/material/material/icons/generator/raw-icons/sharp/notifications_active.xml
deleted file mode 100644
index 45623c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notifications_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.58,4.08L6.15,2.65C3.75,4.48 2.17,7.3 2.03,10.5h2c0.15,-2.65 1.51,-4.97 3.55,-6.42zM19.97,10.5h2c-0.15,-3.2 -1.73,-6.02 -4.12,-7.85l-1.42,1.43c2.02,1.45 3.39,3.77 3.54,6.42zM18,11c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,2.5h-3v2.18C7.63,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2v-5zM12,22c0.14,0 0.27,-0.01 0.4,-0.04 0.65,-0.14 1.18,-0.58 1.44,-1.18 0.1,-0.24 0.15,-0.5 0.15,-0.78h-4c0.01,1.1 0.9,2 2.01,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notifications_none.xml b/compose/material/material/icons/generator/raw-icons/sharp/notifications_none.xml
deleted file mode 100644
index c1b9835..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notifications_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,2.5h-3v2.18C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notifications_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/notifications_off.xml
deleted file mode 100644
index 0700dfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notifications_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,11c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,2.5h-3v2.18c-0.24,0.06 -0.47,0.15 -0.69,0.23L18,13.1L18,11zM5.41,3.35L4,4.76l2.81,2.81C6.29,8.57 6,9.73 6,11v5l-2,2v1h14.24l1.74,1.74 1.41,-1.41L5.41,3.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/notifications_paused.xml b/compose/material/material/icons/generator/raw-icons/sharp/notifications_paused.xml
deleted file mode 100644
index 28a9b85..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/notifications_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,2.5h-3v2.18C7.63,5.36 6,7.93 6,11v5l-2,2v1h16v-1l-2,-2zM14.5,9.8l-2.8,3.4h2.8L14.5,15h-5v-1.8l2.8,-3.4L9.5,9.8L9.5,8h5v1.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/numbers.xml b/compose/material/material/icons/generator/raw-icons/sharp/numbers.xml
deleted file mode 100644
index a9ada94..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/numbers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,10L21,8h-4l1,-4h-2l-1,4h-4l1,-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1,-4h4l-1,4h2l1,-4h4l0.5,-2h-4l1,-4H20.5zM13.5,14h-4l1,-4h4L13.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/offline_bolt.xml b/compose/material/material/icons/generator/raw-icons/sharp/offline_bolt.xml
deleted file mode 100644
index b3d2de1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/offline_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2.02c-5.51,0 -9.98,4.47 -9.98,9.98s4.47,9.98 9.98,9.98 9.98,-4.47 9.98,-9.98S17.51,2.02 12,2.02zM11.48,20v-6.26H8L13,4v6.26h3.35L11.48,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/offline_pin.xml b/compose/material/material/icons/generator/raw-icons/sharp/offline_pin.xml
deleted file mode 100644
index dbeec2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/offline_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM17,18L7,18v-2h10v2zM10.3,14L7,10.7l1.4,-1.4 1.9,1.9 5.3,-5.3L17,7.3 10.3,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/offline_share.xml b/compose/material/material/icons/generator/raw-icons/sharp/offline_share.xml
deleted file mode 100644
index 49a275f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/offline_share.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5l-2,0l0,18l12,0l0,-2l-10,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1H8v18h12V1zM18,15h-8V5h8V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,10.25l2,0l0,1.75l2.5,-2.5l-2.5,-2.5l0,1.75l-3.5,0l0,3.25l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/oil_barrel.xml b/compose/material/material/icons/generator/raw-icons/sharp/oil_barrel.xml
deleted file mode 100644
index 6ade7f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/oil_barrel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13v-2h-2V5h2V3H3v2h2v6H3v2h2v6H3v2h18v-2h-2v-6H21zM12,16c-1.66,0 -3,-1.32 -3,-2.95c0,-1.3 0.52,-1.67 3,-4.55c2.47,2.86 3,3.24 3,4.55C15,14.68 13.66,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/on_device_training.xml b/compose/material/material/icons/generator/raw-icons/sharp/on_device_training.xml
deleted file mode 100644
index 1c221e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/on_device_training.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2c0,0.74 0.4,1.38 1,1.72v0.78h2v-0.78c0.6,-0.35 1,-0.98 1,-1.72C14,11.9 13.1,11 12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1.01L4,1v22h16V1.01zM18,18H6V6h12V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,15.95C16.63,15.12 17,14.11 17,13s-0.37,-2.12 -0.99,-2.95l-1.07,1.07c0.35,0.54 0.56,1.19 0.56,1.88s-0.21,1.34 -0.56,1.88L16.01,15.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.06,14.88C8.71,14.34 8.5,13.69 8.5,13c0,-1.93 1.57,-3.5 3.5,-3.5v1.25l2.25,-2l-2.25,-2V8c-2.76,0 -5,2.24 -5,5c0,1.11 0.37,2.12 0.99,2.95L9.06,14.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ondemand_video.xml b/compose/material/material/icons/generator/raw-icons/sharp/ondemand_video.xml
deleted file mode 100644
index 48f7402..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ondemand_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v16h7v2h8v-2h6.99L23,3zM21,17L3,17L3,5h18v12zM16,11l-7,4L9,7l7,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/online_prediction.xml b/compose/material/material/icons/generator/raw-icons/sharp/online_prediction.xml
deleted file mode 100644
index a3e63ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/online_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5C8.5,9.57 10.07,8 12,8S15.5,9.57 15.5,11.5zM13,17.5h-2V19h2V17.5zM22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.06,1.06C19.55,7.53 20.5,9.66 20.5,12c0,2.34 -0.95,4.47 -2.49,6.01l1.06,1.06C20.88,17.26 22,14.76 22,12zM3.5,12c0,-2.34 0.95,-4.47 2.49,-6.01L4.93,4.93C3.12,6.74 2,9.24 2,12c0,2.76 1.12,5.26 2.93,7.07l1.06,-1.06C4.45,16.47 3.5,14.34 3.5,12zM17.5,12c0,1.52 -0.62,2.89 -1.61,3.89l1.06,1.06C18.22,15.68 19,13.93 19,12c0,-1.93 -0.78,-3.68 -2.05,-4.95l-1.06,1.06C16.88,9.11 17.5,10.48 17.5,12zM7.05,16.95l1.06,-1.06c-1,-1 -1.61,-2.37 -1.61,-3.89c0,-1.52 0.62,-2.89 1.61,-3.89L7.05,7.05C5.78,8.32 5,10.07 5,12C5,13.93 5.78,15.68 7.05,16.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/opacity.xml b/compose/material/material/icons/generator/raw-icons/sharp/opacity.xml
deleted file mode 100644
index 4750e9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/opacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,8L12,2.35 6.34,8C4.78,9.56 4,11.64 4,13.64s0.78,4.11 2.34,5.67 3.61,2.35 5.66,2.35 4.1,-0.79 5.66,-2.35S20,15.64 20,13.64 19.22,9.56 17.66,8zM6,14c0.01,-2 0.62,-3.27 1.76,-4.4L12,5.27l4.24,4.38C17.38,10.77 17.99,12 18,14H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/open_in_browser.xml b/compose/material/material/icons/generator/raw-icons/sharp/open_in_browser.xml
deleted file mode 100644
index 7e661cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/open_in_browser.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4v16h6v-2L5,18L5,8h14v10h-4v2h6L21,4L3,4zM12,10l-4,4h3v6h2v-6h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/open_in_full.xml b/compose/material/material/icons/generator/raw-icons/sharp/open_in_full.xml
deleted file mode 100644
index e1da4fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/open_in_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l0,-8l-8,0l3.29,3.29l-10,10l-3.29,-3.29l0,8l8,0l-3.29,-3.29l10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/open_in_new.xml b/compose/material/material/icons/generator/raw-icons/sharp/open_in_new.xml
deleted file mode 100644
index ca400ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/open_in_new.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H3v18h18v-9h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/open_in_new_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/open_in_new_off.xml
deleted file mode 100644
index 4319732..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/open_in_new_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.79,5.8L14,3h7v7l-2.79,-2.8l-4.09,4.09l-1.41,-1.41L16.79,5.8zM19,12v4.17l2,2V12H19zM19.78,22.61L18.17,21H3V5.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.17,19l-4.88,-4.88L9.7,15.71L8.29,14.3l1.59,-1.59L5,7.83V19H16.17zM7.83,5H12V3H5.83L7.83,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/open_with.xml b/compose/material/material/icons/generator/raw-icons/sharp/open_with.xml
deleted file mode 100644
index 6f602a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/open_with.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9h4L14,6h3l-5,-5 -5,5h3v3zM9,10L6,10L6,7l-5,5 5,5v-3h3v-4zM23,12l-5,-5v3h-3v4h3v3l5,-5zM14,15h-4v3L7,18l5,5 5,-5h-3v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/other_houses.xml b/compose/material/material/icons/generator/raw-icons/sharp/other_houses.xml
deleted file mode 100644
index bed7438..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/other_houses.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM8,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9,14.55 8.55,15 8,15zM12,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,14.55 12.55,15 12,15zM16,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,14.55 16.55,15 16,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/outbond.xml b/compose/material/material/icons/generator/raw-icons/sharp/outbond.xml
deleted file mode 100644
index 2f90fb7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/outbond.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/outbound.xml b/compose/material/material/icons/generator/raw-icons/sharp/outbound.xml
deleted file mode 100644
index 1805634..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/outbound.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/outbox.xml b/compose/material/material/icons/generator/raw-icons/sharp/outbox.xml
deleted file mode 100644
index f4f7410..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/outbox.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14l2,0l0,-3l3,0l-4,-4l-4,4l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM19,14h-4.18c-0.41,1.16 -1.51,2 -2.82,2s-2.4,-0.84 -2.82,-2H5V5h14V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/outdoor_grill.xml b/compose/material/material/icons/generator/raw-icons/sharp/outdoor_grill.xml
deleted file mode 100644
index 86ebb05..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/outdoor_grill.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,22c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3c-1.3,0 -2.4,0.84 -2.82,2H9.14l1.99,-3.06C11.42,14.98 11.71,15 12,15c0.29,0 0.58,-0.02 0.87,-0.06l1.02,1.57c0.42,-0.53 0.96,-0.95 1.6,-1.21l-0.6,-0.93C17.31,13.27 19,10.84 19,8H5c0,2.84 1.69,5.27 4.12,6.37l-4.5,6.92l1.68,1.09L7.84,20h6.34C14.6,21.16 15.7,22 17,22zM17,18c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C16,18.45 16.45,18 17,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C9.1,3.54 8.84,3.27 9.06,2H8.07C7.86,3.11 8.1,4.05 8.96,4.96C9.18,5.2 9.75,5.63 9.41,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.89,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96c-0.42,-0.5 -0.68,-0.78 -0.46,-2.04h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C11.67,5.2 12.24,5.63 11.89,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C14.1,3.54 13.84,3.27 14.06,2h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C14.18,5.2 14.75,5.63 14.41,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/outlet.xml b/compose/material/material/icons/generator/raw-icons/sharp/outlet.xml
deleted file mode 100644
index b093baf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/outlet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM8,12V7h2v5H8zM14,18h-4l0,-1.89c0,-1 0.68,-1.92 1.66,-2.08C12.92,13.82 14,14.79 14,16V18zM16,12h-2V7h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/outlined_flag.xml b/compose/material/material/icons/generator/raw-icons/sharp/outlined_flag.xml
deleted file mode 100644
index 85663ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/outlined_flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-1,-2L5,4v17h2v-7h5l1,2h7L20,6h-6zM18,14h-4l-1,-2L7,12L7,6h5l1,2h5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/output.xml b/compose/material/material/icons/generator/raw-icons/sharp/output.xml
deleted file mode 100644
index 0fd8ea4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/output.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17l5,-5l-5,-5l-1.41,1.41l2.58,2.59l-9.17,0l0,2l9.17,0l-2.58,2.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19l-14,0l0,-14l14,0l0,2l2,0l0,-4l-18,0l0,18l18,0l0,-4l-2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/padding.xml b/compose/material/material/icons/generator/raw-icons/sharp/padding.xml
deleted file mode 100644
index bfebdce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/padding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM9,9H7V7h2V9zM13,9h-2V7h2V9zM17,9h-2V7h2V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pages.xml b/compose/material/material/icons/generator/raw-icons/sharp/pages.xml
deleted file mode 100644
index 977689d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pages.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v8h5L7,7l4,1L11,3L3,3zM8,13L3,13v8h8v-5l-4,1 1,-4zM17,17l-4,-1v5h8v-8h-5l1,4zM21,3h-8v5l4,-1 -1,4h5L21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pageview.xml b/compose/material/material/icons/generator/raw-icons/sharp/pageview.xml
deleted file mode 100644
index 5cf46e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pageview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9C10.12,9 9,10.12 9,11.5s1.12,2.5 2.5,2.5 2.5,-1.12 2.5,-2.5S12.88,9 11.5,9zM22,4L2,4v16h20L22,4zM16.79,18.21l-2.91,-2.91c-0.69,0.44 -1.51,0.7 -2.39,0.7C9.01,16 7,13.99 7,11.5S9.01,7 11.5,7 16,9.01 16,11.5c0,0.88 -0.26,1.69 -0.7,2.39l2.91,2.9 -1.42,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/paid.xml b/compose/material/material/icons/generator/raw-icons/sharp/paid.xml
deleted file mode 100644
index 8023899..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/paid.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12.88,17.76V19h-1.75v-1.29c-0.74,-0.18 -2.39,-0.77 -3.02,-2.96l1.65,-0.67c0.06,0.22 0.58,2.09 2.4,2.09c0.93,0 1.98,-0.48 1.98,-1.61c0,-0.96 -0.7,-1.46 -2.28,-2.03c-1.1,-0.39 -3.35,-1.03 -3.35,-3.31c0,-0.1 0.01,-2.4 2.62,-2.96V5h1.75v1.24c1.84,0.32 2.51,1.79 2.66,2.23l-1.58,0.67c-0.11,-0.35 -0.59,-1.34 -1.9,-1.34c-0.7,0 -1.81,0.37 -1.81,1.39c0,0.95 0.86,1.31 2.64,1.9c2.4,0.83 3.01,2.05 3.01,3.45C15.9,17.17 13.4,17.67 12.88,17.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/palette.xml b/compose/material/material/icons/generator/raw-icons/sharp/palette.xml
deleted file mode 100644
index 0d97f03..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/palette.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10c1.38,0 2.5,-1.12 2.5,-2.5c0,-0.61 -0.23,-1.2 -0.64,-1.67c-0.08,-0.1 -0.13,-0.21 -0.13,-0.33c0,-0.28 0.22,-0.5 0.5,-0.5H16c3.31,0 6,-2.69 6,-6C22,6.04 17.51,2 12,2zM17.5,13c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C19,12.33 18.33,13 17.5,13zM14.5,9C13.67,9 13,8.33 13,7.5C13,6.67 13.67,6 14.5,6S16,6.67 16,7.5C16,8.33 15.33,9 14.5,9zM5,11.5C5,10.67 5.67,10 6.5,10S8,10.67 8,11.5C8,12.33 7.33,13 6.5,13S5,12.33 5,11.5zM11,7.5C11,8.33 10.33,9 9.5,9S8,8.33 8,7.5C8,6.67 8.67,6 9.5,6S11,6.67 11,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pan_tool.xml b/compose/material/material/icons/generator/raw-icons/sharp/pan_tool.xml
deleted file mode 100644
index 5276ceb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pan_tool.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,4v20H10.02L1,14.83 2.9,13 8,15.91V3h3v8h1V0h3v11h1V1h3v10h1V4h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pan_tool_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/pan_tool_alt.xml
deleted file mode 100644
index 226c5a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pan_tool_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.18,13.4L19.1,21h-9L5,15.62l1.22,-1.23L10,15.24V4.5C10,3.67 10.67,3 11.5,3S13,3.67 13,4.5v6h1.38L20.18,13.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama.xml
deleted file mode 100644
index 597da7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,20V4H1v16h22zM8.5,12.5l2.5,3.01L14.5,11l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_fish_eye.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_fish_eye.xml
deleted file mode 100644
index 2d4d03b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_fish_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_horizontal.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_horizontal.xml
deleted file mode 100644
index ccb2e83..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6.55c2.6,0.77 5.28,1.16 8,1.16 2.72,0 5.41,-0.39 8,-1.16v10.91c-2.6,-0.77 -5.28,-1.16 -8,-1.16 -2.72,0 -5.41,0.39 -8,1.16V6.55M2,3.77v16.47s0.77,-0.26 0.88,-0.3C5.82,18.85 8.91,18.3 12,18.3c3.09,0 6.18,0.55 9.12,1.64 0.11,0.04 0.88,0.3 0.88,0.3V3.77s-0.77,0.26 -0.88,0.3C18.18,5.15 15.09,5.71 12,5.71s-6.18,-0.56 -9.12,-1.64c-0.11,-0.05 -0.88,-0.3 -0.88,-0.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_horizontal_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_horizontal_select.xml
deleted file mode 100644
index d5ff503..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_horizontal_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5c-5.25,0 -9.01,-1.54 -10,-1.92L2,20.4c2.16,-0.76 5.21,-1.9 10,-1.9c4.78,0 7.91,1.17 10,1.9L22,3.6C19.91,4.33 16.77,5.5 12,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_photosphere.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_photosphere.xml
deleted file mode 100644
index 23067ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_photosphere.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8.84c-0.54,-0.43 -1.23,-0.81 -1.99,-1.15C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68C2.23,8.03 1.54,8.4 1,8.84v6.33c0.54,0.43 1.23,0.81 1.99,1.15C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.76,-0.34 1.45,-0.72 1.99,-1.15V8.84zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_photosphere_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_photosphere_select.xml
deleted file mode 100644
index 23067ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_photosphere_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8.84c-0.54,-0.43 -1.23,-0.81 -1.99,-1.15C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68C2.23,8.03 1.54,8.4 1,8.84v6.33c0.54,0.43 1.23,0.81 1.99,1.15C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.76,-0.34 1.45,-0.72 1.99,-1.15V8.84zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_vertical.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_vertical.xml
deleted file mode 100644
index 8cdf0be..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.46,4c-0.77,2.6 -1.16,5.28 -1.16,8 0,2.72 0.39,5.41 1.16,8H6.55c0.77,-2.6 1.16,-5.28 1.16,-8 0,-2.72 -0.39,-5.41 -1.16,-8h10.91m2.78,-2H3.77s0.26,0.77 0.3,0.88C5.16,5.82 5.71,8.91 5.71,12s-0.55,6.18 -1.64,9.12c-0.04,0.11 -0.3,0.88 -0.3,0.88h16.47s-0.26,-0.77 -0.3,-0.88c-1.09,-2.94 -1.64,-6.03 -1.64,-9.12s0.55,-6.18 1.64,-9.12c0.04,-0.11 0.3,-0.88 0.3,-0.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_vertical_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_vertical_select.xml
deleted file mode 100644
index 9403a20..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_vertical_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.49,11.99c0,-5.25 1.54,-9.01 1.92,-10l-16.82,0c0.76,2.16 1.9,5.21 1.9,10c0,4.78 -1.17,7.91 -1.9,10l16.81,0C19.66,19.91 18.49,16.76 18.49,11.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_wide_angle.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_wide_angle.xml
deleted file mode 100644
index 5ad0e55a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_wide_angle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c2.45,0 4.71,0.2 7.29,0.64 0.47,1.78 0.71,3.58 0.71,5.36s-0.24,3.58 -0.71,5.36c-2.58,0.44 -4.84,0.64 -7.29,0.64s-4.71,-0.2 -7.29,-0.64C4.24,15.58 4,13.78 4,12s0.24,-3.58 0.71,-5.36C7.29,6.2 9.55,6 12,6m0,-2c-2.73,0 -5.22,0.24 -7.95,0.72l-0.93,0.16 -0.25,0.9C2.29,7.85 2,9.93 2,12s0.29,4.15 0.87,6.22l0.25,0.89 0.93,0.16c2.73,0.49 5.22,0.73 7.95,0.73s5.22,-0.24 7.95,-0.72l0.93,-0.16 0.25,-0.89c0.58,-2.08 0.87,-4.16 0.87,-6.23s-0.29,-4.15 -0.87,-6.22l-0.25,-0.89 -0.93,-0.16C17.22,4.24 14.73,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/panorama_wide_angle_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/panorama_wide_angle_select.xml
deleted file mode 100644
index fc89d55..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/panorama_wide_angle_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C8.03,4 5.15,4.63 3,5c-0.55,1.97 -1,3.92 -1,7c0,3.03 0.45,5.05 1,7c2.15,0.37 4.98,1 9,1c3.97,0 6.85,-0.63 9,-1c0.57,-2.02 1,-3.99 1,-7c0,-3.03 -0.45,-5.05 -1,-7C18.85,4.63 16.02,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/paragliding.xml b/compose/material/material/icons/generator/raw-icons/sharp/paragliding.xml
deleted file mode 100644
index 2169abc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/paragliding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,17 12,17zM8.52,17.94C8.04,17.55 7,16.76 7,14H5c0,2.7 0.93,4.41 2.3,5.5c0.5,0.4 1.1,0.7 1.7,0.9L9,24h6v-3.6c0.6,-0.2 1.2,-0.5 1.7,-0.9c1.37,-1.09 2.3,-2.8 2.3,-5.5h-2c0,2.76 -1.04,3.55 -1.52,3.94C14.68,18.54 14,19 12,19S9.32,18.54 8.52,17.94zM12,0C5.92,0 1,1.9 1,4.25v3.49C1,8.55 1.88,9 2.56,8.57C2.7,8.48 2.84,8.39 3,8.31L5,13h2l1.5,-6.28C9.6,6.58 10.78,6.5 12,6.5s2.4,0.08 3.5,0.22L17,13h2l2,-4.69c0.16,0.09 0.3,0.17 0.44,0.26C22.12,9 23,8.55 23,7.74V4.25C23,1.9 18.08,0 12,0zM5.88,11.24L4.37,7.69c0.75,-0.28 1.6,-0.52 2.53,-0.71L5.88,11.24zM18.12,11.24L17.1,6.98c0.93,0.19 1.78,0.43 2.53,0.71L18.12,11.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/park.xml b/compose/material/material/icons/generator/raw-icons/sharp/park.xml
deleted file mode 100644
index 801f84c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/park.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12l2,0l-7,-10l-6.95,10l1.95,0l-3.9,6l6.92,0l0,4l3.96,0l0,-4l7.02,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/party_mode.xml b/compose/material/material/icons/generator/raw-icons/sharp/party_mode.xml
deleted file mode 100644
index 55fe1a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/party_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4h-5.17L15,2L9,2L7.17,4L2,4v16h20L22,4zM12,7c1.63,0 3.06,0.79 3.98,2L12,9c-1.66,0 -3,1.34 -3,3 0,0.35 0.07,0.69 0.18,1L7.1,13c-0.06,-0.32 -0.1,-0.66 -0.1,-1 0,-2.76 2.24,-5 5,-5zM12,17c-1.63,0 -3.06,-0.79 -3.98,-2L12,15c1.66,0 3,-1.34 3,-3 0,-0.35 -0.07,-0.69 -0.18,-1h2.08c0.07,0.32 0.1,0.66 0.1,1 0,2.76 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/password.xml b/compose/material/material/icons/generator/raw-icons/sharp/password.xml
deleted file mode 100644
index 2ca2da8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h20v2H2V17zM3.15,12.95L4,11.47l0.85,1.48l1.3,-0.75L5.3,10.72H7v-1.5H5.3l0.85,-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95zM9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H15v-1.5h-1.7l0.85,-1.47L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2zM23,9.22h-1.7l0.85,-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H23V9.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pattern.xml b/compose/material/material/icons/generator/raw-icons/sharp/pattern.xml
deleted file mode 100644
index e72bdb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pattern.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM6,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S4.9,14 6,14zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,8 12,8zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S19.1,10 18,10zM17.98,16c-0.74,0 -1.37,0.4 -1.72,1h-2.54c-0.34,-0.6 -0.98,-1 -1.72,-1s-1.37,0.4 -1.72,1H8.41l3.07,-3.07C11.65,13.97 11.82,14 12,14c1.1,0 2,-0.9 2,-2c0,-0.18 -0.03,-0.35 -0.07,-0.51l3.56,-3.56C17.65,7.97 17.82,8 18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C12.35,10.03 12.18,10 12,10c-1.1,0 -2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C6.35,16.03 6.18,16 6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c0.74,0 1.37,-0.4 1.72,-1h2.57c0.34,0.6 0.98,1 1.72,1s1.37,-0.4 1.72,-1h2.55c0.34,0.6 0.98,1 1.72,1c1.1,0 2,-0.9 2,-2C19.98,16.9 19.08,16 17.98,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pause.xml b/compose/material/material/icons/generator/raw-icons/sharp/pause.xml
deleted file mode 100644
index 13d6d2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pause_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/pause_circle.xml
deleted file mode 100644
index 336daab..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pause_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM11,16H9V8h2V16zM15,16h-2V8h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pause_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/pause_circle_filled.xml
deleted file mode 100644
index 336daab..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pause_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM11,16H9V8h2V16zM15,16h-2V8h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pause_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/pause_circle_outline.xml
deleted file mode 100644
index b929a59..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pause_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h2L11,8L9,8v8zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM13,16h2L15,8h-2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pause_presentation.xml b/compose/material/material/icons/generator/raw-icons/sharp/pause_presentation.xml
deleted file mode 100644
index 92a39b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pause_presentation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,3v18h22L23,3L1,3zM21,19L3,19L3,5h18v14zM9,8h2v8L9,16zM13,8h2v8h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/payment.xml b/compose/material/material/icons/generator/raw-icons/sharp/payment.xml
deleted file mode 100644
index 3882463..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/payment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2,4v16h20L22,4zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/payments.xml b/compose/material/material/icons/generator/raw-icons/sharp/payments.xml
deleted file mode 100644
index a3ea99d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/payments.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,7v13H4v-2h17V7H23zM19,16H1V4h18V16zM13,10c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3S13,11.66 13,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pedal_bike.xml b/compose/material/material/icons/generator/raw-icons/sharp/pedal_bike.xml
deleted file mode 100644
index cbbe9e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pedal_bike.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.18,10L16,4h-4v2h2.6l1.46,4h-4.81l-0.36,-1H12V7H7v2h1.75l1.82,5H9.9c-0.44,-2.23 -2.31,-3.88 -4.65,-3.99C2.45,9.87 0,12.2 0,15c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5c0,-2.8 -2.2,-5 -5,-5H18.18zM7.82,16c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,14h-1.4l-0.73,-2H15C14.56,12.58 14.24,13.25 14.1,14zM19,18c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,18 19,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pending.xml b/compose/material/material/icons/generator/raw-icons/sharp/pending.xml
deleted file mode 100644
index ce424ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pending.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM7,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C8.5,12.83 7.83,13.5 7,13.5zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C13.5,12.83 12.83,13.5 12,13.5zM17,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C18.5,12.83 17.83,13.5 17,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pending_actions.xml b/compose/material/material/icons/generator/raw-icons/sharp/pending_actions.xml
deleted file mode 100644
index 25f2634..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pending_actions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35zM20,3h-5.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H4v19h8.11c-0.59,-0.57 -1.07,-1.25 -1.42,-2H6V5h2v3h8V5h2v5.08c0.71,0.1 1.38,0.31 2,0.6V3zM12,5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C13,4.55 12.55,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pentagon.xml b/compose/material/material/icons/generator/raw-icons/sharp/pentagon.xml
deleted file mode 100644
index 4edc755..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pentagon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9l4,12l12,0l4,-12l-10,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/people.xml b/compose/material/material/icons/generator/raw-icons/sharp/people.xml
deleted file mode 100644
index c5b8edf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/people.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11c1.66,0 2.99,-1.34 2.99,-3S17.66,5 16,5s-3,1.34 -3,3 1.34,3 3,3zM8,11c1.66,0 2.99,-1.34 2.99,-3S9.66,5 8,5 5,6.34 5,8s1.34,3 3,3zM8,13c-2.33,0 -7,1.17 -7,3.5L1,19h14v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5zM16,13c-0.29,0 -0.62,0.02 -0.97,0.05 1.16,0.84 1.97,1.97 1.97,3.45L17,19h6v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/people_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/people_alt.xml
deleted file mode 100644
index 58169a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/people_alt.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.67,13.13C18.04,14.06 19,15.32 19,17v3h4v-3C23,14.82 19.43,13.53 16.67,13.13z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.47,0 -0.91,0.1 -1.33,0.24C14.5,5.27 15,6.58 15,8s-0.5,2.73 -1.33,3.76C14.09,11.9 14.53,12 15,12z"
-      android:fillType="evenOdd"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c-2.67,0 -8,1.34 -8,4v3h16v-3C17,14.34 11.67,13 9,13z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/people_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/people_outline.xml
deleted file mode 100644
index e3da516..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/people_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM9,13.75c-2.34,0 -7,1.17 -7,3.5L2,19h14v-1.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h4v-1.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/percent.xml b/compose/material/material/icons/generator/raw-icons/sharp/percent.xml
deleted file mode 100644
index b04df01..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/percent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,4C5.57,4 4,5.57 4,7.5S5.57,11 7.5,11S11,9.43 11,7.5S9.43,4 7.5,4zM7.5,9C6.67,9 6,8.33 6,7.5S6.67,6 7.5,6S9,6.67 9,7.5S8.33,9 7.5,9zM16.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S18.43,13 16.5,13zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,18 16.5,18zM5.41,20L4,18.59L18.59,4L20,5.41L5.41,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_camera_mic.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_camera_mic.xml
deleted file mode 100644
index 49c8312..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_camera_mic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5h-5.17L15,3L9,3L7.17,5L2,5v16h9v-2.09c-2.83,-0.48 -5,-2.94 -5,-5.91h2c0,2.21 1.79,4 4,4s4,-1.79 4,-4h2c0,2.97 -2.17,5.43 -5,5.91L13,21h9L22,5zM14,13c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2L10,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_contact_calendar.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_contact_calendar.xml
deleted file mode 100644
index 6ac71bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_contact_calendar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-3L18,1h-2v2L8,3L8,1L6,1v2L3,3v18h18L21,3zM12,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM18,18L6,18v-1c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_data_setting.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_data_setting.xml
deleted file mode 100644
index dfdcb77..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_data_setting.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.99,11.5c0.34,0 0.67,0.03 1,0.07L20,0 0,20h11.56c-0.04,-0.33 -0.07,-0.66 -0.07,-1 0,-4.14 3.36,-7.5 7.5,-7.5zM22.7,19.49c0.02,-0.16 0.04,-0.32 0.04,-0.49s-0.01,-0.33 -0.04,-0.49l1.06,-0.83c0.09,-0.08 0.12,-0.21 0.06,-0.32l-1,-1.73c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11l-1.24,0.5c-0.26,-0.2 -0.54,-0.37 -0.85,-0.49l-0.19,-1.32c-0.01,-0.12 -0.12,-0.21 -0.24,-0.21h-2c-0.12,0 -0.23,0.09 -0.25,0.21l-0.19,1.32c-0.3,0.13 -0.59,0.29 -0.85,0.49l-1.24,-0.5c-0.11,-0.04 -0.24,0 -0.31,0.11l-1,1.73c-0.06,0.11 -0.04,0.24 0.06,0.32l1.06,0.83c-0.02,0.16 -0.03,0.32 -0.03,0.49s0.01,0.33 0.03,0.49l-1.06,0.83c-0.09,0.08 -0.12,0.21 -0.06,0.32l1,1.73c0.06,0.11 0.19,0.15 0.31,0.11l1.24,-0.5c0.26,0.2 0.54,0.37 0.85,0.49l0.19,1.32c0.02,0.12 0.12,0.21 0.25,0.21h2c0.12,0 0.23,-0.09 0.25,-0.21l0.19,-1.32c0.3,-0.13 0.59,-0.29 0.84,-0.49l1.25,0.5c0.11,0.04 0.24,0 0.31,-0.11l1,-1.73c0.06,-0.11 0.03,-0.24 -0.06,-0.32l-1.07,-0.83zM18.99,20.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_device_information.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_device_information.xml
deleted file mode 100644
index aa7464a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_device_information.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v2h2L13,7zM13,11h-2v6h2v-6zM5,1v22h14L19,1L5,1zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_identity.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_identity.xml
deleted file mode 100644
index 091971f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_identity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4zM18,18L6,18v-0.99c0.2,-0.72 3.3,-2.01 6,-2.01s5.8,1.29 6,2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_media.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_media.xml
deleted file mode 100644
index d6d4f49..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_media.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6L0,6v16h20v-2L2,20L2,6zM24,4L14,4l-2,-2L4,2v16h20L24,4zM7,15l4.5,-6 3.5,4.51 2.5,-3.01L21,15L7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_phone_msg.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_phone_msg.xml
deleted file mode 100644
index 7ac6151..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_phone_msg.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v10l3,-3h6L21,3zM13.21,17.37c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51l-5.27,-0.61 -2.52,2.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/perm_scan_wifi.xml b/compose/material/material/icons/generator/raw-icons/sharp/perm_scan_wifi.xml
deleted file mode 100644
index 40bdd1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/perm_scan_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C6.95,3 3.15,4.85 0,7.23L12,22 24,7.25C20.85,4.87 17.05,3 12,3zM13,16h-2v-6h2v6zM11,8L11,6h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person.xml b/compose/material/material/icons/generator/raw-icons/sharp/person.xml
deleted file mode 100644
index 6bdced2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_2.xml
deleted file mode 100644
index add7774..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,12h4.44c1.21,0 2.14,-1.06 1.98,-2.26l-0.32,-2.45C15.57,5.39 13.92,4 12,4S8.43,5.39 8.12,7.29L7.8,9.74C7.64,10.94 8.57,12 9.78,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_3.xml
deleted file mode 100644
index a4391aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c0.17,0 3.83,0 4,0c1.66,0 3,-1.34 3,-3c0,-0.73 -0.27,-1.4 -0.71,-1.92C16.42,6.75 16.5,6.38 16.5,6c0,-1.25 -0.77,-2.32 -1.86,-2.77C14,2.48 13.06,2 12,2s-2,0.48 -2.64,1.23C8.27,3.68 7.5,4.75 7.5,6c0,0.38 0.08,0.75 0.21,1.08C7.27,7.6 7,8.27 7,9C7,10.66 8.34,12 10,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_4.xml
deleted file mode 100644
index 301f5c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4c0,-1.37 0,-3.5 0,-3.5C16,3.67 15.33,3 14.5,3c-0.52,0 -0.98,0.27 -1.25,0.67C12.98,3.27 12.52,3 12,3s-0.98,0.27 -1.25,0.67C10.48,3.27 10.02,3 9.5,3C8.67,3 8,3.67 8,4.5c0,0 0,2.12 0,3.5C8,10.21 9.79,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_add.xml
deleted file mode 100644
index 491bf766..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM6,10L6,7L4,7v3L1,10v2h3v3h2v-3h3v-2L6,10zM15,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_add_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_add_alt.xml
deleted file mode 100644
index 2918844..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_add_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,14.56C13.71,13.7 11.53,13 9,13c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,15.07 1,16.1 1,17.22V20h16v-2.78C17,16.1 16.39,15.07 15.39,14.56zM9,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8C5,10.21 6.79,12 9,12zM20,9V6h-2v3h-3v2h3v3h2v-3h3V9H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_add_alt_1.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_add_alt_1.xml
deleted file mode 100644
index 61c871a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_add_alt_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8s1.79,4 4,4S13,10.21 13,8zM15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15zM1,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S1,15.34 1,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_add_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_add_disabled.xml
deleted file mode 100644
index 67d0939..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_add_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.48,11.95c0.17,0.02 0.34,0.05 0.52,0.05 2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4c0,0.18 0.03,0.35 0.05,0.52l3.43,3.43zM16.69,14.16L22.53,20L23,20v-2c0,-2.14 -3.56,-3.5 -6.31,-3.84zM0,3.12l4,4L4,10L1,10v2h3v3h2v-3h2.88l2.51,2.51C9.19,15.11 7,16.3 7,18v2h9.88l4,4 1.41,-1.41L1.41,1.71 0,3.12zM6.88,10L6,10v-0.88l0.88,0.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_off.xml
deleted file mode 100644
index 5fbba67..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.65,5.82C9.36,4.72 10.6,4 12,4c2.21,0 4,1.79 4,4c0,1.4 -0.72,2.64 -1.82,3.35L8.65,5.82zM20,17.17c-0.02,-1.1 -0.63,-2.11 -1.61,-2.62c-0.54,-0.28 -1.13,-0.54 -1.77,-0.76L20,17.17zM21.19,21.19L2.81,2.81L1.39,4.22l8.89,8.89c-1.81,0.23 -3.39,0.79 -4.67,1.45C4.61,15.07 4,16.1 4,17.22V20h13.17l2.61,2.61L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_outline.xml
deleted file mode 100644
index 0c04292..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.9c1.16,0 2.1,0.94 2.1,2.1s-0.94,2.1 -2.1,2.1S9.9,9.16 9.9,8s0.94,-2.1 2.1,-2.1m0,9c2.97,0 6.1,1.46 6.1,2.1v1.1L5.9,18.1L5.9,17c0,-0.64 3.13,-2.1 6.1,-2.1M12,4C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_pin.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_pin.xml
deleted file mode 100644
index 82a0896..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2v18h6l3,3 3,-3h6L21,2zM12,5.3c1.49,0 2.7,1.21 2.7,2.7s-1.21,2.7 -2.7,2.7S9.3,9.49 9.3,8s1.21,-2.7 2.7,-2.7zM18,16L6,16v-0.9c0,-2 4,-3.1 6,-3.1s6,1.1 6,3.1v0.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_pin_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_pin_circle.xml
deleted file mode 100644
index 70f4dac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_pin_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.33,0 -4,0.67 -4,2v0.16c0.97,1.12 2.4,1.84 4,1.84s3.03,-0.72 4,-1.84L16,13c0,-1.33 -2.67,-2 -4,-2zM12,10c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,2c4.2,0 8,3.22 8,8.2 0,3.32 -2.67,7.25 -8,11.8 -5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_remove.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_remove.xml
deleted file mode 100644
index e8f6ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4S6,5.79 6,8s1.79,4 4,4S14,10.21 14,8zM17,10v2h6v-2H17zM2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S2,15.34 2,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_remove_alt_1.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_remove_alt_1.xml
deleted file mode 100644
index e8f6ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_remove_alt_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4S6,5.79 6,8s1.79,4 4,4S14,10.21 14,8zM17,10v2h6v-2H17zM2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4S2,15.34 2,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/person_search.xml b/compose/material/material/icons/generator/raw-icons/sharp/person_search.xml
deleted file mode 100644
index 0a31b15..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/person_search.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.35,14.01C7.62,13.91 2,15.27 2,18v2h9.54C9.07,17.24 10.31,14.11 10.35,14.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.43,18.02C19.79,17.43 20,16.74 20,16c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4c0,2.21 1.79,4 4,4c0.74,0 1.43,-0.22 2.02,-0.57L20.59,22L22,20.59L19.43,18.02zM16,18c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C18,17.1 17.1,18 16,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/personal_injury.xml b/compose/material/material/icons/generator/raw-icons/sharp/personal_injury.xml
deleted file mode 100644
index 22c5d7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/personal_injury.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S8,8.21 8,6zM17,22h1c1.1,0 2,-0.9 2,-2l0,-4.78c0,-1.12 -0.61,-2.15 -1.61,-2.66c-0.43,-0.22 -0.9,-0.43 -1.39,-0.62L17,22zM12.34,17L15,11.33C14.07,11.12 13.07,11 12,11c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,13.07 4,14.1 4,15.22L4,22h2.34C6.12,21.55 6,21.04 6,20.5C6,18.57 7.57,17 9.5,17H12.34zM10,22l1.41,-3H9.5C8.67,19 8,19.67 8,20.5S8.67,22 9.5,22H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/personal_video.xml b/compose/material/material/icons/generator/raw-icons/sharp/personal_video.xml
deleted file mode 100644
index f49552d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/personal_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v16h7v2h8v-2h6.99L23,3zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pest_control.xml b/compose/material/material/icons/generator/raw-icons/sharp/pest_control.xml
deleted file mode 100644
index 2d1f735..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pest_control.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15v-2h-3.07c-0.05,-0.39 -0.12,-0.77 -0.22,-1.14l2.58,-1.49l-1,-1.73L16.92,10c-0.28,-0.48 -0.62,-0.91 -0.99,-1.29C15.97,8.48 16,8.25 16,8c0,-0.8 -0.24,-1.55 -0.65,-2.18L17,4.17l-1.41,-1.41l-1.72,1.72c-1.68,-0.89 -3.1,-0.33 -3.73,0L8.41,2.76L7,4.17l1.65,1.65C8.24,6.45 8,7.2 8,8c0,0.25 0.03,0.48 0.07,0.72C7.7,9.1 7.36,9.53 7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37 -0.17,0.75 -0.22,1.14H3v2h3.07c0.05,0.39 0.12,0.77 0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81 2.88,3 4.92,3s3.84,-1.19 4.92,-3l2.37,1.37l1,-1.73l-2.58,-1.49c0.1,-0.37 0.17,-0.75 0.22,-1.14H21zM13,17h-2v-6h2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pest_control_rodent.xml b/compose/material/material/icons/generator/raw-icons/sharp/pest_control_rodent.xml
deleted file mode 100644
index 71119d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pest_control_rodent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.31,17.38l-2.39,-2.13C19.44,12.89 17.56,11 15.5,11c-1.16,0 -3.5,0.9 -3.5,3.5c0,0.97 0.39,1.84 1.03,2.47l-0.71,0.71C11.5,16.87 11,15.74 11,14.5c0,-1.7 0.96,-3.17 2.35,-3.93c-0.7,-0.36 -1.48,-0.57 -2.28,-0.57c-2.38,0 -4.37,1.65 -4.91,3.87C4.91,13.5 4,12.36 4,11c0,-1.66 1.34,-3 3,-3c0.94,0 1.56,0 2.5,0C10.88,8 12,6.88 12,5.5C12,4.12 10.88,3 9.5,3H7v2h2.5C9.78,5 10,5.22 10,5.5C10,5.78 9.78,6 9.5,6C9.47,6 9,6 7,6c-2.76,0 -5,2.24 -5,5c0,2.42 1.72,4.44 4,4.9v0.03C6,18.73 8.27,21 11.07,21h8.86C21.8,21 22.74,18.66 21.31,17.38zM18,19c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,18.55 18.55,19 18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pets.xml b/compose/material/material/icons/generator/raw-icons/sharp/pets.xml
deleted file mode 100644
index 7adc005..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pets.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.86c-0.87,-1.02 -1.6,-1.89 -2.48,-2.91 -0.46,-0.54 -1.05,-1.08 -1.75,-1.32 -0.11,-0.04 -0.22,-0.07 -0.33,-0.09 -0.25,-0.04 -0.52,-0.04 -0.78,-0.04s-0.53,0 -0.79,0.05c-0.11,0.02 -0.22,0.05 -0.33,0.09 -0.7,0.24 -1.28,0.78 -1.75,1.32 -0.87,1.02 -1.6,1.89 -2.48,2.91 -1.31,1.31 -2.92,2.76 -2.62,4.79 0.29,1.02 1.02,2.03 2.33,2.32 0.73,0.15 3.06,-0.44 5.54,-0.44h0.18c2.48,0 4.81,0.58 5.54,0.44 1.31,-0.29 2.04,-1.31 2.33,-2.32 0.31,-2.04 -1.3,-3.49 -2.61,-4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phishing.xml b/compose/material/material/icons/generator/raw-icons/sharp/phishing.xml
deleted file mode 100644
index b27a527..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phishing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9c0,-1.3 -0.84,-2.4 -2,-2.82V2h-2v4.18C13.84,6.6 13,7.7 13,9s0.84,2.4 2,2.82V15c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4v-1h3L5,9v6c0,3.31 2.69,6 6,6s6,-2.69 6,-6v-3.18C18.16,11.4 19,10.3 19,9zM16,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S16.55,10 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone.xml
deleted file mode 100644
index f528e5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15.46l-5.27,-0.61 -2.52,2.52c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3H3.03C2.45,13.18 10.82,21.55 21,20.97v-5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_android.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_android.xml
deleted file mode 100644
index 4e36d49..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L5,1v22h14L19,1zM14,21h-4v-1h4v1zM17,18L7,18L7,4h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_bluetooth_speaker.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_bluetooth_speaker.xml
deleted file mode 100644
index 38bd7aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_bluetooth_speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.71,9.5L17,7.21L17,11h0.5l2.85,-2.85L18.21,6l2.15,-2.15L17.5,1L17,1v3.79L14.71,2.5l-0.71,0.71L16.79,6 14,8.79l0.71,0.71zM18,2.91l0.94,0.94 -0.94,0.94L18,2.91zM18,7.21l0.94,0.94 -0.94,0.94L18,7.21zM21,15.46l-5.27,-0.61 -2.52,2.52c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_callback.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_callback.xml
deleted file mode 100644
index c8231c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_callback.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,14.85l-2.52,2.52c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3H3.03C2.45,13.18 10.82,21.55 21,20.97v-5.51l-5.27,-0.61zM18,9h-2.59l5.02,-5.02 -1.41,-1.41L14,7.59V5h-2v6h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_disabled.xml
deleted file mode 100644
index 934703c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.52,17.35C11.39,19.83 7.36,21.22 3,20.97v-5.51l5.27,-0.61l2.52,2.52c0.81,-0.41 1.58,-0.9 2.3,-1.45L1.39,4.22l1.42,-1.41L21.19,21.2l-1.41,1.41L14.52,17.35zM15.91,13.11c0.56,-0.73 1.05,-1.51 1.47,-2.33l-2.53,-2.53L15.46,3h5.51c0.25,4.37 -1.15,8.4 -3.63,11.54L15.91,13.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_enabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_enabled.xml
deleted file mode 100644
index c4975f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_enabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15.46l5.27,-0.61l2.52,2.52c2.83,-1.44 5.15,-3.75 6.59,-6.59l-2.53,-2.53L15.46,3h5.51C21.55,13.18 13.18,21.55 3,20.97V15.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_forwarded.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_forwarded.xml
deleted file mode 100644
index f8a1ace..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_forwarded.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11l5,-5 -5,-5v3h-4v4h4zM13.21,17.37c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51l-5.27,-0.61 -2.52,2.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_in_talk.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_in_talk.xml
deleted file mode 100644
index 01fc995..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_in_talk.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h2c0,-4.97 -4.03,-9 -9,-9v2c3.87,0 7,3.13 7,7zM15,12h2c0,-2.76 -2.24,-5 -5,-5v2c1.66,0 3,1.34 3,3zM13.21,17.37c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51l-5.27,-0.61 -2.52,2.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_iphone.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_iphone.xml
deleted file mode 100644
index f0deef1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_iphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1L5,1v22h13L18,1zM11.5,22c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,18L7,18L7,4h9v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_locked.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_locked.xml
deleted file mode 100644
index a0424c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_locked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1h-1v5h6V5H20zM19,5h-2V4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15l-5,-1l-2.9,2.9c-2.5,-1.43 -4.57,-3.5 -6,-6L10,8L9,3L3,3c0,3.28 0.89,6.35 2.43,9c1.58,2.73 3.85,4.99 6.57,6.57c2.65,1.53 5.72,2.43 9,2.43L21,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_missed.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_missed.xml
deleted file mode 100644
index 0329589..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.32,16.67c-2.95,-2.79 -6.93,-4.51 -11.31,-4.51 -4.39,0 -8.37,1.72 -11.31,4.51l-0.69,0.69L3.65,21l3.93,-2.72 -0.01,-3.49c1.4,-0.45 2.9,-0.7 4.44,-0.7 1.55,0 3.04,0.24 4.44,0.7l-0.01,3.49L20.37,21l3.64,-3.64c0,-0.01 -0.52,-0.52 -0.69,-0.69zM7,6.43l4.94,4.94 7.07,-7.07 -1.41,-1.42 -5.66,5.66L8.4,5H11V3H5v6h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phone_paused.xml b/compose/material/material/icons/generator/raw-icons/sharp/phone_paused.xml
deleted file mode 100644
index 5030983..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phone_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3h2v7h-2zM19,3h2v7h-2zM13.21,17.37c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51l-5.27,-0.61 -2.52,2.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phonelink.xml b/compose/material/material/icons/generator/raw-icons/sharp/phonelink.xml
deleted file mode 100644
index 8c91261..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phonelink.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h18L22,4L2,4v13L0,17v3h14v-3L4,17L4,6zM24,8h-8v12h8L24,8zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_erase.xml b/compose/material/material/icons/generator/raw-icons/sharp/phonelink_erase.xml
deleted file mode 100644
index 1fc4e91..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_erase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.2l-1,-1 -4,4 -4,-4 -1,1 4,4 -4,4 1,1 4,-4 4,4 1,-1 -4,-4 4,-4zM21,1H7v5h2V4h10v16H9v-2H7v5h14V1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_lock.xml b/compose/material/material/icons/generator/raw-icons/sharp/phonelink_lock.xml
deleted file mode 100644
index 0d7ab4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1v5h2L9,4h10v16L9,20v-2L7,18v5h14L21,1zM10.8,11L10.8,9.5C10.8,8.1 9.4,7 8,7S5.2,8.1 5.2,9.5L5.2,11L4,11v6h8v-6h-1.2zM9.5,11h-3L6.5,9.5c0,-0.8 0.7,-1.3 1.5,-1.3s1.5,0.5 1.5,1.3L9.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/phonelink_off.xml
deleted file mode 100644
index 7ad3d9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.56,4l-2.5,-2.49L4.56,4zM24,8h-8v4.61l2,2L18,10h4v7h-1.61l3,3L24,20zM22,6L22,4L7.39,4l2,2zM2.06,1.51L0.65,2.92 2,4.27L2,17L0,17v3h17.73l2.35,2.35 1.41,-1.41L2.06,1.51zM4,17L4,6.27L14.73,17L4,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_ring.xml b/compose/material/material/icons/generator/raw-icons/sharp/phonelink_ring.xml
deleted file mode 100644
index 933d63c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_ring.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.1,7.7l-1,1c1.8,1.8 1.8,4.6 0,6.5l1,1c2.5,-2.3 2.5,-6.1 0,-8.5zM18,9.8l-1,1c0.5,0.7 0.5,1.6 0,2.3l1,1c1.2,-1.2 1.2,-3 0,-4.3zM16,1L2,1v22h14L16,1zM14,20L4,20L4,4h10v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_setup.xml b/compose/material/material/icons/generator/raw-icons/sharp/phonelink_setup.xml
deleted file mode 100644
index 4e2f82b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/phonelink_setup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,1v5h2L9,4h10v16L9,20v-2L7,18v5h14L21,1zM9.5,15.5c0.29,-0.12 0.55,-0.29 0.8,-0.48l-0.02,0.03 1.41,0.55 1.27,-2.2 -1.18,-0.95 -0.02,0.03c0.02,-0.16 0.05,-0.32 0.05,-0.48s-0.03,-0.32 -0.05,-0.48l0.02,0.03 1.18,-0.95 -1.26,-2.2 -1.41,0.55 0.02,0.03c-0.26,-0.19 -0.52,-0.36 -0.81,-0.48L9.27,7L6.73,7L6.5,8.5c-0.29,0.12 -0.55,0.29 -0.8,0.48l0.02,-0.03L4.3,8.4l-1.27,2.2 1.18,0.95 0.02,-0.03c-0.01,0.16 -0.04,0.32 -0.04,0.48s0.03,0.32 0.05,0.48l-0.02,-0.03 -1.18,0.95 1.27,2.2 1.41,-0.55 -0.02,-0.03c0.25,0.19 0.51,0.36 0.8,0.48l0.23,1.5h2.54l0.23,-1.5zM6,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo.xml
deleted file mode 100644
index a3d37ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,21V3H3v18h18zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_album.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_album.xml
deleted file mode 100644
index 0e4ceff..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_album.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4v20h16V2zM11,4h5v7l-2.5,-1.5L11,11V4zM7,18l2.38,-3.17L11,17l2.62,-3.5L17,18H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_camera.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_camera.xml
deleted file mode 100644
index 809e7ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,2L7.17,4L2,4v16h20L22,4h-5.17L15,2L9,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_camera_back.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_camera_back.xml
deleted file mode 100644
index 0fde1d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_camera_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,5L15,3H9L7.17,5H2v16h20V5H16.83zM6,17l3,-4l2.25,3l3,-4L18,17H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_camera_front.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_camera_front.xml
deleted file mode 100644
index 6ca08f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,5L15,3H9L7.17,5H2v16h20V5H16.83zM12,9c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,9.9 10.9,9 12,9zM16,17H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,14.21 11.01,14 12,14s1.93,0.21 2.78,0.58C15.52,14.9 16,15.62 16,16.43V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_filter.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_filter.xml
deleted file mode 100644
index 425a378..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10v9L4.98,19L4.98,5h9L13.98,3L3,3v18h18L21,10h-2zM17,10l0.94,-2.06L20,7l-2.06,-0.94L17,4l-0.94,2.06L14,7l2.06,0.94L17,10zM13.25,10.75L12,8l-1.25,2.75L8,12l2.75,1.25L12,16l1.25,-2.75L16,12l-2.75,-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_library.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_library.xml
deleted file mode 100644
index fe7cc256..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18L22,2L6,2v16h16zM11,12l2.03,2.71L16,11l4,5L8,16l3,-4zM2,6v16h16v-2L4,20L4,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_actual.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_actual.xml
deleted file mode 100644
index abc597a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_actual.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3H1v18h22V3zM5,17l3.5,-4.5 2.5,3.01L14.5,11l4.5,6H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_large.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_large.xml
deleted file mode 100644
index 38a0086..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15h2v2h-2v-2zM21,19h2v2h-2v-2zM21,11h2v2h-2v-2zM13,3h2v2h-2L13,3zM21,7h2v2h-2L21,7zM1,7h2v2L1,9L1,7zM17,3h2v2h-2L17,3zM17,19h2v2h-2v-2zM3,3L1,3v2h2L3,3zM23,3h-2v2h2L23,3zM9,3h2v2L9,5L9,3zM5,3h2v2L5,5L5,3zM1,11v10h14L15,11L1,11zM3,19l2.5,-3.21 1.79,2.15 2.5,-3.22L13,19L3,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_small.xml b/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_small.xml
deleted file mode 100644
index 993dd8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/photo_size_select_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15h-2v2h2v-2zM23,19h-2v2h2v-2zM23,11h-2v2h2v-2zM15,3h-2v2h2L15,3zM23,7h-2v2h2L23,7zM1,21h10v-6L1,15v6zM3,7L1,7v2h2L3,7zM15,19h-2v2h2v-2zM19,3h-2v2h2L19,3zM23,3h-2v2h2L23,3zM19,19h-2v2h2v-2zM3,11L1,11v2h2v-2zM11,3L9,3v2h2L11,3zM7,3L5,3v2h2L7,3zM3,3L1,3v2h2L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/php.xml b/compose/material/material/icons/generator/raw-icons/sharp/php.xml
deleted file mode 100644
index f29612a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/php.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9zM8,9v4H4.5v2H3V9H8zM6.5,10.5h-2v1h2V10.5zM21.5,9v4H18v2h-1.5V9H21.5zM20,10.5h-2v1h2V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/piano.xml b/compose/material/material/icons/generator/raw-icons/sharp/piano.xml
deleted file mode 100644
index 880f1ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/piano.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM13,14.5h1.25V19h-4.5v-4.5H11V5h2V14.5zM5,5h2v9.5h1.25V19H5V5zM19,19h-3.25v-4.5H17V5h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/piano_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/piano_off.xml
deleted file mode 100644
index e369edc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/piano_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V21h15.17l1.61,1.61L21.19,21.19zM8.25,19H5V7.83l2,2v4.67h1.25V19zM9.75,19v-4.5H11v-0.67l3.25,3.25V19H9.75zM5.83,3H21v15.17l-2,-2V5h-2v9.17l-4,-4V5h-2v3.17L5.83,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/picture_as_pdf.xml b/compose/material/material/icons/generator/raw-icons/sharp/picture_as_pdf.xml
deleted file mode 100644
index d359855..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/picture_as_pdf.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L6,2v16h16L22,2zM11.5,11L9,11v2L7.5,13L7.5,7h4v4zM16.5,11.5c0,0.83 -0.67,1.5 -1.5,1.5h-2.5L12.5,7L15,7c0.83,0 1.5,0.67 1.5,1.5v3zM20.5,8.5L19,8.5v1h1.5L20.5,11L19,11v2h-1.5L17.5,7h3v1.5zM9,9.5h1v-1L9,8.5v1zM4,6L2,6v16h16v-2L4,20L4,6zM14,11.5h1v-3h-1v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/picture_in_picture.xml b/compose/material/material/icons/generator/raw-icons/sharp/picture_in_picture.xml
deleted file mode 100644
index dccbf24..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/picture_in_picture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-8v6h8L19,7zM23,3L1,3v17.98h22L23,3zM21,19.01L3,19.01L3,4.98h18v14.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/picture_in_picture_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/picture_in_picture_alt.xml
deleted file mode 100644
index 2297e39..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/picture_in_picture_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-8v6h8v-6zM23,21L23,3L1,3v18h22zM21,19.02L3,19.02L3,4.97h18v14.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pie_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/pie_chart.xml
deleted file mode 100644
index 5ac9d97..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pie_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2v20c-5.07,-0.5 -9,-4.79 -9,-10s3.93,-9.5 9,-10zM13.03,2v8.99L22,10.99c-0.47,-4.74 -4.24,-8.52 -8.97,-8.99zM13.03,13.01L13.03,22c4.74,-0.47 8.5,-4.25 8.97,-8.99h-8.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pie_chart_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/pie_chart_outline.xml
deleted file mode 100644
index 7359770..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pie_chart_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM13,4.07c3.61,0.45 6.48,3.33 6.93,6.93L13,11L13,4.07zM4,12c0,-4.06 3.07,-7.44 7,-7.93v15.87c-3.93,-0.5 -7,-3.88 -7,-7.94zM13,19.93L13,13h6.93c-0.45,3.61 -3.32,6.48 -6.93,6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pin.xml b/compose/material/material/icons/generator/raw-icons/sharp/pin.xml
deleted file mode 100644
index 0827f91..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM7.64,15H6.49v-4.5l-0.9,0.66l-0.58,-0.89L6.77,9h0.87V15zM13.5,15H9.61v-1.02c1.07,-1.07 1.77,-1.77 2.13,-2.15c0.4,-0.42 0.54,-0.69 0.54,-1.06c0,-0.4 -0.31,-0.72 -0.81,-0.72c-0.52,0 -0.8,0.39 -0.9,0.72l-1.01,-0.42c0.01,-0.02 0.18,-0.76 1,-1.15c0.69,-0.33 1.48,-0.2 1.95,0.03c0.86,0.44 0.91,1.24 0.91,1.48c0,0.64 -0.31,1.26 -0.92,1.86c-0.25,0.25 -0.72,0.71 -1.4,1.39l0.03,0.05h2.37V15zM18.75,14.15C18.67,14.28 18.19,15 16.99,15c-0.04,0 -1.6,0.08 -2.05,-1.51l1.03,-0.41c0.03,0.1 0.19,0.86 1.02,0.86c0.41,0 0.89,-0.28 0.89,-0.77c0,-0.55 -0.48,-0.79 -1.04,-0.79h-0.5v-1h0.46c0.33,0 0.88,-0.14 0.88,-0.72c0,-0.39 -0.31,-0.65 -0.75,-0.65c-0.5,0 -0.74,0.32 -0.85,0.64l-0.99,-0.41C15.2,9.9 15.68,9 16.94,9c1.09,0 1.54,0.64 1.62,0.75c0.33,0.5 0.28,1.16 0.02,1.57c-0.15,0.22 -0.32,0.38 -0.52,0.48v0.07c0.28,0.11 0.51,0.28 0.68,0.52C19.11,12.91 19.07,13.66 18.75,14.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pin_drop.xml b/compose/material/material/icons/generator/raw-icons/sharp/pin_drop.xml
deleted file mode 100644
index cdd8785..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pin_drop.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14v2L5,22v-2zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2a2,2 0,1 0,0 -4zM12,2c3.27,0 7,2.46 7,7.15 0,3.12 -2.33,6.41 -7,9.85 -4.67,-3.44 -7,-6.73 -7,-9.85C5,4.46 8.73,2 12,2z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pin_end.xml b/compose/material/material/icons/generator/raw-icons/sharp/pin_end.xml
deleted file mode 100644
index 358beac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pin_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12V6H4v12h10l0,2H2V4h20v8H20zM19,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.66,0 3,-1.34 3,-3S20.66,14 19,14zM14.66,8H9v5.66l2.12,-2.12l2.83,2.83l1.41,-1.41l-2.83,-2.83L14.66,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pin_invoke.xml b/compose/material/material/icons/generator/raw-icons/sharp/pin_invoke.xml
deleted file mode 100644
index fedb137..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pin_invoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12v8H2V4h12l0,2H4v12h16v-6H22zM22,7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C20.66,10 22,8.66 22,7zM11.47,12.12l-2.83,2.83l1.41,1.41l2.83,-2.83L15,15.66V10H9.34L11.47,12.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pinch.xml b/compose/material/material/icons/generator/raw-icons/sharp/pinch.xml
deleted file mode 100644
index 169864d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pinch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.18,15.4L22.1,23h-9L8,17.62l1.22,-1.23L13,17.24V6.5C13,5.67 13.67,5 14.5,5S16,5.67 16,6.5v6h1.38L23.18,15.4zM6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pivot_table_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/pivot_table_chart.xml
deleted file mode 100644
index 7321c8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pivot_table_chart.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h11v5h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h5v11h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h5v5h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9l-4,4l3,0l0,4l-4,0l0,-3l-4,4l4,4l0,-3l6,0l0,-6l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pix.xml b/compose/material/material/icons/generator/raw-icons/sharp/pix.xml
deleted file mode 100644
index a1fea47..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pix.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.45,16.52l-3.01,-3.01c-0.11,-0.11 -0.24,-0.13 -0.31,-0.13s-0.2,0.02 -0.31,0.13L8.8,16.53c-0.34,0.34 -0.87,0.89 -2.64,0.89l3.71,3.7c1.17,1.17 3.07,1.17 4.24,0l3.72,-3.71C16.92,17.41 16.16,17.23 15.45,16.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,7.47l3.02,3.02c0.08,0.08 0.2,0.13 0.31,0.13s0.23,-0.05 0.31,-0.13l2.99,-2.99c0.71,-0.74 1.52,-0.91 2.43,-0.91l-3.72,-3.71c-1.17,-1.17 -3.07,-1.17 -4.24,0l-3.71,3.7C7.95,6.58 8.49,7.16 8.8,7.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,9.85l-2.25,-2.26H17.6c-0.54,0 -1.08,0.22 -1.45,0.61l-3,3c-0.28,0.28 -0.65,0.42 -1.02,0.42c-0.36,0 -0.74,-0.15 -1.02,-0.42L8.09,8.17c-0.38,-0.38 -0.9,-0.6 -1.45,-0.6H5.17l-2.29,2.3c-1.17,1.17 -1.17,3.07 0,4.24l2.29,2.3h1.48c0.54,0 1.06,-0.22 1.45,-0.6l3.02,-3.02c0.28,-0.28 0.65,-0.42 1.02,-0.42c0.37,0 0.74,0.14 1.02,0.42l3.01,3.01c0.38,0.38 0.9,0.6 1.45,0.6h1.26l2.25,-2.26C22.3,12.96 22.3,11.04 21.11,9.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/place.xml b/compose/material/material/icons/generator/raw-icons/sharp/place.xml
deleted file mode 100644
index 0c22454..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/place.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM12,2c-4.2,0 -8,3.22 -8,8.2 0,3.32 2.67,7.25 8,11.8 5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/plagiarism.xml b/compose/material/material/icons/generator/raw-icons/sharp/plagiarism.xml
deleted file mode 100644
index 52f483f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/plagiarism.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM15.04,19.45l-1.88,-1.88c-1.33,0.71 -3.01,0.53 -4.13,-0.59c-1.37,-1.37 -1.37,-3.58 0,-4.95c1.37,-1.37 3.58,-1.37 4.95,0c1.12,1.12 1.31,2.8 0.59,4.13l1.88,1.88L15.04,19.45zM13,9V3.5L18.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/play_arrow.xml b/compose/material/material/icons/generator/raw-icons/sharp/play_arrow.xml
deleted file mode 100644
index 4de33fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/play_arrow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5v14l11,-7L8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/play_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/play_circle.xml
deleted file mode 100644
index bc5dd1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/play_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM9.5,16.5v-9l7,4.5L9.5,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/play_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/play_circle_filled.xml
deleted file mode 100644
index 52f6c50..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/play_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10,16.5v-9l6,4.5 -6,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/play_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/play_circle_outline.xml
deleted file mode 100644
index 969804a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/play_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.5l6,-4.5 -6,-4.5v9zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/play_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/play_disabled.xml
deleted file mode 100644
index 6aa01e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/play_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.45,13.62l2.55,-1.62l-11,-7l0,0.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81l-1.42,1.41l6.61,6.61l0,8.17l4.99,-3.18l6.79,6.79l1.41,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/play_for_work.xml b/compose/material/material/icons/generator/raw-icons/sharp/play_for_work.xml
deleted file mode 100644
index 4a713b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/play_for_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5v5.59L7.5,10.59l4.5,4.5 4.5,-4.5L13,10.59L13,5h-2zM6,14c0,3.31 2.69,6 6,6s6,-2.69 6,-6h-2c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4L6,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/play_lesson.xml b/compose/material/material/icons/generator/raw-icons/sharp/play_lesson.xml
deleted file mode 100644
index 788c461..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/play_lesson.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0.34,0 0.67,0.03 1,0.08V2H3v20h9.26C11.47,20.87 11,19.49 11,18C11,14.13 14.13,11 18,11zM7,11V4h5v7L9.5,9.5L7,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM16.75,20.5v-5l4,2.5L16.75,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/playlist_add.xml
deleted file mode 100644
index 21a683b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18zM3,16h7v-2H3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_check.xml b/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_check.xml
deleted file mode 100644
index b426cf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_check.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.59,11.93l-4.25,4.24l-2.12,-2.12l-1.41,1.41l3.53,3.54l5.66,-5.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_check_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_check_circle.xml
deleted file mode 100644
index 1c67620..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_check_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2zM7,7h7v2H7V7zM7,10h7v2H7V10zM10,15H7v-2h3V15zM14.05,18.36l-2.83,-2.83l1.41,-1.41l1.41,1.41L17.59,12L19,13.41L14.05,18.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_circle.xml
deleted file mode 100644
index c2a7236..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/playlist_add_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM7,7h7v2H7V7zM10,15H7v-2h3V15zM7,12v-2h7v2H7zM19,15h-2v2h-2v-2h-2v-2h2v-2h2v2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/playlist_play.xml b/compose/material/material/icons/generator/raw-icons/sharp/playlist_play.xml
deleted file mode 100644
index 2ca0b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/playlist_play.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13l0,8l6,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/playlist_remove.xml b/compose/material/material/icons/generator/raw-icons/sharp/playlist_remove.xml
deleted file mode 100644
index ff81cff..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/playlist_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM3,16h7v-2H3V16zM14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/plumbing.xml b/compose/material/material/icons/generator/raw-icons/sharp/plumbing.xml
deleted file mode 100644
index a7142a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/plumbing.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.16,5.64l3.54,3.54c1.17,-1.17 1.17,-3.07 0,-4.24l-3.54,-3.54l-4.24,4.24l2.12,2.12L16.16,5.64z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.842,12.708l3.535,-3.535l2.121,2.121l-3.535,3.535z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.45,7.76l-1.41,1.41L9.79,4.93L7.67,7.05l4.24,4.24l-8.49,8.49l2.83,2.83L16.86,12l0.71,0.71l1.41,-1.41L15.45,7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/plus_one.xml b/compose/material/material/icons/generator/raw-icons/sharp/plus_one.xml
deleted file mode 100644
index ca5d41c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/plus_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8L8,8v4L4,12v2h4v4h2v-4h4v-2h-4L10,8zM14.5,6.08L14.5,7.9l2.5,-0.5L17,18h2L19,5l-4.5,1.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/podcasts.xml b/compose/material/material/icons/generator/raw-icons/sharp/podcasts.xml
deleted file mode 100644
index e8d43dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/podcasts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,0.74 -0.4,1.38 -1,1.72V22h-2v-8.28c-0.6,-0.35 -1,-0.98 -1,-1.72c0,-1.1 0.9,-2 2,-2S14,10.9 14,12zM12,6c-3.31,0 -6,2.69 -6,6c0,1.74 0.75,3.31 1.94,4.4l1.42,-1.42C8.53,14.25 8,13.19 8,12c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.19 -0.53,2.25 -1.36,2.98l1.42,1.42C17.25,15.31 18,13.74 18,12C18,8.69 15.31,6 12,6zM12,2C6.48,2 2,6.48 2,12c0,2.85 1.2,5.41 3.11,7.24l1.42,-1.42C4.98,16.36 4,14.29 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8c0,2.29 -0.98,4.36 -2.53,5.82l1.42,1.42C20.8,17.41 22,14.85 22,12C22,6.48 17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/point_of_sale.xml b/compose/material/material/icons/generator/raw-icons/sharp/point_of_sale.xml
deleted file mode 100644
index c1b4a63..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/point_of_sale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2H5c0,0 0,0 0,0v6c0,0 0,0 0,0h14c0,0 0,0 0,0L19,2C19,2 19,2 19,2zM17,6H7V4h10V6zM22,22H2c0,0 0,0 0,0v-3h20L22,22C22,22 22,22 22,22zM18,9H6c0,0 0,0 0,0l-4,9h20L18,9zM10,16H8v-1h2V16zM10,14H8v-1h2V14zM10,12H8v-1h2V12zM13,16h-2v-1h2V16zM13,14h-2v-1h2V14zM13,12h-2v-1h2V12zM16,16h-2v-1h2V16zM16,14h-2v-1h2V14zM16,12h-2v-1h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/policy.xml b/compose/material/material/icons/generator/raw-icons/sharp/policy.xml
deleted file mode 100644
index 13a92c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/policy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5l-9,-4L3,5v6c0,5.55 3.84,10.74 9,12c2.3,-0.56 4.33,-1.9 5.88,-3.71l-3.12,-3.12c-1.94,1.29 -4.58,1.07 -6.29,-0.64c-1.95,-1.95 -1.95,-5.12 0,-7.07c1.95,-1.95 5.12,-1.95 7.07,0c1.71,1.71 1.92,4.35 0.64,6.29l2.9,2.9C20.29,15.69 21,13.38 21,11V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/poll.xml b/compose/material/material/icons/generator/raw-icons/sharp/poll.xml
deleted file mode 100644
index 080a6c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/poll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18L21,3L3,3zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/polyline.xml b/compose/material/material/icons/generator/raw-icons/sharp/polyline.xml
deleted file mode 100644
index 5f5d7a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/polyline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16l0,1.26l-6,-3l0,-3.17l2.7,-3.09l4.3,0l0,-6l-6,0l0,4.9l-2.7,3.1l-4.3,0l0,6l5,0l7,3.5l0,2.5l6,0l0,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/polymer.xml b/compose/material/material/icons/generator/raw-icons/sharp/polymer.xml
deleted file mode 100644
index b7134f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/polymer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-4L7.11,16.63 4.5,12 9,4H5L0.5,12 5,20h4l7.89,-12.63L19.5,12 15,20h4l4.5,-8L19,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pool.xml b/compose/material/material/icons/generator/raw-icons/sharp/pool.xml
deleted file mode 100644
index 98b8816..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pool.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8l-3.25,3.25c0.31,0.12 0.56,0.27 0.77,0.39 0.37,0.23 0.59,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36 0.55,0 0.78,-0.13 1.15,-0.36 0.12,-0.07 0.26,-0.15 0.41,-0.23L10.48,5 5,3v2.5L9,7l1,1zM22,16.5h-0.02,0.02zM5.35,15.5c0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.06,0.63 2.16,0.64v-2c-0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.6,0.36 -1.15,0.36s-0.78,-0.14 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36v2c1.11,0 1.73,-0.37 2.2,-0.64 0.37,-0.23 0.6,-0.36 1.15,-0.36zM18.67,18c-1.11,0 -1.73,0.37 -2.18,0.64 -0.37,0.23 -0.6,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36s-0.78,-0.13 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36v2c1.11,0 1.73,-0.37 2.19,-0.64 0.37,-0.23 0.6,-0.36 1.15,-0.36 0.55,0 0.78,0.13 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.19,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.72,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64v-2c-0.56,0 -0.78,-0.13 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/portable_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/portable_wifi_off.xml
deleted file mode 100644
index c458786..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/portable_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.42,2.36L2.01,3.78 4.1,5.87C2.79,7.57 2,9.69 2,12c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,17.53 4,14.96 4,12c0,-1.76 0.57,-3.38 1.53,-4.69l1.43,1.44C6.36,9.68 6,10.8 6,12c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-0.65 0.17,-1.25 0.44,-1.79l1.58,1.58L10,12c0,1.1 0.9,2 2,2l0.21,-0.02 7.52,7.52 1.41,-1.41L3.42,2.36zM17.71,13.82c0.18,-0.57 0.29,-1.19 0.29,-1.82 0,-3.31 -2.69,-6 -6,-6 -0.63,0 -1.25,0.11 -1.82,0.29l1.72,1.72c0.03,0 0.06,-0.01 0.1,-0.01 2.21,0 4,1.79 4,4 0,0.04 -0.01,0.07 -0.01,0.11l1.72,1.71zM12,4c4.42,0 8,3.58 8,8 0,1.2 -0.29,2.32 -0.77,3.35l1.49,1.49C21.53,15.4 22,13.76 22,12c0,-5.52 -4.48,-10 -10,-10 -1.76,0 -3.4,0.48 -4.84,1.28l1.48,1.48C9.66,4.28 10.8,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/portrait.xml b/compose/material/material/icons/generator/raw-icons/sharp/portrait.xml
deleted file mode 100644
index 9e882c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.25c1.24,0 2.25,-1.01 2.25,-2.25S13.24,7.75 12,7.75 9.75,8.76 9.75,10s1.01,2.25 2.25,2.25zM16.5,16.25c0,-1.5 -3,-2.25 -4.5,-2.25s-4.5,0.75 -4.5,2.25L7.5,17h9v-0.75zM21,3L3,3v18h18L21,3zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/post_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/post_add.xml
deleted file mode 100644
index b2d32cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/post_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,19.22l-12,0l0,-12.22l7,0l0,-2l-9,0l0,16l16,0l0,-9l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-2v3h-3c0.01,0.01 0,2 0,2h3v2.99c0.01,0.01 2,0 2,0V7h3V5h-3V2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l0,2l8,0l0,-2l-3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/power.xml b/compose/material/material/icons/generator/raw-icons/sharp/power.xml
deleted file mode 100644
index bc10430..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7V3h-2v4h-4V3H8v4H6v7.5L9.5,18v3h5v-3l3.5,-3.51V7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/power_input.xml b/compose/material/material/icons/generator/raw-icons/sharp/power_input.xml
deleted file mode 100644
index 0d03496..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/power_input.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9v2h19L21,9L2,9zM2,15h5v-2L2,13v2zM9,15h5v-2L9,13v2zM16,15h5v-2h-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/power_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/power_off.xml
deleted file mode 100644
index 6f0ffdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/power_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14.49L18,9c0,-1.1 -0.9,-2 -2,-2L16,3h-2v4h-3.88l7.69,7.69 0.19,-0.2zM10,3L8,3v1.88l2,2zM4.12,3.84L2.71,5.25l3.34,3.34c-0.03,0.13 -0.05,0.27 -0.05,0.4v5.51L9.5,18v3h5v-3l0.48,-0.48 4.47,4.47 1.41,-1.41L4.12,3.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/power_settings_new.xml b/compose/material/material/icons/generator/raw-icons/sharp/power_settings_new.xml
deleted file mode 100644
index 7495b98..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/power_settings_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3h-2v10h2L13,3zM17.83,5.17l-1.42,1.42C17.99,7.86 19,9.81 19,12c0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-2.19 1.01,-4.14 2.58,-5.42L6.17,5.17C4.23,6.82 3,9.26 3,12c0,4.97 4.03,9 9,9s9,-4.03 9,-9c0,-2.74 -1.23,-5.18 -3.17,-6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/precision_manufacturing.xml b/compose/material/material/icons/generator/raw-icons/sharp/precision_manufacturing.xml
deleted file mode 100644
index 072e17b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/precision_manufacturing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10V9.82l2.01,2.01l5.23,-2.44l-0.63,-1.36l-4.28,2L14,7.7V6.3l2.33,-2.33l4.28,2l0.63,-1.36l-5.23,-2.44L14,4.18V4h-2v2H8.82C8.4,4.84 7.3,4 6,4C4.34,4 3,5.34 3,7c0,1.1 0.6,2.05 1.48,2.58L7.08,18H4v3h13v-3h-3.62L8.41,8.76C8.58,8.53 8.72,8.28 8.82,8H12v2H14zM6,8C5.45,8 5,7.55 5,7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C7,7.55 6.55,8 6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/pregnant_woman.xml b/compose/material/material/icons/generator/raw-icons/sharp/pregnant_woman.xml
deleted file mode 100644
index 2c3319f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/pregnant_woman.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2 -0.89,2 -2,2 -2,-0.89 -2,-2zM16,13c-0.01,-1.34 -0.83,-2.51 -2,-3 0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3v7h2v5h3v-5h3v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/present_to_all.xml b/compose/material/material/icons/generator/raw-icons/sharp/present_to_all.xml
deleted file mode 100644
index 08dea0eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/present_to_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM21,19.02L3,19.02L3,4.98h18v14.04zM10,12L8,12l4,-4 4,4h-2v4h-4v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/preview.xml b/compose/material/material/icons/generator/raw-icons/sharp/preview.xml
deleted file mode 100644
index 06009b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/preview.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM19,19H5V7h14V19zM13.5,13c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5S13.5,12.17 13.5,13zM12,9c-2.73,0 -5.06,1.66 -6,4c0.94,2.34 3.27,4 6,4s5.06,-1.66 6,-4C17.06,10.66 14.73,9 12,9zM12,15.5c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5c1.38,0 2.5,1.12 2.5,2.5C14.5,14.38 13.38,15.5 12,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/price_change.xml b/compose/material/material/icons/generator/raw-icons/sharp/price_change.xml
deleted file mode 100644
index 0adc98d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/price_change.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM12,10H8v1h4v5h-2v1H8v-1H6v-2h4v-1H6V8h2V7h2v1h2V10zM16,16.25l-2,-2h4L16,16.25zM14,10l2,-2l2,2H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/price_check.xml b/compose/material/material/icons/generator/raw-icons/sharp/price_check.xml
deleted file mode 100644
index b30c2c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/price_check.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8l-5,0l0,-2l5,0l0,-2l-2.5,0l0,-1l-2,0l0,1l-2.5,0l0,6l5,0l0,2l-5,0l0,2l2.5,0l0,1l2,0l0,-1l2.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,12.52l-5.66,5.65l-2.83,-2.83l-1.41,1.42l4.24,4.24l7.07,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/print.xml b/compose/material/material/icons/generator/raw-icons/sharp/print.xml
deleted file mode 100644
index faad14c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/print.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,8L2,8v9h4v4h12v-4h4L22,8zM16,19L8,19v-5h8v5zM19,12c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,3L6,3v4h12L18,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/print_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/print_disabled.xml
deleted file mode 100644
index 867322a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/print_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.65,7L18,7L18,3.01L6,3.01v0.35zM10.66,8.01l9,8.99L22,17v-5.99c0,-1.66 -1.34,-3 -3,-3h-8.34zM19,10c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM1.41,1.6L0,3.01l5,5c-1.66,0 -3,1.33 -3,2.99v6h4v4h12l2.95,2.96 1.41,-1.41L1.41,1.6zM8,19.01L8,15h4l4,4 -8,0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/priority_high.xml b/compose/material/material/icons/generator/raw-icons/sharp/priority_high.xml
deleted file mode 100644
index fd4a832..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/priority_high.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/privacy_tip.xml b/compose/material/material/icons/generator/raw-icons/sharp/privacy_tip.xml
deleted file mode 100644
index 99e31f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/privacy_tip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1L12,1zM11,7h2v2h-2V7zM11,11h2v6h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/private_connectivity.xml b/compose/material/material/icons/generator/raw-icons/sharp/private_connectivity.xml
deleted file mode 100644
index f17e1f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/private_connectivity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.93,11c-0.49,-3.39 -3.4,-6 -6.93,-6s-6.44,2.61 -6.93,6H2v2h3.07c0.49,3.39 3.4,6 6.93,6s6.44,-2.61 6.93,-6H22v-2H18.93zM15,10.5v5H9v-5h1v-1c0,-1.21 1.08,-2.18 2.34,-1.97C13.32,7.69 14,8.61 14,9.61l0,0.89H15zM12.75,13c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75S12.75,12.59 12.75,13zM13,9.5v1h-2v-1c0,-0.55 0.45,-1 1,-1S13,8.95 13,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/production_quantity_limits.xml b/compose/material/material/icons/generator/raw-icons/sharp/production_quantity_limits.xml
deleted file mode 100644
index 125519b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/production_quantity_limits.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h-2V8h2V10zM13,6h-2V1h2V6zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2H7L8.1,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/propane.xml b/compose/material/material/icons/generator/raw-icons/sharp/propane.xml
deleted file mode 100644
index 0dc41a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/propane.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.75,6L16,6V3H8v3L7.25,6C3.97,6 1.1,8.53 1,11.82C0.9,15.21 3.62,18 7,18v3h2v-3h6v3h2v-3c3.38,0 6.1,-2.79 6,-6.18C22.9,8.53 20.03,6 16.75,6zM10,5h4v1h-4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/propane_tank.xml b/compose/material/material/icons/generator/raw-icons/sharp/propane_tank.xml
deleted file mode 100644
index 4c9bd02..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/propane_tank.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15v3c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4v-3H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13v-3c0,-1.86 -1.28,-3.41 -3,-3.86V2H7v4.14c-1.72,0.45 -3,2 -3,3.86v3H20zM9,4h6v2h-2V5h-2v1H9V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/psychology.xml b/compose/material/material/icons/generator/raw-icons/sharp/psychology.xml
deleted file mode 100644
index a5a4aaf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/psychology.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.57c-0.79,0 -1.43,0.64 -1.43,1.43s0.64,1.43 1.43,1.43s1.43,-0.64 1.43,-1.43S13.79,8.57 13,8.57z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3C9.25,3 6.2,5.94 6.02,9.64L4.1,12.2C3.85,12.53 4.09,13 4.5,13H6v3c0,1.1 0.9,2 2,2h1v3h7v-4.68c2.36,-1.12 4,-3.53 4,-6.32C20,6.13 16.87,3 13,3zM16,10c0,0.13 -0.01,0.26 -0.02,0.39l0.83,0.66c0.08,0.06 0.1,0.16 0.05,0.25l-0.8,1.39c-0.05,0.09 -0.16,0.12 -0.24,0.09l-0.99,-0.4c-0.21,0.16 -0.43,0.29 -0.67,0.39L14,13.83c-0.01,0.1 -0.1,0.17 -0.2,0.17h-1.6c-0.1,0 -0.18,-0.07 -0.2,-0.17l-0.15,-1.06c-0.25,-0.1 -0.47,-0.23 -0.68,-0.39l-0.99,0.4c-0.09,0.03 -0.2,0 -0.25,-0.09l-0.8,-1.39c-0.05,-0.08 -0.03,-0.19 0.05,-0.25l0.84,-0.66C10.01,10.26 10,10.13 10,10c0,-0.13 0.02,-0.27 0.04,-0.39L9.19,8.95c-0.08,-0.06 -0.1,-0.16 -0.05,-0.26l0.8,-1.38c0.05,-0.09 0.15,-0.12 0.24,-0.09l1,0.4c0.2,-0.15 0.43,-0.29 0.67,-0.39l0.15,-1.06C12.02,6.07 12.1,6 12.2,6h1.6c0.1,0 0.18,0.07 0.2,0.17l0.15,1.06c0.24,0.1 0.46,0.23 0.67,0.39l1,-0.4c0.09,-0.03 0.2,0 0.24,0.09l0.8,1.38c0.05,0.09 0.03,0.2 -0.05,0.26l-0.85,0.66C15.99,9.73 16,9.86 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/psychology_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/psychology_alt.xml
deleted file mode 100644
index 81e7a09..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/psychology_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,9.06C19.5,5.73 16.57,3 13,3C9.47,3 6.57,5.61 6.08,9l-1.93,3.48C3.74,13.14 4.22,14 5,14h1l0,4h3v3h7l0,-4.68C18.62,15.07 20.35,12.24 19.94,9.06zM12.5,14c-0.41,0 -0.74,-0.33 -0.74,-0.74c0,-0.41 0.33,-0.73 0.74,-0.73c0.41,0 0.73,0.32 0.73,0.73C13.23,13.67 12.92,14 12.5,14zM14.26,9.68c-0.44,0.65 -0.86,0.85 -1.09,1.27c-0.09,0.17 -0.13,0.28 -0.13,0.82h-1.06c0,-0.29 -0.04,-0.75 0.18,-1.16c0.28,-0.51 0.83,-0.81 1.14,-1.26c0.33,-0.47 0.15,-1.36 -0.8,-1.36c-0.62,0 -0.92,0.47 -1.05,0.86l-0.96,-0.4C10.76,7.67 11.46,7 12.5,7c0.86,0 1.45,0.39 1.75,0.88C14.51,8.31 14.66,9.1 14.26,9.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/public.xml b/compose/material/material/icons/generator/raw-icons/sharp/public.xml
deleted file mode 100644
index 19fb425..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/public.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L9,15v1c0,1.1 0.9,2 2,2v1.93zM17.9,17.39c-0.26,-0.81 -1,-1.39 -1.9,-1.39h-1v-3c0,-0.55 -0.45,-1 -1,-1L8,12v-2h2c0.55,0 1,-0.45 1,-1L11,7h2c1.1,0 2,-0.9 2,-2v-0.41c2.93,1.19 5,4.06 5,7.41 0,2.08 -0.8,3.97 -2.1,5.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/public_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/public_off.xml
deleted file mode 100644
index 03f1d1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/public_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.87 20,13.48 20,12c0,-3.35 -2.07,-6.22 -5,-7.41V5c0,1.1 -0.9,2 -2,2h-2V8.17zM21.19,21.19l-1.41,1.41l-2.27,-2.27C15.93,21.39 14.04,22 12,22C6.48,22 2,17.52 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41L21.19,21.19zM11,18c-1.1,0 -2,-0.9 -2,-2v-1l-4.79,-4.79C4.08,10.79 4,11.38 4,12c0,4.08 3.05,7.44 7,7.93V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/publish.xml b/compose/material/material/icons/generator/raw-icons/sharp/publish.xml
deleted file mode 100644
index 627759d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/publish.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4v2h14L19,4L5,4zM5,14h4v6h6v-6h4l-7,-7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/published_with_changes.xml b/compose/material/material/icons/generator/raw-icons/sharp/published_with_changes.xml
deleted file mode 100644
index 2c3609b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/published_with_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,9.53l-7.07,7.07l-4.24,-4.24l1.41,-1.41l2.83,2.83l5.66,-5.66L17.66,9.53zM4,12c0,-2.33 1.02,-4.42 2.62,-5.88L9,8.5v-6H3l2.2,2.2C3.24,6.52 2,9.11 2,12c0,5.19 3.95,9.45 9,9.95v-2.02C7.06,19.44 4,16.07 4,12zM22,12c0,-5.19 -3.95,-9.45 -9,-9.95v2.02c3.94,0.49 7,3.86 7,7.93c0,2.33 -1.02,4.42 -2.62,5.88L15,15.5v6h6l-2.2,-2.2C20.76,17.48 22,14.89 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/punch_clock.xml b/compose/material/material/icons/generator/raw-icons/sharp/punch_clock.xml
deleted file mode 100644
index 826f685..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/punch_clock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-3V1H6v5H3v16h18V6zM8,3h8v3H8V3zM12,19c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c2.76,0 5,2.24 5,5S14.76,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.5l-1,0l0,2.71l1.64,1.64l0.71,-0.71l-1.35,-1.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/push_pin.xml b/compose/material/material/icons/generator/raw-icons/sharp/push_pin.xml
deleted file mode 100644
index 1bd038a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/push_pin.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9V4l2,0V2H6v2l2,0v5c0,1.66 -1.34,3 -3,3h0v2h5.97v7l1,1l1,-1v-7H19v-2h0C17.34,12 16,10.66 16,9z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/qr_code.xml b/compose/material/material/icons/generator/raw-icons/sharp/qr_code.xml
deleted file mode 100644
index e9366bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/qr_code.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/qr_code_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/qr_code_2.xml
deleted file mode 100644
index 6918603..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/qr_code_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h-2v-2h2V21zM13,14h-2v5h2V14zM21,12h-2v4h2V12zM19,10h-2v2h2V10zM7,12H5v2h2V12zM5,10H3v2h2V10zM12,5h2V3h-2V5zM4.5,4.5v3h3v-3H4.5zM9,9H3V3h6V9zM4.5,16.5v3h3v-3H4.5zM9,21H3v-6h6V21zM16.5,4.5v3h3v-3H16.5zM21,9h-6V3h6V9zM19,19v-3l-4,0v2h2v3h4v-2H19zM17,12l-4,0v2h4V12zM13,10H7v2h2v2h2v-2h2V10zM14,9V7h-2V5h-2v4L14,9zM6.75,5.25h-1.5v1.5h1.5V5.25zM6.75,17.25h-1.5v1.5h1.5V17.25zM18.75,5.25h-1.5v1.5h1.5V5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/qr_code_scanner.xml b/compose/material/material/icons/generator/raw-icons/sharp/qr_code_scanner.xml
deleted file mode 100644
index 597e8d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/qr_code_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,6.5v3h-3v-3H9.5M11,5H5v6h6V5L11,5zM9.5,14.5v3h-3v-3H9.5M11,13H5v6h6V13L11,13zM17.5,6.5v3h-3v-3H17.5M19,5h-6v6h6V5L19,5zM13,13h1.5v1.5H13V13zM14.5,14.5H16V16h-1.5V14.5zM16,13h1.5v1.5H16V13zM13,16h1.5v1.5H13V16zM14.5,17.5H16V19h-1.5V17.5zM16,16h1.5v1.5H16V16zM17.5,14.5H19V16h-1.5V14.5zM17.5,17.5H19V19h-1.5V17.5zM22,7h-2V4h-3V2h5V7zM22,22v-5h-2v3h-3v2H22zM2,22h5v-2H4v-3H2V22zM2,2v5h2V4h3V2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/query_builder.xml b/compose/material/material/icons/generator/raw-icons/sharp/query_builder.xml
deleted file mode 100644
index 28e127d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/query_builder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/query_stats.xml b/compose/material/material/icons/generator/raw-icons/sharp/query_stats.xml
deleted file mode 100644
index 736d761..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/query_stats.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.88,18.47c0.44,-0.7 0.7,-1.51 0.7,-2.39c0,-2.49 -2.01,-4.5 -4.5,-4.5s-4.5,2.01 -4.5,4.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21.58,23L23,21.58L19.88,18.47zM16.08,18.58c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C18.58,17.46 17.46,18.58 16.08,18.58zM15.72,10.08c-0.74,0.02 -1.45,0.18 -2.1,0.45l-0.55,-0.83l-3.8,6.18l-3.01,-3.52l-3.63,5.81L1,17l5,-8l3,3.5L13,6C13,6 15.72,10.08 15.72,10.08zM18.31,10.58c-0.64,-0.28 -1.33,-0.45 -2.05,-0.49c0,0 5.12,-8.09 5.12,-8.09L23,3.18L18.31,10.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/question_answer.xml b/compose/material/material/icons/generator/raw-icons/sharp/question_answer.xml
deleted file mode 100644
index a170682..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/question_answer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6h-3v9L6,15v3h12l4,4L22,6zM17,13L17,2L2,2v15l4,-4h11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/question_mark.xml b/compose/material/material/icons/generator/raw-icons/sharp/question_mark.xml
deleted file mode 100644
index e8cfd61..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/question_mark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,12.85c0.77,-1.39 2.25,-2.21 3.11,-3.44c0.91,-1.29 0.4,-3.7 -2.18,-3.7c-1.69,0 -2.52,1.28 -2.87,2.34L6.54,6.96C7.25,4.83 9.18,3 11.99,3c2.35,0 3.96,1.07 4.78,2.41c0.7,1.15 1.11,3.3 0.03,4.9c-1.2,1.77 -2.35,2.31 -2.97,3.45c-0.25,0.46 -0.35,0.76 -0.35,2.24h-2.89C10.58,15.22 10.46,13.95 11.07,12.85zM14,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2S14,18.9 14,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/queue.xml b/compose/material/material/icons/generator/raw-icons/sharp/queue.xml
deleted file mode 100644
index f638651..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v16h16v-2L4,20L4,6zM22,2L6,2v16h16L22,2zM19,11h-4v4h-2v-4L9,11L9,9h4L13,5h2v4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/queue_music.xml b/compose/material/material/icons/generator/raw-icons/sharp/queue_music.xml
deleted file mode 100644
index a237d65..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/queue_music.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6H3v2h12V6zM15,10H3v2h12V10zM3,16h8v-2H3V16zM17,6v8.18C16.69,14.07 16.35,14 16,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3V8h3V6H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/queue_play_next.xml b/compose/material/material/icons/generator/raw-icons/sharp/queue_play_next.xml
deleted file mode 100644
index c4c2854..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/queue_play_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v16h7v2h8v-2h2v-2L3,17L3,5h18v8h2L23,3zM13,10L13,7h-2v3L8,10v2h3v3h2v-3h3v-2h-3zM24,18l-4.5,4.5L18,21l3,-3 -3,-3 1.5,-1.5L24,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/quickreply.xml b/compose/material/material/icons/generator/raw-icons/sharp/quickreply.xml
deleted file mode 100644
index 6073223..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/quickreply.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2l-20,0l0,20l4,-4l9,0l0,-8l7,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16l-2.2,0l1.7,-4l-5,0l0,6l2,0l0,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/quiz.xml b/compose/material/material/icons/generator/raw-icons/sharp/quiz.xml
deleted file mode 100644
index 65d5a8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/quiz.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6l-2,0l0,16l16,0l0,-2l-14,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v16h16V2H6zM13.51,10.16c0.41,-0.73 1.18,-1.16 1.63,-1.8c0.48,-0.68 0.21,-1.94 -1.14,-1.94c-0.88,0 -1.32,0.67 -1.5,1.23l-1.37,-0.57C11.51,5.96 12.52,5 13.99,5c1.23,0 2.08,0.56 2.51,1.26c0.37,0.6 0.58,1.73 0.01,2.57c-0.63,0.93 -1.23,1.21 -1.56,1.81c-0.13,0.24 -0.18,0.4 -0.18,1.18h-1.52C13.26,11.41 13.19,10.74 13.51,10.16zM12.95,13.95c0,-0.59 0.47,-1.04 1.05,-1.04c0.59,0 1.04,0.45 1.04,1.04c0,0.58 -0.44,1.05 -1.04,1.05C13.42,15 12.95,14.53 12.95,13.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/r_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/sharp/r_mobiledata.xml
deleted file mode 100644
index 48d04cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/r_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h7v5.2H7.8zM7,4H4v1.33h3V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/radar.xml b/compose/material/material/icons/generator/raw-icons/sharp/radar.xml
deleted file mode 100644
index b811ecf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/radar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.74,18.33C21.15,16.6 22,14.4 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10c2.4,0 4.6,-0.85 6.33,-2.26c0.27,-0.22 0.53,-0.46 0.78,-0.71c0.03,-0.03 0.05,-0.06 0.07,-0.08C19.38,18.75 19.57,18.54 19.74,18.33zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.43,-1.43c0.69,-0.98 1.1,-2.17 1.1,-3.46c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6s2.69,6 6,6c1.3,0 2.51,-0.42 3.49,-1.13l1.42,1.42C15.54,19.37 13.85,20 12,20zM13.92,12.51c0.17,-0.66 0.02,-1.38 -0.49,-1.9l-0.02,-0.02c-0.77,-0.77 -2,-0.78 -2.78,-0.04c-0.01,0.01 -0.03,0.02 -0.05,0.04c-0.78,0.78 -0.78,2.05 0,2.83l0.02,0.02c0.52,0.51 1.25,0.67 1.91,0.49l1.51,1.51c-0.6,0.36 -1.29,0.58 -2.04,0.58c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4c0,0.73 -0.21,1.41 -0.56,2L13.92,12.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/radio.xml b/compose/material/material/icons/generator/raw-icons/sharp/radio.xml
deleted file mode 100644
index f169f45..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/radio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6.67L2,22h20L22,6L8.3,6l8.26,-3.34L15.88,1 2,6.67zM7,20c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM20,12h-2v-2h-2v2L4,12L4,8h16v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/radio_button_checked.xml b/compose/material/material/icons/generator/raw-icons/sharp/radio_button_checked.xml
deleted file mode 100644
index 6d654e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/radio_button_checked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/radio_button_unchecked.xml b/compose/material/material/icons/generator/raw-icons/sharp/radio_button_unchecked.xml
deleted file mode 100644
index bcb6fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/radio_button_unchecked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/railway_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/railway_alert.xml
deleted file mode 100644
index a058c54..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/railway_alert.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29c-0.77,-2.6 0.21,-4.61 0.37,-4.97C2.97,2.67 2,5.02 2,7v9.5C2,18.43 3.57,20 5.5,20L4,21v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM10,17c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C11.5,16.33 10.83,17 10,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ramen_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/ramen_dining.xml
deleted file mode 100644
index d6b0024..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ramen_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.51V2L4,3.99V12H2c0,3.69 2.47,6.86 6,8.25V22h8v-1.75c3.53,-1.39 6,-4.56 6,-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51zM6.5,5.22V6.5h-1V5.34L6.5,5.22zM5.5,8h1v4h-1V8zM9,12H8V8h1V12zM9,6.5H8V5.06l1,-0.11V6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ramp_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/ramp_left.xml
deleted file mode 100644
index a70ce96..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ramp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21h-2V6.83L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83V9c0,4.27 4.03,7.13 6,8.27l-1.46,1.46c-1.91,-1.16 -3.44,-2.53 -4.54,-4.02L13,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ramp_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/ramp_right.xml
deleted file mode 100644
index d5a12d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ramp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2V6.83l1.59,1.59L16,7l-4,-4L8,7l1.41,1.41L11,6.83V9c0,4.27 -4.03,7.13 -6,8.27l1.46,1.46C8.37,17.56 9.9,16.19 11,14.7L11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rate_review.xml b/compose/material/material/icons/generator/raw-icons/sharp/rate_review.xml
deleted file mode 100644
index e95a943..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rate_review.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v20l4,-4h16L22,2zM6,14v-2.47l6.88,-6.88c0.2,-0.2 0.51,-0.2 0.71,0l1.77,1.77c0.2,0.2 0.2,0.51 0,0.71L8.47,14L6,14zM18,14h-7.5l2,-2L18,12v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/raw_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/raw_off.xml
deleted file mode 100644
index c6744b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/raw_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.15,14.32l0.59,-2.36l0.76,3.04l1.48,0l1.5,-6l-1.5,0l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l0.72,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38,-1.5h0.04l9.11,9.11l1.41,-1.41L2.81,2.81L1.39,4.22zM6.5,11.5h-2v-1h2V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/raw_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/raw_on.xml
deleted file mode 100644
index 5f73dbd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/raw_on.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-1C8,9.7 7.3,9 6.5,9zM6.5,11.5h-2v-1h2V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.25,9l-1.5,6h1.5l0.38,-1.5h1.75l0.37,1.5h1.5l-1.5,-6H10.25zM11,12l0.25,-1h0.5L12,12H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,9l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l1.5,6l1.48,0l0.76,-3.04l0.76,3.04l1.48,0l1.5,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/read_more.xml b/compose/material/material/icons/generator/raw-icons/sharp/read_more.xml
deleted file mode 100644
index feaa455..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/read_more.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l-5,-5l0,4l-6,0l0,2l6,0l0,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/real_estate_agent.xml b/compose/material/material/icons/generator/raw-icons/sharp/real_estate_agent.xml
deleted file mode 100644
index bcdf389..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/real_estate_agent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,22h4V11H1V22zM14,1.5l-7,5V9h2l10,4v2h2V6.5L14,1.5zM13.5,10h-1V9h1V10zM13.5,8h-1V7h1V8zM15.5,10h-1V9h1V10zM15.5,8h-1V7h1V8zM22,19l-8,3l-7,-1.98V11h1.97L17,14l0,2h-4l-1.76,-0.68l-0.33,0.94L13,17h9V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/receipt.xml b/compose/material/material/icons/generator/raw-icons/sharp/receipt.xml
deleted file mode 100644
index 457287e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/receipt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17L6,17v-2h12v2zM18,13L6,13v-2h12v2zM18,9L6,9L6,7h12v2zM3,22l1.5,-1.5L6,22l1.5,-1.5L9,22l1.5,-1.5L12,22l1.5,-1.5L15,22l1.5,-1.5L18,22l1.5,-1.5L21,22L21,2l-1.5,1.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2 7.5,3.5 6,2 4.5,3.5 3,2v20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/receipt_long.xml b/compose/material/material/icons/generator/raw-icons/sharp/receipt_long.xml
deleted file mode 100644
index 38ff6ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/receipt_long.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3V2L19.5,3.5zM15,20H6c-0.55,0 -1,-0.45 -1,-1v-1h10V20zM19,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3H8V5h11V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/recent_actors.xml b/compose/material/material/icons/generator/raw-icons/sharp/recent_actors.xml
deleted file mode 100644
index b495267..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/recent_actors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5v14h2L23,5h-2zM17,19h2L19,5h-2v14zM15,5L1,5v14h14L15,5zM8,7.75c1.24,0 2.25,1.01 2.25,2.25S9.24,12.25 8,12.25 5.75,11.24 5.75,10 6.76,7.75 8,7.75zM12.5,17h-9v-0.75c0,-1.5 3,-2.25 4.5,-2.25s4.5,0.75 4.5,2.25L12.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/recommend.xml b/compose/material/material/icons/generator/raw-icons/sharp/recommend.xml
deleted file mode 100644
index 872fb88..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/recommend.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM18,12.05L15.46,18H7l0,-7.56L12,5l1,1l0,0.53L12.41,10H18V12.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/record_voice_over.xml b/compose/material/material/icons/generator/raw-icons/sharp/record_voice_over.xml
deleted file mode 100644
index 42cf1fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/record_voice_over.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM15.08,7.05c0.84,1.18 0.84,2.71 0,3.89l1.68,1.69c2.02,-2.02 2.02,-5.07 0,-7.27l-1.68,1.69zM20.07,2l-1.63,1.63c2.77,3.02 2.77,7.56 0,10.74L20.07,16c3.9,-3.89 3.91,-9.95 0,-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rectangle.xml b/compose/material/material/icons/generator/raw-icons/sharp/rectangle.xml
deleted file mode 100644
index 9f72c78..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rectangle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4h20v16h-20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/recycling.xml b/compose/material/material/icons/generator/raw-icons/sharp/recycling.xml
deleted file mode 100644
index bd30b8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/recycling.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.77,7.15L7.2,4.78l1.03,-1.71c0.39,-0.65 1.33,-0.65 1.72,0l1.48,2.46l-1.23,2.06L9.2,9.21L5.77,7.15zM21.72,12.97l-1.6,-2.66l-3.46,2L18.87,16H20c0.76,0 1.45,-0.43 1.79,-1.11C21.93,14.61 22,14.31 22,14C22,13.64 21.9,13.29 21.72,12.97zM16,21h1.5c0.76,0 1.45,-0.43 1.79,-1.11L20.74,17H16v-2l-4,4l4,4V21zM10,17H5.7l-0.84,1.41c-0.3,0.5 -0.32,1.12 -0.06,1.65l0,0C5.08,20.63 5.67,21 6.32,21H10V17zM6.12,14.35l1.73,1.04L6.48,9.9L1,11.27l1.7,1.02l-0.41,0.69c-0.35,0.59 -0.38,1.31 -0.07,1.92l1.63,3.26L6.12,14.35zM17.02,5.14l-1.3,-2.17C15.35,2.37 14.7,2 14,2h-3.53l3.12,5.2l-1.72,1.03l5.49,1.37l1.37,-5.49L17.02,5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/redeem.xml b/compose/material/material/icons/generator/raw-icons/sharp/redeem.xml
deleted file mode 100644
index 0c846d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/redeem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6h-4.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L2,6v15h20L22,6zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 12,7.4l3.38,4.6L17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/redo.xml b/compose/material/material/icons/generator/raw-icons/sharp/redo.xml
deleted file mode 100644
index 4e218168..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/redo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.4,10.6C16.55,8.99 14.15,8 11.5,8c-4.65,0 -8.58,3.03 -9.96,7.22L3.9,16c1.05,-3.19 4.05,-5.5 7.6,-5.5 1.95,0 3.73,0.72 5.12,1.88L13,16h9V7l-3.6,3.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/reduce_capacity.xml b/compose/material/material/icons/generator/raw-icons/sharp/reduce_capacity.xml
deleted file mode 100644
index bd11991..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/reduce_capacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S16,5.1 16,4zM20.78,7.58C19.93,7.21 18.99,7 18,7c-0.67,0 -1.31,0.1 -1.92,0.28C16.66,7.83 17,8.6 17,9.43V10h5V9.43C22,8.62 21.52,7.9 20.78,7.58zM6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM7.92,7.28C7.31,7.1 6.67,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h5V9.43C7,8.6 7.34,7.83 7.92,7.28zM10,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,5.1 10,4zM16,10H8V9.43C8,8.62 8.48,7.9 9.22,7.58C10.07,7.21 11.01,7 12,7c0.99,0 1.93,0.21 2.78,0.58C15.52,7.9 16,8.62 16,9.43V10zM15,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S15,17.1 15,16zM21,22h-8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C15.07,19.21 16.01,19 17,19c0.99,0 1.93,0.21 2.78,0.58C20.52,19.9 21,20.62 21,21.43V22zM5,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S5,17.1 5,16zM11,22H3v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C5.07,19.21 6.01,19 7,19c0.99,0 1.93,0.21 2.78,0.58C10.52,19.9 11,20.62 11,21.43V22zM12.75,13v-2h-1.5v2H9l3,3l3,-3H12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/refresh.xml b/compose/material/material/icons/generator/raw-icons/sharp/refresh.xml
deleted file mode 100644
index f2be45bab..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/refresh.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remember_me.xml b/compose/material/material/icons/generator/raw-icons/sharp/remember_me.xml
deleted file mode 100644
index cbfb91a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remember_me.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H5v22h14V1zM17,15.21C15.5,14.44 13.8,14 12,14s-3.5,0.44 -5,1.21V6h10V15.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove.xml
deleted file mode 100644
index 791a2f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5v-2h14v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_circle.xml
deleted file mode 100644
index 2c986ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13L7,13v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_circle_outline.xml
deleted file mode 100644
index 60b9c1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11v2h10v-2L7,11zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_done.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_done.xml
deleted file mode 100644
index 621af7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24,-4.24l-1.41,1.41l5.66,5.66l2.83,-2.83l6.6,6.6l1.41,-1.41L4.84,1.98zM18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36zM17.34,7.4l-1.41,-1.41l-2.12,2.12l1.41,1.41L17.34,7.4zM1.08,12.35l5.66,5.66l1.41,-1.41l-5.66,-5.66L1.08,12.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_from_queue.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_from_queue.xml
deleted file mode 100644
index e36adb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_from_queue.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v16h7v2h8v-2h7L23,3zM21,17L3,17L3,5h18v12zM16,10v2L8,12v-2h8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_moderator.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_moderator.xml
deleted file mode 100644
index 30e149a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_moderator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11.09V5l-8,-3L6.78,3.96l12.09,12.09C19.59,14.52 20,12.83 20,11.09zM2.81,2.81L1.39,4.22L4,6.83v4.26c0,5.05 3.41,9.76 8,10.91c1.72,-0.43 3.28,-1.36 4.55,-2.62l3.23,3.23l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_red_eye.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_red_eye.xml
deleted file mode 100644
index a3e222a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_red_eye.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_road.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_road.xml
deleted file mode 100644
index 8923945..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.41l-1.41,-1.41l-2.09,2.09l-2.09,-2.09l-1.41,1.41l2.09,2.09l-2.09,2.09l1.41,1.41l2.09,-2.09l2.09,2.09l1.41,-1.41l-2.09,-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/remove_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/sharp/remove_shopping_cart.xml
deleted file mode 100644
index 3be5982..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/remove_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.13L0,2.54l4.39,4.39 2.21,4.66L3.62,17h10.84l1.38,1.38c-0.5,0.36 -0.83,0.95 -0.83,1.62 0,1.1 0.89,2 1.99,2 0.67,0 1.26,-0.33 1.62,-0.84L21.46,24l1.41,-1.41L1.41,1.13zM7,15l1.1,-2h2.36l2,2L7,15zM16.05,12.94h0.73L21.7,4L7.12,4l8.93,8.94zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/reorder.xml b/compose/material/material/icons/generator/raw-icons/sharp/reorder.xml
deleted file mode 100644
index 57af84b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/reorder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h18v-2L3,13v2zM3,19h18v-2L3,17v2zM3,11h18L21,9L3,9v2zM3,5v2h18L21,5L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/repartition.xml b/compose/material/material/icons/generator/raw-icons/sharp/repartition.xml
deleted file mode 100644
index 69784ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/repartition.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-6H3V21zM10.33,19v-2h3.33v2H10.33zM19,19h-3.33v-2H19V19zM5,17h3.33v2H5V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10l1.42,-1.42L5.83,7H17c1.1,0 2,0.9 2,2s-0.9,2 -2,2H3v2h14c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4H5.83l1.59,-1.59L6,2L2,6L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/repeat.xml b/compose/material/material/icons/generator/raw-icons/sharp/repeat.xml
deleted file mode 100644
index 5f598a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/repeat_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/repeat_on.xml
deleted file mode 100644
index a2700e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/repeat_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,19H7v3l-4,-4l4,-4v3h10v-4h2V19zM17,10V7H7v4H5V5h12V2l4,4L17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/repeat_one.xml b/compose/material/material/icons/generator/raw-icons/sharp/repeat_one.xml
deleted file mode 100644
index 234c002..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/repeat_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4zM13,15L13,9h-1l-2,1v1h1.5v4L13,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/repeat_one_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/repeat_one_on.xml
deleted file mode 100644
index 0538cf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/repeat_one_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,19H7v3l-4,-4l4,-4v3h10v-4h2V19zM10,10.5V9h3v6h-1.5v-4.5H10zM17,10V7H7v4H5V5h12V2l4,4L17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/replay.xml b/compose/material/material/icons/generator/raw-icons/sharp/replay.xml
deleted file mode 100644
index fde7353..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/replay.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V1L7,6l5,5V7c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6H4c0,4.42 3.58,8 8,8s8,-3.58 8,-8S16.42,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/replay_10.xml b/compose/material/material/icons/generator/raw-icons/sharp/replay_10.xml
deleted file mode 100644
index c7075d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/replay_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,5L11.99,1l-5,5 5,5L11.99,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6h-2c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77,-0.63h0.09L10.89,16zM15.17,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.32,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/replay_30.xml b/compose/material/material/icons/generator/raw-icons/sharp/replay_30.xml
deleted file mode 100644
index 7d6fee2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/replay_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,1L7,6l5,5L12,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6L4,13c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM9.56,13.49h0.45c0.21,0 0.37,-0.05 0.48,-0.16s0.16,-0.25 0.16,-0.43c0,-0.08 -0.01,-0.15 -0.04,-0.22s-0.06,-0.12 -0.11,-0.17 -0.11,-0.09 -0.18,-0.11 -0.16,-0.04 -0.25,-0.04c-0.08,0 -0.15,0.01 -0.22,0.03s-0.13,0.05 -0.18,0.1 -0.09,0.09 -0.12,0.15 -0.05,0.13 -0.05,0.2h-0.85c0,-0.18 0.04,-0.34 0.11,-0.48s0.17,-0.27 0.3,-0.37 0.27,-0.18 0.44,-0.23 0.35,-0.08 0.54,-0.08c0.21,0 0.41,0.03 0.59,0.08s0.33,0.13 0.46,0.23 0.23,0.23 0.3,0.38 0.11,0.33 0.11,0.53c0,0.09 -0.01,0.18 -0.04,0.27s-0.07,0.17 -0.13,0.25 -0.12,0.15 -0.2,0.22 -0.17,0.12 -0.28,0.17c0.24,0.09 0.42,0.21 0.54,0.39s0.18,0.38 0.18,0.61c0,0.2 -0.04,0.38 -0.12,0.53s-0.18,0.29 -0.32,0.39 -0.29,0.19 -0.48,0.24 -0.38,0.08 -0.6,0.08c-0.18,0 -0.36,-0.02 -0.53,-0.07s-0.33,-0.12 -0.46,-0.23 -0.25,-0.23 -0.33,-0.38 -0.12,-0.34 -0.12,-0.55h0.85c0,0.08 0.02,0.15 0.05,0.22s0.07,0.12 0.13,0.17 0.12,0.09 0.2,0.11 0.16,0.04 0.25,0.04c0.1,0 0.19,-0.01 0.27,-0.04s0.15,-0.07 0.2,-0.12 0.1,-0.11 0.13,-0.18 0.04,-0.15 0.04,-0.24c0,-0.11 -0.02,-0.21 -0.05,-0.29s-0.08,-0.15 -0.14,-0.2 -0.13,-0.09 -0.22,-0.11 -0.18,-0.04 -0.29,-0.04h-0.47v-0.65zM15.3,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.45,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32c0.03,-0.13 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/replay_5.xml b/compose/material/material/icons/generator/raw-icons/sharp/replay_5.xml
deleted file mode 100644
index e668cab..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/replay_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,1L7,6l5,5L12,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6L4,13c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM10.69,13.9l0.25,-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03,-0.02 0.07,-0.03 0.11,-0.05s0.09,-0.04 0.15,-0.05 0.12,-0.03 0.18,-0.04 0.13,-0.02 0.2,-0.02c0.21,0 0.39,0.03 0.55,0.1s0.3,0.16 0.41,0.28 0.2,0.27 0.25,0.45 0.09,0.38 0.09,0.6c0,0.19 -0.03,0.37 -0.09,0.54s-0.15,0.32 -0.27,0.45 -0.27,0.24 -0.45,0.31 -0.39,0.12 -0.64,0.12c-0.18,0 -0.36,-0.03 -0.53,-0.08s-0.32,-0.14 -0.46,-0.24 -0.24,-0.24 -0.32,-0.39 -0.13,-0.33 -0.13,-0.53h0.84c0.02,0.18 0.08,0.32 0.19,0.41s0.25,0.15 0.42,0.15c0.11,0 0.2,-0.02 0.27,-0.06s0.14,-0.1 0.18,-0.17 0.08,-0.15 0.11,-0.25 0.03,-0.2 0.03,-0.31 -0.01,-0.21 -0.04,-0.31 -0.07,-0.17 -0.13,-0.24 -0.13,-0.12 -0.21,-0.15 -0.19,-0.05 -0.3,-0.05c-0.08,0 -0.15,0.01 -0.2,0.02s-0.11,0.03 -0.15,0.05 -0.08,0.05 -0.12,0.07 -0.07,0.06 -0.1,0.09l-0.67,-0.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/replay_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/sharp/replay_circle_filled.xml
deleted file mode 100644
index 7e00978..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/replay_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM18,12.5c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6h2c0,2.21 1.79,4 4,4s4,-1.79 4,-4s-1.79,-4 -4,-4v3l-4,-4l4,-4v3C15.31,6.5 18,9.19 18,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/reply.xml b/compose/material/material/icons/generator/raw-icons/sharp/reply.xml
deleted file mode 100644
index 4c0db01..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/reply.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9V5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/reply_all.xml b/compose/material/material/icons/generator/raw-icons/sharp/reply_all.xml
deleted file mode 100644
index 6655ebe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/reply_all.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8L7,5l-7,7 7,7v-3l-4,-4 4,-4zM13,9L13,5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/report.xml b/compose/material/material/icons/generator/raw-icons/sharp/report.xml
deleted file mode 100644
index faf9451..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/report.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3L8.27,3L3,8.27v7.46L8.27,21h7.46L21,15.73L21,8.27L15.73,3zM12,17.3c-0.72,0 -1.3,-0.58 -1.3,-1.3s0.58,-1.3 1.3,-1.3 1.3,0.58 1.3,1.3 -0.58,1.3 -1.3,1.3zM13,13h-2L11,7h2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/report_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/sharp/report_gmailerrorred.xml
deleted file mode 100644
index 5efaf43..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/report_gmailerrorred.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1v5.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/report_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/report_off.xml
deleted file mode 100644
index 17eb4c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/report_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2.33l7.2,7.2 0.8,-0.8L21,8.27L15.73,3L8.27,3l-0.8,0.8L11,7.33zM2.41,1.58L1,2.99l3.64,3.64L3,8.27v7.46L8.27,21h7.46l1.64,-1.64L21.01,23l1.41,-1.41L2.41,1.58zM11,12.99l0.01,0.01L11,13v-0.01zM12,17.3c-0.72,0 -1.3,-0.58 -1.3,-1.3 0,-0.72 0.58,-1.3 1.3,-1.3s1.3,0.58 1.3,1.3c0,0.72 -0.58,1.3 -1.3,1.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/report_problem.xml b/compose/material/material/icons/generator/raw-icons/sharp/report_problem.xml
deleted file mode 100644
index a02bc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/report_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/request_page.xml b/compose/material/material/icons/generator/raw-icons/sharp/request_page.xml
deleted file mode 100644
index f39100a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/request_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4.01L4,22h16V8L14,2zM15,11h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9V9h2V8h2v1h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/request_quote.xml b/compose/material/material/icons/generator/raw-icons/sharp/request_quote.xml
deleted file mode 100644
index 191c288..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/request_quote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM15,12h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9v-5h2V9h2v1h2V12zM13,8V3.5L17.5,8H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/reset_tv.xml b/compose/material/material/icons/generator/raw-icons/sharp/reset_tv.xml
deleted file mode 100644
index f1b74df..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/reset_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10l-9.01,0l0,-3l-3.99,4l3.99,4l0,-3l7.01,0l0,5l-16,0l0,-12l16,0l0,3l2,0l0,-5l-20,0l0,16l6,0l0,2l8,0l0,-2l6,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/restart_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/restart_alt.xml
deleted file mode 100644
index 2f9f24c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/restart_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V2L8,6l4,4V7c3.31,0 6,2.69 6,6c0,2.97 -2.17,5.43 -5,5.91v2.02c3.95,-0.49 7,-3.85 7,-7.93C20,8.58 16.42,5 12,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c0,-1.65 0.67,-3.15 1.76,-4.24L6.34,7.34C4.9,8.79 4,10.79 4,13c0,4.08 3.05,7.44 7,7.93v-2.02C8.17,18.43 6,15.97 6,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/restaurant.xml b/compose/material/material/icons/generator/raw-icons/sharp/restaurant.xml
deleted file mode 100644
index 26d3cc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6v8h3v8h2L21,2c-2.76,0 -5,2.24 -5,4zM11,9L9,9L9,2L7,2v7L5,9L5,2L3,2v7c0,2.21 1.79,4 4,4v9h2v-9c2.21,0 4,-1.79 4,-4L13,2h-2v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/restaurant_menu.xml b/compose/material/material/icons/generator/raw-icons/sharp/restaurant_menu.xml
deleted file mode 100644
index 4797566..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/restaurant_menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66l4.19,4.18zM14.88,11.53c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/restore.xml b/compose/material/material/icons/generator/raw-icons/sharp/restore.xml
deleted file mode 100644
index 9912df0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l4,3.99L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.25,2.52 0.77,-1.28 -3.52,-2.09L13.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/restore_from_trash.xml b/compose/material/material/icons/generator/raw-icons/sharp/restore_from_trash.xml
deleted file mode 100644
index 791671e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/restore_from_trash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,21h12L18,7L6,7v14zM12,10l4,4h-2v4h-4v-4L8,14l4,-4zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/restore_page.xml b/compose/material/material/icons/generator/raw-icons/sharp/restore_page.xml
deleted file mode 100644
index 9fd16e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/restore_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L4,2v20h16L20,8l-6,-6zM12,18c-2.05,0 -3.81,-1.24 -4.58,-3h1.71c0.63,0.9 1.68,1.5 2.87,1.5 1.93,0 3.5,-1.57 3.5,-3.5S13.93,9.5 12,9.5c-1.35,0 -2.52,0.78 -3.1,1.9l1.6,1.6h-4L6.5,9l1.3,1.3C8.69,8.92 10.23,8 12,8c2.76,0 5,2.24 5,5s-2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/reviews.xml b/compose/material/material/icons/generator/raw-icons/sharp/reviews.xml
deleted file mode 100644
index 6851f79..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/reviews.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20l4,-4h16V2zM13.57,11.57L12,15l-1.57,-3.43L7,10l3.43,-1.57L12,5l1.57,3.43L17,10L13.57,11.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rice_bowl.xml b/compose/material/material/icons/generator/raw-icons/sharp/rice_bowl.xml
deleted file mode 100644
index e41bff6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rice_bowl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12L22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,3.69 2.47,6.86 6,8.25V22h8v-1.75C19.53,18.86 22,15.69 22,12zM20,12h-4V5.08C18.39,6.47 20,9.05 20,12zM14,4.26V12h-4V4.26C10.64,4.1 11.31,4 12,4S13.36,4.1 14,4.26zM4,12c0,-2.95 1.61,-5.53 4,-6.92V12H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ring_volume.xml b/compose/material/material/icons/generator/raw-icons/sharp/ring_volume.xml
deleted file mode 100644
index 2888785..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ring_volume.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.16,6.26l-1.41,-1.41 -3.56,3.55 1.41,1.41s3.45,-3.52 3.56,-3.55zM11,2h2v5h-2zM6.4,9.81L7.81,8.4 4.26,4.84 2.84,6.26c0.11,0.03 3.56,3.55 3.56,3.55zM0,17.39l3.68,3.68 3.92,-3.11v-3.37c2.85,-0.93 5.94,-0.93 8.8,0v3.38l3.91,3.1L24,17.39c-6.41,-7.19 -17.59,-7.19 -24,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rocket.xml b/compose/material/material/icons/generator/raw-icons/sharp/rocket.xml
deleted file mode 100644
index 93d5c20..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rocket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2.5c0,0 4.5,2.04 4.5,10.5c0,2.49 -1.04,5.57 -1.6,7H9.1c-0.56,-1.43 -1.6,-4.51 -1.6,-7C7.5,4.54 12,2.5 12,2.5zM14,11c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2S14,12.1 14,11zM7.69,20.52c-0.48,-1.23 -1.52,-4.17 -1.67,-6.87L4,15v7L7.69,20.52zM20,22v-7l-2.02,-1.35c-0.15,2.69 -1.2,5.64 -1.67,6.87L20,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rocket_launch.xml b/compose/material/material/icons/generator/raw-icons/sharp/rocket_launch.xml
deleted file mode 100644
index c516b716..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rocket_launch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.19,6.35c-2.04,2.29 -3.44,5.58 -3.57,5.89L2,10.69l4.81,-4.81L9.19,6.35L9.19,6.35zM11.17,17c0,0 3.74,-1.55 5.89,-3.7c5.4,-5.4 4.5,-9.62 4.21,-10.57c-0.95,-0.3 -5.17,-1.19 -10.57,4.21C8.55,9.09 7,12.83 7,12.83L11.17,17zM17.65,14.81c-2.29,2.04 -5.58,3.44 -5.89,3.57L13.31,22l4.81,-4.81L17.65,14.81L17.65,14.81zM9,18c0,0.83 -0.34,1.58 -0.88,2.12C6.94,21.3 2,22 2,22s0.7,-4.94 1.88,-6.12C4.42,15.34 5.17,15 6,15C7.66,15 9,16.34 9,18zM13,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S13,10.1 13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/roller_shades.xml b/compose/material/material/icons/generator/raw-icons/sharp/roller_shades.xml
deleted file mode 100644
index d39d7c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/roller_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM6,19v-6h5v1.8c-0.4,0.3 -0.8,0.8 -0.8,1.4c0,1 0.8,1.8 1.8,1.8s1.8,-0.8 1.8,-1.8c0,-0.6 -0.3,-1.1 -0.8,-1.4V13h5v6H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/roller_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/sharp/roller_shades_closed.xml
deleted file mode 100644
index b3979e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/roller_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h8.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM6,19v-2h5v2H6zM13,19v-2h5v2H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/roller_skating.xml b/compose/material/material/icons/generator/raw-icons/sharp/roller_skating.xml
deleted file mode 100644
index 60fd8bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/roller_skating.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16l-0.01,-6l-5.71,-1.43C13.4,8.35 12.7,7.76 12.32,7H9V6h3.02L12,5H9V4h3V1H4v15H20zM5,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S6.66,23 5,23zM19,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S20.66,23 19,23zM12,23c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,23 12,23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/roofing.xml b/compose/material/material/icons/generator/raw-icons/sharp/roofing.xml
deleted file mode 100644
index 5d5f2b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/roofing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18h-2v-2h2V18zM15,14H9v6h6V14L15,14zM19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7,-6.31L19,12h3L19,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/room.xml b/compose/material/material/icons/generator/raw-icons/sharp/room.xml
deleted file mode 100644
index e6dfeb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/room.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/room_preferences.xml b/compose/material/material/icons/generator/raw-icons/sharp/room_preferences.xml
deleted file mode 100644
index 306a32c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/room_preferences.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87 11,18.49 11,17C11,14.62 12.19,12.53 14,11.26zM10,11h2v2h-2V11zM21.69,16.37l1.14,-1l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L19,12h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.08,0.5 -0.08,0.76 0,1.26l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L17,22h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1C21.77,17.13 21.77,16.87 21.69,16.37zM18,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S19.1,19 18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/room_service.xml b/compose/material/material/icons/generator/raw-icons/sharp/room_service.xml
deleted file mode 100644
index 1b9253f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/room_service.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h20v2L2,19v-2zM13.84,7.79c0.1,-0.24 0.16,-0.51 0.16,-0.79 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2c0,0.28 0.06,0.55 0.16,0.79C6.25,8.6 3.27,11.93 3,16h18c-0.27,-4.07 -3.25,-7.4 -7.16,-8.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rotate_90_degrees_ccw.xml b/compose/material/material/icons/generator/raw-icons/sharp/rotate_90_degrees_ccw.xml
deleted file mode 100644
index 417aa80..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rotate_90_degrees_ccw.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.34,6.41L0.86,12.9l6.49,6.48 6.49,-6.48 -6.5,-6.49zM3.69,12.9l3.66,-3.66L11,12.9l-3.66,3.66 -3.65,-3.66zM19.36,6.64C17.61,4.88 15.3,4 13,4L13,0.76L8.76,5 13,9.24L13,6c1.79,0 3.58,0.68 4.95,2.05 2.73,2.73 2.73,7.17 0,9.9C16.58,19.32 14.79,20 13,20c-0.97,0 -1.94,-0.21 -2.84,-0.61l-1.49,1.49C10.02,21.62 11.51,22 13,22c2.3,0 4.61,-0.88 6.36,-2.64 3.52,-3.51 3.52,-9.21 0,-12.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rotate_90_degrees_cw.xml b/compose/material/material/icons/generator/raw-icons/sharp/rotate_90_degrees_cw.xml
deleted file mode 100644
index b3a7832..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rotate_90_degrees_cw.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.64,19.37c3.03,3.03 7.67,3.44 11.15,1.25l-1.46,-1.46c-2.66,1.43 -6.04,1.03 -8.28,-1.21c-2.73,-2.73 -2.73,-7.17 0,-9.9C7.42,6.69 9.21,6.03 11,6.03V9l4,-4l-4,-4v3.01c-2.3,0 -4.61,0.87 -6.36,2.63C1.12,10.15 1.12,15.85 4.64,19.37z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7l-6,6l6,6l6,-6L17,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rotate_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/rotate_left.xml
deleted file mode 100644
index f57e17d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rotate_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11h2.02c0.14,-0.87 0.49,-1.72 1.02,-2.47zM6.09,13L4.07,13c0.17,1.39 0.72,2.73 1.62,3.89l1.41,-1.42c-0.52,-0.75 -0.87,-1.59 -1.01,-2.47zM7.1,18.32c1.16,0.9 2.51,1.44 3.9,1.61L11,17.9c-0.87,-0.15 -1.71,-0.49 -2.46,-1.03L7.1,18.32zM13,4.07L13,1L8.45,5.55 13,10L13,6.09c2.84,0.48 5,2.94 5,5.91s-2.16,5.43 -5,5.91v2.02c3.95,-0.49 7,-3.85 7,-7.93s-3.05,-7.44 -7,-7.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rotate_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/rotate_right.xml
deleted file mode 100644
index 3dc2f9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rotate_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.55,5.55L11,1v3.07C7.06,4.56 4,7.92 4,12s3.05,7.44 7,7.93v-2.02c-2.84,-0.48 -5,-2.94 -5,-5.91s2.16,-5.43 5,-5.91L11,10l4.55,-4.45zM19.93,11c-0.17,-1.39 -0.72,-2.73 -1.62,-3.89l-1.42,1.42c0.54,0.75 0.88,1.6 1.02,2.47h2.02zM13,17.9v2.02c1.39,-0.17 2.74,-0.71 3.9,-1.61l-1.44,-1.44c-0.75,0.54 -1.59,0.89 -2.46,1.03zM16.89,15.48l1.42,1.41c0.9,-1.16 1.45,-2.5 1.62,-3.89h-2.02c-0.14,0.87 -0.48,1.72 -1.02,2.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/roundabout_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/roundabout_left.xml
deleted file mode 100644
index 37fe75a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/roundabout_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4c-2.21,0 -4,1.79 -4,4l0,1l-6.17,0l1.59,1.59L6,13L2,9l4,-4l1.41,1.41L5.83,8l4.25,0c0.48,-2.84 2.94,-5 5.92,-5c3.31,0 6,2.69 6,6c0,2.97 -2.16,5.44 -5,5.92L17,21h-2l0,-8L16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/roundabout_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/roundabout_right.xml
deleted file mode 100644
index 074c72f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/roundabout_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4c2.21,0 4,1.79 4,4l0,1l6.17,0l-1.59,1.59L18,13l4,-4l-4,-4l-1.41,1.41L18.17,8l-4.25,0C13.44,5.16 10.97,3 8,3C4.69,3 2,5.69 2,9c0,2.97 2.16,5.44 5,5.92L7,21h2l0,-8L8,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rounded_corner.xml b/compose/material/material/icons/generator/raw-icons/sharp/rounded_corner.xml
deleted file mode 100644
index a29f14a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rounded_corner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2V19zM19,17h2v-2h-2V17zM3,13h2v-2H3V13zM3,17h2v-2H3V17zM3,9h2V7H3V9zM3,5h2V3H3V5zM7,5h2V3H7V5zM15,21h2v-2h-2V21zM11,21h2v-2h-2V21zM15,21h2v-2h-2V21zM7,21h2v-2H7V21zM3,21h2v-2H3V21zM21,8c0,-2.76 -2.24,-5 -5,-5h-5v2h5c1.65,0 3,1.35 3,3v5h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/route.xml b/compose/material/material/icons/generator/raw-icons/sharp/route.xml
deleted file mode 100644
index 7beb857..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/route.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15.18V3h-8v16H7V8.82C8.16,8.4 9,7.3 9,6c0,-1.66 -1.34,-3 -3,-3S3,4.34 3,6c0,1.3 0.84,2.4 2,2.82V21h8V5h4v10.18c-1.16,0.41 -2,1.51 -2,2.82c0,1.66 1.34,3 3,3s3,-1.34 3,-3C21,16.7 20.16,15.6 19,15.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/router.xml b/compose/material/material/icons/generator/raw-icons/sharp/router.xml
deleted file mode 100644
index a819d1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/router.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.2,5.9l0.8,-0.8C19.6,3.7 17.8,3 16,3s-3.6,0.7 -5,2.1l0.8,0.8C13,4.8 14.5,4.2 16,4.2s3,0.6 4.2,1.7zM19.3,6.7c-0.9,-0.9 -2.1,-1.4 -3.3,-1.4s-2.4,0.5 -3.3,1.4l0.8,0.8c0.7,-0.7 1.6,-1 2.5,-1s1.8,0.3 2.5,1l0.8,-0.8zM21,13h-4L17,9h-2v4L3,13v8h18v-8zM8,18L6,18v-2h2v2zM11.5,18h-2v-2h2v2zM15,18h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rowing.xml b/compose/material/material/icons/generator/raw-icons/sharp/rowing.xml
deleted file mode 100644
index ab938fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rowing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5L4,19l1.5,1.5L9,17h2l-2.5,-2.5zM15,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM21,21.01L18,24l-2.99,-3.01L15.01,19.5l-7.1,-7.09c-0.31,0.05 -0.61,0.07 -0.91,0.07v-2.16c1.66,0.03 3.61,-0.87 4.67,-2.04l1.4,-1.55c0.19,-0.21 0.43,-0.38 0.69,-0.5 0.29,-0.14 0.62,-0.23 0.96,-0.23h0.03C15.99,6 17,7.01 17,8.25L17,17l-0.92,-0.83 -3.58,-3.58v-2.27c-0.63,0.52 -1.43,1.02 -2.29,1.39L16.5,18L18,18l3,3.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rss_feed.xml b/compose/material/material/icons/generator/raw-icons/sharp/rss_feed.xml
deleted file mode 100644
index 9557e74..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rss_feed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.18,17.82m-2.18,0a2.18,2.18 0,1 1,4.36 0a2.18,2.18 0,1 1,-4.36 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10.1v2.83c3.9,0 7.07,3.17 7.07,7.07h2.83c0,-5.47 -4.43,-9.9 -9.9,-9.9zM4,4.44v2.83c7.03,0 12.73,5.7 12.73,12.73h2.83c0,-8.59 -6.97,-15.56 -15.56,-15.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rsvp.xml b/compose/material/material/icons/generator/raw-icons/sharp/rsvp.xml
deleted file mode 100644
index 99a031c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rsvp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9zM5.14,13L6,15H4.5l-0.85,-2H2.5v2H1V9h5v4L5.14,13zM4.5,10.5h-2v1h2V10.5zM23,13h-3.5v2H18V9h5V13zM21.5,10.5h-2v1h2V10.5zM11.5,9v1.5h-3v0.75h3V15H7v-1.5h3v-0.75H7V9H11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rtt.xml b/compose/material/material/icons/generator/raw-icons/sharp/rtt.xml
deleted file mode 100644
index 56264b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rtt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.03,3l-1.11,7.07h2.62l0.7,-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4,-2.57h-2.35l2,-12.86h2.58l-0.71,4.5h2.65L22,3H9.03zM8,5H4L3.69,7h4L8,5zM7.39,9h-4l-0.31,2h4L7.39,9zM8.31,17h-6L2,19h6L8.31,17zM8.93,13h-6l-0.31,2h6.01L8.93,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rule.xml b/compose/material/material/icons/generator/raw-icons/sharp/rule.xml
deleted file mode 100644
index 11eb72d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.54,11L13,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,11zM11,7H2v2h9V7zM21,13.41L19.59,12L17,14.59L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41zM11,15H2v2h9V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rule_folder.xml b/compose/material/material/icons/generator/raw-icons/sharp/rule_folder.xml
deleted file mode 100644
index 0ef35d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rule_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6H12l-2,-2H2v16h20V6zM7.83,16L5,13.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L7.83,16zM17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/run_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/run_circle.xml
deleted file mode 100644
index 3723d6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/run_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13.5,6c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C12.5,6.45 12.95,6 13.5,6zM16,12c-0.7,0 -2.01,-0.54 -2.91,-1.76l-0.41,2.35L14,14.03V18h-1v-3.58l-1.11,-1.21l-0.52,2.64L7.6,15.08l0.2,-0.98l2.78,0.57l0.96,-4.89L10,10.35V12H9V9.65l3.28,-1.21c0.49,-0.18 1.03,0.06 1.26,0.53C14.37,10.67 15.59,11 16,11V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/running_with_errors.xml b/compose/material/material/icons/generator/raw-icons/sharp/running_with_errors.xml
deleted file mode 100644
index b3eba04..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/running_with_errors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10v8h-2v-8H22zM20,20v2h2v-2H20zM18,17.29C16.53,18.95 14.39,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8v9l7.55,-7.55C17.72,3.34 15.02,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c2.25,0 4.33,-0.74 6,-2V17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/rv_hookup.xml b/compose/material/material/icons/generator/raw-icons/sharp/rv_hookup.xml
deleted file mode 100644
index eb601ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/rv_hookup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17L20,9L7,9L7,7l-3,3 3,3v-2h4v3L4,14v5h4c0,1.66 1.34,3 3,3s3,-1.34 3,-3h8v-2h-2zM11,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,14h-4v-3h4v3zM17,2v2L9,4v2h8v2l3,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/safety_check.xml b/compose/material/material/icons/generator/raw-icons/sharp/safety_check.xml
deleted file mode 100644
index 4f0fa86..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/safety_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S14.76,17 12,17zM13.65,14.35l-2.15,-2.15V9h1v2.79l1.85,1.85L13.65,14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/safety_divider.xml b/compose/material/material/icons/generator/raw-icons/sharp/safety_divider.xml
deleted file mode 100644
index 4cdfc8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/safety_divider.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5h2v14h-2V5zM5,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C3,11.1 3.9,12 5,12zM7.78,13.58C6.93,13.21 5.99,13 5,13s-1.93,0.21 -2.78,0.58C1.48,13.9 1,14.62 1,15.43L1,16h8l0,-0.57C9,14.62 8.52,13.9 7.78,13.58zM19,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C17,11.1 17.9,12 19,12zM21.78,13.58C20.93,13.21 19.99,13 19,13s-1.93,0.21 -2.78,0.58C15.48,13.9 15,14.62 15,15.43L15,16h8l0,-0.57C23,14.62 22.52,13.9 21.78,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sailing.xml b/compose/material/material/icons/generator/raw-icons/sharp/sailing.xml
deleted file mode 100644
index 0873e561..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sailing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13.5V2L3,13.5H11zM21,13.5C21,6.5 14.5,1 12.5,1c0,0 1,3 1,6.5s-1,6 -1,6H21zM22,15H2c0.31,1.53 1.16,2.84 2.33,3.73C4.98,18.46 5.55,18.01 6,17.5C6.73,18.34 7.8,19 9,19s2.27,-0.66 3,-1.5c0.73,0.84 1.8,1.5 3,1.5s2.26,-0.66 3,-1.5c0.45,0.51 1.02,0.96 1.67,1.23C20.84,17.84 21.69,16.53 22,15zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sanitizer.xml b/compose/material/material/icons/generator/raw-icons/sharp/sanitizer.xml
deleted file mode 100644
index 72c4712..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sanitizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,6.5C15.5,5.66 17,4 17,4s1.5,1.66 1.5,2.5C18.5,7.33 17.83,8 17,8S15.5,7.33 15.5,6.5zM19.5,15c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.67 -2.5,-4.5 -2.5,-4.5S17,10.83 17,12.5C17,13.88 18.12,15 19.5,15zM13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14zM16,12v10H4V12c0,-2.97 2.16,-5.43 5,-5.91V4H7V2h6c1.13,0 2.15,0.39 2.99,1.01l-1.43,1.43C14.1,4.17 13.57,4 13,4h-2v2.09C13.84,6.57 16,9.03 16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/satellite.xml b/compose/material/material/icons/generator/raw-icons/sharp/satellite.xml
deleted file mode 100644
index d8005be..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/satellite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM5,4.99h3C8,6.65 6.66,8 5,8L5,4.99zM5,12v-2c2.76,0 5,-2.25 5,-5.01h2C12,8.86 8.87,12 5,12zM5,18l3.5,-4.5 2.5,3.01L14.5,12l4.5,6L5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/satellite_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/satellite_alt.xml
deleted file mode 100644
index 4ccc043..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/satellite_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.44,0.59l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l1.24,1.24l-0.71,0.71l-2.65,-2.65l-4.24,4.24l2.65,2.65l-0.71,0.71L6.6,12.25c-0.78,-0.78 -2.05,-0.78 -2.83,0l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l3.54,3.54c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18c0.78,-0.78 0.78,-2.05 0,-2.83l-1.24,-1.24l0.71,-0.71l2.65,2.65l4.24,-4.24L13.84,9.6l0.71,-0.71l1.24,1.24c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18c0.78,-0.78 0.78,-2.05 0,-2.83l-3.54,-3.54C17.48,-0.2 16.22,-0.2 15.44,0.59zM6.6,19.32l-1.06,1.06L2,16.85l1.06,-1.06L6.6,19.32zM8.72,17.2l-1.06,1.06l-3.54,-3.54l1.06,-1.06L8.72,17.2zM18.26,7.66L17.2,8.72l-3.54,-3.54l1.06,-1.06L18.26,7.66zM20.38,5.54L19.32,6.6l-3.54,-3.54L16.85,2L20.38,5.54zM21,14l2,0c0,4.97 -4.03,9 -9,9l0,-2C17.87,21 21,17.87 21,14zM17,14l2,0c0,2.76 -2.24,5 -5,5l0,-2C15.66,17 17,15.66 17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/save.xml b/compose/material/material/icons/generator/raw-icons/sharp/save.xml
deleted file mode 100644
index 8eb0973..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/save.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L3,3v18h18L21,7l-4,-4zM12,19c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM15,9L5,9L5,5h10v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/save_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/save_alt.xml
deleted file mode 100644
index 85d4f38..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/save_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12v7L5,19v-7L3,12v9h18v-9h-2zM13,12.67l2.59,-2.58L17,11.5l-5,5 -5,-5 1.41,-1.41L11,12.67L11,3h2v9.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/save_as.xml b/compose/material/material/icons/generator/raw-icons/sharp/save_as.xml
deleted file mode 100644
index b7bed37..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/save_as.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.4V7l-4,-4H3v18h9.4L21,12.4zM15,15c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,13.34 15,15zM6,6h9v4H6V6zM19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25zM23.61,16.16l-1.2,1.2l-1.77,-1.77l1.2,-1.2L23.61,16.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/saved_search.xml b/compose/material/material/icons/generator/raw-icons/sharp/saved_search.xml
deleted file mode 100644
index 5d2bd8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/saved_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.73,13.31C15.52,12.24 16,10.93 16,9.5C16,5.91 13.09,3 9.5,3S3,5.91 3,9.5C3,13.09 5.91,16 9.5,16c1.43,0 2.74,-0.48 3.81,-1.27L19.59,21L21,19.59L14.73,13.31zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5S14,7.01 14,9.5S11.99,14 9.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.44l-0.79,-2.44l-0.79,2.44l-2.46,0l2.01,1.59l-0.77,2.47l2.01,-1.53l2.01,1.53l-0.77,-2.47l2.01,-1.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/savings.xml b/compose/material/material/icons/generator/raw-icons/sharp/savings.xml
deleted file mode 100644
index abc10e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/savings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.83,7.5l-2.27,-2.27c0.07,-0.42 0.18,-0.81 0.32,-1.15c0.23,-0.56 0.56,-1.06 0.97,-1.5C18.15,2.21 17.35,2 16.5,2c-1.64,0 -3.09,0.79 -4,2l-5,0C4.46,4 2,6.46 2,9.5S4.5,21 4.5,21l5.5,0v-2h2v2l5.5,0l1.68,-5.59L22,14.47V7.5H19.83zM13,9H8V7h5V9zM16,11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,10.55 16.55,11 16,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/scale.xml b/compose/material/material/icons/generator/raw-icons/sharp/scale.xml
deleted file mode 100644
index 73e807e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11V8c4.56,-0.58 8,-3.1 8,-6H2c0,2.9 3.44,5.42 8,6l0,3c-3.68,0.73 -8,3.61 -8,11h6v-2H4.13c0.93,-6.83 6.65,-7.2 7.87,-7.2s6.94,0.37 7.87,7.2H16v2h6C22,14.61 17.68,11.73 14,11zM12,22c-1.1,0 -2,-0.9 -2,-2c0,-0.55 0.22,-1.05 0.59,-1.41C11.39,17.79 16,16 16,16s-1.79,4.61 -2.59,5.41C13.05,21.78 12.55,22 12,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/scanner.xml b/compose/material/material/icons/generator/raw-icons/sharp/scanner.xml
deleted file mode 100644
index d5853d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.2,5l-0.7,1.9L17.6,12L3,12v8h18v-8.86L4.2,5zM7,17L5,17v-2h2v2zM19,17L9,17v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/scatter_plot.xml b/compose/material/material/icons/generator/raw-icons/sharp/scatter_plot.xml
deleted file mode 100644
index c192675..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/scatter_plot.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,17.6m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/schedule.xml b/compose/material/material/icons/generator/raw-icons/sharp/schedule.xml
deleted file mode 100644
index 28e127d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/schedule.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/schedule_send.xml b/compose/material/material/icons/generator/raw-icons/sharp/schedule_send.xml
deleted file mode 100644
index c9cc50a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/schedule_send.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c0.1,0 0.19,0.01 0.28,0.01L3,4v6l8,2l-8,2v6l7,-2.95c0,-0.02 0,-0.03 0,-0.05C10,13.14 13.14,10 17,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/schema.xml b/compose/material/material/icons/generator/raw-icons/sharp/schema.xml
deleted file mode 100644
index 0257349..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/schema.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/school.xml b/compose/material/material/icons/generator/raw-icons/sharp/school.xml
deleted file mode 100644
index 3ccdf7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/school.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13.18v4L12,21l7,-3.82v-4L12,17l-7,-3.82zM12,3L1,9l11,6 9,-4.91V17h2V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/science.xml b/compose/material/material/icons/generator/raw-icons/sharp/science.xml
deleted file mode 100644
index ba23c3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/science.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,18.4L14,10.67V6.5l1.35,-1.69C15.61,4.48 15.38,4 14.96,4H9.04C8.62,4 8.39,4.48 8.65,4.81L10,6.5v4.17L4.2,18.4C3.71,19.06 4.18,20 5,20h14C19.82,20 20.29,19.06 19.8,18.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/score.xml b/compose/material/material/icons/generator/raw-icons/sharp/score.xml
deleted file mode 100644
index 853c418..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM12,5h1.5v3l2,-3h1.7l-2,3 2,3h-1.7l-2,-3v3L12,11L12,5zM7,7.25h2.5L9.5,6.5L7,6.5L7,5h4v3.75L8.5,8.75v0.75L11,9.5L11,11L7,11L7,7.25zM19,13l-6,6 -4,-4 -4,4v-2.5l4,-4 4,4 6,-6L19,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/scoreboard.xml b/compose/material/material/icons/generator/raw-icons/sharp/scoreboard.xml
deleted file mode 100644
index 6640f40..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/scoreboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,13.5H16v-3h1.5V13.5zM22,4h-5V2h-2v2H9V2H7v2H2v16h20V4zM9.5,12.5h-3v1h3V15H5v-3.5h3v-1H5V9h4.5V12.5zM12.75,18h-1.5v-1.5h1.5V18zM12.75,14.5h-1.5V13h1.5V14.5zM12.75,11h-1.5V9.5h1.5V11zM12.75,7.5h-1.5V6h1.5V7.5zM19,9v6h-4.5V9H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_landscape.xml b/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_landscape.xml
deleted file mode 100644
index 9d2fdaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,5L1,5v14h22L23,5zM19,17L5,17L5,7h14v10zM9,16h6v-5h-1v-0.9c0,-1 -0.69,-1.92 -1.68,-2.08C11.07,7.83 10,8.79 10,10v1L9,11v5zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2v1h-2.4v-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_portrait.xml b/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_portrait.xml
deleted file mode 100644
index eb6409d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6v-5h-1v-0.9c0,-1 -0.69,-1.92 -1.68,-2.08C11.07,7.83 10,8.79 10,10v1L9,11v5zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2v1h-2.4v-1zM19,1L5,1v22h14L19,1zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_rotation.xml b/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_rotation.xml
deleted file mode 100644
index 04d0b41..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screen_lock_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.82 -1.33,1.33zM20.05,4v-0.36c0,-1.31 -0.94,-2.5 -2.24,-2.63 -1.5,-0.15 -2.76,1.02 -2.76,2.49L15.05,4h-1v6h7L21.05,4h-1zM19.25,4h-3.4v-0.5c0,-0.94 0.76,-1.7 1.7,-1.7s1.7,0.76 1.7,1.7L19.25,4zM19.73,11.2l-1.41,1.41 2.22,2.22 -5.66,5.66L3.56,9.17l5.66,-5.66 2.1,2.1 1.41,-1.41L9.22,0.69 0.74,9.17l14.14,14.14 8.48,-8.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screen_rotation.xml b/compose/material/material/icons/generator/raw-icons/sharp/screen_rotation.xml
deleted file mode 100644
index b0308c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screen_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.48,2.52c3.27,1.55 5.61,4.72 5.97,8.48h1.5C23.44,4.84 18.29,0 12,0l-0.66,0.03 3.81,3.81 1.33,-1.32zM7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.81 -1.33,1.32zM9.17,0.69L0.69,9.17l14.14,14.14 8.48,-8.48L9.17,0.69zM14.83,21.19L2.81,9.17l6.36,-6.36 12.02,12.02 -6.36,6.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screen_rotation_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/screen_rotation_alt.xml
deleted file mode 100644
index 52ee145..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screen_rotation_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7.59l6.41,-6.41L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59zM20,19h2v-6h-6v2h2.59l-4.99,5l-7.01,-7H3.76l9.83,9.83L20,16.41V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screen_search_desktop.xml b/compose/material/material/icons/generator/raw-icons/sharp/screen_search_desktop.xml
deleted file mode 100644
index 0c2a6c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screen_search_desktop.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,19h22v2h-22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2v15h19.99L22,3zM15.47,15.03l-2.09,-2.09c-1.35,0.87 -3.17,0.71 -4.36,-0.47c-1.37,-1.37 -1.37,-3.58 0,-4.95s3.58,-1.37 4.95,0c1.18,1.18 1.34,3 0.47,4.36l2.09,2.09L15.47,15.03z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,10m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screen_share.xml b/compose/material/material/icons/generator/raw-icons/sharp/screen_share.xml
deleted file mode 100644
index da3df4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l2,-2L22,4L2,4v12l2,2L0,18v2h24v-2h-4zM13,14.47v-2.19c-2.78,0 -4.61,0.85 -6,2.72 0.56,-2.67 2.11,-5.33 6,-5.87L13,7l4,3.73 -4,3.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screenshot.xml b/compose/material/material/icons/generator/raw-icons/sharp/screenshot.xml
deleted file mode 100644
index b85c7b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screenshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,1v22h14V1H5zM17,18H7V6h10V18zM9.5,8.5H12V7H8v4h1.5V8.5zM12,17h4v-4h-1.5v2.5H12V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/screenshot_monitor.xml b/compose/material/material/icons/generator/raw-icons/sharp/screenshot_monitor.xml
deleted file mode 100644
index fc5e893..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/screenshot_monitor.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2v16h6v2h8v-2h6V3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,7.5l2.5,0l0,-1.5l-4,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12l-1.5,0l0,2.5l-2.5,0l0,1.5l4,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/scuba_diving.xml b/compose/material/material/icons/generator/raw-icons/sharp/scuba_diving.xml
deleted file mode 100644
index eeb739b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/scuba_diving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S1,14.1 1,13zM8.89,10.11l4.53,-1.21L12.64,6L8.11,7.21c-0.8,0.21 -1.28,1.04 -1.06,1.84l0,0C7.27,9.85 8.09,10.33 8.89,10.11zM20.5,5.9L23,3l-1,-1l-3,3l-2,4l-9.48,2.87c-0.82,0.2 -1.39,0.89 -1.5,1.68L5.24,18L2.4,21.8L4,23l3,-4l1.14,-3.14L14,14l5,-3.5L20.5,5.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sd.xml b/compose/material/material/icons/generator/raw-icons/sharp/sd.xml
deleted file mode 100644
index d48c8c3fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sd.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM13,9h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-4V9zM9.5,13.5v-1H6V9h5v2H9.5v-0.5h-2v1H11V15H6v-2h1.5v0.5H9.5zM14.5,13.5h2v-3h-2V13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sd_card.xml b/compose/material/material/icons/generator/raw-icons/sharp/sd_card.xml
deleted file mode 100644
index 07ae67f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sd_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L10,2L4,8v14h16L20,2zM12,8h-2L10,4h2v4zM15,8h-2L13,4h2v4zM18,8h-2L16,4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sd_card_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/sd_card_alert.xml
deleted file mode 100644
index 7845abb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sd_card_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L10,2L4,8v14h16L20,2zM13,17h-2v-2h2v2zM13,13h-2L11,8h2v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sd_storage.xml b/compose/material/material/icons/generator/raw-icons/sharp/sd_storage.xml
deleted file mode 100644
index 07ae67f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sd_storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L10,2L4,8v14h16L20,2zM12,8h-2L10,4h2v4zM15,8h-2L13,4h2v4zM18,8h-2L16,4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/search.xml b/compose/material/material/icons/generator/raw-icons/sharp/search.xml
deleted file mode 100644
index 07b76d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/search_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/search_off.xml
deleted file mode 100644
index 1f3c924..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/search_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5C16,5.91 13.09,3 9.5,3C6.08,3 3.28,5.64 3.03,9h2.02C5.3,6.75 7.18,5 9.5,5C11.99,5 14,7.01 14,9.5S11.99,14 9.5,14c-0.17,0 -0.33,-0.03 -0.5,-0.05v2.02C9.17,15.99 9.33,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.47,10.82l-2.47,2.47l-2.47,-2.47l-0.71,0.71l2.47,2.47l-2.47,2.47l0.71,0.71l2.47,-2.47l2.47,2.47l0.71,-0.71l-2.47,-2.47l2.47,-2.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/security.xml b/compose/material/material/icons/generator/raw-icons/sharp/security.xml
deleted file mode 100644
index c9e27cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/security.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM12,11.99h7c-0.53,4.12 -3.28,7.79 -7,8.94L12,12L5,12L5,6.3l7,-3.11v8.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/security_update.xml b/compose/material/material/icons/generator/raw-icons/sharp/security_update.xml
deleted file mode 100644
index d554c5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,1v22h14V1H5zM17,18H7V6h10V18zM16,12h-3V8h-2v4H8l4,4L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/security_update_good.xml b/compose/material/material/icons/generator/raw-icons/sharp/security_update_good.xml
deleted file mode 100644
index 1468130..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,1v22h14V1H5zM17,18H7V6h10V18zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/sharp/security_update_warning.xml
deleted file mode 100644
index 27bb764..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.01,1v22H19V1H5.01zM17,18H7V6h10V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/segment.xml b/compose/material/material/icons/generator/raw-icons/sharp/segment.xml
deleted file mode 100644
index fe884c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/segment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,18h12v-2H9V18zM3,6v2h18V6H3zM9,13h12v-2H9V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/select_all.xml b/compose/material/material/icons/generator/raw-icons/sharp/select_all.xml
deleted file mode 100644
index 6a711ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/select_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM7,21h2v-2L7,19v2zM3,9h2L5,7L3,7v2zM13,3h-2v2h2L13,3zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM5,3L3,3v2h2L5,3zM11,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM19,5h2L21,3h-2v2zM19,21h2v-2h-2v2zM3,21h2v-2L3,19v2zM7,17h10L17,7L7,7v10zM9,9h6v6L9,15L9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/self_improvement.xml b/compose/material/material/icons/generator/raw-icons/sharp/self_improvement.xml
deleted file mode 100644
index 850e20a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/self_improvement.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16v-2c-2.24,0 -4.16,-0.96 -5.6,-2.68l-1.34,-1.6C13.68,9.26 13.12,9 12.53,9h-1.05c-0.59,0 -1.15,0.26 -1.53,0.72l-1.34,1.6C7.16,13.04 5.24,14 3,14v2c2.77,0 5.19,-1.17 7,-3.25V15l-3.88,1.55C5.45,16.82 5,17.48 5,18.21C5,19.2 5.8,20 6.79,20H9v-0.5c0,-1.38 1.12,-2.5 2.5,-2.5h3c0.28,0 0.5,0.22 0.5,0.5S14.78,18 14.5,18h-3c-0.83,0 -1.5,0.67 -1.5,1.5V20h7.21C18.2,20 19,19.2 19,18.21c0,-0.73 -0.45,-1.39 -1.12,-1.66L14,15v-2.25C15.81,14.83 18.23,16 21,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sell.xml b/compose/material/material/icons/generator/raw-icons/sharp/sell.xml
deleted file mode 100644
index 81d2d53..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.83,12.83L12,2H2v10l10.83,10.83L22.83,12.83zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5S7.33,8 6.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/send.xml b/compose/material/material/icons/generator/raw-icons/sharp/send.xml
deleted file mode 100644
index c91cc14..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/send.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.01,21L23,12 2.01,3 2,10l15,2 -15,2 0.01,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/send_and_archive.xml b/compose/material/material/icons/generator/raw-icons/sharp/send_and_archive.xml
deleted file mode 100644
index 832c02e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/send_and_archive.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c0.1,0 0.19,0.01 0.28,0.01L3,4v6l8,2l-8,2v6l7,-2.95c0,-0.02 0,-0.03 0,-0.05C10,13.13 13.13,10 17,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM17,20l-3,-3h2.5v-3h1v3H20L17,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/send_time_extension.xml b/compose/material/material/icons/generator/raw-icons/sharp/send_time_extension.xml
deleted file mode 100644
index fa5357f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/send_time_extension.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-6c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H3.01v5.8C5.7,9.8 6,11.96 6,12.5c0,0.54 -0.29,2.7 -3,2.7V21h5.8c0,-2.16 1.37,-2.78 2.2,-2.94v-9.3l9,4.5V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l0,4l4,1l-4,1l0,4l10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/send_to_mobile.xml b/compose/material/material/icons/generator/raw-icons/sharp/send_to_mobile.xml
deleted file mode 100644
index 526e510..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/send_to_mobile.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18l-10,0l0,-12l10,0l0,1l2,0l0,-6l-14,0l0,22l14,0l0,-6l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4,-4l0,3l-5,0l0,2l5,0l0,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sensor_door.xml b/compose/material/material/icons/generator/raw-icons/sharp/sensor_door.xml
deleted file mode 100644
index 25b1ece..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sensor_door.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4v20h16V2zM15.5,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5S17,11.17 17,12S16.33,13.5 15.5,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sensor_occupied.xml b/compose/material/material/icons/generator/raw-icons/sharp/sensor_occupied.xml
deleted file mode 100644
index 46008cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sensor_occupied.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3S9,6.34 9,8S10.34,11 12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.84,0 -3.56,0.5 -5.03,1.37C6.36,13.72 6,14.39 6,15.09V17h12v-1.91c0,-0.7 -0.36,-1.36 -0.97,-1.72C15.56,12.5 13.84,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.23,8.15l1.85,-0.77c-1.22,-2.91 -3.55,-5.25 -6.46,-6.46l-0.77,1.85C18.27,3.79 20.21,5.73 21.23,8.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,2.77L7.38,0.92C4.47,2.14 2.14,4.47 0.92,7.38l1.85,0.77C3.79,5.73 5.73,3.79 8.15,2.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.77,15.85l-1.85,0.77c1.22,2.91 3.55,5.25 6.46,6.46l0.77,-1.85C5.73,20.21 3.79,18.27 2.77,15.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.85,21.23l0.77,1.85c2.91,-1.22 5.25,-3.55 6.46,-6.46l-1.85,-0.77C20.21,18.27 18.27,20.21 15.85,21.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sensor_window.xml b/compose/material/material/icons/generator/raw-icons/sharp/sensor_window.xml
deleted file mode 100644
index e6e5150..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sensor_window.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v16H6V4H18M4,2v20h16V2H4zM7,19h10v-6H7V19zM10,10h4v1h3V5H7v6h3V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sensors.xml b/compose/material/material/icons/generator/raw-icons/sharp/sensors.xml
deleted file mode 100644
index 1f867db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sensors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.76,16.24C6.67,15.16 6,13.66 6,12s0.67,-3.16 1.76,-4.24l1.42,1.42C8.45,9.9 8,10.9 8,12c0,1.1 0.45,2.1 1.17,2.83L7.76,16.24zM16.24,16.24C17.33,15.16 18,13.66 18,12s-0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,1.1 -0.45,2.1 -1.17,2.83L16.24,16.24zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM20,12c0,2.21 -0.9,4.21 -2.35,5.65l1.42,1.42C20.88,17.26 22,14.76 22,12s-1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12zM6.35,6.35L4.93,4.93C3.12,6.74 2,9.24 2,12s1.12,5.26 2.93,7.07l1.42,-1.42C4.9,16.21 4,14.21 4,12S4.9,7.79 6.35,6.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sensors_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/sensors_off.xml
deleted file mode 100644
index 49e1f8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sensors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.14,10.96C8.05,11.29 8,11.64 8,12c0,1.1 0.45,2.1 1.17,2.83l-1.42,1.42C6.67,15.16 6,13.66 6,12c0,-0.93 0.21,-1.8 0.58,-2.59L5.11,7.94C4.4,9.13 4,10.52 4,12c0,2.21 0.9,4.21 2.35,5.65l-1.42,1.42C3.12,17.26 2,14.76 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L8.14,10.96zM17.42,14.59C17.79,13.8 18,12.93 18,12c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,0.36 -0.05,0.71 -0.14,1.04L17.42,14.59zM20,12c0,1.48 -0.4,2.87 -1.11,4.06l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/sharp/sentiment_dissatisfied.xml
deleted file mode 100644
index 03b0566..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_dissatisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c-2.33,0 -4.32,1.45 -5.12,3.5h1.67c0.69,-1.19 1.97,-2 3.45,-2s2.75,0.81 3.45,2h1.67c-0.8,-2.05 -2.79,-3.5 -5.12,-3.5zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_neutral.xml b/compose/material/material/icons/generator/raw-icons/sharp/sentiment_neutral.xml
deleted file mode 100644
index 893c199..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_neutral.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM7,9.5C7,8.67 7.67,8 8.5,8S10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5zM15,15.5H9V14h6V15.5zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8S17,8.67 17,9.5S16.33,11 15.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_satisfied.xml b/compose/material/material/icons/generator/raw-icons/sharp/sentiment_satisfied.xml
deleted file mode 100644
index bd11ed9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_satisfied.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,16c-1.48,0 -2.75,-0.81 -3.45,-2L6.88,14c0.8,2.05 2.79,3.5 5.12,3.5s4.32,-1.45 5.12,-3.5h-1.67c-0.7,1.19 -1.97,2 -3.45,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_satisfied_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/sentiment_satisfied_alt.xml
deleted file mode 100644
index 6462544..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_satisfied_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,16c-1.48,0 -2.75,-0.81 -3.45,-2L6.88,14c0.8,2.05 2.79,3.5 5.12,3.5s4.32,-1.45 5.12,-3.5h-1.67c-0.69,1.19 -1.97,2 -3.45,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_very_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/sharp/sentiment_very_dissatisfied.xml
deleted file mode 100644
index 0a11130..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_very_dissatisfied.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.5c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5zM7.82,12l1.06,-1.06L9.94,12 11,10.94 9.94,9.88 11,8.82 9.94,7.76 8.88,8.82 7.82,7.76 6.76,8.82l1.06,1.06 -1.06,1.06zM11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM16.18,7.76l-1.06,1.06 -1.06,-1.06L13,8.82l1.06,1.06L13,10.94 14.06,12l1.06,-1.06L16.18,12l1.06,-1.06 -1.06,-1.06 1.06,-1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_very_satisfied.xml b/compose/material/material/icons/generator/raw-icons/sharp/sentiment_very_satisfied.xml
deleted file mode 100644
index fe88dd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sentiment_very_satisfied.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.88,9.94L9.94,11 11,9.94 8.88,7.82 6.76,9.94 7.82,11zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5zM13,9.94L14.06,11l1.06,-1.06L16.18,11l1.06,-1.06 -2.12,-2.12zM11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/set_meal.xml b/compose/material/material/icons/generator/raw-icons/sharp/set_meal.xml
deleted file mode 100644
index 713e6e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/set_meal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.05,17.56L3.08,18.5L3,17l17.98,-0.94L21.05,17.56zM21,19.48H3v1.5h18V19.48zM22,3v11H2V3H22zM20,6c-1.68,0 -3.04,0.98 -3.21,2.23C16.15,7.5 14.06,5.5 10.25,5.5c-4.67,0 -6.75,3 -6.75,3s2.08,3 6.75,3c3.81,0 5.9,-2 6.54,-2.73C16.96,10.02 18.32,11 20,11V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings.xml
deleted file mode 100644
index 58894cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.44,12.99l-0.01,0.02c0.04,-0.33 0.08,-0.67 0.08,-1.01 0,-0.34 -0.03,-0.66 -0.07,-0.99l0.01,0.02 2.44,-1.92 -2.43,-4.22 -2.87,1.16 0.01,0.01c-0.52,-0.4 -1.09,-0.74 -1.71,-1h0.01L14.44,2H9.57l-0.44,3.07h0.01c-0.62,0.26 -1.19,0.6 -1.71,1l0.01,-0.01 -2.88,-1.17 -2.44,4.22 2.44,1.92 0.01,-0.02c-0.04,0.33 -0.07,0.65 -0.07,0.99 0,0.34 0.03,0.68 0.08,1.01l-0.01,-0.02 -2.1,1.65 -0.33,0.26 2.43,4.2 2.88,-1.15 -0.02,-0.04c0.53,0.41 1.1,0.75 1.73,1.01h-0.03L9.58,22h4.85s0.03,-0.18 0.06,-0.42l0.38,-2.65h-0.01c0.62,-0.26 1.2,-0.6 1.73,-1.01l-0.02,0.04 2.88,1.15 2.43,-4.2s-0.14,-0.12 -0.33,-0.26l-2.11,-1.66zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_accessibility.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_accessibility.xml
deleted file mode 100644
index 2914c1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,4c-2.61,0.7 -5.67,1 -8.5,1S6.11,4.7 3.5,4L3,6c1.86,0.5 4,0.83 6,1v12h2v-6h2v6h2V7c2,-0.17 4.14,-0.5 6,-1L20.5,4zM12,4c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,4 12,4zM7,24h2v-2H7V24zM11,24h2v-2h-2V24zM15,24h2v-2h-2V24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_applications.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_applications.xml
deleted file mode 100644
index 8dc90da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_applications.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.11,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2zM17.25,12c0,0.24 -0.02,0.47 -0.05,0.71l0.01,-0.02 1.47,1.16c0.14,0.1 0.23,0.18 0.23,0.18l-1.7,2.94 -2.02,-0.8 0.02,-0.03c-0.37,0.29 -0.77,0.53 -1.21,0.71h0.01l-0.27,1.85c-0.02,0.17 -0.04,0.3 -0.04,0.3h-3.4l-0.31,-2.15L10,16.85c-0.44,-0.18 -0.84,-0.42 -1.21,-0.71l0.02,0.03 -2.02,0.8 -1.7,-2.94s0.1,-0.08 0.23,-0.18l1.47,-1.16 0.01,0.02c-0.03,-0.24 -0.05,-0.47 -0.05,-0.71s0.02,-0.47 0.05,-0.69l-0.01,0.01 -1.7,-1.34 1.7,-2.95 2.01,0.81v0.01c0.37,-0.28 0.77,-0.52 1.2,-0.7h-0.01L10.3,5h3.41l0.3,2.15L14,7.15c0.43,0.18 0.83,0.42 1.2,0.7v-0.01l2.01,-0.81 1.7,2.95 -1.71,1.34 -0.01,-0.01c0.04,0.22 0.06,0.45 0.06,0.69z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2.45,0a2.45,2.45 0,1 1,4.9 0a2.45,2.45 0,1 1,-4.9 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_backup_restore.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_backup_restore.xml
deleted file mode 100644
index 1772ed5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_backup_restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2 0.9,2 2,2 2,-0.9 2,-2zM12,3c-4.97,0 -9,4.03 -9,9L0,12l4,4 4,-4L5,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.51,0 -2.91,-0.49 -4.06,-1.3l-1.42,1.44C8.04,20.3 9.94,21 12,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_bluetooth.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_bluetooth.xml
deleted file mode 100644
index 5e11cd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,24h2v-2h-2v2zM7,24h2v-2L7,22v2zM15,24h2v-2h-2v2zM17.71,5.71L12,0h-1v7.59L6.41,3 5,4.41 10.59,10 5,15.59 6.41,17 11,12.41L11,20h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,3.83l1.88,1.88L13,7.59L13,3.83zM14.88,14.29L13,16.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_brightness.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_brightness.xml
deleted file mode 100644
index 9c5f90e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_brightness.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM21,19.01L3,19.01L3,4.99h18v14.02zM8,16h2.5l1.5,1.5 1.5,-1.5L16,16v-2.5l1.5,-1.5 -1.5,-1.5L16,8h-2.5L12,6.5 10.5,8L8,8v2.5L6.5,12 8,13.5L8,16zM12,9c1.66,0 3,1.34 3,3s-1.34,3 -3,3L12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_cell.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_cell.xml
deleted file mode 100644
index 160abc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM11,24h2v-2h-2v2zM15,24h2v-2h-2v2zM6,0v20h12L18,0L6,0zM16,16L8,16L8,4h8v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_ethernet.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_ethernet.xml
deleted file mode 100644
index cdc8802..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_ethernet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,6.76L6.23,5.48 0.82,12l5.41,6.52 1.54,-1.28L3.42,12l4.35,-5.24zM7,13h2v-2L7,11v2zM17,11h-2v2h2v-2zM11,13h2v-2h-2v2zM17.77,5.48l-1.54,1.28L20.58,12l-4.35,5.24 1.54,1.28L23.18,12l-5.41,-6.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_antenna.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_input_antenna.xml
deleted file mode 100644
index 9379c0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_antenna.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-3.87,0 -7,3.13 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM13,14.29c0.88,-0.39 1.5,-1.26 1.5,-2.29 0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,10.62 9.5,12c0,1.02 0.62,1.9 1.5,2.29v3.3L7.59,21 9,22.41l3,-3 3,3L16.41,21 13,17.59v-3.3zM12,1C5.93,1 1,5.93 1,12h2c0,-4.97 4.03,-9 9,-9s9,4.03 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_component.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_input_component.xml
deleted file mode 100644
index 86fb755..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_component.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v6h6L7,6L5,6L5,2zM9,18.82h2L11,23h2v-4.18h2L15,14L9,14v4.82zM1,18.82h2L3,23h2v-4.18h2L7,14L1,14v4.82zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v6h6L23,6h-2zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v6h6L15,6h-2L13,2zM17,18.82h2L19,23h2v-4.18h2L23,14h-6v4.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_composite.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_input_composite.xml
deleted file mode 100644
index 86fb755..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_composite.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v6h6L7,6L5,6L5,2zM9,18.82h2L11,23h2v-4.18h2L15,14L9,14v4.82zM1,18.82h2L3,23h2v-4.18h2L7,14L1,14v4.82zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v6h6L23,6h-2zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v6h6L15,6h-2L13,2zM17,18.82h2L19,23h2v-4.18h2L23,14h-6v4.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_hdmi.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_input_hdmi.xml
deleted file mode 100644
index 3bd6555..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_hdmi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7V2H6v5H5v6l3,6v3h8v-3l3,-6V7h-1zM8,4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_svideo.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_input_svideo.xml
deleted file mode 100644
index 373e176..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_input_svideo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S5,10.67 5,11.5 5.67,13 6.5,13 8,12.33 8,11.5zM15,6.5c0,-0.83 -0.67,-1.5 -1.5,-1.5h-3C9.67,5 9,5.67 9,6.5S9.67,8 10.5,8h3c0.83,0 1.5,-0.67 1.5,-1.5zM8.5,15c-0.83,0 -1.5,0.67 -1.5,1.5S7.67,18 8.5,18s1.5,-0.67 1.5,-1.5S9.33,15 8.5,15zM12,1C5.93,1 1,5.93 1,12s4.93,11 11,11 11,-4.93 11,-11S18.07,1 12,1zM12,21c-4.96,0 -9,-4.04 -9,-9s4.04,-9 9,-9 9,4.04 9,9 -4.04,9 -9,9zM17.5,10c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5zM15.5,15c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5 1.5,-0.67 1.5,-1.5 -0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_overscan.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_overscan.xml
deleted file mode 100644
index 3a27d00..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_overscan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,5.5L10,8h4l-1.99,-2.5zM18,10v4l2.5,-1.99L18,10zM6,10l-2.5,2.01L6,14v-4zM14,16h-4l2.01,2.5L14,16zM23,3L1,3v18h22L23,3zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_phone.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_phone.xml
deleted file mode 100644
index b736611..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.21,17.37c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3L3.03,3C2.45,13.18 10.82,21.55 21,20.97v-5.51l-5.27,-0.61 -2.52,2.52zM11,9h2v2h-2zM15,9h2v2h-2zM19,9h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_power.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_power.xml
deleted file mode 100644
index 8af8bdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM11,24h2v-2h-2v2zM13,2h-2v10h2L13,2zM16.56,4.44l-1.45,1.45C16.84,6.94 18,8.83 18,11c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2.17 1.16,-4.06 2.88,-5.12L7.44,4.44C5.36,5.88 4,8.28 4,11c0,4.42 3.58,8 8,8s8,-3.58 8,-8c0,-2.72 -1.36,-5.12 -3.44,-6.56zM15,24h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_remote.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_remote.xml
deleted file mode 100644
index 09371cc2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_remote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9L8,9v14h8L16,9zM12,15c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM7.05,6.05l1.41,1.41C9.37,6.56 10.62,6 12,6s2.63,0.56 3.54,1.46l1.41,-1.41C15.68,4.78 13.93,4 12,4s-3.68,0.78 -4.95,2.05zM12,0C8.96,0 6.21,1.23 4.22,3.22l1.41,1.41C7.26,3.01 9.51,2 12,2s4.74,1.01 6.36,2.64l1.41,-1.41C17.79,1.23 15.04,0 12,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_suggest.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_suggest.xml
deleted file mode 100644
index 8038ca5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_suggest.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.41,6.59L15,5.5l2.41,-1.09L18.5,2l1.09,2.41L22,5.5l-2.41,1.09L18.5,9L17.41,6.59zM21.28,12.72L20.5,11l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78,-1.72L23,13.5L21.28,12.72zM16.24,14.37l1.94,1.47l-2.5,4.33l-2.24,-0.94c-0.2,0.13 -0.42,0.26 -0.64,0.37L12.5,22h-5l-0.3,-2.41c-0.22,-0.11 -0.43,-0.23 -0.64,-0.37l-2.24,0.94l-2.5,-4.33l1.94,-1.47C3.75,14.25 3.75,14.12 3.75,14s0,-0.25 0.01,-0.37l-1.94,-1.47l2.5,-4.33l2.24,0.94c0.2,-0.13 0.42,-0.26 0.64,-0.37L7.5,6h5l0.3,2.41c0.22,0.11 0.43,0.23 0.64,0.37l2.24,-0.94l2.5,4.33l-1.94,1.47c0.01,0.12 0.01,0.24 0.01,0.37S16.25,14.25 16.24,14.37zM13,14c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3S13,15.66 13,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_system_daydream.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_system_daydream.xml
deleted file mode 100644
index d777dc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_system_daydream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6.5c1.38,0 2.5,-1.12 2.5,-2.5S16.88,11 15.5,11h-0.05c-0.24,-1.69 -1.69,-3 -3.45,-3 -1.4,0 -2.6,0.83 -3.16,2.02h-0.16C7.17,10.18 6,11.45 6,13c0,1.66 1.34,3 3,3zM23,3L1,3v18h22L23,3zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/settings_voice.xml b/compose/material/material/icons/generator/raw-icons/sharp/settings_voice.xml
deleted file mode 100644
index 161a468..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/settings_voice.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM12,13c1.66,0 2.99,-1.34 2.99,-3L15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4v6c0,1.66 1.34,3 3,3zM11,24h2v-2h-2v2zM15,24h2v-2h-2v2zM19,10h-1.7c0,3 -2.54,5.1 -5.3,5.1S6.7,13 6.7,10L5,10c0,3.41 2.72,6.23 6,6.72L11,20h2v-3.28c3.28,-0.49 6,-3.31 6,-6.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/severe_cold.xml b/compose/material/material/icons/generator/raw-icons/sharp/severe_cold.xml
deleted file mode 100644
index feac899..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/severe_cold.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.41l4,-4l-1.41,-1.41l-2.59,2.59l0,-3.59l-2,0l0,3.59l-2.59,-2.59l-1.41,1.41l4,4l0,1.59l-1.59,0l-4,-4l-1.41,1.41l2.59,2.59l-3.59,0l0,2l3.59,0l-2.59,2.59l1.41,1.41l4,-4l1.59,0l0,1.59l-4,4l1.41,1.41l2.59,-2.59l0,3.59l2,0l0,-3.59l2.59,2.59l1.41,-1.41l-4,-4l0,-1.59l1.59,0l4,4l1.41,-1.41l-2.59,-2.59l3.59,0l0,-2l-8,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shape_line.xml b/compose/material/material/icons/generator/raw-icons/sharp/shape_line.xml
deleted file mode 100644
index f7982ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shape_line.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11c2.76,0 5,-2.24 5,-5S8.76,1 6,1S1,3.24 1,6S3.24,11 6,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,14h-9v9h9V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.7C18.11,7.89 18.54,8 19,8c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3s-3,1.35 -3,3c0,0.46 0.11,0.89 0.3,1.29L6.29,16.3C5.89,16.11 5.46,16 5,16c-1.65,0 -3,1.35 -3,3s1.35,3 3,3s3,-1.35 3,-3c0,-0.46 -0.11,-0.89 -0.3,-1.29L17.71,7.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/share.xml b/compose/material/material/icons/generator/raw-icons/sharp/share.xml
deleted file mode 100644
index 17f4f4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/share.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92s2.92,-1.31 2.92,-2.92 -1.31,-2.92 -2.92,-2.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/share_location.xml b/compose/material/material/icons/generator/raw-icons/sharp/share_location.xml
deleted file mode 100644
index 2acc4e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/share_location.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.02,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.42,-1.43C15.81,19.17 14.48,19.75 13.02,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.03,12c0,-4.05 3.03,-7.41 6.95,-7.93V2.05C5.95,2.58 2.03,6.84 2.03,12c0,5.16 3.92,9.42 8.95,9.95v-2.02C7.06,19.41 4.03,16.05 4.03,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.95,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32l-1.43,1.43C19.19,8.21 19.77,9.54 19.95,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.34,4.26c-1.48,-1.21 -3.32,-2.01 -5.32,-2.21v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.34,4.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.33,16.9l1.43,1.42c1.21,-1.48 2.01,-3.31 2.21,-5.32h-2.02C19.77,14.46 19.19,15.79 18.33,16.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11.1C16,8.61 14.1,7 12,7s-4,1.61 -4,4.1c0,1.66 1.33,3.63 4,5.9C14.67,14.73 16,12.76 16,11.1zM12,12c-0.59,0 -1.07,-0.48 -1.07,-1.07c0,-0.59 0.48,-1.07 1.07,-1.07s1.07,0.48 1.07,1.07C13.07,11.52 12.59,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shield.xml b/compose/material/material/icons/generator/raw-icons/sharp/shield.xml
deleted file mode 100644
index 33c17e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shield.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shield_moon.xml b/compose/material/material/icons/generator/raw-icons/sharp/shield_moon.xml
deleted file mode 100644
index 4656158..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shield_moon.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM15.97,14.41c-1.84,2.17 -5.21,2.1 -6.96,-0.07c-2.19,-2.72 -0.65,-6.72 2.69,-7.33c0.34,-0.06 0.63,0.27 0.51,0.6c-0.46,1.23 -0.39,2.64 0.32,3.86c0.71,1.22 1.89,1.99 3.18,2.2C16.05,13.72 16.2,14.14 15.97,14.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shop.xml b/compose/material/material/icons/generator/raw-icons/sharp/shop.xml
deleted file mode 100644
index f5287ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6L16,4c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2L2,6v15h20L22,6h-6zM10,4h4v2h-4L10,4zM9,18L9,9l7.5,4L9,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shop_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/shop_2.xml
deleted file mode 100644
index 7215115..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shop_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9l-2,0l0,13l18,0l0,-2l-16,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V1h-8v4H5v13h18V5H18zM12,3h4v2h-4V3zM12,15V8l5.5,3.5L12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shop_two.xml b/compose/material/material/icons/generator/raw-icons/sharp/shop_two.xml
deleted file mode 100644
index 646969f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shop_two.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9L1,9v13h18v-2L3,20L3,9zM18,5L18,3c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2L5,5v13h18L23,5h-5zM12,3h4v2h-4L12,3zM12,15L12,8l5.5,3 -5.5,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shopping_bag.xml b/compose/material/material/icons/generator/raw-icons/sharp/shopping_bag.xml
deleted file mode 100644
index 08cb1fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shopping_bag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4c0,-2.21 -1.79,-4 -4,-4S8,3.79 8,6H4v16h16V6zM10,11H8V8h2V11zM12,4c1.1,0 2,0.9 2,2h-4C10,4.9 10.9,4 12,4zM16,11h-2V8h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shopping_basket.xml b/compose/material/material/icons/generator/raw-icons/sharp/shopping_basket.xml
deleted file mode 100644
index 5434672..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shopping_basket.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.21,9l-4.39,-6.57c-0.4,-0.59 -1.27,-0.59 -1.66,0L6.77,9L0.69,9L4,21h16.02l3.29,-12h-6.1zM11.99,4.79L14.8,9L9.18,9l2.81,-4.21zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/sharp/shopping_cart.xml
deleted file mode 100644
index 45160c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM7,15l1.1,-2h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21.7,4L5.21,4l-0.94,-2L1,2v2h2l3.6,7.59L3.62,17L19,17v-2L7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shopping_cart_checkout.xml b/compose/material/material/icons/generator/raw-icons/sharp/shopping_cart_checkout.xml
deleted file mode 100644
index d9f7089..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shopping_cart_checkout.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h8.66L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59L3.61,17H19v-2H7L8.1,13zM12,2l4,4l-4,4l-1.41,-1.41L12.17,7L8,7l0,-2l4.17,0l-1.59,-1.59L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/short_text.xml b/compose/material/material/icons/generator/raw-icons/sharp/short_text.xml
deleted file mode 100644
index 250c0e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/short_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h16v2L4,11L4,9zM4,13h10v2L4,15v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shortcut.xml b/compose/material/material/icons/generator/raw-icons/sharp/shortcut.xml
deleted file mode 100644
index b754869..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shortcut.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l-6,-6v5H8c-2.76,0 -5,2.24 -5,5v4h2v-4c0,-1.65 1.35,-3 3,-3h7v5L21,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/show_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/show_chart.xml
deleted file mode 100644
index c425281..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/show_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18.49l6,-6.01 4,4L22,6.92l-1.41,-1.41 -7.09,7.97 -4,-4L2,16.99l1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shower.xml b/compose/material/material/icons/generator/raw-icons/sharp/shower.xml
deleted file mode 100644
index 7a40d4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shower.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.08V3h-2v2.08C7.61,5.57 5,8.47 5,12v2h14v-2C19,8.47 16.39,5.57 13,5.08z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shuffle.xml b/compose/material/material/icons/generator/raw-icons/sharp/shuffle.xml
deleted file mode 100644
index 2469a90..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shuffle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,9.17L5.41,4 4,5.41l5.17,5.17 1.42,-1.41zM14.5,4l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5L20,4h-5.5zM14.83,13.41l-1.41,1.41 3.13,3.13L14.5,20L20,20v-5.5l-2.04,2.04 -3.13,-3.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shuffle_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/shuffle_on.xml
deleted file mode 100644
index b9f96e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shuffle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,1v22h22V1H1zM5.41,4l5.18,5.17l-1.42,1.41L4,5.41L5.41,4zM20,20h-5.5l2.05,-2.05l-3.13,-3.13l1.41,-1.41l3.13,3.13L20,14.5V20zM20,9.5l-2.04,-2.04L5.41,20L4,18.59L16.54,6.04L14.5,4H20V9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/shutter_speed.xml b/compose/material/material/icons/generator/raw-icons/sharp/shutter_speed.xml
deleted file mode 100644
index 6c2598b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/shutter_speed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,1L9,1v2h6L15,1zM19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9 9,-4.03 9,-9c0,-2.12 -0.74,-4.07 -1.97,-5.61zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM11.68,15L6.35,15c0.57,1.62 1.82,2.92 3.41,3.56l-0.11,-0.06 2.03,-3.5zM17.65,11c-0.57,-1.6 -1.78,-2.89 -3.34,-3.54L12.26,11h5.39zM10.61,18.83c0.45,0.11 0.91,0.17 1.39,0.17 1.34,0 2.57,-0.45 3.57,-1.19l-2.11,-3.9 -2.85,4.92zM7.55,8.99C6.59,10.05 6,11.46 6,13c0,0.34 0.04,0.67 0.09,1h4.72L7.55,8.99zM16.34,17.13C17.37,16.06 18,14.6 18,13c0,-0.34 -0.04,-0.67 -0.09,-1h-4.34l2.77,5.13zM13.33,7.15C12.9,7.06 12.46,7 12,7c-1.4,0 -2.69,0.49 -3.71,1.29l2.32,3.56 2.72,-4.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sick.xml b/compose/material/material/icons/generator/raw-icons/sharp/sick.xml
deleted file mode 100644
index 800eecd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sick.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9c-1.1,0 -2,-0.9 -2,-2c0,-1.1 2,-4 2,-4s2,2.9 2,4C23,8.1 22.1,9 21,9zM17.5,7c0,-0.73 0.41,-1.71 0.92,-2.66C16.68,2.88 14.44,2 11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12c0,-0.55 -0.06,-1.09 -0.14,-1.62C21.58,10.45 21.3,10.5 21,10.5C19.07,10.5 17.5,8.93 17.5,7zM15.62,7.38l1.06,1.06L15.62,9.5l1.06,1.06l-1.06,1.06L13.5,9.5L15.62,7.38zM7.32,8.44l1.06,-1.06L10.5,9.5l-2.12,2.12l-1.06,-1.06L8.38,9.5L7.32,8.44zM15.44,17c-0.69,-1.19 -1.97,-2 -3.44,-2s-2.75,0.81 -3.44,2H6.88c0.3,-0.76 0.76,-1.43 1.34,-1.99L5.24,13.3c-0.45,0.26 -1.01,0.28 -1.49,0c-0.72,-0.41 -0.96,-1.33 -0.55,-2.05c0.41,-0.72 1.33,-0.96 2.05,-0.55c0.48,0.28 0.74,0.78 0.74,1.29l3.58,2.07c0.73,-0.36 1.55,-0.56 2.43,-0.56c2.33,0 4.32,1.45 5.12,3.5H15.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sign_language.xml b/compose/material/material/icons/generator/raw-icons/sharp/sign_language.xml
deleted file mode 100644
index d62d2e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sign_language.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.49,13l-1.39,-2.7L12.49,9L19,15.2V24H4.5v-2H10v-1H3v-2h7v-1H2v-2h8v-1H3.5v-2H12.49zM11.78,7.12c-0.84,0.4 -1.17,0.62 -1.63,1.19L6.76,4.74l1.45,-1.38L11.78,7.12zM9.64,9.21C9.41,9.76 9.35,10.45 9.44,11H8.58L5.62,7.89l1.45,-1.38L9.64,9.21zM21.98,12.34L22,3.35l-1.9,-0.1l-1,2.86L13.3,0l-1.45,1.38l4.09,4.3l-0.73,0.69L9.74,0.64L8.3,2l3.36,3.53l1.06,1.11l2.65,2.33l5.08,4.83L21.98,12.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_0_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_0_bar.xml
deleted file mode 100644
index 2dbba36..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22zM20,20H6.83L20,6.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_4_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_4_bar.xml
deleted file mode 100644
index e292fab..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt.xml
deleted file mode 100644
index 709e279..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h3v16h-3L17,4zM5,14h3v6L5,20v-6zM11,9h3v11h-3L11,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt_1_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt_1_bar.xml
deleted file mode 100644
index b0c89e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt_2_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt_2_bar.xml
deleted file mode 100644
index 9d48f66..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_alt_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14zM11,9h3v11h-3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_connected_no_internet_0_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_connected_no_internet_0_bar.xml
deleted file mode 100644
index 4a1e6fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_connected_no_internet_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM18,20v2H2L22,2v6h-2V6.83L6.83,20H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_connected_no_internet_4_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_connected_no_internet_4_bar.xml
deleted file mode 100644
index 47710c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_connected_no_internet_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM2,22h16V8h4V2L2,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_no_sim.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_no_sim.xml
deleted file mode 100644
index 34cf93e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_no_sim.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-9L7.95,5.06 19,16.11zM3.79,3.74L2.38,5.15 5,7.77L5,21h13.23l1.62,1.62 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_nodata.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_nodata.xml
deleted file mode 100644
index af93c8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_nodata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-9v9H2L22,2V13zM21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_null.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_null.xml
deleted file mode 100644
index cf15ce5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.83V20H6.83L20,6.83M22,2L2,22h20V2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_off.xml
deleted file mode 100644
index eeb9d9b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_cellular_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1l-8.31,8.31 8.31,8.3zM4.91,4.36L3.5,5.77l6.36,6.37L1,21h17.73l2,2 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_0_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_0_bar.xml
deleted file mode 100644
index 827c3d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_4_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_4_bar.xml
deleted file mode 100644
index 5988e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,21.49L23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4C5.28,3 0.81,6.66 0.36,7l11.63,14.49 0.01,0.01 0.01,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_4_bar_lock.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_4_bar_lock.xml
deleted file mode 100644
index 5013b5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_4_bar_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,15.11c0,-1 -0.68,-1.92 -1.66,-2.08c-0.12,-0.02 -0.24,-0.02 -0.36,-0.02l0,0c0,0 -0.01,0 -0.01,0C18.88,13.03 18,13.91 18,15v1c-0.55,0 -1,0 -1,0v5h6v-5c0,0 -0.45,0 -1,0V15.11zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_bad.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_bad.xml
deleted file mode 100644
index 95ddd92..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09l-0.3,-0.3L15.41,14L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_connected_no_internet_4.xml
deleted file mode 100644
index 95ddd92..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_connected_no_internet_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09l-0.3,-0.3L15.41,14L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_off.xml
deleted file mode 100644
index bbb1e05..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4 -1.32,0 -2.55,0.14 -3.69,0.38L18.43,13.5 23.64,7zM3.41,1.31L2,2.72l2.05,2.05C1.91,5.76 0.59,6.82 0.36,7L12,21.5l3.91,-4.87 3.32,3.32 1.41,-1.41L3.41,1.31z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_4_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_4_bar.xml
deleted file mode 100644
index 6424547..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_connected_no_internet_4.xml
deleted file mode 100644
index 4f6727d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_connected_no_internet_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21l5,-5.01V8h5.92C19.97,5.51 16.16,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_null.xml b/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_null.xml
deleted file mode 100644
index 4e2c4f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signal_wifi_statusbar_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6c3.33,0 6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/signpost.xml b/compose/material/material/icons/generator/raw-icons/sharp/signpost.xml
deleted file mode 100644
index 8a77cb8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/signpost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-0.55,0 -1,0.45 -1,1v1H5.5C4.67,4 4,4.67 4,5.5v3C4,9.33 4.67,10 5.5,10H11v2H6.62c-0.4,0 -0.78,0.16 -1.06,0.44l-1.5,1.5c-0.59,0.59 -0.59,1.54 0,2.12l1.5,1.5C5.84,17.84 6.22,18 6.62,18H11v3c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-3h5.5c0.83,0 1.5,-0.67 1.5,-1.5v-3c0,-0.83 -0.67,-1.5 -1.5,-1.5H13v-2h4.38c0.4,0 0.78,-0.16 1.06,-0.44l1.5,-1.5c0.59,-0.59 0.59,-1.54 0,-2.12l-1.5,-1.5C18.16,4.16 17.78,4 17.38,4H13V3C13,2.45 12.55,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sim_card.xml b/compose/material/material/icons/generator/raw-icons/sharp/sim_card.xml
deleted file mode 100644
index ae8c97f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sim_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.99,2L10,2L4,8v14h16l-0.01,-20zM9,19L7,19v-2h2v2zM17,19h-2v-2h2v2zM9,15L7,15v-4h2v4zM13,19h-2v-4h2v4zM13,13h-2v-2h2v2zM17,15h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sim_card_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/sim_card_alert.xml
deleted file mode 100644
index e2398c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sim_card_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H10L4,8v14h16V2zM13,17h-2v-2h2V17zM13,13h-2V8h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sim_card_download.xml b/compose/material/material/icons/generator/raw-icons/sharp/sim_card_download.xml
deleted file mode 100644
index 0fe6b46..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sim_card_download.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H10L4,8v14h16V2zM12,17l-4,-4h3V9.02L13,9v4h3L12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/single_bed.xml b/compose/material/material/icons/generator/raw-icons/sharp/single_bed.xml
deleted file mode 100644
index 4112b61..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/single_bed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10V5H6v5H4v7h1.33L6,19h1l0.67,-2h8.67L17,19h1l0.67,-2H20v-7H18zM11,10H8V7h3V10zM16,10h-3V7h3V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sip.xml b/compose/material/material/icons/generator/raw-icons/sharp/sip.xml
deleted file mode 100644
index a6ef01a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sip.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,10.5h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM10,10.5H6.5v0.75H10V15H5v-1.5h3.5v-0.75H5V9h5V10.5zM13,15h-2V9h2V15zM19,9v4h-3.5v2H14V9H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/skateboarding.xml b/compose/material/material/icons/generator/raw-icons/sharp/skateboarding.xml
deleted file mode 100644
index 89b9669..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/skateboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S13,4.1 13,3zM7.25,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S6.84,24 7.25,24S8,23.66 8,23.25S7.66,22.5 7.25,22.5zM15.75,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S15.34,24 15.75,24s0.75,-0.34 0.75,-0.75S16.16,22.5 15.75,22.5zM19.24,19c-0.24,0 -0.45,0.11 -0.59,0.3c-0.55,0.73 -1.42,1.2 -2.4,1.2H16v-6l-4.32,-2.67l1.8,-2.89C14.63,10.78 16.68,12 19,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C14.16,5.64 13.61,5 12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35l-2.89,4.63l1.62,5.03l-3.12,3.76c-0.7,-0.16 -1.3,-0.57 -1.71,-1.12C4.21,19.11 3.99,19 3.75,19C3.31,19 3,19.36 3,19.75c0,0.15 0.05,0.31 0.15,0.45c0.82,1.1 2.13,1.8 3.6,1.8h9.5c1.47,0 2.78,-0.7 3.6,-1.8c0.1,-0.14 0.15,-0.3 0.15,-0.45C20,19.36 19.68,19 19.24,19zM14,20.5H8.6l2.9,-3.5l-1,-3.3l3.5,2.2V20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/skip_next.xml b/compose/material/material/icons/generator/raw-icons/sharp/skip_next.xml
deleted file mode 100644
index 4fff2475b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/skip_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18l8.5,-6L6,6v12zM16,6v12h2V6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/skip_previous.xml b/compose/material/material/icons/generator/raw-icons/sharp/skip_previous.xml
deleted file mode 100644
index 8f06514..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/skip_previous.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h2v12L6,18L6,6zM9.5,12l8.5,6L18,6l-8.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sledding.xml b/compose/material/material/icons/generator/raw-icons/sharp/sledding.xml
deleted file mode 100644
index 740a5a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sledding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S14,3.4 14,4.5zM17.22,17.9l1.93,0.63l-0.46,1.43l-3.32,-1.08L14.9,20.3l3.32,1.08l0,0c1.31,0.43 2.72,-0.29 3.15,-1.61c0.43,-1.31 -0.29,-2.72 -1.61,-3.15l0.46,-1.43c2.1,0.68 3.25,2.94 2.57,5.04c-0.68,2.1 -2.94,3.25 -5.04,2.57h0L1,17.36l0.46,-1.43l3.93,1.28l0.46,-1.43L1.93,14.5l0.46,-1.43L4,13.6V9.5l5.47,-2.35c0.39,-0.17 0.84,-0.21 1.28,-0.07c0.95,0.31 1.46,1.32 1.16,2.27l-1.05,3.24L14.5,12L17.22,17.9zM6,14.25l0.48,0.16l0.75,-2.31L7.92,10L6,10.82V14.25zM13.94,18.41l-6.66,-2.16l-0.46,1.43l6.66,2.16L13.94,18.41zM14.63,17.05l-1.18,-2.56l-3.97,0.89L14.63,17.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/slideshow.xml b/compose/material/material/icons/generator/raw-icons/sharp/slideshow.xml
deleted file mode 100644
index 4581d485..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/slideshow.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8v8l5,-4 -5,-4zM21,3L3,3v18h18L21,3zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/slow_motion_video.xml b/compose/material/material/icons/generator/raw-icons/sharp/slow_motion_video.xml
deleted file mode 100644
index 3a93cdd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/slow_motion_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.05,9.79L10,7.5v9l3.05,-2.29L16,12l-2.95,-2.21zM13.05,9.79L10,7.5v9l3.05,-2.29L16,12l-2.95,-2.21zM13.05,9.79L10,7.5v9l3.05,-2.29L16,12l-2.95,-2.21zM11,4.07L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62zM5.69,7.1L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9zM4.07,13L2.05,13c0.2,2.01 1,3.84 2.21,5.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43zM22,12c0,5.16 -3.92,9.42 -8.95,9.95v-2.02C16.97,19.41 20,16.05 20,12s-3.03,-7.41 -6.95,-7.93L13.05,2.05C18.08,2.58 22,6.84 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/smart_button.xml b/compose/material/material/icons/generator/raw-icons/sharp/smart_button.xml
deleted file mode 100644
index 3e91534..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/smart_button.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17h-3l0,-2h1V9H4v6h6v2H2V7h20V17zM14.5,19l1.09,-2.41L18,15.5l-2.41,-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19zM17,14l0.62,-1.38L19,12l-1.38,-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/smart_display.xml b/compose/material/material/icons/generator/raw-icons/sharp/smart_display.xml
deleted file mode 100644
index 7ea6830..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/smart_display.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM9.5,16.5v-9l7,4.5L9.5,16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/smart_screen.xml b/compose/material/material/icons/generator/raw-icons/sharp/smart_screen.xml
deleted file mode 100644
index 7b89460..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/smart_screen.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5v14h22V5H1zM18,17H6V7h12V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,11.25h1.5v1.5h-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,11.25h1.5v1.5h-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/smart_toy.xml b/compose/material/material/icons/generator/raw-icons/sharp/smart_toy.xml
deleted file mode 100644
index 87199fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/smart_toy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9V5h-5V2H9v3H4v4H1v6h3v6h16v-6h3V9H20zM7.5,11.5C7.5,10.67 8.17,10 9,10s1.5,0.67 1.5,1.5S9.83,13 9,13S7.5,12.33 7.5,11.5zM16,17H8v-2h8V17zM15,13c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.17,10 15,10s1.5,0.67 1.5,1.5S15.83,13 15,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/smartphone.xml b/compose/material/material/icons/generator/raw-icons/sharp/smartphone.xml
deleted file mode 100644
index fea13e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/smartphone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,1v22h14L19,1L5,1zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/smoke_free.xml b/compose/material/material/icons/generator/raw-icons/sharp/smoke_free.xml
deleted file mode 100644
index 1c52f27..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/smoke_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,13L22,13v3h-1.5zM14.5,8.65h1.53c1.05,0 1.97,0.74 1.97,2.05L18,12h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16L14.5,7.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35zM17,13h-2.34L17,15.34zM18.85,4.73c0.62,-0.61 1,-1.45 1,-2.38h-1.5c0,1.02 -0.83,1.85 -1.85,1.85v1.5c2.24,0 4,1.83 4,4.07L20.5,12L22,12L22,9.76c0,-2.22 -1.28,-4.14 -3.15,-5.03zM18,13h1.5v3L18,16zM3.41,4.59L2,6l7,7L2,13v3h10l7,7 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/smoking_rooms.xml b/compose/material/material/icons/generator/raw-icons/sharp/smoking_rooms.xml
deleted file mode 100644
index 4fd9892..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/smoking_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16h15v3L2,19v-3zM20.5,16L22,16v3h-1.5v-3zM18,16h1.5v3L18,19v-3zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38C19.85,3.5 18.35,2 16.5,2v1.5c1.02,0 1.85,0.83 1.85,1.85S17.52,7.2 16.5,7.2v1.5c2.24,0 4,1.83 4,4.07L20.5,15L22,15v-2.24c0,-2.22 -1.28,-4.14 -3.15,-5.03zM16.03,10.2L14.5,10.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35h1.53c1.05,0 1.97,0.74 1.97,2.05L18,15h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sms.xml b/compose/material/material/icons/generator/raw-icons/sharp/sms.xml
deleted file mode 100644
index 4f4c6d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v20l4,-4h16L22,2zM9,11L7,11L7,9h2v2zM13,11h-2L11,9h2v2zM17,11h-2L15,9h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sms_failed.xml b/compose/material/material/icons/generator/raw-icons/sharp/sms_failed.xml
deleted file mode 100644
index d3cc20c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sms_failed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2,2v20l4,-4h16L22,2zM13,14h-2v-2h2v2zM13,10h-2L11,6h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/snippet_folder.xml b/compose/material/material/icons/generator/raw-icons/sharp/snippet_folder.xml
deleted file mode 100644
index 89b0aa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/snippet_folder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6l-2,-2H2v16h20V6H12zM19,17l-6,0V9h3.5l2.5,2.5V17zM15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/snooze.xml b/compose/material/material/icons/generator/raw-icons/sharp/snooze.xml
deleted file mode 100644
index 72e830f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/snooze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h3.63L9,15.2L9,17h6v-2h-3.63L15,10.8L15,9L9,9v2zM16.056,3.346l1.282,-1.535 4.607,3.85 -1.28,1.54zM3.336,7.19l-1.28,-1.536L6.662,1.81l1.28,1.536zM12,6c3.86,0 7,3.14 7,7s-3.14,7 -7,7 -7,-3.14 -7,-7 3.14,-7 7,-7m0,-2c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/snowboarding.xml b/compose/material/material/icons/generator/raw-icons/sharp/snowboarding.xml
deleted file mode 100644
index 798b6d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/snowboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S14,4.1 14,3zM21.4,20.09c-0.23,-0.05 -0.46,0.02 -0.64,0.17c-0.69,0.6 -1.64,0.88 -2.6,0.67L17,20.69l-1,-6.19l-3.32,-2.67l1.8,-2.89C15.63,10.78 17.68,12 20,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C15.16,5.64 14.61,5 13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35L8.5,11.7l1,4.3L6,18.35l-0.47,-0.1c-0.96,-0.2 -1.71,-0.85 -2.1,-1.67c-0.1,-0.21 -0.28,-0.37 -0.51,-0.42c-0.43,-0.09 -0.82,0.2 -0.9,0.58C1.98,16.88 2,17.05 2.07,17.2c0.58,1.24 1.71,2.2 3.15,2.51l12.63,2.69c1.44,0.31 2.86,-0.11 3.9,-1.01c0.13,-0.11 0.21,-0.26 0.24,-0.41C22.06,20.6 21.83,20.18 21.4,20.09zM8.73,18.93l3.02,-2.03l-0.44,-3.32l2.84,2.02l0.75,4.64L8.73,18.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/snowmobile.xml b/compose/material/material/icons/generator/raw-icons/sharp/snowmobile.xml
deleted file mode 100644
index 5ccc040..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/snowmobile.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17c0,0.55 -0.45,1 -1,1h-0.17l-2.2,-2.2C21.6,15.18 23,13 23,13l-9,-8h-3v2h2.25l1.45,1.3L11,11l-9.5,-1L0,13l4.54,1.36l-3.49,1.88C-0.77,17.22 -0.07,20 2,20h6c2.21,0 4,-1.79 4,-4h4l2,2h-3v2h6c1.66,0 3,-1.34 3,-3H22zM8,18H2l5.25,-2.83L10,16C10,17.1 9.11,18 8,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/snowshoeing.xml b/compose/material/material/icons/generator/raw-icons/sharp/snowshoeing.xml
deleted file mode 100644
index e1df340..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/snowshoeing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,3.5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S12.5,4.6 12.5,3.5zM6.32,19.03l-1.14,-1.47L4,18.5l2.38,3.04c0.51,0.65 1.16,1.15 1.88,1.41c0.28,0.1 0.53,0.04 0.72,-0.11c0.3,-0.23 0.42,-0.7 0.12,-1.07c-0.08,-0.1 -0.2,-0.17 -0.31,-0.22c-0.43,-0.18 -0.82,-0.45 -1.14,-0.83l-0.08,-0.1L11,18.2l0.89,-3.22l2.11,2v4.52h-2V23h3.87c0.82,0 1.61,-0.21 2.26,-0.61c0.26,-0.16 0.37,-0.39 0.37,-0.64c0,-0.38 -0.3,-0.75 -0.77,-0.75c-0.13,0 -0.26,0.04 -0.37,0.1c-0.4,0.23 -0.87,0.37 -1.36,0.4l0,-6.02l-2.11,-2l0.6,-3C15.79,11.98 17.8,13 20,13v-2c-1.9,0 -3.51,-1.02 -4.31,-2.42l-1,-1.58c-0.4,-0.6 -1,-1 -1.7,-1C12.24,6 11.58,6.34 7,8.28V13h2V9.58l1.79,-0.7L9.2,17L6.32,19.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/soap.xml b/compose/material/material/icons/generator/raw-icons/sharp/soap.xml
deleted file mode 100644
index 310f894..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/soap.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,6C14.66,6 15,6.34 15,6.75S14.66,7.5 14.25,7.5S13.5,7.16 13.5,6.75S13.84,6 14.25,6M14.25,4.5C13.01,4.5 12,5.51 12,6.75S13.01,9 14.25,9s2.25,-1.01 2.25,-2.25S15.49,4.5 14.25,4.5L14.25,4.5zM20,5.5c0.28,0 0.5,0.22 0.5,0.5S20.28,6.5 20,6.5S19.5,6.28 19.5,6S19.72,5.5 20,5.5M20,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S21.1,4 20,4L20,4zM18,2.5C18,3.33 17.33,4 16.5,4C15.67,4 15,3.33 15,2.5S15.67,1 16.5,1C17.33,1 18,1.67 18,2.5zM1,12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88,-3.3L9.12,5L1,12.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/social_distance.xml b/compose/material/material/icons/generator/raw-icons/sharp/social_distance.xml
deleted file mode 100644
index c46410c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/social_distance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S4,6.1 4,5zM8.78,8.58C7.93,8.21 6.99,8 6,8S4.07,8.21 3.22,8.58C2.48,8.9 2,9.62 2,10.43L2,11h8l0,-0.57C10,9.62 9.52,8.9 8.78,8.58zM18,7c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C16,6.1 16.9,7 18,7zM20.78,8.58C19.93,8.21 18.99,8 18,8c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,8.9 14,9.62 14,10.43L14,11h8l0,-0.57C22,9.62 21.52,8.9 20.78,8.58zM22,17l-4,-4v3H6v-3l-4,4l4,4v-3h12v3L22,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/solar_power.xml b/compose/material/material/icons/generator/raw-icons/sharp/solar_power.xml
deleted file mode 100644
index b411a90..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/solar_power.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.33,16l7.67,0l0,-3l-7,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16l7.67,0l-0.67,-3l-7,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,18l-8.11,0l0,4l9,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22l9,0l0,-4l-8.11,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.764,7.205l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.705,7.913l2.121,-2.121l1.414,1.414l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,-2.24 5,-5H7C7,4.76 9.24,7 12,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sort.xml b/compose/material/material/icons/generator/raw-icons/sharp/sort.xml
deleted file mode 100644
index b9a508d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sort.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h6v-2L3,16v2zM3,6v2h18L21,6L3,6zM3,13h12v-2L3,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sort_by_alpha.xml b/compose/material/material/icons/generator/raw-icons/sharp/sort_by_alpha.xml
deleted file mode 100644
index 995c10c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sort_by_alpha.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.94,4.66h-4.72l2.36,-2.36 2.36,2.36zM10.25,19.37h4.66l-2.33,2.33 -2.33,-2.33zM6.1,6.27L1.6,17.73h1.84l0.92,-2.45h5.11l0.92,2.45h1.84L7.74,6.27L6.1,6.27zM4.97,13.64l1.94,-5.18 1.94,5.18L4.97,13.64zM15.73,16.14h6.12v1.59h-8.53v-1.29l5.92,-8.56h-5.88v-1.6h8.3v1.26l-5.93,8.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sos.xml b/compose/material/material/icons/generator/raw-icons/sharp/sos.xml
deleted file mode 100644
index f2472e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,7h-7v10h7V7zM13.5,15h-3V9h3V15zM1,15h4v-2H1V7h6v2H3v2h4v6H1V15zM17,15h4v-2h-4V7h6v2h-4v2h4v6h-6V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/soup_kitchen.xml b/compose/material/material/icons/generator/raw-icons/sharp/soup_kitchen.xml
deleted file mode 100644
index f131027..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/soup_kitchen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,7C6.06,7.55 6,7.97 6,8.38C6,9.15 7,11 7,12c0,0.95 -0.4,1.5 -0.4,1.5H5.1c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62C4.5,7.97 4.56,7.55 4.9,7H6.4zM11.4,7C11.06,7.55 11,7.97 11,8.38C11,9.15 12,11 12,12c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H11.4zM8.15,7c-0.34,0.55 -0.4,0.97 -0.4,1.38c0,0.77 1,2.63 1,3.62c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H8.15zM21.47,6.5c0,0 0.13,-1.06 0.13,-1.5c0,-1.65 -1.35,-3 -3,-3c-1.54,0 -2.81,1.16 -2.98,2.65L14.53,15l-11.6,0c-0.02,3.87 3.09,7 6.82,7c3.48,0 6.34,-2.73 6.71,-6.23l1.15,-10.87C17.66,4.39 18.08,4 18.6,4c0.55,0 1,0.45 1,1c0,0.3 -0.1,1.25 -0.1,1.25L21.47,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/source.xml b/compose/material/material/icons/generator/raw-icons/sharp/source.xml
deleted file mode 100644
index 610bbaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6l-2,-2H2v16h20V6H12zM14,16H6v-2h8V16zM18,12H6v-2h12V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/south.xml b/compose/material/material/icons/generator/raw-icons/sharp/south.xml
deleted file mode 100644
index 901daf4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/south.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-1.41,-1.41L13,18.17V2H11v16.17l-4.59,-4.59L5,15l7,7L19,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/south_america.xml b/compose/material/material/icons/generator/raw-icons/sharp/south_america.xml
deleted file mode 100644
index ca13a97..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/south_america.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM4,12c0,-1.95 0.7,-3.74 1.87,-5.13L9,10v1c0,1.1 0.9,2 2,2v5.59c0,0.27 0.11,0.52 0.29,0.71L12,20C7.58,20 4,16.42 4,12zM13,19.94V18l3.75,-5.62c0.16,-0.25 0.25,-0.54 0.25,-0.83V10.5c0,-0.55 -0.45,-1 -1,-1h-1.5l-1.4,-1.75C12.72,7.28 12.15,7 11.54,7H8V5.07C9.18,4.39 10.54,4 12,4c4.41,0 8,3.59 8,8C20,16.07 16.94,19.44 13,19.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/south_east.xml b/compose/material/material/icons/generator/raw-icons/sharp/south_east.xml
deleted file mode 100644
index 701f3d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/south_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/south_west.xml b/compose/material/material/icons/generator/raw-icons/sharp/south_west.xml
deleted file mode 100644
index 6f12610..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/south_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/spa.xml b/compose/material/material/icons/generator/raw-icons/sharp/spa.xml
deleted file mode 100644
index 6305cee5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/spa.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.55,12c-1.07,-0.71 -2.25,-1.27 -3.53,-1.61 1.28,0.34 2.46,0.9 3.53,1.61zM18.98,10.39c-1.29,0.34 -2.49,0.91 -3.57,1.64 1.08,-0.73 2.28,-1.3 3.57,-1.64zM15.49,9.63c-0.18,-2.79 -1.31,-5.51 -3.43,-7.63 -2.14,2.14 -3.32,4.86 -3.55,7.63 1.28,0.68 2.46,1.56 3.49,2.63 1.03,-1.06 2.21,-1.94 3.49,-2.63zM8.99,12.28c-0.14,-0.1 -0.3,-0.19 -0.45,-0.29 0.15,0.11 0.31,0.19 0.45,0.29zM15.41,12.03c-0.13,0.09 -0.27,0.16 -0.4,0.26 0.13,-0.1 0.27,-0.17 0.4,-0.26zM12,15.45C9.85,12.17 6.18,10 2,10c0,5.32 3.36,9.82 8.03,11.49 0.63,0.23 1.29,0.4 1.97,0.51 0.68,-0.12 1.33,-0.29 1.97,-0.51C18.64,19.82 22,15.32 22,10c-4.18,0 -7.85,2.17 -10,5.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/space_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/space_bar.xml
deleted file mode 100644
index cd72f52..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/space_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9v4H6V9H4v6h16V9h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/space_dashboard.xml b/compose/material/material/icons/generator/raw-icons/sharp/space_dashboard.xml
deleted file mode 100644
index b5d3587..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/space_dashboard.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21H3V3h8V21zM13,21h8v-9h-8V21zM21,10V3h-8v7H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/spatial_audio.xml b/compose/material/material/icons/generator/raw-icons/sharp/spatial_audio.xml
deleted file mode 100644
index 6444069..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/spatial_audio.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1h-2c0,4.97 4.03,9 9,9V8C19.14,8 16,4.86 16,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1h-2c0,2.76 2.24,5 5,5V4C21.35,4 20,2.65 20,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/spatial_audio_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/spatial_audio_off.xml
deleted file mode 100644
index b6311db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/spatial_audio_off.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.36,1l-1.41,1.41c2.73,2.73 2.73,7.17 0,9.9l1.41,1.41C23.88,10.21 23.88,4.51 20.36,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.54,10.9c1.95,-1.95 1.95,-5.12 0,-7.07l-1.41,1.41c1.17,1.17 1.17,3.07 0,4.24L17.54,10.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/spatial_tracking.xml b/compose/material/material/icons/generator/raw-icons/sharp/spatial_tracking.xml
deleted file mode 100644
index 2eec1cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/spatial_tracking.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.05,2.41L18.64,1c-3.51,3.51 -3.51,9.21 0,12.73l1.41,-1.41C17.32,9.58 17.32,5.14 20.05,2.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.88,5.24l-1.41,-1.41c-1.95,1.95 -1.95,5.12 0,7.07l1.41,-1.41C21.71,8.32 21.71,6.41 22.88,5.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/speaker.xml b/compose/material/material/icons/generator/raw-icons/sharp/speaker.xml
deleted file mode 100644
index 180fb23..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/speaker.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2L5,2v19.99h14L19,2zM12,4c1.1,0 2,0.9 2,2s-0.9,2 -2,2c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2zM12,20c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/speaker_group.xml b/compose/material/material/icons/generator/raw-icons/sharp/speaker_group.xml
deleted file mode 100644
index 9c9b45a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/speaker_group.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1L8,1v17.99h12L20,1zM14,3c1.1,0 2,0.89 2,2s-0.9,2 -2,2 -2,-0.89 -2,-2 0.9,-2 2,-2zM14,16.5c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5H4v18h12v-2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/speaker_notes.xml b/compose/material/material/icons/generator/raw-icons/sharp/speaker_notes.xml
deleted file mode 100644
index 1d90da2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/speaker_notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2.01,2L2,22l4,-4h16L22,2zM8,14L6,14v-2h2v2zM8,11L6,11L6,9h2v2zM8,8L6,8L6,6h2v2zM15,14h-5v-2h5v2zM18,11h-8L10,9h8v2zM18,8h-8L10,6h8v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/speaker_notes_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/speaker_notes_off.xml
deleted file mode 100644
index f53a26b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/speaker_notes_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.27,1.73L0,3l2.01,2.01L2,22l4,-4h9l5.73,5.73L22,22.46 1.27,1.73zM8,14L6,14v-2h2v2zM6,11L6,9l2,2L6,11zM22,2L4.08,2L10,7.92L10,6h8v2h-7.92l1,1L18,9v2h-4.92l6.99,6.99L22,17.99L22,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/speaker_phone.xml b/compose/material/material/icons/generator/raw-icons/sharp/speaker_phone.xml
deleted file mode 100644
index aceb4c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/speaker_phone.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7.07L8.43,8.5c0.91,-0.91 2.18,-1.48 3.57,-1.48s2.66,0.57 3.57,1.48L17,7.07C15.72,5.79 13.95,5 12,5s-3.72,0.79 -5,2.07zM12,1C8.98,1 6.24,2.23 4.25,4.21l1.41,1.41C7.28,4 9.53,3 12,3s4.72,1 6.34,2.62l1.41,-1.41C17.76,2.23 15.02,1 12,1zM15.99,10.01L8,10v11.99h7.99L15.99,10.01zM15,20L9,20v-8h6v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/speed.xml b/compose/material/material/icons/generator/raw-icons/sharp/speed.xml
deleted file mode 100644
index b6c3b67..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/speed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.39,8.56l-1.24,1.86a8,8 0,0 1,-0.22 7.58H5.07A8,8 0,0 1,15.58 6.85l1.86,-1.24A10,10 0,0 0,4 20h16a10,10 0,0 0,0.38 -11.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,15.41a2,2 0,0 0,2.83 0l5.66,-8.49 -8.49,5.66a2,2 0,0 0,0 2.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/spellcheck.xml b/compose/material/material/icons/generator/raw-icons/sharp/spellcheck.xml
deleted file mode 100644
index fae9ad9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/spellcheck.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.45,16h2.09L9.43,3L7.57,3L2.46,16h2.09l1.12,-3h5.64l1.14,3zM6.43,11L8.5,5.48 10.57,11L6.43,11zM21.59,11.59l-8.09,8.09L9.83,16l-1.41,1.41 5.09,5.09L23,13l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/splitscreen.xml b/compose/material/material/icons/generator/raw-icons/sharp/splitscreen.xml
deleted file mode 100644
index 1a1b5f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/splitscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v5H6V4H18M20,2H4v9h16V2zM18,15v5H6v-5H18M20,13H4v9h16V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/spoke.xml b/compose/material/material/icons/generator/raw-icons/sharp/spoke.xml
deleted file mode 100644
index b271345..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/spoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7c0,2.21 -1.79,4 -4,4S8,9.21 8,7s1.79,-4 4,-4S16,4.79 16,7zM7,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.21,13 7,13zM17,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S19.21,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports.xml
deleted file mode 100644
index 748e3f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.23,6C9.57,6 8.01,6.66 6.87,7.73C6.54,6.73 5.61,6 4.5,6C3.12,6 2,7.12 2,8.5C2,9.88 3.12,11 4.5,11c0.21,0 0.41,-0.03 0.61,-0.08c-0.05,0.25 -0.09,0.51 -0.1,0.78c-0.18,3.68 2.95,6.68 6.68,6.27c2.55,-0.28 4.68,-2.26 5.19,-4.77c0.15,-0.71 0.15,-1.4 0.06,-2.06c-0.09,-0.6 0.38,-1.13 0.99,-1.13H22V6H11.23zM4.5,9C4.22,9 4,8.78 4,8.5C4,8.22 4.22,8 4.5,8S5,8.22 5,8.5C5,8.78 4.78,9 4.5,9zM11,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S12.66,15 11,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_bar.xml
deleted file mode 100644
index a7831bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9h-3.56C17.79,8.41 18,7.73 18,7c0,-2.21 -1.79,-4 -4,-4c-0.34,0 -0.66,0.05 -0.98,0.13C12.2,2.45 11.16,2.02 10,2.02c-1.89,0 -3.51,1.11 -4.27,2.71C4.15,5.26 3,6.74 3,8.5c0,1.86 1.28,3.41 3,3.86L6,21h11v-2h4V9zM7,10.5c-1.1,0 -2,-0.9 -2,-2c0,-0.85 0.55,-1.6 1.37,-1.88l0.8,-0.27l0.36,-0.76C8,4.62 8.94,4.02 10,4.02c0.79,0 1.39,0.35 1.74,0.65l0.78,0.65c0,0 0.64,-0.32 1.47,-0.32c1.1,0 2,0.9 2,2c0,0 -3,0 -3,0C9.67,7 9.15,10.5 7,10.5zM19,17h-2v-6h2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_baseball.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_baseball.xml
deleted file mode 100644
index 49199a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_baseball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.81,6.28C2.67,7.9 2,9.87 2,12s0.67,4.1 1.81,5.72C6.23,16.95 8,14.68 8,12S6.23,7.05 3.81,6.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.19,6.28C17.77,7.05 16,9.32 16,12s1.77,4.95 4.19,5.72C21.33,16.1 22,14.13 22,12S21.33,7.9 20.19,6.28z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-3.28 1.97,-6.09 4.79,-7.33C17.01,3.02 14.63,2 12,2S6.99,3.02 5.21,4.67C8.03,5.91 10,8.72 10,12s-1.97,6.09 -4.79,7.33C6.99,20.98 9.37,22 12,22s5.01,-1.02 6.79,-2.67C15.97,18.09 14,15.28 14,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_basketball.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_basketball.xml
deleted file mode 100644
index 98bb2cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_basketball.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.09,11h4.86c-0.16,-1.61 -0.71,-3.11 -1.54,-4.4C18.68,7.43 17.42,9.05 17.09,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.91,11C6.58,9.05 5.32,7.43 3.59,6.6C2.76,7.89 2.21,9.39 2.05,11H6.91z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.07,11c0.32,-2.59 1.88,-4.79 4.06,-6c-1.6,-1.63 -3.74,-2.71 -6.13,-2.95V11H15.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,11H11V2.05C8.61,2.29 6.46,3.37 4.87,5C7.05,6.21 8.61,8.41 8.93,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.07,13H13v8.95c2.39,-0.24 4.54,-1.32 6.13,-2.95C16.95,17.79 15.39,15.59 15.07,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.59,17.4c1.72,-0.83 2.99,-2.46 3.32,-4.4H2.05C2.21,14.61 2.76,16.11 3.59,17.4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.09,13c0.33,1.95 1.59,3.57 3.32,4.4c0.83,-1.29 1.38,-2.79 1.54,-4.4H17.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,13c-0.32,2.59 -1.88,4.79 -4.06,6c1.6,1.63 3.74,2.71 6.13,2.95V13H8.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_cricket.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_cricket.xml
deleted file mode 100644
index 9258e4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_cricket.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.05,12.81L6.56,4.32c-0.39,-0.39 -1.02,-0.39 -1.41,0L2.32,7.15c-0.39,0.39 -0.39,1.02 0,1.41l8.49,8.49c0.39,0.39 1.02,0.39 1.41,0l2.83,-2.83C15.44,13.83 15.44,13.2 15.05,12.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.341,17.756l1.414,-1.414l4.243,4.243l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,5.5m-3.5,0a3.5,3.5 0,1 1,7 0a3.5,3.5 0,1 1,-7 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_esports.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_esports.xml
deleted file mode 100644
index c3b47a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_esports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5H4L2,19h4l3,-3h6l3,3h4L20,5zM11,11H9v2H8v-2H6v-1h2V8h1v2h2V11zM15,10c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,9.55 15.55,10 15,10zM17,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C18,12.55 17.55,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_football.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_football.xml
deleted file mode 100644
index 1be5a2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_football.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.02,15.62c-0.08,2.42 0.32,4.34 0.67,4.69s2.28,0.76 4.69,0.67L3.02,15.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.08,3.28C10.75,3.7 8.29,4.62 6.46,6.46s-2.76,4.29 -3.18,6.62l7.63,7.63c2.34,-0.41 4.79,-1.34 6.62,-3.18s2.76,-4.29 3.18,-6.62L13.08,3.28zM9.9,15.5l-1.4,-1.4l5.6,-5.6l1.4,1.4L9.9,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.98,8.38c0.08,-2.42 -0.32,-4.34 -0.67,-4.69s-2.28,-0.76 -4.69,-0.67L20.98,8.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_golf.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_golf.xml
deleted file mode 100644
index 6216621..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_golf.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c3.87,0 7,-3.13 7,-7c0,-3.87 -3.13,-7 -7,-7S5,5.13 5,9C5,12.87 8.13,16 12,16zM12,4c2.76,0 5,2.24 5,5s-2.24,5 -5,5s-5,-2.24 -5,-5S9.24,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h2c1.1,0 2,0.9 2,2v1h2v-1c0,-1.1 0.9,-2 2,-2h2v-2H7V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_gymnastics.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_gymnastics.xml
deleted file mode 100644
index 8631ae8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_gymnastics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM1,9h6l7,-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2l-0.5,-10L8,11H1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_handball.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_handball.xml
deleted file mode 100644
index 4ff5718..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_handball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.27,6C13.72,6.95 14.05,8.18 15,8.73c0.95,0.55 2.18,0.22 2.73,-0.73c0.55,-0.95 0.22,-2.18 -0.73,-2.73C16.05,4.72 14.82,5.05 14.27,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.84,10.41c0,0 -1.63,-0.94 -2.6,-1.5c-2.38,-1.38 -3.2,-4.44 -1.82,-6.82l-1.73,-1C8.1,3.83 8.6,7.21 10.66,9.4l-5.15,8.92l1.73,1l1.5,-2.6l1.73,1l-3,5.2l1.73,1l6.29,-10.89c1.14,1.55 1.33,3.69 0.31,5.46l1.73,1C19.13,16.74 18.81,12.91 15.84,10.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,3.8c0.72,0.41 1.63,0.17 2.05,-0.55c0.41,-0.72 0.17,-1.63 -0.55,-2.05c-0.72,-0.41 -1.63,-0.17 -2.05,0.55C11.79,2.47 12.03,3.39 12.75,3.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_hockey.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_hockey.xml
deleted file mode 100644
index 520fe43..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_hockey.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17v3l2,0v-4H3C2.45,16 2,16.45 2,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16H5v4l4.69,-0.01c0.38,0 0.72,-0.21 0.89,-0.55l0.87,-1.9l-1.59,-3.48L9,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,16.29C21.53,16.11 21.28,16 21,16h-1v4l2,0v-3C22,16.72 21.89,16.47 21.71,16.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1c0.17,0.34 0.51,0.55 0.89,0.55L19,20v-4h-4L13.6,12.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_kabaddi.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_kabaddi.xml
deleted file mode 100644
index dc08aa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_kabaddi.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,2.38m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,11.88v-4.7l-5.05,-2.14c-0.97,-0.41 -2.09,-0.06 -2.65,0.84l0,0l-1,1.6c-0.67,1.18 -1.91,2.06 -3.41,2.32l0.06,0.06c0.69,0.69 1.52,1.07 2.46,1.17c0.8,-0.42 1.52,-0.98 2.09,-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1,-2l1.8,8H23l-2.18,-11l-0.62,-3.1l1.8,0.7v3.4H24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.09c0.22,0.15 0.47,0.24 0.72,0.29c0.13,0.02 0.25,0.04 0.38,0.04s0.26,-0.01 0.38,-0.04c0.13,-0.02 0.25,-0.06 0.37,-0.11c0.24,-0.1 0.47,-0.24 0.66,-0.44c0.49,-0.49 0.67,-1.17 0.55,-1.8C13.28,5.66 13.1,5.29 12.8,5c-0.19,-0.19 -0.42,-0.34 -0.66,-0.44c-0.12,-0.05 -0.24,-0.09 -0.37,-0.11s-0.25,-0.04 -0.38,-0.04c-0.12,0 -0.23,0.01 -0.35,0.03c-0.14,0.02 -0.28,0.06 -0.41,0.11C10.4,4.66 10.17,4.81 9.98,5C9.68,5.29 9.5,5.66 9.43,6.03c-0.12,0.63 0.06,1.31 0.55,1.8C10.07,7.93 10.18,8.01 10.29,8.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.24,10.56l-2,-2c-0.1,-0.1 -0.2,-0.18 -0.31,-0.26C8.71,8.16 8.46,8.06 8.21,8.02C8.08,7.99 7.96,7.98 7.83,7.98c-0.51,0 -1.02,0.2 -1.41,0.59l-3.34,3.34c-0.41,0.41 -0.62,0.98 -0.58,1.54C2.5,13.63 2.54,13.82 2.61,14l1.07,2.95l-3.63,3.63L1.46,22l4.24,-4.24v-2.22L7,16.75v5.13h2v-6l-2.12,-2.12l2.36,-2.36l0.71,0.71l0,0c1.29,1.26 2.97,2.04 5.03,2.04l-0.14,-2.07C13.34,12.06 12.14,11.46 11.24,10.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_martial_arts.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_martial_arts.xml
deleted file mode 100644
index 97fdc73..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_martial_arts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,2l-8.2,6.7l-1.21,-1.04l3.6,-2.08l-4.58,-4.58l-1.41,1.41l2.74,2.74l-5.74,3.31l-1.19,4.29l2.46,4.25l1.73,-1l-2.03,-3.52l0.35,-1.3l3.18,1.82l0.5,9l2,0l0.5,-10l8.5,-8.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_mma.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_mma.xml
deleted file mode 100644
index 0d6202a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_mma.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h10v4h-10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c-0.55,0 -1,0.45 -1,1V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v5.8c0,0.13 0.01,0.26 0.04,0.39l0.8,4c0.09,0.47 0.5,0.8 0.98,0.8h10.36c0.45,0 0.89,-0.36 0.98,-0.8l0.8,-4C18.99,11.06 19,10.93 19,10.8V8C19,7.45 18.55,7 18,7zM15,10H7V7h8V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_motorsports.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_motorsports.xml
deleted file mode 100644
index d8ac6e72..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_motorsports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11.39c0,-0.65 -0.39,-1.23 -0.98,-1.48L5.44,7.55c-1.48,1.68 -2.32,3.7 -2.8,5.45h7.75C11.28,13 12,12.28 12,11.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,11.22c-0.41,-4.41 -4.56,-7.49 -8.98,-7.2c-2.51,0.16 -4.44,0.94 -5.93,2.04l4.74,2.01c1.33,0.57 2.2,1.87 2.2,3.32c0,1.99 -1.62,3.61 -3.61,3.61H2.21C2,16.31 2,17.2 2,17.2V20h12C18.67,20 22.41,15.99 21.96,11.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_rugby.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_rugby.xml
deleted file mode 100644
index c4608dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_rugby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,3.51c-0.56,-0.56 -2.15,-0.97 -4.16,-0.97c-3.08,0 -7.15,0.96 -9.98,3.79C1.66,11.03 2.1,19.07 3.51,20.49c0.56,0.56 2.15,0.97 4.16,0.97c3.08,0 7.15,-0.96 9.98,-3.79C22.34,12.97 21.9,4.93 20.49,3.51zM7.76,7.76c2.64,-2.64 6.35,-3.12 8.03,-3.19c-2.05,0.94 -4.46,2.45 -6.61,4.61c-2.16,2.16 -3.67,4.58 -4.61,6.63C4.66,13.33 5.44,10.07 7.76,7.76zM16.24,16.24c-2.64,2.64 -6.35,3.12 -8.03,3.19c2.05,-0.94 4.46,-2.45 6.61,-4.61c2.16,-2.16 3.67,-4.58 4.62,-6.63C19.34,10.67 18.56,13.93 16.24,16.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_score.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_score.xml
deleted file mode 100644
index 788aa62..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6H9V4h2V6zM15,4h-2v2h2V4zM9,14h2v-2H9V14zM19,10V8h-2v2H19zM19,14v-2h-2v2H19zM13,14h2v-2h-2V14zM19,4h-2v2h2V4zM13,8V6h-2v2H13zM7,10V8h2V6H7V4H5v16h2v-8h2v-2H7zM15,12h2v-2h-2V12zM11,10v2h2v-2H11zM9,8v2h2V8H9zM13,10h2V8h-2V10zM15,6v2h2V6H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_soccer.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_soccer.xml
deleted file mode 100644
index d01405e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_soccer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,5.3l1.35,-0.95c1.82,0.56 3.37,1.76 4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3zM9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69C6.28,6.12 7.83,4.92 9.65,4.35zM7.08,17.11l-1.14,0.1C4.73,15.81 4,13.99 4,12c0,-0.12 0.01,-0.23 0.02,-0.35l1,-0.73L6.4,11.4l1.46,4.34L7.08,17.11zM14.5,19.59C13.71,19.85 12.87,20 12,20s-1.71,-0.15 -2.5,-0.41l-0.69,-1.49L9.45,17h5.11l0.64,1.11L14.5,19.59zM14.27,15H9.73l-1.35,-4.02L12,8.44l3.63,2.54L14.27,15zM18.06,17.21l-1.14,-0.1l-0.79,-1.37l1.46,-4.34l1.39,-0.47l1,0.73C19.99,11.77 20,11.88 20,12C20,13.99 19.27,15.81 18.06,17.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_tennis.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_tennis.xml
deleted file mode 100644
index f81e308..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_tennis.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.52,2.49c-2.34,-2.34 -6.62,-1.87 -9.55,1.06c-1.6,1.6 -2.52,3.87 -2.54,5.46c-0.02,1.58 0.26,3.89 -1.35,5.5l-4.24,4.24l1.42,1.42l4.24,-4.24c1.61,-1.61 3.92,-1.33 5.5,-1.35s3.86,-0.94 5.46,-2.54C21.38,9.11 21.86,4.83 19.52,2.49zM10.32,11.68c-1.53,-1.53 -1.05,-4.61 1.06,-6.72s5.18,-2.59 6.72,-1.06c1.53,1.53 1.05,4.61 -1.06,6.72S11.86,13.21 10.32,11.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17c0.53,0 1.04,0.21 1.41,0.59c0.78,0.78 0.78,2.05 0,2.83C19.04,20.79 18.53,21 18,21s-1.04,-0.21 -1.41,-0.59c-0.78,-0.78 -0.78,-2.05 0,-2.83C16.96,17.21 17.47,17 18,17M18,15c-1.02,0 -2.05,0.39 -2.83,1.17c-1.56,1.56 -1.56,4.09 0,5.66C15.95,22.61 16.98,23 18,23s2.05,-0.39 2.83,-1.17c1.56,-1.56 1.56,-4.09 0,-5.66C20.05,15.39 19.02,15 18,15L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sports_volleyball.xml b/compose/material/material/icons/generator/raw-icons/sharp/sports_volleyball.xml
deleted file mode 100644
index 6df9d54..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sports_volleyball.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4.01C3.58,5.84 2,8.73 2,12c0,1.46 0.32,2.85 0.89,4.11L6,14.31V4.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11.42V2.05C9.94,2.16 8.93,2.43 8,2.84v10.32L11,11.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.15l-8.11,4.68c0.61,0.84 1.34,1.59 2.18,2.2L15,14.89L12,13.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.96v3.46l8.11,4.68c0.42,-0.93 0.7,-1.93 0.82,-2.98L13,7.96z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.07,21.2C9.28,21.71 10.6,22 12,22c3.34,0 6.29,-1.65 8.11,-4.16L17,16.04L8.07,21.2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.92,10.81c-0.55,-4.63 -4.26,-8.3 -8.92,-8.76v3.6L21.92,10.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/square.xml b/compose/material/material/icons/generator/raw-icons/sharp/square.xml
deleted file mode 100644
index f455541..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v18h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/square_foot.xml b/compose/material/material/icons/generator/raw-icons/sharp/square_foot.xml
deleted file mode 100644
index 4a5bf8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/square_foot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,17.66l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06L9.7,9.7l-1.06,1.06l-0.71,-0.71l1.06,-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06,-1.06L4,4v16h16L17.66,17.66zM7,17v-5.76L12.76,17H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/ssid_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/ssid_chart.xml
deleted file mode 100644
index 2f7895c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/ssid_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47zM21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8,-2l6.2,6l5,-4h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stacked_bar_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/stacked_bar_chart.xml
deleted file mode 100644
index 2a7fd72..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stacked_bar_chart.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h4v5h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12h4v8h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stacked_line_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/stacked_line_chart.xml
deleted file mode 100644
index e776269..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stacked_line_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19.99l7.5,-7.51l4,4l7.09,-7.97L22,9.92l-8.5,9.56l-4,-4l-6,6.01L2,19.99zM3.5,15.49l6,-6.01l4,4L22,3.92l-1.41,-1.41l-7.09,7.97l-4,-4L2,13.99L3.5,15.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stadium.xml b/compose/material/material/icons/generator/raw-icons/sharp/stadium.xml
deleted file mode 100644
index a893597..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stadium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5L3,7V3L7,5zM18,3v4l4,-2L18,3zM11,2v4l4,-2L11,2zM5,10.04C6.38,10.53 8.77,11 12,11s5.62,-0.47 7,-0.96C19,9.86 16.22,9 12,9S5,9.86 5,10.04zM15,17H9l0,4.88C4.94,21.49 2,20.34 2,19v-9c0,-1.66 4.48,-3 10,-3s10,1.34 10,3v9c0,1.34 -2.94,2.48 -7,2.87L15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stairs.xml b/compose/material/material/icons/generator/raw-icons/sharp/stairs.xml
deleted file mode 100644
index f015995..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stairs.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM18,8h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/star.xml b/compose/material/material/icons/generator/raw-icons/sharp/star.xml
deleted file mode 100644
index 5412e79..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/star.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/star_border.xml b/compose/material/material/icons/generator/raw-icons/sharp/star_border.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/star_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/star_border_purple500.xml b/compose/material/material/icons/generator/raw-icons/sharp/star_border_purple500.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/star_border_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/star_half.xml b/compose/material/material/icons/generator/raw-icons/sharp/star_half.xml
deleted file mode 100644
index 7ed1fda..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/star_half.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4V6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/star_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/star_outline.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/star_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/star_purple500.xml b/compose/material/material/icons/generator/raw-icons/sharp/star_purple500.xml
deleted file mode 100644
index 659416d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/star_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/star_rate.xml b/compose/material/material/icons/generator/raw-icons/sharp/star_rate.xml
deleted file mode 100644
index d18c527..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/star_rate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.43,10l-2.43,-8l-2.43,8l-7.57,0l6.18,4.41l-2.35,7.59l6.17,-4.69l6.18,4.69l-2.35,-7.59l6.17,-4.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stars.xml b/compose/material/material/icons/generator/raw-icons/sharp/stars.xml
deleted file mode 100644
index ecfbeb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stars.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM16.23,18L12,15.45 7.77,18l1.12,-4.81 -3.73,-3.23 4.92,-0.42L12,5l1.92,4.53 4.92,0.42 -3.73,3.23L16.23,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/start.xml b/compose/material/material/icons/generator/raw-icons/sharp/start.xml
deleted file mode 100644
index dcd56ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/start.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6,-6l-6,-6L14.59,7.41zM2,6v12h2V6H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stay_current_landscape.xml b/compose/material/material/icons/generator/raw-icons/sharp/stay_current_landscape.xml
deleted file mode 100644
index ff73bc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stay_current_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,19h22V5H1v14zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stay_current_portrait.xml b/compose/material/material/icons/generator/raw-icons/sharp/stay_current_portrait.xml
deleted file mode 100644
index 4814493..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stay_current_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1.01L5.01,1v22H19V1.01zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stay_primary_landscape.xml b/compose/material/material/icons/generator/raw-icons/sharp/stay_primary_landscape.xml
deleted file mode 100644
index ff73bc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stay_primary_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,19h22V5H1v14zM19,7v10H5V7h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stay_primary_portrait.xml b/compose/material/material/icons/generator/raw-icons/sharp/stay_primary_portrait.xml
deleted file mode 100644
index 007ed62..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stay_primary_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.01,1v22H19V1H5.01zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sticky_note_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/sticky_note_2.xml
deleted file mode 100644
index d9e05c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sticky_note_2.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.99,3L3,21h12l6,-6V3H2.99zM7,8h10v2H7V8zM12,14H7v-2h5V14zM14,19.5V14h5.5L14,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stop.xml b/compose/material/material/icons/generator/raw-icons/sharp/stop.xml
deleted file mode 100644
index 16abab5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h12v12H6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stop_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/stop_circle.xml
deleted file mode 100644
index a25ea07..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stop_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM16,16H8V8h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stop_screen_share.xml b/compose/material/material/icons/generator/raw-icons/sharp/stop_screen_share.xml
deleted file mode 100644
index e7da08c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stop_screen_share.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.79,18l2,2L24,20v-2zM13,9.13L13,7l4,3.74 -1.28,1.19 5.18,5.18L22,16L22,4.02L7.8,4.02l5.13,5.13c0.03,-0.01 0.05,-0.02 0.07,-0.02zM1.11,2.98l0.89,0.9v12.14l2,1.99L0,18v2h18.13l2.71,2.71 1.41,-1.41L2.52,1.57 1.11,2.98zM9.08,10.95l1.59,1.59C9.13,12.92 7.96,13.71 7,15c0.31,-1.48 0.94,-2.93 2.08,-4.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/storage.xml b/compose/material/material/icons/generator/raw-icons/sharp/storage.xml
deleted file mode 100644
index 5ca45e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v-4L2,16v4zM4,17h2v2L4,19v-2zM2,4v4h20L22,4L2,4zM6,7L4,7L4,5h2v2zM2,14h20v-4L2,10v4zM4,11h2v2L4,13v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/store.xml b/compose/material/material/icons/generator/raw-icons/sharp/store.xml
deleted file mode 100644
index 76ec4df..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/store.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4v2h16L20,4zM21,14v-2l-1,-5L4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1zM12,18L6,18v-4h6v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/store_mall_directory.xml b/compose/material/material/icons/generator/raw-icons/sharp/store_mall_directory.xml
deleted file mode 100644
index 76ec4df..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/store_mall_directory.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4v2h16L20,4zM21,14v-2l-1,-5L4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1zM12,18L6,18v-4h6v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/storefront.xml b/compose/material/material/icons/generator/raw-icons/sharp/storefront.xml
deleted file mode 100644
index 5316b13..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/storefront.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,8.89L20.49,3h-3.75h-2.01H13h-2H9.28H7.26H3.51L2.1,8.89c-0.24,1.02 -0.02,2.06 0.62,2.88C2.8,11.88 2.91,11.96 3,12.06V21h18v-8.94c0.09,-0.09 0.2,-0.18 0.28,-0.28C21.92,10.96 22.15,9.91 21.9,8.89zM7.02,5L6.44,9.86C6.36,10.51 5.84,11 5.23,11c-0.49,0 -0.8,-0.29 -0.93,-0.47c-0.26,-0.33 -0.35,-0.76 -0.25,-1.17L5.09,5H7.02zM18.91,5l1.05,4.36c0.1,0.42 0.01,0.84 -0.25,1.17C19.57,10.71 19.27,11 18.77,11c-0.61,0 -1.14,-0.49 -1.21,-1.14L16.98,5H18.91zM15.51,9.52c0.05,0.39 -0.07,0.78 -0.33,1.07C14.95,10.85 14.63,11 14.22,11C13.55,11 13,10.41 13,9.69V5h1.96L15.51,9.52zM11,9.69C11,10.41 10.45,11 9.71,11c-0.34,0 -0.65,-0.15 -0.89,-0.41C8.57,10.3 8.45,9.91 8.49,9.52L9.04,5H11V9.69zM5,19v-6.03C5.08,12.98 5.15,13 5.23,13c0.87,0 1.66,-0.36 2.24,-0.95c0.6,0.6 1.4,0.95 2.31,0.95c0.87,0 1.65,-0.36 2.23,-0.93c0.59,0.57 1.39,0.93 2.29,0.93c0.84,0 1.64,-0.35 2.24,-0.95c0.58,0.59 1.37,0.95 2.24,0.95c0.08,0 0.15,-0.02 0.23,-0.03V19H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/storm.xml b/compose/material/material/icons/generator/raw-icons/sharp/storm.xml
deleted file mode 100644
index 88f6d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/storm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.93,8C16.72,4.18 11.82,2.87 8,5.07c-1.41,0.82 -2.48,2 -3.16,3.37C4.71,6.24 5.06,4.04 5.86,2H3.74C2.2,6.49 2.52,11.58 5.07,16c1.1,1.91 2.88,3.19 4.86,3.72c1.98,0.53 4.16,0.31 6.07,-0.79c1.41,-0.82 2.48,-2 3.16,-3.37c0.13,2.2 -0.21,4.4 -1.01,6.44h2.11C21.79,17.51 21.48,12.42 18.93,8zM15,17.2c-2.87,1.65 -6.54,0.67 -8.2,-2.2c-0.11,-0.2 -0.21,-0.4 -0.3,-0.6C5.3,11.64 6.33,8.34 9,6.8c2.86,-1.65 6.54,-0.67 8.2,2.2c0.11,0.2 0.21,0.4 0.3,0.6C18.7,12.36 17.67,15.66 15,17.2zM12,10c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,10 12,10M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S14.21,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/straight.xml b/compose/material/material/icons/generator/raw-icons/sharp/straight.xml
deleted file mode 100644
index 8ae6ff1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/straight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.83l-1.59,1.58l-1.41,-1.41l4,-4l4,4l-1.41,1.41l-1.59,-1.58l0,14.17l-2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/straighten.xml b/compose/material/material/icons/generator/raw-icons/sharp/straighten.xml
deleted file mode 100644
index 89c4d13..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/straighten.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,6L1,6v12h22L23,6zM21,16L3,16L3,8h2v4h2L7,8h2v4h2L11,8h2v4h2L15,8h2v4h2L19,8h2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stream.xml b/compose/material/material/icons/generator/raw-icons/sharp/stream.xml
deleted file mode 100644
index f748f56..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stream.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.943,8.619l4.404,-4.392l1.412,1.416l-4.404,4.392z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.32,9.68l0.31,0.32l1.42,-1.41l-4.02,-4.04l-0.01,0l-0.31,-0.32l-1.42,1.41l4.02,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,13.94l-1.41,1.41l3.99,4.01l0.35,0.35l1.42,-1.41l-3.99,-4.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.59,13.95l-4.03,4.01l-0.32,0.33l1.41,1.41l4.03,-4.02l0.33,-0.32z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/streetview.xml b/compose/material/material/icons/generator/raw-icons/sharp/streetview.xml
deleted file mode 100644
index 4085e83..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/streetview.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.56,14.33c-0.34,0.27 -0.56,0.7 -0.56,1.17V21h7c1.1,0 2,-0.9 2,-2v-5.98c-0.94,-0.33 -1.95,-0.52 -3,-0.52 -2.03,0 -3.93,0.7 -5.44,1.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6c0,-1.08 0.27,-2.1 0.74,-3H5c-1.1,0 -2,0.9 -2,2v14c0,0.55 0.23,1.05 0.59,1.41l9.82,-9.82C12.23,9.42 11.5,7.8 11.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/strikethrough_s.xml b/compose/material/material/icons/generator/raw-icons/sharp/strikethrough_s.xml
deleted file mode 100644
index 5d387c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/strikethrough_s.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.24,8.75c-0.26,-0.48 -0.39,-1.03 -0.39,-1.67 0,-0.61 0.13,-1.16 0.4,-1.67 0.26,-0.5 0.63,-0.93 1.11,-1.29 0.48,-0.35 1.05,-0.63 1.7,-0.83 0.66,-0.19 1.39,-0.29 2.18,-0.29 0.81,0 1.54,0.11 2.21,0.34 0.66,0.22 1.23,0.54 1.69,0.94 0.47,0.4 0.83,0.88 1.08,1.43s0.38,1.15 0.38,1.81h-3.01c0,-0.31 -0.05,-0.59 -0.15,-0.85 -0.09,-0.27 -0.24,-0.49 -0.44,-0.68 -0.2,-0.19 -0.45,-0.33 -0.75,-0.44 -0.3,-0.1 -0.66,-0.16 -1.06,-0.16 -0.39,0 -0.74,0.04 -1.03,0.13s-0.53,0.21 -0.72,0.36c-0.19,0.16 -0.34,0.34 -0.44,0.55 -0.1,0.21 -0.15,0.43 -0.15,0.66 0,0.48 0.25,0.88 0.74,1.21 0.38,0.25 0.77,0.48 1.41,0.7H7.39c-0.05,-0.08 -0.11,-0.17 -0.15,-0.25zM21,12v-2H3v2h9.62c0.18,0.07 0.4,0.14 0.55,0.2 0.37,0.17 0.66,0.34 0.87,0.51s0.35,0.36 0.43,0.57c0.07,0.2 0.11,0.43 0.11,0.69 0,0.23 -0.05,0.45 -0.14,0.66 -0.09,0.2 -0.23,0.38 -0.42,0.53 -0.19,0.15 -0.42,0.26 -0.71,0.35 -0.29,0.08 -0.63,0.13 -1.01,0.13 -0.43,0 -0.83,-0.04 -1.18,-0.13s-0.66,-0.23 -0.91,-0.42c-0.25,-0.19 -0.45,-0.44 -0.59,-0.75s-0.25,-0.76 -0.25,-1.21H6.4c0,0.55 0.08,1.13 0.24,1.58s0.37,0.85 0.65,1.21c0.28,0.35 0.6,0.66 0.98,0.92 0.37,0.26 0.78,0.48 1.22,0.65 0.44,0.17 0.9,0.3 1.38,0.39 0.48,0.08 0.96,0.13 1.44,0.13 0.8,0 1.53,-0.09 2.18,-0.28s1.21,-0.45 1.67,-0.79c0.46,-0.34 0.82,-0.77 1.07,-1.27s0.38,-1.07 0.38,-1.71c0,-0.6 -0.1,-1.14 -0.31,-1.61 -0.05,-0.11 -0.11,-0.23 -0.17,-0.33H21V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/stroller.xml b/compose/material/material/icons/generator/raw-icons/sharp/stroller.xml
deleted file mode 100644
index 5c7e515..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/stroller.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18,18.9 18,20zM6,18c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S7.1,18 6,18zM22,7V6.48C22,4.56 20.52,3 18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03L5.27,17H17V6.27C17.58,5.59 17.97,5 18.65,5C19.42,5 20,5.66 20,6.48V7H22zM14.3,4.1C13.03,3.4 11.56,3 10,3C8.03,3 6.21,3.64 4.72,4.72l4.89,4.89L14.3,4.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/style.xml b/compose/material/material/icons/generator/raw-icons/sharp/style.xml
deleted file mode 100644
index d02e0b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.87,20.21v-9.03l-3.19,7.7 3.19,1.33zM22.79,17.78L16.31,2.14 5.26,6.71l6.48,15.64 11.05,-4.57zM7.88,8.75c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM5.88,21.75h3.45l-3.45,-8.34v8.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subdirectory_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/subdirectory_arrow_left.xml
deleted file mode 100644
index d02c6f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subdirectory_arrow_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9l1.42,1.42L8.83,14H18V4h2v12H8.83l3.59,3.58L11,21l-6,-6 6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subdirectory_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/subdirectory_arrow_right.xml
deleted file mode 100644
index 64066a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subdirectory_arrow_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-6,6 -1.42,-1.42L15.17,16H4V4h2v10h9.17l-3.59,-3.58L13,9l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subject.xml b/compose/material/material/icons/generator/raw-icons/sharp/subject.xml
deleted file mode 100644
index 5e46992..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subject.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subscript.xml b/compose/material/material/icons/generator/raw-icons/sharp/subscript.xml
deleted file mode 100644
index 866b76c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18v1h3v1h-4v-3h3v-1h-3v-1h4v3H20zM5.88,18h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subscriptions.xml b/compose/material/material/icons/generator/raw-icons/sharp/subscriptions.xml
deleted file mode 100644
index 7a46e0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subscriptions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8L4,8L4,6h16v2zM18,2L6,2v2h12L18,2zM22,10v12L2,22L2,10h20zM16,16l-6,-3.27v6.53L16,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subtitles.xml b/compose/material/material/icons/generator/raw-icons/sharp/subtitles.xml
deleted file mode 100644
index bb8facc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subtitles.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4L2,4v16h20L22,4zM4,12h4v2L4,14v-2zM14,18L4,18v-2h10v2zM20,18h-4v-2h4v2zM20,14L10,14v-2h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subtitles_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/subtitles_off.xml
deleted file mode 100644
index 1d68e6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subtitles_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4l8,8l5.17,0l0,2l-3.17,0l5.17,5.17l0,-15.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.04,3.87L2,4.83V20h15.17l2.96,2.96l1.41,-1.41L2.45,2.45L1.04,3.87zM4,12h4v2H4V12zM4,16h9.17L14,16.83V18H4V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/subway.xml b/compose/material/material/icons/generator/raw-icons/sharp/subway.xml
deleted file mode 100644
index eece4b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/subway.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.01,9h10v5h-10zM17.8,2.8C16,2.09 13.86,2 12,2s-4,0.09 -5.8,0.8C3.53,3.84 2,6.05 2,8.86L2,22h20L22,8.86c0,-2.81 -1.53,-5.02 -4.2,-6.06zM18,15.5c0,1.54 -1.16,2.79 -2.65,2.96l1.15,1.16L16.5,20h-1.67l-1.5,-1.5h-2.66L9.17,20L7.5,20v-0.38l1.15,-1.16C7.16,18.29 6,17.04 6,15.5L6,9c0,-2.63 3,-3 6,-3s6,0.37 6,3v6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/summarize.xml b/compose/material/material/icons/generator/raw-icons/sharp/summarize.xml
deleted file mode 100644
index d90d2603..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/summarize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3H3v18h18V9L15,3zM8,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,17 8,17zM8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,13 8,13zM8,9C7.45,9 7,8.55 7,8s0.45,-1 1,-1s1,0.45 1,1S8.55,9 8,9zM14,10V4.5l5.5,5.5H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/superscript.xml b/compose/material/material/icons/generator/raw-icons/sharp/superscript.xml
deleted file mode 100644
index 8f9a4a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/superscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7v1h3v1h-4V6h3V5h-3V4h4v3H20zM5.88,20h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/supervised_user_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/supervised_user_circle.xml
deleted file mode 100644
index b494c0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/supervised_user_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM15.61,8.34c1.07,0 1.93,0.86 1.93,1.93s-0.86,1.93 -1.93,1.93 -1.93,-0.86 -1.93,-1.93c-0.01,-1.07 0.86,-1.93 1.93,-1.93zM9.61,6.76c1.3,0 2.36,1.06 2.36,2.36s-1.06,2.36 -2.36,2.36 -2.36,-1.06 -2.36,-2.36c0,-1.31 1.05,-2.36 2.36,-2.36zM9.61,15.89v3.75c-2.4,-0.75 -4.3,-2.6 -5.14,-4.96 1.05,-1.12 3.67,-1.69 5.14,-1.69 0.53,0 1.2,0.08 1.9,0.22 -1.64,0.87 -1.9,2.02 -1.9,2.68zM12,20c-0.27,0 -0.53,-0.01 -0.79,-0.04v-4.07c0,-1.42 2.94,-2.13 4.4,-2.13 1.07,0 2.92,0.39 3.84,1.15C18.28,17.88 15.39,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/supervisor_account.xml b/compose/material/material/icons/generator/raw-icons/sharp/supervisor_account.xml
deleted file mode 100644
index 271d2d77..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/supervisor_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c1.38,0 2.49,-1.12 2.49,-2.5S17.88,7 16.5,7 14,8.12 14,9.5s1.12,2.5 2.5,2.5zM9,11c1.66,0 2.99,-1.34 2.99,-3S10.66,5 9,5 6,6.34 6,8s1.34,3 3,3zM16.5,14c-1.83,0 -5.5,0.92 -5.5,2.75L11,19h11v-2.25c0,-1.83 -3.67,-2.75 -5.5,-2.75zM9,13c-2.33,0 -7,1.17 -7,3.5L2,19h7v-2.25c0,-0.85 0.33,-2.34 2.37,-3.47C10.5,13.1 9.66,13 9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/support.xml b/compose/material/material/icons/generator/raw-icons/sharp/support.xml
deleted file mode 100644
index b9b10ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/support.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM19.46,9.12l-2.78,1.15c-0.51,-1.36 -1.58,-2.44 -2.95,-2.94l1.15,-2.78C16.98,5.35 18.65,7.02 19.46,9.12zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15zM9.13,4.54l1.17,2.78c-1.38,0.5 -2.47,1.59 -2.98,2.97L4.54,9.13C5.35,7.02 7.02,5.35 9.13,4.54zM4.54,14.87l2.78,-1.15c0.51,1.38 1.59,2.46 2.97,2.96l-1.17,2.78C7.02,18.65 5.35,16.98 4.54,14.87zM14.88,19.46l-1.15,-2.78c1.37,-0.51 2.45,-1.59 2.95,-2.97l2.78,1.17C18.65,16.98 16.98,18.65 14.88,19.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/support_agent.xml b/compose/material/material/icons/generator/raw-icons/sharp/support_agent.xml
deleted file mode 100644
index 02c1b8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/support_agent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.03C17.52,8.18 15.04,6 12.05,6c-3.03,0 -6.29,2.51 -6.03,6.45c2.47,-1.01 4.33,-3.21 4.86,-5.89C12.19,9.19 14.88,11 18,11.03z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.99,12C20.88,6.63 16.68,3 12,3c-4.61,0 -8.85,3.53 -8.99,9H2v6h3v-5.81c0,-3.83 2.95,-7.18 6.78,-7.29c3.96,-0.12 7.22,3.06 7.22,7V19h-8v2h10v-3h1v-6H20.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/surfing.xml b/compose/material/material/icons/generator/raw-icons/sharp/surfing.xml
deleted file mode 100644
index e9d49e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/surfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM17,1.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S18.1,1.5 17,1.5zM14.43,8.48L12.18,10L16,13v3.84c0.53,0.38 1.03,0.78 1.49,1.17C16.81,18.59 15.94,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.33,0 -0.65,-0.05 -0.96,-0.14C5.19,16.9 3,14.72 3,13.28C3,12.25 4.01,12 4.85,12c0.98,0 2.28,0.31 3.7,0.83L7.83,8.59l3.12,-2.1l-2,-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03c0.45,0.09 0.93,0.37 1.22,0.89l0.88,1.55C17.01,8.98 18.64,10 20.5,10v2C17.91,12 15.64,10.58 14.43,8.48zM10.3,11.1l0.44,2.65c0.92,0.42 2.48,1.27 3.26,1.75V14L10.3,11.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/surround_sound.xml b/compose/material/material/icons/generator/raw-icons/sharp/surround_sound.xml
deleted file mode 100644
index c787d6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/surround_sound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM7.76,16.24l-1.41,1.41C4.78,16.1 4,14.05 4,12s0.78,-4.1 2.34,-5.66l1.41,1.41C6.59,8.93 6,10.46 6,12S6.59,15.07 7.76,16.24zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4S14.21,16 12,16zM17.66,17.66l-1.41,-1.41C17.41,15.07 18,13.54 18,12s-0.59,-3.07 -1.76,-4.24l1.41,-1.41C19.22,7.9 20,9.95 20,12S19.22,16.1 17.66,17.66zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swap_calls.xml b/compose/material/material/icons/generator/raw-icons/sharp/swap_calls.xml
deleted file mode 100644
index d6f085e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swap_calls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-4,4h3v7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8v7H2l4,4 4,-4H7V8c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v7c0,2.21 1.79,4 4,4s4,-1.79 4,-4V8h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swap_horiz.xml b/compose/material/material/icons/generator/raw-icons/sharp/swap_horiz.xml
deleted file mode 100644
index 7a7844d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swap_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.99,11L3,15l3.99,4v-3H14v-2H6.99v-3zM21,9l-3.99,-4v3H10v2h7.01v3L21,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swap_horizontal_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/swap_horizontal_circle.xml
deleted file mode 100644
index 55b3f54..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swap_horizontal_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10zM15,6.5l3.5,3.5 -3.5,3.5L15,11h-4L11,9h4L15,6.5zM9,17.5L5.5,14 9,10.5L9,13h4v2L9,15v2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swap_vert.xml b/compose/material/material/icons/generator/raw-icons/sharp/swap_vert.xml
deleted file mode 100644
index bbd7d9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swap_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.01V10h-2v7.01h-3L15,21l4,-3.99h-3zM9,3L5,6.99h3V14h2V6.99h3L9,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swap_vertical_circle.xml b/compose/material/material/icons/generator/raw-icons/sharp/swap_vertical_circle.xml
deleted file mode 100644
index 6e342f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swap_vertical_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM6.5,9L10,5.5 13.5,9L11,9v4L9,13L9,9L6.5,9zM14,18.5L10.5,15L13,15v-4h2v4h2.5L14,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe.xml
deleted file mode 100644
index c969539..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.13,3.87C18.69,2.17 15.6,1 12,1S5.31,2.17 3.87,3.87L2,2v5h5L4.93,4.93c1,-1.29 3.7,-2.43 7.07,-2.43s6.07,1.14 7.07,2.43L17,7h5V2L20.13,3.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.5v-6C13,5.67 12.33,5 11.5,5S10,5.67 10,6.5v10.74l-4.04,-0.85l-1.21,1.23L10.13,23h8.97l1.09,-7.64l-6.11,-2.86H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_down.xml
deleted file mode 100644
index 58912fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_down.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.8,12.18c-0.2,-0.86 -0.3,-1.76 -0.3,-2.68c0,-2.84 0.99,-5.45 2.63,-7.5L7.2,3.07C5.82,4.85 5,7.08 5,9.5c0,0.88 0.11,1.74 0.32,2.56l1.62,-1.62L8,11.5L4.5,15L1,11.5l1.06,-1.06L3.8,12.18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,11.18l2.09,7.39l-8.23,3.65l-6.84,-2.85l0.61,-1.62l3.8,-0.75L8.79,7.17c-0.34,-0.76 0,-1.64 0.76,-1.98c0.76,-0.34 1.64,0 1.98,0.76l2.43,5.49l1.26,-0.56L21.71,11.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_down_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_down_alt.xml
deleted file mode 100644
index 3443576..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.9c2.28,-0.46 4,-2.48 4,-4.9c0,-2.76 -2.24,-5 -5,-5S7,6.24 7,9c0,2.42 1.72,4.44 4,4.9v4.27l-1.59,-1.59L8,18l4,4l4,-4l-1.41,-1.41L13,18.17V13.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_left.xml
deleted file mode 100644
index 6fd06d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.18,15.4L19.1,23h-9L5,17.62l1.22,-1.23L10,17.24V6.5C10,5.67 10.67,5 11.5,5S13,5.67 13,6.5v6h1.38L20.18,15.4zM12,2.5c4.74,0 7.67,2.52 8.43,4.5H22c-0.73,-2.88 -4.51,-6 -10,-6C8.78,1 5.82,2.13 3.5,4.02V2H2v5h5V5.5H4.09C6.21,3.64 8.97,2.5 12,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_left_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_left_alt.xml
deleted file mode 100644
index d3e56e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_left_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,13c0.46,2.28 2.48,4 4.9,4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5c-2.42,0 -4.44,1.72 -4.9,4H5.83l1.59,-1.59L6,8l-4,4l4,4l1.41,-1.41L5.83,13H10.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_right.xml
deleted file mode 100644
index 484e759..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.18,15.4L19.1,23h-9L5,17.62l1.22,-1.23L10,17.24V6.5C10,5.67 10.67,5 11.5,5S13,5.67 13,6.5v6h1.38L20.18,15.4zM19.91,5.5H17V7h5V2h-1.5v2.02C18.18,2.13 15.22,1 12,1C6.51,1 2.73,4.12 2,7h1.57C4.33,5.02 7.26,2.5 12,2.5C15.03,2.5 17.79,3.64 19.91,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_right_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_right_alt.xml
deleted file mode 100644
index 88ebf61..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_right_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.9,11C13.44,8.72 11.42,7 9,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h4.27l-1.59,1.59L18,16l4,-4l-4,-4l-1.41,1.41L18.17,11H13.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_up.xml
deleted file mode 100644
index d485d17..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.06,5.56L1,4.5L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76 5,5.62 5,6.5c0,2.42 0.82,4.65 2.2,6.43L6.13,14C4.49,11.95 3.5,9.34 3.5,6.5c0,-0.92 0.1,-1.82 0.3,-2.68L2.06,5.56zM21.71,11.18l2.09,7.39l-8.23,3.65l-6.84,-2.85l0.61,-1.62l3.8,-0.75L8.79,7.17c-0.34,-0.76 0,-1.64 0.76,-1.98c0.76,-0.34 1.64,0 1.98,0.76l2.43,5.49l1.26,-0.56L21.71,11.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_up_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_up_alt.xml
deleted file mode 100644
index b2c0e86..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.59,1.59L16,6l-4,-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-2.42 -1.72,-4.44 -4,-4.9V5.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/swipe_vertical.xml b/compose/material/material/icons/generator/raw-icons/sharp/swipe_vertical.xml
deleted file mode 100644
index 6cbcfe9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/swipe_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,3.5h2.02C1.13,5.82 0,8.78 0,12s1.13,6.18 3.02,8.5H1V22h5v-5H4.5v2.91c-1.86,-2.11 -3,-4.88 -3,-7.91s1.14,-5.79 3,-7.91V7H6V2H1V3.5zM21.71,11.18l2.09,7.39l-8.23,3.65l-6.84,-2.85l0.61,-1.62l3.8,-0.75L8.79,7.17c-0.34,-0.76 0,-1.64 0.76,-1.98c0.76,-0.34 1.64,0 1.98,0.76l2.43,5.49l1.26,-0.56L21.71,11.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/switch_access_shortcut.xml b/compose/material/material/icons/generator/raw-icons/sharp/switch_access_shortcut.xml
deleted file mode 100644
index 6c27e1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/switch_access_shortcut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-2.73 1.08,-5.27 2.75,-7.25L12,2h7v7l-2.82,-2.82C14.84,7.82 14,9.88 14,12c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/switch_access_shortcut_add.xml b/compose/material/material/icons/generator/raw-icons/sharp/switch_access_shortcut_add.xml
deleted file mode 100644
index 84b07f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/switch_access_shortcut_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,14h-2v-2h-2v2h-2v2h2v2h2v-2h2V14zM7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-2.73 1.08,-5.27 2.75,-7.25L12,2h7v7l-2.82,-2.82C14.84,7.82 14,9.88 14,12c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/switch_account.xml b/compose/material/material/icons/generator/raw-icons/sharp/switch_account.xml
deleted file mode 100644
index 2baf257..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/switch_account.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v16h16v-2H4V6zM6,2v16h16V2H6zM14,5c1.66,0 3,1.34 3,3c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3C11,6.34 12.34,5 14,5zM7.76,16c1.47,-1.83 3.71,-3 6.24,-3s4.77,1.17 6.24,3H7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/switch_camera.xml b/compose/material/material/icons/generator/raw-icons/sharp/switch_camera.xml
deleted file mode 100644
index d20b23f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/switch_camera.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4h-5.17L15,2L9,2L7.17,4L2,4v16h20L22,4zM15,15.5L15,13L9,13v2.5L5.5,12 9,8.5L9,11h6L15,8.5l3.5,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/switch_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/switch_left.xml
deleted file mode 100644
index 613a9f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/switch_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,8.62v6.76L5.12,12L8.5,8.62M10,5l-7,7l7,7V5L10,5zM14,5v14l7,-7L14,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/switch_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/switch_right.xml
deleted file mode 100644
index 0d7b534..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/switch_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.38V8.62L18.88,12L15.5,15.38M14,19l7,-7l-7,-7V19L14,19zM10,19V5l-7,7L10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/switch_video.xml b/compose/material/material/icons/generator/raw-icons/sharp/switch_video.xml
deleted file mode 100644
index 774f8f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/switch_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.5L18,5L2,5v14h16v-4.5l4,4v-13l-4,4zM13,15.5L13,13L7,13v2.5L3.5,12 7,8.5L7,11h6L13,8.5l3.5,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/synagogue.xml b/compose/material/material/icons/generator/raw-icons/sharp/synagogue.xml
deleted file mode 100644
index 26e69d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/synagogue.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8v13h4v-7h4v7h4V8l-6,-5L6,8zM13.5,10c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5S13.5,9.17 13.5,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5C1.9,5 1,5.9 1,7v1h4V7C5,5.9 4.1,5 3,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h4v12h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.1,0 -2,0.9 -2,2v1h4V7C23,5.9 22.1,5 21,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sync.xml b/compose/material/material/icons/generator/raw-icons/sharp/sync.xml
deleted file mode 100644
index c2f773a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L12,1L8,5l4,4L12,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46C19.54,15.03 20,13.57 20,12c0,-4.42 -3.58,-8 -8,-8zM12,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.24,7.74C4.46,8.97 4,10.43 4,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sync_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/sync_alt.xml
deleted file mode 100644
index 360b6a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sync_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12l4,-4l-4,-4l0,3l-15,0l0,2l15,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12l-4,4l4,4l0,-3l15,0l0,-2l-15,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sync_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/sync_disabled.xml
deleted file mode 100644
index d6021bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sync_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6.35V4.26c-0.66,0.17 -1.29,0.43 -1.88,0.75l1.5,1.5c0.13,-0.05 0.25,-0.11 0.38,-0.16zM20,12c0,-2.21 -0.91,-4.2 -2.36,-5.64L20,4h-6v6l2.24,-2.24C17.32,8.85 18,10.34 18,12c0,0.85 -0.19,1.65 -0.51,2.38l1.5,1.5C19.63,14.74 20,13.41 20,12zM4.27,4L2.86,5.41l2.36,2.36C4.45,8.99 4,10.44 4,12c0,2.21 0.91,4.2 2.36,5.64L4,20h6v-6l-2.24,2.24C6.68,15.15 6,13.66 6,12c0,-1 0.25,-1.94 0.68,-2.77l8.08,8.08c-0.25,0.13 -0.5,0.24 -0.76,0.34v2.09c0.8,-0.21 1.55,-0.54 2.23,-0.96l2.58,2.58 1.41,-1.41L4.27,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sync_lock.xml b/compose/material/material/icons/generator/raw-icons/sharp/sync_lock.xml
deleted file mode 100644
index 1ea0e23..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sync_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,4h-6v6h2V7.56c1.22,1.1 2,2.67 2,4.44h2c0,-2.4 -1.06,-4.54 -2.73,-6H20V4zM20,17v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C21,17.45 20.55,17 20,17zM19,17h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/sync_problem.xml b/compose/material/material/icons/generator/raw-icons/sharp/sync_problem.xml
deleted file mode 100644
index bb6258a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/sync_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12c0,2.21 0.91,4.2 2.36,5.64L3,20h6v-6l-2.24,2.24C5.68,15.15 5,13.66 5,12c0,-2.61 1.67,-4.83 4,-5.65L9,4.26C5.55,5.15 3,8.27 3,12zM11,17h2v-2h-2v2zM21,4h-6v6l2.24,-2.24C18.32,8.85 19,10.34 19,12c0,2.61 -1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74 0,-2.21 -0.91,-4.2 -2.36,-5.64L21,4zM11,13h2L13,7h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/system_security_update.xml b/compose/material/material/icons/generator/raw-icons/sharp/system_security_update.xml
deleted file mode 100644
index d554c5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/system_security_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,1v22h14V1H5zM17,18H7V6h10V18zM16,12h-3V8h-2v4H8l4,4L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/system_security_update_good.xml b/compose/material/material/icons/generator/raw-icons/sharp/system_security_update_good.xml
deleted file mode 100644
index 1468130..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/system_security_update_good.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,1v22h14V1H5zM17,18H7V6h10V18zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/system_security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/sharp/system_security_update_warning.xml
deleted file mode 100644
index 27bb764..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/system_security_update_warning.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.01,1v22H19V1H5.01zM17,18H7V6h10V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/system_update.xml b/compose/material/material/icons/generator/raw-icons/sharp/system_update.xml
deleted file mode 100644
index 1634f46..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/system_update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,1v22h14L19,1L5,1zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/system_update_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/system_update_alt.xml
deleted file mode 100644
index 5caf6da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/system_update_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16l4,-4h-3L13,3h-2v9L8,12l4,4zM21,3h-6v1.99h6v14.03L3,19.02L3,4.99h6L9,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM12,16l4,-4h-3L13,3h-2v9L8,12l4,4zM23,3h-8v1.99h6v14.03L3,19.02L3,4.99h6L9,3L1,3v18h22L23,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tab.xml b/compose/material/material/icons/generator/raw-icons/sharp/tab.xml
deleted file mode 100644
index 60138db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tab.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h10v4h8v10zM23,3L1,3v18h22L23,3zM21,19L3,19L3,5h10v4h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tab_unselected.xml b/compose/material/material/icons/generator/raw-icons/sharp/tab_unselected.xml
deleted file mode 100644
index 764f395..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tab_unselected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h2L3,7L1,7v2zM1,13h2v-2L1,11v2zM9,21h2v-2L9,19v2zM1,17h2v-2L1,15v2zM1,21h2v-2L1,19v2zM23,3L13,3v6h10L23,3zM21,17h2v-2h-2v2zM9,5h2L11,3L9,3v2zM5,21h2v-2L5,19v2zM5,5h2L7,3L5,3v2zM1,5h2L3,3L1,3v2zM21,13h2v-2h-2v2zM13,21h2v-2h-2v2zM17,21h2v-2h-2v2zM21,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/table_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/table_bar.xml
deleted file mode 100644
index 965a689..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/table_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.5C22,5.57 17.52,4 12,4S2,5.57 2,7.5c0,1.81 3.95,3.31 9,3.48V15H8l-2,5h2l1.2,-3h5.6l1.2,3h2l-2,-5h-3v-4.02C18.05,10.81 22,9.31 22,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/table_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/table_chart.xml
deleted file mode 100644
index 446bfde..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/table_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10.02h5L15,21h-5L10,10.02zM17,21h5L22,10h-5v11zM22,3L3,3v5h19L22,3zM3,21h5L8,10L3,10v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/table_restaurant.xml b/compose/material/material/icons/generator/raw-icons/sharp/table_restaurant.xml
deleted file mode 100644
index 10047b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/table_restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.33,11l-2,-7H3.67l-2,7H5.2L4,20h2l0.67,-5h10.67L18,20h2l-1.2,-9H22.33zM6.93,13l0.27,-2h9.6l0.27,2H6.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/table_rows.xml b/compose/material/material/icons/generator/raw-icons/sharp/table_rows.xml
deleted file mode 100644
index 5f829f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/table_rows.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8H3V4h18V8zM21,10H3v4h18V10zM21,16H3v4h18V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/table_view.xml b/compose/material/material/icons/generator/raw-icons/sharp/table_view.xml
deleted file mode 100644
index 3fc0c55..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/table_view.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7H7v14h14V7zM19,9v2H9V9H19zM13,15v-2h2v2H13zM15,17v2h-2v-2H15zM11,15H9v-2h2V15zM17,13h2v2h-2V13zM9,17h2v2H9V17zM17,19v-2h2v2H17zM6,17H3V3h14v3h-2V5H5v10h1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tablet.xml b/compose/material/material/icons/generator/raw-icons/sharp/tablet.xml
deleted file mode 100644
index 1e9448e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tablet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,4L1,4v16h21.99L23,4zM19,18L5,18L5,6h14v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tablet_android.xml b/compose/material/material/icons/generator/raw-icons/sharp/tablet_android.xml
deleted file mode 100644
index 161b401..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tablet_android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,0L3,0v24h18L21,0zM14,22h-4v-1h4v1zM19.25,19L4.75,19L4.75,3h14.5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tablet_mac.xml b/compose/material/material/icons/generator/raw-icons/sharp/tablet_mac.xml
deleted file mode 100644
index 6bc01a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tablet_mac.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,0L2,0v24h19L21,0zM11.5,23c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,19L4,19L4,3h15v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tag.xml b/compose/material/material/icons/generator/raw-icons/sharp/tag.xml
deleted file mode 100644
index bdc2232..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tag_faces.xml b/compose/material/material/icons/generator/raw-icons/sharp/tag_faces.xml
deleted file mode 100644
index b47c3d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tag_faces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,2C6.49,2 2.02,6.48 2.02,12s4.47,10 9.99,10c5.53,0 10.01,-4.48 10.01,-10S17.54,2 12.01,2zM12.02,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM15.52,11c0.83,0 1.5,-0.67 1.5,-1.5S16.35,8 15.52,8s-1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM8.52,11c0.83,0 1.5,-0.67 1.5,-1.5S9.35,8 8.52,8s-1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM12.02,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.91,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/takeout_dining.xml b/compose/material/material/icons/generator/raw-icons/sharp/takeout_dining.xml
deleted file mode 100644
index b84b4f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/takeout_dining.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.46l-1.41,-1.41l-1.59,1.58l0.03,-0.56l-4.05,-4.07l-5.96,0l-4.05,4.07l0.03,0.5l-1.59,-1.56l-1.41,1.43l2.66,2.56l14.69,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.93,20l12.14,0l0.63,-8.45l-13.4,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tap_and_play.xml b/compose/material/material/icons/generator/raw-icons/sharp/tap_and_play.xml
deleted file mode 100644
index 4771591..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tap_and_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM2,20v3h3c0,-1.66 -1.34,-3 -3,-3zM2,12v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.92,-11 -11,-11zM5,1v9.37c0.69,0.16 1.36,0.37 2,0.64L7,5h10v13h-3.03c0.52,1.25 0.84,2.59 0.95,4L19,22L19,1L5,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tapas.xml b/compose/material/material/icons/generator/raw-icons/sharp/tapas.xml
deleted file mode 100644
index 7a553e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tapas.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10V1h-8v9c0,1.86 1.28,3.41 3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41 22,11.86 22,10zM20,3v3h-4V3H20zM10,9H8V8h2c1.38,0 2.5,-1.12 2.5,-2.5C12.5,4.12 11.38,3 10,3H8V1H6v2H4C2.62,3 1.5,4.12 1.5,5.5C1.5,6.88 2.62,8 4,8h2v1H4c-1.38,0 -2.5,1.12 -2.5,2.5C1.5,12.88 2.62,14 4,14h2v9h2v-9h2c1.38,0 2.5,-1.12 2.5,-2.5C12.5,10.12 11.38,9 10,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/task.xml b/compose/material/material/icons/generator/raw-icons/sharp/task.xml
deleted file mode 100644
index 246011a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM10.94,18L7.4,14.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L10.94,18zM13,9V3.5L18.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/task_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/task_alt.xml
deleted file mode 100644
index 20fd5c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/task_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM19.79,10.22C19.92,10.79 20,11.39 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8c1.58,0 3.04,0.46 4.28,1.25l1.44,-1.44C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10c0,-1.19 -0.22,-2.33 -0.6,-3.39L19.79,10.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/taxi_alert.xml b/compose/material/material/icons/generator/raw-icons/sharp/taxi_alert.xml
deleted file mode 100644
index f607fc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/taxi_alert.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-1.91,0 -3.63,-0.76 -4.89,-2H4.81l1.04,-3h5.44C11.1,7.37 11,6.7 11,6s0.1,-1.37 0.29,-2H8v2H4.43L2,13v9h3v-2h12v2h3v-9l-0.09,-0.27C19.3,12.9 18.66,13 18,13zM6.5,17C5.67,17 5,16.33 5,15.5S5.67,14 6.5,14S8,14.67 8,15.5S7.33,17 6.5,17zM15.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S16.33,17 15.5,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/temple_buddhist.xml b/compose/material/material/icons/generator/raw-icons/sharp/temple_buddhist.xml
deleted file mode 100644
index 6944afa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/temple_buddhist.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9.02c0,1.09 -0.89,1.98 -1.98,1.98H4.98C3.89,11 3,10.11 3,9.02H1c0,1.86 1.28,3.4 3,3.84V22h6v-5h4v5h6v-9.14c0.55,-0.14 3,-1.04 3,-3.86L21,9.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.86V10h12V8.86c0.55,-0.14 3,-1.04 3,-3.86l-2,0.02C19,6.11 18.11,7 17.02,7H6.98C5.89,7 5,6.11 5,5.02H3C3,6.87 4.28,8.42 6,8.86z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1l-3.75,5l7.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/temple_hindu.xml b/compose/material/material/icons/generator/raw-icons/sharp/temple_hindu.xml
deleted file mode 100644
index a489c72..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/temple_hindu.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.6,11l10.8,0l-0.9,-3l-9,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11l0,2l-16,0l0,-2l-2,0l0,11l8,0l0,-5l4,0l0,5l8,0l0,-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,6l-0.9,-3l0,-2l-2,0l0,2l-2.03,0l0,-2l-2,0l0,2.12l-0.87,2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/terminal.xml b/compose/material/material/icons/generator/raw-icons/sharp/terminal.xml
deleted file mode 100644
index d478f68..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/terminal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM20,18H4V8h16V18zM18,17h-6v-2h6V17zM7.5,17l-1.41,-1.41L8.67,13l-2.59,-2.59L7.5,9l4,4L7.5,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/terrain.xml b/compose/material/material/icons/generator/raw-icons/sharp/terrain.xml
deleted file mode 100644
index 22347e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/terrain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-3.75,5 2.85,3.8 -1.6,1.2C9.81,13.75 7,10 7,10l-6,8h22L14,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_decrease.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_decrease.xml
deleted file mode 100644
index d62489b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_decrease.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.99,19h2.42l1.27,-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19zM5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41zM23,11v2h-8v-2H23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_fields.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_fields.xml
deleted file mode 100644
index f696c21..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_fields.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,4v3h5v12h3L10.5,7h5L15.5,4h-13zM21.5,9h-9v3h3v7h3v-7h3L21.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_format.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_format.xml
deleted file mode 100644
index 79b414c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_format.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17v2h14v-2L5,17zM9.5,12.8h5l0.9,2.2h2.1L12.75,4h-1.5L6.5,15h2.1l0.9,-2.2zM12,5.98L13.87,11h-3.74L12,5.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_increase.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_increase.xml
deleted file mode 100644
index 80ddd74..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_increase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.99,19h2.42l1.27,-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19zM5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41zM20,11h3v2h-3v3h-2v-3h-3v-2h3V8h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_rotate_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_rotate_up.xml
deleted file mode 100644
index 7c880d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_rotate_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-3,3h2v13h2L19,7h2l-3,-3zM11.8,15.5v-5l2.2,-0.9L14,7.5L3,12.25v1.5l11,4.75v-2.1l-2.2,-0.9zM4.98,13L10,11.13v3.74L4.98,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_rotate_vertical.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_rotate_vertical.xml
deleted file mode 100644
index 037c1a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_rotate_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.75,5h-1.5L9.5,16h2.1l0.9,-2.2h5l0.9,2.2h2.1L15.75,5zM13.13,12L15,6.98 16.87,12h-3.74zM6,20l3,-3L7,17L7,4L5,4v13L3,17l3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_angledown.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_angledown.xml
deleted file mode 100644
index 9c2835f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_angledown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21v-4.24l-1.41,1.41 -9.2,-9.19 -1.41,1.41 9.19,9.19L10.76,21L15,21zM11.25,8.48l3.54,3.54 -0.92,2.19 1.48,1.48 4.42,-11.14 -1.06,-1.05L7.57,7.92 9.06,9.4l2.19,-0.92zM17.84,5.43l-2.23,4.87 -2.64,-2.64 4.87,-2.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_angleup.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_angleup.xml
deleted file mode 100644
index 3690110..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_angleup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.76,9l1.41,1.41 -9.19,9.19 1.41,1.41 9.19,-9.19L21,13.24L21,9h-4.24zM8.48,12.75l3.54,-3.54 2.19,0.92 1.48,-1.48L4.56,4.23 3.5,5.29l4.42,11.14 1.48,-1.48 -0.92,-2.2zM7.66,11.03L5.43,6.16l4.87,2.23 -2.64,2.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_down.xml
deleted file mode 100644
index 060ea6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20l3,-3L7,17L7,4L5,4v13L3,17l3,3zM12.2,8.5v5l-2.2,0.9v2.1l11,-4.75v-1.5L10,5.5v2.1l2.2,0.9zM19.02,11L14,12.87L14,9.13L19.02,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_none.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_none.xml
deleted file mode 100644
index ad74a29..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_rotation_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18l-3,-3v2H5v2h13v2l3,-3zM9.5,11.8h5l0.9,2.2h2.1L12.75,3h-1.5L6.5,14h2.1l0.9,-2.2zM12,4.98L13.87,10h-3.74L12,4.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/text_snippet.xml b/compose/material/material/icons/generator/raw-icons/sharp/text_snippet.xml
deleted file mode 100644
index fb0fcce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/text_snippet.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9l-6,-6H3v18h18V9zM7,7h7v2H7V7zM17,17H7v-2h10V17zM17,13H7v-2h10V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/textsms.xml b/compose/material/material/icons/generator/raw-icons/sharp/textsms.xml
deleted file mode 100644
index d8a554a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/textsms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2.01,2L2,22l4,-4h16L22,2zM9,11L7,11L7,9h2v2zM13,11h-2L11,9h2v2zM17,11h-2L15,9h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/texture.xml b/compose/material/material/icons/generator/raw-icons/sharp/texture.xml
deleted file mode 100644
index 865ab91..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/texture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,3L3.07,19.59L3.07,21h1.41L21.07,4.42L21.07,3zM11.95,3l-8.88,8.88v2.83L14.78,3zM3.07,3v4l4,-4zM21.07,21v-4l-4,4zM12.19,21l8.88,-8.88L21.07,9.29L9.36,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/theater_comedy.xml b/compose/material/material/icons/generator/raw-icons/sharp/theater_comedy.xml
deleted file mode 100644
index d99638c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/theater_comedy.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2v5.5h3.5v3.31C14.55,9.8 15.64,9 16.99,9c1.38,0 2.5,0.84 2.5,1.88H14.5v3.56C15.26,14.8 16.11,15 17,15c3.31,0 6,-2.69 6,-6V2H11zM15,7.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,7.5 15,7.5zM19,7.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,7.5 19,7.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,16c0,3.31 2.69,6 6,6s6,-2.69 6,-6V9H1V16zM7,17.88c-1.38,0 -2.5,-0.84 -2.5,-1.88h5C9.5,17.04 8.38,17.88 7,17.88zM9,12.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S8.45,12.5 9,12.5zM5,12.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S4.45,12.5 5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/theaters.xml b/compose/material/material/icons/generator/raw-icons/sharp/theaters.xml
deleted file mode 100644
index afcfb9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/theaters.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2L20,3h-2zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thermostat.xml b/compose/material/material/icons/generator/raw-icons/sharp/thermostat.xml
deleted file mode 100644
index b67ee87..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4 0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-1.63 -0.79,-3.09 -2,-4zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h-1v1h1v2h-1v1h1v2h-2L11,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thermostat_auto.xml b/compose/material/material/icons/generator/raw-icons/sharp/thermostat_auto.xml
deleted file mode 100644
index 67bbfed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thermostat_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12V6c0,-1.66 -1.34,-3 -3,-3S5,4.34 5,6v6c-1.21,0.91 -2,2.37 -2,4c0,1.12 0.38,2.14 1,2.97V19h0.02c0.91,1.21 2.35,2 3.98,2s3.06,-0.79 3.98,-2H12v-0.03c0.62,-0.83 1,-1.85 1,-2.97C13,14.37 12.21,12.91 11,12zM5,16c0,-0.94 0.45,-1.84 1.2,-2.4L7,13V6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v7l0.8,0.6c0.75,0.57 1.2,1.46 1.2,2.4H5zM18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22L18.62,4zM16.47,9.39l1.31,-3.72h0.08l1.31,3.72H16.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thumb_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/thumb_down.xml
deleted file mode 100644
index 2d6db00..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thumb_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,23L17,15.82V3H4.69L1,11.6V16h8.31l-1.12,5.38zM19,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thumb_down_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/thumb_down_alt.xml
deleted file mode 100644
index 4e9cde9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thumb_down_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11.6V16h8.31l-1.12,5.38L9.83,23 17,15.82V3H4.69zM19,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thumb_down_off_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/thumb_down_off_alt.xml
deleted file mode 100644
index 64811c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thumb_down_off_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h4v12h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11.6V16h8.31l-1.12,5.38L9.83,23L17,15.82V3H4.69L1,11.6zM15,5v9.99l-4.34,4.35l0.61,-2.93l0.5,-2.41H9.31H3v-1.99L6.01,5H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thumb_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/thumb_up.xml
deleted file mode 100644
index c44af28..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thumb_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,1L7,8.18V21h12.31L23,12.4V8h-8.31l1.12,-5.38zM1,9h4v12H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thumb_up_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/thumb_up_alt.xml
deleted file mode 100644
index c44af28..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thumb_up_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,1L7,8.18V21h12.31L23,12.4V8h-8.31l1.12,-5.38zM1,9h4v12H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thumb_up_off_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/thumb_up_off_alt.xml
deleted file mode 100644
index d47afff..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thumb_up_off_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,1L7,8.18V21h12.31L23,12.4V8h-8.31l1.12,-5.38L14.17,1zM1,9h4v12H1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thumbs_up_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/thumbs_up_down.xml
deleted file mode 100644
index 1b7dbd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thumbs_up_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L5.82,5l0.78,-3.78L5.38,0 0,5.38L0,14h9.24L12,7.54zM14.76,10L12,16.46L12,19h6.18l-0.78,3.78L18.62,24 24,18.62L24,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/thunderstorm.xml b/compose/material/material/icons/generator/raw-icons/sharp/thunderstorm.xml
deleted file mode 100644
index 6292e7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/thunderstorm.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,7.02C17.45,4.18 14.97,2 12,2C9.82,2 7.83,3.18 6.78,5.06C4.09,5.41 2,7.74 2,10.5C2,13.53 4.47,16 7.5,16h10c2.48,0 4.5,-2.02 4.5,-4.5C22,9.16 20.21,7.23 17.92,7.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/time_to_leave.xml b/compose/material/material/icons/generator/raw-icons/sharp/time_to_leave.xml
deleted file mode 100644
index 9729d83..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/time_to_leave.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.57,4L5.43,4L3,11v9h3v-2h12v2h3v-9l-2.43,-7zM6.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,12 6.5,12s1.5,0.67 1.5,1.5S7.33,15 6.5,15zM17.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,10l1.5,-4.5h11L19,10L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timelapse.xml b/compose/material/material/icons/generator/raw-icons/sharp/timelapse.xml
deleted file mode 100644
index b03e05f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timelapse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,7.76C15.07,6.59 13.54,6 12,6v6l-4.24,4.24c2.34,2.34 6.14,2.34 8.49,0 2.34,-2.34 2.34,-6.14 -0.01,-8.48zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timeline.xml b/compose/material/material/icons/generator/raw-icons/sharp/timeline.xml
deleted file mode 100644
index 310490c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8c0,1.1 -0.9,2 -2,2c-0.18,0 -0.35,-0.02 -0.51,-0.07l-3.56,3.55C16.98,13.64 17,13.82 17,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.18 0.02,-0.36 0.07,-0.52l-2.55,-2.55C10.36,10.98 10.18,11 10,11c-0.18,0 -0.36,-0.02 -0.52,-0.07l-4.55,4.56C4.98,15.65 5,15.82 5,16c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.18,0 0.35,0.02 0.51,0.07l4.56,-4.55C8.02,9.36 8,9.18 8,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,0.18 -0.02,0.36 -0.07,0.52l2.55,2.55C14.64,12.02 14.82,12 15,12c0.18,0 0.36,0.02 0.52,0.07l3.55,-3.56C19.02,8.35 19,8.18 19,8c0,-1.1 0.9,-2 2,-2S23,6.9 23,8zM23,8c0,1.1 -0.9,2 -2,2c-0.18,0 -0.35,-0.02 -0.51,-0.07l-3.56,3.55C16.98,13.64 17,13.82 17,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.18 0.02,-0.36 0.07,-0.52l-2.55,-2.55C10.36,10.98 10.18,11 10,11c-0.18,0 -0.36,-0.02 -0.52,-0.07l-4.55,4.56C4.98,15.65 5,15.82 5,16c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.18,0 0.35,0.02 0.51,0.07l4.56,-4.55C8.02,9.36 8,9.18 8,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,0.18 -0.02,0.36 -0.07,0.52l2.55,2.55C14.64,12.02 14.82,12 15,12c0.18,0 0.36,0.02 0.52,0.07l3.55,-3.56C19.02,8.35 19,8.18 19,8c0,-1.1 0.9,-2 2,-2S23,6.9 23,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timer.xml b/compose/material/material/icons/generator/raw-icons/sharp/timer.xml
deleted file mode 100644
index 0880d77..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,1H9v2h6V1zM11,14h2V8h-2V14zM19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9s9,-4.03 9,-9C21,10.88 20.26,8.93 19.03,7.39zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7s7,3.13 7,7S15.87,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timer_10.xml b/compose/material/material/icons/generator/raw-icons/sharp/timer_10.xml
deleted file mode 100644
index d707d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timer_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M-0.01,7.72L-0.01,9.4l3,-1L2.99,18h2L4.99,6h-0.25L-0.01,7.72zM23.77,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25s-0.23,-0.19 -0.28,-0.3c-0.05,-0.11 -0.08,-0.24 -0.08,-0.39 0,-0.14 0.03,-0.28 0.09,-0.41s0.15,-0.25 0.27,-0.34c0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11s0.35,0.17 0.48,0.29 0.22,0.26 0.29,0.42c0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09s-0.39,-0.63 -0.69,-0.88c-0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21s-0.77,0.33 -1.06,0.57c-0.29,0.24 -0.51,0.52 -0.67,0.84 -0.16,0.32 -0.23,0.65 -0.23,1.01s0.08,0.69 0.23,0.96c0.15,0.28 0.36,0.52 0.64,0.73 0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77s-0.66,0.29 -1.17,0.29c-0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05s0.39,0.65 0.7,0.93c0.31,0.27 0.69,0.49 1.15,0.66s0.98,0.25 1.58,0.25c0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02zM13.81,7.05c-0.34,-0.4 -0.75,-0.7 -1.23,-0.88 -0.47,-0.18 -1.01,-0.27 -1.59,-0.27s-1.11,0.09 -1.59,0.27c-0.48,0.18 -0.89,0.47 -1.23,0.88 -0.34,0.41 -0.6,0.93 -0.79,1.59 -0.18,0.65 -0.28,1.45 -0.28,2.39v1.92c0,0.94 0.09,1.74 0.28,2.39 0.19,0.66 0.45,1.19 0.8,1.6 0.34,0.41 0.75,0.71 1.23,0.89s1.01,0.28 1.59,0.28c0.59,0 1.12,-0.09 1.59,-0.28 0.48,-0.18 0.88,-0.48 1.22,-0.89s0.6,-0.94 0.78,-1.6c0.18,-0.65 0.28,-1.45 0.28,-2.39v-1.92c0,-0.94 -0.09,-1.74 -0.28,-2.39 -0.18,-0.66 -0.44,-1.19 -0.78,-1.59zM12.89,13.22c0,0.6 -0.04,1.11 -0.12,1.53s-0.2,0.76 -0.36,1.02c-0.16,0.26 -0.36,0.45 -0.59,0.57 -0.23,0.12 -0.51,0.18 -0.82,0.18 -0.3,0 -0.58,-0.06 -0.82,-0.18s-0.44,-0.31 -0.6,-0.57c-0.16,-0.26 -0.29,-0.6 -0.38,-1.02s-0.13,-0.93 -0.13,-1.53v-2.5c0,-0.6 0.04,-1.11 0.13,-1.52s0.21,-0.74 0.38,-1c0.16,-0.25 0.36,-0.43 0.6,-0.55 0.24,-0.11 0.51,-0.17 0.81,-0.17 0.31,0 0.58,0.06 0.81,0.17 0.24,0.11 0.44,0.29 0.6,0.55 0.16,0.25 0.29,0.58 0.37,0.99s0.13,0.92 0.13,1.52v2.51h-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timer_10_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/timer_10_select.xml
deleted file mode 100644
index 72abc19..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timer_10_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8v8h-3V8H13M16,5H7v14h9V5zM1,8h2v11h3V5H1V8zM23,11h-6v5h4v1h-4v2h6v-5h-4v-1h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timer_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/timer_3.xml
deleted file mode 100644
index 215e2d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timer_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.61,12.97c-0.16,-0.24 -0.36,-0.46 -0.62,-0.65 -0.25,-0.19 -0.56,-0.35 -0.93,-0.48 0.3,-0.14 0.57,-0.3 0.8,-0.5 0.23,-0.2 0.42,-0.41 0.57,-0.64 0.15,-0.23 0.27,-0.46 0.34,-0.71 0.08,-0.24 0.11,-0.49 0.11,-0.73 0,-0.55 -0.09,-1.04 -0.28,-1.46 -0.18,-0.42 -0.44,-0.77 -0.78,-1.06 -0.33,-0.28 -0.73,-0.5 -1.2,-0.64 -0.45,-0.13 -0.97,-0.2 -1.53,-0.2 -0.55,0 -1.06,0.08 -1.52,0.24 -0.47,0.17 -0.87,0.4 -1.2,0.69 -0.33,0.29 -0.6,0.63 -0.78,1.03 -0.2,0.39 -0.29,0.83 -0.29,1.29h1.98c0,-0.26 0.05,-0.49 0.14,-0.69 0.09,-0.2 0.22,-0.38 0.38,-0.52 0.17,-0.14 0.36,-0.25 0.58,-0.33s0.46,-0.12 0.73,-0.12c0.61,0 1.06,0.16 1.36,0.47 0.3,0.31 0.44,0.75 0.44,1.32 0,0.27 -0.04,0.52 -0.12,0.74 -0.08,0.22 -0.21,0.41 -0.38,0.57s-0.38,0.28 -0.63,0.37 -0.55,0.13 -0.89,0.13L6.72,11.09v1.57L7.9,12.66c0.34,0 0.64,0.04 0.91,0.11 0.27,0.08 0.5,0.19 0.69,0.35 0.19,0.16 0.34,0.36 0.44,0.61 0.1,0.24 0.16,0.54 0.16,0.87 0,0.62 -0.18,1.09 -0.53,1.42 -0.35,0.33 -0.84,0.49 -1.45,0.49 -0.29,0 -0.56,-0.04 -0.8,-0.13 -0.24,-0.08 -0.44,-0.2 -0.61,-0.36s-0.3,-0.34 -0.39,-0.56c-0.09,-0.22 -0.14,-0.46 -0.14,-0.72L4.19,14.74c0,0.55 0.11,1.03 0.32,1.45 0.21,0.42 0.5,0.77 0.86,1.05s0.77,0.49 1.24,0.63 0.96,0.21 1.48,0.21c0.57,0 1.09,-0.08 1.58,-0.23s0.91,-0.38 1.26,-0.68c0.36,-0.3 0.64,-0.66 0.84,-1.1 0.2,-0.43 0.3,-0.93 0.3,-1.48 0,-0.29 -0.04,-0.58 -0.11,-0.86 -0.08,-0.25 -0.19,-0.51 -0.35,-0.76zM20.87,14.37c-0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25s-0.23,-0.19 -0.28,-0.3c-0.05,-0.11 -0.08,-0.24 -0.08,-0.39s0.03,-0.28 0.09,-0.41 0.15,-0.25 0.27,-0.34c0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11s0.35,0.17 0.48,0.29 0.22,0.26 0.29,0.42c0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09s-0.39,-0.63 -0.69,-0.88c-0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21s-0.77,0.33 -1.06,0.57c-0.29,0.24 -0.51,0.52 -0.67,0.84s-0.23,0.65 -0.23,1.01 0.08,0.68 0.23,0.96 0.37,0.52 0.64,0.73c0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34 0.05,0.12 0.07,0.25 0.07,0.39 0,0.32 -0.13,0.57 -0.4,0.77s-0.66,0.29 -1.17,0.29c-0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05s0.39,0.65 0.7,0.93c0.31,0.27 0.69,0.49 1.15,0.66 0.46,0.17 0.98,0.25 1.58,0.25 0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timer_3_select.xml b/compose/material/material/icons/generator/raw-icons/sharp/timer_3_select.xml
deleted file mode 100644
index 9345bcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timer_3_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11v2h-4v1h4v5h-6v-2h4v-1h-4v-5H21zM4,5v3h6v2.5H4v3h6V16H4v3h9V5H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/timer_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/timer_off.xml
deleted file mode 100644
index 82af92a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/timer_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,1h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8v2.17l6.98,6.98C20.63,15.91 21,14.5 21,13c0,-2.12 -0.74,-4.07 -1.97,-5.61l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-1.5,0 -2.91,0.37 -4.15,1.02L10.83,8H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12 3,10.98 3,13c0,4.97 4.02,9 9,9c2.02,0 3.88,-0.67 5.38,-1.79l2.4,2.4l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tips_and_updates.xml b/compose/material/material/icons/generator/raw-icons/sharp/tips_and_updates.xml
deleted file mode 100644
index 93d5882..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tips_and_updates.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h4c0,1.1 -0.9,2 -2,2S7,21.1 7,20zM5,19h8v-2H5V19zM16.5,9.5c0,3.82 -2.66,5.86 -3.77,6.5H5.27C4.16,15.36 1.5,13.32 1.5,9.5C1.5,5.36 4.86,2 9,2S16.5,5.36 16.5,9.5zM21.37,7.37L20,8l1.37,0.63L22,10l0.63,-1.37L24,8l-1.37,-0.63L22,6L21.37,7.37zM19,6l0.94,-2.06L22,3l-2.06,-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tire_repair.xml b/compose/material/material/icons/generator/raw-icons/sharp/tire_repair.xml
deleted file mode 100644
index 1c75243..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tire_repair.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c0,0.55 0.45,1 1,1c0.28,0 0.53,-0.11 0.71,-0.29c0.4,-0.4 1.04,-2.46 1.04,-2.46s-2.06,0.64 -2.46,1.04C18.11,6.47 18,6.72 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2c-2.76,0 -5,2.24 -5,5c0,2.05 1.23,3.81 3,4.58V13h1v6h-2v-6h-4V5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2v-4h2v6h6v-8h1v-1.42c1.77,-0.77 3,-2.53 3,-4.58C24,4.24 21.76,2 19,2zM6,19.5l-2,-2v-2.83l2,2V19.5zM6,14.5l-2,-2V9.67l2,2V14.5zM6,9.5l-2,-2V4.67l2,2V9.5zM10,17.5l-2,2v-2.83l2,-2V17.5zM10,12.5l-2,2v-2.83l2,-2V12.5zM10,7.5l-2,2V6.67l2,-2V7.5zM19,10c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S20.66,10 19,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/title.xml b/compose/material/material/icons/generator/raw-icons/sharp/title.xml
deleted file mode 100644
index 0e23a54..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/title.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4v3h5.5v12h3V7H19V4H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/toc.xml b/compose/material/material/icons/generator/raw-icons/sharp/toc.xml
deleted file mode 100644
index c2dab0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/toc.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h14L17,7L3,7v2zM3,13h14v-2L3,11v2zM3,17h14v-2L3,15v2zM19,17h2v-2h-2v2zM19,7v2h2L21,7h-2zM19,13h2v-2h-2v2zM3,9h14L17,7L3,7v2zM3,13h14v-2L3,11v2zM3,17h14v-2L3,15v2zM19,17h2v-2h-2v2zM19,7v2h2L21,7h-2zM19,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/today.xml b/compose/material/material/icons/generator/raw-icons/sharp/today.xml
deleted file mode 100644
index 9085280..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/today.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3h-3L18,1h-2v2L8,3L8,1L6,1v2L3,3v18h18L21,3zM19,19L5,19L5,8h14v11zM7,10h5v5L7,15v-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/toggle_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/toggle_off.xml
deleted file mode 100644
index 1af8c24..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7H7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h10c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM7,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/toggle_on.xml b/compose/material/material/icons/generator/raw-icons/sharp/toggle_on.xml
deleted file mode 100644
index 914671e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/toggle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h10c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM17,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/token.xml b/compose/material/material/icons/generator/raw-icons/sharp/token.xml
deleted file mode 100644
index b43943e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/token.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.97,6.43L12,2L4.03,6.43L9.1,9.24C9.83,8.48 10.86,8 12,8s2.17,0.48 2.9,1.24L19.97,6.43zM10,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,13.1 10,12zM11,21.44L3,17V8.14l5.13,2.85C8.04,11.31 8,11.65 8,12c0,1.86 1.27,3.43 3,3.87V21.44zM13,21.44v-5.57c1.73,-0.44 3,-2.01 3,-3.87c0,-0.35 -0.04,-0.69 -0.13,-1.01L21,8.14L21,17L13,21.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/toll.xml b/compose/material/material/icons/generator/raw-icons/sharp/toll.xml
deleted file mode 100644
index 306c60c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/toll.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM3,12c0,-2.61 1.67,-4.83 4,-5.65L7,4.26C3.55,5.15 1,8.27 1,12s2.55,6.85 6,7.74v-2.09c-2.33,-0.82 -4,-3.04 -4,-5.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tonality.xml b/compose/material/material/icons/generator/raw-icons/sharp/tonality.xml
deleted file mode 100644
index 5b331db..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tonality.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.94,-0.49 -7,-3.85 -7,-7.93s3.05,-7.44 7,-7.93v15.86zM13,4.07c1.03,0.13 2,0.45 2.87,0.93L13,5v-0.93zM13,7h5.24c0.25,0.31 0.48,0.65 0.68,1L13,8L13,7zM13,10h6.74c0.08,0.33 0.15,0.66 0.19,1L13,11v-1zM13,19.93L13,19h2.87c-0.87,0.48 -1.84,0.8 -2.87,0.93zM18.24,17L13,17v-1h5.92c-0.2,0.35 -0.43,0.69 -0.68,1zM19.74,14L13,14v-1h6.93c-0.04,0.34 -0.11,0.67 -0.19,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/topic.xml b/compose/material/material/icons/generator/raw-icons/sharp/topic.xml
deleted file mode 100644
index 610bbaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/topic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6l-2,-2H2v16h20V6H12zM14,16H6v-2h8V16zM18,12H6v-2h12V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tornado.xml b/compose/material/material/icons/generator/raw-icons/sharp/tornado.xml
deleted file mode 100644
index 59871fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tornado.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.11,8l2.89,-5l-22,0l2.89,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.95,15l4.05,7l4.05,-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.95,10l-13.9,0l1.74,3l10.42,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/touch_app.xml b/compose/material/material/icons/generator/raw-icons/sharp/touch_app.xml
deleted file mode 100644
index 5785400..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/touch_app.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.25,9.24V5.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5v3.74c1.21,-0.81 2,-2.18 2,-3.74c0,-2.49 -2.01,-4.5 -4.5,-4.5s-4.5,2.01 -4.5,4.5C6.25,7.06 7.04,8.43 8.25,9.24zM13.33,11.5h-1.08v-6c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v10.74l-4.04,-0.85L4,16.62L9.38,22h8.67l1.07,-7.62L13.33,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tour.xml b/compose/material/material/icons/generator/raw-icons/sharp/tour.xml
deleted file mode 100644
index dee854c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tour.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2,-5L21,4zM15,9c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S15,7.9 15,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/toys.xml b/compose/material/material/icons/generator/raw-icons/sharp/toys.xml
deleted file mode 100644
index 2de65d1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/toys.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.72,10l-2,-6H7.28L5.81,8.4L4.41,7l1,-1L4,4.59L0.59,8L2,9.41l1,-1L4.59,10H2v8h2.18C4.59,19.16 5.7,20 7,20c1.3,0 2.4,-0.84 2.82,-2h4.37c0.41,1.16 1.51,2 2.82,2c1.3,0 2.41,-0.84 2.82,-2H22v-8H18.72zM7,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,18 7,18zM11,10H7.41L7.39,9.98L8.72,6c0,0 0,0 0,0H11V10zM13,10V6h2.28l1.33,4H13zM17,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/track_changes.xml b/compose/material/material/icons/generator/raw-icons/sharp/track_changes.xml
deleted file mode 100644
index 0909be1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/track_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.07,4.93l-1.41,1.41C19.1,7.79 20,9.79 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.08 3.05,-7.44 7,-7.93v2.02C8.16,6.57 6,9.03 6,12c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.41,1.41C15.55,9.9 16,10.9 16,12c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4c0,-1.86 1.28,-3.41 3,-3.86v2.14c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72V2h-1C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10c0,-2.76 -1.12,-5.26 -2.93,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/traffic.xml b/compose/material/material/icons/generator/raw-icons/sharp/traffic.xml
deleted file mode 100644
index 4808759..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/traffic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h-3L17,8.86c1.72,-0.45 3,-2 3,-3.86h-3L17,3L7,3v2L4,5c0,1.86 1.28,3.41 3,3.86L7,10L4,10c0,1.86 1.28,3.41 3,3.86L7,15L4,15c0,1.86 1.28,3.41 3,3.86L7,21h10v-2.14c1.72,-0.45 3,-2 3,-3.86h-3v-1.14c1.72,-0.45 3,-2 3,-3.86zM12,19c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2c1.1,0 2,0.9 2,2s-0.89,2 -2,2zM12,14c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2c1.1,0 2,0.9 2,2s-0.89,2 -2,2zM12,9c-1.11,0 -2,-0.9 -2,-2 0,-1.11 0.89,-2 2,-2 1.1,0 2,0.89 2,2 0,1.1 -0.89,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/train.xml b/compose/material/material/icons/generator/raw-icons/sharp/train.xml
deleted file mode 100644
index 18da368..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/train.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h2l2,-2h4l2,2h2v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -4,-4 -8,-4zM7.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,14 7.5,14s1.5,0.67 1.5,1.5S8.33,17 7.5,17zM11,10L6,10L6,6h5v4zM16.5,17c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM18,10h-5L13,6h5v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tram.xml b/compose/material/material/icons/generator/raw-icons/sharp/tram.xml
deleted file mode 100644
index 324a8b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tram.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5l0.75,-1.5L17,3.5L17,2L7,2v1.5h4.75L11,5c-3.13,0.09 -6,0.73 -6,3.5L5,17c0,1.5 1.11,2.73 2.55,2.95L6,21.5v0.5h2l2,-2h4l2,2h2v-0.5l-1.55,-1.55C17.89,19.73 19,18.5 19,17L19,8.5c0,-2.77 -2.87,-3.41 -6,-3.5zM12,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM17,14L7,14L7,9h10v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/transcribe.xml b/compose/material/material/icons/generator/raw-icons/sharp/transcribe.xml
deleted file mode 100644
index b9be39a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/transcribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.93,16l1.63,-1.63c-2.77,-3.02 -2.77,-7.56 0,-10.74L17.93,2C14.03,5.89 14.02,11.95 17.93,16zM22.92,10.95c-0.84,-1.18 -0.84,-2.71 0,-3.89l-1.68,-1.69c-2.02,2.02 -2.02,5.07 0,7.27L22.92,10.95zM9,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,6.79 5,9C5,11.21 6.79,13 9,13zM15.39,15.56C13.71,14.7 11.53,14 9,14c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,16.07 1,17.1 1,18.22V21h16v-2.78C17,17.1 16.39,16.07 15.39,15.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/transfer_within_a_station.xml b/compose/material/material/icons/generator/raw-icons/sharp/transfer_within_a_station.xml
deleted file mode 100644
index 874f01a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/transfer_within_a_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,15.5v-1.75L14,16.25l2.49,2.5L16.49,17L22,17v-1.5h-5.51zM19.51,19.75L14,19.75v1.5h5.51L19.51,23L22,20.5 19.51,18v1.75zM9.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5.75,8.9L3,23h2.1l1.75,-8L9,17v6h2v-7.55L8.95,13.4l0.6,-3C10.85,12 12.8,13 15,13v-2c-1.85,0 -3.45,-1 -4.35,-2.45l-0.95,-1.6C9.35,6.35 8.7,6 8,6c-0.25,0 -0.5,0.05 -0.75,0.15L2,8.3L2,13h2L4,9.65l1.75,-0.75"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/transform.xml b/compose/material/material/icons/generator/raw-icons/sharp/transform.xml
deleted file mode 100644
index 2e21d01..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/transform.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18v-2H8V4h2L7,1 4,4h2v2H2v2h4v10h10v2h-2l3,3 3,-3h-2v-2h4zM10,8h6v6h2V6h-8v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/transgender.xml b/compose/material/material/icons/generator/raw-icons/sharp/transgender.xml
deleted file mode 100644
index 864edbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/transgender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.93,0 3.5,1.57 3.5,3.5S13.93,15 12,15s-3.5,-1.57 -3.5,-3.5S10.07,8 12,8zM16.53,8.38l3.97,-3.96V7h2V1h-6v2h2.58l-3.97,3.97C14.23,6.36 13.16,6 12,6c-1.16,0 -2.23,0.36 -3.11,0.97L8.24,6.32l1.41,-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42l1.91,1.9L3.99,7.74l1.41,1.41l1.41,-1.41l0.65,0.65C6.86,9.27 6.5,10.34 6.5,11.5c0,2.7 1.94,4.94 4.5,5.41L11,19H9v2h2v2h2v-2h2v-2h-2l0,-2.09c2.56,-0.47 4.5,-2.71 4.5,-5.41C17.5,10.34 17.14,9.27 16.53,8.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/transit_enterexit.xml b/compose/material/material/icons/generator/raw-icons/sharp/transit_enterexit.xml
deleted file mode 100644
index 1bf5a6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/transit_enterexit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18H6V8h3v4.77L15.98,6 18,8.03 11.15,15H16v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/translate.xml b/compose/material/material/icons/generator/raw-icons/sharp/translate.xml
deleted file mode 100644
index 4e7e364..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,15.07l-2.54,-2.51 0.03,-0.03c1.74,-1.94 2.98,-4.17 3.71,-6.53L17,6L17,4h-7L10,2L8,2v2L1,4v1.99h11.17C11.5,7.92 10.44,9.75 9,11.35 8.07,10.32 7.3,9.19 6.69,8h-2c0.73,1.63 1.73,3.17 2.98,4.56l-5.09,5.02L4,19l5,-5 3.11,3.11 0.76,-2.04zM18.5,10h-2L12,22h2l1.12,-3h4.75L21,22h2l-4.5,-12zM15.88,17l1.62,-4.33L19.12,17h-3.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/travel_explore.xml b/compose/material/material/icons/generator/raw-icons/sharp/travel_explore.xml
deleted file mode 100644
index 93adef5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/travel_explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.3,16.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S11,12 11,14.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l3.2,3.2l1.4,-1.4L19.3,16.9zM15.5,17c-1.4,0 -2.5,-1.1 -2.5,-2.5s1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5S16.9,17 15.5,17zM12,20v2C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2c4.84,0 8.87,3.44 9.8,8h-2.07c-0.64,-2.46 -2.4,-4.47 -4.73,-5.41V5c0,1.1 -0.9,2 -2,2h-2v2c0,0.55 -0.45,1 -1,1H8v2h2v3H9l-4.79,-4.79C4.08,10.79 4,11.38 4,12C4,16.41 7.59,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/trending_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/trending_down.xml
deleted file mode 100644
index 5a417e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/trending_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18l2.29,-2.29 -4.88,-4.88 -4,4L2,7.41 3.41,6l6,6 4,-4 6.3,6.29L22,12v6h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/trending_flat.xml b/compose/material/material/icons/generator/raw-icons/sharp/trending_flat.xml
deleted file mode 100644
index cc4128a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/trending_flat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4,-4v3H3v2h15v3l4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/trending_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/trending_up.xml
deleted file mode 100644
index 96ed17b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/trending_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l2.29,2.29 -4.88,4.88 -4,-4L2,16.59 3.41,18l6,-6 4,4 6.3,-6.29L22,12V6h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/trip_origin.xml b/compose/material/material/icons/generator/raw-icons/sharp/trip_origin.xml
deleted file mode 100644
index ed73ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/trip_origin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12C2,6.48 6.48,2 12,2s10,4.48 10,10 -4.48,10 -10,10S2,17.52 2,12zM12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6 -6,2.69 -6,6 2.69,6 6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/troubleshoot.xml b/compose/material/material/icons/generator/raw-icons/sharp/troubleshoot.xml
deleted file mode 100644
index 97931d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/troubleshoot.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,20.59l-4.69,-4.69C18.37,14.55 19,12.85 19,11c0,-4.42 -3.58,-8 -8,-8c-4.08,0 -7.44,3.05 -7.93,7h2.02C5.57,7.17 8.03,5 11,5c3.31,0 6,2.69 6,6s-2.69,6 -6,6c-2.42,0 -4.5,-1.44 -5.45,-3.5H3.4C4.45,16.69 7.46,19 11,19c1.85,0 3.55,-0.63 4.9,-1.69L20.59,22L22,20.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.43,9.69l1.22,5.31l1.64,0l1.26,-3.78l0.95,2.28l2,0l0,-1.5l-1,0l-1.25,-3l-1.54,0l-1.12,3.37l-1.24,-5.37l-1.65,0l-1.25,4l-5.45,0l0,1.5l6.55,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/try.xml b/compose/material/material/icons/generator/raw-icons/sharp/try.xml
deleted file mode 100644
index 6851f79..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/try.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20l4,-4h16V2zM13.57,11.57L12,15l-1.57,-3.43L7,10l3.43,-1.57L12,5l1.57,3.43L17,10L13.57,11.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tsunami.xml b/compose/material/material/icons/generator/raw-icons/sharp/tsunami.xml
deleted file mode 100644
index b6820ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tsunami.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,17.63c-3.8,2.8 -6.12,0.4 -6.67,0c-0.66,0.49 -2.92,2.76 -6.67,0C3.43,19.03 2.65,19 2,19v2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0C19.7,20.68 20.84,21 22,21v-2C21.34,19 20.5,18.98 18.67,17.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.33,12H22v-2h-2.67C17.5,10 16,8.5 16,6.67c0,-1.02 0.38,-1.74 1.09,-3.34C15.72,3.12 15.09,3 14,3C7.36,3 2.15,8.03 2.01,14.5c0,0 -0.01,2 -0.01,2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0c1.03,0.61 2.17,0.93 3.33,0.93v-2c-0.66,0 -1.5,-0.02 -3.33,-1.37c-3.8,2.8 -6.12,0.4 -6.67,0c-0.9,0.67 -0.54,0.41 -0.91,0.63C10.39,12.82 10,11.7 10,10.5c0,-2.58 1.77,-4.74 4.21,-5.33C14.08,5.68 14,6.19 14,6.67C14,9.61 16.39,12 19.33,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tty.xml b/compose/material/material/icons/generator/raw-icons/sharp/tty.xml
deleted file mode 100644
index 62679f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15v6c-3.28,0 -6.35,-0.89 -9,-2.43C8.27,16.99 6.01,14.73 4.43,12C2.89,9.35 2,6.28 2,3h6l1,5l-2.9,2.9c1.43,2.5 3.5,4.57 6,6L15,14L20,15zM14,6h2V4h-2V6zM13,9h2V7h-2V9zM11,6h2V4h-2V6zM18,7h-2v2h2V7zM19,4h-2v2h2V4zM21,7h-2v2h2V7zM22,4h-2v2h2V4zM14,12h2v-2h-2V12zM11,12h2v-2h-2V12zM19,10h-2v2h2V10zM22,10h-2v2h2V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tune.xml b/compose/material/material/icons/generator/raw-icons/sharp/tune.xml
deleted file mode 100644
index e8d34f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tune.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17v2h6v-2L3,17zM3,5v2h10L13,5L3,5zM13,21v-2h8v-2h-8v-2h-2v6h2zM7,9v2L3,11v2h4v2h2L9,9L7,9zM21,13v-2L11,11v2h10zM15,9h2L17,7h4L21,5h-4L17,3h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tungsten.xml b/compose/material/material/icons/generator/raw-icons/sharp/tungsten.xml
deleted file mode 100644
index 54ae6a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tungsten.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.894,17.801l1.407,-1.407l2.121,2.121l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.584,18.509l2.121,-2.121l1.407,1.407l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.02V3H9v5.02C7.79,8.94 7,10.37 7,12c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,10.37 16.21,8.94 15,8.02zM11,5h2v2.1C12.68,7.04 12.34,7 12,7s-0.68,0.04 -1,0.1V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turn_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/turn_left.xml
deleted file mode 100644
index ad27c3c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,11l1.58,1.59l-1.41,1.41l-4,-4l4,-4l1.41,1.41l-1.58,1.59l10.17,0l0,11l-2,0l0,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turn_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/turn_right.xml
deleted file mode 100644
index f8b6f18..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.17,11l-1.58,1.59l1.41,1.41l4,-4l-4,-4l-1.41,1.41l1.58,1.59l-10.17,0l0,11l2,0l0,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turn_sharp_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/turn_sharp_left.xml
deleted file mode 100644
index 03ec914..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turn_sharp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.83l-1.59,1.58l-1.41,-1.41l4,-4l4,4l-1.41,1.41l-1.59,-1.58l0,6.17l10,0l0,8l-2,0l0,-6l-10,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turn_sharp_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/turn_sharp_right.xml
deleted file mode 100644
index 9189ea5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turn_sharp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.83l1.59,1.58l1.41,-1.41l-4,-4l-4,4l1.41,1.41l1.59,-1.58l0,6.17l-10,0l0,8l2,0l0,-6l10,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turn_slight_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/turn_slight_left.xml
deleted file mode 100644
index b734b8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turn_slight_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.66,6l0,-2l-5.66,0l0,5.66l2,0l0,-2.25l5,5l0,7.59l2,0l0,-8.41l-5.59,-5.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turn_slight_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/turn_slight_right.xml
deleted file mode 100644
index 6c6fd603..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turn_slight_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,6l0,-2l5.66,0l0,5.66l-2,0l0,-2.25l-5,5l0,7.59l-2,0l0,-8.41l5.59,-5.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turned_in.xml b/compose/material/material/icons/generator/raw-icons/sharp/turned_in.xml
deleted file mode 100644
index 5df9e9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turned_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5v18l7,-3 7,3V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/turned_in_not.xml b/compose/material/material/icons/generator/raw-icons/sharp/turned_in_not.xml
deleted file mode 100644
index 587043c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/turned_in_not.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5.01,3L5,21l7,-3 7,3L19,3zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tv.xml b/compose/material/material/icons/generator/raw-icons/sharp/tv.xml
deleted file mode 100644
index f49552d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v16h7v2h8v-2h6.99L23,3zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/tv_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/tv_off.xml
deleted file mode 100644
index 6d985d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/tv_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7v10.88l2,2V5h-9.58l3.29,-3.3L16,1l-4,4 -4,-4 -0.7,0.7L10.58,5H8.12l2,2zM2.41,2.13l-0.14,0.14L1,3.54l1.53,1.53H1V21h17.46l1.99,1.99 1.26,-1.26 0.15,-0.15L2.41,2.13zM3,19V7h1.46l12,12H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/two_wheeler.xml b/compose/material/material/icons/generator/raw-icons/sharp/two_wheeler.xml
deleted file mode 100644
index e6737f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/two_wheeler.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.17,11L4.17,11C4.12,11 4.06,11 4,11H4.17M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4l2,2h3l3.49,-6.1l1.01,1.01C16.59,12.64 16,13.75 16,15c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.18,0 -0.36,0.03 -0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5zM20,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C22,16.1 21.1,17 20,17L20,17zM4,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C6,16.1 5.1,17 4,17L4,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/type_specimen.xml b/compose/material/material/icons/generator/raw-icons/sharp/type_specimen.xml
deleted file mode 100644
index 7f4f858..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/type_specimen.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6l-2,0l0,16l16,0l0,-2l-14,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H6v16h16V2zM16.63,14.5l-0.8,-2.3h-3.63l-0.82,2.3H9.81l3.38,-9h1.61l3.38,9H16.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.96,7.17l-1.31,3.72l2.69,0l-1.3,-3.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/u_turn_left.xml b/compose/material/material/icons/generator/raw-icons/sharp/u_turn_left.xml
deleted file mode 100644
index abec9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/u_turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9v12h-2V9c0,-2.21 -1.79,-4 -4,-4S8,6.79 8,9v4.17l1.59,-1.59L11,13l-4,4l-4,-4l1.41,-1.41L6,13.17V9c0,-3.31 2.69,-6 6,-6S18,5.69 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/u_turn_right.xml b/compose/material/material/icons/generator/raw-icons/sharp/u_turn_right.xml
deleted file mode 100644
index a6ee472..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/u_turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9v12h2V9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v4.17l-1.59,-1.59L13,13l4,4l4,-4l-1.41,-1.41L18,13.17V9c0,-3.31 -2.69,-6 -6,-6S6,5.69 6,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/umbrella.xml b/compose/material/material/icons/generator/raw-icons/sharp/umbrella.xml
deleted file mode 100644
index 833eb5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/umbrella.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,6.92L13,5.77V3.88V3.4c0,-0.26 0.22,-0.48 0.5,-0.48c0.28,0 0.5,0.21 0.5,0.48V4h2V3.4C16,2.07 14.88,1 13.5,1C12.12,1 11,2.07 11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77 11.6,22 12,22s0.8,-0.23 0.95,-0.69L18,6.07L14.5,6.92zM13.28,8.5l0.76,0.58l0.92,-0.23L13,14.8V8.29L13.28,8.5zM9.96,9.09l0.76,-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/unarchive.xml b/compose/material/material/icons/generator/raw-icons/sharp/unarchive.xml
deleted file mode 100644
index 1947fcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/unarchive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.71,3H5.29L3,5.79V21h18V5.79L18.71,3zM14,15v2h-4v-2H6.5L12,9.5l5.5,5.5H14zM5.12,5l0.81,-1h12l0.94,1H5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/undo.xml b/compose/material/material/icons/generator/raw-icons/sharp/undo.xml
deleted file mode 100644
index 4ce4108..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/undo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8c-2.65,0 -5.05,0.99 -6.9,2.6L2,7v9h9l-3.62,-3.62c1.39,-1.16 3.16,-1.88 5.12,-1.88 3.54,0 6.55,2.31 7.6,5.5l2.37,-0.78C21.08,11.03 17.15,8 12.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/unfold_less.xml b/compose/material/material/icons/generator/raw-icons/sharp/unfold_less.xml
deleted file mode 100644
index c6e7907..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/unfold_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,18.59L8.83,20 12,16.83 15.17,20l1.41,-1.41L12,14l-4.59,4.59zM16.59,5.41L15.17,4 12,7.17 8.83,4 7.41,5.41 12,10l4.59,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/unfold_less_double.xml b/compose/material/material/icons/generator/raw-icons/sharp/unfold_less_double.xml
deleted file mode 100644
index 92f9c80..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/unfold_less_double.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,1.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,6.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,17.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,22.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/unfold_more.xml b/compose/material/material/icons/generator/raw-icons/sharp/unfold_more.xml
deleted file mode 100644
index c115159..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/unfold_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.83L15.17,9l1.41,-1.41L12,3 7.41,7.59 8.83,9 12,5.83zM12,18.17L8.83,15l-1.41,1.41L12,21l4.59,-4.59L15.17,15 12,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/unfold_more_double.xml b/compose/material/material/icons/generator/raw-icons/sharp/unfold_more_double.xml
deleted file mode 100644
index 4d100fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/unfold_more_double.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.83L15.17,11l1.41,-1.41L12,5L7.41,9.59L8.83,11L12,7.83zM12,2.83L15.17,6l1.41,-1.41L12,0L7.41,4.59L8.83,6L12,2.83zM12,21.17L8.83,18l-1.41,1.41L12,24l4.59,-4.59L15.17,18L12,21.17zM12,16.17L8.83,13l-1.41,1.41L12,19l4.59,-4.59L15.17,13L12,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/unpublished.xml b/compose/material/material/icons/generator/raw-icons/sharp/unpublished.xml
deleted file mode 100644
index 1b8c174..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/unpublished.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27L21.19,21.19zM10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l0.18,-0.18l1.41,1.41L10.59,16.6zM13.59,10.76l-7.1,-7.1C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-5.34,-5.34l2.65,-2.65l-1.41,-1.41L13.59,10.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/unsubscribe.xml b/compose/material/material/icons/generator/raw-icons/sharp/unsubscribe.xml
deleted file mode 100644
index a028be3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/unsubscribe.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5 3.5,-1.57 3.5,-3.5 -1.57,-3.5 -3.5,-3.5zM20.5,17h-4v-1h4v1zM13.55,17c-0.02,-0.17 -0.05,-0.33 -0.05,-0.5 0,-2.76 2.24,-5 5,-5 0.92,0 1.75,0.26 2.49,0.69L20.99,3L3,3v14h10.55zM12,10.5L5,7L5,5l7,3.5L19,5v2l-7,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/upcoming.xml b/compose/material/material/icons/generator/raw-icons/sharp/upcoming.xml
deleted file mode 100644
index c6a79ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/upcoming.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.16,7.26l-1.41,-1.41L16.19,9.4l1.41,1.41C17.6,10.81 21.05,7.29 21.16,7.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,10.81L7.81,9.4L4.26,5.84L2.84,7.26C2.95,7.29 6.4,10.81 6.4,10.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12h-7c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3H2v9h20V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/update.xml b/compose/material/material/icons/generator/raw-icons/sharp/update.xml
deleted file mode 100644
index 40f997b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v5l4.25,2.52l0.77,-1.28l-3.52,-2.09V8H11zM21,10V3l-2.64,2.64C16.74,4.01 14.49,3 12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9h-2c0,3.86 -3.14,7 -7,7s-7,-3.14 -7,-7s3.14,-7 7,-7c1.93,0 3.68,0.79 4.95,2.05L14,10H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/update_disabled.xml b/compose/material/material/icons/generator/raw-icons/sharp/update_disabled.xml
deleted file mode 100644
index cf0830d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/update_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.67,5.84L7.22,4.39C8.6,3.51 10.24,3 12,3c2.74,0 5.19,1.23 6.84,3.16L21,4v6h-6l2.41,-2.41C16.12,6.02 14.18,5 12,5C10.8,5 9.66,5.31 8.67,5.84zM13,7h-2v1.17l2,2V7zM19.78,22.61l-3,-3C15.39,20.48 13.76,21 12,21c-4.97,0 -9,-4.03 -9,-9c0,-1.76 0.51,-3.4 1.39,-4.78L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM15.32,18.15L5.84,8.67C5.31,9.66 5,10.8 5,12c0,3.86 3.14,7 7,7C13.2,19 14.34,18.69 15.32,18.15zM20.94,13h-2.02c-0.12,0.83 -0.39,1.61 -0.77,2.32l1.47,1.47C20.32,15.67 20.79,14.38 20.94,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/upgrade.xml b/compose/material/material/icons/generator/raw-icons/sharp/upgrade.xml
deleted file mode 100644
index d242dbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/upgrade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18v2H8v-2H16zM11,7.99V16h2V7.99h3L12,4L8,7.99H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/upload.xml b/compose/material/material/icons/generator/raw-icons/sharp/upload.xml
deleted file mode 100644
index ac67a90..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/upload.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6v-6h4l-7,-7 -7,7h4v6zM5,18h14v2L5,20v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/upload_file.xml b/compose/material/material/icons/generator/raw-icons/sharp/upload_file.xml
deleted file mode 100644
index 60e1b62..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/upload_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM13,15v4h-2v-4H8l4.01,-4L16,15H13zM13,9V3.5L18.5,9H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/usb.xml b/compose/material/material/icons/generator/raw-icons/sharp/usb.xml
deleted file mode 100644
index d2c64da..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/usb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7v4h1v2h-3V5h2l-3,-4 -3,4h2v8H8v-2.07c0.7,-0.37 1.2,-1.08 1.2,-1.93 0,-1.21 -0.99,-2.2 -2.2,-2.2S4.8,7.79 4.8,9c0,0.85 0.5,1.56 1.2,1.93V13c0,1.11 0.89,2 2,2h3v3.05c-0.71,0.37 -1.2,1.1 -1.2,1.95 0,1.22 0.99,2.2 2.2,2.2s2.2,-0.98 2.2,-2.2c0,-0.85 -0.49,-1.58 -1.2,-1.95V15h3c1.11,0 2,-0.89 2,-2v-2h1V7h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/usb_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/usb_off.xml
deleted file mode 100644
index 97c22fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/usb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8h4v4h-1v2c0,0.34 -0.08,0.66 -0.23,0.94L16,13.17V12h-1V8zM11,8.17l2,2V6h2l-3,-4L9,6h2V8.17zM13,16v2.28c0.6,0.34 1,0.98 1,1.72c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.74 0.4,-1.37 1,-1.72V16H8c-1.11,0 -2,-0.89 -2,-2v-2.28C5.4,11.38 5,10.74 5,10c0,-0.59 0.26,-1.13 0.68,-1.49L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L13.17,16H13zM11,14v-0.17l-2.51,-2.51c-0.14,0.16 -0.31,0.29 -0.49,0.4V14H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vaccines.xml b/compose/material/material/icons/generator/raw-icons/sharp/vaccines.xml
deleted file mode 100644
index caa2e8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vaccines.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5H8V4h1.5V2h-5v2H6v1.5H2v2c0,0 0.45,0 1,0V17h3v4l2,1.5V17h3V7.5c0.55,0 1,0 1,0V5.5zM9,9H6.5v1.5H9V12H6.5v1.5H9L9,15H5V7.5h4V9zM19.5,10.5V10h1V8h-7l-0.01,2h1.01v0.5c0,0.5 -1.5,1.16 -1.5,3V22h8v-8.5C21,11.66 19.5,11 19.5,10.5zM16.5,10.5V10h1v0.5c0,1.6 1.5,2 1.5,3V14h-4c0,-0.21 0,-0.39 0,-0.5C15,12.5 16.5,12.1 16.5,10.5zM15,20c0,0 0,-0.63 0,-1.5h4V20H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vape_free.xml b/compose/material/material/icons/generator/raw-icons/sharp/vape_free.xml
deleted file mode 100644
index c5c55f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vape_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM16.17,19H8v-3h5.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L16.17,19zM18.83,16H22v3h-0.17L18.83,16zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM11.15,8.32c0,-0.01 0,-0.01 0,-0.02c0,-1.85 1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53c1.87,0 3.47,1.35 3.47,3.16V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-0.01,0 -0.01,0 -0.02,0L11.15,8.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vaping_rooms.xml b/compose/material/material/icons/generator/raw-icons/sharp/vaping_rooms.xml
deleted file mode 100644
index ccb0c28..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vaping_rooms.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM22,16v3H8v-3H22zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM19.5,13.36V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-1.85,0 -3.35,-1.5 -3.35,-3.35s1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53C17.9,10.2 19.5,11.55 19.5,13.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/verified.xml b/compose/material/material/icons/generator/raw-icons/sharp/verified.xml
deleted file mode 100644
index bbb4826..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/verified.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-2.44,-2.79l0.34,-3.69l-3.61,-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7l3.61,0.82L8.6,22.5l3.4,-1.47l3.4,1.46l1.89,-3.19l3.61,-0.82l-0.34,-3.69L23,12zM10.09,16.72l-3.8,-3.81l1.48,-1.48l2.32,2.33l5.85,-5.87l1.48,1.48L10.09,16.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/verified_user.xml b/compose/material/material/icons/generator/raw-icons/sharp/verified_user.xml
deleted file mode 100644
index 1ef5c8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/verified_user.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM10,17l-4,-4 1.41,-1.41L10,14.17l6.59,-6.59L18,9l-8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_bottom.xml b/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_bottom.xml
deleted file mode 100644
index bbfb8a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h-3V3h-2v10H8l4,4 4,-4zM4,19v2h16v-2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_center.xml b/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_center.xml
deleted file mode 100644
index f79d0fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19h3v4h2v-4h3l-4,-4 -4,4zM16,5h-3L13,1h-2v4L8,5l4,4 4,-4zM4,11v2h16v-2L4,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_top.xml b/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_top.xml
deleted file mode 100644
index 2d88991..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vertical_align_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h3v10h2V11h3l-4,-4 -4,4zM4,3v2h16V3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vertical_distribute.xml b/compose/material/material/icons/generator/raw-icons/sharp/vertical_distribute.xml
deleted file mode 100644
index 13712fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vertical_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,10.5v3h10v-3H7zM2,20v2h20v-2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vertical_shades.xml b/compose/material/material/icons/generator/raw-icons/sharp/vertical_shades.xml
deleted file mode 100644
index 7ca35dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vertical_shades.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM10,19V5h4v14H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vertical_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/sharp/vertical_shades_closed.xml
deleted file mode 100644
index bfc3c8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vertical_shades_closed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM13,5h1.5v14H13V5zM11,19H9.5V5H11V19zM6,5h1.5v14H6V5zM16.5,19V5H18v14H16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vertical_split.xml b/compose/material/material/icons/generator/raw-icons/sharp/vertical_split.xml
deleted file mode 100644
index d0ec246..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vertical_split.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h8v-2L3,13v2zM3,19h8v-2L3,17v2zM3,11h8L11,9L3,9v2zM3,5v2h8L11,5L3,5zM13,5h8v14h-8L13,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vibration.xml b/compose/material/material/icons/generator/raw-icons/sharp/vibration.xml
deleted file mode 100644
index e594887..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vibration.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0,15h2L2,9L0,9v6zM3,17h2L5,7L3,7v10zM22,9v6h2L24,9h-2zM19,17h2L21,7h-2v10zM18,3L6,3v18h12L18,3zM16,19L8,19L8,5h8v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_call.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_call.xml
deleted file mode 100644
index b759701..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_call.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V6H3v12h14v-4.5l4,4v-11l-4,4zM14,13h-3v3H9v-3H6v-2h3V8h2v3h3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_camera_back.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_camera_back.xml
deleted file mode 100644
index b1ab30c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_camera_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V4H2v16h16v-6.48l4,3.98v-11L18,10.48zM5,16l2.38,-3.17L9,15l2.62,-3.5L15,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_camera_front.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_camera_front.xml
deleted file mode 100644
index bedcae9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_camera_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V4H2v16h16v-6.48l4,3.98v-11L18,10.48zM10,8c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S8.9,8 10,8zM14,16H6v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C8.07,13.21 9.01,13 10,13c0.99,0 1.93,0.21 2.78,0.58C13.52,13.9 14,14.62 14,15.43V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_chat.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_chat.xml
deleted file mode 100644
index c50f426..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_chat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v20l4,-4h16V2H2zM17,13l-2,-1.99V14H7V6h8v2.99L17,7V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_file.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_file.xml
deleted file mode 100644
index 115497a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4v20h16V8L14,2zM13,9V3.5L18.5,9H13zM14,14l2,-1.06v4.12L14,16v2H8v-6h6V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_label.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_label.xml
deleted file mode 100644
index 13c3cd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_label.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3L1,3v18h22L23,3zM21,16L3,16L3,5h18v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_library.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_library.xml
deleted file mode 100644
index 33a2d39..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_library.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v16h16v-2L4,20L4,6zM22,2L6,2v16h16L22,2zM12,14.5v-9l6,4.5 -6,4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_settings.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_settings.xml
deleted file mode 100644
index 67e7d28e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_settings.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6l18,0l0,5l2,0l0,-7l-22,0l0,16l11,0l0,-2l-9,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12l-6,-4l0,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.72,17.57l1.23,-0.98l-1.25,-2.17L21.23,15c-0.23,-0.17 -0.48,-0.31 -0.75,-0.42L20.25,13h-2.5l-0.24,1.58c-0.26,0.11 -0.51,0.26 -0.74,0.42l-1.48,-0.58l-1.25,2.17l1.24,0.99c-0.03,0.29 -0.04,0.58 -0.01,0.86l-1.23,0.98l1.25,2.17L16.77,21c0.23,0.17 0.48,0.31 0.75,0.42L17.75,23h2.5l0.24,-1.58c0.26,-0.11 0.51,-0.26 0.74,-0.42l1.48,0.58l1.25,-2.17l-1.24,-0.99C22.75,18.14 22.75,17.85 22.72,17.57zM19,19.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S19.83,19.5 19,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/video_stable.xml b/compose/material/material/icons/generator/raw-icons/sharp/video_stable.xml
deleted file mode 100644
index 5da0598..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/video_stable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM4,18V6h2.95l-2.33,8.73L16.82,18H4zM20,18h-2.95l2.34,-8.73L7.18,6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/videocam.xml b/compose/material/material/icons/generator/raw-icons/sharp/videocam.xml
deleted file mode 100644
index 85e259b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/videocam.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.5V6H3v12h14v-4.5l4,4v-11l-4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/videocam_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/videocam_off.xml
deleted file mode 100644
index 87fa92e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/videocam_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16.61V6.5l-4,4V6h-6.61zM3.41,1.86L2,3.27 4.73,6H3v12h13.73l3,3 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/videogame_asset.xml b/compose/material/material/icons/generator/raw-icons/sharp/videogame_asset.xml
deleted file mode 100644
index f33027c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/videogame_asset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,6L1,6v12h22L23,6zM11,13L8,13v3L6,16v-3L3,13v-2h3L6,8h2v3h3v2zM15.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S18.67,9 19.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/videogame_asset_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/videogame_asset_off.xml
deleted file mode 100644
index ac787fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/videogame_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.83,18H22V6H8.83L20.83,18zM17.5,9c0.83,0 1.5,0.67 1.5,1.5S18.33,12 17.5,12S16,11.33 16,10.5S16.67,9 17.5,9zM21.19,21.19L2.81,2.81L1.39,4.22L3.17,6H2v12h13.17l4.61,4.61L21.19,21.19zM9,13v2H7v-2H5v-2h2V9.83L10.17,13H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_agenda.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_agenda.xml
deleted file mode 100644
index 86e4ae3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_agenda.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h18v8h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v8h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_array.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_array.xml
deleted file mode 100644
index 0fa8195..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_array.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5h-3v14h3V5zM17,5H7v14h10V5zM6,5H3v14h3V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_carousel.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_carousel.xml
deleted file mode 100644
index 838b749..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_carousel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h4v10H2V7zM7,19h10V5H7V19zM18,7h4v10h-4V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_column.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_column.xml
deleted file mode 100644
index 49d8ddc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_column.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.67,5v14H9.33V5H14.67zM15.67,19H21V5h-5.33V19zM8.33,19V5H3v14H8.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_comfy.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_comfy.xml
deleted file mode 100644
index 7cf71d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_comfy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v7h20V4H2zM10,20h12v-7H10V20zM2,20h6v-7H2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_comfy_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_comfy_alt.xml
deleted file mode 100644
index c5a390a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_comfy_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM11,17H7v-4h4V17zM11,11H7V7h4V11zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_compact.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_compact.xml
deleted file mode 100644
index f2330a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_compact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h2.5v-2.5H4V18zM4,13.25h2.5v-2.5H4V13.25zM4,8.5h2.5V6H4V8.5zM17.5,6v2.5H20V6H17.5zM13,8.5h2.5V6H13V8.5zM17.5,18H20v-2.5h-2.5V18zM17.5,13.25H20v-2.5h-2.5V13.25zM8.5,18H11v-2.5H8.5V18zM13,18h2.5v-2.5H13V18zM8.5,8.5H11V6H8.5V8.5zM13,13.25h2.5v-2.5H13V13.25zM8.5,13.25H11v-2.5H8.5V13.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_compact_alt.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_compact_alt.xml
deleted file mode 100644
index 4836578..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_compact_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM11.5,16.5h-4v-4h4V16.5zM11.5,11.5h-4v-4h4V11.5zM16.5,16.5h-4v-4h4V16.5zM16.5,11.5h-4v-4h4V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_cozy.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_cozy.xml
deleted file mode 100644
index 30a17ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_cozy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM11.25,16.75h-4v-4h4V16.75zM11.25,11.25h-4v-4h4V11.25zM16.75,16.75h-4v-4h4V16.75zM16.75,11.25h-4v-4h4V11.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_day.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_day.xml
deleted file mode 100644
index 4a2dbd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_day.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,21h19v-3H2v3zM21,8H2v8h19V8zM2,3v3h19V3H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_headline.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_headline.xml
deleted file mode 100644
index f9d849b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_headline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h16v-2L4,13v2zM4,19h16v-2L4,17v2zM4,11h16L20,9L4,9v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_in_ar.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_in_ar.xml
deleted file mode 100644
index 4ecafd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_in_ar.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1l0,2l3,0l0,3l2,0l0,-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,21l-3,0l0,2l5,0l0,-5l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3l3,0l0,-2l-5,0l0,5l2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18l-2,0l0,5l5,0l0,-2l-3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7.97l-7,-4.03L5,7.97v8.06l7,4.03l7,-4.03V7.97zM11,17.17l-4,-2.3v-4.63l4,2.33V17.17zM12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84zM17,14.87l-4,2.3v-4.6l4,-2.33V14.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_kanban.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_kanban.xml
deleted file mode 100644
index 5f93e1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_kanban.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM9,17H7V7h2V17zM13,12h-2V7h2V12zM17,15h-2V7h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_list.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_list.xml
deleted file mode 100644
index 4510516..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h4v-4H3V14zM3,19h4v-4H3V19zM3,9h4V5H3V9zM8,14h13v-4H8V14zM8,19h13v-4H8V19zM8,5v4h13V5H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_module.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_module.xml
deleted file mode 100644
index 56ca7a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_module.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.67,5v6.5H9.33V5H14.67zM15.67,11.5H21V5h-5.33V11.5zM14.67,19v-6.5H9.33V19H14.67zM15.67,12.5V19H21v-6.5H15.67zM8.33,12.5H3V19h5.33V12.5zM8.33,11.5V5H3v6.5H8.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_quilt.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_quilt.xml
deleted file mode 100644
index bf98fe5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_quilt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5v6.5H9.33V5H21zM14.67,19v-6.5H9.33V19H14.67zM15.67,12.5V19H21v-6.5H15.67zM8.33,19V5H3v14H8.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_sidebar.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_sidebar.xml
deleted file mode 100644
index 9263a5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_sidebar.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20H2V4h14V20zM18,8h4V4h-4V8zM18,20h4v-4h-4V20zM18,14h4v-4h-4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_stream.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_stream.xml
deleted file mode 100644
index 15d249d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_stream.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19v-6h18v6H3zM3,5v6h18V5H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_timeline.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_timeline.xml
deleted file mode 100644
index 190d385..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3v18h18V3zM12,17H6v-2h6V17zM15,13H9v-2h6V13zM18,9h-6V7h6V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/view_week.xml b/compose/material/material/icons/generator/raw-icons/sharp/view_week.xml
deleted file mode 100644
index fb6e2e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/view_week.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.33,20H2V4h5.33V20zM22,20V4h-5.33v16H22zM14.67,20V4H9.33v16H14.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vignette.xml b/compose/material/material/icons/generator/raw-icons/sharp/vignette.xml
deleted file mode 100644
index 552386f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vignette.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,3H1v18h22V3zM12,18c-4.42,0 -8,-2.69 -8,-6s3.58,-6 8,-6 8,2.69 8,6 -3.58,6 -8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/villa.xml b/compose/material/material/icons/generator/raw-icons/sharp/villa.xml
deleted file mode 100644
index 8d6cdc3c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/villa.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21H3V8l13,-5v7H7V21zM19,10c-1.1,0 -2,0.9 -2,2H9v9h5v-5h2v5h5v-9C21,10.9 20.1,10 19,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/visibility.xml b/compose/material/material/icons/generator/raw-icons/sharp/visibility.xml
deleted file mode 100644
index 13d5808..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/visibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7,4 2.73,7.11 1,11.5 2.73,15.89 7,19 12,19s9.27,-3.11 11,-7.5C21.27,7.11 17,4 12,4zM12,16.5c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,8.5c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/visibility_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/visibility_off.xml
deleted file mode 100644
index 653bbe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/visibility_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c2.76,0 5,2.24 5,5 0,0.51 -0.1,1 -0.24,1.46l3.06,3.06c1.39,-1.23 2.49,-2.77 3.18,-4.53C21.27,7.11 17,4 12,4c-1.27,0 -2.49,0.2 -3.64,0.57l2.17,2.17c0.47,-0.14 0.96,-0.24 1.47,-0.24zM3.42,2.45L2.01,3.87l2.68,2.68C3.06,7.83 1.77,9.53 1,11.5 2.73,15.89 7,19 12,19c1.52,0 2.97,-0.3 4.31,-0.82l3.43,3.43 1.41,-1.41L3.42,2.45zM12,16.5c-2.76,0 -5,-2.24 -5,-5 0,-0.77 0.18,-1.5 0.49,-2.14l1.57,1.57c-0.03,0.18 -0.06,0.37 -0.06,0.57 0,1.66 1.34,3 3,3 0.2,0 0.38,-0.03 0.57,-0.07L14.14,16c-0.65,0.32 -1.37,0.5 -2.14,0.5zM14.97,11.17c-0.15,-1.4 -1.25,-2.49 -2.64,-2.64l2.64,2.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/voice_chat.xml b/compose/material/material/icons/generator/raw-icons/sharp/voice_chat.xml
deleted file mode 100644
index 72d601c99..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/voice_chat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2L2.01,2L2,22l4,-4h16L22,2zM18,14l-4,-3.2L14,14L6,14L6,6h8v3.2L18,6v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/voice_over_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/voice_over_off.xml
deleted file mode 100644
index 3259f4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/voice_over_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.76,5.36l-1.68,1.69c0.8,1.13 0.83,2.58 0.09,3.74l1.7,1.7c1.9,-2.02 1.87,-4.98 -0.11,-7.13zM20.07,2l-1.63,1.63c2.72,2.97 2.76,7.39 0.14,10.56l1.64,1.64c3.74,-3.89 3.71,-9.84 -0.15,-13.83zM9.43,5.04l3.53,3.53c-0.2,-1.86 -1.67,-3.33 -3.53,-3.53zM4.41,2.86L3,4.27l2.62,2.62C5.23,7.5 5,8.22 5,9c0,2.21 1.79,4 4,4 0.78,0 1.5,-0.23 2.11,-0.62l4.4,4.4C13.74,15.6 10.78,15 9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-0.37 -0.11,-0.7 -0.29,-1.02L19.73,21l1.41,-1.41L4.41,2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/voicemail.xml b/compose/material/material/icons/generator/raw-icons/sharp/voicemail.xml
deleted file mode 100644
index 4947802..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/voicemail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,6C15.46,6 13,8.46 13,11.5c0,1.33 0.47,2.55 1.26,3.5L9.74,15c0.79,-0.95 1.26,-2.17 1.26,-3.5C11,8.46 8.54,6 5.5,6S0,8.46 0,11.5 2.46,17 5.5,17h13c3.04,0 5.5,-2.46 5.5,-5.5S21.54,6 18.5,6zM5.5,15C3.57,15 2,13.43 2,11.5S3.57,8 5.5,8 9,9.57 9,11.5 7.43,15 5.5,15zM18.5,15c-1.93,0 -3.5,-1.57 -3.5,-3.5S16.57,8 18.5,8 22,9.57 22,11.5 20.43,15 18.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/volcano.xml b/compose/material/material/icons/generator/raw-icons/sharp/volcano.xml
deleted file mode 100644
index 1caf98e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/volcano.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8l-7,0l-2,5l-3,0l-4,9l20,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,1h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.121,5.468l2.828,-2.828l1.414,1.414l-2.828,2.828z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.64,4.05l1.414,-1.414l2.828,2.828l-1.414,1.414z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/volume_down.xml b/compose/material/material/icons/generator/raw-icons/sharp/volume_down.xml
deleted file mode 100644
index 94d205b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/volume_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM5,9v6h4l5,5V4L9,9H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/volume_mute.xml b/compose/material/material/icons/generator/raw-icons/sharp/volume_mute.xml
deleted file mode 100644
index affdb9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/volume_mute.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9v6h4l5,5V4l-5,5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/volume_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/volume_off.xml
deleted file mode 100644
index 11cfaeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/volume_off.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.34,2.93L2.93,4.34 7.29,8.7 7,9L3,9v6h4l5,5v-6.59l4.18,4.18c-0.65,0.49 -1.38,0.88 -2.18,1.11v2.06c1.34,-0.3 2.57,-0.92 3.61,-1.75l2.05,2.05 1.41,-1.41L4.34,2.93zM19,12c0,0.82 -0.15,1.61 -0.41,2.34l1.53,1.53c0.56,-1.17 0.88,-2.48 0.88,-3.87 0,-4.28 -2.99,-7.86 -7,-8.77v2.06c2.89,0.86 5,3.54 5,6.71zM12,4l-1.88,1.88L12,7.76zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v1.79l2.48,2.48c0.01,-0.08 0.02,-0.16 0.02,-0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/volume_up.xml b/compose/material/material/icons/generator/raw-icons/sharp/volume_up.xml
deleted file mode 100644
index cc288cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/volume_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9v6h4l5,5L12,4L7,9L3,9zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM14,3.23v2.06c2.89,0.86 5,3.54 5,6.71s-2.11,5.85 -5,6.71v2.06c4.01,-0.91 7,-4.49 7,-8.77s-2.99,-7.86 -7,-8.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/volunteer_activism.xml b/compose/material/material/icons/generator/raw-icons/sharp/volunteer_activism.xml
deleted file mode 100644
index 32a1915c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/volunteer_activism.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3.25C16.65,2.49 17.66,2 18.7,2C20.55,2 22,3.45 22,5.3c0,2.27 -2.91,4.9 -6,7.7c-3.09,-2.81 -6,-5.44 -6,-7.7C10,3.45 11.45,2 13.3,2C14.34,2 15.35,2.49 16,3.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17l-9,0l-2.09,-0.73l0.33,-0.95l1.76,0.68l4,0l0,-2l-8.03,-3l-1.97,0l0,9.02l7,1.98l8,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vpn_key.xml b/compose/material/material/icons/generator/raw-icons/sharp/vpn_key.xml
deleted file mode 100644
index 2316df2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vpn_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.65,10C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H17v4h4v-4h2v-4H12.65zM7,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vpn_key_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/vpn_key_off.xml
deleted file mode 100644
index e4da8e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vpn_key_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.83,18H21v-4h2v-4H12.83L20.83,18zM19.78,22.61l1.41,-1.41L2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.21,0 4.15,-1.2 5.18,-2.99L19.78,22.61zM8.99,11.82C9,11.88 9,11.94 9,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.06,0 0.12,0 0.18,0.01L8.99,11.82z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vpn_lock.xml b/compose/material/material/icons/generator/raw-icons/sharp/vpn_lock.xml
deleted file mode 100644
index a06c94f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vpn_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c0,2.08 -0.8,3.97 -2.1,5.39L16.9,17L14,17v-4L7,13v-2h3L10,8h4L14,3.46c-0.95,-0.3 -1.95,-0.46 -3,-0.46C5.48,3 1,7.48 1,13s4.48,10 10,10 10,-4.48 10,-10c0,-0.34 -0.02,-0.67 -0.05,-1h-2.03c0.04,0.33 0.08,0.66 0.08,1zM10,20.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L8,16v3h2v1.93zM22,4v-0.36c0,-1.31 -0.94,-2.5 -2.24,-2.63C18.26,0.86 17,2.03 17,3.5L17,4h-1v6h7L23,4h-1zM21,4h-3v-0.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5L21,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/vrpano.xml b/compose/material/material/icons/generator/raw-icons/sharp/vrpano.xml
deleted file mode 100644
index e80980b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/vrpano.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5c-5.25,0 -9.01,-1.54 -10,-1.92V20.4c2.16,-0.76 5.21,-1.9 10,-1.9c4.78,0 7.91,1.17 10,1.9V3.6C19.91,4.33 16.77,5.5 12,5.5zM12,15c-2.34,0 -4.52,0.15 -6.52,0.41l3.69,-4.42l2,2.4L14,10l4.51,5.4C16.52,15.15 14.3,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wallet.xml b/compose/material/material/icons/generator/raw-icons/sharp/wallet.xml
deleted file mode 100644
index ec2e875..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wallet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM15.75,14.09L4,11.22V10h16v0.53L15.75,14.09zM4,6h16v2H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wallpaper.xml b/compose/material/material/icons/generator/raw-icons/sharp/wallpaper.xml
deleted file mode 100644
index 6c2b7b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wallpaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h7L11,2L2,2v9h2L4,4zM10,13l-4,5h12l-3,-4 -2.03,2.71L10,13zM17,8.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S14,7.67 14,8.5s0.67,1.5 1.5,1.5S17,9.33 17,8.5zM22,2h-9v2h7v7h2L22,2zM20,20h-7v2h9v-9h-2v7zM4,13L2,13v9h9v-2L4,20v-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/warehouse.xml b/compose/material/material/icons/generator/raw-icons/sharp/warehouse.xml
deleted file mode 100644
index 86387da5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/warehouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,21V7L12,3L2,7v14h5v-9h10v9H22zM11,19H9v2h2V19zM13,16h-2v2h2V16zM15,19h-2v2h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/warning.xml b/compose/material/material/icons/generator/raw-icons/sharp/warning.xml
deleted file mode 100644
index a02bc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/warning_amber.xml b/compose/material/material/icons/generator/raw-icons/sharp/warning_amber.xml
deleted file mode 100644
index e815a74..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/warning_amber.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.99L19.53,19L4.47,19L12,5.99M12,2L1,21h22L12,2zM13,16h-2v2h2v-2zM13,10h-2v4h2v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wash.xml b/compose/material/material/icons/generator/raw-icons/sharp/wash.xml
deleted file mode 100644
index 3539663..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wash.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.12,5L1,12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88,-3.3L9.12,5L9.12,5zM13.5,9C14.33,9 15,8.33 15,7.5C15,6.66 13.5,5 13.5,5S12,6.66 12,7.5C12,8.33 12.67,9 13.5,9zM18.5,1c0,0 -2.5,2.83 -2.5,4.5C16,6.88 17.12,8 18.5,8S21,6.88 21,5.5C21,3.83 18.5,1 18.5,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/watch.xml b/compose/material/material/icons/generator/raw-icons/sharp/watch.xml
deleted file mode 100644
index e242792..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/watch.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-2.54 -1.19,-4.81 -3.04,-6.27L16,0H8l-0.95,5.73C5.19,7.19 4,9.45 4,12s1.19,4.81 3.05,6.27L8,24h8l0.96,-5.73C18.81,16.81 20,14.54 20,12zM6,12c0,-3.31 2.69,-6 6,-6s6,2.69 6,6 -2.69,6 -6,6 -6,-2.69 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/watch_later.xml b/compose/material/material/icons/generator/raw-icons/sharp/watch_later.xml
deleted file mode 100644
index 9dbafa7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/watch_later.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/watch_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/watch_off.xml
deleted file mode 100644
index 51dcb5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/watch_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5c0,0.64 -0.13,1.25 -0.35,1.82l1.5,1.5C18.69,14.33 19,13.2 19,12c0,-2.22 -1.03,-4.19 -2.64,-5.47L15,2H9L8.04,5.21l2.14,2.14C10.75,7.13 11.36,7 12,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67 5,10.8 5,12c0,2.22 1.03,4.19 2.64,5.47L9,22h6l0.96,-3.21l3.82,3.82l1.41,-1.41L2.81,2.81zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-0.64 0.13,-1.25 0.35,-1.82l6.47,6.47C13.25,16.87 12.64,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/water.xml b/compose/material/material/icons/generator/raw-icons/sharp/water.xml
deleted file mode 100644
index c9edfe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/water.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,14H22H21.98zM5.35,13c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,11 3.24,12 2,12v2C3.9,14 4.17,13 5.35,13zM18.67,15c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.19,0 1.42,1 3.33,1c1.94,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1v-2C20.76,16 20.62,15 18.67,15zM5.35,9c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1V8c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C10.04,7 9.9,8 8.66,8C7.47,8 7.24,7 5.33,7C3.38,7 3.24,8 2,8v2C3.9,10 4.17,9 5.35,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/water_damage.xml b/compose/material/material/icons/generator/raw-icons/sharp/water_damage.xml
deleted file mode 100644
index 7cdaae1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/water_damage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,12h3v8h14v-8h3L12,3zM12,16c-1.1,0 -2,-0.9 -2,-2c0,-1.1 2,-4 2,-4s2,2.9 2,4C14,15.1 13.1,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/water_drop.xml b/compose/material/material/icons/generator/raw-icons/sharp/water_drop.xml
deleted file mode 100644
index cccbca8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/water_drop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM13,18.91C12.68,18.97 12.35,19 12,19c-2.69,0 -4.88,-1.94 -5,-5h1.5c0.08,2.07 1.5,3.5 3.5,3.5c0.35,0 0.69,-0.04 1,-0.13V18.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/waterfall_chart.xml b/compose/material/material/icons/generator/raw-icons/sharp/waterfall_chart.xml
deleted file mode 100644
index b2b74f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/waterfall_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h3v16h-3V4zM3,13h3v7H3V13zM14,4h3v3h-3V4zM10,5h3v4h-3V5zM7,10h3v4H7V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/waves.xml b/compose/material/material/icons/generator/raw-icons/sharp/waves.xml
deleted file mode 100644
index 23733dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/waves.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16.99c-1.35,0 -2.2,0.42 -2.95,0.8 -0.65,0.33 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.42 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.42 2.95,-0.8c0.65,-0.33 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM17,12.54c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.32 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM19.95,4.46c-0.75,-0.38 -1.58,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.37 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.93c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,5.04c-0.9,0 -1.4,-0.25 -2.05,-0.58zM17,8.09c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.35 -1.15,0.6 -2.05,0.6s-1.4,-0.25 -2.05,-0.6c-0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.35 -1.15,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.32 1.18,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,9.49c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/waving_hand.xml b/compose/material/material/icons/generator/raw-icons/sharp/waving_hand.xml
deleted file mode 100644
index eec0230..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/waving_hand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,17c0,3.31 -2.69,6 -6,6v-1.5c2.48,0 4.5,-2.02 4.5,-4.5H23zM1,7c0,-3.31 2.69,-6 6,-6v1.5C4.52,2.5 2.5,4.52 2.5,7H1zM8.9,3.43L3.42,8.91c-3.22,3.22 -3.22,8.44 0,11.67s8.44,3.22 11.67,0l7.95,-7.95l-1.77,-1.77l-5.3,5.3l-0.71,-0.71l7.42,-7.42l-1.77,-1.77l-6.72,6.72l-0.71,-0.71l7.78,-7.78L19.5,2.73l-7.78,7.78L11.02,9.8l6.36,-6.36l-1.77,-1.77l-8.51,8.51c1.22,1.57 1.11,3.84 -0.33,5.28l-0.71,-0.71c1.17,-1.17 1.17,-3.08 0,-4.24l-0.35,-0.35l4.95,-4.95L8.9,3.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wb_auto.xml b/compose/material/material/icons/generator/raw-icons/sharp/wb_auto.xml
deleted file mode 100644
index e475f75..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wb_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.85,12.65h2.3L8,9l-1.15,3.65zM22,7l-1.2,6.29L19.3,7h-1.6l-1.49,6.29L15,7h-0.76C12.77,5.17 10.53,4 8,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8c3.13,0 5.84,-1.81 7.15,-4.43l0.1,0.43L17,16l1.5,-6.1L20,16h1.75l2.05,-9L22,7zM10.3,16l-0.7,-2L6.4,14l-0.7,2L3.8,16L7,7h2l3.2,9h-1.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wb_cloudy.xml b/compose/material/material/icons/generator/raw-icons/sharp/wb_cloudy.xml
deleted file mode 100644
index d77abd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wb_cloudy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.37,10.04C18.68,6.59 15.65,4 12.01,4c-2.89,0 -5.4,1.64 -6.65,4.04C2.35,8.36 0.01,10.91 0.01,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.64,-4.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wb_incandescent.xml b/compose/material/material/icons/generator/raw-icons/sharp/wb_incandescent.xml
deleted file mode 100644
index accc7d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wb_incandescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.55,19.09l1.41,1.41 1.79,-1.8 -1.41,-1.41 -1.79,1.8zM11,23h2v-2.95h-2L11,23zM4,11.05L1,11.05v2h3v-2zM15,6.86L15,2.05L9,2.05v4.81C7.21,7.9 6,9.83 6,12.05c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-2.22 -1.21,-4.15 -3,-5.19zM20,11.05v2h3v-2h-3zM17.24,18.71l1.79,1.8 1.41,-1.41 -1.8,-1.79 -1.4,1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wb_iridescent.xml b/compose/material/material/icons/generator/raw-icons/sharp/wb_iridescent.xml
deleted file mode 100644
index 11b4605..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wb_iridescent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14L19,9.05L5,9.05L5,15zM11,1v3h2L13,1h-2zM19.04,3.6l-1.79,1.79 1.41,1.41 1.8,-1.79 -1.42,-1.41zM13,23v-2.95h-2L11,23h2zM20.45,19.09l-1.8,-1.79 -1.41,1.41 1.79,1.8 1.42,-1.42zM3.55,5.01L5.34,6.8l1.41,-1.41L4.96,3.6 3.55,5.01zM4.96,20.5l1.79,-1.8 -1.41,-1.41 -1.79,1.79 1.41,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wb_shade.xml b/compose/material/material/icons/generator/raw-icons/sharp/wb_shade.xml
deleted file mode 100644
index bdf98ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wb_shade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12v2.5l5.5,5.5H22L14,12zM14,20h3l-3,-3V20zM8,4l-6,6h2v10h8V10h2L8,4zM9,14H7v-4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wb_sunny.xml b/compose/material/material/icons/generator/raw-icons/sharp/wb_sunny.xml
deleted file mode 100644
index fc8da89..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wb_sunny.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.76,4.84l-1.8,-1.79 -1.41,1.41 1.79,1.79 1.42,-1.41zM4,10.5L1,10.5v2h3v-2zM13,0.55h-2L11,3.5h2L13,0.55zM20.45,4.46l-1.41,-1.41 -1.79,1.79 1.41,1.41 1.79,-1.79zM17.24,18.16l1.79,1.8 1.41,-1.41 -1.8,-1.79 -1.4,1.4zM20,10.5v2h3v-2h-3zM12,5.5c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM11,22.45h2L13,19.5h-2v2.95zM3.55,18.54l1.41,1.41 1.79,-1.8 -1.41,-1.41 -1.79,1.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wb_twilight.xml b/compose/material/material/icons/generator/raw-icons/sharp/wb_twilight.xml
deleted file mode 100644
index 474dbed..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wb_twilight.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.955,8.662l2.121,-2.122l1.415,1.414l-2.121,2.122z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18h20v2h-20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.543,7.925l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h14c0,-3.87 -3.13,-7 -7,-7S5,12.13 5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wc.xml b/compose/material/material/icons/generator/raw-icons/sharp/wc.xml
deleted file mode 100644
index 7e34b4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,22v-7.5L4,14.5L4,7h7v7.5L9.5,14.5L9.5,22h-4zM18,22v-6h3l-3,-9h-3l-3,9h3v6h3zM7.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2zM16.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/web.xml b/compose/material/material/icons/generator/raw-icons/sharp/web.xml
deleted file mode 100644
index 721681d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/web.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM4,9h10.5v3.5H4V9zM4,14.5h10.5V18L4,18V14.5zM20,18l-3.5,0V9H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/web_asset.xml b/compose/material/material/icons/generator/raw-icons/sharp/web_asset.xml
deleted file mode 100644
index 475a89c..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/web_asset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4v16h18L21,4L3,4zM19,18L5,18L5,8h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/web_asset_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/web_asset_off.xml
deleted file mode 100644
index 05ed9df..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/web_asset_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H22v15.17l-2,-2V8h-9.17L6.83,4zM20.49,23.31L17.17,20H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM15.17,18l-10,-10H4v10H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/web_stories.xml b/compose/material/material/icons/generator/raw-icons/sharp/web_stories.xml
deleted file mode 100644
index 62a83f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/web_stories.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4c1.1,0 2,0 2,0v16c0,0 -0.9,0 -2,0V4zM2,2v20h13V2H2zM21,18c0.83,0 1.5,0 1.5,0V6c0,0 -0.67,0 -1.5,0V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/webhook.xml b/compose/material/material/icons/generator/raw-icons/sharp/webhook.xml
deleted file mode 100644
index 928e143..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/webhook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15l5.88,0c0.27,-0.31 0.67,-0.5 1.12,-0.5c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5c-0.44,0 -0.84,-0.19 -1.12,-0.5l-3.98,0c-0.46,2.28 -2.48,4 -4.9,4c-2.76,0 -5,-2.24 -5,-5c0,-2.42 1.72,-4.44 4,-4.9l0,2.07C4.84,13.58 4,14.7 4,16c0,1.65 1.35,3 3,3s3,-1.35 3,-3V15zM12.5,4c1.65,0 3,1.35 3,3h2c0,-2.76 -2.24,-5 -5,-5l0,0c-2.76,0 -5,2.24 -5,5c0,1.43 0.6,2.71 1.55,3.62l-2.35,3.9C6.02,14.66 5.5,15.27 5.5,16c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5c0,-0.16 -0.02,-0.31 -0.07,-0.45l3.38,-5.63C10.49,9.61 9.5,8.42 9.5,7C9.5,5.35 10.85,4 12.5,4zM17,13c-0.64,0 -1.23,0.2 -1.72,0.54l-3.05,-5.07C11.53,8.35 11,7.74 11,7c0,-0.83 0.67,-1.5 1.5,-1.5S14,6.17 14,7c0,0.15 -0.02,0.29 -0.06,0.43l2.19,3.65C16.41,11.03 16.7,11 17,11l0,0c2.76,0 5,2.24 5,5c0,2.76 -2.24,5 -5,5c-1.85,0 -3.47,-1.01 -4.33,-2.5l2.67,0C15.82,18.82 16.39,19 17,19c1.65,0 3,-1.35 3,-3S18.65,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/weekend.xml b/compose/material/material/icons/generator/raw-icons/sharp/weekend.xml
deleted file mode 100644
index f6b0f97..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/weekend.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9.03V14h12V9.03h2V5H4v4.03zM19,15H5v-4.97H1V19h22v-8.97h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/west.xml b/compose/material/material/icons/generator/raw-icons/sharp/west.xml
deleted file mode 100644
index e383687..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,19l1.41,-1.41L5.83,13H22V11H5.83l4.59,-4.59L9,5l-7,7L9,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/whatsapp.xml b/compose/material/material/icons/generator/raw-icons/sharp/whatsapp.xml
deleted file mode 100644
index 82a2a5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/whatsapp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.05,4.91C17.18,3.03 14.69,2 12.04,2c-5.46,0 -9.91,4.45 -9.91,9.91c0,1.75 0.46,3.45 1.32,4.95L2.05,22l5.25,-1.38c1.45,0.79 3.08,1.21 4.74,1.21h0c0,0 0,0 0,0c5.46,0 9.91,-4.45 9.91,-9.91C21.95,9.27 20.92,6.78 19.05,4.91zM12.04,20.15L12.04,20.15c-1.48,0 -2.93,-0.4 -4.2,-1.15l-0.3,-0.18l-3.12,0.82l0.83,-3.04l-0.2,-0.31c-0.82,-1.31 -1.26,-2.83 -1.26,-4.38c0,-4.54 3.7,-8.24 8.24,-8.24c2.2,0 4.27,0.86 5.82,2.42c1.56,1.56 2.41,3.63 2.41,5.83C20.28,16.46 16.58,20.15 12.04,20.15zM16.56,13.99c-0.25,-0.12 -1.47,-0.72 -1.69,-0.81c-0.23,-0.08 -0.39,-0.12 -0.56,0.12c-0.17,0.25 -0.64,0.81 -0.78,0.97c-0.14,0.17 -0.29,0.19 -0.54,0.06c-0.25,-0.12 -1.05,-0.39 -1.99,-1.23c-0.74,-0.66 -1.23,-1.47 -1.38,-1.72c-0.14,-0.25 -0.02,-0.38 0.11,-0.51c0.11,-0.11 0.25,-0.29 0.37,-0.43c0.12,-0.14 0.17,-0.25 0.25,-0.41c0.08,-0.17 0.04,-0.31 -0.02,-0.43c-0.06,-0.12 -0.56,-1.34 -0.76,-1.84c-0.2,-0.48 -0.41,-0.42 -0.56,-0.43C8.86,7.33 8.7,7.33 8.53,7.33c-0.17,0 -0.43,0.06 -0.66,0.31C7.65,7.89 7.01,8.49 7.01,9.71c0,1.22 0.89,2.4 1.01,2.56c0.12,0.17 1.75,2.67 4.23,3.74c0.59,0.26 1.05,0.41 1.41,0.52c0.59,0.19 1.13,0.16 1.56,0.1c0.48,-0.07 1.47,-0.6 1.67,-1.18c0.21,-0.58 0.21,-1.07 0.14,-1.18S16.81,14.11 16.56,13.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/whatshot.xml b/compose/material/material/icons/generator/raw-icons/sharp/whatshot.xml
deleted file mode 100644
index b70884b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/whatshot.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,0.67s0.74,2.65 0.74,4.8c0,2.06 -1.35,3.73 -3.41,3.73 -2.07,0 -3.63,-1.67 -3.63,-3.73l0.03,-0.36C5.21,7.51 4,10.62 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,8.61 17.41,3.8 13.5,0.67zM11.71,19c-1.78,0 -3.22,-1.4 -3.22,-3.14 0,-1.62 1.05,-2.76 2.81,-3.12 1.77,-0.36 3.6,-1.21 4.62,-2.58 0.39,1.29 0.59,2.65 0.59,4.04 0,2.65 -2.15,4.8 -4.8,4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wheelchair_pickup.xml b/compose/material/material/icons/generator/raw-icons/sharp/wheelchair_pickup.xml
deleted file mode 100644
index de0eceb..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wheelchair_pickup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S4.5,5.11 4.5,4zM10,10.95V7H3v8h2v7h3.5v-0.11c-1.24,-1.26 -2,-2.99 -2,-4.89C6.5,14.42 7.91,12.16 10,10.95zM16.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3c0,-1.11 0.61,-2.06 1.5,-2.58v-2.16C9.98,12.9 8.5,14.77 8.5,17c0,2.76 2.24,5 5,5s5,-2.24 5,-5H16.5zM19.54,14H15V8h-2v8h5.46l2.47,3.71l1.66,-1.11L19.54,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/where_to_vote.xml b/compose/material/material/icons/generator/raw-icons/sharp/where_to_vote.xml
deleted file mode 100644
index 8e8b152..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/where_to_vote.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.14,2 5,5.14 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.86 -3.14,-7 -7,-7zM10.47,14l-3.48,-3.48L8.4,9.1l2.07,2.07 5.13,-5.14 1.41,1.42L10.47,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/widgets.xml b/compose/material/material/icons/generator/raw-icons/sharp/widgets.xml
deleted file mode 100644
index f9fb067..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/widgets.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v8h8v-8h-8zM3,21h8v-8L3,13v8zM3,3v8h8L11,3L3,3zM16.66,1.69L11,7.34 16.66,13l5.66,-5.66 -5.66,-5.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/width_full.xml b/compose/material/material/icons/generator/raw-icons/sharp/width_full.xml
deleted file mode 100644
index 271eb48e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/width_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM4,6h1v12H4V6zM20,18h-1V6h1V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/width_normal.xml b/compose/material/material/icons/generator/raw-icons/sharp/width_normal.xml
deleted file mode 100644
index 8ba036e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/width_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM4,6h4v12H4V6zM20,18h-4V6h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/width_wide.xml b/compose/material/material/icons/generator/raw-icons/sharp/width_wide.xml
deleted file mode 100644
index 79c8db8..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/width_wide.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4H2v16h20V4zM4,6h2v12H4V6zM20,18h-2V6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi.xml
deleted file mode 100644
index b95c22a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9l2,2c4.97,-4.97 13.03,-4.97 18,0l2,-2C16.93,2.93 7.08,2.93 1,9zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0zM5,13l2,2c2.76,-2.76 7.24,-2.76 10,0l2,-2C15.14,9.14 8.87,9.14 5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_1_bar.xml
deleted file mode 100644
index dff42e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.53,17.46L12,21l-3.53,-3.54C9.37,16.56 10.62,16 12,16S14.63,16.56 15.53,17.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_2_bar.xml
deleted file mode 100644
index 7d24069..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c3.03,0 5.78,1.23 7.76,3.22l-2.12,2.12C16.2,13.9 14.2,13 12,13c-2.2,0 -4.2,0.9 -5.64,2.35l-2.12,-2.12C6.22,11.23 8.97,10 12,10zM12,16c-1.38,0 -2.63,0.56 -3.53,1.46L12,21l3.53,-3.54C14.63,16.56 13.38,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_calling.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_calling.xml
deleted file mode 100644
index d82e7f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_calling.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.21,17.37c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.53,-2.53L8.54,3H3.03C2.45,13.18 10.82,21.55 21,20.97v-5.51l-5.27,-0.61L13.21,17.37z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4.95C21.79,4.78 19.67,3 16.5,3c-3.18,0 -5.29,1.78 -5.5,1.95L16.5,12L22,4.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_calling_3.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_calling_3.xml
deleted file mode 100644
index 5a91b20..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_calling_3.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,3c-2.21,0 -4.21,0.9 -5.66,2.34l1.06,1.06c1.18,-1.18 2.8,-1.91 4.59,-1.91s3.42,0.73 4.59,1.91l1.06,-1.06C20.7,3.9 18.7,3 16.49,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.03,7.46C19.12,6.56 17.87,6 16.49,6s-2.63,0.56 -3.54,1.46l1.06,1.06c0.63,-0.63 1.51,-1.03 2.47,-1.03s1.84,0.39 2.47,1.03L20.03,7.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.08,9.59L16.49,11l1.41,-1.41C17.54,9.22 17.04,9 16.49,9S15.44,9.22 15.08,9.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15l-5,-1l-2.9,2.9c-2.5,-1.43 -4.57,-3.5 -6,-6L10,8L9,3L3,3c0,3.28 0.89,6.35 2.43,9c1.58,2.73 3.85,4.99 6.57,6.57c2.65,1.53 5.72,2.43 9,2.43L21,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_channel.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_channel.xml
deleted file mode 100644
index ab4133d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_channel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3c-2.51,0 -3.77,5.61 -4.4,10.57C10.79,10.66 9.61,8 8,8C4.43,8 3,21 3,21h2.01c0.61,-5.27 2,-9.82 2.99,-10.87c0.98,1.05 2.38,5.61 2.99,10.87H13c0.5,-2.53 2,-6 3,-6s2.5,3.53 3,6h2C21,21 20.5,3 16,3zM16,13c-0.99,0 -1.82,0.62 -2.5,1.5c0.57,-4.77 1.54,-8.62 2.5,-9.44c0.97,0.81 1.91,4.67 2.49,9.43C17.81,13.62 16.98,13 16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_find.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_find.xml
deleted file mode 100644
index b7893d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_find.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14c0,-3.36 2.64,-6 6,-6c2.2,0 4.08,1.13 5.13,2.86L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21l1.86,-1.87C12.14,18.09 11,16.2 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14c0,-2.24 -1.76,-4 -4,-4s-4,1.76 -4,4c0,2.24 1.76,4 4,4c0.75,0 1.44,-0.21 2.03,-0.56L21.59,20L23,18.59l-2.56,-2.56C20.79,15.44 21,14.75 21,14zM15,14c0,-1.12 0.88,-2 2,-2s2,0.88 2,2c0,1.12 -0.88,2 -2,2S15,15.12 15,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_lock.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_lock.xml
deleted file mode 100644
index 5013b5f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,15.11c0,-1 -0.68,-1.92 -1.66,-2.08c-0.12,-0.02 -0.24,-0.02 -0.36,-0.02l0,0c0,0 -0.01,0 -0.01,0C18.88,13.03 18,13.91 18,15v1c-0.55,0 -1,0 -1,0v5h6v-5c0,0 -0.45,0 -1,0V15.11zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_off.xml
deleted file mode 100644
index ffc7f05..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l2,-2c-3.73,-3.73 -8.87,-5.15 -13.7,-4.31l2.58,2.58c3.3,-0.02 6.61,1.22 9.12,3.73zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0zM19,13c-1.08,-1.08 -2.36,-1.85 -3.72,-2.33l3.02,3.02 0.7,-0.69zM3.41,1.64L2,3.05 5.05,6.1C3.59,6.83 2.22,7.79 1,9l2,2c1.23,-1.23 2.65,-2.16 4.17,-2.78l2.24,2.24C7.79,10.89 6.27,11.74 5,13l2,2c1.35,-1.35 3.11,-2.04 4.89,-2.06l7.08,7.08 1.41,-1.41L3.41,1.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_password.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_password.xml
deleted file mode 100644
index 19b39b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98l-2.12,2.13C19.35,8.57 15.85,7 12,7s-7.35,1.57 -9.88,4.11L0,8.98C3.07,5.9 7.31,4 12,4S20.93,5.9 24,8.98zM4.24,13.22l2.12,2.12C7.8,13.9 9.8,13 12,13c2.2,0 4.2,0.9 5.64,2.35l2.12,-2.12C17.78,11.23 15.03,10 12,10C8.97,10 6.22,11.23 4.24,13.22zM24,19v5h-6v-5h1v-1c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v1H24zM22,18c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h2V18zM12,16c-1.38,0 -2.63,0.56 -3.53,1.46L12,21l3.53,-3.54C14.63,16.56 13.38,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_protected_setup.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_protected_setup.xml
deleted file mode 100644
index a0ca4576..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_protected_setup.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.71,5.29L19,3h-8v8l2.3,-2.3c1.97,1.46 3.25,3.78 3.25,6.42c0,1.31 -0.32,2.54 -0.88,3.63c2.33,-1.52 3.88,-4.14 3.88,-7.13C19.55,9.1 18.44,6.85 16.71,5.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.46,8.88c0,-1.31 0.32,-2.54 0.88,-3.63C6,6.77 4.46,9.39 4.46,12.38c0,2.52 1.1,4.77 2.84,6.33L5,21h8v-8l-2.3,2.3C8.74,13.84 7.46,11.52 7.46,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering.xml
deleted file mode 100644
index 1e68b1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.48 -0.81,2.75 -2,3.45l1,1.74c1.79,-1.04 3,-2.97 3,-5.19zM12,3C6.48,3 2,7.48 2,13c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,18.53 4,15.96 4,13c0,-4.42 3.58,-8 8,-8s8,3.58 8,8c0,2.96 -1.61,5.53 -4,6.92l1,1.73c2.99,-1.73 5,-4.95 5,-8.65 0,-5.52 -4.48,-10 -10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_error.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_error.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_error_rounded.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_error_rounded.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_error_rounded.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_off.xml
deleted file mode 100644
index 9bfede4..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wifi_tethering_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6 2,10.71 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-1.75 0.57,-3.35 1.51,-4.66l1.43,1.43C6.35,10.7 6,11.81 6,13c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-0.63 0.15,-1.23 0.41,-1.76l1.61,1.61c0,0.05 -0.02,0.1 -0.02,0.15c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15c0.05,0 0.1,-0.01 0.16,-0.02l7.62,7.62l1.41,-1.41L2.81,2.81zM17.7,14.87C17.89,14.28 18,13.65 18,13c0,-3.31 -2.69,-6 -6,-6c-0.65,0 -1.28,0.1 -1.87,0.3l1.71,1.71C11.89,9 11.95,9 12,9c2.21,0 4,1.79 4,4c0,0.05 0,0.11 -0.01,0.16L17.7,14.87zM12,5c4.42,0 8,3.58 8,8c0,1.22 -0.27,2.37 -0.77,3.4l1.49,1.49C21.53,16.45 22,14.78 22,13c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.46 -4.89,1.28l1.48,1.48C9.63,5.27 10.78,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wind_power.xml b/compose/material/material/icons/generator/raw-icons/sharp/wind_power.xml
deleted file mode 100644
index bc5a31f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wind_power.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,7h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.32,12.09l5.42,-9.04L17.32,1L12,5.97v4.74c0.31,-0.13 0.64,-0.21 1,-0.21C14.06,10.5 14.96,11.16 15.32,12.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,13c0,-0.82 0.4,-1.54 1.01,-2H1v4l7,2l3.44,-2.06C10.87,14.48 10.5,13.79 10.5,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.17,23L23,20.17l-3.54,-6.36l-3.98,-1c0,0.06 0.02,0.12 0.02,0.19c0,1.38 -1.12,2.5 -2.5,2.5c-0.36,0 -0.69,-0.08 -1,-0.21V21c-1.1,0 -2,0.9 -2,2h6c0,-1.1 -0.9,-2 -2,-2v-4.17L20.17,23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/window.xml b/compose/material/material/icons/generator/raw-icons/sharp/window.xml
deleted file mode 100644
index 0629dca..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/window.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h8v8h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3h8v8h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h8v8h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h8v8h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wine_bar.xml b/compose/material/material/icons/generator/raw-icons/sharp/wine_bar.xml
deleted file mode 100644
index ab4a87f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wine_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3l0,6c0,2.97 2.16,5.43 5,5.91V19H8v2h8v-2h-3v-4.09c2.84,-0.48 5,-2.94 5,-5.91l0,-6H6zM16,8H8l0,-3h8C16,5 16,8 16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/woman.xml b/compose/material/material/icons/generator/raw-icons/sharp/woman.xml
deleted file mode 100644
index 76e2a4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.41,7l-2.82,0l-3.59,9l3,0l0,6l4,0l0,-6l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/woman_2.xml b/compose/material/material/icons/generator/raw-icons/sharp/woman_2.xml
deleted file mode 100644
index 5e0763d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/woman_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.41,7l-2.82,0l-3.59,9l3.5,0l0,6l3,0l0,-6l3.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/work.xml b/compose/material/material/icons/generator/raw-icons/sharp/work.xml
deleted file mode 100644
index d304d65..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6h-6L16,4c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2L2,6v15h20L22,6zM14,6h-4L10,4h4v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/work_history.xml b/compose/material/material/icons/generator/raw-icons/sharp/work_history.xml
deleted file mode 100644
index cdc9bba..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/work_history.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.66,11.13c2,-0.37 3.88,0.11 5.34,1.13V6h-6V2H8v4H2v15h9.68c-0.63,-1.33 -0.87,-2.88 -0.52,-4.51C11.75,13.79 13.94,11.63 16.66,11.13zM10,4h4v2h-4V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/work_off.xml b/compose/material/material/icons/generator/raw-icons/sharp/work_off.xml
deleted file mode 100644
index e86dd0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/work_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v2h-3.6L22,17.6V6h-6V4c0,-1.1 -0.9,-2 -2,-2h-4c-0.98,0 -1.79,0.71 -1.96,1.64L10,5.6V4zM3.4,1.84L1.99,3.25 4.74,6H2.01L2,21h17.74l2,2 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/work_outline.xml b/compose/material/material/icons/generator/raw-icons/sharp/work_outline.xml
deleted file mode 100644
index 7205b96..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/work_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6L14,4h-4v2h4zM4,8v11h16L20,8L4,8zM22,6v15L2.01,21L2.01,6L8,6L8,4c0,-1.1 0.9,-2 2,-2h4c1.1,0 2,0.9 2,2v2h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/workspace_premium.xml b/compose/material/material/icons/generator/raw-icons/sharp/workspace_premium.xml
deleted file mode 100644
index 41420c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/workspace_premium.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.68,13.69L12,11.93l2.31,1.76l-0.88,-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69zM20,10c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8c0,2.03 0.76,3.87 2,5.28V23l6,-2l6,2v-7.72C19.24,13.87 20,12.03 20,10zM12,4c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/workspaces.xml b/compose/material/material/icons/generator/raw-icons/sharp/workspaces.xml
deleted file mode 100644
index 875a70a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/workspaces.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S8.2,13 6,13zM12,3C9.8,3 8,4.8 8,7s1.8,4 4,4s4,-1.8 4,-4S14.2,3 12,3zM18,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S20.2,13 18,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wrap_text.xml b/compose/material/material/icons/generator/raw-icons/sharp/wrap_text.xml
deleted file mode 100644
index c9de17b..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wrap_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h6v-2L4,17v2zM20,5L4,5v2h16L20,5zM17,11L4,11v2h13.25c1.1,0 2,0.9 2,2s-0.9,2 -2,2L15,17v-2l-3,3 3,3v-2h2c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wrong_location.xml b/compose/material/material/icons/generator/raw-icons/sharp/wrong_location.xml
deleted file mode 100644
index 14b5fe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wrong_location.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10V3.26C13.35,3.09 12.68,3 12,3c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-0.41 -0.04,-0.81 -0.09,-1.2H14zM12,13c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,12.1 13.1,13 12,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.54,2.88l-1.42,-1.42l-2.12,2.13l-2.12,-2.13l-1.42,1.42l2.13,2.12l-2.13,2.12l1.42,1.42l2.12,-2.13l2.12,2.13l1.42,-1.42l-2.13,-2.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/wysiwyg.xml b/compose/material/material/icons/generator/raw-icons/sharp/wysiwyg.xml
deleted file mode 100644
index 68a8292..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/wysiwyg.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12H7v-2h10V12zM13,14H7v2h6V14zM21,21H3V3h18V21zM19,7H5v12h14V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/yard.xml b/compose/material/material/icons/generator/raw-icons/sharp/yard.xml
deleted file mode 100644
index e21431a..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/yard.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2H2v20h20V2zM8,8.22c0,-0.86 0.7,-1.56 1.56,-1.56c0.33,0 0.64,0.1 0.89,0.28l-0.01,-0.12c0,-0.86 0.7,-1.56 1.56,-1.56s1.56,0.7 1.56,1.56l-0.01,0.12c0.26,-0.18 0.56,-0.28 0.89,-0.28c0.86,0 1.56,0.7 1.56,1.56c0,0.62 -0.37,1.16 -0.89,1.4C15.63,9.87 16,10.41 16,11.03c0,0.86 -0.7,1.56 -1.56,1.56c-0.33,0 -0.64,-0.11 -0.89,-0.28l0.01,0.12c0,0.86 -0.7,1.56 -1.56,1.56s-1.56,-0.7 -1.56,-1.56l0.01,-0.12c-0.26,0.18 -0.56,0.28 -0.89,0.28C8.7,12.59 8,11.89 8,11.03c0,-0.62 0.37,-1.16 0.89,-1.4C8.37,9.38 8,8.84 8,8.22zM12,19c-3.31,0 -6,-2.69 -6,-6C9.31,13 12,15.69 12,19c0,-3.31 2.69,-6 6,-6C18,16.31 15.31,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9.62m-1.56,0a1.56,1.56 0,1 1,3.12 0a1.56,1.56 0,1 1,-3.12 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/youtube_searched_for.xml b/compose/material/material/icons/generator/raw-icons/sharp/youtube_searched_for.xml
deleted file mode 100644
index 97115bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/youtube_searched_for.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.01,14h-0.8l-0.27,-0.27c0.98,-1.14 1.57,-2.61 1.57,-4.23 0,-3.59 -2.91,-6.5 -6.5,-6.5s-6.5,3 -6.5,6.5H2l3.84,4 4.16,-4H6.51C6.51,7 8.53,5 11.01,5s4.5,2.01 4.5,4.5c0,2.48 -2.02,4.5 -4.5,4.5 -0.65,0 -1.26,-0.14 -1.82,-0.38L7.71,15.1c0.97,0.57 2.09,0.9 3.3,0.9 1.61,0 3.08,-0.59 4.22,-1.57l0.27,0.27v0.79l5.01,4.99L22,19l-4.99,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/zoom_in.xml b/compose/material/material/icons/generator/raw-icons/sharp/zoom_in.xml
deleted file mode 100644
index 11957f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/zoom_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM10,7L9,7v2L7,9v1h2v2h1v-2h2L12,9h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/zoom_in_map.xml b/compose/material/material/icons/generator/raw-icons/sharp/zoom_in_map.xml
deleted file mode 100644
index 1a244634..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/zoom_in_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9l0,-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9zM21,9V7l-2.59,0l3.09,-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9zM3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0,-6L3,15zM15,15l0,6h2v-2.59l3.09,3.09l1.41,-1.41L18.41,17H21v-2L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/zoom_out.xml b/compose/material/material/icons/generator/raw-icons/sharp/zoom_out.xml
deleted file mode 100644
index 4df840f..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/zoom_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM7,9h5v1L7,10L7,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/sharp/zoom_out_map.xml b/compose/material/material/icons/generator/raw-icons/sharp/zoom_out_map.xml
deleted file mode 100644
index 7df30e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/sharp/zoom_out_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3l2.3,2.3 -2.89,2.87 1.42,1.42L18.7,6.7 21,9L21,3h-6zM3,9l2.3,-2.3 2.87,2.89 1.42,-1.42L6.7,5.3 9,3L3,3v6zM9,21l-2.3,-2.3 2.89,-2.87 -1.42,-1.42L5.3,17.3 3,15v6h6zM21,15l-2.3,2.3 -2.87,-2.89 -1.42,1.42 2.89,2.87L15,21h6v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/10k.xml b/compose/material/material/icons/generator/raw-icons/twotone/10k.xml
deleted file mode 100644
index ef006ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/10k.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10.5h1.5v3h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l0,-6l-2.25,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9h2.5v6H6v-4.5H5V19h14v-4h-1.75l-1.75,-2.25V15H14V9h1.5v2.25L17.25,9H19V5H5V9zM8.5,10c0,-0.55 0.45,-1 1,-1H12c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H9.5c-0.55,0 -1,-0.45 -1,-1V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,9v6v4H5v-8.5h1V15h1.5V9H5V5h14V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11.25l0,-2.25l-1.5,0l0,6l1.5,0l0,-2.25l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,15H12c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H9.5c-0.55,0 -1,0.45 -1,1v4C8.5,14.55 8.95,15 9.5,15zM10,10.5h1.5v3H10V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/10mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/10mp.xml
deleted file mode 100644
index 8cf81f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/10mp.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7h1.5v3h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H13c-0.55,0 -1,-0.45 -1,-1V6.5zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H13c-0.55,0 -1,0.45 -1,1v4C12,11.05 12.45,11.5 13,11.5zM13.5,7H15v3h-1.5V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/11mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/11mp.xml
deleted file mode 100644
index 5831955..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/11mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM13,5.5h3v6h-1.5V7H13V5.5zM8,5.5h3v6H9.5V7H8V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/123.xml b/compose/material/material/icons/generator/raw-icons/twotone/123.xml
deleted file mode 100644
index e64bdfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/123.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15H5.5v-4.5H4V9h3V15zM13.5,13.5h-3v-1h2c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H9v1.5h3v1h-2c-0.55,0 -1,0.45 -1,1V15h4.5V13.5zM19.5,14v-4c0,-0.55 -0.45,-1 -1,-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15 19.5,14.55 19.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/12mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/12mp.xml
deleted file mode 100644
index f64fbc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/12mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5h3.5c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1h-2v1h3v1.5H12V9zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10h-3V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H12V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5h4.5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/13mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/13mp.xml
deleted file mode 100644
index 2a4ab32..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/13mp.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,10h3V9h-2V8h2V7h-3V5.5h3.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H12V10zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5 16.5,11.05 16.5,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5 16.5,11.05 16.5,10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/14mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/14mp.xml
deleted file mode 100644
index 322d23d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/14mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,5.5h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.5l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/15mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/15mp.xml
deleted file mode 100644
index 577c7b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/15mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,10h3V9h-3V5.5h4.5V7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H12V10zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5C16.05,11.5 16.5,11.05 16.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/16mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/16mp.xml
deleted file mode 100644
index 9d67736..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/16mp.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,6.5c0,-0.55 0.45,-1 1,-1h3.5V7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H13c-0.55,0 -1,-0.45 -1,-1V6.5zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.5h2.5c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H13c-0.55,0 -1,0.45 -1,1v4C12,11.05 12.45,11.5 13,11.5zM13.5,9H15v1.5h-1.5V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/17mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/17mp.xml
deleted file mode 100644
index e7dcc39..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/17mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,5.5h3.5c0.67,0 1.15,0.65 0.96,1.29L15,11.5h-1.75L14.62,7H12V5.5zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.25,11.5H15l1.46,-4.71c0.19,-0.64 -0.29,-1.29 -0.96,-1.29H12V7h2.62L13.25,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/18_up_rating.xml b/compose/material/material/icons/generator/raw-icons/twotone/18_up_rating.xml
deleted file mode 100644
index 8ee33c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/18_up_rating.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM11.5,10c0,-0.55 0.45,-1 1,-1H15c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-2.5c-0.55,0 -1,-0.45 -1,-1V10zM7,9h3v6H8.5v-4.5H7V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,15l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,15H15c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1h-2.5c-0.55,0 -1,0.45 -1,1v4C11.5,14.55 11.95,15 12.5,15zM13,10h1.5v1.5H13V10zM13,12.5h1.5V14H13V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/18mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/18mp.xml
deleted file mode 100644
index f2a4420..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/18mp.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,6.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,9h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H13c-0.55,0 -1,-0.45 -1,-1V6.5zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H13c-0.55,0 -1,0.45 -1,1v4C12,11.05 12.45,11.5 13,11.5zM13.5,6.5H15V8h-1.5V6.5zM13.5,9H15v1.5h-1.5V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/19mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/19mp.xml
deleted file mode 100644
index 2e1ee3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/19mp.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM12,10h3V9h-2c-0.55,0 -1,-0.45 -1,-1V6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H12V10zM7,5.5h3v6H8.5V7H7V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,6.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H13c-0.55,0 -1,0.45 -1,1V8c0,0.55 0.45,1 1,1h2v1h-3v1.5h3.5C16.05,11.5 16.5,11.05 16.5,10.5zM15,8h-1.5V6.5H15V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/1k.xml b/compose/material/material/icons/generator/raw-icons/twotone/1k.xml
deleted file mode 100644
index b7486fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/1k.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM12,9h1.5v2.25L15.25,9H17l-2.25,3L17,15h-1.75l-1.75,-2.25V15H12V9zM7,9h3v6H8.5v-4.5H7V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,15l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/1k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/1k_plus.xml
deleted file mode 100644
index 757d635..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/1k_plus.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM10.5,9H12v2.25L13.75,9h1.75l-2.25,3l2.25,3h-1.75L12,12.75V15h-1.5V9zM6,9h3v6H7.5v-4.5H6V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/1x_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/1x_mobiledata.xml
deleted file mode 100644
index 2b10b9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/1x_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h4v10H6V9H4V7zM15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2,-3.34l2,3.34H19L15.83,11.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/20mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/20mp.xml
deleted file mode 100644
index 6f34744..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/20mp.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM13,6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H14c-0.55,0 -1,-0.45 -1,-1V6.5zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h3v1.5H6.5V9zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7h1.5v3h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H14c-0.55,0 -1,0.45 -1,1v4C13,11.05 13.45,11.5 14,11.5zM14.5,7H16v3h-1.5V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/21mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/21mp.xml
deleted file mode 100644
index 2df3367..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/21mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,5.5h3v6h-1.5V7H13V5.5zM13.5,12.5H17c0.55,0 1,0.45 1,1V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5V12.5zM7.5,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5H11c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H9v1h3v1.5H7.5V9zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11.5l1.5,0l0,-6l-3,0l0,1.5l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10H9V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H7.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H12V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5v6H15V17zM15,14h1.5v1.5H15V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/22mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/22mp.xml
deleted file mode 100644
index 39874d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/22mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM13,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5h3.5c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1h-2v1h3v1.5H13V9zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h3v1.5H6.5V9zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10h-3V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H13V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5h4.5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/23mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/23mp.xml
deleted file mode 100644
index dbfbf8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/23mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM13,10h3V9h-2V8h2V7h-3V5.5h3.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H13V10zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h3v1.5H6.5V9zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1H13.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5C17.05,11.5 17.5,11.05 17.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/24mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/24mp.xml
deleted file mode 100644
index bb4b574..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/24mp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17c0.55,0 1,0.45 1,1V16zM13,5.5h1.5v3H16v-3h1.5v3h1V10h-1v1.5H16V10h-3V5.5zM6.5,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5H10c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1H8v1h3v1.5H6.5V9zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12.5h-3.5v6H15V17h2c0.55,0 1,-0.45 1,-1v-2.5C18,12.95 17.55,12.5 17,12.5zM16.5,15.5H15V14h1.5V15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10H8V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H6.5V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5H11V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11.5l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/2k.xml b/compose/material/material/icons/generator/raw-icons/twotone/2k.xml
deleted file mode 100644
index b16b033..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/2k.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75,-2.25V15H13V9zM6.5,12.5c0,-0.55 0.45,-1 1,-1h2v-1h-3V9H10c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H8v1h3V15H6.5V12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13.5H8v-1h2c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H6.5v1.5h3v1h-2c-0.55,0 -1,0.45 -1,1V15H11V13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/2k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/2k_plus.xml
deleted file mode 100644
index 352b921..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/2k_plus.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15h-1.75l-1.75,-2.25V15H11V9zM6,12.5c0,-0.55 0.45,-1 1,-1h1.5v-1H6V9h3c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H7.5v1H10V15H6V12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13.5H7.5v-1H9c0.55,0 1,-0.45 1,-1V10c0,-0.55 -0.45,-1 -1,-1H6v1.5h2.5v1H7c-0.55,0 -1,0.45 -1,1V15h4V13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/2mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/2mp.xml
deleted file mode 100644
index c8e1286..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/2mp.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM10,9c0,-0.55 0.45,-1 1,-1h2V7h-3V5.5h3.5c0.55,0 1,0.45 1,1V8c0,0.55 -0.45,1 -1,1h-2v1h3v1.5H10V9zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10h-3V9h2c0.55,0 1,-0.45 1,-1V6.5c0,-0.55 -0.45,-1 -1,-1H10V7h3v1h-2c-0.55,0 -1,0.45 -1,1v2.5h4.5V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/30fps.xml b/compose/material/material/icons/generator/raw-icons/twotone/30fps.xml
deleted file mode 100644
index b8e01c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/30fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H2zM19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/30fps_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/30fps_select.xml
deleted file mode 100644
index eb660f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/30fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0 2,-0.9 2,-2v-1.5C11,9.67 10.83,9 10,9c0.83,0 1,-0.67 1,-1.5V6c0,-1.1 -0.9,-2 -2,-2H4zM18,4c1.1,0 2,0.9 2,2v6c0,1.1 -0.9,2 -2,2h-3c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2H18zM18,6h-3v6h3V6zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/360.xml b/compose/material/material/icons/generator/raw-icons/twotone/360.xml
deleted file mode 100644
index ffdb7a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/360.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.77V20l4,-4 -4,-4v2.73c-3.15,-0.56 -5,-1.9 -5,-2.73 0,-1.06 3.04,-3 8,-3s8,1.94 8,3c0,0.73 -1.46,1.89 -4,2.53v2.05c3.53,-0.77 6,-2.53 6,-4.58 0,-2.76 -4.48,-5 -10,-5S2,9.24 2,12c0,2.24 2.94,4.13 7,4.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/3d_rotation.xml b/compose/material/material/icons/generator/raw-icons/twotone/3d_rotation.xml
deleted file mode 100644
index 3193e77..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/3d_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.53,21.48C4.26,19.94 1.92,16.76 1.56,13L0.06,13c0.51,6.16 5.66,11 11.95,11l0.66,-0.03 -3.81,-3.81 -1.33,1.32zM8.42,14.96c-0.19,0 -0.37,-0.03 -0.52,-0.08 -0.16,-0.06 -0.29,-0.13 -0.4,-0.24 -0.11,-0.1 -0.2,-0.22 -0.26,-0.37 -0.06,-0.14 -0.09,-0.3 -0.09,-0.47h-1.3c0,0.36 0.07,0.68 0.21,0.95 0.14,0.27 0.33,0.5 0.56,0.69 0.24,0.18 0.51,0.32 0.82,0.41 0.3,0.1 0.62,0.15 0.96,0.15 0.37,0 0.72,-0.05 1.03,-0.15 0.32,-0.1 0.6,-0.25 0.83,-0.44s0.42,-0.43 0.55,-0.72 0.2,-0.61 0.2,-0.97c0,-0.19 -0.02,-0.38 -0.07,-0.56 -0.05,-0.18 -0.12,-0.35 -0.23,-0.51 -0.1,-0.16 -0.24,-0.3 -0.4,-0.43 -0.17,-0.13 -0.37,-0.23 -0.61,-0.31 0.2,-0.09 0.37,-0.2 0.52,-0.33 0.15,-0.13 0.27,-0.27 0.37,-0.42 0.1,-0.15 0.17,-0.3 0.22,-0.46s0.07,-0.32 0.07,-0.48c0,-0.36 -0.06,-0.68 -0.18,-0.96s-0.29,-0.51 -0.51,-0.69c-0.2,-0.19 -0.47,-0.33 -0.77,-0.43C9.11,8.05 8.77,8 8.4,8c-0.36,0 -0.69,0.05 -1,0.16 -0.3,0.11 -0.57,0.26 -0.79,0.45 -0.21,0.19 -0.38,0.41 -0.51,0.67 -0.12,0.26 -0.18,0.54 -0.18,0.85h1.3c0,-0.17 0.03,-0.32 0.09,-0.45s0.14,-0.25 0.25,-0.34 0.23,-0.17 0.38,-0.22 0.3,-0.08 0.48,-0.08c0.4,0 0.7,0.1 0.89,0.31 0.19,0.2 0.29,0.49 0.29,0.86 0,0.18 -0.03,0.34 -0.08,0.49s-0.14,0.27 -0.25,0.37c-0.11,0.1 -0.25,0.18 -0.41,0.24 -0.16,0.06 -0.36,0.09 -0.58,0.09h-0.77v1.03h0.77c0.22,0 0.42,0.02 0.6,0.07s0.33,0.13 0.45,0.23c0.12,0.11 0.22,0.24 0.29,0.4s0.1,0.35 0.1,0.57c0,0.41 -0.12,0.72 -0.35,0.93 -0.23,0.23 -0.55,0.33 -0.95,0.33zM16.97,9.04c-0.32,-0.33 -0.7,-0.59 -1.14,-0.77 -0.44,-0.18 -0.93,-0.27 -1.47,-0.27L12,8v8h2.3c0.55,0 1.06,-0.09 1.51,-0.27s0.84,-0.43 1.16,-0.76c0.32,-0.33 0.57,-0.73 0.74,-1.19 0.17,-0.47 0.26,-0.99 0.26,-1.57v-0.4c0,-0.58 -0.09,-1.1 -0.26,-1.57s-0.42,-0.87 -0.74,-1.2zM16.58,12.2c0,0.42 -0.05,0.79 -0.14,1.13 -0.1,0.33 -0.24,0.62 -0.43,0.85 -0.19,0.23 -0.43,0.41 -0.71,0.53 -0.29,0.12 -0.62,0.18 -0.99,0.18h-0.91L13.4,9.12h0.97c0.72,0 1.27,0.23 1.64,0.69 0.38,0.46 0.57,1.12 0.57,1.99v0.4zM12.01,0l-0.66,0.03 3.81,3.81 1.33,-1.33c3.27,1.55 5.61,4.72 5.96,8.48h1.5C23.45,4.84 18.3,0 12.01,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/3g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/3g_mobiledata.xml
deleted file mode 100644
index b64df94..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/3g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0 2,-0.9 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5c0.83,0 1.5,-0.67 1.5,-1.5V9c0,-1.1 -0.9,-2 -2,-2H3zM21,11v4c0,1.1 -0.9,2 -2,2h-5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h5c1.1,0 2,0.9 2,2h-7v6h5v-2h-2.5v-2H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/3k.xml b/compose/material/material/icons/generator/raw-icons/twotone/3k.xml
deleted file mode 100644
index de6d630..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/3k.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75,-2.25V15H13V9zM6.5,13.5h3v-1h-2v-1h2v-1h-3V9H10c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H6.5V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14v-4c0,-0.55 -0.45,-1 -1,-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10C10.55,15 11,14.55 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/3k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/3k_plus.xml
deleted file mode 100644
index d748868..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/3k_plus.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15h-1.75l-1.75,-2.25V15H11V9zM5.5,13.5h3v-1h-2v-1h2v-1h-3V9H9c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H5.5V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14v-4c0,-0.55 -0.45,-1 -1,-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9C9.55,15 10,14.55 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/3mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/3mp.xml
deleted file mode 100644
index ce55f8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/3mp.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM10,10h3V9h-2V8h2V7h-3V5.5h3.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H10V10zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5C14.05,11.5 14.5,11.05 14.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/3p.xml b/compose/material/material/icons/generator/raw-icons/twotone/3p.xml
deleted file mode 100644
index a238786..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/3p.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v13.17L5.17,16H20V4H4zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S10.9,6 12,6zM16,14H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,11.21 11.01,11 12,11c0.99,0 1.93,0.21 2.78,0.58C15.52,11.9 16,12.62 16,13.43V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4.01c-1.1,0 -2,0.9 -2,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16zM12,10c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,10 12,10zM16,13.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C13.93,11.21 12.99,11 12,11c-0.99,0 -1.93,0.21 -2.78,0.58C8.48,11.9 8,12.62 8,13.43V14h8V13.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/4g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/4g_mobiledata.xml
deleted file mode 100644
index 610d682..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/4g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zM17,11v2h2v2h-5V9h7c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/4g_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/4g_plus_mobiledata.xml
deleted file mode 100644
index 5bcd827..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/4g_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11v2h2v2h-4V9h6c0,-1.1 -0.9,-2 -2,-2h-4C9.9,7 9,7.9 9,9v6c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-4H13zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11zM7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/4k.xml b/compose/material/material/icons/generator/raw-icons/twotone/4k.xml
deleted file mode 100644
index 84ab583..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/4k.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5v14h14L19,5zM12,13.51h-1L11,15L9.5,15v-1.5h-3L6.5,9L8,9v3h1.5L9.5,9L11,9v3h1v1.51zM18.2,15h-1.7l-2,-3v3L13,15L13,9h1.5v3l2,-3h1.7l-2,3 2,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2zM5,5h14v14L5,19L5,5zM11,9L9.5,9v3L8,12L8,9L6.5,9v4.5h3L9.5,15L11,15v-1.49h1L12,12h-1zM16.5,9l-2,3 2,3h1.7l-2,-3 2,-3zM13,9v6h1.5L14.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/4k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/4k_plus.xml
deleted file mode 100644
index b8b6ed4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/4k_plus.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11.5,9H13v2.25L14.75,9h1.75l-2.25,3l2.25,3h-1.75L13,12.75V15h-1.5V9zM5.5,9H7v3h1.5V9H10v3h1v1.5h-1V15H8.5v-1.5h-3V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,15l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/4mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/4mp.xml
deleted file mode 100644
index 69721d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/4mp.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM9.5,5.5H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,11.5l1.5,0l0,-1.5l1,0l0,-1.5l-1,0l0,-3l-1.5,0l0,3l-1.5,0l0,-3l-1.5,0l0,4.5l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/5g.xml b/compose/material/material/icons/generator/raw-icons/twotone/5g.xml
deleted file mode 100644
index 6b73e26..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/5g.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13H19v2h-5V9h7c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4h-4.5V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h5v2H3v2h5c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H5V9h5V7H3V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/5k.xml b/compose/material/material/icons/generator/raw-icons/twotone/5k.xml
deleted file mode 100644
index 10dc1ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/5k.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75,-2.25V15H13V9zM6.5,13.5h3v-1h-3V9H11v1.5H8v1h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H6.5V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14v-1.5c0,-0.55 -0.45,-1 -1,-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10C10.55,15 11,14.55 11,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/5k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/5k_plus.xml
deleted file mode 100644
index 855739c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/5k_plus.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15h-1.75l-1.75,-2.25V15H11V9zM6,13.5h2.5v-1H6V9h4v1.5H7.5v1H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14v-1.5c0,-0.55 -0.45,-1 -1,-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3C9.55,15 10,14.55 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/5mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/5mp.xml
deleted file mode 100644
index 9132de8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/5mp.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM10,10h3V9h-3V5.5h4.5V7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H10V10zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5C14.05,11.5 14.5,11.05 14.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/60fps.xml b/compose/material/material/icons/generator/raw-icons/twotone/60fps.xml
deleted file mode 100644
index 244d3db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/60fps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8v8h-4V8H19M19,5h-4c-1.66,0 -3,1.34 -3,3v8c0,1.66 1.34,3 3,3h4c1.66,0 3,-1.34 3,-3V8C22,6.34 20.66,5 19,5zM10,8V5H5C3.34,5 2,6.34 2,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3v-3c0,-1.66 -1.34,-3 -3,-3H5V8H10zM8,13v3H5v-3H8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/60fps_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/60fps_select.xml
deleted file mode 100644
index 57fdf09..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/60fps_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6v6h-3V6H18zM18,4h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V6C20,4.9 19.1,4 18,4zM11,6V4H6C4.9,4 4,4.9 4,6v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2v-2c0,-1.1 -0.9,-2 -2,-2H6V6H11zM9,10v2H6v-2H9zM5,22H3v-5h2V22zM9,22H7v-5h2V22zM13,22h-2v-5h2V22zM21,22h-6v-5h6V22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/6_ft_apart.xml b/compose/material/material/icons/generator/raw-icons/twotone/6_ft_apart.xml
deleted file mode 100644
index bd75a6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/6_ft_apart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM10,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C7.93,7.21 6.99,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h8V9.43zM18,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S16.9,6 18,6zM22,9.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C19.93,7.21 18.99,7 18,7c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,7.9 14,8.62 14,9.43V10h8V9.43zM19,17v-2.01L5,15v2l-3,-3l3,-3v2.01L19,13v-2l3,3L19,17zM10,19v-1H7.5C7.22,18 7,18.22 7,18.5v3C7,21.78 7.22,22 7.5,22h2c0.28,0 0.5,-0.22 0.5,-0.5V20c0,-0.28 -0.22,-0.5 -0.5,-0.5H8V19H10zM9,20.5V21H8v-0.5H9zM17.5,19h-1v3h-1v-3h-1v-1h3V19zM12.5,19v0.5h1v1h-1V22h-1v-4H14v1H12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/6k.xml b/compose/material/material/icons/generator/raw-icons/twotone/6k.xml
deleted file mode 100644
index 9424dba..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/6k.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75,-2.25V15H13V9zM6.5,10c0,-0.55 0.45,-1 1,-1H11v1.5H8v1h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7.5c-0.55,0 -1,-0.45 -1,-1V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15H10c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H8v-1h3V9H7.5c-0.55,0 -1,0.45 -1,1v4C6.5,14.55 6.95,15 7.5,15zM8,12.5h1.5V14H8V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/6k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/6k_plus.xml
deleted file mode 100644
index 7354336..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/6k_plus.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h1v1.5h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15h-1.75l-1.75,-2.25V15H11V9zM6,10c0,-0.55 0.45,-1 1,-1h3v1.5H7.5v1H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h2c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H7.5v-1H10V9H7c-0.55,0 -1,0.45 -1,1v4C6,14.55 6.45,15 7,15zM7.5,12.5h1V14h-1V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/6mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/6mp.xml
deleted file mode 100644
index 5628822..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/6mp.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM10,6.5c0,-0.55 0.45,-1 1,-1h3.5V7h-3v1h2c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1H11c-0.55,0 -1,-0.45 -1,-1V6.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11.5h2.5c0.55,0 1,-0.45 1,-1V9c0,-0.55 -0.45,-1 -1,-1h-2V7h3V5.5H11c-0.55,0 -1,0.45 -1,1v4C10,11.05 10.45,11.5 11,11.5zM11.5,9H13v1.5h-1.5V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/7k.xml b/compose/material/material/icons/generator/raw-icons/twotone/7k.xml
deleted file mode 100644
index 1a527d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/7k.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75,-2.25V15H13V9zM6.5,9H10c0.67,0 1.15,0.65 0.96,1.29L9.5,15H7.75l1.38,-4.5H6.5V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.75,15H9.5l1.46,-4.71C11.15,9.65 10.67,9 10,9H6.5v1.5h2.63L7.75,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/7k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/7k_plus.xml
deleted file mode 100644
index bab4bca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/7k_plus.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15h-1.75l-1.75,-2.25V15H11V9zM5.5,9H9c0.67,0 1.15,0.65 0.96,1.29L8.5,15H6.75l1.38,-4.5H5.5V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.75,15H8.5l1.46,-4.71C10.15,9.65 9.67,9 9,9H5.5v1.5h2.63L6.75,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/7mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/7mp.xml
deleted file mode 100644
index b91b468..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/7mp.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM10,5.5h3.5c0.67,0 1.15,0.65 0.96,1.29L13,11.5h-1.75L12.62,7H10V5.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,11.5H13l1.46,-4.71c0.19,-0.64 -0.29,-1.29 -0.96,-1.29H10V7h2.62L11.25,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/8k.xml b/compose/material/material/icons/generator/raw-icons/twotone/8k.xml
deleted file mode 100644
index 23edb3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/8k.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75,-2.25V15H13V9zM6.5,10c0,-0.55 0.45,-1 1,-1H10c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H7.5c-0.55,0 -1,-0.45 -1,-1V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15H10c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H7.5c-0.55,0 -1,0.45 -1,1v4C6.5,14.55 6.95,15 7.5,15zM8,10h1.5v1.5H8V10zM8,12.5h1.5V14H8V12.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/8k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/8k_plus.xml
deleted file mode 100644
index a21647f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/8k_plus.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h1v1.5h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,10h1v1.5h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15h-1.75l-1.75,-2.25V15H11V9zM6,10c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h2c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v4C6,14.55 6.45,15 7,15zM7.5,10h1v1.5h-1V10zM7.5,12.5h1V14h-1V12.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/8mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/8mp.xml
deleted file mode 100644
index 15e84db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/8mp.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM10,6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H11c-0.55,0 -1,-0.45 -1,-1V6.5zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11.5h2.5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1H11c-0.55,0 -1,0.45 -1,1v4C10,11.05 10.45,11.5 11,11.5zM11.5,6.5H13V8h-1.5V6.5zM11.5,9H13v1.5h-1.5V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/9k.xml b/compose/material/material/icons/generator/raw-icons/twotone/9k.xml
deleted file mode 100644
index a48ab3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/9k.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75,-2.25V15H13V9zM6.5,13.5h3v-1h-2c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1H10c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H6.5V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14v-4c0,-0.55 -0.45,-1 -1,-1H7.5c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2v1h-3V15H10C10.55,15 11,14.55 11,14zM9.5,11.5H8V10h1.5V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/9k_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/9k_plus.xml
deleted file mode 100644
index 7ec859e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/9k_plus.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,10h1v1.5h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19zM11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15h-1.75l-1.75,-2.25V15H11V9zM6,13.5h2.5v-1H7c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14v-4c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h1.5v1H6V15h3C9.55,15 10,14.55 10,14zM8.5,11.5h-1V10h1V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,11.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.75l1.75,2.25l1.75,0l-2.25,-3l2.25,-3l-1.75,0l-1.75,2.25l0,-2.25l-1.5,0l0,6l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/9mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/9mp.xml
deleted file mode 100644
index 40e2e98..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/9mp.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM18,13.5V16c0,0.55 -0.45,1 -1,1h-2v1.5h-1.5v-6H17C17.55,12.5 18,12.95 18,13.5zM10,10h3V9h-2c-0.55,0 -1,-0.45 -1,-1V6.5c0,-0.55 0.45,-1 1,-1h2.5c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1H10V10zM6,13.5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v5h1.5V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,18.5H15V17h2c0.55,0 1,-0.45 1,-1v-2.5c0,-0.55 -0.45,-1 -1,-1h-3.5V18.5zM15,14h1.5v1.5H15V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5v-4c0,-0.55 -0.45,-1 -1,-1H11c-0.55,0 -1,0.45 -1,1V8c0,0.55 0.45,1 1,1h2v1h-3v1.5h3.5C14.05,11.5 14.5,11.05 14.5,10.5zM13,8h-1.5V6.5H13V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/abc.xml b/compose/material/material/icons/generator/raw-icons/twotone/abc.xml
deleted file mode 100644
index 62a67b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/abc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V11zM8,10v5H6.5v-1.5h-2V15H3v-5c0,-0.55 0.45,-1 1,-1h3C7.55,9 8,9.45 8,10zM6.5,10.5h-2V12h2V10.5zM13.5,12c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1h-4V9h4c0.55,0 1,0.45 1,1v1C14.5,11.55 14.05,12 13.5,12zM11,10.5v0.75h2V10.5H11zM13,12.75h-2v0.75h2V12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ac_unit.xml b/compose/material/material/icons/generator/raw-icons/twotone/ac_unit.xml
deleted file mode 100644
index 8779cbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ac_unit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11h-4.17l3.24,-3.24 -1.41,-1.42L15,11h-2V9l4.66,-4.66 -1.42,-1.41L13,6.17V2h-2v4.17L7.76,2.93 6.34,4.34 11,9v2H9L4.34,6.34 2.93,7.76 6.17,11H2v2h4.17l-3.24,3.24 1.41,1.42L9,13h2v2l-4.66,4.66 1.42,1.41L11,17.83V22h2v-4.17l3.24,3.24 1.42,-1.41L13,15v-2h2l4.66,4.66 1.41,-1.42L17.83,13H22v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/access_alarm.xml b/compose/material/material/icons/generator/raw-icons/twotone/access_alarm.xml
deleted file mode 100644
index 7a26d63..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/access_alarm.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.87,0 -7,3.13 -7,7s3.13,7 7,7 7,-3.13 7,-7 -3.13,-7 -7,-7zM15.75,16.85L11,14L11,8h1.5v5.25l4,2.37 -0.75,1.23z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86zM7.88,3.39L6.6,1.86 2,5.71l1.29,1.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/access_alarms.xml b/compose/material/material/icons/generator/raw-icons/twotone/access_alarms.xml
deleted file mode 100644
index c9c7d78..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/access_alarms.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.9,0 -7,3.1 -7,7s3.1,7 7,7 7,-3.1 7,-7 -3.1,-7 -7,-7zM15.7,16.9L11,14L11,8h1.5v5.3l4,2.4 -0.8,1.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.7l-4.6,-3.9 -1.3,1.5 4.6,3.9zM12.5,8L11,8v6l4.7,2.9 0.8,-1.2 -4,-2.4zM12,4c-5,0 -9,4 -9,9s4,9 9,9 9,-4 9,-9 -4,-9 -9,-9zM12,20c-3.9,0 -7,-3.1 -7,-7s3.1,-7 7,-7 7,3.1 7,7 -3.1,7 -7,7zM7.9,3.4L6.6,1.9 2,5.7l1.3,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/access_time.xml b/compose/material/material/icons/generator/raw-icons/twotone/access_time.xml
deleted file mode 100644
index f3824e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/access_time.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM16.25,16.15L11,13L11,7h1.5v5.25l4.5,2.67 -0.75,1.23z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/access_time_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/access_time_filled.xml
deleted file mode 100644
index a021dc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/access_time_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM15.29,16.71L11,12.41V7h2v4.59l3.71,3.71L15.29,16.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/accessibility.xml b/compose/material/material/icons/generator/raw-icons/twotone/accessibility.xml
deleted file mode 100644
index f29b9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM21,9h-6v13h-2v-6h-2v6L9,22L9,9L3,9L3,7h18v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/accessibility_new.xml b/compose/material/material/icons/generator/raw-icons/twotone/accessibility_new.xml
deleted file mode 100644
index e25d6f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/accessibility_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,6c-2.61,0.7 -5.67,1 -8.5,1s-5.89,-0.3 -8.5,-1L3,8c1.86,0.5 4,0.83 6,1v13h2v-6h2v6h2V9c2,-0.17 4.14,-0.5 6,-1l-0.5,-2zM12,6c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/accessible.xml b/compose/material/material/icons/generator/raw-icons/twotone/accessible.xml
deleted file mode 100644
index e515083..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/accessible.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43c-0.17,-0.19 -0.38,-0.34 -0.61,-0.45 -0.01,0 -0.01,-0.01 -0.02,-0.01L13,7.28c-0.35,-0.2 -0.75,-0.3 -1.19,-0.26C10.76,7.11 10,8.04 10,9.09L10,15c0,1.1 0.9,2 2,2h5v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2h-3v-3.45c1.29,1.07 3.25,1.94 5,1.95zM12.83,18c-0.41,1.16 -1.52,2 -2.83,2 -1.66,0 -3,-1.34 -3,-3 0,-1.31 0.84,-2.41 2,-2.83L9,12.1c-2.28,0.46 -4,2.48 -4,4.9 0,2.76 2.24,5 5,5 2.42,0 4.44,-1.72 4.9,-4h-2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/accessible_forward.xml b/compose/material/material/icons/generator/raw-icons/twotone/accessible_forward.xml
deleted file mode 100644
index 3b376e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/accessible_forward.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4.54m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h-2c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3 1.35,-3 3,-3v-2c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5zM18,13.5h-1.86l1.67,-3.67C18.42,8.5 17.44,7 15.96,7h-5.2c-0.81,0 -1.54,0.47 -1.87,1.2L8.22,10l1.92,0.53 0.65,-1.53L13,9l-1.83,4.1c-0.6,1.33 0.39,2.9 1.85,2.9L18,16v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/account_balance.xml b/compose/material/material/icons/generator/raw-icons/twotone/account_balance.xml
deleted file mode 100644
index ac41105..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/account_balance.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.29,6l5.21,-2.74L16.71,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,10h-2v7h2v-7zM12.5,10h-2v7h2v-7zM21,19L2,19v2h19v-2zM18.5,10h-2v7h2v-7zM11.5,1L2,6v2h19L21,6l-9.5,-5zM6.29,6l5.21,-2.74L16.71,6L6.29,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/account_balance_wallet.xml b/compose/material/material/icons/generator/raw-icons/twotone/account_balance_wallet.xml
deleted file mode 100644
index 1015a66..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/account_balance_wallet.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h6V5H5v14h14v-2h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7.28V5c0,-1.1 -0.9,-2 -2,-2H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-2.28c0.59,-0.35 1,-0.98 1,-1.72V9c0,-0.74 -0.41,-1.38 -1,-1.72zM20,9v6h-7V9h7zM5,19V5h14v2h-6c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h6v2H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/account_box.xml b/compose/material/material/icons/generator/raw-icons/twotone/account_box.xml
deleted file mode 100644
index bc1bdf4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/account_box.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17.86C6.8,16.09 9.27,15 12,15s5.2,1.09 7,2.86V5H5V17.86zM12,6c1.93,0 3.5,1.57 3.5,3.5S13.93,13 12,13c-1.93,0 -3.5,-1.57 -3.5,-3.5S10.07,6 12,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM17,19H7v-0.24C8.42,17.62 10.16,17 12,17s3.58,0.62 5,1.76V19zM19,17.86C17.2,16.09 14.73,15 12,15s-5.2,1.09 -7,2.86V5h14V17.86z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c1.93,0 3.5,-1.57 3.5,-3.5S13.93,6 12,6c-1.93,0 -3.5,1.57 -3.5,3.5S10.07,13 12,13zM12,8c0.83,0 1.5,0.67 1.5,1.5S12.83,11 12,11s-1.5,-0.67 -1.5,-1.5S11.17,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/account_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/account_circle.xml
deleted file mode 100644
index f7abdd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/account_circle.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8c0,1.95 0.7,3.73 1.86,5.12C7.55,15.8 9.68,15 12,15s4.45,0.8 6.14,2.12C19.3,15.73 20,13.95 20,12C20,7.58 16.42,4 12,4zM12,13c-1.93,0 -3.5,-1.57 -3.5,-3.5C8.5,7.57 10.07,6 12,6s3.5,1.57 3.5,3.5C15.5,11.43 13.93,13 12,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-1.74,0 -3.34,-0.56 -4.65,-1.5C8.66,17.56 10.26,17 12,17s3.34,0.56 4.65,1.5C15.34,19.44 13.74,20 12,20zM18.14,17.12C16.45,15.8 14.32,15 12,15s-4.45,0.8 -6.14,2.12C4.7,15.73 4,13.95 4,12c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,13.95 19.3,15.73 18.14,17.12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.93c-1.93,0 -3.5,1.57 -3.5,3.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5C15.5,7.5 13.93,5.93 12,5.93zM12,10.93c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,10.93 12,10.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/account_tree.xml b/compose/material/material/icons/generator/raw-icons/twotone/account_tree.xml
deleted file mode 100644
index e04a5d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/account_tree.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22zM7,9H4V5h3V9zM17,15h3v4h-3V15zM17,5h3v4h-3V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5l0,4l-3,0l0,-4l3,0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5l0,4l-3,0l0,-4l3,0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15l0,4l-3,0l0,-4l3,0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ad_units.xml b/compose/material/material/icons/generator/raw-icons/twotone/ad_units.xml
deleted file mode 100644
index a1f3348..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ad_units.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1L17,1zM7,4V3h10v1H7L7,4zM7,18V6h10v12H7L7,18zM7,21v-1h10v1H7L7,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l-8,0l0,2l8,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/adb.xml b/compose/material/material/icons/generator/raw-icons/twotone/adb.xml
deleted file mode 100644
index c96346e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/adb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16c0,3.87 3.13,7 7,7s7,-3.13 7,-7v-4L5,12v4zM16.12,4.37l2.1,-2.1 -0.82,-0.83 -2.3,2.31C14.16,3.28 13.12,3 12,3s-2.16,0.28 -3.09,0.75L6.6,1.44l-0.82,0.83 2.1,2.1C6.14,5.64 5,7.68 5,10v1h14v-1c0,-2.32 -1.14,-4.36 -2.88,-5.63zM9,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add.xml b/compose/material/material/icons/generator/raw-icons/twotone/add.xml
deleted file mode 100644
index eb23254..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_a_photo.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_a_photo.xml
deleted file mode 100644
index ae5a679d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_a_photo.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7v3L5,10v10h16L21,8h-4.05l-1.83,-2L9,6v1L6,7zM13,9c2.76,0 5,2.24 5,5s-2.24,5 -5,5 -5,-2.24 -5,-5 2.24,-5 5,-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-3.17L16,4L9,4v2h6.12l1.83,2L21,8v12L5,20L5,10L3,10v10c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM8,14c0,2.76 2.24,5 5,5s5,-2.24 5,-5 -2.24,-5 -5,-5 -5,2.24 -5,5zM13,11c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM5,9L5,6h3L8,4L5,4L5,1L3,1v3L0,4v2h3v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_alarm.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_alarm.xml
deleted file mode 100644
index 6e49b4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_alarm.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.87,0 -7,3.13 -7,7s3.13,7 7,7 7,-3.13 7,-7 -3.13,-7 -7,-7zM16,14h-3v3h-2v-3L8,14v-2h3L11,9h2v3h3v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3zM22,5.72l-4.6,-3.86 -1.29,1.53 4.6,3.86zM7.88,3.39L6.6,1.86 2,5.71l1.29,1.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_alert.xml
deleted file mode 100644
index 10a0b67..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_alert.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-2.76,0 -5,2.24 -5,5v7h10v-7c0,-2.76 -2.24,-5 -5,-5zM16,13h-3v3h-2v-3L8,13v-2h3L11,8h2v3h3v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,23c1.1,0 1.99,-0.89 1.99,-1.99h-3.98c0,1.1 0.89,1.99 1.99,1.99zM19,17v-6c0,-3.35 -2.36,-6.15 -5.5,-6.83L13.5,3c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v1.17C7.36,4.85 5,7.65 5,11v6l-2,2v1h18v-1l-2,-2zM17,18L7,18v-7c0,-2.76 2.24,-5 5,-5s5,2.24 5,5v7zM13,11L13,8h-2v3L8,11v2h3v3h2v-3h3v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_box.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_box.xml
deleted file mode 100644
index 7e43a00..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_box.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM7,11h4L11,7h2v4h4v2h-4v4h-2v-4L7,13v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM11,17h2v-4h4v-2h-4L13,7h-2v4L7,11v2h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_business.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_business.xml
deleted file mode 100644
index b73eb10..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_business.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.36,9l-11.72,0l-0.6,3l12.92,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4h15v2h-15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h2v-3h1v-2l-1,-5H2l-1,5v2h1v6h9v-6h4V17zM9,18H4v-4h5V18zM3.04,12l0.6,-3h11.72l0.6,3H3.04z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_card.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_card.xml
deleted file mode 100644
index af84bfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_card.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h10v-2H4v-6h18V6C22,4.89 21.11,4 20,4zM20,8H4V6h16V8zM24,17v2h-3v3h-2v-3h-3v-2h3v-3h2v3H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_chart.xml
deleted file mode 100644
index e8020cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_chart.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v10h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h9V3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-9h-2V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5l0,-2l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_circle.xml
deleted file mode 100644
index 581a427..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_circle_outline.xml
deleted file mode 100644
index e059ac9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_comment.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_comment.xml
deleted file mode 100644
index 5c35554..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_comment.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4c0,-1.1 -0.9,-2 -2,-2zM20,17.17L18.83,16L4,16L4,4h16v13.17zM13,5h-2v4L7,9v2h4v4h2v-4h4L17,9h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v12h14.83L20,17.17L20,4L4,4zM17,11h-4v4h-2v-4L7,11L7,9h4L11,5h2v4h4v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_home.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_home.xml
deleted file mode 100644
index 98539e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_home.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5L6,10v9h5.08c-0.62,-4.3 2.72,-8 6.92,-8v-1L12,5.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19v-9l6,-4.5l6,4.5v1c0.7,0 1.37,0.1 2,0.29V9l-8,-6L4,9v12h7.68c-0.3,-0.62 -0.5,-1.29 -0.6,-2H6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_home_work.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_home_work.xml
deleted file mode 100644
index 2ad3b49..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_home_work.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5v1.4l5,3.57v1.11c0.33,-0.05 0.66,-0.08 1,-0.08c1.08,0 2.09,0.25 3,0.68V5H12zM19,9h-2V7h2V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5h9v6.68c0.75,0.36 1.43,0.84 2,1.42V3H10v1.97l2,1.43V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6l-7,5v10h6v-5h2v5h2.68C11.25,20.09 11,19.08 11,18v-4H5v5H3v-6.97l5,-3.57l5,3.57v1.08c0.57,-0.59 1.25,-1.07 2,-1.42V11L8,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8.46l-5,3.57V19h2v-5h6v4c0,-1.91 0.76,-3.63 2,-4.89v-1.08L8,8.46z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_ic_call.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_ic_call.xml
deleted file mode 100644
index 2482362..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_ic_call.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17.41c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.2c1.21,0.41 2.48,0.67 3.8,0.76v-1.51zM6.54,4.95h-1.5c0.09,1.32 0.34,2.58 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,20.95c0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1 -1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.4 8.5,5.2 8.5,3.95c0,-0.55 -0.45,-1 -1,-1L4,2.95c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17zM16.4,16.96c0.85,0.24 1.72,0.39 2.6,0.45v1.5c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.19zM5.03,4.95h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM16,10.95h2v-3h3v-2h-3v-3h-2v3h-3v2h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_link.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_link.xml
deleted file mode 100644
index a585f0c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h8v2H8V11zM20.1,12H22c0,-2.76 -2.24,-5 -5,-5h-4v1.9h4C18.71,8.9 20.1,10.29 20.1,12zM3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4V7H7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9H7C5.29,15.1 3.9,13.71 3.9,12zM19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_location.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_location.xml
deleted file mode 100644
index 312278f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_location.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,10.2c0,2.57 -2.1,5.79 -6.16,9.51L12,20.01l-0.34,-0.31C7.6,15.99 5.5,12.77 5.5,10.2c0,-3.84 2.82,-6.7 6.5,-6.7S18.5,6.35 18.5,10.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14C16.05,15.64 18,12.54 18,10.2zM12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_location_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_location_alt.xml
deleted file mode 100644
index 5030e2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_location_alt.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4.8V7h3v3h1.41c0.06,0.39 0.09,0.79 0.09,1.2c0,2.57 -2.1,5.79 -6.16,9.51L12,21.01l-0.34,-0.31C7.6,16.99 5.5,13.77 5.5,11.2c0,-3.84 2.82,-6.7 6.5,-6.7C12.7,4.5 13.37,4.6 14,4.8z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1v3h3v2h-3v3h-2V6h-3V4h3V1H20zM12,13c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,13 12,13zM14,3.25v2.08C13.38,5.11 12.7,5 12,5c-3.35,0 -6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14c4.05,-3.7 6,-6.79 6,-9.14c0,-0.41 -0.03,-0.81 -0.1,-1.2h2.02c0.05,0.39 0.08,0.79 0.08,1.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,6.22 7.8,3 12,3C12.68,3 13.35,3.08 14,3.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_moderator.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_moderator.xml
deleted file mode 100644
index 2fff1b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_moderator.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.14L6,6.39v4.7c0,3.33 1.76,6.44 4.33,8.04c-1.56,-4.89 2.5,-9.8 7.67,-9.05V6.39L12,4.14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.33,19.13C7.76,17.53 6,14.42 6,11.09v-4.7l6,-2.25l6,2.25v3.69c0.71,0.1 1.38,0.31 2,0.6V5l-8,-3L4,5v6.09c0,5.05 3.41,9.76 8,10.91c0.03,-0.01 0.05,-0.02 0.08,-0.02C11.29,21.19 10.68,20.22 10.33,19.13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_photo_alternate.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_photo_alternate.xml
deleted file mode 100644
index c98f7fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_photo_alternate.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.21,16.83l-1.96,-2.36L5.5,18h11l-3.54,-4.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,18h-11l2.75,-3.53 1.96,2.36 2.75,-3.54L16.5,18zM17,7h-3V6H4v14h14V10h-1V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L20,1h-2v3h-3v2h3v2.99h2L20,6h3L23,4zM18,20L4,20L4,6h10L14,4L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L20,10h-2v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_reaction.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_reaction.xml
deleted file mode 100644
index a274e3a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_reaction.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,9H18V7h-2V5.08C14.82,4.4 13.46,4 12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8s8,-3.58 8,-8C20,10.94 19.79,9.93 19.41,9zM15.5,8C16.33,8 17,8.67 17,9.5c0,0.83 -0.67,1.5 -1.5,1.5S14,10.33 14,9.5C14,8.67 14.67,8 15.5,8zM8.5,8C9.33,8 10,8.67 10,9.5c0,0.83 -0.67,1.5 -1.5,1.5S7,10.33 7,9.5C7,8.67 7.67,8 8.5,8zM12,17.5c-2.33,0 -4.31,-1.46 -5.11,-3.5h10.22C16.31,16.04 14.33,17.5 12,17.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9.5C7,8.67 7.67,8 8.5,8S10,8.67 10,9.5c0,0.83 -0.67,1.5 -1.5,1.5S7,10.33 7,9.5zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5H6.89C7.69,16.04 9.67,17.5 12,17.5zM15.5,11c0.83,0 1.5,-0.67 1.5,-1.5C17,8.67 16.33,8 15.5,8S14,8.67 14,9.5C14,10.33 14.67,11 15.5,11zM22,1h-2v2h-2v2h2v2h2V5h2V3h-2V1zM20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8c1.46,0 2.82,0.4 4,1.08V2.84C14.77,2.3 13.42,2 11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12c0,-1.05 -0.17,-2.05 -0.47,-3h-2.13C19.78,9.93 20,10.94 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_road.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_road.xml
deleted file mode 100644
index 0b8771e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_shopping_cart.xml
deleted file mode 100644
index 5fd12e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_shopping_cart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2L13,6h3L16,4h-3L13,1h-2v3L8,4v2h3v3zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03l3.86,-7.01L19.41,4l-3.86,7L8.53,11L4.27,2L1,2v2h2l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2L7,15l1.1,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_task.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_task.xml
deleted file mode 100644
index 295ddfa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_task.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8c1.57,0 3.04,0.46 4.28,1.25l1.45,-1.45C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c1.73,0 3.36,-0.44 4.78,-1.22l-1.5,-1.5C14.28,19.74 13.17,20 12,20zM19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_to_drive.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_to_drive.xml
deleted file mode 100644
index 698536b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_to_drive.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c0.17,0 0.33,0.01 0.49,0.02L15,3H9l5.68,9.84C15.77,11.71 17.3,11 19,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,4.52l-6.15,10.98l3,5.5l6.33,-10.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94 13,18.54 13,17C13,16.48 13.07,15.98 13.2,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l1,0l1,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_to_home_screen.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_to_home_screen.xml
deleted file mode 100644
index 438c325..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_to_home_screen.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L8,1c-1.1,0 -2,0.9 -2,2v3h2V5h10v14H8v-1H6v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM10,15h2V8H5v2h3.59L3,15.59 4.41,17 10,11.41V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_to_photos.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_to_photos.xml
deleted file mode 100644
index 18534f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_to_photos.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L8,4v12h12L20,4zM19,11h-4v4h-2v-4L9,11L9,9h4L13,5h2v4h4v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22h14v-2L4,20L4,6L2,6v14c0,1.1 0.9,2 2,2zM8,18h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM8,4h12v12L8,16L8,4zM15,5h-2v4L9,9v2h4v4h2v-4h4L19,9h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/add_to_queue.xml b/compose/material/material/icons/generator/raw-icons/twotone/add_to_queue.xml
deleted file mode 100644
index 288208e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/add_to_queue.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18L21,5L3,5v12zM8,10h3L11,7h2v3h3v2h-3v3h-2v-3L8,12v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v-3h3v-2h-3L13,7h-2v3L8,10v2h3zM21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/addchart.xml b/compose/material/material/icons/generator/raw-icons/twotone/addchart.xml
deleted file mode 100644
index aa838c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/addchart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22zM19,19H5V5h6V3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6h-2V19zM15,13v4h2v-4H15zM11,17h2V9h-2V17zM9,17v-6H7v6H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/adf_scanner.xml b/compose/material/material/icons/generator/raw-icons/twotone/adf_scanner.xml
deleted file mode 100644
index 284c966..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/adf_scanner.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6h8v6h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14H5c-0.55,0 -1,0.45 -1,1v3h16v-3C20,14.45 19.55,14 19,14zM18,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,16.55 18.55,17 18,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-1V4H6v8H5c-1.66,0 -3,1.34 -3,3v5h20v-5C22,13.34 20.66,12 19,12zM8,6h8v6H8V6zM20,18H4v-3c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/adjust.xml b/compose/material/material/icons/generator/raw-icons/twotone/adjust.xml
deleted file mode 100644
index bffe971..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/adjust.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/admin_panel_settings.xml b/compose/material/material/icons/generator/raw-icons/twotone/admin_panel_settings.xml
deleted file mode 100644
index da86cb7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/admin_panel_settings.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.58l-5.5,-2.4L5,7.58v3.6c0,3.5 2.33,6.74 5.5,7.74c0.25,-0.08 0.49,-0.2 0.73,-0.3C11.08,18.11 11,17.56 11,17c0,-2.97 2.16,-5.43 5,-5.91V7.58z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C21,14.79 19.21,13 17,13zM17,14.38c0.62,0 1.12,0.51 1.12,1.12s-0.51,1.12 -1.12,1.12s-1.12,-0.51 -1.12,-1.12S16.38,14.38 17,14.38zM17,19.75c-0.93,0 -1.74,-0.46 -2.24,-1.17c0.05,-0.72 1.51,-1.08 2.24,-1.08s2.19,0.36 2.24,1.08C18.74,19.29 17.93,19.75 17,19.75z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15.5m-1.12,0a1.12,1.12 0,1 1,2.24 0a1.12,1.12 0,1 1,-2.24 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54 3.2,8.79 7.5,9.82c0.55,-0.13 1.08,-0.32 1.6,-0.55C13.18,21.99 14.97,23 17,23c3.31,0 6,-2.69 6,-6C23,14.03 20.84,11.57 18,11.09zM11,17c0,0.56 0.08,1.11 0.23,1.62c-0.24,0.11 -0.48,0.22 -0.73,0.3c-3.17,-1 -5.5,-4.24 -5.5,-7.74v-3.6l5.5,-2.4l5.5,2.4v3.51C13.16,11.57 11,14.03 11,17zM17,21c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4s4,1.79 4,4C21,19.21 19.21,21 17,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17.5c-0.73,0 -2.19,0.36 -2.24,1.08c0.5,0.71 1.32,1.17 2.24,1.17s1.74,-0.46 2.24,-1.17C19.19,17.86 17.73,17.5 17,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ads_click.xml b/compose/material/material/icons/generator/raw-icons/twotone/ads_click.xml
deleted file mode 100644
index 79f2284..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ads_click.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.71,17.99C8.53,17.84 6,15.22 6,12c0,-3.31 2.69,-6 6,-6c3.22,0 5.84,2.53 5.99,5.71l-2.1,-0.63C15.48,9.31 13.89,8 12,8c-2.21,0 -4,1.79 -4,4c0,1.89 1.31,3.48 3.08,3.89L11.71,17.99zM22,12c0,0.3 -0.01,0.6 -0.04,0.9l-1.97,-0.59C20,12.21 20,12.1 20,12c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8s3.58,8 8,8c0.1,0 0.21,0 0.31,-0.01l0.59,1.97C12.6,21.99 12.3,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2S22,6.48 22,12zM18.23,16.26L22,15l-10,-3l3,10l1.26,-3.77l4.27,4.27l1.98,-1.98L18.23,16.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/agriculture.xml b/compose/material/material/icons/generator/raw-icons/twotone/agriculture.xml
deleted file mode 100644
index 4a870c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/agriculture.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h5c0,-1.1 -0.9,-2 -2,-2H4C3.45,7 3,7.45 3,8C3,8.55 3.45,9 4,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,14.06V8c0,-1.1 -0.9,-2 -2,-2h-6.29l-1.06,-1.06l1.41,-1.41l-0.71,-0.71L9.82,6.35l0.71,0.71l1.41,-1.41L13,6.71V9c0,1.1 -0.9,2 -2,2H8.96c-0.22,-0.16 -0.45,-0.3 -0.69,-0.43l-0.4,0.89l-0.46,-0.21l0.4,-0.9C7.26,10.13 6.64,10 6,10c-0.53,0 -1.04,0.11 -1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46 -1.91,1.28 -2.43,2.31l0.89,0.4l-0.21,0.46l-0.9,-0.4C1.13,13.74 1,14.36 1,15c0,0.53 0.11,1.04 0.26,1.52l0.91,-0.34l0.18,0.47L1.42,17c0.46,1.06 1.28,1.91 2.31,2.43l0.4,-0.89l0.46,0.21l-0.4,0.9C4.74,19.87 5.36,20 6,20c0.53,0 1.04,-0.11 1.52,-0.26l-0.34,-0.91l0.47,-0.18L8,19.58c1.06,-0.46 1.91,-1.28 2.43,-2.31l-0.89,-0.4l0.21,-0.46l0.9,0.4c0.1,-0.26 0.18,-0.54 0.24,-0.82h5.16C16.03,16.16 16,16.33 16,16.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5C23,15.55 22.62,14.69 22,14.06zM6,18c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S7.66,18 6,18zM10.87,14c-0.04,-0.18 -0.08,-0.35 -0.13,-0.52l-0.91,0.34l-0.18,-0.47L10.58,13c0,0 0.42,0 0.42,0c2.21,0 4,-1.79 4,-4V8h5v5.05C19.84,13.03 19.67,13 19.5,13c-0.95,0 -1.81,0.38 -2.44,1H10.87zM19.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S20.33,18 19.5,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13.05V8h-5v1c0,2.21 -1.79,4 -4,4c0,0 -0.42,0 -0.42,0c0.14,0.32 0.25,0.65 0.32,1h6.16c0.63,-0.62 1.49,-1 2.44,-1C19.67,13 19.84,13.03 20,13.05z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/air.xml b/compose/material/material/icons/generator/raw-icons/twotone/air.xml
deleted file mode 100644
index 4ea67a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/air.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3h2c0,0.55 0.45,1 1,1s1,-0.45 1,-1s-0.45,-1 -1,-1H2v-2h9.5C13.15,14 14.5,15.35 14.5,17zM19,6.5C19,4.57 17.43,3 15.5,3S12,4.57 12,6.5h2C14,5.67 14.67,5 15.5,5S17,5.67 17,6.5S16.33,8 15.5,8H2v2h13.5C17.43,10 19,8.43 19,6.5zM18.5,11H2v2h16.5c0.83,0 1.5,0.67 1.5,1.5S19.33,16 18.5,16v2c1.93,0 3.5,-1.57 3.5,-3.5S20.43,11 18.5,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_flat.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_flat.xml
deleted file mode 100644
index 40ed451..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_flat.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11c0.27,0 0.52,-0.11 0.71,-0.3 0.39,-0.4 0.39,-1.02 -0.01,-1.41C5.51,9.11 5.26,9 5,9c-0.27,0 -0.52,0.11 -0.71,0.3 -0.39,0.4 -0.39,1.02 0.01,1.41 0.19,0.18 0.44,0.29 0.7,0.29zM18,9h-7v2h9c0,-1.1 -0.9,-2 -2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13c0.78,0 1.55,-0.3 2.14,-0.9 1.16,-1.19 1.14,-3.08 -0.04,-4.24C6.51,7.29 5.75,7 5,7c-0.78,0 -1.55,0.3 -2.14,0.9 -1.16,1.19 -1.14,3.08 0.04,4.24 0.59,0.57 1.35,0.86 2.1,0.86zM4.29,9.3c0.19,-0.19 0.44,-0.3 0.71,-0.3 0.26,0 0.51,0.1 0.7,0.28 0.4,0.39 0.4,1.01 0.02,1.41 -0.2,0.2 -0.45,0.31 -0.72,0.31 -0.26,0 -0.51,-0.1 -0.7,-0.28 -0.4,-0.4 -0.4,-1.02 -0.01,-1.42zM18,7L9,7v6h13v-2c0,-2.21 -1.79,-4 -4,-4zM11,11L11,9h7c1.1,0 2,0.9 2,2h-9zM2,16h6v2h8v-2h6v-2L2,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_flat_angled.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_flat_angled.xml
deleted file mode 100644
index e1ee0ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_flat_angled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,16.64l-4,-1.45L10,17h4zM6,8.5c0.15,0 0.3,-0.03 0.44,-0.1 0.49,-0.24 0.7,-0.84 0.46,-1.34 -0.19,-0.41 -0.59,-0.56 -0.9,-0.56 -0.15,0 -0.3,0.03 -0.44,0.1 -0.32,0.16 -0.45,0.42 -0.5,0.56 -0.05,0.15 -0.12,0.44 0.04,0.77 0.2,0.42 0.59,0.57 0.9,0.57zM19.16,11.02l-6.69,-2.41 -0.7,1.91 8.59,3.11 0.01,-0.02c0.19,-0.51 0.17,-1.05 -0.06,-1.53 -0.23,-0.5 -0.63,-0.87 -1.15,-1.06z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.5,12.14L8,14.48L8,19h8v-1.63L20.52,19l0.69,-1.89 -19.02,-6.86 -0.69,1.89zM10,15.19l4,1.44L14,17h-4v-1.81zM19.84,9.14l-8.56,-3.09 -2.08,5.66 12.36,4.47 0.69,-1.89c0.77,-2.09 -0.31,-4.39 -2.41,-5.15zM20.37,13.6l-0.01,0.02 -8.59,-3.11 0.7,-1.91 6.69,2.41c0.52,0.19 0.93,0.56 1.15,1.05 0.23,0.49 0.25,1.04 0.06,1.54zM6,10.5c0.44,0 0.88,-0.1 1.3,-0.3 1.49,-0.72 2.12,-2.51 1.41,-4C8.19,5.13 7.12,4.5 6,4.5c-0.44,0 -0.88,0.1 -1.3,0.3 -1.49,0.71 -2.12,2.5 -1.4,4 0.51,1.07 1.58,1.7 2.7,1.7zM5.06,7.16c0.05,-0.14 0.18,-0.4 0.51,-0.56 0.14,-0.06 0.28,-0.1 0.43,-0.1 0.31,0 0.7,0.15 0.9,0.56 0.24,0.5 0.02,1.1 -0.47,1.34 -0.14,0.06 -0.28,0.1 -0.43,0.1 -0.3,0 -0.7,-0.15 -0.89,-0.56 -0.17,-0.34 -0.1,-0.63 -0.05,-0.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_individual_suite.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_individual_suite.xml
deleted file mode 100644
index 2e2cec50..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_individual_suite.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-6v6h8v-4c0,-1.1 -0.9,-2 -2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14c1.66,0 3,-1.34 3,-3S8.66,8 7,8s-3,1.34 -3,3 1.34,3 3,3zM7,10c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,7h-8v8L3,15L3,7L1,7v10h22v-6c0,-2.21 -1.79,-4 -4,-4zM21,15h-8L13,9h6c1.1,0 2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_extra.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_extra.xml
deleted file mode 100644
index 59ae273..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12L4,3L2,3v9c0,2.76 2.24,5 5,5h6v-2L7,15c-1.66,0 -3,-1.34 -3,-3zM22.83,17.24c-0.38,-0.72 -1.29,-0.97 -2.03,-0.63l-1.09,0.5 -3.41,-6.98C15.96,9.45 15.27,9 14.51,9L11,9L11,3L5,3v8c0,1.66 1.34,3 3,3h7l3.41,7 3.72,-1.7c0.77,-0.36 1.1,-1.3 0.7,-2.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_normal.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_normal.xml
deleted file mode 100644
index 268dfd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12L5,3L3,3v9c0,2.76 2.24,5 5,5h6v-2L8,15c-1.66,0 -3,-1.34 -3,-3zM20.5,18L19,18v-7c0,-1.1 -0.9,-2 -2,-2h-5L12,3L6,3v8c0,1.65 1.35,3 3,3h7v7h4.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_reduced.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_reduced.xml
deleted file mode 100644
index 2500187..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_legroom_reduced.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.97,19.2c0.18,0.96 -0.55,1.8 -1.47,1.8H14v-3l1,-4H9c-1.65,0 -3,-1.35 -3,-3V3h6v6h5c1.1,0 2,0.9 2,2l-2,7h1.44c0.73,0 1.39,0.49 1.53,1.2zM5,12V3H3v9c0,2.76 2.24,5 5,5h4v-2H8c-1.66,0 -3,-1.34 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_recline_extra.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_recline_extra.xml
deleted file mode 100644
index 7fb9075..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_recline_extra.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.35,5.64c-0.9,-0.64 -1.12,-1.88 -0.49,-2.79 0.63,-0.9 1.88,-1.12 2.79,-0.49 0.9,0.64 1.12,1.88 0.49,2.79 -0.64,0.9 -1.88,1.12 -2.79,0.49zM16,19L8.93,19c-1.48,0 -2.74,-1.08 -2.96,-2.54L4,7L2,7l1.99,9.76C4.37,19.2 6.47,21 8.94,21L16,21v-2zM16.23,15h-4.88l-1.03,-4.1c1.58,0.89 3.28,1.54 5.15,1.22L15.47,9.99c-1.63,0.31 -3.44,-0.27 -4.69,-1.25L9.14,7.47c-0.23,-0.18 -0.49,-0.3 -0.76,-0.38 -0.32,-0.09 -0.66,-0.12 -0.99,-0.06h-0.02c-1.23,0.22 -2.05,1.39 -1.84,2.61l1.35,5.92C7.16,16.98 8.39,18 9.83,18h6.85l3.82,3 1.5,-1.5 -5.77,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_recline_normal.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_recline_normal.xml
deleted file mode 100644
index 92ebee8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_seat_recline_normal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.59,5.41c-0.78,-0.78 -0.78,-2.05 0,-2.83s2.05,-0.78 2.83,0 0.78,2.05 0,2.83c-0.79,0.79 -2.05,0.79 -2.83,0zM6,16L6,7L4,7v9c0,2.76 2.24,5 5,5h6v-2L9,19c-1.66,0 -3,-1.34 -3,-3zM20,20.07L14.93,15L11.5,15v-3.68c1.4,1.15 3.6,2.16 5.5,2.16v-2.16c-1.66,0.02 -3.61,-0.87 -4.67,-2.04l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C8.01,7 7,8.01 7,9.25L7,15c0,1.66 1.34,3 3,3h5.07l3.5,3.5L20,20.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airline_stops.xml b/compose/material/material/icons/generator/raw-icons/twotone/airline_stops.xml
deleted file mode 100644
index f3b3692..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airline_stops.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.21,9.21C15.93,10.78 13.45,13.3 13,17h2v2H9v-2h2c-0.5,-4.5 -4.37,-8 -9,-8V7c4.39,0 8.22,2.55 10,6.3c1.13,-2.43 2.99,-4.25 4.78,-5.52L14,5h7v7L18.21,9.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airlines.xml b/compose/material/material/icons/generator/raw-icons/twotone/airlines.xml
deleted file mode 100644
index 28991ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airlines.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.05,6L5.8,18h11.54l2.25,-12H14.05zM14.5,14c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C17,12.88 15.88,14 14.5,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,18H5.8l8.25,-12h5.54L17.34,18zM13,4L2,20h17l3,-16H13zM14.5,9c-1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5S15.88,9 14.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airplane_ticket.xml b/compose/material/material/icons/generator/raw-icons/twotone/airplane_ticket.xml
deleted file mode 100644
index 32023e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airplane_ticket.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.01,8.54C5.2,9.23 6,10.52 6,12c0,1.47 -0.81,2.77 -2,3.46V18h16V6H4L4.01,8.54zM8.14,12.53l1.26,0.99l2.39,-0.64l-2.4,-4.16l1.4,-0.38l4.01,3.74l2.44,-0.65c0.51,-0.14 1.04,0.17 1.18,0.68c0.13,0.51 -0.17,1.04 -0.69,1.19l-8.86,2.36l-1.66,-2.88L8.14,12.53z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.19,4H4C2.9,4 2.01,4.9 2.01,6v4C3.11,10 4,10.9 4,12s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.19,4 20.19,4zM20,18H4v-2.54c1.19,-0.69 2,-1.99 2,-3.46c0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.73,13.3c0.52,-0.15 0.82,-0.68 0.69,-1.19c-0.14,-0.51 -0.67,-0.82 -1.18,-0.68l-2.44,0.65l-4.01,-3.74l-1.4,0.38l2.4,4.16L9.4,13.52l-1.26,-0.99l-0.93,0.25l1.66,2.88L17.73,13.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airplanemode_active.xml b/compose/material/material/icons/generator/raw-icons/twotone/airplanemode_active.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airplanemode_active.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airplanemode_inactive.xml b/compose/material/material/icons/generator/raw-icons/twotone/airplanemode_inactive.xml
deleted file mode 100644
index 4bcfad61..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airplanemode_inactive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,7.67V3.5C10.5,2.67 11.17,2 12,2c0.83,0 1.5,0.67 1.5,1.5V9l8.5,5v2l-4.49,-1.32L10.5,7.67zM19.78,22.61l1.41,-1.41L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-2.67L19.78,22.61z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airplay.xml b/compose/material/material/icons/generator/raw-icons/twotone/airplay.xml
deleted file mode 100644
index bafd09a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airplay.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22l12,0l-6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v12c0,1.1 0.9,2 2,2h4v-2H3V5h18v12h-4v2h4c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/airport_shuttle.xml b/compose/material/material/icons/generator/raw-icons/twotone/airport_shuttle.xml
deleted file mode 100644
index e113938..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/airport_shuttle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h0.78c0.55,-0.61 1.34,-1 2.22,-1s1.67,0.39 2.22,1h7.56c0.55,-0.61 1.34,-1 2.22,-1s1.67,0.39 2.22,1H21v-2H3v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5L3,5c-1.1,0 -2,0.89 -2,2v9h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2v-5l-6,-6zM15,7h1l3,3h-4L15,7zM9,7h4v3L9,10L9,7zM3,7h4v3L3,10L3,7zM6,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM18,17.25c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25 1.25,0.56 1.25,1.25 -0.56,1.25 -1.25,1.25zM21,14h-0.78c-0.55,-0.61 -1.34,-1 -2.22,-1s-1.67,0.39 -2.22,1L8.22,14c-0.55,-0.61 -1.33,-1 -2.22,-1s-1.67,0.39 -2.22,1L3,14v-2h18v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/alarm.xml b/compose/material/material/icons/generator/raw-icons/twotone/alarm.xml
deleted file mode 100644
index 7364ce7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/alarm.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.86,0 -7,3.14 -7,7s3.14,7 7,7 7,-3.14 7,-7 -3.14,-7 -7,-7zM15.75,16.85L11,14L11,8h1.5v5.25l4,2.37 -0.75,1.23z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8L11,8v6l4.75,2.85 0.75,-1.23 -4,-2.37zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/alarm_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/alarm_add.xml
deleted file mode 100644
index 7737e22..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/alarm_add.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.86,0 -7,3.14 -7,7s3.14,7 7,7 7,-3.14 7,-7 -3.14,-7 -7,-7zM16,14h-3v3h-2v-3L8,14v-2h3L11,9h2v3h3v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7zM13,9h-2v3L8,12v2h3v3h2v-3h3v-2h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/alarm_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/alarm_off.xml
deleted file mode 100644
index b273481..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/alarm_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.04,6.29C10.66,6.11 11.32,6 12,6c3.86,0 7,3.14 7,7 0,0.68 -0.11,1.34 -0.29,1.96l1.56,1.56c0.47,-1.08 0.73,-2.27 0.73,-3.52 0,-4.97 -4.03,-9 -9,-9 -1.25,0 -2.44,0.26 -3.53,0.72l1.57,1.57zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM19.24,18.32l-1.43,-1.43 -9.7,-9.7 -1.43,-1.43 -0.74,-0.74L4.52,3.6l-1.5,-1.5 -1.41,1.41 1.37,1.37 -0.92,0.77 1.28,1.54 1.06,-0.88 0.8,0.8C3.83,8.69 3,10.75 3,13c0,4.97 4.03,9 9,9 2.25,0 4.31,-0.83 5.89,-2.2l2.1,2.1 1.41,-1.41 -2.16,-2.17zM12,20c-3.86,0 -7,-3.14 -7,-7 0,-1.7 0.61,-3.26 1.62,-4.47l9.85,9.85C15.26,19.39 13.7,20 12,20zM7.48,3.73l0.46,-0.38 -1.28,-1.54 -0.6,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/alarm_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/alarm_on.xml
deleted file mode 100644
index 9a7a3b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/alarm_on.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.86,0 -7,3.14 -7,7s3.14,7 7,7 7,-3.14 7,-7 -3.14,-7 -7,-7zM10.53,16.64l-3.18,-3.18 1.06,-1.06 2.13,2.13 4.93,-4.95 1.06,1.06 -6,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.54,14.53L8.41,12.4l-1.06,1.06 3.18,3.18 6,-6 -1.06,-1.06zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/album.xml b/compose/material/material/icons/generator/raw-icons/twotone/album.xml
deleted file mode 100644
index 27acc62..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/album.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM12,16.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,7.5 12,7.5s4.5,2.01 4.5,4.5 -2.01,4.5 -4.5,4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,7.5c-2.49,0 -4.5,2.01 -4.5,4.5s2.01,4.5 4.5,4.5 4.5,-2.01 4.5,-4.5 -2.01,-4.5 -4.5,-4.5zM12,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_center.xml b/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_center.xml
deleted file mode 100644
index 548deed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2l2,0l0,5l8,0l0,3l-8,0l0,4l5,0l0,3l-5,0l0,5l-2,0l0,-5l-5,0l0,-3l5,0l0,-4l-8,0l0,-3l8,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_left.xml
deleted file mode 100644
index e1e2594..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,7H6v3h16V7zM16,14H6v3h10V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_right.xml
deleted file mode 100644
index 7f71206..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/align_horizontal_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h2v20h-2V2zM2,10h16V7H2V10zM8,17h10v-3H8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_bottom.xml b/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_bottom.xml
deleted file mode 100644
index 73c47f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,22H2v-2h20V22zM10,2H7v16h3V2zM17,8h-3v10h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_center.xml b/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_center.xml
deleted file mode 100644
index ab69d62..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11l-5,0l0,-5l-3,0l0,5l-4,0l0,-8l-3,0l0,8l-5.16,0l0,2l5.16,0l0,8l3,0l0,-8l4,0l0,5l3,0l0,-5l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_top.xml b/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_top.xml
deleted file mode 100644
index 2f71879..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/align_vertical_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,22h3V6H7V22zM14,16h3V6h-3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/all_inbox.xml b/compose/material/material/icons/generator/raw-icons/twotone/all_inbox.xml
deleted file mode 100644
index a6ad48c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/all_inbox.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v7c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM5,10h3.13c0.21,0.78 0.67,1.47 1.27,2L5,12v-2zM19,12h-4.4c0.6,-0.53 1.06,-1.22 1.27,-2L19,10v2zM19,8h-5v1c0,1.07 -0.93,2 -2,2s-2,-0.93 -2,-2L10,8L5,8L5,5h14v3zM14,15v1c0,0.47 -0.19,0.9 -0.48,1.25 -0.37,0.45 -0.92,0.75 -1.52,0.75s-1.15,-0.3 -1.52,-0.75c-0.29,-0.35 -0.48,-0.78 -0.48,-1.25v-1L3,15v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4h-7zM5,17h3.13c0.02,0.09 0.06,0.17 0.09,0.25 0.24,0.68 0.65,1.28 1.18,1.75L5,19v-2zM19,19h-4.4c0.54,-0.47 0.95,-1.07 1.18,-1.75 0.03,-0.08 0.07,-0.16 0.09,-0.25L19,17v2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.13,10L5,10v2h4.4c-0.6,-0.53 -1.06,-1.22 -1.27,-2zM14.6,12L19,12v-2h-3.13c-0.21,0.78 -0.67,1.47 -1.27,2zM8.22,17.25c-0.03,-0.08 -0.06,-0.16 -0.09,-0.25L5,17v2h4.4c-0.53,-0.47 -0.94,-1.07 -1.18,-1.75zM15.87,17c-0.02,0.09 -0.06,0.17 -0.09,0.25 -0.23,0.68 -0.64,1.28 -1.18,1.75L19,19v-2h-3.13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/all_inclusive.xml b/compose/material/material/icons/generator/raw-icons/twotone/all_inclusive.xml
deleted file mode 100644
index 9963de7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/all_inclusive.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.6,6.62c-1.44,0 -2.8,0.56 -3.77,1.53L7.8,14.39c-0.64,0.64 -1.49,0.99 -2.4,0.99 -1.87,0 -3.39,-1.51 -3.39,-3.38S3.53,8.62 5.4,8.62c0.91,0 1.76,0.35 2.44,1.03l1.13,1 1.51,-1.34L9.22,8.2C8.2,7.18 6.84,6.62 5.4,6.62 2.42,6.62 0,9.04 0,12s2.42,5.38 5.4,5.38c1.44,0 2.8,-0.56 3.77,-1.53l7.03,-6.24c0.64,-0.64 1.49,-0.99 2.4,-0.99 1.87,0 3.39,1.51 3.39,3.38s-1.52,3.38 -3.39,3.38c-0.9,0 -1.76,-0.35 -2.44,-1.03l-1.14,-1.01 -1.51,1.34 1.27,1.12c1.02,1.01 2.37,1.57 3.82,1.57 2.98,0 5.4,-2.41 5.4,-5.38s-2.42,-5.37 -5.4,-5.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/all_out.xml b/compose/material/material/icons/generator/raw-icons/twotone/all_out.xml
deleted file mode 100644
index a84de34..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/all_out.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v4l4,-4zM16,4l4,4L20,4zM20,20v-4l-4,4zM4,20h4l-4,-4zM19,12c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7 3.13,7 7,7 7,-3.13 7,-7zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/alt_route.xml b/compose/material/material/icons/generator/raw-icons/twotone/alt_route.xml
deleted file mode 100644
index 75b0f0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/alt_route.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.16l-1.42,1.42c-0.68,-0.69 -1.34,-1.58 -1.79,-2.94l1.94,-0.49C8.83,10.04 9.28,10.65 9.78,11.16zM11,6L7,2L3,6h3.02C6.04,6.81 6.1,7.54 6.21,8.17l1.94,-0.49C8.08,7.2 8.03,6.63 8.02,6H11zM21,6l-4,-4l-4,4h2.99c-0.1,3.68 -1.28,4.75 -2.54,5.88c-0.5,0.44 -1.01,0.92 -1.45,1.55c-0.34,-0.49 -0.73,-0.88 -1.13,-1.24L9.46,13.6C10.39,14.45 11,15.14 11,17c0,0 0,0 0,0h0v5h2v-5c0,0 0,0 0,0c0,-2.02 0.71,-2.66 1.79,-3.63c1.38,-1.24 3.08,-2.78 3.2,-7.37H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/alternate_email.xml b/compose/material/material/icons/generator/raw-icons/twotone/alternate_email.xml
deleted file mode 100644
index e463cb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/alternate_email.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21.95h5v-2h-5c-4.34,0 -8,-3.66 -8,-8s3.66,-8 8,-8 8,3.66 8,8v1.43c0,0.79 -0.71,1.57 -1.5,1.57s-1.5,-0.78 -1.5,-1.57v-1.43c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5 2.24,5 5,5c1.38,0 2.64,-0.56 3.54,-1.47 0.65,0.89 1.77,1.47 2.96,1.47 1.97,0 3.5,-1.6 3.5,-3.57v-1.43c0,-5.52 -4.48,-10 -10,-10s-10,4.48 -10,10 4.48,10 10,10zM12,14.95c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"
-      android:fillAlpha="0.9"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/amp_stories.xml b/compose/material/material/icons/generator/raw-icons/twotone/amp_stories.xml
deleted file mode 100644
index 5ba0399..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/amp_stories.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v11h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10V4H7V19zM9,6h6v11H9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h2v11h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h2v11h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/analytics.xml b/compose/material/material/icons/generator/raw-icons/twotone/analytics.xml
deleted file mode 100644
index 3ed68b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/analytics.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v14h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7h2v10h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/anchor.xml b/compose/material/material/icons/generator/raw-icons/twotone/anchor.xml
deleted file mode 100644
index 7ad4f67..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/anchor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15l1.55,1.55c-0.96,1.69 -3.33,3.04 -5.55,3.37V11h3V9h-3V7.82C14.16,7.4 15,6.3 15,5c0,-1.65 -1.35,-3 -3,-3S9,3.35 9,5c0,1.3 0.84,2.4 2,2.82V9H8v2h3v8.92c-2.22,-0.33 -4.59,-1.68 -5.55,-3.37L7,15l-4,-3v3c0,3.88 4.92,7 9,7s9,-3.12 9,-7v-3L17,15zM12,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/android.xml b/compose/material/material/icons/generator/raw-icons/twotone/android.xml
deleted file mode 100644
index 28c533f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/android.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.6,9.48l1.84,-3.18c0.16,-0.31 0.04,-0.69 -0.26,-0.85c-0.29,-0.15 -0.65,-0.06 -0.83,0.22l-1.88,3.24c-2.86,-1.21 -6.08,-1.21 -8.94,0L5.65,5.67c-0.19,-0.29 -0.58,-0.38 -0.87,-0.2C4.5,5.65 4.41,6.01 4.56,6.3L6.4,9.48C3.3,11.25 1.28,14.44 1,18h22C22.72,14.44 20.7,11.25 17.6,9.48zM7,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25S8.25,13.31 8.25,14C8.25,14.69 7.69,15.25 7,15.25zM17,15.25c-0.69,0 -1.25,-0.56 -1.25,-1.25c0,-0.69 0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25C18.25,14.69 17.69,15.25 17,15.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/animation.xml b/compose/material/material/icons/generator/raw-icons/twotone/animation.xml
deleted file mode 100644
index d6a196a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/animation.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12c-0.63,0.84 -1,1.88 -1,3c0,2.76 2.24,5 5,5c1.12,0 2.16,-0.37 3,-1C8.13,19 5,15.87 5,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4c-1.13,0 -2.16,0.37 -3,1c3.87,0.01 7,3.14 7,7c0.63,-0.84 1,-1.88 1,-3C20,6.24 17.76,4 15,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-0.6,0 -1.17,0.11 -1.7,0.3C10.11,7.83 10,8.4 10,9c0,2.76 2.24,5 5,5c0.6,0 1.17,-0.11 1.7,-0.3c0.19,-0.53 0.3,-1.1 0.3,-1.7C17,9.24 14.76,7 12,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9c-0.63,0.84 -1,1.88 -1,3c0,2.76 2.24,5 5,5c1.12,0 2.16,-0.37 3,-1C11.13,15.99 8,12.86 8,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2c-2.71,0 -5.05,1.54 -6.22,3.78c-1.28,0.67 -2.34,1.72 -3,3C3.54,9.95 2,12.29 2,15c0,3.87 3.13,7 7,7c2.71,0 5.05,-1.54 6.22,-3.78c1.28,-0.67 2.34,-1.72 3,-3C20.46,14.05 22,11.71 22,9C22,5.13 18.87,2 15,2zM9,20c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.87 3.13,7 7,7C11.16,19.63 10.12,20 9,20zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-1.12 0.37,-2.16 1,-3c0,3.86 3.13,6.99 7,7C14.16,16.63 13.12,17 12,17zM16.7,13.7C16.17,13.89 15.6,14 15,14c-2.76,0 -5,-2.24 -5,-5c0,-0.6 0.11,-1.17 0.3,-1.7C10.83,7.11 11.4,7 12,7c2.76,0 5,2.24 5,5C17,12.6 16.89,13.17 16.7,13.7zM19,12c0,-3.86 -3.13,-6.99 -7,-7c0.84,-0.63 1.87,-1 3,-1c2.76,0 5,2.24 5,5C20,10.12 19.63,11.16 19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/announcement.xml b/compose/material/material/icons/generator/raw-icons/twotone/announcement.xml
deleted file mode 100644
index 5116a86..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/announcement.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v13.17l0.59,-0.59 0.58,-0.58L20,16L20,4L4,4zM13,15h-2v-2h2v2zM13,11h-2L11,5h2v6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16l-0.59,0.59 -0.58,0.58L4,4h16v12zM11,5h2v6h-2zM11,13h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/aod.xml b/compose/material/material/icons/generator/raw-icons/twotone/aod.xml
deleted file mode 100644
index 4e3a311..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/aod.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM8,10h8v1.5H8V10zM9,13h6v1.5H9V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h10v-1H7V21zM7,3v1h10V3H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/apartment.xml b/compose/material/material/icons/generator/raw-icons/twotone/apartment.xml
deleted file mode 100644
index d5b846b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/apartment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11V3H7v4H3v14h8v-4h2v4h8V11H17zM7,19H5v-2h2V19zM7,15H5v-2h2V15zM7,11H5V9h2V11zM11,15H9v-2h2V15zM11,11H9V9h2V11zM11,7H9V5h2V7zM15,15h-2v-2h2V15zM15,11h-2V9h2V11zM15,7h-2V5h2V7zM19,19h-2v-2h2V19zM19,15h-2v-2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/api.xml b/compose/material/material/icons/generator/raw-icons/twotone/api.xml
deleted file mode 100644
index b7f8f017..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/api.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12l-2,2l-2,-2l2,-2L14,12zM12,6l2.12,2.12l2.5,-2.5L12,1L7.38,5.62l2.5,2.5L12,6zM6,12l2.12,-2.12l-2.5,-2.5L1,12l4.62,4.62l2.5,-2.5L6,12zM18,12l-2.12,2.12l2.5,2.5L23,12l-4.62,-4.62l-2.5,2.5L18,12zM12,18l-2.12,-2.12l-2.5,2.5L12,23l4.62,-4.62l-2.5,-2.5L12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/app_blocking.xml b/compose/material/material/icons/generator/raw-icons/twotone/app_blocking.xml
deleted file mode 100644
index 49cc6a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/app_blocking.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C22,9.79 20.21,8 18,8zM15.5,12c0,-1.38 1.12,-2.5 2.5,-2.5c0.42,0 0.8,0.11 1.15,0.29l-3.36,3.36C15.61,12.8 15.5,12.42 15.5,12zM18,14.5c-0.42,0 -0.8,-0.11 -1.15,-0.29l3.36,-3.36c0.18,0.35 0.29,0.73 0.29,1.15C20.5,13.38 19.38,14.5 18,14.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V6V5V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-2v-1v-1h-2V18zM7,3h10v1H7V3zM17,21H7v-1h10V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/app_registration.xml b/compose/material/material/icons/generator/raw-icons/twotone/app_registration.xml
deleted file mode 100644
index d92617e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/app_registration.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17.86l0,2.14l2.1,0l5.98,-5.97l-2.12,-2.12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12.03l0,-2.03l-4,0l0,4l2.03,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.85,11.56l-1.41,-1.41c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.06,1.06l2.12,2.12l1.06,-1.06C21.05,12.07 21.05,11.76 20.85,11.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/app_settings_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/app_settings_alt.xml
deleted file mode 100644
index 6fc8240..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/app_settings_alt.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.81,12.74l-0.82,-0.63c0,-0.09 0,-0.13 0,-0.22l0.8,-0.63c0.16,-0.12 0.2,-0.34 0.1,-0.51l-0.85,-1.48c-0.07,-0.13 -0.21,-0.2 -0.35,-0.2c-0.05,0 -0.1,0.01 -0.15,0.03l-0.95,0.38c-0.08,-0.05 -0.11,-0.07 -0.19,-0.11l-0.15,-1.01C19.22,8.15 19.05,8 18.85,8h-1.71c-0.2,0 -0.37,0.15 -0.4,0.34L16.6,9.35c-0.03,0.02 -0.07,0.03 -0.1,0.05c-0.03,0.02 -0.06,0.04 -0.09,0.06l-0.95,-0.38c-0.05,-0.02 -0.1,-0.03 -0.15,-0.03c-0.14,0 -0.27,0.07 -0.35,0.2l-0.85,1.48c-0.1,0.17 -0.06,0.39 0.1,0.51l0.8,0.63c0,0.09 0,0.13 0,0.23l-0.8,0.63c-0.16,0.12 -0.2,0.34 -0.1,0.51l0.85,1.48c0.07,0.13 0.21,0.2 0.35,0.2c0.05,0 0.1,-0.01 0.15,-0.03l0.95,-0.37c0.08,0.05 0.12,0.07 0.2,0.11l0.15,1.01c0.03,0.2 0.2,0.34 0.4,0.34h1.71c0.2,0 0.37,-0.15 0.4,-0.34l0.15,-1.01c0.03,-0.02 0.07,-0.03 0.1,-0.05c0.03,-0.02 0.06,-0.04 0.09,-0.06l0.95,0.38c0.05,0.02 0.1,0.03 0.15,0.03c0.14,0 0.27,-0.07 0.35,-0.2l0.85,-1.48C22.01,13.08 21.97,12.86 21.81,12.74zM18,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C19.5,12.83 18.83,13.5 18,13.5zM17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18zM7,3h10v1H7V3zM17,21H7v-1h10V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/app_shortcut.xml b/compose/material/material/icons/generator/raw-icons/twotone/app_shortcut.xml
deleted file mode 100644
index e9a455a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/app_shortcut.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18zM7,3h10v1H7V3zM17,21H7v-1h10V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,9.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62l-0.62,-1.38l-0.62,1.38l-1.38,0.62z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8l-1.25,2.75l-2.75,1.25l2.75,1.25l1.25,2.75l1.25,-2.75l2.75,-1.25l-2.75,-1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13l-0.62,1.38l-1.38,0.62l1.38,0.62l0.62,1.38l0.62,-1.38l1.38,-0.62l-1.38,-0.62z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/approval.xml b/compose/material/material/icons/generator/raw-icons/twotone/approval.xml
deleted file mode 100644
index fe2b154..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/approval.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,16h12v2h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-1.66,0 -3,1.34 -3,3l3,4l3,-4C15,5.34 13.66,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C9.24,2 7,4.24 7,7l5,7l5,-7C17,4.24 14.76,2 12,2zM12,11L9,7c0,-1.66 1.34,-3 3,-3s3,1.34 3,3L12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14h-6H6c-1.1,0 -2,0.9 -2,2v6h16v-6C20,14.9 19.1,14 18,14zM18,18H6v-2h12V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/apps.xml b/compose/material/material/icons/generator/raw-icons/twotone/apps.xml
deleted file mode 100644
index 374e8f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/apps.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4L8,4L4,4v4zM10,20h4v-4h-4v4zM4,20h4v-4L4,16v4zM4,14h4v-4L4,10v4zM10,14h4v-4h-4v4zM16,4v4h4L20,4h-4zM10,8h4L14,4h-4v4zM16,14h4v-4h-4v4zM16,20h4v-4h-4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/apps_outage.xml b/compose/material/material/icons/generator/raw-icons/twotone/apps_outage.xml
deleted file mode 100644
index bd84f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/apps_outage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h4V4H4V8zM10,20h4v-4h-4V20zM4,20h4v-4H4V20zM4,14h4v-4H4V14zM10,14h4v-4h-4V14zM16,20h4v-4h-4V20zM19,0c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S21.76,0 19,0zM19.5,8h-1V7h1V8zM19.5,6h-1V2h1V6zM16,14h4v-2.07C19.67,11.98 19.34,12 19,12c-1.07,0 -2.09,-0.24 -3,-0.68V14zM10,4v4h2.68C12.24,7.09 12,6.07 12,5c0,-0.34 0.02,-0.67 0.07,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/architecture.xml b/compose/material/material/icons/generator/raw-icons/twotone/architecture.xml
deleted file mode 100644
index 3a8298e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/architecture.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.36,18.78L6.61,21l1.62,-1.54l2.77,-7.6c-0.68,-0.17 -1.28,-0.51 -1.77,-0.98L6.36,18.78z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.77,10.88c-0.49,0.47 -1.1,0.81 -1.77,0.98l2.77,7.6L17.39,21l0.26,-2.22L14.77,10.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.3 -0.84,-2.4 -2,-2.82V3h-2v2.18C9.84,5.6 9,6.7 9,8c0,1.66 1.34,3 3,3S15,9.66 15,8zM12,9c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,8.55 12.55,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/archive.xml b/compose/material/material/icons/generator/raw-icons/twotone/archive.xml
deleted file mode 100644
index 5990348..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/archive.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,8L5,8v11zM10.55,13v-3h2.91v3L16,13l-4,4 -4,-4h2.55z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h-2.55v-3h-2.9v3L8,13l4,4zM20.54,5.23l-1.39,-1.68C18.88,3.21 18.47,3 18,3L6,3c-0.47,0 -0.88,0.21 -1.16,0.55L3.46,5.23C3.17,5.57 3,6.02 3,6.5L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6.5c0,-0.48 -0.17,-0.93 -0.46,-1.27zM6.24,5h11.52l0.81,0.97L5.44,5.97l0.8,-0.97zM19,19L5,19L5,8h14v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/area_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/area_chart.xml
deleted file mode 100644
index a32e449..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/area_chart.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,16.95l-7,-5.45l-4,5.5l-3,-2.4l0,-3.6l2.44,1.83l4.96,-6.95l3.9,3.12l2.7,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7l-5,-4l-5,7L3,7v13h18V7H17zM19,16.95l-7,-5.45L8,17l-3,-2.4V11l2.44,1.83l4.96,-6.95L16.3,9H19V16.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_back.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_back.xml
deleted file mode 100644
index 2a31b2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_back.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_back_ios.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_back_ios.xml
deleted file mode 100644
index d72bfd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_back_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.51,3.87L15.73,2.1 5.84,12l9.9,9.9 1.77,-1.77L9.38,12l8.13,-8.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_back_ios_new.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_back_ios_new.xml
deleted file mode 100644
index c056a2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_back_ios_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.77,3.77l-1.77,-1.77l-10,10l10,10l1.77,-1.77l-8.23,-8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_down.xml
deleted file mode 100644
index 0a386f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_down.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM12,16l-4,-4h3l0,-4h2l0,4h3L12,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13,12l0,-4h-2l0,4H8l4,4l4,-4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_left.xml
deleted file mode 100644
index bc7603d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_left.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8s3.59,-8 8,-8S20,7.59 20,12M12,13l4,0v-2l-4,0V8l-4,4l4,4V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8s3.59,-8 8,-8S20,7.59 20,12M22,12c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10C17.52,22 22,17.52 22,12L22,12zM12,13l4,0v-2l-4,0V8l-4,4l4,4V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_right.xml
deleted file mode 100644
index 01a31b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_right.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8s-3.59,8 -8,8S4,16.41 4,12M12,11l-4,0v2l4,0v3l4,-4l-4,-4V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8s-3.59,8 -8,8S4,16.41 4,12M2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12L2,12zM12,11l-4,0v2l4,0v3l4,-4l-4,-4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_up.xml
deleted file mode 100644
index 44b7eca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_circle_up.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20M11,12l0,4h2l0,-4h3l-4,-4l-4,4H11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20M12,22c5.52,0 10,-4.48 10,-10c0,-5.52 -4.48,-10 -10,-10C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22L12,22zM11,12l0,4h2l0,-4h3l-4,-4l-4,4H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_downward.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_downward.xml
deleted file mode 100644
index 8f9be44..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_downward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12l-1.41,-1.41L13,16.17V4h-2v12.17l-5.58,-5.59L4,12l8,8 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_down.xml
deleted file mode 100644
index e74555d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10l5,5 5,-5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_down_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_down_circle.xml
deleted file mode 100644
index 76a0e5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_down_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM12,15l-4,-4h8l-4,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,15l4,-4L8,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_up.xml
deleted file mode 100644
index dcd2b09..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_drop_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14l5,-5 5,5H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_forward.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_forward.xml
deleted file mode 100644
index bb9a6ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_forward.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4l-1.41,1.41L16.17,11H4v2h12.17l-5.58,5.59L12,20l8,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_forward_ios.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_forward_ios.xml
deleted file mode 100644
index a71005d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_forward_ios.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.23,20.23l1.77,1.77l10,-10l-10,-10l-1.77,1.77l8.23,8.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_left.xml
deleted file mode 100644
index fad3985..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7l-5,5 5,5V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_outward.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_outward.xml
deleted file mode 100644
index 842e1d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_outward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6l0,2l8.59,0l-9.59,9.59l1.41,1.41l9.59,-9.59l0,8.59l2,0l0,-12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_right.xml
deleted file mode 100644
index 11d5c2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17l5,-5 -5,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_right_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_right_alt.xml
deleted file mode 100644
index 6a97ef4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_right_alt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,11H4v2h12.01v3L20,12l-3.99,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/arrow_upward.xml b/compose/material/material/icons/generator/raw-icons/twotone/arrow_upward.xml
deleted file mode 100644
index 07b7a83..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/arrow_upward.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12l1.41,1.41L11,7.83V20h2V7.83l5.58,5.59L20,12l-8,-8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/art_track.xml b/compose/material/material/icons/generator/raw-icons/twotone/art_track.xml
deleted file mode 100644
index 8835b76..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/art_track.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h8v2h-8zM14,11h8v2h-8zM14,15h8v2h-8zM4,17h6c1.1,0 2,-0.9 2,-2L12,9c0,-1.1 -0.9,-2 -2,-2L4,7c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2zM5.25,12.75l1.25,1.51L8.25,12l2.25,3h-7l1.75,-2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/article.xml b/compose/material/material/icons/generator/raw-icons/twotone/article.xml
deleted file mode 100644
index 3e85394..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/article.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14V5H5zM14,17H7v-2h7V17zM17,13H7v-2h10V13zM17,9H7V7h10V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19zM17,13H7v-2h10V13zM17,9H7V7h10V9zM14,17H7v-2h7V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/twotone/aspect_ratio.xml
deleted file mode 100644
index 376ccaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/aspect_ratio.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19.01h18V4.99H3v14.02zM14,15h3v-3h2v5h-5v-2zM5,7h5v2H7v3H5V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02zM7,9h3L10,7L5,7v5h2zM19,12h-2v3h-3v2h5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assessment.xml b/compose/material/material/icons/generator/raw-icons/twotone/assessment.xml
deleted file mode 100644
index c96e09d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assessment.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14L19,5L5,5zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,10h2v7L7,17zM11,7h2v10h-2zM15,13h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assignment.xml b/compose/material/material/icons/generator/raw-icons/twotone/assignment.xml
deleted file mode 100644
index da6f346..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assignment.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14L19,5L5,5zM14,17L7,17v-2h7v2zM17,13L7,13v-2h10v2zM17,9L7,9L7,7h10v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h7v2L7,17zM7,11h10v2L7,13zM7,7h10v2L7,9zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64S3,4.72 3,5v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assignment_ind.xml b/compose/material/material/icons/generator/raw-icons/twotone/assignment_ind.xml
deleted file mode 100644
index 9d557ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assignment_ind.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5v14h14L19,5zM12,6c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM18,18L6,18v-1.53c0,-2.5 3.97,-3.58 6,-3.58s6,1.08 6,3.58L18,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.66,3.88c-0.14,-0.21 -0.33,-0.4 -0.54,-0.54 -0.11,-0.07 -0.22,-0.13 -0.34,-0.18 -0.24,-0.1 -0.5,-0.16 -0.78,-0.16h-4.18C14.4,1.84 13.3,1 12,1s-2.4,0.84 -2.82,2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c0.28,0 0.54,-0.06 0.78,-0.16 0.12,-0.05 0.23,-0.11 0.34,-0.18 0.21,-0.14 0.4,-0.33 0.54,-0.54 0.21,-0.32 0.34,-0.71 0.34,-1.12L21,5c0,-0.41 -0.13,-0.8 -0.34,-1.12zM12,2.75c0.22,0 0.41,0.1 0.55,0.25 0.12,0.13 0.2,0.31 0.2,0.5 0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75c0,-0.19 0.08,-0.37 0.2,-0.5 0.14,-0.15 0.33,-0.25 0.55,-0.25zM19,19L5,19L5,5h14v14zM12,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM12,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM12,12.88c-2.03,0 -6,1.08 -6,3.58L6,18h12v-1.53c0,-2.51 -3.97,-3.59 -6,-3.59zM8.31,16c0.69,-0.56 2.38,-1.12 3.69,-1.12s3.01,0.56 3.69,1.12L8.31,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assignment_late.xml b/compose/material/material/icons/generator/raw-icons/twotone/assignment_late.xml
deleted file mode 100644
index cdc43fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assignment_late.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14L19,5L5,5zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2zM11,7h2v6h-2zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64S3,4.72 3,5v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assignment_return.xml b/compose/material/material/icons/generator/raw-icons/twotone/assignment_return.xml
deleted file mode 100644
index ead489b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assignment_return.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14L19,5L5,5zM16,14h-4v3l-5,-5 5,-5v3h4v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7l-5,5 5,5v-3h4v-4h-4zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64S3,4.72 3,5v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assignment_returned.xml b/compose/material/material/icons/generator/raw-icons/twotone/assignment_returned.xml
deleted file mode 100644
index 3b76a9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assignment_returned.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM10,12L10,8h4v4h3l-5,5 -5,-5h3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h-3L14,8h-4v4L7,12l5,5zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64S3,4.72 3,5v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assignment_turned_in.xml b/compose/material/material/icons/generator/raw-icons/twotone/assignment_turned_in.xml
deleted file mode 100644
index 3622f53..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assignment_turned_in.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM7.41,11.59L10,14.17l6.59,-6.59L18,9l-8,8 -4,-4 1.41,-1.41z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9l-1.41,-1.42L10,14.17l-2.59,-2.58L6,13l4,4zM19,3h-4.18C14.4,1.84 13.3,1 12,1c-1.3,0 -2.4,0.84 -2.82,2L5,3c-0.14,0 -0.27,0.01 -0.4,0.04 -0.39,0.08 -0.74,0.28 -1.01,0.55 -0.18,0.18 -0.33,0.4 -0.43,0.64S3,4.72 3,5v14c0,0.27 0.06,0.54 0.16,0.78s0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55 0.13,0.02 0.26,0.03 0.4,0.03h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,2.75c0.41,0 0.75,0.34 0.75,0.75s-0.34,0.75 -0.75,0.75 -0.75,-0.34 -0.75,-0.75 0.34,-0.75 0.75,-0.75zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assist_walker.xml b/compose/material/material/icons/generator/raw-icons/twotone/assist_walker.xml
deleted file mode 100644
index cca770a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assist_walker.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,4.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,17.72l-0.64,-6.37C19.06,10.58 18.41,10 17.64,10H16c-1.5,-0.02 -2.86,-0.54 -3.76,-1.44l-2,-1.98C10.08,6.42 9.62,6 8.83,6C8.32,6 7.81,6.2 7.42,6.59L4.08,9.91c-0.53,0.68 -0.51,1.57 -0.21,2.13l1.43,2.8l-3.15,4.05l1.57,1.24l3.68,-4.73l-0.17,-1.36L8,14.75V20h2v-6.12l-2.12,-2.12l2.36,-2.36c0.94,0.94 1.72,1.82 3.59,2.32L13,20h1.5l0.41,-3.5h3.18l0.14,1.22c-0.44,0.26 -0.73,0.74 -0.73,1.28c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5C20.5,18.46 20.21,17.98 19.77,17.72zM15.09,15l0.41,-3.5h2l0.41,3.5H15.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assistant.xml b/compose/material/material/icons/generator/raw-icons/twotone/assistant.xml
deleted file mode 100644
index e817e1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assistant.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,18l0.59,0.59L12,20.17l1.59,-1.59 0.58,-0.58L19,18L19,4L5,4v14h4.83zM10.12,9.12L12,5l1.88,4.12L18,11l-4.12,1.88L12,17l-1.88,-4.12L6,11l4.12,-1.88z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h4l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2L5,2c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2zM5,4h14v14h-4.83l-0.59,0.59L12,20.17l-1.59,-1.59 -0.58,-0.58L5,18L5,4zM12,17l1.88,-4.12L18,11l-4.12,-1.88L12,5l-1.88,4.12L6,11l4.12,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assistant_direction.xml b/compose/material/material/icons/generator/raw-icons/twotone/assistant_direction.xml
deleted file mode 100644
index 6a1bd57..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assistant_direction.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.99,0 -9,4.01 -9,9s4.01,9 9,9s9,-4.01 9,-9S16.99,3 12,3zM12.54,19.8c-0.35,0.27 -0.79,0.27 -1.15,0L4.2,12.58c-0.27,-0.36 -0.27,-0.8 0,-1.16l7.19,-7.22c0.35,-0.27 0.79,-0.27 1.15,0l7.19,7.22c0.36,0.27 0.36,0.8 0,1.16L12.54,19.8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C5.9,1 1,5.9 1,12s4.9,11 11,11s11,-4.9 11,-11S18.1,1 12,1zM12,21c-4.99,0 -9,-4.01 -9,-9s4.01,-9 9,-9s9,4.01 9,9S16.99,21 12,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.73,11.42L12.54,4.2c-0.36,-0.27 -0.8,-0.27 -1.15,0L4.2,11.42c-0.27,0.36 -0.27,0.8 0,1.16l7.19,7.22c0.36,0.27 0.8,0.27 1.15,0l7.19,-7.22C20.09,12.22 20.09,11.69 19.73,11.42zM13.5,14.5V12H10v3H8v-4c0,-0.6 0.4,-1 1,-1h4.5V7.5L17,11L13.5,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assistant_photo.xml b/compose/material/material/icons/generator/raw-icons/twotone/assistant_photo.xml
deleted file mode 100644
index 982c59a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assistant_photo.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12l0.4,2H18V8h-5.24l-0.4,-2H7v6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14h5.6l0.4,2h7L20,6h-5.6L14,4L5,4v17h2v-7zM7,6h5.36l0.4,2L18,8v6h-3.36l-0.4,-2L7,12L7,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/assured_workload.xml b/compose/material/material/icons/generator/raw-icons/twotone/assured_workload.xml
deleted file mode 100644
index 6f473e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/assured_workload.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.47,6l11.06,0l-5.53,-2.76z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6L12,1L2,6v2h20V6zM6.47,6L12,3.24L17.53,6H6.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19v2h12.4c-0.21,-0.64 -0.32,-1.31 -0.36,-2H2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12.26l0,-2.26l-2,0l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14l-4,2v2.55c0,2.52 1.71,4.88 4,5.45c2.29,-0.57 4,-2.93 4,-5.45V16L20,14zM19.28,21l-2.03,-2.03l1.06,-1.06l0.97,0.97l2.41,-2.38l1.06,1.06L19.28,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/atm.xml b/compose/material/material/icons/generator/raw-icons/twotone/atm.xml
deleted file mode 100644
index 5aab1da..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/atm.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,13.5h2L5.5,15L7,15v-5c0,-0.55 -0.45,-1 -1,-1L3,9c-0.55,0 -1,0.45 -1,1v5h1.5v-1.5zM3.5,10.5h2L5.5,12h-2v-1.5zM17,10.5h1L18,14h1.5v-3.51h1L20.5,15L22,15v-5c0,-0.55 -0.45,-1 -1,-1h-4.5c-0.55,0 -1,0.45 -1,1v5L17,15v-4.5zM10.25,15h1.5v-4.5L14,10.5L14,9L8,9v1.5h2.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/attach_email.xml b/compose/material/material/icons/generator/raw-icons/twotone/attach_email.xml
deleted file mode 100644
index 5428ddd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/attach_email.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6l8,5l8,-5v3h2V4c0,-1.1 -0.9,-2 -2,-2H3C1.9,2 1.01,2.9 1.01,4L1,16c0,1.1 0.9,2 2,2h10v-2H3V6zM19,4l-8,5L3,4H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14v4c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V18h2v-4.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S15,12.12 15,13.5V18c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-4H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/attach_file.xml b/compose/material/material/icons/generator/raw-icons/twotone/attach_file.xml
deleted file mode 100644
index 2feb2a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/attach_file.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,23c3.04,0 5.5,-2.46 5.5,-5.5V6h-1.5v11.5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5v10.5c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V6H10v9.5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5V5c0,-2.21 -1.79,-4 -4,-4S7,2.79 7,5v12.5c0,3.04 2.46,5.5 5.5,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/attach_money.xml b/compose/material/material/icons/generator/raw-icons/twotone/attach_money.xml
deleted file mode 100644
index 552f060..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/attach_money.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,17.1c-2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c1.95,-0.37 3.5,-1.5 3.5,-3.55 0,-2.84 -2.43,-3.81 -4.7,-4.4 -2.27,-0.59 -3,-1.2 -3,-2.15 0,-1.09 1.01,-1.85 2.7,-1.85 1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-1.94,0.42 -3.5,1.68 -3.5,3.61 0,2.31 1.91,3.46 4.7,4.13 2.5,0.6 3,1.48 3,2.41 0,0.69 -0.49,1.79 -2.7,1.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/attachment.xml b/compose/material/material/icons/generator/raw-icons/twotone/attachment.xml
deleted file mode 100644
index dcdc76c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/attachment.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,16H7c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h12.5c1.38,0 2.5,1.12 2.5,2.5S20.88,13 19.5,13H9c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h9.5V9.5H9c-1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5h10.5c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4H7c-3.04,0 -5.5,2.46 -5.5,5.5s2.46,5.5 5.5,5.5h11.5V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/attractions.xml b/compose/material/material/icons/generator/raw-icons/twotone/attractions.xml
deleted file mode 100644
index 43a2fc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/attractions.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.98,12.02m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.15,14.42c0.23,-0.77 0.35,-1.58 0.35,-2.42s-0.12,-1.65 -0.35,-2.42c0.78,-0.6 1.02,-1.7 0.51,-2.58c-0.51,-0.88 -1.58,-1.23 -2.49,-0.85c-1.11,-1.17 -2.56,-2.03 -4.18,-2.42C13.85,2.75 13.01,2 12,2s-1.85,0.75 -1.98,1.73C8.39,4.12 6.95,4.98 5.83,6.15C4.92,5.77 3.85,6.12 3.34,7C2.83,7.88 3.07,8.98 3.85,9.58C3.62,10.35 3.5,11.16 3.5,12s0.12,1.65 0.35,2.42c-0.78,0.6 -1.02,1.7 -0.51,2.58c0.51,0.88 1.58,1.23 2.49,0.85c0.4,0.42 0.83,0.79 1.3,1.12L5.78,22h1.88l0.98,-2.19c0.44,0.19 0.9,0.34 1.38,0.46C10.15,21.25 10.99,22 12,22s1.85,-0.75 1.98,-1.73c0.46,-0.11 0.91,-0.26 1.34,-0.44L16.3,22h1.88l-1.34,-3c0.48,-0.34 0.93,-0.72 1.34,-1.15c0.91,0.38 1.99,0.03 2.49,-0.85S20.93,15.02 20.15,14.42zM13.56,18.75C13.19,18.29 12.63,18 12,18s-1.2,0.29 -1.57,0.75c-0.4,-0.09 -0.79,-0.21 -1.16,-0.37l1.43,-3.19c0.4,0.16 0.84,0.25 1.3,0.25c0.44,0 0.87,-0.08 1.26,-0.23l1.42,3.18C14.32,18.54 13.95,18.66 13.56,18.75zM10.48,12.02c0,-0.83 0.67,-1.5 1.5,-1.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5C11.15,13.52 10.48,12.85 10.48,12.02zM18.71,14.01c-0.61,0.07 -1.18,0.41 -1.52,0.99c-0.32,0.56 -0.34,1.2 -0.12,1.75c-0.28,0.29 -0.58,0.55 -0.9,0.79l-1.5,-3.35c0.49,-0.59 0.78,-1.34 0.78,-2.16c0,-1.89 -1.55,-3.41 -3.46,-3.41c-1.91,0 -3.46,1.53 -3.46,3.41c0,0.8 0.28,1.54 0.75,2.13l-1.52,3.39c-0.31,-0.23 -0.6,-0.48 -0.87,-0.76C7.15,16.23 7.13,15.57 6.8,15c-0.34,-0.59 -0.93,-0.94 -1.56,-0.99c-0.22,-0.68 -0.33,-1.4 -0.33,-2.15c0,-0.64 0.09,-1.26 0.25,-1.85c0.66,-0.03 1.3,-0.38 1.65,-1c0.37,-0.63 0.35,-1.38 0.01,-1.98C7.74,6.05 8.93,5.34 10.27,5c0.34,0.59 0.99,1 1.73,1s1.39,-0.4 1.73,-1c1.34,0.34 2.53,1.07 3.44,2.05C16.85,7.64 16.84,8.38 17.2,9c0.35,0.6 0.96,0.95 1.6,1c0.16,0.59 0.25,1.21 0.25,1.86C19.05,12.61 18.93,13.33 18.71,14.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/attribution.xml b/compose/material/material/icons/generator/raw-icons/twotone/attribution.xml
deleted file mode 100644
index c93ce7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/attribution.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM12,5c0.83,0 1.5,0.67 1.5,1.5S12.83,8 12,8s-1.5,-0.67 -1.5,-1.5S11.17,5 12,5zM14.75,14.5h-1.5L13.25,19h-2.5v-4.5h-1.5L9.25,9.88c0,-0.92 1.84,-1.38 2.75,-1.38s2.75,0.47 2.75,1.38v4.62z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,8.5c-0.91,0 -2.75,0.46 -2.75,1.38v4.62h1.5L10.75,19h2.5v-4.5h1.5L14.75,9.88c0,-0.91 -1.84,-1.38 -2.75,-1.38z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/audio_file.xml b/compose/material/material/icons/generator/raw-icons/twotone/audio_file.xml
deleted file mode 100644
index 4bc714e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/audio_file.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4H6v16h12V9h-5V4zM16,11v2h-3v3.75c0,1.24 -1.01,2.25 -2.25,2.25S8.5,17.99 8.5,16.75c0,-1.24 1.01,-2.25 2.25,-2.25c0.46,0 0.89,0.14 1.25,0.38V11H16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM18,20H6V4h7v5h5V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.88c-0.36,-0.24 -0.79,-0.38 -1.25,-0.38c-1.24,0 -2.25,1.01 -2.25,2.25c0,1.24 1.01,2.25 2.25,2.25S13,17.99 13,16.75V13h3v-2h-4V14.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/audiotrack.xml b/compose/material/material/icons/generator/raw-icons/twotone/audiotrack.xml
deleted file mode 100644
index 3ee49da..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/audiotrack.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21c2.21,0 4,-1.79 4,-4L14,7h4L18,3h-6v10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4zM10,15c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome.xml
deleted file mode 100644
index d8935dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.99,11.01l-0.99,-2.18l-0.99,2.18l-2.18,0.99l2.18,0.99l0.99,2.18l0.99,-2.18l2.18,-0.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9l1.25,-2.75l2.75,-1.25l-2.75,-1.25l-1.25,-2.75l-1.25,2.75l-2.75,1.25l2.75,1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-1.25,2.75l-2.75,1.25l2.75,1.25l1.25,2.75l1.25,-2.75l2.75,-1.25l-2.75,-1.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5,-5.5L17,12L11.5,9.5zM9.99,12.99L9,15.17l-0.99,-2.18L5.83,12l2.18,-0.99L9,8.83l0.99,2.18L12.17,12L9.99,12.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome_mosaic.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome_mosaic.xml
deleted file mode 100644
index 92e209b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome_mosaic.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h4v14h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.89,2 2,2h6V3H5C3.89,3 3,3.9 3,5zM9,19H5V5h4V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-6v8h8V5C21,3.9 20.1,3 19,3zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21h6c1.1,0 2,-0.9 2,-2v-6h-8V21zM15,15h4v4h-4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome_motion.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome_motion.xml
deleted file mode 100644
index 1ba6bbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_awesome_motion.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12h8v8h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H4C2.9,2 2,2.9 2,4v10h2V4h10V2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h-8c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-8C22,10.9 21.1,10 20,10zM20,20h-8v-8h8V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6H8C6.9,6 6,6.9 6,8v10h2V8h10V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_delete.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_delete.xml
deleted file mode 100644
index d769f42..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_delete.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7H4v10h5.08C9.03,16.67 9,16.34 9,16c0,-2.38 1.19,-4.47 3,-5.74V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2l-3.5,0l-1,-1l-5,0l-1,1l-3.5,0l0,2l14,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9c-0.7,0 -1.37,0.1 -2,0.29V5H2v12c0,1.1 0.9,2 2,2h5.68c1.12,2.36 3.53,4 6.32,4c3.87,0 7,-3.13 7,-7C23,12.13 19.87,9 16,9zM9,16c0,0.34 0.03,0.67 0.08,1H4V7h8v3.26C10.19,11.53 9,13.62 9,16zM16,21c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S18.76,21 16,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12l-1.5,0l0,5l3.6,2.1l0.8,-1.2l-2.9,-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_high.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_high.xml
deleted file mode 100644
index 80ebe93..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_high.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.415,18.167l7.17,-7.17l1.414,1.414l-7.17,7.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12.5l-0.94,2.06l-2.06,0.94l2.06,0.94l0.94,2.06l0.94,-2.06l2.06,-0.94l-2.06,-0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,9.12l-2.83,-2.83C14.68,6.1 14.43,6 14.17,6c-0.26,0 -0.51,0.1 -0.71,0.29L2.29,17.46c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83C5.32,21.9 5.57,22 5.83,22s0.51,-0.1 0.71,-0.29l11.17,-11.17C18.1,10.15 18.1,9.51 17.71,9.12zM5.83,19.59l-1.41,-1.41L11.59,11L13,12.41L5.83,19.59zM14.41,11L13,9.59l1.17,-1.17l1.41,1.41L14.41,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_normal.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_normal.xml
deleted file mode 100644
index 4bc99d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_normal.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.415,18.167l7.17,-7.17l1.414,1.414l-7.17,7.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,9.12l-2.83,-2.83C14.68,6.1 14.43,6 14.17,6c-0.26,0 -0.51,0.1 -0.71,0.29L2.29,17.46c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83C5.32,21.9 5.57,22 5.83,22s0.51,-0.1 0.71,-0.29l11.17,-11.17C18.1,10.15 18.1,9.51 17.71,9.12zM5.83,19.59l-1.41,-1.41L11.59,11L13,12.41L5.83,19.59zM14.41,11L13,9.59l1.17,-1.17l1.41,1.41L14.41,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_off.xml
deleted file mode 100644
index 9307d0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_fix_off.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.417,18.174l5.466,-5.466l1.414,1.414l-5.466,5.466z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7l0.94,-2.06l2.06,-0.94l-2.06,-0.94l-0.94,-2.06l-0.94,2.06l-2.06,0.94l2.06,0.94z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17,-2.17c0.39,-0.39 0.39,-1.02 0,-1.41l-2.83,-2.83C14.68,6.1 14.43,6 14.17,6c-0.26,0 -0.51,0.1 -0.71,0.29l-2.17,2.17l1.41,1.41L14.17,8.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l7.07,7.07l-6.17,6.17c-0.39,0.39 -0.39,1.02 0,1.41l2.83,2.83C5.32,21.9 5.57,22 5.83,22s0.51,-0.1 0.71,-0.29l6.17,-6.17l7.07,7.07l1.41,-1.41L2.81,2.81zM5.83,19.59l-1.41,-1.41l5.46,-5.46l1.41,1.41L5.83,19.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_graph.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_graph.xml
deleted file mode 100644
index 2b7174e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_graph.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.94L12,9l2.06,-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94zM4,14l0.94,-2.06L7,11l-2.06,-0.94L4,8l-0.94,2.06L1,11l2.06,0.94L4,14zM8.5,9l1.09,-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9zM4.5,20.5l6,-6.01l4,4L23,8.93l-1.41,-1.41l-7.09,7.97l-4,-4L3,19L4.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_mode.xml
deleted file mode 100644
index fc54b2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_mode.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.03,3.56c-1.67,-1.39 -3.74,-2.3 -6.03,-2.51v2.01c1.73,0.19 3.31,0.88 4.61,1.92L19.03,3.56z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3.06V1.05C8.71,1.25 6.64,2.17 4.97,3.56l1.42,1.42C7.69,3.94 9.27,3.25 11,3.06z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.98,6.39L3.56,4.97C2.17,6.64 1.26,8.71 1.05,11h2.01C3.25,9.27 3.94,7.69 4.98,6.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11h2.01c-0.21,-2.29 -1.12,-4.36 -2.51,-6.03l-1.42,1.42C20.06,7.69 20.75,9.27 20.94,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l3.44,1.56l1.56,3.44l1.56,-3.44l3.44,-1.56l-3.44,-1.56l-1.56,-3.44l-1.56,3.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c-3.11,0 -5.85,-1.59 -7.46,-4H7v-2H1v6h2v-2.7c1.99,2.84 5.27,4.7 9,4.7c4.87,0 9,-3.17 10.44,-7.56l-1.96,-0.45C19.25,18.48 15.92,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/auto_stories.xml b/compose/material/material/icons/generator/raw-icons/twotone/auto_stories.xml
deleted file mode 100644
index 7ac4dd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/auto_stories.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6.71v9.91C4.14,16.21 5.31,16 6.5,16c1.19,0 2.36,0.21 3.5,0.62V6.72C8.89,6.25 7.7,6 6.5,6C5.28,6 4.11,6.24 3,6.71z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,0.5l-5,5l0,9.5l5,-4.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.47,5.2C22,4.96 21.51,4.76 21,4.59v12.03C19.86,16.21 18.69,16 17.5,16c-1.9,0 -3.78,0.54 -5.5,1.58V5.48C10.38,4.55 8.51,4 6.5,4C4.71,4 3.02,4.44 1.53,5.2C1.2,5.36 1,5.71 1,6.08v12.08c0,0.58 0.47,0.99 1,0.99c0.16,0 0.32,-0.04 0.48,-0.12C3.69,18.4 5.05,18 6.5,18c2.07,0 3.98,0.82 5.5,2c1.52,-1.18 3.43,-2 5.5,-2c1.45,0 2.81,0.4 4.02,1.04c0.16,0.08 0.32,0.12 0.48,0.12c0.52,0 1,-0.41 1,-0.99V6.08C23,5.71 22.8,5.36 22.47,5.2zM10,16.62C8.86,16.21 7.69,16 6.5,16c-1.19,0 -2.36,0.21 -3.5,0.62V6.71C4.11,6.24 5.28,6 6.5,6C7.7,6 8.89,6.25 10,6.72V16.62z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/autofps_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/autofps_select.xml
deleted file mode 100644
index 43e257a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/autofps_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.03,6.3l-0.06,0l-1.02,2.89l2.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6S6,5.69 6,9S8.69,15 12,15zM11.37,5h1.25l2.63,7h-1.21l-0.63,-1.79h-2.83L9.96,12H8.74L11.37,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17h6v5h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/autorenew.xml b/compose/material/material/icons/generator/raw-icons/twotone/autorenew.xml
deleted file mode 100644
index 3c6d07f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/autorenew.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6v3l4,-4 -4,-4v3c-4.42,0 -8,3.58 -8,8 0,1.57 0.46,3.03 1.24,4.26L6.7,14.8c-0.45,-0.83 -0.7,-1.79 -0.7,-2.8 0,-3.31 2.69,-6 6,-6zM18.76,7.74L17.3,9.2c0.44,0.84 0.7,1.79 0.7,2.8 0,3.31 -2.69,6 -6,6v-3l-4,4 4,4v-3c4.42,0 8,-3.58 8,-8 0,-1.57 -0.46,-3.03 -1.24,-4.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/av_timer.xml b/compose/material/material/icons/generator/raw-icons/twotone/av_timer.xml
deleted file mode 100644
index 5f08ea6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/av_timer.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9h-1v4h2V5.08c3.39,0.49 6,3.39 6,6.92 0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-1.68 0.59,-3.22 1.58,-4.42L12,13l1.41,-1.41 -6.8,-6.8v0.02C4.42,6.45 3,9.05 3,12c0,4.97 4.02,9 9,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/baby_changing_station.xml b/compose/material/material/icons/generator/raw-icons/twotone/baby_changing_station.xml
deleted file mode 100644
index 890da27..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/baby_changing_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58,-4.63C4.96,6.25 6.22,5.69 7.3,6.18l4.15,1.83L14,8zM8,1C6.9,1 6,1.9 6,3s0.9,2 2,2s2,-0.9 2,-2S9.1,1 8,1zM9,19h12v-2H9V19zM19.5,16c0.83,0 1.5,-0.67 1.5,-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S18,13.67 18,14.5C18,15.33 18.67,16 19.5,16zM13,12c0,-0.55 -0.45,-1 -1,-1H9v2h2v1c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-3h-2v2h-2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/back_hand.xml b/compose/material/material/icons/generator/raw-icons/twotone/back_hand.xml
deleted file mode 100644
index 08dfc43..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/back_hand.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,16c0,3.31 -2.69,6 -6,6h0c-2.61,0 -4.95,-1.59 -5.91,-4.01l-2.6,-6.54l0.53,0.14c0.46,0.12 0.83,0.46 1,0.9L7,15h2V4.5C9,4.22 9.22,4 9.5,4S10,4.22 10,4.5V12h2V2.5C12,2.22 12.22,2 12.5,2S13,2.22 13,2.5V12h2V4c0,-0.28 0.22,-0.5 0.5,-0.5S16,3.72 16,4v8h2V7c0,-0.28 0.22,-0.5 0.5,-0.5S19,6.72 19,7L19,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7c0,-1.38 -1.12,-2.5 -2.5,-2.5c-0.17,0 -0.34,0.02 -0.5,0.05V4c0,-1.38 -1.12,-2.5 -2.5,-2.5c-0.23,0 -0.46,0.03 -0.67,0.09C14.46,0.66 13.56,0 12.5,0c-1.23,0 -2.25,0.89 -2.46,2.06C9.87,2.02 9.69,2 9.5,2C8.12,2 7,3.12 7,4.5v5.89c-0.34,-0.31 -0.76,-0.54 -1.22,-0.66L5.01,9.52c-0.83,-0.23 -1.7,0.09 -2.19,0.83c-0.38,0.57 -0.4,1.31 -0.15,1.95l2.56,6.43C6.49,21.91 9.57,24 13,24h0c4.42,0 8,-3.58 8,-8V7zM19,16c0,3.31 -2.69,6 -6,6h0c-2.61,0 -4.95,-1.59 -5.91,-4.01l-2.6,-6.54l0.53,0.14c0.46,0.12 0.83,0.46 1,0.9L7,15h2V4.5C9,4.22 9.22,4 9.5,4S10,4.22 10,4.5V12h2V2.5C12,2.22 12.22,2 12.5,2S13,2.22 13,2.5V12h2V4c0,-0.28 0.22,-0.5 0.5,-0.5S16,3.72 16,4v8h2V7c0,-0.28 0.22,-0.5 0.5,-0.5S19,6.72 19,7L19,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/backpack.xml b/compose/material/material/icons/generator/raw-icons/twotone/backpack.xml
deleted file mode 100644
index 72555e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/backpack.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20H6V8c0,-1.1 0.9,-2 2,-2h8c1.1,0 2,0.9 2,2V20zM7.5,12v2h7v2h2v-4H7.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59 4,6.14 4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8C20,6.14 18.72,4.59 17,4.14zM18,20H6V8c0,-1.1 0.9,-2 2,-2h8c1.1,0 2,0.9 2,2V20zM7.5,12v2h7v2h2v-4H7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/backspace.xml b/compose/material/material/icons/generator/raw-icons/twotone/backspace.xml
deleted file mode 100644
index 03e45e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/backspace.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,5L2.4,12l4.67,7H22V5H7.06c0.01,0 0.01,0 0,0zM9,8.41L10.41,7 14,10.59 17.59,7 19,8.41 15.41,12 19,15.59 17.59,17 14,13.41 10.41,17 9,15.59 12.59,12 9,8.41z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0,12l5.41,8.11c0.36,0.53 0.9,0.89 1.59,0.89h15c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM22,19L7.07,19L2.4,12l4.66,-7L22,5v14zM10.41,17L14,13.41 17.59,17 19,15.59 15.41,12 19,8.41 17.59,7 14,10.59 10.41,7 9,8.41 12.59,12 9,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/backup.xml b/compose/material/material/icons/generator/raw-icons/twotone/backup.xml
deleted file mode 100644
index 8982a35..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/backup.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.21,12.04l-1.53,-0.11 -0.3,-1.5C16.88,7.86 14.62,6 12,6 9.94,6 8.08,7.14 7.12,8.96l-0.5,0.95 -1.07,0.11C3.53,10.24 2,11.95 2,14c0,2.21 1.79,4 4,4h13c1.65,0 3,-1.35 3,-3 0,-1.55 -1.22,-2.86 -2.79,-2.96zM13.45,13v3h-2.91v-3L8,13l4,-4 4,4h-2.55z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM8,13h2.55v3h2.9v-3H16l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/backup_table.xml b/compose/material/material/icons/generator/raw-icons/twotone/backup_table.xml
deleted file mode 100644
index 158f8e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/backup_table.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11h5v5h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11h5v5h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h12v5h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6v14H6v2h14c1.1,0 2,-0.9 2,-2V6H20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2,2.9 2,4v12c0,1.1 0.9,2 2,2h12C17.1,18 18,17.1 18,16zM4,4h12v5H4V4zM9,16H4v-5h5V16zM11,11h5v5h-5V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/badge.xml b/compose/material/material/icons/generator/raw-icons/twotone/badge.xml
deleted file mode 100644
index 29eb288..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/badge.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,13.5h4V12h-4V13.5zM14,16.5h4V15h-4V16.5zM20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM11,4h2v5h-2V4zM20,20H4V9h5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2h5V20zM9,15c0.83,0 1.5,-0.67 1.5,-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5C7.5,14.33 8.17,15 9,15zM11.08,16.18C10.44,15.9 9.74,15.75 9,15.75s-1.44,0.15 -2.08,0.43C6.36,16.42 6,16.96 6,17.57V18h6v-0.43C12,16.96 11.64,16.42 11.08,16.18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11h-2c-1.1,0 -2,-0.9 -2,-2H4v11h16V9h-5C15,10.1 14.1,11 13,11zM9,12c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5C7.5,12.67 8.17,12 9,12zM12,18H6v-0.43c0,-0.6 0.36,-1.15 0.92,-1.39C7.56,15.9 8.26,15.75 9,15.75s1.44,0.15 2.08,0.43c0.55,0.24 0.92,0.78 0.92,1.39V18zM18,16.5h-4V15h4V16.5zM18,13.5h-4V12h4V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bakery_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/bakery_dining.xml
deleted file mode 100644
index d4c1b0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bakery_dining.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.6,8.67l-2.01,0.8c-0.22,0.09 -0.34,0.31 -0.31,0.54l2.4,5.98h1.23l-0.62,-6.9C8.25,8.75 7.91,8.54 7.6,8.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.07,16.1c-0.27,0.53 0.29,1.09 0.82,0.83l1.68,-0.84l-1.08,-2.71L3.07,16.1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.36,6.99h-2.71c-0.27,0 -0.53,0.23 -0.5,0.54l0.77,8.45h2.17l0.77,-8.45C13.88,7.22 13.63,6.99 13.36,6.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,9.47l-2.01,-0.8c-0.31,-0.12 -0.65,0.09 -0.68,0.42l-0.62,6.9h1.23l2.4,-5.98C18.75,9.78 18.63,9.56 18.41,9.47z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.52,13.39l-1.08,2.7l1.68,0.84c0.52,0.26 1.09,-0.3 0.82,-0.83L19.52,13.39z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,10.94c0.13,-0.32 0.1,-0.23 0.15,-0.39c0.3,-1.21 -0.34,-2.47 -1.5,-2.93l-2.01,-0.8c-0.46,-0.18 -0.95,-0.21 -1.41,-0.12c-0.11,-0.33 -0.29,-0.63 -0.52,-0.89C14.73,5.29 14.06,5 13.36,5h-2.71C9.94,5 9.27,5.29 8.8,5.81C8.56,6.07 8.38,6.37 8.27,6.69C7.81,6.6 7.32,6.63 6.86,6.81l-2.01,0.8c-1.16,0.46 -1.8,1.72 -1.5,2.93l0.15,0.38C1.1,15.55 1,15.55 1,16.38c0,0.91 0.46,1.74 1.24,2.22c1.42,0.88 2.49,0.14 4,-0.61h11.53c1.52,0.76 1.86,1.01 2.63,1.01c1,0 2.61,-0.77 2.61,-2.61C23,15.54 22.88,15.51 20.5,10.94zM3.88,16.93c-0.53,0.26 -1.09,-0.3 -0.82,-0.83l1.41,-2.72l1.08,2.71L3.88,16.93zM7.68,15.99l-2.4,-5.98C5.25,9.78 5.37,9.56 5.59,9.47l2.01,-0.8c0.31,-0.12 0.65,0.08 0.68,0.42l0.62,6.9H7.68zM13.09,15.99h-2.17l-0.77,-8.45c-0.03,-0.31 0.23,-0.54 0.5,-0.54h2.71c0.27,0 0.53,0.23 0.5,0.54L13.09,15.99zM16.32,15.99h-1.23l0.62,-6.9c0.03,-0.33 0.37,-0.54 0.68,-0.42l2.01,0.8c0.22,0.09 0.34,0.31 0.31,0.54L16.32,15.99zM20.12,16.93l-1.68,-0.84l1.08,-2.7l1.41,2.71C21.21,16.63 20.64,17.19 20.12,16.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/balance.xml b/compose/material/material/icons/generator/raw-icons/twotone/balance.xml
deleted file mode 100644
index 9be4d4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/balance.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.83c0.85,-0.3 1.53,-0.98 1.83,-1.83H18l-3,7c0,1.66 1.57,3 3.5,3s3.5,-1.34 3.5,-3l-3,-7h2V4h-6.17C14.42,2.83 13.31,2 12,2S9.58,2.83 9.17,4L3,4v2h2l-3,7c0,1.66 1.57,3 3.5,3S9,14.66 9,13L6,6h3.17c0.3,0.85 0.98,1.53 1.83,1.83V19H2v2h20v-2h-9V7.83zM20.37,13h-3.74l1.87,-4.36L20.37,13zM7.37,13H3.63L5.5,8.64L7.37,13zM12,6c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,5.55 12.55,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/balcony.xml b/compose/material/material/icons/generator/raw-icons/twotone/balcony.xml
deleted file mode 100644
index 606eb46..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/balcony.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16H5v4h2V16zM11,16H9v4h2V16zM6,10v4h5V4.08C8.16,4.56 6,7.03 6,10zM10,12H8v-2h2V12zM13,4.08V14h5v-4C18,7.03 15.84,4.56 13,4.08zM16,12h-2v-2h2V12zM15,16h-2v4h2V16zM19,16h-2v4h2V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10v2H8v-2H10zM16,12v-2h-2v2H16zM21,14v8H3v-8h1v-4c0,-4.42 3.58,-8 8,-8s8,3.58 8,8v4H21zM7,16H5v4h2V16zM11,16H9v4h2V16zM11,4.08C8.16,4.56 6,7.03 6,10v4h5V4.08zM13,14h5v-4c0,-2.97 -2.16,-5.44 -5,-5.92V14zM15,16h-2v4h2V16zM19,16h-2v4h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ballot.xml b/compose/material/material/icons/generator/raw-icons/twotone/ballot.xml
deleted file mode 100644
index 43f1749..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ballot.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14h3v3L7,17zM7,7h3v3L7,10zM5,19h14L19,5L5,5v14zM13,7.5h5v2h-5v-2zM13,14.5h5v2h-5v-2zM6,6h5v5L6,11L6,6zM6,13h5v5L6,18v-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.5h5v2h-5zM13,14.5h5v2h-5zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM11,6L6,6v5h5L11,6zM10,10L7,10L7,7h3v3zM11,13L6,13v5h5v-5zM10,17L7,17v-3h3v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bar_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/bar_chart.xml
deleted file mode 100644
index bbc825d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bar_chart.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h4v7h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v16h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/batch_prediction.xml b/compose/material/material/icons/generator/raw-icons/twotone/batch_prediction.xml
deleted file mode 100644
index 3aec1ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/batch_prediction.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,20.5h-2V19h2V20.5zM13,18h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5c1.93,0 3.5,1.57 3.5,3.5C15.5,15 13,16.5 13,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8H7c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V10C19,8.9 18.1,8 17,8zM13,20.5h-2V19h2V20.5zM13,18h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5c1.93,0 3.5,1.57 3.5,3.5C15.5,15 13,16.5 13,18zM18,6.5H6v0C6,5.67 6.67,5 7.5,5h9C17.33,5 18,5.67 18,6.5L18,6.5zM17,3.5H7v0C7,2.67 7.67,2 8.5,2h7C16.33,2 17,2.67 17,3.5L17,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bathroom.xml b/compose/material/material/icons/generator/raw-icons/twotone/bathroom.xml
deleted file mode 100644
index ee60f83..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bathroom.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM9,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,18 9,18zM9,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,15 9,15zM12,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,18 12,18zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,15 12,15zM15,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,18 15,18zM15,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,15 15,15zM7,11c0,-2.76 2.24,-5 5,-5s5,2.24 5,5v1H7V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5v1h10V11zM8.54,10.5c0.24,-1.69 1.7,-3 3.46,-3s3.22,1.31 3.47,3H8.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bathtub.xml b/compose/material/material/icons/generator/raw-icons/twotone/bathtub.xml
deleted file mode 100644
index efa0e0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bathtub.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h16v4h-16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13V4.83C20,3.27 18.73,2 17.17,2c-0.75,0 -1.47,0.3 -2,0.83l-1.25,1.25C13.76,4.03 13.59,4 13.41,4c-0.4,0 -0.77,0.12 -1.08,0.32l2.76,2.76c0.2,-0.31 0.32,-0.68 0.32,-1.08c0,-0.18 -0.03,-0.34 -0.07,-0.51l1.25,-1.25C16.74,4.09 16.95,4 17.17,4C17.63,4 18,4.37 18,4.83V13h-6.85c-0.3,-0.21 -0.57,-0.45 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5C7.93,10.08 7.59,10 7.24,10C6,10.01 5,11.01 5,12.25V13H2v6c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1c1.1,0 2,-0.9 2,-2v-6H20zM20,19H4v-4h16V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_0_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_0_bar.xml
deleted file mode 100644
index f071833..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_0_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v14h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v14h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_1_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_1_bar.xml
deleted file mode 100644
index 2741c0ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_1_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v12h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v12h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_2_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_2_bar.xml
deleted file mode 100644
index ca955a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_2_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v10h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v10h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_3_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_3_bar.xml
deleted file mode 100644
index 3bef9c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_3_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v8h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v8h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_4_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_4_bar.xml
deleted file mode 100644
index 11b4e9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_4_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v6h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v6h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_5_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_5_bar.xml
deleted file mode 100644
index 491c174..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_5_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v4h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_6_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_6_bar.xml
deleted file mode 100644
index 846b983..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_6_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6h6v4h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v16c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V5c0,-0.55 0.45,-1 1,-1h2V2h4v2h2C16.55,4 17,4.45 17,5zM15,6H9v2h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_alert.xml
deleted file mode 100644
index f171af7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,2h-4v2L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM13,14h-2L11,9h2v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_charging_full.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_charging_full.xml
deleted file mode 100644
index 8e9c13f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_charging_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4zM11,20v-5.5H9L13,7v5.5h2L11,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_full.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_full.xml
deleted file mode 100644
index 38b8a788..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_saver.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_saver.xml
deleted file mode 100644
index 03da48f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_saver.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2V2h-4v2H8C7.45,4 7,4.45 7,5v16c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1V5C17,4.45 16.55,4 16,4zM15,14h-2v2h-2v-2H9v-2h2v-2h2v2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_std.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_std.xml
deleted file mode 100644
index 38b8a788..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_std.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V5.33C17,4.6 16.4,4 15.67,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/battery_unknown.xml b/compose/material/material/icons/generator/raw-icons/twotone/battery_unknown.xml
deleted file mode 100644
index aaad891..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/battery_unknown.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,4L14,4L14,2h-4v2L8.33,4C7.6,4 7,4.6 7,5.33v15.33C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33L17,5.33C17,4.6 16.4,4 15.67,4zM13,18h-2v-2h2v2zM14.3,12.69s-0.38,0.42 -0.67,0.71c-0.48,0.48 -0.83,1.15 -0.83,1.6h-1.6c0,-0.83 0.46,-1.52 0.93,-2l0.93,-0.94c0.27,-0.27 0.44,-0.65 0.44,-1.06 0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5L9,11c0,-1.66 1.34,-3 3,-3s3,1.34 3,3c0,0.66 -0.27,1.26 -0.7,1.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/beach_access.xml b/compose/material/material/icons/generator/raw-icons/twotone/beach_access.xml
deleted file mode 100644
index eaa3dd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/beach_access.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.6,7.6c-0.47,2.34 0.03,4.78 1.39,6.83l5.45,-5.45c-1.53,-1.02 -3.28,-1.56 -5.08,-1.56 -0.6,0 -1.19,0.06 -1.76,0.18zM13.12,5c-0.93,0 -1.82,0.16 -2.67,0.46 1.91,0.19 3.79,0.89 5.44,2.07l1.39,-1.39C16.03,5.4 14.61,5 13.12,5zM5,13.12c0,1.49 0.4,2.91 1.14,4.15l1.39,-1.39c-1.18,-1.65 -1.88,-3.52 -2.07,-5.44 -0.3,0.86 -0.46,1.76 -0.46,2.68z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.126,14.56l1.428,-1.428 6.442,6.442 -1.43,1.428zM13.12,3c-2.58,0 -5.16,0.98 -7.14,2.95l-0.01,0.01c-3.95,3.95 -3.95,10.36 0,14.31l14.3,-14.31C18.3,3.99 15.71,3 13.12,3zM6.14,17.27C5.4,16.03 5,14.61 5,13.12c0,-0.93 0.16,-1.82 0.46,-2.67 0.19,1.91 0.89,3.79 2.07,5.44l-1.39,1.38zM8.98,14.43C7.63,12.38 7.12,9.93 7.6,7.6c0.58,-0.12 1.16,-0.18 1.75,-0.18 1.8,0 3.55,0.55 5.08,1.56l-5.45,5.45zM10.45,5.46c0.85,-0.3 1.74,-0.46 2.67,-0.46 1.49,0 2.91,0.4 4.15,1.14l-1.39,1.39c-1.65,-1.18 -3.52,-1.88 -5.43,-2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bed.xml b/compose/material/material/icons/generator/raw-icons/twotone/bed.xml
deleted file mode 100644
index 2681453..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bed.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v2h6V8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8c0,-0.55 -0.45,-1 -1,-1H6C5.45,7 5,7.45 5,8v2h6V8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12H5c-0.55,0 -1,0.45 -1,1v2h16v-2C20,12.45 19.55,12 19,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.78V8c0,-1.65 -1.35,-3 -3,-3h-4c-0.77,0 -1.47,0.3 -2,0.78C11.47,5.3 10.77,5 10,5H6C4.35,5 3,6.35 3,8v2.78C2.39,11.33 2,12.12 2,13v6h2v-2h16v2h2v-6C22,12.12 21.61,11.33 21,10.78zM13,8c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v2h-6V8zM5,8c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v2H5V8zM20,15H4v-2c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bedroom_baby.xml b/compose/material/material/icons/generator/raw-icons/twotone/bedroom_baby.xml
deleted file mode 100644
index 711955d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bedroom_baby.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM6.45,10.5l-0.95,-1L7,7.76L6,7h3.65l1.73,3H17v1h-1v2.5l0.84,1.46c0.39,-0.28 0.76,-0.58 1.1,-0.92L19,15.1c-1.87,1.87 -4.36,2.9 -7,2.9s-5.13,-1.03 -7,-2.9l1.06,-1.06c0.34,0.34 0.71,0.65 1.1,0.92L8,13.5V9.51L6.45,10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.53,15.71l-0.03,-0.06l-0.81,-1.41c-1.74,0.65 -3.66,0.65 -5.4,0l-0.81,1.41l-0.03,0.06c1.1,0.52 2.28,0.79 3.53,0.79S14.43,16.22 15.53,15.71z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.16,14.96c-0.39,-0.27 -0.76,-0.58 -1.1,-0.92L5,15.1c1.87,1.87 4.36,2.9 7,2.9s5.13,-1.03 7,-2.9l-1.06,-1.06c-0.34,0.34 -0.71,0.64 -1.1,0.92L16,13.5V11h1v-1h-5.62L9.65,7H6l1,0.76L5.5,9.5l0.95,1L8,9.51v3.99L7.16,14.96zM8.48,15.65l0.81,-1.41c1.74,0.65 3.66,0.65 5.4,0l0.81,1.41l0.03,0.06c-1.1,0.51 -2.3,0.79 -3.55,0.79s-2.43,-0.27 -3.53,-0.79L8.48,15.65z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bedroom_child.xml b/compose/material/material/icons/generator/raw-icons/twotone/bedroom_child.xml
deleted file mode 100644
index 2faa797..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bedroom_child.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM6,12.87c0,-1 0.62,-1.85 1.5,-2.2V9c0,-1.1 0.9,-2 2,-2h5c1.1,0 2,0.9 2,2v1.67c0.88,0.35 1.5,1.2 1.5,2.2V17h-1.5v-1.5h-9V17H6V12.87z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15.5h9V17H18v-4.13c0,-1 -0.62,-1.85 -1.5,-2.2V9c0,-1.1 -0.9,-2 -2,-2h-5c-1.1,0 -2,0.9 -2,2v1.67c-0.88,0.35 -1.5,1.2 -1.5,2.2V17h1.5V15.5zM9,8.5h6v2H9V8.5zM8.37,12h7.27c0.48,0 0.87,0.39 0.87,0.87V14h-9v-1.13H7.5C7.5,12.39 7.89,12 8.37,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bedroom_parent.xml b/compose/material/material/icons/generator/raw-icons/twotone/bedroom_parent.xml
deleted file mode 100644
index 8370cce..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bedroom_parent.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM5,13.17c0,-0.66 0.25,-1.26 0.65,-1.72V9c0,-1.1 0.9,-2 2,-2H11c0.37,0 0.72,0.12 1,0.32C12.28,7.12 12.63,7 13,7h3.35c1.1,0 2,0.9 2,2v2.45c0.4,0.46 0.65,1.06 0.65,1.72V17h-1.5v-1.5h-11V17H5V13.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,15.5h11V17H19v-3.83c0,-0.66 -0.25,-1.26 -0.65,-1.72V9c0,-1.1 -0.9,-2 -2,-2H13c-0.37,0 -0.72,0.12 -1,0.32C11.72,7.12 11.37,7 11,7H7.65c-1.1,0 -2,0.9 -2,2v2.45C5.25,11.91 5,12.51 5,13.17V17h1.5V15.5zM12.75,8.5h4v2h-4V8.5zM7.25,8.5h4v2h-4V8.5zM6.5,13c0,-0.55 0.45,-1 1,-1h9c0.55,0 1,0.45 1,1v1h-11V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bedtime.xml b/compose/material/material/icons/generator/raw-icons/twotone/bedtime.xml
deleted file mode 100644
index d8acdb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bedtime.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.27,4.49C6.2,5.6 4,8.55 4,12c0,4.41 3.59,8 8,8c1.81,0 3.54,-0.62 4.93,-1.71C13.02,16.9 7.64,12.03 9.27,4.49z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,2.02c-0.12,0 -0.23,-0.01 -0.35,-0.01C6.4,2.01 2,6.54 2,12c0,5.52 4.48,10 10,10c3.71,0 6.93,-2.02 8.66,-5.02C13.15,16.73 8.57,8.55 12.34,2.02zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-3.45 2.2,-6.4 5.27,-7.51c-1.63,7.54 3.75,12.41 7.66,13.8C15.54,19.38 13.81,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bedtime_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/bedtime_off.xml
deleted file mode 100644
index d33b5c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bedtime_off.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.95,5.13L9.03,6.2c0.05,-0.55 0.12,-1.12 0.24,-1.71C8.81,4.66 8.37,4.88 7.95,5.13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.13,7.96C4.42,9.15 4,10.52 4,12c0,4.41 3.59,8 8,8c1.45,0 2.84,-0.4 4.05,-1.12L5.13,7.96z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.27,4.49C9.14,5.08 9.07,5.64 9.03,6.2l2.05,2.05c-0.27,-2.05 0.1,-4.22 1.26,-6.23c-0.12,0 -0.23,-0.01 -0.35,-0.01c-2.05,0 -3.93,0.61 -5.5,1.65l1.46,1.46C8.37,4.88 8.81,4.66 9.27,4.49z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.97 2,12c0,5.52 4.48,10 10,10c2.04,0 3.92,-0.63 5.5,-1.67l2.28,2.28l1.41,-1.41L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.42,-2.85 1.13,-4.04l10.92,10.92C14.84,19.6 13.45,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/beenhere.xml b/compose/material/material/icons/generator/raw-icons/twotone/beenhere.xml
deleted file mode 100644
index 238cf61..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/beenhere.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3v12.93l7,4.66 7,-4.67L19,3zM10,16l-4,-4 1.41,-1.41 2.58,2.58 6.59,-6.59L18,8l-8,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L5,1c-1.1,0 -1.99,0.9 -1.99,2L3,15.93c0,0.69 0.35,1.3 0.88,1.66L12,23l8.11,-5.41c0.53,-0.36 0.88,-0.97 0.88,-1.66L21,3c0,-1.1 -0.9,-2 -2,-2zM12,20.6l-7,-4.66L5,3h14v12.93l-7,4.67zM9.99,13.18l-2.58,-2.59L6,12l4,4 8,-8 -1.42,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bento.xml b/compose/material/material/icons/generator/raw-icons/twotone/bento.xml
deleted file mode 100644
index b42c3eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bento.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h8V7H4V17zM8,10.5c0.83,0 1.5,0.67 1.5,1.5S8.83,13.5 8,13.5S6.5,12.83 6.5,12S7.17,10.5 8,10.5zM14,13h6v4h-6V13zM20,7v4h-6V7H20z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5H4C2.9,5 2,5.9 2,7v10c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,11h-6V7h6V11zM4,7h8v10H4V7zM14,17v-4h6v4H14zM9.5,12c0,0.83 -0.67,1.5 -1.5,1.5S6.5,12.83 6.5,12s0.67,-1.5 1.5,-1.5S9.5,11.17 9.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bike_scooter.xml b/compose/material/material/icons/generator/raw-icons/twotone/bike_scooter.xml
deleted file mode 100644
index d896141d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bike_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14h0.74L8.82,5.56C8.61,4.65 7.8,4 6.87,4H3v2h3.87l1.42,6.25c0,0 -0.01,0 -0.01,0C6.12,12.9 4.47,14.73 4.09,17H0v2h6v-1C6,15.79 7.79,14 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-0.82l-1.35,-3.69C16.55,3.52 15.8,3 14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58 -0.75,1.25 -0.9,2h-2.79l0.46,2h2.33c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,10.2 21.8,8 19,8zM19,16c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,15 10,15zM10,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S10.55,19 10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/biotech.xml b/compose/material/material/icons/generator/raw-icons/twotone/biotech.xml
deleted file mode 100644
index dbdbcc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/biotech.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.925,4.861l0.94,-0.342l1.71,4.699l-0.94,0.342z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19c-1.1,0 -2,0.9 -2,2h14c0,-1.1 -0.9,-2 -2,-2h-4v-2h3c1.1,0 2,-0.9 2,-2h-8c-1.66,0 -3,-1.34 -3,-3c0,-1.09 0.59,-2.04 1.47,-2.57c0.41,0.59 1.06,1 1.83,1.06c0.7,0.06 1.36,-0.19 1.85,-0.62l0.59,1.61l0.94,-0.34l0.34,0.94l1.88,-0.68l-0.34,-0.94l0.94,-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48 8.37,6.27 8.08,7.38C6.27,8.14 5,9.92 5,12c0,2.76 2.24,5 5,5v2H7zM12.86,4.52l1.71,4.7l-0.94,0.34l-1.71,-4.7L12.86,4.52zM10.5,7c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1C9.5,7.45 9.95,7 10.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blender.xml b/compose/material/material/icons/generator/raw-icons/twotone/blender.xml
deleted file mode 100644
index 40c6cbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blender.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16h-2c-1.65,0 -3,1.35 -3,3v1h8v-1C16,17.35 14.65,16 13,16zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,19 12,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h2.23l0.64,4.13C6.74,16.05 6,17.43 6,19v1c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-1C18,17.43 17.26,16.05 16.13,15.13zM5,9V5h1.31l0.62,4H5zM15.67,5l-1.38,9H9.72L8.33,5H15.67zM16,20H8v-1c0,-1.65 1.35,-3 3,-3h2c1.65,0 3,1.35 3,3V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blind.xml b/compose/material/material/icons/generator/raw-icons/twotone/blind.xml
deleted file mode 100644
index 803b7dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blind.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,3.5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.13,7.12c-0.17,-0.35 -0.44,-0.65 -0.8,-0.85C10.72,5.91 9.99,5.93 9.4,6.24l0,-0.01L4,9.3V14h2v-3.54l1.5,-0.85C7.18,10.71 7,11.85 7,13v5.33L4.4,21.8L6,23l3,-4l0.22,-3.54L11,18v5h2v-6.5l-1.97,-2.81c-0.04,-0.52 -0.14,-1.76 0.45,-3.4c0.75,1.14 1.88,1.98 3.2,2.41L20.63,23l0.87,-0.5L16.02,13H17v-2c-0.49,0 -2.88,0.17 -4.08,-2.21"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blinds.xml b/compose/material/material/icons/generator/raw-icons/twotone/blinds.xml
deleted file mode 100644
index 93b88c7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blinds.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9h8v2h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h8v2h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM6,5h8v2H6V5zM6,9h8v2H6V9zM18,19H6v-6h8v1.82c-0.45,0.32 -0.75,0.84 -0.75,1.43c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75c0,-0.59 -0.3,-1.12 -0.75,-1.43V13h2V19zM18,11h-2V9h2V11zM18,7h-2V5h2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blinds_closed.xml b/compose/material/material/icons/generator/raw-icons/twotone/blinds_closed.xml
deleted file mode 100644
index 63ac98a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blinds_closed.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h8v2h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9h8v2h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13h8v2h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17h8v2h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h11.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM14,19H6v-2h8V19zM14,15H6v-2h8V15zM14,11H6V9h8V11zM14,7H6V5h8V7zM18,19h-2v-2h2V19zM18,15h-2v-2h2V15zM18,11h-2V9h2V11zM18,7h-2V5h2V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/block.xml b/compose/material/material/icons/generator/raw-icons/twotone/block.xml
deleted file mode 100644
index 9fefeec..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/block.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-4.42 3.58,-8 8,-8 1.85,0 3.55,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4,13.85 4,12zM12,20c-1.85,0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20,10.15 20,12c0,4.42 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bloodtype.xml b/compose/material/material/icons/generator/raw-icons/twotone/bloodtype.xml
deleted file mode 100644
index fd3e951..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bloodtype.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.67c-4.05,3.7 -6,6.79 -6,9.14c0,3.63 2.65,6.2 6,6.2s6,-2.57 6,-6.2C18,11.46 16.05,8.36 12,4.67zM15,18H9v-2h6V18zM15,13h-2v2h-2v-2H9v-2h2V9h2v2h2V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM12,20c-3.35,0 -6,-2.57 -6,-6.2c0,-2.34 1.95,-5.44 6,-9.14c4.05,3.7 6,6.79 6,9.14C18,17.43 15.35,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth.xml b/compose/material/material/icons/generator/raw-icons/twotone/bluetooth.xml
deleted file mode 100644
index 1e9621b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_audio.xml b/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_audio.xml
deleted file mode 100644
index 0cb6d73..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_audio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33s-0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_connected.xml b/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_connected.xml
deleted file mode 100644
index 95db32a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_connected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l-2,-2 -2,2 2,2 2,-2zM17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88zM19,10l-2,2 2,2 2,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_disabled.xml
deleted file mode 100644
index 111179b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.88,1.88 -1.6,1.6 1.41,1.41 3.02,-3.02L12,2h-1v5.03l2,2v-3.2zM5.41,4L4,5.41 10.59,12 5,17.59 6.41,19 11,14.41V22h1l4.29,-4.29 2.3,2.29L20,18.59 5.41,4zM13,18.17v-3.76l1.88,1.88L13,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_drive.xml b/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_drive.xml
deleted file mode 100644
index bda5048..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_drive.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h14v-5h-1H4V17zM15.5,13c0.83,0 1.5,0.67 1.5,1.5S16.33,16 15.5,16S14,15.33 14,14.5S14.67,13 15.5,13zM6.5,13C7.33,13 8,13.67 8,14.5S7.33,16 6.5,16S5,15.33 5,14.5S5.67,13 6.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17H4v-5h13c-1.1,0 -2,-0.9 -2,-2H4.81l1.04,-3H15V5H5.5C4.84,5 4.29,5.42 4.08,6.01L2,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8h-2V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.85L19.15,1h-0.5v3.79l-2.3,-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3,-2.3V11h0.5L22,8.14L19.85,6L22,3.85zM19.65,2.91l0.94,0.94l-0.94,0.94V2.91zM20.59,8.14l-0.94,0.94V7.2L20.59,8.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_searching.xml b/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_searching.xml
deleted file mode 100644
index 4421153..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bluetooth_searching.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.24,12.01l2.32,2.32c0.28,-0.72 0.44,-1.51 0.44,-2.33s-0.16,-1.59 -0.43,-2.31l-2.33,2.32zM19.53,6.71l-1.26,1.26c0.63,1.21 0.98,2.57 0.98,4.02s-0.36,2.82 -0.98,4.02l1.2,1.2c0.97,-1.54 1.54,-3.36 1.54,-5.31 -0.01,-1.89 -0.55,-3.67 -1.48,-5.19zM15.71,7.71L10,2L9,2v7.59L4.41,5 3,6.41 8.59,12 3,17.59 4.41,19 9,14.41L9,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM11,5.83l1.88,1.88L11,9.59L11,5.83zM12.88,16.29L11,18.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blur_circular.xml b/compose/material/material/icons/generator/raw-icons/twotone/blur_circular.xml
deleted file mode 100644
index 6042cbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blur_circular.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM7,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM14,16.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM17,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM17,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blur_linear.xml b/compose/material/material/icons/generator/raw-icons/twotone/blur_linear.xml
deleted file mode 100644
index d850f35..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blur_linear.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2H3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2H3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blur_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/blur_off.xml
deleted file mode 100644
index 332f1c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blur_off.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.8,11.48l0.2,0.02c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5l0.02,0.2c0.09,0.67 0.61,1.19 1.28,1.28zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,5.27L6,8.77l0.28,0.28L6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l2.81,2.81c-0.71,0.11 -1.25,0.73 -1.25,1.47 0,0.83 0.67,1.5 1.5,1.5 0.74,0 1.36,-0.54 1.47,-1.25l2.81,2.81c-0.09,-0.03 -0.18,-0.06 -0.28,-0.06 -0.55,0 -1,0.45 -1,1s0.45,1 1,1 1,-0.45 1,-1c0,-0.1 -0.03,-0.19 -0.06,-0.28l3.78,3.78h0.01l1.41,-1.41L3.91,3.86 2.5,5.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/blur_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/blur_on.xml
deleted file mode 100644
index 8433458..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/blur_on.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5zM14.5,3c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5zM21,14.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,21c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,14c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,21c0,0.28 0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5 -0.22,-0.5 -0.5,-0.5 -0.5,0.22 -0.5,0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,3c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5 0.22,0.5 0.5,0.5 0.5,-0.22 0.5,-0.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bolt.xml b/compose/material/material/icons/generator/raw-icons/twotone/bolt.xml
deleted file mode 100644
index 6c4c194..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h-1l1,-7H7.5c-0.88,0 -0.33,-0.75 -0.31,-0.78C8.48,10.94 10.42,7.54 13.01,3h1l-1,7h3.51c0.4,0 0.62,0.19 0.4,0.66C12.97,17.55 11,21 11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/book.xml b/compose/material/material/icons/generator/raw-icons/twotone/book.xml
deleted file mode 100644
index 7aebbc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/book.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13l-3,-2.25L7,13V4H6v16h12V4h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM9,4h2v5l-1,-0.75L9,9L9,4zM18,20L6,20L6,4h1v9l3,-2.25L13,13L13,4h5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/book_online.xml b/compose/material/material/icons/generator/raw-icons/twotone/book_online.xml
deleted file mode 100644
index 4371c06..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/book_online.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4H7V3h10V4zM17,21H7v-1h10V21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4H7V3h10V4zM17,21H7v-1h10V21zM17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1L17,1zM7,6h10v12H7V6zM16,11V9.14C16,8.51 15.55,8 15,8H9C8.45,8 8,8.51 8,9.14l0,1.96c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1l0,1.76C8,15.49 8.45,16 9,16h6c0.55,0 1,-0.51 1,-1.14V13c-0.55,0 -1,-0.45 -1,-1C15,11.45 15.45,11 16,11zM12.5,14.5h-1v-1h1V14.5zM12.5,12.5h-1v-1h1V12.5zM12.5,10.5h-1v-1h1V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bookmark.xml b/compose/material/material/icons/generator/raw-icons/twotone/bookmark.xml
deleted file mode 100644
index 66554b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bookmark.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17.97l5,-2.15 5,2.15V5H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,17.97l-5,-2.14 -5,2.14L7,5h10v12.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/bookmark_add.xml
deleted file mode 100644
index d9d3a39..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_add.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17.97l0,-7.07c-2.28,-0.46 -4,-2.48 -4,-4.9c0,-0.34 0.03,-0.68 0.1,-1L7,5v12.97l5,-2.14L17,17.97z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7zM17,17.97l-5,-2.14l-5,2.14V5l6.1,0c0.15,-0.74 0.46,-1.42 0.9,-2L7,3C5.9,3 5,3.9 5,5v16l7,-3l7,3l0,-10.1c-0.32,0.07 -0.66,0.1 -1,0.1c-0.34,0 -0.68,-0.03 -1,-0.1L17,17.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_added.xml b/compose/material/material/icons/generator/raw-icons/twotone/bookmark_added.xml
deleted file mode 100644
index e3d2b2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_added.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17.97l0,-7.07c-2.28,-0.46 -4,-2.48 -4,-4.9c0,-0.34 0.03,-0.68 0.1,-1L7,5v12.97l5,-2.14L17,17.97z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.83,9L15,6.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L17.83,9zM17,17.97l-5,-2.14l-5,2.14V5l6.1,0c0.15,-0.74 0.46,-1.42 0.9,-2L7,3C5.9,3 5,3.9 5,5v16l7,-3l7,3l0,-10.1c-0.32,0.07 -0.66,0.1 -1,0.1c-0.34,0 -0.68,-0.03 -1,-0.1L17,17.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_border.xml b/compose/material/material/icons/generator/raw-icons/twotone/bookmark_border.xml
deleted file mode 100644
index 0cb95b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_remove.xml b/compose/material/material/icons/generator/raw-icons/twotone/bookmark_remove.xml
deleted file mode 100644
index d31a859..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bookmark_remove.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17.97l0,-7.07c-2.28,-0.46 -4,-2.48 -4,-4.9c0,-0.34 0.03,-0.68 0.1,-1L7,5v12.97l5,-2.14L17,17.97z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-6V5h6V7zM17,17.97l-5,-2.14l-5,2.14V5l6.1,0c0.15,-0.74 0.46,-1.42 0.9,-2L7,3C5.9,3 5,3.9 5,5v16l7,-3l7,3l0,-10.1c-0.32,0.07 -0.66,0.1 -1,0.1c-0.34,0 -0.68,-0.03 -1,-0.1L17,17.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bookmarks.xml b/compose/material/material/icons/generator/raw-icons/twotone/bookmarks.xml
deleted file mode 100644
index 352628a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bookmarks.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1L8.99,1C7.89,1 7,1.9 7,3h10c1.1,0 2,0.9 2,2v13l2,1L21,3c0,-1.1 -0.9,-2 -2,-2zM15,5L5,5c-1.1,0 -2,0.9 -2,2v16l7,-3 7,3L17,7c0,-1.1 -0.9,-2 -2,-2zM15,19.97l-4.21,-1.81 -0.79,-0.34 -0.79,0.34L5,19.97L5,7h10v12.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19.97l5,-2.15 5,2.15V7H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_all.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_all.xml
deleted file mode 100644
index bfb9c66..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3v18h18L21,3zM11,19L5,19v-6h6v6zM11,11L5,11L5,5h6v6zM19,19h-6v-6h6v6zM19,11h-6L13,5h6v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_bottom.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_bottom.xml
deleted file mode 100644
index 3016962..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h2v2L3,13zM3,15h2v2L3,17zM3,19h18v2L3,21zM19,15h2v2h-2zM3,7h2v2L3,9zM19,11h2v2h-2zM19,3h2v2h-2zM15,11h2v2h-2zM19,7h2v2h-2zM15,3h2v2h-2zM7,11h2v2L7,13zM3,3h2v2L3,5zM11,7h2v2h-2zM7,3h2v2L7,5zM11,11h2v2h-2zM11,15h2v2h-2zM11,3h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_clear.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_clear.xml
deleted file mode 100644
index ac60811..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h2v2L7,5zM7,19h2v2L7,21zM3,3h2v2L3,5zM19,3h2v2h-2zM19,7h2v2h-2zM19,11h2v2h-2zM3,7h2v2L3,9zM3,19h2v2L3,21zM19,19h2v2h-2zM19,15h2v2h-2zM3,15h2v2L3,17zM3,11h2v2L3,13zM7,11h2v2L7,13zM15,11h2v2h-2zM11,19h2v2h-2zM15,19h2v2h-2zM15,3h2v2h-2zM11,3h2v2h-2zM11,7h2v2h-2zM11,15h2v2h-2zM11,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_color.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_color.xml
deleted file mode 100644
index ca82025..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_color.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.81,8.94l-3.75,-3.75L4,14.25V18h3.75L16.81,8.94zM6,16v-0.92l7.06,-7.06l0.92,0.92L6.92,16H6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.71,6.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34C17.17,2.09 16.92,2 16.66,2c-0.25,0 -0.51,0.1 -0.7,0.29l-1.83,1.83l3.75,3.75L19.71,6.04z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v4h-20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_horizontal.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_horizontal.xml
deleted file mode 100644
index 1cc0cb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_horizontal.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3h2v2h-2zM19,3h2v2h-2zM19,7h2v2h-2zM15,3h2v2h-2zM3,19h2v2L3,21zM3,15h2v2L3,17zM3,7h2v2L3,9zM7,19h2v2L7,21zM11,7h2v2h-2zM7,3h2v2L7,5zM3,3h2v2L3,5zM15,19h2v2h-2zM11,19h2v2h-2zM19,15h2v2h-2zM19,19h2v2h-2zM11,15h2v2h-2zM3,11h18v2L3,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_inner.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_inner.xml
deleted file mode 100644
index da34c94..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_inner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h2v2L3,17zM3,3h2v2L3,5zM3,19h2v2L3,21zM11,21h2v-8h8v-2h-8L13,3h-2v8L3,11v2h8zM7,19h2v2L7,21zM19,15h2v2h-2zM15,19h2v2h-2zM19,19h2v2h-2zM3,7h2v2L3,9zM19,7h2v2h-2zM7,3h2v2L7,5zM15,3h2v2h-2zM19,3h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_left.xml
deleted file mode 100644
index bb1b9a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3h2v2h-2zM3,3h2v18L3,21zM15,3h2v2h-2zM11,19h2v2h-2zM11,15h2v2h-2zM15,19h2v2h-2zM11,7h2v2h-2zM11,11h2v2h-2zM19,15h2v2h-2zM19,19h2v2h-2zM19,7h2v2h-2zM19,11h2v2h-2zM19,3h2v2h-2zM15,11h2v2h-2zM7,19h2v2L7,21zM7,11h2v2L7,13zM7,3h2v2L7,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_outer.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_outer.xml
deleted file mode 100644
index 347af50..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_outer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11h2v2h-2zM11,7h2v2h-2zM21,3L3,3v18h18L21,3zM19,19L5,19L5,5h14v14zM15,11h2v2h-2zM7,11h2v2L7,13zM11,15h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_right.xml
deleted file mode 100644
index fb25620..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h2v2L3,5zM3,19h2v2L3,21zM15,3h2v2h-2zM15,19h2v2h-2zM15,11h2v2h-2zM3,15h2v2L3,17zM3,11h2v2L3,13zM3,7h2v2L3,9zM11,15h2v2h-2zM7,11h2v2L7,13zM7,3h2v2L7,5zM19,3h2v18h-2zM7,19h2v2L7,21zM11,3h2v2h-2zM11,7h2v2h-2zM11,11h2v2h-2zM11,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_style.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_style.xml
deleted file mode 100644
index 1fc5101..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2zM19,11h2v2h-2zM19,15h2v2h-2zM15,19h2v2h-2zM3,21h2L5,5h16L21,3L3,3zM19,7h2v2h-2zM11,19h2v2h-2zM7,19h2v2L7,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_top.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_top.xml
deleted file mode 100644
index 5cf351e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2zM3,19h2v2L3,21zM11,19h2v2h-2zM3,11h2v2L3,13zM3,15h2v2L3,17zM7,19h2v2L7,21zM11,7h2v2h-2zM11,11h2v2h-2zM3,7h2v2L3,9zM3,3h18v2L3,5zM11,15h2v2h-2zM15,19h2v2h-2zM7,11h2v2L7,13zM15,11h2v2h-2zM19,15h2v2h-2zM19,11h2v2h-2zM19,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/border_vertical.xml b/compose/material/material/icons/generator/raw-icons/twotone/border_vertical.xml
deleted file mode 100644
index b5af4a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/border_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h2v2L7,5zM7,11h2v2L7,13zM7,19h2v2L7,21zM3,19h2v2L3,21zM3,3h2v2L3,5zM3,11h2v2L3,13zM19,3h2v2h-2zM3,7h2v2L3,9zM11,3h2v18h-2zM3,15h2v2L3,17zM15,11h2v2h-2zM19,15h2v2h-2zM19,11h2v2h-2zM19,7h2v2h-2zM19,19h2v2h-2zM15,19h2v2h-2zM15,3h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/boy.xml b/compose/material/material/icons/generator/raw-icons/twotone/boy.xml
deleted file mode 100644
index 0e61c95..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/boy.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,20v-5h1v-4.5c0,-1.1 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.9 -2,2V15h1v5H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/branding_watermark.xml b/compose/material/material/icons/generator/raw-icons/twotone/branding_watermark.xml
deleted file mode 100644
index aeeb65c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/branding_watermark.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18L21,5L3,5v14zM11,12h9v6h-9v-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM11,12h9v6h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/breakfast_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/breakfast_dining.xml
deleted file mode 100644
index d2012aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/breakfast_dining.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5H6C4.9,5 4,5.9 4,7c0,0.71 0.38,1.35 1.01,1.73L6,9.31V19h12V9.3l1,-0.58c0.63,-0.36 1,-1.01 1,-1.72C20,5.9 19.1,5 18,5zM15.71,13.7l-3,3C12.51,16.9 12.26,17 12,17s-0.51,-0.1 -0.71,-0.29l-3,-3c-0.39,-0.39 -0.39,-1.02 0,-1.41l3,-3C11.49,9.1 11.74,9 12,9s0.51,0.1 0.71,0.29l3,3C16.1,12.68 16.1,13.31 15.71,13.7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3H6C3.79,3 2,4.79 2,7c0,1.48 0.81,2.75 2,3.45V19c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-8.55c1.19,-0.69 2,-1.97 2,-3.45C22,4.79 20.21,3 18,3zM19,8.72L18,9.3V19H6V9.31L5.01,8.73C4.38,8.35 4,7.71 4,7c0,-1.1 0.9,-2 2,-2h12c1.1,0 2,0.9 2,2C20,7.71 19.62,8.36 19,8.72z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.71,9.29C12.51,9.1 12.26,9 12,9s-0.51,0.1 -0.71,0.29l-3,3c-0.39,0.39 -0.39,1.02 0,1.41l3,3C11.49,16.9 11.74,17 12,17s0.51,-0.1 0.71,-0.29l3,-3c0.39,-0.39 0.39,-1.02 0,-1.41L12.71,9.29zM12,14.58L10.41,13L12,11.41L13.59,13L12,14.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_1.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_1.xml
deleted file mode 100644
index 04e7ff0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_1.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c4.41,0 8,-3.59 8,-8s-3.59,-8 -8,-8 -8,3.59 -8,8 3.59,8 8,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2 2,6.48 2,12s4.48,10 10,10zM12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8 -8,-3.59 -8,-8 3.59,-8 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_2.xml
deleted file mode 100644
index 8dd0421..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_2.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12c0,-4.41 -3.59,-8 -8,-8 -0.34,0 -0.68,0.02 -1.01,0.07C10.9,6.23 12,9.05 12,12c0,2.95 -1.1,5.77 -3.01,7.93 0.33,0.05 0.67,0.07 1.01,0.07 4.41,0 8,-3.59 8,-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20.65C6.47,21.5 8.18,22 10,22c5.52,0 10,-4.48 10,-10S15.52,2 10,2c-1.82,0 -3.53,0.5 -5,1.35C7.99,5.08 10,8.3 10,12s-2.01,6.92 -5,8.65zM12,12c0,-2.95 -1.1,-5.77 -3.01,-7.93C9.32,4.02 9.66,4 10,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8c-0.34,0 -0.68,-0.02 -1.01,-0.07C10.9,17.77 12,14.95 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_3.xml
deleted file mode 100644
index 1658fd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_3.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.7,4.91c1.46,2 2.3,4.46 2.3,7.09s-0.84,5.09 -2.3,7.09C15.25,17.76 17,15.08 17,12s-1.75,-5.76 -4.3,-7.09z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,2c-1.05,0 -2.05,0.16 -3,0.46 4.06,1.27 7,5.06 7,9.54 0,4.48 -2.94,8.27 -7,9.54 0.95,0.3 1.95,0.46 3,0.46 5.52,0 10,-4.48 10,-10S14.52,2 9,2zM12.7,19.09c1.46,-2 2.3,-4.46 2.3,-7.09s-0.84,-5.09 -2.3,-7.09C15.25,6.24 17,8.92 17,12s-1.75,5.76 -4.3,7.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_4.xml
deleted file mode 100644
index 5b8a9a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_4.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52V6h-3.52L12,3.52 9.52,6H6v3.52L3.52,12 6,14.48V18h3.52L12,20.48 14.48,18H18v-3.52L20.48,12 18,9.52zM12.29,17c-0.74,0 -1.45,-0.17 -2.08,-0.46 1.72,-0.79 2.92,-2.52 2.92,-4.54s-1.2,-3.75 -2.92,-4.54c0.63,-0.29 1.34,-0.46 2.08,-0.46 2.76,0 5,2.24 5,5s-2.24,5 -5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12.29,7c-0.74,0 -1.45,0.17 -2.08,0.46 1.72,0.79 2.92,2.53 2.92,4.54s-1.2,3.75 -2.92,4.54c0.63,0.29 1.34,0.46 2.08,0.46 2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_5.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_5.xml
deleted file mode 100644
index 9e75e0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_5.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52L18,6h-3.52L12,3.52 9.52,6L6,6v3.52L3.52,12 6,14.48L6,18h3.52L12,20.48 14.48,18L18,18v-3.52L20.48,12 18,9.52zM12,17.5c-3.03,0 -5.5,-2.47 -5.5,-5.5S8.97,6.5 12,6.5s5.5,2.47 5.5,5.5 -2.47,5.5 -5.5,5.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6.5c-3.03,0 -5.5,2.47 -5.5,5.5s2.47,5.5 5.5,5.5 5.5,-2.47 5.5,-5.5 -2.47,-5.5 -5.5,-5.5zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_6.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_6.xml
deleted file mode 100644
index 6631510..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_6.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52L18,6h-3.52L12,3.52 9.52,6L6,6v3.52L3.52,12 6,14.48L6,18h3.52L12,20.48 14.48,18L18,18v-3.52L20.48,12 18,9.52zM12,17.5v-11c3.03,0 5.5,2.47 5.5,5.5s-2.47,5.5 -5.5,5.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6.5v11c3.03,0 5.5,-2.47 5.5,-5.5S15.03,6.5 12,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_7.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_7.xml
deleted file mode 100644
index f30a91a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_7.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52L18,6h-3.52L12,3.52 9.52,6L6,6v3.52L3.52,12 6,14.48L6,18h3.52L12,20.48 14.48,18L18,18v-3.52L20.48,12 18,9.52zM12,17.5c-3.03,0 -5.5,-2.47 -5.5,-5.5S8.97,6.5 12,6.5s5.5,2.47 5.5,5.5 -2.47,5.5 -5.5,5.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6.5c-3.03,0 -5.5,2.47 -5.5,5.5s2.47,5.5 5.5,5.5 5.5,-2.47 5.5,-5.5 -2.47,-5.5 -5.5,-5.5zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_auto.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_auto.xml
deleted file mode 100644
index c5a15f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_auto.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52L18,6h-3.52L12,3.52 9.52,6L6,6v3.52L3.52,12 6,14.48L6,18h3.52L12,20.48 14.48,18L18,18v-3.52L20.48,12 18,9.52zM14.3,16l-0.7,-2h-3.2l-0.7,2L7.8,16L11,7h2l3.2,9h-1.9zM10.85,12.65h2.3L12,9z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L13,7h-2zM10.85,12.65L12,9l1.15,3.65h-2.3zM20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_high.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_high.xml
deleted file mode 100644
index f650ec6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_high.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52V6h-3.52L12,3.52 9.52,6H6v3.52L3.52,12 6,14.48V18h3.52L12,20.48 14.48,18H18v-3.52L20.48,12 18,9.52zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_low.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_low.xml
deleted file mode 100644
index 40acf8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_low.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52V6h-3.52L12,3.52 9.52,6H6v3.52L3.52,12 6,14.48V18h3.52L12,20.48 14.48,18H18v-3.52L20.48,12 18,9.52zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brightness_medium.xml b/compose/material/material/icons/generator/raw-icons/twotone/brightness_medium.xml
deleted file mode 100644
index 97c93e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brightness_medium.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.52V6h-3.52L12,3.52 9.52,6H6v3.52L3.52,12 6,14.48V18h3.52L12,20.48 14.48,18H18v-3.52L20.48,12 18,9.52zM12,18V6c3.31,0 6,2.69 6,6s-2.69,6 -6,6z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.69L20,4h-4.69L12,0.69 8.69,4L4,4v4.69L0.69,12 4,15.31L4,20h4.69L12,23.31 15.31,20L20,20v-4.69L23.31,12 20,8.69zM18,14.48L18,18h-3.52L12,20.48 9.52,18L6,18v-3.52L3.52,12 6,9.52L6,6h3.52L12,3.52 14.48,6L18,6v3.52L20.48,12 18,14.48zM12,6v12c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/broadcast_on_home.xml b/compose/material/material/icons/generator/raw-icons/twotone/broadcast_on_home.xml
deleted file mode 100644
index 5284e8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/broadcast_on_home.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11h3v7h-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.59c0.73,0.29 1.4,0.69 2,1.17V6c0,-1.1 -0.9,-2 -2,-2H4v2h16V8.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9H3c-0.5,0 -1,0.5 -1,1v9c0,0.5 0.5,1 1,1h5c0.5,0 1,-0.5 1,-1v-9C9,9.5 8.5,9 8,9zM7,18H4v-7h3V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14.75c-0.69,0 -1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5v-5.03c0.3,-0.23 0.5,-0.57 0.5,-0.97C18.25,15.31 17.69,14.75 17,14.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16C21,13.79 19.21,12 17,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/broadcast_on_personal.xml b/compose/material/material/icons/generator/raw-icons/twotone/broadcast_on_personal.xml
deleted file mode 100644
index b216686..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/broadcast_on_personal.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10v9h5.59C9.21,18.07 9,17.06 9,16c0,-3.39 2.11,-6.27 5.08,-7.44L10,5.5L4,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19v-9l6,-4.5l4.08,3.06c0.81,-0.32 1.69,-0.51 2.61,-0.54L10,3L2,9v12h8.76c-0.48,-0.6 -0.88,-1.27 -1.17,-2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14.75c-0.69,0 -1.25,0.56 -1.25,1.25c0,0.4 0.2,0.75 0.5,0.97V22h1.5v-5.03c0.3,-0.23 0.5,-0.57 0.5,-0.97C18.25,15.31 17.69,14.75 17,14.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.21,0 -4,1.79 -4,4c0,1.1 0.45,2.1 1.17,2.83l1.06,-1.06c-0.45,-0.45 -0.73,-1.08 -0.73,-1.77c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5c0,0.69 -0.28,1.31 -0.73,1.76l1.06,1.06C20.55,18.1 21,17.1 21,16C21,13.79 19.21,12 17,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.5c-3.59,0 -6.5,2.91 -6.5,6.5c0,1.79 0.73,3.42 1.9,4.6l1.06,-1.06C12.56,18.63 12,17.38 12,16c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,1.37 -0.56,2.62 -1.46,3.52l1.07,1.06c1.17,-1.18 1.89,-2.8 1.89,-4.58C23.5,12.41 20.59,9.5 17,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/broken_image.xml b/compose/material/material/icons/generator/raw-icons/twotone/broken_image.xml
deleted file mode 100644
index 3997407..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/broken_image.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.99,15.41l-4,-4 -4,4 -0.99,-0.99V19h14v-6.57l-1.01,-1.01zM5,11.59l0.99,1 4,-4 4,4 4,-4.01L19,9.59V5H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-4.58l0.99,0.99 4,-4 4,4 4,-3.99L19,12.43L19,19zM19,9.59l-1.01,-1.01 -4,4.01 -4,-4 -4,4 -0.99,-1L5,5h14v4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/browse_gallery.xml b/compose/material/material/icons/generator/raw-icons/twotone/browse_gallery.xml
deleted file mode 100644
index 271ec9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/browse_gallery.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7s7,-3.14 7,-7S12.86,5 9,5zM11.79,16.21L8,12.41V7h2v4.59l3.21,3.21L11.79,16.21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9S13.97,3 9,3zM9,19c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7s7,3.14 7,7S12.86,19 9,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7l-2,0l0,5.41l3.79,3.8l1.42,-1.42l-3.21,-3.2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,3.52v2.16C20.36,6.8 22,9.21 22,12c0,2.79 -1.64,5.2 -4.01,6.32v2.16C21.48,19.24 24,15.91 24,12C24,8.09 21.48,4.76 17.99,3.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/browser_not_supported.xml b/compose/material/material/icons/generator/raw-icons/twotone/browser_not_supported.xml
deleted file mode 100644
index 1ff1fbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/browser_not_supported.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6v10.5l1.95,1.95C20.98,18.3 21,18.15 21,18V6c0,-1.1 -0.9,-2 -2,-2H6.5l2,2H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1 0.9,2 2,2h12.36l2.06,2.06l1.27,-1.27L3.22,3.32zM15,18H5V7.64L15.36,18H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/browser_updated.xml b/compose/material/material/icons/generator/raw-icons/twotone/browser_updated.xml
deleted file mode 100644
index 44147da..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/browser_updated.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13v3c0,1.1 -0.9,2 -2,2h-3l1,1v2H6v-2l1,-1H4c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2l8,0v2L4,5v11h16v-3H22zM15,15l-5,-5h4V3h2v7h4L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brunch_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/brunch_dining.xml
deleted file mode 100644
index 4696c7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brunch_dining.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h-2v1.47c0,0.95 0.37,1.89 1.03,2.6c0.63,-0.71 0.97,-1.61 0.97,-2.56V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,21.5C2,21.78 2.22,22 2.49,22h13.02c0.27,0 0.49,-0.22 0.49,-0.5V20H2V21.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.47,15.45c0.99,-1.07 1.53,-2.48 1.53,-3.94V2h-6v9.47c0,1.48 0.58,2.92 1.6,4l0.4,0.42V22h4v-2h-2v-4.03L20.47,15.45zM18,4h2v4h-2V4zM19.03,14.07c-0.65,-0.71 -1.03,-1.65 -1.03,-2.6V10h2v1.51C20,12.46 19.66,13.36 19.03,14.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,16H11v-2H7v2H2.5C2.22,16 2,16.22 2,16.5V18h14v-1.5C16,16.22 15.78,16 15.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/brush.xml b/compose/material/material/icons/generator/raw-icons/twotone/brush.xml
deleted file mode 100644
index b977330..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/brush.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1c0,0.74 -0.19,1.4 -0.5,1.95 0.17,0.03 0.33,0.05 0.5,0.05 1.1,0 2,-0.9 2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.75,15l8.96,-8.96c0.39,-0.39 0.39,-1.02 0,-1.41l-1.34,-1.34c-0.2,-0.2 -0.45,-0.29 -0.7,-0.29s-0.51,0.1 -0.71,0.29L9,12.25 11.75,15zM6,21c2.21,0 4,-1.79 4,-4 0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3c0,1.31 -1.16,2 -2,2 0.92,1.22 2.49,2 4,2zM6,17c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,1.1 -0.9,2 -2,2 -0.17,0 -0.33,-0.02 -0.5,-0.05 0.31,-0.55 0.5,-1.21 0.5,-1.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bubble_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/bubble_chart.xml
deleted file mode 100644
index db6cd38..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bubble_chart.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c1.93,0 3.5,-1.57 3.5,-3.5S18.43,5 16.5,5 13,6.57 13,8.5s1.57,3.5 3.5,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.01,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM7,12c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM18.01,18c0,-1.65 -1.35,-3 -3,-3s-3,1.35 -3,3 1.35,3 3,3 3,-1.35 3,-3zM14.01,18c0,-0.55 0.45,-1 1,-1s1,0.45 1,1 -0.45,1 -1,1 -1,-0.45 -1,-1zM16.5,14c3.03,0 5.5,-2.47 5.5,-5.5S19.53,3 16.5,3 11,5.47 11,8.5s2.47,5.5 5.5,5.5zM16.5,5C18.43,5 20,6.57 20,8.5S18.43,12 16.5,12 13,10.43 13,8.5 14.57,5 16.5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bug_report.xml b/compose/material/material/icons/generator/raw-icons/twotone/bug_report.xml
deleted file mode 100644
index ab1266f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bug_report.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.83,9.65L15.46,9c-0.3,-0.53 -0.71,-0.96 -1.21,-1.31l-0.61,-0.42 -0.68,-0.16C12.63,7.04 12.32,7 12,7c-0.31,0 -0.63,0.04 -0.94,0.11l-0.74,0.18 -0.57,0.4c-0.49,0.34 -0.91,0.79 -1.21,1.31l-0.37,0.65 -0.1,0.65c-0.04,0.23 -0.07,0.48 -0.07,0.7v4c0,0.22 0.03,0.47 0.07,0.7l0.1,0.65 0.37,0.65c0.72,1.24 2.04,2 3.46,2s2.74,-0.77 3.46,-2l0.37,-0.64 0.1,-0.65c0.04,-0.24 0.07,-0.49 0.07,-0.71v-4c0,-0.22 -0.03,-0.47 -0.07,-0.7l-0.1,-0.65zM14,16h-4v-2h4v2zM14,12h-4v-2h4v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-2.81c-0.45,-0.78 -1.07,-1.45 -1.82,-1.96L17,4.41 15.59,3l-2.17,2.17C12.96,5.06 12.49,5 12,5s-0.96,0.06 -1.41,0.17L8.41,3 7,4.41l1.62,1.63C7.88,6.55 7.26,7.22 6.81,8L4,8v2h2.09c-0.05,0.33 -0.09,0.66 -0.09,1v1L4,12v2h2v1c0,0.34 0.04,0.67 0.09,1L4,16v2h2.81c1.04,1.79 2.97,3 5.19,3s4.15,-1.21 5.19,-3L20,18v-2h-2.09c0.05,-0.33 0.09,-0.66 0.09,-1v-1h2v-2h-2v-1c0,-0.34 -0.04,-0.67 -0.09,-1L20,10L20,8zM16,12v3c0,0.22 -0.03,0.47 -0.07,0.7l-0.1,0.65 -0.37,0.65c-0.72,1.24 -2.04,2 -3.46,2s-2.74,-0.77 -3.46,-2l-0.37,-0.64 -0.1,-0.65C8.03,15.47 8,15.22 8,15v-4c0,-0.22 0.03,-0.47 0.07,-0.7l0.1,-0.65 0.37,-0.65c0.3,-0.52 0.72,-0.97 1.21,-1.31l0.57,-0.39 0.74,-0.18c0.31,-0.08 0.63,-0.12 0.94,-0.12 0.32,0 0.63,0.04 0.95,0.12l0.68,0.16 0.61,0.42c0.5,0.34 0.91,0.78 1.21,1.31l0.38,0.65 0.1,0.65c0.04,0.22 0.07,0.47 0.07,0.69v1zM10,14h4v2h-4zM10,10h4v2h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/build.xml b/compose/material/material/icons/generator/raw-icons/twotone/build.xml
deleted file mode 100644
index b6d086d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/build.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.92,8.28c0.24,-1.4 -0.16,-2.89 -1.24,-3.96 -0.94,-0.95 -2.2,-1.39 -3.44,-1.32l3.09,3.09 -4.24,4.24L3,7.24c-0.07,1.24 0.37,2.49 1.31,3.44 1.04,1.04 2.47,1.45 3.83,1.25 0.71,-0.1 1.4,-0.38 2,-0.82l9.46,9.46 0.88,-0.88 -9.45,-9.45c0.47,-0.6 0.77,-1.26 0.89,-1.96z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.61,18.97L13.54,9.9c0.93,-2.34 0.45,-5.1 -1.44,-7C9.8,0.6 6.22,0.39 3.67,2.25L7.5,6.08 6.08,7.5 2.25,3.67C0.39,6.21 0.6,9.79 2.9,12.09c1.86,1.86 4.57,2.35 6.89,1.48l9.11,9.11c0.39,0.39 1.02,0.39 1.41,0l2.3,-2.3c0.4,-0.38 0.4,-1.02 0,-1.41zM19.61,20.57l-9.46,-9.46c-0.61,0.45 -1.29,0.72 -2,0.82 -1.36,0.2 -2.79,-0.21 -3.83,-1.25 -0.95,-0.94 -1.39,-2.2 -1.32,-3.44l3.09,3.09 4.24,-4.24L7.24,3c1.24,-0.07 2.49,0.37 3.44,1.31 1.08,1.08 1.49,2.57 1.24,3.96 -0.12,0.7 -0.42,1.36 -0.88,1.95l9.45,9.45 -0.88,0.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/build_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/build_circle.xml
deleted file mode 100644
index 4486e2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/build_circle.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8c4.41,0 8,-3.59 8,-8C20,7.59 16.41,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8c4.41,0 8,3.59 8,8C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.68,7.76c-1.11,-1.11 -2.79,-1.3 -4.1,-0.59l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32 -0.52,2.99 0.59,4.1c0.98,0.98 2.4,1.24 3.62,0.81l3.41,3.41c0.2,0.2 0.51,0.2 0.71,0l1.4,-1.4c0.2,-0.2 0.2,-0.51 0,-0.71l-3.41,-3.41C13.92,10.15 13.66,8.74 12.68,7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bungalow.xml b/compose/material/material/icons/generator/raw-icons/twotone/bungalow.xml
deleted file mode 100644
index 139aa05..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bungalow.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.78l-3,4.8V19h2v-3h2v3h2v-7.42L12,6.78zM13,14h-2v-2h2V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,14h-2v-2h2V14zM18.1,16.56L17,14.79V21H7v-6.2l-1.1,1.76L4.2,15.5L12,3l7.8,12.5L18.1,16.56zM15,11.59l-3,-4.8l-3,4.8V19h2v-3h2v3h2V11.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/burst_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/burst_mode.xml
deleted file mode 100644
index b70e827..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/burst_mode.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h10L21,7L11,7v10zM14,13.47l1.43,1.72 2,-2.58L20,15.99h-8l2,-2.52z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h2v14L1,19zM5,5h2v14L5,19zM22,5L10,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L23,6c0,-0.55 -0.45,-1 -1,-1zM21,17L11,17L11,7h10v10zM17.43,12.62l-2,2.57L14,13.47l-2,2.52h8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/bus_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/bus_alert.xml
deleted file mode 100644
index f9dc15d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/bus_alert.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-3H4V16zM13.5,14c0.83,0 1.5,0.67 1.5,1.5S14.33,17 13.5,17S12,16.33 12,15.5S12.67,14 13.5,14zM6.5,14C7.33,14 8,14.67 8,15.5S7.33,17 6.5,17S5,16.33 5,15.5S5.67,14 6.5,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.43,6H11c0,-0.33 0.03,-0.66 0.08,-0.98C7.4,4.91 5.25,5.29 4.43,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29C11.1,7.37 11,6.7 11,6H4.43c0.83,-0.71 2.98,-1.09 6.65,-0.98c0.1,-0.7 0.3,-1.37 0.59,-1.99C2.97,2.67 2,5.02 2,7v9.5c0,0.95 0.38,1.81 1,2.44V21c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-2.06c0.62,-0.63 1,-1.49 1,-2.44V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM16,16c0,1.1 -0.9,2 -2,2H6c-1.1,0 -2,-0.9 -2,-2v-3h12V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/business.xml b/compose/material/material/icons/generator/raw-icons/twotone/business.xml
deleted file mode 100644
index 3a56aa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/business.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11h2v2h-2v2h2v2h-2v2h8L20,9h-8v2zM16,11h2v2h-2v-2zM16,15h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h2v2h-2zM16,11h2v2h-2zM22,7L12,7L12,3L2,3v18h20L22,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/business_center.xml b/compose/material/material/icons/generator/raw-icons/twotone/business_center.xml
deleted file mode 100644
index 8892ef8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/business_center.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17H9v-1H5v3h14v-3h-4zM4,14h5v-3h6v3h5V9H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-4L16,5l-2,-2h-4L8,5v2L4,7c-1.1,0 -2,0.9 -2,2v5c0,0.75 0.4,1.38 1,1.73L3,19c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2v-3.28c0.59,-0.35 1,-0.99 1,-1.72L22,9c0,-1.1 -0.9,-2 -2,-2zM10,5h4v2h-4L10,5zM19,19L5,19v-3h4v1h6v-1h4v3zM11,15v-2h2v2h-2zM20,14h-5v-3L9,11v3L4,14L4,9h16v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cabin.xml b/compose/material/material/icons/generator/raw-icons/twotone/cabin.xml
deleted file mode 100644
index 79c240c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cabin.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,7h-3.89L12,5.52L13.94,7zM7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9zM18,13v2H6v-2H18zM6,19v-2h12v2H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10zM12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM13.94,7h-3.89L12,5.52L13.94,7zM7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9zM18,13v2H6v-2H18zM6,19v-2h12v2H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cable.xml b/compose/material/material/icons/generator/raw-icons/twotone/cable.xml
deleted file mode 100644
index 04071ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cable.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v1h-1v4c0,0.55 0.45,1 1,1h1v7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V7c0,-2.21 -1.79,-4 -4,-4S5,4.79 5,7v7H4c-0.55,0 -1,0.45 -1,1v4h1v1c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-1h1v-4c0,-0.55 -0.45,-1 -1,-1H7V7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v10c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-7h1c0.55,0 1,-0.45 1,-1V5H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cached.xml b/compose/material/material/icons/generator/raw-icons/twotone/cached.xml
deleted file mode 100644
index e4d5311..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cached.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8l-4,4h3c0,3.31 -2.69,6 -6,6 -1.01,0 -1.97,-0.25 -2.8,-0.7l-1.46,1.46C8.97,19.54 10.43,20 12,20c4.42,0 8,-3.58 8,-8h3l-4,-4zM6,12c0,-3.31 2.69,-6 6,-6 1.01,0 1.97,0.25 2.8,0.7l1.46,-1.46C15.03,4.46 13.57,4 12,4c-4.42,0 -8,3.58 -8,8H1l4,4 4,-4H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cake.xml b/compose/material/material/icons/generator/raw-icons/twotone/cake.xml
deleted file mode 100644
index d24f9f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cake.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.53,14.92l-1.08,1.07c-1.3,1.3 -3.58,1.31 -4.89,0l-1.07,-1.07 -1.09,1.07c-0.64,0.64 -1.5,1 -2.4,1.01v3h14v-3c-0.9,-0.01 -1.76,-0.37 -2.4,-1.01l-1.07,-1.07zM18,11H6c-0.55,0 -1,0.45 -1,1v3.5c0.51,-0.01 0.99,-0.21 1.34,-0.57l2.14,-2.13 2.13,2.13c0.74,0.74 2.03,0.74 2.77,0l2.14,-2.13 2.13,2.13c0.36,0.36 0.84,0.56 1.35,0.57V12c0,-0.55 -0.45,-1 -1,-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c1.11,0 2,-0.9 2,-2 0,-0.38 -0.1,-0.73 -0.29,-1.03L12,0l-1.71,2.97c-0.19,0.3 -0.29,0.65 -0.29,1.03 0,1.1 0.9,2 2,2zM18,9h-5L13,7h-2v2L6,9c-1.66,0 -3,1.34 -3,3v9c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-9c0,-1.66 -1.34,-3 -3,-3zM19,20L5,20v-3c0.9,-0.01 1.76,-0.37 2.4,-1.01l1.09,-1.07 1.07,1.07c1.31,1.31 3.59,1.3 4.89,0l1.08,-1.07 1.07,1.07c0.64,0.64 1.5,1 2.4,1.01v3zM19,15.5c-0.51,-0.01 -0.99,-0.2 -1.35,-0.57l-2.13,-2.13 -2.14,2.13c-0.74,0.74 -2.03,0.74 -2.77,0L8.48,12.8l-2.14,2.13c-0.35,0.36 -0.83,0.56 -1.34,0.57L5,12c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/calculate.xml b/compose/material/material/icons/generator/raw-icons/twotone/calculate.xml
deleted file mode 100644
index 3fdc9d59..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/calculate.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06,-1.06l1.41,-1.41L13.03,7.06zM13,13.25h5v1.5h-5V13.25zM13,15.75h5v1.5h-5V15.75zM6.25,7.72h5v1.5h-5V7.72zM6,14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6V14.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.25,7.72h5v1.5h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15.75h5v1.5h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.25h5v1.5h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,18l1.5,0l0,-2l2,0l0,-1.5l-2,0l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.09,10.95l1.41,-1.41l1.41,1.41l1.06,-1.06l-1.41,-1.42l1.41,-1.41l-1.06,-1.06l-1.41,1.41l-1.41,-1.41l-1.06,1.06l1.41,1.41l-1.41,1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/calendar_month.xml b/compose/material/material/icons/generator/raw-icons/twotone/calendar_month.xml
deleted file mode 100644
index 668c255..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/calendar_month.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h14v2h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,20H5V10h14V20zM19,8H5V6h14V8zM9,14H7v-2h2V14zM13,14h-2v-2h2V14zM17,14h-2v-2h2V14zM9,18H7v-2h2V18zM13,18h-2v-2h2V18zM17,18h-2v-2h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/calendar_today.xml b/compose/material/material/icons/generator/raw-icons/twotone/calendar_today.xml
deleted file mode 100644
index dafd3f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/calendar_today.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-1L19,1h-2v2L7,3L7,1L5,1v2L4,3c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,5v3L4,8L4,5h16zM4,21L4,10h16v11L4,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5.01h16V8H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_day.xml b/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_day.xml
deleted file mode 100644
index 4265421..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_day.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v2L3,19zM19,12v1L5,13v-1h14m2,-2L3,10v5h18v-5zM3,6h18v2L3,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12h14v1H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_month.xml b/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_month.xml
deleted file mode 100644
index daa7884..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_month.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h4v5h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13h4v5h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13h4v5h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h4v5h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6h4v5h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6h4v5h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM8,18H4v-5h4V18zM8,11H4V6h4V11zM14,18h-4v-5h4V18zM14,11h-4V6h4V11zM20,18h-4v-5h4V18zM20,11h-4V6h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_week.xml b/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_week.xml
deleted file mode 100644
index d5ae2f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/calendar_view_week.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,6h2.5v12h-2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6h2.5v12h-2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h2.5v12h-2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,6h2.5v12h-2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM6.5,18H4V6h2.5V18zM11,18H8.5V6H11V18zM15.5,18H13V6h2.5V18zM20,18h-2.5V6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call.xml b/compose/material/material/icons/generator/raw-icons/twotone/call.xml
deleted file mode 100644
index 0962b3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17.47c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.19,1.19c1.2,0.41 2.48,0.67 3.8,0.75v-1.49zM6.54,5h-1.5c0.09,1.32 0.35,2.59 0.75,3.8l1.2,-1.2c-0.24,-0.84 -0.39,-1.71 -0.45,-2.6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21c0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1 -1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17zM16.4,17.02c0.85,0.24 1.72,0.39 2.6,0.45v1.49c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.19zM5.03,5h1.5c0.07,0.89 0.22,1.76 0.46,2.59l-1.2,1.2c-0.41,-1.2 -0.67,-2.47 -0.76,-3.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_end.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_end.xml
deleted file mode 100644
index 9909c20..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_end.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.59,12.23c0.67,0.38 1.3,0.8 1.88,1.27l1.07,-1.07c-0.92,-0.75 -1.91,-1.39 -2.96,-1.91v1.71zM3.53,13.49c0.59,-0.48 1.22,-0.9 1.87,-1.27v-1.7c-1.04,0.51 -2.03,1.15 -2.94,1.9l1.07,1.07z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7C7.46,7 3.34,8.78 0.29,11.67c-0.18,0.18 -0.29,0.43 -0.29,0.71 0,0.28 0.11,0.53 0.29,0.7l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.1 0.7,-0.28 0.79,-0.73 1.68,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.51 0.56,-0.9v-3.1C8.85,9.25 10.4,9 12,9c1.6,0 3.15,0.25 4.59,0.73v3.1c0,0.4 0.23,0.74 0.56,0.9 0.98,0.49 1.88,1.11 2.67,1.85 0.18,0.17 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71 0,-0.28 -0.11,-0.53 -0.29,-0.71C20.66,8.78 16.54,7 12,7zM5.4,12.22c-0.65,0.37 -1.28,0.79 -1.87,1.27l-1.07,-1.07c0.91,-0.75 1.9,-1.38 2.94,-1.9v1.7zM20.47,13.5c-0.58,-0.47 -1.21,-0.89 -1.88,-1.27v-1.71c1.05,0.51 2.04,1.15 2.96,1.91l-1.08,1.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_made.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_made.xml
deleted file mode 100644
index 1e5c11f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_made.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.41,20L17,8.41V15h2V5H9v2h6.59L4,18.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_merge.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_merge.xml
deleted file mode 100644
index 2caaca0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_merge.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.997,20.41l-3.408,-3.407 1.4,-1.407 3.41,3.408zM5.59,19L7,20.41l6,-6V8h3.5L12,3.5 7.5,8H11v5.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_missed.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_missed.xml
deleted file mode 100644
index 2be3262..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_missed.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10.41l7,7 9,-9L19.59,7 12,14.59 6.41,9H11V7H3v8h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_missed_outgoing.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_missed_outgoing.xml
deleted file mode 100644
index 8ffe7b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_missed_outgoing.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10.41V15h2V7h-8v2h4.59L12,14.59 4.41,7 3,8.41l9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_received.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_received.xml
deleted file mode 100644
index 6593144..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_received.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17H8.41L20,5.41 18.59,4 7,15.59V9H5v10h10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_split.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_split.xml
deleted file mode 100644
index cd5b363..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_split.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-6l2.29,2.29 -2.88,2.88 1.42,1.42 2.88,-2.88L20,10zM4,4v6l2.29,-2.29 4.71,4.7V20h2v-8.41l-5.29,-5.3L10,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/call_to_action.xml b/compose/material/material/icons/generator/raw-icons/twotone/call_to_action.xml
deleted file mode 100644
index 65a360f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/call_to_action.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18L21,5L3,5v14zM5,15h14v3L5,18v-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM5,15h14v3L5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera.xml
deleted file mode 100644
index 3e1b1bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.9,19.91c0.36,0.05 0.72,0.09 1.1,0.09 2.18,0 4.16,-0.88 5.61,-2.3L14.89,13l-3.99,6.91zM9.86,19.7l2.71,-4.7L4.59,15c0.93,2.28 2.87,4.03 5.27,4.7zM8.54,12L5.7,7.09C4.64,8.45 4,10.15 4,12c0,0.69 0.1,1.36 0.26,2h5.43l-1.15,-2zM18.3,16.91C19.36,15.55 20,13.85 20,12c0,-0.69 -0.1,-1.36 -0.26,-2h-5.43l3.99,6.91zM13.73,9h5.68c-0.93,-2.28 -2.88,-4.04 -5.28,-4.7L11.42,9h2.31zM10.27,9l2.83,-4.92C12.74,4.03 12.37,4 12,4c-2.18,0 -4.16,0.88 -5.6,2.3L9.12,11l1.15,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10 0,-4.75 -3.31,-8.72 -7.75,-9.74l-0.08,-0.04 -0.01,0.02C13.46,2.09 12.74,2 12,2 6.48,2 2,6.48 2,12s4.48,10 10,10zM12,20c-0.38,0 -0.74,-0.04 -1.1,-0.09L14.89,13l2.72,4.7C16.16,19.12 14.18,20 12,20zM20,12c0,1.85 -0.64,3.55 -1.7,4.91l-4,-6.91h5.43c0.17,0.64 0.27,1.31 0.27,2zM19.41,9h-7.99l2.71,-4.7c2.4,0.66 4.35,2.42 5.28,4.7zM12,4c0.37,0 0.74,0.03 1.1,0.08L10.27,9l-1.15,2L6.4,6.3C7.84,4.88 9.82,4 12,4zM4,12c0,-1.85 0.64,-3.55 1.7,-4.91L8.54,12l1.15,2L4.26,14C4.1,13.36 4,12.69 4,12zM10.27,15h2.3l-2.71,4.7c-2.4,-0.67 -4.35,-2.42 -5.28,-4.7h5.69z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera_alt.xml
deleted file mode 100644
index 9152bd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,4H9.88L8.05,6H4v12h16V6h-4.05l-1.83,-2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h4.05l1.83,-2h4.24l1.83,2L20,6v12zM12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera_enhance.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera_enhance.xml
deleted file mode 100644
index ef64124..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera_enhance.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.95,7l-0.59,-0.65L14.12,5H9.88L8.65,6.35l-0.6,0.65H4v12h16V7h-4.05zM12,18c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10l-0.94,2.06L9,13l2.06,0.94L12,16l0.94,-2.06L15,13l-2.06,-0.94zM20,5h-3.17L15,3L9,3L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,19L4,19L4,7h4.05l0.59,-0.65L9.88,5h4.24l1.24,1.35 0.59,0.65L20,7v12zM12,8c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,16c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera_front.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera_front.xml
deleted file mode 100644
index c864417..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera_front.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14h10v2H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20v2h5v2l3,-3 -3,-3v2zM14,20h5v2h-5zM11.99,8C13.1,8 14,7.1 14,6s-0.9,-2 -2.01,-2S10,4.9 10,6s0.89,2 1.99,2zM17,0L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2c0,-1.1 -0.9,-2 -2,-2zM17,16L7,16v-2h10v2zM17,12.5c0,-1.67 -3.33,-2.5 -5,-2.5s-5,0.83 -5,2.5L7,2h10v10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera_indoor.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera_indoor.xml
deleted file mode 100644
index 38bbd47..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera_indoor.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10v9h12v-9l-6,-4.5L6,10zM14,12v1l2,-1.06v4.12L14,15v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4C13.55,11 14,11.45 14,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1l2,1.06v-4.12L14,13v-1c0,-0.55 -0.45,-1 -1,-1H9C8.45,11 8,11.45 8,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM18,19H6v-9l6,-4.5l6,4.5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera_outdoor.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera_outdoor.xml
deleted file mode 100644
index f8e2f36..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera_outdoor.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,-0.55 -0.45,-1 -1,-1h-4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-1l2,1.06v-4.12L18,14V13zM12,3L4,9v12h16v-2H6v-9l6,-4.5l6,4.5v1h2V9L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera_rear.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera_rear.xml
deleted file mode 100644
index 9b5633c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera_rear.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16h10L17,2L7,2v14zM11.99,3c1.1,0 2,0.9 2,2C14,6.1 13.1,7 12,7c-1.11,0 -2,-0.9 -2,-2s0.89,-2 1.99,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20v2h5v2l3,-3 -3,-3v2zM14,20h5v2h-5zM19,2c0,-1.1 -0.9,-2 -2,-2L7,0C5.9,0 5,0.9 5,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,2zM17,16L7,16L7,2h10v14zM12,7c1.1,0 2,-0.9 1.99,-2 0,-1.1 -0.9,-2 -2,-2S10,3.9 10,5s0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/camera_roll.xml b/compose/material/material/icons/generator/raw-icons/twotone/camera_roll.xml
deleted file mode 100644
index bb895f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/camera_roll.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L9,5L9,3L7,3v2L4,5v15h8v-2h8L20,7h-8L12,5zM11,17L9,17v-2h2v2zM11,10L9,10L9,8h2v2zM17,8h2v2h-2L17,8zM17,15h2v2h-2v-2zM13,8h2v2h-2L13,8zM13,15h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5c0,-1.1 -0.9,-2 -2,-2h-1L11,2c0,-0.55 -0.45,-1 -1,-1L6,1c-0.55,0 -1,0.45 -1,1v1L4,3c-1.1,0 -2,0.9 -2,2v15c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2h8L22,5h-8zM20,18h-8v2L4,20L4,5h3L7,3h2v2h3v2h8v11zM9,15h2v2L9,17zM9,8h2v2L9,10zM13,15h2v2h-2zM13,8h2v2h-2zM17,15h2v2h-2zM17,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cameraswitch.xml b/compose/material/material/icons/generator/raw-icons/twotone/cameraswitch.xml
deleted file mode 100644
index 67b8e3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cameraswitch.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,8h-2.34l-1,1H8v6h8V9h-1.83L13.17,8zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h-1l-1,-1h-4L9,7H8C6.9,7 6,7.9 6,9v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V9C18,7.9 17.1,7 16,7zM16,15H8V9h1.83l1,-1h2.34l1,1H16V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.57,0.52L13.05,5V2.05C17.77,2.52 21.53,6.28 22,11c0,0 2,0 2,0C23.34,3.03 15.49,-1.58 8.57,0.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.95,21.96C6.23,21.49 2.47,17.73 2,13.01c0,0 -2,0 -2,0c0.66,7.97 8.51,12.58 15.43,10.48l-4.48,-4.48V21.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/campaign.xml b/compose/material/material/icons/generator/raw-icons/twotone/campaign.xml
deleted file mode 100644
index be0e026..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/campaign.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0,0.67 0,1.33 0,2c1.2,0 2.76,0 4,0c0,-0.67 0,-1.33 0,-2C20.76,11 19.2,11 18,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.61c0.96,0.71 2.21,1.65 3.2,2.39c0.4,-0.53 0.8,-1.07 1.2,-1.6c-0.99,-0.74 -2.24,-1.68 -3.2,-2.4C16.8,16.54 16.4,17.08 16,17.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,5.6C20,5.07 19.6,4.53 19.2,4c-0.99,0.74 -2.24,1.68 -3.2,2.4c0.4,0.53 0.8,1.07 1.2,1.6C18.16,7.28 19.41,6.35 20.4,5.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v4h2v-4h1l5,3V6L8,9H4zM9.03,10.71L11,9.53v4.94l-1.97,-1.18L8.55,13H8H4v-2h4h0.55L9.03,10.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,12c0,-1.33 -0.58,-2.53 -1.5,-3.35v6.69C14.92,14.53 15.5,13.33 15.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.03,10.71L11,9.53v4.94l-1.97,-1.18L8.55,13H8H4v-2h4h0.55L9.03,10.71z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cancel.xml b/compose/material/material/icons/generator/raw-icons/twotone/cancel.xml
deleted file mode 100644
index 6447304..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cancel.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM17,15.59L15.59,17 12,13.41 8.41,17 7,15.59 10.59,12 7,8.41 8.41,7 12,10.59 15.59,7 17,8.41 13.41,12 17,15.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15.59,7L12,10.59 8.41,7 7,8.41 10.59,12 7,15.59 8.41,17 12,13.41 15.59,17 17,15.59 13.41,12 17,8.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cancel_presentation.xml b/compose/material/material/icons/generator/raw-icons/twotone/cancel_presentation.xml
deleted file mode 100644
index 1632a1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cancel_presentation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19.1h18L21,4.95L3,4.95L3,19.1zM8,9.36l1.41,-1.41L12,10.54l2.59,-2.59L16,9.36l-2.59,2.59L16,14.54l-1.41,1.41L12,13.36l-2.59,2.59L8,14.54l2.59,-2.59L8,9.36z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM9.41,15.95L12,13.36l2.59,2.59L16,14.54l-2.59,-2.59L16,9.36l-1.41,-1.41L12,10.54 9.41,7.95 8,9.36l2.59,2.59L8,14.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cancel_schedule_send.xml b/compose/material/material/icons/generator/raw-icons/twotone/cancel_schedule_send.xml
deleted file mode 100644
index 10546ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cancel_schedule_send.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.97l6.1,-2.61c0.02,-0.14 0.04,-0.29 0.07,-0.43L3,15.75V17.97z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,11c-3.03,0 -5.5,2.47 -5.5,5.5s2.47,5.5 5.5,5.5s5.5,-2.47 5.5,-5.5S19.53,11 16.5,11zM18.97,18.27l-0.71,0.71l-1.77,-1.77l-1.77,1.77l-0.71,-0.71l1.77,-1.77l-1.77,-1.77l0.71,-0.71l1.77,1.77l1.77,-1.77l0.71,0.71l-1.77,1.77L18.97,18.27z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8.25l7.52,1l-7.51,-3.22z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9c-0.42,0 -0.83,0.04 -1.24,0.11c0,0 0,0 0,0L1.01,3L1,10l10.06,1.34c-0.42,0.44 -0.78,0.93 -1.09,1.46L1,14l0.01,7l8.07,-3.46c0,0 0,0 0,0C9.59,21.19 12.71,24 16.5,24c4.14,0 7.5,-3.36 7.5,-7.5S20.64,9 16.5,9zM3,8.25l0.01,-2.22l7.51,3.22L3,8.25zM9.1,15.36L3,17.97v-2.22l6.17,-0.82C9.14,15.07 9.12,15.21 9.1,15.36zM16.5,22c-3.03,0 -5.5,-2.47 -5.5,-5.5s2.47,-5.5 5.5,-5.5s5.5,2.47 5.5,5.5S19.53,22 16.5,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.27,14.03l-1.77,1.76l-1.77,-1.76l-0.7,0.7l1.76,1.77l-1.76,1.77l0.7,0.7l1.77,-1.76l1.77,1.76l0.7,-0.7l-1.76,-1.77l1.76,-1.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/candlestick_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/candlestick_chart.xml
deleted file mode 100644
index a66bffd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/candlestick_chart.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4H7v2H5v12h2v2h2v-2h2V6H9V4zM9,16H7V8h2V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8h2v8h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10h2v3h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-2V4h-2v4h-2v7h2v5h2v-5h2V8zM17,13h-2v-3h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/car_crash.xml b/compose/material/material/icons/generator/raw-icons/twotone/car_crash.xml
deleted file mode 100644
index 531f902..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/car_crash.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.91,13c0.06,0.16 0.09,0.33 0.09,0.5c0,0.83 -0.67,1.5 -1.5,1.5S15,14.33 15,13.5c0,-0.39 0.15,-0.74 0.39,-1c-0.86,-0.35 -1.63,-0.86 -2.29,-1.5H5v5h14v-3.07C18.67,12.98 18.39,13 17.91,13zM7.5,15C6.67,15 6,14.33 6,13.5S6.67,12 7.5,12S9,12.67 9,13.5S8.33,15 7.5,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,7h-1V3h1V7zM18.5,8v1h-1V8H18.5zM6,13.5C6,12.67 6.67,12 7.5,12S9,12.67 9,13.5S8.33,15 7.5,15S6,14.33 6,13.5zM19,12.93c0.65,-0.09 1.34,-0.28 2,-0.6h0V19c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,-0.45 -1,-1v-1H6v1c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-8l2.08,-5.99C5.29,4.42 5.84,4 6.5,4l4.79,0C11.1,4.63 11,5.31 11,6H6.85L5.81,9h5.86v0c0.36,0.75 0.84,1.43 1.43,2L5,11v5h14L19,12.93zM17.91,13c-0.89,-0.01 -1.74,-0.19 -2.53,-0.51C15.15,12.76 15,13.11 15,13.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5C18,13.32 17.97,13.16 17.91,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/car_rental.xml b/compose/material/material/icons/generator/raw-icons/twotone/car_rental.xml
deleted file mode 100644
index 1593cd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/car_rental.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15.01V18h10v-2.99V15H7V15.01zM15,15.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S14.45,15.5 15,15.5zM9,15.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S8.45,15.5 9,15.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.25,9.6c-0.02,-0.02 -0.03,-0.04 -0.05,-0.07C16.82,9.01 16.28,9 16.28,9H7.72c0,0 -0.54,0.01 -0.92,0.54C6.78,9.56 6.77,9.58 6.75,9.6C6.68,9.71 6.61,9.84 6.56,10C6.34,10.66 5.82,12.22 5,14.69v6.5C5,21.64 5.35,22 5.78,22h0.44C6.65,22 7,21.64 7,21.19V20h10v1.19c0,0.45 0.34,0.81 0.78,0.81h0.44c0.43,0 0.78,-0.36 0.78,-0.81v-6.5c-0.82,-2.46 -1.34,-4.03 -1.56,-4.69C17.39,9.84 17.32,9.71 17.25,9.6zM8.33,11h7.34l0.23,0.69L16.33,13H7.67L8.33,11zM17,15.01V18H7v-2.99V15h10V15.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,3C10.41,1.83 9.3,1 8,1C6.34,1 5,2.34 5,4c0,1.65 1.34,3 3,3c1.3,0 2.41,-0.84 2.83,-2H16v2h2V5h1V3H10.83zM8,5C7.45,5 7,4.55 7,4s0.45,-1 1,-1s1,0.45 1,1S8.55,5 8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/car_repair.xml b/compose/material/material/icons/generator/raw-icons/twotone/car_repair.xml
deleted file mode 100644
index 77f006a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/car_repair.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9.01V9H7v0.01V12h10V9.01zM9,11.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S9.55,11.5 9,11.5zM15,11.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,11.5 15,11.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.78,16h0.44C6.65,16 7,15.64 7,15.19V14h10v1.19c0,0.45 0.34,0.81 0.78,0.81h0.44c0.43,0 0.78,-0.36 0.78,-0.81v-6.5c0,0 -1.34,-4.03 -1.56,-4.69c-0.05,-0.16 -0.12,-0.29 -0.19,-0.4c-0.02,-0.02 -0.03,-0.04 -0.05,-0.07C16.82,3.01 16.28,3 16.28,3H7.72c0,0 -0.54,0.01 -0.92,0.54C6.78,3.56 6.77,3.58 6.75,3.6C6.68,3.71 6.61,3.84 6.56,4C6.34,4.66 5,8.69 5,8.69v6.5C5,15.64 5.35,16 5.78,16zM8.33,5h7.34l0.23,0.69L16.33,7H7.67L8.33,5zM7,9.01V9h10v0.01V12H7V9.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.01l0,1.99l7,0l0,3l2,0l0,-3l7,0l0,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/card_giftcard.xml b/compose/material/material/icons/generator/raw-icons/twotone/card_giftcard.xml
deleted file mode 100644
index 54c7d20..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/card_giftcard.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h16v2L4,19zM17,10.83L15.38,12 12,7.4 8.62,12 7,10.83 9.08,8L4,8v6h16L20,8h-5.08z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 12,7.4l3.38,4.6L17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/card_membership.xml b/compose/material/material/icons/generator/raw-icons/twotone/card_membership.xml
deleted file mode 100644
index 7d879eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/card_membership.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h16v6L4,10zM4,13h16v2L4,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h4v5l4,-2 4,2v-5h4c1.11,0 2,-0.89 2,-2L22,4c0,-1.11 -0.89,-2 -2,-2zM20,15L4,15v-2h16v2zM20,10L4,10L4,4h16v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/card_travel.xml b/compose/material/material/icons/generator/raw-icons/twotone/card_travel.xml
deleted file mode 100644
index 676af99..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/card_travel.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h16v2L4,19zM17,10h-2L15,8L9,8v2L7,10L7,8L4,8v6h16L20,8h-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-3L17,4c0,-1.11 -0.89,-2 -2,-2L9,2c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -2,0.89 -2,2v11c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM9,4h6v2L9,6L9,4zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h3v2h2L9,8h6v2h2L17,8h3v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/carpenter.xml b/compose/material/material/icons/generator/raw-icons/twotone/carpenter.xml
deleted file mode 100644
index c836eda..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/carpenter.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78 -0.78,2.05 0,2.83l1.41,1.41c0.78,0.78 2.05,0.78 2.83,0l4.24,-4.24C20.51,16.28 20.51,15.01 19.73,14.23zM5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62zM14.07,19.88l-1.41,-1.41l4.24,-4.24l1.41,1.41L14.07,19.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cases.xml b/compose/material/material/icons/generator/raw-icons/twotone/cases.xml
deleted file mode 100644
index 29e6778..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cases.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h14v9h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9H1v11c0,1.11 0.89,2 2,2h17v-2H3V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V3c0,-1.1 -0.9,-2 -2,-2h-4c-1.1,0 -2,0.9 -2,2v2H5v11c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5H18zM12,3h4v2h-4V3zM21,16H7V7h14V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/casino.xml b/compose/material/material/icons/generator/raw-icons/twotone/casino.xml
deleted file mode 100644
index 06138fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/casino.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM16.5,6c0.83,0 1.5,0.67 1.5,1.5S17.33,9 16.5,9 15,8.33 15,7.5 15.67,6 16.5,6zM16.5,15c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM12,10.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM7.5,6C8.33,6 9,6.67 9,7.5S8.33,9 7.5,9 6,8.33 6,7.5 6.67,6 7.5,6zM7.5,15c0.83,0 1.5,0.67 1.5,1.5S8.33,18 7.5,18 6,17.33 6,16.5 6.67,15 7.5,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cast.xml b/compose/material/material/icons/generator/raw-icons/twotone/cast.xml
deleted file mode 100644
index dceb6e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cast_connected.xml b/compose/material/material/icons/generator/raw-icons/twotone/cast_connected.xml
deleted file mode 100644
index ed1a8250b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cast_connected.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9H5.95c2.83,1.17 5.15,3.3 6.56,6H17V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11zM21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM5,7v1.63c0.32,0.1 0.63,0.24 0.95,0.37L17,9v6h-4.49c0.15,0.29 0.29,0.58 0.42,0.88 0.16,0.36 0.31,0.74 0.44,1.12L19,17L19,7L5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cast_for_education.xml b/compose/material/material/icons/generator/raw-icons/twotone/cast_for_education.xml
deleted file mode 100644
index ce33bbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cast_for_education.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v3h2L3,5h18v14h-7v2h7c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM1,18v3h3c0,-1.66 -1.34,-3 -3,-3zM1,14v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM1,10v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.93,-11 -11,-11zM11,11.09v2L14.5,15l3.5,-1.91v-2L14.5,13 11,11.09zM14.5,6L9,9l5.5,3L20,9l-5.5,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/castle.xml b/compose/material/material/icons/generator/raw-icons/twotone/castle.xml
deleted file mode 100644
index dbcc026..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/castle.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7H7v6H3v6h5v-1c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v1h5v-6h-4V7zM11,12H9V9h2V12zM15,12h-2V9h2V12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h9V9H21zM21,19h-5v-1c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v1H3v-6h4V7h10v6h4V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h2v3h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/catching_pokemon.xml b/compose/material/material/icons/generator/raw-icons/twotone/catching_pokemon.xml
deleted file mode 100644
index a4775c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/catching_pokemon.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.08,0 7.45,3.05 7.94,7h-4.06C15.43,9.27 13.86,8 12,8s-3.43,1.27 -3.87,3H4.06C4.55,7.05 7.92,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,4c4.08,0 7.45,3.05 7.94,7h-4.06C15.43,9.27 13.86,8 12,8s-3.43,1.27 -3.87,3H4.06C4.55,7.05 7.92,4 12,4zM14,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2S14,10.9 14,12zM12,20c-4.08,0 -7.45,-3.05 -7.94,-7h4.06c0.44,1.73 2.01,3 3.87,3s3.43,-1.27 3.87,-3h4.06C19.45,16.95 16.08,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/category.xml b/compose/material/material/icons/generator/raw-icons/twotone/category.xml
deleted file mode 100644
index 2138e67..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/category.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,17.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15.5h4v4L5,19.5zM12,5.84L10.07,9h3.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2l-5.5,9h11L12,2zM12,5.84L13.93,9h-3.87L12,5.84zM17.5,13c-2.49,0 -4.5,2.01 -4.5,4.5s2.01,4.5 4.5,4.5 4.5,-2.01 4.5,-4.5 -2.01,-4.5 -4.5,-4.5zM17.5,20c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5zM11,13.5L3,13.5v8h8v-8zM9,19.5L5,19.5v-4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/celebration.xml b/compose/material/material/icons/generator/raw-icons/twotone/celebration.xml
deleted file mode 100644
index 7d64eb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/celebration.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.35,16.18l-4.53,-4.53l-2.52,7.05z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22l14,-5L7,8L2,22zM12.35,16.18L5.3,18.7l2.52,-7.05L12.35,16.18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.53,12.53l5.59,-5.59c0.49,-0.49 1.28,-0.49 1.77,0l0.59,0.59l1.06,-1.06l-0.59,-0.59c-1.07,-1.07 -2.82,-1.07 -3.89,0l-5.59,5.59L14.53,12.53z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.47,7.47l1.06,1.06l0.59,-0.59c1.07,-1.07 1.07,-2.82 0,-3.89l-0.59,-0.59L9.47,4.53l0.59,0.59c0.48,0.48 0.48,1.28 0,1.76L9.47,7.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.88l-1.59,1.59l1.06,1.06l1.59,-1.59c0.49,-0.49 1.28,-0.49 1.77,0l1.61,1.61l1.06,-1.06l-1.61,-1.61C19.87,10.81 18.13,10.81 17.06,11.88z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.06,5.88l-3.59,3.59l1.06,1.06l3.59,-3.59c1.07,-1.07 1.07,-2.82 0,-3.89l-1.59,-1.59l-1.06,1.06l1.59,1.59C15.54,4.6 15.54,5.4 15.06,5.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cell_tower.xml b/compose/material/material/icons/generator/raw-icons/twotone/cell_tower.xml
deleted file mode 100644
index a36ceb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cell_tower.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.3,14.7l1.2,-1.2c-1,-1 -1.5,-2.3 -1.5,-3.5c0,-1.3 0.5,-2.6 1.5,-3.5L7.3,5.3c-1.3,1.3 -2,3 -2,4.7S6,13.4 7.3,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,2.9l-1.2,1.2c1.6,1.6 2.4,3.8 2.4,5.9c0,2.1 -0.8,4.3 -2.4,5.9l1.2,1.2c2,-2 2.9,-4.5 2.9,-7.1C22,7.4 21,4.9 19.1,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.1,4.1L4.9,2.9C3,4.9 2,7.4 2,10c0,2.6 1,5.1 2.9,7.1l1.2,-1.2c-1.6,-1.6 -2.4,-3.8 -2.4,-5.9C3.7,7.9 4.5,5.7 6.1,4.1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.7,14.7c1.3,-1.3 2,-3 2,-4.7c-0.1,-1.7 -0.7,-3.4 -2,-4.7l-1.2,1.2c1,1 1.5,2.3 1.5,3.5c0,1.3 -0.5,2.6 -1.5,3.5L16.7,14.7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10c0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,8.62 9.5,10c0,0.76 0.34,1.42 0.87,1.88L7,22h2l0.67,-2h4.67L15,22h2l-3.37,-10.12C14.16,11.42 14.5,10.76 14.5,10zM10.33,18L12,13l1.67,5H10.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cell_wifi.xml b/compose/material/material/icons/generator/raw-icons/twotone/cell_wifi.xml
deleted file mode 100644
index 0968c62..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cell_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22h16V5.97L6,22zM20,20h-2v-7.22l2,-2V20zM5.22,7.22L3.93,5.93c3.9,-3.91 10.24,-3.91 14.15,0l-1.29,1.29C13.6,4.03 8.41,4.03 5.22,7.22zM12.93,11.07L11,13l-1.93,-1.93C10.14,10.01 11.86,10.01 12.93,11.07zM14.22,9.79c-1.78,-1.77 -4.66,-1.77 -6.43,0L6.5,8.5c2.48,-2.48 6.52,-2.48 9,0L14.22,9.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/center_focus_strong.xml b/compose/material/material/icons/generator/raw-icons/twotone/center_focus_strong.xml
deleted file mode 100644
index a89bd0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/center_focus_strong.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12c0,2.76 2.24,5 5,5s5,-2.24 5,-5 -2.24,-5 -5,-5 -5,2.24 -5,5zM15,12c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3 1.35,-3 3,-3 3,1.35 3,3zM3,19c0,1.1 0.9,2 2,2h4v-2L5,19v-4L3,15v4zM3,5v4h2L5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2zM21,5c0,-1.1 -0.9,-2 -2,-2h-4v2h4v4h2L21,5zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/center_focus_weak.xml b/compose/material/material/icons/generator/raw-icons/twotone/center_focus_weak.xml
deleted file mode 100644
index df54682..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/center_focus_weak.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19c0,1.1 0.9,2 2,2h4v-2L5,19v-4L3,15v4zM3,5v4h2L5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM21,5c0,-1.1 -0.9,-2 -2,-2h-4v2h4v4h2L21,5zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chair.xml b/compose/material/material/icons/generator/raw-icons/twotone/chair.xml
deleted file mode 100644
index 9d50b53..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chair.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13h10v-2c0,-0.88 0.39,-1.67 1,-2.22V6c0,-0.55 -0.45,-1 -1,-1H7C6.45,5 6,5.45 6,6v2.78C6.61,9.33 7,10.12 7,11V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10c-0.55,0 -1,0.45 -1,1v4H5v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v5c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-5C21,10.45 20.55,10 20,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8V6c0,-1.65 -1.35,-3 -3,-3H7C5.35,3 4,4.35 4,6v2c-1.65,0 -3,1.35 -3,3v5c0,1.65 1.35,3 3,3v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1v-1c1.65,0 3,-1.35 3,-3v-5C23,9.35 21.65,8 20,8zM6,6c0,-0.55 0.45,-1 1,-1h10c0.55,0 1,0.45 1,1v2.78c-0.61,0.55 -1,1.34 -1,2.22v2H7v-2c0,-0.88 -0.39,-1.67 -1,-2.22V6zM21,16c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h14v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chair_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/chair_alt.xml
deleted file mode 100644
index a28df95..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chair_alt.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14h10v2h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v3h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v3c0,1.1 0.9,2 2,2h1v2H7c-1.1,0 -2,0.9 -2,2v7h2v-3h10v3h2v-7c0,-1.1 -0.9,-2 -2,-2h-1v-2H17zM17,14v2H7v-2H17zM10,12v-2h4v2H10zM7,8V5h10v3H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chalet.xml b/compose/material/material/icons/generator/raw-icons/twotone/chalet.xml
deleted file mode 100644
index 21581c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chalet.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18l-2,0l0,-3l-2,0l0,3l-2,0l0,-4.67l3,-3l3,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,15L10,7.5L2.5,15l1.41,1.41L5,15.33V20h10v-4.67l1.09,1.09L17.5,15zM13,18h-2v-3H9v3H7v-4.67l3,-3l3,3V18zM22,7.5h-1.19l0.75,0.75l-0.71,0.71L19.39,7.5H18.5v0.89l1.45,1.45l-0.71,0.71L18.5,9.81V11h-1V9.81l-0.75,0.75l-0.71,-0.71l1.45,-1.45V7.5h-0.89l-1.45,1.45l-0.71,-0.71l0.75,-0.75H14v-1h1.19l-0.75,-0.75l0.71,-0.71l1.45,1.45h0.89V5.61l-1.45,-1.45l0.71,-0.71l0.75,0.75V3h1v1.19l0.75,-0.75l0.71,0.71L18.5,5.61V6.5h0.89l1.45,-1.45l0.71,0.71L20.81,6.5H22V7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/change_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/change_circle.xml
deleted file mode 100644
index 02a2138..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/change_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12.06,13.34v2.14c-0.92,0.02 -1.84,-0.31 -2.54,-1.01c-1.12,-1.12 -1.3,-2.8 -0.59,-4.13l-1.1,-1.1c-1.28,1.94 -1.07,4.59 0.64,6.29C9.44,16.51 10.72,17 12,17c0.02,0 0.04,0 0.06,0V19l2.83,-2.83L12.06,13.34zM15.54,8.46c-0.99,-0.99 -2.3,-1.46 -3.6,-1.45V5L9.11,7.83l2.83,2.83V8.51c0.02,0 0.04,0 0.06,0c0.9,0 1.79,0.34 2.48,1.02c1.12,1.12 1.3,2.8 0.59,4.13l1.1,1.1C17.45,12.82 17.24,10.17 15.54,8.46z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2L12,2zM12.06,13.34v2.14c-0.92,0.02 -1.84,-0.31 -2.54,-1.01c-1.12,-1.12 -1.3,-2.8 -0.59,-4.13l-1.1,-1.1c-1.28,1.94 -1.07,4.59 0.64,6.29C9.44,16.51 10.72,17 12,17c0.02,0 0.04,0 0.06,0V19l2.83,-2.83L12.06,13.34zM15.54,8.46c-0.99,-0.99 -2.3,-1.46 -3.6,-1.45V5L9.11,7.83l2.83,2.83V8.51c0.02,0 0.04,0 0.06,0c0.9,0 1.79,0.34 2.48,1.02c1.12,1.12 1.3,2.8 0.59,4.13l1.1,1.1C17.45,12.82 17.24,10.17 15.54,8.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/change_history.xml b/compose/material/material/icons/generator/raw-icons/twotone/change_history.xml
deleted file mode 100644
index 3ac66eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/change_history.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.77L5.61,18h12.78z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L2,20h20L12,4zM12,7.77L18.39,18L5.61,18L12,7.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/charging_station.xml b/compose/material/material/icons/generator/raw-icons/twotone/charging_station.xml
deleted file mode 100644
index 302bfd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/charging_station.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3v1H7V3H17M17,20H7v1h10V20"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11l-3,6v-4h-2l3,-6v4H14.5zM17,3H7v1h10V3M17,20H7v1h10V20M17,1c1.1,0 2,0.9 2,2v18c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V3c0,-1.1 0.9,-2 2,-2H17L17,1zM7,18h10V6H7V18L7,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chat.xml b/compose/material/material/icons/generator/raw-icons/twotone/chat.xml
deleted file mode 100644
index 7d8fa96..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chat.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4v13.17L5.17,16L20,16L20,4zM14,14L6,14v-2h8v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14zM4,17.17L4,4h16v12L5.17,16L4,17.17zM6,12h8v2L6,14zM6,9h12v2L6,11zM6,6h12v2L6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chat_bubble.xml b/compose/material/material/icons/generator/raw-icons/twotone/chat_bubble.xml
deleted file mode 100644
index 0df6b01..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chat_bubble.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18l2,-2h14V4H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L6,16l-2,2L4,4h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chat_bubble_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/chat_bubble_outline.xml
deleted file mode 100644
index e0a11fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chat_bubble_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L6,16l-2,2L4,4h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/check.xml b/compose/material/material/icons/generator/raw-icons/twotone/check.xml
deleted file mode 100644
index 6c11d35..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41L9,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/check_box.xml b/compose/material/material/icons/generator/raw-icons/twotone/check_box.xml
deleted file mode 100644
index 32cdcb7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/check_box.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM7.41,11.6l2.58,2.58 6.59,-6.59L17.99,9l-8,8L6,13.01l1.41,-1.41z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM17.99,9l-1.41,-1.42 -6.59,6.59 -2.58,-2.57 -1.42,1.41 4,3.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/check_box_outline_blank.xml b/compose/material/material/icons/generator/raw-icons/twotone/check_box_outline_blank.xml
deleted file mode 100644
index 8c7ac2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/check_box_outline_blank.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5h14m0,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/check_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/check_circle.xml
deleted file mode 100644
index b7b0d1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/check_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM10,17l-4,-4 1.41,-1.41L10,14.17l6.59,-6.59L18,9l-8,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM16.59,7.58L10,14.17l-2.59,-2.58L6,13l4,4 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/check_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/check_circle_outline.xml
deleted file mode 100644
index ad63e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/check_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM16.59,7.58L10,14.17l-2.59,-2.58L6,13l4,4 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/checklist.xml b/compose/material/material/icons/generator/raw-icons/twotone/checklist.xml
deleted file mode 100644
index 64e7ee3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/checklist.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-9v2h9V7zM22,15h-9v2h9V15zM5.54,11L2,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,11zM5.54,19L2,15.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L5.54,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/checklist_rtl.xml b/compose/material/material/icons/generator/raw-icons/twotone/checklist_rtl.xml
deleted file mode 100644
index eb4422c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/checklist_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7H2v2h9V7zM11,15H2v2h9V15zM16.34,11l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,5.34L16.34,11zM16.34,19l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L22,13.34L16.34,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/checkroom.xml b/compose/material/material/icons/generator/raw-icons/twotone/checkroom.xml
deleted file mode 100644
index b1e0d52..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/checkroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.6,18.2L13,11.75v-0.91c1.65,-0.49 2.8,-2.17 2.43,-4.05c-0.26,-1.31 -1.3,-2.4 -2.61,-2.7C10.54,3.57 8.5,5.3 8.5,7.5h2C10.5,6.67 11.17,6 12,6s1.5,0.67 1.5,1.5c0,0.84 -0.69,1.52 -1.53,1.5C11.43,8.99 11,9.45 11,9.99v1.76L2.4,18.2C1.63,18.78 2.04,20 3,20h9h9C21.96,20 22.37,18.78 21.6,18.2zM6,18l6,-4.5l6,4.5H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chevron_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/chevron_left.xml
deleted file mode 100644
index dab785f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chevron_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12l4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chevron_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/chevron_right.xml
deleted file mode 100644
index 72e27a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chevron_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6L8.59,7.41 13.17,12l-4.58,4.59L10,18l6,-6 -6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/child_care.xml b/compose/material/material/icons/generator/raw-icons/twotone/child_care.xml
deleted file mode 100644
index 9be33de..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/child_care.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10c-0.1,0 -0.19,0.02 -0.29,0.03 -0.2,-0.67 -0.49,-1.29 -0.86,-1.86C16.6,6.26 14.45,5 12,5S7.4,6.26 6.15,8.17c-0.37,0.57 -0.66,1.19 -0.86,1.86 -0.1,-0.01 -0.19,-0.03 -0.29,-0.03 -1.1,0 -2,0.9 -2,2s0.9,2 2,2c0.1,0 0.19,-0.02 0.29,-0.03 0.2,0.67 0.49,1.29 0.86,1.86C7.4,17.74 9.55,19 12,19s4.6,-1.26 5.85,-3.17c0.37,-0.57 0.66,-1.19 0.86,-1.86 0.1,0.01 0.19,0.03 0.29,0.03 1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2zM14.5,9.25c0.69,0 1.25,0.56 1.25,1.25s-0.56,1.25 -1.25,1.25 -1.25,-0.56 -1.25,-1.25 0.56,-1.25 1.25,-1.25zM9.5,9.25c0.69,0 1.25,0.56 1.25,1.25s-0.56,1.25 -1.25,1.25 -1.25,-0.56 -1.25,-1.25 0.56,-1.25 1.25,-1.25zM12,17c-2.01,0 -3.74,-1.23 -4.5,-3h9c-0.76,1.77 -2.49,3 -4.5,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,10.5m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c2.01,0 3.74,-1.23 4.5,-3h-9c0.76,1.77 2.49,3 4.5,3zM22.94,11.34c-0.25,-1.51 -1.36,-2.74 -2.81,-3.17 -0.53,-1.12 -1.28,-2.1 -2.19,-2.91C16.36,3.85 14.28,3 12,3s-4.36,0.85 -5.94,2.26c-0.92,0.81 -1.67,1.8 -2.19,2.91 -1.45,0.43 -2.56,1.65 -2.81,3.17 -0.04,0.21 -0.06,0.43 -0.06,0.66 0,0.23 0.02,0.45 0.06,0.66 0.25,1.51 1.36,2.74 2.81,3.17 0.52,1.11 1.27,2.09 2.17,2.89C7.62,20.14 9.71,21 12,21s4.38,-0.86 5.97,-2.28c0.9,-0.8 1.65,-1.79 2.17,-2.89 1.44,-0.43 2.55,-1.65 2.8,-3.17 0.04,-0.21 0.06,-0.43 0.06,-0.66 0,-0.23 -0.02,-0.45 -0.06,-0.66zM19,14c-0.1,0 -0.19,-0.02 -0.29,-0.03 -0.2,0.67 -0.49,1.29 -0.86,1.86C16.6,17.74 14.45,19 12,19s-4.6,-1.26 -5.85,-3.17c-0.37,-0.57 -0.66,-1.19 -0.86,-1.86 -0.1,0.01 -0.19,0.03 -0.29,0.03 -1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2c0.1,0 0.19,0.02 0.29,0.03 0.2,-0.67 0.49,-1.29 0.86,-1.86C7.4,6.26 9.55,5 12,5s4.6,1.26 5.85,3.17c0.37,0.57 0.66,1.19 0.86,1.86 0.1,-0.01 0.19,-0.03 0.29,-0.03 1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/child_friendly.xml b/compose/material/material/icons/generator/raw-icons/twotone/child_friendly.xml
deleted file mode 100644
index 23eb6fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/child_friendly.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4.34V8h3.66C18.05,6.3 16.7,4.95 15,4.34zM8.04,14.36l0.44,0.67c1.19,0.16 2.19,0.92 2.68,1.97h2.68c0.56,-1.18 1.77,-2 3.16,-2 0.15,0 0.31,0.01 0.46,0.03l0.29,-0.37c0.4,-0.51 0.7,-1.07 0.92,-1.66H7.37c0.32,0.67 0.57,1.19 0.67,1.36z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2v8h8c0,-4.42 -3.58,-8 -8,-8zM15,8L15,4.34c1.7,0.6 3.05,1.95 3.66,3.66L15,8zM6.44,11l-0.95,-2L2,9v2h2.22s1.89,4.07 2.12,4.42c-1.1,0.59 -1.84,1.75 -1.84,3.08C4.5,20.43 6.07,22 8,22c1.76,0 3.22,-1.3 3.46,-3h2.08c0.24,1.7 1.7,3 3.46,3 1.93,0 3.5,-1.57 3.5,-3.5 0,-1.04 -0.46,-1.97 -1.18,-2.61C20.37,14.54 21,12.84 21,11L6.44,11zM8,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.17,17 8,17s1.5,0.67 1.5,1.5S8.83,20 8,20zM17,20c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.17,17 17,17s1.5,0.67 1.5,1.5S17.83,20 17,20zM17.74,14.66l-0.29,0.37c-0.14,-0.02 -0.3,-0.03 -0.45,-0.03 -1.39,0 -2.6,0.82 -3.16,2h-2.68c-0.5,-1.04 -1.5,-1.8 -2.68,-1.97l-0.44,-0.67c-0.1,-0.17 -0.34,-0.69 -0.67,-1.36h11.29c-0.21,0.59 -0.52,1.15 -0.92,1.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/chrome_reader_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/chrome_reader_mode.xml
deleted file mode 100644
index c1bc8c6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/chrome_reader_mode.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h8v13H3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM11,19L3,19L3,6h8v13zM21,19h-8L13,6h8v13zM14,9.5h6L20,11h-6zM14,12h6v1.5h-6zM14,14.5h6L20,16h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/church.xml b/compose/material/material/icons/generator/raw-icons/twotone/church.xml
deleted file mode 100644
index a58eb3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/church.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10.04L12,8l-4,2.04v3.35l-4,1.81V20h5v-2.04c0,-1.69 1.35,-3.06 3,-3.06c1.65,0 3,1.37 3,3.06V20h5v-4.79l-4,-1.81V10.04zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,13.5 12,13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12.22V9l-5,-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h9v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h9v-8L18,12.22zM20,20h-5v-2.04c0,-1.69 -1.35,-3.06 -3,-3.06c-1.65,0 -3,1.37 -3,3.06V20H4v-4.79l4,-1.81v-3.35L12,8l4,2.04v3.35l4,1.81V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/circle.xml
deleted file mode 100644
index fcfd9b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-8,0a8,8 0,1 1,16 0a8,8 0,1 1,-16 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12c0,5.53 4.47,10 10,10s10,-4.47 10,-10C22,6.47 17.53,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,16.42 16.42,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/circle_notifications.xml b/compose/material/material/icons/generator/raw-icons/twotone/circle_notifications.xml
deleted file mode 100644
index 89de94e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/circle_notifications.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8c4.41,0 8,-3.59 8,-8S16.41,4 12,4zM12,18.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C13.5,17.83 12.83,18.5 12,18.5zM17,16H7v-2h1v-2.61C8,9.27 9.03,7.47 11,7V6.5c0,-0.57 0.43,-1 1,-1s1,0.43 1,1V7c1.97,0.47 3,2.28 3,4.39V14h1V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18.5c0.83,0 1.5,-0.67 1.5,-1.5h-3C10.5,17.83 11.17,18.5 12,18.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10c5.52,0 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8c4.41,0 8,3.59 8,8S16.41,20 12,20zM16,11.39c0,-2.11 -1.03,-3.92 -3,-4.39V6.5c0,-0.57 -0.43,-1 -1,-1s-1,0.43 -1,1V7c-1.97,0.47 -3,2.27 -3,4.39V14H7v2h10v-2h-1V11.39zM14,14h-4v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/class.xml b/compose/material/material/icons/generator/raw-icons/twotone/class.xml
deleted file mode 100644
index 7aebbc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/class.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13l-3,-2.25L7,13V4H6v16h12V4h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM9,4h2v5l-1,-0.75L9,9L9,4zM18,20L6,20L6,4h1v9l3,-2.25L13,13L13,4h5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/clean_hands.xml b/compose/material/material/icons/generator/raw-icons/twotone/clean_hands.xml
deleted file mode 100644
index 96c7105..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/clean_hands.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.24,9.5H7.42C7.94,8.61 8.89,8 10,8c1.62,0 2.94,1.29 2.99,2.9L9.24,9.5zM5,20v-7H3v7H5zM19.9,18.57c-0.16,-0.33 -0.51,-0.56 -0.9,-0.56h-5.35c-0.54,0 -1.07,-0.09 -1.58,-0.26l-2.38,-0.79l0.63,-1.9l2.38,0.79C13.01,15.95 15,16 15,16c0,-0.37 -0.23,-0.7 -0.57,-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63,-1.37L14.99,7l1.37,-0.63L16.99,5M20,14c1.1,0 2,-0.9 2,-2c0,-1.1 -2,-4 -2,-4s-2,2.9 -2,4C18,13.1 18.9,14 20,14zM11,6.1V4h2c0.57,0 1.1,0.17 1.55,0.45l1.43,-1.43C15.15,2.39 14.13,2 13,2c-1.47,0 -5.44,0 -5.5,0v2H9v2.11C7.22,6.48 5.8,7.79 5.25,9.5h2.16C7.94,8.61 8.89,8 10,8c1.62,0 2.94,1.29 2.99,2.9L15,11.65V11C15,8.58 13.28,6.56 11,6.1zM22,19v1l-8,2.5l-7,-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72 17,14.8 17,16h2C20.66,16 22,17.34 22,19zM5,20v-7H3v7H5zM19.9,18.57c-0.16,-0.33 -0.51,-0.56 -0.9,-0.56h-5.35c-0.54,0 -1.07,-0.09 -1.58,-0.26l-2.38,-0.79l0.63,-1.9l2.38,0.79C13.01,15.95 15,16 15,16c0,-0.37 -0.23,-0.7 -0.57,-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cleaning_services.xml b/compose/material/material/icons/generator/raw-icons/twotone/cleaning_services.xml
deleted file mode 100644
index 13c7501..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cleaning_services.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3h2v8h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13H8c-1.65,0 -3,1.35 -3,3v5h2v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h2v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h2v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3h2v-5C19,14.35 17.65,13 16,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h-1V3c0,-1.1 -0.9,-2 -2,-2h-2C9.9,1 9,1.9 9,3v8H8c-2.76,0 -5,2.24 -5,5v7h18v-7C21,13.24 18.76,11 16,11zM11,3h2v8h-2V3zM19,21h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3h-2v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H9v-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3H5v-5c0,-1.65 1.35,-3 3,-3h8c1.65,0 3,1.35 3,3V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/clear.xml b/compose/material/material/icons/generator/raw-icons/twotone/clear.xml
deleted file mode 100644
index 938bb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12 19,6.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/clear_all.xml b/compose/material/material/icons/generator/raw-icons/twotone/clear_all.xml
deleted file mode 100644
index 199f3c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/clear_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h14v2L5,13zM3,15h14v2L3,17zM7,7h14v2L7,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/close.xml b/compose/material/material/icons/generator/raw-icons/twotone/close.xml
deleted file mode 100644
index 938bb99..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/close.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12 19,6.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/close_fullscreen.xml b/compose/material/material/icons/generator/raw-icons/twotone/close_fullscreen.xml
deleted file mode 100644
index b884325..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/close_fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41zM3.41,22l5.29,-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/closed_caption.xml b/compose/material/material/icons/generator/raw-icons/twotone/closed_caption.xml
deleted file mode 100644
index 69f159b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/closed_caption.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6L5,6v12h14L19,6zM11,11L9.5,11v-0.5h-2v3h2L9.5,13L11,13v1c0,0.55 -0.45,1 -1,1L7,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1zM18,11h-1.5v-0.5h-2v3h2L16.5,13L18,13v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2zM5,6h14v12L5,18L5,6zM10,9L7,9c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1L9.5,13v0.5h-2v-3h2v0.5L11,11v-1c0,-0.55 -0.45,-1 -1,-1zM17,9h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1h-1.5v0.5h-2v-3h2v0.5L18,11v-1c0,-0.55 -0.45,-1 -1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/closed_caption_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/closed_caption_disabled.xml
deleted file mode 100644
index 000ff9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/closed_caption_disabled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.83,6H19v10.17l-1.4,-1.4C17.84,14.59 18,14.32 18,14v-1h-1.5v0.5h-0.17l-1.83,-1.83V10.5h2V11H18v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v0.17L8.83,6zM7.5,13.5h2V13h0.67l-2.5,-2.5H7.5V13.5zM11,14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.32 0.16,-0.59 0.4,-0.78L5,7.83V18h10.17L11,13.83V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H19c1.1,0 2,0.9 2,2v12c0,0.05 -0.01,0.1 -0.02,0.16L19,16.17V6H8.83L6.83,4zM19.78,22.61L17.17,20H5c-1.11,0 -2,-0.9 -2,-2V6c0,-0.05 0.02,-0.1 0.02,-0.15L1.39,4.22l1.41,-1.41L18,18l1.82,1.82l1.37,1.37L19.78,22.61zM7.5,13.5h2V13h0.67l-2.5,-2.5H7.5V13.5zM15.17,18L11,13.83V14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.32 0.16,-0.59 0.4,-0.78L5,7.83V18H15.17zM18,14v-1h-1.5v0.5h-0.17l1.28,1.28C17.84,14.59 18,14.32 18,14zM14.5,11.67V10.5h2V11H18v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v0.17L14.5,11.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/closed_caption_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/closed_caption_off.xml
deleted file mode 100644
index 3394607..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/closed_caption_off.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6H5v12h14V6zM11,11H9.5v-0.5h-2v3h2V13H11v1c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V11zM18,11h-1.5v-0.5h-2v3h2V13H18v1c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2H5C3.89,4 3,4.9 3,6v12C3,19.1 3.89,20 5,20zM5,6h14v12H5V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9H7c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1H9.5v0.5h-2v-3h2V11H11v-1C11,9.45 10.55,9 10,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1h-1.5v0.5h-2v-3h2V11H18v-1C18,9.45 17.55,9 17,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud.xml
deleted file mode 100644
index d6cd3cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.21,12.04l-1.53,-0.11 -0.3,-1.5C16.88,7.86 14.62,6 12,6 9.94,6 8.08,7.14 7.12,8.96l-0.5,0.95 -1.07,0.11C3.53,10.24 2,11.95 2,14c0,2.21 1.79,4 4,4h13c1.65,0 3,-1.35 3,-3 0,-1.55 -1.22,-2.86 -2.79,-2.96z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud_circle.xml
deleted file mode 100644
index 4357ed0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM16.08,16L8.5,16C6.57,16 5,14.43 5,12.5c0,-1.8 1.36,-3.29 3.12,-3.48 0.73,-1.4 2.19,-2.36 3.88,-2.36 2.12,0 3.89,1.51 4.29,3.52 1.52,0.1 2.71,1.35 2.71,2.89 0,1.62 -1.31,2.93 -2.92,2.93z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM16.29,10.19c-0.4,-2.01 -2.16,-3.52 -4.29,-3.52 -1.69,0 -3.15,0.96 -3.88,2.36C6.36,9.21 5,10.7 5,12.5 5,14.43 6.57,16 8.5,16h7.58c1.61,0 2.92,-1.31 2.92,-2.92 0,-1.54 -1.2,-2.79 -2.71,-2.89zM16,14L8.5,14c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.67,11 8.5,11h0.9l0.49,-1.05c0.41,-0.79 1.22,-1.28 2.11,-1.28 1.13,0 2.11,0.8 2.33,1.91l0.28,1.42L16,12c0.55,0 1,0.45 1,1s-0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud_done.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud_done.xml
deleted file mode 100644
index baab2b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud_done.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.21,12.04l-1.53,-0.11 -0.3,-1.5C16.88,7.86 14.62,6 12,6 9.94,6 8.08,7.14 7.12,8.96l-0.5,0.95 -1.07,0.11C3.53,10.24 2,11.95 2,14c0,2.21 1.79,4 4,4h13c1.65,0 3,-1.35 3,-3 0,-1.55 -1.22,-2.86 -2.79,-2.96zM10,17l-3.5,-3.5 1.41,-1.41L10,14.18l4.6,-4.6 1.41,1.41L10,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18L6,18c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM10,14.18l-2.09,-2.09L6.5,13.5 10,17l6.01,-6.01 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud_download.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud_download.xml
deleted file mode 100644
index 14d0b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud_download.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.21,12.04l-1.53,-0.11 -0.3,-1.5C16.88,7.86 14.62,6 12,6 9.94,6 8.08,7.14 7.12,8.96l-0.5,0.95 -1.07,0.11C3.53,10.24 2,11.95 2,14c0,2.21 1.79,4 4,4h13c1.65,0 3,-1.35 3,-3 0,-1.55 -1.22,-2.86 -2.79,-2.96zM12,17l-4,-4h2.55v-3h2.91v3H16l-4,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18L6,18c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM13.45,10h-2.9v3L8,13l4,4 4,-4h-2.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud_off.xml
deleted file mode 100644
index f6138b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,15c0,-1.66 -1.34,-3 -3,-3h-1.5v-0.5C17.5,8.46 15.04,6 12,6c-0.77,0 -1.49,0.17 -2.16,0.46L20.79,17.4c0.73,-0.55 1.21,-1.41 1.21,-2.4zM2,14c0,2.21 1.79,4 4,4h9.73l-8,-8H6c-2.21,0 -4,1.79 -4,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4c-1.33,0 -2.57,0.36 -3.65,0.97l1.49,1.49C10.51,6.17 11.23,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3 0,0.99 -0.48,1.85 -1.21,2.4l1.41,1.41c1.09,-0.92 1.8,-2.27 1.8,-3.81 0,-2.64 -2.05,-4.78 -4.65,-4.96zM3,5.27l2.77,2.77h-0.42C2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h11.73l2,2 1.41,-1.41L4.41,3.86 3,5.27zM7.73,10l8,8H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h1.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud_queue.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud_queue.xml
deleted file mode 100644
index fd799e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud_queue.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-1.5v-0.5C17.5,8.46 15.04,6 12,6c-2.52,0 -4.63,1.69 -5.29,4H6c-2.21,0 -4,1.79 -4,4s1.79,4 4,4h13c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h0.71C7.37,7.69 9.48,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3s-1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud_sync.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud_sync.xml
deleted file mode 100644
index 9abe449..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud_sync.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.51,18L21.51,18L15,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1.25v-0.25c0,-0.97 0.78,-1.75 1.75,-1.75s1.75,0.78 1.75,1.75V17c0,0 1.75,0 1.76,0c0.28,0 0.5,0.22 0.5,0.5C22,17.77 21.78,18 21.51,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,14.98c-0.02,0 -0.03,0 -0.05,0.01C21.2,13.3 19.76,12 18,12c-1.4,0 -2.6,0.83 -3.16,2.02C13.26,14.1 12,15.4 12,17c0,1.66 1.34,3 3,3l6.5,-0.02c1.38,0 2.5,-1.12 2.5,-2.5S22.88,14.98 21.5,14.98zM21.51,18L21.51,18L15,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1h1.25v-0.25c0,-0.97 0.78,-1.75 1.75,-1.75s1.75,0.78 1.75,1.75V17c0,0 1.75,0 1.76,0c0.28,0 0.5,0.22 0.5,0.5C22,17.77 21.78,18 21.51,18zM10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,6h-2.73c1.43,1.26 2.41,3.01 2.66,5l-2.02,0C17.68,9.64 16.98,8.45 16,7.56V10h-2V4h6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cloud_upload.xml b/compose/material/material/icons/generator/raw-icons/twotone/cloud_upload.xml
deleted file mode 100644
index 8982a35..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cloud_upload.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.21,12.04l-1.53,-0.11 -0.3,-1.5C16.88,7.86 14.62,6 12,6 9.94,6 8.08,7.14 7.12,8.96l-0.5,0.95 -1.07,0.11C3.53,10.24 2,11.95 2,14c0,2.21 1.79,4 4,4h13c1.65,0 3,-1.35 3,-3 0,-1.55 -1.22,-2.86 -2.79,-2.96zM13.45,13v3h-2.91v-3L8,13l4,-4 4,4h-2.55z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.94,6 12,6c2.62,0 4.88,1.86 5.39,4.43l0.3,1.5 1.53,0.11c1.56,0.1 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3zM8,13h2.55v3h2.9v-3H16l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/co2.xml b/compose/material/material/icons/generator/raw-icons/twotone/co2.xml
deleted file mode 100644
index 28a144a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/co2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-4C15,9.45 14.55,9 14,9zM13.5,13.5h-2v-3h2V13.5zM8,13v1c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H6.5v-0.5h-2v3h2V13H8zM20.5,15.5h-2v1h3V18H17v-2.5c0,-0.55 0.45,-1 1,-1h2v-1h-3V12h3.5c0.55,0 1,0.45 1,1v1.5C21.5,15.05 21.05,15.5 20.5,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/co_present.xml b/compose/material/material/icons/generator/raw-icons/twotone/co_present.xml
deleted file mode 100644
index d259b03..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/co_present.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.48,18.34C13.29,17.73 11.37,17 9,17c-2.37,0 -4.29,0.73 -5.48,1.34C2.9,18.66 3,19.28 3,20h12C15,19.29 15.11,18.66 14.48,18.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3H3C1.9,3 1,3.9 1,5v8h2V5h18v16c1.1,0 2,-0.9 2,-2V5C23,3.9 22.1,3 21,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4c0,2.21 1.79,4 4,4S13,12.21 13,10zM7,10c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S7,11.1 7,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,16.56C13.71,15.7 11.53,15 9,15c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,17.07 1,18.1 1,19.22V22h16v-2.78C17,18.1 16.39,17.07 15.39,16.56zM15,20H3c0,-0.72 -0.1,-1.34 0.52,-1.66C4.71,17.73 6.63,17 9,17c2.37,0 4.29,0.73 5.48,1.34C15.11,18.66 15,19.29 15,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/code.xml b/compose/material/material/icons/generator/raw-icons/twotone/code.xml
deleted file mode 100644
index b97ee53..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/code.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.4,16.6L4.8,12l4.6,-4.6L8,6l-6,6 6,6 1.4,-1.4zM14.6,16.6l4.6,-4.6 -4.6,-4.6L16,6l6,6 -6,6 -1.4,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/code_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/code_off.xml
deleted file mode 100644
index d2cf633..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/code_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.17,12l-4.58,-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12zM1.39,4.22l4.19,4.19L2,12l6,6l1.41,-1.41L4.83,12L7,9.83l12.78,12.78l1.41,-1.41L2.81,2.81L1.39,4.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/coffee.xml b/compose/material/material/icons/generator/raw-icons/twotone/coffee.xml
deleted file mode 100644
index 95d12af..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/coffee.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11c0,2.76 2.24,5 5,5s5,-2.24 5,-5v-1H6V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h16v2h-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,3H6C4.9,3 4,3.9 4,5v5.71c0,3.83 2.95,7.18 6.78,7.29c3.96,0.12 7.22,-3.06 7.22,-7v-1h0.5c1.93,0 3.5,-1.57 3.5,-3.5S20.43,3 18.5,3zM16,11c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5v-1h10V11zM16,8H6V5h10V8zM18.5,8H18V5h0.5C19.33,5 20,5.67 20,6.5S19.33,8 18.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/coffee_maker.xml b/compose/material/material/icons/generator/raw-icons/twotone/coffee_maker.xml
deleted file mode 100644
index 2453ef3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/coffee_maker.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,19c1.65,0 3,-1.35 3,-3v-3h-6v3C10,17.65 11.35,19 13,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7h8c0.55,0 1,-0.45 1,-1V4h2V2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h14v-2h-4.03C17.2,19.09 18,17.64 18,16v-5H8v5c0,1.64 0.81,3.09 2.03,4H6V4h2v2C8,6.55 8.45,7 9,7zM10,16v-3h6v3c0,1.65 -1.35,3 -3,3S10,17.65 10,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/collections.xml b/compose/material/material/icons/generator/raw-icons/twotone/collections.xml
deleted file mode 100644
index b0d45e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/collections.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12L20,4L8,4v12zM11.5,11.67l1.69,2.26 2.48,-3.09L19,15L9,15l2.5,-3.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L8,2zM20,16L8,16L8,4h12v12zM15.67,10.83l-2.48,3.09 -1.69,-2.25L9,15h10zM4,22h14v-2L4,20L4,6L2,6v14c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/collections_bookmark.xml b/compose/material/material/icons/generator/raw-icons/twotone/collections_bookmark.xml
deleted file mode 100644
index 69931fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/collections_bookmark.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-1v9l-3,-2.25L13,13V4H8v12h12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22h14v-2L4,20L4,6L2,6v14c0,1.1 0.9,2 2,2zM22,16L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zM15,4h2v5l-1,-0.75L15,9L15,4zM8,4h5v9l3,-2.25L19,13L19,4h1v12L8,16L8,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/color_lens.xml b/compose/material/material/icons/generator/raw-icons/twotone/color_lens.xml
deleted file mode 100644
index c12a68f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/color_lens.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8c0.28,0 0.5,-0.22 0.5,-0.5 0,-0.16 -0.08,-0.28 -0.14,-0.35 -0.41,-0.46 -0.63,-1.05 -0.63,-1.65 0,-1.38 1.12,-2.5 2.5,-2.5L16,15c2.21,0 4,-1.79 4,-4 0,-3.86 -3.59,-7 -8,-7zM6.5,13c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,10 6.5,10s1.5,0.67 1.5,1.5S7.33,13 6.5,13zM9.5,9C8.67,9 8,8.33 8,7.5S8.67,6 9.5,6s1.5,0.67 1.5,1.5S10.33,9 9.5,9zM14.5,9c-0.83,0 -1.5,-0.67 -1.5,-1.5S13.67,6 14.5,6s1.5,0.67 1.5,1.5S15.33,9 14.5,9zM19,11.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10c1.38,0 2.5,-1.12 2.5,-2.5 0,-0.61 -0.23,-1.21 -0.64,-1.67 -0.08,-0.09 -0.13,-0.21 -0.13,-0.33 0,-0.28 0.22,-0.5 0.5,-0.5L16,17c3.31,0 6,-2.69 6,-6 0,-4.96 -4.49,-9 -10,-9zM16,15h-1.77c-1.38,0 -2.5,1.12 -2.5,2.5 0,0.61 0.22,1.19 0.63,1.65 0.06,0.07 0.14,0.19 0.14,0.35 0,0.28 -0.22,0.5 -0.5,0.5 -4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.14 8,7c0,2.21 -1.79,4 -4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/colorize.xml b/compose/material/material/icons/generator/raw-icons/twotone/colorize.xml
deleted file mode 100644
index 1f8b205..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/colorize.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.896,9.023l-0.92,-0.92L17.67,5.41l0.92,0.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.2,-0.2 -0.45,-0.29 -0.71,-0.29s-0.51,0.1 -0.7,0.29l-3.12,3.12 -1.93,-1.91 -1.41,1.41 1.42,1.42L3,16.25L3,21h4.75l8.92,-8.92 1.42,1.42 1.41,-1.41 -1.92,-1.92 3.12,-3.12c0.4,-0.4 0.4,-1.03 0.01,-1.42zM6.92,19L5,17.08l8.06,-8.06 1.92,1.92L6.92,19zM15.9,9.03l-0.93,-0.93 2.69,-2.69 0.92,0.92 -2.68,2.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/comment.xml b/compose/material/material/icons/generator/raw-icons/twotone/comment.xml
deleted file mode 100644
index 31f6622..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/comment.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17.17L20,4L4,4v12h14.83L20,17.17zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h14l4,4 -0.01,-18c0,-1.1 -0.89,-2 -1.99,-2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM4,4h16v13.17L18.83,16L4,16L4,4zM6,12h12v2L6,14zM6,9h12v2L6,11zM6,6h12v2L6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/comment_bank.xml b/compose/material/material/icons/generator/raw-icons/twotone/comment_bank.xml
deleted file mode 100644
index 522cac3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/comment_bank.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18l2,-2h14V4H4V18zM13,6h5v8l-2.5,-1.5L13,14V6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14l0,-8l-5,0l0,8l2.5,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H6l-2,2V4h16V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/comments_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/comments_disabled.xml
deleted file mode 100644
index 971fa9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/comments_disabled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H20v12h-1.17l-2,-2H18v-2h-3.17l-1,-1H18V9h-6.17l-1,-1H18V6H8.83L6.83,4zM13.17,16l-2,-2H6v-2h3.17l-1,-1H6V9h0.17L4,6.83V16H13.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.83,16H20V4H6.83l-2,-2H20c1.1,0 2,0.9 2,2l0,15.17L18.83,16zM18,6H8.83l2,2H18V6zM18,9h-6.17l2,2H18V9zM18,14v-2h-3.17l2,2H18zM21.9,21.9l-1.41,1.41L15.17,18H4c-1.1,0 -2,-0.9 -2,-2V4.83L0.69,3.51L2.1,2.1L21.9,21.9zM13.17,16l-2,-2H6v-2h3.17l-1,-1H6V9h0.17L4,6.83V16H13.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/commit.xml b/compose/material/material/icons/generator/raw-icons/twotone/commit.xml
deleted file mode 100644
index 926bce2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/commit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.9,11L16.9,11c-0.46,-2.28 -2.48,-4 -4.9,-4s-4.44,1.72 -4.9,4h0H2v2h5.1h0c0.46,2.28 2.48,4 4.9,4s4.44,-1.72 4.9,-4h0H22v-2H16.9zM12,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/commute.xml b/compose/material/material/icons/generator/raw-icons/twotone/commute.xml
deleted file mode 100644
index b9938c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/commute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4L5,4C3.34,4 2,5.34 2,7v8c0,1.66 1.34,3 3,3l-1,1v1h1l2,-2h2v-5L4,13L4,6h9v2h2L15,7c0,-1.66 -1.34,-3 -3,-3zM5,14c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20.57,9.66c-0.14,-0.4 -0.52,-0.66 -0.97,-0.66h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66l-1.42,4.11v5.51c0,0.38 0.31,0.72 0.69,0.72h0.62c0.38,0 0.68,-0.38 0.68,-0.76L12,18h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72l0.01,-1.37v-4.14l-1.43,-4.11zM12.41,10h7.19l1.03,3h-9.25l1.03,-3zM12,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM20,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/compare.xml b/compose/material/material/icons/generator/raw-icons/twotone/compare.xml
deleted file mode 100644
index 845f370..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/compare.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5h-5v7l5,6zM10,18v-6l-5,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-5v2h5v13l-5,-6v9h5c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM12,1h-2v2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h5v2h2L12,1zM10,18L5,18l5,-6v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/compare_arrows.xml b/compose/material/material/icons/generator/raw-icons/twotone/compare_arrows.xml
deleted file mode 100644
index 7c6cc72..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/compare_arrows.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.01,14L2,14v2h7.01v3L13,15l-3.99,-4v3zM14.99,13v-3L22,10L22,8h-7.01L14.99,5L11,9l3.99,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/compass_calibration.xml b/compose/material/material/icons/generator/raw-icons/twotone/compass_calibration.xml
deleted file mode 100644
index 1db6e3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/compass_calibration.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.94,7.26l2.21,2.21c1.44,-0.91 3.11,-1.4 4.85,-1.4 1.74,0 3.41,0.49 4.84,1.4l2.21,-2.21C17,5.79 14.56,5 12,5c-2.56,0 -5.01,0.79 -7.06,2.26z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5 2.24,5 5,5 5,-2.24 5,-5zM9,17c0,-1.65 1.35,-3 3,-3s3,1.35 3,3 -1.35,3 -3,3 -3,-1.35 -3,-3zM2,7.15l5,5c1.28,-1.28 3.05,-2.08 5,-2.08s3.72,0.79 5,2.07l5,-5C19.44,4.59 15.9,3 12,3 8.1,3 4.56,4.59 2,7.15zM16.84,9.47c-1.44,-0.91 -3.1,-1.4 -4.84,-1.4 -1.74,0 -3.41,0.49 -4.85,1.41L4.94,7.26C6.99,5.79 9.44,5 12,5c2.56,0 5,0.79 7.05,2.26l-2.21,2.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/compost.xml b/compose/material/material/icons/generator/raw-icons/twotone/compost.xml
deleted file mode 100644
index b06253a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/compost.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,11.81c-0.23,-0.38 -0.37,-0.83 -0.37,-1.31C12.5,9.12 13.62,8 15,8l1,0c1.51,0 2,-1 2,-1s0.55,6 -3,6c-0.49,0 -0.94,-0.14 -1.32,-0.38c-0.24,0.64 -0.59,1.76 -0.76,2.96c1.26,0.22 2.28,0.89 2.77,1.77c1.69,-1.17 2.81,-3.13 2.81,-5.35h3c0,5.24 -4.26,9.5 -9.5,9.5S2.5,17.24 2.5,12S6.76,2.5 12,2.5V0l4,4l-4,4V5.5c-3.58,0 -6.5,2.92 -6.5,6.5c0,2.21 1.11,4.17 2.81,5.35c0.51,-0.92 1.63,-1.62 2.98,-1.8c-0.09,-0.69 -0.26,-1.42 -0.49,-2.03C10.45,13.82 10,14 9.5,14c-1.1,0 -2,-0.9 -2,-2v-0.99c0,-0.56 -0.19,-1.09 -0.5,-1.51c0,0 4.45,-0.23 4.5,2.5c0,0.29 -0.06,0.56 -0.17,0.8C10.91,12.48 10.47,12.2 10,12c0.58,0.43 1.37,1.37 2,2.6c0.67,-1.62 1.68,-3.27 3,-4.6C14.24,10.52 13.53,11.12 12.87,11.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/compress.xml b/compose/material/material/icons/generator/raw-icons/twotone/compress.xml
deleted file mode 100644
index 1dee27a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/compress.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h16v2h-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4l-3,0l0,-3l-2,0l0,3l-3,0l4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19l3,0l0,3l2,0l0,-3l3,0l-4,-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12h16v2h-16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/computer.xml b/compose/material/material/icons/generator/raw-icons/twotone/computer.xml
deleted file mode 100644
index 1003361..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/computer.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v10H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,6c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2H0v2h24v-2h-4zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/confirmation_number.xml b/compose/material/material/icons/generator/raw-icons/twotone/confirmation_number.xml
deleted file mode 100644
index 06a49ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/confirmation_number.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.01,8.54C5.2,9.23 6,10.52 6,12s-0.81,2.77 -2,3.46L4,18h16v-2.54c-1.19,-0.69 -2,-1.99 -2,-3.46s0.81,-2.77 2,-3.46L20,6L4,6l0.01,2.54zM11,7h2v2h-2L11,7zM11,11h2v2h-2v-2zM11,15h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10L22,6c0,-1.11 -0.9,-2 -2,-2L4,4c-1.1,0 -1.99,0.89 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2zM20,8.54c-1.19,0.69 -2,1.99 -2,3.46s0.81,2.77 2,3.46L20,18L4,18v-2.54c1.19,-0.69 2,-1.99 2,-3.46 0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16v2.54zM11,15h2v2h-2zM11,11h2v2h-2zM11,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/connect_without_contact.xml b/compose/material/material/icons/generator/raw-icons/twotone/connect_without_contact.xml
deleted file mode 100644
index 709fe2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/connect_without_contact.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14H9c0,-4.97 4.03,-9 9,-9v2C14.13,7 11,10.13 11,14zM18,11V9c-2.76,0 -5,2.24 -5,5h2C15,12.34 16.34,11 18,11zM7,4c0,-1.11 -0.89,-2 -2,-2S3,2.89 3,4s0.89,2 2,2S7,5.11 7,4zM11.45,4.5h-2C9.21,5.92 7.99,7 6.5,7h-3C2.67,7 2,7.67 2,8.5V11h6V8.74C9.86,8.15 11.25,6.51 11.45,4.5zM19,17c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S17.89,17 19,17zM20.5,18h-3c-1.49,0 -2.71,-1.08 -2.95,-2.5h-2c0.2,2.01 1.59,3.65 3.45,4.24V22h6v-2.5C22,18.67 21.33,18 20.5,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/connected_tv.xml b/compose/material/material/icons/generator/raw-icons/twotone/connected_tv.xml
deleted file mode 100644
index cce98034..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/connected_tv.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v12c0,1.1 0.9,2 2,2h4v2h8v-2h4c1.1,0 1.99,-0.9 1.99,-2L22,5C22,3.9 21.1,3 20,3zM20,17H4V5h16V17zM5,14v2h2C7,14.89 6.11,14 5,14zM5,11v1.43c1.97,0 3.57,1.6 3.57,3.57H10C10,13.24 7.76,11 5,11zM5,8v1.45c3.61,0 6.55,2.93 6.55,6.55H13C13,11.58 9.41,8 5,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5h16v12h-16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/connecting_airports.xml b/compose/material/material/icons/generator/raw-icons/twotone/connecting_airports.xml
deleted file mode 100644
index 12357c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/connecting_airports.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h3l2.6,-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1l-0.75,-1H15.4zM5.75,7L5,6H4l0.6,2L4,10h1l0.75,-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-3L8.4,2.6H7.3L8.6,7H5.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/construction.xml b/compose/material/material/icons/generator/raw-icons/twotone/construction.xml
deleted file mode 100644
index 2c31758..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/construction.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.783,15.172l2.121,-2.121l5.996,5.996l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10c1.93,0 3.5,-1.57 3.5,-3.5c0,-0.58 -0.16,-1.12 -0.41,-1.6l-2.7,2.7L16.4,6.11l2.7,-2.7C18.62,3.16 18.08,3 17.5,3C15.57,3 14,4.57 14,6.5c0,0.41 0.08,0.8 0.21,1.16l-1.85,1.85l-1.78,-1.78l0.71,-0.71L9.88,5.61L12,3.49c-1.17,-1.17 -3.07,-1.17 -4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71,-0.71V9.15l1.41,1.41l0.71,-0.71l1.78,1.78l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92 17.09,10 17.5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contact_emergency.xml b/compose/material/material/icons/generator/raw-icons/twotone/contact_emergency.xml
deleted file mode 100644
index c2b4e8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contact_emergency.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h0.08c1.38,-2.39 3.96,-4 6.92,-4s5.54,1.61 6.92,4H22V5H2V19zM15.03,8.15l0.75,-1.3l1.47,0.85V6h1.5v1.7l1.47,-0.85l0.75,1.3L19.5,9l1.47,0.85l-0.75,1.3l-1.47,-0.85V12h-1.5v-1.7l-1.47,0.85l-0.75,-1.3L16.5,9L15.03,8.15zM9,8c1.65,0 3,1.35 3,3s-1.35,3 -3,3s-3,-1.35 -3,-3S7.35,8 9,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3s-3,1.35 -3,3S7.35,14 9,14zM9,10c0.54,0 1,0.46 1,1s-0.46,1 -1,1s-1,-0.46 -1,-1S8.46,10 9,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3H2C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5C24,3.9 23.1,3 22,3zM4.54,19c1.1,-1.22 2.69,-2 4.46,-2s3.36,0.78 4.46,2H4.54zM22,19h-6.08c-1.38,-2.39 -3.96,-4 -6.92,-4s-5.54,1.61 -6.92,4H2V5h20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.78,11.15l1.47,-0.85l0,1.7l1.5,0l0,-1.7l1.47,0.85l0.75,-1.3l-1.47,-0.85l1.47,-0.85l-0.75,-1.3l-1.47,0.85l0,-1.7l-1.5,0l0,1.7l-1.47,-0.85l-0.75,1.3l1.47,0.85l-1.47,0.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contact_mail.xml b/compose/material/material/icons/generator/raw-icons/twotone/contact_mail.xml
deleted file mode 100644
index a2fe364..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contact_mail.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h20V5H2v14zM14,6h7v5h-7V6zM9,6c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM3,16.59C3,14.08 6.97,13 9,13s6,1.08 6,3.58V18H3v-1.41z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM22,19L2,19L2,5h20v14zM21,6h-7v5h7L21,6zM20,8l-2.5,1.75L15,8L15,7l2.5,1.75L20,7v1zM9,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM9,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM15,16.59c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.08 -6,3.58L3,18h12v-1.41zM5.48,16c0.74,-0.5 2.22,-1 3.52,-1s2.77,0.49 3.52,1L5.48,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contact_page.xml b/compose/material/material/icons/generator/raw-icons/twotone/contact_page.xml
deleted file mode 100644
index 311b31e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contact_page.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,4L18,8.83V20H6V4H13.17M12,14c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C10,13.1 10.9,14 12,14zM16,17.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C13.93,15.21 12.99,15 12,15c-0.99,0 -1.93,0.21 -2.78,0.58C8.48,15.9 8,16.62 8,17.43V18h8V17.43z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,4L18,8.83V20H6V4H13.17M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2L14,2zM12,14c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C10,13.1 10.9,14 12,14zM16,17.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C13.93,15.21 12.99,15 12,15c-0.99,0 -1.93,0.21 -2.78,0.58C8.48,15.9 8,16.62 8,17.43V18h8V17.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contact_phone.xml b/compose/material/material/icons/generator/raw-icons/twotone/contact_phone.xml
deleted file mode 100644
index 7be86e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contact_phone.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5L2,5v14h20L22,5zM9,6c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM15,18L3,18v-1.41C3,14.08 6.97,13 9,13s6,1.08 6,3.58L15,18zM17.85,14h1.64L21,16l-1.99,1.99c-1.31,-0.98 -2.28,-2.38 -2.73,-3.99 -0.18,-0.64 -0.28,-1.31 -0.28,-2s0.1,-1.36 0.28,-2c0.45,-1.62 1.42,-3.01 2.73,-3.99L21,8l-1.51,2h-1.64c-0.22,0.63 -0.35,1.3 -0.35,2s0.13,1.37 0.35,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,21h20c1.1,0 1.99,-0.9 1.99,-2L24,5c0,-1.1 -0.9,-2 -2,-2L2,3C0.9,3 0,3.9 0,5v14c0,1.1 0.9,2 2,2zM2,5h20v14L2,19L2,5zM19.49,10L21,8l-1.99,-1.99c-1.31,0.98 -2.28,2.37 -2.73,3.99 -0.18,0.64 -0.28,1.31 -0.28,2s0.1,1.36 0.28,2c0.45,1.61 1.42,3.01 2.73,3.99L21,16l-1.51,-2h-1.64c-0.22,-0.63 -0.35,-1.3 -0.35,-2s0.13,-1.37 0.35,-2h1.64zM9,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM9,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,13c-2.03,0 -6,1.08 -6,3.58L3,18h12v-1.41C15,14.08 11.03,13 9,13zM5.48,16c0.74,-0.5 2.22,-1 3.52,-1s2.77,0.49 3.52,1L5.48,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contact_support.xml b/compose/material/material/icons/generator/raw-icons/twotone/contact_support.xml
deleted file mode 100644
index 60ba287..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contact_support.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,3C7.36,3 4,6.36 4,10.5S7.36,18 11.5,18L13,18v2.3c3.64,-2.3 6,-6.08 6,-9.8C19,6.36 15.64,3 11.5,3zM12.5,16.5h-2v-2h2v2zM12.5,13h-2c0,-3.25 3,-3 3,-5 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2h-2c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.5 -3,2.75 -3,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,1C6.26,1 2,5.26 2,10.5c0,5.07 3.99,9.23 9,9.49v3.6l1.43,-0.69C17.56,20.43 21,15.45 21,10.5 21,5.26 16.74,1 11.5,1zM13,20.3L13,18h-1.5C7.36,18 4,14.64 4,10.5S7.36,3 11.5,3 19,6.36 19,10.5c0,3.73 -2.36,7.51 -6,9.8zM10.5,14.5h2v2h-2zM11.5,4c-2.21,0 -4,1.79 -4,4h2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contactless.xml b/compose/material/material/icons/generator/raw-icons/twotone/contactless.xml
deleted file mode 100644
index d719685..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contactless.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8s8,-3.58 8,-8S16.42,4 12,4zM8.46,14.45L7.1,13.83c0.28,-0.61 0.41,-1.24 0.4,-1.86c-0.01,-0.63 -0.14,-1.24 -0.4,-1.8l1.36,-0.63c0.35,0.75 0.53,1.56 0.54,2.4C9.01,12.8 8.83,13.64 8.46,14.45zM11.53,16.01l-1.3,-0.74c0.52,-0.92 0.78,-1.98 0.78,-3.15c0,-1.19 -0.27,-2.33 -0.8,-3.4l1.34,-0.67c0.64,1.28 0.96,2.65 0.96,4.07C12.51,13.55 12.18,14.86 11.53,16.01zM14.67,17.33l-1.35,-0.66c0.78,-1.6 1.18,-3.18 1.18,-4.69c0,-1.51 -0.4,-3.07 -1.18,-4.64l1.34,-0.67C15.56,8.45 16,10.23 16,11.98C16,13.72 15.56,15.52 14.67,17.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.1,10.18c0.26,0.56 0.39,1.16 0.4,1.8c0.01,0.63 -0.13,1.25 -0.4,1.86l1.37,0.62c0.37,-0.81 0.55,-1.65 0.54,-2.5c-0.01,-0.84 -0.19,-1.65 -0.54,-2.4L7.1,10.18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.33,7.33c0.78,1.57 1.18,3.14 1.18,4.64c0,1.51 -0.4,3.09 -1.18,4.69l1.35,0.66c0.88,-1.81 1.33,-3.61 1.33,-5.35c0,-1.74 -0.45,-3.53 -1.33,-5.31L13.33,7.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.2,8.72c0.53,1.07 0.8,2.21 0.8,3.4c0,1.17 -0.26,2.23 -0.78,3.15l1.3,0.74c0.65,-1.15 0.98,-2.45 0.98,-3.89c0,-1.42 -0.32,-2.79 -0.96,-4.07L10.2,8.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contacts.xml b/compose/material/material/icons/generator/raw-icons/twotone/contacts.xml
deleted file mode 100644
index fc11664..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contacts.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6L4,6v12h16L20,6zM12,7c1.38,0 2.5,1.12 2.5,2.5S13.38,12 12,12s-2.5,-1.12 -2.5,-2.5S10.62,7 12,7zM17,17L7,17v-1.01C7,13.9 10.31,13 12,13s5,0.9 5,2.99L17,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM4,6h16v12L4,18L4,6zM4,0h16v2L4,2zM4,22h16v2L4,24zM12,12c1.38,0 2.5,-1.12 2.5,-2.5S13.38,7 12,7 9.5,8.12 9.5,9.5 10.62,12 12,12zM12,8.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,13c-1.69,0 -5,0.9 -5,2.99L7,17h10v-1.01C17,13.9 13.69,13 12,13zM8.81,15.5c0.61,-0.52 2.03,-1 3.19,-1 1.17,0 2.59,0.48 3.2,1L8.81,15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/content_copy.xml b/compose/material/material/icons/generator/raw-icons/twotone/content_copy.xml
deleted file mode 100644
index 86652df..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/content_copy.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7h11v14H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM19,5L8,5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h11c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,21L8,21L8,7h11v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/content_cut.xml b/compose/material/material/icons/generator/raw-icons/twotone/content_cut.xml
deleted file mode 100644
index 18d3888..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/content_cut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3l-6,6 2,2 7,-7L22,3zM10,6c0,-2.21 -1.79,-4 -4,-4S2,3.79 2,6s1.79,4 4,4c0.59,0 1.14,-0.13 1.64,-0.36L10,12l-2.36,2.36C7.14,14.13 6.59,14 6,14c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4c0,-0.59 -0.13,-1.14 -0.36,-1.64L12,14l7,7h3v-1L9.64,7.64c0.23,-0.5 0.36,-1.05 0.36,-1.64zM6,8c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM6,20c-1.1,0 -2,-0.89 -2,-2s0.9,-2 2,-2 2,0.89 2,2 -0.9,2 -2,2zM12,11.5c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5 -0.5,-0.22 -0.5,-0.5 0.22,-0.5 0.5,-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/content_paste.xml b/compose/material/material/icons/generator/raw-icons/twotone/content_paste.xml
deleted file mode 100644
index fc00b1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/content_paste.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7H7V4H5v16h14V4h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0S9.6,0.84 9.18,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/content_paste_go.xml b/compose/material/material/icons/generator/raw-icons/twotone/content_paste_go.xml
deleted file mode 100644
index 152b6d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/content_paste_go.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17c0,-3.31 2.69,-6 6,-6h3V5h-2v3H7V5H5v14h5V17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19H5V5h2v3h10V5h2v6h2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h5V19zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.01,13l-1.42,1.41l1.58,1.58l-6.17,0l0,2l6.17,0l-1.58,1.59l1.42,1.41l3.99,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/content_paste_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/content_paste_off.xml
deleted file mode 100644
index 24a4c70..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/content_paste_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8H17V5h2v11.17L10.83,8zM5,19V7.83L16.17,19H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61L21.19,21.19zM5,19V7.83L16.17,19H5zM17,8V5h2v11.17l2,2V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5.83l5,5H17zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/content_paste_search.xml b/compose/material/material/icons/generator/raw-icons/twotone/content_paste_search.xml
deleted file mode 100644
index 8dfe384..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/content_paste_search.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.5c0,-3.58 2.92,-6.5 6.5,-6.5c0.89,0 1.73,0.18 2.5,0.5V5h-2v3H7V5H5v14h5.5C10.18,18.23 10,17.39 10,16.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,19H5V5h2v3h10V5h2v5.5c0.75,0.31 1.42,0.76 2,1.32V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h6.82C11.27,20.42 10.81,19.75 10.5,19zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.3,18.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S12,14 12,16.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l2.7,2.7l1.4,-1.4L20.3,18.9zM16.5,19c-1.4,0 -2.5,-1.1 -2.5,-2.5c0,-1.4 1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5C19,17.9 17.9,19 16.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/contrast.xml b/compose/material/material/icons/generator/raw-icons/twotone/contrast.xml
deleted file mode 100644
index 8210b18..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/contrast.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2S2,6.48 2,12S6.48,22 12,22zM13,4.07c3.94,0.49 7,3.85 7,7.93s-3.05,7.44 -7,7.93V4.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/control_camera.xml b/compose/material/material/icons/generator/raw-icons/twotone/control_camera.xml
deleted file mode 100644
index 589a6d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/control_camera.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.3,13.77L5.54,12l1.76,-1.77 -1.76,-1.77L2,12l3.54,3.54zM15.54,18.46l-1.77,-1.76L12,18.46l-1.77,-1.76 -1.77,1.76L12,22zM18.46,15.54L22,12l-3.54,-3.54 -1.76,1.77L18.46,12l-1.76,1.77zM12,5.54l1.77,1.76 1.77,-1.76L12,2 8.46,5.54l1.77,1.76z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/control_point.xml b/compose/material/material/icons/generator/raw-icons/twotone/control_point.xml
deleted file mode 100644
index 0eb728a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/control_point.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10 10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM13,7h-2v4L7,11v2h4v4h2v-4h4v-2h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/control_point_duplicate.xml b/compose/material/material/icons/generator/raw-icons/twotone/control_point_duplicate.xml
deleted file mode 100644
index 43ec6c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/control_point_duplicate.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7 7,-3.14 7,-7 -3.14,-7 -7,-7zM19,13h-3v3h-2v-3h-3v-2h3L14,8h2v3h3v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM15,3c-4.96,0 -9,4.04 -9,9s4.04,9 9,9 9,-4.04 9,-9 -4.04,-9 -9,-9zM15,19c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7zM2,12c0,-2.79 1.64,-5.2 4.01,-6.32L6.01,3.52C2.52,4.76 0,8.09 0,12s2.52,7.24 6.01,8.48v-2.16C3.64,17.2 2,14.79 2,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cookie.xml b/compose/material/material/icons/generator/raw-icons/twotone/cookie.xml
deleted file mode 100644
index 596079d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cookie.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.07,8.93c-2.55,-0.39 -4.57,-2.41 -4.99,-4.94C6.73,3.82 4,8.69 4,12c0,4.41 3.59,8 8,8c4.06,0 7.7,-3.14 7.98,-7.45C17.59,11.48 17.14,9.29 17.07,8.93zM8.5,15C7.67,15 7,14.33 7,13.5S7.67,12 8.5,12s1.5,0.67 1.5,1.5S9.33,15 8.5,15zM10.5,10C9.67,10 9,9.33 9,8.5S9.67,7 10.5,7S12,7.67 12,8.5S11.33,10 10.5,10zM15,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,15.55 15.55,16 15,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,8.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,10.99c-1.79,-0.03 -3.7,-1.95 -2.68,-4.22c-2.97,1 -5.78,-1.59 -5.19,-4.56C7.1,0.74 2,6.41 2,12c0,5.52 4.48,10 10,10C17.89,22 22.54,16.92 21.95,10.99zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-3.31 2.73,-8.18 8.08,-8.02c0.42,2.54 2.44,4.56 4.99,4.94c0.07,0.36 0.52,2.55 2.92,3.63C19.7,16.86 16.06,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/copy_all.xml b/compose/material/material/icons/generator/raw-icons/twotone/copy_all.xml
deleted file mode 100644
index 3c998b64..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/copy_all.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4h9v12h-9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H9C7.9,2 7,2.9 7,4v12c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,16H9V4h9V16zM3,15v-2h2v2H3zM3,9.5h2v2H3V9.5zM10,20h2v2h-2V20zM3,18.5v-2h2v2H3zM5,22c-1.1,0 -2,-0.9 -2,-2h2V22zM8.5,22h-2v-2h2V22zM13.5,22L13.5,22l0,-2h2v0C15.5,21.1 14.6,22 13.5,22zM5,6L5,6l0,2H3v0C3,6.9 3.9,6 5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/copyright.xml b/compose/material/material/icons/generator/raw-icons/twotone/copyright.xml
deleted file mode 100644
index 0b52d0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/copyright.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM10.08,13.14c0.05,0.33 0.16,0.63 0.3,0.88s0.34,0.46 0.59,0.62c0.23,0.15 0.53,0.22 0.89,0.23 0.21,-0.01 0.41,-0.03 0.6,-0.1 0.2,-0.07 0.37,-0.17 0.52,-0.3 0.15,-0.13 0.27,-0.28 0.36,-0.46 0.09,-0.18 0.14,-0.37 0.15,-0.58h1.79c-0.01,0.41 -0.12,0.79 -0.3,1.15 -0.18,0.36 -0.43,0.67 -0.74,0.94 -0.31,0.27 -0.67,0.48 -1.08,0.63 -0.41,0.15 -0.85,0.23 -1.32,0.23 -0.65,0 -1.22,-0.12 -1.7,-0.34 -0.48,-0.22 -0.88,-0.53 -1.2,-0.91s-0.56,-0.83 -0.71,-1.35c-0.15,-0.52 -0.23,-1.06 -0.23,-1.64v-0.27c0,-0.58 0.09,-1.12 0.24,-1.64 0.15,-0.52 0.39,-0.97 0.71,-1.36s0.72,-0.69 1.2,-0.92c0.48,-0.23 1.05,-0.34 1.7,-0.34 0.51,0 0.97,0.07 1.39,0.23 0.42,0.16 0.78,0.38 1.08,0.66 0.3,0.28 0.53,0.62 0.7,1.01 0.17,0.39 0.26,0.82 0.28,1.29h-1.79c-0.01,-0.22 -0.05,-0.44 -0.14,-0.64 -0.09,-0.2 -0.2,-0.38 -0.34,-0.53 -0.14,-0.15 -0.32,-0.27 -0.52,-0.36 -0.19,-0.08 -0.4,-0.12 -0.63,-0.13 -0.37,0.01 -0.67,0.08 -0.91,0.23 -0.25,0.16 -0.45,0.37 -0.59,0.62s-0.25,0.54 -0.3,0.87c-0.05,0.33 -0.08,0.66 -0.08,1.01v0.27c0,0.33 0.03,0.67 0.08,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.08,10.86c0.05,-0.33 0.16,-0.62 0.3,-0.87s0.34,-0.46 0.59,-0.62c0.24,-0.15 0.54,-0.22 0.91,-0.23 0.23,0.01 0.44,0.05 0.63,0.13 0.2,0.09 0.38,0.21 0.52,0.36s0.25,0.33 0.34,0.53c0.09,0.2 0.13,0.42 0.14,0.64h1.79c-0.02,-0.47 -0.11,-0.9 -0.28,-1.29 -0.17,-0.39 -0.4,-0.73 -0.7,-1.01 -0.3,-0.28 -0.66,-0.5 -1.08,-0.66 -0.42,-0.16 -0.88,-0.23 -1.39,-0.23 -0.65,0 -1.22,0.11 -1.7,0.34 -0.48,0.23 -0.88,0.53 -1.2,0.92s-0.56,0.84 -0.71,1.36c-0.15,0.52 -0.24,1.06 -0.24,1.64v0.27c0,0.58 0.08,1.12 0.23,1.64 0.15,0.52 0.39,0.97 0.71,1.35s0.72,0.69 1.2,0.91c0.48,0.22 1.05,0.34 1.7,0.34 0.47,0 0.91,-0.08 1.32,-0.23 0.41,-0.15 0.77,-0.36 1.08,-0.63 0.31,-0.27 0.56,-0.58 0.74,-0.94 0.18,-0.36 0.29,-0.74 0.3,-1.15h-1.79c-0.01,0.21 -0.06,0.4 -0.15,0.58 -0.09,0.18 -0.21,0.33 -0.36,0.46s-0.32,0.23 -0.52,0.3c-0.19,0.07 -0.39,0.09 -0.6,0.1 -0.36,-0.01 -0.66,-0.08 -0.89,-0.23 -0.25,-0.16 -0.45,-0.37 -0.59,-0.62s-0.25,-0.55 -0.3,-0.88c-0.05,-0.33 -0.08,-0.67 -0.08,-1v-0.27c0,-0.35 0.03,-0.68 0.08,-1.01zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/coronavirus.xml b/compose/material/material/icons/generator/raw-icons/twotone/coronavirus.xml
deleted file mode 100644
index 6829bb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/coronavirus.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7zM13.75,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S13.2,8 13.75,8zM10.25,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S9.7,8 10.25,8zM8.5,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9.5,12.55 9.05,13 8.5,13zM10.25,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C11.25,15.55 10.8,16 10.25,16zM12,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,12.55 12.55,13 12,13zM13.75,16c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C14.75,15.55 14.3,16 13.75,16zM15.5,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16.5,12.55 16.05,13 15.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1S9.5,11.45 9.5,12zM13.75,10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S13.2,10 13.75,10zM10.25,10c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S9.7,10 10.25,10zM10.25,14c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C11.25,14.45 10.8,14 10.25,14zM22,11.25v1.5c0,0.41 -0.34,0.75 -0.75,0.75c-0.41,0 -0.75,-0.34 -0.75,-0.75h-1.54c-0.15,1.37 -0.69,2.63 -1.52,3.65l1.09,1.09l0.01,-0.01c0.29,-0.29 0.77,-0.29 1.06,0c0.29,0.29 0.29,0.77 0,1.06l-1.06,1.06c-0.29,0.29 -0.77,0.29 -1.06,0c-0.29,-0.29 -0.29,-0.76 -0.01,-1.05l-1.09,-1.09c-1.02,0.82 -2.27,1.36 -3.64,1.51v1.54h0.01c0.41,0 0.75,0.34 0.75,0.75c0,0.41 -0.34,0.75 -0.75,0.75h-1.5c-0.41,0 -0.75,-0.34 -0.75,-0.75c0,-0.41 0.33,-0.74 0.74,-0.75v-1.55c-1.37,-0.15 -2.62,-0.69 -3.63,-1.51l-1.09,1.09l0.01,0.01c0.29,0.29 0.29,0.77 0,1.06c-0.29,0.29 -0.77,0.29 -1.06,0L4.4,18.54c-0.29,-0.29 -0.29,-0.77 0,-1.06c0.29,-0.29 0.76,-0.29 1.05,-0.01l1.09,-1.09c-0.82,-1.02 -1.36,-2.26 -1.5,-3.63H3.5c0,0.41 -0.34,0.75 -0.75,0.75C2.34,13.5 2,13.16 2,12.75v-1.5c0,-0.41 0.34,-0.75 0.75,-0.75c0.41,0 0.75,0.34 0.75,0.75h1.54c0.15,-1.37 0.69,-2.61 1.5,-3.63L5.45,6.53C5.16,6.81 4.69,6.81 4.4,6.52c-0.29,-0.29 -0.29,-0.77 0,-1.06L5.46,4.4c0.29,-0.29 0.77,-0.29 1.06,0c0.29,0.29 0.29,0.77 0,1.06L6.51,5.47L7.6,6.56c1.02,-0.82 2.26,-1.36 3.63,-1.51V3.5c-0.41,-0.01 -0.74,-0.34 -0.74,-0.75C10.5,2.34 10.84,2 11.25,2h1.5c0.41,0 0.75,0.34 0.75,0.75c0,0.41 -0.34,0.75 -0.75,0.75h-0.01v1.54c1.37,0.14 2.62,0.69 3.64,1.51l1.09,-1.09c-0.29,-0.29 -0.28,-0.76 0.01,-1.05c0.29,-0.29 0.77,-0.29 1.06,0l1.06,1.06c0.29,0.29 0.29,0.77 0,1.06s-0.77,0.29 -1.06,0l-0.01,-0.01L17.44,7.6c0.82,1.02 1.37,2.27 1.52,3.65h1.54c0,-0.41 0.34,-0.75 0.75,-0.75C21.66,10.5 22,10.84 22,11.25zM17,12c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5s2.24,5 5,5S17,14.76 17,12zM12,11c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C13,11.45 12.55,11 12,11zM15.5,11c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C16.5,11.45 16.05,11 15.5,11zM13.75,14c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1s1,-0.45 1,-1C14.75,14.45 14.3,14 13.75,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/corporate_fare.xml b/compose/material/material/icons/generator/raw-icons/twotone/corporate_fare.xml
deleted file mode 100644
index 353d285..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/corporate_fare.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19H4v-2h6V19zM10,15H4v-2h6V15zM10,11H4V9h6V11zM10,7H4V5h6V7zM20,19h-8V9h8V19zM18,11h-4v2h4V11zM18,15h-4v2h4V15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h20V7H12zM10,19H4v-2h6V19zM10,15H4v-2h6V15zM10,11H4V9h6V11zM10,7H4V5h6V7zM20,19h-8V9h8V19zM18,11h-4v2h4V11zM18,15h-4v2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cottage.xml b/compose/material/material/icons/generator/raw-icons/twotone/cottage.xml
deleted file mode 100644
index 90d0962..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cottage.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,19l-5,0l0,-4l-2,0l0,4l-5,0l0,-8.9l6,-4.58l6,4.58z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM18,19h-5v-4h-2v4H6v-8.9l6,-4.58l6,4.58V19zM10,1c0,1.66 -1.34,3 -3,3C6.45,4 6,4.45 6,5H4c0,-1.66 1.34,-3 3,-3c0.55,0 1,-0.45 1,-1H10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/countertops.xml b/compose/material/material/icons/generator/raw-icons/twotone/countertops.xml
deleted file mode 100644
index 32d978b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/countertops.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h2v2H6V6zM6,18v-6h5v6H6zM18,18h-5v-6h5V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10h-4V7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3h2c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1v3H8c1.1,0 2,-0.9 2,-2V4H4v4c0,1.1 0.9,2 2,2H2v2h2v8h16v-8h2V10zM6,6h2v2H6V6zM6,18v-6h5v6H6zM18,18h-5v-6h5V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/create.xml b/compose/material/material/icons/generator/raw-icons/twotone/create.xml
deleted file mode 100644
index 47abc02..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/create.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18.08V19h0.92l9.06,-9.06 -0.92,-0.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM5.92,19H5v-0.92l9.06,-9.06 0.92,0.92L5.92,19zM20.71,5.63l-2.34,-2.34c-0.2,-0.2 -0.45,-0.29 -0.71,-0.29s-0.51,0.1 -0.7,0.29l-1.83,1.83 3.75,3.75 1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/create_new_folder.xml b/compose/material/material/icons/generator/raw-icons/twotone/create_new_folder.xml
deleted file mode 100644
index 093a187..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/create_new_folder.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,8l-0.59,-0.59L9.17,6H4v12h16V8h-8.83zM14,10h2v2h2v2h-2v2h-2v-2h-2v-2h2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18L4,6h5.17l1.41,1.41 0.59,0.59L20,8v10zM12,14h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/credit_card.xml b/compose/material/material/icons/generator/raw-icons/twotone/credit_card.xml
deleted file mode 100644
index ae69a85..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/credit_card.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12h16v6L4,18zM4,6h16v2L4,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/credit_card_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/credit_card_off.xml
deleted file mode 100644
index b10e3df..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/credit_card_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17.17V12h-5.17L20,17.17zM10.83,8H20V6H8.83L10.83,8zM4,6.83V8h1.17L4,6.83zM15.17,18l-6,-6H4v6H15.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H20c1.11,0 2,0.89 2,2v12c0,0.34 -0.08,0.66 -0.23,0.94L20,17.17V12h-5.17l-4,-4H20V6H8.83L6.83,4zM20.49,23.31L17.17,20H4c-1.11,0 -2,-0.89 -2,-2L2.01,6c0,-0.34 0.08,-0.66 0.23,-0.93L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM4,6.83V8h1.17L4,6.83zM15.17,18l-6,-6H4v6H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/credit_score.xml b/compose/material/material/icons/generator/raw-icons/twotone/credit_score.xml
deleted file mode 100644
index 7726a78..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/credit_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h5v-2H4v-6h18V6C22,4.89 21.11,4 20,4zM20,8H4V6h16V8zM14.93,19.17l-2.83,-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41,-1.41L14.93,19.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crib.xml b/compose/material/material/icons/generator/raw-icons/twotone/crib.xml
deleted file mode 100644
index 222ad18..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crib.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14H6V8c0,-1.1 0.9,-2 2,-2h2v5h8V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9h-6V4H8C5.79,4 4,5.79 4,8v6c0,1.1 0.9,2 2,2h2v2.93c-0.61,-0.35 -1.16,-0.78 -1.65,-1.27l-1.42,1.42C6.74,20.88 9.24,22 12,22c2.76,0 5.26,-1.12 7.07,-2.93l-1.42,-1.42c-0.49,0.49 -1.05,0.92 -1.65,1.27V16h2c1.1,0 2,-0.9 2,-2v-3C20,9.9 19.1,9 18,9zM14,19.75C13.36,19.91 12.69,20 12,20c-0.69,0 -1.36,-0.09 -2,-0.25V16h4V19.75zM18,14H6V8c0,-1.1 0.9,-2 2,-2h2v5h8V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crisis_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/crisis_alert.xml
deleted file mode 100644
index 1aa1128..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crisis_alert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,2.5c0,1.5 -1.5,6 -1.5,6h-2c0,0 -1.5,-4.5 -1.5,-6C9.5,1.12 10.62,0 12,0S14.5,1.12 14.5,2.5zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM16.08,5.11c0.18,-0.75 0.33,-1.47 0.39,-2.06C19.75,4.69 22,8.08 22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-3.92 2.25,-7.31 5.53,-8.95C7.6,3.64 7.74,4.37 7.92,5.11C5.58,6.51 4,9.07 4,12c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,9.07 18.42,6.51 16.08,5.11zM18,12c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2 0.98,-3.77 2.48,-4.86c0.23,0.81 0.65,2.07 0.65,2.07C8.43,9.93 8,10.92 8,12c0,2.21 1.79,4 4,4s4,-1.79 4,-4c0,-1.08 -0.43,-2.07 -1.13,-2.79c0,0 0.41,-1.22 0.65,-2.07C17.02,8.23 18,10 18,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop.xml
deleted file mode 100644
index f4f12b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17c0,1.1 0.9,2 2,2h10v4h2v-4h4v-2L7,17L7,1L5,1v4L1,5v2h4v10zM19,15L19,7c0,-1.1 -0.9,-2 -2,-2L9,5v2h8v8h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_16_9.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_16_9.xml
deleted file mode 100644
index 7bc13cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_16_9.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H5C3.9,7 3,7.9 3,9v6c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,15H5V9h14V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_3_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_3_2.xml
deleted file mode 100644
index acaa273..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_3_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6H5C3.9,6 3,6.9 3,8v8c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM19,16H5V8h14V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_5_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_5_4.xml
deleted file mode 100644
index e9fc8e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_5_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.9,4 3,4.9 3,6v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.1,4 19,4zM19,18H5V6h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_7_5.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_7_5.xml
deleted file mode 100644
index d151917..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_7_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C3.9,5 3,5.9 3,7v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7C21,5.9 20.1,5 19,5zM19,17H5V7h14V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_din.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_din.xml
deleted file mode 100644
index 941565a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_din.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_free.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_free.xml
deleted file mode 100644
index 8a6bde9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19c0,1.1 0.9,2 2,2h4v-2L5,19v-4L3,15v4zM21,5c0,-1.1 -0.9,-2 -2,-2h-4v2h4v4h2L21,5zM5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM21,19v-4h-2v4h-4v2h4c1.1,0 2,-0.9 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_landscape.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_landscape.xml
deleted file mode 100644
index 9ebb272..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_landscape.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_original.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_original.xml
deleted file mode 100644
index e7dfead..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_original.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM13.96,12.29l-2.75,3.54 -1.96,-2.36L6.5,17h11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_portrait.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_portrait.xml
deleted file mode 100644
index 967824b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_portrait.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,5c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_rotate.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_rotate.xml
deleted file mode 100644
index 083cfd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_rotate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.95,24c0.23,0 0.44,-0.02 0.66,-0.03L8.8,20.15l-1.33,1.34C4.2,19.93 1.86,16.76 1.5,13L0,13c0.51,6.16 5.66,11 11.95,11zM12.05,0c-0.23,0 -0.44,0.02 -0.66,0.04l3.81,3.81 1.33,-1.33C19.8,4.07 22.14,7.24 22.5,11L24,11c-0.51,-6.16 -5.66,-11 -11.95,-11zM16,6h-6v2h6v6h2L18,8c0,-1.11 -0.9,-2 -2,-2zM18,18h2v-2L8,16L8,4L6,4v2L4,6v2h2v8c0,1.1 0.89,2 2,2h8v2h2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/crop_square.xml b/compose/material/material/icons/generator/raw-icons/twotone/crop_square.xml
deleted file mode 100644
index 419cdf9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/crop_square.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4L6,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,6c0,-1.1 -0.9,-2 -2,-2zM18,18L6,18L6,6h12v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cruelty_free.xml b/compose/material/material/icons/generator/raw-icons/twotone/cruelty_free.xml
deleted file mode 100644
index 5f02d64..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cruelty_free.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.88,4.03C16.94,4.2 17,4.51 17,5c0,2.84 -1.11,5.24 -2.07,6.78c-0.38,-0.26 -0.83,-0.48 -1.4,-0.62C13.77,6.64 15.97,4.33 16.88,4.03zM7,5c0,-0.49 0.06,-0.8 0.12,-0.97c0.91,0.3 3.11,2.61 3.36,7.13c-0.58,0.14 -1.03,0.35 -1.4,0.62C8.11,10.24 7,7.84 7,5zM16,15.77c-0.44,-0.36 -0.61,-0.52 -1.3,-1.37C13.94,13.45 13.61,13 12,13s-1.94,0.45 -2.7,1.4c-0.69,0.85 -0.86,1.01 -1.3,1.37c-0.57,0.49 -1,1.03 -1,1.73C7,18.88 8.12,20 9.5,20c1,0 1.8,-0.33 2.22,-0.56C11.3,19.26 11,18.73 11,18.5c0,-0.28 0.45,-0.5 1,-0.5s1,0.22 1,0.5c0,0.23 -0.3,0.76 -0.72,0.94C12.7,19.67 13.5,20 14.5,20c1.38,0 2.5,-1.12 2.5,-2.5C17,16.8 16.57,16.26 16,15.77zM10.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S11,15.59 11,16C11,16.41 10.78,16.75 10.5,16.75zM13.5,16.75c-0.28,0 -0.5,-0.34 -0.5,-0.75c0,-0.41 0.22,-0.75 0.5,-0.75S14,15.59 14,16C14,16.41 13.78,16.75 13.5,16.75z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14c-0.24,-0.24 -0.44,-0.49 -0.65,-0.75C17.51,11.5 19,8.56 19,5c0,-1.95 -0.74,-3 -2,-3c-1.54,0 -3.96,2.06 -5,5.97C10.96,4.06 8.54,2 7,2C5.74,2 5,3.05 5,5c0,3.56 1.49,6.5 2.65,8.25C7.44,13.51 7.24,13.76 7,14c-0.25,0.25 -2,1.39 -2,3.5C5,19.98 7.02,22 9.5,22c1.5,0 2.5,-0.5 2.5,-0.5s1,0.5 2.5,0.5c2.48,0 4.5,-2.02 4.5,-4.5C19,15.39 17.25,14.25 17,14zM16.88,4.03C16.94,4.2 17,4.51 17,5c0,2.84 -1.11,5.24 -2.07,6.78c-0.38,-0.26 -0.83,-0.48 -1.4,-0.62C13.77,6.64 15.97,4.33 16.88,4.03zM7,5c0,-0.49 0.06,-0.8 0.12,-0.97c0.91,0.3 3.11,2.61 3.36,7.13c-0.58,0.14 -1.03,0.35 -1.4,0.62C8.11,10.24 7,7.84 7,5zM14.5,20c-1,0 -1.8,-0.33 -2.22,-0.56C12.7,19.26 13,18.73 13,18.5c0,-0.28 -0.45,-0.5 -1,-0.5s-1,0.22 -1,0.5c0,0.23 0.3,0.76 0.72,0.94C11.3,19.67 10.5,20 9.5,20C8.12,20 7,18.88 7,17.5c0,-0.7 0.43,-1.24 1,-1.73c0.44,-0.36 0.61,-0.52 1.3,-1.37c0.76,-0.95 1.09,-1.4 2.7,-1.4s1.94,0.45 2.7,1.4c0.69,0.85 0.86,1.01 1.3,1.37c0.57,0.49 1,1.03 1,1.73C17,18.88 15.88,20 14.5,20zM14,16c0,0.41 -0.22,0.75 -0.5,0.75S13,16.41 13,16c0,-0.41 0.22,-0.75 0.5,-0.75S14,15.59 14,16zM11,16c0,0.41 -0.22,0.75 -0.5,0.75S10,16.41 10,16c0,-0.41 0.22,-0.75 0.5,-0.75S11,15.59 11,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/css.xml b/compose/material/material/icons/generator/raw-icons/twotone/css.xml
deleted file mode 100644
index 3fdd1d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/css.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,14v-1H11v0.5h2v-1h-2.5c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H13v-0.5h-2v1h2.5c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1h-3C9.95,15 9.5,14.55 9.5,14zM17,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1h-2.5v-1h2V11H21v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2.5v1h-2V13H16v1C16,14.55 16.45,15 17,15zM8,10c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-1H6.5v0.5h-2v-3h2V11H8V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_bitcoin.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_bitcoin.xml
deleted file mode 100644
index 8fcc49e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_bitcoin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.06,11.57C17.65,10.88 18,9.98 18,9c0,-1.86 -1.27,-3.43 -3,-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2c2.21,0 4,-1.79 4,-4C19,13.55 18.22,12.27 17.06,11.57zM10,7h4c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-4V7zM15,17h-5v-4h5c1.1,0 2,0.9 2,2S16.1,17 15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_exchange.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_exchange.xml
deleted file mode 100644
index 672b0ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_exchange.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.89,11.1c-1.78,-0.59 -2.64,-0.96 -2.64,-1.9c0,-1.02 1.11,-1.39 1.81,-1.39c1.31,0 1.79,0.99 1.9,1.34l1.58,-0.67C15.39,8.03 14.72,6.56 13,6.24V5h-2v1.26C8.52,6.82 8.51,9.12 8.51,9.22c0,2.27 2.25,2.91 3.35,3.31c1.58,0.56 2.28,1.07 2.28,2.03c0,1.13 -1.05,1.61 -1.98,1.61c-1.82,0 -2.34,-1.87 -2.4,-2.09L8.1,14.75c0.63,2.19 2.28,2.78 2.9,2.96V19h2v-1.24c0.4,-0.09 2.9,-0.59 2.9,-3.22C15.9,13.15 15.29,11.93 12.89,11.1zM3,21H1v-6h6v2l-2.48,0c1.61,2.41 4.36,4 7.48,4c4.97,0 9,-4.03 9,-9h2c0,6.08 -4.92,11 -11,11c-3.72,0 -7.01,-1.85 -9,-4.67L3,21zM1,12C1,5.92 5.92,1 12,1c3.72,0 7.01,1.85 9,4.67L21,3h2v6h-6V7l2.48,0C17.87,4.59 15.12,3 12,3c-4.97,0 -9,4.03 -9,9H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_franc.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_franc.xml
deleted file mode 100644
index 679d05e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_franc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5l0,-2l-11,0l0,13l-2,0l0,2l2,0l0,3l2,0l0,-3l4,0l0,-2l-4,0l0,-3l8,0l0,-2l-8,0l0,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_lira.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_lira.xml
deleted file mode 100644
index 857ee0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_lira.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0 5,-2.24 5,-5h2c0,3.87 -3.13,7 -7,7H9v-5.16l-3,1.88l0,-2.36l3,-1.88v-2.36L6,13l0,-2.36L9,8.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_pound.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_pound.xml
deleted file mode 100644
index 7297f11..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_pound.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,21c1.93,0 3.62,-1.17 4,-3l-1.75,-0.88C16,18.21 15.33,19 14,19l-4.9,0c0.83,-1 1.5,-2.34 1.5,-4c0,-0.35 -0.03,-0.69 -0.08,-1L14,14v-2l-4.18,0C9,10.42 8,9.6 8,8c0,-1.93 1.57,-3.5 3.5,-3.5c1.5,0 2.79,0.95 3.28,2.28L16.63,6c-0.8,-2.05 -2.79,-3.5 -5.13,-3.5C8.46,2.5 6,4.96 6,8c0,1.78 0.79,2.9 1.49,4L6,12v2l2.47,0c0.08,0.31 0.13,0.64 0.13,1c0,2.7 -2.6,4 -2.6,4v2H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_ruble.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_ruble.xml
deleted file mode 100644
index 15154683..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_ruble.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0 5.5,-2.46 5.5,-5.5C19,5.46 16.54,3 13.5,3zM13.5,12H9V5h4.5C15.43,5 17,6.57 17,8.5S15.43,12 13.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_rupee.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_rupee.xml
deleted file mode 100644
index 422698e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_rupee.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.66,7C13.1,5.82 11.9,5 10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58 0.84,1.26 1.05,2L18,7v2l-2.02,0c-0.25,2.8 -2.61,5 -5.48,5H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0 3.22,-1.3 3.46,-3L6,9V7L13.66,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_yen.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_yen.xml
deleted file mode 100644
index 16f26eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_yen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,11l4.08,0l0,2l-5,0l0,2l5,0l0,2l-5,0l0,4l-2,0l0,-4l-5,0l0,-2l5,0l0,-2l-5,0l0,-2l4.08,0l-5.08,-8l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/currency_yuan.xml b/compose/material/material/icons/generator/raw-icons/twotone/currency_yuan.xml
deleted file mode 100644
index 5fe3115..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/currency_yuan.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.28,12l4.72,0l0,2l-5,0l0,7l-2,0l0,-7l-5,0l0,-2l4.72,0l-5.72,-9l2.37,0l4.63,7.29l4.63,-7.29l2.37,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/curtains.xml b/compose/material/material/icons/generator/raw-icons/twotone/curtains.xml
deleted file mode 100644
index 3099195..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/curtains.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13.14V19h3.94C9.64,16.07 8.05,13.73 6,13.14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.94,5H6v5.86C8.05,10.27 9.64,7.93 9.94,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,19H18v-5.86C15.95,13.73 14.36,16.07 14.06,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.86V5h-3.94C14.36,7.93 15.95,10.27 18,10.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM6,5h3.94C9.64,7.93 8.05,10.27 6,10.86V5zM6,19v-5.86c2.05,0.58 3.64,2.93 3.94,5.86H6zM11.95,19c-0.26,-3.06 -1.72,-5.65 -3.76,-7c2.04,-1.35 3.5,-3.94 3.76,-7h0.09c0.26,3.06 1.72,5.65 3.76,7c-2.04,1.35 -3.5,3.94 -3.76,7H11.95zM18,19h-3.94c0.3,-2.93 1.89,-5.27 3.94,-5.86V19zM18,10.86c-2.05,-0.58 -3.64,-2.93 -3.94,-5.86H18V10.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/curtains_closed.xml b/compose/material/material/icons/generator/raw-icons/twotone/curtains_closed.xml
deleted file mode 100644
index dcbfc36..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/curtains_closed.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h3v14h-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h3v14h-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM9,19H6V5h3V19zM13,19h-2V5h2V19zM18,19h-3V5h3V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/cyclone.xml b/compose/material/material/icons/generator/raw-icons/twotone/cyclone.xml
deleted file mode 100644
index 6f2f690..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/cyclone.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S15.31,6 12,6zM12,16c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4c2.21,0 4,1.79 4,4C16,14.21 14.21,16 12,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4C16,9.79 14.21,8 12,8zM12,14c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,13.1 13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.35C20.05,4.77 16.56,4 12,4C9.85,4 7.89,4.86 6.46,6.24C6.59,5.39 6.86,3.84 7.47,2H5.35C4.77,3.95 4,7.44 4,12c0,2.15 0.86,4.11 2.24,5.54c-0.85,-0.14 -2.4,-0.4 -4.24,-1.01v2.12C3.95,19.23 7.44,20 12,20c2.15,0 4.11,-0.86 5.54,-2.24c-0.14,0.85 -0.4,2.4 -1.01,4.24h2.12C19.23,20.05 20,16.56 20,12c0,-2.15 -0.86,-4.11 -2.24,-5.54c0.85,0.14 2.4,0.4 4.24,1.01V5.35zM18,12c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6s2.69,-6 6,-6S18,8.69 18,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dangerous.xml b/compose/material/material/icons/generator/raw-icons/twotone/dangerous.xml
deleted file mode 100644
index dadef38..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dangerous.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.1,5L5,9.1v5.8L9.1,19h5.8l4.1,-4.1V9.1L14.9,5H9.1zM16.24,14.83l-1.41,1.41L12,13.41l-2.83,2.83l-1.41,-1.41L10.59,12L7.76,9.17l1.41,-1.41L12,10.59l2.83,-2.83l1.41,1.41L13.41,12L16.24,14.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9zM14.83,7.76L12,10.59L9.17,7.76L7.76,9.17L10.59,12l-2.83,2.83l1.41,1.41L12,13.41l2.83,2.83l1.41,-1.41L13.41,12l2.83,-2.83L14.83,7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dark_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/dark_mode.xml
deleted file mode 100644
index 0bec87e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dark_mode.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.37,5.51C9.19,6.15 9.1,6.82 9.1,7.5c0,4.08 3.32,7.4 7.4,7.4c0.68,0 1.35,-0.09 1.99,-0.27C17.45,17.19 14.93,19 12,19c-3.86,0 -7,-3.14 -7,-7C5,9.07 6.81,6.55 9.37,5.51z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.37,5.51C9.19,6.15 9.1,6.82 9.1,7.5c0,4.08 3.32,7.4 7.4,7.4c0.68,0 1.35,-0.09 1.99,-0.27C17.45,17.19 14.93,19 12,19c-3.86,0 -7,-3.14 -7,-7C5,9.07 6.81,6.55 9.37,5.51zM12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9c0,-0.46 -0.04,-0.92 -0.1,-1.36c-0.98,1.37 -2.58,2.26 -4.4,2.26c-2.98,0 -5.4,-2.42 -5.4,-5.4c0,-1.81 0.89,-3.42 2.26,-4.4C12.92,3.04 12.46,3 12,3L12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dashboard.xml b/compose/material/material/icons/generator/raw-icons/twotone/dashboard.xml
deleted file mode 100644
index c6ea2fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dashboard.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h4v6L5,11zM15,13h4v6h-4zM5,17h4v2L5,19zM15,5h4v2h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h8L11,3L3,3v10zM5,5h4v6L5,11L5,5zM13,21h8L21,11h-8v10zM15,13h4v6h-4v-6zM13,3v6h8L21,3h-8zM19,7h-4L15,5h4v2zM3,21h8v-6L3,15v6zM5,17h4v2L5,19v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dashboard_customize.xml b/compose/material/material/icons/generator/raw-icons/twotone/dashboard_customize.xml
deleted file mode 100644
index 12efb41..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dashboard_customize.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/data_array.xml b/compose/material/material/icons/generator/raw-icons/twotone/data_array.xml
deleted file mode 100644
index 3f9d0b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/data_array.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4l0,2l3,0l0,12l-3,0l0,2l5,0l0,-16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20l5,0l0,-2l-3,0l0,-12l3,0l0,-2l-5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/data_exploration.xml b/compose/material/material/icons/generator/raw-icons/twotone/data_exploration.xml
deleted file mode 100644
index 013f2c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/data_exploration.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-2.89,0 -5.43,-1.54 -6.83,-3.84l2.95,-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5l-3.69,3.7C4.11,13.5 4,12.76 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM19.5,20.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.05,20.5 19.5,20.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10h8c1.1,0 2,-0.9 2,-2v-8C22,6.48 17.52,2 12,2zM12,20c-2.89,0 -5.43,-1.54 -6.83,-3.84l2.95,-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5l-3.69,3.7C4.11,13.5 4,12.76 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM19.5,20.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.05,20.5 19.5,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/data_object.xml b/compose/material/material/icons/generator/raw-icons/twotone/data_object.xml
deleted file mode 100644
index a924fe6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/data_object.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7v2c0,0.55 -0.45,1 -1,1H2v4h1c0.55,0 1,0.45 1,1v2c0,1.65 1.35,3 3,3h3v-2H7c-0.55,0 -1,-0.45 -1,-1v-2c0,-1.3 -0.84,-2.42 -2,-2.83v-0.34C5.16,11.42 6,10.3 6,9V7c0,-0.55 0.45,-1 1,-1h3V4H7C5.35,4 4,5.35 4,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10c-0.55,0 -1,-0.45 -1,-1V7c0,-1.65 -1.35,-3 -3,-3h-3v2h3c0.55,0 1,0.45 1,1v2c0,1.3 0.84,2.42 2,2.83v0.34c-1.16,0.41 -2,1.52 -2,2.83v2c0,0.55 -0.45,1 -1,1h-3v2h3c1.65,0 3,-1.35 3,-3v-2c0,-0.55 0.45,-1 1,-1h1v-4H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/data_saver_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/data_saver_off.xml
deleted file mode 100644
index 7a0a8be..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/data_saver_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/data_saver_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/data_saver_on.xml
deleted file mode 100644
index cd4a458..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/data_saver_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11zM13,2.05v3.03c3.39,0.49 6,3.39 6,6.92c0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53C21.68,14.83 22,13.45 22,12C22,6.82 18.05,2.55 13,2.05zM12,19c-3.87,0 -7,-3.13 -7,-7c0,-3.53 2.61,-6.43 6,-6.92V2.05C5.94,2.55 2,6.81 2,12c0,5.52 4.47,10 9.99,10c3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/data_thresholding.xml b/compose/material/material/icons/generator/raw-icons/twotone/data_thresholding.xml
deleted file mode 100644
index f73ad29..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/data_thresholding.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19l0,-1.73l-1.73,1.73z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17.72L6.72,16h2.12l-3,3h1.83l3,-3h2.12l-3,3h1.62l3,-3h2.12l-3,3h1.62l3,-3H19V5H5V17.72zM10.67,8.17l2,2l3.67,-3.67l1.41,1.41L12.67,13l-2,-2l-3,3l-1.41,-1.41L10.67,8.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19h-1.73L19,17.27V19zM19,16h-0.85l-3,3h-1.62l3,-3h-2.12l-3,3H9.8l3,-3h-2.12l-3,3H5.84l3,-3H6.72L5,17.72V5h14V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,11l2,2l5.08,-5.09l-1.41,-1.41l-3.67,3.67l-2,-2l-4.42,4.42l1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/data_usage.xml b/compose/material/material/icons/generator/raw-icons/twotone/data_usage.xml
deleted file mode 100644
index e1919ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/data_usage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v3.03c3.39,0.49 6,3.39 6,6.92 0,0.9 -0.18,1.75 -0.48,2.54l2.6,1.53c0.56,-1.24 0.88,-2.62 0.88,-4.07 0,-5.18 -3.95,-9.45 -9,-9.95zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-3.53 2.61,-6.43 6,-6.92V2.05c-5.06,0.5 -9,4.76 -9,9.95 0,5.52 4.47,10 9.99,10 3.31,0 6.24,-1.61 8.06,-4.09l-2.6,-1.53C16.17,17.98 14.21,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dataset.xml b/compose/material/material/icons/generator/raw-icons/twotone/dataset.xml
deleted file mode 100644
index 271a56c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dataset.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM13,7h4v4h-4V7zM13,13h4v4h-4V13zM7,7h4v4H7V7zM7,13h4v4H7V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h4v4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dataset_linked.xml b/compose/material/material/icons/generator/raw-icons/twotone/dataset_linked.xml
deleted file mode 100644
index 84a0e9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dataset_linked.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h3.09C8.04,18.67 8,18.34 8,18s0.04,-0.67 0.09,-1H7v-4h3.69c0.95,-0.63 2.09,-1 3.31,-1h5V5H5zM11,11H7V7h4V11zM13,11V7h4v4H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h1.09c0.28,-1.67 1.24,-3.1 2.6,-4H7V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19V5h14v7h1c0.34,0 0.67,0.04 1,0.09V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h3.81c-0.35,-0.61 -0.6,-1.28 -0.72,-2H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20h-2c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2h2v-2h-2c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4h2V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14h-2v2h2c1.1,0 2,0.9 2,2s-0.9,2 -2,2h-2v2h2c2.21,0 4,-1.79 4,-4C24,15.79 22.21,14 20,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19l0,-2l-3,0l-3,0l0,2l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/date_range.xml b/compose/material/material/icons/generator/raw-icons/twotone/date_range.xml
deleted file mode 100644
index c959cfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/date_range.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8h14V6H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h2v2L7,13zM19,4h-1L18,2h-2v2L8,4L8,2L6,2v2L5,4c-1.11,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,20L5,20L5,10h14v10zM19,8L5,8L5,6h14v2zM15,11h2v2h-2zM11,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/deblur.xml b/compose/material/material/icons/generator/raw-icons/twotone/deblur.xml
deleted file mode 100644
index f37b8e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/deblur.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3v2c3.86,0 7,3.14 7,7s-3.14,7 -7,7v2c4.96,0 9,-4.04 9,-9S16.96,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5v14c3.86,0 7,-3.14 7,-7S15.86,5 12,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/deck.xml b/compose/material/material/icons/generator/raw-icons/twotone/deck.xml
deleted file mode 100644
index 723252c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/deck.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.44l-3.66,2.56l7.32,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9L12,2L2,9h9v13h2V9H22zM12,4.44L15.66,7H8.34L12,4.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.14,12l-1.96,0.37l0.82,4.37l0,5.26l2,0l0.02,-4l1.98,0l0,4l2,0l0,-6l-4.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.1,16l-4.1,0l0,6l2,0l0,-4l1.98,0l0.02,4l2,0l0,-5.26l0.82,-4.37l-1.96,-0.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dehaze.xml b/compose/material/material/icons/generator/raw-icons/twotone/dehaze.xml
deleted file mode 100644
index d068f3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dehaze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2h20v-2L2,16zM2,11v2h20v-2L2,11zM2,6v2h20L22,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/delete.xml b/compose/material/material/icons/generator/raw-icons/twotone/delete.xml
deleted file mode 100644
index b77afdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/delete.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9h8v10H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,4l-1,-1h-5l-1,1H5v2h14V4zM6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM8,9h8v10H8V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/delete_forever.xml b/compose/material/material/icons/generator/raw-icons/twotone/delete_forever.xml
deleted file mode 100644
index fce499a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/delete_forever.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9L8,9v10h8L16,9zM15.53,16.12l-1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12 1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,10.47L12,12.59l-2.13,-2.12 -1.41,1.41L10.59,14l-2.12,2.12 1.41,1.41L12,15.41l2.12,2.12 1.41,-1.41L13.41,14l2.12,-2.12zM15.5,4l-1,-1h-5l-1,1H5v2h14V4zM6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM8,9h8v10H8V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/delete_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/delete_outline.xml
deleted file mode 100644
index 332f09a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/delete_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8,9h8v10L8,19L8,9zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4h-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/delete_sweep.xml b/compose/material/material/icons/generator/raw-icons/twotone/delete_sweep.xml
deleted file mode 100644
index 0bc4a93..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/delete_sweep.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h6v8H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16h4v2h-4zM15,8h7v2h-7zM15,12h6v2h-6zM3,18c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2L13,8L3,8v10zM5,10h6v8L5,18v-8zM10,4L6,4L5,5L2,5v2h12L14,5h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/delivery_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/delivery_dining.xml
deleted file mode 100644
index 9b64ce0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/delivery_dining.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13v1h4v-3H6C4.9,11 4,11.9 4,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35V7zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17zM8,14H4v-1c0,-1.1 0.9,-2 2,-2h2V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/density_large.xml b/compose/material/material/icons/generator/raw-icons/twotone/density_large.xml
deleted file mode 100644
index d542113..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/density_large.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/density_medium.xml b/compose/material/material/icons/generator/raw-icons/twotone/density_medium.xml
deleted file mode 100644
index c06902b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/density_medium.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/density_small.xml b/compose/material/material/icons/generator/raw-icons/twotone/density_small.xml
deleted file mode 100644
index eb68a8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/density_small.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,20h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,8h18v2h-18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/departure_board.xml b/compose/material/material/icons/generator/raw-icons/twotone/departure_board.xml
deleted file mode 100644
index 2db72cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/departure_board.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.29,6L9,6c-3.69,0 -5.11,0.46 -5.66,0.99h5.74c0.05,-0.33 0.12,-0.67 0.21,-0.99zM3,14v4c0,0.37 0.21,0.62 0.34,0.73l0.29,0.27h10.74l0.29,-0.27c0.13,-0.11 0.34,-0.36 0.34,-0.73v-3.08c-0.94,-0.13 -1.81,-0.45 -2.59,-0.92L3,14zM5.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S4.67,15 5.5,15s1.5,0.67 1.5,1.5S6.33,18 5.5,18zM14,16.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1c-2.39,0 -4.49,1.2 -5.75,3.02C9.84,4.01 9.43,4 9,4c-4.42,0 -8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22L2,22c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1.78c0.61,-0.55 1,-1.34 1,-2.22v-3.08c3.39,-0.49 6,-3.39 6,-6.92 0,-3.87 -3.13,-7 -7,-7zM9,6h0.29c-0.09,0.32 -0.16,0.66 -0.21,0.99L3.34,6.99C3.89,6.46 5.31,6 9,6zM3,8.99h6.08c0.16,1.11 0.57,2.13 1.18,3.01L3,12L3,8.99zM15,18c0,0.37 -0.21,0.62 -0.34,0.73l-0.29,0.27L3.63,19l-0.29,-0.27C3.21,18.62 3,18.37 3,18v-4h9.41c0.78,0.47 1.65,0.79 2.59,0.92L15,18zM16,13c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM16.5,4L15,4v5l3.62,2.16 0.75,-1.23 -2.87,-1.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/description.xml b/compose/material/material/icons/generator/raw-icons/twotone/description.xml
deleted file mode 100644
index 6b146e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/description.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4L6,4v16h12L18,9h-5L13,4zM16,18L8,18v-2h8v2zM16,12v2L8,14v-2h8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h8v2L8,18zM8,12h8v2L8,14zM14,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,20L6,20L6,4h7v5h5v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/deselect.xml b/compose/material/material/icons/generator/raw-icons/twotone/deselect.xml
deleted file mode 100644
index bf594e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/deselect.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2H3V13zM7,21h2v-2H7V21zM13,3h-2v2h2V3zM19,3v2h2C21,3.9 20.1,3 19,3zM5,21v-2H3C3,20.1 3.9,21 5,21zM3,17h2v-2H3V17zM11,21h2v-2h-2V21zM19,13h2v-2h-2V13zM19,9h2V7h-2V9zM15,5h2V3h-2V5zM7.83,5L7,4.17V3h2v2H7.83zM19.83,17L19,16.17V15h2v2H19.83zM21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19zM9,15v-3.17L12.17,15H9zM15,12.17V9h-3.17l-2,-2H17v7.17L15,12.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/design_services.xml b/compose/material/material/icons/generator/raw-icons/twotone/design_services.xml
deleted file mode 100644
index 7d77635..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/design_services.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.91,9.28l-1.3,-1.3l-9.61,9.61l0,1.41l1.41,0l9.61,-9.61z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8.93l-1.2,-1.2l-1.19,1.19l-1.42,-1.42l1.19,-1.18l-1.27,-1.28l0,0l-1.9,1.9l3.89,3.89z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.27,14.38l-1.2,-1.21l-1.9,1.9l3.89,3.89l1.9,-1.9l-1.27,-1.27l-1.19,1.19l-1.42,-1.41z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.021,6.558l1.414,-1.414l1.414,1.414l-1.414,1.414z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.97,5.86l-2.83,-2.83c-0.39,-0.39 -1.02,-0.39 -1.41,0l-4.49,4.49L8.35,3.63c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.9,1.9c-0.78,0.78 -0.78,2.05 0,2.83l3.89,3.89L3,16.76V21h4.24l4.52,-4.52l3.89,3.89c0.95,0.95 2.23,0.6 2.83,0l1.9,-1.9c0.78,-0.78 0.78,-2.05 0,-2.83l-3.89,-3.89l4.49,-4.49C21.36,6.88 21.36,6.25 20.97,5.86zM5.04,6.94l1.89,-1.9c0,0 0,0 0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19,-1.19l1.2,1.2l-1.9,1.9L5.04,6.94zM6.41,19H5v-1.41l9.61,-9.61l1.3,1.3l0.11,0.11L6.41,19zM16.5,16.98l1.19,-1.19l1.27,1.27l-1.9,1.9l-3.89,-3.89l1.9,-1.9l1.2,1.2l-1.19,1.19L16.5,16.98zM17.44,7.98l-1.41,-1.41l1.41,-1.41l1.41,1.41L17.44,7.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/desk.xml b/compose/material/material/icons/generator/raw-icons/twotone/desk.xml
deleted file mode 100644
index 90a2ae2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/desk.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8h4v2h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,12h4v2h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6v12h2V8h10v10h2v-2h4v2h2V6H2zM20,14h-4v-2h4V14zM20,10h-4V8h4V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/desktop_access_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/desktop_access_disabled.xml
deleted file mode 100644
index db25929..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/desktop_access_disabled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.69L0,3.1l1,0.99V16c0,1.1 0.89,2 1.99,2H10v2H8v2h8v-2h-2v-2h0.9l6,6 1.41,-1.41 -20.9,-20.9zM2.99,16V6.09L12.9,16H2.99zM4.55,2l2,2H21v12h-2.45l2,2h0.44c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2H4.55z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.99,6.09V16h9.91zM6.55,4l12,12H21V4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/desktop_mac.xml b/compose/material/material/icons/generator/raw-icons/twotone/desktop_mac.xml
deleted file mode 100644
index a7fbc62..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/desktop_mac.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4h18v10H3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7l-2,3v1h8v-1l-2,-3h7c1.1,0 2,-0.9 2,-2L23,4c0,-1.1 -0.9,-2 -2,-2zM21,14L3,14L3,4h18v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/desktop_windows.xml b/compose/material/material/icons/generator/raw-icons/twotone/desktop_windows.xml
deleted file mode 100644
index b416046..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/desktop_windows.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4h18v12H3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,2L3,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h7v2L8,20v2h8v-2h-2v-2h7c1.1,0 2,-0.9 2,-2L23,4c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,4h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/details.xml b/compose/material/material/icons/generator/raw-icons/twotone/details.xml
deleted file mode 100644
index 6a8d0c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/details.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.92L18.6,19H13V8.92zM11,8.92V19H5.4L11,8.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,21h20L12,3zM13,8.92L18.6,19H13V8.92zM11,8.92V19H5.4L11,8.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/developer_board.xml b/compose/material/material/icons/generator/raw-icons/twotone/developer_board.xml
deleted file mode 100644
index f4e6b20c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/developer_board.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h14L18,5L4,5v14zM12,7h4v3h-4L12,7zM12,11h4v6h-4v-6zM6,7h5v5L6,12L6,7zM6,13h5v4L6,17v-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13h5v4L6,17zM6,7h5v5L6,12zM12,7h4v3h-4zM12,11h4v6h-4zM22,9L22,7h-2L20,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-2h2v-2h-2v-2h2v-2h-2L20,9h2zM18,19L4,19L4,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/developer_board_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/developer_board_off.xml
deleted file mode 100644
index 3f92cf9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/developer_board_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4zM16,13.17V11h-2.17l-1,-1H16V7h-4v2.17l-1,-1V7H9.83l-2,-2H18v10.17L16,13.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0,-1.1 -0.9,-2 -2,-2H5.83L7.83,5zM12,9.17V7h4v3h-3.17L12,9.17zM9.83,7H11v1.17L9.83,7zM13.83,11H16v2.17L13.83,11zM18,21c0.06,0 0.11,0 0.16,-0.01l2.32,2.32l1.41,-1.41L2.1,2.1L0.69,3.51l1.32,1.32C2,4.89 2,4.94 2,5v14c0,1.1 0.9,2 2,2H18zM4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/developer_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/developer_mode.xml
deleted file mode 100644
index ded6b03..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/developer_mode.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v2h2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1c-1.1,0 -2,0.9 -2,2v4h2L7,5zM15.41,16.59L20,12l-4.59,-4.59L14,8.83 17.17,12 14,15.17l1.41,1.42zM10,15.17L6.83,12 10,8.83 8.59,7.41 4,12l4.59,4.59L10,15.17zM17,19L7,19v-2L5,17v4c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/device_hub.xml b/compose/material/material/icons/generator/raw-icons/twotone/device_hub.xml
deleted file mode 100644
index 3490a5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/device_hub.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16l-4,-4V8.82C14.16,8.4 15,7.3 15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6c0,1.3 0.84,2.4 2,2.82V12l-4,4H3v5h5v-3.05l4,-4.2 4,4.2V21h5v-5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/device_thermostat.xml b/compose/material/material/icons/generator/raw-icons/twotone/device_thermostat.xml
deleted file mode 100644
index 06fdc13..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/device_thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,15.37 16.21,13.91 15,13zM11,11V5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1h-1v1h1v1v1h-1v1h1v1H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/device_unknown.xml b/compose/material/material/icons/generator/raw-icons/twotone/device_unknown.xml
deleted file mode 100644
index 04457e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/device_unknown.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10L17,5L7,5v14zM13,18h-2v-2h2v2zM12,6.72c1.96,0 3.5,1.51 3.5,3.47 0,2.26 -2.62,2.49 -2.62,4.45h-1.76c0,-2.88 2.63,-2.7 2.63,-4.45 0,-0.93 -0.82,-1.75 -1.75,-1.75s-1.75,0.82 -1.75,1.75L8.5,10.19c0,-1.95 1.54,-3.47 3.5,-3.47z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v2h-2zM17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14zM12,8.44c0.93,0 1.75,0.82 1.75,1.75 0,1.75 -2.63,1.57 -2.63,4.45h1.76c0,-1.96 2.62,-2.19 2.62,-4.45 0,-1.96 -1.54,-3.47 -3.5,-3.47s-3.5,1.52 -3.5,3.47h1.75c0,-0.93 0.82,-1.75 1.75,-1.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/devices.xml b/compose/material/material/icons/generator/raw-icons/twotone/devices.xml
deleted file mode 100644
index 969aba3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/devices.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10h4v7h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7zM4,6h18L22,4L4,4c-1.1,0 -2,0.9 -2,2v11L0,17v3h14v-3L4,17L4,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/devices_fold.xml b/compose/material/material/icons/generator/raw-icons/twotone/devices_fold.xml
deleted file mode 100644
index 25adaa9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/devices_fold.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3l-3,1.29l0,13.68l3,-1.29z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-3c0,-1.44 -1.47,-2.4 -2.79,-1.84l-3,1.29C10.48,2.76 10,3.49 10,4.29V19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM12,4.29L15,3v13.68l-3,1.29V4.29zM20,19h-5.33l1.12,-0.48C16.52,18.2 17,17.48 17,16.68V5h3V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/devices_other.xml b/compose/material/material/icons/generator/raw-icons/twotone/devices_other.xml
deleted file mode 100644
index 5c0e601..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/devices_other.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h4v8h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h18L21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h4v-2L3,18L3,6zM22,8h-6c-0.5,0 -1,0.5 -1,1v10c0,0.5 0.5,1 1,1h6c0.5,0 1,-0.5 1,-1L23,9c0,-0.5 -0.5,-1 -1,-1zM21,18h-4v-8h4v8zM13,12L9,12v1.78c-0.61,0.55 -1,1.33 -1,2.22s0.39,1.67 1,2.22L9,20h4v-1.78c0.61,-0.55 1,-1.34 1,-2.22s-0.39,-1.67 -1,-2.22L13,12zM11,17.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dialer_sip.xml b/compose/material/material/icons/generator/raw-icons/twotone/dialer_sip.xml
deleted file mode 100644
index 9207de6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dialer_sip.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,18.21c1.2,0.41 2.48,0.67 3.8,0.75v-1.5c-0.88,-0.06 -1.75,-0.22 -2.59,-0.45l-1.21,1.2zM6.54,5h-1.5c0.09,1.32 0.35,2.59 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3h1v5h-1zM12,7v1h3L15,5h-2L13,4h2L15,3h-3v3h2v1zM21,3h-3v5h1L19,6h2L21,3zM20,5h-1L19,4h1v1zM21,16.5c0,-0.55 -0.45,-1 -1,-1 -1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.7,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.27,-0.26 0.35,-0.65 0.24,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.46,2.59L5.79,8.8c-0.41,-1.21 -0.67,-2.48 -0.76,-3.8zM19,18.97c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.2c0.85,0.24 1.71,0.39 2.59,0.45v1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dialpad.xml b/compose/material/material/icons/generator/raw-icons/twotone/dialpad.xml
deleted file mode 100644
index 30a4386..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dialpad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM20,15c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2 0.9,2 2,2 2,-0.9 2,-2zM12,23c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM6,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM18,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM6,11c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,11c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/diamond.xml b/compose/material/material/icons/generator/raw-icons/twotone/diamond.xml
deleted file mode 100644
index e1a74e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/diamond.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.88,5l-2.64,0l-1.5,3l2.64,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.26,8l-1.5,-3l-2.64,0l1.5,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16.68l0,-6.68l-5.56,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16.68l5.56,-6.68l-5.56,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.88,5l-1.76,0l-1.5,3l4.76,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5L2,9l10,12L22,9L19,3zM17.76,5l1.5,3h-2.65l-1.5,-3H17.76zM6.24,5h2.65l-1.5,3H4.74L6.24,5zM11,16.68L5.44,10H11V16.68zM9.62,8l1.5,-3h1.76l1.5,3H9.62zM13,16.68V10h5.56L13,16.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/difference.xml b/compose/material/material/icons/generator/raw-icons/twotone/difference.xml
deleted file mode 100644
index 703985f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/difference.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,3H8v14h11V7.83L14.17,3zM16.5,15h-6v-2h6V15zM16.5,9h-2v2h-2V9h-2V7h2V5h2v2h2V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,23H4c-1.1,0 -2,-0.9 -2,-2V7h2v14h14V23zM14.5,7V5h-2v2h-2v2h2v2h2V9h2V7H14.5zM16.5,13h-6v2h6V13zM15,1H8C6.9,1 6.01,1.9 6.01,3L6,17c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V7L15,1zM19,17H8V3h6.17L19,7.83V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/dining.xml
deleted file mode 100644
index 8209c33..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dining.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM14.75,6c1.38,0 2.5,1.53 2.5,3.41c0,1.48 -0.7,2.71 -1.67,3.18l-0.08,0.03V19H14v-6.38l-0.08,-0.04c-0.97,-0.47 -1.67,-1.7 -1.67,-3.18C12.25,7.52 13.38,6 14.75,6zM6.5,6.5C6.5,6.22 6.72,6 7,6s0.5,0.22 0.5,0.5V9h0.75V6.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V9H10V6.5C10,6.22 10.23,6 10.5,6C10.78,6 11,6.22 11,6.5v3.8c0,0.93 -0.64,1.71 -1.5,1.93V19H8v-6.77c-0.86,-0.22 -1.5,-1 -1.5,-1.93V6.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12.23V19h1.5v-6.77c0.86,-0.22 1.5,-1 1.5,-1.93V6.5C11,6.22 10.78,6 10.5,6C10.23,6 10,6.22 10,6.5V9H9.25V6.5c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5V9H7.5V6.5C7.5,6.22 7.28,6 7,6S6.5,6.22 6.5,6.5v3.8C6.5,11.23 7.14,12.01 8,12.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,12.58L14,12.62V19h1.5v-6.38l0.08,-0.03c0.97,-0.47 1.67,-1.7 1.67,-3.18c0,-1.88 -1.12,-3.41 -2.5,-3.41c-1.37,0 -2.5,1.52 -2.5,3.4C12.25,10.88 12.95,12.11 13.92,12.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dinner_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/dinner_dining.xml
deleted file mode 100644
index 16cdca2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dinner_dining.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.08,15.14C16.41,14.4 15.49,14 14.5,14c-1.35,0 -2.58,0.79 -3.16,2h6.32C17.52,15.69 17.32,15.4 17.08,15.14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19l2,2l16,0l2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h16.97c0,0 0,0 0,0c0.29,-3.26 -2.28,-6 -5.48,-6c-2.35,0 -4.35,1.48 -5.14,3.55C8.94,15.32 8.48,15.17 8,15.08V9h1.75C10.99,9 12,7.99 12,6.75h9v-1.5h-9C12,4.01 10.99,3 9.75,3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85 3.22,17.39 3,18zM14.5,14c0.99,0 1.91,0.4 2.58,1.14c0.24,0.26 0.44,0.55 0.58,0.86h-6.32C11.92,14.79 13.15,14 14.5,14zM8,4.5h2v0.75H8V4.5zM8,6.75h2V7.5H8V6.75zM5.5,4.5h1v0.75h-1V4.5zM5.5,6.75h1V7.5h-1V6.75zM5.5,9h1v6.06c-0.35,0.06 -0.68,0.17 -1,0.3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions.xml
deleted file mode 100644
index 8ece36a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.01,12l9,9L21,12l-9,-9 -8.99,9zM14,7.5l3.5,3.5 -3.5,3.5V12h-4v3H8v-4c0,-0.55 0.45,-1 1,-1h5V7.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.42,1.58c-0.75,-0.75 -2.07,-0.76 -2.83,0l-9,9c-0.78,0.78 -0.78,2.04 0,2.82l9,9c0.39,0.39 0.9,0.58 1.41,0.58 0.51,0 1.02,-0.19 1.41,-0.58l8.99,-8.99c0.78,-0.76 0.79,-2.03 0.02,-2.82l-9,-9.01zM12.01,20.99l-9,-9 9,-9 9,9 -9,9zM8,11v4h2v-3h4v2.5l3.5,-3.5L14,7.5L14,10L9,10c-0.55,0 -1,0.45 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_bike.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_bike.xml
deleted file mode 100644
index 23524be..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_bike.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5,22c2.8,0 5,-2.2 5,-5s-2.2,-5 -5,-5 -5,2.2 -5,5 2.2,5 5,5zM5,13.5c1.9,0 3.5,1.6 3.5,3.5S6.9,20.5 5,20.5 1.5,18.9 1.5,17s1.6,-3.5 3.5,-3.5zM7.8,11.2L11,14v5h2v-6.2l-2.2,-2.3 2.4,-2.4 0.8,0.8c1.3,1.3 3,2.1 5.1,2.1L19.1,9c-1.5,0 -2.7,-0.6 -3.6,-1.5l-1.9,-1.9c-0.5,-0.4 -1,-0.6 -1.6,-0.6s-1.1,0.2 -1.4,0.6L7.8,8.4c-0.4,0.4 -0.6,0.9 -0.6,1.4 0,0.6 0.2,1.1 0.6,1.4zM19,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM19,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_boat.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_boat.xml
deleted file mode 100644
index 3917e56..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_boat.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.49,15.68L8,13.96l1.51,1.72c0.34,0.4 1.28,1.32 2.49,1.32 1.21,0 2.15,-0.92 2.49,-1.32L16,13.96l1.51,1.72c0.2,0.23 0.6,0.64 1.14,0.94l1.12,-3.97 -2.39,-0.78L12,10.11l-5.38,1.77 -2.4,0.79 1.13,3.96c0.55,-0.31 0.94,-0.72 1.14,-0.95zM11,3h2v1h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.95,19L4,19c1.6,0 3.02,-0.88 4,-2 0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l1.89,-6.68c0.08,-0.26 0.06,-0.54 -0.06,-0.78s-0.34,-0.42 -0.6,-0.5L20,10.62L20,6c0,-1.1 -0.9,-2 -2,-2h-3L15,1L9,1v3L6,4c-1.1,0 -2,0.9 -2,2v4.62l-1.29,0.42c-0.26,0.08 -0.48,0.26 -0.6,0.5s-0.15,0.52 -0.06,0.78L3.95,19zM11,3h2v1h-2L11,3zM6,6h12v3.97L12,8 6,9.97L6,6zM6.62,11.87L12,10.11l5.38,1.77 2.39,0.78 -1.12,3.97c-0.54,-0.3 -0.94,-0.71 -1.14,-0.94L16,13.96l-1.51,1.72c-0.34,0.4 -1.28,1.32 -2.49,1.32 -1.21,0 -2.15,-0.92 -2.49,-1.32L8,13.96l-1.51,1.72c-0.2,0.23 -0.6,0.63 -1.14,0.93l-1.13,-3.96 2.4,-0.78zM8,22.01c1.26,0.64 2.63,0.97 4,0.97s2.74,-0.32 4,-0.97c1.26,0.65 2.62,0.99 4,0.99h2v-2h-2c-1.39,0 -2.78,-0.47 -4,-1.32 -1.22,0.85 -2.61,1.28 -4,1.28s-2.78,-0.43 -4,-1.28C6.78,20.53 5.39,21 4,21L2,21v2h2c1.38,0 2.74,-0.35 4,-0.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_boat_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_boat_filled.xml
deleted file mode 100644
index 2d7033e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_boat_filled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,12.66l-1.12,3.97c-0.78,-0.43 -1.07,-0.86 -2.65,-2.67C14.4,15.78 13.57,17 12,17c-1.53,0 -2.34,-1.15 -4,-3.04c-1.6,1.82 -1.87,2.21 -2.65,2.65l-1.13,-3.96L12,10.11L19.77,12.66z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,12.66l-1.12,3.97c-0.78,-0.43 -1.07,-0.86 -2.65,-2.67C14.4,15.78 13.57,17 12,17c-1.53,0 -2.34,-1.15 -4,-3.04c-1.6,1.82 -1.87,2.21 -2.65,2.65l-1.13,-3.96L12,10.11L19.77,12.66zM15,1H9v3H6C4.9,4 4,4.9 4,6v4.62l-1.29,0.42c-0.63,0.19 -0.81,0.84 -0.66,1.28L3.95,19H4c1.6,0 3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2s3.02,-0.88 4,-2c0.98,1.12 2.4,2 4,2h0.05l1.91,-6.68c0.11,-0.37 0.04,-1.06 -0.66,-1.28L20,10.62V6c0,-1.1 -0.9,-2 -2,-2h-3V1L15,1zM6,9.97V6h12v3.97L12,8L6,9.97L6,9.97zM16,19.68c-1.22,0.85 -2.61,1.28 -4,1.28s-2.78,-0.43 -4,-1.28C6.78,20.53 5.39,21 4,21H2v2h2c1.38,0 2.74,-0.35 4,-0.99c1.26,0.64 2.63,0.97 4,0.97s2.74,-0.32 4,-0.97c1.26,0.65 2.62,0.99 4,0.99h2v-2h-2C18.61,21 17.22,20.53 16,19.68L16,19.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_bus.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_bus.xml
deleted file mode 100644
index 7cc9316..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_bus.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.37,17l0.29,-0.27c0.13,-0.11 0.34,-0.36 0.34,-0.73v-4L6,12v4c0,0.37 0.21,0.62 0.34,0.73l0.29,0.27h10.74zM8.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.67,13 8.5,13s1.5,0.67 1.5,1.5S9.33,16 8.5,16zM14,14.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5zM12,4c-3.69,0 -5.11,0.46 -5.66,0.99h11.31C17.11,4.46 15.69,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,21h1c0.55,0 1,-0.45 1,-1v-1.78c0.61,-0.55 1,-1.34 1,-2.22V6c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10c0,0.88 0.39,1.67 1,2.22V20c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1zM12,4c3.69,0 5.11,0.46 5.66,0.99H6.34C6.89,4.46 8.31,4 12,4zM6,6.99h12V10H6V6.99zM8,17H6.63l-0.29,-0.27C6.21,16.62 6,16.37 6,16v-4h12v4c0,0.37 -0.21,0.62 -0.34,0.73l-0.29,0.27H8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_bus_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_bus_filled.xml
deleted file mode 100644
index fb13bcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_bus_filled.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-3H6V15zM15.5,13c0.83,0 1.5,0.67 1.5,1.5S16.33,16 15.5,16S14,15.33 14,14.5S14.67,13 15.5,13zM8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16S7,15.33 7,14.5S7.67,13 8.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C8.48,4 7.03,4.48 6.43,5h11.24C17.13,4.46 15.71,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5c0,0.95 0.38,1.81 1,2.44V20c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h8v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-2.06c0.62,-0.63 1,-1.49 1,-2.44V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H6.43C7.03,4.48 8.48,4 12,4zM18,15c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2v-3h12V15zM18,10H6V7h12V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_car.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_car.xml
deleted file mode 100644
index 121ca5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_car.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h14v-5L5,12v5zM16.5,13c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM7.5,13c0.83,0 1.5,0.67 1.5,1.5S8.33,16 7.5,16 6,15.33 6,14.5 6.67,13 7.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,7h10.29l1.08,3.11H5.77L6.85,7zM19,17H5v-5h14v5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_car_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_car_filled.xml
deleted file mode 100644
index 6491710..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_car_filled.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h14v-5H5V17zM16.5,13c0.83,0 1.5,0.67 1.5,1.5S17.33,16 16.5,16S15,15.33 15,14.5S15.67,13 16.5,13zM7.5,13C8.33,13 9,13.67 9,14.5S8.33,16 7.5,16S6,15.33 6,14.5S6.67,13 7.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11C5.84,5 5.29,5.42 5.08,6.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,6.01zM6.85,7h10.29l1.04,3H5.81L6.85,7zM19,17H5v-5h14V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_off.xml
deleted file mode 100644
index 47ce7b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,11.29l-9,-9c-0.39,-0.39 -1.02,-0.39 -1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09,-3.09C22.1,12.33 22.1,11.7 21.71,11.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.5l0,2.67l2.17,2.17l1.33,-1.34z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39 -0.39,1.02 0,1.41l9,9c0.39,0.39 1.02,0.39 1.41,0l3.09,-3.09l3.99,3.99l1.41,-1.41L2.81,2.81L1.39,4.22zM8.03,10.85C8.02,10.9 7.99,10.95 7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38,-2.38L8.03,10.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_railway.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_railway.xml
deleted file mode 100644
index ec280ea6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_railway.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15.5c0,0.83 0.67,1.5 1.5,1.5h9c0.83,0 1.5,-0.67 1.5,-1.5L18,12L6,12v3.5zM12,12.5c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM12,3C6,3 6,4.2 6,5h12c0,-0.8 0,-2 -6,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5L20,5c0,-3.5 -3.58,-4 -8,-4s-8,0.5 -8,4v10.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12h12v3.5zM18,10L6,10L6,7h12v3zM6,5c0,-0.8 0,-2 6,-2s6,1.2 6,2L6,5zM12,16.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_railway_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_railway_filled.xml
deleted file mode 100644
index b1c6cb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_railway_filled.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15.5C6,16.33 6.67,17 7.5,17h9c0.83,0 1.5,-0.67 1.5,-1.5V12H6V15.5zM12,13c0.83,0 1.5,0.67 1.5,1.5S12.83,16 12,16s-1.5,-0.67 -1.5,-1.5S11.17,13 12,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C8.48,4 7.03,4.48 6.43,5h11.24C17.13,4.46 15.71,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H6.43C7.03,4.48 8.48,4 12,4zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C6.67,17 6,16.33 6,15.5V12h12V15.5zM18,10H6V7h12V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_run.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_run.xml
deleted file mode 100644
index 9a5eac7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_run.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.49,3.48c0,1.1 0.9,2 2,2s2,-0.9 2,-2 -0.9,-2 -2,-2 -2,0.9 -2,2zM10.89,14.98l2.1,2v6h2v-7.5l-2.1,-2 0.6,-3c1.3,1.5 3.3,2.5 5.5,2.5v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.4,-0.6 -1,-1 -1.7,-1 -0.3,0 -0.5,0.1 -0.8,0.1l-5.2,2.2v4.7h2v-3.4l1.8,-0.7 -1.6,8.1 -4.9,-1 -0.4,2 7,1.4 1,-4.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_subway.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_subway.xml
deleted file mode 100644
index 92d4916..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_subway.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-3.51,0 -4.96,0.48 -5.57,1h11.23c-0.54,-0.54 -1.95,-1 -5.66,-1zM6,15.5c0,0.83 0.67,1.5 1.5,1.5h9c0.83,0 1.5,-0.67 1.5,-1.5L18,12L6,12v3.5zM15.5,13c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16 7,15.33 7,14.5 7.67,13 8.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4zM12,4c3.71,0 5.12,0.46 5.66,1L6.43,5c0.61,-0.52 2.06,-1 5.57,-1zM6,7h5v3L6,10L6,7zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12h12v3.5zM18,10h-5L13,7h5v3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_subway_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_subway_filled.xml
deleted file mode 100644
index 9930490..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_subway_filled.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5h4.67C17.13,4.46 15.71,4 12,4C8.48,4 7.03,4.48 6.43,5H11H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15.5C6,16.33 6.67,17 7.5,17h9c0.83,0 1.5,-0.67 1.5,-1.5V12H6V15.5zM15.5,13c0.83,0 1.5,0.67 1.5,1.5S16.33,16 15.5,16S14,15.33 14,14.5S14.67,13 15.5,13zM8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16S7,15.33 7,14.5S7.67,13 8.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H13h-2H6.43C7.03,4.48 8.48,4 12,4zM6,7h5v3H6V7zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C6.67,17 6,16.33 6,15.5V12h12V15.5zM18,10h-5V7h5V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_transit.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_transit.xml
deleted file mode 100644
index a4dceb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_transit.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-3.51,0 -4.96,0.48 -5.57,1h11.23c-0.54,-0.54 -1.95,-1 -5.66,-1zM7.5,17h9c0.83,0 1.5,-0.67 1.5,-1.5L18,12L6,12v3.5c0,0.83 0.67,1.5 1.5,1.5zM15.5,13c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16 7,15.33 7,14.5 7.67,13 8.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h12v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -3.58,-4 -8,-4 -4,0 -8,0.5 -8,4zM18,10h-5L13,7h5v3zM12,4c3.71,0 5.12,0.46 5.66,1L6.43,5c0.61,-0.52 2.06,-1 5.57,-1zM6,7h5v3L6,10L6,7zM6,12h12v3.5c0,0.83 -0.67,1.5 -1.5,1.5h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_transit_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_transit_filled.xml
deleted file mode 100644
index 9930490..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_transit_filled.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5h4.67C17.13,4.46 15.71,4 12,4C8.48,4 7.03,4.48 6.43,5H11H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15.5C6,16.33 6.67,17 7.5,17h9c0.83,0 1.5,-0.67 1.5,-1.5V12H6V15.5zM15.5,13c0.83,0 1.5,0.67 1.5,1.5S16.33,16 15.5,16S14,15.33 14,14.5S14.67,13 15.5,13zM8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16S7,15.33 7,14.5S7.67,13 8.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8,2 4,2.5 4,6v9.5C4,17.43 5.57,19 7.5,19L6,20v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V6C20,2.5 16.42,2 12,2zM12,4c3.71,0 5.13,0.46 5.67,1H13h-2H6.43C7.03,4.48 8.48,4 12,4zM6,7h5v3H6V7zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C6.67,17 6,16.33 6,15.5V12h12V15.5zM18,10h-5V7h5V10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/directions_walk.xml b/compose/material/material/icons/generator/raw-icons/twotone/directions_walk.xml
deleted file mode 100644
index 4bbabfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/directions_walk.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.8,8.9L7,23h2.1l1.8,-8 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L6,8.3V13h2V9.6l1.8,-0.7"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dirty_lens.xml b/compose/material/material/icons/generator/raw-icons/twotone/dirty_lens.xml
deleted file mode 100644
index 935d964..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dirty_lens.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,5H9.88L8.05,7H4v12h7.27c0.14,-0.98 0.42,-2.05 -0.16,-2.43c-0.89,-0.59 -1.27,2.06 -2.8,1.35c-1.39,-1.12 1.05,-1.29 0.5,-3.27c-0.22,-0.79 -2.28,0.36 -2.4,-1.24c-0.08,-1 1.49,-0.74 1.51,-1.49c0.03,-0.75 -1.03,-1.05 -0.25,-1.91c0.22,-0.24 0.71,-0.26 0.91,-0.19c0.79,0.27 1.55,1.82 2.51,1.19c1.03,-0.66 -1.88,-2.35 0,-2.86c1.64,-0.44 1.31,2.08 2.65,2.44c1.94,0.52 2.65,-4.55 4.41,-2.33c1.85,2.33 -3.43,2.27 -2.85,4.01c0.34,1.01 2.15,-1.2 2.76,0.53c0.64,1.83 -3.09,0.82 -3.04,1.66c0.06,0.83 2.41,0.55 1.64,2.12c-1.14,1.86 -3,-1.03 -3.81,0.09c-0.39,0.57 -0.09,1.49 0.13,2.33H20V7h-4.05L14.12,5zM19,17.15c0,0.48 -0.38,0.86 -0.86,0.86c-0.47,0 -0.86,-0.38 -0.86,-0.86s0.38,-0.86 0.86,-0.86C18.61,16.29 19,16.67 19,17.15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19h-7.02c-0.22,-0.84 -0.52,-1.76 -0.13,-2.33c0.81,-1.12 2.67,1.77 3.81,-0.09c0.77,-1.57 -1.58,-1.29 -1.64,-2.12c-0.05,-0.84 3.68,0.17 3.04,-1.66c-0.61,-1.73 -2.42,0.48 -2.76,-0.53c-0.58,-1.74 4.7,-1.68 2.85,-4.01c-1.76,-2.22 -2.47,2.85 -4.41,2.33c-1.34,-0.36 -1.01,-2.88 -2.65,-2.44c-1.88,0.51 1.03,2.2 0,2.86c-0.96,0.63 -1.72,-0.92 -2.51,-1.19c-0.2,-0.07 -0.69,-0.05 -0.91,0.19c-0.78,0.86 0.28,1.16 0.25,1.91c-0.02,0.75 -1.59,0.49 -1.51,1.49c0.12,1.6 2.18,0.45 2.4,1.24c0.55,1.98 -1.89,2.15 -0.5,3.27c1.53,0.71 1.91,-1.94 2.8,-1.35c0.58,0.38 0.3,1.45 0.16,2.43H4V7h4.05l1.83,-2h4.24l1.83,2H20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.28,17.15c0,0.48 0.39,0.86 0.86,0.86c0.48,0 0.86,-0.38 0.86,-0.86s-0.39,-0.86 -0.86,-0.86C17.66,16.29 17.28,16.67 17.28,17.15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/disabled_by_default.xml b/compose/material/material/icons/generator/raw-icons/twotone/disabled_by_default.xml
deleted file mode 100644
index af61a3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/disabled_by_default.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14V5H5zM17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12L17,15.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14V19zM3,3v18h18V3H3zM17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12L17,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/disabled_visible.xml b/compose/material/material/icons/generator/raw-icons/twotone/disabled_visible.xml
deleted file mode 100644
index 7f21767..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/disabled_visible.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15c-1.95,0 -3.76,0.98 -4.75,2.5C13.24,19.02 15.05,20 17,20s3.76,-0.98 4.75,-2.5C20.76,15.98 18.95,15 17,15zM17,19c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C18.5,18.33 17.83,19 17,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15c1.95,0 3.76,0.98 4.75,2.5C20.76,19.02 18.95,20 17,20s-3.76,-0.98 -4.75,-2.5C13.24,15.98 15.05,15 17,15zM17,13c-3.18,0 -5.9,1.87 -7,4.5c1.1,2.63 3.82,4.5 7,4.5s5.9,-1.87 7,-4.5C22.9,14.87 20.18,13 17,13zM17,19c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.17,16 17,16s1.5,0.67 1.5,1.5S17.83,19 17,19zM21.99,12.34C22,12.23 22,12.11 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,5.17 3.93,9.43 8.96,9.95c-0.93,-0.73 -1.72,-1.64 -2.32,-2.68C5.9,18 4,15.22 4,12c0,-1.85 0.63,-3.55 1.69,-4.9l5.66,5.66c0.56,-0.4 1.17,-0.73 1.82,-1L7.1,5.69C8.45,4.63 10.15,4 12,4c4.24,0 7.7,3.29 7.98,7.45C20.69,11.67 21.37,11.97 21.99,12.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/disc_full.xml b/compose/material/material/icons/generator/raw-icons/twotone/disc_full.xml
deleted file mode 100644
index 97e4d59..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/disc_full.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM10,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14h2v2h-2zM10,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM10,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM20,7h2v5h-2zM10,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/discount.xml b/compose/material/material/icons/generator/raw-icons/twotone/discount.xml
deleted file mode 100644
index e0f4f22..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/discount.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.79L11.21,2H5v6.21L12.79,16L19,9.79zM7.25,5.5C6.56,5.5 6,4.94 6,4.25S6.56,3 7.25,3S8.5,3.56 8.5,4.25S7.94,5.5 7.25,5.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.79,21L3,11.21v2c0,0.53 0.21,1.04 0.59,1.41l7.79,7.79c0.78,0.78 2.05,0.78 2.83,0l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83L12.79,21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.38,17.41c0.39,0.39 0.9,0.59 1.41,0.59c0.51,0 1.02,-0.2 1.41,-0.59l6.21,-6.21c0.78,-0.78 0.78,-2.05 0,-2.83l-7.79,-7.79C12.25,0.21 11.74,0 11.21,0H5C3.9,0 3,0.9 3,2v6.21c0,0.53 0.21,1.04 0.59,1.41L11.38,17.41zM5,2h6.21L19,9.79L12.79,16L5,8.21V2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,4.25m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/display_settings.xml b/compose/material/material/icons/generator/raw-icons/twotone/display_settings.xml
deleted file mode 100644
index 541af3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/display_settings.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h16V5H4V17zM18,13.75h-8v-1.5h8V13.75zM15,7h1.5v1.25H18v1.5h-1.5V11H15V7zM6,8.25h8v1.5H6V8.25zM6,12.25h1.5V11H9v4H7.5v-1.25H6V12.25z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9.75l1.5,0l0,-1.5l-1.5,0l0,-1.25l-1.5,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.25h8v1.5h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,15l1.5,0l0,-4l-1.5,0l0,1.25l-1.5,0l0,1.5l1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/diversity_1.xml b/compose/material/material/icons/generator/raw-icons/twotone/diversity_1.xml
deleted file mode 100644
index 0579e9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/diversity_1.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,17.58C0.48,17.9 0,18.62 0,19.43V21l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,17.04 4.39,17 4,17C3.01,17 2.07,17.21 1.22,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,17.58C21.93,17.21 20.99,17 20,17c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V21l4.5,0v-1.57C24,18.62 23.52,17.9 22.78,17.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,16.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,17.13 6,18.21 6,19.39V21h12v-1.61C18,18.21 17.32,17.13 16.24,16.65zM8.07,19c0.09,-0.23 0.27,-0.42 0.49,-0.52c1.1,-0.49 2.26,-0.73 3.43,-0.73c1.18,0 2.33,0.25 3.43,0.73c0.23,0.1 0.4,0.29 0.49,0.52H8.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,10.34 9,12zM13,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,11.45 13,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.48,10.86C2.17,10.1 2,9.36 2,8.6C2,6.02 4.02,4 6.6,4c2.68,0 3.82,1.74 5.4,3.59C13.57,5.76 14.7,4 17.4,4C19.98,4 22,6.02 22,8.6c0,0.76 -0.17,1.5 -0.48,2.26c0.65,0.31 1.18,0.82 1.53,1.44C23.65,11.1 24,9.88 24,8.6C24,4.9 21.1,2 17.4,2c-2.09,0 -4.09,0.97 -5.4,2.51C10.69,2.97 8.69,2 6.6,2C2.9,2 0,4.9 0,8.6c0,1.28 0.35,2.5 0.96,3.7C1.31,11.68 1.84,11.17 2.48,10.86z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.4,4c-2.68,0 -3.82,1.74 -5.4,3.59C10.44,5.75 9.3,4 6.6,4C4.02,4 2,6.02 2,8.6c0,0.76 0.17,1.5 0.48,2.26C2.94,10.64 3.45,10.5 4,10.5c1.93,0 3.5,1.57 3.5,3.5c0,0.45 -0.09,0.87 -0.24,1.26c0.97,-0.42 1.96,-0.69 2.98,-0.84C9.49,13.87 9,13 9,12c0,-1.66 1.34,-3 3,-3c1.66,0 3,1.34 3,3c0,1 -0.49,1.87 -1.24,2.42c1.02,0.15 2.02,0.43 2.98,0.85c-0.15,-0.39 -0.24,-0.82 -0.24,-1.26c0,-1.93 1.57,-3.5 3.5,-3.5c0.55,0 1.06,0.14 1.52,0.36C21.83,10.1 22,9.36 22,8.6C22,6.02 19.98,4 17.4,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.07,19.02h7.85c-0.09,-0.23 -0.27,-0.42 -0.49,-0.52c-1.1,-0.49 -2.26,-0.73 -3.43,-0.73c-1.18,0 -2.33,0.25 -3.43,0.73C8.34,18.6 8.17,18.79 8.07,19.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/diversity_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/diversity_2.xml
deleted file mode 100644
index 68dea66..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/diversity_2.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,17.97c-0.48,0.28 -0.64,0.89 -0.37,1.37s0.89,0.64 1.37,0.37c0.48,-0.28 0.64,-0.89 0.37,-1.37S2.98,17.69 2.5,17.97z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,17.97c-0.48,-0.28 -1.09,-0.11 -1.37,0.37s-0.11,1.09 0.37,1.37c0.48,0.28 1.09,0.11 1.37,-0.37S21.98,18.24 21.5,17.97z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,15.9l1.42,-1.42C8.79,12.05 7,10.41 7,8.85C7,7.8 7.8,7 8.85,7c1.11,0 1.54,0.65 2.68,2h0.93c1.12,-1.31 1.53,-2 2.68,-2c0.87,0 1.55,0.54 1.77,1.32c0.35,-0.04 0.68,-0.06 1,-0.06c0.36,0 0.7,0.03 1.03,0.08C18.7,6.43 17.13,5 15.15,5c-0.12,0 -0.23,0.03 -0.35,0.04C14.92,4.71 15,4.37 15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4c0,0.37 0.08,0.71 0.2,1.04C9.08,5.03 8.97,5 8.85,5C6.69,5 5,6.69 5,8.85C5,11.27 7.04,13.16 10.1,15.9zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.24c-0.32,-0.18 -0.66,-0.29 -1,-0.35c0.07,-0.1 0.15,-0.18 0.21,-0.28c1.08,-1.87 0.46,-4.18 -1.41,-5.26c-2.09,-1.21 -4.76,-0.39 -8.65,0.9l0.52,1.94c3.47,-1.14 5.79,-1.88 7.14,-1.1c0.91,0.53 1.2,1.61 0.68,2.53c-0.56,0.96 -1.33,1 -3.07,1.32l-0.47,0.81c0.58,1.62 0.97,2.33 0.39,3.32c-0.53,0.91 -1.61,1.2 -2.53,0.68c-0.06,-0.03 -0.11,-0.09 -0.17,-0.13c-0.3,0.67 -0.64,1.24 -1.03,1.73c0.07,0.04 0.13,0.09 0.2,0.14c1.87,1.08 4.18,0.46 5.26,-1.41c0.06,-0.1 0.09,-0.21 0.14,-0.32c0.22,0.27 0.48,0.51 0.8,0.69c1.43,0.83 3.27,0.34 4.1,-1.1S23.93,17.06 22.5,16.24zM21.87,19.33c-0.28,0.48 -0.89,0.64 -1.37,0.37c-0.48,-0.28 -0.64,-0.89 -0.37,-1.37s0.89,-0.64 1.37,-0.37C21.98,18.24 22.14,18.86 21.87,19.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.32,14.01c-0.74,3.58 -1.27,5.95 -2.62,6.73c-0.91,0.53 -2,0.24 -2.53,-0.68c-0.56,-0.96 -0.2,-1.66 0.39,-3.32L7.1,15.93c-1.7,-0.31 -2.5,-0.33 -3.07,-1.32c-0.53,-0.91 -0.24,-2 0.68,-2.53c0.09,-0.05 0.19,-0.08 0.29,-0.11c-0.35,-0.56 -0.64,-1.17 -0.82,-1.85c-0.16,0.07 -0.32,0.14 -0.48,0.23c-1.87,1.08 -2.49,3.39 -1.41,5.26c0.06,0.1 0.14,0.18 0.21,0.28c-0.34,0.06 -0.68,0.17 -1,0.35c-1.43,0.83 -1.93,2.66 -1.1,4.1s2.66,1.93 4.1,1.1c0.32,-0.18 0.58,-0.42 0.8,-0.69c0.05,0.11 0.08,0.22 0.14,0.32c1.08,1.87 3.39,2.49 5.26,1.41c2.09,-1.21 2.71,-3.93 3.55,-7.94L12.32,14.01zM3.5,19.7c-0.48,0.28 -1.09,0.11 -1.37,-0.37s-0.11,-1.09 0.37,-1.37c0.48,-0.28 1.09,-0.11 1.37,0.37S3.98,19.42 3.5,19.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/diversity_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/diversity_3.xml
deleted file mode 100644
index bb41d74..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/diversity_3.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.32,13.01c0.96,0.02 1.85,0.5 2.45,1.34C9.5,15.38 10.71,16 12,16c1.29,0 2.5,-0.62 3.23,-1.66c0.6,-0.84 1.49,-1.32 2.45,-1.34C16.96,11.78 14.08,11 12,11C9.93,11 7.04,11.78 6.32,13.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13L4,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C1,11.66 2.34,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13L20,13c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C17,11.66 18.34,13 20,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,5.34 9,7C9,8.66 10.34,10 12,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-3.27c-0.77,0 -1.35,0.45 -1.68,0.92C16.01,14.98 14.69,17 12,17c-1.43,0 -3.03,-0.64 -4.05,-2.08C7.56,14.37 6.95,14 6.27,14H3c-1.1,0 -2,0.9 -2,2v4h7v-2.26c1.15,0.8 2.54,1.26 4,1.26s2.85,-0.46 4,-1.26V20h7v-4C23,14.9 22.1,14 21,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dns.xml b/compose/material/material/icons/generator/raw-icons/twotone/dns.xml
deleted file mode 100644
index 3d6b8eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dns.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9h14L19,5L5,5v4zM7,5.5c0.83,0 1.5,0.67 1.5,1.5S7.83,8.5 7,8.5 5.5,7.83 5.5,7 6.17,5.5 7,5.5zM5,19h14v-4L5,15v4zM7,15.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13L4,13c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1zM19,19L5,19v-4h14v4zM7,18.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM20,3L4,3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h16c0.55,0 1,-0.45 1,-1L21,4c0,-0.55 -0.45,-1 -1,-1zM19,9L5,9L5,5h14v4zM7,8.5c0.83,0 1.5,-0.67 1.5,-1.5S7.83,5.5 7,5.5 5.5,6.17 5.5,7 6.17,8.5 7,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_disturb.xml
deleted file mode 100644
index b5c518b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_alt.xml
deleted file mode 100644
index 3354d6e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8 1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12c0,4.4 -3.6,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_off.xml
deleted file mode 100644
index 2646bdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-1.41,0 -2.73,0.37 -3.88,1.01l6,5.99L17,11v2h-0.88L19,15.88c0.63,-1.15 1,-2.47 1,-3.88 0,-4.41 -3.59,-8 -8,-8zM12,20c1.56,0 3,-0.45 4.23,-1.23L10.46,13L7,13v-2h1.46L5.23,7.77C4.45,9 4,10.44 4,12c0,4.41 3.59,8 8,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8 0,1.41 -0.37,2.73 -1.01,3.88l1.46,1.46C21.43,15.79 22,13.96 22,12c0,-5.52 -4.48,-10 -10,-10 -1.96,0 -3.79,0.57 -5.33,1.55l1.46,1.46C9.27,4.37 10.59,4 12,4zM17,11h-2.88l2,2L17,13zM2.41,2.13L1,3.54l2.78,2.78C2.66,7.93 2,9.89 2,12c0,5.52 4.48,10 10,10 2.11,0 4.07,-0.66 5.68,-1.78L20.46,23l1.41,-1.41L2.41,2.13zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-1.56 0.45,-3 1.23,-4.23L8.46,11L7,11v2h3.46l5.77,5.77C15,19.55 13.56,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_on.xml
deleted file mode 100644
index b1f51c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_disturb_on.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM17,13L7,13v-2h10v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM7,11h10v2L7,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb.xml
deleted file mode 100644
index cb2d8a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-1.85 0.63,-3.55 1.69,-4.9L16.9,18.31C15.55,19.37 13.85,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.55 18.31,16.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_alt.xml
deleted file mode 100644
index 16a9b46..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM4,12c0,-4.4 3.6,-8 8,-8c1.8,0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4,13.8 4,12zM12,20c-1.8,0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20,10.2 20,12C20,16.4 16.4,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_off.xml
deleted file mode 100644
index 9e1352c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13v-2h1.17L5.12,7.94C4.41,9.14 4,10.52 4,12c0,4.41 3.59,8 8,8c1.48,0 2.86,-0.41 4.06,-1.12L10.17,13H7zM12,4c-1.48,0 -2.86,0.41 -4.06,1.12L13.83,11H17v2h-1.17l3.06,3.06C19.59,14.86 20,13.48 20,12C20,7.59 16.41,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8c0,1.48 -0.41,2.86 -1.12,4.06l1.46,1.46C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66l1.46,1.46C9.14,4.41 10.52,4 12,4zM17,13v-2h-3.17l2,2H17zM1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81L1.39,4.22zM5.12,7.94L8.17,11H7v2h3.17l5.88,5.88C14.86,19.59 13.48,20 12,20c-4.41,0 -8,-3.59 -8,-8C4,10.52 4.41,9.14 5.12,7.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_on.xml
deleted file mode 100644
index 5728a56..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_on.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM17,13H7v-2h10V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h10v2h-10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_on_total_silence.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_on_total_silence.xml
deleted file mode 100644
index 1bfaa5a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_not_disturb_on_total_silence.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM12,6c-3.3,0 -6,2.7 -6,6s2.7,6 6,6s6,-2.7 6,-6S15.4,6 12,6zM15,13H9v-2h6V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_not_step.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_not_step.xml
deleted file mode 100644
index 7f87ece..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_not_step.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.98,12.15M14.98,12.15l3.07,-3.07L13.8,4.82l-3.08,3.07L14.98,12.15zM12.42,15.26l-1.67,-1.68L7.42,16.9c-0.78,0.78 -2.05,0.78 -2.83,-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14 -0.59,0.27 -0.89,0.39L3.03,18h6.64L12.42,15.26z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.51,15.68l-1.41,-1.41l4.48,-4.48L23,11.2L18.51,15.68zM14.98,12.15M14.98,12.15l3.07,-3.07L13.8,4.82l-3.08,3.07L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15zM21.18,21.2l-1.41,1.41l-5.94,-5.94L10.5,20H1v-2.63c0,-0.84 0.52,-1.57 1.3,-1.88c0.58,-0.23 1.28,-0.56 1.97,-1.02l1.38,1.38C5.74,15.95 5.87,16 6,16s0.26,-0.05 0.36,-0.15c0.2,-0.2 0.2,-0.51 0,-0.71l-1.28,-1.28c0.27,-0.24 0.53,-0.51 0.77,-0.8l1.27,1.27c0.09,0.1 0.23,0.15 0.35,0.15s0.25,-0.05 0.35,-0.15c0.2,-0.2 0.2,-0.51 0,-0.71l-1.4,-1.4c0.19,-0.34 0.34,-0.72 0.45,-1.12l1.71,1.72c0.09,0.1 0.23,0.15 0.35,0.15s0.25,-0.05 0.35,-0.15c0.19,-0.2 0.19,-0.5 0.01,-0.7l-7.9,-7.9l1.42,-1.41L21.18,21.2zM12.42,15.26l-1.67,-1.68L7.42,16.9c-0.78,0.78 -2.05,0.78 -2.83,-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14 -0.59,0.27 -0.89,0.39L3.03,18h6.64L12.42,15.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/do_not_touch.xml b/compose/material/material/icons/generator/raw-icons/twotone/do_not_touch.xml
deleted file mode 100644
index aea444b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/do_not_touch.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,15.17V13h-2.17L18,15.17zM9,11.83l8.14,8.14C17.09,19.98 17.05,20 17,20h-6c-0.39,0 -0.64,-0.23 -0.75,-0.36L6.87,16H9L9,11.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6,-1.48c-0.17,-0.09 -0.34,-0.14 -0.54,-0.14c-0.26,0 -0.5,0.09 -0.7,0.26L2,13.88l6.8,7.18c0.57,0.6 1.35,0.94 2.18,0.94H17c0.62,0 1.18,-0.19 1.66,-0.52l1.12,1.12l1.41,-1.41L2.81,2.81zM17,20h-6c-0.39,0 -0.64,-0.23 -0.75,-0.36L6.87,16H9l0,-4.17l8.14,8.14C17.09,19.98 17.05,20 17,20zM13.83,11H14V3.25C14,2.56 14.56,2 15.25,2s1.25,0.56 1.25,1.25V11h1V5.25C17.5,4.56 18.06,4 18.75,4S20,4.56 20,5.25v11.92l-2,-2V13h-2.17L13.83,11zM13,10.17V2.25C13,1.56 12.44,1 11.75,1S10.5,1.56 10.5,2.25v5.42L13,10.17zM9.5,6.67V4.25C9.5,3.56 8.94,3 8.25,3c-0.67,0 -1.2,0.53 -1.24,1.18v0L9.5,6.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dock.xml b/compose/material/material/icons/generator/raw-icons/twotone/dock.xml
deleted file mode 100644
index dad6a8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dock.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5h8v10H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,21h8v2L8,23zM16,1.01L8,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,3c0,-1.1 -0.9,-1.99 -2,-1.99zM16,15L8,15L8,5h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/document_scanner.xml b/compose/material/material/icons/generator/raw-icons/twotone/document_scanner.xml
deleted file mode 100644
index a1fcfdf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/document_scanner.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6v12h10V6H7zM15,16H9v-2h6V16zM15,13H9v-2h6V13zM15,10H9V8h6V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3H4v3H2V1h5V3zM22,6V1h-5v2h3v3H22zM7,21H4v-3H2v5h5V21zM20,18v3h-3v2h5v-5H20zM17,6H7v12h10V6zM19,18c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2V18zM15,8H9v2h6V8zM15,11H9v2h6V11zM15,14H9v2h6V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/domain.xml b/compose/material/material/icons/generator/raw-icons/twotone/domain.xml
deleted file mode 100644
index fd8d823..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/domain.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11h2v2h-2v2h2v2h-2v2h8L20,9h-8v2zM16,11h2v2h-2v-2zM16,15h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7L12,3L2,3v18h20L22,7L12,7zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM6,11L4,11L4,9h2v2zM6,7L4,7L4,5h2v2zM10,19L8,19v-2h2v2zM10,15L8,15v-2h2v2zM10,11L8,11L8,9h2v2zM10,7L8,7L8,5h2v2zM20,19h-8v-2h2v-2h-2v-2h2v-2h-2L12,9h8v10zM16,11h2v2h-2zM16,15h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/domain_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/domain_add.xml
deleted file mode 100644
index 7480bc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/domain_add.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9v2h2v2h-2v2h2v2h-2v2h4v-4h4V9H12zM18,13h-2v-2h2V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12zM6,19H4v-2h2V19zM6,15H4v-2h2V15zM6,11H4V9h2V11zM6,7H4V5h2V7zM10,19H8v-2h2V19zM10,15H8v-2h2V15zM10,11H8V9h2V11zM10,7H8V5h2V7zM24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24zM18,11h-2v2h2V11zM18,15h-2v2h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/domain_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/domain_disabled.xml
deleted file mode 100644
index fed7fef..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/domain_disabled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.69L0,3.1l2,2L2,21h15.9l3,3 1.41,-1.41 -20.9,-20.9zM6,19L4,19v-2h2v2zM6,15L4,15v-2h2v2zM4,11L4,9h2v2L4,11zM10,19L8,19v-2h2v2zM8,15v-2h2v2L8,15zM12,19v-2h1.9l2,2L12,19zM8,5h2v2h-0.45L12,9.45L12,9h8v8.45l2,2L22,7L12,7L12,3L5.55,3L8,5.45zM16,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9v0.45l8,8L20,9h-8zM18,13h-2v-2h2v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/domain_verification.xml b/compose/material/material/icons/generator/raw-icons/twotone/domain_verification.xml
deleted file mode 100644
index 845ab57..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/domain_verification.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14V8H5V18zM8.82,11.58l2.12,2.12l4.24,-4.24l1.41,1.41l-5.66,5.66L7.4,13L8.82,11.58z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,10.88l-1.42,-1.42l-4.24,4.25l-2.12,-2.13l-1.42,1.42l3.54,3.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4H5C3.89,4 3,4.9 3,6v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V6C21,4.9 20.11,4 19,4zM19,18H5V8h14V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/done.xml b/compose/material/material/icons/generator/raw-icons/twotone/done.xml
deleted file mode 100644
index 899cbb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/done_all.xml b/compose/material/material/icons/generator/raw-icons/twotone/done_all.xml
deleted file mode 100644
index 648f00d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/done_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7l-1.41,-1.41 -6.34,6.34 1.41,1.41L18,7zM22.24,5.59L11.66,16.17 7.48,12l-1.41,1.41L11.66,19l12,-12 -1.42,-1.41zM0.41,13.41L6,19l1.41,-1.41L1.83,12 0.41,13.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/done_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/done_outline.xml
deleted file mode 100644
index 2a7b063..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/done_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.77,4.93l1.4,1.4L8.43,19.07l-5.6,-5.6 1.4,-1.4 4.2,4.2L19.77,4.93m0,-2.83L8.43,13.44l-4.2,-4.2L0,13.47l8.43,8.43L24,6.33 19.77,2.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/donut_large.xml b/compose/material/material/icons/generator/raw-icons/twotone/donut_large.xml
deleted file mode 100644
index ea91fcb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/donut_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.08c3.06,0.44 5.48,2.86 5.92,5.92h3.03c-0.47,-4.72 -4.23,-8.48 -8.95,-8.95v3.03zM18.92,13c-0.44,3.06 -2.86,5.48 -5.92,5.92v3.03c4.72,-0.47 8.48,-4.23 8.95,-8.95h-3.03zM11,18.92c-3.39,-0.49 -6,-3.4 -6,-6.92s2.61,-6.43 6,-6.92V2.05c-5.05,0.5 -9,4.76 -9,9.95 0,5.19 3.95,9.45 9,9.95v-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/donut_small.xml b/compose/material/material/icons/generator/raw-icons/twotone/donut_small.xml
deleted file mode 100644
index e30a92f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/donut_small.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.99,9h3.43C18.6,7 17,5.4 15,4.58v3.43c0.37,0.28 0.71,0.62 0.99,0.99zM4,12c0,3.35 2.04,6.24 5,7.42v-3.44c-1.23,-0.93 -2,-2.4 -2,-3.99C7,10.4 7.77,8.93 9,8L9,4.58C6.04,5.76 4,8.65 4,12zM15,15.99v3.43c2,-0.82 3.6,-2.42 4.42,-4.42h-3.43c-0.28,0.37 -0.62,0.71 -0.99,0.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.82,11h7.13c-0.47,-4.72 -4.23,-8.48 -8.95,-8.95v7.13c0.85,0.31 1.51,0.97 1.82,1.82zM15,4.58C17,5.4 18.6,7 19.42,9h-3.43c-0.28,-0.37 -0.62,-0.71 -0.99,-0.99L15,4.58zM2,12c0,5.19 3.95,9.45 9,9.95v-7.13C9.84,14.4 9,13.3 9,12c0,-1.3 0.84,-2.4 2,-2.82L11,2.05c-5.05,0.5 -9,4.76 -9,9.95zM9,4.58v3.44c-1.23,0.92 -2,2.39 -2,3.98 0,1.59 0.77,3.06 2,3.99v3.44C6.04,18.24 4,15.35 4,12c0,-3.35 2.04,-6.24 5,-7.42zM13,14.82v7.13c4.72,-0.47 8.48,-4.23 8.95,-8.95h-7.13c-0.31,0.85 -0.97,1.51 -1.82,1.82zM15,15.99c0.37,-0.28 0.71,-0.61 0.99,-0.99h3.43C18.6,17 17,18.6 15,19.42v-3.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/door_back.xml b/compose/material/material/icons/generator/raw-icons/twotone/door_back.xml
deleted file mode 100644
index 6696fa00..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/door_back.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10V5H7V19zM9,11h2v2H9V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H3v2h18v-2H19zM17,19H7V5h10V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/door_front.xml b/compose/material/material/icons/generator/raw-icons/twotone/door_front.xml
deleted file mode 100644
index 4c2570e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/door_front.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10V5H7V19zM13,11h2v2h-2V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v14H3v2h18v-2H19zM17,19H7V5h10V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/door_sliding.xml b/compose/material/material/icons/generator/raw-icons/twotone/door_sliding.xml
deleted file mode 100644
index b173f38..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/door_sliding.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,19h5V5h-5V19zM14,11h2v2h-2V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h5V5H6V19zM8,11h2v2H8V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V5c0,-1.1 -0.9,-2 -2,-2H6C4.9,3 4,3.9 4,5v14H3v2h18v-2H20zM11,19H6V5h5V19zM18,19h-5V5h5V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/doorbell.xml b/compose/material/material/icons/generator/raw-icons/twotone/doorbell.xml
deleted file mode 100644
index 8d4ad0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/doorbell.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10v9h12v-9l-6,-4.5L6,10zM12,17.5c-0.55,0 -1,-0.45 -1,-1h2C13,17.05 12.55,17.5 12,17.5zM12.75,9.25V9.5C14.19,9.84 15,11.12 15,12.66V15h1v1H8v-1h1v-2.34c0,-1.54 0.82,-2.82 2.25,-3.16V9.25c0,-0.41 0.34,-0.75 0.75,-0.75S12.75,8.84 12.75,9.25z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L4,9v12h16V9L12,3zM18,19H6v-9l6,-4.5l6,4.5V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.25,9.25V9.5C9.82,9.84 9,11.12 9,12.66V15H8v1h8v-1h-1v-2.34c0,-1.54 -0.81,-2.82 -2.25,-3.16V9.25c0,-0.41 -0.34,-0.75 -0.75,-0.75S11.25,8.84 11.25,9.25z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.5c0.55,0 1,-0.45 1,-1h-2C11,17.05 11.45,17.5 12,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/double_arrow.xml b/compose/material/material/icons/generator/raw-icons/twotone/double_arrow.xml
deleted file mode 100644
index f38e6bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/double_arrow.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,5l-4.5,0l5,7l-5,7l4.5,0l5,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/downhill_skiing.xml b/compose/material/material/icons/generator/raw-icons/twotone/downhill_skiing.xml
deleted file mode 100644
index 311a4a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/downhill_skiing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S18.5,3.4 18.5,4.5zM15.78,20.9l0.76,0.27c0.62,0.21 1.27,0.33 1.96,0.33c0.84,0 1.65,-0.18 2.38,-0.5L22,22.13C20.95,22.68 19.76,23 18.5,23c-0.86,0 -1.68,-0.14 -2.45,-0.41L2,17.47l0.5,-1.41l6.9,2.51l1.72,-4.44L7.55,10.4C6.66,9.46 6.88,7.93 8,7.28l3.48,-2.01c1.1,-0.64 2.52,-0.1 2.91,1.11l0.33,1.08c0.44,1.42 1.48,2.57 2.83,3.14L18.07,9l1.43,0.46l-1.12,3.45c-2.45,-0.4 -4.48,-2.07 -5.38,-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1,-6.44h0l0,0c0.46,0.18 0.94,0.31 1.44,0.41L15.78,20.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/download.xml b/compose/material/material/icons/generator/raw-icons/twotone/download.xml
deleted file mode 100644
index 3639516..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/download.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9V5h-2v6H9.83L12,13.17 14.17,11H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9L15,3L9,3v6L5,9l7,7 7,-7h-4zM12,13.17L9.83,11L11,11L11,5h2v6h1.17L12,13.17zM5,18h14v2L5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/download_done.xml b/compose/material/material/icons/generator/raw-icons/twotone/download_done.xml
deleted file mode 100644
index a8299bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/download_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2L5,20v-2zM9.6,15.3L5,10.7l2,-1.9 2.6,2.6L17,4l2,2 -9.4,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/download_for_offline.xml b/compose/material/material/icons/generator/raw-icons/twotone/download_for_offline.xml
deleted file mode 100644
index 528cfaa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/download_for_offline.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM11,10V6h2v4h3l-4,4l-4,-4H11zM17,17H7v-2h10V17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10l-3,0l0,-4l-2,0l0,4l-3,0l4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h10v2h-10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/downloading.xml b/compose/material/material/icons/generator/raw-icons/twotone/downloading.xml
deleted file mode 100644
index 33ee314..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/downloading.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.32,4.26C16.84,3.05 15.01,2.25 13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.32,4.26zM19.93,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1C19.17,8.21 19.75,9.54 19.93,11zM18.31,16.9l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32h-2.02C19.75,14.46 19.17,15.79 18.31,16.9zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43C15.79,19.17 14.46,19.75 13,19.93zM13,12V7h-2v5H7l5,5l5,-5H13zM11,19.93v2.02c-5.05,-0.5 -9,-4.76 -9,-9.95s3.95,-9.45 9,-9.95v2.02C7.05,4.56 4,7.92 4,12S7.05,19.44 11,19.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drafts.xml b/compose/material/material/icons/generator/raw-icons/twotone/drafts.xml
deleted file mode 100644
index cdcfdda..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drafts.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15.36l-8,-5.02V18h16l-0.01,-7.63z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.99,8c0,-0.72 -0.37,-1.35 -0.94,-1.7L12,1 2.95,6.3C2.38,6.65 2,7.28 2,8v10c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2l-0.01,-10zM12,3.32L19.99,8v0.01L12,13 4,8l8,-4.68zM4,18v-7.66l8,5.02 7.99,-4.99L20,18H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drag_handle.xml b/compose/material/material/icons/generator/raw-icons/twotone/drag_handle.xml
deleted file mode 100644
index d85a06e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drag_handle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h16v2L4,11zM4,13h16v2L4,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drag_indicator.xml b/compose/material/material/icons/generator/raw-icons/twotone/drag_indicator.xml
deleted file mode 100644
index 6dcde80..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drag_indicator.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2 0.9,-2 2,-2 2,0.9 2,2zM9,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM9,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM15,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/draw.xml b/compose/material/material/icons/generator/raw-icons/twotone/draw.xml
deleted file mode 100644
index 5a09a34..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/draw.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.61,11.81l-7.2,7.19l-1.41,0l0,-1.41l7.19,-7.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.85,10.39l1.06,-1.06c0.78,-0.78 0.78,-2.05 0,-2.83L18.5,5.09c-0.78,-0.78 -2.05,-0.78 -2.83,0l-1.06,1.06L18.85,10.39zM14.61,11.81L7.41,19H6v-1.41l7.19,-7.19L14.61,11.81zM13.19,7.56L4,16.76V21h4.24l9.19,-9.19L13.19,7.56L13.19,7.56zM19,17.5c0,2.19 -2.54,3.5 -5,3.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1c1.54,0 3,-0.73 3,-1.5c0,-0.47 -0.48,-0.87 -1.23,-1.2l1.48,-1.48C18.32,15.45 19,16.29 19,17.5zM4.58,13.35C3.61,12.79 3,12.06 3,11c0,-1.8 1.89,-2.63 3.56,-3.36C7.59,7.18 9,6.56 9,6c0,-0.41 -0.78,-1 -2,-1C5.74,5 5.2,5.61 5.17,5.64C4.82,6.05 4.19,6.1 3.77,5.76C3.36,5.42 3.28,4.81 3.62,4.38C3.73,4.24 4.76,3 7,3c2.24,0 4,1.32 4,3c0,1.87 -1.93,2.72 -3.64,3.47C6.42,9.88 5,10.5 5,11c0,0.31 0.43,0.6 1.07,0.86L4.58,13.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drive_eta.xml b/compose/material/material/icons/generator/raw-icons/twotone/drive_eta.xml
deleted file mode 100644
index efb02f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drive_eta.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.12,11l-0.12,0.34L5,16h14v-4.66l-0.12,-0.34L5.12,11zM7.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,12 7.5,12s1.5,0.67 1.5,1.5S8.33,15 7.5,15zM16.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,11v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,6h10.29l1.04,3H5.81l1.04,-3zM19,16H5v-4.66l0.12,-0.34h13.77l0.11,0.34V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drive_file_move.xml b/compose/material/material/icons/generator/raw-icons/twotone/drive_file_move.xml
deleted file mode 100644
index 77b0f044..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drive_file_move.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18H4V6h5.17l1.41,1.41L11.17,8H20V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,14l4,0l0,3l4,-4l-4,-4l0,3l-4,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,7.41L9.17,6H4v12h16V8h-8.83L10.59,7.41zM12,9l4,4l-4,4v-3H8v-2h4V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drive_file_move_rtl.xml b/compose/material/material/icons/generator/raw-icons/twotone/drive_file_move_rtl.xml
deleted file mode 100644
index 219e4f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drive_file_move_rtl.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,8l-2,-2H4v12h16V8H11.17zM16,14h-4v3l-4,-4l4,-4v3h4V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18H4V6h5.17l2,2H20V18zM12,17l-4,-4l4,-4v3h4v2h-4V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drive_file_rename_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/drive_file_rename_outline.xml
deleted file mode 100644
index 91f2475..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drive_file_rename_outline.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.06,10.02l-7.06,7.06l0,0.92l0.92,0l7.06,-7.06z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16l-4,4l10,0l0,-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.06,7.19L3,16.25V20h3.75l9.06,-9.06L12.06,7.19zM5.92,18H5v-0.92l7.06,-7.06l0.92,0.92L5.92,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.71,8.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34C16.17,4.09 15.92,4 15.66,4c-0.25,0 -0.51,0.1 -0.7,0.29l-1.83,1.83l3.75,3.75L18.71,8.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/drive_folder_upload.xml b/compose/material/material/icons/generator/raw-icons/twotone/drive_folder_upload.xml
deleted file mode 100644
index 81abb22..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/drive_folder_upload.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,6H4v12l16,0V8h-8.83L9.17,6zM16,13h-3v4h-2v-4H8l4.01,-4L16,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13l0,4l2,0l0,-4l3,0l-3.99,-4l-4.01,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dry.xml b/compose/material/material/icons/generator/raw-icons/twotone/dry.xml
deleted file mode 100644
index 8be06ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dry.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25c0,-0.67 -0.53,-1.2 -1.18,-1.24L8.87,10l1.48,-2.6c0.09,-0.17 0.14,-0.34 0.14,-0.54c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.12,5l-7.18,6.8C1.34,12.36 1,13.15 1,13.97V20c0,1.66 1.34,3 3,3h13.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1H20.75zM10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21zM15.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L14.98,9h1.91l0.06,-0.43C17.16,7.21 16.68,5.86 15.65,4.86zM19.65,4.86l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06c0.57,0.62 0.82,1.41 0.67,2.2L18.98,9h1.91l0.06,-0.43C21.16,7.21 20.68,5.86 19.65,4.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dry_cleaning.xml b/compose/material/material/icons/generator/raw-icons/twotone/dry_cleaning.xml
deleted file mode 100644
index 9c86e7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dry_cleaning.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15h6v5h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.56,11.36L13,8.44V7c0,-0.55 -0.45,-1 -1,-1s-1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h2c0,-1.84 -1.66,-3.3 -3.56,-2.95C10.26,2.27 9.29,3.22 9.06,4.4C8.76,5.96 9.66,7.34 11,7.82v0.63l-6.56,2.92C3.56,11.75 3,12.62 3,13.57v0.01C3,14.92 4.08,16 5.42,16H7v6h10v-6h1.58c1.34,0 2.42,-1.08 2.42,-2.42v-0.01C21,12.62 20.44,11.75 19.56,11.36zM15,20H9v-5h6V20zM18.58,14H17v-1H7v1H5.42c-0.46,0 -0.58,-0.65 -0.17,-0.81l6.75,-3l6.75,3C19.17,13.38 19.03,14 18.58,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/duo.xml b/compose/material/material/icons/generator/raw-icons/twotone/duo.xml
deleted file mode 100644
index acc6429..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/duo.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2h-8C6.38,2 2,6.66 2,12.28 2,17.5 6.49,22 11.72,22 17.39,22 22,17.62 22,12L22,4c0,-1.1 -0.9,-2 -2,-2zM17,15l-3,-2v2L7,15L7,9h7v2l3,-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dvr.xml b/compose/material/material/icons/generator/raw-icons/twotone/dvr.xml
deleted file mode 100644
index 813947b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dvr.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18L21,5L3,5v12zM8,8h11v2L8,10L8,8zM8,12h11v2L8,14v-2zM5,8h2v2L5,10L5,8zM5,12h2v2L5,14v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12h11v2L8,14zM8,8h11v2L8,10zM21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM5,12h2v2L5,14zM5,8h2v2L5,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dynamic_feed.xml b/compose/material/material/icons/generator/raw-icons/twotone/dynamic_feed.xml
deleted file mode 100644
index bdaab4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dynamic_feed.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7h8v4h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8H6v7c0,1.1 0.9,2 2,2h9v-2H8V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3h-8c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,11h-8V7h8V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12H2v7c0,1.1 0.9,2 2,2h9v-2H4V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/dynamic_form.xml b/compose/material/material/icons/generator/raw-icons/twotone/dynamic_form.xml
deleted file mode 100644
index ea2eab2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/dynamic_form.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h7V6H4V9zM4,18h9v-3H4V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h9V11zM4,9h7V6H4V9zM15,20H4c-1.1,0 -2,-0.9 -2,-2v-3c0,-1.1 0.9,-2 2,-2h11V20zM4,18h9v-3H4V18zM22,9h-2l2,-5h-7v7h2v9L22,9zM4.75,17.25h1.5v-1.5h-1.5V17.25zM4.75,8.25h1.5v-1.5h-1.5V8.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/e_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/e_mobiledata.xml
deleted file mode 100644
index 724ce8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/e_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/earbuds.xml b/compose/material/material/icons/generator/raw-icons/twotone/earbuds.xml
deleted file mode 100644
index c0bbd87..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/earbuds.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6c0,-0.55 -0.45,-1 -1,-1S5,5.45 5,6v1h1C6.55,7 7,6.55 7,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-1h-1C17.45,17 17,17.45 17,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3c-2.76,0 -5,2.24 -5,5v8c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3V9h0.83C7.44,9 8.89,7.82 9,6.21c0.12,-1.69 -1.16,-3.1 -2.8,-3.21C4.44,2.89 3,4.42 3,6.19V16c0,2.76 2.24,5 5,5s5,-2.24 5,-5V8c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v7h-0.83c-1.61,0 -3.06,1.18 -3.17,2.79c-0.12,1.69 1.16,3.1 2.8,3.21c1.76,0.12 3.2,-1.42 3.2,-3.18V8C21,5.24 18.76,3 16,3zM5,6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1S6.55,7 6,7H5V6zM19,18c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1h1V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/earbuds_battery.xml b/compose/material/material/icons/generator/raw-icons/twotone/earbuds_battery.xml
deleted file mode 100644
index 546495d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/earbuds_battery.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9h2v7h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.62,6C8.76,6 7.25,7.51 7.25,9.38v5.25c0,1.04 -0.84,1.88 -1.88,1.88S3.5,15.66 3.5,14.62v-4.7C3.66,9.97 3.83,10 4,10c1.1,0 2,-0.9 2,-2S5.1,6 4,6S2,6.9 2,8c0,0.04 0,6.62 0,6.62C2,16.49 3.51,18 5.38,18s3.38,-1.51 3.38,-3.38V9.38c0,-1.04 0.84,-1.88 1.88,-1.88s1.88,0.84 1.88,1.88v4.7C12.34,14.03 12.17,14 12,14c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2c0,-0.04 0,-6.62 0,-6.62C14,7.51 12.49,6 10.62,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1V6h-2v1h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7zM20,16h-2V9h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/east.xml b/compose/material/material/icons/generator/raw-icons/twotone/east.xml
deleted file mode 100644
index 5a9661d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7,-7L15,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/eco.xml b/compose/material/material/icons/generator/raw-icons/twotone/eco.xml
deleted file mode 100644
index 8ea3c52e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/eco.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.46,9.46C5.68,11.25 5.55,14.04 7.03,16c1.53,-2.54 3.73,-4.64 6.37,-6c-2.26,1.91 -3.95,4.44 -4.88,7.32C9.27,17.75 10.11,18 11,18c1.34,0 2.59,-0.52 3.54,-1.46c1.74,-1.74 2.81,-6.57 3.26,-10.33C14.04,6.65 9.21,7.72 7.46,9.46z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.05,8.05c-2.73,2.73 -2.73,7.17 0,9.9C7.42,19.32 9.21,20 11,20s3.58,-0.68 4.95,-2.05C19.43,14.47 20,4 20,4S9.53,4.57 6.05,8.05zM14.54,16.54C13.59,17.48 12.34,18 11,18c-0.89,0 -1.73,-0.25 -2.48,-0.68c0.92,-2.88 2.62,-5.41 4.88,-7.32c-2.63,1.36 -4.84,3.46 -6.37,6c-1.48,-1.96 -1.35,-4.75 0.44,-6.54C9.21,7.72 14.04,6.65 17.8,6.2C17.35,9.96 16.28,14.79 14.54,16.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edgesensor_high.xml b/compose/material/material/icons/generator/raw-icons/twotone/edgesensor_high.xml
deleted file mode 100644
index 26cebba..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edgesensor_high.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4h8v1h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19h8v1h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,20H8v-1h8V20zM16,17H8V7h8V17zM16,5H8V4h8V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0,10h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edgesensor_low.xml b/compose/material/material/icons/generator/raw-icons/twotone/edgesensor_low.xml
deleted file mode 100644
index 7b73150..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edgesensor_low.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4h8v1h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19h8v1h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h2v7h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,2.01L8,2C6.9,2 6,2.9 6,4v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V4C18,2.9 17.1,2.01 16,2.01zM16,20H8v-1h8V20zM16,17H8V7h8V17zM16,5H8V4h8V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit.xml
deleted file mode 100644
index 62445fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18.08V19h0.92l9.06,-9.06 -0.92,-0.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.2,-0.2 -0.45,-0.29 -0.71,-0.29s-0.51,0.1 -0.7,0.29l-1.83,1.83 3.75,3.75 1.83,-1.83zM3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM5.92,19H5v-0.92l9.06,-9.06 0.92,0.92L5.92,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_attributes.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_attributes.xml
deleted file mode 100644
index 67af625..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_attributes.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,9H6.37C5.09,9 4,10.37 4,12s1.09,3 2.37,3h11.26c1.28,0 2.37,-1.37 2.37,-3s-1.09,-3 -2.37,-3zM7.24,14.46l-2.57,-2.57 0.7,-0.7 1.87,1.87 3.52,-3.52 0.7,0.7 -4.22,4.22z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,7L6.37,7C3.96,7 2,9.24 2,12s1.96,5 4.37,5h11.26c2.41,0 4.37,-2.24 4.37,-5s-1.96,-5 -4.37,-5zM17.63,15L6.37,15C5.09,15 4,13.63 4,12s1.09,-3 2.37,-3h11.26C18.91,9 20,10.37 20,12s-1.09,3 -2.37,3zM7.24,13.06l-1.87,-1.87 -0.7,0.7 2.57,2.57 4.22,-4.22 -0.7,-0.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_calendar.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_calendar.xml
deleted file mode 100644
index bf8fb8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_calendar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h14v2h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h14v2h2V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h7v-2H5V10zM5,6h14v2H5V6zM22.84,16.28l-0.71,0.71l-2.12,-2.12l0.71,-0.71c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71C23.23,15.26 23.23,15.89 22.84,16.28zM19.3,15.58l2.12,2.12l-5.3,5.3H14v-2.12L19.3,15.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_location.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_location.xml
deleted file mode 100644
index 84b0f83..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_location.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.11,14h-0.83H10H8v-2V8.74V7.91l0.59,-0.59L11.91,4C8.61,4.05 6,6.6 6,10.2c0,2.34 1.95,5.44 6,9.14c4.05,-3.7 6,-6.79 6,-9.14c0,-0.03 0,-0.06 0,-0.08l-3.3,3.3L14.11,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.17,4.91L17.1,3.84l-5.55,5.55v1.08h1.08L18.17,4.91zM16,2.74l1.29,-1.29c0.58,-0.59 1.52,-0.59 2.11,-0.01c0,0 0.01,0.01 0.01,0.01l1.15,1.15c0.59,0.59 0.59,1.54 0,2.12L19.88,5.4l-0.02,0.02L19.28,6l-6,6H10V8.74L16,2.74zM13.72,2.19l-0.55,0.55L11.9,4.01C8.6,4.06 6,6.61 6,10.21c0,2.34 1.95,5.44 6,9.14c4.05,-3.7 6,-6.79 6,-9.14v-0.1l1.8,-1.8c0.13,0.6 0.2,1.24 0.2,1.9c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8c0,-4.98 3.8,-8.2 8,-8.2C12.58,2.01 13.16,2.07 13.72,2.19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.17,4.91l-1.07,-1.07l-5.55,5.55l0,1.08l1.08,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_location_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_location_alt.xml
deleted file mode 100644
index d00cfd1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_location_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.9,9.05C17.96,9.41 18,9.79 18,10.2c0,1.71 -1.08,4.64 -6,9.14c-4.92,-4.49 -6,-7.43 -6,-9.14C6,6.17 9.09,4 12,4c0.32,0 0.65,0.03 0.97,0.08l1.65,-1.65C13.78,2.16 12.9,2 12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-1.01 -0.16,-1.94 -0.45,-2.8L17.9,9.05zM20.71,2L20,1.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-0.72,0.72l2.12,2.12l0.72,-0.72C21.1,3.02 21.1,2.39 20.71,2zM11,11h2.12l6.16,-6.16l-2.12,-2.12L11,8.88V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.95,13H9V8.05l3.97,-3.97C12.65,4.03 12.32,4 12,4c-2.91,0 -6,2.17 -6,6.2c0,1.71 1.08,4.64 6,9.14c4.92,-4.49 6,-7.43 6,-9.14c0,-0.4 -0.04,-0.78 -0.1,-1.15L13.95,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_note.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_note.xml
deleted file mode 100644
index 1641196..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_note.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2H3V10zM3,8h11V6H3V8zM3,16h7v-2H3V16zM18.01,12.87l0.71,-0.71c0.39,-0.39 1.02,-0.39 1.41,0l0.71,0.71c0.39,0.39 0.39,1.02 0,1.41l-0.71,0.71L18.01,12.87zM17.3,13.58l-5.3,5.3V21h2.12l5.3,-5.3L17.3,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_notifications.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_notifications.xml
deleted file mode 100644
index 0054446..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_notifications.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14.2L15.2,15h-4.6v-4.6l3.68,-3.68C13.64,6.26 12.85,6 12,6c-2.21,0 -4,1.79 -4,4v7h8V14.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25zM20.85,5.81l-1.06,-1.06c-0.2,-0.2 -0.51,-0.2 -0.71,0l-0.85,0.85l1.77,1.77l0.85,-0.85C21.05,6.32 21.05,6 20.85,5.81zM18,12.2V17h2v2H4v-2h2v-7c0,-2.79 1.91,-5.14 4.5,-5.8V3.5C10.5,2.67 11.17,2 12,2s1.5,0.67 1.5,1.5v0.7c0.82,0.21 1.57,0.59 2.21,1.09l-1.43,1.43C13.64,6.26 12.85,6 12,6c-2.21,0 -4,1.79 -4,4v7h8v-2.8L18,12.2zM10,20h4c0,1.1 -0.9,2 -2,2S10,21.1 10,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_off.xml
deleted file mode 100644
index c16fc6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18.08V19h0.92l5.12,-5.12l-0.92,-0.92L5,18.08zM14.06,9.02l-1.11,1.11l0.92,0.92l1.11,-1.11L14.06,9.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.02l0.92,0.92l-1.11,1.11l1.41,1.41l2.52,-2.52l-3.75,-3.75l-2.52,2.52l1.41,1.41L14.06,9.02zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34C18.17,3.09 17.92,3 17.66,3s-0.51,0.1 -0.7,0.29l-1.83,1.83l3.75,3.75L20.71,7.04zM2.81,2.81L1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71,-5.71l7.32,7.32l1.41,-1.41L2.81,2.81zM5.92,19H5v-0.92l5.13,-5.13l0.92,0.92L5.92,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/edit_road.xml b/compose/material/material/icons/generator/raw-icons/twotone/edit_road.xml
deleted file mode 100644
index 6fda5ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/edit_road.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.55,17.42l0,1.03l1.03,0l3.45,-3.45l-1.03,-1.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-2,0l0,7.9l2,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.56,12.59l-1.15,-1.15c-0.59,-0.59 -1.54,-0.59 -2.12,0L14,16.73V20h3.27l5.29,-5.29C23.15,14.12 23.15,13.17 22.56,12.59zM16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/egg.xml b/compose/material/material/icons/generator/raw-icons/twotone/egg.xml
deleted file mode 100644
index 5109cc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/egg.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-1.93,0 -5,4.91 -5,9c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,9.91 13.93,5 12,5zM13,18c-3.01,0 -5,-2 -5,-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,2.92 2.42,3 3,3c0.55,0 1,0.45 1,1S13.55,18 13,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.5,3 5,9.33 5,14c0,3.87 3.13,7 7,7c3.87,0 7,-3.13 7,-7C19,9.33 15.5,3 12,3zM12,19c-2.76,0 -5,-2.24 -5,-5c0,-4.09 3.07,-9 5,-9s5,4.91 5,9C17,16.76 14.76,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,16c-0.58,0 -3,-0.08 -3,-3c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1c0,3 1.99,5 5,5c0.55,0 1,-0.45 1,-1S13.55,16 13,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/egg_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/egg_alt.xml
deleted file mode 100644
index 02f9cee..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/egg_alt.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.59,10.42c-0.69,-0.68 -1.21,-1.51 -1.76,-2.39C14.48,5.86 13.31,4 9.97,4C8.35,4 7.01,4.52 5.99,5.55C4.68,6.88 3.97,8.99 4,11.5C4.05,16.01 8.33,17 9.97,17c1.69,0 2.68,1.05 3.34,1.74C14.03,19.5 14.5,20 15.99,20c1.89,0 4.01,-2.13 4.01,-4.98C20,12.82 19.49,12.31 17.59,10.42zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,15.5 12,15.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9C17,7 15.99,2 9.97,2C4.95,2 1.94,6 2,11.52C2.06,17.04 6.96,19 9.97,19c2.01,0 2.01,3 6.02,3C19,22 22,19 22,15.02C22,12 21.01,11 19,9zM15.99,20c-1.49,0 -1.96,-0.5 -2.68,-1.26C12.66,18.05 11.66,17 9.97,17C8.33,17 4.05,16.01 4,11.5C3.97,8.99 4.68,6.88 5.99,5.55C7.01,4.52 8.35,4 9.97,4c3.34,0 4.51,1.86 5.86,4.02c0.55,0.88 1.07,1.71 1.76,2.39c1.9,1.89 2.41,2.4 2.41,4.61C20,17.87 17.88,20 15.99,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3.5,0a3.5,3.5 0,1 1,7 0a3.5,3.5 0,1 1,-7 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/eject.xml b/compose/material/material/icons/generator/raw-icons/twotone/eject.xml
deleted file mode 100644
index 3695c6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/eject.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.6L9.07,13h5.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h14v2L5,19zM12,5L5.33,15h13.34L12,5zM12,8.6l2.93,4.4L9.07,13L12,8.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/elderly.xml b/compose/material/material/icons/generator/raw-icons/twotone/elderly.xml
deleted file mode 100644
index dc601c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/elderly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM20,12.5V23h-1V12.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S18,12.22 18,12.5v1h-1v-0.69c-1.46,-0.38 -2.7,-1.29 -3.51,-2.52C13.18,11.16 13,12.07 13,13c0,0.23 0.02,0.46 0.03,0.69L15,16.5V23h-2v-5l-1.78,-2.54L11,19l-3,4l-1.6,-1.2L9,18.33V13c0,-1.15 0.18,-2.29 0.5,-3.39L8,10.46V14H6V9.3l5.4,-3.07l0,0.01c0.59,-0.31 1.32,-0.33 1.94,0.03c0.36,0.21 0.63,0.51 0.8,0.85l0,0l0.79,1.67C15.58,10.1 16.94,11 18.5,11C19.33,11 20,11.67 20,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/elderly_woman.xml b/compose/material/material/icons/generator/raw-icons/twotone/elderly_woman.xml
deleted file mode 100644
index 895ad06..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/elderly_woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,11c-1.56,0 -2.92,-0.9 -3.58,-2.21l-0.79,-1.67l0,0C14.12,7.1 13.63,6 12.34,6l0,0C8.72,6 6,16.69 6,19h2.5l-2.1,2.8L8,23l3,-4h2v4h2v-4.03L13,13l0.49,-2.71c0.81,1.23 2.05,2.14 3.51,2.52v0.69h1v-1c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V23h1V12.5C20,11.67 19.33,11 18.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.6,2.91c-0.06,0.19 -0.1,0.38 -0.1,0.59c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2c-0.21,0 -0.4,0.04 -0.59,0.1C12.76,1.25 12.41,1 12,1c-0.55,0 -1,0.45 -1,1C11,2.41 11.25,2.76 11.6,2.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electric_bike.xml b/compose/material/material/icons/generator/raw-icons/twotone/electric_bike.xml
deleted file mode 100644
index d23d67e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electric_bike.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-0.82l-1.7,-4.68C16.19,1.53 15.44,1 14.6,1H12v2h2.6l1.46,4h-4.81l-0.36,-1H12V4H7v2h1.75l1.82,5H9.9C9.46,8.77 7.59,7.12 5.25,7.01C2.45,6.87 0,9.2 0,12c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5C24,9.2 21.8,7 19,7zM7.82,13c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,11h-1.4l-0.73,-2H15C14.56,9.58 14.24,10.25 14.1,11zM19,15c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67C18.94,9.01 18.97,9 19,9c1.68,0 3,1.32 3,3S20.68,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electric_bolt.xml b/compose/material/material/icons/generator/raw-icons/twotone/electric_bolt.xml
deleted file mode 100644
index e7ae85c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electric_bolt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.69,2.21L4.33,11.49c-0.64,0.58 -0.28,1.65 0.58,1.73L13,14l-4.85,6.76c-0.22,0.31 -0.19,0.74 0.08,1.01h0c0.3,0.3 0.77,0.31 1.08,0.02l10.36,-9.28c0.64,-0.58 0.28,-1.65 -0.58,-1.73L11,10l4.85,-6.76c0.22,-0.31 0.19,-0.74 -0.08,-1.01l0,0C15.47,1.93 15,1.92 14.69,2.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electric_car.xml b/compose/material/material/icons/generator/raw-icons/twotone/electric_car.xml
deleted file mode 100644
index c12727e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electric_car.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h14V8H5V13zM16.5,9c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5S15,11.33 15,10.5C15,9.67 15.67,9 16.5,9zM7.5,9C8.33,9 9,9.67 9,10.5C9,11.33 8.33,12 7.5,12S6,11.33 6,10.5C6,9.67 6.67,9 7.5,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,2.01C18.72,1.42 18.16,1 17.5,1h-11C5.84,1 5.29,1.42 5.08,2.01L3,8v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1V8L18.92,2.01zM6.85,3h10.29l1.08,3.11H5.77L6.85,3zM19,13H5V8h14V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,10.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electric_meter.xml b/compose/material/material/icons/generator/raw-icons/twotone/electric_meter.xml
deleted file mode 100644
index f67b64f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electric_meter.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-3.86,0 -7,3.14 -7,7s3.14,7 7,7s7,-3.14 7,-7S15.86,4 12,4zM14.25,14l-3,3l-1.5,-1.5L11,14.25L9.75,13l3,-3l1.5,1.5L13,12.75L14.25,14zM16,9H8V7h8V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4.97,0 -9,4.03 -9,9c0,3.92 2.51,7.24 6,8.48V22h2v-2.06c0.33,0.04 0.66,0.06 1,0.06s0.67,-0.02 1,-0.06V22h2v-2.52c3.49,-1.24 6,-4.56 6,-8.48C21,6.03 16.97,2 12,2zM12,18c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7s7,3.14 7,7S15.86,18 12,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,10l-3,3l1.25,1.25l-1.25,1.25l1.5,1.5l3,-3l-1.25,-1.25l1.25,-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electric_moped.xml b/compose/material/material/icons/generator/raw-icons/twotone/electric_moped.xml
deleted file mode 100644
index aefc6d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electric_moped.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11v1h4V9H6C4.9,9 4,9.9 4,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,8.35V5zM7,15c-0.55,0 -1,-0.45 -1,-1h2C8,14.55 7.55,15 7,15zM8,12H4v-1c0,-1.1 0.9,-2 2,-2h2V12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,11 19,11zM19,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,15 19,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electric_rickshaw.xml b/compose/material/material/icons/generator/raw-icons/twotone/electric_rickshaw.xml
deleted file mode 100644
index a3dcc6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electric_rickshaw.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h0.17C3.58,11.84 4.7,11 6,11c0.35,0 0.69,0.06 1,0.17V10H3V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-3v2h1.17c0.3,-0.85 0.98,-1.53 1.83,-1.83V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.18V9.72c0,-0.47 -0.16,-0.92 -0.46,-1.28L16.6,3.72C16.22,3.26 15.66,3 15.06,3H3C1.9,3 1,3.9 1,5v8c0,1.1 0.9,2 2,2h0.18C3.6,16.16 4.7,17 6,17s2.4,-0.84 2.82,-2h8.37c0.41,1.16 1.51,2 2.82,2c1.66,0 3,-1.34 3,-3C23,12.7 22.16,11.6 21,11.18zM6,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S6.55,15 6,15zM7,11.17C6.69,11.06 6.35,11 6,11c-1.3,0 -2.42,0.84 -2.83,2H3v-3h4V11.17zM7,8H3V5h4V8zM14,13H9v-3h3V8H9V5h5V13zM16,6.12L18.4,9H16V6.12zM17.17,13H16v-2h3v0.17C18.15,11.47 17.47,12.15 17.17,13zM20,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,15 20,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20l4,0l0,-2l6,3l-4,0l0,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electric_scooter.xml b/compose/material/material/icons/generator/raw-icons/twotone/electric_scooter.xml
deleted file mode 100644
index 82e1522..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electric_scooter.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.82,16H15v-1c0,-2.21 1.79,-4 4,-4h0.74l-1.9,-8.44C17.63,1.65 16.82,1 15.89,1H12v2h3.89l1.4,6.25c0,0 -0.01,0 -0.01,0c-2.16,0.65 -3.81,2.48 -4.19,4.75H7.82c-0.48,-1.34 -1.86,-2.24 -3.42,-1.94c-1.18,0.23 -2.13,1.2 -2.35,2.38C1.7,16.34 3.16,18 5,18C6.3,18 7.4,17.16 7.82,16zM5,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S5.55,16 5,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,12 19,12zM19,16c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,16 19,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20l-4,0l6,3l0,-2l4,0l-6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/electrical_services.xml b/compose/material/material/icons/generator/raw-icons/twotone/electrical_services.xml
deleted file mode 100644
index 33d75dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/electrical_services.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15h-2v-2h2c0.55,0 1,0.45 1,1v0C21,14.55 20.55,15 20,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19h-2v-2h2c0.55,0 1,0.45 1,1v0C21,18.55 20.55,19 20,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12L14,12L14,12c-1.1,0 -2,0.9 -2,2v0h-2v4h2v0c0,1.1 0.9,2 2,2h0h3l0,0v-8H14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5L4,5c0,0.55 0.45,1 1,1h3.5C9.33,6 10,6.67 10,7.5v0C10,8.33 9.33,9 8.5,9H7c-2.21,0 -4,1.79 -4,4v0c0,2.21 1.79,4 4,4h2v-2H7c-1.1,0 -2,-0.9 -2,-2v0c0,-1.1 0.9,-2 2,-2h1.5c1.93,0 3.5,-1.57 3.5,-3.5v0C12,5.57 10.43,4 8.5,4H5C4.45,4 4,4.45 4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/elevator.xml b/compose/material/material/icons/generator/raw-icons/twotone/elevator.xml
deleted file mode 100644
index f854f1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/elevator.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5H19M10,18v-4h1v-2.5c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2V14h1v4H10zM8.5,8.5c0.69,0 1.25,-0.56 1.25,-1.25S9.19,6 8.5,6S7.25,6.56 7.25,7.25S7.81,8.5 8.5,8.5zM18,11l-2.5,-4L13,11H18zM13,13l2.5,4l2.5,-4H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3L19,3zM10,18v-4h1v-2.5c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2V14h1v4H10zM8.5,8.5c0.69,0 1.25,-0.56 1.25,-1.25S9.19,6 8.5,6S7.25,6.56 7.25,7.25S7.81,8.5 8.5,8.5zM18,11l-2.5,-4L13,11H18zM13,13l2.5,4l2.5,-4H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/email.xml b/compose/material/material/icons/generator/raw-icons/twotone/email.xml
deleted file mode 100644
index 6ee3bc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/email.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8l-8,5 -8,-5v10h16zM20,6L4,6l8,4.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM20,6l-8,4.99L4,6h16zM4,8l8,5 8,-5v10H4V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emergency.xml b/compose/material/material/icons/generator/raw-icons/twotone/emergency.xml
deleted file mode 100644
index 00a78ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emergency.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.43,16.87l-4.68,-2.7C13.42,13.97 13,14.21 13,14.6V20h-2v-5.4c0,-0.38 -0.42,-0.63 -0.75,-0.43l-4.68,2.7l-1,-1.73l4.68,-2.7c0.33,-0.19 0.33,-0.67 0,-0.87l-4.68,-2.7l1,-1.73l4.68,2.7C10.58,10.03 11,9.79 11,9.4V4h2v5.4c0,0.38 0.42,0.63 0.75,0.43l4.68,-2.7l1,1.73l-4.68,2.7c-0.33,0.19 -0.33,0.67 0,0.87l4.68,2.7L18.43,16.87z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.29,13.9L18,12l3.29,-1.9c0.48,-0.28 0.64,-0.89 0.37,-1.37l-2,-3.46c-0.28,-0.48 -0.89,-0.64 -1.37,-0.37L15,6.8V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3.8L5.71,4.9C5.23,4.63 4.62,4.79 4.34,5.27l-2,3.46C2.06,9.21 2.23,9.82 2.71,10.1L6,12l-3.29,1.9c-0.48,0.28 -0.64,0.89 -0.37,1.37l2,3.46c0.28,0.48 0.89,0.64 1.37,0.37L9,17.2V21c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3.8l3.29,1.9c0.48,0.28 1.09,0.11 1.37,-0.37l2,-3.46C21.94,14.79 21.77,14.18 21.29,13.9zM18.43,16.87l-4.68,-2.7C13.42,13.97 13,14.21 13,14.6V20h-2v-5.4c0,-0.38 -0.42,-0.63 -0.75,-0.43l-4.68,2.7l-1,-1.73l4.68,-2.7c0.33,-0.19 0.33,-0.67 0,-0.87l-4.68,-2.7l1,-1.73l4.68,2.7C10.58,10.03 11,9.79 11,9.4V4h2v5.4c0,0.38 0.42,0.63 0.75,0.43l4.68,-2.7l1,1.73l-4.68,2.7c-0.33,0.19 -0.33,0.67 0,0.87l4.68,2.7L18.43,16.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emergency_recording.xml b/compose/material/material/icons/generator/raw-icons/twotone/emergency_recording.xml
deleted file mode 100644
index e33ab82..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emergency_recording.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6v12h12V6H4zM15,13.73l-1,1.73l-3,-1.73V17H9v-3.27l-3,1.73l-1,-1.73L8,12l-3,-1.73l1,-1.73l3,1.73V7h2v3.27l3,-1.73l1,1.73L12,12L15,13.73z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM16,18H4V6h12V18zM12,12l3,1.73l-1,1.73l-3,-1.73V17H9v-3.27l-3,1.73l-1,-1.73L8,12l-3,-1.73l1,-1.73l3,1.73V7h2v3.27l3,-1.73l1,1.73L12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emergency_share.xml b/compose/material/material/icons/generator/raw-icons/twotone/emergency_share.xml
deleted file mode 100644
index 7a1581f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emergency_share.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.94,0 -4,1.45 -4,4.15c0,0.94 0.55,2.93 4,6.17c3.45,-3.24 4,-5.23 4,-6.17C16,12.45 13.94,11 12,11zM12,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,16.5 12,16.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.93,0 3.68,0.78 4.95,2.05l-1.41,1.41C14.63,6.56 13.38,6 12,6S9.37,6.56 8.46,7.46L7.05,6.05C8.32,4.78 10.07,4 12,4zM19.78,3.23l-1.41,1.41C16.74,3.01 14.49,2 12.01,2S7.27,3.01 5.64,4.63L4.22,3.22C6.22,1.23 8.97,0 12.01,0S17.79,1.23 19.78,3.23zM12,11c1.94,0 4,1.45 4,4.15c0,0.94 -0.55,2.93 -4,6.17c-3.45,-3.24 -4,-5.23 -4,-6.17C8,12.45 10.06,11 12,11zM12,9c-3.15,0 -6,2.41 -6,6.15c0,2.49 2,5.44 6,8.85c4,-3.41 6,-6.36 6,-8.85C18,11.41 15.15,9 12,9zM13.5,15c0,-0.83 -0.67,-1.5 -1.5,-1.5c-0.83,0 -1.5,0.67 -1.5,1.5c0,0.83 0.67,1.5 1.5,1.5C12.83,16.5 13.5,15.83 13.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_emotions.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_emotions.xml
deleted file mode 100644
index f638267..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_emotions.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8s3.58,8 8,8S20,16.42 20,12zM8.5,8C9.33,8 10,8.67 10,9.5S9.33,11 8.5,11S7,10.33 7,9.5S7.67,8 8.5,8zM12,18c-2.28,0 -4.22,-1.66 -5,-4h10C16.22,16.34 14.28,18 12,18zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8S17,8.67 17,9.5S16.33,11 15.5,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12c0,5.52 4.47,10 9.99,10C17.52,22 22,17.52 22,12C22,6.48 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,16.42 16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c2.28,0 4.22,-1.66 5,-4H7C7.78,16.34 9.72,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_events.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_events.xml
deleted file mode 100644
index 4be7bd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_events.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c-1.65,0 -3,-1.35 -3,-3V5h6v6C15,12.65 13.65,14 12,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5h-2V3H7v2H5C3.9,5 3,5.9 3,7v1c0,2.55 1.92,4.63 4.39,4.94c0.63,1.5 1.98,2.63 3.61,2.96V19H7v2h10v-2h-4v-3.1c1.63,-0.33 2.98,-1.46 3.61,-2.96C19.08,12.63 21,10.55 21,8V7C21,5.9 20.1,5 19,5zM5,8V7h2v3.82C5.84,10.4 5,9.3 5,8zM12,14c-1.65,0 -3,-1.35 -3,-3V5h6v6C15,12.65 13.65,14 12,14zM19,8c0,1.3 -0.84,2.4 -2,2.82V7h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_flags.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_flags.xml
deleted file mode 100644
index e2931250..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_flags.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9l-5,0l0,6l6,0l1,2l4,0l0,-6l-5,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l-1,-2H7V5.72C7.6,5.38 8,4.74 8,4c0,-1.1 -0.9,-2 -2,-2S4,2.9 4,4c0,0.74 0.4,1.38 1,1.72V21h2v-4h5l1,2h7V9H14zM18,17h-4l-1,-2H7V9h5l1,2h5V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_food_beverage.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_food_beverage.xml
deleted file mode 100644
index 8efc5ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_food_beverage.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6.4l1.81,1.45C11.93,7.94 12,8.09 12,8.24v4.26c0,0.28 -0.22,0.5 -0.5,0.5h-4C7.22,13 7,12.78 7,12.5V8.24c0,-0.15 0.07,-0.3 0.19,-0.39L9,6.4V5H6v8c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2V5h-6V6.4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h18v2h-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.89 2,-2V5C22,3.89 21.11,3 20,3zM9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28zM16,13c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2V5h3v1.4L7.19,7.85C7.07,7.94 7,8.09 7,8.24v4.26C7,12.78 7.22,13 7.5,13h4c0.28,0 0.5,-0.22 0.5,-0.5V8.24c0,-0.15 -0.07,-0.3 -0.19,-0.39L10,6.4V5h6V13zM20,8h-2V5h2V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_nature.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_nature.xml
deleted file mode 100644
index feb6fe4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_nature.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.94,4.88C21.75,4.33 21.19,3.96 20.58,4H19.6l-0.31,-0.97C19.15,2.43 18.61,2 18,2h0c-0.61,0 -1.15,0.43 -1.29,1.04L16.4,4h-0.98c-0.61,-0.04 -1.16,0.32 -1.35,0.88c-0.19,0.56 0.04,1.17 0.56,1.48l0.87,0.52L15.1,8.12c-0.23,0.58 -0.04,1.25 0.45,1.62c0.5,0.37 1.17,0.35 1.64,-0.06L18,8.98l0.81,0.7c0.47,0.4 1.15,0.43 1.64,0.06c0.5,-0.37 0.68,-1.04 0.45,-1.62l-0.39,-1.24l0.87,-0.52C21.89,6.05 22.12,5.44 21.94,4.88zM18,7c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C19,6.55 18.55,7 18,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.1,17.9c0.53,0.53 1.27,0.69 1.94,0.5c-0.03,-1.19 0.35,-2.37 0.92,-3.36c-1,0.57 -2.17,0.95 -3.36,0.92C5.41,16.63 5.58,17.37 6.1,17.9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.65,11.55l1.61,0.66c0.25,0.1 0.44,0.3 0.54,0.54l0.66,1.61c0.75,-0.78 0.74,-2.01 -0.03,-2.78C11.66,10.8 10.43,10.8 9.65,11.55z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.86,12c-0.17,-0.67 -0.5,-1.31 -1.03,-1.84C13.31,9.64 12.67,9.31 12,9.14V7h-1v2c-1.01,0.01 -2.02,0.39 -2.79,1.16c-0.13,0.13 -0.33,0.33 -0.56,0.56l-1.53,-0.63c-1.52,-0.63 -3.27,0.1 -3.89,1.62c-0.6,1.46 0.05,3.11 1.44,3.8c-0.33,1.31 0,2.76 1.03,3.79c1.03,1.03 2.48,1.36 3.79,1.03c0.69,1.39 2.34,2.04 3.8,1.44c1.52,-0.63 2.25,-2.37 1.62,-3.89l-0.63,-1.53c0.23,-0.23 0.43,-0.43 0.56,-0.56c0.77,-0.77 1.16,-1.78 1.16,-2.79h2v-1H14.86zM4.58,13.8c-0.51,-0.21 -0.75,-0.79 -0.54,-1.3c0.21,-0.51 0.79,-0.75 1.3,-0.54l2.92,1.2C7.22,13.84 5.83,14.31 4.58,13.8zM8.04,18.4c-0.67,0.19 -1.41,0.02 -1.94,-0.5c-0.53,-0.53 -0.69,-1.27 -0.5,-1.94c1.19,0.03 2.37,-0.35 3.36,-0.92C8.39,16.03 8.01,17.21 8.04,18.4zM11.5,19.96c-0.51,0.21 -1.09,-0.03 -1.3,-0.54c-0.51,-1.25 -0.04,-2.64 0.64,-3.67l1.2,2.92C12.25,19.17 12.01,19.76 11.5,19.96zM12.45,14.35l-0.66,-1.61c-0.1,-0.25 -0.3,-0.44 -0.54,-0.54l-1.61,-0.66c0.78,-0.75 2.01,-0.74 2.78,0.03C13.2,12.34 13.2,13.57 12.45,14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_objects.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_objects.xml
deleted file mode 100644
index 2bbe738..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_objects.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18h4v1h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4v1h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-0.46,0 -0.93,0.04 -1.4,0.14C7.84,3.67 5.64,5.9 5.12,8.66c-0.48,2.61 0.48,5.01 2.22,6.56C7.77,15.6 8,16.13 8,16.69V19c0,1.1 0.9,2 2,2h0.28c0.35,0.6 0.98,1 1.72,1s1.38,-0.4 1.72,-1H14c1.1,0 2,-0.9 2,-2v-2.31c0,-0.55 0.22,-1.09 0.64,-1.46C18.09,13.95 19,12.08 19,10C19,6.13 15.87,3 12,3zM14,19h-4v-1h4V19zM14,17h-4v-1h4V17zM15.31,13.74c-0.09,0.08 -0.16,0.18 -0.24,0.26H8.92c-0.08,-0.09 -0.15,-0.19 -0.24,-0.27c-1.32,-1.18 -1.91,-2.94 -1.59,-4.7c0.36,-1.94 1.96,-3.55 3.89,-3.93C11.32,5.03 11.66,5 12,5c2.76,0 5,2.24 5,5C17,11.43 16.39,12.79 15.31,13.74z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,11h1v3h-1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.672,9.581l0.707,-0.707l2.121,2.121l-0.707,0.707z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.208,11.712l-0.707,-0.707l2.121,-2.121l0.707,0.707z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_people.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_people.xml
deleted file mode 100644
index 54d8c00..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_people.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.89,8.11C15.5,7.72 14.83,7 13.53,7c-0.21,0 -1.42,0 -2.54,0C8.24,6.99 6,4.75 6,2H4c0,3.16 2.11,5.84 5,6.71V22h2v-6h2v6h2V10.05L18.95,14l1.41,-1.41L15.89,8.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_symbols.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_symbols.xml
deleted file mode 100644
index 5c3024a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_symbols.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l2,0l0,-4l3,0l0,-2l-8,0l0,2l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.404,20.182l7.778,-7.778l1.414,1.414l-7.778,7.778z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11c1.38,0 2.5,-1.12 2.5,-2.5V4h3V2h-4v4.51C16.58,6.19 16.07,6 15.5,6C14.12,6 13,7.12 13,8.5C13,9.88 14.12,11 15.5,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.74,15.96l-1.41,1.41l-0.71,-0.71l0.35,-0.35c0.98,-0.98 0.98,-2.56 0,-3.54c-0.49,-0.49 -1.13,-0.73 -1.77,-0.73c-0.64,0 -1.28,0.24 -1.77,0.73c-0.98,0.98 -0.98,2.56 0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98 -0.98,2.56 0,3.54C4.22,21.76 4.86,22 5.5,22s1.28,-0.24 1.77,-0.73l1.06,-1.06l1.41,1.41l1.41,-1.41l-1.41,-1.41l1.41,-1.41L9.74,15.96zM5.85,14.2c0.12,-0.12 0.26,-0.15 0.35,-0.15s0.23,0.03 0.35,0.15c0.19,0.2 0.19,0.51 0,0.71l-0.35,0.35L5.85,14.9C5.66,14.71 5.66,14.39 5.85,14.2zM5.85,19.85C5.73,19.97 5.59,20 5.5,20s-0.23,-0.03 -0.35,-0.15c-0.19,-0.19 -0.19,-0.51 0,-0.71l1.06,-1.06l0.71,0.71L5.85,19.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/emoji_transportation.xml b/compose/material/material/icons/generator/raw-icons/twotone/emoji_transportation.xml
deleted file mode 100644
index 791567a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/emoji_transportation.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,10.66C20.43,10.26 20.05,10 19.6,10h-7.19c-0.46,0 -0.83,0.26 -0.98,0.66L10,14.77l0.01,5.51c0,0.38 0.31,0.72 0.69,0.72h0.62C11.7,21 12,20.62 12,20.24V19h8v1.24c0,0.38 0.31,0.76 0.69,0.76h0.61c0.38,0 0.69,-0.34 0.69,-0.72L22,18.91v-4.14L20.57,10.66zM12.41,11h7.19l1.03,3h-9.25L12.41,11zM12,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S12.55,17 12,17zM20,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S20.55,17 20,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9l1,0l0,-6l-8,0l0,5l-5,0l0,13l1,0l0,-12l5,0l0,-5l6,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/energy_savings_leaf.xml b/compose/material/material/icons/generator/raw-icons/twotone/energy_savings_leaf.xml
deleted file mode 100644
index d05de2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/energy_savings_leaf.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.1,7.01C5.74,8.32 5,10.1 5,12c0,3.86 3.14,7 7,7c1.87,0 3.63,-0.73 4.95,-2.05C18.27,15.63 19,13.87 19,12V5h-7C10.16,5 8.42,5.71 7.1,7.01zM13.88,7.12c0.14,0.14 0.16,0.36 0.04,0.52l-2.44,3.33l4.05,0.4c0.44,0.04 0.63,0.59 0.3,0.89l-5.16,4.63c-0.16,0.15 -0.41,0.14 -0.56,-0.01c-0.14,-0.14 -0.16,-0.36 -0.04,-0.52l2.44,-3.33l-4.05,-0.4c-0.44,-0.04 -0.63,-0.59 -0.3,-0.89l5.16,-4.63C13.48,6.96 13.73,6.97 13.88,7.12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C12,3 12,3 12,3c-4.8,0 -9,3.86 -9,9c0,2.12 0.74,4.07 1.97,5.61L3,19.59L4.41,21l1.97,-1.97C7.93,20.26 9.88,21 12,21c2.3,0 4.61,-0.88 6.36,-2.64C20.12,16.61 21,14.3 21,12V3H12zM19,12c0,1.87 -0.73,3.63 -2.05,4.95C15.63,18.27 13.87,19 12,19c-3.86,0 -7,-3.14 -7,-7c0,-1.9 0.74,-3.68 2.1,-4.99C8.42,5.71 10.16,5 12,5h7V12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.46,12.63l4.05,0.4l-2.44,3.33c-0.11,0.16 -0.1,0.38 0.04,0.52c0.15,0.15 0.4,0.16 0.56,0.01l5.16,-4.63c0.33,-0.3 0.15,-0.85 -0.3,-0.89l-4.05,-0.4l2.44,-3.33c0.11,-0.16 0.1,-0.38 -0.04,-0.52c-0.15,-0.15 -0.4,-0.16 -0.56,-0.01l-5.16,4.63C7.84,12.04 8.02,12.59 8.46,12.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/engineering.xml b/compose/material/material/icons/generator/raw-icons/twotone/engineering.xml
deleted file mode 100644
index 0c8f6df..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/engineering.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11c1.1,0 2,-0.9 2,-2H7C7,10.1 7.9,11 9,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,6C7.78,6 8,5.78 8,5.5V4.14C7.64,4.23 7.31,4.37 7,4.55V5.5C7,5.78 7.22,6 7.5,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,6C10.78,6 11,5.78 11,5.5V4.55c-0.31,-0.18 -0.64,-0.32 -1,-0.41V5.5C10,5.78 10.22,6 10.5,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17c-2.69,0 -5.77,1.28 -6,2h12C14.8,18.29 11.7,17 9,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.67,0 -8,1.34 -8,4v2h16v-2C17,16.34 11.67,15 9,15zM3,19c0.22,-0.72 3.31,-2 6,-2c2.7,0 5.8,1.29 6,2H3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.74,9H5c0,2.21 1.79,4 4,4s4,-1.79 4,-4h0.26c0.27,0 0.49,-0.22 0.49,-0.49V8.49c0,-0.27 -0.22,-0.49 -0.49,-0.49H13c0,-1.48 -0.81,-2.75 -2,-3.45V5.5C11,5.78 10.78,6 10.5,6S10,5.78 10,5.5V4.14C9.68,4.06 9.35,4 9,4S8.32,4.06 8,4.14V5.5C8,5.78 7.78,6 7.5,6S7,5.78 7,5.5V4.55C5.81,5.25 5,6.52 5,8H4.74C4.47,8 4.25,8.22 4.25,8.49v0.03C4.25,8.78 4.47,9 4.74,9zM11,9c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,6.23l0.93,-0.83l-0.75,-1.3l-1.19,0.39c-0.14,-0.11 -0.3,-0.2 -0.47,-0.27L20.25,3h-1.5L18.5,4.22c-0.17,0.07 -0.33,0.16 -0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4 17,6.58 17.02,6.75L16.09,7.6l0.75,1.3l1.2,-0.38c0.13,0.1 0.28,0.18 0.43,0.25L18.75,10h1.5l0.27,-1.22c0.16,-0.07 0.3,-0.15 0.44,-0.25l1.19,0.38l0.75,-1.3l-0.93,-0.85C22,6.57 21.99,6.4 21.98,6.23zM19.5,7.75c-0.69,0 -1.25,-0.56 -1.25,-1.25s0.56,-1.25 1.25,-1.25s1.25,0.56 1.25,1.25S20.19,7.75 19.5,7.75z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.27,12.31l0.66,-0.59l-0.54,-0.93l-0.85,0.28c-0.1,-0.08 -0.21,-0.14 -0.33,-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05 -0.24,0.12 -0.34,0.19l-0.84,-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13 -0.01,0.25 0,0.37l-0.66,0.61l0.54,0.93l0.86,-0.27c0.1,0.07 0.2,0.13 0.31,0.18L16.96,15h1.07l0.19,-0.87c0.11,-0.05 0.22,-0.11 0.32,-0.18l0.85,0.27l0.54,-0.93l-0.66,-0.61C19.28,12.55 19.28,12.43 19.27,12.31zM17.5,13.39c-0.49,0 -0.89,-0.4 -0.89,-0.89s0.4,-0.89 0.89,-0.89s0.89,0.4 0.89,0.89S17.99,13.39 17.5,13.39z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/enhanced_encryption.xml b/compose/material/material/icons/generator/raw-icons/twotone/enhanced_encryption.xml
deleted file mode 100644
index bd08a7f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/enhanced_encryption.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12L18,10L6,10v10zM8,14h3v-3h2v3h3v2h-3v3h-2v-3L8,16v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2L8.9,8L8.9,6zM18,20L6,20L6,10h12v10zM11,19h2v-3h3v-2h-3v-3h-2v3L8,14v2h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/equalizer.xml b/compose/material/material/icons/generator/raw-icons/twotone/equalizer.xml
deleted file mode 100644
index cd079c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/equalizer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h4v11h-4zM10,4h4v16h-4zM4,12h4v8L4,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/error.xml b/compose/material/material/icons/generator/raw-icons/twotone/error.xml
deleted file mode 100644
index d9c9ed9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/error.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM11,15h2v2h-2zM11,7h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/error_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/error_outline.xml
deleted file mode 100644
index e1b771c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/error_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM11,15h2v2h-2zM11,7h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/escalator.xml b/compose/material/material/icons/generator/raw-icons/twotone/escalator.xml
deleted file mode 100644
index 017b8dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/escalator.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L19,5l0,14H5V5H19M17,6h-3.3l-5,9H7c-0.83,0 -1.5,0.67 -1.5,1.5S6.17,18 7,18h3.3l5,-9H17c0.83,0 1.5,-0.67 1.5,-1.5S17.83,6 17,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L19,5l0,14H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2l0,-14C21,3.9 20.1,3 19,3L19,3zM17,6h-3.3l-5,9H7c-0.83,0 -1.5,0.67 -1.5,1.5S6.17,18 7,18h3.3l5,-9H17c0.83,0 1.5,-0.67 1.5,-1.5S17.83,6 17,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/escalator_warning.xml b/compose/material/material/icons/generator/raw-icons/twotone/escalator_warning.xml
deleted file mode 100644
index 1bb94f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/escalator_warning.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,2c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S5.4,2 6.5,2zM15.5,9.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S17.83,8 17,8S15.5,8.67 15.5,9.5zM18.5,12h-2.84c-0.58,0.01 -1.14,0.32 -1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37 8.69,7.01 8.01,7H5C3.9,7 3,7.9 3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68 19.33,12 18.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/euro.xml b/compose/material/material/icons/generator/raw-icons/twotone/euro.xml
deleted file mode 100644
index 1e31e62..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/euro.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15l1,-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15l1,-2H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3l-1,2h4.06C6.02,11.33 6,11.66 6,12s0.02,0.67 0.06,1H3l-1,2h4.52c1.24,3.49 4.56,6 8.48,6c2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77C18.09,17.91 16.62,18.5 15,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/euro_symbol.xml b/compose/material/material/icons/generator/raw-icons/twotone/euro_symbol.xml
deleted file mode 100644
index 3088536..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/euro_symbol.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,18.5c-2.51,0 -4.68,-1.42 -5.76,-3.5H15v-2H8.58c-0.05,-0.33 -0.08,-0.66 -0.08,-1s0.03,-0.67 0.08,-1H15V9H9.24C10.32,6.92 12.5,5.5 15,5.5c1.61,0 3.09,0.59 4.23,1.57L21,5.3C19.41,3.87 17.3,3 15,3c-3.92,0 -7.24,2.51 -8.48,6H3v2h3.06c-0.04,0.33 -0.06,0.66 -0.06,1s0.02,0.67 0.06,1H3v2h3.52c1.24,3.49 4.56,6 8.48,6 2.31,0 4.41,-0.87 6,-2.3l-1.78,-1.77c-1.13,0.98 -2.6,1.57 -4.22,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ev_station.xml b/compose/material/material/icons/generator/raw-icons/twotone/ev_station.xml
deleted file mode 100644
index 5ba2eea..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ev_station.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13.5L6,13.5L6,19h6v-8l-4,7zM6,13.5L10,6v5h2L12,5L6,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L6,3c-1.1,0 -2,0.9 -2,2v16h10v-7.5h1.5v5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5L20.5,9c0,-0.69 -0.28,-1.32 -0.73,-1.77l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-0.94,0.36 -1.61,1.26 -1.61,2.33 0,1.38 1.12,2.5 2.5,2.5 0.36,0 0.69,-0.08 1,-0.21v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L17,14c0,-1.1 -0.9,-2 -2,-2h-1L14,5c0,-1.1 -0.9,-2 -2,-2zM12,11v8L6,19L6,5h6v6zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM10,6l-4,7.5h2L8,18l4,-7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/event.xml b/compose/material/material/icons/generator/raw-icons/twotone/event.xml
deleted file mode 100644
index 79e227f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/event.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8h14V6H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-1L18,2h-2v2L8,4L8,2L6,2v2L5,4c-1.11,0 -1.99,0.9 -1.99,2L3,20c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2zM19,20L5,20L5,10h14v10zM19,8L5,8L5,6h14v2zM12,13h5v5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/event_available.xml b/compose/material/material/icons/generator/raw-icons/twotone/event_available.xml
deleted file mode 100644
index 627d119..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/event_available.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v2H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM19,7L5,7L5,5h14v2zM16.49,11.53l-1.06,-1.06 -4.87,4.87 -2.11,-2.11 -1.06,1.06 3.17,3.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/event_busy.xml b/compose/material/material/icons/generator/raw-icons/twotone/event_busy.xml
deleted file mode 100644
index f4ded6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/event_busy.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v2H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM19,7L5,7L5,5h14v2zM9.29,17.47l2.44,-2.44 2.44,2.44 1.06,-1.06 -2.44,-2.44 2.44,-2.44 -1.06,-1.06 -2.44,2.44 -2.44,-2.44 -1.06,1.06 2.44,2.44 -2.44,2.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/event_note.xml b/compose/material/material/icons/generator/raw-icons/twotone/event_note.xml
deleted file mode 100644
index c1f4b8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/event_note.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v2H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM19,7L5,7L5,5h14v2zM7,11h10v2L7,13zM7,15h7v2L7,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/event_repeat.xml b/compose/material/material/icons/generator/raw-icons/twotone/event_repeat.xml
deleted file mode 100644
index 95dc539..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/event_repeat.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h14v2h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.9,4 3,4.9 3,6v14c0,1.1 0.9,2 2,2h7v-2H5V10h14v2H21zM19,8H5V6h14V8zM15.64,20c0.43,1.45 1.77,2.5 3.36,2.5c1.93,0 3.5,-1.57 3.5,-3.5s-1.57,-3.5 -3.5,-3.5c-0.95,0 -1.82,0.38 -2.45,1l1.45,0V18h-4v-4h1.5l0,1.43C16.4,14.55 17.64,14 19,14c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-2.42,0 -4.44,-1.72 -4.9,-4L15.64,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/event_seat.xml b/compose/material/material/icons/generator/raw-icons/twotone/event_seat.xml
deleted file mode 100644
index c1cf4ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/event_seat.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5h6v7H9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21h2v-4h12v4h2v-6L4,15zM17,5c0,-1.1 -0.9,-2 -2,-2L9,3c-1.1,0 -2,0.9 -2,2v9h10L17,5zM15,12L9,12L9,5h6v7zM19,10h3v3h-3zM2,10h3v3L2,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/exit_to_app.xml b/compose/material/material/icons/generator/raw-icons/twotone/exit_to_app.xml
deleted file mode 100644
index ed42b70..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/exit_to_app.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.09,15.59L11.5,17l5,-5 -5,-5 -1.41,1.41L12.67,11H3v2h9.67l-2.58,2.59zM19,3H5c-1.11,0 -2,0.9 -2,2v4h2V5h14v14H5v-4H3v4c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/expand.xml b/compose/material/material/icons/generator/raw-icons/twotone/expand.xml
deleted file mode 100644
index e21ea49..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/expand.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16v2H4V20zM4,2h16v2H4V2zM13,9h3l-4,-4L8,9h3v6H8l4,4l4,-4h-3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/expand_circle_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/expand_circle_down.xml
deleted file mode 100644
index b297e4ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/expand_circle_down.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8s8,-3.58 8,-8S16.42,4 12,4zM12,15.5L7.5,11l1.42,-1.41L12,12.67l3.08,-3.08L16.5,11L12,15.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.08,9.59L12,12.67L8.92,9.59L7.5,11l4.5,4.5l4.5,-4.5L15.08,9.59zM12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/expand_less.xml b/compose/material/material/icons/generator/raw-icons/twotone/expand_less.xml
deleted file mode 100644
index 816e68a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/expand_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8l-6,6 1.41,1.41L12,10.83l4.59,4.58L18,14l-6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/expand_more.xml b/compose/material/material/icons/generator/raw-icons/twotone/expand_more.xml
deleted file mode 100644
index 747dc4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/expand_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.59,8.59L12,13.17 7.41,8.59 6,10l6,6 6,-6 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/explicit.xml b/compose/material/material/icons/generator/raw-icons/twotone/explicit.xml
deleted file mode 100644
index 60b3408..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/explicit.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5v14zM9,7h6v2h-4v2h4v2h-4v2h4v2H9V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM19,19L5,19L5,5h14v14zM15,15h-4v-2h4v-2h-4L11,9h4L15,7L9,7v10h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/explore.xml b/compose/material/material/icons/generator/raw-icons/twotone/explore.xml
deleted file mode 100644
index b17aaf4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/explore.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM14.01,14.01L6.5,17.5l3.49,-7.51L17.5,6.5l-3.49,7.51z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM6.5,17.5l7.51,-3.49L17.5,6.5 9.99,9.99 6.5,17.5zM12,10.9c0.61,0 1.1,0.49 1.1,1.1s-0.49,1.1 -1.1,1.1 -1.1,-0.49 -1.1,-1.1 0.49,-1.1 1.1,-1.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/explore_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/explore_off.xml
deleted file mode 100644
index d125bdb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/explore_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c1.48,0 2.86,-0.41 4.06,-1.12l-3.98,-3.98 -5.58,2.6 2.59,-5.58 -3.97,-3.98C4.41,9.14 4,10.52 4,12c0,4.41 3.59,8 8,8zM12,4c-1.48,0 -2.86,0.41 -4.06,1.12l3.98,3.98 5.58,-2.6 -2.59,5.58 3.98,3.98c0.7,-1.2 1.11,-2.58 1.11,-4.06 0,-4.41 -3.59,-8 -8,-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,6.5l-5.58,2.59 2.99,2.99zM2.1,4.93l1.56,1.56C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10 2.04,0 3.93,-0.61 5.51,-1.66l1.56,1.56 1.41,-1.41L3.51,3.51 2.1,4.93zM5.12,7.94l3.98,3.98 -2.6,5.58 5.58,-2.59 3.98,3.98c-1.2,0.7 -2.58,1.11 -4.06,1.11 -4.41,0 -8,-3.59 -8,-8 0,-1.48 0.41,-2.86 1.12,-4.06zM12,4c4.41,0 8,3.59 8,8 0,1.48 -0.41,2.86 -1.12,4.06l1.46,1.46C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10 -2.04,0 -3.93,0.61 -5.51,1.66l1.46,1.46C9.14,4.41 10.52,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/exposure.xml b/compose/material/material/icons/generator/raw-icons/twotone/exposure.xml
deleted file mode 100644
index 374716f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/exposure.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19L19,5L5,19h14zM14.5,14.5v-2L16,12.5v2h2L18,16h-2v2h-1.5v-2h-2v-1.5h2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM6,7h5v1.5L6,8.5L6,7zM19,19L5,19L19,5v14zM14.5,16v2L16,18v-2h2v-1.5h-2v-2h-1.5v2h-2L12.5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/exposure_neg_1.xml b/compose/material/material/icons/generator/raw-icons/twotone/exposure_neg_1.xml
deleted file mode 100644
index 7296fbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/exposure_neg_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18V5h-0.3L14,6.7v1.7l3,-1.02V18zM4,11h8v2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/exposure_neg_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/exposure_neg_2.xml
deleted file mode 100644
index 0ac6aa8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/exposure_neg_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.98,10.1c-0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55V18H21v-1.71h-5.95l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18s0.59,-0.78 0.82,-1.17c0.23,-0.39 0.41,-0.78 0.54,-1.17 0.13,-0.39 0.19,-0.79 0.19,-1.18 0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49 0.27,-0.12 0.6,-0.18 0.96,-0.18 0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43c0.16,0.18 0.28,0.4 0.37,0.65 0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7zM2,11h8v2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/exposure_plus_1.xml b/compose/material/material/icons/generator/raw-icons/twotone/exposure_plus_1.xml
deleted file mode 100644
index a86bf3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/exposure_plus_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18L20,5h-0.3L15,6.7v1.7l3,-1.02L18,18zM10,17v-4h4v-2h-4L10,7L8,7v4L4,11v2h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/exposure_plus_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/exposure_plus_2.xml
deleted file mode 100644
index d1c248f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/exposure_plus_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17v-4h4v-2L8,11L8,7L6,7v4L2,11v2h4v4zM19.95,12.04c0.32,-0.39 0.59,-0.78 0.82,-1.17 0.23,-0.39 0.41,-0.78 0.54,-1.17 0.13,-0.39 0.19,-0.79 0.19,-1.18 0,-0.53 -0.09,-1.02 -0.27,-1.46s-0.44,-0.81 -0.78,-1.11c-0.34,-0.31 -0.77,-0.54 -1.26,-0.71 -0.51,-0.16 -1.08,-0.24 -1.72,-0.24 -0.69,0 -1.31,0.11 -1.85,0.32 -0.54,0.21 -1,0.51 -1.36,0.88 -0.37,0.37 -0.65,0.8 -0.84,1.3 -0.18,0.47 -0.27,0.97 -0.28,1.5h2.14c0.01,-0.31 0.05,-0.6 0.13,-0.87 0.09,-0.29 0.23,-0.54 0.4,-0.75 0.18,-0.21 0.41,-0.37 0.68,-0.49 0.27,-0.12 0.6,-0.18 0.96,-0.18 0.31,0 0.58,0.05 0.81,0.15s0.43,0.25 0.59,0.43c0.16,0.18 0.28,0.4 0.37,0.65 0.08,0.25 0.13,0.52 0.13,0.81 0,0.22 -0.03,0.43 -0.08,0.65 -0.06,0.22 -0.15,0.45 -0.29,0.7 -0.14,0.25 -0.32,0.53 -0.56,0.83 -0.23,0.3 -0.52,0.65 -0.88,1.03l-4.17,4.55L13.37,18L22,18v-1.71h-5.95l2.86,-3.07c0.38,-0.39 0.72,-0.79 1.04,-1.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/exposure_zero.xml b/compose/material/material/icons/generator/raw-icons/twotone/exposure_zero.xml
deleted file mode 100644
index f100633..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/exposure_zero.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.01,6.22c-0.36,-0.43 -0.8,-0.74 -1.31,-0.93S12.63,5 12,5c-0.62,0 -1.19,0.1 -1.69,0.29 -0.51,0.19 -0.95,0.5 -1.31,0.93s-0.64,0.99 -0.84,1.69c-0.2,0.7 -0.3,1.55 -0.3,2.55v2.04c0,1 0.1,1.85 0.3,2.55 0.2,0.69 0.49,1.26 0.85,1.7s0.8,0.75 1.31,0.95c0.51,0.2 1.07,0.3 1.69,0.3 0.63,0 1.19,-0.1 1.7,-0.3 0.51,-0.2 0.94,-0.51 1.3,-0.95 0.35,-0.43 0.63,-1 0.83,-1.7 0.2,-0.7 0.3,-1.55 0.3,-2.55h0.01v-2.04c0,-1.01 -0.1,-1.85 -0.3,-2.55 -0.2,-0.7 -0.48,-1.26 -0.84,-1.69zM14.04,12.8c0,0.63 -0.04,1.17 -0.13,1.62 -0.09,0.45 -0.22,0.81 -0.39,1.09s-0.38,0.48 -0.63,0.61 -0.54,0.19 -0.87,0.19c-0.33,0 -0.62,-0.06 -0.87,-0.19s-0.47,-0.33 -0.64,-0.61c-0.17,-0.28 -0.31,-0.64 -0.4,-1.09 -0.09,-0.44 -0.14,-0.98 -0.14,-1.62v-2.67c0,-0.64 0.04,-1.18 0.13,-1.62 0.09,-0.44 0.23,-0.79 0.4,-1.06s0.39,-0.46 0.64,-0.58 0.54,-0.18 0.86,-0.18 0.61,0.06 0.86,0.19c0.25,0.12 0.47,0.31 0.64,0.58 0.18,0.27 0.31,0.62 0.4,1.06 0.08,0.44 0.13,0.98 0.13,1.62h0.01v2.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/extension.xml b/compose/material/material/icons/generator/raw-icons/twotone/extension.xml
deleted file mode 100644
index a1d6829..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/extension.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13h-2V7h-6V5c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5v2H4l0.01,2.12C5.76,9.8 7,11.51 7,13.5c0,1.99 -1.25,3.7 -3,4.38V20h2.12c0.68,-1.75 2.39,-3 4.38,-3 1.99,0 3.7,1.25 4.38,3H17v-6h2c0.28,0 0.5,-0.22 0.5,-0.5s-0.22,-0.5 -0.5,-0.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11L19,7c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5S8,3.62 8,5L4,5c-1.1,0 -1.99,0.9 -1.99,2v3.8h0.29c1.49,0 2.7,1.21 2.7,2.7s-1.21,2.7 -2.7,2.7L2,16.2L2,20c0,1.1 0.9,2 2,2h3.8v-0.3c0,-1.49 1.21,-2.7 2.7,-2.7s2.7,1.21 2.7,2.7v0.3L17,22c1.1,0 2,-0.9 2,-2v-4c1.38,0 2.5,-1.12 2.5,-2.5S20.38,11 19,11zM19,14h-2v6h-2.12c-0.68,-1.75 -2.39,-3 -4.38,-3 -1.99,0 -3.7,1.25 -4.38,3L4,20v-2.12c1.75,-0.68 3,-2.39 3,-4.38 0,-1.99 -1.24,-3.7 -2.99,-4.38L4,7h6L10,5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5v2h6v6h2c0.28,0 0.5,0.22 0.5,0.5s-0.22,0.5 -0.5,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/extension_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/extension_off.xml
deleted file mode 100644
index 3bcd728..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/extension_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13v2.17L8.83,6H11V4c0,-0.28 0.22,-0.5 0.5,-0.5S12,3.72 12,4v2h6v6h2c0.28,0 0.5,0.22 0.5,0.5S20.28,13 20,13H18zM8,12.5c0,1.5 -0.83,3.57 -3,4.37V19h2.13c0.8,-2.17 2.87,-3 4.37,-3c0.69,0 1.5,0.18 2.25,0.58l-6.33,-6.33C7.82,11 8,11.81 8,12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l1.62,1.62c0,0.05 -0.01,0.1 -0.01,0.16v3.8C5.7,9.8 6,11.96 6,12.5c0,0.54 -0.29,2.7 -3,2.7V19c0,1.1 0.9,2 2,2h3.8c0,-2.71 2.16,-3 2.7,-3c0.54,0 2.7,0.29 2.7,3H18c0.06,0 0.11,0 0.16,-0.01l1.61,1.61l1.41,-1.41L2.81,2.81L1.39,4.22zM11.5,16c-1.5,0 -3.57,0.83 -4.37,3H5v-2.13c2.17,-0.8 3,-2.87 3,-4.37c0,-0.69 -0.18,-1.5 -0.58,-2.25l6.33,6.33C13,16.18 12.19,16 11.5,16zM8.83,6l-2,-2H9c0,-1.38 1.12,-2.5 2.5,-2.5S14,2.62 14,4h4c1.1,0 2,0.9 2,2v4c1.38,0 2.5,1.12 2.5,2.5S21.38,15 20,15v2.17l-2,-2V13h2c0.28,0 0.5,-0.22 0.5,-0.5S20.28,12 20,12h-2V6h-6V4c0,-0.28 -0.22,-0.5 -0.5,-0.5S11,3.72 11,4v2H8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face.xml b/compose/material/material/icons/generator/raw-icons/twotone/face.xml
deleted file mode 100644
index 0276830..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,8c0.46,0 0.91,-0.05 1.34,-0.12C17.44,5.56 14.9,4 12,4c-0.46,0 -0.91,0.05 -1.34,0.12C12.06,6.44 14.6,8 17.5,8zM8.08,5.03C6.37,6 5.05,7.58 4.42,9.47c1.71,-0.97 3.03,-2.55 3.66,-4.44z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,4c2.9,0 5.44,1.56 6.84,3.88 -0.43,0.07 -0.88,0.12 -1.34,0.12 -2.9,0 -5.44,-1.56 -6.84,-3.88 0.43,-0.07 0.88,-0.12 1.34,-0.12zM8.08,5.03C7.45,6.92 6.13,8.5 4.42,9.47 5.05,7.58 6.37,6 8.08,5.03zM12,20c-4.41,0 -8,-3.59 -8,-8 0,-0.05 0.01,-0.1 0.01,-0.15 2.6,-0.98 4.68,-2.99 5.74,-5.55 1.83,2.26 4.62,3.7 7.75,3.7 0.75,0 1.47,-0.09 2.17,-0.24 0.21,0.71 0.33,1.46 0.33,2.24 0,4.41 -3.59,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/face_2.xml
deleted file mode 100644
index c227f2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face_2.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.02,5C6.01,5 6.01,5 6,5C3.79,5 2,6.79 2,9c0,0.55 0.12,1.07 0.32,1.54C2.89,8.29 4.22,6.35 6.02,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.1,3.5C14.36,2.59 13.25,2 12,2S9.64,2.59 8.9,3.5C9.88,3.18 10.92,3 12,3S14.12,3.18 15.1,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.31c0,2.24 1.82,4.06 4.06,4.06c0.93,0 1.82,-0.32 2.53,-0.89C17.16,6.39 14.75,5.01 12.03,5C12.02,5.11 12,5.21 12,5.31z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,16.12C2.19,16.68 2,17.31 2,18c0,2.21 1.79,4 4,4c0.44,0 0.85,-0.07 1.25,-0.2C5.02,20.59 3.31,18.56 2.5,16.12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.68,10.54C21.88,10.07 22,9.55 22,9c0,-2.21 -1.79,-4 -4,-4c-0.01,0 -0.01,0 -0.02,0C19.78,6.35 21.11,8.29 21.68,10.54z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.75,21.8C17.15,21.93 17.56,22 18,22c2.21,0 4,-1.79 4,-4c0,-0.69 -0.19,-1.32 -0.5,-1.88C20.69,18.56 18.98,20.59 16.75,21.8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.97,13.52c0,-0.01 0,-0.02 0,-0.04C23.21,12.38 24,10.78 24,9c0,-3.31 -2.69,-6 -6,-6c-0.26,0 -0.52,0.02 -0.78,0.06C16.19,1.23 14.24,0 12,0S7.81,1.23 6.78,3.06C6.52,3.02 6.26,3 6,3C2.69,3 0,5.69 0,9c0,1.78 0.79,3.38 2.02,4.48c0,0.01 0,0.02 0,0.04C0.79,14.62 0,16.22 0,18c0,3.31 2.69,6 6,6c1.39,0 2.67,-0.48 3.69,-1.28C10.43,22.9 11.2,23 12,23s1.57,-0.1 2.31,-0.28C15.33,23.52 16.61,24 18,24c3.31,0 6,-2.69 6,-6C24,16.22 23.21,14.62 21.97,13.52zM18,5c2.21,0 4,1.79 4,4c0,0.55 -0.12,1.07 -0.32,1.54c-0.57,-2.25 -1.9,-4.19 -3.7,-5.54C17.99,5 17.99,5 18,5zM18.6,8.48c-0.71,0.57 -1.6,0.89 -2.53,0.89C13.82,9.38 12,7.55 12,5.31c0,-0.1 0.02,-0.21 0.03,-0.31C14.75,5.01 17.16,6.39 18.6,8.48zM12,2c1.25,0 2.36,0.59 3.1,1.5C14.12,3.18 13.08,3 12,3S9.88,3.18 8.9,3.5C9.64,2.59 10.75,2 12,2zM2,9c0,-2.21 1.79,-4 4,-4c0.01,0 0.01,0 0.02,0c-1.8,1.35 -3.13,3.29 -3.7,5.54C2.12,10.07 2,9.55 2,9zM6,22c-2.21,0 -4,-1.79 -4,-4c0,-0.69 0.19,-1.32 0.5,-1.88c0.8,2.44 2.52,4.47 4.74,5.68C6.85,21.93 6.44,22 6,22zM12,21c-4.41,0 -8,-3.59 -8,-8c0,-3.72 2.56,-6.85 6,-7.74c0,0.02 0,0.03 0,0.05c0,3.34 2.72,6.06 6.06,6.06c1.26,0 2.45,-0.39 3.45,-1.09C19.82,11.14 20,12.05 20,13C20,17.41 16.41,21 12,21zM18,22c-0.44,0 -0.85,-0.07 -1.25,-0.2c2.23,-1.21 3.94,-3.24 4.74,-5.68c0.31,0.56 0.5,1.2 0.5,1.88C22,20.21 20.21,22 18,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/face_3.xml
deleted file mode 100644
index e9ed533..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face_3.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,8c0.73,0 1.41,-0.25 1.99,-0.65C17.22,5.58 15.26,4.35 13,4.07V4.5C13,6.43 14.57,8 16.5,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4.5V4.07C8.74,4.35 6.78,5.58 5.51,7.35C6.09,7.75 6.77,8 7.5,8C9.43,8 11,6.43 11,4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.75,15.8L2.19,22H12C7.82,22 4.25,19.44 2.75,15.8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22h9.81l-0.56,-6.2C19.75,19.44 16.18,22 12,22z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.91,11.96C22.39,6.32 17.66,2 12,2S1.61,6.32 1.09,11.96l-0.9,9.86C0.09,22.99 1.01,24 2.19,24h19.62c1.18,0 2.1,-1.01 1.99,-2.18L22.91,11.96zM13,4.07c2.26,0.28 4.22,1.51 5.49,3.28C17.91,7.75 17.23,8 16.5,8C14.57,8 13,6.43 13,4.5V4.07zM11,4.07V4.5C11,6.43 9.43,8 7.5,8C6.77,8 6.09,7.75 5.51,7.35C6.78,5.58 8.74,4.35 11,4.07zM4.54,9.13C5.41,9.68 6.43,10 7.5,10C9.36,10 11,9.07 12,7.65C13,9.07 14.64,10 16.5,10c1.07,0 2.09,-0.32 2.96,-0.87C19.8,10.02 20,10.99 20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8C4,10.99 4.2,10.02 4.54,9.13zM12,22H2.19l0.56,-6.2C4.25,19.44 7.82,22 12,22s7.75,-2.56 9.25,-6.2l0.56,6.2H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/face_4.xml
deleted file mode 100644
index dc163ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face_4.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.42,9.47L4.42,9.47C6.13,8.5 7.45,6.92 8.08,5.03C6.37,6 5.05,7.58 4.42,9.47z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,8c0.46,0 0.91,-0.05 1.34,-0.12C17.44,5.56 14.9,4 12,4c-0.46,0 -0.91,0.05 -1.34,0.12h0C12.06,6.44 14.6,8 17.5,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.35,3.15C6.8,2.46 5.95,2 5,2C3.35,2 2,3.35 2,5c0,0.95 0.46,1.8 1.15,2.35C4.09,5.56 5.56,4.09 7.35,3.15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-0.96,0 -1.88,0.14 -2.75,0.39C8.37,0.96 6.8,0 5,0C2.24,0 0,2.24 0,5c0,1.8 0.96,3.37 2.39,4.25C2.14,10.12 2,11.04 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,4c2.9,0 5.44,1.56 6.84,3.88C18.41,7.95 17.96,8 17.5,8c-2.9,0 -5.44,-1.56 -6.84,-3.88h0C11.09,4.05 11.54,4 12,4zM2,5c0,-1.65 1.35,-3 3,-3c0.95,0 1.8,0.46 2.35,1.15C5.56,4.09 4.09,5.56 3.15,7.35C2.46,6.8 2,5.95 2,5zM8.08,5.03C7.45,6.92 6.13,8.5 4.42,9.47h0C5.05,7.58 6.37,6 8.08,5.03zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0.01,-0.15c2.6,-0.98 4.68,-2.99 5.74,-5.55C11.58,8.56 14.37,10 17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face_5.xml b/compose/material/material/icons/generator/raw-icons/twotone/face_5.xml
deleted file mode 100644
index 525db6c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face_5.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.12 0.23,-2.18 0.65,-3.15C4.74,8.94 4.86,9 5,9c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.25 -0.19,-0.45 -0.43,-0.49c0.15,-0.26 0.32,-0.51 0.49,-0.75C5.53,7.34 5.5,7.41 5.5,7.5C5.5,7.78 5.72,8 6,8s0.5,-0.22 0.5,-0.5C6.5,7.22 6.28,7 6,7C5.87,7 5.75,7.05 5.66,7.13c0.52,-0.68 1.15,-1.28 1.86,-1.76C7.51,5.41 7.5,5.45 7.5,5.5C7.5,5.78 7.72,6 8,6s0.5,-0.22 0.5,-0.5c0,-0.24 -0.17,-0.43 -0.4,-0.48c0.16,-0.09 0.32,-0.17 0.49,-0.25C8.68,4.91 8.83,5 9,5c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.03 -0.01,-0.06 -0.02,-0.09c0.39,-0.13 0.79,-0.23 1.21,-0.3C10.58,4.21 10.5,4.34 10.5,4.5C10.5,4.78 10.72,5 11,5s0.5,-0.22 0.5,-0.5c0,-0.21 -0.13,-0.38 -0.3,-0.46C11.46,4.01 11.73,4 12,4s0.54,0.01 0.8,0.04c-0.18,0.08 -0.3,0.25 -0.3,0.46C12.5,4.78 12.72,5 13,5s0.5,-0.22 0.5,-0.5c0,-0.16 -0.08,-0.29 -0.19,-0.38c0.41,0.07 0.82,0.17 1.21,0.3C14.51,4.44 14.5,4.47 14.5,4.5C14.5,4.78 14.72,5 15,5c0.17,0 0.32,-0.09 0.41,-0.23c0.17,0.08 0.33,0.16 0.49,0.25c-0.23,0.05 -0.4,0.24 -0.4,0.48C15.5,5.78 15.72,6 16,6s0.5,-0.22 0.5,-0.5c0,-0.05 -0.01,-0.09 -0.03,-0.13c0.71,0.48 1.34,1.08 1.86,1.76C18.25,7.05 18.13,7 18,7c-0.28,0 -0.5,0.22 -0.5,0.5C17.5,7.78 17.72,8 18,8s0.5,-0.22 0.5,-0.5c0,-0.09 -0.03,-0.16 -0.07,-0.23c0.18,0.24 0.34,0.49 0.49,0.75C18.69,8.05 18.5,8.25 18.5,8.5C18.5,8.78 18.72,9 19,9c0.14,0 0.26,-0.06 0.35,-0.15C19.77,9.82 20,10.88 20,12C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face_6.xml b/compose/material/material/icons/generator/raw-icons/twotone/face_6.xml
deleted file mode 100644
index ca799ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face_6.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.55,7.66C7.06,6.64 8.09,6 9.24,6h5.53c1.14,0 2.17,0.64 2.68,1.66c0.94,1.87 1.66,2.08 2.26,2.24C18.78,6.51 15.68,4 12,4S5.22,6.51 4.29,9.9C4.97,9.72 5.62,9.52 6.55,7.66z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,4c3.68,0 6.78,2.51 7.71,5.9c-0.6,-0.16 -1.33,-0.37 -2.26,-2.24C16.94,6.64 15.91,6 14.76,6H9.24C8.09,6 7.06,6.64 6.55,7.66C5.62,9.52 4.97,9.72 4.29,9.9C5.22,6.51 8.32,4 12,4zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.01 0,-0.02 0,-0.03c2.31,-0.22 3.43,-1.59 4.34,-3.41C8.51,8.21 8.85,8 9.24,8h5.53c0.38,0 0.72,0.21 0.89,0.55c0.9,1.8 1.99,3.19 4.34,3.41c0,0.01 0,0.02 0,0.03C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face_retouching_natural.xml b/compose/material/material/icons/generator/raw-icons/twotone/face_retouching_natural.xml
deleted file mode 100644
index aed33a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face_retouching_natural.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.66,4.12c2.55,4.23 7.03,3.87 7.18,3.86l-0.57,-1.25L12.4,4.5l0.85,-0.39C12.84,4.04 12.43,4 12,4C11.54,4 11.09,4.05 10.66,4.12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.08,5.03C6.37,6 5.05,7.58 4.42,9.47C6.13,8.5 7.45,6.92 8.08,5.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.89,10.75C19.96,11.16 20,11.57 20,12c0,4.41 -3.59,8 -8,8s-8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c2.6,-0.98 4.69,-2.99 5.74,-5.55c3.38,4.14 7.97,3.73 8.99,3.61l-0.89,-1.93c-0.13,0.01 -4.62,0.38 -7.18,-3.86c1.01,-0.16 1.71,-0.15 2.59,-0.01l2.12,-0.97l0.64,-0.29C14.78,2.3 13.43,2 12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10c0,-1.43 -0.3,-2.78 -0.84,-4.01L19.89,10.75zM8.08,5.03C7.45,6.92 6.13,8.5 4.42,9.47C5.05,7.58 6.37,6 8.08,5.03z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1.25,0a1.25,1.25 0,1 1,2.5 0a1.25,1.25 0,1 1,-2.5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.6,3.4l-1.1,-2.4l-1.1,2.4l-2.4,1.1l2.4,1.1l1.1,2.4l1.1,-2.4l2.4,-1.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/face_retouching_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/face_retouching_off.xml
deleted file mode 100644
index c4cbeef..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/face_retouching_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-0.46,0 -0.91,0.05 -1.34,0.12C12.06,6.44 14.6,8 17.5,8c0.46,0 0.91,-0.05 1.34,-0.12C17.44,5.56 14.9,4 12,4zM4.42,9.47C5.09,9.09 5.7,8.61 6.23,8.06L5.51,7.34C5.05,7.99 4.68,8.7 4.42,9.47z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14.25c0.69,0 1.25,-0.56 1.25,-1.25S9.69,11.75 9,11.75S7.75,12.31 7.75,13S8.31,14.25 9,14.25zM17.5,10c0.75,0 1.47,-0.09 2.17,-0.24C19.88,10.47 20,11.22 20,12c0,1.22 -0.28,2.37 -0.77,3.4l1.49,1.49C21.53,15.44 22,13.78 22,12c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.47 -4.89,1.28l5.33,5.33C13.93,9.49 15.65,10 17.5,10zM10.66,4.12C11.09,4.05 11.54,4 12,4c2.9,0 5.44,1.56 6.84,3.88C18.41,7.95 17.96,8 17.5,8C14.6,8 12.06,6.44 10.66,4.12zM1.89,3.72l2.19,2.19C2.78,7.6 2,9.71 2,12c0,5.52 4.48,10 10,10c2.29,0 4.4,-0.78 6.09,-2.08l2.19,2.19l1.41,-1.41L3.31,2.31L1.89,3.72zM16.66,18.49C15.35,19.44 13.74,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-0.05 0.01,-0.1 0,-0.14c1.39,-0.52 2.63,-1.35 3.64,-2.39L16.66,18.49zM5.51,7.34l0.72,0.72C5.7,8.61 5.09,9.09 4.42,9.47C4.68,8.7 5.05,7.99 5.51,7.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/facebook.xml b/compose/material/material/icons/generator/raw-icons/twotone/facebook.xml
deleted file mode 100644
index 308115a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/facebook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12c0,4.84 3.44,8.87 8,9.8V15H8v-3h2V9.5C10,7.57 11.57,6 13.5,6H16v3h-2c-0.55,0 -1,0.45 -1,1v2h3v3h-3v6.95C18.05,21.45 22,17.19 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fact_check.xml b/compose/material/material/icons/generator/raw-icons/twotone/fact_check.xml
deleted file mode 100644
index 684deb6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fact_check.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h16V5H4V19zM13.41,10.75l1.41,1.42L17.99,9l1.42,1.42L14.82,15L12,12.16L13.41,10.75zM5,7h5v2H5V7zM5,11h5v2H5V11zM5,15h5v2H5V15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,19H4V5h16V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.41,10.42l-1.42,-1.42l-3.17,3.17l-1.41,-1.42l-1.41,1.41l2.82,2.84z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h5v2h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/factory.xml b/compose/material/material/icons/generator/raw-icons/twotone/factory.xml
deleted file mode 100644
index a23e5f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/factory.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12l0,-2.05l-5,2V10l-3,1.32V20h16v-8H12zM9,18H7v-4h2V18zM13,18h-2v-4h2V18zM17,18h-2v-4h2V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,22H2V10l7,-3v2l5,-2l0,3h3l1,-8h3l1,8V22zM12,9.95l-5,2V10l-3,1.32V20h16v-8h-8L12,9.95zM11,18h2v-4h-2V18zM7,18h2v-4H7V18zM17,14h-2v4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/family_restroom.xml b/compose/material/material/icons/generator/raw-icons/twotone/family_restroom.xml
deleted file mode 100644
index cb92359..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/family_restroom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S16,5.11 16,4zM20,22v-6h2.5l-2.54,-7.63C19.68,7.55 18.92,7 18.06,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37l-0.86,2.58C16.26,11.55 17,12.68 17,14v8H20zM12.5,11.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5S11,9.17 11,10S11.67,11.5 12.5,11.5zM5.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2s-2,0.89 -2,2S4.39,6 5.5,6zM7.5,22v-7H9V9c0,-1.1 -0.9,-2 -2,-2H4C2.9,7 2,7.9 2,9v6h1.5v7H7.5zM14,22v-4h1v-4c0,-0.82 -0.68,-1.5 -1.5,-1.5h-2c-0.82,0 -1.5,0.68 -1.5,1.5v4h1v4H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fast_forward.xml b/compose/material/material/icons/generator/raw-icons/twotone/fast_forward.xml
deleted file mode 100644
index 310aca2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fast_forward.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9.86l0,4.28l3.03,-2.14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9.86l0,4.28l3.03,-2.14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18l8.5,-6L4,6V18zM6,9.86L9.03,12L6,14.14V9.86z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,12L13,6v12L21.5,12zM15,9.86L18.03,12L15,14.14V9.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fast_rewind.xml b/compose/material/material/icons/generator/raw-icons/twotone/fast_rewind.xml
deleted file mode 100644
index b0ae8d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fast_rewind.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14.14L9,9.86L5.97,12zM18,14.14L18,9.86L14.97,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6l-8.5,6 8.5,6L11,6zM9,14.14L5.97,12 9,9.86v4.28zM20,6l-8.5,6 8.5,6L20,6zM18,14.14L14.97,12 18,9.86v4.28z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fastfood.xml b/compose/material/material/icons/generator/raw-icons/twotone/fastfood.xml
deleted file mode 100644
index 82697dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fastfood.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21.98c0,0.56 0.45,1.01 1.01,1.01H15c0.56,0 1.01,-0.45 1.01,-1.01V21H1v0.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,10.99c-1.42,0 -3.77,0.46 -4.88,2.01h9.77c-1.12,-1.55 -3.47,-2.01 -4.89,-2.01z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,8.99C4.75,8.99 1,11 1,15h15c0,-4 -3.75,-6.01 -7.5,-6.01zM3.62,13c1.11,-1.55 3.47,-2.01 4.88,-2.01s3.77,0.46 4.88,2.01H3.62zM1,17h15v2H1zM18,5V1h-2v4h-5l0.23,2h9.56l-1.4,14H18v2h1.72c0.84,0 1.53,-0.65 1.63,-1.47L23,5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/favorite.xml b/compose/material/material/icons/generator/raw-icons/twotone/favorite.xml
deleted file mode 100644
index f3a2578..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/favorite.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5c-1.54,0 -3.04,0.99 -3.56,2.36h-1.87C10.54,5.99 9.04,5 7.5,5 5.5,5 4,6.5 4,8.5c0,2.89 3.14,5.74 7.9,10.05l0.1,0.1 0.1,-0.1C16.86,14.24 20,11.39 20,8.5c0,-2 -1.5,-3.5 -3.5,-3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-1.74,0 -3.41,0.81 -4.5,2.09C10.91,3.81 9.24,3 7.5,3 4.42,3 2,5.42 2,8.5c0,3.78 3.4,6.86 8.55,11.54L12,21.35l1.45,-1.32C18.6,15.36 22,12.28 22,8.5 22,5.42 19.58,3 16.5,3zM12.1,18.55l-0.1,0.1 -0.1,-0.1C7.14,14.24 4,11.39 4,8.5 4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5 0,2.89 -3.14,5.74 -7.9,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/favorite_border.xml b/compose/material/material/icons/generator/raw-icons/twotone/favorite_border.xml
deleted file mode 100644
index 3edfe1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/favorite_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-1.74,0 -3.41,0.81 -4.5,2.09C10.91,3.81 9.24,3 7.5,3 4.42,3 2,5.42 2,8.5c0,3.78 3.4,6.86 8.55,11.54L12,21.35l1.45,-1.32C18.6,15.36 22,12.28 22,8.5 22,5.42 19.58,3 16.5,3zM12.1,18.55l-0.1,0.1 -0.1,-0.1C7.14,14.24 4,11.39 4,8.5 4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5 0,2.89 -3.14,5.74 -7.9,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fax.xml b/compose/material/material/icons/generator/raw-icons/twotone/fax.xml
deleted file mode 100644
index d9538d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fax.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10c-0.55,0 -1,0.45 -1,1v7c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-7C6,10.45 5.55,10 5,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6h6v3h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11H8v7h12v-6C20,11.45 19.55,11 19,11zM13,17H9v-5h4V17zM15,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,17 15,17zM15,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S15.55,14 15,14zM18,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S18.55,17 18,17zM18,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S18.55,14 18,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-1V4H8v5H7.22C6.67,8.39 5.89,8 5,8c-1.66,0 -3,1.34 -3,3v7c0,1.66 1.34,3 3,3c0.89,0 1.67,-0.39 2.22,-1H22v-8C22,10.34 20.66,9 19,9zM6,18c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V18zM10,6h6v3h-6V6zM20,18H8v-7h11c0.55,0 1,0.45 1,1V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12h4v5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/featured_play_list.xml b/compose/material/material/icons/generator/raw-icons/twotone/featured_play_list.xml
deleted file mode 100644
index ff69414..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/featured_play_list.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18L21,5L3,5v14zM5,7h9v2L5,9L5,7zM5,10h9v2L5,12v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM5,10h9v2L5,12zM5,7h9v2L5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/featured_video.xml b/compose/material/material/icons/generator/raw-icons/twotone/featured_video.xml
deleted file mode 100644
index cad5489..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/featured_video.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18V5H3v14zM4,6h9v7H4V6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM4,6h9v7L4,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/feed.xml b/compose/material/material/icons/generator/raw-icons/twotone/feed.xml
deleted file mode 100644
index d0822ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/feed.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5H5v14h14V9h-4V5zM7,7h5v2H7V7zM17,17H7v-2h10V17zM17,11v2H7v-2H17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13h10v-2H7V13zM7,17h10v-2H7V17zM16,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8L16,3zM19,19H5V5h10v4h4V19zM12,7H7v2h5V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/feedback.xml b/compose/material/material/icons/generator/raw-icons/twotone/feedback.xml
deleted file mode 100644
index 8735e84..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/feedback.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16L20,16L20,4L4,4v13.17zM11,6h2v4h-2L11,6zM11,12h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM11,12h2v2h-2zM11,6h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/female.xml b/compose/material/material/icons/generator/raw-icons/twotone/female.xml
deleted file mode 100644
index bb480ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/female.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,9.5C17.5,6.46 15.04,4 12,4S6.5,6.46 6.5,9.5c0,2.7 1.94,4.93 4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1C15.56,14.43 17.5,12.2 17.5,9.5zM8.5,9.5C8.5,7.57 10.07,6 12,6s3.5,1.57 3.5,3.5S13.93,13 12,13S8.5,11.43 8.5,9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fence.xml b/compose/material/material/icons/generator/raw-icons/twotone/fence.xml
deleted file mode 100644
index 70415c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fence.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6.83l1,1V10h-2V7.83l0.41,-0.41L16,6.83zM12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41,-0.41L12,6.83zM11,14v-2h2v2H11zM13,16v2h-2v-2H13zM7,7.83l1,-1l0.59,0.59L9,7.83V10H7V7.83zM7,12h2v2H7V12zM7,16h2v2H7V16zM17,18h-2v-2h2V18zM17,14h-2v-2h2V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12v-2h-2V7l-3,-3l-2,2l-2,-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21zM16,6.83l1,1V10h-2V7.83l0.41,-0.41L16,6.83zM12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41,-0.41L12,6.83zM11,14v-2h2v2H11zM13,16v2h-2v-2H13zM7,7.83l1,-1l0.59,0.59L9,7.83V10H7V7.83zM7,12h2v2H7V12zM7,16h2v2H7V16zM17,18h-2v-2h2V18zM17,14h-2v-2h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/festival.xml b/compose/material/material/icons/generator/raw-icons/twotone/festival.xml
deleted file mode 100644
index 8cd64e5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/festival.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.24,14.42C5.2,16.18 5.06,18.14 4.66,20h2.67c0.27,-1.94 0.43,-4.07 0.52,-5.93C7.54,13.9 7.25,13.7 7,13.44C6.53,13.93 5.92,14.27 5.24,14.42z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11H8c0,0.83 0.67,1.5 1.5,1.5S11,11.83 11,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11H3c0,0.83 0.67,1.5 1.5,1.5S6,11.83 6,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.71C10.67,5.85 8.51,7.55 5.89,9h12.23C15.49,7.55 13.33,5.85 12,4.71z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,12.5c0.83,0 1.5,-0.67 1.5,-1.5h-3C18,11.83 18.67,12.5 19.5,12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.5c0.83,0 1.5,-0.67 1.5,-1.5h-3C13,11.83 13.67,12.5 14.5,12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13.44c-0.25,0.25 -0.54,0.45 -0.85,0.62c0.1,1.87 0.26,4 0.52,5.93h2.67c-0.39,-1.86 -0.54,-3.82 -0.57,-5.58C18.08,14.27 17.47,13.93 17,13.44z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c0,0 -5,5 -11,7v2c0,1.49 0.93,2.75 2.24,3.26C3.2,16.76 2.92,19.69 2,22h20c-0.92,-2.31 -1.2,-5.24 -1.24,-7.74C22.07,13.75 23,12.49 23,11V9C17,7 12,2 12,2zM12,4.71c1.33,1.14 3.49,2.84 6.11,4.29H5.89C8.51,7.55 10.67,5.85 12,4.71zM3,11h3c0,0.83 -0.67,1.5 -1.5,1.5S3,11.83 3,11zM7.33,20H4.66c0.39,-1.86 0.54,-3.82 0.57,-5.58c0.68,-0.15 1.29,-0.49 1.76,-0.98c0.25,0.25 0.54,0.45 0.85,0.62C7.76,15.93 7.6,18.06 7.33,20zM8,11h3c0,0.83 -0.67,1.5 -1.5,1.5S8,11.83 8,11zM9.35,20c0.24,-1.83 0.39,-3.78 0.48,-5.53c0.84,-0.08 1.61,-0.45 2.17,-1.02c0.56,0.57 1.32,0.94 2.17,1.02c0.1,1.75 0.24,3.7 0.48,5.53H9.35zM14.5,12.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C16,11.83 15.33,12.5 14.5,12.5zM16.67,20c-0.27,-1.94 -0.43,-4.07 -0.52,-5.93c0.31,-0.17 0.61,-0.37 0.85,-0.62c0.47,0.48 1.08,0.83 1.76,0.98c0.03,1.76 0.18,3.72 0.57,5.58H16.67zM19.5,12.5c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C21,11.83 20.33,12.5 19.5,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fiber_dvr.xml b/compose/material/material/icons/generator/raw-icons/twotone/fiber_dvr.xml
deleted file mode 100644
index bc3da6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fiber_dvr.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11.56v-0.89c0,-0.76 -0.58,-1.33 -1.33,-1.33h-3.11v5.33h1.33v-1.78h1.02l0.76,1.78L20,14.67l-0.8,-1.87c0.44,-0.22 0.8,-0.71 0.8,-1.24zM18.67,11.56h-1.78v-0.89h1.78v0.89zM7.11,9.33L4,9.33v5.33h3.11c0.76,0 1.33,-0.58 1.33,-1.33v-2.67c0,-0.75 -0.57,-1.33 -1.33,-1.33zM7.11,13.33L5.33,13.33v-2.67h1.78v2.67zM14.11,9.33h-1.34l-0.89,3.05L11,9.33L9.66,9.33l1.56,5.34h1.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h18v14H3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v14c0,1.1 0.89,2 2,2h18c1.11,0 2,-0.9 2,-2L23,5c0,-1.11 -0.89,-2 -2,-2zM21,19L3,19L3,5h18v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fiber_manual_record.xml b/compose/material/material/icons/generator/raw-icons/twotone/fiber_manual_record.xml
deleted file mode 100644
index 2d6b017..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fiber_manual_record.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6 -6,2.69 -6,6 2.69,6 6,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c4.42,0 8,-3.58 8,-8s-3.58,-8 -8,-8 -8,3.58 -8,8 3.58,8 8,8zM12,6c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6 2.69,-6 6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fiber_new.xml b/compose/material/material/icons/generator/raw-icons/twotone/fiber_new.xml
deleted file mode 100644
index 47dca4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fiber_new.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.12,14.47L9.12,9.53L8.09,9.53v2.88L6.03,9.53L5,9.53v4.94h1.03v-2.88l2.1,2.88zM13.24,10.57L13.24,9.53h-3.3v4.94h3.3v-1.03h-2.06v-0.91h2.06v-1.04h-2.06v-0.92zM14.06,9.53v4.12c0,0.45 0.37,0.82 0.82,0.82h3.29c0.45,0 0.82,-0.37 0.82,-0.82L18.99,9.53h-1.03v3.71h-0.92v-2.89h-1.03v2.9h-0.93L15.08,9.53h-1.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v12H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fiber_pin.xml b/compose/material/material/icons/generator/raw-icons/twotone/fiber_pin.xml
deleted file mode 100644
index 34320f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fiber_pin.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14.62h1.31v-1.75h1.75c0.74,0 1.31,-0.57 1.31,-1.31v-0.88c0,-0.74 -0.57,-1.31 -1.31,-1.31L5,9.37v5.25zM6.31,10.69h1.75v0.88L6.31,11.57v-0.88zM11.34,9.38h1.31v5.25h-1.31zM14.62,14.62h1.1v-3.06l2.23,3.06L19,14.62L19,9.38h-1.09v3.06l-2.19,-3.06h-1.1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v12H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fiber_smart_record.xml b/compose/material/material/icons/generator/raw-icons/twotone/fiber_smart_record.xml
deleted file mode 100644
index a5c651f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fiber_smart_record.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6 -6,2.69 -6,6 2.69,6 6,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,20c4.42,0 8,-3.58 8,-8s-3.58,-8 -8,-8 -8,3.58 -8,8 3.58,8 8,8zM9,6c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6 2.69,-6 6,-6zM17,4.26v2.09c2.33,0.82 4,3.04 4,5.65s-1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74 0,-3.73 -2.55,-6.85 -6,-7.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/file_copy.xml b/compose/material/material/icons/generator/raw-icons/twotone/file_copy.xml
deleted file mode 100644
index 986695e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/file_copy.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7H8v14h11v-9h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM15,5L8,5c-1.1,0 -1.99,0.9 -1.99,2L6,21c0,1.1 0.89,2 1.99,2L19,23c1.1,0 2,-0.9 2,-2L21,11l-6,-6zM19,21L8,21L8,7h6v5h5v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/file_download.xml b/compose/material/material/icons/generator/raw-icons/twotone/file_download.xml
deleted file mode 100644
index 28c4c0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/file_download.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,11l-1.17,0l0,-6l-2,0l0,6l-1.17,0l2.17,2.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2h-14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4V3H9v6H5l7,7L19,9zM11,11V5h2v6h1.17L12,13.17L9.83,11H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/file_download_done.xml b/compose/material/material/icons/generator/raw-icons/twotone/file_download_done.xml
deleted file mode 100644
index a63575b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/file_download_done.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.13,5.41l-1.41,-1.41l-9.19,9.19l-4.25,-4.24l-1.41,1.41l5.66,5.66z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2h-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/file_download_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/file_download_off.xml
deleted file mode 100644
index 8592684..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/file_download_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5l-2,0l0,3.17l2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17l-2,-2V3h6v6h4l-3.59,3.59L13,10.17V5h-2V8.17zM21.19,21.19L2.81,2.81L1.39,4.22L6.17,9H5l7,7l0.59,-0.59L15.17,18H5v2h12.17l2.61,2.61L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/file_open.xml b/compose/material/material/icons/generator/raw-icons/twotone/file_open.xml
deleted file mode 100644
index a6bcf5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/file_open.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,14l3,0l0,-5l-5,0l0,-5l-7,0l0,16l9,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,22H6c-1.1,0 -2,-0.9 -2,-2V4c0,-1.1 0.9,-2 2,-2h8l6,6v6h-2V9h-5V4H6v16h9V22zM19,21.66l0,-2.24l2.95,2.95l1.41,-1.41L20.41,18h2.24v-2H17v5.66H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/file_present.xml b/compose/material/material/icons/generator/raw-icons/twotone/file_present.xml
deleted file mode 100644
index 984be5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/file_present.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4H6v16h12V8h-4V4zM16,11v4c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V9.5C8,8.12 9.12,7 10.5,7S13,8.12 13,9.5V15h-2V9.5C11,9.22 10.78,9 10.5,9S10,9.22 10,9.5V15c0,1.1 0.9,2 2,2s2,-0.9 2,-2v-4H16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,15c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V9.5C10,9.22 10.22,9 10.5,9S11,9.22 11,9.5V15h2V9.5C13,8.12 11.88,7 10.5,7S8,8.12 8,9.5V15c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-4h-2V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM18,20H6V4h8v4h4V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/file_upload.xml b/compose/material/material/icons/generator/raw-icons/twotone/file_upload.xml
deleted file mode 100644
index 0e6f435..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/file_upload.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,8l1.17,0l0,6l2,0l0,-6l1.17,0l-2.17,-2.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h14v2h-14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10h4v6h6v-6h4l-7,-7L5,10zM13,8v6h-2V8H9.83L12,5.83L14.17,8H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter.xml
deleted file mode 100644
index af6cff4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM11.25,11.47l1.96,2.36 2.75,-3.54L19.5,15h-11l2.75,-3.53z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21c0,1.1 0.9,2 2,2h16v-2L3,21L3,5L1,5v16zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM15.96,10.29l-2.75,3.54 -1.96,-2.36L8.5,15h11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_1.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_1.xml
deleted file mode 100644
index a568a63..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_1.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM12,5h4v10h-2L14,7h-2L12,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,15h2L16,5h-4v2h2zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM1,5v16c0,1.1 0.9,2 2,2h16v-2L3,21L3,5L1,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_2.xml
deleted file mode 100644
index 83eaa48..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_2.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM11,11c0,-1.11 0.9,-2 2,-2h2L15,7h-4L11,5h4c1.1,0 2,0.89 2,2v2c0,1.11 -0.9,2 -2,2h-2v2h4v2h-6v-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h-4v-2h2c1.1,0 2,-0.89 2,-2L17,7c0,-1.11 -0.9,-2 -2,-2h-4v2h4v2h-2c-1.1,0 -2,0.89 -2,2v4h6v-2zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM1,21c0,1.1 0.9,2 2,2h16v-2L3,21L3,5L1,5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_3.xml
deleted file mode 100644
index cc1dd07..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_3.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM11,13h4v-2h-2L13,9h2L15,7h-4L11,5h4c1.1,0 2,0.89 2,2v1.5c0,0.83 -0.67,1.5 -1.5,1.5 0.83,0 1.5,0.67 1.5,1.5L17,13c0,1.11 -0.9,2 -2,2h-4v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM17,13v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1,0 2,-0.89 2,-2zM19,23v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2h16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_4.xml
deleted file mode 100644
index 4616eef..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_4.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L7,3v14h14L21,3zM17,15h-2v-4h-4L11,5h2v4h2L15,5h2v10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,23h16v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2zM7,19h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2zM7,3h14v14L7,17L7,3zM15,9h-2L13,5h-2v6h4v4h2L17,5h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_5.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_5.xml
deleted file mode 100644
index 38c2098..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_5.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM11,13h4v-2h-4L11,5h6v2h-4v2h2c1.1,0 2,0.89 2,2v2c0,1.11 -0.9,2 -2,2h-4v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,23v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2h16zM17,13v-2c0,-1.11 -0.9,-2 -2,-2h-2L13,7h4L17,5h-6v6h4v2h-4v2h4c1.1,0 2,-0.89 2,-2zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_6.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_6.xml
deleted file mode 100644
index f606153..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_6.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM11,7c0,-1.11 0.9,-2 2,-2h4v2h-4v2h2c1.1,0 2,0.89 2,2v2c0,1.11 -0.9,2 -2,2h-2c-1.1,0 -2,-0.89 -2,-2L11,7zM13,11h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM13,15h2c1.1,0 2,-0.89 2,-2v-2c0,-1.11 -0.9,-2 -2,-2h-2L13,7h4L17,5h-4c-1.1,0 -2,0.89 -2,2v6c0,1.11 0.9,2 2,2zM13,11h2v2h-2v-2zM3,23h16v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_7.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_7.xml
deleted file mode 100644
index 3c3c54c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_7.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM11,7L11,5h6v2l-4,8h-2l4,-8h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,23h16v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2zM13,15l4,-8L17,5h-6v2h4l-4,8zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_8.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_8.xml
deleted file mode 100644
index b329238a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_8.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14L21,3L7,3v14zM11,11.5c0,-0.83 0.67,-1.5 1.5,-1.5 -0.83,0 -1.5,-0.67 -1.5,-1.5L11,7c0,-1.11 0.9,-2 2,-2h2c1.1,0 2,0.89 2,2v1.5c0,0.83 -0.67,1.5 -1.5,1.5 0.83,0 1.5,0.67 1.5,1.5L17,13c0,1.11 -0.9,2 -2,2h-2c-1.1,0 -2,-0.89 -2,-2v-1.5zM13,7h2v2h-2zM13,11h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM3,23h16v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2zM13,15h2c1.1,0 2,-0.89 2,-2v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L17,7c0,-1.11 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.89 -2,2v1.5c0,0.83 0.67,1.5 1.5,1.5 -0.83,0 -1.5,0.67 -1.5,1.5L11,13c0,1.11 0.9,2 2,2zM13,7h2v2h-2L13,7zM13,11h2v2h-2v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_9.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_9.xml
deleted file mode 100644
index 30affb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_9.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h2v2h-2zM7,17h14L21,3L7,3v14zM11,13h4v-2h-2c-1.1,0 -2,-0.89 -2,-2L11,7c0,-1.11 0.9,-2 2,-2h2c1.1,0 2,0.89 2,2v6c0,1.11 -0.9,2 -2,2h-4v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14zM3,23h16v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2zM17,13L17,7c0,-1.11 -0.9,-2 -2,-2h-2c-1.1,0 -2,0.89 -2,2v2c0,1.11 0.9,2 2,2h2v2h-4v2h4c1.1,0 2,-0.89 2,-2zM13,9L13,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_9_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_9_plus.xml
deleted file mode 100644
index 2ee507f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_9_plus.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h14v-6h-2v2h-2v-2h-2L15,9h2L17,7h2v2h2L21,3L7,3v14zM9,12h3v-1h-1c-1.1,0 -2,-0.89 -2,-2L9,8c0,-1.11 0.9,-2 2,-2h1c1.1,0 2,0.89 2,2v4c0,1.11 -0.9,2 -2,2L9,14v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,21H3V5H1v16c0,1.1 0.9,2 2,2h16v-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h1v1h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6h-1c-1.1,0 -2,0.89 -2,2v1c0,1.11 0.9,2 2,2h1v1L9,12v2h3c1.1,0 2,-0.89 2,-2L14,8c0,-1.11 -0.9,-2 -2,-2zM12,9h-1L11,8h1v1zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,9h-2L19,7h-2v2h-2v2h2v2h2v-2h2v6L7,17L7,3h14v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_alt.xml
deleted file mode 100644
index 03834c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6h10l-5.01,6.3L7,6zM4.25,5.61C6.27,8.2 10,13 10,13v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-6c0,0 3.72,-4.8 5.74,-7.39C20.25,4.95 19.78,4 18.95,4H5.04C4.21,4 3.74,4.95 4.25,5.61z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6l10,0l-5.01,6.3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_alt_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_alt_off.xml
deleted file mode 100644
index 5824822..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_alt_off.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.83,6l8.12,0l-3.57,4.55z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.95,6l-3.57,4.55l1.43,1.43c1.03,-1.31 4.98,-6.37 4.98,-6.37C20.3,4.95 19.83,4 19,4H6.83l2,2H16.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L10,13v6c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-2.17l5.78,5.78l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_b_and_w.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_b_and_w.xml
deleted file mode 100644
index 314510e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_b_and_w.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5h-7v6l7,8zM12,19v-8l-7,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,19L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM12,19L5,19l7,-8L12,5h7v14l-7,-8v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_center_focus.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_center_focus.xml
deleted file mode 100644
index 93f269b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_center_focus.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h4L9,3L5,3c-1.1,0 -2,0.9 -2,2v4h2L5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM19,3h-4v2h4v4h2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19h-4v2h4c1.1,0 2,-0.9 2,-2v-4h-2v4zM5,15L3,15v4c0,1.1 0.9,2 2,2h4v-2L5,19v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_drama.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_drama.xml
deleted file mode 100644
index 49689cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_drama.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-1.5v-0.5C17.5,8.47 15.03,6 12,6c-1.8,0 -3.39,0.88 -4.4,2.22 2.54,0.7 4.4,3.02 4.4,5.78h-2c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4 1.79,4 4,4h13c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.61,5.64 5.36,8.04 2.35,8.36 0,10.9 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4h2c0,-2.76 -1.86,-5.08 -4.4,-5.78C8.61,6.88 10.2,6 12,6c3.03,0 5.5,2.47 5.5,5.5v0.5H19c1.65,0 3,1.35 3,3s-1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_frames.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_frames.xml
deleted file mode 100644
index b014792..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_frames.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10h8v6H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-4l-4,-4 -4,4L4,4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,6h4.52l3.52,-3.5L15.52,6L20,6v14zM6,18h12L18,8L6,8v10zM8,10h8v6L8,16v-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_hdr.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_hdr.xml
deleted file mode 100644
index eaac908..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_hdr.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h3.04l-1.52,-2.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.63l1.25,1.67L14,9.33 19,16h-8.46l-4.01,-5.37L1,18h22L14,6l-4.22,5.63zM5,16l1.52,-2.03L8.04,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_list.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_list.xml
deleted file mode 100644
index 454bd7d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_list.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18h4v-2h-4v2zM3,6v2h18L21,6L3,6zM6,13h12v-2L6,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_list_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_list_off.xml
deleted file mode 100644
index 2882f30..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_list_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8H21V6H8.83L10.83,8zM15.83,13H18v-2h-4.17L15.83,13zM14,16.83V18h-4v-2h3.17l-3,-3H6v-2h2.17l-3,-3H3V6h0.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L14,16.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_none.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_none.xml
deleted file mode 100644
index 8d31dce..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_none.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h14v14H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,23h16v-2L3,21L3,5L1,5v16c0,1.1 0.9,2 2,2zM21,1L7,1c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM21,17L7,17L7,3h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_tilt_shift.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_tilt_shift.xml
deleted file mode 100644
index 756e674..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_tilt_shift.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2.05v2.02c1.46,0.18 2.79,0.76 3.9,1.62l1.42,-1.43C16.84,3.05 15.01,2.25 13,2.05zM13,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.43,-1.43c-1.1,0.86 -2.43,1.44 -3.89,1.62zM4.26,18.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89L2.05,13c0.2,2.01 1,3.84 2.21,5.32zM2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11zM18.31,7.1c0.86,1.11 1.44,2.44 1.62,3.9h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32L18.31,7.1zM7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43zM21.95,13.01h-2.02c-0.18,1.45 -0.76,2.78 -1.62,3.89l1.43,1.43c1.21,-1.48 2.01,-3.32 2.21,-5.32zM9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3 -1.34,-3 -3,-3 -3,1.34 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/filter_vintage.xml b/compose/material/material/icons/generator/raw-icons/twotone/filter_vintage.xml
deleted file mode 100644
index e4dda9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/filter_vintage.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.69,7.61c-0.7,0 -1.39,0.19 -2,0.54 -0.16,0.09 -0.32,0.21 -0.54,0.37l-1.13,0.9c0.31,0.36 0.56,0.78 0.72,1.24l1.38,-0.52c0.22,-0.08 0.41,-0.17 0.58,-0.27 0.84,-0.49 1.47,-1.27 1.78,-2.18 -0.26,-0.06 -0.52,-0.08 -0.79,-0.08zM17.13,13.87l-1.38,-0.52c-0.16,0.45 -0.4,0.85 -0.7,1.21l1.15,0.96c0.15,0.12 0.31,0.24 0.49,0.34 0.61,0.35 1.3,0.54 1.99,0.54 0.27,0 0.53,-0.03 0.8,-0.08 -0.31,-0.91 -0.94,-1.69 -1.78,-2.18 -0.16,-0.1 -0.35,-0.19 -0.57,-0.27zM11,6c0,0.19 0.02,0.41 0.05,0.63l0.23,1.44c0.24,-0.04 0.48,-0.07 0.72,-0.07s0.48,0.03 0.71,0.07l0.23,-1.44c0.04,-0.22 0.06,-0.44 0.06,-0.63 0,-0.98 -0.37,-1.91 -1,-2.63 -0.63,0.72 -1,1.65 -1,2.63zM12.71,15.93c-0.23,0.04 -0.47,0.07 -0.71,0.07 -0.25,0 -0.49,-0.03 -0.72,-0.07l-0.22,1.42c-0.04,0.24 -0.06,0.45 -0.06,0.65 0,0.98 0.37,1.91 1,2.63 0.63,-0.72 1,-1.66 1,-2.63 0,-0.19 -0.02,-0.41 -0.05,-0.63l-0.24,-1.44zM6.87,10.12l1.38,0.52c0.16,-0.44 0.4,-0.85 0.7,-1.2L7.8,8.49c-0.17,-0.15 -0.34,-0.27 -0.49,-0.35 -0.62,-0.36 -1.3,-0.54 -2,-0.54 -0.27,0 -0.54,0.03 -0.81,0.08 0.3,0.91 0.93,1.68 1.79,2.18 0.17,0.09 0.36,0.18 0.58,0.26zM6.87,13.86c-0.22,0.08 -0.41,0.17 -0.58,0.27 -0.84,0.49 -1.47,1.27 -1.78,2.18 0.26,0.05 0.52,0.08 0.79,0.08 0.7,0 1.39,-0.19 2,-0.54 0.16,-0.09 0.32,-0.21 0.54,-0.37l1.13,-0.89c-0.31,-0.36 -0.56,-0.78 -0.72,-1.24l-1.38,0.51z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.7,12.4c-0.28,-0.16 -0.57,-0.29 -0.86,-0.4 0.29,-0.11 0.58,-0.24 0.86,-0.4 1.92,-1.11 2.99,-3.12 3,-5.19 -0.91,-0.52 -1.95,-0.8 -3.01,-0.8 -1.02,0 -2.05,0.26 -2.99,0.8 -0.28,0.16 -0.54,0.35 -0.78,0.54 0.05,-0.31 0.08,-0.63 0.08,-0.95 0,-2.22 -1.21,-4.15 -3,-5.19C10.21,1.85 9,3.78 9,6c0,0.32 0.03,0.64 0.08,0.95 -0.24,-0.2 -0.5,-0.39 -0.78,-0.55 -0.94,-0.54 -1.97,-0.8 -2.99,-0.8 -1.05,0 -2.1,0.28 -3.01,0.8 0,2.07 1.07,4.08 3,5.19 0.28,0.16 0.57,0.29 0.86,0.4 -0.29,0.11 -0.58,0.24 -0.86,0.4 -1.92,1.11 -2.99,3.12 -3,5.19 0.91,0.52 1.95,0.8 3.01,0.8 1.02,0 2.05,-0.26 2.99,-0.8 0.28,-0.16 0.54,-0.35 0.78,-0.54 -0.05,0.32 -0.08,0.64 -0.08,0.96 0,2.22 1.21,4.15 3,5.19 1.79,-1.04 3,-2.97 3,-5.19 0,-0.32 -0.03,-0.64 -0.08,-0.95 0.24,0.2 0.5,0.38 0.78,0.54 0.94,0.54 1.97,0.8 2.99,0.8 1.05,0 2.1,-0.28 3.01,-0.8 -0.01,-2.07 -1.08,-4.08 -3,-5.19zM4.51,7.68c0.26,-0.06 0.53,-0.08 0.8,-0.08 0.69,0 1.38,0.18 1.99,0.54 0.15,0.09 0.32,0.2 0.49,0.35l1.15,0.96c-0.3,0.36 -0.53,0.76 -0.7,1.2l-1.38,-0.52c-0.21,-0.09 -0.4,-0.18 -0.56,-0.27 -0.87,-0.5 -1.49,-1.27 -1.79,-2.18zM7.84,15.47c-0.21,0.17 -0.38,0.29 -0.54,0.37 -0.61,0.35 -1.3,0.54 -2,0.54 -0.27,0 -0.53,-0.03 -0.79,-0.08 0.31,-0.91 0.94,-1.69 1.78,-2.18 0.17,-0.1 0.36,-0.18 0.58,-0.27l1.38,-0.52c0.16,0.46 0.41,0.88 0.72,1.24l-1.13,0.9zM12,3.37c0.63,0.72 1,1.66 1,2.63 0,0.19 -0.02,0.41 -0.05,0.63l-0.23,1.44C12.48,8.03 12.24,8 12,8s-0.48,0.03 -0.71,0.07l-0.23,-1.44C11.02,6.41 11,6.19 11,6c0,-0.98 0.37,-1.91 1,-2.63zM12,20.63c-0.63,-0.72 -1,-1.66 -1,-2.63 0,-0.2 0.02,-0.41 0.06,-0.65l0.22,-1.42c0.23,0.04 0.47,0.07 0.72,0.07 0.24,0 0.48,-0.03 0.71,-0.07l0.23,1.44c0.04,0.22 0.06,0.44 0.06,0.63 0,0.98 -0.37,1.91 -1,2.63zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM16.16,8.52c0.21,-0.17 0.38,-0.29 0.54,-0.37 0.61,-0.35 1.3,-0.54 2,-0.54 0.27,0 0.53,0.03 0.79,0.08 -0.31,0.91 -0.94,1.69 -1.78,2.18 -0.17,0.1 -0.36,0.18 -0.58,0.27l-1.38,0.52c-0.17,-0.46 -0.41,-0.87 -0.72,-1.24l1.13,-0.9zM18.69,16.39c-0.69,0 -1.38,-0.18 -1.99,-0.54 -0.18,-0.1 -0.34,-0.22 -0.49,-0.34l-1.15,-0.96c0.3,-0.36 0.54,-0.76 0.7,-1.21l1.38,0.52c0.22,0.08 0.41,0.17 0.57,0.26 0.85,0.49 1.47,1.27 1.78,2.18 -0.27,0.07 -0.54,0.09 -0.8,0.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/find_in_page.xml b/compose/material/material/icons/generator/raw-icons/twotone/find_in_page.xml
deleted file mode 100644
index d98e83e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/find_in_page.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4v16h11.6l-2.85,-2.85c-0.83,0.55 -1.79,0.83 -2.75,0.83 -1.28,0 -2.55,-0.49 -3.53,-1.46 -1.95,-1.95 -1.95,-5.11 0,-7.05C9.45,8.49 10.72,8 12,8c1.28,0 2.55,0.49 3.53,1.46 1.71,1.71 1.92,4.34 0.64,6.28L18,17.58V9l-5,-5H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,17.58l-1.84,-1.84c1.28,-1.94 1.07,-4.57 -0.64,-6.28C14.55,8.49 13.28,8 12,8c-1.28,0 -2.55,0.49 -3.53,1.46 -1.95,1.95 -1.95,5.11 0,7.05 0.97,0.97 2.25,1.46 3.53,1.46 0.96,0 1.92,-0.28 2.75,-0.83L17.6,20L6,20L6,4h7l5,5v8.58zM14.99,12.99c0,0.8 -0.31,1.55 -0.88,2.11 -0.56,0.56 -1.31,0.88 -2.11,0.88s-1.55,-0.31 -2.11,-0.88c-0.56,-0.56 -0.88,-1.31 -0.88,-2.11s0.31,-1.55 0.88,-2.11S11.2,10 12,10s1.55,0.31 2.11,0.88c0.57,0.56 0.88,1.31 0.88,2.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/find_replace.xml b/compose/material/material/icons/generator/raw-icons/twotone/find_replace.xml
deleted file mode 100644
index c4ad579..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/find_replace.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6c1.38,0 2.63,0.56 3.54,1.46L12,10h6L18,4l-2.05,2.05C14.68,4.78 12.93,4 11,4c-3.53,0 -6.43,2.61 -6.92,6L6.1,10c0.46,-2.28 2.48,-4 4.9,-4zM16.64,15.14c0.66,-0.9 1.12,-1.97 1.28,-3.14L15.9,12c-0.46,2.28 -2.48,4 -4.9,4 -1.38,0 -2.63,-0.56 -3.54,-1.46L10,12L4,12v6l2.05,-2.05C7.32,17.22 9.07,18 11,18c1.55,0 2.98,-0.51 4.14,-1.36L20,21.49 21.49,20l-4.85,-4.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fingerprint.xml b/compose/material/material/icons/generator/raw-icons/twotone/fingerprint.xml
deleted file mode 100644
index 2dfd992..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fingerprint.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.81,4.47c-0.08,0 -0.16,-0.02 -0.23,-0.06C15.66,3.42 14,3 12.01,3c-1.98,0 -3.86,0.47 -5.57,1.41 -0.24,0.13 -0.54,0.04 -0.68,-0.2 -0.13,-0.24 -0.04,-0.55 0.2,-0.68C7.82,2.52 9.86,2 12.01,2c2.13,0 3.99,0.47 6.03,1.52 0.25,0.13 0.34,0.43 0.21,0.67 -0.09,0.18 -0.26,0.28 -0.44,0.28zM3.5,9.72c-0.1,0 -0.2,-0.03 -0.29,-0.09 -0.23,-0.16 -0.28,-0.47 -0.12,-0.7 0.99,-1.4 2.25,-2.5 3.75,-3.27C9.98,4.04 14,4.03 17.15,5.65c1.5,0.77 2.76,1.86 3.75,3.25 0.16,0.22 0.11,0.54 -0.12,0.7 -0.23,0.16 -0.54,0.11 -0.7,-0.12 -0.9,-1.26 -2.04,-2.25 -3.39,-2.94 -2.87,-1.47 -6.54,-1.47 -9.4,0.01 -1.36,0.7 -2.5,1.7 -3.4,2.96 -0.08,0.14 -0.23,0.21 -0.39,0.21zM9.75,21.79c-0.13,0 -0.26,-0.05 -0.35,-0.15 -0.87,-0.87 -1.34,-1.43 -2.01,-2.64 -0.69,-1.23 -1.05,-2.73 -1.05,-4.34 0,-2.97 2.54,-5.39 5.66,-5.39s5.66,2.42 5.66,5.39c0,0.28 -0.22,0.5 -0.5,0.5s-0.5,-0.22 -0.5,-0.5c0,-2.42 -2.09,-4.39 -4.66,-4.39s-4.66,1.97 -4.66,4.39c0,1.44 0.32,2.77 0.93,3.85 0.64,1.15 1.08,1.64 1.85,2.42 0.19,0.2 0.19,0.51 0,0.71 -0.11,0.1 -0.24,0.15 -0.37,0.15zM16.92,19.94c-1.19,0 -2.24,-0.3 -3.1,-0.89 -1.49,-1.01 -2.38,-2.65 -2.38,-4.39 0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5c0,1.41 0.72,2.74 1.94,3.56 0.71,0.48 1.54,0.71 2.54,0.71 0.24,0 0.64,-0.03 1.04,-0.1 0.27,-0.05 0.53,0.13 0.58,0.41 0.05,0.27 -0.13,0.53 -0.41,0.58 -0.57,0.11 -1.07,0.12 -1.21,0.12zM14.91,22c-0.04,0 -0.09,-0.01 -0.13,-0.02 -1.59,-0.44 -2.63,-1.03 -3.72,-2.1 -1.4,-1.39 -2.17,-3.24 -2.17,-5.22 0,-1.62 1.38,-2.94 3.08,-2.94s3.08,1.32 3.08,2.94c0,1.07 0.93,1.94 2.08,1.94s2.08,-0.87 2.08,-1.94c0,-3.77 -3.25,-6.83 -7.25,-6.83 -2.84,0 -5.44,1.58 -6.61,4.03 -0.39,0.81 -0.59,1.76 -0.59,2.8 0,0.78 0.07,2.01 0.67,3.61 0.1,0.26 -0.03,0.55 -0.29,0.64 -0.26,0.1 -0.55,-0.04 -0.64,-0.29 -0.49,-1.31 -0.73,-2.61 -0.73,-3.96 0,-1.2 0.23,-2.29 0.68,-3.24 1.33,-2.79 4.28,-4.6 7.51,-4.6 4.55,0 8.25,3.51 8.25,7.83 0,1.62 -1.38,2.94 -3.08,2.94s-3.08,-1.32 -3.08,-2.94c0,-1.07 -0.93,-1.94 -2.08,-1.94s-2.08,0.87 -2.08,1.94c0,1.71 0.66,3.31 1.87,4.51 0.95,0.94 1.86,1.46 3.27,1.85 0.27,0.07 0.42,0.35 0.35,0.61 -0.05,0.23 -0.26,0.38 -0.47,0.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fire_extinguisher.xml b/compose/material/material/icons/generator/raw-icons/twotone/fire_extinguisher.xml
deleted file mode 100644
index 1ebb226..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fire_extinguisher.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10v1c0,1.1 -0.9,2 -2,2H9c-1.1,0 -2,-0.9 -2,-2V19zM7,18h10v-5H7V18zM17,3v6l-3.15,-0.66c-0.01,0 -0.01,0.01 -0.02,0.02c1.55,0.62 2.72,1.98 3.07,3.64H7.1c0.34,-1.66 1.52,-3.02 3.07,-3.64c-0.33,-0.26 -0.6,-0.58 -0.8,-0.95L5,6.5v-1l4.37,-0.91C9.87,3.65 10.86,3 12,3c0.7,0 1.34,0.25 1.85,0.66L17,3zM13,6c-0.03,-0.59 -0.45,-1 -1,-1s-1,0.45 -1,1s0.45,1 1,1S13,6.55 13,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fire_hydrant_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/fire_hydrant_alt.xml
deleted file mode 100644
index 44fc7ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fire_hydrant_alt.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-1.47,0 -2.75,0.81 -3.44,2h6.89C14.75,4.81 13.47,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8H8v5H5v2h3v5h8v-5h3v-2h-3V8zM12,17.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,17.5 12,17.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.5c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S13.93,10.5 12,10.5zM12,15.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,15.5 12,15.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-1V8h2V6h-2.35C16.83,3.67 14.61,2 12,2S7.17,3.67 6.35,6H4v2h2v3H5c-1.1,0 -2,0.9 -2,2v2c0,1.1 0.9,2 2,2h1v3H4v2h16v-2h-2v-3h1c1.1,0 2,-0.9 2,-2v-2C21,11.9 20.1,11 19,11zM12,4c1.47,0 2.75,0.81 3.44,2H8.56C9.25,4.81 10.53,4 12,4zM19,15h-3v5H8v-5H5v-2h3V8h8v5h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fire_truck.xml b/compose/material/material/icons/generator/raw-icons/twotone/fire_truck.xml
deleted file mode 100644
index 6dce035..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fire_truck.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,16h1.78c0.55,-0.61 1.34,-1 2.22,-1s1.67,0.39 2.22,1H12v-3H3V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,16h0.78c0.55,-0.61 1.34,-1 2.22,-1s1.67,0.39 2.22,1H21v-3h-7V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.9,10.69l-1.44,-4.32C21.18,5.55 20.42,5 19.56,5H19V4c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v1h-2c-1.1,0 -2,0.9 -2,2v4H1v5c0,1.1 0.9,2 2,2h1c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4c0,1.66 1.34,3 3,3s3,-1.34 3,-3h3v-6.68C23,11.11 22.97,10.9 22.9,10.69zM7,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,19 7,19zM12,16H9.22C8.67,15.39 7.89,15 7,15s-1.67,0.39 -2.22,1H3v-3h9V16zM14,7h5.56l1.33,4H14V7zM17,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,19 17,19zM21,16h-1.78c-0.55,-0.61 -1.34,-1 -2.22,-1s-1.67,0.39 -2.22,1H14v-3h7V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5zM5.25,8.5H3.5v-2h1.75V8.5zM8.5,8.5H6.75v-2H8.5V8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fireplace.xml b/compose/material/material/icons/generator/raw-icons/twotone/fireplace.xml
deleted file mode 100644
index f506a8bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fireplace.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h2v-2h2.23c-0.75,-0.93 -1.2,-2.04 -1.23,-3c-0.02,-0.53 -0.73,-4.43 6,-8c0,0 -0.8,2.61 2.15,4.63C15.91,12.15 17,13.11 17,15c0,1.13 -0.39,2.16 -1.02,3H18v2h2V4H4V20z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,12.46c-0.15,0.42 -0.15,0.82 -0.08,1.28c0.1,0.55 0.33,1.04 0.2,1.6c-0.13,0.59 -0.77,1.38 -1.53,1.63c1.28,1.05 3.2,0.37 3.39,-1.32C14.16,14.11 12.55,13.67 12.01,12.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,2v20h20V2H2zM12,18c-1.58,0 -2.97,-1.88 -3,-3.06c0,-0.05 -0.01,-0.13 -0.01,-0.22c-0.13,-1.73 1,-3.2 2.47,-4.37c0.47,1.01 1.27,2.03 2.57,2.92C14.61,13.69 15,14.13 15,15C15,16.65 13.65,18 12,18zM20,20h-2v-2h-2.02c0.63,-0.84 1.02,-1.87 1.02,-3c0,-1.89 -1.09,-2.85 -1.85,-3.37C12.2,9.61 13,7 13,7c-6.73,3.57 -6.02,7.47 -6,8c0.03,0.96 0.49,2.07 1.23,3H6v2H4V4h16V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/first_page.xml b/compose/material/material/icons/generator/raw-icons/twotone/first_page.xml
deleted file mode 100644
index 81068b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/first_page.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.41,16.59L13.82,12l4.59,-4.59L17,6l-6,6 6,6 1.41,-1.41zM6,6h2v12H6V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fit_screen.xml b/compose/material/material/icons/generator/raw-icons/twotone/fit_screen.xml
deleted file mode 100644
index 3b4e5f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fit_screen.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10h8v4h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,16h12V8H6V16zM8,10h8v4H8V10zM4,15H2v3c0,1.1 0.9,2 2,2h3v-2H4V15zM4,6h3V4H4C2.9,4 2,4.9 2,6v3h2V6zM20,4h-3v2h3v3h2V6C22,4.9 21.1,4 20,4zM20,18h-3v2h3c1.1,0 2,-0.9 2,-2v-3h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fitbit.xml b/compose/material/material/icons/generator/raw-icons/twotone/fitbit.xml
deleted file mode 100644
index da71490..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fitbit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.89,13.89c1.04,0 1.89,-0.85 1.89,-1.89s-0.85,-1.89 -1.89,-1.89C18.85,10.11 18,10.96 18,12S18.85,13.89 19.89,13.89zM15.65,13.68c0.93,0 1.68,-0.75 1.68,-1.68s-0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68S14.72,13.68 15.65,13.68zM15.65,9.42c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,8.67 14.72,9.42 15.65,9.42zM15.65,17.93c0.93,0 1.68,-0.75 1.68,-1.68c0,-0.93 -0.75,-1.68 -1.68,-1.68c-0.93,0 -1.68,0.75 -1.68,1.68C13.97,17.17 14.72,17.93 15.65,17.93zM11.41,13.47c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,13.47 11.41,13.47zM11.41,9.21c0.81,0 1.47,-0.66 1.47,-1.47s-0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,9.21 11.41,9.21zM11.41,17.73c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,17.07 10.59,17.73 11.41,17.73zM11.41,22c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.81 -0.66,-1.47 -1.47,-1.47c-0.81,0 -1.47,0.66 -1.47,1.47C9.93,21.34 10.59,22 11.41,22zM11.41,4.94c0.81,0 1.47,-0.66 1.47,-1.47S12.22,2 11.41,2c-0.81,0 -1.47,0.66 -1.47,1.47S10.59,4.94 11.41,4.94zM7.16,13.26c0.7,0 1.26,-0.57 1.26,-1.26s-0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26S6.46,13.26 7.16,13.26zM7.16,17.51c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,16.94 6.46,17.51 7.16,17.51zM7.16,9.02c0.7,0 1.26,-0.57 1.26,-1.26c0,-0.7 -0.57,-1.26 -1.26,-1.26c-0.7,0 -1.26,0.57 -1.26,1.26C5.9,8.45 6.46,9.02 7.16,9.02zM3.29,13.05c0.58,0 1.05,-0.47 1.05,-1.05s-0.47,-1.05 -1.05,-1.05c-0.58,0 -1.05,0.47 -1.05,1.05S2.71,13.05 3.29,13.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fitness_center.xml b/compose/material/material/icons/generator/raw-icons/twotone/fitness_center.xml
deleted file mode 100644
index 1d166b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fitness_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.57,14.86L22,13.43 20.57,12 17,15.57 8.43,7 12,3.43 10.57,2 9.14,3.43 7.71,2 5.57,4.14 4.14,2.71 2.71,4.14l1.43,1.43L2,7.71l1.43,1.43L2,10.57 3.43,12 7,8.43 15.57,17 12,20.57 13.43,22l1.43,-1.43L16.29,22l2.14,-2.14 1.43,1.43 1.43,-1.43 -1.43,-1.43L22,16.29l-1.43,-1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flag.xml b/compose/material/material/icons/generator/raw-icons/twotone/flag.xml
deleted file mode 100644
index e7c52b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flag.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.36,6H7v6h7.24l0.4,2H18V8h-5.24z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.4,6L14,4L5,4v17h2v-7h5.6l0.4,2h7L20,6h-5.6zM18,14h-3.36l-0.4,-2L7,12L7,6h5.36l0.4,2L18,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flag_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/flag_circle.xml
deleted file mode 100644
index 71059be..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flag_circle.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM13,15l-1,-2H9.5v5H8V7h6l1,2h3v6H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9l-1,-2H8v11h1.5v-5H12l1,2h5V9H15zM16.5,13.5h-2.57l-1,-2H9.5v-3h3.57l1,2h2.43V13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flaky.xml b/compose/material/material/icons/generator/raw-icons/twotone/flaky.xml
deleted file mode 100644
index bbaaa70..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flaky.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.05,17.58l-0.01,0.01l-2.4,-2.4l1.06,-1.06l1.35,1.35L16.54,13l1.06,1.06l-3.54,3.54L14.05,17.58zM12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM7.34,6.28l1.41,1.41l1.41,-1.41l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06,-1.06l1.41,-1.41L6.28,7.34L7.34,6.28zM12,20c-2.2,0 -4.2,-0.9 -5.7,-2.3L17.7,6.3C19.1,7.8 20,9.8 20,12C20,16.4 16.4,20 12,20z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flare.xml b/compose/material/material/icons/generator/raw-icons/twotone/flare.xml
deleted file mode 100644
index 61ce0e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flare.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.644,7.05L7.05,5.645l2.123,2.122 -1.408,1.407zM11,1h2v6h-2zM16.242,14.834l2.12,2.12 -1.406,1.408 -2.12,-2.12zM14.834,7.76l2.12,-2.123 1.41,1.407 -2.123,2.122zM9.166,16.242l-2.122,2.12 -1.407,-1.406 2.122,-2.122zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM11,17h2v6h-2zM1,11h6v2L1,13zM17,11h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flash_auto.xml b/compose/material/material/icons/generator/raw-icons/twotone/flash_auto.xml
deleted file mode 100644
index 82ee0e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flash_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2v12h3v9l7,-12L9,11l4,-9zM17,2l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L19,2h-2zM16.85,7.65L18,4l1.15,3.65h-2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flash_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/flash_off.xml
deleted file mode 100644
index 01dae3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flash_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h-3.61l2.28,2.28zM17,2L7,2v1.61l6.13,6.13zM3.41,2.86L2,4.27l5,5L7,13h3v9l3.58,-6.15L17.73,20l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flash_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/flash_on.xml
deleted file mode 100644
index b69402d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flash_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h-4l3,-8H7v11h3v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flashlight_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/flashlight_off.xml
deleted file mode 100644
index b4ae05d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flashlight_off.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l-6.17,0l4.17,4.17l0,-0.77l2,-3.01z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.83l0,7.17l4,0l0,-3.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5l0,-1l-9.17,0l1,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41,-1.41L2.81,2.81zM14,20h-4v-7.17l4,4V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4l0,1l-8.17,0l2,2l6.17,0l0,0.39l-2,3.01l0,0.77l2,2l0,-2.17l2,-3l0,-6l-12,0l0,1.17l0.83,0.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flashlight_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/flashlight_on.xml
deleted file mode 100644
index a876e9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flashlight_on.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.39l2,3V20h4v-9.6l2,-3.01V7H8V7.39zM12,12.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5S11.17,12.5 12,12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4h8v1h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2v6l2,3v11h8V11l2,-3V2H6zM16,7.39l-2,3.01V20h-4v-9.61l-2,-3V7h8V7.39zM16,5H8V4h8V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flatware.xml b/compose/material/material/icons/generator/raw-icons/twotone/flatware.xml
deleted file mode 100644
index ffb2965..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flatware.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.08c0,1.77 -0.84,3.25 -2,3.82V21h-2V10.9c-1.16,-0.57 -2,-2.05 -2,-3.82C10.01,4.83 11.35,3 13,3C14.66,3 16,4.83 16,7.08zM17,3v18h2v-8h2V7C21,5.24 19.76,3 17,3zM8.28,3c-0.4,0 -0.72,0.32 -0.72,0.72V7H6.72V3.72C6.72,3.32 6.4,3 6,3S5.28,3.32 5.28,3.72V7H4.44V3.72C4.44,3.32 4.12,3 3.72,3S3,3.32 3,3.72V9c0,1.1 0.9,2 2,2v10h2V11c1.1,0 2,-0.9 2,-2V3.72C9,3.32 8.68,3 8.28,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flight.xml b/compose/material/material/icons/generator/raw-icons/twotone/flight.xml
deleted file mode 100644
index 74ab4a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19l-2,1.5V22l3.5,-1 3.5,1v-1.5L13,19v-5.5l8,2.5v-2l-8,-5V3.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,2.67 10,3.5V9l-8,5v2l8,-2.5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flight_class.xml b/compose/material/material/icons/generator/raw-icons/twotone/flight_class.xml
deleted file mode 100644
index 64f287b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flight_class.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6h2v5h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-2c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2V6C18,4.9 17.1,4 16,4zM16,11h-2V6h2V11zM9.5,16H18v2H9.49c-0.88,0 -1.66,-0.58 -1.92,-1.43L5,8V4h2v4L9.5,16zM8,19h10v2H8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flight_land.xml b/compose/material/material/icons/generator/raw-icons/twotone/flight_land.xml
deleted file mode 100644
index af88aa2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flight_land.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19v-2zM19.34,15.85c0.8,0.21 1.62,-0.26 1.84,-1.06 0.21,-0.8 -0.26,-1.62 -1.06,-1.84l-5.31,-1.42 -2.76,-9.02L10.12,2v8.28L5.15,8.95l-0.93,-2.32 -1.45,-0.39v5.17l16.57,4.44z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flight_takeoff.xml b/compose/material/material/icons/generator/raw-icons/twotone/flight_takeoff.xml
deleted file mode 100644
index 21e1fac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flight_takeoff.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.5,19h19v2h-19v-2zM22.07,9.64c-0.21,-0.8 -1.04,-1.28 -1.84,-1.06L14.92,10l-6.9,-6.43 -1.93,0.51 4.14,7.17 -4.97,1.33 -1.97,-1.54 -1.45,0.39 2.59,4.49L21,11.49c0.81,-0.23 1.28,-1.05 1.07,-1.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flip.xml b/compose/material/material/icons/generator/raw-icons/twotone/flip.xml
deleted file mode 100644
index f2584f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flip.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h2v2h-2zM19,21c1.1,0 2,-0.9 2,-2h-2v2zM19,15h2v2h-2zM19,11h2v2h-2zM9,5L9,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h4v-2L5,19L5,5h4zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM11,1h2v22h-2zM15,3h2v2h-2zM15,19h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flip_camera_android.xml b/compose/material/material/icons/generator/raw-icons/twotone/flip_camera_android.xml
deleted file mode 100644
index 5deaaca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flip_camera_android.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S9,10.34 9,12zM13,12c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1s0.45,-1 1,-1S13,11.45 13,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8H5.09C6.47,5.61 9.05,4 12,4c3.72,0 6.85,2.56 7.74,6h2.06c-0.93,-4.56 -4.96,-8 -9.8,-8C8.73,2 5.82,3.58 4,6.01V4H2v6h6V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14v2h2.91c-1.38,2.39 -3.96,4 -6.91,4c-3.72,0 -6.85,-2.56 -7.74,-6H2.2c0.93,4.56 4.96,8 9.8,8c3.27,0 6.18,-1.58 8,-4.01V20h2v-6H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flip_camera_ios.xml b/compose/material/material/icons/generator/raw-icons/twotone/flip_camera_ios.xml
deleted file mode 100644
index b86416e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flip_camera_ios.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,5H9.88L8.05,7H4v12h16V7h-4.05L14.12,5zM12,18c-2.76,0 -5,-2.24 -5,-5H5l2.49,-2.49L7.5,10.5L10,13H9.97H8c0,2.21 1.79,4 4,4c0.58,0 1.13,-0.13 1.62,-0.35l0.74,0.74C13.65,17.76 12.86,18 12,18zM19,13l-2.49,2.49L16.5,15.5L14,13h0.03H16c0,-2.21 -1.79,-4 -4,-4c-0.58,0 -1.13,0.13 -1.62,0.35L9.64,8.62C10.35,8.24 11.14,8 12,8c2.76,0 5,2.24 5,5H19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19H4V7h4.05l1.83,-2h4.24l1.83,2H20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-2.21,0 -4,-1.79 -4,-4h1.97H10l-2.5,-2.5l-0.01,0.01L5,13h2c0,2.76 2.24,5 5,5c0.86,0 1.65,-0.24 2.36,-0.62l-0.74,-0.74C13.13,16.87 12.58,17 12,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-0.86,0 -1.65,0.24 -2.36,0.62l0.74,0.73C10.87,9.13 11.42,9 12,9c2.21,0 4,1.79 4,4h-1.97H14l2.5,2.5l0.01,-0.01L19,13h-2C17,10.24 14.76,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flip_to_back.xml b/compose/material/material/icons/generator/raw-icons/twotone/flip_to_back.xml
deleted file mode 100644
index 47d535a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flip_to_back.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7L7,7v2h2L9,7zM9,11L7,11v2h2v-2zM9,3c-1.11,0 -2,0.9 -2,2h2L9,3zM13,15h-2v2h2v-2zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM13,3h-2v2h2L13,3zM9,17v-2L7,15c0,1.1 0.89,2 2,2zM19,13h2v-2h-2v2zM19,9h2L21,7h-2v2zM19,17c1.1,0 2,-0.9 2,-2h-2v2zM5,7L3,7v12c0,1.1 0.89,2 2,2h12v-2L5,19L5,7zM15,5h2L17,3h-2v2zM15,17h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flip_to_front.xml b/compose/material/material/icons/generator/raw-icons/twotone/flip_to_front.xml
deleted file mode 100644
index 0cef2c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flip_to_front.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM5,21v-2L3,19c0,1.1 0.89,2 2,2zM3,9h2L5,7L3,7v2zM15,21h2v-2h-2v2zM19,3L9,3c-1.11,0 -2,0.9 -2,2v10c0,1.1 0.89,2 2,2h10c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,15L9,15L9,5h10v10zM11,21h2v-2h-2v2zM7,21h2v-2L7,19v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flood.xml b/compose/material/material/icons/generator/raw-icons/twotone/flood.xml
deleted file mode 100644
index fde91db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flood.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.66,15.5c1.01,0 1.3,-0.65 2.42,-0.9l-0.91,-3.39l3.86,-1.04l1.42,5.31c1.03,-0.07 1.3,-0.85 2.85,-0.96L16.16,6.5l-5.74,-2.09L6.5,9.09l1.7,6.36C8.33,15.48 8.48,15.5 8.66,15.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.67,19c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.22,0 1.4,1 3.33,1c1.93,0 2.1,-1 3.33,-1c1.22,0 1.4,1 3.33,1v-2C20.76,20 20.62,19 18.67,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.68,17.5c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-0.63,0 -1,-0.28 -1.48,-0.55l-2.02,-7.53l2.09,0.85l0.74,-1.86L9.78,2L2,11.61l1.57,1.23l1.39,-1.78l0.93,3.48c-0.18,-0.02 -0.35,-0.05 -0.56,-0.05c-1.95,0 -2.09,1 -3.33,1v2c1.9,0 2.17,-1 3.35,-1C6.54,16.5 6.77,17.5 8.68,17.5zM10.42,4.41l5.74,2.09l2.15,8.02c-1.54,0.11 -1.82,0.89 -2.85,0.96l-1.42,-5.31l-3.86,1.04l0.91,3.39c-1.12,0.25 -1.41,0.9 -2.42,0.9c-0.18,0 -0.33,-0.02 -0.45,-0.05L6.5,9.09L10.42,4.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flourescent.xml b/compose/material/material/icons/generator/raw-icons/twotone/flourescent.xml
deleted file mode 100644
index 235cd39..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flourescent.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h10v2h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14V9H5V15zM7,11h10v2H7V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2864,6.3989l1.7897,-1.8024l1.4192,1.4092l-1.7897,1.8024z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4947,6.0091l1.4071,-1.4071l1.789,1.789l-1.4071,1.4071z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.4922,18.0762l1.8024,-1.7897l1.4092,1.4192l-1.8024,1.7897z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fluorescent.xml b/compose/material/material/icons/generator/raw-icons/twotone/fluorescent.xml
deleted file mode 100644
index 6fc6214..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fluorescent.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h10v2h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14V9H5V15zM7,11h10v2H7V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.286,6.399l1.79,-1.802l1.419,1.409l-1.79,1.802z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.29,17.71l1.79,1.8l1.42,-1.42l-1.8,-1.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.495,6.009l1.407,-1.407l1.789,1.789l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.492,18.076l1.802,-1.79l1.409,1.419l-1.802,1.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/flutter_dash.xml b/compose/material/material/icons/generator/raw-icons/twotone/flutter_dash.xml
deleted file mode 100644
index 3e23dda..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/flutter_dash.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,11c0,0.81 0.1,1.53 0.25,2.21c0.18,-0.69 0.46,-1.33 0.83,-1.92c-0.21,-0.47 -0.34,-0.99 -0.34,-1.54C5.75,7.68 7.43,6 9.5,6c0.96,0 1.84,0.37 2.5,0.97C12.66,6.37 13.54,6 14.5,6c2.07,0 3.75,1.68 3.75,3.75c0,0.55 -0.12,1.07 -0.34,1.54c0.37,0.59 0.66,1.24 0.84,1.94C18.9,12.55 19,11.82 19,11c0,-3.86 -3.14,-7 -7,-7C8.14,4 5,7.14 5,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,11.7c0.29,-0.39 0.81,-0.56 1.27,-0.37c0.17,0.07 0.32,0.18 0.43,0.33c0.22,0.28 0.25,0.59 0.22,0.85c-0.05,0.33 -0.25,0.63 -0.54,0.79c0,0 -4.87,2.95 -5.07,2.69S11.07,11.7 11.07,11.7zM22,10c0,2.5 -1,3 -1.5,3c-0.23,0 -0.44,-0.1 -0.62,-0.26c-0.48,3.32 -2.36,5.31 -5.33,5.99c0.11,0.44 0.48,0.77 0.95,0.77l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C15.18,22.07 15,21.71 15,21.26c0,-0.3 0.04,-0.57 0.09,-0.8c-0.78,-0.16 -1.39,-0.78 -1.55,-1.56c-0.49,0.06 -1,0.1 -1.54,0.1c-0.88,0 -1.7,-0.09 -2.45,-0.25C9.53,18.83 9.5,18.91 9.5,19c0,0.55 0.45,1 1,1l0,0h0.58c0.22,0 0.41,0.15 0.48,0.36c0.17,0.52 0.66,1.02 1.02,1.32c0.25,0.21 0.24,0.59 -0.03,0.78c-0.34,0.24 -0.9,0.49 -1.79,0.53c-0.18,0.01 -0.35,-0.07 -0.45,-0.22C10.18,22.57 10,22.21 10,21.76c0,-0.3 0.04,-0.57 0.09,-0.8C9.19,20.77 8.5,19.96 8.5,19c0,-0.18 0.03,-0.36 0.08,-0.53c-2.46,-0.86 -4.03,-2.78 -4.46,-5.74C3.94,12.9 3.74,13 3.5,13C3,13 2,12.5 2,10c0,-2.27 1.7,-4.5 3,-4.5c0.43,0 0.49,0.49 0.5,0.85c1.28,-1.78 3.26,-3.02 5.55,-3.29C11.25,2.1 12.13,1.5 13,1.5v1c0,0 0.33,-0.5 1,-0.5c0.67,0 1,0.5 1,0.5c-0.49,0 -0.85,0.35 -0.96,0.77c1.82,0.48 3.39,1.59 4.46,3.08C18.51,5.99 18.57,5.5 19,5.5C20.3,5.5 22,7.73 22,10zM5,11c0,0.81 0.1,1.53 0.25,2.21c0.18,-0.69 0.46,-1.33 0.83,-1.92c-0.21,-0.47 -0.34,-0.99 -0.34,-1.54C5.75,7.68 7.43,6 9.5,6c0.96,0 1.84,0.37 2.5,0.97C12.66,6.37 13.54,6 14.5,6c2.07,0 3.75,1.68 3.75,3.75c0,0.55 -0.12,1.07 -0.34,1.54c0.37,0.59 0.66,1.24 0.84,1.94C18.9,12.55 19,11.82 19,11c0,-3.86 -3.14,-7 -7,-7C8.14,4 5,7.14 5,11zM17.98,15.29c0,-0.1 0.02,-0.19 0.02,-0.29c0,-1.01 -0.26,-1.95 -0.7,-2.78c-0.69,0.78 -1.68,1.28 -2.8,1.28c-0.27,0 -0.54,-0.03 -0.79,-0.09c0.14,-0.23 0.23,-0.49 0.27,-0.77c0.01,-0.07 0.01,-0.13 0.02,-0.19c0.17,0.03 0.33,0.05 0.5,0.05c1.52,0 2.75,-1.23 2.75,-2.75S16.02,7 14.5,7c-0.67,0 -1.32,0.25 -1.83,0.72L12,8.32l-0.67,-0.6C10.82,7.25 10.17,7 9.5,7C7.98,7 6.75,8.23 6.75,9.75c0,1.34 0.96,2.46 2.23,2.7l-0.76,0.83c-0.6,-0.22 -1.12,-0.59 -1.53,-1.05C6.26,13.06 6,14 6,15c0,0.08 0.01,0.15 0.01,0.24C7.13,17.06 9.14,18 12,18C14.88,18 16.88,17.09 17.98,15.29zM16,9.75c0,0.97 -0.67,1.75 -1.5,1.75S13,10.72 13,9.75S13.67,8 14.5,8S16,8.78 16,9.75zM15.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S14.5,8.67 14.5,8.88s0.17,0.38 0.38,0.38S15.25,9.08 15.25,8.88zM11,9.75c0,0.97 -0.67,1.75 -1.5,1.75S8,10.72 8,9.75S8.67,8 9.5,8S11,8.78 11,9.75zM10.25,8.88c0,-0.21 -0.17,-0.38 -0.38,-0.38S9.5,8.67 9.5,8.88s0.17,0.38 0.38,0.38S10.25,9.08 10.25,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fmd_bad.xml b/compose/material/material/icons/generator/raw-icons/twotone/fmd_bad.xml
deleted file mode 100644
index 36ab05e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fmd_bad.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v-2h-2V15zM11,11h2V6h-2V11zM12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2zM12,19.33c-4.05,-3.7 -6,-6.79 -6,-9.14C6,6.57 8.65,4 12,4s6,2.57 6,6.2C18,12.54 16.05,15.64 12,19.33z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19.33c4.05,-3.7 6,-6.79 6,-9.14C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2C6,12.54 7.95,15.64 12,19.33zM11,6h2v5h-2V6zM11,13h2v2h-2V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fmd_good.xml b/compose/material/material/icons/generator/raw-icons/twotone/fmd_good.xml
deleted file mode 100644
index f69c5a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fmd_good.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-3.35,0 -6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14c4.05,-3.7 6,-6.79 6,-9.14C18,6.57 15.35,4 12,4zM12,12c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C14,11.1 13.1,12 12,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-1.1,0 -2,0.9 -2,2c0,1.1 0.9,2 2,2c1.1,0 2,-0.9 2,-2C14,8.9 13.1,8 12,8zM12,2c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8C20,5.22 16.2,2 12,2zM12,19.33c-4.05,-3.7 -6,-6.79 -6,-9.14C6,6.57 8.65,4 12,4s6,2.57 6,6.2C18,12.54 16.05,15.64 12,19.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder.xml
deleted file mode 100644
index 6bf0cd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,8l-0.58,-0.59L9.17,6H4v12h16V8h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h5.17l1.41,1.41 0.59,0.59L20,8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder_copy.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder_copy.xml
deleted file mode 100644
index cc0d6f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder_copy.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,4l-4.17,0l0,11l14,0l0,-9l-7.83,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4h-7l-2,-2H7C5.9,2 5.01,2.9 5.01,4L5,15c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4zM21,15H7V4h4.17l2,2H21V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6H1v13c0,1.1 0.9,2 2,2h17v-2H3V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder_delete.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder_delete.xml
deleted file mode 100644
index a9e51f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder_delete.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,11.5h2v4h-2V11.5zM20,8v10H4V6h5.17l2,2H20zM19,10h-2.5V9h-2v1H12v1.5h1v4c0,0.83 0.67,1.5 1.5,1.5h2c0.83,0 1.5,-0.67 1.5,-1.5v-4h1V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,10V9h-2v1H12v1.5h1v4c0,0.83 0.67,1.5 1.5,1.5h2c0.83,0 1.5,-0.67 1.5,-1.5v-4h1V10H16.5zM16.5,15.5h-2v-4h2V15.5zM20,6h-8l-2,-2H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V8C22,6.89 21.11,6 20,6zM20,18H4V6h5.17l2,2H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder_off.xml
deleted file mode 100644
index 58f7fdf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder_off.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.17,18l-11.17,-11.17l0,11.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,8l8.83,9.17l0,-9.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.69,3.51l1.56,1.56C2.1,5.35 2.01,5.66 2.01,6L2,18c0,1.1 0.9,2 2,2h13.17l3.31,3.31l1.41,-1.41L2.1,2.1L0.69,3.51zM15.17,18H4V6.83L15.17,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H7.17l4,4H20v9.17l1.76,1.76C21.91,18.65 22,18.34 22,18V8C22,6.9 21.1,6 20,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder_open.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder_open.xml
deleted file mode 100644
index a89e629..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder_open.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h16v10H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder_shared.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder_shared.xml
deleted file mode 100644
index d18629c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder_shared.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,8l-0.59,-0.59L9.17,6L4,6v12h16L20,8h-8.83zM19,16v1h-8v-1c0,-1.33 2.67,-2 4,-2s4,0.67 4,2zM15,9c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h5.17l2,2L20,8v10zM15,13c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM11,16v1h8v-1c0,-1.33 -2.67,-2 -4,-2s-4,0.67 -4,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder_special.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder_special.xml
deleted file mode 100644
index 5ff1a8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder_special.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,8l-2,-2H4v12h16V8h-8.83zM15,9l1.19,2.79 3.03,0.26 -2.3,1.99 0.69,2.96L15,15.47 12.39,17l0.69,-2.96 -2.3,-1.99 3.03,-0.26L15,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,8c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h5.17l2,2L20,8v10zM13.08,14.04L12.39,17 15,15.47 17.61,17l-0.69,-2.96 2.3,-1.99 -3.03,-0.26L15,9l-1.19,2.79 -3.03,0.26z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/folder_zip.xml b/compose/material/material/icons/generator/raw-icons/twotone/folder_zip.xml
deleted file mode 100644
index 57ff6f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/folder_zip.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,16h2v-2h-2v-2h2v-2h-2V8h4v10h-4V16zM16,16h-2v2H4V6h5.17l2,2H14v2h2v2h-2v2h2V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM16,16h2v-2h-2v-2h2v-2h-2V8h4v10h-4V16zM16,16h-2v2H4V6h5.17l2,2H14v2h2v2h-2v2h2V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/follow_the_signs.xml b/compose/material/material/icons/generator/raw-icons/twotone/follow_the_signs.xml
deleted file mode 100644
index 977c985..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/follow_the_signs.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.64,7.75V6h-3.51V4.5h3.51V2.75l2.49,2.5L17.64,7.75z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.12,5.25c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S8.02,5.25 9.12,5.25zM5.38,8.65l-2.75,14.1h2.1l1.75,-8l2.15,2v6h2V15.2l-2.05,-2.05l0.6,-3c1.3,1.6 3.25,2.6 5.45,2.6v-2c-1.85,0 -3.45,-1 -4.35,-2.45L9.32,6.7c-0.35,-0.6 -1,-0.95 -1.7,-0.95c-0.25,0 -0.5,0.05 -0.75,0.15L1.62,8.05v4.7h2V9.4L5.38,8.65M12.62,1.75v7h3.75v14h1.5v-14h3.75v-7H12.62zM17.64,7.75V6h-3.51V4.5h3.51V2.75l2.49,2.5L17.64,7.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/font_download.xml b/compose/material/material/icons/generator/raw-icons/twotone/font_download.xml
deleted file mode 100644
index 2eb58fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/font_download.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16L20,4L4,4v16zM11.07,5.5h1.86l5.11,13h-2.09l-1.14,-3L9.17,15.5l-1.12,3L5.96,18.5l5.11,-13zM12,7.98L9.93,13.5h4.14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,15.5h5.64l1.14,3h2.09l-5.11,-13h-1.86l-5.11,13h2.09l1.12,-3zM12,7.98l2.07,5.52L9.93,13.5L12,7.98zM20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,4h16v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/font_download_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/font_download_off.xml
deleted file mode 100644
index 19dd053..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/font_download_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.35,7.52L10.92,6h2.14l2.55,6.79L20,17.17V4H6.83L10.35,7.52zM12.58,9.75l-0.54,-1.52h-0.1l-0.23,0.66L12.58,9.75zM17.17,20l-5.07,-5.07H9.58L8.49,18H6.41l2.39,-6.37L4,6.83V20H17.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.83,2H20c1.1,0 2,0.9 2,2v15.17l-2,-2V4H6.83L4.83,2zM10.92,6l-0.57,1.52l1.36,1.36l0.23,-0.66h0.1l0.54,1.52l3.04,3.04L13.07,6H10.92zM20.49,23.31L19.17,22H4c-1.1,0 -2,-0.9 -2,-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM17.17,20l-5.07,-5.07H9.58L8.49,18H6.41l2.39,-6.37L4,6.83V20H17.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/food_bank.xml b/compose/material/material/icons/generator/raw-icons/twotone/food_bank.xml
deleted file mode 100644
index d327e0e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/food_bank.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5l6,4.5v9H6v-9L12,5.5M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83 0.67,1.5 1.5,1.5v4h1v-4c0.83,0 1.5,-0.67 1.5,-1.5v-3H11.5zM13,11.5v3h1V18h1V9.5C13.9,9.5 13,10.4 13,11.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5l6,4.5v9H6v-9L12,5.5M12,3L4,9v12h16V9L12,3L12,3zM11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83 0.67,1.5 1.5,1.5v4h1v-4c0.83,0 1.5,-0.67 1.5,-1.5v-3H11.5zM13,11.5v3h1V18h1V9.5C13.9,9.5 13,10.4 13,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/forest.xml b/compose/material/material/icons/generator/raw-icons/twotone/forest.xml
deleted file mode 100644
index 09ea586..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/forest.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.48,10l1.68,0l-3.16,-4.51l-1.78,2.54l2.78,3.97l-1.86,0l2.57,4l3.63,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.16,10l-3.16,-4.51l-3.16,4.51l1.68,0l-3.86,6l10.68,0l-3.86,-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.14,12H22L15,2l-3,4.29L9,2L2,12h1.86L0,18h7v4h4v-4h2v4h4v-4h7L20.14,12zM3.66,16l3.86,-6H5.84L9,5.49L12.16,10h-1.68l3.86,6H3.66zM16.71,16l-2.57,-4H16l-2.78,-3.97L15,5.49L18.16,10h-1.68l3.86,6H16.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fork_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/fork_left.xml
deleted file mode 100644
index 30a26f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fork_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,15.59L8,17l-4,-4l4,-4l1.41,1.41L7.83,12c1.51,-0.33 3.73,0.08 5.17,1.36l0,-6.53l-1.59,1.59L10,7l4,-4l4,4l-1.41,1.41L15,6.83V21l-2,0v-4c-0.73,-2.58 -3.07,-3.47 -5.17,-3L9.41,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fork_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/fork_right.xml
deleted file mode 100644
index a3a186d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fork_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,15.59L16,17l4,-4l-4,-4l-1.41,1.41L16.17,12c-1.51,-0.33 -3.73,0.08 -5.17,1.36l0,-6.53l1.59,1.59L14,7l-4,-4L6,7l1.41,1.41L9,6.83V21l2,0v-4c0.73,-2.58 3.07,-3.47 5.17,-3L14.59,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_align_center.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_align_center.xml
deleted file mode 100644
index e13710f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2L3,5zM7,15h10v2L7,17zM7,7h10v2L7,9zM3,11h18v2L3,13zM3,19h18v2L3,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_align_justify.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_align_justify.xml
deleted file mode 100644
index 26c744b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_align_justify.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2L3,5zM3,11h18v2L3,13zM3,19h18v2L3,21zM3,15h18v2L3,17zM3,7h18v2L3,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_align_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_align_left.xml
deleted file mode 100644
index 4cf8d0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_align_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2L3,21zM3,7h12v2L3,9zM3,3h18v2L3,5zM3,15h12v2L3,17zM3,11h18v2L3,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_align_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_align_right.xml
deleted file mode 100644
index 2acac49..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_align_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2L3,5zM3,19h18v2L3,21zM3,11h18v2L3,13zM9,15h12v2L9,17zM9,7h12v2L9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_bold.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_bold.xml
deleted file mode 100644
index a701f09..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_bold.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.25,8c0,-2.26 -1.75,-4 -4,-4L7,4v14h7.04c2.09,0 3.71,-1.7 3.71,-3.79 0,-1.52 -0.86,-2.82 -2.15,-3.42 0.97,-0.67 1.65,-1.77 1.65,-2.79zM10,6.5h3c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5h-3v-3zM13.5,15.5L10,15.5v-3h3.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_clear.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_clear.xml
deleted file mode 100644
index 6aee2d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_clear.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8V5H6.39l3,3h1.83l-0.55,1.28 2.09,2.1L14.21,8zM3.41,4.86L2,6.27l6.97,6.97L6.5,19h3l1.57,-3.66L16.73,21l1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_color_fill.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_color_fill.xml
deleted file mode 100644
index f532866..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_color_fill.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59 -0.59,1.54 0,2.12l5.5,5.5C9.23,16.85 9.62,17 10,17s0.77,-0.15 1.06,-0.44l5.5,-5.5C17.15,10.48 17.15,9.53 16.56,8.94zM5.21,10L10,5.21L14.79,10H5.21zM19,11.5c0,0 -2,2.17 -2,3.5c0,1.1 0.9,2 2,2s2,-0.9 2,-2C21,13.67 19,11.5 19,11.5zM2,20h20v4H2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_color_reset.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_color_reset.xml
deleted file mode 100644
index ac6fb18..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_color_reset.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.93,7.83l4.77,4.77c-0.62,-1.81 -2.17,-4.24 -3.71,-6.24 -0.35,0.47 -0.71,0.96 -1.06,1.47zM12,18c0.96,0 1.83,-0.36 2.53,-0.92l-5.72,-5.72C8.32,12.38 8,13.31 8,14c0,2.21 1.79,4 4,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.36c1.53,2 3.08,4.43 3.71,6.24l2.23,2.23c0.03,-0.27 0.06,-0.55 0.06,-0.83 0,-3.98 -6,-10.8 -6,-10.8s-1.18,1.35 -2.5,3.19l1.44,1.44c0.34,-0.51 0.7,-1 1.06,-1.47zM5.41,5.14L4,6.55l3.32,3.32C6.55,11.33 6,12.79 6,14c0,3.31 2.69,6 6,6 1.52,0 2.9,-0.57 3.95,-1.5l2.63,2.63L20,19.72 5.41,5.14zM12,18c-2.21,0 -4,-1.79 -4,-4 0,-0.69 0.32,-1.62 0.81,-2.64l5.72,5.72c-0.7,0.56 -1.57,0.92 -2.53,0.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_color_text.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_color_text.xml
deleted file mode 100644
index 6cdb775..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_color_text.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v4H2V20zM5.49,17h2.42l1.27,-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17zM9.91,11.39l2.03,-5.79h0.12l2.03,5.79H9.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_indent_decrease.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_indent_decrease.xml
deleted file mode 100644
index 3e81b2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_indent_decrease.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16L7,8l-4,4zM11,7h10v2L11,9zM11,11h10v2L11,13zM11,15h10v2L11,17zM3,19h18v2L3,21zM3,3h18v2L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_indent_increase.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_indent_increase.xml
deleted file mode 100644
index 53a6172..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_indent_increase.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18v2L3,21zM3,3h18v2L3,5zM11,7h10v2L11,9zM3,8v8l4,-4zM11,11h10v2L11,13zM11,15h10v2L11,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_italic.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_italic.xml
deleted file mode 100644
index 7cace31..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_italic.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15v3h8v-3h-2.21l3.42,-8H18V4h-8v3h2.21l-3.42,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_line_spacing.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_line_spacing.xml
deleted file mode 100644
index 0c15c21..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_line_spacing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h12v2L10,7zM10,17h12v2L10,19zM1.5,17L5,20.5 8.5,17L6,17L6,7h2.5L5,3.5 1.5,7L4,7v10zM10,11h12v2L10,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_list_bulleted.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_list_bulleted.xml
deleted file mode 100644
index 3cddf68..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_list_bulleted.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h14v2H7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h14v2L7,13zM7,17h14v2L7,19zM4,19.5c0.82,0 1.5,-0.68 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.68 -1.5,1.5 0.68,1.5 1.5,1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_list_numbered.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_list_numbered.xml
deleted file mode 100644
index 8701464..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_list_numbered.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13L3.2,13L5,10.9L5,10L2,10v1h1.8L2,13.1v0.9h3zM7,5h14v2L7,7zM5,16L2,16v1h2v0.5L3,17.5v1h1v0.5L2,19v1h3zM7,17h14v2L7,19zM3,8h1L4,4L2,4v1h1zM7,11h14v2L7,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_list_numbered_rtl.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_list_numbered_rtl.xml
deleted file mode 100644
index 5c035c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_list_numbered_rtl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h14v2L2,13zM18,17h2v0.5h-1v1h1v0.5h-2v1h3v-4h-3zM18,11h1.8L18,13.1v0.9h3v-1h-1.8l1.8,-2.1L21,10h-3zM20,8L20,4h-2v1h1v3zM2,17h14v2L2,19zM2,5h14v2L2,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_overline.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_overline.xml
deleted file mode 100644
index 601edd4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_overline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3v2H5V3H19zM12,7c-3.87,0 -7,3.13 -7,7c0,3.87 3.13,7 7,7s7,-3.13 7,-7C19,10.13 15.87,7 12,7zM12,18.5c-2.49,0 -4.5,-2.01 -4.5,-4.5S9.51,9.5 12,9.5s4.5,2.01 4.5,4.5S14.49,18.5 12,18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_paint.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_paint.xml
deleted file mode 100644
index cb8eab0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_paint.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4h10v2H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2L5,2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1L18,6h1v4L9,10v11c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-9h8L21,4h-3L18,3c0,-0.55 -0.45,-1 -1,-1zM16,6L6,6L6,4h10v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_quote.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_quote.xml
deleted file mode 100644
index 331c7b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_quote.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.62,16h0.76L19,12.76L19,8h-4v4h3.62zM6.62,16h0.76L9,12.76L9,8L5,8v4h3.62z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.62,18L21,13.24V6h-8v8h2.38l-2,4h5.24zM15,12V8h4v4.76L17.38,16h-0.76l2,-4H15zM3.38,18h5.24L11,13.24V6H3v8h2.38l-2,4zM5,12V8h4v4.76L7.38,16h-0.76l2,-4H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_shapes.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_shapes.xml
deleted file mode 100644
index 2d67f73..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_shapes.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h2v2L3,5zM19,19h2v2h-2zM19,3h2v2h-2zM3,19h2v2L3,21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.29,7l-3.4,9h1.62l0.73,-2h3.49l0.74,2h1.63l-3.41,-9h-1.4zM10.69,12.74L12,8.91l1.3,3.83h-2.61zM17,3L7,3L7,1L1,1v6h2v10L1,17v6h6v-2h10v2h6v-6h-2L21,7h2L23,1h-6v2zM3,3h2v2L3,5L3,3zM5,21L3,21v-2h2v2zM21,21h-2v-2h2v2zM19,3h2v2h-2L19,3zM19,17h-2v2L7,19v-2L5,17L5,7h2L7,5h10v2h2v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_size.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_size.xml
deleted file mode 100644
index 971fbb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_size.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12h3v7h3v-7h3L12,9L3,9zM9,7h5v12h3L17,7h5L22,4L9,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_strikethrough.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_strikethrough.xml
deleted file mode 100644
index 7405ee6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_strikethrough.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12h18v2L3,14zM14,10L14,7h5L19,4L5,4v3h5v3zM10,16h4v3h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_textdirection_l_to_r.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_textdirection_l_to_r.xml
deleted file mode 100644
index 1b9c5e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_textdirection_l_to_r.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8V4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10v5h2L11,4h2v11h2L15,4h2L17,2L9,2C6.79,2 5,3.79 5,6s1.79,4 4,4zM9,4v4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2zM21,18l-4,-4v3L5,17v2h12v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_textdirection_r_to_l.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_textdirection_r_to_l.xml
deleted file mode 100644
index 35e0609..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_textdirection_r_to_l.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c0,1.1 0.9,2 2,2V4c-1.1,0 -2,0.9 -2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6c0,2.21 1.79,4 4,4v5h2L12,4h2v11h2L16,4h2L18,2h-8C7.79,2 6,3.79 6,6zM10,8c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2v4zM4,18l4,4v-3h12v-2L8,17v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/format_underlined.xml b/compose/material/material/icons/generator/raw-icons/twotone/format_underlined.xml
deleted file mode 100644
index 5fba64e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/format_underlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v2H5zM6,3v8c0,3.31 2.69,6 6,6s6,-2.69 6,-6V3h-2.5v8c0,1.93 -1.57,3.5 -3.5,3.5S8.5,12.93 8.5,11V3H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fort.xml b/compose/material/material/icons/generator/raw-icons/twotone/fort.xml
deleted file mode 100644
index 9aa66fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fort.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8.17L20.17,7h-4.34L17,8.17V12H7V8.17L8.17,7H3.83L5,8.17v7.66l-2,2V19h5v-1c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v1h5v-1.17l-2,-2V8.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,7V3h-2v2h-2V3h-2v2h-2V3h-2v4l2,2v1H9V9l2,-2V3H9v2H7V3H5v2H3V3H1v4l2,2v6l-2,2v4h9v-3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v3h9v-4l-2,-2V9L23,7zM21,19h-5v-1c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v1H3v-1.17l2,-2V8.17L3.83,7h4.34L7,8.17V12h10V8.17L15.83,7h4.34L19,8.17v7.66l2,2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/forum.xml b/compose/material/material/icons/generator/raw-icons/twotone/forum.xml
deleted file mode 100644
index f760ce3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/forum.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11V4H4v8.17L5.17,11H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13c0.55,0 1,-0.45 1,-1L17,3c0,-0.55 -0.45,-1 -1,-1L3,2c-0.55,0 -1,0.45 -1,1v14l4,-4h10zM4,12.17L4,4h11v7L5.17,11L4,12.17zM22,7c0,-0.55 -0.45,-1 -1,-1h-2v9L6,15v2c0,0.55 0.45,1 1,1h11l4,4L22,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/forward.xml b/compose/material/material/icons/generator/raw-icons/twotone/forward.xml
deleted file mode 100644
index 35aa7a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/forward.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,14v1.17L17.17,12 14,8.83V10H6v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12l-8,-8v4H4v8h8v4l8,-8zM6,14v-4h8V8.83L17.17,12 14,15.17V14H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/forward_10.xml b/compose/material/material/icons/generator/raw-icons/twotone/forward_10.xml
deleted file mode 100644
index 43a3bb8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/forward_10.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6s2.69,-6 6,-6v4l5,-5l-5,-5v4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.9,16l0,-4.27l-0.09,0l-1.77,0.63l0,0.69l1.01,-0.31l0,3.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.32,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1s-0.33,0.18 -0.45,0.33s-0.23,0.34 -0.29,0.57s-0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57s0.28,0.26 0.46,0.33s0.37,0.1 0.59,0.1s0.41,-0.03 0.59,-0.1s0.33,-0.18 0.45,-0.33s0.22,-0.34 0.29,-0.57s0.1,-0.5 0.1,-0.82V13.5c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57S14.49,11.85 14.32,11.78zM14.33,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32s-0.11,0.14 -0.19,0.17s-0.16,0.05 -0.25,0.05s-0.18,-0.02 -0.25,-0.05s-0.14,-0.09 -0.19,-0.17s-0.09,-0.19 -0.12,-0.32s-0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31s0.11,-0.14 0.19,-0.17s0.16,-0.05 0.25,-0.05s0.18,0.02 0.25,0.05s0.14,0.09 0.19,0.17s0.09,0.18 0.12,0.31s0.04,0.29 0.04,0.48V14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/forward_30.xml b/compose/material/material/icons/generator/raw-icons/twotone/forward_30.xml
deleted file mode 100644
index a70c4b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/forward_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6 2.69,-6 6,-6v4l5,-5 -5,-5v4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8h-2zM10.54,15.22c-0.06,0.05 -0.12,0.09 -0.2,0.12s-0.17,0.04 -0.27,0.04c-0.09,0 -0.17,-0.01 -0.25,-0.04s-0.14,-0.06 -0.2,-0.11 -0.1,-0.1 -0.13,-0.17 -0.05,-0.14 -0.05,-0.22h-0.85c0,0.21 0.04,0.39 0.12,0.55s0.19,0.28 0.33,0.38 0.29,0.18 0.46,0.23 0.35,0.07 0.53,0.07c0.21,0 0.41,-0.03 0.6,-0.08s0.34,-0.14 0.48,-0.24 0.24,-0.24 0.32,-0.39 0.12,-0.33 0.12,-0.53c0,-0.23 -0.06,-0.44 -0.18,-0.61s-0.3,-0.3 -0.54,-0.39c0.1,-0.05 0.2,-0.1 0.28,-0.17s0.15,-0.14 0.2,-0.22 0.1,-0.16 0.13,-0.25 0.04,-0.18 0.04,-0.27c0,-0.2 -0.04,-0.37 -0.11,-0.53s-0.17,-0.28 -0.3,-0.38 -0.28,-0.18 -0.46,-0.23 -0.37,-0.08 -0.59,-0.08c-0.19,0 -0.38,0.03 -0.54,0.08s-0.32,0.13 -0.44,0.23 -0.23,0.22 -0.3,0.37 -0.11,0.3 -0.11,0.48h0.85c0,-0.07 0.02,-0.14 0.05,-0.2s0.07,-0.11 0.12,-0.15 0.11,-0.07 0.18,-0.1 0.14,-0.03 0.22,-0.03c0.1,0 0.18,0.01 0.25,0.04s0.13,0.06 0.18,0.11 0.08,0.11 0.11,0.17 0.04,0.14 0.04,0.22c0,0.18 -0.05,0.32 -0.16,0.43s-0.26,0.16 -0.48,0.16h-0.43v0.66h0.45c0.11,0 0.2,0.01 0.29,0.04s0.16,0.06 0.22,0.11 0.11,0.12 0.14,0.2 0.05,0.18 0.05,0.29c0,0.09 -0.01,0.17 -0.04,0.24s-0.08,0.11 -0.13,0.17zM14.44,11.78c-0.18,-0.07 -0.37,-0.1 -0.59,-0.1s-0.41,0.03 -0.59,0.1 -0.33,0.18 -0.45,0.33 -0.23,0.34 -0.29,0.57 -0.1,0.5 -0.1,0.82v0.74c0,0.32 0.04,0.6 0.11,0.82s0.17,0.42 0.3,0.57 0.28,0.26 0.46,0.33 0.37,0.1 0.59,0.1 0.41,-0.03 0.59,-0.1 0.33,-0.18 0.45,-0.33 0.22,-0.34 0.29,-0.57 0.1,-0.5 0.1,-0.82v-0.74c0,-0.32 -0.04,-0.6 -0.11,-0.82s-0.17,-0.42 -0.3,-0.57 -0.28,-0.26 -0.46,-0.33zM14.45,14.35c0,0.19 -0.01,0.35 -0.04,0.48s-0.06,0.24 -0.11,0.32 -0.11,0.14 -0.19,0.17 -0.16,0.05 -0.25,0.05 -0.18,-0.02 -0.25,-0.05 -0.14,-0.09 -0.19,-0.17 -0.09,-0.19 -0.12,-0.32 -0.04,-0.29 -0.04,-0.48v-0.97c0,-0.19 0.01,-0.35 0.04,-0.48s0.06,-0.23 0.12,-0.31 0.11,-0.14 0.19,-0.17 0.16,-0.05 0.25,-0.05 0.18,0.02 0.25,0.05 0.14,0.09 0.19,0.17 0.09,0.18 0.12,0.31 0.04,0.29 0.04,0.48v0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/forward_5.xml b/compose/material/material/icons/generator/raw-icons/twotone/forward_5.xml
deleted file mode 100644
index 96096d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/forward_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.95,13c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6 2.69,-6 6,-6v4l5,-5 -5,-5v4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8h-2zM12.43,15.15c-0.05,0.07 -0.11,0.13 -0.18,0.17s-0.17,0.06 -0.27,0.06c-0.17,0 -0.31,-0.05 -0.42,-0.15s-0.17,-0.24 -0.19,-0.41h-0.84c0.01,0.2 0.05,0.37 0.13,0.53s0.19,0.28 0.32,0.39 0.29,0.19 0.46,0.24 0.35,0.08 0.53,0.08c0.24,0 0.46,-0.04 0.64,-0.12s0.33,-0.18 0.45,-0.31 0.21,-0.28 0.27,-0.45 0.09,-0.35 0.09,-0.54c0,-0.22 -0.03,-0.43 -0.09,-0.6s-0.14,-0.33 -0.25,-0.45 -0.25,-0.22 -0.41,-0.28 -0.34,-0.1 -0.55,-0.1c-0.07,0 -0.14,0.01 -0.2,0.02s-0.13,0.02 -0.18,0.04 -0.1,0.03 -0.15,0.05 -0.08,0.04 -0.11,0.05l0.11,-0.92h1.7v-0.71L10.9,11.74l-0.25,2.17 0.67,0.17c0.03,-0.03 0.06,-0.06 0.1,-0.09s0.07,-0.05 0.12,-0.07 0.1,-0.04 0.15,-0.05 0.13,-0.02 0.2,-0.02c0.12,0 0.22,0.02 0.3,0.05s0.16,0.09 0.21,0.15 0.1,0.14 0.13,0.24 0.04,0.19 0.04,0.31 -0.01,0.22 -0.03,0.31 -0.06,0.17 -0.11,0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/forward_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/twotone/forward_to_inbox.xml
deleted file mode 100644
index 64a2f4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/forward_to_inbox.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18H4V8l8,5l8,-5v5l-2,0C15.24,13 13,15.24 13,18L13,18zM12,11L4,6h16L12,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h9v-2H4V8l8,5l8,-5v5h2V6C22,4.9 21.1,4 20,4zM12,11L4,6h16L12,11zM19,15l4,4l-4,4v-3h-4v-2h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/foundation.xml b/compose/material/material/icons/generator/raw-icons/twotone/foundation.xml
deleted file mode 100644
index f7a8963..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/foundation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15v-4.81l4,-3.6V15H7zM13,15V6.59l4,3.6V15H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12zM7,15v-4.81l4,-3.6V15H7zM13,15V6.59l4,3.6V15H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/free_breakfast.xml b/compose/material/material/icons/generator/raw-icons/twotone/free_breakfast.xml
deleted file mode 100644
index 39e258a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/free_breakfast.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c0,1.1 0.9,2 2,2h6c1.1,0 2,-0.9 2,-2V5H6v8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h16v2L4,21zM20,3L4,3v10c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.9 2,-2L22,5c0,-1.11 -0.89,-2 -2,-2zM16,13c0,1.1 -0.9,2 -2,2L8,15c-1.1,0 -2,-0.9 -2,-2L6,5h10v8zM20,8h-2L18,5h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/free_cancellation.xml b/compose/material/material/icons/generator/raw-icons/twotone/free_cancellation.xml
deleted file mode 100644
index 87fb577..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/free_cancellation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h14v2h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.21,20H5V10h14v4.38l2,-2V6c0,-1.1 -0.9,-2 -2,-2h-1V2h-2v2H8V2H6v2H5C3.89,4 3.01,4.9 3.01,6L3,20c0,1.1 0.89,2 2,2h8.21L11.21,20zM5,6h14v2H5V6zM16.54,22.5L13,18.96l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,22.5zM10.41,14L12,15.59L10.59,17L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/front_hand.xml b/compose/material/material/icons/generator/raw-icons/twotone/front_hand.xml
deleted file mode 100644
index 4059b2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/front_hand.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15.5c0,3.59 -2.91,6.5 -6.5,6.5S6,19.09 6,15.5V7c0,-0.28 0.22,-0.5 0.5,-0.5S7,6.72 7,7v5h2V4c0,-0.28 0.22,-0.5 0.5,-0.5S10,3.72 10,4v7h2V2.5C12,2.22 12.22,2 12.5,2S13,2.22 13,2.5V11h2V4.5C15,4.22 15.22,4 15.5,4S16,4.22 16,4.5v8.92c-1.77,0.77 -3,2.53 -3,4.58h2c0,-1.66 1.34,-3 3,-3v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V15.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,8c-0.17,0 -0.34,0.02 -0.5,0.05V4.5C18,3.12 16.88,2 15.5,2c-0.19,0 -0.37,0.02 -0.54,0.06C14.75,0.89 13.73,0 12.5,0c-1.06,0 -1.96,0.66 -2.33,1.59C9.96,1.53 9.73,1.5 9.5,1.5C8.12,1.5 7,2.62 7,4v0.55C6.84,4.52 6.67,4.5 6.5,4.5C5.12,4.5 4,5.62 4,7v8.5c0,4.69 3.81,8.5 8.5,8.5s8.5,-3.81 8.5,-8.5v-5C21,9.12 19.88,8 18.5,8zM19,15.5c0,3.59 -2.91,6.5 -6.5,6.5S6,19.09 6,15.5V7c0,-0.28 0.22,-0.5 0.5,-0.5S7,6.72 7,7v5h2V4c0,-0.28 0.22,-0.5 0.5,-0.5S10,3.72 10,4v7h2V2.5C12,2.22 12.22,2 12.5,2S13,2.22 13,2.5V11h2V4.5C15,4.22 15.22,4 15.5,4S16,4.22 16,4.5v8.92c-1.77,0.77 -3,2.53 -3,4.58h2c0,-1.66 1.34,-3 3,-3v-4.5c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V15.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fullscreen.xml b/compose/material/material/icons/generator/raw-icons/twotone/fullscreen.xml
deleted file mode 100644
index 804cebc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fullscreen.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14L5,14v5h5v-2L7,17v-3zM5,10h2L7,7h3L10,5L5,5v5zM17,17h-3v2h5v-5h-2v3zM14,5v2h3v3h2L19,5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/fullscreen_exit.xml b/compose/material/material/icons/generator/raw-icons/twotone/fullscreen_exit.xml
deleted file mode 100644
index 1efbe0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/fullscreen_exit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h3v3h2v-5L5,14v2zM8,8L5,8v2h5L10,5L8,5v3zM14,19h2v-3h3v-2h-5v5zM16,8L16,5h-2v5h5L19,8h-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/functions.xml b/compose/material/material/icons/generator/raw-icons/twotone/functions.xml
deleted file mode 100644
index 8012acc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/functions.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17h-7l5,-5 -5,-5h7V4H6v2l6.5,6L6,18v2h12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/g_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/g_mobiledata.xml
deleted file mode 100644
index f8dfa69..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/g_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11v2h2v2H9V9h7c0,-1.1 -0.9,-2 -2,-2H9C7.9,7 7,7.9 7,9v6c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-4H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/g_translate.xml b/compose/material/material/icons/generator/raw-icons/twotone/g_translate.xml
deleted file mode 100644
index b8ad9a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/g_translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-9.12L10,2L4,2c-1.1,0 -2,0.9 -2,2v13c0,1.1 0.9,2 2,2h7l1,3h8c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM7.17,14.59c-2.25,0 -4.09,-1.83 -4.09,-4.09s1.83,-4.09 4.09,-4.09c1.04,0 1.99,0.37 2.74,1.07l0.07,0.06 -1.23,1.18 -0.06,-0.05c-0.29,-0.27 -0.78,-0.59 -1.52,-0.59 -1.31,0 -2.38,1.09 -2.38,2.42 0,1.33 1.07,2.42 2.38,2.42 1.37,0 1.96,-0.87 2.12,-1.46L7.08,11.46L7.08,9.91h3.95l0.01,0.07c0.04,0.21 0.05,0.4 0.05,0.61 0,2.35 -1.61,4 -3.92,4zM12.67,11.08h3.99s-0.34,1.31 -1.56,2.74c-0.52,-0.62 -0.89,-1.23 -1.13,-1.7h-0.99l-0.31,-1.04zM14.39,14.58l-0.54,0.53 -0.65,-2.23c0.33,0.6 0.74,1.18 1.19,1.7zM21,20c0,0.55 -0.45,1 -1,1h-7l2,-2 -0.81,-2.77 0.92,-0.92L17.79,18l0.73,-0.73 -2.71,-2.68c0.9,-1.03 1.6,-2.25 1.92,-3.51L19,11.08v-1.04h-3.64L15.36,9h-1.04v1.04h-1.96L11.18,6L20,6c0.55,0 1,0.45 1,1v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gamepad.xml b/compose/material/material/icons/generator/raw-icons/twotone/gamepad.xml
deleted file mode 100644
index f611274..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gamepad.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.67,11L4,11v2h2.67l1,-1zM13,6.67L13,4h-2v2.67l1,1zM11,17.33L11,20h2v-2.67l-1,-1zM16.33,12l1,1L20,13v-2h-2.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16.5L9,22h6v-5.5l-3,-3 -3,3zM13,20h-2v-2.67l1,-1 1,1L13,20zM15,7.5L15,2L9,2v5.5l3,3 3,-3zM11,4h2v2.67l-1,1 -1,-1L11,4zM7.5,9L2,9v6h5.5l3,-3 -3,-3zM6.67,13L4,13v-2h2.67l1,1 -1,1zM16.5,9l-3,3 3,3L22,15L22,9h-5.5zM20,13h-2.67l-1,-1 1,-1L20,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/games.xml b/compose/material/material/icons/generator/raw-icons/twotone/games.xml
deleted file mode 100644
index e62951b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/games.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17.33L11,20h2v-2.67l-1,-1zM13,6.67L13,4h-2v2.67l1,1zM16.33,12l1,1L20,13v-2h-2.67zM4,11v2h2.67l1,-1 -1,-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9v6h5.5l3,-3 -3,-3L2,9zM6.67,13L4,13v-2h2.67l1,1 -1,1zM22,9h-5.5l-3,3 3,3L22,15L22,9zM20,13h-2.67l-1,-1 1,-1L20,11v2zM15,16.5l-3,-3 -3,3L9,22h6v-5.5zM13,20h-2v-2.67l1,-1 1,1L13,20zM9,7.5l3,3 3,-3L15,2L9,2v5.5zM11,4h2v2.67l-1,1 -1,-1L11,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/garage.xml b/compose/material/material/icons/generator/raw-icons/twotone/garage.xml
deleted file mode 100644
index a3b992b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/garage.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11.51V11.5H7v0.01v2.99h10V11.51zM9,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1c0.55,0 1,0.45 1,1S9.55,14 9,14zM15,14c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1c0.55,0 1,0.45 1,1S15.55,14 15,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM5,11.19C5.82,8.72 6.34,7.16 6.56,6.5c0.05,-0.16 0.12,-0.29 0.19,-0.4C6.77,6.08 6.78,6.06 6.8,6.04C7.18,5.51 7.72,5.5 7.72,5.5h8.56c0,0 0.54,0.01 0.92,0.53c0.02,0.03 0.03,0.05 0.05,0.07c0.07,0.11 0.14,0.24 0.19,0.4c0.22,0.66 0.74,2.23 1.56,4.69v6.5c0,0.45 -0.35,0.81 -0.78,0.81h-0.44c-0.44,0 -0.78,-0.36 -0.78,-0.81V16.5H7v1.19c0,0.45 -0.35,0.81 -0.78,0.81H5.78C5.35,18.5 5,18.14 5,17.69V11.19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.78,18.5h0.44C6.65,18.5 7,18.14 7,17.69V16.5h10v1.19c0,0.45 0.34,0.81 0.78,0.81h0.44c0.43,0 0.78,-0.36 0.78,-0.81v-6.5c-0.82,-2.46 -1.34,-4.03 -1.56,-4.69c-0.05,-0.16 -0.12,-0.29 -0.19,-0.4c-0.02,-0.02 -0.03,-0.04 -0.05,-0.07c-0.38,-0.52 -0.92,-0.53 -0.92,-0.53H7.72c0,0 -0.54,0.01 -0.92,0.54C6.78,6.06 6.77,6.08 6.75,6.1C6.68,6.21 6.61,6.34 6.56,6.5C6.34,7.16 5.82,8.72 5,11.19v6.5C5,18.14 5.35,18.5 5.78,18.5zM8.33,7.5h7.34l0.23,0.69l0.43,1.31H7.67L8.33,7.5zM7,11.51V11.5h10v0.01v2.99H7V11.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gas_meter.xml b/compose/material/material/icons/generator/raw-icons/twotone/gas_meter.xml
deleted file mode 100644
index 981c0d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gas_meter.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6H8C6.9,6 6,6.9 6,8v10c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V8C18,6.9 17.1,6 16,6zM12,18c-1.38,0 -2.5,-1.1 -2.5,-2.46c0,-1.09 0.43,-1.39 2.5,-3.79c2.05,2.38 2.5,2.7 2.5,3.79C14.5,16.9 13.38,18 12,18zM16,10H8V8h8V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h-1V2h-2v2h-2V2H9v2H8C5.79,4 4,5.79 4,8v10c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4V8C20,5.79 18.21,4 16,4zM18,18c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2V8c0,-1.1 0.9,-2 2,-2h8c1.1,0 2,0.9 2,2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,15.54C9.5,16.9 10.62,18 12,18s2.5,-1.1 2.5,-2.46c0,-1.09 -0.45,-1.41 -2.5,-3.79C9.93,14.15 9.5,14.46 9.5,15.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gavel.xml b/compose/material/material/icons/generator/raw-icons/twotone/gavel.xml
deleted file mode 100644
index 48c0e59..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gavel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h12v2H1v-2zM5.24,8.07l2.83,-2.83 14.14,14.14 -2.83,2.83L5.24,8.07zM12.32,1l5.66,5.66 -2.83,2.83 -5.66,-5.66L12.32,1zM3.83,9.48l5.66,5.66 -2.83,2.83L1,12.31l2.83,-2.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/generating_tokens.xml b/compose/material/material/icons/generator/raw-icons/twotone/generating_tokens.xml
deleted file mode 100644
index 8532a52..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/generating_tokens.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S12.31,6 9,6zM12,10.5h-2v5H8v-5H6V9h6V10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8C17,7.58 13.42,4 9,4zM9,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6s6,2.69 6,6S12.31,18 9,18zM12,10.5h-2v5H8v-5H6V9h6V10.5zM20.25,3.75L23,5l-2.75,1.25L19,9l-1.25,-2.75L15,5l2.75,-1.25L19,1L20.25,3.75zM20.25,17.75L23,19l-2.75,1.25L19,23l-1.25,-2.75L15,19l2.75,-1.25L19,15L20.25,17.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gesture.xml b/compose/material/material/icons/generator/raw-icons/twotone/gesture.xml
deleted file mode 100644
index c3087f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gesture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.59,6.89c0.7,-0.71 1.4,-1.35 1.71,-1.22 0.5,0.2 0,1.03 -0.3,1.52 -0.25,0.42 -2.86,3.89 -2.86,6.31 0,1.28 0.48,2.34 1.34,2.98 0.75,0.56 1.74,0.73 2.64,0.46 1.07,-0.31 1.95,-1.4 3.06,-2.77 1.21,-1.49 2.83,-3.44 4.08,-3.44 1.63,0 1.65,1.01 1.76,1.79 -3.78,0.64 -5.38,3.67 -5.38,5.37 0,1.7 1.44,3.09 3.21,3.09 1.63,0 4.29,-1.33 4.69,-6.1L21,14.88v-2.5h-2.47c-0.15,-1.65 -1.09,-4.2 -4.03,-4.2 -2.25,0 -4.18,1.91 -4.94,2.84 -0.58,0.73 -2.06,2.48 -2.29,2.72 -0.25,0.3 -0.68,0.84 -1.11,0.84 -0.45,0 -0.72,-0.83 -0.36,-1.92 0.35,-1.09 1.4,-2.86 1.85,-3.52 0.78,-1.14 1.3,-1.92 1.3,-3.28C8.95,3.69 7.31,3 6.44,3 5.12,3 3.97,4 3.72,4.25c-0.36,0.36 -0.66,0.66 -0.88,0.93l1.75,1.71zM13.88,18.55c-0.31,0 -0.74,-0.26 -0.74,-0.72 0,-0.6 0.73,-2.2 2.87,-2.76 -0.3,2.69 -1.43,3.48 -2.13,3.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/get_app.xml b/compose/material/material/icons/generator/raw-icons/twotone/get_app.xml
deleted file mode 100644
index 7d2aac7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/get_app.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,11H13V5h-2v6H9.83L12,13.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-4L15,3L9,3v6L5,9l7,7 7,-7zM11,11L11,5h2v6h1.17L12,13.17 9.83,11L11,11zM5,18h14v2L5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gif.xml b/compose/material/material/icons/generator/raw-icons/twotone/gif.xml
deleted file mode 100644
index 573e665f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gif.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9L13,9v6h-1.5L11.5,9zM9,9L6,9c-0.6,0 -1,0.5 -1,1v4c0,0.5 0.4,1 1,1h3c0.6,0 1,-0.5 1,-1v-2L8.5,12v1.5h-2v-3L10,10.5L10,10c0,-0.5 -0.4,-1 -1,-1zM19,10.5L19,9h-4.5v6L16,15v-2h2v-1.5h-2v-1h3z"
-      android:strokeAlpha="0.87"
-      android:fillAlpha="0.87"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gif_box.xml b/compose/material/material/icons/generator/raw-icons/twotone/gif_box.xml
deleted file mode 100644
index d9a05b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gif_box.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14V5H5zM9.5,13v-1h1v1c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,-0.45 -1,-1v-2c0,-0.55 0.45,-1 1,-1h1c0.55,0 1,0.45 1,1h-2v2H9.5zM12.5,14h-1v-4h1V14zM16.5,11h-2v0.5H16v1h-1.5V14h-1v-4h3V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14V19zM5,3C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5zM11.5,14h1v-4h-1V14zM13.5,14h1v-1.5H16v-1h-1.5V11h2v-1h-3V14zM9.5,12v1h-1v-2h2c0,-0.55 -0.45,-1 -1,-1h-1c-0.55,0 -1,0.45 -1,1v2c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1H9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/girl.xml b/compose/material/material/icons/generator/raw-icons/twotone/girl.xml
deleted file mode 100644
index 96b3cd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/girl.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c0.97,0 1.75,-0.78 1.75,-1.75S12.97,4 12,4s-1.75,0.78 -1.75,1.75S11.03,7.5 12,7.5zM14,16v4h-4v-4H8l2.38,-6.38C10.63,8.95 11.28,8.5 12,8.5s1.37,0.45 1.62,1.12L16,16H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gite.xml b/compose/material/material/icons/generator/raw-icons/twotone/gite.xml
deleted file mode 100644
index ff8fe5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gite.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12h10v5H4V12zM20,17h-4v-6.17l2,-2v0l2,2V17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6zM4,12h10v5H4V12zM20,17h-4v-6.17l2,-2v0l2,2V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/golf_course.xml b/compose/material/material/icons/generator/raw-icons/twotone/golf_course.xml
deleted file mode 100644
index 4c451d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/golf_course.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5.92L9,2v18H7v-1.73c-1.79,0.35 -3,0.99 -3,1.73 0,1.1 2.69,2 6,2s6,-0.9 6,-2c0,-0.99 -2.16,-1.81 -5,-1.97V8.98l6,-3.06z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,19.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5.92L9,2v18H7v-1.73c-1.79,0.35 -3,0.99 -3,1.73 0,1.1 2.69,2 6,2s6,-0.9 6,-2c0,-0.99 -2.16,-1.81 -5,-1.97V8.98l6,-3.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gpp_bad.xml b/compose/material/material/icons/generator/raw-icons/twotone/gpp_bad.xml
deleted file mode 100644
index 28f2bbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gpp_bad.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09zM9.91,8.5L8.5,9.91L10.59,12L8.5,14.09l1.41,1.41L12,13.42l2.09,2.08l1.41,-1.41L13.42,12l2.08,-2.09L14.09,8.5L12,10.59L9.91,8.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.39v4.7c0,4 2.55,7.7 6,8.83c3.45,-1.13 6,-4.82 6,-8.83v-4.7l-6,-2.25L6,6.39zM15.5,9.91L13.42,12l2.08,2.09l-1.41,1.41L12,13.42L9.91,15.5L8.5,14.09L10.59,12L8.5,9.91L9.91,8.5L12,10.59l2.09,-2.09L15.5,9.91z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gpp_good.xml b/compose/material/material/icons/generator/raw-icons/twotone/gpp_good.xml
deleted file mode 100644
index 6e5a539..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gpp_good.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.31v4.78c0,4 2.55,7.7 6,8.83c3.45,-1.13 6,-4.82 6,-8.83V6.31l-6,-2.12L6,6.31zM16.6,9.88l-5.66,5.66L7.4,12l1.41,-1.41l2.12,2.12l4.24,-4.24L16.6,9.88z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83V6.31l6,-2.12l6,2.12V11.09zM8.82,10.59L7.4,12l3.54,3.54l5.66,-5.66l-1.41,-1.41l-4.24,4.24L8.82,10.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gpp_maybe.xml b/compose/material/material/icons/generator/raw-icons/twotone/gpp_maybe.xml
deleted file mode 100644
index fc39401..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gpp_maybe.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.39v4.7c0,4 2.55,7.7 6,8.83c3.45,-1.13 6,-4.82 6,-8.83v-4.7l-6,-2.25L6,6.39zM13,16h-2v-2h2V16zM13,12h-2V7h2V12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09zM11,16h2v-2h-2V16zM11,12h2V7h-2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gps_fixed.xml b/compose/material/material/icons/generator/raw-icons/twotone/gps_fixed.xml
deleted file mode 100644
index 9cd76c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gps_fixed.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gps_not_fixed.xml b/compose/material/material/icons/generator/raw-icons/twotone/gps_not_fixed.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gps_not_fixed.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gps_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/gps_off.xml
deleted file mode 100644
index a580646..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gps_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77L23,13v-2h-2.06zM3,4.27l2.04,2.04C3.97,7.62 3.26,9.23 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21l1.41,-1.41L4.41,2.86 3,4.27zM16.27,17.54C15.09,18.45 13.61,19 12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grade.xml b/compose/material/material/icons/generator/raw-icons/twotone/grade.xml
deleted file mode 100644
index 2d3a8a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grade.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.11,10.83l-2.47,-0.21 -1.2,-0.1 -0.47,-1.11L12,7.13l-0.97,2.28 -0.47,1.11 -1.2,0.1 -2.47,0.21 1.88,1.63 0.91,0.79 -0.27,1.17 -0.57,2.42 2.13,-1.28 1.03,-0.63 1.03,0.63 2.13,1.28 -0.57,-2.42 -0.27,-1.17 0.91,-0.79z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.64,-7.03L22,9.24zM14.59,14.42l0.56,2.41 -2.12,-1.28 -1.03,-0.62 -1.03,0.62 -2.12,1.28 0.56,-2.41 0.27,-1.18 -0.91,-0.79 -1.88,-1.63 2.47,-0.21 1.2,-0.1 0.47,-1.11 0.97,-2.27 0.97,2.29 0.47,1.11 1.2,0.1 2.47,0.21 -1.88,1.63 -0.91,0.79 0.27,1.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/gradient.xml b/compose/material/material/icons/generator/raw-icons/twotone/gradient.xml
deleted file mode 100644
index 3e46f55..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/gradient.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11h2v2h-2zM19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14zM9,18L7,18v-2h2v2zM13,18h-2v-2h2v2zM17,18h-2v-2h2v2zM5,13h2v-2L5,11L5,5h14v6h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2L9,15v-2L7,13v2L5,15v-2zM7,9h2v2L7,11zM15,9h2v2h-2zM11,9h2v2h-2zM9,11h2v2L9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grading.xml b/compose/material/material/icons/generator/raw-icons/twotone/grading.xml
deleted file mode 100644
index b5d0218..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grading.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7h16v2H4V7zM4,13h16v-2H4V13zM4,17h7v-2H4V17zM4,21h7v-2H4V21zM15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42L18.58,15L15.41,18.17zM4,3v2h16V3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grain.xml b/compose/material/material/icons/generator/raw-icons/twotone/grain.xml
deleted file mode 100644
index 0a84953..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grain.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM18,16c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM6,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM14,8c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM10,16c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM10,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM14,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,20c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/graphic_eq.xml b/compose/material/material/icons/generator/raw-icons/twotone/graphic_eq.xml
deleted file mode 100644
index 42f814b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/graphic_eq.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18h2L9,6L7,6v12zM11,22h2L13,2h-2v20zM3,14h2v-4L3,10v4zM15,18h2L17,6h-2v12zM19,10v4h2v-4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grass.xml b/compose/material/material/icons/generator/raw-icons/twotone/grass.xml
deleted file mode 100644
index aafa3e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grass.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20H2v-2h5.75l0,0C7.02,15.19 4.81,12.99 2,12.26C2.64,12.1 3.31,12 4,12C8.42,12 12,15.58 12,20zM22,12.26C21.36,12.1 20.69,12 20,12c-2.93,0 -5.48,1.58 -6.88,3.93c0.29,0.66 0.53,1.35 0.67,2.07c0.13,0.65 0.2,1.32 0.2,2h2h6v-2h-5.75C16.98,15.19 19.19,12.99 22,12.26zM15.64,11.02c0.78,-2.09 2.23,-3.84 4.09,-5C15.44,6.16 12,9.67 12,14c0,0.01 0,0.02 0,0.02C12.95,12.75 14.2,11.72 15.64,11.02zM11.42,8.85C10.58,6.66 8.88,4.89 6.7,4C8.14,5.86 9,8.18 9,10.71c0,0.21 -0.03,0.41 -0.04,0.61c0.43,0.24 0.83,0.52 1.22,0.82C10.39,10.96 10.83,9.85 11.42,8.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grid_3x3.xml b/compose/material/material/icons/generator/raw-icons/twotone/grid_3x3.xml
deleted file mode 100644
index bdc2232..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grid_3x3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grid_4x4.xml b/compose/material/material/icons/generator/raw-icons/twotone/grid_4x4.xml
deleted file mode 100644
index 460133b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grid_4x4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22zM7,7h4v4H7V7zM7,17v-4h4v4H7zM17,17h-4v-4h4V17zM17,11h-4V7h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grid_goldenratio.xml b/compose/material/material/icons/generator/raw-icons/twotone/grid_goldenratio.xml
deleted file mode 100644
index 96956d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grid_goldenratio.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22zM13,13h-2v-2h2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grid_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/grid_off.xml
deleted file mode 100644
index 54aa239..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grid_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,14v-4h-4v2.89L17.11,14zM10,12.55L10,14h1.45zM14,10h-0.89l0.89,0.89zM19.11,16l0.89,0.89L20,16zM8,4h-0.89l0.89,0.89zM14,8L14,4h-4v2.89L11.11,8zM16,4h4v4h-4zM10,16v4h4v-3.45l-0.55,-0.55zM4,10v4h4v-3.45L7.45,10zM16,20h1.45L16,18.55zM4,16h4v4L4,20zM4,6.55L4,8h1.45z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4v0.89l2,2L10,4h4v4h-2.89l2,2L14,10v0.89l2,2L16,10h4v4h-2.89l2,2L20,16v0.89l2,2L22,4c0,-1.1 -0.9,-2 -2,-2L5.11,2l2,2L8,4zM16,4h4v4h-4L16,4zM1.41,1.14L0,2.55l2,2L2,20c0,1.1 0.9,2 2,2h15.45l2.01,2.01 1.41,-1.41L1.41,1.14zM10,12.55L11.45,14L10,14v-1.45zM4,6.55L5.45,8L4,8L4,6.55zM8,20L4,20v-4h4v4zM8,14L4,14v-4h3.45l0.55,0.55L8,14zM14,20h-4v-4h3.45l0.55,0.55L14,20zM16,20v-1.45L17.45,20L16,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grid_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/grid_on.xml
deleted file mode 100644
index 6b97898..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grid_on.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h4v4h-4zM10,16h4v4h-4zM4,4h4v4L4,8zM4,10h4v4L4,14zM4,16h4v4L4,20zM16,4h4v4h-4zM16,10h4v4h-4zM16,16h4v4h-4zM10,4h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM8,20L4,20v-4h4v4zM8,14L4,14v-4h4v4zM8,8L4,8L4,4h4v4zM14,20h-4v-4h4v4zM14,14h-4v-4h4v4zM14,8h-4L10,4h4v4zM20,20h-4v-4h4v4zM20,14h-4v-4h4v4zM20,8h-4L16,4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/grid_view.xml b/compose/material/material/icons/generator/raw-icons/twotone/grid_view.xml
deleted file mode 100644
index 44f7bc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/grid_view.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21h8v-8h-8V21zM15,15h4v4h-4V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/group.xml b/compose/material/material/icons/generator/raw-icons/twotone/group.xml
deleted file mode 100644
index 6019b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/group.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.34,17h9.32c-0.84,-0.58 -2.87,-1.25 -4.66,-1.25s-3.82,0.67 -4.66,1.25z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM9,13.75c-2.34,0 -7,1.17 -7,3.5L2,19h14v-1.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h4v-1.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/group_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/group_add.xml
deleted file mode 100644
index 86e2800..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/group_add.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,15c-2.7,0 -5.8,1.29 -6,2.01V18h12v-1C13.8,16.29 10.7,15 8,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9l0,-2l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4S4,5.79 4,8S5.79,12 8,12zM8,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2S6,9.1 6,8S6.9,6 8,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13zM14,18H2v-0.99C2.2,16.29 5.3,15 8,15s5.8,1.29 6,2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/group_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/group_off.xml
deleted file mode 100644
index 325da07..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/group_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.99,8.16C11,8.11 11,8.06 11,8c0,-1.1 -0.9,-2 -2,-2C8.94,6 8.89,6 8.84,6.01L10.99,8.16zM9,15c-2.7,0 -5.8,1.29 -6,2.01V18h12v-0.17l-2.11,-2.11C11.76,15.31 10.33,15 9,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8c0,-1.42 -0.5,-2.73 -1.33,-3.76C14.09,4.1 14.53,4 15,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4c-0.06,0 -0.12,0 -0.18,0l-0.77,-0.77C14.65,10.29 15,9.18 15,8zM22.83,20H23v-3c0,-2.18 -3.58,-3.47 -6.34,-3.87c1.1,0.75 1.95,1.71 2.23,2.94L22.83,20zM9,6C8.94,6 8.89,6 8.84,6.01l-1.6,-1.6C7.77,4.15 8.37,4 9,4c2.21,0 4,1.79 4,4c0,0.63 -0.15,1.23 -0.41,1.76l-1.6,-1.6C11,8.11 11,8.06 11,8C11,6.9 10.1,6 9,6zM9.17,12C9.11,12 9.06,12 9,12c-2.21,0 -4,-1.79 -4,-4c0,-0.06 0,-0.11 0,-0.17L0.69,3.51L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0,-2.66 5.33,-4 8,-4c0.37,0 0.8,0.03 1.25,0.08L9.17,12zM9,15c-2.7,0 -5.8,1.29 -6,2.01V18h12v-0.17l-2.11,-2.11C11.76,15.31 10.33,15 9,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/group_remove.xml b/compose/material/material/icons/generator/raw-icons/twotone/group_remove.xml
deleted file mode 100644
index cbfb9c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/group_remove.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S9.1,10 8,10zM14,18H2v-0.99C2.2,16.29 5.3,15 8,15s5.8,1.29 6,2V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,9v2h-6V9H24zM8,4C5.79,4 4,5.79 4,8s1.79,4 4,4s4,-1.79 4,-4S10.21,4 8,4zM8,10c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S9.1,10 8,10zM8,13c-2.67,0 -8,1.34 -8,4v3h16v-3C16,14.34 10.67,13 8,13zM14,18H2v-0.99C2.2,16.29 5.3,15 8,15s5.8,1.29 6,2V18zM12.51,4.05C13.43,5.11 14,6.49 14,8s-0.57,2.89 -1.49,3.95C14.47,11.7 16,10.04 16,8S14.47,4.3 12.51,4.05zM16.53,13.83C17.42,14.66 18,15.7 18,17v3h2v-3C20,15.55 18.41,14.49 16.53,13.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/group_work.xml b/compose/material/material/icons/generator/raw-icons/twotone/group_work.xml
deleted file mode 100644
index 599fc76..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/group_work.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM8,16c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM12,10c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM16,16c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/groups.xml b/compose/material/material/icons/generator/raw-icons/twotone/groups.xml
deleted file mode 100644
index 518b818..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/groups.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.07,16c0.09,-0.23 0.13,-0.39 0.91,-0.69c0.97,-0.38 1.99,-0.56 3.02,-0.56s2.05,0.18 3.02,0.56c0.77,0.3 0.81,0.46 0.91,0.69H8.07zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,8 12,8"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C2,12.1 2.9,13 4,13zM5.13,14.1C4.76,14.04 4.39,14 4,14c-0.99,0 -1.93,0.21 -2.78,0.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61C4.5,15.56 4.73,14.78 5.13,14.1zM20,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C18,12.1 18.9,13 20,13zM24,16.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0V16.43zM16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65zM8.07,16c0.09,-0.23 0.13,-0.39 0.91,-0.69c0.97,-0.38 1.99,-0.56 3.02,-0.56s2.05,0.18 3.02,0.56c0.77,0.3 0.81,0.46 0.91,0.69H8.07zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,8 12,8M12,6c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3C15,7.34 13.66,6 12,6L12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/groups_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/groups_2.xml
deleted file mode 100644
index de313ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/groups_2.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.43,15.48c-1.1,-0.49 -2.26,-0.73 -3.43,-0.73c-1.18,0 -2.33,0.25 -3.43,0.73c-0.23,0.1 -0.4,0.29 -0.49,0.52h7.85C15.83,15.77 15.66,15.58 15.43,15.48z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.94,8.79C12.86,8.33 12.47,8 12,8s-0.86,0.33 -0.94,0.79L10.86,10h2.28L12.94,8.79z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.27,12h3.46c0.93,0 1.63,-0.83 1.48,-1.75l-0.3,-1.79C14.67,7.04 13.44,6 12,6S9.33,7.04 9.09,8.47l-0.3,1.79C8.64,11.17 9.34,12 10.27,12zM11.06,8.79C11.14,8.33 11.53,8 12,8s0.86,0.33 0.94,0.79l0.2,1.21h-2.28L11.06,8.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.66,11.11c-0.13,0.26 -0.18,0.57 -0.1,0.88c0.16,0.69 0.76,1.03 1.53,1c0,0 1.49,0 1.95,0c0.83,0 1.51,-0.58 1.51,-1.29c0,-0.14 -0.03,-0.27 -0.07,-0.4c-0.01,-0.03 -0.01,-0.05 0.01,-0.08c0.09,-0.16 0.14,-0.34 0.14,-0.53c0,-0.31 -0.14,-0.6 -0.36,-0.82c-0.03,-0.03 -0.03,-0.06 -0.02,-0.1c0.07,-0.2 0.07,-0.43 0.01,-0.65C6.1,8.69 5.71,8.4 5.27,8.38c-0.03,0 -0.05,-0.01 -0.07,-0.03C5.03,8.14 4.72,8 4.37,8C4.07,8 3.8,8.1 3.62,8.26C3.59,8.29 3.56,8.29 3.53,8.28c-0.14,-0.06 -0.3,-0.09 -0.46,-0.09c-0.65,0 -1.18,0.49 -1.24,1.12c0,0.02 -0.01,0.04 -0.03,0.06c-0.29,0.26 -0.46,0.65 -0.41,1.05c0.03,0.22 0.12,0.43 0.25,0.6C1.67,11.04 1.67,11.08 1.66,11.11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65zM8.07,16c0.09,-0.23 0.27,-0.42 0.49,-0.52c1.1,-0.49 2.26,-0.73 3.43,-0.73c1.18,0 2.33,0.25 3.43,0.73c0.23,0.1 0.4,0.29 0.49,0.52H8.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11v-0.5c0,-1.1 -0.9,-2 -2,-2h-2c-0.42,0 -0.65,0.48 -0.39,0.81l0.7,0.63C18.12,10.25 18,10.61 18,11c0,1.1 0.9,2 2,2S22,12.1 22,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/groups_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/groups_3.xml
deleted file mode 100644
index bec5cdb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/groups_3.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.43,15.48c-1.1,-0.49 -2.26,-0.73 -3.43,-0.73c-1.18,0 -2.33,0.25 -3.43,0.73c-0.23,0.1 -0.4,0.29 -0.49,0.52h7.85C15.83,15.77 15.66,15.58 15.43,15.48z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,13.65c-1.17,-0.52 -2.61,-0.9 -4.24,-0.9c-1.63,0 -3.07,0.39 -4.24,0.9C6.68,14.13 6,15.21 6,16.39V18h12v-1.61C18,15.21 17.32,14.13 16.24,13.65zM8.07,16c0.09,-0.23 0.27,-0.42 0.49,-0.52c1.1,-0.49 2.26,-0.73 3.43,-0.73c1.18,0 2.33,0.25 3.43,0.73c0.23,0.1 0.4,0.29 0.49,0.52H8.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.22,14.58C0.48,14.9 0,15.62 0,16.43V18l4.5,0v-1.61c0,-0.83 0.23,-1.61 0.63,-2.29C4.76,14.04 4.39,14 4,14C3.01,14 2.07,14.21 1.22,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.78,14.58C21.93,14.21 20.99,14 20,14c-0.39,0 -0.76,0.04 -1.13,0.1c0.4,0.68 0.63,1.46 0.63,2.29V18l4.5,0v-1.57C24,15.62 23.52,14.9 22.78,14.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3S9,7.34 9,9C9,10.66 10.34,12 12,12zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,8 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.497,11l2.503,-2.503l2.503,2.503l-2.503,2.503z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9l-2.5,4l5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/h_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/h_mobiledata.xml
deleted file mode 100644
index 2e267be..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/h_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/h_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/h_plus_mobiledata.xml
deleted file mode 100644
index 119aa12..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/h_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11zM22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hail.xml b/compose/material/material/icons/generator/raw-icons/twotone/hail.xml
deleted file mode 100644
index ff85537..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,6 12,6zM17,2h2c0,2.7 -0.93,4.41 -2.3,5.5c-0.5,0.4 -1.1,0.7 -1.7,0.9V22h-2v-6h-2v6H9V10.1c-0.3,0.1 -0.5,0.2 -0.6,0.3C7.87,10.81 7,11.43 7,14H5c0,-2.06 0.35,-3.78 2.11,-5.29C8.21,7.81 10,7 12,7s2.68,-0.46 3.48,-1.06C15.96,5.55 17,4.76 17,2zM4,16h3v6H4V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/handshake.xml b/compose/material/material/icons/generator/raw-icons/twotone/handshake.xml
deleted file mode 100644
index 06e0455..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/handshake.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.22,19.85c-0.18,0.18 -0.5,0.21 -0.71,0c-0.18,-0.18 -0.21,-0.5 0,-0.71l3.39,-3.39l-1.41,-1.41l-3.39,3.39c-0.19,0.2 -0.51,0.19 -0.71,0c-0.21,-0.21 -0.18,-0.53 0,-0.71l3.39,-3.39l-1.41,-1.41l-3.39,3.39c-0.18,0.18 -0.5,0.21 -0.71,0c-0.19,-0.19 -0.19,-0.51 0,-0.71l3.39,-3.39L9.24,10.1l-3.39,3.39c-0.18,0.18 -0.5,0.21 -0.71,0c-0.19,-0.2 -0.19,-0.51 0,-0.71L9.52,8.4l1.87,1.86c0.95,0.95 2.59,0.94 3.54,0c0.98,-0.98 0.98,-2.56 0,-3.54l-1.86,-1.86l0.28,-0.28c0.78,-0.78 2.05,-0.78 2.83,0l4.24,4.24c0.78,0.78 0.78,2.05 0,2.83L12.22,19.85z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.22,19.85c-0.18,0.18 -0.5,0.21 -0.71,0c-0.18,-0.18 -0.21,-0.5 0,-0.71l3.39,-3.39l-1.41,-1.41l-3.39,3.39c-0.19,0.2 -0.51,0.19 -0.71,0c-0.21,-0.21 -0.18,-0.53 0,-0.71l3.39,-3.39l-1.41,-1.41l-3.39,3.39c-0.18,0.18 -0.5,0.21 -0.71,0c-0.19,-0.19 -0.19,-0.51 0,-0.71l3.39,-3.39L9.24,10.1l-3.39,3.39c-0.18,0.18 -0.5,0.21 -0.71,0c-0.19,-0.2 -0.19,-0.51 0,-0.71L9.52,8.4l1.87,1.86c0.95,0.95 2.59,0.94 3.54,0c0.98,-0.98 0.98,-2.56 0,-3.54l-1.86,-1.86l0.28,-0.28c0.78,-0.78 2.05,-0.78 2.83,0l4.24,4.24c0.78,0.78 0.78,2.05 0,2.83L12.22,19.85zM21.83,13.07c1.56,-1.56 1.56,-4.09 0,-5.66l-4.24,-4.24c-1.56,-1.56 -4.09,-1.56 -5.66,0l-0.28,0.28l-0.28,-0.28c-1.56,-1.56 -4.09,-1.56 -5.66,0L2.17,6.71c-1.42,1.42 -1.55,3.63 -0.4,5.19l1.45,-1.45C2.83,9.7 2.96,8.75 3.59,8.12l3.54,-3.54c0.78,-0.78 2.05,-0.78 2.83,0l3.56,3.56c0.18,0.18 0.21,0.5 0,0.71c-0.21,0.21 -0.53,0.18 -0.71,0L9.52,5.57l-5.8,5.79c-0.98,0.97 -0.98,2.56 0,3.54c0.39,0.39 0.89,0.63 1.42,0.7c0.07,0.52 0.3,1.02 0.7,1.42c0.4,0.4 0.9,0.63 1.42,0.7c0.07,0.52 0.3,1.02 0.7,1.42c0.4,0.4 0.9,0.63 1.42,0.7c0.07,0.54 0.31,1.03 0.7,1.42c0.47,0.47 1.1,0.73 1.77,0.73c0.67,0 1.3,-0.26 1.77,-0.73L21.83,13.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/handyman.xml b/compose/material/material/icons/generator/raw-icons/twotone/handyman.xml
deleted file mode 100644
index 28d99f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/handyman.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.66,14.64l-4.25,4.24l0.71,0.71l4.24,-4.25l0,0l-0.7,-0.7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.596,15.345l0.707,-0.707l4.243,4.243l-0.707,0.707z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.67,18.17l-5.3,-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39 1.02,0.39 1.41,0l2.12,-2.12C22.06,19.2 22.06,18.56 21.67,18.17zM18.84,19.59l-4.24,-4.24l0.71,-0.71l4.24,4.24L18.84,19.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,10.19l1.41,-1.41l2.12,2.12c1.17,-1.17 1.17,-3.07 0,-4.24l-3.54,-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3c-0.39,0.39 -0.39,1.02 0,1.41l2.12,2.12c0.39,0.39 1.02,0.39 1.41,0l5.3,-5.3v-2.12l5.15,-5.15L17.34,10.19zM9.36,15.34l-4.24,4.24l-0.71,-0.71l4.24,-4.24l0,0L9.36,15.34L9.36,15.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hardware.xml b/compose/material/material/icons/generator/raw-icons/twotone/hardware.xml
deleted file mode 100644
index d8b5842..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hardware.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.77,6H11v5h2V5H9C8.11,5 7.32,5.39 6.77,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13h2v6h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3l-3,3V3H9C6.24,3 4,5.24 4,8h5v12c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8l3,3h2V3H18zM13,19h-2v-6h2V19zM13,11h-2V6H6.77C7.32,5.39 8.11,5 9,5h4V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hd.xml b/compose/material/material/icons/generator/raw-icons/twotone/hd.xml
deleted file mode 100644
index 513613f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hd.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5h2v3h-2zM19,5L5,5v14h14L19,5zM11,15L9.5,15v-2h-2v2L6,15L6,9h1.5v2.5h2L9.5,9L11,9v6zM18,14c0,0.55 -0.45,1 -1,1h-4L13,9h4c0.55,0 1,0.45 1,1v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2zM5,5h14v14L5,19L5,5zM9.5,11.5h-2L7.5,9L6,9v6h1.5v-2h2v2L11,15L11,9L9.5,9zM17,9h-4v6h4c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM16.5,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_auto.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_auto.xml
deleted file mode 100644
index f1e5fee..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_auto.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.04,8.04l-0.09,0l-1.6,4.55l3.29,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM15.21,17l-0.98,-2.81H9.78l-1,2.81h-1.9l4.13,-11h1.97l4.13,11H15.21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.01,6L6.88,17h1.9l1,-2.81h4.44L15.21,17h1.9L12.98,6H11.01zM10.35,12.59l1.6,-4.55h0.09l1.6,4.55H10.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_auto_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_auto_select.xml
deleted file mode 100644
index 2b48b61..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_auto_select.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18.5l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0l0,2l1.5,0l0,-2l2,0l0,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18l-2,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l2,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1C18,16.7 17.3,16 16.5,16zM16.5,18.5h-2v-1h2V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.97,5.3l-1.02,2.89l2.1,0l-1.02,-2.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM14.04,11l-0.63,-1.79h-2.83L9.96,11H8.74l2.63,-7h1.25l2.63,7H14.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_enhanced_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_enhanced_select.xml
deleted file mode 100644
index 794fff1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_enhanced_select.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C9.79,4 8,5.79 8,8s1.79,4 4,4s4,-1.79 4,-4S14.21,4 12,4zM15,9h-2v2h-2V9H9V7h2V5h2v2h2V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2zM12,12c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4S14.21,12 12,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5l-2,0l0,2l-2,0l0,2l2,0l0,2l2,0l0,-2l2,0l0,-2l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,18l-2,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l2,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18.5l0,-2l-1.5,0l0,2l-2,0l0,1.5l2,0l0,2l1.5,0l0,-2l2,0l0,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1C18,16.7 17.3,16 16.5,16zM16.5,18.5h-2v-1h2V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_off.xml
deleted file mode 100644
index f661682..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,15v-2h1.1l0.9,2L21,15l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5L16,9v4.86L17.14,15h0.36zM17.5,10.5h2v1h-2v-1zM13,10.5v0.36l1.5,1.5L14.5,10.5c0,-0.8 -0.7,-1.5 -1.5,-1.5h-1.86l1.5,1.5L13,10.5zM2.51,2.49L1.45,3.55 6.9,9h-0.4v2h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15v-4.9l1.5,1.5L9.5,15h3.4l7.6,7.6 1.06,-1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_off_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_off_select.xml
deleted file mode 100644
index 3386919..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_off_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98,4.15L9.42,2.59c5.1,-2.42 10.41,2.89 7.99,7.99l-1.56,-1.56C16.66,6.06 13.94,3.34 10.98,4.15zM6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1 2.89,10.41 7.99,7.99l1.66,1.66l1.41,-1.41L6.34,2.34zM8.15,6.98l4.87,4.87C10.06,12.66 7.34,9.94 8.15,6.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_on.xml
deleted file mode 100644
index 8d5803a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9L9.5,9v6L13,15c0.8,0 1.5,-0.7 1.5,-1.5v-3c0,-0.8 -0.7,-1.5 -1.5,-1.5zM13,13.5h-2v-3h2v3zM21,11.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5L16,9v6h1.5v-2h1.1l0.9,2L21,15l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4zM19.5,11.5h-2v-1h2v1zM6.5,11h-2L4.5,9L3,9v6h1.5v-2.5h2L6.5,15L8,15L8,9L6.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_on_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_on_select.xml
deleted file mode 100644
index d883059..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_on_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9,-2.1C17.6,19.6 18,19.1 18,18.5zM16.5,18.5h-2v-1h2V18.5zM3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18zM10,16H6.5v6H10c0.8,0 1.5,-0.7 1.5,-1.5v-3C11.5,16.7 10.8,16 10,16zM10,20.5H8v-3h2V20.5zM24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12,4c2.21,0 4,1.79 4,4s-1.79,4 -4,4s-4,-1.79 -4,-4S9.79,4 12,4M12,2C8.69,2 6,4.69 6,8s2.69,6 6,6s6,-2.69 6,-6S15.31,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_plus.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_plus.xml
deleted file mode 100644
index 105d4c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_plus.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,2.52 1.17,4.77 3,6.24V13h3.5c0.8,0 1.5,0.7 1.5,1.5v1c0,0.6 -0.4,1.1 -0.9,1.4L12,19h-1.5l-0.9,-2H8.5v2H8.13c1.15,0.64 2.47,1 3.87,1c4.41,0 8,-3.59 8,-8C20,7.59 16.41,4 12,4zM12,12h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12V12zM17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zM17.5,10.5c0,0.8 -0.7,1.5 -1.5,1.5h-3V6h3c0.8,0 1.5,0.7 1.5,1.5V10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5h1.5v3h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5h2v1h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-1.4,0 -2.72,-0.36 -3.87,-1H8.5v-2h1.1l0.9,2H12l-0.9,-2.1c0.5,-0.3 0.9,-0.8 0.9,-1.4v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5H7v5.24C5.17,16.77 4,14.52 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20zM8.5,15.5v-1h2v1H8.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,8l-2,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l2,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6h-3v6h3c0.8,0 1.5,-0.7 1.5,-1.5v-3C17.5,6.7 16.8,6 16,6zM16,10.5h-1.5v-3H16V10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13l-1.5,0l0,1.5l-1.5,0l0,1.5l1.5,0l0,1.5l1.5,0l0,-1.5l1.5,0l0,-1.51l-1.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_strong.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_strong.xml
deleted file mode 100644
index 6dc2b1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_strong.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM17,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM5,16c2.21,0 4,-1.79 4,-4S7.21,8 5,8s-4,1.79 -4,4 1.79,4 4,4zM5,10c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hdr_weak.xml b/compose/material/material/icons/generator/raw-icons/twotone/hdr_weak.xml
deleted file mode 100644
index 2761ae5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hdr_weak.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM17,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM5,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/headphones.xml b/compose/material/material/icons/generator/raw-icons/twotone/headphones.xml
deleted file mode 100644
index 491f87f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/headphones.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2v4h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2v4h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.97,0 -9,4.03 -9,9v7c0,1.1 0.9,2 2,2h4v-8H5v-1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v1h-4v8h4c1.1,0 2,-0.9 2,-2v-7C21,7.03 16.97,3 12,3zM7,15v4H5v-4H7zM19,19h-2v-4h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/headphones_battery.xml b/compose/material/material/icons/generator/raw-icons/twotone/headphones_battery.xml
deleted file mode 100644
index d0300c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/headphones_battery.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9h2v7h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7h-1V6h-2v1h-1c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1V8C22,7.45 21.55,7 21,7zM20,16h-2V9h2V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c-3.31,0 -6,2.69 -6,6v4c0,1.1 0.9,2 2,2h2v-5H3.5v-1c0,-2.48 2.02,-4.5 4.5,-4.5s4.5,2.02 4.5,4.5v1H10v5h2c1.1,0 2,-0.9 2,-2v-4C14,8.69 11.31,6 8,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/headset.xml b/compose/material/material/icons/generator/raw-icons/twotone/headset.xml
deleted file mode 100644
index 0fedd56..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/headset.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18h1c0.55,0 1,-0.45 1,-1v-3h-2v4zM5,17c0,0.55 0.45,1 1,1h1v-4H5v3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1c-4.97,0 -9,4.03 -9,9v7c0,1.66 1.34,3 3,3h3v-8L5,12v-2c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v2h-4v8h3c1.66,0 3,-1.34 3,-3v-7c0,-4.97 -4.03,-9 -9,-9zM7,14v4L6,18c-0.55,0 -1,-0.45 -1,-1v-3h2zM19,17c0,0.55 -0.45,1 -1,1h-1v-4h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/headset_mic.xml b/compose/material/material/icons/generator/raw-icons/twotone/headset_mic.xml
deleted file mode 100644
index e0700007..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/headset_mic.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17c0,0.55 0.45,1 1,1h1v-4L5,14v3zM17,14h2v4h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1c-4.97,0 -9,4.03 -9,9v7c0,1.66 1.34,3 3,3h3v-8L5,12v-2c0,-3.87 3.13,-7 7,-7s7,3.13 7,7v2h-4v8h4v1h-7v2h6c1.66,0 3,-1.34 3,-3L21,10c0,-4.97 -4.03,-9 -9,-9zM7,14v4L6,18c-0.55,0 -1,-0.45 -1,-1v-3h2zM19,18h-2v-4h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/headset_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/headset_off.xml
deleted file mode 100644
index b648e3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/headset_off.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h2v4h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.83,14l2.17,2.17l0,-2.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c3.87,0 7,3.13 7,7v1h-4v0.17L16.83,14H19v2.17l2,2V11c0,-4.97 -4.03,-9 -9,-9C9.98,2 8.12,2.67 6.62,3.8l1.43,1.43C9.17,4.45 10.53,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09 3,9.5 3,11v7c0,1.1 0.9,2 2,2h4v-8H5v-1c0,-0.94 0.19,-1.83 0.52,-2.65L15,17.83V20h2.17l1,1H12v2h7c0.34,0 0.65,-0.09 0.93,-0.24l0.55,0.55l1.41,-1.41L2.1,2.1zM7,14v4H5v-4H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/healing.xml b/compose/material/material/icons/generator/raw-icons/twotone/healing.xml
deleted file mode 100644
index b1d967b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/healing.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.03,16.72l3.63,3.62 3.62,-3.63 -3.62,-3.62zM7.29,3.71L3.66,7.34l3.63,3.62 3.62,-3.63z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.73,12.02l3.98,-3.98c0.39,-0.39 0.39,-1.02 0,-1.41l-4.34,-4.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-3.98,3.98L8,2.29C7.8,2.1 7.55,2 7.29,2c-0.25,0 -0.51,0.1 -0.7,0.29L2.25,6.63c-0.39,0.39 -0.39,1.02 0,1.41l3.98,3.98L2.25,16c-0.39,0.39 -0.39,1.02 0,1.41l4.34,4.34c0.39,0.39 1.02,0.39 1.41,0l3.98,-3.98 3.98,3.98c0.2,0.2 0.45,0.29 0.71,0.29s0.51,-0.1 0.71,-0.29l4.34,-4.34c0.39,-0.39 0.39,-1.02 0,-1.41l-3.99,-3.98zM12,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM7.29,10.96L3.66,7.34l3.63,-3.63 3.62,3.62 -3.62,3.63zM10,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM12,15c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM14,11c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM16.66,20.34l-3.63,-3.62 3.63,-3.63 3.62,3.62 -3.62,3.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/health_and_safety.xml b/compose/material/material/icons/generator/raw-icons/twotone/health_and_safety.xml
deleted file mode 100644
index 7f117d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/health_and_safety.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.14L6,6.39v4.7c0,4 2.55,7.7 6,8.83c3.45,-1.13 6,-4.82 6,-8.83v-4.7L12,4.14zM16,13h-2.5v2.5h-3V13H8v-3h2.5V7.5h3V10H16V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hearing.xml b/compose/material/material/icons/generator/raw-icons/twotone/hearing.xml
deleted file mode 100644
index dd69ed8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hearing.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.64,2.64L6.22,1.22C4.23,3.21 3,5.96 3,9s1.23,5.79 3.22,7.78l1.41,-1.41C6.01,13.74 5,11.49 5,9s1.01,-4.74 2.64,-6.36z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,20c-0.29,0 -0.56,-0.06 -0.76,-0.15 -0.71,-0.37 -1.21,-0.88 -1.71,-2.38 -0.51,-1.56 -1.47,-2.29 -2.39,-3 -0.79,-0.61 -1.61,-1.24 -2.32,-2.53C9.29,10.98 9,9.93 9,9c0,-2.8 2.2,-5 5,-5s5,2.2 5,5h2c0,-3.93 -3.07,-7 -7,-7S7,5.07 7,9c0,1.26 0.38,2.65 1.07,3.9 0.91,1.65 1.98,2.48 2.85,3.15 0.81,0.62 1.39,1.07 1.71,2.05 0.6,1.82 1.37,2.84 2.73,3.55 0.51,0.23 1.07,0.35 1.64,0.35 2.21,0 4,-1.79 4,-4h-2c0,1.1 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hearing_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/hearing_disabled.xml
deleted file mode 100644
index c86d496..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hearing_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.03,3.2C7.15,2.44 8.51,2 10,2c3.93,0 7,3.07 7,7c0,1.26 -0.38,2.65 -1.07,3.9c-0.02,0.04 -0.05,0.08 -0.08,0.13l-1.48,-1.48C14.77,10.69 15,9.8 15,9c0,-2.8 -2.2,-5 -5,-5C9.08,4 8.24,4.26 7.5,4.67L6.03,3.2zM17.21,14.38l1.43,1.43C20.11,13.93 21,11.57 21,9c0,-3.04 -1.23,-5.79 -3.22,-7.78l-1.42,1.42C17.99,4.26 19,6.51 19,9C19,11.02 18.33,12.88 17.21,14.38zM10,6.5c-0.21,0 -0.4,0.03 -0.59,0.08l3.01,3.01C12.47,9.4 12.5,9.21 12.5,9C12.5,7.62 11.38,6.5 10,6.5zM21.19,21.19L2.81,2.81L1.39,4.22l2.13,2.13C3.19,7.16 3,8.05 3,9h2c0,-0.36 0.05,-0.71 0.12,-1.05l6.61,6.61c-0.88,0.68 -1.78,1.41 -2.27,2.9c-0.5,1.5 -1,2.01 -1.71,2.38C7.56,19.94 7.29,20 7,20c-1.1,0 -2,-0.9 -2,-2H3c0,2.21 1.79,4 4,4c0.57,0 1.13,-0.12 1.64,-0.35c1.36,-0.71 2.13,-1.73 2.73,-3.55c0.32,-0.98 0.9,-1.43 1.71,-2.05c0.03,-0.02 0.05,-0.04 0.08,-0.06l6.62,6.62L21.19,21.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/heart_broken.xml b/compose/material/material/icons/generator/raw-icons/twotone/heart_broken.xml
deleted file mode 100644
index 303a353..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/heart_broken.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.23,5.42C8.69,5.15 8.09,5 7.5,5C5.54,5 4,6.54 4,8.5c0,2.5 2.45,4.84 6.24,8.23L10.77,12H7.35L9.23,5.42z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5c-0.37,0 -0.75,0.06 -1.12,0.18L14.77,7h2.91l-2.56,8.53C17.98,12.93 20,10.71 20,8.5C20,6.54 18.46,5 16.5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,3c-0.96,0 -1.9,0.25 -2.73,0.69L12,9h3l-3,10l1,-9h-3l1.54,-5.39C10.47,3.61 9.01,3 7.5,3C4.42,3 2,5.42 2,8.5c0,4.13 4.16,7.18 10,12.5c5.47,-4.94 10,-8.26 10,-12.5C22,5.42 19.58,3 16.5,3zM10.24,16.73C6.45,13.34 4,11 4,8.5C4,6.54 5.54,5 7.5,5c0.59,0 1.19,0.15 1.73,0.42L7.35,12h3.42L10.24,16.73zM15.13,15.53L17.69,7h-2.91l0.61,-1.82C15.75,5.06 16.13,5 16.5,5C18.46,5 20,6.54 20,8.5C20,10.71 17.98,12.93 15.13,15.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/heat_pump.xml b/compose/material/material/icons/generator/raw-icons/twotone/heat_pump.xml
deleted file mode 100644
index a56c2fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/heat_pump.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM12,6c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,6 12,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6s-6,2.69 -6,6S8.69,18 12,18zM11.25,15.92c-0.55,-0.1 -1.05,-0.32 -1.5,-0.62l1.5,-1.5V15.92zM12.75,15.92v-2.11l1.5,1.5C13.8,15.61 13.3,15.82 12.75,15.92zM15.31,14.25l-1.5,-1.5h2.11C15.82,13.3 15.61,13.8 15.31,14.25zM15.92,11.25h-2.11l1.5,-1.5C15.61,10.2 15.82,10.7 15.92,11.25zM12.75,8.08c0.55,0.1 1.05,0.32 1.5,0.62l-1.5,1.5V8.08zM12,11c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C11,11.45 11.45,11 12,11zM11.25,8.08v2.11l-1.5,-1.5C10.2,8.39 10.7,8.18 11.25,8.08zM8.69,9.75l1.5,1.5H8.08C8.18,10.7 8.39,10.2 8.69,9.75zM10.19,12.75l-1.5,1.5c-0.3,-0.44 -0.51,-0.95 -0.62,-1.5H10.19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/height.xml b/compose/material/material/icons/generator/raw-icons/twotone/height.xml
deleted file mode 100644
index 4addea0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/height.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.99l3,0l-4,-3.99l-4,3.99l3,0l0,10.02l-3,0l4,3.99l4,-3.99l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/help.xml b/compose/material/material/icons/generator/raw-icons/twotone/help.xml
deleted file mode 100644
index 67d2d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/help.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM13,18h-2v-2h2v2zM13,15h-2c0,-3.25 3,-3 3,-5 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2L8,10c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.5 -3,2.75 -3,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v2h-2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,6c-2.21,0 -4,1.79 -4,4h2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/help_center.xml b/compose/material/material/icons/generator/raw-icons/twotone/help_center.xml
deleted file mode 100644
index ea86196..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/help_center.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14V5H5zM12.01,18c-0.7,0 -1.26,-0.56 -1.26,-1.26c0,-0.71 0.56,-1.25 1.26,-1.25c0.71,0 1.25,0.54 1.25,1.25C13.25,17.43 12.72,18 12.01,18zM15.02,10.6c-0.76,1.11 -1.48,1.46 -1.87,2.17c-0.16,0.29 -0.22,0.48 -0.22,1.41h-1.82c0,-0.49 -0.08,-1.29 0.31,-1.98c0.49,-0.87 1.42,-1.39 1.96,-2.16c0.57,-0.81 0.25,-2.33 -1.37,-2.33c-1.06,0 -1.58,0.8 -1.8,1.48L8.56,8.49C9.01,7.15 10.22,6 11.99,6c1.48,0 2.49,0.67 3.01,1.52C15.44,8.24 15.7,9.59 15.02,10.6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.25,16.74c0,0.69 -0.53,1.26 -1.25,1.26c-0.7,0 -1.26,-0.56 -1.26,-1.26c0,-0.71 0.56,-1.25 1.26,-1.25C12.71,15.49 13.25,16.04 13.25,16.74zM11.99,6c-1.77,0 -2.98,1.15 -3.43,2.49l1.64,0.69c0.22,-0.67 0.74,-1.48 1.8,-1.48c1.62,0 1.94,1.52 1.37,2.33c-0.54,0.77 -1.47,1.29 -1.96,2.16c-0.39,0.69 -0.31,1.49 -0.31,1.98h1.82c0,-0.93 0.07,-1.12 0.22,-1.41c0.39,-0.72 1.11,-1.06 1.87,-2.17c0.68,-1 0.42,-2.36 -0.02,-3.08C14.48,6.67 13.47,6 11.99,6zM19,5H5v14h14V5M19,3c1.1,0 2,0.9 2,2v14c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2H19L19,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/help_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/help_outline.xml
deleted file mode 100644
index cffcef3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/help_outline.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v2h-2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12,6c-2.21,0 -4,1.79 -4,4h2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hevc.xml b/compose/material/material/icons/generator/raw-icons/twotone/hevc.xml
deleted file mode 100644
index c0bb6f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hevc.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,11l-1,0l0,-2l-1.5,0l0,6l1.5,0l0,-2.5l1,0l0,2.5l1.5,0l0,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11v-1c0,-0.55 -0.45,-1 -1,-1h-2c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-1h-1.5v0.5h-1v-3h1V11H21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,13.5l-0.75,-4.5l-1.5,0l1,6l2.5,0l1,-6l-1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9l0,6l3.5,0l0,-1.5l-2,0l0,-1l2,0l0,-1.5l-2,0l0,-0.5l2,0l0,-1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hexagon.xml b/compose/material/material/icons/generator/raw-icons/twotone/hexagon.xml
deleted file mode 100644
index 585183b08..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hexagon.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.05,19l-8.1,0l-4.04,-7l4.04,-7l8.1,0l4.04,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2,3H6.8l-5.2,9l5.2,9h10.4l5.2,-9L17.2,3zM16.05,19H7.95l-4.04,-7l4.04,-7h8.09l4.04,7L16.05,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hide_image.xml b/compose/material/material/icons/generator/raw-icons/twotone/hide_image.xml
deleted file mode 100644
index cda442d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hide_image.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.17,19l-2,-2l-8.17,0l3,-4l2.25,3l0.82,-1.1l-7.07,-7.07l0,11.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,5l11.17,11.17l0,-11.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v11.17l2,2V5c0,-1.1 -0.9,-2 -2,-2H5.83l2,2H19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61l1.41,-1.41L2.81,2.81zM5,19V7.83l7.07,7.07L11.25,16L9,13l-3,4h8.17l2,2H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hide_source.xml b/compose/material/material/icons/generator/raw-icons/twotone/hide_source.xml
deleted file mode 100644
index b502aac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hide_source.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.41L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l10.94,10.94C14.86,19.59 13.48,20 12,20zM7.94,5.12L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8C10.52,4 9.14,4.41 7.94,5.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/high_quality.xml b/compose/material/material/icons/generator/raw-icons/twotone/high_quality.xml
deleted file mode 100644
index 24be5e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/high_quality.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6L5,6v12h14L19,6zM11,15L9.5,15v-2h-2v2L6,15L6,9h1.5v2.5h2L9.5,9L11,9v6zM18,14c0,0.55 -0.45,1 -1,1h-0.75v1.5h-1.5L14.75,15L14,15c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v4zM14.5,10.5h2v3h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.9,-2 -2,-2L5,4c-1.11,0 -2,0.9 -2,2zM5,6h14v12L5,18L5,6zM9.5,11.5h-2L7.5,9L6,9v6h1.5v-2h2v2L11,15L11,9L9.5,9zM17,9h-3c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h0.75v1.5h1.5L16.25,15L17,15c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM16.5,13.5h-2v-3h2v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/highlight.xml b/compose/material/material/icons/generator/raw-icons/twotone/highlight.xml
deleted file mode 100644
index a7e1a67..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/highlight.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,20h2v-3.83l3,-3V11H8v2.17l3,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14l3,3v5h6v-5l3,-3L18,9L6,9v5zM8,11h8v2.17l-3,3L13,20h-2v-3.83l-3,-3L8,11zM11,2h2v3h-2zM4.916,4.464l2.12,2.122L5.62,8 3.5,5.877zM18.372,8l-1.414,-1.414 2.12,-2.12 1.415,1.413z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/highlight_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/highlight_alt.xml
deleted file mode 100644
index 90c5a10..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/highlight_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5h-2V3h2V5zM15,15v6l2.29,-2.29L19.59,21L21,19.59l-2.29,-2.29L21,15H15zM19,9h2V7h-2V9zM19,13h2v-2h-2V13zM11,21h2v-2h-2V21zM7,5h2V3H7V5zM3,17h2v-2H3V17zM5,21v-2H3C3,20.1 3.9,21 5,21zM19,3v2h2C21,3.9 20.1,3 19,3zM11,5h2V3h-2V5zM3,9h2V7H3V9zM7,21h2v-2H7V21zM3,13h2v-2H3V13zM3,5h2V3C3.9,3 3,3.9 3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/highlight_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/highlight_off.xml
deleted file mode 100644
index 802f88b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/highlight_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM16,14.59L14.59,16 12,13.41 9.41,16 8,14.59 10.59,12 8,9.41 9.41,8 12,10.59 14.59,8 16,9.41 13.41,12 16,14.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,8L12,10.59 9.41,8 8,9.41 10.59,12 8,14.59 9.41,16 12,13.41 14.59,16 16,14.59 13.41,12 16,9.41zM12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hiking.xml b/compose/material/material/icons/generator/raw-icons/twotone/hiking.xml
deleted file mode 100644
index 5a58088..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hiking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM17.5,10.78c-1.23,-0.37 -2.22,-1.17 -2.8,-2.18l-1,-1.6c-0.41,-0.65 -1.11,-1 -1.84,-1c-0.78,0 -1.59,0.5 -1.78,1.44S7,23 7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3c1,1.15 2.41,2.01 4,2.34V23H19V9h-1.5L17.5,10.78zM7.43,13.13l-2.12,-0.41c-0.54,-0.11 -0.9,-0.63 -0.79,-1.17l0.76,-3.93c0.21,-1.08 1.26,-1.79 2.34,-1.58l1.16,0.23L7.43,13.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/history.xml b/compose/material/material/icons/generator/raw-icons/twotone/history.xml
deleted file mode 100644
index 7ba6325..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.25,2.52 0.77,-1.28 -3.52,-2.09L13.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/history_edu.xml b/compose/material/material/icons/generator/raw-icons/twotone/history_edu.xml
deleted file mode 100644
index acf2b78..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/history_edu.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.34,9.76L9.93,8.34C8.98,7.4 7.73,6.88 6.39,6.88C5.76,6.88 5.14,7 4.57,7.22l1.04,1.04h2.28v2.14c0.4,0.23 0.86,0.35 1.33,0.35c0.73,0 1.41,-0.28 1.92,-0.8L11.34,9.76z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.62l6,5.97V14h-1.41l-2.83,-2.83l-0.2,0.2c-0.46,0.46 -0.99,0.8 -1.56,1.03V15h6v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V6h-8V6.62z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4v1.38c-0.83,-0.33 -1.72,-0.5 -2.61,-0.5c-1.79,0 -3.58,0.68 -4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86 1.98,1.31 3.11,1.36V15H6v3c0,1.1 0.9,2 2,2h10c1.66,0 3,-1.34 3,-3V4H9zM7.89,10.41V8.26H5.61L4.57,7.22C5.14,7 5.76,6.88 6.39,6.88c1.34,0 2.59,0.52 3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51 -1.19,0.8 -1.92,0.8C8.75,10.75 8.29,10.63 7.89,10.41zM19,17c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h-6v-2.59c0.57,-0.23 1.1,-0.57 1.56,-1.03l0.2,-0.2L15.59,14H17v-1.41l-6,-5.97V6h8V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/history_toggle_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/history_toggle_off.xml
deleted file mode 100644
index ece916d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/history_toggle_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.1,19.37l1,1.74c-0.96,0.44 -2.01,0.73 -3.1,0.84v-2.02C13.74,19.84 14.44,19.65 15.1,19.37zM4.07,13H2.05c0.11,1.1 0.4,2.14 0.84,3.1l1.74,-1C4.35,14.44 4.16,13.74 4.07,13zM15.1,4.63l1,-1.74C15.14,2.45 14.1,2.16 13,2.05v2.02C13.74,4.16 14.44,4.35 15.1,4.63zM19.93,11h2.02c-0.11,-1.1 -0.4,-2.14 -0.84,-3.1l-1.74,1C19.65,9.56 19.84,10.26 19.93,11zM8.9,19.37l-1,1.74c0.96,0.44 2.01,0.73 3.1,0.84v-2.02C10.26,19.84 9.56,19.65 8.9,19.37zM11,4.07V2.05c-1.1,0.11 -2.14,0.4 -3.1,0.84l1,1.74C9.56,4.35 10.26,4.16 11,4.07zM18.36,7.17l1.74,-1.01c-0.63,-0.87 -1.4,-1.64 -2.27,-2.27l-1.01,1.74C17.41,6.08 17.92,6.59 18.36,7.17zM4.63,8.9l-1.74,-1C2.45,8.86 2.16,9.9 2.05,11h2.02C4.16,10.26 4.35,9.56 4.63,8.9zM19.93,13c-0.09,0.74 -0.28,1.44 -0.56,2.1l1.74,1c0.44,-0.96 0.73,-2.01 0.84,-3.1H19.93zM16.83,18.36l1.01,1.74c0.87,-0.63 1.64,-1.4 2.27,-2.27l-1.74,-1.01C17.92,17.41 17.41,17.92 16.83,18.36zM7.17,5.64L6.17,3.89C5.29,4.53 4.53,5.29 3.9,6.17l1.74,1.01C6.08,6.59 6.59,6.08 7.17,5.64zM5.64,16.83L3.9,17.83c0.63,0.87 1.4,1.64 2.27,2.27l1.01,-1.74C6.59,17.92 6.08,17.41 5.64,16.83zM13,7h-2v5.41l4.29,4.29l1.41,-1.41L13,11.59V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hive.xml b/compose/material/material/icons/generator/raw-icons/twotone/hive.xml
deleted file mode 100644
index 5abdaa9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hive.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.92,7l-1.13,2l1.13,2l2.14,0l1.13,-2l-1.13,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.94,16l-1.14,2.02l1.12,1.98l2.16,0l1.12,-1.98l-1.14,-2.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.06,14l1.13,-2l-1.13,-2l-2.12,0l-1.13,2l1.13,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.92,13l-1.13,2l1.13,2l2.14,0l1.13,-2l-1.13,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.94,7l-1.13,2l1.13,2l2.14,0l1.13,-2l-1.13,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.92,4l-1.12,1.98l1.14,2.02l2.12,0l1.14,-2.02l-1.12,-1.98z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.94,13l-1.13,2l1.13,2l2.14,0l1.13,-2l-1.13,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.5,9l-2.25,-4h-3.31l-1.69,-3h-4.5L8.06,5H4.75L2.5,9l1.69,3L2.5,15l2.25,4h3.31l1.69,3h4.5l1.69,-3h3.31l2.25,-4l-1.69,-3L21.5,9zM8.06,17H5.92l-1.12,-2l1.12,-2h2.14l1.12,2L8.06,17zM8.06,11H5.92L4.79,9l1.12,-2h2.14l1.12,2L8.06,11zM13.08,20h-2.16L9.8,18.02L10.94,16h2.12l1.13,2.02L13.08,20zM9.81,12l1.12,-2h2.12l1.12,2l-1.12,2h-2.12L9.81,12zM13.06,8h-2.12L9.8,5.98L10.92,4h2.16l1.12,1.98L13.06,8zM18.08,17h-2.14l-1.12,-2l1.12,-2h2.14l1.12,2L18.08,17zM18.08,11h-2.14l-1.12,-2l1.12,-2h2.14l1.12,2L18.08,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hls.xml b/compose/material/material/icons/generator/raw-icons/twotone/hls.xml
deleted file mode 100644
index 3308a21..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9zM16.5,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1h2V11h1.5v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2V13h-1.5v1C15.5,14.55 15.95,15 16.5,15zM14,15v-1.5h-2.5V9H10v6H14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hls_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/hls_off.xml
deleted file mode 100644
index f11a05bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hls_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.83,15h1.67c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H17v-1h2V11h1.5v-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1H19v1h-2V13h-1.17L17.83,15zM8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L12.17,15H10v-2.17L8,10.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/holiday_village.xml b/compose/material/material/icons/generator/raw-icons/twotone/holiday_village.xml
deleted file mode 100644
index c1dd3a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/holiday_village.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6.83l-4,4V18h3v-3h2v3h3v-7.17L8,6.83zM9,13H7v-2h2V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4l-6,6v10h12V10L8,4zM12,18H9v-3H7v3H4v-7.17l4,-4l4,4V18zM9,13H7v-2h2V13zM18,20V8.35L13.65,4h-2.83L16,9.18V20H18zM22,20V6.69L19.31,4h-2.83L20,7.52V20H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/home.xml b/compose/material/material/icons/generator/raw-icons/twotone/home.xml
deleted file mode 100644
index 347e5a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/home.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,12h3v8h6v-6h2v6h6v-8h3L12,3zM17,18h-2v-6L9,12v6L7,18v-7.81l5,-4.5 5,4.5L17,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10.19V18h2v-6h6v6h2v-7.81l-5,-4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/home_max.xml b/compose/material/material/icons/generator/raw-icons/twotone/home_max.xml
deleted file mode 100644
index fc392ced..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/home_max.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H5C3.9,7 3,7.9 3,9v5c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5C2.79,5 1,6.79 1,9v5c0,2.21 1.79,4 4,4h2v1h10v-1h2c2.21,0 4,-1.79 4,-4V9C23,6.79 21.21,5 19,5zM21,14c0,1.1 -0.9,2 -2,2H5c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h14c1.1,0 2,0.9 2,2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/home_mini.xml b/compose/material/material/icons/generator/raw-icons/twotone/home_mini.xml
deleted file mode 100644
index 7a84b2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/home_mini.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-7.91,0 -8,4.8 -8,5h16C19.99,11.51 19.64,7 12,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.14,17h5.72c2.1,0 3.92,-1.24 4.71,-3H4.42C5.22,15.76 7.04,17 9.14,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5C4.19,5 2,9.48 2,12c0,3.86 3.13,7 6.99,7h6.02c2.69,0 6.99,-2.08 6.99,-7C22,12 22,5 12,5zM14.86,17H9.14c-2.1,0 -3.92,-1.24 -4.71,-3h15.15C18.78,15.76 16.96,17 14.86,17zM4,12c0,-0.2 0.09,-5 8,-5c7.64,0 7.99,4.51 8,5H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/home_repair_service.xml b/compose/material/material/icons/generator/raw-icons/twotone/home_repair_service.xml
deleted file mode 100644
index 5480e35..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/home_repair_service.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8h-3V6c0,-1.1 -0.9,-2 -2,-2H9C7.9,4 7,4.9 7,6v2H4c-1.1,0 -2,0.9 -2,2v10h20V10C22,8.9 21.1,8 20,8zM9,6h6v2H9V6zM20,18H4v-3h2v1h2v-1h8v1h2v-1h2V18zM20,13h-2v-1h-2v1H8v-1H6v1H4v-3h3h10h3V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16l-2,0l0,-1l-8,0l0,1l-2,0l0,-1l-2,0l0,3l16,0l0,-3l-2,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10l0,3l2,0l0,-1l2,0l0,1l8,0l0,-1l2,0l0,1l2,0l0,-3l-3,0l-10,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/home_work.xml b/compose/material/material/icons/generator/raw-icons/twotone/home_work.xml
deleted file mode 100644
index f016276..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/home_work.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11h2v2h-2v2h2v2h-2v2h4V5h-9v1.4l5,3.57V11zM17,7h2v2h-2V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3l0,1.97l0.96,0.69l1.04,0.74l0,-1.4l9,0l0,14l-4,0l0,2l6,0l0,-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12l0,7l2,0l0,-5l6,0l0,5l2,0l0,-7l-5,-3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11v10h6v-5h2v5h6V11L8,6L1,11zM13,19h-2v-5H5v5H3v-7l5,-3.5l5,3.5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/horizontal_distribute.xml b/compose/material/material/icons/generator/raw-icons/twotone/horizontal_distribute.xml
deleted file mode 100644
index eb2e40a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/horizontal_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22H2V2h2V22zM22,2h-2v20h2V2zM13.5,7h-3v10h3V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/horizontal_rule.xml b/compose/material/material/icons/generator/raw-icons/twotone/horizontal_rule.xml
deleted file mode 100644
index 765877d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/horizontal_rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11h16v2h-16z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/horizontal_split.xml b/compose/material/material/icons/generator/raw-icons/twotone/horizontal_split.xml
deleted file mode 100644
index d8d6caf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/horizontal_split.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15v2L5,17v-2h14m2,-10L3,5v2h18L21,5zM21,9L3,9v2h18L21,9zM21,13L3,13v6h18v-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14v2H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hot_tub.xml b/compose/material/material/icons/generator/raw-icons/twotone/hot_tub.xml
deleted file mode 100644
index f82257f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hot_tub.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.42,7.21c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L18,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06zM11.15,12c-0.31,-0.22 -0.59,-0.46 -0.82,-0.72l-1.4,-1.55c-0.19,-0.21 -0.43,-0.38 -0.69,-0.5 -0.29,-0.14 -0.62,-0.23 -0.96,-0.23h-0.03C6.01,9 5,10.01 5,11.25L5,12L2,12v8c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-8L11.15,12zM7,20L5,20v-6h2v6zM11,20L9,20v-6h2v6zM15,20h-2v-6h2v6zM19,20h-2v-6h2v6zM13.42,7.21c0.57,0.62 0.82,1.41 0.67,2.2l-0.11,0.59h1.91l0.06,-0.43c0.21,-1.36 -0.27,-2.71 -1.3,-3.71l-0.07,-0.07c-0.57,-0.62 -0.82,-1.41 -0.67,-2.2L14,3h-1.89l-0.06,0.43c-0.2,1.36 0.27,2.71 1.3,3.72l0.07,0.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hotel.xml b/compose/material/material/icons/generator/raw-icons/twotone/hotel.xml
deleted file mode 100644
index 44c30d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hotel.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-6v6h8v-4c0,-1.1 -0.9,-2 -2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11c0,1.66 1.34,3 3,3s3,-1.34 3,-3 -1.34,-3 -3,-3 -3,1.34 -3,3zM8,11c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1 0.45,-1 1,-1 1,0.45 1,1zM19,7h-8v8L3,15L3,5L1,5v15h2v-3h18v3h2v-9c0,-2.21 -1.79,-4 -4,-4zM21,15h-8L13,9h6c1.1,0 2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hotel_class.xml b/compose/material/material/icons/generator/raw-icons/twotone/hotel_class.xml
deleted file mode 100644
index 561af9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hotel_class.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.89l0.94,3.11l2.82,0l-2.27,1.62l0.93,3.01l-2.42,-1.84l-2.42,1.84l0.93,-3.01l-2.27,-1.62l2.82,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.89L11.94,12h2.82l-2.27,1.62l0.93,3.01L11,14.79l-2.42,1.84l0.93,-3.01L7.24,12h2.82L11,8.89zM8.58,10H1l6.17,4.41L4.83,22L11,17.31L17.18,22l-2.35,-7.59L21,10h-7.58L11,2L8.58,10zM21.36,22l-1.86,-6.01L23.68,13h-3.44l-3.08,2.2l1.46,4.72L21.36,22zM17,8l-1.82,-6l-1.04,3.45L14.91,8H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_bottom.xml b/compose/material/material/icons/generator/raw-icons/twotone/hourglass_bottom.xml
deleted file mode 100644
index 2744e28..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_bottom.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,16.5l-4,-4l-4,4l0,3.5l8,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,16.5l-4,-4l-4,4l0,3.5l8,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,22h12v-6l-4,-4l3.99,-4.01L18,2H6l0.01,5.99L10,12l-4,3.99V22zM8,7.5V4h8v3.5l-4,4L8,7.5zM8,16.5l4,-4l4,4V20H8V16.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/hourglass_disabled.xml
deleted file mode 100644
index 8d66ecc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_disabled.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4l8,0l0,3.5l-2.84,2.84l1.25,1.25l3.59,-3.58l-0.01,-0.01l0.01,0l0,-6l-12,0l0,1.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41,-1.41L2.1,2.1zM16,20H8v-3.5l2.84,-2.84L16,18.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_empty.xml b/compose/material/material/icons/generator/raw-icons/twotone/hourglass_empty.xml
deleted file mode 100644
index 8e91c8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_empty.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2L6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01L6,16.01L6,22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01L18,8L18,2zM16,16.5L16,20L8,20v-3.5l4,-4 4,4zM16,7.5l-4,4 -4,-4L8,4h8v3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_full.xml b/compose/material/material/icons/generator/raw-icons/twotone/hourglass_full.xml
deleted file mode 100644
index d9b6c42..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_full.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5l4,4 4,-4L16,4L8,4zM8,16.5L8,20h8v-3.5l-4,-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2L6,2v6h0.01L6,8.01 10,12l-4,4 0.01,0.01L6,16.01L6,22h12v-5.99h-0.01L18,16l-4,-4 4,-3.99 -0.01,-0.01L18,8L18,2zM16,16.5L16,20L8,20v-3.5l4,-4 4,4zM16,7.5l-4,4 -4,-4L8,4h8v3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_top.xml b/compose/material/material/icons/generator/raw-icons/twotone/hourglass_top.xml
deleted file mode 100644
index 84ed077b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hourglass_top.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5l4,4l4,-4l0,-3.5l-8,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7.5l4,4l4,-4l0,-3.5l-8,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6v6l4,4l-3.99,4.01L6,22h12l-0.01,-5.99L14,12l4,-3.99V2zM16,16.5V20H8v-3.5l4,-4L16,16.5zM16,7.5l-4,4l-4,-4V4h8V7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/house.xml b/compose/material/material/icons/generator/raw-icons/twotone/house.xml
deleted file mode 100644
index 664804b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/house.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10.19V18h2v-6h6v6h2v-7.81l-5,-4.5L7,10.19zM14,10h-4c0,-1.1 0.9,-2 2,-2S14,8.9 14,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3zM17,18h-2v-6H9v6H7v-7.81l5,-4.5l5,4.5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h4c0,-1.1 -0.9,-2 -2,-2S10,8.9 10,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/house_siding.xml b/compose/material/material/icons/generator/raw-icons/twotone/house_siding.xml
deleted file mode 100644
index 5060144..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/house_siding.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10zM14.57,8H9.43L12,5.69L14.57,8zM7,16v-2h10v2H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12zM7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10zM14.57,8H9.43L12,5.69L14.57,8zM7,16v-2h10v2H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/houseboat.xml b/compose/material/material/icons/generator/raw-icons/twotone/houseboat.xml
deleted file mode 100644
index 3a23c03..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/houseboat.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13l0,-2l-2,0l0,2l-2,0l0,-4.82l3,-2.2l3,2.2l0,4.82z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.95,0 -2.1,1 -3.34,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,16 3.24,17 2,17v2c1.9,0 2.17,-1 3.35,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.08,-1 3.32,-1s1.37,1 3.32,1c1.91,0 2.14,-1 3.33,-1c1.18,0 1.45,1 3.35,1v-2c-1.24,0 -1.38,-1 -3.33,-1c-1.91,0 -2.14,1 -3.33,1C14.1,17 13.95,16 12,16zM20.34,11.34l-1.37,1.37C18.78,12.89 18.52,13 18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61L7,9.65V13H5.74c-0.27,0 -0.52,-0.11 -0.71,-0.29l-1.37,-1.37l-1.41,1.41l1.37,1.37C4.18,14.68 4.95,15 5.74,15h12.51c0.8,0 1.56,-0.32 2.12,-0.88l1.37,-1.37L20.34,11.34zM13,13v-2h-2v2H9V8.18l3,-2.2l3,2.2V13H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/how_to_reg.xml b/compose/material/material/icons/generator/raw-icons/twotone/how_to_reg.xml
deleted file mode 100644
index 1cf8337..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/how_to_reg.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h4.99L9,17l0.93,-0.94C7.55,16.33 5.2,17.37 5,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM11,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM10,18L5,18c0.2,-0.63 2.55,-1.67 4.93,-1.94h0.03l0.46,-0.45L12,14.06c-0.39,-0.04 -0.68,-0.06 -1,-0.06 -2.67,0 -8,1.34 -8,4v2h9l-2,-2zM20.6,12.5l-5.13,5.17 -2.07,-2.08L12,17l3.47,3.5L22,13.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/how_to_vote.xml b/compose/material/material/icons/generator/raw-icons/twotone/how_to_vote.xml
deleted file mode 100644
index 8d0ffc5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/how_to_vote.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14v1H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h-0.68l-2,2h1.91L19,17L5,17l1.78,-2h2.05l-2,-2L6,13l-3,3v4c0,1.1 0.89,2 1.99,2L19,22c1.1,0 2,-0.89 2,-2v-4l-3,-3zM19,20L5,20v-1h14v1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.048,12.905L8.505,9.362l4.95,-4.95 3.543,3.543z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.11,7.25L14.16,2.3c-0.38,-0.4 -1.01,-0.4 -1.4,-0.01L6.39,8.66c-0.39,0.39 -0.39,1.02 0,1.41l4.95,4.95c0.39,0.39 1.02,0.39 1.41,0l6.36,-6.36c0.39,-0.39 0.39,-1.02 0,-1.41zM12.05,12.9L8.51,9.36l4.95,-4.95L17,7.95l-4.95,4.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/html.xml b/compose/material/material/icons/generator/raw-icons/twotone/html.xml
deleted file mode 100644
index 7e3acb3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/html.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9zM17.5,9H13c-0.55,0 -1,0.45 -1,1v5h1.5v-4.5h1V14H16v-3.51h1V15h1.5v-5C18.5,9.45 18.05,9 17.5,9zM11,9H6v1.5h1.75V15h1.5v-4.5H11V9zM24,15v-1.5h-2.5V9H20v6H24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/http.xml b/compose/material/material/icons/generator/raw-icons/twotone/http.xml
deleted file mode 100644
index b93de26..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/http.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,11h-2L2.5,9L1,9v6h1.5v-2.5h2L4.5,15L6,15L6,9L4.5,9v2zM7,10.5h1.5L8.5,15L10,15v-4.5h1.5L11.5,9L7,9v1.5zM12.5,10.5L14,10.5L14,15h1.5v-4.5L17,10.5L17,9h-4.5v1.5zM21.5,9L18,9v6h1.5v-2h2c0.8,0 1.5,-0.7 1.5,-1.5v-1c0,-0.8 -0.7,-1.5 -1.5,-1.5zM21.5,11.5h-2v-1h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/https.xml b/compose/material/material/icons/generator/raw-icons/twotone/https.xml
deleted file mode 100644
index 2c45442..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/https.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12L18,10L6,10v10zM12,13c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8L9,6zM18,20L6,20L6,10h12v10zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hub.xml b/compose/material/material/icons/generator/raw-icons/twotone/hub.xml
deleted file mode 100644
index 0bb1aed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hub.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C4,10.05 3.55,10.5 3,10.5zM6,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C7,20.55 6.55,21 6,21zM11,3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S11,3.55 11,3zM12,15c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C14.5,13.88 13.38,15 12,15zM18,19c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C17,19.45 17.45,19 18,19zM21,10.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C22,10.05 21.55,10.5 21,10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6.5c-1.66,0 -3,1.34 -3,3c0,0.07 0,0.14 0.01,0.21l-2.03,0.68c-0.64,-1.21 -1.82,-2.09 -3.22,-2.32V5.91C14.04,5.57 15,4.4 15,3c0,-1.66 -1.34,-3 -3,-3S9,1.34 9,3c0,1.4 0.96,2.57 2.25,2.91v2.16c-1.4,0.23 -2.58,1.11 -3.22,2.32L5.99,9.71C6,9.64 6,9.57 6,9.5c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3c1.06,0 1.98,-0.55 2.52,-1.37l2.03,0.68c-0.2,1.29 0.17,2.66 1.09,3.69l-1.41,1.77C6.85,17.09 6.44,17 6,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3c0,-0.68 -0.22,-1.3 -0.6,-1.8l1.41,-1.77c1.36,0.76 3.02,0.75 4.37,0l1.41,1.77C15.22,18.7 15,19.32 15,20c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3c-0.44,0 -0.85,0.09 -1.23,0.26l-1.41,-1.77c0.93,-1.04 1.29,-2.4 1.09,-3.69l2.03,-0.68c0.53,0.82 1.46,1.37 2.52,1.37c1.66,0 3,-1.34 3,-3S22.66,6.5 21,6.5zM3,10.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C4,10.05 3.55,10.5 3,10.5zM6,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C7,20.55 6.55,21 6,21zM11,3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S11,3.55 11,3zM12,15c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C14.5,13.88 13.38,15 12,15zM18,19c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C17,19.45 17.45,19 18,19zM21,10.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C22,10.05 21.55,10.5 21,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/hvac.xml b/compose/material/material/icons/generator/raw-icons/twotone/hvac.xml
deleted file mode 100644
index 371b5a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/hvac.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM12,6c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,6 12,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6s-6,2.69 -6,6S8.69,18 12,18zM12,16c-1.01,0 -1.91,-0.39 -2.62,-1h5.24C13.91,15.61 13.01,16 12,16zM12,8c1.01,0 1.91,0.39 2.62,1H9.38C10.09,8.39 10.99,8 12,8zM8.56,10h6.89c0.26,0.45 0.44,0.96 0.51,1.5h-7.9C8.12,10.96 8.29,10.45 8.56,10zM15.95,12.5c-0.07,0.54 -0.24,1.05 -0.51,1.5H8.56c-0.26,-0.45 -0.44,-0.96 -0.51,-1.5H15.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ice_skating.xml b/compose/material/material/icons/generator/raw-icons/twotone/ice_skating.xml
deleted file mode 100644
index aafaa85..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ice_skating.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16V5h5v1H8.5C8.22,6 8,6.22 8,6.5C8,6.78 8.22,7 8.5,7H10l0.1,1H8.5C8.22,8 8,8.22 8,8.5C8,8.78 8.22,9 8.5,9h1.81c0.45,1.12 1.4,2.01 2.6,2.36l2.62,0.73C16.4,12.33 17,13.1 17,14v2H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,17c0,1.66 -1.34,3 -3,3h-2v-2h3v-4c0,-1.79 -1.19,-3.34 -2.91,-3.82l-2.62,-0.74C12.62,9.19 12,8.39 12,7.5V3H3v15h3v2H2v2h16c2.76,0 5,-2.24 5,-5H21zM5,16V5h5v1H8.5C8.22,6 8,6.22 8,6.5C8,6.78 8.22,7 8.5,7H10l0.1,1H8.5C8.22,8 8,8.22 8,8.5C8,8.78 8.22,9 8.5,9h1.81c0.45,1.12 1.4,2.01 2.6,2.36l2.62,0.73C16.4,12.33 17,13.1 17,14v2H5zM14,20H8v-2h6V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/icecream.xml b/compose/material/material/icons/generator/raw-icons/twotone/icecream.xml
deleted file mode 100644
index 9b5cddb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/icecream.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.32,13.42l2.73,5.21l2.67,-5.23C13.88,13.79 12.95,14 12,14C11.06,14 10.15,13.79 9.32,13.42z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.31,8.02L16.54,7.9l-0.06,-0.78C16.29,4.8 14.34,3 12,3S7.71,4.8 7.51,7.12L7.45,7.9L6.68,8.03C5.72,8.18 5,9.02 5,10c0,1.11 0.9,2 2,2c0.52,0 1.01,-0.21 1.39,-0.56l0.56,-0.54l0.66,0.41C10.32,11.76 11.14,12 12,12s1.68,-0.24 2.39,-0.68l0.66,-0.42l0.56,0.54C15.99,11.8 16.48,12 17,12c1.1,0 2,-0.9 2,-2C19,9.01 18.28,8.18 17.31,8.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.38,6.24C17.79,3.24 15.14,1 12,1S6.21,3.24 5.62,6.24C4.08,6.81 3,8.29 3,10c0,2.21 1.79,4 4,4c0.12,0 0.23,-0.02 0.34,-0.02L12.07,23l4.61,-9.03C16.79,13.98 16.89,14 17,14c2.21,0 4,-1.79 4,-4C21,8.29 19.92,6.81 18.38,6.24zM12.05,18.63l-2.73,-5.21C10.15,13.79 11.06,14 12,14c0.95,0 1.88,-0.21 2.72,-0.6L12.05,18.63zM17,12c-0.52,0 -1.01,-0.2 -1.39,-0.56l-0.56,-0.54l-0.66,0.42C13.68,11.76 12.86,12 12,12s-1.68,-0.24 -2.39,-0.69L8.95,10.9l-0.56,0.54C8.01,11.79 7.52,12 7,12c-1.1,0 -2,-0.89 -2,-2c0,-0.98 0.72,-1.82 1.68,-1.97L7.45,7.9l0.06,-0.78C7.71,4.8 9.66,3 12,3s4.29,1.8 4.48,4.12l0.06,0.78l0.77,0.12C18.28,8.18 19,9.01 19,10C19,11.1 18.1,12 17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/image.xml b/compose/material/material/icons/generator/raw-icons/twotone/image.xml
deleted file mode 100644
index c64e6c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/image.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM9,13.14l2.14,2.58 3,-3.87L18,17L6,17l3,-3.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM14.14,11.86l-3,3.86L9,13.14 6,17h12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/image_aspect_ratio.xml b/compose/material/material/icons/generator/raw-icons/twotone/image_aspect_ratio.xml
deleted file mode 100644
index f5de53b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/image_aspect_ratio.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16L20,6L4,6v12zM14,10h2v2h-2v-2zM14,14h2v2h-2v-2zM10,10h2v2h-2v-2zM6,10h2v2L6,12v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10h2v2h-2zM14,14h2v2h-2zM6,10h2v2L6,12zM10,10h2v2h-2zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/image_not_supported.xml b/compose/material/material/icons/generator/raw-icons/twotone/image_not_supported.xml
deleted file mode 100644
index f0f6a47..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/image_not_supported.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,5H19v11.17L7.83,5zM16.17,19l-2,-2H6l3,-4l2,2.72l0.84,-1.05L5,7.83V19H16.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.83,3H19c1.1,0 2,0.9 2,2v13.17l-2,-2V5H7.83L5.83,3zM20.49,23.31L18.17,21H5c-1.1,0 -2,-0.9 -2,-2V5.83L0.69,3.51L2.1,2.1l1.49,1.49L5,5l8.11,8.11l2.69,2.69L19,19l1.41,1.41l1.49,1.49L20.49,23.31zM16.17,19l-2,-2H6l3,-4l2,2.72l0.84,-1.05L5,7.83V19H16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/image_search.xml b/compose/material/material/icons/generator/raw-icons/twotone/image_search.xml
deleted file mode 100644
index b5d118d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/image_search.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.7,11.53c-0.7,0.31 -1.45,0.47 -2.21,0.47C12.46,12 10,9.53 10,6.5c0,-0.17 0.01,-0.34 0.03,-0.5H4v14h14v-8.17l-0.3,-0.3zM5.5,18l2.75,-3.53 1.96,2.36 2.75,-3.54L16.5,18h-11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.21,16.83l-1.96,-2.36L5.5,18h11l-3.54,-4.71zM20,6.5C20,4.01 17.99,2 15.5,2S11,4.01 11,6.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21,13.42 22.42,12 19.3,8.89c0.44,-0.7 0.7,-1.51 0.7,-2.39zM15.5,9C14.12,9 13,7.88 13,6.5S14.12,4 15.5,4 18,5.12 18,6.5 16.88,9 15.5,9zM18,20H4V6h6.03c0.06,-0.72 0.27,-1.39 0.58,-2H4c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6.17l-2,-2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/imagesearch_roller.xml b/compose/material/material/icons/generator/raw-icons/twotone/imagesearch_roller.xml
deleted file mode 100644
index 671b694..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/imagesearch_roller.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4h10v2h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17h2v4h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7V3c0,-0.55 -0.45,-1 -1,-1H7C6.45,2 6,2.45 6,3v1H4C2.9,4 2,4.9 2,6v4c0,1.1 0.9,2 2,2h8v3h-1c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-6c0,-0.55 -0.45,-1 -1,-1h-1v-3c0,-1.1 -0.9,-2 -2,-2H4V6h2v1c0,0.55 0.45,1 1,1h12C19.55,8 20,7.55 20,7zM8,4h10v2H8V4zM14,21h-2v-4h2V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/import_contacts.xml b/compose/material/material/icons/generator/raw-icons/twotone/import_contacts.xml
deleted file mode 100644
index 56463a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/import_contacts.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.11,-0.35 -2.33,-0.5 -3.5,-0.5 -1.95,0 -4.05,0.4 -5.5,1.5 -1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v14.65c0,0.25 0.25,0.5 0.5,0.5 0.1,0 0.15,-0.05 0.25,-0.05C3.1,20.45 5.05,20 6.5,20c1.95,0 4.05,0.4 5.5,1.5 1.35,-0.85 3.8,-1.5 5.5,-1.5 1.65,0 3.35,0.3 4.75,1.05 0.1,0.05 0.15,0.05 0.25,0.05 0.25,0 0.5,-0.25 0.5,-0.5L23,6c-0.6,-0.45 -1.25,-0.75 -2,-1zM3,18.5L3,7c1.1,-0.35 2.3,-0.5 3.5,-0.5 1.34,0 3.13,0.41 4.5,0.99v11.5C9.63,18.41 7.84,18 6.5,18c-1.2,0 -2.4,0.15 -3.5,0.5zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5 -1.34,0 -3.13,0.41 -4.5,0.99L13,7.49c1.37,-0.59 3.16,-0.99 4.5,-0.99 1.2,0 2.4,0.15 3.5,0.5v11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7.49c-1.37,-0.58 -3.16,-0.99 -4.5,-0.99 -1.2,0 -2.4,0.15 -3.5,0.5v11.5c1.1,-0.35 2.3,-0.5 3.5,-0.5 1.34,0 3.13,0.41 4.5,0.99V7.49z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/import_export.xml b/compose/material/material/icons/generator/raw-icons/twotone/import_export.xml
deleted file mode 100644
index 50024220..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/import_export.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6.99h3V14h2V6.99h3L9,3zM14,10v7.01h-3L15,21l4,-3.99h-3V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/important_devices.xml b/compose/material/material/icons/generator/raw-icons/twotone/important_devices.xml
deleted file mode 100644
index 0a9d891..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/important_devices.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13h5v7h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11.01L18,11c-0.55,0 -1,0.45 -1,1v9c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-9c0,-0.55 -0.45,-0.99 -1,-0.99zM23,20h-5v-7h5v7zM2,4h18v5h2L22,4c0,-1.11 -0.9,-2 -2,-2L2,2C0.89,2 0,2.89 0,4v12c0,1.1 0.89,2 2,2h7v2L7,20v2h8v-2h-2v-2h2v-2L2,16L2,4zM11,6l-0.97,3L7,9l2.47,1.76 -0.94,2.91 2.47,-1.8 2.47,1.8 -0.94,-2.91L15,9h-3.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/inbox.xml b/compose/material/material/icons/generator/raw-icons/twotone/inbox.xml
deleted file mode 100644
index c82d96c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/inbox.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,18c-1.48,0 -2.75,-0.81 -3.45,-2H5v3h14v-3h-3.55c-0.69,1.19 -1.97,2 -3.44,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-3h3.56c0.69,1.19 1.97,2 3.45,2s2.75,-0.81 3.45,-2L19,16v3zM19,14h-5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2L5,14L5,5h14v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/incomplete_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/incomplete_circle.xml
deleted file mode 100644
index e7e6e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/incomplete_circle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-2.76 1.12,-5.26 2.93,-7.07L12,12V2C17.52,2 22,6.48 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/indeterminate_check_box.xml b/compose/material/material/icons/generator/raw-icons/twotone/indeterminate_check_box.xml
deleted file mode 100644
index fae9d7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/indeterminate_check_box.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM7,11h10v2L7,13v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,11h10v2L7,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/info.xml b/compose/material/material/icons/generator/raw-icons/twotone/info.xml
deleted file mode 100644
index 044c27f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/info.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM13,17h-2v-6h2v6zM13,9h-2L11,7h2v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2h-2zM11,11h2v6h-2zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/input.xml b/compose/material/material/icons/generator/raw-icons/twotone/input.xml
deleted file mode 100644
index 421cd06..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/input.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3.01H3c-1.1,0 -2,0.9 -2,2V9h2V4.99h18v14.03H3V15H1v4.01c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98v-14c0,-1.11 -0.9,-2 -2,-2zM11,16l4,-4 -4,-4v3H1v2h10v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_chart.xml
deleted file mode 100644
index 79ef70f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_chart.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5v14h14L19,5zM9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2zM5,5h14v14L5,19L5,5zM7,10h2v7L7,17zM11,7h2v10h-2zM15,13h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_chart_outlined.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_chart_outlined.xml
deleted file mode 100644
index f3e3770..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_chart_outlined.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17L7,17v-7h2v7zM13,17h-2L11,7h2v10zM17,17h-2v-4h2v4zM19,19L5,19L5,5h14v14zM19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_comment.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_comment.xml
deleted file mode 100644
index 1e1ab40..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_comment.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h14.83L20,17.17L20,4L4,4v12zM6,6h12v2L6,8L6,6zM6,9h12v2L6,11L6,9zM6,12h12v2L6,14v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4c0,-1.1 -0.9,-2 -2,-2zM20,4v13.17L18.83,16L4,16L4,4h16zM6,12h12v2L6,14zM6,9h12v2L6,11zM6,6h12v2L6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_drive_file.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_drive_file.xml
deleted file mode 100644
index 566e009..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_drive_file.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4H6v16h12V9h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8l-6,-6L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8zM18,20L6,20L6,4h7v5h5v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_emoticon.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_emoticon.xml
deleted file mode 100644
index 18da329..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_emoticon.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15.5,8c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,8c0.83,0 1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5 7.67,8 8.5,8zM12,17.5c-2.33,0 -4.31,-1.46 -5.11,-3.5h10.22c-0.8,2.04 -2.78,3.5 -5.11,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.5c2.33,0 4.31,-1.46 5.11,-3.5H6.89c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_invitation.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_invitation.xml
deleted file mode 100644
index db1438c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_invitation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5v2h14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2zM5,7L5,5h14v2L5,7zM5,9h14v10L5,19L5,9zM12,12h5v5h-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_link.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_link.xml
deleted file mode 100644
index 2c0a73f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_link.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.9,12c0,-1.71 1.39,-3.1 3.1,-3.1h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-1.9L7,15.1c-1.71,0 -3.1,-1.39 -3.1,-3.1zM8,13h8v-2L8,11v2zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1s-1.39,3.1 -3.1,3.1h-4L13,17h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_page_break.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_page_break.xml
deleted file mode 100644
index 215f10d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_page_break.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11l-12,0l0,-7l7,0l0,5l5,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20H6v-3H4v3c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-3h-2V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4h7v5h5v2h2V8l-6,-6H6C4.9,2 4,2.9 4,4v7h2V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17h12v3h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insert_photo.xml b/compose/material/material/icons/generator/raw-icons/twotone/insert_photo.xml
deleted file mode 100644
index 2f8d065..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insert_photo.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM9,13.14l2.14,2.58 3,-3.87L18,17L6,17l3,-3.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2zM19,19L5,19L5,5h14v14zM14.14,11.86l-3,3.86L9,13.14 6,17h12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/insights.xml b/compose/material/material/icons/generator/raw-icons/twotone/insights.xml
deleted file mode 100644
index 8421a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/insights.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8c-1.45,0 -2.26,1.44 -1.93,2.51l-3.55,3.56c-0.3,-0.09 -0.74,-0.09 -1.04,0l-2.55,-2.55C12.27,10.45 11.46,9 10,9c-1.45,0 -2.27,1.44 -1.93,2.52l-4.56,4.55C2.44,15.74 1,16.55 1,18c0,1.1 0.9,2 2,2c1.45,0 2.26,-1.44 1.93,-2.51l4.55,-4.56c0.3,0.09 0.74,0.09 1.04,0l2.55,2.55C12.73,16.55 13.54,18 15,18c1.45,0 2.27,-1.44 1.93,-2.52l3.56,-3.55C21.56,12.26 23,11.45 23,10C23,8.9 22.1,8 21,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9l0.94,-2.07l2.06,-0.93l-2.06,-0.93l-0.94,-2.07l-0.92,2.07l-2.08,0.93l2.08,0.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.5,11l0.5,-2l2,-0.5l-2,-0.5l-0.5,-2l-0.5,2l-2,0.5l2,0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/install_desktop.xml b/compose/material/material/icons/generator/raw-icons/twotone/install_desktop.xml
deleted file mode 100644
index 14a49dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/install_desktop.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.83,9l0,0l1.17,1.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17l16,0l0,-3.17l-3,3l-7.83,-7.83l3.83,-3.83l0,-0.17l-9,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17H4V5h9V3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2v-5.17l-2,2V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.17l0,-7.17l-2,0l0,7.17l-2.59,-2.58l-1.41,1.41l5,5l5,-5l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/install_mobile.xml b/compose/material/material/icons/generator/raw-icons/twotone/install_mobile.xml
deleted file mode 100644
index 4c468c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/install_mobile.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h7v1h-7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,18H7V6h7V4H7V3h7V1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-5h-2V18zM17,21H7v-1h10V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3l-2,0l0,7.17l-2.59,-2.58l-0.41,0.41l-1,1l1,1l4,4l3,-3l2,-2l-1.41,-1.41l-0.59,0.59l-2,1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/integration_instructions.xml b/compose/material/material/icons/generator/raw-icons/twotone/integration_instructions.xml
deleted file mode 100644
index 49cbe1f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/integration_instructions.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14.17l-2.17,-2.17l2.17,-2.17l-1.41,-1.42l-3.59,3.59l3.59,3.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.41,15.59l3.59,-3.59l-3.59,-3.59l-1.41,1.42l2.17,2.17l-2.17,2.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C4.86,3 4.73,3.01 4.6,3.04C4.21,3.12 3.86,3.32 3.59,3.59c-0.18,0.18 -0.33,0.4 -0.43,0.64C3.06,4.46 3,4.72 3,5v10v1v3c0,0.27 0.06,0.54 0.16,0.78c0.1,0.24 0.25,0.45 0.43,0.64c0.27,0.27 0.62,0.47 1.01,0.55C4.73,20.99 4.86,21 5,21h14c1.1,0 2,-0.9 2,-2v-3v-1V5C21,3.9 20.1,3 19,3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75S12.41,4.25 12,4.25s-0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v14h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/interests.xml b/compose/material/material/icons/generator/raw-icons/twotone/interests.xml
deleted file mode 100644
index c3bc050..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/interests.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.02,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S8.12,19 7.02,19zM19,19h-4v-4h4V19zM7,6.12L8.6,9H5.4L7,6.12zM17,8.35c-1.45,-1.22 -3,-2.4 -3,-3.1c0,-0.43 0.35,-0.75 0.75,-0.75c0.31,0 0.52,0.17 0.73,0.37L17,6.3l1.52,-1.43c0.21,-0.2 0.42,-0.37 0.73,-0.37c0.4,0 0.75,0.32 0.75,0.75C20,5.95 18.45,7.13 17,8.35z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.02,13c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S9.23,13 7.02,13zM7.02,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S8.12,19 7.02,19zM13,13v8h8v-8H13zM19,19h-4v-4h4V19zM7,2l-5,9h10L7,2zM7,6.12L8.6,9H5.4L7,6.12zM19.25,2.5c-1.06,0 -1.81,0.56 -2.25,1.17c-0.44,-0.61 -1.19,-1.17 -2.25,-1.17C13.19,2.5 12,3.78 12,5.25c0,2 2.42,3.42 5,5.75c2.58,-2.33 5,-3.75 5,-5.75C22,3.78 20.81,2.5 19.25,2.5zM17,8.35c-1.45,-1.22 -3,-2.4 -3,-3.1c0,-0.43 0.35,-0.75 0.75,-0.75c0.31,0 0.52,0.17 0.73,0.37L17,6.3l1.52,-1.43c0.21,-0.2 0.42,-0.37 0.73,-0.37c0.4,0 0.75,0.32 0.75,0.75C20,5.95 18.45,7.13 17,8.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/interpreter_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/interpreter_mode.xml
deleted file mode 100644
index a7a8ab3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/interpreter_mode.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.52,15.01C15.35,15 15.18,15 15,15c-2.37,0 -4.29,0.73 -5.48,1.34C9.2,16.5 9,16.84 9,17.22V18l7.17,0C15.74,17.26 15.4,16.24 15.52,15.01zM13,8c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2S13,6.9 13,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,16.5c-0.83,0 -1.5,-0.67 -1.5,-1.5v-2.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5V15C22,15.83 21.33,16.5 20.5,16.5zM20,20h1c0,0 0,-1.54 0,-1.54c1.69,-0.24 3,-1.7 3,-3.46h-1c0,1.38 -1.12,2.5 -2.5,2.5S18,16.38 18,15h-1c0,1.76 1.31,3.22 3,3.46C20,18.46 20,20 20,20zM9,12c-2.21,0 -4,-1.79 -4,-4c0,-2.21 1.79,-4 4,-4c0.47,0 0.92,0.08 1.34,0.23C9.5,5.26 9,6.57 9,8c0,1.43 0.5,2.74 1.34,3.77C9.92,11.92 9.47,12 9,12zM7.11,13.13C5.79,14.05 5,15.57 5,17.22V20H1v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66C3.85,13.92 5.37,13.37 7.11,13.13zM11,8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,2.21 -1.79,4 -4,4S11,10.21 11,8zM13,8c0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2S13,6.9 13,8zM15,15c-2.37,0 -4.29,0.73 -5.48,1.34C9.2,16.5 9,16.84 9,17.22V18l7.17,0c0.5,0.86 1.25,1.56 2.15,2L7,20v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66C10.29,13.7 12.47,13 15,13c0.39,0 0.77,0.02 1.14,0.05c-0.33,0.59 -0.55,1.26 -0.62,1.96C15.35,15 15.18,15 15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/inventory.xml b/compose/material/material/icons/generator/raw-icons/twotone/inventory.xml
deleted file mode 100644
index 92a985c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/inventory.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.5l1.5,1.5l-6.99,7L11,15.5l1.5,-1.5l3.01,3L21,11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5l0,3l-10,0l0,-3l-2,0l0,14l6.68,0l-3.51,-3.5l4.33,-4.33l3.01,3l3.49,-3.5l0,-5.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19V5h2v3h10V5h2v5.67l2,-2l0,0V5c0,-1.1 -0.9,-2 -2,-2h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h8.68l-2,-2H5zM12,3c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,3 12,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/inventory_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/inventory_2.xml
deleted file mode 100644
index 02a52db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/inventory_2.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7l16,0l0,-3.02l-16,0.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14V9H5V20zM9,12h6v2H9V12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C3,2 2,2.9 2,4v3.01C2,7.73 2.43,8.35 3,8.7V20c0,1.1 1.1,2 2,2h14c0.9,0 2,-0.9 2,-2V8.7c0.57,-0.35 1,-0.97 1,-1.69V4C22,2.9 21,2 20,2zM19,20H5V9h14V20zM20,7H4V4l16,-0.02V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/invert_colors.xml b/compose/material/material/icons/generator/raw-icons/twotone/invert_colors.xml
deleted file mode 100644
index 3e7b849..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/invert_colors.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.75,8.99C6.62,10.1 6,11.57 6,13.13C6,16.37 8.69,19 12,19l0,-14.19L7.75,8.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,7.56L17.65,7.56L12,2L6.35,7.56l0,0C4.9,8.99 4,10.96 4,13.13C4,17.48 7.58,21 12,21c4.42,0 8,-3.52 8,-7.87C20,10.96 19.1,8.99 17.65,7.56zM6,13.13c0,-1.56 0.62,-3.03 1.75,-4.14L12,4.81L12,19C8.69,19 6,16.37 6,13.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/invert_colors_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/invert_colors_off.xml
deleted file mode 100644
index 06f2711..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/invert_colors_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.83L12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.19 0.36,-2.32 1.02,-3.28L12,14.83zM12,4.81l0,4.37l-2.2,-2.2L12,4.81"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31 -1.6,2.94 -1.6,4.7C4,17.48 7.58,21 12,21c1.75,0 3.36,-0.56 4.67,-1.5l3.1,3.1L21.19,21.19zM12,19c-3.31,0 -6,-2.63 -6,-5.87c0,-1.19 0.36,-2.32 1.02,-3.28L12,14.83V19zM8.38,5.56L12,2l5.65,5.56l0,0C19.1,8.99 20,10.96 20,13.13c0,1.18 -0.27,2.29 -0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ios_share.xml b/compose/material/material/icons/generator/raw-icons/twotone/ios_share.xml
deleted file mode 100644
index e44cc4d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ios_share.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-3v2h3v11H6V10h3V8H6c-1.11,0 -2,0.89 -2,2v11c0,1.1 0.89,2 2,2h12c1.1,0 2,-0.9 2,-2V10C20,8.89 19.1,8 18,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16l2,0l0,-11l3,0l-4,-4l-4,4l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/iron.xml b/compose/material/material/icons/generator/raw-icons/twotone/iron.xml
deleted file mode 100644
index e3ccdf1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/iron.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16H4v-1c0,-1.1 0.9,-2 2,-2h9V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6c-1.66,0 -3,1.34 -3,3v4c0,0.55 -0.45,1 -1,1v-4c0,-1.66 -1.34,-3 -3,-3h-4c-1.66,0 -3,1.34 -3,3h2c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v1H6c-2.21,0 -4,1.79 -4,4v3h15v-2c1.66,0 3,-1.34 3,-3V9c0,-0.55 0.45,-1 1,-1h1V6H21zM15,16H4v-1c0,-1.1 0.9,-2 2,-2h9V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/iso.xml b/compose/material/material/icons/generator/raw-icons/twotone/iso.xml
deleted file mode 100644
index d2bc2fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/iso.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19L19,5L5,19h14zM17,15.5L17,17h-5v-1.5h5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15.5h5V17h-5zM19,3H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2zM5.5,7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19,19H5L19,5v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/javascript.xml b/compose/material/material/icons/generator/raw-icons/twotone/javascript.xml
deleted file mode 100644
index 81408bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/javascript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14v-1h1.5v0.5h2v-1H13c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1h-1.5v-0.5h-2v1H16c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1h-3C12.45,15 12,14.55 12,14zM9,9v4.5H7.5v-1H6v1C6,14.33 6.67,15 7.5,15H9c0.83,0 1.5,-0.67 1.5,-1.5V9C10.5,9 9.83,9 9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/join_full.xml b/compose/material/material/icons/generator/raw-icons/twotone/join_full.xml
deleted file mode 100644
index ca61971..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/join_full.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c2.8,2.34 3.03,5.53 3.03,6.5c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/join_inner.xml b/compose/material/material/icons/generator/raw-icons/twotone/join_inner.xml
deleted file mode 100644
index 9b7010f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/join_inner.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.04,16.87C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C9.92,17.99 9.43,17.43 9.04,16.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/join_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/join_left.xml
deleted file mode 100644
index d5b460b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/join_left.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12c0,-0.97 0.23,-4.16 3.03,-6.5C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c0.9,0 1.75,-0.19 2.53,-0.5C7.73,16.16 7.5,12.97 7.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c-0.9,0 -1.75,0.19 -2.53,0.5c0.61,0.51 1.1,1.07 1.49,1.63C15.29,7.05 15.64,7 16,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-0.36,0 -0.71,-0.05 -1.04,-0.13c-0.39,0.56 -0.88,1.12 -1.49,1.63C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7S19.86,5 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/join_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/join_right.xml
deleted file mode 100644
index 111631a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/join_right.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12a3,5.74 0,1 0,6 0a3,5.74 0,1 0,-6 0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,12c0,0.97 -0.23,4.16 -3.03,6.5C14.25,18.81 15.1,19 16,19c3.86,0 7,-3.14 7,-7s-3.14,-7 -7,-7c-0.9,0 -1.75,0.19 -2.53,0.5C16.27,7.84 16.5,11.03 16.5,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19c0.9,0 1.75,-0.19 2.53,-0.5c-0.61,-0.51 -1.1,-1.07 -1.49,-1.63C8.71,16.95 8.36,17 8,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c0.36,0 0.71,0.05 1.04,0.13c0.39,-0.56 0.88,-1.12 1.49,-1.63C9.75,5.19 8.9,5 8,5c-3.86,0 -7,3.14 -7,7S4.14,19 8,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/kayaking.xml b/compose/material/material/icons/generator/raw-icons/twotone/kayaking.xml
deleted file mode 100644
index 9860090..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/kayaking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM12,5.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,5.5 12,5.5zM24,17.5c0,0 -1.52,0.71 -3.93,1.37c-0.82,-0.23 -1.53,-0.75 -2.07,-1.37c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5s-2.27,-0.66 -3,-1.5c-0.54,0.61 -1.25,1.13 -2.07,1.37C1.52,18.21 0,17.5 0,17.5s2.93,-1.36 7.13,-2.08l1.35,-4.17c0.31,-0.95 1.32,-1.47 2.27,-1.16c0.09,0.03 0.19,0.07 0.27,0.11l0,0l2.47,1.3l2.84,-1.5l1.65,-3.71l-0.51,-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87 24,17.5 24,17.5zM15.02,12.96l-1.52,0.8l-1.75,-0.92l-0.71,2.17C11.36,15.01 11.68,15 12,15c0.71,0 1.4,0.03 2.07,0.08L15.02,12.96z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/kebab_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/kebab_dining.xml
deleted file mode 100644
index 0cc0993d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/kebab_dining.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,5C15.22,5 15,4.78 15,4.5S15.22,4 15.5,4h3C18.78,4 19,4.22 19,4.5S18.78,5 18.5,5H15.5zM18.5,16c0.28,0 0.5,0.22 0.5,0.5S18.78,17 18.5,17h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5H18.5zM19,10v1h-4v-1H19zM5.5,5C5.22,5 5,4.78 5,4.5S5.22,4 5.5,4h3C8.78,4 9,4.22 9,4.5S8.78,5 8.5,5H5.5zM8.5,16C8.78,16 9,16.22 9,16.5S8.78,17 8.5,17h-3C5.22,17 5,16.78 5,16.5S5.22,16 5.5,16H8.5zM9,10v1H5v-1H9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.75,7h0.75C19.88,7 21,5.88 21,4.5C21,3.12 19.88,2 18.5,2h-0.75V1h-1.5v1H15.5C14.12,2 13,3.12 13,4.5C13,5.88 14.12,7 15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0 -2.5,1.12 -2.5,2.5c0,1.38 1.12,2.5 2.5,2.5h0.75v4h1.5v-4h0.75c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.38 -1.12,-2.5 -2.5,-2.5h-0.75v-1H21V8h-3.25V7zM15.5,5C15.22,5 15,4.78 15,4.5S15.22,4 15.5,4h3C18.78,4 19,4.22 19,4.5S18.78,5 18.5,5H15.5zM18.5,16c0.28,0 0.5,0.22 0.5,0.5S18.78,17 18.5,17h-3c-0.28,0 -0.5,-0.22 -0.5,-0.5s0.22,-0.5 0.5,-0.5H18.5zM19,10v1h-4v-1H19zM7.75,7H8.5C9.88,7 11,5.88 11,4.5C11,3.12 9.88,2 8.5,2H7.75V1h-1.5v1H5.5C4.12,2 3,3.12 3,4.5C3,5.88 4.12,7 5.5,7h0.75v1H3v5h3.25v1H5.5C4.12,14 3,15.12 3,16.5C3,17.88 4.12,19 5.5,19h0.75v4h1.5v-4H8.5c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.38 -1.12,-2.5 -2.5,-2.5H7.75v-1H11V8H7.75V7zM5.5,5C5.22,5 5,4.78 5,4.5S5.22,4 5.5,4h3C8.78,4 9,4.22 9,4.5S8.78,5 8.5,5H5.5zM8.5,16C8.78,16 9,16.22 9,16.5S8.78,17 8.5,17h-3C5.22,17 5,16.78 5,16.5S5.22,16 5.5,16H8.5zM9,10v1H5v-1H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/key.xml b/compose/material/material/icons/generator/raw-icons/twotone/key.xml
deleted file mode 100644
index d8b0448..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,10h-8.35C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H13l2,2l2,-2l2,2l4,-4.04L21,10zM7,15c-1.65,0 -3,-1.35 -3,-3c0,-1.65 1.35,-3 3,-3s3,1.35 3,3C10,13.65 8.65,15 7,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/key_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/key_off.xml
deleted file mode 100644
index 76c00d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/key_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.7,13.53l-1.71,-1.71C9,11.88 9,11.94 9,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.06,0 0.12,0 0.18,0.01L5.47,8.3C4.02,8.9 3,10.33 3,12c0,2.21 1.79,4 4,4C8.67,16 10.1,14.98 10.7,13.53zM16.26,13.43l1.24,-0.93l1.81,1.36L21.17,12l-1,-1l-6.34,0L16.26,13.43z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.7,13.53l-1.71,-1.71C9,11.88 9,11.94 9,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.06,0 0.12,0 0.18,0.01L5.47,8.3C4.02,8.9 3,10.33 3,12c0,2.21 1.79,4 4,4C8.67,16 10.1,14.98 10.7,13.53zM12.19,15.02C11.15,16.8 9.21,18 7,18c-3.31,0 -6,-2.69 -6,-6c0,-2.21 1.2,-4.15 2.98,-5.19L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L12.19,15.02zM16.26,13.43l1.24,-0.93l1.81,1.36L21.17,12l-1,-1l-6.34,0l-2,-2L21,9l0,0l3,3l-4.5,4.5l-0.69,-0.51L16.26,13.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard.xml
deleted file mode 100644
index f15bd0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h16L20,7L4,7v10zM17,8h2v2h-2L17,8zM17,11h2v2h-2v-2zM14,8h2v2h-2L14,8zM14,11h2v2h-2v-2zM11,8h2v2h-2L11,8zM11,11h2v2h-2v-2zM8,8h2v2L8,10L8,8zM8,11h2v2L8,13v-2zM8,14h8v2L8,16v-2zM5,8h2v2L5,10L5,8zM5,11h2v2L5,13v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5L4,5c-1.1,0 -1.99,0.9 -1.99,2L2,17c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,17L4,17L4,7h16v10zM11,8h2v2h-2zM11,11h2v2h-2zM8,8h2v2L8,10zM8,11h2v2L8,13zM5,11h2v2L5,13zM5,8h2v2L5,10zM8,14h8v2L8,16zM14,11h2v2h-2zM14,8h2v2h-2zM17,11h2v2h-2zM17,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_alt.xml
deleted file mode 100644
index 13c9b64..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_alt.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18V6H3V19zM17,8h2v2h-2V8zM17,12h2v2h-2V12zM13,8h2v2h-2V8zM13,12h2v2h-2V12zM9,8h2v2H9V8zM9,12h2v2H9V12zM8,16h8v1H8V16zM5,8h2v2H5V8zM5,12h2v2H5V12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4H3C1.9,4 1,4.9 1,6v13c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V6C23,4.9 22.1,4 21,4zM21,19H3V6h18V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h8v1h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_down.xml
deleted file mode 100644
index 884bee1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,8.59L12,13.17l4.59,-4.58L18,10l-6,6 -6,-6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_left.xml
deleted file mode 100644
index 60a7180..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,16.59L10.83,12l4.58,-4.59L14,6l-6,6 6,6 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_right.xml
deleted file mode 100644
index 7f7b33e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.59,16.59L13.17,12 8.59,7.41 10,6l6,6 -6,6 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_up.xml
deleted file mode 100644
index bd55228..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_arrow_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,15.41L12,10.83l4.59,4.58L18,14l-6,-6 -6,6 1.41,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_backspace.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_backspace.xml
deleted file mode 100644
index 3c1d665..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_backspace.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11H6.83l3.58,-3.59L9,6l-6,6 6,6 1.41,-1.41L6.83,13H21v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_capslock.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_capslock.xml
deleted file mode 100644
index 519081e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_capslock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.41L16.59,13 18,11.59l-6,-6 -6,6L7.41,13 12,8.41zM6,18h12v-2H6v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_command_key.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_command_key.xml
deleted file mode 100644
index ace30b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_command_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,3C15.57,3 14,4.57 14,6.5V8h-4V6.5C10,4.57 8.43,3 6.5,3S3,4.57 3,6.5S4.57,10 6.5,10H8v4H6.5C4.57,14 3,15.57 3,17.5S4.57,21 6.5,21s3.5,-1.57 3.5,-3.5V16h4v1.5c0,1.93 1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S19.43,14 17.5,14H16v-4h1.5c1.93,0 3.5,-1.57 3.5,-3.5S19.43,3 17.5,3L17.5,3zM16,8V6.5C16,5.67 16.67,5 17.5,5S19,5.67 19,6.5S18.33,8 17.5,8H16L16,8zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5V8H6.5L6.5,8zM10,14v-4h4v4H10L10,14zM17.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5V16h1.5c0.83,0 1.5,0.67 1.5,1.5S18.33,19 17.5,19L17.5,19zM6.5,19C5.67,19 5,18.33 5,17.5S5.67,16 6.5,16H8v1.5C8,18.33 7.33,19 6.5,19L6.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_control_key.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_control_key.xml
deleted file mode 100644
index 409e44c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_control_key.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,12l1.41,1.41l5.59,-5.58l5.59,5.58l1.41,-1.41l-7,-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_down.xml
deleted file mode 100644
index 985ba4c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_down.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.41l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13l-1.41,-1.41l-4.59,4.58l-4.59,-4.58l-1.41,1.41l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_left.xml
deleted file mode 100644
index b5e455e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_left.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.59,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_right.xml
deleted file mode 100644
index 0a22b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_right.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6l-1.41,1.41l4.58,4.59l-4.58,4.59l1.41,1.41l6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_up.xml
deleted file mode 100644
index 105da37..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_double_arrow_up.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17.59l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11l1.41,1.41l4.59,-4.58l4.59,4.58l1.41,-1.41l-6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_hide.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_hide.xml
deleted file mode 100644
index 2570354..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_hide.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h16L20,5L4,5v10zM17,6h2v2h-2L17,6zM17,9h2v2h-2L17,9zM14,6h2v2h-2L14,6zM14,9h2v2h-2L14,9zM11,6h2v2h-2L11,6zM11,9h2v2h-2L11,9zM8,6h2v2L8,8L8,6zM8,9h2v2L8,11L8,9zM8,12h8v2L8,14v-2zM5,6h2v2L5,8L5,6zM5,9h2v2L5,11L5,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L4,3c-1.1,0 -1.99,0.9 -1.99,2L2,15c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM20,15L4,15L4,5h16v10zM11,6h2v2h-2zM11,9h2v2h-2zM8,6h2v2L8,8zM8,9h2v2L8,11zM5,9h2v2L5,11zM5,6h2v2L5,8zM8,12h8v2L8,14zM14,9h2v2h-2zM14,6h2v2h-2zM17,9h2v2h-2zM17,6h2v2h-2zM12,23l4,-4L8,19l4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_option_key.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_option_key.xml
deleted file mode 100644
index 9970f59..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_option_key.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5l-6,0l0,2l4.85,0l6.92,12l6.23,0l0,-2l-5.07,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_return.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_return.xml
deleted file mode 100644
index cdb33b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_return.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7v4H5.83l3.58,-3.59L8,6l-6,6 6,6 1.41,-1.41L5.83,13H21V7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_tab.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_tab.xml
deleted file mode 100644
index 4949420..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_tab.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.59,7.41L15.17,11H1v2h14.17l-3.59,3.59L13,18l6,-6 -6,-6 -1.41,1.41zM20,6v12h2V6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_voice.xml b/compose/material/material/icons/generator/raw-icons/twotone/keyboard_voice.xml
deleted file mode 100644
index a306b6a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/keyboard_voice.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.3c0.66,0 1.19,-0.54 1.19,-1.2l0.01,-6.2c0,-0.66 -0.54,-1.2 -1.2,-1.2s-1.2,0.54 -1.2,1.2v6.2c0,0.66 0.54,1.2 1.2,1.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c1.66,0 2.99,-1.34 2.99,-3L15,6c0,-1.66 -1.34,-3 -3,-3S9,4.34 9,6v6c0,1.66 1.34,3 3,3zM10.8,5.9c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2l-0.01,6.2c0,0.66 -0.53,1.2 -1.19,1.2s-1.2,-0.54 -1.2,-1.2L10.8,5.9zM17.3,12c0,3 -2.54,5.1 -5.3,5.1S6.7,15 6.7,12L5,12c0,3.41 2.72,6.23 6,6.72L11,22h2v-3.28c3.28,-0.48 6,-3.3 6,-6.72h-1.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/king_bed.xml b/compose/material/material/icons/generator/raw-icons/twotone/king_bed.xml
deleted file mode 100644
index 13893b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/king_bed.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12h16v3h-16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V7c0,-1.1 -0.9,-2 -2,-2H6C4.9,5 4,5.9 4,7v3c-1.1,0 -2,0.9 -2,2v5h1.33L4,19h1l0.67,-2h12.67L19,19h1l0.67,-2H22v-5C22,10.9 21.1,10 20,10zM13,7h5v3h-5V7zM6,7h5v3H6V7zM20,15H4v-3h16V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/kitchen.xml b/compose/material/material/icons/generator/raw-icons/twotone/kitchen.xml
deleted file mode 100644
index a637aa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/kitchen.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5h2v3L8,8zM8,12h2v5L8,17zM6,20h12v-9.02L6,10.98L6,20zM8,12h2v5L8,17v-5zM6,9h12L18,4L6,4v5zM8,5h2v3L8,8L8,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2.01L6,2c-1.1,0 -2,0.89 -2,2v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.11 -0.9,-1.99 -2,-1.99zM18,20L6,20v-9.02h12L18,20zM18,9L6,9L6,4h12v5zM8,5h2v3L8,8zM8,12h2v5L8,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/kitesurfing.xml b/compose/material/material/icons/generator/raw-icons/twotone/kitesurfing.xml
deleted file mode 100644
index 75fb426..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/kitesurfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S6,4.1 6,3zM20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22zM21,13.28c0,1.44 -2.19,3.62 -5.04,5.58C15.65,18.95 15.33,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.94,0 -1.81,-0.41 -2.49,-0.99c0.46,-0.39 0.96,-0.78 1.49,-1.17l-1.55,-2.97C6.15,13.3 6,12.64 6,12V8c0,-1.1 0.9,-2 2,-2h3c1.38,0 2.63,-0.56 3.54,-1.46l1.41,1.41C14.68,7.21 12.93,8 11,8H9.6l0,3.5h2.8l1.69,1.88c1.95,-0.84 3.77,-1.38 5.06,-1.38C19.99,12 21,12.25 21,13.28zM12.2,14.27l-0.7,-0.77L9,13.6l0.83,2.01C10.42,15.23 11.64,14.55 12.2,14.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/label.xml b/compose/material/material/icons/generator/raw-icons/twotone/label.xml
deleted file mode 100644
index ee3e6fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/label.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7H5v10h11l3.55,-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.63,5.84C17.27,5.33 16.67,5 16,5L5,5.01C3.9,5.01 3,5.9 3,7v10c0,1.1 0.9,1.99 2,1.99L16,19c0.67,0 1.27,-0.33 1.63,-0.84L22,12l-4.37,-6.16zM16,17H5V7h11l3.55,5L16,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/label_important.xml b/compose/material/material/icons/generator/raw-icons/twotone/label_important.xml
deleted file mode 100644
index 5add899..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/label_important.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7H7.89l3.57,5 -3.57,5H15l3.55,-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.63,5.84C16.27,5.33 15.67,5 15,5H4l5,7 -5,6.99h11c0.67,0 1.27,-0.32 1.63,-0.83L21,12l-4.37,-6.16zM15,17H7.89l3.57,-5 -3.57,-5H15l3.55,5L15,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/label_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/label_off.xml
deleted file mode 100644
index 9d60350..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/label_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7.03V17h9.97zM16,7h-5.37l7.29,7.29L19.55,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l3.55,5 -1.63,2.29 1.43,1.43L22,12l-4.37,-6.16C17.27,5.33 16.67,5 16,5l-7.37,0.01 2,1.99L16,7zM2,4.03l1.58,1.58C3.22,5.96 3,6.46 3,7v10c0,1.1 0.9,1.99 2,1.99L16,19c0.28,0 0.55,-0.07 0.79,-0.18L18.97,21l1.41,-1.41L3.41,2.62 2,4.03zM5,7.03L14.97,17L5,17L5,7.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lan.xml b/compose/material/material/icons/generator/raw-icons/twotone/lan.xml
deleted file mode 100644
index 2477bfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lan.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7V4h4v3H10zM9,17v3H5v-3H9zM19,17v3h-4v-3H19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22zM10,7V4h4v3H10zM9,17v3H5v-3H9zM19,17v3h-4v-3H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/landscape.xml b/compose/material/material/icons/generator/raw-icons/twotone/landscape.xml
deleted file mode 100644
index eaac908..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/landscape.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h3.04l-1.52,-2.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.63l1.25,1.67L14,9.33 19,16h-8.46l-4.01,-5.37L1,18h22L14,6l-4.22,5.63zM5,16l1.52,-2.03L8.04,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/landslide.xml b/compose/material/material/icons/generator/raw-icons/twotone/landslide.xml
deleted file mode 100644
index e7121d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/landslide.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.57,12.09l-1.57,-2.09l-3,0l0,2.28l2,0.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.53,14.77l-2.58,-1.03l-3.95,1.31l-2,-0.66l0,1.89l2,0.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4.65l0,-2.01l-2.58,-0.52l-1.42,0.95l0,1.86l1.23,0.82z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19.05l-2,-0.66l0,1.61l14,0l-2.97,-3.96z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9.96l0,1.08l0.8,0.64l2.2,-0.98l0,-1.1l-2,-0.44z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12L8,8H2v14h20l-6,-8L11,12zM4,10h3l1.57,2.09L6,12.95l-2,-0.67V10zM4,14.39l2,0.67l3.95,-1.32l2.58,1.03L6,16.95l-2,-0.67V14.39zM4,20v-1.61l2,0.67l9.03,-3.01L18,20H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6V1l-5,-1L9,2v4l3,2L17,6zM11,3.07l1.42,-0.95L15,2.64v2.01l-2.77,1.11L11,4.93V3.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,7L16,9v3l2.5,2l4.5,-2V8L18.5,7zM21,10.7l-2.2,0.98L18,11.04V9.96l1,-0.8l2,0.44V10.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/language.xml b/compose/material/material/icons/generator/raw-icons/twotone/language.xml
deleted file mode 100644
index 8628d5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/language.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.08,8h2.95c0.32,-1.25 0.78,-2.45 1.38,-3.56 -1.84,0.63 -3.37,1.9 -4.33,3.56zM7.5,12c0,-0.68 0.06,-1.34 0.14,-2L4.26,10c-0.16,0.64 -0.26,1.31 -0.26,2s0.1,1.36 0.26,2h3.38c-0.08,-0.66 -0.14,-1.32 -0.14,-2zM5.08,16c0.96,1.66 2.49,2.93 4.33,3.56 -0.6,-1.11 -1.06,-2.31 -1.38,-3.56L5.08,16zM12,4.04c-0.83,1.2 -1.48,2.53 -1.91,3.96h3.82c-0.43,-1.43 -1.08,-2.76 -1.91,-3.96zM18.92,8c-0.96,-1.65 -2.49,-2.93 -4.33,-3.56 0.6,1.11 1.06,2.31 1.38,3.56h2.95zM12,19.96c0.83,-1.2 1.48,-2.53 1.91,-3.96h-3.82c0.43,1.43 1.08,2.76 1.91,3.96zM14.59,19.56c1.84,-0.63 3.37,-1.91 4.33,-3.56h-2.95c-0.32,1.25 -0.78,2.45 -1.38,3.56zM19.74,10h-3.38c0.08,0.66 0.14,1.32 0.14,2s-0.06,1.34 -0.14,2h3.38c0.16,-0.64 0.26,-1.31 0.26,-2s-0.1,-1.36 -0.26,-2zM9.66,10c-0.09,0.65 -0.16,1.32 -0.16,2s0.07,1.34 0.16,2h4.68c0.09,-0.66 0.16,-1.32 0.16,-2s-0.07,-1.35 -0.16,-2L9.66,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM18.92,8h-2.95c-0.32,-1.25 -0.78,-2.45 -1.38,-3.56 1.84,0.63 3.37,1.91 4.33,3.56zM12,4.04c0.83,1.2 1.48,2.53 1.91,3.96h-3.82c0.43,-1.43 1.08,-2.76 1.91,-3.96zM4.26,14C4.1,13.36 4,12.69 4,12s0.1,-1.36 0.26,-2h3.38c-0.08,0.66 -0.14,1.32 -0.14,2s0.06,1.34 0.14,2L4.26,14zM5.08,16h2.95c0.32,1.25 0.78,2.45 1.38,3.56 -1.84,-0.63 -3.37,-1.9 -4.33,-3.56zM8.03,8L5.08,8c0.96,-1.66 2.49,-2.93 4.33,-3.56C8.81,5.55 8.35,6.75 8.03,8zM12,19.96c-0.83,-1.2 -1.48,-2.53 -1.91,-3.96h3.82c-0.43,1.43 -1.08,2.76 -1.91,3.96zM14.34,14L9.66,14c-0.09,-0.66 -0.16,-1.32 -0.16,-2s0.07,-1.35 0.16,-2h4.68c0.09,0.65 0.16,1.32 0.16,2s-0.07,1.34 -0.16,2zM14.59,19.56c0.6,-1.11 1.06,-2.31 1.38,-3.56h2.95c-0.96,1.65 -2.49,2.93 -4.33,3.56zM16.36,14c0.08,-0.66 0.14,-1.32 0.14,-2s-0.06,-1.34 -0.14,-2h3.38c0.16,0.64 0.26,1.31 0.26,2s-0.1,1.36 -0.26,2h-3.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/laptop.xml b/compose/material/material/icons/generator/raw-icons/twotone/laptop.xml
deleted file mode 100644
index 9ecee54..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/laptop.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v10H4V6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v10c0,1.1 0.9,2 2,2H0v2h24v-2H20zM4,6h16v10H4V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/laptop_chromebook.xml b/compose/material/material/icons/generator/raw-icons/twotone/laptop_chromebook.xml
deleted file mode 100644
index fe97b073..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/laptop_chromebook.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5h16v10H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18L22,3L2,3v15L0,18v2h24v-2h-2zM14,18h-4v-1h4v1zM20,15L4,15L4,5h16v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/laptop_mac.xml b/compose/material/material/icons/generator/raw-icons/twotone/laptop_mac.xml
deleted file mode 100644
index c4e4c76..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/laptop_mac.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5h16v11H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2L4,3c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2L0,18c0,1.1 0.9,2 2,2h20c1.1,0 2,-0.9 2,-2h-4zM4,5h16v11L4,16L4,5zM12,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/laptop_windows.xml b/compose/material/material/icons/generator/raw-icons/twotone/laptop_windows.xml
deleted file mode 100644
index 3ddea5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/laptop_windows.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5h16v10H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18v-1c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2H4c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2v1H0v2h24v-2h-4zM4,5h16v10H4V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/last_page.xml b/compose/material/material/icons/generator/raw-icons/twotone/last_page.xml
deleted file mode 100644
index cf1b035..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/last_page.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.59,7.41L10.18,12l-4.59,4.59L7,18l6,-6 -6,-6 -1.41,1.41zM16,6h2v12h-2V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/launch.xml b/compose/material/material/icons/generator/raw-icons/twotone/launch.xml
deleted file mode 100644
index b2dd7f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/launch.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/layers.xml b/compose/material/material/icons/generator/raw-icons/twotone/layers.xml
deleted file mode 100644
index 7044fbe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/layers.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.26,9L12,13.47 17.74,9 12,4.53z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.37,12.8l-7.38,5.74 -7.37,-5.73L3,14.07l9,7 9,-7zM12,2L3,9l1.63,1.27L12,16l7.36,-5.73L21,9l-9,-7zM12,13.47L6.26,9 12,4.53 17.74,9 12,13.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/layers_clear.xml b/compose/material/material/icons/generator/raw-icons/twotone/layers_clear.xml
deleted file mode 100644
index 523ca15..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/layers_clear.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.47l0.67,-0.53 -5.02,-5.02L6.26,9zM12,4.53l-1.17,0.91 5.02,5.03L17.74,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.53L17.74,9l-1.89,1.47 1.43,1.42L21,9l-9,-7 -2.59,2.02 1.42,1.42zM21,14.07l-1.63,-1.27 -0.67,0.52 1.43,1.43zM3.41,0.86L2,2.27l4.22,4.22L3,9l9,7 2.1,-1.63 1.42,1.42 -3.53,2.75 -7.37,-5.73L3,14.07l9,7 4.95,-3.85L20.73,21l1.41,-1.41L3.41,0.86zM12,13.47L6.26,9l1.39,-1.08 5.02,5.02 -0.67,0.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/leaderboard.xml b/compose/material/material/icons/generator/raw-icons/twotone/leaderboard.xml
deleted file mode 100644
index d821261..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/leaderboard.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h4v14h-4V5zM4,11h4v8H4V11zM20,19h-4v-6h4V19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11V3H8v6H2v12h20V11H16zM10,5h4v14h-4V5zM4,11h4v8H4V11zM20,19h-4v-6h4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/leak_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/leak_add.xml
deleted file mode 100644
index 1b85c12..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/leak_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,21h3v-3c-1.66,0 -3,1.34 -3,3zM3,14c6.08,0 11,-4.93 11,-11h-2c0,4.97 -4.03,9 -9,9v2zM14,21h2c0,-2.76 2.24,-5 5,-5v-2c-3.87,0 -7,3.13 -7,7zM3,10c3.87,0 7,-3.13 7,-7L8,3c0,2.76 -2.24,5 -5,5v2zM10,21h2c0,-4.97 4.03,-9 9,-9v-2c-6.07,0 -11,4.93 -11,11zM3,3v3c1.66,0 3,-1.34 3,-3L3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/leak_remove.xml b/compose/material/material/icons/generator/raw-icons/twotone/leak_remove.xml
deleted file mode 100644
index b83ca95..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/leak_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3h-2c0,1.35 -0.31,2.63 -0.84,3.77l1.49,1.49C13.51,6.7 14,4.91 14,3zM21,12v-2c-1.91,0 -3.7,0.49 -5.27,1.35l1.49,1.49c1.15,-0.53 2.43,-0.84 3.78,-0.84zM21,16v-2c-0.79,0 -1.54,0.13 -2.24,0.37l1.68,1.68c0.19,-0.01 0.37,-0.05 0.56,-0.05zM10,3L8,3c0,0.19 -0.04,0.37 -0.06,0.56l1.68,1.68c0.25,-0.7 0.38,-1.46 0.38,-2.24zM4.41,2.86L3,4.27l2.84,2.84C5.03,7.67 4.06,8 3,8v2c1.61,0 3.09,-0.55 4.27,-1.46L8.7,9.97C7.14,11.24 5.16,12 3,12v2c2.72,0 5.2,-0.99 7.11,-2.62l2.51,2.51C10.99,15.81 10,18.29 10,21h2c0,-2.16 0.76,-4.14 2.03,-5.7l1.43,1.43C14.55,17.91 14,19.39 14,21h2c0,-1.06 0.33,-2.03 0.89,-2.84L19.73,21l1.41,-1.41L4.41,2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/leave_bags_at_home.xml b/compose/material/material/icons/generator/raw-icons/twotone/leave_bags_at_home.xml
deleted file mode 100644
index 7b34a59..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/leave_bags_at_home.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19V9.83l1,1V18h1.5v-5.67l1.75,1.75V18h1.5v-2.42l1.75,1.75V18h0.67l1,1H7zM10.83,8l1,1h0.92v0.92l1.75,1.75V9H16v4.17l0,0l1,1V8H10.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8H17v6.17l2,2V8c0,-1.1 -0.9,-2 -2,-2h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H8.83L10.83,8zM11,4h2v2h-2V4zM11.83,9h0.92v0.92L11.83,9zM21.19,21.19L2.81,2.81L1.39,4.22l3.63,3.63C5.02,7.9 5,7.95 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1h6c0,0.55 0.45,1 1,1c0.55,0 1,-0.45 1,-1c0.34,0 0.65,-0.09 0.93,-0.24l1.85,1.85L21.19,21.19zM7,19V9.83l1,1V18h1.5v-5.67l1.75,1.75V18h1.5v-2.42l1.75,1.75V18h0.67l1,1H7zM16,9v4.17l-1.5,-1.5V9H16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/legend_toggle.xml b/compose/material/material/icons/generator/raw-icons/twotone/legend_toggle.xml
deleted file mode 100644
index ea17c5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/legend_toggle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15H4v-2h16V15zM20,17H4v2h16V17zM15,11l5,-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92,-3.61L15,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lens.xml b/compose/material/material/icons/generator/raw-icons/twotone/lens.xml
deleted file mode 100644
index b25f333..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lens.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lens_blur.xml b/compose/material/material/icons/generator/raw-icons/twotone/lens_blur.xml
deleted file mode 100644
index cb8a385..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lens_blur.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,13 6,13zM6,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,17 6,17zM6,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S6.55,9 6,9zM3,9.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,9.5 3,9.5zM6,5C5.45,5 5,5.45 5,6s0.45,1 1,1s1,-0.45 1,-1S6.55,5 6,5zM21,10.5c0.28,0 0.5,-0.22 0.5,-0.5S21.28,9.5 21,9.5s-0.5,0.22 -0.5,0.5S20.72,10.5 21,10.5zM14,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1s-1,0.45 -1,1S13.45,7 14,7zM14,3.5c0.28,0 0.5,-0.22 0.5,-0.5S14.28,2.5 14,2.5S13.5,2.72 13.5,3S13.72,3.5 14,3.5zM3,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S3.28,13.5 3,13.5zM10,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S10.28,20.5 10,20.5zM10,3.5c0.28,0 0.5,-0.22 0.5,-0.5S10.28,2.5 10,2.5S9.5,2.72 9.5,3S9.72,3.5 10,3.5zM10,7c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1S9,5.45 9,6S9.45,7 10,7zM10,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,12.5 10,12.5zM18,13c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,13 18,13zM18,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,17 18,17zM18,9c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,9 18,9zM18,5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S18.55,5 18,5zM21,13.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S21.28,13.5 21,13.5zM14,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S14.55,17 14,17zM14,20.5c-0.28,0 -0.5,0.22 -0.5,0.5s0.22,0.5 0.5,0.5s0.5,-0.22 0.5,-0.5S14.28,20.5 14,20.5zM10,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S10.83,8.5 10,8.5zM10,17c-0.55,0 -1,0.45 -1,1s0.45,1 1,1s1,-0.45 1,-1S10.55,17 10,17zM14,12.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,12.5 14,12.5zM14,8.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5S14.83,8.5 14,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/library_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/library_add.xml
deleted file mode 100644
index 2e84a07..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/library_add.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12L20,4L8,4v12zM10,9h3L13,6h2v3h3v2h-3v3h-2v-3h-3L10,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22h14v-2L4,20L4,6L2,6v14c0,1.1 0.9,2 2,2zM8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L8,2zM20,16L8,16L8,4h12v12zM13,14h2v-3h3L18,9h-3L15,6h-2v3h-3v2h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/library_add_check.xml b/compose/material/material/icons/generator/raw-icons/twotone/library_add_check.xml
deleted file mode 100644
index fa2ede2f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/library_add_check.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12V4H8V16zM10.4,9.09l2.07,2.08L17.6,6L19,7.41L12.47,14L9,10.5L10.4,9.09z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H8V4h12V16zM12.47,14L9,10.5l1.4,-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14zM4,20h14v2H4c-1.1,0 -2,-0.9 -2,-2V6h2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/library_books.xml b/compose/material/material/icons/generator/raw-icons/twotone/library_books.xml
deleted file mode 100644
index beb33c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/library_books.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12L20,4L8,4v12zM10,6h8v2h-8L10,6zM10,9h8v2h-8L10,9zM10,12h4v2h-4v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,22h14v-2L4,20L4,6L2,6v14c0,1.1 0.9,2 2,2zM6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2zM20,16L8,16L8,4h12v12zM10,9h8v2h-8zM10,12h4v2h-4zM10,6h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/library_music.xml b/compose/material/material/icons/generator/raw-icons/twotone/library_music.xml
deleted file mode 100644
index ebfd737..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/library_music.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12L20,4L8,4v12zM12.5,10c0.57,0 1.08,0.19 1.5,0.51L14,5h4v2h-3v5.5c0,1.38 -1.12,2.5 -2.5,2.5S10,13.88 10,12.5s1.12,-2.5 2.5,-2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM12.5,15c1.38,0 2.5,-1.12 2.5,-2.5L15,7h3L18,5h-4v5.51c-0.42,-0.32 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.5,1.12 -2.5,2.5s1.12,2.5 2.5,2.5zM2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/light.xml b/compose/material/material/icons/generator/raw-icons/twotone/light.xml
deleted file mode 100644
index 64dfd83..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/light.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17c0,1.1 0.9,2 2,2s2,-0.9 2,-2h-2H10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6.06V3h-2v3.06c-4.5,0.5 -8,4.31 -8,8.93C3,16.1 3.9,17 5.01,17H8c0,2.21 1.79,4 4,4s4,-1.79 4,-4h2.99C20.1,17 21,16.1 21,14.99C21,10.37 17.5,6.56 13,6.06zM12,19c-1.1,0 -2,-0.9 -2,-2h2h2C14,18.1 13.1,19 12,19zM12,15H5c0,-3.86 3.14,-7 7,-7s7,3.14 7,7H12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/light_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/light_mode.xml
deleted file mode 100644
index ae5adcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/light_mode.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c1.65,0 3,1.35 3,3s-1.35,3 -3,3s-3,-1.35 -3,-3S10.35,9 12,9M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7L12,7zM2,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S1.45,13 2,13zM20,13l2,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1l-2,0c-0.55,0 -1,0.45 -1,1S19.45,13 20,13zM11,2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V2c0,-0.55 -0.45,-1 -1,-1S11,1.45 11,2zM11,20v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1C11.45,19 11,19.45 11,20zM5.99,4.58c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0s0.39,-1.03 0,-1.41L5.99,4.58zM18.36,16.95c-0.39,-0.39 -1.03,-0.39 -1.41,0c-0.39,0.39 -0.39,1.03 0,1.41l1.06,1.06c0.39,0.39 1.03,0.39 1.41,0c0.39,-0.39 0.39,-1.03 0,-1.41L18.36,16.95zM19.42,5.99c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L19.42,5.99zM7.05,18.36c0.39,-0.39 0.39,-1.03 0,-1.41c-0.39,-0.39 -1.03,-0.39 -1.41,0l-1.06,1.06c-0.39,0.39 -0.39,1.03 0,1.41s1.03,0.39 1.41,0L7.05,18.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lightbulb.xml b/compose/material/material/icons/generator/raw-icons/twotone/lightbulb.xml
deleted file mode 100644
index 0f4968e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lightbulb.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C8.97,4 6.5,6.47 6.5,9.5c0,2.47 1.49,3.89 2.35,4.5h6.3c0.86,-0.61 2.35,-2.03 2.35,-4.5C17.5,6.47 15.03,4 12,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4C10,21.1 10.9,22 12,22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C7.86,2 4.5,5.36 4.5,9.5c0,3.82 2.66,5.86 3.77,6.5h7.46c1.11,-0.64 3.77,-2.68 3.77,-6.5C19.5,5.36 16.14,2 12,2zM15.15,14h-6.3C7.99,13.39 6.5,11.97 6.5,9.5C6.5,6.47 8.97,4 12,4s5.5,2.47 5.5,5.5C17.5,11.97 16.01,13.39 15.15,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lightbulb_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/lightbulb_circle.xml
deleted file mode 100644
index 4c41d79..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lightbulb_circle.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM12,19c-0.83,0 -1.5,-0.67 -1.5,-1.5h3C13.5,18.33 12.83,19 12,19zM15,16.5H9V15h6V16.5zM14.97,14H9.03C7.8,13.09 7,11.64 7,10c0,-2.76 2.24,-5 5,-5s5,2.24 5,5C17,11.64 16.2,13.09 14.97,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c0.83,0 1.5,-0.67 1.5,-1.5h-3C10.5,18.33 11.17,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15h6v1.5h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-2.76,0 -5,2.24 -5,5c0,1.64 0.8,3.09 2.03,4h5.95C16.2,13.09 17,11.64 17,10C17,7.24 14.76,5 12,5zM14.43,12.5H9.57C8.89,11.84 8.5,10.95 8.5,10c0,-1.93 1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5C15.5,10.95 15.11,11.84 14.43,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/line_axis.xml b/compose/material/material/icons/generator/raw-icons/twotone/line_axis.xml
deleted file mode 100644
index 94bb0ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/line_axis.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.43l-1.41,-1.41l-4.03,4.53l-7.06,-6.55l-7.5,7.51l1.5,1.5l6.14,-6.15l5.59,5.18l-1.73,1.95l-4,-4l-7.5,7.51l1.5,1.5l6,-6.01l4,4l3.19,-3.59l3.9,3.61l1.41,-1.41l-3.98,-3.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/line_style.xml b/compose/material/material/icons/generator/raw-icons/twotone/line_style.xml
deleted file mode 100644
index 4c94c8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/line_style.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,16h5v-2L3,14v2zM9.5,16h5v-2h-5v2zM16,16h5v-2h-5v2zM3,20h2v-2L3,18v2zM7,20h2v-2L7,18v2zM11,20h2v-2h-2v2zM15,20h2v-2h-2v2zM19,20h2v-2h-2v2zM3,12h8v-2L3,10v2zM13,12h8v-2h-8v2zM3,4v4h18L21,4L3,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/line_weight.xml b/compose/material/material/icons/generator/raw-icons/twotone/line_weight.xml
deleted file mode 100644
index 10b6def..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/line_weight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18v-2L3,15v2zM3,20h18v-1L3,19v1zM3,13h18v-3L3,10v3zM3,4v4h18L21,4L3,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/linear_scale.xml b/compose/material/material/icons/generator/raw-icons/twotone/linear_scale.xml
deleted file mode 100644
index 5a85d95..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/linear_scale.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5c-1.03,0 -1.9,0.62 -2.29,1.5h-2.92c-0.39,-0.88 -1.26,-1.5 -2.29,-1.5s-1.9,0.62 -2.29,1.5H6.79c-0.39,-0.88 -1.26,-1.5 -2.29,-1.5C3.12,9.5 2,10.62 2,12s1.12,2.5 2.5,2.5c1.03,0 1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5s1.9,-0.62 2.29,-1.5h2.92c0.39,0.88 1.26,1.5 2.29,1.5 1.38,0 2.5,-1.12 2.5,-2.5s-1.12,-2.5 -2.5,-2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/link.xml b/compose/material/material/icons/generator/raw-icons/twotone/link.xml
deleted file mode 100644
index 9affeb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/link.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h-4v2h4c1.65,0 3,1.35 3,3s-1.35,3 -3,3h-4v2h4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM11,15L7,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3h4L11,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h4v-2zM8,11h8v2L8,13z"
-      android:strokeAlpha="0.87"
-      android:fillAlpha="0.87"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/link_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/link_off.xml
deleted file mode 100644
index d9d49a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/link_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.39,11L16,12.61V11zM17,7h-4v1.9h4c1.71,0 3.1,1.39 3.1,3.1 0,1.27 -0.77,2.37 -1.87,2.84l1.4,1.4C21.05,15.36 22,13.79 22,12c0,-2.76 -2.24,-5 -5,-5zM2,4.27l3.11,3.11C3.29,8.12 2,9.91 2,12c0,2.76 2.24,5 5,5h4v-1.9H7c-1.71,0 -3.1,-1.39 -3.1,-3.1 0,-1.59 1.21,-2.9 2.76,-3.07L8.73,11H8v2h2.73L13,15.27V17h1.73l4.01,4.01 1.41,-1.41L3.41,2.86 2,4.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/linked_camera.xml b/compose/material/material/icons/generator/raw-icons/twotone/linked_camera.xml
deleted file mode 100644
index 1397342..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/linked_camera.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,20L4,20L4,8h4.05l1.83,-2L15,6L15,4L9,4L7.17,6L4,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9h-2v11zM16,2v1.33c2.58,0 4.66,2.09 4.67,4.66L22,7.99C21.99,4.68 19.31,2 16,2zM16,4.67L16,6c1.11,0 1.99,0.89 2,1.99h1.33c-0.01,-1.84 -1.49,-3.32 -3.33,-3.32z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.98,10.01c-0.13,-0.09 -0.26,-0.18 -0.39,-0.26 0.14,0.08 0.27,0.17 0.39,0.26zM17,9c0,-0.37 -0.11,-0.71 -0.28,-1.01 -0.18,-0.3 -0.43,-0.55 -0.73,-0.72C15.7,7.1 15.36,7 15,7L15,6L9.88,6L8.05,8L4,8v12h16L20,9h-3zM12,19c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,17c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/liquor.xml b/compose/material/material/icons/generator/raw-icons/twotone/liquor.xml
deleted file mode 100644
index eb5fbe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/liquor.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4h1v1h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15c0.55,0 1,-0.45 1,-1v-1H5v1C5,14.55 5.45,15 6,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,14h7v2h-7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14c0,1.3 0.84,2.4 2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4 9,15.3 9,14V6H3V14zM5,8h2v3H5V8zM5,13h2v1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.64,8.54l-0.96,-0.32C19.27,8.08 19,7.7 19,7.27V3c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v4.28c0,0.43 -0.27,0.81 -0.68,0.95l-0.96,0.32C11.55,8.83 11,9.59 11,10.45V20c0,1.1 0.9,2 2,2h7c1.1,0 2,-0.9 2,-2v-9.56C22,9.58 21.45,8.82 20.64,8.54zM16,4h1v1h-1V4zM20,20h-7v-2h7V20zM20,16h-7v-2h7V16zM20,12h-7v-1.56l0.95,-0.32C15.18,9.72 16,8.57 16,7.28V7h1v0.28c0,1.29 0.82,2.44 2.05,2.85L20,10.44V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/list.xml b/compose/material/material/icons/generator/raw-icons/twotone/list.xml
deleted file mode 100644
index 1104a1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/list.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM7,13h14v-2L7,11v2zM7,17h14v-2L7,15v2zM7,7v2h14L21,7L7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/list_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/list_alt.xml
deleted file mode 100644
index 5403a78..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/list_alt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM11,7h6v2h-6L11,7zM11,11h6v2h-6v-2zM11,15h6v2h-6v-2zM7,7h2v2L7,9L7,7zM7,11h2v2L7,13v-2zM7,15h2v2L7,17v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h6v2h-6zM11,11h6v2h-6zM11,15h6v2h-6zM7,7h2v2L7,9zM7,11h2v2L7,13zM7,15h2v2L7,17zM20.1,3L3.9,3c-0.5,0 -0.9,0.4 -0.9,0.9v16.2c0,0.4 0.4,0.9 0.9,0.9h16.2c0.4,0 0.9,-0.5 0.9,-0.9L21,3.9c0,-0.5 -0.5,-0.9 -0.9,-0.9zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/live_help.xml b/compose/material/material/icons/generator/raw-icons/twotone/live_help.xml
deleted file mode 100644
index d191393..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/live_help.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18h4.83l0.59,0.59L12,20.17l1.59,-1.59 0.58,-0.58L19,18L19,4L5,4v14zM13,17h-2v-2h2v2zM12,5c2.21,0 4,1.79 4,4 0,2.5 -3,2.75 -3,5h-2c0,-3.25 3,-3 3,-5 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2L8,9c0,-2.21 1.79,-4 4,-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4c0,-1.1 -0.9,-2 -2,-2L5,2c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h4l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4zM19,18h-4.83l-0.59,0.59L12,20.17l-1.59,-1.59 -0.58,-0.58L5,18L5,4h14v14zM11,15h2v2h-2zM12,7c1.1,0 2,0.9 2,2 0,2 -3,1.75 -3,5h2c0,-2.25 3,-2.5 3,-5 0,-2.21 -1.79,-4 -4,-4S8,6.79 8,9h2c0,-1.1 0.9,-2 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/live_tv.xml b/compose/material/material/icons/generator/raw-icons/twotone/live_tv.xml
deleted file mode 100644
index 035db26..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/live_tv.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,20h18L21,8L3,8v12zM9,10l7,4 -7,4v-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10v8l7,-4zM21,6h-7.58l3.29,-3.29L16,2l-4,4h-0.03l-4,-4 -0.69,0.71L10.56,6L3,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM21,20L3,20L3,8h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/living.xml b/compose/material/material/icons/generator/raw-icons/twotone/living.xml
deleted file mode 100644
index 3e3ba0d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/living.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM5,12.5c0,-0.92 0.51,-1.72 1.25,-2.15V9c0,-1.66 1.34,-3 3,-3h5.5c1.66,0 3,1.34 3,3v1.35C18.49,10.78 19,11.58 19,12.5V16c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20zM7,18h10c1.1,0 2,-0.9 2,-2v-3.5c0,-0.92 -0.51,-1.72 -1.25,-2.15V9c0,-1.66 -1.34,-3 -3,-3h-5.5c-1.66,0 -3,1.34 -3,3v1.35C5.51,10.78 5,11.58 5,12.5V16C5,17.1 5.9,18 7,18zM7.75,9c0,-0.83 0.67,-1.5 1.5,-1.5h5.5c0.83,0 1.5,0.67 1.5,1.5v1.03C14.99,10.15 14,11.2 14,12.5V13h-4v-0.5c0,-1.3 -0.99,-2.35 -2.25,-2.47V9zM6.5,12.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v2h7v-2c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16c0,0.28 -0.22,0.5 -0.5,0.5H7c-0.28,0 -0.5,-0.22 -0.5,-0.5V12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_activity.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_activity.xml
deleted file mode 100644
index 1490926..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_activity.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.01,8.54C5.2,9.23 6,10.52 6,12s-0.81,2.77 -2,3.46L4,18h16v-2.54c-1.19,-0.69 -2,-1.99 -2,-3.46s0.81,-2.77 2,-3.46L20,6L4,6l0.01,2.54zM10.73,10.22L12,7l1.26,3.23 3.47,0.2 -2.69,2.2 0.89,3.37L12,14.12 9.07,16l0.88,-3.37 -2.69,-2.2 3.47,-0.21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8.54c-1.19,0.69 -2,1.99 -2,3.46s0.81,2.77 2,3.46L20,18L4,18v-2.54c1.19,-0.69 2,-1.99 2,-3.46 0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16v2.54zM9.07,16L12,14.12 14.93,16l-0.89,-3.36 2.69,-2.2 -3.47,-0.21L12,7l-1.27,3.22 -3.47,0.21 2.69,2.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_airport.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_airport.xml
deleted file mode 100644
index 0ad3ad1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_airport.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-2l-8.5,-5V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5V9L2,14v2l8.5,-2.5V19L8,20.5L8,22l4,-1l4,1l0,-1.5L13.5,19v-5.5L22,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_atm.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_atm.xml
deleted file mode 100644
index 16b89ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_atm.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16L20,6L4,6v12zM9,14h4v-1h-3c-0.55,0 -1,-0.45 -1,-1L9,9c0,-0.55 0.45,-1 1,-1h1L11,7h2v1h2v2h-4v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1h-2v-1L9,16v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18L4,6h16v12zM11,17h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h4L15,8h-2L13,7h-2v1h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1L9,14v2h2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_bar.xml
deleted file mode 100644
index 1f457fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.23,9L12,12.11 14.77,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5V3H3v2l8,9v5H6v2h12v-2h-5v-5l8,-9zM5.66,5h12.69l-1.78,2H7.43L5.66,5zM12,12.11L9.23,9h5.54L12,12.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_cafe.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_cafe.xml
deleted file mode 100644
index 742b66a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_cafe.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,15h6c1.1,0 2,-0.9 2,-2V5H6v8c0,1.1 0.9,2 2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19h18v2L2,21zM4,13c0,2.21 1.79,4 4,4h6c2.21,0 4,-1.79 4,-4v-3h2c1.11,0 2,-0.89 2,-2L22,5c0,-1.11 -0.89,-2 -2,-2L4,3v10zM18,5h2v3h-2L18,5zM6,5h10v8c0,1.1 -0.9,2 -2,2L8,15c-1.1,0 -2,-0.9 -2,-2L6,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_car_wash.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_car_wash.xml
deleted file mode 100644
index be22894..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_car_wash.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.12,14l-0.12,0.34L5,19h14v-4.66l-0.12,-0.34L5.12,14zM7.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,15 7.5,15s1.5,0.67 1.5,1.5S8.33,18 7.5,18zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,3.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5c0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7zM13.5,3.5c0,-1 -1.5,-2.7 -1.5,-2.7s-1.5,1.7 -1.5,2.7c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5zM8.5,3.5C8.5,2.5 7,0.8 7,0.8S5.5,2.5 5.5,3.5C5.5,4.33 6.17,5 7,5s1.5,-0.67 1.5,-1.5zM21,14l-2.08,-5.99C18.72,7.42 18.16,7 17.5,7h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,14v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8zM6.85,9h10.29l1.04,3L5.81,12l1.04,-3zM19,19L5,19v-4.66l0.12,-0.34h13.77l0.11,0.34L19,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_convenience_store.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_convenience_store.xml
deleted file mode 100644
index 2539a4b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_convenience_store.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,14h2v4h4L20,9h-3L17,6L7,6v3L4,9v9h4v-4h6zM13,7h1v2h1L15,7h1v5h-1v-2h-2L13,7zM8,9h2L10,8L8,8L8,7h3v3L9,10v1h2v1L8,12L8,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4v4h8L22,7h-3L19,4L5,4v3L2,7v13h8v-4zM8,16v2L4,18L4,9h3L7,6h10v3h3v9h-4v-4L8,14v2zM11,11L9,11v-1h2L11,7L8,7v1h2v1L8,9v3h3zM15,12h1L16,7h-1v2h-1L14,7h-1v3h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_dining.xml
deleted file mode 100644
index 930673e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_dining.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.11,21.28L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47c1.53,0.71 3.68,0.21 5.27,-1.38 1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41zM3.91,9.16l4.19,4.18 2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_drink.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_drink.xml
deleted file mode 100644
index 08d24a9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_drink.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20.01L17,20l1.1,-10L5.89,10L7,20.01zM12,10.6s3,3.4 3,5.4c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3c0,-2 3,-5.4 3,-5.4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.01,20.23C5.13,21.23 5.97,22 7,22h10c1.03,0 1.87,-0.77 1.99,-1.77L21,2L3,2l2.01,18.23zM17,20l-10,0.01L5.89,10L18.1,10L17,20zM18.76,4l-0.43,4L5.67,8l-0.44,-4h13.53zM12,19c1.66,0 3,-1.34 3,-3 0,-2 -3,-5.4 -3,-5.4S9,14 9,16c0,1.66 1.34,3 3,3zM12,13.91c0.59,0.91 1,1.73 1,2.09 0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1c0,-0.37 0.41,-1.19 1,-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_fire_department.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_fire_department.xml
deleted file mode 100644
index 76e2e0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_fire_department.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.2,8.65C15.56,9.07 14.8,9.3 14.02,9.3c-2.06,0 -3.77,-1.55 -3.99,-3.55C8.13,7.35 6,9.84 6,13c0,1.79 0.79,3.4 2.04,4.5c-0.04,-0.34 -0.23,-1.88 1.13,-3.22l0,0L12,11.5l2.83,2.78l0,0c1.35,1.33 1.17,2.86 1.13,3.21l0,0.01C17.21,16.4 18,14.79 18,13C18,11.35 17.34,9.78 16.2,8.65z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.31l-1.42,1.4C10.2,16.07 10,16.55 10,17.06c0,1.07 0.9,1.94 2,1.94s2,-0.87 2,-1.94c0,-0.51 -0.2,-0.99 -0.57,-1.36L12,14.31z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l-0.44,0.55c-0.42,0.52 -0.98,0.75 -1.54,0.75C13,7.3 12,6.52 12,5.3V2c0,0 -8,4 -8,11c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,10.04 18.39,7.38 16,6zM12,19c-1.1,0 -2,-0.87 -2,-1.94c0,-0.51 0.2,-0.99 0.58,-1.36l1.42,-1.4l1.43,1.4C13.8,16.07 14,16.55 14,17.06C14,18.13 13.1,19 12,19zM15.96,17.5L15.96,17.5c0.04,-0.36 0.22,-1.89 -1.13,-3.22l0,0L12,11.5l-2.83,2.78l0,0c-1.36,1.34 -1.17,2.88 -1.13,3.22C6.79,16.4 6,14.79 6,13c0,-3.16 2.13,-5.65 4.03,-7.25c0.23,1.99 1.93,3.55 3.99,3.55c0.78,0 1.54,-0.23 2.18,-0.66C17.34,9.78 18,11.35 18,13C18,14.79 17.21,16.4 15.96,17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_florist.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_florist.xml
deleted file mode 100644
index beb118d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_florist.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c0.62,0 1.12,-0.49 1.14,-1.1l-0.11,-1.09c-0.32,0.12 -0.67,0.19 -1.03,0.19s-0.7,-0.07 -1.02,-0.19l-0.12,1.09c0.02,0.61 0.52,1.1 1.14,1.1zM8.17,7.1l0.88,0.42c0.12,-0.73 0.51,-1.37 1.06,-1.83l-0.81,-0.56c-0.18,-0.13 -0.41,-0.2 -0.64,-0.2 -0.63,0 -1.14,0.51 -1.14,1.14 -0.01,0.44 0.25,0.83 0.65,1.03zM15.83,8.9l-0.88,-0.42c-0.12,0.73 -0.51,1.37 -1.06,1.83l0.81,0.57c0.18,0.13 0.41,0.2 0.64,0.2 0.63,0 1.14,-0.51 1.14,-1.14 0.01,-0.45 -0.25,-0.84 -0.65,-1.04zM14.95,7.52l0.88,-0.42c0.4,-0.19 0.66,-0.59 0.66,-1.03 0,-0.63 -0.51,-1.14 -1.14,-1.14 -0.24,0 -0.46,0.07 -0.65,0.2l-0.81,0.55c0.55,0.46 0.94,1.1 1.06,1.84zM12,5c0.36,0 0.71,0.07 1.03,0.19l0.11,-1.09C13.12,3.49 12.62,3 12,3s-1.12,0.49 -1.14,1.1l0.12,1.09C11.3,5.07 11.64,5 12,5zM8.66,11.07c0.24,0 0.46,-0.07 0.65,-0.2l0.81,-0.55c-0.56,-0.46 -0.95,-1.1 -1.07,-1.84l-0.88,0.42c-0.4,0.2 -0.66,0.59 -0.66,1.03 0,0.63 0.52,1.14 1.15,1.14zM18.56,15.44c-1.9,0.71 -3.42,2.22 -4.12,4.12 1.9,-0.71 3.41,-2.22 4.12,-4.12zM5.44,15.44c0.71,1.9 2.22,3.42 4.12,4.12 -0.71,-1.9 -2.22,-3.41 -4.12,-4.12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.66,13.07c0.15,0 0.29,-0.01 0.43,-0.03C9.56,14.19 10.69,15 12,15s2.44,-0.81 2.91,-1.96c0.14,0.02 0.29,0.03 0.43,0.03 1.73,0 3.14,-1.41 3.14,-3.14 0,-0.71 -0.25,-1.39 -0.67,-1.93 0.43,-0.54 0.67,-1.22 0.67,-1.93 0,-1.73 -1.41,-3.14 -3.14,-3.14 -0.15,0 -0.29,0.01 -0.43,0.03C14.44,1.81 13.31,1 12,1s-2.44,0.81 -2.91,1.96c-0.14,-0.02 -0.29,-0.03 -0.43,-0.03 -1.73,0 -3.14,1.41 -3.14,3.14 0,0.71 0.25,1.39 0.67,1.93 -0.43,0.54 -0.68,1.22 -0.68,1.93 0,1.73 1.41,3.14 3.15,3.14zM15.34,11.07c-0.24,0 -0.46,-0.07 -0.64,-0.2l-0.81,-0.57c0.55,-0.45 0.94,-1.09 1.06,-1.83l0.88,0.42c0.4,0.19 0.66,0.59 0.66,1.03 0,0.64 -0.52,1.15 -1.15,1.15zM14.69,5.13c0.2,-0.13 0.42,-0.2 0.65,-0.2 0.63,0 1.14,0.51 1.14,1.14 0,0.44 -0.25,0.83 -0.66,1.03l-0.88,0.42c-0.12,-0.74 -0.51,-1.38 -1.07,-1.83l0.82,-0.56zM12,3c0.62,0 1.12,0.49 1.14,1.1l-0.11,1.09C12.71,5.07 12.36,5 12,5s-0.7,0.07 -1.02,0.19l-0.12,-1.09c0.02,-0.61 0.52,-1.1 1.14,-1.1zM13,8c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1 0.45,-1 1,-1 1,0.45 1,1zM10.98,10.81c0.32,0.12 0.66,0.19 1.02,0.19s0.71,-0.07 1.03,-0.19l0.11,1.09c-0.02,0.61 -0.52,1.1 -1.14,1.1s-1.12,-0.49 -1.14,-1.1l0.12,-1.09zM8.66,4.93c0.24,0 0.46,0.07 0.64,0.2l0.81,0.56c-0.55,0.45 -0.94,1.09 -1.06,1.83l-0.88,-0.42c-0.4,-0.2 -0.66,-0.59 -0.66,-1.03 0,-0.63 0.52,-1.14 1.15,-1.14zM8.17,8.9l0.88,-0.42c0.12,0.74 0.51,1.38 1.07,1.83l-0.81,0.55c-0.2,0.13 -0.42,0.2 -0.65,0.2 -0.63,0 -1.14,-0.51 -1.14,-1.14 -0.01,-0.43 0.25,-0.82 0.65,-1.02zM12,22c4.97,0 9,-4.03 9,-9 -4.97,0 -9,4.03 -9,9zM18.56,15.44c-0.71,1.9 -2.22,3.42 -4.12,4.12 0.71,-1.9 2.22,-3.41 4.12,-4.12zM3,13c0,4.97 4.03,9 9,9 0,-4.97 -4.03,-9 -9,-9zM5.44,15.44c1.9,0.71 3.42,2.22 4.12,4.12 -1.9,-0.71 -3.41,-2.22 -4.12,-4.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_gas_station.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_gas_station.xml
deleted file mode 100644
index 657f327..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_gas_station.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h6v-7H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L6,3c-1.1,0 -2,0.9 -2,2v16h10v-7.5h1.5v5c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5L20.5,9c0,-0.69 -0.28,-1.32 -0.73,-1.77l0.01,-0.01 -3.72,-3.72L15,4.56l2.11,2.11c-0.94,0.36 -1.61,1.26 -1.61,2.33 0,1.38 1.12,2.5 2.5,2.5 0.36,0 0.69,-0.08 1,-0.21v7.21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L17,14c0,-1.1 -0.9,-2 -2,-2h-1L14,5c0,-1.1 -0.9,-2 -2,-2zM12,13.5L12,19L6,19v-7h6v1.5zM12,10L6,10L6,5h6v5zM18,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_grocery_store.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_grocery_store.xml
deleted file mode 100644
index 225307a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_grocery_store.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.53,11h7.02l2.76,-5H6.16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM15.55,13c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.37,-0.66 -0.11,-1.48 -0.87,-1.48L5.21,4l-0.94,-2L1,2v2h2l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2L7,15l1.1,-2h7.45zM6.16,6h12.15l-2.76,5L8.53,11L6.16,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_hospital.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_hospital.xml
deleted file mode 100644
index 743d544..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_hospital.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM7,10.5h3.5L10.5,7h3v3.5L17,10.5v3h-3.5L13.5,17h-3v-3.5L7,13.5v-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5zM19,19L5,19L5,5h14v14zM10.5,17h3v-3.5L17,13.5v-3h-3.5L13.5,7h-3v3.5L7,10.5v3h3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_hotel.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_hotel.xml
deleted file mode 100644
index 2b576f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_hotel.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-6v6h8v-4c0,-1.1 -0.9,-2 -2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11c0,1.66 1.34,3 3,3s3,-1.34 3,-3 -1.34,-3 -3,-3 -3,1.34 -3,3zM8,11c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1 0.45,-1 1,-1 1,0.45 1,1zM19,7h-8v8L3,15L3,5L1,5v15h2v-3h18v3h2v-9c0,-2.21 -1.79,-4 -4,-4zM21,15h-8L13,9h6c1.1,0 2,0.9 2,2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_laundry_service.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_laundry_service.xml
deleted file mode 100644
index 4b841a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_laundry_service.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.99,4L6,20h12L18,4L5.99,4c0.01,0 0,0 0,0zM11,5c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM8,5c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM12,9c2.76,0 5,2.24 5,5s-2.24,5 -5,5 -5,-2.24 -5,-5 2.24,-5 5,-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2.01L6,2c-1.11,0 -2,0.89 -2,2v16c0,1.11 0.89,2 2,2h12c1.11,0 2,-0.89 2,-2V4c0,-1.11 -0.89,-1.99 -2,-1.99zM18,20H6L5.99,4H18v16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5 -5,2.24 -5,5 2.24,5 5,5zM14.36,11.64c1.3,1.3 1.3,3.42 0,4.72 -1.3,1.3 -3.42,1.3 -4.72,0l4.72,-4.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_library.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_library.xml
deleted file mode 100644
index 1faf28e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_library.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17.13v-6.95c-2.1,0.38 -4.05,1.35 -5.64,2.83L12,14.28l-1.36,-1.27C9.05,11.53 7.1,10.56 5,10.18v6.95c2.53,0.34 4.94,1.3 7,2.83 2.07,-1.52 4.47,-2.49 7,-2.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5c0,-2.21 -1.79,-4 -4,-4S8,2.79 8,5s1.79,4 4,4 4,-1.79 4,-4zM10,5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2zM3,19c3.48,0 6.64,1.35 9,3.55 2.36,-2.19 5.52,-3.55 9,-3.55L21,8c-3.48,0 -6.64,1.35 -9,3.55C9.64,9.35 6.48,8 3,8v11zM5,10.18c2.1,0.38 4.05,1.35 5.64,2.83L12,14.28l1.36,-1.27c1.59,-1.48 3.54,-2.45 5.64,-2.83v6.95c-2.53,0.34 -4.93,1.3 -7,2.82 -2.06,-1.52 -4.47,-2.49 -7,-2.83v-6.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_mall.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_mall.xml
deleted file mode 100644
index eb73565..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_mall.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8v12h14L19,8L5,8zM12,14c-2.76,0 -5,-2.24 -5,-5h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2c0,2.76 -2.24,5 -5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6L5,6c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,8c0,-1.1 -0.9,-2 -2,-2h-2zM12,3c1.66,0 3,1.34 3,3L9,6c0,-1.66 1.34,-3 3,-3zM19,20L5,20L5,8h14v12zM12,12c-1.66,0 -3,-1.34 -3,-3L7,9c0,2.76 2.24,5 5,5s5,-2.24 5,-5h-2c0,1.66 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_movies.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_movies.xml
deleted file mode 100644
index b07794b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_movies.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h4v14h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,21L20,3h-2v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM14,19h-4L10,5h4v14zM16,7h2v2h-2L16,7zM16,11h2v2h-2v-2zM16,17v-2h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_offer.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_offer.xml
deleted file mode 100644
index d95f7dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_offer.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4H4v7l9,9.01L20,13l-9,-9zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5 8,5.67 8,6.5 7.33,8 6.5,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.41,2.58C12.05,2.22 11.55,2 11,2H4c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58s1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41s-0.23,-1.06 -0.59,-1.42l-9,-9zM13,20.01L4,11V4h7v-0.01l9,9 -7,7.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_parking.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_parking.xml
deleted file mode 100644
index 01605cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_parking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3L6,3v18h4v-6h3c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM13.2,11L10,11L10,7h3.2c1.1,0 2,0.9 2,2s-0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_pharmacy.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_pharmacy.xml
deleted file mode 100644
index c312f20..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_pharmacy.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.11,19h13.78l-1.79,-5.37 -0.21,-0.63 0.21,-0.63L18.89,7H5.11l1.79,5.37 0.21,0.63 -0.21,0.63L5.11,19zM8,12h3V9h2v3h3v2h-3v3h-2v-3H8v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-2l-2,-6 2,-6L21,5h-2.64l1.14,-3.14L17.15,1l-1.46,4L3,5v2l2,6 -2,6v2zM6.9,12.37L5.11,7h13.78l-1.79,5.37 -0.21,0.63 0.21,0.63L18.89,19L5.11,19l1.79,-5.37 0.21,-0.63 -0.21,-0.63zM11,17h2v-3h3v-2h-3L13,9h-2v3L8,12v2h3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_phone.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_phone.xml
deleted file mode 100644
index afee7e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_phone.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17.47c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.19,1.19c1.2,0.41 2.48,0.67 3.8,0.75v-1.49zM6.99,7.59c-0.24,-0.83 -0.39,-1.7 -0.45,-2.59h-1.5c0.09,1.32 0.35,2.59 0.75,3.8l1.2,-1.21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4c0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1 -1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1zM16.4,17.02c0.85,0.24 1.72,0.39 2.6,0.45v1.49c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.19zM6.54,5c0.06,0.89 0.21,1.76 0.45,2.59l-1.2,1.2c-0.41,-1.2 -0.67,-2.47 -0.76,-3.79h1.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_pizza.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_pizza.xml
deleted file mode 100644
index 98f62c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_pizza.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.51,6.36L12,17.92l6.49,-11.55C16.68,4.85 14.38,4 12,4s-4.68,0.85 -6.49,2.36zM9,8.5c-0.83,0 -1.5,-0.67 -1.5,-1.5S8.17,5.5 9,5.5s1.5,0.67 1.5,1.5S9.82,8.5 9,8.5zM13.5,13c0,0.83 -0.68,1.5 -1.5,1.5 -0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.43,2 5.23,3.54 3.01,6L12,22l8.99,-16C18.78,3.55 15.57,2 12,2zM12,17.92L5.51,6.36C7.32,4.85 9.62,4 12,4s4.68,0.85 6.49,2.36L12,17.92zM9,5.5c-0.83,0 -1.5,0.67 -1.5,1.5S8.17,8.5 9,8.5s1.5,-0.67 1.5,-1.5S9.82,5.5 9,5.5zM10.5,13c0,0.83 0.67,1.5 1.5,1.5 0.82,0 1.5,-0.67 1.5,-1.5s-0.68,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_play.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_play.xml
deleted file mode 100644
index 1490926..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_play.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.01,8.54C5.2,9.23 6,10.52 6,12s-0.81,2.77 -2,3.46L4,18h16v-2.54c-1.19,-0.69 -2,-1.99 -2,-3.46s0.81,-2.77 2,-3.46L20,6L4,6l0.01,2.54zM10.73,10.22L12,7l1.26,3.23 3.47,0.2 -2.69,2.2 0.89,3.37L12,14.12 9.07,16l0.88,-3.37 -2.69,-2.2 3.47,-0.21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2v4c1.1,0 1.99,0.9 1.99,2s-0.89,2 -2,2v4c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-4c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8.54c-1.19,0.69 -2,1.99 -2,3.46s0.81,2.77 2,3.46L20,18L4,18v-2.54c1.19,-0.69 2,-1.99 2,-3.46 0,-1.48 -0.8,-2.77 -1.99,-3.46L4,6h16v2.54zM9.07,16L12,14.12 14.93,16l-0.89,-3.36 2.69,-2.2 -3.47,-0.21L12,7l-1.27,3.22 -3.47,0.21 2.69,2.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_police.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_police.xml
deleted file mode 100644
index b0fade4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_police.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3.19L5,6.3V11c0,4.52 2.98,8.69 7,9.93c4.02,-1.23 7,-5.41 7,-9.93V6.3L12,3.19zM14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9,-3.87l-3,-2.59l3.96,-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9,-3.87l-3,-2.59l3.96,-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59zM12,3.19l7,3.11V11c0,4.52 -2.98,8.69 -7,9.93C7.98,19.69 5,15.52 5,11V6.3L12,3.19M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1L12,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_post_office.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_post_office.xml
deleted file mode 100644
index 5940f52..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_post_office.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11l8,-5H4zM4,8v10h16V8l-8,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8l8,5 8,-5v10zM12,11L4,6h16l-8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_printshop.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_printshop.xml
deleted file mode 100644
index c0e2c97..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_printshop.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5h8v3L8,8zM19,10L5,10c-0.55,0 -1,0.45 -1,1v4h2v-2h12v2h2v-4c0,-0.55 -0.45,-1 -1,-1zM18,12.5c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-1L18,3L6,3v5L5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12v-4h4v-6c0,-1.66 -1.34,-3 -3,-3zM8,5h8v3L8,8L8,5zM16,19L8,19v-4h8v4zM20,15h-2v-2L6,13v2L4,15v-4c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_see.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_see.xml
deleted file mode 100644
index 3c43d8b5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_see.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4.05l-0.59,-0.65L14.12,4L9.88,4L8.65,5.35l-0.6,0.65L4,6v12h16L20,6zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM4,6h4.05l0.59,-0.65L9.88,4h4.24l1.24,1.35 0.59,0.65L20,6v12L4,18L4,6zM12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,15.2c-1.77,0 -3.2,-1.43 -3.2,-3.2 0,-1.77 1.43,-3.2 3.2,-3.2s3.2,1.43 3.2,3.2c0,1.77 -1.43,3.2 -3.2,3.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_shipping.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_shipping.xml
deleted file mode 100644
index 7abdb76..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_shipping.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h0.78c0.55,-0.61 1.34,-1 2.22,-1s1.67,0.39 2.22,1H15V6H3v9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8L17,4L3,4c-1.1,0 -2,0.9 -2,2v11h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h6c0,1.66 1.34,3 3,3s3,-1.34 3,-3h2v-5l-3,-4h-3zM6,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM15,15L8.22,15c-0.55,-0.61 -1.33,-1 -2.22,-1s-1.67,0.39 -2.22,1L3,15L3,6h12v9zM18,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM17,12L17,9.5h2.5l1.96,2.5L17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/local_taxi.xml b/compose/material/material/icons/generator/raw-icons/twotone/local_taxi.xml
deleted file mode 100644
index 68d350d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/local_taxi.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.12,12l-0.12,0.34L5,17h14v-4.66l-0.12,-0.34L5.12,12zM7.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,13 7.5,13s1.5,0.67 1.5,1.5S8.33,16 7.5,16zM16.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,5H15V3H9v2H6.5c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99C18.72,5.42 18.16,5 17.5,5zM6.85,7h10.29l1.04,3H5.81l1.04,-3zM19,17H5v-4.66l0.12,-0.34h13.77l0.11,0.34V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/location_city.xml b/compose/material/material/icons/generator/raw-icons/twotone/location_city.xml
deleted file mode 100644
index de6615f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/location_city.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11L15,5l-3,-3 -3,3v2L3,7v14h18L21,11h-6zM7,19L5,19v-2h2v2zM7,15L5,15v-2h2v2zM7,11L5,11L5,9h2v2zM13,19h-2v-2h2v2zM13,15h-2v-2h2v2zM13,11h-2L11,9h2v2zM13,7h-2L11,5h2v2zM19,19h-2v-2h2v2zM19,15h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/location_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/location_disabled.xml
deleted file mode 100644
index d9b464a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/location_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,13v-2h-2.06c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06c-0.98,0.11 -1.91,0.38 -2.77,0.78l1.53,1.53C10.46,5.13 11.22,5 12,5c3.87,0 7,3.13 7,7 0,0.79 -0.13,1.54 -0.37,2.24l1.53,1.53c0.4,-0.86 0.67,-1.79 0.78,-2.77H23zM4.41,2.86L3,4.27l2.04,2.04C3.97,7.62 3.26,9.23 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21l1.41,-1.41L4.41,2.86zM12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81C15.09,18.45 13.61,19 12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/location_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/location_off.xml
deleted file mode 100644
index 5b751b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/location_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9c0,1.06 -0.39,2.32 -1,3.62l1.49,1.49C18.37,12.36 19,10.57 19,9c0,-3.87 -3.13,-7 -7,-7 -1.84,0 -3.5,0.71 -4.75,1.86l1.43,1.43C9.56,4.5 10.72,4 12,4c2.76,0 5,2.24 5,5zM12,6.5c-0.59,0 -1.13,0.21 -1.56,0.56l3.5,3.5c0.35,-0.43 0.56,-0.97 0.56,-1.56 0,-1.38 -1.12,-2.5 -2.5,-2.5zM3.41,2.86L2,4.27l3.18,3.18C5.07,7.95 5,8.47 5,9c0,5.25 7,13 7,13s1.67,-1.85 3.38,-4.35L18.73,21l1.41,-1.41L3.41,2.86zM12,18.88c-2.01,-2.58 -4.8,-6.74 -4.98,-9.59l6.92,6.92c-0.65,0.98 -1.33,1.89 -1.94,2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/location_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/location_on.xml
deleted file mode 100644
index 569f484..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/location_on.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C9.24,4 7,6.24 7,9c0,2.85 2.92,7.21 5,9.88 2.11,-2.69 5,-7 5,-9.88 0,-2.76 -2.24,-5 -5,-5zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM7,9c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.88 -2.88,7.19 -5,9.88C9.92,16.21 7,11.85 7,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/location_searching.xml b/compose/material/material/icons/generator/raw-icons/twotone/location_searching.xml
deleted file mode 100644
index be68427..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/location_searching.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lock.xml b/compose/material/material/icons/generator/raw-icons/twotone/lock.xml
deleted file mode 100644
index 2c45442..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lock.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12L18,10L6,10v10zM12,13c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L9,8L9,6zM18,20L6,20L6,10h12v10zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lock_clock.xml b/compose/material/material/icons/generator/raw-icons/twotone/lock_clock.xml
deleted file mode 100644
index e6af08f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lock_clock.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.29,20H6V10h12v1c0.7,0 1.37,0.1 2,0.29V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h6.26C11.84,21.4 11.51,20.72 11.29,20zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2H9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18c0,-3.87 3.13,-7 7,-7v-1H6v10h5.29C11.1,19.37 11,18.7 11,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lock_open.xml b/compose/material/material/icons/generator/raw-icons/twotone/lock_open.xml
deleted file mode 100644
index e17c4ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lock_open.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12L18,10L6,10v10zM12,13c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6h2c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,10h12v10zM12,17c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lock_person.xml b/compose/material/material/icons/generator/raw-icons/twotone/lock_person.xml
deleted file mode 100644
index b6854d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lock_person.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10v10h5.29C11.1,19.37 11,18.7 11,18c0,-3.87 3.13,-7 7,-7v-1H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20V10h12v1c0.7,0 1.37,0.1 2,0.29V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2H6c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h6.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H6zM9,6c0,-1.66 1.34,-3 3,-3s3,1.34 3,3v2H9V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM18,15c0.83,0 1.5,0.67 1.5,1.5S18.83,18 18,18s-1.5,-0.67 -1.5,-1.5S17.17,15 18,15zM18,21c-1.03,0 -1.94,-0.52 -2.48,-1.32C16.25,19.26 17.09,19 18,19s1.75,0.26 2.48,0.68C19.94,20.48 19.03,21 18,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lock_reset.xml b/compose/material/material/icons/generator/raw-icons/twotone/lock_reset.xml
deleted file mode 100644
index 7811e9e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lock_reset.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9H1l4,4l4,-4H6c0,-3.86 3.14,-7 7,-7s7,3.14 7,7s-3.14,7 -7,7c-1.9,0 -3.62,-0.76 -4.88,-1.99L6.7,18.42C8.32,20.01 10.55,21 13,21c4.97,0 9,-4.03 9,-9S17.97,3 13,3zM15,11v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C16,11.45 15.55,11 15,11zM14,11h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/login.xml b/compose/material/material/icons/generator/raw-icons/twotone/login.xml
deleted file mode 100644
index 8a3c480..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/login.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5,-5L11,7zM20,19h-8v2h8c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2h-8v2h8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/logo_dev.xml b/compose/material/material/icons/generator/raw-icons/twotone/logo_dev.xml
deleted file mode 100644
index 8659d2d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/logo_dev.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM7.68,14.98H6V9h1.71c1.28,0 1.71,1.03 1.71,1.71l0,2.56C9.42,13.95 9,14.98 7.68,14.98zM12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25c-0.4,0.01 -0.74,-0.31 -0.75,-0.71V9.75c-0.01,-0.4 0.31,-0.74 0.71,-0.75h2.28l0,1.07h-1.92v1.39H12.38zM16.88,14.23c-0.48,1.11 -1.33,0.89 -1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,10.12H7.14v3.77h0.63c0.14,0 0.28,-0.05 0.42,-0.16c0.14,-0.1 0.21,-0.26 0.21,-0.47v-2.52c0,-0.21 -0.07,-0.37 -0.21,-0.47C8.05,10.17 7.91,10.12 7.77,10.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/logout.xml b/compose/material/material/icons/generator/raw-icons/twotone/logout.xml
deleted file mode 100644
index 3b740ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/logout.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h7V3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h7v-2H5V5zM21,12l-4,-4v3H9v2h8v3L21,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/looks.xml b/compose/material/material/icons/generator/raw-icons/twotone/looks.xml
deleted file mode 100644
index f242ae3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/looks.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6C5.93,6 1,10.93 1,17h2c0,-4.96 4.04,-9 9,-9s9,4.04 9,9h2c0,-6.07 -4.93,-11 -11,-11zM12,12c2.76,0 5,2.24 5,5h2c0,-3.86 -3.14,-7 -7,-7s-7,3.14 -7,7h2c0,-2.76 2.24,-5 5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/looks_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/looks_3.xml
deleted file mode 100644
index 7942f61..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/looks_3.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM9,15h4v-2h-2v-2h2L13,9L9,9L9,7h4c1.1,0 2,0.89 2,2v1.5c0,0.83 -0.67,1.5 -1.5,1.5 0.83,0 1.5,0.67 1.5,1.5L15,15c0,1.11 -0.9,2 -2,2L9,17v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM15,15v-1.5c0,-0.83 -0.67,-1.5 -1.5,-1.5 0.83,0 1.5,-0.67 1.5,-1.5L15,9c0,-1.11 -0.9,-2 -2,-2L9,7v2h4v2h-2v2h2v2L9,15v2h4c1.1,0 2,-0.89 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/looks_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/looks_4.xml
deleted file mode 100644
index 99a27dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/looks_4.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.04,19h14L19.04,5h-14v14zM9.04,7h2v4h2L13.04,7h2v10h-2v-4h-4L9.04,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.04,3h-14c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21.04,5c0,-1.1 -0.9,-2 -2,-2zM19.04,19h-14L5.04,5h14v14zM13.04,17h2L15.04,7h-2v4h-2L11.04,7h-2v6h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/looks_5.xml b/compose/material/material/icons/generator/raw-icons/twotone/looks_5.xml
deleted file mode 100644
index 49b2fd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/looks_5.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5v14h14L19,5zM15,9h-4v2h2c1.1,0 2,0.89 2,2v2c0,1.11 -0.9,2 -2,2L9,17v-2h4v-2L9,13L9,7h6v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2zM5,5h14v14L5,19L5,5zM9,13h4v2L9,15v2h4c1.1,0 2,-0.89 2,-2v-2c0,-1.11 -0.9,-2 -2,-2h-2L11,9h4L15,7L9,7v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/looks_6.xml b/compose/material/material/icons/generator/raw-icons/twotone/looks_6.xml
deleted file mode 100644
index fee32bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/looks_6.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13h2v2h-2zM19,5L5,5v14h14L19,5zM15,9h-4v2h2c1.1,0 2,0.89 2,2v2c0,1.11 -0.9,2 -2,2h-2c-1.1,0 -2,-0.89 -2,-2L9,9c0,-1.11 0.9,-2 2,-2h4v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9v6c0,1.11 0.9,2 2,2h2c1.1,0 2,-0.89 2,-2v-2c0,-1.11 -0.9,-2 -2,-2h-2L11,9h4L15,7h-4c-1.1,0 -2,0.89 -2,2zM13,13v2h-2v-2h2zM5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2zM5,5h14v14L5,19L5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/looks_one.xml b/compose/material/material/icons/generator/raw-icons/twotone/looks_one.xml
deleted file mode 100644
index 83fa964..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/looks_one.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5v14h14L19,5zM14,17h-2L12,9h-2L10,7h4v10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2zM5,5h14v14L5,19L5,5zM10,9h2v8h2L14,7h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/looks_two.xml b/compose/material/material/icons/generator/raw-icons/twotone/looks_two.xml
deleted file mode 100644
index 1518b5b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/looks_two.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5L5,5v14h14L19,5zM15,11c0,1.11 -0.9,2 -2,2h-2v2h4v2L9,17v-4c0,-1.11 0.9,-2 2,-2h2L13,9L9,9L9,7h4c1.1,0 2,0.89 2,2v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2zM5,5h14v14L5,19L5,5zM13,7L9,7v2h4v2h-2c-1.1,0 -2,0.89 -2,2v4h6v-2h-4v-2h2c1.1,0 2,-0.89 2,-2L15,9c0,-1.11 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/loop.xml b/compose/material/material/icons/generator/raw-icons/twotone/loop.xml
deleted file mode 100644
index cc6a1cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/loop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.24,7.74C4.46,8.97 4,10.43 4,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3zM12,4L12,1L8,5l4,4L12,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46C19.54,15.03 20,13.57 20,12c0,-4.42 -3.58,-8 -8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/loupe.xml b/compose/material/material/icons/generator/raw-icons/twotone/loupe.xml
deleted file mode 100644
index 1b9f613..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/loupe.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c4.41,0 8,-3.59 8,-8s-3.59,-8 -8,-8 -8,3.59 -8,8 3.59,8 8,8zM7,11h4L11,7h2v4h4v2h-4v4h-2v-4L7,13v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,17h2v-4h4v-2h-4L13,7h-2v4L7,11v2h4zM12,22h8c1.1,0 2,-0.9 2,-2v-8c0,-5.51 -4.49,-10 -10,-10S2,6.49 2,12s4.49,10 10,10zM12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8 -8,-3.59 -8,-8 3.59,-8 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/low_priority.xml b/compose/material/material/icons/generator/raw-icons/twotone/low_priority.xml
deleted file mode 100644
index a7792fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/low_priority.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5h8v2h-8L14,5zM14,10.5h8v2h-8v-2zM14,16h8v2h-8v-2zM2,11.5C2,15.08 4.92,18 8.5,18L9,18v2l3,-3 -3,-3v2h-0.5C6.02,16 4,13.98 4,11.5S6.02,7 8.5,7L12,7L12,5L8.5,5C4.92,5 2,7.92 2,11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/loyalty.xml b/compose/material/material/icons/generator/raw-icons/twotone/loyalty.xml
deleted file mode 100644
index 2a9411c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/loyalty.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4L4,4v7l9,9.01L20,13l-9,-9zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5 8,5.67 8,6.5 7.33,8 6.5,8zM13,11.7l0.6,-0.6c0.37,-0.37 0.89,-0.6 1.45,-0.6 1.13,0 2.05,0.92 2.05,2.05 0,0.57 -0.23,1.08 -0.6,1.45L13,17.5 9.5,14c-0.37,-0.38 -0.6,-0.89 -0.6,-1.45 0,-1.13 0.92,-2.05 2.05,-2.05 0.57,0 1.08,0.23 1.45,0.61l0.6,0.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.58l-9,-9C12.05,2.22 11.55,2 11,2H4c-1.1,0 -2,0.9 -2,2v7c0,0.55 0.22,1.05 0.59,1.42l9,9c0.36,0.36 0.86,0.58 1.41,0.58s1.05,-0.22 1.41,-0.59l7,-7c0.37,-0.36 0.59,-0.86 0.59,-1.41s-0.23,-1.06 -0.59,-1.42zM13,20.01L4,11V4h7v-0.01l9,9 -7,7.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,12.55c0,0.57 0.23,1.07 0.6,1.45l3.5,3.5 3.5,-3.5c0.37,-0.37 0.6,-0.89 0.6,-1.45 0,-1.13 -0.92,-2.05 -2.05,-2.05 -0.57,0 -1.08,0.23 -1.45,0.6l-0.6,0.6 -0.6,-0.59c-0.37,-0.38 -0.89,-0.61 -1.45,-0.61 -1.13,0 -2.05,0.92 -2.05,2.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lte_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/lte_mobiledata.xml
deleted file mode 100644
index 7fc5c97..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lte_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,14h3v2H4V8h2V14zM9,10h2v6h2v-6h2V8H9V10zM21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lte_plus_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/lte_plus_mobiledata.xml
deleted file mode 100644
index 64fd585..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lte_plus_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h3v2H1V8h2V14zM5,10h2v6h2v-6h2V8H5V10zM12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16zM24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/luggage.xml b/compose/material/material/icons/generator/raw-icons/twotone/luggage.xml
deleted file mode 100644
index 0c62e7d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/luggage.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8v11h10V8H7zM9.5,18H8V9h1.5V18zM12.75,18h-1.5V9h1.5V18zM16,18h-1.5V9H16V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,18H8V9h1.5V18zM12.75,18h-1.5V9h1.5V18zM16,18h-1.5V9H16V18zM17,6h-2V3c0,-0.55 -0.45,-1 -1,-1h-4C9.45,2 9,2.45 9,3v3H7C5.9,6 5,6.9 5,8v11c0,1.1 0.9,2 2,2c0,0.55 0.45,1 1,1s1,-0.45 1,-1h6c0,0.55 0.45,1 1,1s1,-0.45 1,-1c1.1,0 2,-0.9 2,-2V8C19,6.9 18.1,6 17,6zM10.5,3.5h3V6h-3V3.5zM17,19H7V8h10V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lunch_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/lunch_dining.xml
deleted file mode 100644
index 945bd6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lunch_dining.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16v1h-16z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5C8.61,5 5.01,5.81 4.18,8h15.66c-0.13,-0.37 -0.35,-0.7 -0.66,-1.01C17.93,5.73 15.31,5 12,5z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-3H2V19zM4,18h16v1H4V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.66,11.5c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1v2c1.9,0 2.17,-1 3.35,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.32,1l-0.01,-1.98C20.38,12.19 20.37,11.5 18.66,11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9c0.02,-4 -4.28,-6 -10,-6C6.29,3 2,5 2,9v1h20L22,9L22,9zM4.18,8C5.01,5.81 8.61,5 12,5c3.31,0 5.93,0.73 7.19,1.99C19.49,7.3 19.71,7.63 19.84,8H4.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/lyrics.xml b/compose/material/material/icons/generator/raw-icons/twotone/lyrics.xml
deleted file mode 100644
index f8f34ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/lyrics.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v14l2,-2h9v-4.03c-0.62,-0.83 -1,-1.85 -1,-2.97c0,-1.12 0.38,-2.14 1,-2.97V4H4zM10,14H6v-2h4V14zM13,11H6V9h7V11zM13,8H6V6h7V8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12h4v2h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.97V16H6l-2,2V4h11v2.03c0.52,-0.69 1.2,-1.25 2,-1.6V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9c1.1,0 2,-0.9 2,-2v-2.42C16.2,13.22 15.52,12.66 15,11.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.18C19.69,6.07 19.35,6 19,6c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3V3h2V1h-4V6.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/macro_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/macro_off.xml
deleted file mode 100644
index 11df0d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/macro_off.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.11,5.69L9.3,5.13C9.12,5 8.89,4.93 8.66,4.93c-0.25,0 -0.47,0.1 -0.66,0.24l1.39,1.39C9.57,6.23 9.82,5.93 10.11,5.69z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.83,8.9l-0.88,-0.42c-0.12,0.73 -0.51,1.36 -1.05,1.82l0.8,0.57c0.18,0.13 0.4,0.2 0.64,0.2c0.47,0 0.87,-0.28 1.05,-0.69c0.06,-0.14 0.09,-0.28 0.09,-0.44C16.49,9.49 16.23,9.1 15.83,8.9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.89,5.68c0.55,0.46 0.94,1.1 1.06,1.84l0.87,-0.42c0.41,-0.2 0.66,-0.59 0.66,-1.03c0,-0.63 -0.51,-1.14 -1.14,-1.14c-0.24,0 -0.46,0.07 -0.64,0.2L13.89,5.68z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c0.36,0 0.71,0.07 1.03,0.19l0.11,-1.09C13.12,3.49 12.62,3 12,3s-1.12,0.49 -1.14,1.1l0.12,1.09C11.3,5.07 11.64,5 12,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.94,18.77l-0.71,-0.71c-0.32,0.47 -0.59,0.97 -0.79,1.5C14.98,19.36 15.48,19.09 15.94,18.77z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.44,15.44c0.71,1.9 2.22,3.41 4.12,4.12C8.85,17.66 7.34,16.15 5.44,15.44z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.66,4.93C8.9,4.93 9.12,5 9.3,5.13l0.81,0.56C9.82,5.93 9.57,6.23 9.39,6.56l1.66,1.66C11.03,8.14 11,8.08 11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1c-0.08,0 -0.14,-0.03 -0.22,-0.04l4.06,4.06c1.49,-0.24 2.63,-1.53 2.63,-3.09c0,-0.71 -0.25,-1.39 -0.67,-1.93c0.43,-0.54 0.67,-1.22 0.67,-1.93c0,-1.73 -1.41,-3.14 -3.14,-3.14c-0.15,0 -0.29,0.01 -0.43,0.03C14.44,1.81 13.31,1 12,1S9.56,1.81 9.09,2.96C8.95,2.94 8.8,2.93 8.66,2.93c-0.8,0 -1.53,0.31 -2.09,0.81l1.42,1.42C8.19,5.03 8.41,4.93 8.66,4.93zM16.39,10.38c-0.18,0.41 -0.58,0.69 -1.05,0.69c-0.24,0 -0.46,-0.07 -0.64,-0.2l-0.8,-0.57l-0.01,0c0.55,-0.45 0.94,-1.09 1.06,-1.83l0.88,0.42c0.4,0.19 0.66,0.59 0.66,1.03C16.49,10.09 16.45,10.24 16.39,10.38zM14.69,5.13c0.2,-0.13 0.42,-0.2 0.65,-0.2c0,0 0,0 0,0c0.63,0 1.14,0.51 1.14,1.14c0,0.44 -0.25,0.83 -0.66,1.03l-0.87,0.42l-0.01,0c-0.12,-0.74 -0.51,-1.38 -1.07,-1.83L14.69,5.13zM12,3c0.62,0 1.12,0.49 1.14,1.1l-0.11,1.09C12.71,5.07 12.36,5 12,5s-0.7,0.07 -1.02,0.19L10.86,4.1C10.88,3.49 11.38,3 12,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,17.15C20.63,15.91 21,14.5 21,13c-1.5,0 -2.91,0.37 -4.15,1.02l1.51,1.51"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,4.97 4.03,9 9,9C12,17.03 7.97,13 3,13zM5.44,15.44c1.9,0.71 3.42,2.22 4.12,4.12C7.66,18.85 6.15,17.34 5.44,15.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.42,4.42c-0.19,0.4 -0.3,0.84 -0.3,1.29c0,1.73 1.41,3.14 3.15,3.14c0.15,0 0.29,-0.01 0.43,-0.03C9.56,14.19 10.69,15 12,15c0.05,0 0.11,-0.01 0.16,-0.01l1.64,1.64C12.67,18.12 12,19.98 12,22c2.02,0 3.88,-0.67 5.38,-1.8l2.4,2.4l1.41,-1.41L2.81,2.81zM14.44,19.56c0.2,-0.54 0.47,-1.04 0.79,-1.5l0.71,0.71l0,0C15.48,19.09 14.98,19.36 14.44,19.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mail.xml b/compose/material/material/icons/generator/raw-icons/twotone/mail.xml
deleted file mode 100644
index 4e0e70e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mail.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6H4l8,4.99zM4,8v10h16V8l-8,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,6l-8,4.99L4,6h16zM20,18L4,18L4,8l8,5 8,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mail_lock.xml b/compose/material/material/icons/generator/raw-icons/twotone/mail_lock.xml
deleted file mode 100644
index 1f57b60..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mail_lock.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6l-16,0l8,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13L4,8v10h12v-3.03c0,-2.42 1.72,-4.44 4,-4.9V8L12,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18V8l8,5l8,-5v2.08c0.32,-0.07 0.66,-0.1 1,-0.1h1V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h12v-2H4zM20,6l-8,5L4,6H20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,15v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h1h3c0.55,0 1,-0.45 1,-1v-3C24,15.45 23.55,15 23,15zM20,15v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v1H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mail_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/mail_outline.xml
deleted file mode 100644
index f108062..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mail_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,8l8,5 8,-5v10zM12,11L4,6h16l-8,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/male.xml b/compose/material/material/icons/generator/raw-icons/twotone/male.xml
deleted file mode 100644
index ac67026..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/male.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,11c1.93,0 3.5,1.57 3.5,3.5S11.43,18 9.5,18S6,16.43 6,14.5S7.57,11 9.5,11zM9.5,9C6.46,9 4,11.46 4,14.5S6.46,20 9.5,20s5.5,-2.46 5.5,-5.5c0,-1.16 -0.36,-2.23 -0.97,-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36 10.66,9 9.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/man.xml b/compose/material/material/icons/generator/raw-icons/twotone/man.xml
deleted file mode 100644
index c35877e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/man.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2v7h4v-7h2V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/man_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/man_2.xml
deleted file mode 100644
index 230adba..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/man_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2.5v7h3v-7H16V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/man_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/man_3.xml
deleted file mode 100644
index af7bb64..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/man_3.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h-4C8.9,7 8,7.9 8,9v6h2v7h4v-7h2V9C16,7.9 15.1,7 14,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1.751l2.249,2.249l-2.249,2.249l-2.249,-2.249z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/man_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/man_4.xml
deleted file mode 100644
index 3f70493..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/man_4.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.75,7h-3.5C9.04,7 8.11,8.07 8.27,9.26L10,22h4l1.73,-12.74C15.89,8.07 14.96,7 13.75,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/manage_accounts.xml b/compose/material/material/icons/generator/raw-icons/twotone/manage_accounts.xml
deleted file mode 100644
index 689bda9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/manage_accounts.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16c0,-0.34 0.03,-0.67 0.08,-0.99C10.05,15 10.03,15 10,15c-1.97,0 -3.9,0.53 -5.59,1.54C4.16,16.68 4,17 4,17.35V18h6.29C10.1,17.37 10,16.7 10,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18v-0.65c0,-0.34 0.16,-0.66 0.41,-0.81C6.1,15.53 8.03,15 10,15c0.03,0 0.05,0 0.08,0.01c0.1,-0.7 0.3,-1.37 0.59,-1.98C10.45,13.01 10.23,13 10,13c-2.42,0 -4.68,0.67 -6.61,1.82C2.51,15.34 2,16.32 2,17.35V20h9.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H4zM10,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4S6,5.79 6,8S7.79,12 10,12zM10,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2S8,9.1 8,8S8.9,6 10,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.83,12.63l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L18,11h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.03,0.21 -0.06,0.41 -0.06,0.63s0.03,0.42 0.06,0.63l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L16,21h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1c0.03,-0.21 0.06,-0.41 0.06,-0.63s-0.03,-0.42 -0.06,-0.63l1.14,-1L20.83,12.63zM17,18c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C19,17.1 18.1,18 17,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/manage_history.xml b/compose/material/material/icons/generator/raw-icons/twotone/manage_history.xml
deleted file mode 100644
index 8fd7758..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/manage_history.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.69,18.37l1.14,-1l-1,-1.73l-1.45,0.49c-0.32,-0.27 -0.68,-0.48 -1.08,-0.63L20,14h-2l-0.3,1.49c-0.4,0.15 -0.76,0.36 -1.08,0.63l-1.45,-0.49l-1,1.73l1.14,1c-0.08,0.5 -0.08,0.76 0,1.26l-1.14,1l1,1.73l1.45,-0.49c0.32,0.27 0.68,0.48 1.08,0.63L18,24h2l0.3,-1.49c0.4,-0.15 0.76,-0.36 1.08,-0.63l1.45,0.49l1,-1.73l-1.14,-1C22.77,19.13 22.77,18.87 22.69,18.37zM19,21c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S20.1,21 19,21zM11,7v5.41l2.36,2.36l1.04,-1.79L13,11.59V7H11zM21,12c0,-4.97 -4.03,-9 -9,-9C9.17,3 6.65,4.32 5,6.36V4H3v6h6V8H6.26C7.53,6.19 9.63,5 12,5c3.86,0 7,3.14 7,7H21zM10.86,18.91C7.87,18.42 5.51,16.01 5.08,13H3.06c0.5,4.5 4.31,8 8.94,8c0.02,0 0.05,0 0.07,0L10.86,18.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/manage_search.xml b/compose/material/material/icons/generator/raw-icons/twotone/manage_search.xml
deleted file mode 100644
index 432bc37..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/manage_search.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,12h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.17,13.75C18.69,12.96 19,12.02 19,11c0,-2.76 -2.24,-5 -5,-5s-5,2.24 -5,5s2.24,5 5,5c1.02,0 1.96,-0.31 2.76,-0.83L20.59,19L22,17.59L18.17,13.75zM14,14c-1.65,0 -3,-1.35 -3,-3c0,-1.65 1.35,-3 3,-3s3,1.35 3,3C17,12.65 15.65,14 14,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h10v2h-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/map.xml b/compose/material/material/icons/generator/raw-icons/twotone/map.xml
deleted file mode 100644
index bd96aeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/map.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18.31l3,-1.16L8,5.45L5,6.46zM16,18.55l3,-1.01L19,5.69l-3,1.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,3l-0.16,0.03L15,5.1 9,3 3.36,4.9c-0.21,0.07 -0.36,0.25 -0.36,0.48L3,20.5c0,0.28 0.22,0.5 0.5,0.5l0.16,-0.03L9,18.9l6,2.1 5.64,-1.9c0.21,-0.07 0.36,-0.25 0.36,-0.48L21,3.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM8,17.15l-3,1.16L5,6.46l3,-1.01v11.7zM14,18.53l-4,-1.4L10,5.47l4,1.4v11.66zM19,17.54l-3,1.01L16,6.86l3,-1.16v11.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/maps_home_work.xml b/compose/material/material/icons/generator/raw-icons/twotone/maps_home_work.xml
deleted file mode 100644
index f016276..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/maps_home_work.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11h2v2h-2v2h2v2h-2v2h4V5h-9v1.4l5,3.57V11zM17,7h2v2h-2V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3l0,1.97l0.96,0.69l1.04,0.74l0,-1.4l9,0l0,14l-4,0l0,2l6,0l0,-18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12l0,7l2,0l0,-5l6,0l0,5l2,0l0,-7l-5,-3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,11v10h6v-5h2v5h6V11L8,6L1,11zM13,19h-2v-5H5v5H3v-7l5,-3.5l5,3.5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/maps_ugc.xml b/compose/material/material/icons/generator/raw-icons/twotone/maps_ugc.xml
deleted file mode 100644
index 7ef2fd51..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/maps_ugc.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8c-1.18,0 -2.34,-0.26 -3.43,-0.78c-0.27,-0.13 -0.56,-0.19 -0.86,-0.19c-0.19,0 -0.38,0.03 -0.56,0.08l-3.2,0.94l0.94,-3.2c0.14,-0.47 0.1,-0.98 -0.11,-1.42C4.26,14.34 4,13.18 4,12C4,7.59 7.59,4 12,4"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8c-1.18,0 -2.34,-0.26 -3.43,-0.78c-0.27,-0.13 -0.56,-0.19 -0.86,-0.19c-0.19,0 -0.38,0.03 -0.56,0.08l-3.2,0.94l0.94,-3.2c0.14,-0.47 0.1,-0.98 -0.11,-1.42C4.26,14.34 4,13.18 4,12C4,7.59 7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,1.54 0.36,2.98 0.97,4.29L1,23l6.71,-1.97C9.02,21.64 10.46,22 12,22c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2l-3,0z"
-      android:fillType="evenOdd"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/margin.xml b/compose/material/material/icons/generator/raw-icons/twotone/margin.xml
deleted file mode 100644
index f439142..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/margin.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM15,7h2v2h-2V7zM15,11h2v2h-2V11zM11,7h2v2h-2V7zM11,11h2v2h-2V11zM7,7h2v2H7V7zM7,11h2v2H7V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mark_as_unread.xml b/compose/material/material/icons/generator/raw-icons/twotone/mark_as_unread.xml
deleted file mode 100644
index 067c4c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mark_as_unread.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,13.33l6.5,-3.33l-13,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l0,7l13,0l0,-7l-6.5,3.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.23,7h2.6c-0.06,-0.47 -0.36,-0.94 -0.79,-1.17L10.5,2L2.8,5.83C2.32,6.09 2,6.64 2,7.17V15c0,1.1 0.9,2 2,2V7.4L10.5,4L16.23,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8H7c-1.1,0 -2,0.9 -2,2v9c0,1.1 0.9,2 2,2h13c1.1,0 2,-0.9 2,-2v-9C22,8.9 21.1,8 20,8zM20,19H7v-7l6.5,3.33L20,12V19zM13.5,13.33L7,10h13L13.5,13.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mark_chat_read.xml b/compose/material/material/icons/generator/raw-icons/twotone/mark_chat_read.xml
deleted file mode 100644
index ec931dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mark_chat_read.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10c0.34,0 0.67,0.03 1,0.08V4H4v12h8.08C12.57,12.61 15.47,10 19,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,20l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L23,14.34L17.34,20zM12.08,16H4V4h16v6.08c0.71,0.1 1.38,0.31 2,0.6V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2,2.9 2,4v18l4,-4h6v0c0,-0.14 0.02,-0.27 0.03,-0.4C12.01,17.4 12,17.2 12,17C12,16.66 12.03,16.33 12.08,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mark_chat_unread.xml b/compose/material/material/icons/generator/raw-icons/twotone/mark_chat_unread.xml
deleted file mode 100644
index 6c403b1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mark_chat_unread.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16h16V7.9C19.68,7.96 19.34,8 19,8c-2.42,0 -4.44,-1.72 -4.9,-4H4V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7.9c0.74,-0.15 1.42,-0.48 2,-0.92V16c0,1.1 -0.9,2 -2,2H6l-4,4V4c0,-1.1 0.9,-2 2,-2h10.1C14.04,2.32 14,2.66 14,3s0.04,0.68 0.1,1H4v12h16V7.9zM16,3c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,1.34 16,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mark_email_read.xml b/compose/material/material/icons/generator/raw-icons/twotone/mark_email_read.xml
deleted file mode 100644
index fa72a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mark_email_read.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8v4.08C19.67,12.03 19.34,12 19,12c-3.53,0 -6.43,2.61 -6.92,6H4V8l8,5L20,8zM20,6H4l8,5L20,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.08,18H4V8l8,5l8,-5v4.08c0.71,0.1 1.38,0.31 2,0.6V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h8.08C12.03,19.67 12,19.34 12,19S12.03,18.33 12.08,18zM20,6l-8,5L4,6H20zM17.34,22l-3.54,-3.54l1.41,-1.41l2.12,2.12l4.24,-4.24L23,16.34L17.34,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mark_email_unread.xml b/compose/material/material/icons/generator/raw-icons/twotone/mark_email_unread.xml
deleted file mode 100644
index 73ff86b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mark_email_unread.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h10.1c0.22,1.07 0.79,2 1.57,2.71L12,11L4,6zM4,8v10h16V9.9c-0.32,0.07 -0.66,0.1 -1,0.1c-0.6,0 -1.16,-0.12 -1.7,-0.32L12,13L4,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9.9c0.74,-0.15 1.42,-0.48 2,-0.92V18c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10.1C14.04,4.32 14,4.66 14,5s0.04,0.68 0.1,1H4l8,5l3.67,-2.29c0.47,0.43 1.02,0.76 1.63,0.98L12,13L4,8v10h16V9.9zM16,5c0,1.66 1.34,3 3,3s3,-1.34 3,-3s-1.34,-3 -3,-3S16,3.34 16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mark_unread_chat_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/mark_unread_chat_alt.xml
deleted file mode 100644
index 8e89296..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mark_unread_chat_alt.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16H20V7.9C19.68,7.96 19.34,8 19,8s-0.68,-0.04 -1,-0.1V8H6V6h9.03c-0.44,-0.58 -0.77,-1.26 -0.92,-2H4V17.17zM6,9h12v2H6V9zM6,12h8v2H6V12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16H5.17L4,17.17V4h10.1c-0.18,-0.89 -0.08,-1.61 0,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V6.97c-0.58,0.44 -1.26,0.77 -2,0.92V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9h12v2h-12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8h12V7.9c-1.21,-0.25 -2.25,-0.95 -2.97,-1.9H6V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/markunread.xml b/compose/material/material/icons/generator/raw-icons/twotone/markunread.xml
deleted file mode 100644
index e9b020d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/markunread.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6H4l8,5zM4,8v10h16V8l-8,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,6l-8,5 -8,-5h16zM20,18L4,18L4,8l8,5 8,-5v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/markunread_mailbox.xml b/compose/material/material/icons/generator/raw-icons/twotone/markunread_mailbox.xml
deleted file mode 100644
index 0045052..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/markunread_mailbox.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12H6V8H4v12h16V8H10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/masks.xml b/compose/material/material/icons/generator/raw-icons/twotone/masks.xml
deleted file mode 100644
index 7b1847e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/masks.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.34,8.78C13.52,8.33 12.93,8 12,8c-0.93,0 -1.52,0.33 -2.34,0.77C8.95,9.16 8.12,9.62 7,9.85v1.65c0,2.76 2.24,5 5,5s5,-2.24 5,-5V9.85C15.88,9.62 15.05,9.16 14.34,8.78zM15,11.25c-0.75,-0.21 -1.26,-0.51 -1.71,-0.78C12.83,10.2 12.49,10 12,10c-0.49,0 -0.84,0.2 -1.31,0.48c-0.44,0.26 -0.96,0.56 -1.69,0.76V10.2c0.48,-0.17 0.84,-0.38 1.18,-0.58C10.72,9.3 11.23,9 12,9s1.27,0.3 1.8,0.62c0.34,0.2 0.71,0.42 1.2,0.59V11.25z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,6c-1.31,0 -2.37,1.01 -2.48,2.3C15.14,7.8 14.18,6.5 12,6.5c-2.19,0 -3.14,1.3 -5.02,1.8C6.87,7.02 5.81,6 4.5,6C3.12,6 2,7.12 2,8.5V9c0,6 3.6,7.81 6.52,7.98C9.53,17.62 10.72,18 12,18s2.47,-0.38 3.48,-1.02C18.4,16.81 22,15 22,9V8.5C22,7.12 20.88,6 19.5,6zM3.5,9V8.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v3c0,1.28 0.38,2.47 1.01,3.48C4.99,14.27 3.5,12.65 3.5,9zM7,11.5V9.85c1.12,-0.23 1.95,-0.69 2.66,-1.08C10.48,8.33 11.07,8 12,8c0.93,0 1.52,0.33 2.34,0.78c0.71,0.39 1.54,0.84 2.66,1.08v1.65c0,2.76 -2.24,5 -5,5S7,14.26 7,11.5zM20.5,9c0,3.65 -1.49,5.27 -3.01,5.98c0.64,-1.01 1.01,-2.2 1.01,-3.48v-3c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V9zM10.69,10.48c-0.44,0.26 -0.96,0.56 -1.69,0.76V10.2c0.48,-0.17 0.84,-0.38 1.18,-0.58C10.72,9.3 11.23,9 12,9s1.27,0.3 1.8,0.62c0.34,0.2 0.71,0.42 1.2,0.59v1.04c-0.75,-0.21 -1.26,-0.51 -1.71,-0.78C12.83,10.2 12.49,10 12,10C11.51,10 11.16,10.2 10.69,10.48z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/maximize.xml b/compose/material/material/icons/generator/raw-icons/twotone/maximize.xml
deleted file mode 100644
index be82c77..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/maximize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3h18v2H3V3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/media_bluetooth_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/media_bluetooth_off.xml
deleted file mode 100644
index 22e42b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/media_bluetooth_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,6.17V3h6v4h-4v1.17L9,6.17zM19.42,15L22,17.57l-0.8,0.8l-6.78,-6.78l0.8,-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15zM19.17,13.55l1.13,-1.13l-1.13,-1.13V13.55zM17.21,17.21l3.98,3.98l-1.41,1.41l-3.98,-3.98l-0.58,0.58l-0.85,-0.85l0.58,-0.58L11,13.83V17c0,2.21 -1.78,4 -3.99,4S3,19.21 3,17s1.79,-4 4.01,-4c0.73,0 1.41,0.21 2,0.55v-1.72L1.39,4.22L2.8,2.81l13.56,13.56L17.21,17.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/media_bluetooth_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/media_bluetooth_on.xml
deleted file mode 100644
index 9f09f8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/media_bluetooth_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,3l0.01,10.55c-0.6,-0.34 -1.28,-0.55 -2,-0.55C4.79,13 3,14.79 3,17s1.79,4 4.01,4S11,19.21 11,17V7h4V3H9zM21,12.43L17.57,9h-0.6v4.55l-2.75,-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75,-2.75V21h0.6L21,17.57L18.42,15L21,12.43zM18.17,11.3l1.13,1.13l-1.13,1.13V11.3zM19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mediation.xml b/compose/material/material/icons/generator/raw-icons/twotone/mediation.xml
deleted file mode 100644
index 857c2c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mediation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16l4,-4l-4,-4v3h-5.06c-0.34,-3.1 -2.26,-5.72 -4.94,-7.05C7.96,2.31 6.64,1 5,1C3.34,1 2,2.34 2,4s1.34,3 3,3c0.95,0 1.78,-0.45 2.33,-1.14C9.23,6.9 10.6,8.77 10.92,11h-3.1C7.4,9.84 6.3,9 5,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.3,0 2.4,-0.84 2.82,-2h3.1c-0.32,2.23 -1.69,4.1 -3.58,5.14C6.78,17.45 5.95,17 5,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.64,0 2.96,-1.31 2.99,-2.95c2.68,-1.33 4.6,-3.95 4.94,-7.05H18V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/medical_information.xml b/compose/material/material/icons/generator/raw-icons/twotone/medical_information.xml
deleted file mode 100644
index 069f525..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/medical_information.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9c0,1.1 -0.9,2 -2,2h-2c-1.1,0 -2,-0.9 -2,-2H4v11h16V9H15zM11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16zM17,17.5h-4V16h4V17.5zM19,14.5h-6V13h6V14.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,7h-5V4c0,-1.1 -0.9,-2 -2,-2h-2C9.9,2 9,2.9 9,4v3H4C2.9,7 2,7.9 2,9v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V9C22,7.9 21.1,7 20,7zM11,4h2v5h-2V4zM20,20H4V9h5c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2h5V20zM11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16zM13,14.5V13h6v1.5H13zM13,17.5V16h4v1.5H13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/medical_services.xml b/compose/material/material/icons/generator/raw-icons/twotone/medical_services.xml
deleted file mode 100644
index 4265bf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/medical_services.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V8H4V20zM8,13h3v-3h2v3h3v2h-3v3h-2v-3H8V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4V4c0,-1.1 -0.9,-2 -2,-2h-4C8.9,2 8,2.9 8,4v2H4C2.9,6 2,6.9 2,8v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM10,4h4v2h-4V4zM20,20H4V8h16V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18l2,0l0,-3l3,0l0,-2l-3,0l0,-3l-2,0l0,3l-3,0l0,2l3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/medication.xml b/compose/material/material/icons/generator/raw-icons/twotone/medication.xml
deleted file mode 100644
index f49d662..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/medication.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10V8H7V19zM8,12h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15H8V12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h12v2h-12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6H7C5.9,6 5,6.9 5,8v11c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V8C19,6.9 18.1,6 17,6zM17,19H7V8h10V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,17.5l3,0l0,-2.5l2.5,0l0,-3l-2.5,0l0,-2.5l-3,0l0,2.5l-2.5,0l0,3l2.5,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/meeting_room.xml b/compose/material/material/icons/generator/raw-icons/twotone/meeting_room.xml
deleted file mode 100644
index 4dc8bcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/meeting_room.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h6L13,5L7,5v14zM10,11h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19L19,4h-4L15,3L5,3v16L3,19v2h12L15,6h2v15h4v-2h-2zM13,19L7,19L7,5h6v14zM10,11h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/memory.xml b/compose/material/material/icons/generator/raw-icons/twotone/memory.xml
deleted file mode 100644
index 5ada638..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/memory.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17h10L17,7L7,7v10zM9,9h6v6L9,15L9,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11L21,9h-2L19,7c0,-1.1 -0.9,-2 -2,-2h-2L15,3h-2v2h-2L11,3L9,3v2L7,5c-1.1,0 -2,0.9 -2,2v2L3,9v2h2v2L3,13v2h2v2c0,1.1 0.9,2 2,2h2v2h2v-2h2v2h2v-2h2c1.1,0 2,-0.9 2,-2v-2h2v-2h-2v-2h2zM17,17L7,17L7,7h10v10zM15,9L9,9v6h6L15,9zM13,13h-2v-2h2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/menu.xml b/compose/material/material/icons/generator/raw-icons/twotone/menu.xml
deleted file mode 100644
index 4350ba9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h18v-2L3,16v2zM3,13h18v-2L3,11v2zM3,6v2h18L21,6L3,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/menu_book.xml b/compose/material/material/icons/generator/raw-icons/twotone/menu_book.xml
deleted file mode 100644
index 36e4512..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/menu_book.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c-1.11,-0.35 -2.33,-0.5 -3.5,-0.5c-1.95,0 -4.05,0.4 -5.5,1.5c-1.45,-1.1 -3.55,-1.5 -5.5,-1.5S2.45,4.9 1,6v14.65c0,0.25 0.25,0.5 0.5,0.5c0.1,0 0.15,-0.05 0.25,-0.05C3.1,20.45 5.05,20 6.5,20c1.95,0 4.05,0.4 5.5,1.5c1.35,-0.85 3.8,-1.5 5.5,-1.5c1.65,0 3.35,0.3 4.75,1.05c0.1,0.05 0.15,0.05 0.25,0.05c0.25,0 0.5,-0.25 0.5,-0.5V6C22.4,5.55 21.75,5.25 21,5zM3,18.5V7c1.1,-0.35 2.3,-0.5 3.5,-0.5c1.34,0 3.13,0.41 4.5,0.99v11.5C9.63,18.41 7.84,18 6.5,18C5.3,18 4.1,18.15 3,18.5zM21,18.5c-1.1,-0.35 -2.3,-0.5 -3.5,-0.5c-1.34,0 -3.13,0.41 -4.5,0.99V7.49c1.37,-0.59 3.16,-0.99 4.5,-0.99c1.2,0 2.4,0.15 3.5,0.5V18.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7.49C9.63,6.91 7.84,6.5 6.5,6.5C5.3,6.5 4.1,6.65 3,7v11.5C4.1,18.15 5.3,18 6.5,18c1.34,0 3.13,0.41 4.5,0.99V7.49z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,10.5c0.88,0 1.73,0.09 2.5,0.26V9.24C19.21,9.09 18.36,9 17.5,9c-1.28,0 -2.46,0.16 -3.5,0.47v1.57C14.99,10.69 16.18,10.5 17.5,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,13.16c0.88,0 1.73,0.09 2.5,0.26V11.9c-0.79,-0.15 -1.64,-0.24 -2.5,-0.24c-1.28,0 -2.46,0.16 -3.5,0.47v1.57C14.99,13.36 16.18,13.16 17.5,13.16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,15.83c0.88,0 1.73,0.09 2.5,0.26v-1.52c-0.79,-0.15 -1.64,-0.24 -2.5,-0.24c-1.28,0 -2.46,0.16 -3.5,0.47v1.57C14.99,16.02 16.18,15.83 17.5,15.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/menu_open.xml b/compose/material/material/icons/generator/raw-icons/twotone/menu_open.xml
deleted file mode 100644
index 9ada967..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/menu_open.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h13v-2H3V18zM3,13h10v-2H3V13zM3,6v2h13V6H3zM21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/merge.xml b/compose/material/material/icons/generator/raw-icons/twotone/merge.xml
deleted file mode 100644
index 07394ab..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/merge.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.41,21L5,19.59l4.83,-4.83c0.75,-0.75 1.17,-1.77 1.17,-2.83v-5.1L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83v5.1c0,1.06 0.42,2.08 1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/merge_type.xml b/compose/material/material/icons/generator/raw-icons/twotone/merge_type.xml
deleted file mode 100644
index 19fd887..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/merge_type.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.59,19L7,20.41l6,-6L13,8h3.5L12,3.5 7.5,8L11,8v5.59zM16.997,20.41l-3.408,-3.407 1.4,-1.407 3.41,3.408z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/message.xml b/compose/material/material/icons/generator/raw-icons/twotone/message.xml
deleted file mode 100644
index fc0bdf5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/message.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4v13.17L5.17,16L20,16L20,4zM18,14L6,14v-2h12v2zM18,11L6,11L6,9h12v2zM18,8L6,8L6,6h12v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14zM4,17.17L4,4h16v12L5.17,16L4,17.17zM6,12h12v2L6,14zM6,9h12v2L6,11zM6,6h12v2L6,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mic.xml b/compose/material/material/icons/generator/raw-icons/twotone/mic.xml
deleted file mode 100644
index 69920c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mic.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6C11,11.55 11.45,12 12,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6C9,12.66 10.34,14 12,14zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5H5c0,3.53 2.61,6.43 6,6.92V21h2v-3.08c3.39,-0.49 6,-3.39 6,-6.92H17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mic_external_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/mic_external_off.xml
deleted file mode 100644
index ff35884..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mic_external_off.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.21,10l0.6,6l0.38,0l0.54,-5.44l-0.56,-0.56z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5c0,-1.66 -1.34,-3 -3,-3C6.38,2 5.81,2.19 5.33,2.5l4.15,4.15C9.8,6.18 10,5.61 10,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v9.17l2,2V6c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v3.17l2,2V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21 1.79,4 4,4s4,-1.79 4,-4v-1.17l6.49,6.49l1.41,-1.41L2.1,2.1zM7.19,16H6.81l-0.6,-6h0.96l0.56,0.56L7.19,16zM12,18c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2h1l0.56,-5.61L12,14.83V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mic_external_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/mic_external_on.xml
deleted file mode 100644
index bad5e85..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mic_external_on.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.81,16l0.38,0l0.6,-6l-1.58,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.22,7C9.7,6.47 10,5.77 10,5c0,-1.66 -1.34,-3 -3,-3S4,3.34 4,5c0,0.77 0.3,1.47 0.78,2H9.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,2c-2.21,0 -4,1.79 -4,4v12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2h1l1,-10H4l1,10h1c0,2.21 1.79,4 4,4s4,-1.79 4,-4V6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v16h2V6C20,3.79 18.21,2 16,2zM7.19,16H6.81l-0.6,-6h1.58L7.19,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mic_none.xml b/compose/material/material/icons/generator/raw-icons/twotone/mic_none.xml
deleted file mode 100644
index 1c5322e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mic_none.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c0.55,0 1,-0.45 1,-1V5c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6c0,0.55 0.45,1 1,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c1.66,0 3,-1.34 3,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1L11,5zM17,11c0,2.76 -2.24,5 -5,5s-5,-2.24 -5,-5L5,11c0,3.53 2.61,6.43 6,6.92L11,21h2v-3.08c3.39,-0.49 6,-3.39 6,-6.92h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mic_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/mic_off.xml
deleted file mode 100644
index 42c6428..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mic_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3.7c-0.66,0 -1.2,0.54 -1.2,1.2v1.51l2.39,2.39 0.01,-3.9c0,-0.66 -0.54,-1.2 -1.2,-1.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-1.7c0,0.58 -0.1,1.13 -0.27,1.64l1.27,1.27c0.44,-0.88 0.7,-1.87 0.7,-2.91zM4.41,2.86L3,4.27l6,6V11c0,1.66 1.34,3 3,3 0.23,0 0.44,-0.03 0.65,-0.08l1.66,1.66c-0.71,0.33 -1.5,0.52 -2.31,0.52 -2.76,0 -5.3,-2.1 -5.3,-5.1H5c0,3.41 2.72,6.23 6,6.72V21h2v-3.28c0.91,-0.13 1.77,-0.45 2.55,-0.9l4.2,4.2 1.41,-1.41L4.41,2.86zM10.8,4.9c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2l-0.01,3.91L15,10.6V5c0,-1.66 -1.34,-3 -3,-3 -1.54,0 -2.79,1.16 -2.96,2.65l1.76,1.76V4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/microwave.xml b/compose/material/material/icons/generator/raw-icons/twotone/microwave.xml
deleted file mode 100644
index a46972d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/microwave.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h10V6H4V18zM7.75,8c0.8,0 1.39,0.39 1.81,0.67C9.87,8.88 10.07,9 10.25,9c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42c-0.36,0.4 -1.22,1.19 -2.37,1.19c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,10.12 7.94,10 7.75,10c-0.37,0 -0.8,0.41 -0.95,0.61L5.37,9.19C5.73,8.79 6.59,8 7.75,8zM7.75,13c0.8,0 1.39,0.39 1.81,0.67C9.87,13.88 10.07,14 10.25,14c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42c-0.36,0.4 -1.22,1.19 -2.37,1.19c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,15.12 7.94,15 7.75,15c-0.37,0 -0.8,0.41 -0.95,0.61l-1.42,-1.42C5.73,13.79 6.59,13 7.75,13zM16,6v12h4V6H16zM18,17c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C19,16.55 18.55,17 18,17zM18,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C19,12.55 18.55,13 18,13zM19,9h-2V7h2V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,6h10v12H4V6zM20,18h-4V6h4V18zM19,9h-2V7h2V9zM18,13L18,13c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C19,12.55 18.55,13 18,13zM18,17L18,17c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v0C19,16.55 18.55,17 18,17zM10.25,16c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,15.12 7.94,15 7.75,15c-0.37,0 -0.8,0.41 -0.95,0.61l-1.42,-1.42C5.73,13.79 6.59,13 7.75,13c0.8,0 1.39,0.39 1.81,0.67C9.87,13.88 10.07,14 10.25,14c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42C12.26,15.21 11.41,16 10.25,16zM10.25,11c-0.79,0 -1.37,-0.38 -1.79,-0.66C8.13,10.12 7.94,10 7.75,10c-0.37,0 -0.8,0.41 -0.95,0.61L5.37,9.19C5.73,8.79 6.59,8 7.75,8c0.8,0 1.39,0.39 1.81,0.67C9.87,8.88 10.07,9 10.25,9c0.37,0 0.8,-0.41 0.95,-0.61l1.42,1.42C12.26,10.21 11.41,11 10.25,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/military_tech.xml b/compose/material/material/icons/generator/raw-icons/twotone/military_tech.xml
deleted file mode 100644
index a8baf81..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/military_tech.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11.07l2,-1.2l0,-5.87l-2,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4l0,5.87l2,1.2l0,-7.07z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10.43V2H7v8.43c0,0.35 0.18,0.68 0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22l-0.78,-3.33l2.59,-2.24l-3.41,-0.29l-0.99,-2.34l4.18,-2.51C16.82,11.11 17,10.79 17,10.43zM11,11.07l-2,-1.2V4h2V11.07zM15,9.87l-2,1.2V4h2V9.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/minimize.xml b/compose/material/material/icons/generator/raw-icons/twotone/minimize.xml
deleted file mode 100644
index d564d78..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/minimize.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19h12v2H6v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/minor_crash.xml b/compose/material/material/icons/generator/raw-icons/twotone/minor_crash.xml
deleted file mode 100644
index 434f574..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/minor_crash.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15v5h14v-5H5zM7.5,19C6.67,19 6,18.33 6,17.5S6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19zM16.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,5L8,6.41l-3,-3L6.41,2L9.41,5zM19,3.41L17.59,2l-3,3L16,6.41L19,3.41zM13,0h-2v5h2V0zM21,15v8c0,0.55 -0.45,1 -1,1h-1c-0.55,0 -1,-0.45 -1,-1v-1H6v1c0,0.55 -0.45,1 -1,1H4c-0.55,0 -1,-0.45 -1,-1v-8l2.08,-5.99C5.29,8.42 5.84,8 6.5,8h11c0.66,0 1.22,0.42 1.42,1.01L21,15zM5.81,13h12.38l-1.04,-3H6.85L5.81,13zM19,15H5v5h14V15zM7.5,19C8.33,19 9,18.33 9,17.5S8.33,16 7.5,16S6,16.67 6,17.5S6.67,19 7.5,19zM16.5,19c0.83,0 1.5,-0.67 1.5,-1.5S17.33,16 16.5,16S15,16.67 15,17.5S15.67,19 16.5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/miscellaneous_services.xml b/compose/material/material/icons/generator/raw-icons/twotone/miscellaneous_services.xml
deleted file mode 100644
index 5bbe6bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/miscellaneous_services.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,13.71l1.4,-2.42c0.09,-0.15 0.05,-0.34 -0.08,-0.45l-1.48,-1.16c0.03,-0.22 0.05,-0.45 0.05,-0.68s-0.02,-0.46 -0.05,-0.69l1.48,-1.16c0.13,-0.11 0.17,-0.3 0.08,-0.45l-1.4,-2.42c-0.09,-0.15 -0.27,-0.21 -0.43,-0.15L12,4.83c-0.36,-0.28 -0.75,-0.51 -1.18,-0.69l-0.26,-1.85C10.53,2.13 10.38,2 10.21,2h-2.8C7.24,2 7.09,2.13 7.06,2.3L6.8,4.15C6.38,4.33 5.98,4.56 5.62,4.84l-1.74,-0.7c-0.16,-0.06 -0.34,0 -0.43,0.15l-1.4,2.42C1.96,6.86 2,7.05 2.13,7.16l1.48,1.16C3.58,8.54 3.56,8.77 3.56,9s0.02,0.46 0.05,0.69l-1.48,1.16C2,10.96 1.96,11.15 2.05,11.3l1.4,2.42c0.09,0.15 0.27,0.21 0.43,0.15l1.74,-0.7c0.36,0.28 0.75,0.51 1.18,0.69l0.26,1.85C7.09,15.87 7.24,16 7.41,16h2.8c0.17,0 0.32,-0.13 0.35,-0.3l0.26,-1.85c0.42,-0.18 0.82,-0.41 1.18,-0.69l1.74,0.7C13.9,13.92 14.08,13.86 14.17,13.71zM8.81,11c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C10.81,10.1 9.91,11 8.81,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.92,18.67l-0.96,-0.74c0.02,-0.14 0.04,-0.29 0.04,-0.44c0,-0.15 -0.01,-0.3 -0.04,-0.44l0.95,-0.74c0.08,-0.07 0.11,-0.19 0.05,-0.29l-0.9,-1.55c-0.05,-0.1 -0.17,-0.13 -0.28,-0.1l-1.11,0.45c-0.23,-0.18 -0.48,-0.33 -0.76,-0.44l-0.17,-1.18C18.73,13.08 18.63,13 18.53,13h-1.79c-0.11,0 -0.21,0.08 -0.22,0.19l-0.17,1.18c-0.27,0.12 -0.53,0.26 -0.76,0.44l-1.11,-0.45c-0.1,-0.04 -0.22,0 -0.28,0.1l-0.9,1.55c-0.05,0.1 -0.04,0.22 0.05,0.29l0.95,0.74c-0.02,0.14 -0.03,0.29 -0.03,0.44c0,0.15 0.01,0.3 0.03,0.44l-0.95,0.74c-0.08,0.07 -0.11,0.19 -0.05,0.29l0.9,1.55c0.05,0.1 0.17,0.13 0.28,0.1l1.11,-0.45c0.23,0.18 0.48,0.33 0.76,0.44l0.17,1.18c0.02,0.11 0.11,0.19 0.22,0.19h1.79c0.11,0 0.21,-0.08 0.22,-0.19l0.17,-1.18c0.27,-0.12 0.53,-0.26 0.75,-0.44l1.12,0.45c0.1,0.04 0.22,0 0.28,-0.1l0.9,-1.55C22.03,18.86 22,18.74 21.92,18.67zM17.63,18.83c-0.74,0 -1.35,-0.6 -1.35,-1.35s0.6,-1.35 1.35,-1.35s1.35,0.6 1.35,1.35S18.37,18.83 17.63,18.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/missed_video_call.xml b/compose/material/material/icons/generator/raw-icons/twotone/missed_video_call.xml
deleted file mode 100644
index 98ec75f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/missed_video_call.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13.5V8H5v8h10v-2.5zM11,15l-3.89,-3.89v2.55H6V9.22h4.44v1.11H7.89l3.11,3.1 2.99,-3.01 0.78,0.79L11,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4L17,7c0,-0.55 -0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1v10zM5,8h10v8L5,16L5,8zM11,13.43l-3.11,-3.1h2.55L10.44,9.22L6,9.22v4.44h1.11v-2.55L11,15l3.77,-3.79 -0.78,-0.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mms.xml b/compose/material/material/icons/generator/raw-icons/twotone/mms.xml
deleted file mode 100644
index bc0caa6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mms.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16H20V4H4v13.17zM8.5,9.5l2.5,3.01L14.5,8l4.5,6H5l3.5,-4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM14.5,8L11,12.51 8.5,9.5 5,14h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mobile_friendly.xml b/compose/material/material/icons/generator/raw-icons/twotone/mobile_friendly.xml
deleted file mode 100644
index 3e8758c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mobile_friendly.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,1H9c-1.1,0 -2,0.9 -2,2v3h2V4h10v16H9v-2H7v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2zM7.01,13.47l-2.55,-2.55 -1.27,1.27L7,16l7.19,-7.19 -1.27,-1.27 -5.91,5.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mobile_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/mobile_off.xml
deleted file mode 100644
index 1f7e256..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mobile_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,5v8.61l2,2V3c0,-1.1 -0.9,-2 -2,-2H7c-0.71,0 -1.33,0.37 -1.68,0.93L8.39,5H17zM1.49,3.76L5,7.27V21c0,1.1 0.9,2 2,2h10c1.02,0 1.85,-0.77 1.98,-1.75l1.72,1.72 1.41,-1.41L2.9,2.35 1.49,3.76zM7,9.27L16.73,19H7V9.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mobile_screen_share.xml b/compose/material/material/icons/generator/raw-icons/twotone/mobile_screen_share.xml
deleted file mode 100644
index 925b86f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mobile_screen_share.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10L17,5L7,5v14zM12.8,10.72v-1.7L16,12l-3.2,2.99v-1.75c-2.22,0 -3.69,0.68 -4.8,2.18 0.45,-2.14 1.69,-4.27 4.8,-4.7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1L7,1c-1.1,0 -1.99,0.85 -1.99,1.95v18C5.01,22.05 5.9,23 7,23h10c1.1,0 2,-0.95 2,-2.05L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14zM12.8,13.24v1.75L16,12l-3.2,-2.98v1.7c-3.11,0.43 -4.35,2.56 -4.8,4.7 1.11,-1.5 2.58,-2.18 4.8,-2.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mobiledata_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/mobiledata_off.xml
deleted file mode 100644
index a283e04..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mobiledata_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7l3,0l-4,-4l-4,4l3,0l0,4.17l2,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81l-1.42,1.41l6.61,6.61l0,6.18l-3,0.01l4,3.98l4,-4l-3,0.01l0,-4.18l9.78,9.78l1.41,-1.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode.xml
deleted file mode 100644
index 5a0f01e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.06,9.02L5,18.08V19h0.92l9.06,-9.06z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.37,3.29c-0.2,-0.2 -0.45,-0.29 -0.71,-0.29s-0.51,0.1 -0.7,0.29l-1.83,1.83 3.75,3.75 1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34zM17.81,9.94l-3.75,-3.75L3,17.25L3,21h3.75L17.81,9.94zM5,19v-0.92l9.06,-9.06 0.92,0.92L5.92,19L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode_comment.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode_comment.xml
deleted file mode 100644
index 169e937..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode_comment.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4L22,4c0,-1.1 -0.9,-2 -2,-2zM20,17.17L18.83,16L4,16L4,4h16v13.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v12h14.83L20,17.17V4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode_edit.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode_edit.xml
deleted file mode 100644
index abcf688..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode_edit.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18.08l0,0.92l0.92,0l9.06,-9.06l-0.92,-0.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25L3,21l3.75,0L17.81,9.94l-3.75,-3.75L3,17.25zM5.92,19L5,19l0,-0.92l9.06,-9.06l0.92,0.92L5.92,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83C21.1,6.65 21.1,6.02 20.71,5.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode_edit_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode_edit_outline.xml
deleted file mode 100644
index abcf688..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode_edit_outline.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,18.08l0,0.92l0.92,0l9.06,-9.06l-0.92,-0.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17.25L3,21l3.75,0L17.81,9.94l-3.75,-3.75L3,17.25zM5.92,19L5,19l0,-0.92l9.06,-9.06l0.92,0.92L5.92,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.71,5.63l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83C21.1,6.65 21.1,6.02 20.71,5.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode_fan_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode_fan_off.xml
deleted file mode 100644
index 8de35dff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode_fan_off.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,10C4.42,10 4,10.03 4,10.6c0,2 0.82,3.4 2,3.4c0.51,0 0.89,-0.12 2.69,-0.86c-0.07,-0.2 -0.12,-0.41 -0.15,-0.62c-1.48,-0.33 -2.49,-0.89 -3.39,-2.16C4.93,10.05 4.77,10 4.5,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,19.5c0,0.08 0.03,0.5 0.6,0.5c2,0 3.4,-0.82 3.4,-2c0,-0.38 -0.07,-0.69 -0.42,-1.59l-0.97,-0.97c-0.03,0.01 -0.06,0.02 -0.09,0.02c-0.33,1.48 -0.89,2.49 -2.16,3.39C10.05,19.07 10,19.23 10,19.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.65,5.15C13.95,4.93 14,4.77 14,4.5C14,4.42 13.97,4 13.4,4c-2,0 -3.4,0.82 -3.4,2c0,0.38 0.07,0.69 0.42,1.59l1.05,1.05l0.02,-0.1C11.82,7.06 12.37,6.04 13.65,5.15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.85,13.65c0.21,0.3 0.38,0.35 0.65,0.35c0.08,0 0.5,-0.03 0.5,-0.6c0,-2 -0.82,-3.4 -2,-3.4c-0.51,0 -0.89,0.12 -2.69,0.86c0.07,0.2 0.12,0.41 0.15,0.62C16.94,11.82 17.96,12.37 18.85,13.65z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6c0,-1.18 1.4,-2 3.4,-2C13.97,4 14,4.42 14,4.5c0,0.27 -0.05,0.43 -0.35,0.65c-1.27,0.9 -1.83,1.91 -2.16,3.39l-0.02,0.1l7.25,7.25C18.96,15.95 19.22,16 19.5,16c1.22,0 2.5,-0.95 2.5,-2.6C22,9.91 20.11,8 18,8c-1.06,0 -1.64,0.29 -3.91,1.19c-0.19,-0.14 -0.4,-0.27 -0.62,-0.37c0.25,-1.03 0.61,-1.53 1.33,-2.04C15.61,6.21 16,5.44 16,4.5C16,3.28 15.05,2 13.4,2c-3.08,0 -4.92,1.47 -5.32,3.26l2.33,2.33C10.07,6.69 10,6.38 10,6zM18,10c1.18,0 2,1.4 2,3.4c0,0.57 -0.42,0.6 -0.5,0.6c-0.27,0 -0.43,-0.05 -0.65,-0.35c-0.9,-1.27 -1.91,-1.83 -3.39,-2.16c-0.03,-0.22 -0.08,-0.42 -0.15,-0.62C17.11,10.12 17.49,10 18,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22l3.89,3.89C5.04,8.05 4.78,8 4.5,8C3.28,8 2,8.95 2,10.6C2,14.09 3.89,16 6,16c1.06,0 1.64,-0.29 3.91,-1.19c0.19,0.14 0.4,0.27 0.62,0.37c-0.25,1.03 -0.61,1.53 -1.33,2.04C8.39,17.79 8,18.56 8,19.5c0,1.22 0.95,2.5 2.6,2.5c3.08,0 4.92,-1.47 5.32,-3.26l3.86,3.86l1.41,-1.41L2.81,2.81L1.39,4.22zM12.52,15.46c0.03,0 0.06,-0.02 0.09,-0.02l0.97,0.97C13.93,17.31 14,17.62 14,18c0,1.18 -1.4,2 -3.4,2c-0.57,0 -0.6,-0.42 -0.6,-0.5c0,-0.27 0.05,-0.43 0.35,-0.65C11.63,17.96 12.18,16.94 12.52,15.46zM8.54,12.52c0.03,0.22 0.08,0.42 0.15,0.62C6.89,13.88 6.51,14 6,14c-1.18,0 -2,-1.4 -2,-3.4C4,10.03 4.42,10 4.5,10c0.27,0 0.43,0.05 0.65,0.35C6.04,11.63 7.06,12.18 8.54,12.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode_night.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode_night.xml
deleted file mode 100644
index ba8c213..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode_night.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,4C9.16,4 8.82,4.02 8.49,4.07C10.4,6.23 11.5,9.05 11.5,12s-1.1,5.77 -3.01,7.93C8.82,19.98 9.16,20 9.5,20c4.41,0 8,-3.59 8,-8S13.91,4 9.5,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,2c-1.82,0 -3.53,0.5 -5,1.35c2.99,1.73 5,4.95 5,8.65s-2.01,6.92 -5,8.65C5.97,21.5 7.68,22 9.5,22c5.52,0 10,-4.48 10,-10S15.02,2 9.5,2zM9.5,20c-0.34,0 -0.68,-0.02 -1.01,-0.07c1.91,-2.16 3.01,-4.98 3.01,-7.93s-1.1,-5.77 -3.01,-7.93C8.82,4.02 9.16,4 9.5,4c4.41,0 8,3.59 8,8S13.91,20 9.5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode_of_travel.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode_of_travel.xml
deleted file mode 100644
index 1cc03da..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode_of_travel.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.31,18.9c-0.96,1 -2.06,2.03 -3.31,3.1c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2c4,0 7.64,2.92 7.97,7.5l3.53,0L19,14l-4.5,-4.5l3.47,0C17.65,6.24 15.13,4 12,4c-3.35,0 -6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14c0.64,-0.59 1.23,-1.16 1.77,-1.71c-0.17,-0.34 -0.27,-0.72 -0.27,-1.12c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5S17.38,19 16,19C15.76,19 15.53,18.97 15.31,18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mode_standby.xml b/compose/material/material/icons/generator/raw-icons/twotone/mode_standby.xml
deleted file mode 100644
index ef7b898..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mode_standby.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10s10,-4.49 10,-10S17.51,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,10.34 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/model_training.xml b/compose/material/material/icons/generator/raw-icons/twotone/model_training.xml
deleted file mode 100644
index 8158a10..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/model_training.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,13.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5c0,-1.93 1.57,-3.5 3.5,-3.5h0C13.93,10 15.5,11.57 15.5,13.5zM13,19.5h-2V21h2V19.5zM19,13c0,1.68 -0.59,3.21 -1.58,4.42l1.42,1.42C20.18,17.27 21,15.23 21,13c0,-2.74 -1.23,-5.19 -3.16,-6.84l-1.42,1.42C17.99,8.86 19,10.82 19,13zM16,5l-4,-4v3c0,0 0,0 0,0c-4.97,0 -9,4.03 -9,9c0,2.23 0.82,4.27 2.16,5.84l1.42,-1.42C5.59,16.21 5,14.68 5,13c0,-3.86 3.14,-7 7,-7c0,0 0,0 0,0v3L16,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/monetization_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/monetization_on.xml
deleted file mode 100644
index 9319b53..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/monetization_on.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM13.23,17.33L13.23,19L10.9,19v-1.69c-1.5,-0.31 -2.77,-1.28 -2.86,-2.97h1.71c0.09,0.92 0.72,1.64 2.32,1.64 1.71,0 2.1,-0.86 2.1,-1.39 0,-0.73 -0.39,-1.41 -2.34,-1.87 -2.17,-0.53 -3.66,-1.42 -3.66,-3.21 0,-1.51 1.22,-2.48 2.72,-2.81L10.89,5h2.34v1.71c1.63,0.39 2.44,1.63 2.49,2.97h-1.71c-0.04,-0.97 -0.56,-1.64 -1.94,-1.64 -1.31,0 -2.1,0.59 -2.1,1.43 0,0.73 0.57,1.22 2.34,1.67 1.77,0.46 3.66,1.22 3.66,3.42 -0.01,1.6 -1.21,2.48 -2.74,2.77z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM12.31,11.14c-1.77,-0.45 -2.34,-0.94 -2.34,-1.67 0,-0.84 0.79,-1.43 2.1,-1.43 1.38,0 1.9,0.66 1.94,1.64h1.71c-0.05,-1.34 -0.87,-2.57 -2.49,-2.97L13.23,5L10.9,5v1.69c-1.51,0.32 -2.72,1.3 -2.72,2.81 0,1.79 1.49,2.69 3.66,3.21 1.95,0.46 2.34,1.15 2.34,1.87 0,0.53 -0.39,1.39 -2.1,1.39 -1.6,0 -2.23,-0.72 -2.32,-1.64L8.04,14.33c0.1,1.7 1.36,2.66 2.86,2.97L10.9,19h2.34v-1.67c1.52,-0.29 2.72,-1.16 2.73,-2.77 -0.01,-2.2 -1.9,-2.96 -3.66,-3.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/money.xml b/compose/material/material/icons/generator/raw-icons/twotone/money.xml
deleted file mode 100644
index 476136d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/money.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h1v4h-1zM16,10h1v4h-1zM4,18h16L20,6L4,6v12zM14,9c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v6c0,0.55 -0.45,1 -1,1h-3c-0.55,0 -1,-0.45 -1,-1L14,9zM8,9c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v6c0,0.55 -0.45,1 -1,1L9,16c-0.55,0 -1,-0.45 -1,-1L8,9zM5,8h2v8L5,16L5,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16h3c0.55,0 1,-0.45 1,-1L19,9c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM16,10h1v4h-1v-4zM9,16h3c0.55,0 1,-0.45 1,-1L13,9c0,-0.55 -0.45,-1 -1,-1L9,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1zM10,10h1v4h-1v-4zM5,8h2v8L5,16zM2,4v16h20L22,4L2,4zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/money_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/money_off.xml
deleted file mode 100644
index cf77830..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/money_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM5.47,3.92L4.06,5.33 7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c0.96,-0.18 1.83,-0.55 2.46,-1.12l2.22,2.22 1.41,-1.41L5.47,3.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/money_off_csred.xml b/compose/material/material/icons/generator/raw-icons/twotone/money_off_csred.xml
deleted file mode 100644
index cf77830..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/money_off_csred.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,6.9c1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-0.39,0.08 -0.75,0.21 -1.1,0.36l1.51,1.51c0.32,-0.08 0.69,-0.13 1.09,-0.13zM5.47,3.92L4.06,5.33 7.5,8.77c0,2.08 1.56,3.22 3.91,3.91l3.51,3.51c-0.34,0.49 -1.05,0.91 -2.42,0.91 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c0.96,-0.18 1.83,-0.55 2.46,-1.12l2.22,2.22 1.41,-1.41L5.47,3.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/monitor.xml b/compose/material/material/icons/generator/raw-icons/twotone/monitor.xml
deleted file mode 100644
index 9a757d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/monitor.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.9,3 2,3.9 2,5v11c0,1.1 0.9,2 2,2h3l-1,1v2h12v-2l-1,-1h3c1.1,0 2,-0.9 2,-2V5C22,3.9 21.1,3 20,3zM20,16H4V5h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5h16v11h-16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/monitor_heart.xml b/compose/material/material/icons/generator/raw-icons/twotone/monitor_heart.xml
deleted file mode 100644
index da8a3dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/monitor_heart.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.11,12.45L14,10.24l-3.11,6.21C10.72,16.79 10.38,17 10,17s-0.72,-0.21 -0.89,-0.55L7.38,13H2v2h2v3h16v-3h2v-2h-6C15.62,13 15.28,12.79 15.11,12.45z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6H4v3H2v2h6c0.38,0 0.72,0.21 0.89,0.55L10,13.76l3.11,-6.21c0.34,-0.68 1.45,-0.68 1.79,0L16.62,11H22V9h-2V6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v3h2V6h16v3h2V6C22,4.9 21.1,4 20,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18H4v-3H2v3c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-3h-2V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.89,7.55c-0.34,-0.68 -1.45,-0.68 -1.79,0L10,13.76l-1.11,-2.21C8.72,11.21 8.38,11 8,11H2v2h5.38l1.72,3.45C9.28,16.79 9.62,17 10,17s0.72,-0.21 0.89,-0.55L14,10.24l1.11,2.21C15.28,12.79 15.62,13 16,13h6v-2h-5.38L14.89,7.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/monitor_weight.xml b/compose/material/material/icons/generator/raw-icons/twotone/monitor_weight.xml
deleted file mode 100644
index 2a8e50e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/monitor_weight.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8.5h1v1h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8.5h1v1h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,8.5h1v1h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM12,6c1.66,0 3,1.34 3,3s-1.34,3 -3,3s-3,-1.34 -3,-3S10.34,6 12,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3S9,7.34 9,9S10.34,12 12,12zM13,8.5h1v1h-1V8.5zM11.5,8.5h1v1h-1V8.5zM10,8.5h1v1h-1V8.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/monochrome_photos.xml b/compose/material/material/icons/generator/raw-icons/twotone/monochrome_photos.xml
deleted file mode 100644
index 69f2c94..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/monochrome_photos.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18v-1.8c-1.8,0 -3.2,-1.4 -3.2,-3.2s1.4,-3.2 3.2,-3.2L12,8c-2.8,0 -5,2.2 -5,5s2.2,5 5,5zM17,13c0,2.8 -2.2,5 -5,5v1h8L20,7h-8v1c2.8,0 5,2.2 5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,21h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2h-3.2L15,3L9,3L7.2,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM12,8L12,7h8v12h-8v-1c-2.8,0 -5,-2.2 -5,-5s2.2,-5 5,-5zM15.2,13c0,1.8 -1.4,3.2 -3.2,3.2L12,18c2.8,0 5,-2.2 5,-5s-2.2,-5 -5,-5v1.8c1.8,0 3.2,1.4 3.2,3.2zM8.8,13c0,1.8 1.4,3.2 3.2,3.2L12,9.8c-1.8,0 -3.2,1.4 -3.2,3.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mood.xml b/compose/material/material/icons/generator/raw-icons/twotone/mood.xml
deleted file mode 100644
index c1cb592..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mood.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15.5,8c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,8c0.83,0 1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5 7.67,8 8.5,8zM12,17.5c-2.33,0 -4.31,-1.46 -5.11,-3.5h10.22c-0.8,2.04 -2.78,3.5 -5.11,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.5c2.33,0 4.31,-1.46 5.11,-3.5H6.89c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mood_bad.xml b/compose/material/material/icons/generator/raw-icons/twotone/mood_bad.xml
deleted file mode 100644
index e2af93e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mood_bad.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15.5,8c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,8c0.83,0 1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5 7.67,8 8.5,8zM6.89,17c0.8,-2.04 2.78,-3.5 5.11,-3.5s4.31,1.46 5.11,3.5L6.89,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,13.5c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/moped.xml b/compose/material/material/icons/generator/raw-icons/twotone/moped.xml
deleted file mode 100644
index 9b64ce0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/moped.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13v1h4v-3H6C4.9,11 4,11.9 4,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7c0,-1.1 -0.9,-2 -2,-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0 -4,1.79 -4,4v3h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h4.48L19,10.35V7zM7,17c-0.55,0 -1,-0.45 -1,-1h2C8,16.55 7.55,17 7,17zM8,14H4v-1c0,-1.1 0.9,-2 2,-2h2V14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,13 19,13zM19,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S19.55,17 19,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/more.xml b/compose/material/material/icons/generator/raw-icons/twotone/more.xml
deleted file mode 100644
index cfd650d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/more.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,5L2.4,12l4.67,7L22,19L22,5L7.06,5c0.01,0 0.01,0 0,0zM19,10.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM14,10.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM9,10.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0,12l5.41,8.11c0.36,0.53 0.97,0.89 1.66,0.89L22,21c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM22,19L7.07,19L2.4,12l4.66,-7L22,5v14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/more_horiz.xml b/compose/material/material/icons/generator/raw-icons/twotone/more_horiz.xml
deleted file mode 100644
index 6439bcc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/more_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/more_time.xml b/compose/material/material/icons/generator/raw-icons/twotone/more_time.xml
deleted file mode 100644
index 1cfb3c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/more_time.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8l0,6l4.7,2.9l0.8,-1.2l-4,-2.4l0,-5.3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,12c0.05,0.33 0.08,0.66 0.08,1c0,3.9 -3.1,7 -7,7s-7,-3.1 -7,-7c0,-3.9 3.1,-7 7,-7c0.7,0 1.37,0.1 2,0.29V4.23C12.36,4.08 11.69,4 11,4c-5,0 -9,4 -9,9s4,9 9,9s9,-4 9,-9c0,-0.34 -0.02,-0.67 -0.06,-1H17.92z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/more_vert.xml b/compose/material/material/icons/generator/raw-icons/twotone/more_vert.xml
deleted file mode 100644
index 34b93ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/more_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mosque.xml b/compose/material/material/icons/generator/raw-icons/twotone/mosque.xml
deleted file mode 100644
index 9d0abdd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mosque.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.91,9h4.18C15.14,9 16,8.14 16,7.09c0,-0.64 -0.32,-1.23 -0.85,-1.59L12,3.4L8.85,5.5C8.32,5.86 8,6.45 8,7.09C8,8.14 8.86,9 9.91,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,11H7v4H3v4h6v-2c0,-1.65 1.35,-3 3,-3c1.65,0 3,1.35 3,3v2h6v-4h-4V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4c0,0 -2,1.9 -2,3c0,0.74 0.4,1.38 1,1.72V13h-2v-2c0,-0.95 -0.66,-1.74 -1.55,-1.94C17.79,8.48 18,7.81 18,7.09c0,-1.31 -0.65,-2.53 -1.74,-3.25L12,1L7.74,3.84C6.65,4.56 6,5.78 6,7.09c0,0.72 0.21,1.39 0.55,1.96C5.66,9.26 5,10.05 5,11v2H3V8.72C3.6,8.38 4,7.74 4,7c0,-1.1 -2,-3 -2,-3S0,5.9 0,7c0,0.74 0.4,1.38 1,1.72V21h10v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h10V8.72c0.6,-0.35 1,-0.98 1,-1.72C24,5.9 22,4 22,4zM8.85,5.5L12,3.4l3.15,2.1C15.68,5.86 16,6.45 16,7.09C16,8.14 15.14,9 14.09,9H9.91C8.86,9 8,8.14 8,7.09C8,6.45 8.32,5.86 8.85,5.5zM21,19h-6v-2c0,-1.65 -1.35,-3 -3,-3c-1.65,0 -3,1.35 -3,3v2H3v-4h4v-4h10v4h4V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_auto.xml b/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_auto.xml
deleted file mode 100644
index 931e520..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_auto.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99zM11.29,7.5h1.43l3.01,8h-1.39l-0.72,-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_off.xml
deleted file mode 100644
index f1620d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07 2,9.96 2,12c0,5.52 4.48,10 10,10c2.04,0 3.93,-0.61 5.51,-1.66l2.27,2.27l1.41,-1.42L2.81,2.81zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-1.48 0.41,-2.86 1.12,-4.06l10.93,10.94C14.86,19.59 13.48,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8c0,1.48 -0.41,2.86 -1.12,4.05l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-5.52 -4.48,-10 -10,-10C9.96,2 8.07,2.61 6.49,3.66l1.45,1.45C9.14,4.41 10.52,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_on.xml
deleted file mode 100644
index 0e5a218c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_pause.xml b/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_pause.xml
deleted file mode 100644
index 822d4a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.88,7.88l1.54,1.54C4.15,10.23 4,11.1 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.9,0 -1.77,0.15 -2.58,0.42L7.89,2.89C9.15,2.32 10.54,2 12,2c5.52,0 10,4.48 10,10s-4.48,10 -10,10S2,17.52 2,12C2,10.53 2.32,9.14 2.88,7.88zM7,5.5C7,6.33 6.33,7 5.5,7S4,6.33 4,5.5S4.67,4 5.5,4S7,4.67 7,5.5zM11,15H9V9h2V15zM15,15h-2V9h2V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_paused.xml b/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_paused.xml
deleted file mode 100644
index bf0fc9b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/motion_photos_paused.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12c0,5.52 -4.48,10 -10,10S2,17.52 2,12c0,-1.19 0.22,-2.32 0.6,-3.38L4.48,9.3C4.17,10.14 4,11.05 4,12c0,4.41 3.59,8 8,8s8,-3.59 8,-8s-3.59,-8 -8,-8c-0.95,0 -1.85,0.17 -2.69,0.48L8.63,2.59C9.69,2.22 10.82,2 12,2C17.52,2 22,6.48 22,12zM5.5,4C4.67,4 4,4.67 4,5.5S4.67,7 5.5,7S7,6.33 7,5.5S6.33,4 5.5,4zM11,16V8H9v8H11zM15,16V8h-2v8H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/motorcycle.xml b/compose/material/material/icons/generator/raw-icons/twotone/motorcycle.xml
deleted file mode 100644
index a45f2c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/motorcycle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.7,12.31l0.25,0.69h0.77l2,-2H8.98c0.3,0.39 0.54,0.83 0.72,1.31z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.44,9.03L15.41,5L11,5v2h3.59l2,2L5,9c-2.8,0 -5,2.2 -5,5s2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h1.65l2.77,-2.77c-0.21,0.54 -0.32,1.14 -0.32,1.77 0,2.8 2.2,5 5,5s5,-2.2 5,-5c0,-2.65 -1.97,-4.77 -4.56,-4.97zM7.82,15C7.4,16.15 6.28,17 5,17c-1.63,0 -3,-1.37 -3,-3s1.37,-3 3,-3c1.28,0 2.4,0.85 2.82,2L5,13v2h2.82zM10.72,13h-0.77l-0.25,-0.69c-0.18,-0.48 -0.42,-0.92 -0.72,-1.31h3.74l-2,2zM19,17c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mouse.xml b/compose/material/material/icons/generator/raw-icons/twotone/mouse.xml
deleted file mode 100644
index 6477228..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mouse.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3.16L13,9h5c-0.04,-2.94 -2.19,-5.37 -5,-5.84zM11,3.16C8.19,3.63 6.04,6.06 6,9h5L11,3.16zM11,11L6,11v4c0,3.31 2.69,6 6,6s6,-2.69 6,-6v-4h-7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9c-0.04,-4.39 -3.6,-7.93 -8,-7.93S4.04,4.61 4,9v6c0,4.42 3.58,8 8,8s8,-3.58 8,-8L20,9zM13,3.16c2.81,0.47 4.96,2.9 5,5.84h-5L13,3.16zM11,3.16L11,9L6,9c0.04,-2.94 2.19,-5.37 5,-5.84zM18,15c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6v-4h12v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/move_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/move_down.xml
deleted file mode 100644
index 8864075..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/move_down.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6h5v3h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11c0,2.45 1.76,4.47 4.08,4.91l-1.49,-1.49L7,13l4,4.01L7,21l-1.41,-1.41l1.58,-1.58l0,-0.06C3.7,17.54 1,14.58 1,11c0,-3.87 3.13,-7 7,-7h3v2H8C5.24,6 3,8.24 3,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V4h-9v7H22zM20,9h-5V6h5V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/move_to_inbox.xml b/compose/material/material/icons/generator/raw-icons/twotone/move_to_inbox.xml
deleted file mode 100644
index ce8e119..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/move_to_inbox.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,18c-1.48,0 -2.75,-0.81 -3.45,-2H5v3h14v-3h-3.55c-0.69,1.19 -1.97,2 -3.44,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h-2.55L13.45,6h-2.9v3L8,9l4,4zM19,3L4.99,3C3.88,3 3,3.9 3,5v14c0,1.1 0.88,2 1.99,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-3h3.56c0.69,1.19 1.97,2 3.45,2s2.75,-0.81 3.45,-2L19,16v3zM19,14h-4.99c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2L5,14l-0.01,-9L19,5v9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/move_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/move_up.xml
deleted file mode 100644
index 89d06cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/move_up.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h5v3h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13c0,-2.45 1.76,-4.47 4.08,-4.91L5.59,9.59L7,11l4,-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46 1,9.42 1,13c0,3.87 3.13,7 7,7h3v-2H8C5.24,18 3,15.76 3,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v7h9v-7H13zM20,18h-5v-3h5V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4h9v7h-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/movie.xml b/compose/material/material/icons/generator/raw-icons/twotone/movie.xml
deleted file mode 100644
index 9b733ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/movie.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10H5.76L4,6.47V18h16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4h-4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4H8l2,4H7L5,4H4c-1.1,0 -1.99,0.9 -1.99,2zM4,6.47L5.76,10H20v8H4V6.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/movie_creation.xml b/compose/material/material/icons/generator/raw-icons/twotone/movie_creation.xml
deleted file mode 100644
index a5dc681..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/movie_creation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6.47V18h16v-8H5.76z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4L8,4l2,4L7,8L5,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4h-4zM20,18L4,18L4,6.47L5.76,10L20,10v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/movie_filter.xml b/compose/material/material/icons/generator/raw-icons/twotone/movie_filter.xml
deleted file mode 100644
index a018e41..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/movie_filter.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.63,11.37L18,12l-1.37,0.63L16,14l-0.63,-1.37L14,12l1.37,-0.63L16,10L5.77,10L4.01,6.47L4.01,18h16v-8L16,10l0.63,1.37zM10.94,14.94L10,17l-0.94,-2.06L7,14l2.06,-0.94L10,11l0.94,2.06L13,14l-2.06,0.94z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,11l-0.94,2.06L7,14l2.06,0.94L10,17l0.94,-2.06L13,14l-2.06,-0.94zM18.01,4l2,4h-3l-2,-4h-2l2,4h-3l-2,-4h-2l2,4h-3l-2,-4h-1c-1.1,0 -1.99,0.9 -1.99,2l-0.01,12c0,1.1 0.9,2 2,2h16c1.1,0 1.99,-0.9 1.99,-2L22,4h-3.99zM20.01,18h-16L4.01,6.47L5.77,10L16,10l-0.63,1.37L14,12l1.37,0.63L16,14l0.63,-1.37L18,12l-1.37,-0.63L16,10h4.01v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/moving.xml b/compose/material/material/icons/generator/raw-icons/twotone/moving.xml
deleted file mode 100644
index 933867f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/moving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.71,9.71L22,12V6h-6l2.29,2.29l-4.17,4.17c-0.39,0.39 -1.02,0.39 -1.41,0l-1.17,-1.17c-1.17,-1.17 -3.07,-1.17 -4.24,0L2,16.59L3.41,18l5.29,-5.29c0.39,-0.39 1.02,-0.39 1.41,0l1.17,1.17c1.17,1.17 3.07,1.17 4.24,0L19.71,9.71z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/mp.xml b/compose/material/material/icons/generator/raw-icons/twotone/mp.xml
deleted file mode 100644
index 96b9566..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/mp.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10.5h1.5v1.5h-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5l0,14l14,0l0,-14H5zM12.5,15H11v-4.5h-1v3H8.5v-3h-1V15H6v-5c0,-0.55 0.45,-1 1,-1h4.5c0.55,0 1,0.45 1,1V15zM18,12.5c0,0.55 -0.45,1 -1,1h-2V15h-1.5V9H17c0.55,0 1,0.45 1,1V12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,9h-3.5v6H15v-1.5h2c0.55,0 1,-0.45 1,-1V10C18,9.45 17.55,9 17,9zM16.5,12H15v-1.5h1.5V12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,9H7c-0.55,0 -1,0.45 -1,1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5C12.5,9.45 12.05,9 11.5,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5V19c0,1.1 0.9,2 2,2H19c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM5,19L5,5h14l0,14L5,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/multiline_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/multiline_chart.xml
deleted file mode 100644
index 96a6a38..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/multiline_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,6.92l-1.41,-1.41 -2.85,3.21C15.68,6.4 12.83,5 9.61,5 6.72,5 4.07,6.16 2,8l1.42,1.42C5.12,7.93 7.27,7 9.61,7c2.74,0 5.09,1.26 6.77,3.24l-2.88,3.24 -4,-4L2,16.99l1.5,1.5 6,-6.01 4,4 4.05,-4.55c0.75,1.35 1.25,2.9 1.44,4.55H21c-0.22,-2.3 -0.95,-4.39 -2.04,-6.14L22,6.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/multiple_stop.xml b/compose/material/material/icons/generator/raw-icons/twotone/multiple_stop.xml
deleted file mode 100644
index c43c84f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/multiple_stop.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4l4,4l-4,4V9h-4V7h4V4zM10,7C9.45,7 9,7.45 9,8s0.45,1 1,1s1,-0.45 1,-1S10.55,7 10,7zM6,7C5.45,7 5,7.45 5,8s0.45,1 1,1s1,-0.45 1,-1S6.55,7 6,7zM7,17h4v-2H7v-3l-4,4l4,4V17zM14,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C13,16.55 13.45,17 14,17zM18,17c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1C17,16.55 17.45,17 18,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/museum.xml b/compose/material/material/icons/generator/raw-icons/twotone/museum.xml
deleted file mode 100644
index bd5484a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/museum.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12V9H6V20zM8,11h2l2,3l2,-3h2v7h-2v-4l-2,3l-2,-3v4H8V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22zM18,20H6V9h12V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14l2,3l2,-3l0,4l2,0l0,-7l-2,0l-2,3l-2,-3l-2,0l0,7l2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/music_note.xml b/compose/material/material/icons/generator/raw-icons/twotone/music_note.xml
deleted file mode 100644
index 5f14586..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/music_note.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.01,17m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3l0.01,10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55C7.79,13 6,14.79 6,17s1.79,4 4.01,4S14,19.21 14,17L14,7h4L18,3h-6zM10.01,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/music_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/music_off.xml
deleted file mode 100644
index 8ee3f8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/music_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,17m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,7h4L18,3h-6v4.61l2,2zM12,10.44L4.41,2.86 3,4.27l9,9v0.28c-0.94,-0.54 -2.1,-0.75 -3.33,-0.32 -1.34,0.48 -2.37,1.67 -2.61,3.07 -0.46,2.74 1.86,5.08 4.59,4.65 1.96,-0.31 3.35,-2.11 3.35,-4.1v-1.58L19.73,21l1.41,-1.41L12,10.44zM10,19c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/music_video.xml b/compose/material/material/icons/generator/raw-icons/twotone/music_video.xml
deleted file mode 100644
index a70d204..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/music_video.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18L21,5L3,5v14zM11,12c0.35,0 0.69,0.07 1,0.18L12,6h5v2h-3v7.03c-0.02,1.64 -1.35,2.97 -3,2.97 -1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM11,18c1.65,0 2.98,-1.33 3,-2.97L14,8h3L17,6h-5v6.18c-0.31,-0.11 -0.65,-0.18 -1,-0.18 -1.66,0 -3,1.34 -3,3s1.34,3 3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/my_location.xml b/compose/material/material/icons/generator/raw-icons/twotone/my_location.xml
deleted file mode 100644
index f5d11f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/my_location.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3.06V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nat.xml b/compose/material/material/icons/generator/raw-icons/twotone/nat.xml
deleted file mode 100644
index 6132120..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nat.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.82,13H11v-2H6.82C6.4,9.84 5.3,9 4,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C5.3,15 6.4,14.16 6.82,13zM4,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C5,12.55 4.55,13 4,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,12l-4,-3v2h-4.05C14.45,5.95 10.19,2 5,2v2c4.42,0 8,3.58 8,8s-3.58,8 -8,8v2c5.19,0 9.45,-3.95 9.95,-9H19v2L23,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nature.xml b/compose/material/material/icons/generator/raw-icons/twotone/nature.xml
deleted file mode 100644
index 0bb9e32..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nature.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.17,4.17c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.25,-5 -5,-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.17,9.17c0,-3.87 -3.13,-7 -7,-7s-7,3.13 -7,7c0,3.47 2.52,6.34 5.83,6.89L11,20L5,20v2h14v-2h-6v-3.88h-0.03c3.49,-0.4 6.2,-3.36 6.2,-6.95zM12.17,14.17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.25,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nature_people.xml b/compose/material/material/icons/generator/raw-icons/twotone/nature_people.xml
deleted file mode 100644
index 6c5570f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nature_people.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.17,9.17m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.17,2.17c-3.87,0 -7,3.13 -7,7 0,3.47 2.52,6.34 5.83,6.89L14,20L6,20v-3h1v-4c0,-0.55 -0.45,-1 -1,-1L3,12c-0.55,0 -1,0.45 -1,1v4h1v5h16v-2h-3v-3.88c3.47,-0.41 6.17,-3.36 6.17,-6.95 0,-3.87 -3.13,-7 -7,-7zM15.17,14.17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/navigate_before.xml b/compose/material/material/icons/generator/raw-icons/twotone/navigate_before.xml
deleted file mode 100644
index 7e15c8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/navigate_before.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.2,6l-6,6 6,6 1.41,-1.41L11.03,12l4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/navigate_next.xml b/compose/material/material/icons/generator/raw-icons/twotone/navigate_next.xml
deleted file mode 100644
index 60b2471..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/navigate_next.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.02,18l6,-6 -6,-6 -1.41,1.41L13.19,12l-4.58,4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/navigation.xml b/compose/material/material/icons/generator/raw-icons/twotone/navigation.xml
deleted file mode 100644
index c9f39676..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/navigation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.72,17.7l3.47,-1.53 0.81,-0.36 0.81,0.36 3.47,1.53L12,7.27z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,20.29l0.71,0.71L12,18l6.79,3 0.71,-0.71L12,2 4.5,20.29zM12.81,16.17l-0.81,-0.36 -0.81,0.36 -3.47,1.53L12,7.27l4.28,10.43 -3.47,-1.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/near_me.xml b/compose/material/material/icons/generator/raw-icons/twotone/near_me.xml
deleted file mode 100644
index dafc6ee..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/near_me.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.39,12.61l0.32,0.83 1.32,3.42 4.24,-10.13 -10.13,4.24 3.42,1.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11.51l6.84,2.65L12.48,21h0.98L21,3 3,10.53v0.98zM17.27,6.73l-4.24,10.13 -1.32,-3.42 -0.32,-0.83 -0.82,-0.32 -3.43,-1.33 10.13,-4.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/near_me_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/near_me_disabled.xml
deleted file mode 100644
index 2bece4e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/near_me_disabled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.1,10.44l1.5,-4.05l-4.05,1.5L16.1,10.44zM14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.34L21,3l-3.34,9l-1.56,-1.56l1.5,-4.05l-4.05,1.5L12,6.34zM21.19,21.19l-5.07,-5.07L14.31,21H12.9l-2.83,-7.07L3,11.1V9.69l4.88,-1.81L2.81,2.81l1.41,-1.41l18.38,18.38L21.19,21.19zM14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nearby_error.xml b/compose/material/material/icons/generator/raw-icons/twotone/nearby_error.xml
deleted file mode 100644
index e36a8db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nearby_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.57l4.42,4.42L12,16.41l-4.42,-4.42L12,7.57zM12,19.19l-7.2,-7.2l7.2,-7.2l6,6V7.16l-4.58,-4.58c-0.78,-0.78 -2.05,-0.78 -2.83,0l-8.01,8c-0.78,0.78 -0.78,2.05 0,2.83l8.01,8c0.78,0.78 2.05,0.78 2.83,0L18,16.82v-3.63L12,19.19zM20,20h2v2h-2V20zM22,10h-2v8h2V10"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nearby_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/nearby_off.xml
deleted file mode 100644
index 6e800e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nearby_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,13.42L18.83,16l-1.81,-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58,-2.58c0.78,-0.78 2.05,-0.78 2.83,0l8,8C22.2,11.37 22.2,12.63 21.41,13.42zM21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78 -2.05,0.78 -2.83,0l-8,-8c-0.78,-0.78 -0.78,-2.05 0,-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19zM14.19,17.02l-1.39,-1.39l-0.8,0.8L7.58,12l0.8,-0.8l-1.4,-1.39L4.8,12l7.2,7.2L14.19,17.02zM16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nest_cam_wired_stand.xml b/compose/material/material/icons/generator/raw-icons/twotone/nest_cam_wired_stand.xml
deleted file mode 100644
index 4c02972..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nest_cam_wired_stand.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-1.65,0 -3,1.35 -3,3v1h6v-1C15,18.35 13.65,17 12,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3l-4.08,0.41C9.69,3.64 8,5.5 8,7.75s1.69,4.11 3.92,4.34l4.11,0.42L16,3L16,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1c-0.15,0 0.11,-0.02 -4.28,0.42C8.47,1.75 6,4.48 6,7.75s2.47,6 5.72,6.33l1.9,0.19l-0.56,0.85C12.71,15.04 12.36,15 12,15c-2.76,0 -5,2.24 -5,5v2c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-2c0,-1.67 -0.83,-3.15 -2.09,-4.06l0.97,-1.45c0.04,0 0.09,0.01 0.13,0.01c1.09,0 2,-0.89 2,-2V3C18,1.89 17.09,1 16,1zM15,20v1H9v-1c0,-1.65 1.35,-3 3,-3C13.65,17 15,18.35 15,20zM11.92,12.09C9.69,11.86 8,10 8,7.75s1.69,-4.11 3.92,-4.34L16,3h0l0.03,9.5L11.92,12.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_cell.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_cell.xml
deleted file mode 100644
index 3491dda..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_cell.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22zM20,20h-3V9.83l3,-3V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_check.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_check.xml
deleted file mode 100644
index af7300d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_check.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.9,5c-0.17,0 -0.32,0.09 -0.41,0.23l-0.07,0.15 -5.18,11.65c-0.16,0.29 -0.26,0.61 -0.26,0.96 0,1.11 0.9,2.01 2.01,2.01 0.96,0 1.77,-0.68 1.96,-1.59l0.01,-0.03L16.4,5.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM1,9l2,2c2.88,-2.88 6.79,-4.08 10.53,-3.62l1.19,-2.68C9.89,3.84 4.74,5.27 1,9zM21,11l2,-2c-1.64,-1.64 -3.55,-2.82 -5.59,-3.57l-0.53,2.82c1.5,0.62 2.9,1.53 4.12,2.75zM17,15l2,-2c-0.8,-0.8 -1.7,-1.42 -2.66,-1.89l-0.55,2.92c0.42,0.27 0.83,0.59 1.21,0.97zM5,13l2,2c1.13,-1.13 2.56,-1.79 4.03,-2l1.28,-2.88c-2.63,-0.08 -5.3,0.87 -7.31,2.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_locked.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_locked.xml
deleted file mode 100644
index 1285e37..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_locked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-0.5c0,-1.38 -1.12,-2.5 -2.5,-2.5S17,14.12 17,15.5v0.5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1v-4c0,-0.55 -0.45,-1 -1,-1zM21,16h-3v-0.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5v0.5zM18,5.83v5.43c0.47,-0.16 0.97,-0.26 1.5,-0.26 0.17,0 0.33,0.03 0.5,0.05L20,1L1,20h13v-2L5.83,18L18,5.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_ping.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_ping.xml
deleted file mode 100644
index a884b95..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_ping.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15,-5.15C18.91,10.95 19.2,11 19.5,11c1.38,0 2.5,-1.12 2.5,-2.5S20.88,6 19.5,6S17,7.12 17,8.5c0,0.35 0.07,0.67 0.2,0.97L12,14.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_wifi.xml
deleted file mode 100644
index d842dcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM12,8c-2.86,0 -5.5,0.94 -7.65,2.51L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-1.43,1.43C17.5,8.94 14.86,8 12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_1_bar.xml
deleted file mode 100644
index c6c6afd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_1_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.32,14.84C14.34,14.3 13.2,14 12,14c-1.2,0 -2.34,0.3 -3.32,0.84L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L15.32,14.84z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM15.32,14.84C14.34,14.3 13.2,14 12,14c-1.2,0 -2.34,0.3 -3.32,0.84L2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L15.32,14.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_2_bar.xml
deleted file mode 100644
index 774fadf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_2_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.78,13.38C15.4,12.5 13.76,12 12,12c-1.76,0 -3.4,0.5 -4.78,1.38l-4.3,-4.3C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L16.78,13.38z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM16.78,13.38C15.4,12.5 13.76,12 12,12c-1.76,0 -3.4,0.5 -4.78,1.38l-4.3,-4.3C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L16.78,13.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_3_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_3_bar.xml
deleted file mode 100644
index bf11d40..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/network_wifi_3_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-2.85,2.86C16.46,10.71 14.31,10 12,10c-2.31,0 -4.46,0.71 -6.23,1.93L2.92,9.07z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07l-2.85,2.86C16.46,10.71 14.31,10 12,10c-2.31,0 -4.46,0.71 -6.23,1.93L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/new_label.xml b/compose/material/material/icons/generator/raw-icons/twotone/new_label.xml
deleted file mode 100644
index 80672d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/new_label.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17l0,-4l-3,0l0,-3l-4,0l0,-3l10,0l3.55,5l-3.55,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12l-4.37,6.16C16.26,18.68 15.65,19 15,19h-3l0,-2h3l3.55,-5L15,7H5v3H3V7c0,-1.1 0.9,-2 2,-2h10c0.65,0 1.26,0.31 1.63,0.84L21,12zM10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/new_releases.xml b/compose/material/material/icons/generator/raw-icons/twotone/new_releases.xml
deleted file mode 100644
index ba78e80..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/new_releases.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.49,9.89l0.26,-2.79 -2.74,-0.62 -1.43,-2.41L12,5.18 9.42,4.07 7.99,6.48l-2.74,0.62 0.26,2.78L3.66,12l1.85,2.11 -0.26,2.8 2.74,0.62 1.43,2.41L12,18.82l2.58,1.11 1.43,-2.41 2.74,-0.62 -0.26,-2.79L20.34,12l-1.85,-2.11zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.9,5.54l-3.61,-0.82 -1.89,-3.18L12,3 8.6,1.54 6.71,4.72l-3.61,0.81 0.34,3.68L1,12l2.44,2.78 -0.34,3.69 3.61,0.82 1.89,3.18L12,21l3.4,1.46 1.89,-3.18 3.61,-0.82 -0.34,-3.68L23,12l-2.44,-2.78 0.34,-3.68zM18.75,16.9l-2.74,0.62 -1.43,2.41L12,18.82l-2.58,1.11 -1.43,-2.41 -2.74,-0.62 0.26,-2.8L3.66,12l1.85,-2.12 -0.26,-2.78 2.74,-0.61 1.43,-2.41L12,5.18l2.58,-1.11 1.43,2.41 2.74,0.62 -0.26,2.79L20.34,12l-1.85,2.11 0.26,2.79zM11,15h2v2h-2zM11,7h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/newspaper.xml b/compose/material/material/icons/generator/raw-icons/twotone/newspaper.xml
deleted file mode 100644
index ecca0e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/newspaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16c0,1.1 0.9,2 2,2l16,0c1.1,0 2,-0.9 2,-2V3zM11,19H4v-6h7V19zM20,19h-7v-2h7V19zM20,15h-7v-2h7V15zM20,11H4V8h16V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/next_plan.xml b/compose/material/material/icons/generator/raw-icons/twotone/next_plan.xml
deleted file mode 100644
index f8a8a3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/next_plan.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8s8,-3.58 8,-8S16.42,4 12,4zM13,14l2.26,-2.26C14.35,10.68 13.01,10 11.5,10c-2.37,0 -4.35,1.66 -4.86,3.88l-0.96,-0.32C6.32,10.95 8.68,9 11.5,9c1.78,0 3.37,0.79 4.47,2.03L18,9v5H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.97,11.03C14.87,9.79 13.28,9 11.5,9c-2.82,0 -5.18,1.95 -5.82,4.56l0.96,0.32C7.15,11.66 9.13,10 11.5,10c1.51,0 2.85,0.68 3.76,1.74L13,14h5V9L15.97,11.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/next_week.xml b/compose/material/material/icons/generator/raw-icons/twotone/next_week.xml
deleted file mode 100644
index 8c1f5af..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/next_week.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16L20,9L4,9v11zM10,11.5l1,-1 4,4 -4,4 -1,-1 3,-3 -3,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,18.5l4,-4 -4,-4 -1,1 3,3 -3,3zM20,7h-4L16,5c0,-0.55 -0.22,-1.05 -0.59,-1.41C15.05,3.22 14.55,3 14,3h-4c-1.1,0 -2,0.9 -2,2v2L4,7c-1.1,0 -2,0.9 -2,2v11c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,9c0,-1.1 -0.9,-2 -2,-2zM10,5h4v2h-4L10,5zM20,20L4,20L4,9h16v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nfc.xml b/compose/material/material/icons/generator/raw-icons/twotone/nfc.xml
deleted file mode 100644
index 63435db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nfc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20L4,4h16v16zM18,6h-5c-1.1,0 -2,0.9 -2,2v2.28c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72L13,8h3v8L8,16L8,8h2L10,6L6,6v12h12L18,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/night_shelter.xml b/compose/material/material/icons/generator/raw-icons/twotone/night_shelter.xml
deleted file mode 100644
index ef49b1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/night_shelter.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5l6,4.5v9H6v-9L12,5.5M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4C17,12.9 16.1,12 15,12zM9.75,12.5c-0.69,0 -1.25,0.56 -1.25,1.25C8.5,14.44 9.06,15 9.75,15S11,14.44 11,13.75C11,13.06 10.44,12.5 9.75,12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.5l6,4.5v9H6v-9L12,5.5M12,3L4,9v12h16V9L12,3L12,3zM15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4C17,12.9 16.1,12 15,12zM9.75,12.5c-0.69,0 -1.25,0.56 -1.25,1.25C8.5,14.44 9.06,15 9.75,15S11,14.44 11,13.75C11,13.06 10.44,12.5 9.75,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nightlife.xml b/compose/material/material/icons/generator/raw-icons/twotone/nightlife.xml
deleted file mode 100644
index 0b2ba69..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nightlife.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5zM10.1,9l1.4,-2H4.49l1.4,2H10.1zM17,5h5v3h-3v9l0,0c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3c0.35,0 0.69,0.06 1,0.17V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nightlight.xml b/compose/material/material/icons/generator/raw-icons/twotone/nightlight.xml
deleted file mode 100644
index a425b55..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nightlight.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12c0,-4.41 3.59,-8 8,-8c0.34,0 0.68,0.02 1.01,0.07C13.1,6.23 12,9.05 12,12s1.1,5.77 3.01,7.93C14.68,19.98 14.34,20 14,20C9.59,20 6,16.41 6,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-3.7 2.01,-6.92 5,-8.65C17.53,2.5 15.82,2 14,2C8.48,2 4,6.48 4,12s4.48,10 10,10c1.82,0 3.53,-0.5 5,-1.35C16.01,18.92 14,15.7 14,12zM15.01,19.93C14.68,19.98 14.34,20 14,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8c0.34,0 0.68,0.02 1.01,0.07C13.1,6.23 12,9.05 12,12S13.1,17.77 15.01,19.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nightlight_round.xml b/compose/material/material/icons/generator/raw-icons/twotone/nightlight_round.xml
deleted file mode 100644
index bf86043..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nightlight_round.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,22c1.05,0 2.05,-0.16 3,-0.46c-4.06,-1.27 -7,-5.06 -7,-9.54s2.94,-8.27 7,-9.54C17.55,2.16 16.55,2 15.5,2c-5.52,0 -10,4.48 -10,10S9.98,22 15.5,22L15.5,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nights_stay.xml b/compose/material/material/icons/generator/raw-icons/twotone/nights_stay.xml
deleted file mode 100644
index 6c50b8d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nights_stay.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,14.15C9.77,14.63 11,16.17 11,18c0,0.68 -0.19,1.31 -0.48,1.87c0.48,0.09 0.97,0.14 1.48,0.14c1.48,0 2.9,-0.41 4.13,-1.15c-2.62,-0.92 -5.23,-2.82 -6.8,-5.86C7.74,9.94 7.78,7.09 8.29,4.9c-2.57,1.33 -4.3,4.01 -4.3,7.1c0,0 0,0 0,0c0.01,0 0.01,0 0.02,0C5.66,12 7.18,12.83 8.1,14.15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.78,17.51c-2.47,0 -6.57,-1.33 -8.68,-5.43C8.77,7.57 10.6,3.6 11.63,2.01C6.27,2.2 1.98,6.59 1.98,12c0,0.14 0.02,0.28 0.02,0.42C2.61,12.16 3.28,12 3.98,12c0,0 0,0 0,0c0,-3.09 1.73,-5.77 4.3,-7.1C7.78,7.09 7.74,9.94 9.32,13c1.57,3.04 4.18,4.95 6.8,5.86c-1.23,0.74 -2.65,1.15 -4.13,1.15c-0.5,0 -1,-0.05 -1.48,-0.14c-0.37,0.7 -0.94,1.27 -1.64,1.64c0.98,0.32 2.03,0.5 3.11,0.5c3.5,0 6.58,-1.8 8.37,-4.52C20.18,17.5 19.98,17.51 19.78,17.51z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16l-0.18,0C6.4,14.84 5.3,14 4,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.62,0 2.49,0 3,0c1.1,0 2,-0.9 2,-2C9,16.9 8.1,16 7,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_accounts.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_accounts.xml
deleted file mode 100644
index 3dcf9353..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_accounts.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-0.52,0 -1,0.12 -1.44,0.32l4.62,4.62c0.2,-0.44 0.32,-0.92 0.32,-1.44C15.5,7.57 13.93,6 12,6zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-1.85 0.63,-3.55 1.69,-4.9l2.86,2.86c0.21,1.56 1.43,2.79 2.99,2.99l2.2,2.2C13.17,15.05 12.59,15 12,15c-2.32,0 -4.45,0.8 -6.14,2.12C4.7,15.73 4,13.95 4,12zM12,20c-1.74,0 -3.34,-0.56 -4.65,-1.5C8.66,17.56 10.26,17 12,17s3.34,0.56 4.65,1.5C15.34,19.44 13.74,20 12,20zM18.31,16.9L7.1,5.69C8.45,4.63 10.15,4 12,4c4.42,0 8,3.58 8,8C20,13.85 19.37,15.54 18.31,16.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.35,18.5C8.66,19.44 10.26,20 12,20s3.34,-0.56 4.65,-1.5C15.34,17.56 13.74,17 12,17S8.66,17.56 7.35,18.5zM15.18,10.94l-4.62,-4.62C11,6.12 11.48,6 12,6c1.93,0 3.5,1.57 3.5,3.5C15.5,10.02 15.38,10.5 15.18,10.94z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_adult_content.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_adult_content.xml
deleted file mode 100644
index 27a37a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_adult_content.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-1.85 0.63,-3.54 1.69,-4.9L7.59,9h2.83L7.1,5.69C8.46,4.63 10.15,4 12,4c4.41,0 8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.9,-1.9h-2.83l3.31,3.31C15.54,19.37 13.85,20 12,20C7.59,20 4,16.41 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,14l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,10l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2l1.5,0l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14l0.75,-1l0.75,1l1.5,0l-1.5,-2l1.5,-2l-1.5,0l-0.75,1l-0.75,-1l-1.5,0l1.5,2l-1.5,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_backpack.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_backpack.xml
deleted file mode 100644
index b958eeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_backpack.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,15.17V8c0,-1.1 -0.9,-2 -2,-2H8.83l6,6h1.67v1.67L18,15.17zM17.17,20l-6,-6H7.5v-2h1.67L6,8.83V20H17.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.98,4.15c0.01,0 0.01,-0.01 0.02,-0.01V2h3v2h4V2h3v2.14c1.72,0.45 3,2 3,3.86v9.17l-2,-2V8c0,-1.1 -0.9,-2 -2,-2H8.83L6.98,4.15zM14.83,12l1.67,1.67V12H14.83zM19.78,22.61l-0.85,-0.85C18.65,21.91 18.34,22 18,22H6c-1.1,0 -2,-0.9 -2,-2V8c0,-0.36 0.06,-0.69 0.15,-1.02L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM17.17,20l-6,-6H7.5v-2h1.67L6,8.83V20H17.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_cell.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_cell.xml
deleted file mode 100644
index 1070492..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_cell.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h10v-1H7V21zM7,3v1h10V3H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6v8.17l2,2V3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1C6.15,1 5.42,1.55 5.13,2.3L8.83,6H17zM7,3h10v1H7V3zM21.19,21.19L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1 0.9,2 2,2h10c0.85,0 1.58,-0.55 1.87,-1.3l0.91,0.91L21.19,21.19zM17,21H7v-1h10V21zM7,18V9.83L15.17,18H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_crash.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_crash.xml
deleted file mode 100644
index d81bee2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_crash.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15v5h14v-5H5zM7.5,19C6.67,19 6,18.33 6,17.5S6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19zM16.5,19c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,9.01C18.72,8.42 18.16,8 17.5,8h-11C5.84,8 5.29,8.42 5.08,9.01L3,15v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8L18.92,9.01zM6.85,10h10.29l1.04,3H5.81L6.85,10zM19,20H5v-5h14V20zM6,17.5C6,16.67 6.67,16 7.5,16S9,16.67 9,17.5S8.33,19 7.5,19S6,18.33 6,17.5zM15,17.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,19 16.5,19S15,18.33 15,17.5zM12,6.36L9.17,3.54l1.41,-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_drinks.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_drinks.xml
deleted file mode 100644
index 2f2233b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_drinks.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.77,9l-2.94,0l1.55,1.56z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19zM13,19v-3.17L16.17,19H13zM7.83,5l-2,-2H21v2l-6.2,6.97l-1.42,-1.42L14.77,9h-2.94l-2,-2h6.74l1.78,-2H7.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_encryption.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_encryption.xml
deleted file mode 100644
index e72e3fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_encryption.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h10.78l-10,-10L6,10zM12.44,10L18,15.56L18,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66l2,2H18v5.56l2,2V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5 -2.32,0 -4.26,1.59 -4.82,3.74L8.9,6.46V6zM4.41,4.81L3,6.22l2.04,2.04C4.42,8.6 4,9.25 4,10v10c0,1.1 0.9,2 2,2h12.78l1,1 1.41,-1.41L4.41,4.81zM6,20V10h0.78l10,10H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_encryption_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_encryption_gmailerrorred.xml
deleted file mode 100644
index e72e3fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_encryption_gmailerrorred.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h10.78l-10,-10L6,10zM12.44,10L18,15.56L18,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1s3.1,1.39 3.1,3.1v2h-4.66l2,2H18v5.56l2,2V10c0,-1.1 -0.9,-2 -2,-2h-1V6c0,-2.76 -2.24,-5 -5,-5 -2.32,0 -4.26,1.59 -4.82,3.74L8.9,6.46V6zM4.41,4.81L3,6.22l2.04,2.04C4.42,8.6 4,9.25 4,10v10c0,1.1 0.9,2 2,2h12.78l1,1 1.41,-1.41L4.41,4.81zM6,20V10h0.78l10,10H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_flash.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_flash.xml
deleted file mode 100644
index 55151ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_flash.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.42,16.24l2.55,2.55L15.96,20H4v-8.6h3.02l0.59,-0.65l0.15,-0.16l1.5,1.5C7.68,12.43 6.5,13.82 6.5,15.5c0,1.93 1.57,3.5 3.5,3.5C11.68,19 13.07,17.82 13.42,16.24zM16,13.17l0,-1.77h-1.77L16,13.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6zM16,11.4v1.77l2,2V11c0,-0.88 -0.72,-1.6 -1.6,-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16zM17.97,17.97L2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4 2,10.12 2,11v9.4C2,21.28 2.72,22 3.6,22h12.8c0.75,0 1.38,-0.52 1.55,-1.22l2.54,2.54l1.41,-1.41L17.97,17.97zM11.5,15.5c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5S9.17,14 10,14S11.5,14.67 11.5,15.5zM15.96,20H4v-8.6h2.14h0.88l0.59,-0.65l0.15,-0.16l1.5,1.5C7.68,12.43 6.5,13.82 6.5,15.5c0,1.93 1.57,3.5 3.5,3.5c1.68,0 3.07,-1.18 3.42,-2.76l2.55,2.55L15.96,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_food.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_food.xml
deleted file mode 100644
index 8c3b6b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_food.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.16,11c-1.43,0.07 -3.52,0.57 -4.54,2h6.55L8.16,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h15.01v0.98c0,0.56 -0.45,1.01 -1.01,1.01H2.01C1.45,22.99 1,22.54 1,21.98V21zM20.49,23.31L16,18.83V19H1v-2h13.17l-2,-2H1c0,-3.24 2.46,-5.17 5.38,-5.79l-5.7,-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31zM10.17,13l-2,-2c-1.42,0.06 -3.52,0.56 -4.55,2H10.17zM23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_luggage.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_luggage.xml
deleted file mode 100644
index d6de0bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_luggage.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.17,19l-3.42,-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1,-1V19H16.17zM17,8v6.17l-1,-1V9h-1.5v2.67l-1.75,-1.75V9h-0.92l-1,-1H17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13.17l-1.5,-1.5V9H16V13.17zM19.78,22.61l-1.85,-1.85C17.65,20.91 17.34,21 17,21c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1H9c0,0.55 -0.45,1 -1,1c-0.55,0 -1,-0.45 -1,-1c-1.1,0 -2,-0.9 -2,-2V8c0,-0.05 0.02,-0.1 0.02,-0.15L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.17,19l-3.42,-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1,-1V19H16.17zM12.75,9h-0.92l0.92,0.92V9zM19,8v8.17l-2,-2V8h-6.17L9.84,7.01L9,6.17V6V3c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v3h2C18.1,6 19,6.9 19,8zM10.5,6h3V3.5h-3V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_meals.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_meals.xml
deleted file mode 100644
index 8b15d15..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_meals.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14V6c0,-1.76 2.24,-4 5,-4v16.17l-2,-2V14H16zM20.49,23.31L10.02,12.85C9.69,12.94 9.36,13 9,13v9H7v-9c-2.21,0 -4,-1.79 -4,-4V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM6.17,9L5,7.83V9H6.17zM9,2H7v2.17l2,2V2zM13,9V2h-2v6.17l1.85,1.85C12.94,9.69 13,9.36 13,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_meeting_room.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_meeting_room.xml
deleted file mode 100644
index bf7e357..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_meeting_room.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5H8.12L12,8.88V6zM7,19h5v-4.46l-5,-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5v3.88l2,2V6h3v7.88l2,2V4h-5V3H6.12l2,2zM2.41,2.13L1,3.54l4,4V19H3v2h11v-4.46L20.46,23l1.41,-1.41L2.41,2.13zM12,19H7V9.54l5,5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_photography.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_photography.xml
deleted file mode 100644
index 8eec6d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_photography.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.94,8.12L8.9,6.07L9.88,5h4.24l1.83,2H20v10.17l-3.12,-3.12C16.96,13.71 17,13.36 17,13c0,-2.76 -2.24,-5 -5,-5C11.64,8 11.29,8.04 10.94,8.12zM12,18c-2.76,0 -5,-2.24 -5,-5c0,-0.91 0.25,-1.76 0.68,-2.49L4.17,7H4v12h12.17l-1.68,-1.68C13.76,17.75 12.91,18 12,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0 2,0.9 2,2v12c0,0.05 -0.01,0.1 -0.02,0.16L20,17.17V7h-4.05l-1.83,-2H9.88L8.9,6.07zM20.49,23.31L18.17,21H4c-1.1,0 -2,-0.9 -2,-2V7c0,-0.59 0.27,-1.12 0.68,-1.49l-2,-2L2.1,2.1L7,7l2.01,2.01l1.43,1.43l4.1,4.1l1.43,1.43L19,19l1.82,1.82l1.08,1.08L20.49,23.31zM9.19,12.02C9.08,12.33 9,12.65 9,13c0,1.65 1.35,3 3,3c0.35,0 0.67,-0.08 0.98,-0.19L9.19,12.02zM16.17,19l-1.68,-1.68C13.76,17.75 12.91,18 12,18c-2.76,0 -5,-2.24 -5,-5c0,-0.91 0.25,-1.76 0.68,-2.49L4.17,7H4v12H16.17zM14.81,11.98l2.08,2.08C16.96,13.71 17,13.36 17,13c0,-2.76 -2.24,-5 -5,-5c-0.36,0 -0.71,0.04 -1.06,0.12l2.08,2.08C13.85,10.5 14.5,11.15 14.81,11.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_sim.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_sim.xml
deleted file mode 100644
index 30f351f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_sim.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h9.23L7,9.77z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.79,3.74L2.38,5.15l2.74,2.74 -0.12,0.12V19c0,1.1 0.9,2 2,2h10c0.35,0 0.68,-0.1 0.97,-0.26l1.88,1.88 1.41,-1.41L3.79,3.74zM7,19V9.77L16.23,19H7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.84,5L9.36,6.47 17,14.11V5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.84,5H17v9.11l2,2V5c0,-1.1 -0.9,-2 -2,-2h-6.99L7.95,5.06l1.41,1.41L10.84,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_stroller.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_stroller.xml
deleted file mode 100644
index be5bcfc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_stroller.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,5.27C8.71,5.1 9.35,5 10,5c0.29,0 0.58,0.02 0.86,0.05L9.49,6.67L8.1,5.27zM15,12.17V8.66l-1.61,1.89L15,12.17zM12.17,15l-1.39,-1.39L9.6,15H12.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S8,18.9 8,20zM15,8.66v3.51l2,2v-7.9C17.58,5.59 17.97,5 18.65,5C19.42,5 20,5.66 20,6.48V7h2V6.48C22,4.56 20.52,3 18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66zM19.78,22.61l-1.91,-1.91C17.58,21.46 16.86,22 16,22c-1.1,0 -2,-0.9 -2,-2c0,-0.86 0.54,-1.58 1.3,-1.87L14.17,17H7.43c-0.85,0 -1.31,-1 -0.76,-1.65l2.69,-3.16L1.39,4.22l1.41,-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61zM12.17,15l-1.39,-1.39L9.6,15H12.17zM10,5c0.29,0 0.58,0.02 0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4 11.56,3 10,3C8.77,3 7.6,3.25 6.53,3.7L8.1,5.27C8.71,5.1 9.35,5 10,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/no_transfer.xml b/compose/material/material/icons/generator/raw-icons/twotone/no_transfer.xml
deleted file mode 100644
index 0ef64e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/no_transfer.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.83,12H18v3.17L14.83,12zM9.17,12l5,5H6.63l-0.29,-0.27C6.21,16.62 6,16.37 6,16v-4H9.17zM10,14.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S7,13.67 7,14.5C7,15.33 7.67,16 8.5,16S10,15.33 10,14.5zM7.82,4.99h9.83C17.11,4.46 15.69,4 12,4C9.6,4 8.17,4.2 7.31,4.48L7.82,4.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16S7,15.33 7,14.5S7.67,13 8.5,13zM7.31,4.48C8.17,4.2 9.6,4 12,4c3.69,0 5.11,0.46 5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67 20,16.35 20,16V6c0,-3.5 -3.58,-4 -8,-4C9.48,2 7.24,2.16 5.78,2.95L7.31,4.48zM19.78,22.61l-1.64,-1.64C18.09,20.98 18.05,21 18,21h-1c-0.55,0 -1,-0.45 -1,-1v-1H8v1c0,0.55 -0.45,1 -1,1H6c-0.55,0 -1,-0.45 -1,-1v-1.78C4.39,17.67 4,16.88 4,16V6.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM6,8.83V10h1.17L6,8.83zM14.17,17l-5,-5H6v4c0,0.37 0.21,0.62 0.34,0.73L6.63,17H8H14.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/noise_aware.xml b/compose/material/material/icons/generator/raw-icons/twotone/noise_aware.xml
deleted file mode 100644
index cc4e0b7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/noise_aware.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02c-0.25,-2.25 -2.16,-4 -4.47,-4C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18C14.65,18 16,16.65 16,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,6.58l1.58,1.26c0.35,-0.57 0.77,-1.1 1.24,-1.57L4.85,5.02C4.38,5.49 3.97,6.02 3.6,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.46,4.42L8.59,2.61c-0.63,0.23 -1.24,0.52 -1.8,0.87l0.87,1.81C8.22,4.93 8.82,4.64 9.46,4.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.49,9.26L2.53,8.81c-0.21,0.63 -0.36,1.28 -0.44,1.95l1.96,0.45C4.11,10.53 4.27,9.88 4.49,9.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.4,6.58c-0.36,-0.56 -0.78,-1.09 -1.25,-1.56l-1.58,1.26c0.48,0.47 0.89,0.99 1.24,1.57L20.4,6.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.04,12.79l-1.96,0.45c0.08,0.67 0.23,1.33 0.44,1.95l1.97,-0.45C4.27,14.12 4.11,13.47 4.04,12.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.21,3.48c-0.57,-0.35 -1.17,-0.64 -1.8,-0.87l-0.87,1.81c0.64,0.22 1.24,0.51 1.8,0.87L17.21,3.48z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4.07V2.05C12.67,2.02 12.34,2 12,2s-0.67,0.02 -1,0.05v2.02C11.33,4.03 11.66,4 12,4S12.67,4.03 13,4.07z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19.93v2.02c0.33,0.03 0.66,0.05 1,0.05s0.67,-0.02 1,-0.05v-2.02C12.67,19.97 12.34,20 12,20S11.33,19.97 11,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.51,14.74l1.97,0.45c0.21,-0.63 0.36,-1.28 0.44,-1.95l-1.96,-0.45C19.89,13.47 19.73,14.12 19.51,14.74z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.96,11.21l1.96,-0.45c-0.08,-0.67 -0.23,-1.33 -0.44,-1.95l-1.97,0.45C19.73,9.88 19.89,10.53 19.96,11.21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.58,17.73l1.58,1.26c0.47,-0.48 0.88,-1 1.25,-1.56l-1.58,-1.26C18.47,16.73 18.05,17.26 17.58,17.73z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.79,20.52c0.57,0.35 1.17,0.64 1.8,0.87l0.87,-1.81c-0.64,-0.22 -1.24,-0.51 -1.8,-0.87L6.79,20.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.54,19.58l0.87,1.81c0.63,-0.23 1.24,-0.52 1.8,-0.87l-0.87,-1.81C15.78,19.07 15.18,19.36 14.54,19.58z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.6,17.42c0.36,0.56 0.78,1.09 1.25,1.56l1.58,-1.26c-0.48,-0.47 -0.89,-0.99 -1.24,-1.57L3.6,17.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/noise_control_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/noise_control_off.xml
deleted file mode 100644
index 4d023ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/noise_control_off.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.44,0 2.79,0.38 3.95,1.05l1.45,-1.45C15.85,2.59 13.99,2 12,2S8.15,2.59 6.59,3.59l1.45,1.45C9.21,4.38 10.56,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,1.44 -0.38,2.79 -1.05,3.95l1.45,1.45C21.41,15.85 22,13.99 22,12s-0.59,-3.85 -1.59,-5.41l-1.45,1.45C19.62,9.21 20,10.56 20,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c-1.44,0 -2.79,-0.38 -3.95,-1.05l-1.45,1.45C8.15,21.41 10.01,22 12,22s3.85,-0.59 5.41,-1.59l-1.45,-1.45C14.79,19.62 13.44,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-1.44 0.38,-2.79 1.05,-3.95L3.59,6.59C2.59,8.15 2,10.01 2,12s0.59,3.85 1.59,5.41l1.45,-1.45C4.38,14.79 4,13.44 4,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6C9.02,6 7,8.02 7,10.5c0,1.22 0.49,2.41 1.35,3.27l1.36,1.36c0.17,0.17 0.31,0.44 0.44,0.82C10.56,17.17 11.71,18 13,18c1.65,0 3,-1.35 3,-3h-2c0,0.55 -0.45,1 -1,1c-0.43,0 -0.81,-0.27 -0.95,-0.68c-0.15,-0.44 -0.4,-1.08 -0.93,-1.61l-1.36,-1.36C9.28,11.87 9,11.19 9,10.5C9,9.12 10.12,8 11.5,8c1.21,0 2.22,0.86 2.45,2h2.02C15.72,7.75 13.81,6 11.5,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,12.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/nordic_walking.xml b/compose/material/material/icons/generator/raw-icons/twotone/nordic_walking.xml
deleted file mode 100644
index e8e9f6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/nordic_walking.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,23h-1.5v-9H19V23zM7.53,14H6l-2,9h1.53L7.53,14zM13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S12.4,5.5 13.5,5.5zM9.8,8.9L7,23h2.1l1.8,-8l2.1,2v6h2v-7.5l-2.1,-2l0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.56,-0.89 -1.68,-1.25 -2.65,-0.84L6,8.3V13h2V9.6L9.8,8.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/north.xml b/compose/material/material/icons/generator/raw-icons/twotone/north.xml
deleted file mode 100644
index 129add2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/north.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7,-7L5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/north_east.xml b/compose/material/material/icons/generator/raw-icons/twotone/north_east.xml
deleted file mode 100644
index 5893394..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/north_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/north_west.xml b/compose/material/material/icons/generator/raw-icons/twotone/north_west.xml
deleted file mode 100644
index 5e3792e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/north_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/not_accessible.xml b/compose/material/material/icons/generator/raw-icons/twotone/not_accessible.xml
deleted file mode 100644
index 70aa42e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/not_accessible.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,5.1 10,4zM19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43C13.4,7.5 13.2,7.38 13.01,7.28c-0.36,-0.19 -0.72,-0.3 -1.2,-0.26c-0.49,0.04 -0.91,0.27 -1.23,0.61L14,11.05C15.29,12.12 17.25,12.99 19,13zM10,20c-1.66,0 -3,-1.34 -3,-3c0,-1.31 0.84,-2.41 2,-2.83V12.1c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h-2.07C12.42,19.16 11.31,20 10,20zM2.81,2.81L1.39,4.22L10,12.83V15c0,1.1 0.9,2 2,2h2.17l5.61,5.61l1.41,-1.41L2.81,2.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/not_interested.xml b/compose/material/material/icons/generator/raw-icons/twotone/not_interested.xml
deleted file mode 100644
index f3b42a1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/not_interested.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2 2,6.48 2,12s4.48,10 10,10zM12,4c4.42,0 8,3.58 8,8 0,1.85 -0.63,3.55 -1.69,4.9L7.1,5.69C8.45,4.63 10.15,4 12,4zM5.69,7.1L16.9,18.31C15.55,19.37 13.85,20 12,20c-4.42,0 -8,-3.58 -8,-8 0,-1.85 0.63,-3.55 1.69,-4.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/not_listed_location.xml b/compose/material/material/icons/generator/raw-icons/twotone/not_listed_location.xml
deleted file mode 100644
index 6703cd6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/not_listed_location.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,10.2c0,2.57 -2.1,5.79 -6.16,9.51L12,20.01l-0.34,-0.31C7.6,15.99 5.5,12.77 5.5,10.2c0,-3.84 2.82,-6.7 6.5,-6.7S18.5,6.35 18.5,10.2z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,16c-0.27,0 -0.52,-0.1 -0.71,-0.29c-0.2,-0.2 -0.29,-0.43 -0.29,-0.71c-0.01,-0.55 0.43,-0.99 0.98,-1c0.01,0 0.01,0 0.02,0c0.28,0 0.51,0.1 0.71,0.29c0.18,0.19 0.28,0.43 0.28,0.7s-0.1,0.51 -0.29,0.71S12.28,16 12.01,16zM11.13,12.34c0,-0.45 0.1,-0.84 0.29,-1.16c0.19,-0.33 0.53,-0.7 1,-1.12c0.28,-0.25 0.48,-0.47 0.61,-0.66s0.19,-0.4 0.19,-0.64c0,-0.29 -0.11,-0.53 -0.32,-0.74c-0.21,-0.2 -0.5,-0.3 -0.85,-0.3c-0.37,0 -0.74,0.1 -0.96,0.3c-0.21,0.2 -0.4,0.45 -0.4,0.98H9c0,-1.01 0.46,-1.73 0.97,-2.21C10.53,6.28 11.25,6 12,6c0.59,0 1.11,0.12 1.57,0.35C14.45,6.78 15,7.68 15,8.66c0,0.49 -0.1,0.9 -0.31,1.25S14.21,10.62 13.8,11c-0.32,0.3 -0.53,0.56 -0.65,0.77s-0.18,0.49 -0.18,0.81V13h-1.85v-0.66H11.13zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14C16.05,15.64 18,12.54 18,10.2zM12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/not_started.xml b/compose/material/material/icons/generator/raw-icons/twotone/not_started.xml
deleted file mode 100644
index d4549be..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/not_started.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM11,16H9V8h2V16zM12,16V8l5,4L12,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM11,8H9v8h2V8zM17,12l-5,-4v8L17,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/note.xml b/compose/material/material/icons/generator/raw-icons/twotone/note.xml
deleted file mode 100644
index 6f393a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/note.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6H4v12.01h16V11h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4c-1.1,0 -2,0.9 -2,2v12.01c0,1.1 0.9,1.99 2,1.99h16c1.1,0 2,-0.9 2,-2v-8l-6,-6L4,4zM20,18.01L4,18.01L4,6h11v5h5v7.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/note_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/note_add.xml
deleted file mode 100644
index 29753bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/note_add.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4L6,4v16h12L18,9h-5L13,4zM16,14v2h-3v3h-2v-3L8,16v-2h3v-3h2v3h3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,11h-2v3L8,14v2h3v3h2v-3h3v-2h-3zM14,2L6,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,20L6,20L6,4h7v5h5v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/note_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/note_alt.xml
deleted file mode 100644
index 523af90..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/note_alt.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM14.73,7.15c0.2,-0.2 0.51,-0.2 0.71,0l1.41,1.41c0.2,0.2 0.2,0.51 0,0.71l-1.06,1.06l-2.12,-2.12L14.73,7.15zM7,14.86l5.96,-5.96l2.12,2.12L9.1,17H7V14.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-4.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM12,2.75c0.41,0 0.75,0.34 0.75,0.75S12.41,4.25 12,4.25s-0.75,-0.34 -0.75,-0.75S11.59,2.75 12,2.75zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.08,11.03l-2.12,-2.12l-5.96,5.95l0,2.14l2.1,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.85,9.27c0.2,-0.2 0.2,-0.51 0,-0.71l-1.41,-1.41c-0.2,-0.2 -0.51,-0.2 -0.71,0l-1.06,1.06l2.12,2.12L16.85,9.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notes.xml b/compose/material/material/icons/generator/raw-icons/twotone/notes.xml
deleted file mode 100644
index 69f886d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notes.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11.01L3,11v2h18zM3,16h12v2H3zM21,6H3v2.01L21,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notification_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/notification_add.xml
deleted file mode 100644
index d8c145b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notification_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14v3H8v-7c0,-2.21 1.79,-4 4,-4c0.85,0 1.64,0.26 2.28,0.72l1.43,-1.43c-0.64,-0.51 -1.39,-0.88 -2.21,-1.09V3.5C13.5,2.67 12.83,2 12,2s-1.5,0.67 -1.5,1.5v0.7C7.91,4.86 6,7.21 6,10v7H4v2h16v-2h-2v-3H16zM12,22c1.1,0 2,-0.9 2,-2h-4C10,21.1 10.9,22 12,22zM24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notification_important.xml b/compose/material/material/icons/generator/raw-icons/twotone/notification_important.xml
deleted file mode 100644
index ffb9d1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notification_important.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-2.76,0 -5,2.24 -5,5v7h10v-7c0,-2.76 -2.24,-5 -5,-5zM13,16h-2v-2h2v2zM13,12h-2L11,8h2v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,23c1.1,0 1.99,-0.89 1.99,-1.99h-3.98c0,1.1 0.89,1.99 1.99,1.99zM19,17v-6c0,-3.35 -2.36,-6.15 -5.5,-6.83L13.5,3c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v1.17C7.36,4.85 5,7.65 5,11v6l-2,2v1h18v-1l-2,-2zM17,18L7,18v-7c0,-2.76 2.24,-5 5,-5s5,2.24 5,5v7zM11,8h2v4h-2zM11,14h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notifications.xml b/compose/material/material/icons/generator/raw-icons/twotone/notifications.xml
deleted file mode 100644
index 3f4d8f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notifications.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c-2.49,0 -4,2.02 -4,4.5v6h8v-6c0,-2.48 -1.51,-4.5 -4,-4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notifications_active.xml b/compose/material/material/icons/generator/raw-icons/twotone/notifications_active.xml
deleted file mode 100644
index 8793541..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notifications_active.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c-2.49,0 -4,2.02 -4,4.5v6h8v-6c0,-2.48 -1.51,-4.5 -4,-4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM18,11c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2v-5zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6zM7.58,4.08L6.15,2.65C3.75,4.48 2.17,7.3 2.03,10.5h2c0.15,-2.65 1.51,-4.97 3.55,-6.42zM19.97,10.5h2c-0.15,-3.2 -1.73,-6.02 -4.12,-7.85l-1.42,1.43c2.02,1.45 3.39,3.77 3.54,6.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notifications_none.xml b/compose/material/material/icons/generator/raw-icons/twotone/notifications_none.xml
deleted file mode 100644
index c5a1b61..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notifications_none.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c-2.49,0 -4,2.02 -4,4.5v6h8v-6c0,-2.48 -1.51,-4.5 -4,-4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6zM12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notifications_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/notifications_off.xml
deleted file mode 100644
index 7551633..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notifications_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17h8v-0.24L8.34,9.1C8.12,9.68 8,10.32 8,11v6zM12,6.5c-0.19,0 -0.37,0.03 -0.55,0.06L16,11.1L16,11c0,-2.48 -1.51,-4.5 -4,-4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zM12,6.5c2.49,0 4,2.02 4,4.5v0.1l2,2L18,11c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68c-0.24,0.06 -0.47,0.15 -0.69,0.23l1.64,1.64c0.18,-0.02 0.36,-0.05 0.55,-0.05zM5.41,3.35L4,4.76l2.81,2.81C6.29,8.57 6,9.74 6,11v5l-2,2v1h14.24l1.74,1.74 1.41,-1.41L5.41,3.35zM16,17L8,17v-6c0,-0.68 0.12,-1.32 0.34,-1.9L16,16.76L16,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/notifications_paused.xml b/compose/material/material/icons/generator/raw-icons/twotone/notifications_paused.xml
deleted file mode 100644
index 242f71e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/notifications_paused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c-2.49,0 -4,2.02 -4,4.5v6h8v-6c0,-2.48 -1.51,-4.5 -4,-4.5zM14.5,9.8l-2.8,3.4h2.8L14.5,15h-5v-1.8l2.8,-3.4L9.5,9.8L9.5,8h5v1.8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,9.8h2.8l-2.8,3.4L9.5,15h5v-1.8h-2.8l2.8,-3.4L14.5,8h-5zM18,16v-5c0,-3.07 -1.63,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.64,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2zM16,17L8,17v-6c0,-2.48 1.51,-4.5 4,-4.5s4,2.02 4,4.5v6zM12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/numbers.xml b/compose/material/material/icons/generator/raw-icons/twotone/numbers.xml
deleted file mode 100644
index a9ada94..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/numbers.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,10L21,8h-4l1,-4h-2l-1,4h-4l1,-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1,-4h4l-1,4h2l1,-4h4l0.5,-2h-4l1,-4H20.5zM13.5,14h-4l1,-4h4L13.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/offline_bolt.xml b/compose/material/material/icons/generator/raw-icons/twotone/offline_bolt.xml
deleted file mode 100644
index 9ed8bb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/offline_bolt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.02C7.6,4.02 4.02,7.6 4.02,12S7.6,19.98 12,19.98s7.98,-3.58 7.98,-7.98S16.4,4.02 12,4.02zM11.39,19v-5.5H8.25l4.5,-8.5v5.5h3L11.39,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2.02c-5.51,0 -9.98,4.47 -9.98,9.98s4.47,9.98 9.98,9.98 9.98,-4.47 9.98,-9.98S17.51,2.02 12,2.02zM12,19.98c-4.4,0 -7.98,-3.58 -7.98,-7.98S7.6,4.02 12,4.02 19.98,7.6 19.98,12 16.4,19.98 12,19.98zM12.75,5l-4.5,8.5h3.14L11.39,19l4.36,-8.5h-3L12.75,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/offline_pin.xml b/compose/material/material/icons/generator/raw-icons/twotone/offline_pin.xml
deleted file mode 100644
index f1f4734..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/offline_pin.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM17,17L7,17v-2h10v2zM10.3,14L7,10.7l1.4,-1.4 1.9,1.9 5.3,-5.3L17,7.3 10.3,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM7,15h10v2L7,17zM10.3,11.2L8.4,9.3 7,10.7l3.3,3.3L17,7.3l-1.4,-1.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/offline_share.xml b/compose/material/material/icons/generator/raw-icons/twotone/offline_share.xml
deleted file mode 100644
index 3f259bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/offline_share.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5H4v16c0,1.1 0.9,2 2,2h10v-2H6V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1h-8C8.9,1 8,1.9 8,3v14c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V3C20,1.9 19.1,1 18,1zM18,17h-8v-1h8V17zM18,14h-8V6h8V14zM18,4h-8V3h8V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,10.25h2V12L17,9.5L14.5,7v1.75H12c-0.55,0 -1,0.45 -1,1V12h1.5V10.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/oil_barrel.xml b/compose/material/material/icons/generator/raw-icons/twotone/oil_barrel.xml
deleted file mode 100644
index 22c72fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/oil_barrel.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11c0.55,0 1,0.45 1,1s-0.45,1 -1,1v6h10v-6c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1V5H7V11zM12,8.5c2.47,2.86 3,3.24 3,4.55c0,1.63 -1.34,2.95 -3,2.95s-3,-1.32 -3,-2.95C9,11.75 9.52,11.38 12,8.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c1.66,0 3,-1.32 3,-2.95c0,-1.31 -0.53,-1.69 -3,-4.55c-2.48,2.88 -3,3.25 -3,4.55C9,14.68 10.34,16 12,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1V5h1c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h1v6H4c-0.55,0 -1,0.45 -1,1s0.45,1 1,1h16c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1h-1v-6H20zM17,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1v6H7v-6c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1V5h10V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/on_device_training.xml b/compose/material/material/icons/generator/raw-icons/twotone/on_device_training.xml
deleted file mode 100644
index 4f9317b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/on_device_training.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h12v1h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h12v1h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v1h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2c0,0.74 0.4,1.38 1,1.72v0.78h2v-0.78c0.6,-0.35 1,-0.98 1,-1.72C14,11.9 13.1,11 12,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1.01L6,1C4.9,1 4,1.9 4,3v18c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V3C20,1.9 19.1,1.01 18,1.01zM18,21H6v-1h12V21zM18,18H6V6h12V18zM18,4H6V3h12V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.01,15.95C16.63,15.12 17,14.11 17,13s-0.37,-2.12 -0.99,-2.95l-1.07,1.07c0.35,0.54 0.56,1.19 0.56,1.88s-0.21,1.34 -0.56,1.88L16.01,15.95z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.06,14.88C8.71,14.34 8.5,13.69 8.5,13c0,-1.93 1.57,-3.5 3.5,-3.5v1.25l2.25,-2l-2.25,-2V8c-2.76,0 -5,2.24 -5,5c0,1.11 0.37,2.12 0.99,2.95L9.06,14.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ondemand_video.xml b/compose/material/material/icons/generator/raw-icons/twotone/ondemand_video.xml
deleted file mode 100644
index 9c1fb70..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ondemand_video.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18V5H3v12zM9,7l7,4 -7,4V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7v8l7,-4zM21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/online_prediction.xml b/compose/material/material/icons/generator/raw-icons/twotone/online_prediction.xml
deleted file mode 100644
index a3e63ef..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/online_prediction.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,11.5c0,2 -2.5,3.5 -2.5,5h-2c0,-1.5 -2.5,-3 -2.5,-5C8.5,9.57 10.07,8 12,8S15.5,9.57 15.5,11.5zM13,17.5h-2V19h2V17.5zM22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.06,1.06C19.55,7.53 20.5,9.66 20.5,12c0,2.34 -0.95,4.47 -2.49,6.01l1.06,1.06C20.88,17.26 22,14.76 22,12zM3.5,12c0,-2.34 0.95,-4.47 2.49,-6.01L4.93,4.93C3.12,6.74 2,9.24 2,12c0,2.76 1.12,5.26 2.93,7.07l1.06,-1.06C4.45,16.47 3.5,14.34 3.5,12zM17.5,12c0,1.52 -0.62,2.89 -1.61,3.89l1.06,1.06C18.22,15.68 19,13.93 19,12c0,-1.93 -0.78,-3.68 -2.05,-4.95l-1.06,1.06C16.88,9.11 17.5,10.48 17.5,12zM7.05,16.95l1.06,-1.06c-1,-1 -1.61,-2.37 -1.61,-3.89c0,-1.52 0.62,-2.89 1.61,-3.89L7.05,7.05C5.78,8.32 5,10.07 5,12C5,13.93 5.78,15.68 7.05,16.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/opacity.xml b/compose/material/material/icons/generator/raw-icons/twotone/opacity.xml
deleted file mode 100644
index a0da386..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/opacity.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,9.65L12,5.27 7.76,9.6C6.62,10.73 6.01,12 6,14h12c-0.01,-2 -0.62,-3.23 -1.76,-4.35z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,8L12,2.35 6.34,8C4.78,9.56 4,11.64 4,13.64s0.78,4.11 2.34,5.67 3.61,2.35 5.66,2.35 4.1,-0.79 5.66,-2.35S20,15.64 20,13.64 19.22,9.56 17.66,8zM6,14c0.01,-2 0.62,-3.27 1.76,-4.4L12,5.27l4.24,4.38C17.38,10.77 17.99,12 18,14H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/open_in_browser.xml b/compose/material/material/icons/generator/raw-icons/twotone/open_in_browser.xml
deleted file mode 100644
index 40ceddc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/open_in_browser.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h4v-2L5,18L5,8h14v10h-4v2h4c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM12,10l-4,4h3v6h2v-6h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/open_in_full.xml b/compose/material/material/icons/generator/raw-icons/twotone/open_in_full.xml
deleted file mode 100644
index e1da4fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/open_in_full.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l0,-8l-8,0l3.29,3.29l-10,10l-3.29,-3.29l0,8l8,0l-3.29,-3.29l10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/open_in_new.xml b/compose/material/material/icons/generator/raw-icons/twotone/open_in_new.xml
deleted file mode 100644
index b2dd7f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/open_in_new.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h7V3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/open_in_new_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/open_in_new_off.xml
deleted file mode 100644
index 6f688d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/open_in_new_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.79,5.8L14,3h7v7l-2.79,-2.8l-4.09,4.09l-1.41,-1.41L16.79,5.8zM19,12v4.17l2,2V12H19zM19.78,22.61L18.17,21H5c-1.11,0 -2,-0.9 -2,-2V5.83L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.17,19l-4.88,-4.88L9.7,15.71L8.29,14.3l1.59,-1.59L5,7.83V19H16.17zM7.83,5H12V3H5.83L7.83,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/open_with.xml b/compose/material/material/icons/generator/raw-icons/twotone/open_with.xml
deleted file mode 100644
index 6f602a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/open_with.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9h4L14,6h3l-5,-5 -5,5h3v3zM9,10L6,10L6,7l-5,5 5,5v-3h3v-4zM23,12l-5,-5v3h-3v4h3v3l5,-5zM14,15h-4v3L7,18l5,5 5,-5h-3v-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/other_houses.xml b/compose/material/material/icons/generator/raw-icons/twotone/other_houses.xml
deleted file mode 100644
index 11b7beb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/other_houses.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.52L6,10.1V19h12v-8.9L12,5.52zM8,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C9,14.55 8.55,15 8,15zM12,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,14.55 12.55,15 12,15zM16,15c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,14.55 16.55,15 16,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3zM18,19H6v-8.9l6,-4.58l6,4.58V19zM9,14c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1S9,13.45 9,14zM12,13c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C11,13.45 11.45,13 12,13zM15,14c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S15,14.55 15,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/outbond.xml b/compose/material/material/icons/generator/raw-icons/twotone/outbond.xml
deleted file mode 100644
index f7de78d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/outbond.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/outbound.xml b/compose/material/material/icons/generator/raw-icons/twotone/outbound.xml
deleted file mode 100644
index 55baa0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/outbound.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2L12,2zM13.88,11.54l-4.96,4.96l-1.41,-1.41l4.96,-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/outbox.xml b/compose/material/material/icons/generator/raw-icons/twotone/outbox.xml
deleted file mode 100644
index 02c3d7b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/outbox.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18c-1.63,0 -3.06,-0.79 -3.98,-2H5v3h14v-3h-3.02C15.06,17.21 13.63,18 12,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,14l2,0l0,-3l3,0l-4,-4l-4,4l3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5v-3h3.02c0.91,1.21 2.35,2 3.98,2s3.06,-0.79 3.98,-2H19V19zM19,14h-4.18c-0.41,1.16 -1.51,2 -2.82,2s-2.4,-0.84 -2.82,-2H5V5h14V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/outdoor_grill.xml b/compose/material/material/icons/generator/raw-icons/twotone/outdoor_grill.xml
deleted file mode 100644
index 5e637b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/outdoor_grill.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,10H7.42c0.77,1.76 2.54,3 4.58,3S15.81,11.76 16.58,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,22c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3c-1.3,0 -2.4,0.84 -2.82,2H9.14l1.99,-3.06C11.42,14.98 11.71,15 12,15s0.58,-0.02 0.87,-0.06l1.02,1.57c0.42,-0.53 0.96,-0.95 1.6,-1.21l-0.6,-0.93C17.31,13.27 19,10.84 19,8H5c0,2.84 1.69,5.27 4.12,6.37l-3.95,6.08c-0.3,0.46 -0.17,1.08 0.29,1.38h0c0.46,0.3 1.08,0.17 1.38,-0.29l1,-1.55h6.34C14.6,21.16 15.7,22 17,22zM17,18c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C16,18.45 16.45,18 17,18zM7.42,10h9.16c-0.77,1.76 -2.54,3 -4.58,3S8.19,11.76 7.42,10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,19m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C9.1,3.54 8.84,3.27 9.06,2H8.07C7.86,3.11 8.1,4.05 8.96,4.96C9.18,5.2 9.75,5.63 9.41,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.89,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96c-0.42,-0.5 -0.68,-0.78 -0.46,-2.04h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C11.67,5.2 12.24,5.63 11.89,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.41,7h1c0.15,-1.15 0.23,-1.64 -0.89,-2.96C14.1,3.54 13.84,3.27 14.06,2h-0.99c-0.21,1.11 0.03,2.05 0.89,2.96C14.18,5.2 14.75,5.63 14.41,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/outlet.xml b/compose/material/material/icons/generator/raw-icons/twotone/outlet.xml
deleted file mode 100644
index 49f6cb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/outlet.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M10,11V8c0,-0.55 -0.45,-1 -1,-1h0C8.45,7 8,7.45 8,8v3c0,0.55 0.45,1 1,1h0C9.55,12 10,11.55 10,11zM16,11V8c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h0C15.55,12 16,11.55 16,11zM14,16c0,-1.1 -0.9,-2 -2,-2h0c-1.1,0 -2,0.9 -2,2v2h4V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2L12,2zM10,11V8c0,-0.55 -0.45,-1 -1,-1h0C8.45,7 8,7.45 8,8v3c0,0.55 0.45,1 1,1h0C9.55,12 10,11.55 10,11zM16,11V8c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h0C15.55,12 16,11.55 16,11zM14,16c0,-1.1 -0.9,-2 -2,-2h0c-1.1,0 -2,0.9 -2,2v2h4V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/outlined_flag.xml b/compose/material/material/icons/generator/raw-icons/twotone/outlined_flag.xml
deleted file mode 100644
index 85663ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/outlined_flag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,6l-1,-2L5,4v17h2v-7h5l1,2h7L20,6h-6zM18,14h-4l-1,-2L7,12L7,6h5l1,2h5v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/output.xml b/compose/material/material/icons/generator/raw-icons/twotone/output.xml
deleted file mode 100644
index 76f041a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/output.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17l5,-5l-5,-5l-1.41,1.41l2.58,2.59l-9.17,0l0,2l9.17,0l-2.58,2.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V5h14v2h2V5c0,-1.1 -0.89,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.11,0 2,-0.9 2,-2v-2h-2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/padding.xml b/compose/material/material/icons/generator/raw-icons/twotone/padding.xml
deleted file mode 100644
index b38ed19..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/padding.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM15,7h2v2h-2V7zM11,7h2v2h-2V7zM7,7h2v2H7V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5zM19,19H5V5h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pages.xml b/compose/material/material/icons/generator/raw-icons/twotone/pages.xml
deleted file mode 100644
index 17d8040..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pages.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7l4,1L11,5L5,5v6h3zM8,13L5,13v6h6v-3l-4,1zM17,17l-4,-1v3h6v-6h-3zM13,8l4,-1 -1,4h3L19,5h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM5,5h6v3L7,7l1,4L5,11L5,5zM11,19L5,19v-6h3l-1,4 4,-1v3zM9.37,14.63l0.91,-2.63 -0.91,-2.63 2.63,0.91 2.63,-0.91 -0.91,2.63 0.91,2.63 -2.63,-0.91 -2.63,0.91zM19,19h-6v-3l4,1 -1,-4h3v6zM19,11h-3l1,-4 -4,1L13,5h6v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pageview.xml b/compose/material/material/icons/generator/raw-icons/twotone/pageview.xml
deleted file mode 100644
index 355c7b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pageview.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16L20,6L4,6v12zM11.5,7c2.49,0 4.5,2.01 4.5,4.5 0,0.88 -0.26,1.69 -0.7,2.39l2.44,2.43 -1.42,1.42 -2.44,-2.44c-0.69,0.44 -1.51,0.7 -2.39,0.7C9.01,16 7,13.99 7,11.5S9.01,7 11.5,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.49,16c0.88,0 1.7,-0.26 2.39,-0.7l2.44,2.44 1.42,-1.42 -2.44,-2.43c0.44,-0.7 0.7,-1.51 0.7,-2.39C16,9.01 13.99,7 11.5,7S7,9.01 7,11.5 9.01,16 11.49,16zM11.5,9c1.38,0 2.5,1.12 2.5,2.5S12.88,14 11.5,14 9,12.88 9,11.5 10.12,9 11.5,9zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/paid.xml b/compose/material/material/icons/generator/raw-icons/twotone/paid.xml
deleted file mode 100644
index 15a045f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/paid.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM12.88,17.76V19h-1.75v-1.29c-0.74,-0.18 -2.39,-0.77 -3.02,-2.96l1.65,-0.67c0.06,0.22 0.58,2.09 2.4,2.09c0.93,0 1.98,-0.48 1.98,-1.61c0,-0.96 -0.7,-1.46 -2.28,-2.03c-1.1,-0.39 -3.35,-1.03 -3.35,-3.31c0,-0.1 0.01,-2.4 2.62,-2.96V5h1.75v1.24c1.84,0.32 2.51,1.79 2.66,2.23l-1.58,0.67c-0.11,-0.35 -0.59,-1.34 -1.9,-1.34c-0.7,0 -1.81,0.37 -1.81,1.39c0,0.95 0.86,1.31 2.64,1.9c2.4,0.83 3.01,2.05 3.01,3.45C15.9,17.17 13.4,17.67 12.88,17.76z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.89,11.1c-1.78,-0.59 -2.64,-0.96 -2.64,-1.9c0,-1.02 1.11,-1.39 1.81,-1.39c1.31,0 1.79,0.99 1.9,1.34l1.58,-0.67c-0.15,-0.44 -0.82,-1.91 -2.66,-2.23V5h-1.75v1.26c-2.6,0.56 -2.62,2.85 -2.62,2.96c0,2.27 2.25,2.91 3.35,3.31c1.58,0.56 2.28,1.07 2.28,2.03c0,1.13 -1.05,1.61 -1.98,1.61c-1.82,0 -2.34,-1.87 -2.4,-2.09L8.1,14.75c0.63,2.19 2.28,2.78 3.02,2.96V19h1.75v-1.24c0.52,-0.09 3.02,-0.59 3.02,-3.22C15.9,13.15 15.29,11.93 12.89,11.1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/palette.xml b/compose/material/material/icons/generator/raw-icons/twotone/palette.xml
deleted file mode 100644
index 9f0bfa2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/palette.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8c0.28,0 0.5,-0.22 0.5,-0.5c0,-0.16 -0.08,-0.28 -0.14,-0.35c-0.41,-0.46 -0.63,-1.05 -0.63,-1.65c0,-1.38 1.12,-2.5 2.5,-2.5H16c2.21,0 4,-1.79 4,-4C20,7.14 16.41,4 12,4zM6.5,13C5.67,13 5,12.33 5,11.5S5.67,10 6.5,10S8,10.67 8,11.5S7.33,13 6.5,13zM9.5,9C8.67,9 8,8.33 8,7.5S8.67,6 9.5,6S11,6.67 11,7.5S10.33,9 9.5,9zM14.5,9C13.67,9 13,8.33 13,7.5S13.67,6 14.5,6S16,6.67 16,7.5S15.33,9 14.5,9zM19,11.5c0,0.83 -0.67,1.5 -1.5,1.5S16,12.33 16,11.5s0.67,-1.5 1.5,-1.5S19,10.67 19,11.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.49,2 2,6.49 2,12s4.49,10 10,10c1.38,0 2.5,-1.12 2.5,-2.5c0,-0.61 -0.23,-1.21 -0.64,-1.67c-0.08,-0.09 -0.13,-0.21 -0.13,-0.33c0,-0.28 0.22,-0.5 0.5,-0.5H16c3.31,0 6,-2.69 6,-6C22,6.04 17.51,2 12,2zM16,15h-1.77c-1.38,0 -2.5,1.12 -2.5,2.5c0,0.61 0.22,1.19 0.63,1.65c0.06,0.07 0.14,0.19 0.14,0.35c0,0.28 -0.22,0.5 -0.5,0.5c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.14 8,7C20,13.21 18.21,15 16,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,7.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pan_tool.xml b/compose/material/material/icons/generator/raw-icons/twotone/pan_tool.xml
deleted file mode 100644
index 48945dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pan_tool.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,5.65c-0.28,0 -0.5,0.22 -0.5,0.5V12h-2V3.42c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5V12h-2V2.51c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.22 -0.5,0.5V12h-2V4.79c0,-0.28 -0.22,-0.5 -0.5,-0.5s-0.5,0.23 -0.5,0.5v12.87l-5.35,-2.83 -0.51,0.45 5.86,6.1c0.38,0.39 0.9,0.62 1.44,0.62H18c1.1,0 2,-0.9 2,-2V6.15c0,-0.28 -0.22,-0.5 -0.5,-0.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.65c-0.17,0 -0.34,0.02 -0.5,0.05v-0.28c0,-1.38 -1.12,-2.5 -2.5,-2.5 -0.33,0 -0.65,0.06 -0.94,0.18C15.11,0.44 14.35,0.01 13.5,0.01c-1.32,0 -2.41,1.03 -2.49,2.33 -0.16,-0.03 -0.33,-0.05 -0.51,-0.05 -1.38,0 -2.5,1.12 -2.5,2.5v9.55l-2.41,-1.28c-0.73,-0.39 -1.64,-0.28 -2.26,0.27l-2.07,1.83 7.3,7.61c0.75,0.78 1.8,1.23 2.89,1.23H18c2.21,0 4,-1.79 4,-4V6.15c0,-1.38 -1.12,-2.5 -2.5,-2.5zM20,20c0,1.1 -0.9,2 -2,2h-6.55c-0.54,0 -1.07,-0.22 -1.44,-0.62l-5.86,-6.11 0.51,-0.45L10,17.66V4.79c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.23 0.5,0.5V12h2V2.51c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V12h2V3.42c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V12h2V6.15c0,-0.28 0.22,-0.5 0.5,-0.5s0.5,0.22 0.5,0.5V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pan_tool_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/pan_tool_alt.xml
deleted file mode 100644
index 5c8fef8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pan_tool_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.08,19h-6.55l-3.7,-3.78L11,16.11V5.5C11,5.22 11.22,5 11.5,5S12,5.22 12,5.5v6.18h1.76L18,13.56L17.08,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,11.77l-3.8,-1.67C14.96,10.04 14.81,10 14.65,10H14V5.5C14,4.12 12.88,3 11.5,3S9,4.12 9,5.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,15.22l5.12,5.19C9.49,20.79 10,21 10.53,21h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,13.03 19.68,12.17 18.89,11.77zM17.08,19h-6.55l-3.7,-3.78L11,16.11V5.5C11,5.22 11.22,5 11.5,5S12,5.22 12,5.5v6.18h1.76L18,13.56L17.08,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama.xml
deleted file mode 100644
index cff74d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h18L21,6L3,6v12zM8.5,12.5l2.5,3.01L14.5,11l4.5,6L5,17l3.5,-4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM21,18L3,18L3,6h18v12zM14.5,11L11,15.51 8.5,12.5 5,17h14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_fish_eye.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_fish_eye.xml
deleted file mode 100644
index 619cf60..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_fish_eye.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_horizontal.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_horizontal.xml
deleted file mode 100644
index 1e9b2d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_horizontal.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6.54v10.91c2.6,-0.77 5.28,-1.16 8,-1.16s5.4,0.39 8,1.16V6.54c-2.6,0.78 -5.28,1.17 -8,1.16 -2.72,0 -5.4,-0.39 -8,-1.16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.43,4c-0.1,0 -0.2,0.02 -0.31,0.06C18.18,5.16 15.09,5.7 12,5.7s-6.18,-0.55 -9.12,-1.64C2.77,4.02 2.66,4 2.57,4c-0.34,0 -0.57,0.23 -0.57,0.63v14.75c0,0.39 0.23,0.62 0.57,0.62 0.1,0 0.2,-0.02 0.31,-0.06 2.94,-1.1 6.03,-1.64 9.12,-1.64s6.18,0.55 9.12,1.64c0.11,0.04 0.21,0.06 0.31,0.06 0.33,0 0.57,-0.23 0.57,-0.63V4.63c0,-0.4 -0.24,-0.63 -0.57,-0.63zM20,17.45c-2.6,-0.77 -5.28,-1.16 -8,-1.16s-5.4,0.39 -8,1.16V6.54c2.6,0.77 5.28,1.16 8,1.16 2.72,0.01 5.4,-0.38 8,-1.16v10.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_horizontal_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_horizontal_select.xml
deleted file mode 100644
index dae0b36..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_horizontal_select.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6.38v11.25c2.01,-0.59 4.61,-1.13 8,-1.13c3.38,0 5.99,0.54 8,1.13V6.37c-2.01,0.59 -4.62,1.13 -8,1.13C9.32,7.5 6.58,7.11 4,6.38z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.01,4C20.45,4 17.4,5.5 12,5.5c-5.31,0 -8.49,-1.49 -9.01,-1.49C2.46,4.01 2,4.45 2,5.02V19c0,0.57 0.46,1 0.99,1c0.57,0 3.55,-1.5 9.01,-1.5c5.42,0 8.44,1.5 9.01,1.5c0.53,0 0.99,-0.43 0.99,-1V5C22,4.43 21.54,4 21.01,4zM20,17.63c-2.01,-0.59 -4.62,-1.13 -8,-1.13c-3.39,0 -5.99,0.54 -8,1.13V6.38C6.58,7.11 9.32,7.5 12,7.5c3.38,0 5.99,-0.54 8,-1.13V17.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_photosphere.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_photosphere.xml
deleted file mode 100644
index bd406f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_photosphere.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9.91l0,4.18c0,0 0,0 0,0C5.19,15.3 8.47,16 12,16c3.53,0 6.81,-0.69 9,-1.91l0,-4.18c0,0 0,0 0,0C18.81,8.7 15.53,8 12,8C8.47,8 5.2,8.69 3,9.91z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,8.15c-0.29,-0.16 -0.61,-0.31 -0.93,-0.46C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68c-0.33,0.15 -0.64,0.3 -0.93,0.46C1.41,8.5 1,9.17 1,9.91v4.18c0,0.74 0.41,1.41 1.05,1.77c0.29,0.16 0.61,0.31 0.93,0.46C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.33,-0.15 0.64,-0.3 0.93,-0.46C22.59,15.5 23,14.83 23,14.09V9.91C23,9.17 22.59,8.5 21.95,8.15zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20zM21,9.91l0,4.18C18.81,15.31 15.53,16 12,16c-3.53,0 -6.81,-0.7 -9,-1.91c0,0 0,0 0,0l0,-4.18C5.2,8.69 8.47,8 12,8C15.53,8 18.81,8.7 21,9.91C21,9.91 21,9.91 21,9.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_photosphere_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_photosphere_select.xml
deleted file mode 100644
index 756f12d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_photosphere_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.95,8.15c-0.29,-0.16 -0.61,-0.31 -0.93,-0.46C19.4,4.33 15.98,2 12,2C8.02,2 4.6,4.33 2.99,7.68c-0.33,0.15 -0.64,0.3 -0.93,0.46C1.41,8.5 1,9.17 1,9.91v4.18c0,0.74 0.41,1.41 1.05,1.77c0.29,0.16 0.61,0.31 0.93,0.46C4.6,19.67 8.02,22 12,22c3.98,0 7.4,-2.33 9.01,-5.68c0.33,-0.15 0.64,-0.3 0.93,-0.46C22.59,15.5 23,14.83 23,14.09V9.91C23,9.17 22.59,8.5 21.95,8.15zM12,4c2.37,0 4.49,1.04 5.95,2.68C16.17,6.25 14.15,6 12,6C9.85,6 7.83,6.25 6.05,6.68C7.51,5.04 9.63,4 12,4zM12,20c-2.37,0 -4.49,-1.04 -5.95,-2.68C7.83,17.75 9.85,18 12,18s4.17,-0.25 5.95,-0.68C16.49,18.96 14.37,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_vertical.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_vertical.xml
deleted file mode 100644
index e565fa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_vertical.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,4c0.77,2.6 1.16,5.28 1.16,8 0,2.72 -0.39,5.4 -1.16,8h10.91c-0.77,-2.6 -1.16,-5.28 -1.16,-8 0,-2.72 0.39,-5.4 1.16,-8H6.54z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,21.12c-1.1,-2.94 -1.64,-6.03 -1.64,-9.12 0,-3.09 0.55,-6.18 1.64,-9.12 0.04,-0.11 0.06,-0.22 0.06,-0.31 0,-0.34 -0.23,-0.57 -0.63,-0.57H4.63c-0.4,0 -0.63,0.23 -0.63,0.57 0,0.1 0.02,0.2 0.06,0.31C5.16,5.82 5.71,8.91 5.71,12c0,3.09 -0.55,6.18 -1.64,9.12 -0.05,0.11 -0.07,0.22 -0.07,0.31 0,0.33 0.23,0.57 0.63,0.57h14.75c0.39,0 0.63,-0.24 0.63,-0.57 -0.01,-0.1 -0.03,-0.2 -0.07,-0.31zM17.45,20H6.54c0.77,-2.6 1.16,-5.28 1.16,-8 0,-2.72 -0.39,-5.4 -1.16,-8h10.91c-0.77,2.6 -1.16,5.28 -1.16,8 0,2.72 0.39,5.4 1.16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_vertical_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_vertical_select.xml
deleted file mode 100644
index a5cdcb2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_vertical_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,12c0,-3.89 0.84,-6.95 1.43,-8.69C20.15,2.67 19.67,2 18.98,2L5,2C4.32,2 3.84,2.66 4.05,3.31C4.74,5.36 5.5,8.1 5.5,12c0,3.87 -0.76,6.66 -1.45,8.69C3.84,21.34 4.32,22 5,22h14c0.68,0 1.17,-0.66 0.95,-1.31C19.27,18.66 18.5,15.86 18.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_wide_angle.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_wide_angle.xml
deleted file mode 100644
index bfef66a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_wide_angle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-2.45,0 -4.71,0.2 -7.29,0.64C4.24,8.42 4,10.22 4,12c0,1.78 0.24,3.58 0.71,5.36 2.58,0.44 4.84,0.64 7.29,0.64s4.71,-0.2 7.29,-0.64c0.47,-1.78 0.71,-3.58 0.71,-5.36 0,-1.78 -0.24,-3.58 -0.71,-5.36C16.71,6.2 14.45,6 12,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.13,5.78l-0.25,-0.89 -0.93,-0.16C17.22,4.24 14.73,4 12,4s-5.22,0.24 -7.95,0.72l-0.93,0.16 -0.25,0.9C2.29,7.85 2,9.93 2,12s0.29,4.15 0.87,6.22l0.25,0.89 0.93,0.16c2.73,0.49 5.22,0.73 7.95,0.73s5.22,-0.24 7.95,-0.72l0.93,-0.16 0.25,-0.89c0.58,-2.08 0.87,-4.16 0.87,-6.23s-0.29,-4.15 -0.87,-6.22zM19.29,17.36c-2.58,0.44 -4.84,0.64 -7.29,0.64s-4.71,-0.2 -7.29,-0.64C4.24,15.58 4,13.78 4,12c0,-1.78 0.24,-3.58 0.71,-5.36C7.29,6.2 9.55,6 12,6s4.71,0.2 7.29,0.64c0.47,1.78 0.71,3.58 0.71,5.36 0,1.78 -0.24,3.58 -0.71,5.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/panorama_wide_angle_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/panorama_wide_angle_select.xml
deleted file mode 100644
index fc89d55..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/panorama_wide_angle_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C8.03,4 5.15,4.63 3,5c-0.55,1.97 -1,3.92 -1,7c0,3.03 0.45,5.05 1,7c2.15,0.37 4.98,1 9,1c3.97,0 6.85,-0.63 9,-1c0.57,-2.02 1,-3.99 1,-7c0,-3.03 -0.45,-5.05 -1,-7C18.85,4.63 16.02,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/paragliding.xml b/compose/material/material/icons/generator/raw-icons/twotone/paragliding.xml
deleted file mode 100644
index f79a685..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/paragliding.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4.31C20.65,3.63 17.57,2 12,2S3.35,3.63 3,4.31v1.77C5.34,5.07 8.56,4.5 12,4.5s6.66,0.57 9,1.58V4.31z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,16.1 13.1,17 12,17zM15.48,17.94C14.68,18.54 14,19 12,19s-2.68,-0.46 -3.48,-1.06C8.04,17.55 7,16.76 7,14H5c0,2.7 0.93,4.41 2.3,5.5c0.5,0.4 1.1,0.7 1.7,0.9V24h6v-3.6c0.6,-0.2 1.2,-0.5 1.7,-0.9c1.37,-1.09 2.3,-2.8 2.3,-5.5h-2C17,16.76 15.96,17.55 15.48,17.94zM23,4.25v3.49c0,0.8 -0.88,1.26 -1.56,0.83C21.3,8.48 21.16,8.39 21,8.31L19,13h-2l-1.5,-6.28C14.4,6.58 13.22,6.5 12,6.5S9.6,6.58 8.5,6.72L7,13H5L3,8.31C2.84,8.39 2.7,8.48 2.56,8.57C1.88,9 1,8.55 1,7.74V4.25C1,1.9 5.92,0 12,0S23,1.9 23,4.25zM6.9,6.98C5.97,7.17 5.12,7.41 4.37,7.69l1.51,3.55L6.9,6.98zM19.63,7.69c-0.75,-0.28 -1.6,-0.52 -2.53,-0.71l1.02,4.25L19.63,7.69zM21,4.31C20.65,3.63 17.57,2 12,2S3.35,3.63 3,4.31v1.77C5.34,5.07 8.56,4.5 12,4.5s6.66,0.57 9,1.58V4.31z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/park.xml b/compose/material/material/icons/generator/raw-icons/twotone/park.xml
deleted file mode 100644
index 2bf9588..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/park.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.26,10l1.9,0l-3.15,-4.5l-3.13,4.5l1.81,0l-3.9,6l10.47,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12h2L12,2L5.05,12H7l-3.9,6h6.92v4h3.95v-4H21L17,12zM6.79,16l3.9,-6H8.88l3.13,-4.5l3.15,4.5h-1.9l4,6H6.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/party_mode.xml b/compose/material/material/icons/generator/raw-icons/twotone/party_mode.xml
deleted file mode 100644
index 987810e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/party_mode.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.95,6l-0.59,-0.65L14.12,4L9.88,4L8.65,5.35l-0.6,0.65L4,6v12h16L20,6h-4.05zM7,12c0,-2.76 2.24,-5 5,-5 1.63,0 3.06,0.79 3.98,2L12,9c-1.66,0 -3,1.34 -3,3 0,0.35 0.07,0.69 0.18,1L7.1,13c-0.06,-0.32 -0.1,-0.66 -0.1,-1zM17,12c0,2.76 -2.24,5 -5,5 -1.63,0 -3.06,-0.79 -3.98,-2L12,15c1.66,0 3,-1.34 3,-3 0,-0.35 -0.07,-0.69 -0.18,-1h2.08c0.07,0.32 0.1,0.66 0.1,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h4.05l0.59,-0.65L9.88,4h4.24l1.24,1.35 0.59,0.65L20,6v12zM9,12c0,-1.66 1.34,-3 3,-3h3.98c-0.92,-1.21 -2.35,-2 -3.98,-2 -2.76,0 -5,2.24 -5,5 0,0.34 0.04,0.68 0.1,1h2.08c-0.11,-0.31 -0.18,-0.65 -0.18,-1zM15,12c0,1.66 -1.34,3 -3,3L8.02,15c0.92,1.21 2.35,2 3.98,2 2.76,0 5,-2.24 5,-5 0,-0.34 -0.03,-0.68 -0.1,-1h-2.08c0.11,0.31 0.18,0.65 0.18,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/password.xml b/compose/material/material/icons/generator/raw-icons/twotone/password.xml
deleted file mode 100644
index 2ca2da8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h20v2H2V17zM3.15,12.95L4,11.47l0.85,1.48l1.3,-0.75L5.3,10.72H7v-1.5H5.3l0.85,-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95zM9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H15v-1.5h-1.7l0.85,-1.47L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2zM23,9.22h-1.7l0.85,-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3,-0.75l-0.85,-1.48H23V9.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pattern.xml b/compose/material/material/icons/generator/raw-icons/twotone/pattern.xml
deleted file mode 100644
index e72bdb9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pattern.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM6,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S4.9,14 6,14zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,8 12,8zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S19.1,10 18,10zM17.98,16c-0.74,0 -1.37,0.4 -1.72,1h-2.54c-0.34,-0.6 -0.98,-1 -1.72,-1s-1.37,0.4 -1.72,1H8.41l3.07,-3.07C11.65,13.97 11.82,14 12,14c1.1,0 2,-0.9 2,-2c0,-0.18 -0.03,-0.35 -0.07,-0.51l3.56,-3.56C17.65,7.97 17.82,8 18,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C12.35,10.03 12.18,10 12,10c-1.1,0 -2,0.9 -2,2c0,0.18 0.03,0.35 0.07,0.51l-3.56,3.56C6.35,16.03 6.18,16 6,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c0.74,0 1.37,-0.4 1.72,-1h2.57c0.34,0.6 0.98,1 1.72,1s1.37,-0.4 1.72,-1h2.55c0.34,0.6 0.98,1 1.72,1c1.1,0 2,-0.9 2,-2C19.98,16.9 19.08,16 17.98,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pause.xml b/compose/material/material/icons/generator/raw-icons/twotone/pause.xml
deleted file mode 100644
index 89b2a1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pause.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h4v14L6,19zM14,5h4v14h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pause_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/pause_circle.xml
deleted file mode 100644
index 6133619..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pause_circle.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM11,16H9V8h2V16zM15,16h-2V8h2V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8h2v8h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8h2v8h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pause_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/pause_circle_filled.xml
deleted file mode 100644
index 2c6d942..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pause_circle_filled.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM11,16H9V8h2V16zM15,16h-2V8h2V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8h2v8h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8h2v8h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pause_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/pause_circle_outline.xml
deleted file mode 100644
index 9987f01..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pause_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8h2v8h-2zM9,8h2v8L9,16zM12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2 2,6.48 2,12s4.48,10 10,10zM12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8 -8,-3.59 -8,-8 3.59,-8 8,-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pause_presentation.xml b/compose/material/material/icons/generator/raw-icons/twotone/pause_presentation.xml
deleted file mode 100644
index d7bd9e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pause_presentation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18V5H3v14zM13,8h2v8h-2V8zM9,8h2v8H9V8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM9,8h2v8L9,16zM13,8h2v8h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/payment.xml b/compose/material/material/icons/generator/raw-icons/twotone/payment.xml
deleted file mode 100644
index 084023a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/payment.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v2L4,8zM4,12h16v6L4,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6c0,-1.11 -0.89,-2 -2,-2zM20,18L4,18v-6h16v6zM20,8L4,8L4,6h16v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/payments.xml b/compose/material/material/icons/generator/raw-icons/twotone/payments.xml
deleted file mode 100644
index 0c78a21..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/payments.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6H3v8h14V6zM10,13c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S11.66,13 10,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4H3C1.9,4 1,4.9 1,6v8c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6C19,4.9 18.1,4 17,4L17,4zM3,14V6h14v8H3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,7 10,7L10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,7v11c0,1.1 -0.9,2 -2,2H4c0,-1 0,-0.9 0,-2h17V7C22.1,7 22,7 23,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pedal_bike.xml b/compose/material/material/icons/generator/raw-icons/twotone/pedal_bike.xml
deleted file mode 100644
index ddb3958..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pedal_bike.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.18,10l-1.7,-4.68C16.19,4.53 15.44,4 14.6,4H12v2h2.6l1.46,4h-4.81l-0.36,-1H12V7H7v2h1.75l1.82,5H9.9c-0.44,-2.23 -2.31,-3.88 -4.65,-3.99C2.45,9.87 0,12.2 0,15c0,2.8 2.2,5 5,5c2.46,0 4.45,-1.69 4.9,-4h4.2c0.44,2.23 2.31,3.88 4.65,3.99c2.8,0.13 5.25,-2.19 5.25,-5c0,-2.8 -2.2,-5 -5,-5H18.18zM7.82,16c-0.4,1.17 -1.49,2 -2.82,2c-1.68,0 -3,-1.32 -3,-3s1.32,-3 3,-3c1.33,0 2.42,0.83 2.82,2H5v2H7.82zM14.1,14h-1.4l-0.73,-2H15C14.56,12.58 14.24,13.25 14.1,14zM19,18c-1.68,0 -3,-1.32 -3,-3c0,-0.93 0.41,-1.73 1.05,-2.28l0.96,2.64l1.88,-0.68l-0.97,-2.67c0.03,0 0.06,-0.01 0.09,-0.01c1.68,0 3,1.32 3,3S20.68,18 19,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pending.xml b/compose/material/material/icons/generator/raw-icons/twotone/pending.xml
deleted file mode 100644
index 2d94572..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pending.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,7.58 16.42,4 12,4zM7,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C8.5,12.83 7.83,13.5 7,13.5zM12,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C13.5,12.83 12.83,13.5 12,13.5zM17,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5C18.5,12.83 17.83,13.5 17,13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8s8,3.58 8,8C20,16.42 16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pending_actions.xml b/compose/material/material/icons/generator/raw-icons/twotone/pending_actions.xml
deleted file mode 100644
index f3cf867..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pending_actions.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35zM17,10c0.34,0 0.67,0.03 1,0.08V5h-2v3H8V5H6v15h4.68C10.25,19.09 10,18.08 10,17C10,13.13 13.13,10 17,10zM12,5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C13,4.55 12.55,5 12,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35zM18,3h-3.18C14.4,1.84 13.3,1 12,1S9.6,1.84 9.18,3H6C4.9,3 4,3.9 4,5v15c0,1.1 0.9,2 2,2h6.11c-0.59,-0.57 -1.07,-1.25 -1.42,-2H6V5h2v3h8V5h2v5.08c0.71,0.1 1.38,0.31 2,0.6V5C20,3.9 19.1,3 18,3zM12,5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1c0.55,0 1,0.45 1,1C13,4.55 12.55,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pentagon.xml b/compose/material/material/icons/generator/raw-icons/twotone/pentagon.xml
deleted file mode 100644
index eec4b90..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pentagon.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.63,9.78l-3.07,9.22l-9.12,0l-3.07,-9.22l7.63,-5.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.63,9.78L16.56,19H7.44L4.37,9.78L12,4.44L19.63,9.78zM2,9l4,12h12l4,-12L12,2L2,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/people.xml b/compose/material/material/icons/generator/raw-icons/twotone/people.xml
deleted file mode 100644
index 6019b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/people.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.34,17h9.32c-0.84,-0.58 -2.87,-1.25 -4.66,-1.25s-3.82,0.67 -4.66,1.25z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM9,13.75c-2.34,0 -7,1.17 -7,3.5L2,19h14v-1.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h4v-1.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/people_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/people_alt.xml
deleted file mode 100644
index 942b67f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/people_alt.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15c-2.7,0 -5.8,1.29 -6,2.01L3,18h12v-1C14.8,16.29 11.7,15 9,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.67,13.13C18.04,14.06 19,15.32 19,17v3h4v-3C23,14.82 19.43,13.53 16.67,13.13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.47,0 -0.91,0.1 -1.33,0.24C14.5,5.27 15,6.58 15,8s-0.5,2.73 -1.33,3.76C14.09,11.9 14.53,12 15,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8C5,10.21 6.79,12 9,12zM9,6c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2S7,9.1 7,8C7,6.9 7.9,6 9,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c-2.67,0 -8,1.34 -8,4v3h16v-3C17,14.34 11.67,13 9,13zM15,18H3l0,-0.99C3.2,16.29 6.3,15 9,15s5.8,1.29 6,2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/people_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/people_outline.xml
deleted file mode 100644
index 6019b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/people_outline.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.34,17h9.32c-0.84,-0.58 -2.87,-1.25 -4.66,-1.25s-3.82,0.67 -4.66,1.25z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM9,13.75c-2.34,0 -7,1.17 -7,3.5L2,19h14v-1.75c0,-2.33 -4.66,-3.5 -7,-3.5zM4.34,17c0.84,-0.58 2.87,-1.25 4.66,-1.25s3.82,0.67 4.66,1.25L4.34,17zM16.04,13.81c1.16,0.84 1.96,1.96 1.96,3.44L18,19h4v-1.75c0,-2.02 -3.5,-3.17 -5.96,-3.44zM15,12c1.93,0 3.5,-1.57 3.5,-3.5S16.93,5 15,5c-0.54,0 -1.04,0.13 -1.5,0.35 0.63,0.89 1,1.98 1,3.15s-0.37,2.26 -1,3.15c0.46,0.22 0.96,0.35 1.5,0.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/percent.xml b/compose/material/material/icons/generator/raw-icons/twotone/percent.xml
deleted file mode 100644
index b04df01..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/percent.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,4C5.57,4 4,5.57 4,7.5S5.57,11 7.5,11S11,9.43 11,7.5S9.43,4 7.5,4zM7.5,9C6.67,9 6,8.33 6,7.5S6.67,6 7.5,6S9,6.67 9,7.5S8.33,9 7.5,9zM16.5,13c-1.93,0 -3.5,1.57 -3.5,3.5s1.57,3.5 3.5,3.5s3.5,-1.57 3.5,-3.5S18.43,13 16.5,13zM16.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S17.33,18 16.5,18zM5.41,20L4,18.59L18.59,4L20,5.41L5.41,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_camera_mic.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_camera_mic.xml
deleted file mode 100644
index b2227ba..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_camera_mic.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.11,7l-0.59,-0.65L14.28,5h-4.24L8.81,6.35l-0.6,0.65H4v12h7v-1.09c-2.83,-0.48 -5,-2.94 -5,-5.91h2c0,2.21 1.79,4 4,4s4,-1.79 4,-4h2c0,2.97 -2.17,5.43 -5,5.91V19h7V7h-3.89zM14,12c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2s2,-0.9 2,-2L14,8c0,-1.1 -0.9,-2 -2,-2zM20,5h-3.17l-1.86,-2L8.96,3L7.17,5L4,5c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,7c0,-1.1 -0.9,-2 -2,-2zM20,19h-7v-1.09c2.83,-0.48 5,-2.94 5,-5.91h-2c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4L6,12c0,2.97 2.17,5.43 5,5.91L11,19L4,19L4,7h4.21l0.59,-0.65L10.04,5h4.24l1.24,1.35 0.59,0.65L20,7v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_contact_calendar.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_contact_calendar.xml
deleted file mode 100644
index 5d52b26..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_contact_calendar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5L5,5v14h14L19,5h-3zM12,6c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM18,18L6,18v-1.53c0,-2.5 3.97,-3.58 6,-3.58s6,1.08 6,3.58L18,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.84,4.22c-0.05,-0.12 -0.11,-0.23 -0.18,-0.34 -0.14,-0.21 -0.33,-0.4 -0.54,-0.54 -0.11,-0.07 -0.22,-0.13 -0.34,-0.18 -0.24,-0.1 -0.5,-0.16 -0.78,-0.16h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-0.42,0 -0.8,0.13 -1.12,0.34 -0.21,0.14 -0.4,0.33 -0.54,0.54 -0.07,0.11 -0.13,0.22 -0.18,0.34 -0.1,0.24 -0.16,0.5 -0.16,0.78v14c0,1.1 0.89,2 2,2h14c0.28,0 0.54,-0.06 0.78,-0.16 0.12,-0.05 0.23,-0.11 0.34,-0.18 0.21,-0.14 0.4,-0.33 0.54,-0.54 0.21,-0.32 0.34,-0.71 0.34,-1.12L21,5c0,-0.28 -0.06,-0.54 -0.16,-0.78zM19,19L5,19L5,5h14v14zM12,12.88c-2.03,0 -6,1.08 -6,3.58L6,18h12v-1.53c0,-2.51 -3.97,-3.59 -6,-3.59zM8.31,16c0.69,-0.56 2.38,-1.12 3.69,-1.12s3.01,0.56 3.69,1.12L8.31,16zM12,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_data_setting.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_data_setting.xml
deleted file mode 100644
index 57c6ce0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_data_setting.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.99,11.57L20,11.57L20,0L0,20h11.56v-2L4.83,18L17.99,4.83v6.74zM23.77,20.32l-1.07,-0.83c0.02,-0.16 0.04,-0.32 0.04,-0.49 0,-0.17 -0.01,-0.33 -0.04,-0.49l1.06,-0.83c0.09,-0.08 0.12,-0.21 0.06,-0.32l-1,-1.73c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11l-1.24,0.5c-0.26,-0.2 -0.54,-0.37 -0.85,-0.49l-0.19,-1.32c-0.01,-0.12 -0.12,-0.21 -0.24,-0.21h-2c-0.12,0 -0.23,0.09 -0.25,0.21l-0.19,1.32c-0.3,0.13 -0.59,0.29 -0.85,0.49l-1.24,-0.5c-0.11,-0.04 -0.24,0 -0.31,0.11l-1,1.73c-0.06,0.11 -0.04,0.24 0.06,0.32l1.06,0.83c-0.02,0.16 -0.03,0.32 -0.03,0.49 0,0.17 0.01,0.33 0.03,0.49l-1.06,0.83c-0.09,0.08 -0.12,0.21 -0.06,0.32l1,1.73c0.06,0.11 0.19,0.15 0.31,0.11l1.24,-0.5c0.26,0.2 0.54,0.37 0.85,0.49l0.19,1.32c0.02,0.12 0.12,0.21 0.25,0.21h2c0.12,0 0.23,-0.09 0.25,-0.21l0.19,-1.32c0.3,-0.13 0.59,-0.29 0.84,-0.49l1.25,0.5c0.11,0.04 0.24,0 0.31,-0.11l1,-1.73c0.06,-0.11 0.03,-0.24 -0.06,-0.32zM18.99,20.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_device_information.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_device_information.xml
deleted file mode 100644
index 3c4ffb8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_device_information.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1H7zM7,3h10v1H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v2h-2zM11,11h2v6h-2zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,21L7,21v-1h10v1zM17,18L7,18L7,6h10v12zM17,4L7,4L7,3h10v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_identity.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_identity.xml
deleted file mode 100644
index 9a6c5aa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_identity.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15c-2.7,0 -5.8,1.29 -6,2.01V18h12v-1c-0.2,-0.71 -3.3,-2 -6,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4zM18,18L6,18v-0.99c0.2,-0.72 3.3,-2.01 6,-2.01s5.8,1.29 6,2v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_media.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_media.xml
deleted file mode 100644
index 3615025..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_media.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,6l-0.59,-0.59L11.17,4L6,4v12h16L22,6h-8.83zM17.5,10.5L21,15L7,15l4.5,-6 3.5,4.51 2.5,-3.01z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,6L0,6v5h0.01L0,20c0,1.1 0.9,2 2,2h18v-2L2,20L2,6zM7,15h14l-3.5,-4.5 -2.5,3.01L11.5,9zM22,4h-8l-2,-2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L24,6c0,-1.1 -0.9,-2 -2,-2zM22,16L6,16L6,4h5.17l1.41,1.41 0.59,0.59L22,6v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_phone_msg.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_phone_msg.xml
deleted file mode 100644
index 0a8df74..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_phone_msg.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,18.21c1.21,0.41 2.48,0.67 3.8,0.76v-1.5c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.19zM6.54,5h-1.5c0.09,1.32 0.35,2.59 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58zM14,8h5V5h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.58l2.2,-2.21c0.28,-0.27 0.36,-0.66 0.25,-1.01C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.46,2.59L5.79,8.8c-0.41,-1.21 -0.67,-2.48 -0.76,-3.8zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM12,3v10l3,-3h6L21,3h-9zM19,8h-5L14,5h5v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/perm_scan_wifi.xml b/compose/material/material/icons/generator/raw-icons/twotone/perm_scan_wifi.xml
deleted file mode 100644
index 3c5511d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/perm_scan_wifi.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-3.26,0 -6.2,0.85 -9.08,2.65L12,18.83l9.08,-11.16C18.18,5.85 15.25,5 12,5zM13,16h-2v-6h2v6zM11,8L11,6h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C6.95,3 3.15,4.85 0,7.23L12,22 24,7.25C20.85,4.87 17.05,3 12,3zM2.92,7.65C5.8,5.85 8.74,5 12,5c3.25,0 6.18,0.85 9.08,2.67L12,18.83 2.92,7.65zM11,10h2v6h-2zM11,6h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person.xml b/compose/material/material/icons/generator/raw-icons/twotone/person.xml
deleted file mode 100644
index 6208861..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-2.69,0 -5.77,1.28 -6,2h12c-0.2,-0.71 -3.3,-2 -6,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM6,18c0.22,-0.72 3.31,-2 6,-2 2.7,0 5.8,1.29 6,2L6,18zM12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_2.xml
deleted file mode 100644
index 021a1a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_2.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.9,7.59C13.74,6.67 12.94,6 12,6s-1.74,0.67 -1.9,1.59L9.78,10h4.44L13.9,7.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.48,16.34C16.29,15.73 14.37,15 12,15c-2.37,0 -4.29,0.73 -5.48,1.34C6.2,16.5 6,16.84 6,17.22V18h12v-0.78C18,16.84 17.8,16.5 17.48,16.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56zM18,18H6v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,15.73 9.63,15 12,15c2.37,0 4.29,0.73 5.48,1.34C17.8,16.5 18,16.84 18,17.22V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,12h4.44c1.21,0 2.14,-1.06 1.98,-2.26l-0.32,-2.45C15.57,5.39 13.92,4 12,4S8.43,5.39 8.12,7.29L7.8,9.74C7.64,10.94 8.57,12 9.78,12zM10.1,7.59C10.26,6.67 11.06,6 12,6s1.74,0.67 1.9,1.59L14.22,10H9.78L10.1,7.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_3.xml
deleted file mode 100644
index ff86320..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_3.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,10h4c0.8,0 1.34,-0.94 0.76,-1.63c-0.87,-1.04 -0.26,-2 -0.26,-2.37c0,-0.41 -0.24,-0.77 -0.62,-0.92c-0.29,-0.12 -0.55,-0.31 -0.75,-0.54C12.96,4.33 12.58,4 12,4s-0.96,0.33 -1.13,0.53c-0.2,0.24 -0.46,0.42 -0.75,0.54C9.74,5.23 9.5,5.59 9.5,6c0,0.37 0.61,1.33 -0.26,2.37C8.66,9.06 9.2,10 10,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.48,16.34C16.29,15.73 14.37,15 12,15c-2.37,0 -4.29,0.73 -5.48,1.34C6.2,16.5 6,16.84 6,17.22V18h12v-0.78C18,16.84 17.8,16.5 17.48,16.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56zM18,18H6v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,15.73 9.63,15 12,15c2.37,0 4.29,0.73 5.48,1.34C17.8,16.5 18,16.84 18,17.22V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12c0.17,0 3.83,0 4,0c1.66,0 3,-1.34 3,-3c0,-0.73 -0.27,-1.4 -0.71,-1.92C16.42,6.75 16.5,6.38 16.5,6c0,-1.25 -0.77,-2.32 -1.86,-2.77C14,2.48 13.06,2 12,2s-2,0.48 -2.64,1.23C8.27,3.68 7.5,4.75 7.5,6c0,0.38 0.08,0.75 0.21,1.08C7.27,7.6 7,8.27 7,9C7,10.66 8.34,12 10,12zM9.24,8.37C10.11,7.33 9.5,6.37 9.5,6c0,-0.41 0.24,-0.77 0.62,-0.92c0.29,-0.12 0.55,-0.31 0.75,-0.54C11.04,4.33 11.42,4 12,4s0.96,0.33 1.13,0.53c0.2,0.24 0.46,0.42 0.75,0.54C14.26,5.23 14.5,5.59 14.5,6c0,0.37 -0.61,1.33 0.26,2.37C15.34,9.06 14.8,10 14,10h-4C9.2,10 8.66,9.06 9.24,8.37z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_4.xml
deleted file mode 100644
index 038f6ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_4.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c1.1,0 2,-0.9 2,-2V5.5h-4V8C10,9.1 10.9,10 12,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.48,16.34C16.29,15.73 14.37,15 12,15c-2.37,0 -4.29,0.73 -5.48,1.34C6.2,16.5 6,16.84 6,17.22V18h12v-0.78C18,16.84 17.8,16.5 17.48,16.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,14.56C16.71,13.7 14.53,13 12,13c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,15.07 4,16.1 4,17.22V20h16v-2.78C20,16.1 19.39,15.07 18.39,14.56zM18,18H6v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,15.73 9.63,15 12,15c2.37,0 4.29,0.73 5.48,1.34C17.8,16.5 18,16.84 18,17.22V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c2.21,0 4,-1.79 4,-4c0,-1.37 0,-3.5 0,-3.5C16,3.67 15.33,3 14.5,3c-0.52,0 -0.98,0.27 -1.25,0.67C12.98,3.27 12.52,3 12,3s-0.98,0.27 -1.25,0.67C10.48,3.27 10.02,3 9.5,3C8.67,3 8,3.67 8,4.5c0,0 0,2.12 0,3.5C8,10.21 9.79,12 12,12zM10,5.5h4V8c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_add.xml
deleted file mode 100644
index c757c56..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_add.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16c-2.69,0 -5.77,1.28 -6,2h12c-0.2,-0.71 -3.3,-2 -6,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM15,6c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM15,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM9,18c0.22,-0.72 3.31,-2 6,-2 2.7,0 5.8,1.29 6,2L9,18zM6,15v-3h3v-2L6,10L6,7L4,7v3L1,10v2h3v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_add_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_add_alt.xml
deleted file mode 100644
index e0117af..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_add_alt.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.48,16.34C13.29,15.73 11.37,15 9,15c-2.37,0 -4.29,0.73 -5.48,1.34C3.2,16.5 3,16.84 3,17.22V18h12v-0.78C15,16.84 14.8,16.5 14.48,16.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8C5,10.21 6.79,12 9,12zM9,6c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2S7,9.1 7,8C7,6.9 7.9,6 9,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,14.56C13.71,13.7 11.53,13 9,13c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,15.07 1,16.1 1,17.22V20h16v-2.78C17,16.1 16.39,15.07 15.39,14.56zM15,18H3v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C4.71,15.73 6.63,15 9,15c2.37,0 4.29,0.73 5.48,1.34C14.8,16.5 15,16.84 15,17.22V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_add_alt_1.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_add_alt_1.xml
deleted file mode 100644
index d1a399e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_add_alt_1.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16c-2.7,0 -5.8,1.29 -6,2h12C14.78,17.28 11.69,16 9,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14c-2.67,0 -8,1.34 -8,4v2h16v-2C17,15.34 11.67,14 9,14zM3,18c0.2,-0.71 3.3,-2 6,-2c2.69,0 5.78,1.28 6,2H3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10l0,-3l-2,0l0,3l-3,0l0,2l3,0l0,3l2,0l0,-3l3,0l0,-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8C5,10.21 6.79,12 9,12zM9,6c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2S7,9.1 7,8C7,6.9 7.9,6 9,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_add_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_add_disabled.xml
deleted file mode 100644
index 1af1d52..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_add_disabled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,18h5.87L13,16.13l-1.1,0.3C9.89,16.99 9.08,17.76 9,18zM17,8c0,-1.1 -0.9,-2 -2,-2 -0.99,0 -1.81,0.72 -1.97,1.67l2.31,2.31C16.27,9.82 17,8.99 17,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.48,11.95c0.17,0.02 0.34,0.05 0.52,0.05 2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4c0,0.18 0.03,0.35 0.05,0.52l3.43,3.43zM15,6c1.1,0 2,0.9 2,2 0,0.99 -0.73,1.82 -1.67,1.97l-2.31,-2.31C13.19,6.72 14.01,6 15,6zM16.69,14.16L22.53,20L23,20v-2c0,-2.14 -3.56,-3.5 -6.31,-3.84zM0,3.12l4,4L4,10L1,10v2h3v3h2v-3h2.88l2.51,2.51C9.19,15.11 7,16.3 7,18v2h9.88l4,4 1.41,-1.41L1.41,1.71 0,3.12zM13.01,16.13L14.88,18L9,18c0.08,-0.24 0.88,-1.01 2.91,-1.57l1.1,-0.3zM6,9.12l0.88,0.88L6,10v-0.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_off.xml
deleted file mode 100644
index 8a64045..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.17,18l-3,-3c-0.06,0 -0.11,0 -0.17,0c-2.37,0 -4.29,0.73 -5.48,1.34C6.2,16.5 6,16.84 6,17.22V18H15.17zM10.13,7.3C10.41,6.54 11.14,6 12,6c1.1,0 2,0.9 2,2c0,0.86 -0.54,1.59 -1.3,1.87"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17.17l-3.37,-3.38c0.64,0.22 1.23,0.48 1.77,0.76C19.37,15.06 19.98,16.07 20,17.17zM21.19,21.19l-1.41,1.41L17.17,20H4v-2.78c0,-1.12 0.61,-2.15 1.61,-2.66c1.29,-0.66 2.87,-1.22 4.67,-1.45L1.39,4.22l1.41,-1.41L21.19,21.19zM15.17,18l-3,-3c-0.06,0 -0.11,0 -0.17,0c-2.37,0 -4.29,0.73 -5.48,1.34C6.2,16.5 6,16.84 6,17.22V18H15.17zM12,6c1.1,0 2,0.9 2,2c0,0.86 -0.54,1.59 -1.3,1.87l1.48,1.48C15.28,10.64 16,9.4 16,8c0,-2.21 -1.79,-4 -4,-4c-1.4,0 -2.64,0.72 -3.35,1.82l1.48,1.48C10.41,6.54 11.14,6 12,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_outline.xml
deleted file mode 100644
index 48d7594..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_outline.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8m-2.1,0a2.1,2.1 0,1 1,4.2 0a2.1,2.1 0,1 1,-4.2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14.9c-2.97,0 -6.1,1.46 -6.1,2.1v1.1h12.2V17c0,-0.64 -3.13,-2.1 -6.1,-2.1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4zM18.1,18.1L5.9,18.1L5.9,17c0,-0.64 3.13,-2.1 6.1,-2.1s6.1,1.46 6.1,2.1v1.1zM12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,5.9c1.16,0 2.1,0.94 2.1,2.1 0,1.16 -0.94,2.1 -2.1,2.1S9.9,9.16 9.9,8c0,-1.16 0.94,-2.1 2.1,-2.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_pin.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_pin.xml
deleted file mode 100644
index 407fb4f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_pin.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,18l0.59,0.59L12,20.17l1.59,-1.59 0.58,-0.58H19V4H5v14h4.83zM12,5c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM6,15.58C6,13.08 9.97,12 12,12s6,1.08 6,3.58V17H6v-1.42z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,20l3,3 3,-3h4c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2L5,2c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h4zM5,4h14v14h-4.83l-0.59,0.59L12,20.17l-1.59,-1.59 -0.58,-0.58L5,18L5,4zM12,11c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM12,7c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM18,15.58c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.08 -6,3.58L6,17h12v-1.42zM8.48,15c0.74,-0.51 2.23,-1 3.52,-1s2.78,0.49 3.52,1L8.48,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_pin_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_pin_circle.xml
deleted file mode 100644
index df544b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_pin_circle.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,10.2c0,2.57 -2.1,5.79 -6.16,9.51L12,20.01l-0.34,-0.31C7.6,15.99 5.5,12.77 5.5,10.2c0,-3.84 2.82,-6.7 6.5,-6.7S18.5,6.35 18.5,10.2z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c1.33,0 4,0.67 4,2v0.16C15.03,14.28 13.6,15 12,15s-3.03,-0.72 -4,-1.84V13C8,11.67 10.67,11 12,11zM12,10c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,10 12,10zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14C16.05,15.64 18,12.54 18,10.2zM12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_remove.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_remove.xml
deleted file mode 100644
index edcbcb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_remove.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16c2.69,0 5.77,1.28 6,2H4C4.2,17.29 7.3,16 10,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4C7.79,4 6,5.79 6,8c0,2.21 1.79,4 4,4C12.21,12 14,10.21 14,8zM12,8c0,1.1 -0.9,2 -2,2c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2C11.1,6 12,6.9 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4C7.33,14 2,15.34 2,18zM4,18c0.2,-0.71 3.3,-2 6,-2c2.69,0 5.77,1.28 6,2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_remove_alt_1.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_remove_alt_1.xml
deleted file mode 100644
index edcbcb4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_remove_alt_1.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16c2.69,0 5.77,1.28 6,2H4C4.2,17.29 7.3,16 10,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8c0,-2.21 -1.79,-4 -4,-4C7.79,4 6,5.79 6,8c0,2.21 1.79,4 4,4C12.21,12 14,10.21 14,8zM12,8c0,1.1 -0.9,2 -2,2c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2C11.1,6 12,6.9 12,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18v2h16v-2c0,-2.66 -5.33,-4 -8,-4C7.33,14 2,15.34 2,18zM4,18c0.2,-0.71 3.3,-2 6,-2c2.69,0 5.77,1.28 6,2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h6v2h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/person_search.xml b/compose/material/material/icons/generator/raw-icons/twotone/person_search.xml
deleted file mode 100644
index 121d1bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/person_search.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18c0.22,-0.72 3.31,-2 6,-2c0,-0.7 0.13,-1.37 0.35,-1.99C7.62,13.91 2,15.27 2,18v2h9.54c-0.52,-0.58 -0.93,-1.25 -1.19,-2H4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4C7.79,5 6,6.79 6,9C6,11.21 7.79,13 10,13zM10,7c1.1,0 2,0.89 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C8,7.89 8.9,7 10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.35,18c0,0 -0.35,-0.79 -0.35,-2c-2.69,0 -5.77,1.28 -6,2H10.35z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.43,18.02C19.79,17.43 20,16.74 20,16c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4c0,2.21 1.79,4 4,4c0.74,0 1.43,-0.22 2.02,-0.57c0.93,0.93 1.62,1.62 2.57,2.57L22,20.59C20.5,19.09 21.21,19.79 19.43,18.02zM16,18c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C18,17.1 17.1,18 16,18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/personal_injury.xml b/compose/material/material/icons/generator/raw-icons/twotone/personal_injury.xml
deleted file mode 100644
index 274b2cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/personal_injury.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,4.9 10.9,4 12,4zM10.94,20H9.75C9.34,20 9,19.66 9,19.25c0,-0.41 0.34,-0.75 0.75,-0.75h1.89L10.94,20zM18,20h-4.85l2.94,-6.27c0.54,0.2 1.01,0.41 1.4,0.61C17.8,14.5 18,14.84 18,15.22V20zM9.75,22C8.23,22 7,20.77 7,19.25c0,-1.52 1.23,-2.75 2.75,-2.75h2.83l1.55,-3.3C13.47,13.07 12.76,13 12,13c-2.37,0 -4.29,0.73 -5.48,1.34C6.2,14.5 6,14.84 6,15.22V22H9.75z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S8,3.79 8,6C8,8.21 9.79,10 12,10zM12,4c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,4.9 10.9,4 12,4zM18.39,12.56C16.71,11.7 14.53,11 12,11c-2.53,0 -4.71,0.7 -6.39,1.56C4.61,13.07 4,14.1 4,15.22V22h2v-6.78c0,-0.38 0.2,-0.72 0.52,-0.88C7.71,13.73 9.63,13 12,13c0.76,0 1.47,0.07 2.13,0.2l-1.55,3.3H9.75C8.23,16.5 7,17.73 7,19.25C7,20.77 8.23,22 9.75,22h2.18H18c1.1,0 2,-0.9 2,-2v-4.78C20,14.1 19.39,13.07 18.39,12.56zM10.94,20H9.75C9.34,20 9,19.66 9,19.25c0,-0.41 0.34,-0.75 0.75,-0.75h1.89L10.94,20zM18,20h-4.85l2.94,-6.27c0.54,0.2 1.01,0.41 1.4,0.61C17.8,14.5 18,14.84 18,15.22V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/personal_video.xml b/compose/material/material/icons/generator/raw-icons/twotone/personal_video.xml
deleted file mode 100644
index 9047d1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/personal_video.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h18v12H3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pest_control.xml b/compose/material/material/icons/generator/raw-icons/twotone/pest_control.xml
deleted file mode 100644
index 816af6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pest_control.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-2.21,0 -4,2.24 -4,5s1.79,5 4,5s4,-2.24 4,-5S14.21,9 12,9zM13,17h-2v-6h2V17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.88,7.36C13.62,6.57 12.88,6 12,6s-1.62,0.57 -1.88,1.36C10.71,7.13 11.34,7 12,7S13.29,7.13 13.88,7.36z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15v-2h-3.07c-0.05,-0.39 -0.12,-0.77 -0.22,-1.14l2.58,-1.49l-1,-1.73L16.92,10c-0.28,-0.48 -0.62,-0.91 -0.99,-1.29c0.1,-0.56 0.2,-1.69 -0.58,-2.89L17,4.17l-1.41,-1.41l-1.72,1.72c-1.68,-0.89 -3.1,-0.33 -3.73,0L8.41,2.76L7,4.17l1.65,1.65c-0.78,1.2 -0.68,2.34 -0.58,2.89C7.7,9.1 7.36,9.53 7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37 -0.17,0.75 -0.22,1.14H3v2h3.07c0.05,0.39 0.12,0.77 0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81 2.88,3 4.92,3s3.84,-1.19 4.92,-3l2.37,1.37l1,-1.73l-2.58,-1.49c0.1,-0.37 0.17,-0.75 0.22,-1.14H21zM12,6c0.88,0 1.62,0.57 1.88,1.36C13.29,7.13 12.66,7 12,7s-1.29,0.13 -1.88,0.36C10.38,6.57 11.12,6 12,6zM12,19c-2.21,0 -4,-2.24 -4,-5s1.79,-5 4,-5s4,2.24 4,5S14.21,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,11h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pest_control_rodent.xml b/compose/material/material/icons/generator/raw-icons/twotone/pest_control_rodent.xml
deleted file mode 100644
index de28d91..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pest_control_rodent.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,14.75C17.87,14.38 18,13.96 18,13.5c0,-1.38 -1.12,-2.5 -2.5,-2.5c-1.3,0 -2.5,1.08 -2.5,2.5c0,0.69 0.28,1.32 0.73,1.77l-1.41,1.41C11.5,15.87 11,14.74 11,13.5c0,-0.92 0.28,-1.76 0.75,-2.47c-0.22,0.01 -0.44,0.02 -0.67,0.07c-1.48,0.32 -2.68,1.53 -2.99,3.01c-0.26,1.24 0.02,2.45 0.8,3.41C9.66,18.46 10.79,19 12,19h6.53c0.81,0 1.47,-0.66 1.47,-1.47c0,-0.41 -0.17,-0.81 -0.48,-1.09L17.65,14.75zM17,18c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C18,17.55 17.55,18 17,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.86,14.97l-0.93,-0.84c0.48,-3.45 -2.87,-6.04 -6.05,-4.82C13.3,9.11 12.66,9 12,9c-4.26,0 -5.65,3.58 -5.89,4.85C4.89,13.47 4,12.35 4,11c0,-1.66 1.34,-3 3,-3h2.5C10.88,8 12,6.88 12,5.5C12,4.12 10.88,3 9.5,3H8C7.45,3 7,3.45 7,4c0,0.55 0.45,1 1,1h1.5C9.78,5 10,5.22 10,5.5C10,5.78 9.78,6 9.5,6H7c-2.76,0 -5,2.24 -5,5c0,2.44 1.76,4.47 4.07,4.91C6.51,18.79 8.99,21 12,21h6.53C21.64,21 23.23,17.11 20.86,14.97zM18.53,19H12c-1.21,0 -2.34,-0.54 -3.11,-1.48c-0.78,-0.95 -1.06,-2.16 -0.8,-3.41c0.31,-1.48 1.51,-2.69 2.99,-3.01c0.22,-0.05 0.45,-0.06 0.67,-0.07C11.28,11.74 11,12.58 11,13.5c0,1.24 0.5,2.37 1.32,3.18l1.41,-1.41C13.28,14.82 13,14.19 13,13.5c0,-1.42 1.2,-2.5 2.5,-2.5c1.38,0 2.5,1.12 2.5,2.5c0,0.46 -0.13,0.88 -0.35,1.25l1.87,1.7c0.31,0.28 0.48,0.67 0.48,1.09C20,18.34 19.34,19 18.53,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pets.xml b/compose/material/material/icons/generator/raw-icons/twotone/pets.xml
deleted file mode 100644
index 7adc005..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pets.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,9.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.86c-0.87,-1.02 -1.6,-1.89 -2.48,-2.91 -0.46,-0.54 -1.05,-1.08 -1.75,-1.32 -0.11,-0.04 -0.22,-0.07 -0.33,-0.09 -0.25,-0.04 -0.52,-0.04 -0.78,-0.04s-0.53,0 -0.79,0.05c-0.11,0.02 -0.22,0.05 -0.33,0.09 -0.7,0.24 -1.28,0.78 -1.75,1.32 -0.87,1.02 -1.6,1.89 -2.48,2.91 -1.31,1.31 -2.92,2.76 -2.62,4.79 0.29,1.02 1.02,2.03 2.33,2.32 0.73,0.15 3.06,-0.44 5.54,-0.44h0.18c2.48,0 4.81,0.58 5.54,0.44 1.31,-0.29 2.04,-1.31 2.33,-2.32 0.31,-2.04 -1.3,-3.49 -2.61,-4.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phishing.xml b/compose/material/material/icons/generator/raw-icons/twotone/phishing.xml
deleted file mode 100644
index b27a527..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phishing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9c0,-1.3 -0.84,-2.4 -2,-2.82V2h-2v4.18C13.84,6.6 13,7.7 13,9s0.84,2.4 2,2.82V15c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4v-1h3L5,9v6c0,3.31 2.69,6 6,6s6,-2.69 6,-6v-3.18C18.16,11.4 19,10.3 19,9zM16,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S16.55,10 16,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone.xml
deleted file mode 100644
index 4069e9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17.47c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.19,1.19c1.2,0.41 2.48,0.67 3.8,0.75v-1.49zM5.03,5c0.09,1.32 0.35,2.59 0.75,3.8l1.2,-1.2c-0.23,-0.84 -0.38,-1.71 -0.44,-2.6H5.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.07,7.57C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1 -1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02zM16.4,17.02c0.85,0.24 1.72,0.39 2.6,0.45v1.49c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.2,-1.19zM5.79,8.8c-0.41,-1.21 -0.67,-2.48 -0.76,-3.8h1.5c0.07,0.89 0.22,1.76 0.46,2.59L5.79,8.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_android.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_android.xml
deleted file mode 100644
index 18531e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_android.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,4h10v14H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1L8,1C6.34,1 5,2.34 5,4v16c0,1.66 1.34,3 3,3h8c1.66,0 3,-1.34 3,-3L19,4c0,-1.66 -1.34,-3 -3,-3zM14,21h-4v-1h4v1zM17,18L7,18L7,4h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_bluetooth_speaker.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_bluetooth_speaker.xml
deleted file mode 100644
index d21cfa4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_bluetooth_speaker.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,18.21c1.21,0.41 2.48,0.67 3.8,0.76v-1.5c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.19zM6.54,5h-1.5c0.09,1.32 0.34,2.58 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM14.71,9.5L17,7.21L17,11h0.5l2.85,-2.85L18.21,6l2.15,-2.15L17.5,1L17,1v3.79L14.71,2.5l-0.71,0.71L16.79,6 14,8.79l0.71,0.71zM18,2.91l0.94,0.94 -0.94,0.94L18,2.91zM18,7.21l0.94,0.94 -0.94,0.94L18,7.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_callback.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_callback.xml
deleted file mode 100644
index 308d856..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_callback.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5h-1.5c0.09,1.32 0.35,2.59 0.75,3.8l1.2,-1.2c-0.24,-0.84 -0.39,-1.71 -0.45,-2.6zM15.2,18.21c1.2,0.41 2.48,0.67 3.8,0.75v-1.49c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.51c-1.24,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.04 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2c0.28,-0.28 0.36,-0.67 0.25,-1.02C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.49c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.89 0.22,1.76 0.46,2.59l-1.2,1.2c-0.41,-1.2 -0.67,-2.47 -0.76,-3.79zM19,18.97c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.19,-1.19c0.85,0.24 1.72,0.39 2.6,0.45v1.49zM18,9h-2.59l5.02,-5.02 -1.41,-1.41L14,7.59V5h-2v6h6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_disabled.xml
deleted file mode 100644
index 32dab96..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.34,14.54l-1.43,-1.43c0.56,-0.73 1.05,-1.5 1.47,-2.32l-2.2,-2.2c-0.28,-0.28 -0.36,-0.67 -0.25,-1.02C15.3,6.45 15.5,5.25 15.5,4c0,-0.55 0.45,-1 1,-1H20c0.55,0 1,0.45 1,1C21,7.98 19.63,11.64 17.34,14.54zM14.52,17.35C11.63,19.64 7.97,21 4,21c-0.55,0 -1,-0.45 -1,-1v-3.49c0,-0.55 0.45,-1 1,-1c1.24,0 2.45,-0.2 3.57,-0.57c0.1,-0.04 0.21,-0.05 0.31,-0.05c0.26,0 0.51,0.1 0.71,0.29l2.2,2.2c0.81,-0.42 1.58,-0.9 2.3,-1.46L1.39,4.22l1.42,-1.41L21.19,21.2l-1.41,1.41L14.52,17.35zM17.46,5c-0.06,0.89 -0.21,1.76 -0.45,2.59l1.2,1.2c0.41,-1.2 0.67,-2.47 0.76,-3.79H17.46zM7.6,17.02c-0.85,0.24 -1.72,0.39 -2.6,0.45v1.49c1.32,-0.09 2.59,-0.35 3.8,-0.75L7.6,17.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_enabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_enabled.xml
deleted file mode 100644
index 31d6a0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_enabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4c0,9.39 -7.61,17 -17,17c-0.55,0 -1,-0.45 -1,-1v-3.49c0,-0.55 0.45,-1 1,-1c1.24,0 2.45,-0.2 3.57,-0.57c0.1,-0.04 0.21,-0.05 0.31,-0.05c0.26,0 0.51,0.1 0.71,0.29l2.2,2.2c2.83,-1.45 5.15,-3.76 6.59,-6.59l-2.2,-2.2c-0.28,-0.28 -0.36,-0.67 -0.25,-1.02C15.3,6.45 15.5,5.25 15.5,4c0,-0.55 0.45,-1 1,-1H20C20.55,3 21,3.45 21,4zM7.6,17.02c-0.85,0.24 -1.72,0.39 -2.6,0.45v1.49c1.32,-0.09 2.59,-0.35 3.8,-0.75L7.6,17.02zM17.46,5c-0.06,0.89 -0.21,1.76 -0.45,2.59l1.2,1.2c0.41,-1.2 0.67,-2.47 0.76,-3.79H17.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_forwarded.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_forwarded.xml
deleted file mode 100644
index 21618eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_forwarded.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,18.21c1.21,0.41 2.48,0.67 3.8,0.76v-1.5c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.19zM6.54,5h-1.5c0.09,1.32 0.34,2.58 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM18,11l5,-5 -5,-5v3h-4v4h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_in_talk.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_in_talk.xml
deleted file mode 100644
index a2adeda..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_in_talk.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5h-1.5c0.09,1.32 0.34,2.58 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58zM15.2,18.21c1.21,0.41 2.48,0.67 3.8,0.76v-1.5c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12h2c0,-2.76 -2.24,-5 -5,-5v2c1.66,0 3,1.34 3,3zM19,12h2c0,-4.97 -4.03,-9 -9,-9v2c3.87,0 7,3.13 7,7zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_iphone.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_iphone.xml
deleted file mode 100644
index 7649990..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_iphone.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,4h9v14H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,1h-8C6.12,1 5,2.12 5,3.5v17C5,21.88 6.12,23 7.5,23h8c1.38,0 2.5,-1.12 2.5,-2.5v-17C18,2.12 16.88,1 15.5,1zM11.5,22c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM16,18L7,18L7,4h9v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_locked.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_locked.xml
deleted file mode 100644
index c57aeec..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_locked.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5V4c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1h-1v5h6V5H20zM19,5h-2V4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17.83c1.29,0.54 2.63,0.89 4,1.07v-2.23l-2.35,-0.47L15,17.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.33,5H5.1c0.18,1.37 0.53,2.7 1.07,4L7.8,7.35L7.33,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.2,14.87l-3.67,-0.73c-0.5,-0.1 -0.83,0.2 -0.9,0.27l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3H4C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.55,0.03 1.03,-0.43 1.03,-1v-4.15C21,15.37 20.66,14.96 20.2,14.87zM5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7 5.27,6.37 5.1,5zM19,18.9c-1.37,-0.18 -2.7,-0.53 -4,-1.07l1.65,-1.63L19,16.67V18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_missed.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_missed.xml
deleted file mode 100644
index f10d1f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_missed.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.6,17.22c0.66,0.37 1.28,0.79 1.88,1.27l1.07,-1.07c-0.91,-0.75 -1.9,-1.39 -2.95,-1.9v1.7zM3.53,18.5c0.58,-0.47 1.21,-0.89 1.87,-1.27v-1.71c-1.05,0.51 -2.03,1.15 -2.95,1.9l1.08,1.08z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.71,16.67C20.66,13.78 16.54,12 12,12S3.34,13.78 0.29,16.67c-0.18,0.18 -0.29,0.43 -0.29,0.71 0,0.28 0.11,0.53 0.29,0.71l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.11 0.7,-0.28 0.79,-0.74 1.69,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.5 0.56,-0.9v-3.1c1.45,-0.48 3,-0.73 4.6,-0.73s3.15,0.25 4.6,0.72v3.1c0,0.39 0.23,0.74 0.56,0.9 0.98,0.49 1.87,1.12 2.67,1.85 0.18,0.18 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71 0,-0.28 -0.12,-0.52 -0.3,-0.7zM5.4,17.23c-0.66,0.37 -1.29,0.8 -1.87,1.27l-1.07,-1.07c0.91,-0.75 1.9,-1.39 2.95,-1.9v1.7zM20.48,18.49c-0.6,-0.48 -1.22,-0.9 -1.88,-1.27v-1.7c1.05,0.51 2.03,1.15 2.95,1.9l-1.07,1.07zM7,6.43l4.94,4.94 7.07,-7.07 -1.41,-1.42 -5.66,5.66L8.4,5L11,5L11,3L5,3v6h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phone_paused.xml b/compose/material/material/icons/generator/raw-icons/twotone/phone_paused.xml
deleted file mode 100644
index 399d82d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phone_paused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5h-1.5c0.09,1.32 0.34,2.58 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58zM15.2,18.21c1.21,0.41 2.48,0.67 3.8,0.76v-1.5c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.59l2.2,-2.21c0.28,-0.26 0.36,-0.65 0.25,-1C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.45,2.58l-1.2,1.21c-0.4,-1.21 -0.66,-2.47 -0.75,-3.79zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM15,3h2v7h-2zM19,3h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phonelink.xml b/compose/material/material/icons/generator/raw-icons/twotone/phonelink.xml
deleted file mode 100644
index 8bc6c1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phonelink.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10h4v7h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h18L22,4L4,4c-1.1,0 -2,0.9 -2,2v11L0,17v3h14v-3L4,17L4,6zM23,8h-6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L24,9c0,-0.55 -0.45,-1 -1,-1zM22,17h-4v-7h4v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_erase.xml b/compose/material/material/icons/generator/raw-icons/twotone/phonelink_erase.xml
deleted file mode 100644
index 45202c8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_erase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.2l4,-4 4,4 1,-1 -4,-4 4,-4 -1,-1 -4,4 -4,-4 -1,1 4,4 -4,4zM9,23h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-2 -2,-2H9c-1.1,0 -2,0.9 -2,2v3h2V4h10v16H9v-2H7v3c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_lock.xml b/compose/material/material/icons/generator/raw-icons/twotone/phonelink_lock.xml
deleted file mode 100644
index 3b859fb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7C6.6,7 5.2,8.1 5.2,9.5L5.2,11c-0.6,0 -1.2,0.6 -1.2,1.2v3.5c0,0.7 0.6,1.3 1.2,1.3h5.5c0.7,0 1.3,-0.6 1.3,-1.2v-3.5c0,-0.7 -0.6,-1.3 -1.2,-1.3L10.8,9.5C10.8,8.1 9.4,7 8,7zM9.5,11h-3L6.5,9.5c0,-0.8 0.7,-1.3 1.5,-1.3s1.5,0.5 1.5,1.3L9.5,11zM21,21L21,3c0,-1.1 -0.9,-2 -2,-2L9,1c-1.1,0 -2,0.9 -2,2v3h2L9,4h10v16L9,20v-2L7,18v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/phonelink_off.xml
deleted file mode 100644
index 7c6187b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17v-7h-4v4.61L20.39,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8h-6c-0.55,0 -1,0.45 -1,1v3.61l2,2L18,10h4v7h-1.61l2.93,2.93c0.39,-0.13 0.68,-0.49 0.68,-0.93L24,9c0,-0.55 -0.45,-1 -1,-1zM22,6L22,4L7.39,4l2,2zM0.65,2.92l1.82,1.82C2.18,5.08 2,5.52 2,6v11L0,17v3h17.73l2.35,2.35 1.41,-1.41L2.06,1.51 0.65,2.92zM4,6.27L14.73,17L4,17L4,6.27z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_ring.xml b/compose/material/material/icons/generator/raw-icons/twotone/phonelink_ring.xml
deleted file mode 100644
index 82e1c41..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_ring.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h10v16H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,1L4,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L16,3c0,-1.1 -0.9,-2 -2,-2zM14,20L4,20L4,4h10v16zM20.1,7.7l-1,1c1.8,1.8 1.8,4.6 0,6.5l1,1c2.5,-2.3 2.5,-6.1 0,-8.5zM17,10.8c0.5,0.7 0.5,1.6 0,2.3l1,1c1.2,-1.2 1.2,-3 0,-4.3l-1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_setup.xml b/compose/material/material/icons/generator/raw-icons/twotone/phonelink_setup.xml
deleted file mode 100644
index ace1946..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/phonelink_setup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3v3h2L9,4h10v16L9,20v-2L7,18v3c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L21,3c0,-1.1 -0.9,-2 -2,-2L9,1c-1.1,0 -2,0.9 -2,2zM9.5,15.5c0.29,-0.12 0.55,-0.29 0.8,-0.48l-0.02,0.03 1.01,0.39c0.23,0.09 0.49,0 0.61,-0.22l0.84,-1.46c0.12,-0.21 0.07,-0.49 -0.12,-0.64l-0.85,-0.68 -0.02,0.03c0.02,-0.16 0.05,-0.32 0.05,-0.48s-0.03,-0.32 -0.05,-0.48l0.02,0.03 0.85,-0.68c0.19,-0.15 0.24,-0.43 0.12,-0.64l-0.84,-1.46c-0.12,-0.21 -0.38,-0.31 -0.61,-0.22l-1.01,0.39 0.02,0.03c-0.25,-0.17 -0.51,-0.34 -0.8,-0.46l-0.17,-1.08C9.3,7.18 9.09,7 8.84,7L7.16,7c-0.25,0 -0.46,0.18 -0.49,0.42L6.5,8.5c-0.29,0.12 -0.55,0.29 -0.8,0.48l0.02,-0.03 -1.02,-0.39c-0.23,-0.09 -0.49,0 -0.61,0.22l-0.84,1.46c-0.12,0.21 -0.07,0.49 0.12,0.64l0.85,0.68 0.02,-0.03c-0.02,0.15 -0.05,0.31 -0.05,0.47s0.03,0.32 0.05,0.48l-0.02,-0.03 -0.85,0.68c-0.19,0.15 -0.24,0.43 -0.12,0.64l0.84,1.46c0.12,0.21 0.38,0.31 0.61,0.22l1.01,-0.39 -0.01,-0.04c0.25,0.19 0.51,0.36 0.8,0.48l0.17,1.07c0.03,0.25 0.24,0.43 0.49,0.43h1.68c0.25,0 0.46,-0.18 0.49,-0.42l0.17,-1.08zM6,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2 -0.9,2 -2,2 -2,-0.9 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo.xml
deleted file mode 100644
index 73d88d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5H5v14h14V5zM6,17l3,-3.86 2.14,2.58 3,-3.87L18,17H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,21h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2zM5,5h14v14L5,19L5,5zM11.14,15.72L9,13.14 6,17h12l-3.86,-5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_album.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_album.xml
deleted file mode 100644
index 852c5dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_album.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4v7l-2.5,-1.5L11,11V4H6v16h12V4H16zM7,18l2.38,-3.17L11,17l2.62,-3.5L17,18H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,20H6V4h5v7l2.5,-1.5L16,11V4h2V20zM13.62,13.5L17,18H7l2.38,-3.17L11,17L13.62,13.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_camera.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_camera.xml
deleted file mode 100644
index 879625a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_camera.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4.05l-1.83,-2L9.88,4L8.05,6L4,6v12h16L20,6zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2zM4,6h4.05l1.83,-2h4.24l1.83,2L20,6v12L4,18L4,6zM12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5 5,-2.24 5,-5 -2.24,-5 -5,-5zM12,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_camera_back.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_camera_back.xml
deleted file mode 100644
index 1307226..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_camera_back.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.95,7l-1.83,-2H9.88L8.05,7H4v12h16V7H15.95zM6,17l3,-4l2.25,3l3,-4L18,17H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19H4V7h4.05l1.83,-2h4.24l1.83,2H20V19zM11.25,16L9,13l-3,4h12l-3.75,-5L11.25,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_camera_front.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_camera_front.xml
deleted file mode 100644
index 7bdb288..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_camera_front.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.95,7l-1.83,-2H9.88L8.05,7H4v12h16V7H15.95zM12,9c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C10,9.9 10.9,9 12,9zM16,17H8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C10.07,14.21 11.01,14 12,14s1.93,0.21 2.78,0.58C15.52,14.9 16,15.62 16,16.43V17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3.17L15,3H9L7.17,5H4C2.9,5 2,5.9 2,7v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V7C22,5.9 21.1,5 20,5zM20,19H4V7h4.05l1.83,-2h4.24l1.83,2H20V19zM12,13c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C10,12.1 10.9,13 12,13zM14.78,14.58C13.93,14.21 12.99,14 12,14s-1.93,0.21 -2.78,0.58C8.48,14.9 8,15.62 8,16.43V17h8v-0.57C16,15.62 15.52,14.9 14.78,14.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_filter.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_filter.xml
deleted file mode 100644
index c2e069f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_filter.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10v9L4.98,19L4.98,5h9L13.98,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-9h-2zM16.06,7.94L17,10l0.94,-2.06L20,7l-2.06,-0.94L17,4l-0.94,2.06L14,7zM12,8l-1.25,2.75L8,12l2.75,1.25L12,16l1.25,-2.75L16,12l-2.75,-1.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_library.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_library.xml
deleted file mode 100644
index 3583deb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_library.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12L20,4L8,4v12zM11.5,11.67l1.69,2.26 2.48,-3.09L19,15L9,15l2.5,-3.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16L22,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zM20,16L8,16L8,4h12v12zM15.67,10.83l-2.48,3.09 -1.69,-2.25L9,15h10zM4,22h14v-2L4,20L4,6L2,6v14c0,1.1 0.9,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_actual.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_actual.xml
deleted file mode 100644
index 9683307..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_actual.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.08,5L3,5.08V19h17.92c0.03,-0.02 0.06,-0.06 0.08,-0.08V5.08L20.92,5H3.08zM5,17l3.5,-4.5 2.5,3.01L14.5,11l4.5,6H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3C2,3 1,4 1,5v14c0,1.1 0.9,2 2,2h18c1,0 2,-1 2,-2L23,5c0,-1 -1,-2 -2,-2zM21,18.92c-0.02,0.03 -0.06,0.06 -0.08,0.08L3,19L3,5.08L3.08,5h17.83c0.03,0.02 0.06,0.06 0.08,0.08v13.84zM11,15.51L8.5,12.5 5,17h14l-4.5,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_large.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_large.xml
deleted file mode 100644
index 73b8188..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_large.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,19h2v2h-2zM1,19c0,1.1 0.9,2 2,2h12L15,11L1,11v8zM5.5,15.79l1.79,2.15 2.5,-3.22L13,19L3,19l2.5,-3.21zM17,3h2v2h-2zM21,11h2v2h-2zM21,15h2v2h-2zM3,3C2,3 1,4 1,5h2L3,3zM21,7h2v2h-2zM13,3h2v2h-2zM21,21c1,0 2,-1 2,-2h-2v2zM1,7h2v2L1,9zM9,3h2v2L9,5zM5,3h2v2L5,5zM21,3v2h2c0,-1 -1,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_small.xml b/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_small.xml
deleted file mode 100644
index 64ca7fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/photo_size_select_small.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,19h2v2h-2zM13,19h2v2h-2zM1,19c0,1.1 0.9,2 2,2h8v-6L1,15v4zM9,3h2v2L9,5zM5,3h2v2L5,5zM17,3h2v2h-2zM1,11h2v2L1,13zM1,7h2v2L1,9zM3,3C2,3 1,4 1,5h2L3,3zM13,3h2v2h-2zM21,21c1,0 2,-1 2,-2h-2v2zM21,11h2v2h-2zM21,3v2h2c0,-1 -1,-2 -2,-2zM21,15h2v2h-2zM21,7h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/php.xml b/compose/material/material/icons/generator/raw-icons/twotone/php.xml
deleted file mode 100644
index 1b65133..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/php.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9zM8,10.5v1C8,12.3 7.3,13 6.5,13h-2v2H3V9h3.5C7.3,9 8,9.7 8,10.5zM6.5,10.5h-2v1h2V10.5zM21.5,10.5v1c0,0.8 -0.7,1.5 -1.5,1.5h-2v2h-1.5V9H20C20.8,9 21.5,9.7 21.5,10.5zM20,10.5h-2v1h2V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/piano.xml b/compose/material/material/icons/generator/raw-icons/twotone/piano.xml
deleted file mode 100644
index 41ad613..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/piano.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,14.5h0.25V19h-4.5v-4.5H10c0.55,0 1,-0.45 1,-1V5h2v8.5C13,14.05 13.45,14.5 14,14.5zM5,5h2v8.5c0,0.55 0.45,1 1,1h0.25V19H5V5zM19,19h-3.25v-4.5H16c0.55,0 1,-0.45 1,-1V5h2V19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM14,14.5h0.25V19h-4.5v-4.5H10c0.55,0 1,-0.45 1,-1V5h2v8.5C13,14.05 13.45,14.5 14,14.5zM5,5h2v8.5c0,0.55 0.45,1 1,1h0.25V19H5V5zM19,19h-3.25v-4.5H16c0.55,0 1,-0.45 1,-1V5h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/piano_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/piano_off.xml
deleted file mode 100644
index 8ef9d5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/piano_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.25,19H5V7.83l2,2v3.67c0,0.55 0.45,1 1,1h0.25V19zM9.75,19v-4.5H10c0.46,0 0.82,-0.31 0.94,-0.73l3.31,3.31V19H9.75zM13,10.17V5h-2v3.17L13,10.17zM19,16.17V5h-2v8.5c0,0.19 -0.07,0.36 -0.16,0.51L19,16.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1 0.9,2 2,2h13.17l1.61,1.61L21.19,21.19zM8.25,19H5V7.83l2,2v3.67c0,0.55 0.45,1 1,1h0.25V19zM9.75,19v-4.5H10c0.46,0 0.82,-0.31 0.94,-0.73l3.31,3.31V19H9.75zM11,8.17L5.83,3H19c1.1,0 2,0.9 2,2v13.17l-2,-2V5h-2v8.5c0,0.19 -0.07,0.36 -0.16,0.51L13,10.17V5h-2V8.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/picture_as_pdf.xml b/compose/material/material/icons/generator/raw-icons/twotone/picture_as_pdf.xml
deleted file mode 100644
index ec6f49e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/picture_as_pdf.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9h1v1h-1zM14,9h1v3h-1zM8,16h12L20,4L8,4v12zM17,8h2v1h-1v1h1v1h-1v2h-1L17,8zM13,8h2c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-2L13,8zM9,8h2c0.55,0 1,0.45 1,1v1c0,0.55 -0.45,1 -1,1h-1v2L9,13L9,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM16,12L16,9c0,-0.55 -0.45,-1 -1,-1h-2v5h2c0.55,0 1,-0.45 1,-1zM14,9h1v3h-1L14,9zM18,11h1v-1h-1L18,9h1L19,8h-2v5h1zM10,11h1c0.55,0 1,-0.45 1,-1L12,9c0,-0.55 -0.45,-1 -1,-1L9,8v5h1v-2zM10,9h1v1h-1L10,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/picture_in_picture.xml b/compose/material/material/icons/generator/raw-icons/twotone/picture_in_picture.xml
deleted file mode 100644
index 59106d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/picture_in_picture.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h-8v6h8L19,7zM17,11h-4L13,9h4v2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9h4v2h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,1.98 2,1.98h18c1.1,0 2,-0.88 2,-1.98L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.98h18v14.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/picture_in_picture_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/picture_in_picture_alt.xml
deleted file mode 100644
index e371235..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/picture_in_picture_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-8v6h8v-6zM17,15h-4v-2h4v2zM21,3L3,3c-1.1,0 -2,0.88 -2,1.98L1,19c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,4.98C23,3.88 22.1,3 21,3zM21,19.02L3,19.02L3,4.97h18v14.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h4v2h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pie_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/pie_chart.xml
deleted file mode 100644
index 8f31a57..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pie_chart.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,4.07 3.06,7.44 7,7.93L11,4.07C7.06,4.56 4,7.93 4,12zM13,19.93c3.61,-0.45 6.48,-3.32 6.93,-6.93L13,13v6.93zM13,4.07L13,11h6.93c-0.45,-3.61 -3.32,-6.48 -6.93,-6.93z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.94,-0.49 -7,-3.86 -7,-7.93s3.06,-7.44 7,-7.93v15.86zM13,19.93L13,13h6.93c-0.45,3.61 -3.32,6.48 -6.93,6.93zM13,11L13,4.07c3.61,0.45 6.48,3.32 6.93,6.93L13,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pie_chart_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/pie_chart_outline.xml
deleted file mode 100644
index 0415e29..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pie_chart_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM11,19.94c-3.93,-0.5 -7,-3.88 -7,-7.94s3.07,-7.44 7,-7.93v15.87zM13,19.93L13,13h6.93c-0.45,3.61 -3.32,6.48 -6.93,6.93zM13,11L13,4.07c3.61,0.45 6.48,3.33 6.93,6.93L13,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pin.xml b/compose/material/material/icons/generator/raw-icons/twotone/pin.xml
deleted file mode 100644
index a50d074..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pin.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM16.84,12.38h-0.5v-1h0.46c0.33,0 0.88,-0.14 0.88,-0.72c0,-0.39 -0.31,-0.65 -0.75,-0.65c-0.5,0 -0.74,0.32 -0.85,0.64l-0.99,-0.41C15.2,9.9 15.68,9 16.94,9c1.09,0 1.54,0.64 1.62,0.75c0.33,0.5 0.28,1.16 0.02,1.57c-0.15,0.22 -0.32,0.38 -0.52,0.48v0.07c0.28,0.11 0.51,0.28 0.68,0.52c0.37,0.52 0.33,1.27 0.01,1.76C18.67,14.28 18.19,15 16.99,15c-0.04,0 -1.6,0.08 -2.05,-1.51l1.03,-0.41c0.02,0.1 0.19,0.86 1.02,0.86c0.41,0 0.89,-0.28 0.89,-0.77C17.88,12.62 17.4,12.38 16.84,12.38zM10.56,9.2c0.69,-0.33 1.48,-0.2 1.95,0.03c0.86,0.44 0.91,1.24 0.91,1.48c0,0.64 -0.31,1.26 -0.92,1.86c-0.25,0.25 -0.72,0.71 -1.4,1.39l0.03,0.05h2.37V15H9.61v-1.02c1.07,-1.07 1.77,-1.77 2.13,-2.15c0.4,-0.42 0.54,-0.69 0.54,-1.06c0,-0.4 -0.31,-0.72 -0.81,-0.72c-0.52,0 -0.8,0.39 -0.9,0.72l-1.01,-0.42C9.57,10.33 9.74,9.59 10.56,9.2zM6.77,9h0.87v6H6.49v-4.5l-0.9,0.66l-0.58,-0.89L6.77,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.49,10.5l0,4.5l1.15,0l0,-6l-0.87,0l-1.76,1.27l0.58,0.89z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.47,10.05c0.5,0 0.81,0.32 0.81,0.72c0,0.37 -0.14,0.64 -0.54,1.06c-0.36,0.38 -1.06,1.08 -2.13,2.15V15h3.89v-0.99h-2.37l-0.03,-0.05c0.68,-0.68 1.15,-1.14 1.4,-1.39c0.61,-0.6 0.92,-1.22 0.92,-1.86c0,-0.24 -0.05,-1.04 -0.91,-1.48C12.04,9 11.25,8.87 10.56,9.2c-0.82,0.39 -0.99,1.13 -1,1.15l1.01,0.42C10.67,10.44 10.95,10.05 11.47,10.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.99,13.94c-0.83,0 -0.99,-0.76 -1.02,-0.86l-1.03,0.41c0.45,1.59 2.01,1.51 2.05,1.51c1.2,0 1.68,-0.72 1.76,-0.85c0.32,-0.49 0.36,-1.24 -0.01,-1.76c-0.17,-0.24 -0.4,-0.41 -0.68,-0.52V11.8c0.2,-0.1 0.37,-0.26 0.52,-0.48c0.26,-0.41 0.31,-1.07 -0.02,-1.57C18.48,9.64 18.03,9 16.94,9c-1.26,0 -1.74,0.9 -1.85,1.24l0.99,0.41c0.11,-0.32 0.35,-0.64 0.85,-0.64c0.44,0 0.75,0.26 0.75,0.65c0,0.58 -0.55,0.72 -0.88,0.72h-0.46v1h0.5c0.56,0 1.04,0.24 1.04,0.79C17.88,13.66 17.4,13.94 16.99,13.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pin_drop.xml b/compose/material/material/icons/generator/raw-icons/twotone/pin_drop.xml
deleted file mode 100644
index adbc3c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pin_drop.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C9.19,3 6,5.11 6,9.13c0,2.68 2,5.49 6,8.44c4,-2.95 6,-5.77 6,-8.44C18,5.11 14.81,3 12,3z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c1.93,0 5,1.4 5,5.15c0,2.16 -1.72,4.67 -5,7.32c-3.28,-2.65 -5,-5.17 -5,-7.32C7,5.4 10.07,4 12,4M12,2C8.73,2 5,4.46 5,9.15c0,3.12 2.33,6.41 7,9.85c4.67,-3.44 7,-6.73 7,-9.85C19,4.46 15.27,2 12,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,7 12,7zM5,20h14v2H5V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pin_end.xml b/compose/material/material/icons/generator/raw-icons/twotone/pin_end.xml
deleted file mode 100644
index 070e4b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pin_end.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12V6H4v12h10l0,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h16c1.1,0 2,0.9 2,2v6H20zM19,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c1.66,0 3,-1.34 3,-3S20.66,14 19,14zM14.66,8H9v5.66l2.12,-2.12l2.83,2.83l1.41,-1.41l-2.83,-2.83L14.66,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pin_invoke.xml b/compose/material/material/icons/generator/raw-icons/twotone/pin_invoke.xml
deleted file mode 100644
index 6e78fb0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pin_invoke.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12v6c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h10l0,2H4v12h16v-6H22zM22,7c0,-1.66 -1.34,-3 -3,-3c-1.66,0 -3,1.34 -3,3s1.34,3 3,3C20.66,10 22,8.66 22,7zM11.47,12.12l-2.83,2.83l1.41,1.41l2.83,-2.83L15,15.66V10H9.34L11.47,12.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pinch.xml b/compose/material/material/icons/generator/raw-icons/twotone/pinch.xml
deleted file mode 100644
index dc6e3d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pinch.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,15.56l-4.24,-1.89H15V7.5C15,7.22 14.78,7 14.5,7S14,7.22 14,7.5v10.61l-4.17,-0.89l3.7,3.78h6.55L21,15.56z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6zM21.89,13.77l-3.8,-1.67C17.96,12.04 17.81,12 17.65,12H17V7.5C17,6.12 15.88,5 14.5,5S12,6.12 12,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L7,17.22l5.12,5.19C12.49,22.79 13,23 13.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C23.12,15.03 22.68,14.17 21.89,13.77zM20.08,21h-6.55l-3.7,-3.78L14,18.11V7.5C14,7.22 14.22,7 14.5,7S15,7.22 15,7.5v6.18h1.76L21,15.56L20.08,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pivot_table_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/pivot_table_chart.xml
deleted file mode 100644
index 2f455f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pivot_table_chart.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5c0,-1.1 -0.9,-2 -2,-2h-9v5h11V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19c0,1.1 0.9,2 2,2h3V10H3V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v3h5V3H5C3.9,3 3,3.9 3,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9l-4,4h3v2c0,1.1 -0.9,2 -2,2h-2v-3l-4,4l4,4v-3h2c2.21,0 4,-1.79 4,-4v-2h3L18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pix.xml b/compose/material/material/icons/generator/raw-icons/twotone/pix.xml
deleted file mode 100644
index a1fea47..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pix.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.45,16.52l-3.01,-3.01c-0.11,-0.11 -0.24,-0.13 -0.31,-0.13s-0.2,0.02 -0.31,0.13L8.8,16.53c-0.34,0.34 -0.87,0.89 -2.64,0.89l3.71,3.7c1.17,1.17 3.07,1.17 4.24,0l3.72,-3.71C16.92,17.41 16.16,17.23 15.45,16.52z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,7.47l3.02,3.02c0.08,0.08 0.2,0.13 0.31,0.13s0.23,-0.05 0.31,-0.13l2.99,-2.99c0.71,-0.74 1.52,-0.91 2.43,-0.91l-3.72,-3.71c-1.17,-1.17 -3.07,-1.17 -4.24,0l-3.71,3.7C7.95,6.58 8.49,7.16 8.8,7.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.11,9.85l-2.25,-2.26H17.6c-0.54,0 -1.08,0.22 -1.45,0.61l-3,3c-0.28,0.28 -0.65,0.42 -1.02,0.42c-0.36,0 -0.74,-0.15 -1.02,-0.42L8.09,8.17c-0.38,-0.38 -0.9,-0.6 -1.45,-0.6H5.17l-2.29,2.3c-1.17,1.17 -1.17,3.07 0,4.24l2.29,2.3h1.48c0.54,0 1.06,-0.22 1.45,-0.6l3.02,-3.02c0.28,-0.28 0.65,-0.42 1.02,-0.42c0.37,0 0.74,0.14 1.02,0.42l3.01,3.01c0.38,0.38 0.9,0.6 1.45,0.6h1.26l2.25,-2.26C22.3,12.96 22.3,11.04 21.11,9.85z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/place.xml b/compose/material/material/icons/generator/raw-icons/twotone/place.xml
deleted file mode 100644
index f14ca9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/place.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,10.2c0,2.57 -2.1,5.79 -6.16,9.51L12,20.01l-0.34,-0.31C7.6,15.99 5.5,12.77 5.5,10.2c0,-3.84 2.82,-6.7 6.5,-6.7S18.5,6.35 18.5,10.2z"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c4.2,0 8,3.22 8,8.2c0,3.32 -2.67,7.25 -8,11.8c-5.33,-4.55 -8,-8.48 -8,-11.8C4,5.22 7.8,2 12,2zM18,10.2C18,6.57 15.35,4 12,4s-6,2.57 -6,6.2c0,2.34 1.95,5.44 6,9.14C16.05,15.64 18,12.54 18,10.2zM12,12c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/plagiarism.xml b/compose/material/material/icons/generator/raw-icons/twotone/plagiarism.xml
deleted file mode 100644
index 4272f0a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/plagiarism.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4H6v16l12,0V9h-5V4zM13.97,11.03c1.12,1.12 1.31,2.8 0.59,4.13l1.88,1.88l-1.41,1.41l-1.88,-1.88c-1.33,0.71 -3.01,0.53 -4.13,-0.59c-1.37,-1.37 -1.37,-3.58 0,-4.95C10.39,9.66 12.61,9.66 13.97,11.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM18,20L6,20V4h7v5h5V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.03,11.03c-1.37,1.37 -1.37,3.58 0,4.95c1.12,1.12 2.8,1.31 4.13,0.59l1.88,1.88l1.41,-1.41l-1.88,-1.88c0.71,-1.33 0.53,-3.01 -0.59,-4.13C12.61,9.66 10.39,9.66 9.03,11.03zM12.56,14.56c-0.59,0.59 -1.54,0.59 -2.12,0c-0.59,-0.59 -0.59,-1.54 0,-2.12c0.59,-0.59 1.54,-0.59 2.12,0C13.15,13.03 13.15,13.97 12.56,14.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/play_arrow.xml b/compose/material/material/icons/generator/raw-icons/twotone/play_arrow.xml
deleted file mode 100644
index f141a94e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/play_arrow.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8.64v6.72L15.27,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,19l11,-7L8,5v14zM10,8.64L15.27,12 10,15.36L10,8.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/play_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/play_circle.xml
deleted file mode 100644
index c3a5e71..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/play_circle.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8c0,4.41 3.59,8 8,8s8,-3.59 8,-8C20,7.59 16.41,4 12,4zM9.5,16.5v-9l7,4.5L9.5,16.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8s8,3.59 8,8C20,16.41 16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,16.5l7,-4.5l-7,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/play_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/play_circle_filled.xml
deleted file mode 100644
index 2556bf53..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/play_circle_filled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c4.41,0 8,-3.59 8,-8s-3.59,-8 -8,-8 -8,3.59 -8,8 3.59,8 8,8zM10,7.5l6,4.5 -6,4.5v-9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,22c5.52,0 10,-4.48 10,-10S17.52,2 12,2 2,6.48 2,12s4.48,10 10,10zM12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8 -8,-3.59 -8,-8 3.59,-8 8,-8zM10,7.5v9l6,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/play_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/play_circle_outline.xml
deleted file mode 100644
index 09474e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/play_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.5l6,-4.5 -6,-4.5zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/play_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/play_disabled.xml
deleted file mode 100644
index 9ef7846..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/play_disabled.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12.83l0,2.53l1.55,-0.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22L8,10.83V19l4.99,-3.18l6.78,6.78l1.41,-1.41L2.81,2.81zM10,15.36v-2.53l1.55,1.55L10,15.36zM19,12L8,5v0.17l8.45,8.45L19,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/play_for_work.xml b/compose/material/material/icons/generator/raw-icons/twotone/play_for_work.xml
deleted file mode 100644
index 4a713b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/play_for_work.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5v5.59L7.5,10.59l4.5,4.5 4.5,-4.5L13,10.59L13,5h-2zM6,14c0,3.31 2.69,6 6,6s6,-2.69 6,-6h-2c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4L6,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/play_lesson.xml b/compose/material/material/icons/generator/raw-icons/twotone/play_lesson.xml
deleted file mode 100644
index ee2172a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/play_lesson.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4v7L9.5,9.5L7,11V4H5v16h6.29C11.1,19.37 11,18.7 11,18c0,-3.53 2.61,-6.43 6,-6.92V4H12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20V4h2v7l2.5,-1.5L12,11V4h5v7.08c0.33,-0.05 0.66,-0.08 1,-0.08s0.67,0.03 1,0.08V4c0,-1.1 -0.9,-2 -2,-2H5C3.9,2 3,2.9 3,4v16c0,1.1 0.9,2 2,2h7.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM16.75,20.5v-5l4,2.5L16.75,20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/playlist_add.xml
deleted file mode 100644
index 21a683b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18zM3,16h7v-2H3V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_check.xml b/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_check.xml
deleted file mode 100644
index b426cf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_check.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.59,11.93l-4.25,4.24l-2.12,-2.12l-1.41,1.41l3.53,3.54l5.66,-5.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_check_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_check_circle.xml
deleted file mode 100644
index 722d033..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_check_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8c4.41,0 8,-3.59 8,-8S16.41,4 12,4zM7,7h7v2H7V7zM7,10h7v2H7V10zM10,15H7v-2h3V15zM14.05,18.36l-2.83,-2.83l1.41,-1.41l1.41,1.41L17.59,12L19,13.41L14.05,18.36z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c4.41,0 8,3.59 8,8s-3.59,8 -8,8s-8,-3.59 -8,-8S7.59,4 12,4zM12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c5.52,0 10,-4.48 10,-10C22,6.48 17.52,2 12,2zM14,10H7v2h7V10zM14,7H7v2h7V7zM7,15h3v-2H7V15zM19,13.41L17.59,12l-3.54,3.54l-1.41,-1.41l-1.41,1.41l2.83,2.83L19,13.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_circle.xml
deleted file mode 100644
index d3745da..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/playlist_add_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM7,7h7v2H7V7zM10,15H7v-2h3V15zM7,12v-2h7v2H7zM17,15v2h-2v-2h-2v-2h2v-2h2v2h2v2H17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM14,10H7v2h7V10zM14,7H7v2h7V7zM7,15h3v-2H7V15zM19,13v2h-2v2h-2v-2h-2v-2h2v-2h2v2H19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/playlist_play.xml b/compose/material/material/icons/generator/raw-icons/twotone/playlist_play.xml
deleted file mode 100644
index 2ca0b97..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/playlist_play.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h11v2h-11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,14h7v2h-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13l0,8l6,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/playlist_remove.xml b/compose/material/material/icons/generator/raw-icons/twotone/playlist_remove.xml
deleted file mode 100644
index ff81cff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/playlist_remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,10H3v2h11V10zM14,6H3v2h11V6zM3,16h7v-2H3V16zM14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/plumbing.xml b/compose/material/material/icons/generator/raw-icons/twotone/plumbing.xml
deleted file mode 100644
index 724c184..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/plumbing.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.28,4.93l-2.12,-2.12c-0.78,-0.78 -2.05,-0.78 -2.83,0L11.5,5.64l2.12,2.12l2.12,-2.12l3.54,3.54C20.45,8 20.45,6.1 19.28,4.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.49,13.77c0.59,0.59 1.54,0.59 2.12,0l2.47,-2.47L7.96,9.17l-2.47,2.47C4.9,12.23 4.9,13.18 5.49,13.77L5.49,13.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18,-3.18C9.85,5.4 8.9,5.4 8.32,5.99c-0.59,0.59 -0.59,1.54 0,2.12l3.18,3.18L10.79,12l-6.36,6.36c-0.78,0.78 -0.78,2.05 0,2.83c0.78,0.78 2.05,0.78 2.83,0L16.45,12c0.39,0.39 1.02,0.39 1.41,0c0.39,-0.39 0.39,-1.02 0,-1.41L15.04,7.76z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/plus_one.xml b/compose/material/material/icons/generator/raw-icons/twotone/plus_one.xml
deleted file mode 100644
index ca5d41c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/plus_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8L8,8v4L4,12v2h4v4h2v-4h4v-2h-4L10,8zM14.5,6.08L14.5,7.9l2.5,-0.5L17,18h2L19,5l-4.5,1.08z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/podcasts.xml b/compose/material/material/icons/generator/raw-icons/twotone/podcasts.xml
deleted file mode 100644
index e8d43dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/podcasts.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,0.74 -0.4,1.38 -1,1.72V22h-2v-8.28c-0.6,-0.35 -1,-0.98 -1,-1.72c0,-1.1 0.9,-2 2,-2S14,10.9 14,12zM12,6c-3.31,0 -6,2.69 -6,6c0,1.74 0.75,3.31 1.94,4.4l1.42,-1.42C8.53,14.25 8,13.19 8,12c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.19 -0.53,2.25 -1.36,2.98l1.42,1.42C17.25,15.31 18,13.74 18,12C18,8.69 15.31,6 12,6zM12,2C6.48,2 2,6.48 2,12c0,2.85 1.2,5.41 3.11,7.24l1.42,-1.42C4.98,16.36 4,14.29 4,12c0,-4.41 3.59,-8 8,-8s8,3.59 8,8c0,2.29 -0.98,4.36 -2.53,5.82l1.42,1.42C20.8,17.41 22,14.85 22,12C22,6.48 17.52,2 12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/point_of_sale.xml b/compose/material/material/icons/generator/raw-icons/twotone/point_of_sale.xml
deleted file mode 100644
index f004fc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/point_of_sale.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,16h-1C8.22,16 8,15.78 8,15.5C8,15.22 8.22,15 8.5,15h1c0.28,0 0.5,0.22 0.5,0.5C10,15.78 9.78,16 9.5,16zM10,13.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1C8.22,13 8,13.22 8,13.5C8,13.78 8.22,14 8.5,14h1C9.78,14 10,13.78 10,13.5zM10,11.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1C8.22,11 8,11.22 8,11.5C8,11.78 8.22,12 8.5,12h1C9.78,12 10,11.78 10,11.5zM13,15.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5c0,0.28 0.22,0.5 0.5,0.5h1C12.78,16 13,15.78 13,15.5zM13,13.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5c0,0.28 0.22,0.5 0.5,0.5h1C12.78,14 13,13.78 13,13.5zM13,11.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5c0,0.28 0.22,0.5 0.5,0.5h1C12.78,12 13,11.78 13,11.5zM16,15.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5c0,0.28 0.22,0.5 0.5,0.5h1C15.78,16 16,15.78 16,15.5zM16,13.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5c0,0.28 0.22,0.5 0.5,0.5h1C15.78,14 16,13.78 16,13.5zM16,11.5c0,-0.28 -0.22,-0.5 -0.5,-0.5h-1c-0.28,0 -0.5,0.22 -0.5,0.5c0,0.28 0.22,0.5 0.5,0.5h1C15.78,12 16,11.78 16,11.5zM17,4H7v2h10V4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2H7C5.9,2 5,2.9 5,4v2c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V4C19,2.9 18.1,2 17,2zM17,6H7V4h10V6zM20,22H4c-1.1,0 -2,-0.9 -2,-2v-1h20v1C22,21.1 21.1,22 20,22zM18.53,10.19C18.21,9.47 17.49,9 16.7,9H7.3c-0.79,0 -1.51,0.47 -1.83,1.19L2,18h20L18.53,10.19zM9.5,16h-1C8.22,16 8,15.78 8,15.5C8,15.22 8.22,15 8.5,15h1c0.28,0 0.5,0.22 0.5,0.5C10,15.78 9.78,16 9.5,16zM9.5,14h-1C8.22,14 8,13.78 8,13.5C8,13.22 8.22,13 8.5,13h1c0.28,0 0.5,0.22 0.5,0.5C10,13.78 9.78,14 9.5,14zM9.5,12h-1C8.22,12 8,11.78 8,11.5C8,11.22 8.22,11 8.5,11h1c0.28,0 0.5,0.22 0.5,0.5C10,11.78 9.78,12 9.5,12zM12.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,15.78 12.78,16 12.5,16zM12.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,13.78 12.78,14 12.5,14zM12.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C13,11.78 12.78,12 12.5,12zM15.5,16h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,15.78 15.78,16 15.5,16zM15.5,14h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,13.78 15.78,14 15.5,14zM15.5,12h-1c-0.28,0 -0.5,-0.22 -0.5,-0.5c0,-0.28 0.22,-0.5 0.5,-0.5h1c0.28,0 0.5,0.22 0.5,0.5C16,11.78 15.78,12 15.5,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/policy.xml b/compose/material/material/icons/generator/raw-icons/twotone/policy.xml
deleted file mode 100644
index 73e761f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/policy.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6.3V11c0,4.52 2.98,8.69 7,9.93c1.74,-0.53 3.28,-1.62 4.47,-3.04l-1.72,-1.72c-1.94,1.29 -4.58,1.07 -6.29,-0.64c-1.95,-1.95 -1.95,-5.12 0,-7.07c1.95,-1.95 5.12,-1.95 7.07,0c1.71,1.71 1.92,4.35 0.64,6.29l1.45,1.45C18.49,14.65 19,12.85 19,11V6.3l-7,-3.11L5,6.3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12c0.65,-0.16 1.27,-0.38 1.87,-0.65c1.8,-0.82 3.36,-2.13 4.57,-3.74C20.04,16.46 21,13.77 21,11V5L12,1zM19,11c0,1.85 -0.51,3.65 -1.38,5.21l-1.45,-1.45c1.29,-1.94 1.07,-4.58 -0.64,-6.29c-1.95,-1.95 -5.12,-1.95 -7.07,0c-1.95,1.95 -1.95,5.12 0,7.07c1.71,1.71 4.35,1.92 6.29,0.64l1.72,1.72c-1.19,1.42 -2.73,2.51 -4.47,3.04C7.98,19.69 5,15.52 5,11V6.3l7,-3.11l7,3.11V11zM15,12c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,10.34 15,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/poll.xml b/compose/material/material/icons/generator/raw-icons/twotone/poll.xml
deleted file mode 100644
index 7ac08b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/poll.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM15,13h2v4h-2v-4zM11,7h2v10h-2L11,7zM7,10h2v7L7,17v-7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,10h2v7L7,17zM11,7h2v10h-2zM15,13h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/polyline.xml b/compose/material/material/icons/generator/raw-icons/twotone/polyline.xml
deleted file mode 100644
index c0c7553..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/polyline.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4h2v2h-2V4zM7,14H5v-2h2V14zM19,20h-2v-2h2V20z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,16v1.26l-6,-3v-3.17L11.7,8H16V2h-6v4.9L7.3,10H3v6h5l7,3.5V22h6v-6H15zM12,4h2v2h-2V4zM7,14H5v-2h2V14zM19,20h-2v-2h2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/polymer.xml b/compose/material/material/icons/generator/raw-icons/twotone/polymer.xml
deleted file mode 100644
index b7134f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/polymer.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4h-4L7.11,16.63 4.5,12 9,4H5L0.5,12 5,20h4l7.89,-12.63L19.5,12 15,20h4l4.5,-8L19,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pool.xml b/compose/material/material/icons/generator/raw-icons/twotone/pool.xml
deleted file mode 100644
index 7a94938..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pool.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,21c-1.11,0 -1.73,-0.37 -2.18,-0.64 -0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.46,0.27 -1.07,0.64 -2.18,0.64s-1.73,-0.37 -2.18,-0.64c-0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.46,0.27 -1.08,0.64 -2.19,0.64s-1.73,-0.37 -2.18,-0.64c-0.37,-0.23 -0.6,-0.36 -1.15,-0.36s-0.78,0.13 -1.15,0.36c-0.46,0.27 -1.08,0.64 -2.19,0.64v-2c0.56,0 0.78,-0.13 1.15,-0.36 0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.23 0.59,0.36 1.15,0.36 0.56,0 0.78,-0.13 1.15,-0.36 0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.23 0.59,0.36 1.15,0.36v2zM22,16.5c-1.11,0 -1.73,-0.37 -2.18,-0.64 -0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.45,0.27 -1.07,0.64 -2.18,0.64s-1.73,-0.37 -2.18,-0.64c-0.37,-0.22 -0.6,-0.36 -1.15,-0.36 -0.56,0 -0.78,0.13 -1.15,0.36 -0.45,0.27 -1.07,0.64 -2.18,0.64s-1.73,-0.37 -2.18,-0.64c-0.37,-0.22 -0.6,-0.36 -1.15,-0.36s-0.78,0.13 -1.15,0.36c-0.47,0.27 -1.09,0.64 -2.2,0.64v-2c0.56,0 0.78,-0.13 1.15,-0.36 0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36 0.56,0 0.78,-0.13 1.15,-0.36 0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.45,-0.27 1.07,-0.64 2.18,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36v2L22,16.5zM8.67,12c0.56,0 0.78,-0.13 1.15,-0.36 0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.12,-0.07 0.26,-0.15 0.41,-0.23L10.48,5C8.93,3.45 7.5,2.99 5,3v2.5c1.82,-0.01 2.89,0.39 4,1.5l1,1 -3.25,3.25c0.31,0.12 0.56,0.27 0.77,0.39 0.37,0.23 0.59,0.36 1.15,0.36z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16.5h-0.02,0.02zM10,8l-3.25,3.25c0.31,0.12 0.56,0.27 0.77,0.39 0.37,0.23 0.59,0.36 1.15,0.36s0.78,-0.13 1.15,-0.36c0.46,-0.27 1.08,-0.64 2.19,-0.64s1.73,0.37 2.18,0.64c0.37,0.22 0.6,0.36 1.15,0.36 0.55,0 0.78,-0.13 1.15,-0.36 0.12,-0.07 0.26,-0.15 0.41,-0.23L10.48,5C8.93,3.45 7.5,2.99 5,3v2.5c1.82,-0.01 2.89,0.39 4,1.5l1,1zM5.35,15.5c0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.06,0.63 2.16,0.64v-2c-0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.6,0.36 -1.15,0.36s-0.78,-0.14 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.18,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36v2c1.11,0 1.73,-0.37 2.2,-0.64 0.37,-0.23 0.6,-0.36 1.15,-0.36zM18.67,18c-1.11,0 -1.73,0.37 -2.18,0.64 -0.37,0.23 -0.6,0.36 -1.15,0.36 -0.55,0 -0.78,-0.14 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36s-0.78,-0.13 -1.15,-0.36c-0.45,-0.27 -1.07,-0.64 -2.18,-0.64s-1.73,0.37 -2.19,0.64c-0.37,0.23 -0.59,0.36 -1.15,0.36v2c1.11,0 1.73,-0.37 2.19,-0.64 0.37,-0.23 0.6,-0.36 1.15,-0.36 0.55,0 0.78,0.13 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.73,-0.37 2.19,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64s1.72,-0.37 2.18,-0.64c0.37,-0.23 0.59,-0.36 1.15,-0.36 0.55,0 0.78,0.14 1.15,0.36 0.45,0.27 1.07,0.64 2.18,0.64v-2c-0.56,0 -0.78,-0.13 -1.15,-0.36 -0.45,-0.27 -1.07,-0.64 -2.18,-0.64z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/portable_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/portable_wifi_off.xml
deleted file mode 100644
index c458786..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/portable_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.42,2.36L2.01,3.78 4.1,5.87C2.79,7.57 2,9.69 2,12c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,17.53 4,14.96 4,12c0,-1.76 0.57,-3.38 1.53,-4.69l1.43,1.44C6.36,9.68 6,10.8 6,12c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-0.65 0.17,-1.25 0.44,-1.79l1.58,1.58L10,12c0,1.1 0.9,2 2,2l0.21,-0.02 7.52,7.52 1.41,-1.41L3.42,2.36zM17.71,13.82c0.18,-0.57 0.29,-1.19 0.29,-1.82 0,-3.31 -2.69,-6 -6,-6 -0.63,0 -1.25,0.11 -1.82,0.29l1.72,1.72c0.03,0 0.06,-0.01 0.1,-0.01 2.21,0 4,1.79 4,4 0,0.04 -0.01,0.07 -0.01,0.11l1.72,1.71zM12,4c4.42,0 8,3.58 8,8 0,1.2 -0.29,2.32 -0.77,3.35l1.49,1.49C21.53,15.4 22,13.76 22,12c0,-5.52 -4.48,-10 -10,-10 -1.76,0 -3.4,0.48 -4.84,1.28l1.48,1.48C9.66,4.28 10.8,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/portrait.xml b/compose/material/material/icons/generator/raw-icons/twotone/portrait.xml
deleted file mode 100644
index 6bcbd03..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/portrait.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM12,6c1.65,0 3,1.35 3,3s-1.35,3 -3,3 -3,-1.35 -3,-3 1.35,-3 3,-3zM6,16.58C6,14.08 9.97,13 12,13s6,1.08 6,3.58L18,18L6,18v-1.42z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3 -3,1.35 -3,3 1.35,3 3,3zM12,8c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM18,16.58c0,-2.5 -3.97,-3.58 -6,-3.58s-6,1.08 -6,3.58L6,18h12v-1.42zM8.48,16c0.74,-0.51 2.23,-1 3.52,-1s2.78,0.49 3.52,1L8.48,16zM19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/post_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/post_add.xml
deleted file mode 100644
index cd06c37..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/post_add.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,19.22H5V7h7V5H5C3.9,5 3,5.9 3,7v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-7h-2V19.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h-2v3h-3c0.01,0.01 0,2 0,2h3v2.99c0.01,0.01 2,0 2,0V7h3V5h-3V2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l0,2l8,0l0,-2l-3,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/power.xml b/compose/material/material/icons/generator/raw-icons/twotone/power.xml
deleted file mode 100644
index a4a2d94..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/power.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13.65l3.5,3.52V19h1v-1.83l3.5,-3.51V9H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7L16,3h-2v4h-4L10,3L8,3v4h-0.01C6.89,7 6,7.89 6,8.98v5.52L9.5,18v3h5v-3l3.5,-3.5L18,9c0,-1.1 -0.9,-2 -2,-2zM16,13.66l-3.5,3.51L12.5,19h-1v-1.83L8,13.65L8,9h8v4.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/power_input.xml b/compose/material/material/icons/generator/raw-icons/twotone/power_input.xml
deleted file mode 100644
index 0d03496..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/power_input.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,9v2h19L21,9L2,9zM2,15h5v-2L2,13v2zM9,15h5v-2L9,13v2zM16,15h5v-2h-5v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/power_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/power_off.xml
deleted file mode 100644
index c82da23..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/power_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.12,9L16,12.88L16,9zM11.5,17.17L11.5,19h1v-1.83l1.07,-1.06L8,10.54v3.11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3L8,3v1.88l2,2zM16,9v3.88l1.8,1.8 0.2,-0.2L18,9c0,-1.1 -0.9,-2 -2,-2L16,3h-2v4h-3.88l2,2L16,9zM4.12,3.84L2.71,5.25 6,8.54v5.96L9.5,18v3h5v-3l0.48,-0.48 4.47,4.47 1.41,-1.41L4.12,3.84zM12.5,17.17L12.5,19h-1v-1.83L8,13.65v-3.11l5.57,5.57 -1.07,1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/power_settings_new.xml b/compose/material/material/icons/generator/raw-icons/twotone/power_settings_new.xml
deleted file mode 100644
index 7495b98..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/power_settings_new.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3h-2v10h2L13,3zM17.83,5.17l-1.42,1.42C17.99,7.86 19,9.81 19,12c0,3.87 -3.13,7 -7,7s-7,-3.13 -7,-7c0,-2.19 1.01,-4.14 2.58,-5.42L6.17,5.17C4.23,6.82 3,9.26 3,12c0,4.97 4.03,9 9,9s9,-4.03 9,-9c0,-2.74 -1.23,-5.18 -3.17,-6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/precision_manufacturing.xml b/compose/material/material/icons/generator/raw-icons/twotone/precision_manufacturing.xml
deleted file mode 100644
index e628abf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/precision_manufacturing.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.71,10l2.46,8l1.94,0l-4.3,-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,7m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33,-2.33l3.6,1.68c0.38,0.18 0.82,0.01 1,-0.36c0.18,-0.38 0.01,-0.82 -0.36,-1l-3.92,-1.83c-0.38,-0.18 -0.83,-0.1 -1.13,0.2L13.78,4.4C13.6,4.16 13.32,4 13,4c-0.55,0 -1,0.45 -1,1v1H8.82C8.4,4.84 7.3,4 6,4C4.34,4 3,5.34 3,7c0,1.1 0.6,2.05 1.48,2.58L7.08,18H6c-1.1,0 -2,0.9 -2,2v1h13v-1c0,-1.1 -0.9,-2 -2,-2h-1.62L8.41,8.77C8.58,8.53 8.72,8.28 8.82,8H12v1c0,0.55 0.45,1 1,1c0.32,0 0.6,-0.16 0.78,-0.4l1.74,1.74c0.3,0.3 0.75,0.38 1.13,0.2l3.92,-1.83c0.38,-0.18 0.54,-0.62 0.36,-1C20.75,8.34 20.31,8.17 19.93,8.35zM6,8C5.45,8 5,7.55 5,7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C7,7.55 6.55,8 6,8zM11.11,18H9.17l-2.46,-8h0.1L11.11,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/pregnant_woman.xml b/compose/material/material/icons/generator/raw-icons/twotone/pregnant_woman.xml
deleted file mode 100644
index 2c3319f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/pregnant_woman.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2 -0.89,2 -2,2 -2,-0.89 -2,-2zM16,13c-0.01,-1.34 -0.83,-2.51 -2,-3 0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3v7h2v5h3v-5h3v-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/present_to_all.xml b/compose/material/material/icons/generator/raw-icons/twotone/present_to_all.xml
deleted file mode 100644
index b034dc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/present_to_all.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19.02h18V4.98H3v14.04zM12,8l4,4h-2v4h-4v-4H8l4,-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4v-4h2l-4,-4 -4,4h2zM21,3L3,3c-1.11,0 -2,0.89 -2,2v14c0,1.11 0.89,2 2,2h18c1.11,0 2,-0.89 2,-2L23,5c0,-1.11 -0.89,-2 -2,-2zM21,19.02L3,19.02L3,4.98h18v14.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/preview.xml b/compose/material/material/icons/generator/raw-icons/twotone/preview.xml
deleted file mode 100644
index d2b9732..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/preview.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V7h14V19zM12,10.5c1.84,0 3.48,0.96 4.34,2.5c-0.86,1.54 -2.5,2.5 -4.34,2.5S8.52,14.54 7.66,13C8.52,11.46 10.16,10.5 12,10.5M12,9c-2.73,0 -5.06,1.66 -6,4c0.94,2.34 3.27,4 6,4s5.06,-1.66 6,-4C17.06,10.66 14.73,9 12,9L12,9zM12,14.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,14.5 12,14.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM12,10.5c1.84,0 3.48,0.96 4.34,2.5c-0.86,1.54 -2.5,2.5 -4.34,2.5S8.52,14.54 7.66,13C8.52,11.46 10.16,10.5 12,10.5M12,9c-2.73,0 -5.06,1.66 -6,4c0.94,2.34 3.27,4 6,4s5.06,-1.66 6,-4C17.06,10.66 14.73,9 12,9L12,9zM12,14.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S12.83,14.5 12,14.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/price_change.xml b/compose/material/material/icons/generator/raw-icons/twotone/price_change.xml
deleted file mode 100644
index 4d7c362..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/price_change.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM16,8l2,2h-4L16,8zM18,14.25l-2,2l-2,-2H18zM6,14h4v-1H7c-0.55,0 -1,-0.45 -1,-1V9c0,-0.55 0.45,-1 1,-1h1V7h2v1h2v2H8v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1H8v-1H6V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V6C22,4.89 21.11,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1H8v-1h4V8h-2V7H8v1H7C6.45,8 6,8.45 6,9v3c0,0.55 0.45,1 1,1h3v1H6v2h2V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8l-2,2l4,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14.25l-4,0l2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/price_check.xml b/compose/material/material/icons/generator/raw-icons/twotone/price_check.xml
deleted file mode 100644
index 02e78c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/price_check.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13V9c0,-0.55 -0.45,-1 -1,-1H6V6h5V4H8.5V3h-2v1H5C4.45,4 4,4.45 4,5v4c0,0.55 0.45,1 1,1h4v2H4v2h2.5v1h2v-1H10C10.55,14 11,13.55 11,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.59,12.52l-5.66,5.65l-2.83,-2.83l-1.41,1.42l4.24,4.24l7.07,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/print.xml b/compose/material/material/icons/generator/raw-icons/twotone/print.xml
deleted file mode 100644
index f51b432..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/print.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5h8v3H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-1L18,3L6,3v5L5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12v-4h4v-6c0,-1.66 -1.34,-3 -3,-3zM8,5h8v3L8,8L8,5zM16,19L8,19v-4h8v4zM20,15h-2v-2L6,13v2L4,15v-4c0,-0.55 0.45,-1 1,-1h14c0.55,0 1,0.45 1,1v4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13h12v2h2v-4c0,-0.55 -0.45,-1 -1,-1L5,10c-0.55,0 -1,0.45 -1,1v4h2v-2zM18,10.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/print_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/print_disabled.xml
deleted file mode 100644
index d5398ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/print_disabled.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10H5c-0.55,0 -1,0.45 -1,1v4h2v-2h4l-3,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.6L0,3.01 5,8c-1.66,0 -3,1.34 -3,3v6h4v4h12l2.95,2.96 1.41,-1.41L1.41,1.6zM6,15L4,15v-4c0,-0.55 0.45,-1 1,-1h2l3,3L6,13v2zM8,19v-4h4l4,4L8,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,15.01l2,-0.01v-4c0,-0.55 -0.45,-1 -1,-1h-6.34l3,3L18,13v2.01zM17,11.51c0,-0.55 0.45,-1 1,-1s1,0.45 1,1 -0.45,1 -1,1 -1,-0.45 -1,-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.51m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5H8v0.35L10.66,8H16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h-1V3H6v0.36l2,2V5h8v3h-5.34l2,2H19c0.55,0 1,0.45 1,1v4l-2,0.01V13h-2.34l4,4H22v-6c0,-1.66 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/priority_high.xml b/compose/material/material/icons/generator/raw-icons/twotone/priority_high.xml
deleted file mode 100644
index fd4a832..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/priority_high.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/privacy_tip.xml b/compose/material/material/icons/generator/raw-icons/twotone/privacy_tip.xml
deleted file mode 100644
index 2704f02..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/privacy_tip.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3.19L5,6.3V11c0,4.52 2.98,8.69 7,9.93c4.02,-1.23 7,-5.41 7,-9.93V6.3L12,3.19zM13,17h-2v-6h2V17zM13,9h-2V7h2V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3.19l7,3.11V11c0,4.52 -2.98,8.69 -7,9.93C7.98,19.69 5,15.52 5,11V6.3L12,3.19M12,1L3,5v6c0,5.55 3.84,10.74 9,12c5.16,-1.26 9,-6.45 9,-12V5L12,1L12,1zM11,7h2v2h-2V7zM11,11h2v6h-2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/private_connectivity.xml b/compose/material/material/icons/generator/raw-icons/twotone/private_connectivity.xml
deleted file mode 100644
index 7801637..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/private_connectivity.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7zM15,14.5c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1v-1c0,-1.21 1.08,-2.18 2.34,-1.97C13.32,7.69 14,8.61 14,9.61v0.89c0.55,0 1,0.45 1,1V14.5zM12.75,13c0,0.41 -0.34,0.75 -0.75,0.75s-0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75S12.75,12.59 12.75,13zM13,9.5v1h-2v-1c0,-0.55 0.45,-1 1,-1S13,8.95 13,9.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5s-2.24,5 -5,5s-5,-2.24 -5,-5S9.24,7 12,7zM5.07,13c0.49,3.39 3.4,6 6.93,6c3.53,0 6.44,-2.61 6.93,-6L22,13v-2l-3.07,0c-0.49,-3.39 -3.4,-6 -6.93,-6l0,0c-3.53,0 -6.44,2.61 -6.93,6c0,0 -3.07,0 -3.07,0v2L5.07,13zM14,10.5V9.61c0,-1 -0.68,-1.92 -1.66,-2.08C11.08,7.32 10,8.29 10,9.5v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C15,10.95 14.55,10.5 14,10.5zM12,13.75c-0.41,0 -0.75,-0.34 -0.75,-0.75c0,-0.41 0.34,-0.75 0.75,-0.75s0.75,0.34 0.75,0.75C12.75,13.41 12.41,13.75 12,13.75zM13,10.5h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/production_quantity_limits.xml b/compose/material/material/icons/generator/raw-icons/twotone/production_quantity_limits.xml
deleted file mode 100644
index 125519b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/production_quantity_limits.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h-2V8h2V10zM13,6h-2V1h2V6zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2H7L8.1,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/propane.xml b/compose/material/material/icons/generator/raw-icons/twotone/propane.xml
deleted file mode 100644
index 6b1305f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/propane.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8H7c-2.21,0 -4,1.79 -4,4s1.79,4 4,4h10c2.21,0 4,-1.79 4,-4S19.21,8 17,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6h-1V5c0,-1.1 -0.9,-2 -2,-2h-4C8.9,3 8,3.9 8,5v1H7c-3.31,0 -6,2.69 -6,6s2.69,6 6,6v3h2v-3h6v3h2v-3c3.31,0 6,-2.69 6,-6S20.31,6 17,6zM10,5h4v1h-4V5zM17,16H7c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h10c2.21,0 4,1.79 4,4S19.21,16 17,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/propane_tank.xml b/compose/material/material/icons/generator/raw-icons/twotone/propane_tank.xml
deleted file mode 100644
index 5602b7a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/propane_tank.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2v-3H6V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,8H8c-1.1,0 -2,0.9 -2,2v3h12v-3C18,8.9 17.1,8 16,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6.14V4c0,-1.1 -0.9,-2 -2,-2H9C7.9,2 7,2.9 7,4v2.14c-1.72,0.45 -3,2 -3,3.86v8c0,2.21 1.79,4 4,4h8c2.21,0 4,-1.79 4,-4v-8C20,8.14 18.72,6.59 17,6.14zM9,4h6v2h-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1H9V4zM18,18c0,1.1 -0.9,2 -2,2H8c-1.1,0 -2,-0.9 -2,-2v-3h12V18zM18,13H6v-3c0,-1.1 0.9,-2 2,-2h8c1.1,0 2,0.9 2,2V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/psychology.xml b/compose/material/material/icons/generator/raw-icons/twotone/psychology.xml
deleted file mode 100644
index 1dd8635..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/psychology.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5c-2.65,0 -4.79,2.06 -4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89,-0.43C16.71,13.88 18,12.09 18,10C18,7.24 15.76,5 13,5zM16.82,8.95l-0.85,0.66C15.99,9.73 16,9.86 16,10c0,0.13 -0.01,0.26 -0.02,0.39l0.83,0.66c0.08,0.06 0.1,0.16 0.05,0.25l-0.8,1.39c-0.05,0.09 -0.16,0.12 -0.24,0.09l-0.99,-0.4c-0.21,0.16 -0.43,0.29 -0.67,0.39L14,13.83c-0.01,0.1 -0.1,0.17 -0.2,0.17h-1.6c-0.1,0 -0.18,-0.07 -0.2,-0.17l-0.15,-1.06c-0.25,-0.1 -0.47,-0.23 -0.68,-0.39l-0.99,0.4c-0.09,0.03 -0.2,0 -0.25,-0.09l-0.8,-1.39c-0.05,-0.08 -0.03,-0.19 0.05,-0.25l0.84,-0.66C10.01,10.26 10,10.13 10,10c0,-0.13 0.02,-0.27 0.04,-0.39L9.19,8.95c-0.08,-0.06 -0.1,-0.16 -0.05,-0.26l0.8,-1.38c0.05,-0.09 0.15,-0.12 0.24,-0.09l1,0.4c0.2,-0.15 0.43,-0.29 0.67,-0.39l0.15,-1.06C12.02,6.07 12.1,6 12.2,6h1.6c0.1,0 0.18,0.07 0.2,0.17l0.15,1.06c0.24,0.1 0.46,0.23 0.67,0.39l1,-0.4c0.09,-0.03 0.2,0 0.24,0.09l0.8,1.38C16.91,8.78 16.89,8.89 16.82,8.95z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.82,7.22l-1,0.4c-0.21,-0.16 -0.43,-0.29 -0.67,-0.39L14,6.17C13.98,6.07 13.9,6 13.8,6h-1.6c-0.1,0 -0.18,0.07 -0.19,0.17l-0.15,1.06c-0.24,0.1 -0.47,0.23 -0.67,0.39l-1,-0.4c-0.09,-0.03 -0.2,0 -0.24,0.09l-0.8,1.38c-0.05,0.09 -0.03,0.2 0.05,0.26l0.85,0.66C10.02,9.73 10,9.87 10,10c0,0.13 0.01,0.26 0.03,0.39l-0.84,0.66c-0.08,0.06 -0.1,0.17 -0.05,0.25l0.8,1.39c0.05,0.09 0.15,0.12 0.25,0.09l0.99,-0.4c0.21,0.16 0.43,0.29 0.68,0.39L12,13.83c0.02,0.1 0.1,0.17 0.2,0.17h1.6c0.1,0 0.18,-0.07 0.2,-0.17l0.15,-1.06c0.24,-0.1 0.47,-0.23 0.67,-0.39l0.99,0.4c0.09,0.04 0.2,0 0.24,-0.09l0.8,-1.39c0.05,-0.09 0.03,-0.19 -0.05,-0.25l-0.83,-0.66C15.99,10.26 16,10.13 16,10c0,-0.14 -0.01,-0.27 -0.03,-0.39l0.85,-0.66c0.08,-0.06 0.1,-0.17 0.05,-0.26l-0.8,-1.38C16.02,7.22 15.91,7.19 15.82,7.22zM13,11.43c-0.79,0 -1.43,-0.64 -1.43,-1.43S12.21,8.57 13,8.57s1.43,0.64 1.43,1.43S13.79,11.43 13,11.43z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,9.06c-0.43,-3.27 -3.23,-5.86 -6.53,-6.05C13.27,3 13.14,3 13,3C9.47,3 6.57,5.61 6.08,9l-1.93,3.48C3.74,13.14 4.22,14 5,14h1v2c0,1.1 0.9,2 2,2h1v3h7v-4.68C18.62,15.07 20.35,12.24 19.94,9.06zM14.89,14.63L14,15.05V19h-3v-3H8v-4H6.7l1.33,-2.33C8.21,7.06 10.35,5 13,5c2.76,0 5,2.24 5,5C18,12.09 16.71,13.88 14.89,14.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/psychology_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/psychology_alt.xml
deleted file mode 100644
index 0a6ede5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/psychology_alt.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5c-2.65,0 -4.79,2.06 -4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89,-0.42C16.71,13.88 18,12.09 18,10C18,7.24 15.76,5 13,5zM12.5,14c-0.41,0 -0.74,-0.33 -0.74,-0.74c0,-0.41 0.33,-0.73 0.74,-0.73c0.41,0 0.73,0.32 0.73,0.73C13.23,13.67 12.92,14 12.5,14zM14.26,9.68c-0.44,0.65 -0.86,0.85 -1.09,1.27c-0.09,0.17 -0.13,0.28 -0.13,0.82h-1.06c0,-0.29 -0.04,-0.75 0.18,-1.16c0.28,-0.51 0.83,-0.81 1.14,-1.26c0.33,-0.47 0.15,-1.36 -0.8,-1.36c-0.62,0 -0.92,0.47 -1.05,0.86l-0.96,-0.4C10.76,7.67 11.46,7 12.5,7c0.86,0 1.45,0.39 1.75,0.88C14.51,8.31 14.66,9.1 14.26,9.68z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.94,9.06C19.5,5.73 16.57,3 13,3C9.47,3 6.57,5.61 6.08,9l-1.93,3.48C3.74,13.14 4.22,14 5,14h1l0,2c0,1.1 0.9,2 2,2h1v3h7l0,-4.68C18.62,15.07 20.35,12.24 19.94,9.06zM14.89,14.63L14,15.05V19h-3v-3H8v-4H6.7l1.33,-2.33C8.21,7.06 10.35,5 13,5c2.76,0 5,2.24 5,5C18,12.09 16.71,13.88 14.89,14.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.54c-0.41,0 -0.74,0.31 -0.74,0.73c0,0.41 0.33,0.74 0.74,0.74c0.42,0 0.73,-0.33 0.73,-0.74C13.23,12.85 12.92,12.54 12.5,12.54z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7c-1.03,0 -1.74,0.67 -2,1.45l0.96,0.4c0.13,-0.39 0.43,-0.86 1.05,-0.86c0.95,0 1.13,0.89 0.8,1.36c-0.32,0.45 -0.86,0.75 -1.14,1.26c-0.23,0.4 -0.18,0.87 -0.18,1.16h1.06c0,-0.55 0.04,-0.65 0.13,-0.82c0.23,-0.42 0.65,-0.62 1.09,-1.27c0.4,-0.59 0.25,-1.38 -0.01,-1.8C13.95,7.39 13.36,7 12.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/public.xml b/compose/material/material/icons/generator/raw-icons/twotone/public.xml
deleted file mode 100644
index 403051e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/public.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.99,4.59V5c0,1.1 -0.9,2 -2,2h-2v2c0,0.55 -0.45,1 -1,1h-2v2h6c0.55,0 1,0.45 1,1v3h1c0.89,0 1.64,0.59 1.9,1.4C19.19,15.98 20,14.08 20,12c0,-3.35 -2.08,-6.23 -5.01,-7.41zM8.99,16v-1l-4.78,-4.78C4.08,10.79 4,11.39 4,12c0,4.07 3.06,7.43 6.99,7.93V18c-1.1,0 -2,-0.9 -2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM10.99,19.93C7.06,19.43 4,16.07 4,12c0,-0.61 0.08,-1.21 0.21,-1.78L8.99,15v1c0,1.1 0.9,2 2,2v1.93zM17.89,17.4c-0.26,-0.81 -1,-1.4 -1.9,-1.4h-1v-3c0,-0.55 -0.45,-1 -1,-1h-6v-2h2c0.55,0 1,-0.45 1,-1L10.99,7h2c1.1,0 2,-0.9 2,-2v-0.41C17.92,5.77 20,8.65 20,12c0,2.08 -0.81,3.98 -2.11,5.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/public_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/public_off.xml
deleted file mode 100644
index 4e6e0f1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/public_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17l7.88,7.88C19.59,14.87 20,13.48 20,12c0,-3.35 -2.07,-6.22 -5,-7.41V5c0,1.1 -0.9,2 -2,2h-2V8.17zM11,18c-1.1,0 -2,-0.9 -2,-2v-1l-4.79,-4.79C4.08,10.79 4,11.38 4,12c0,4.08 3.05,7.44 7,7.93V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8.17L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.87 20,13.48 20,12c0,-3.35 -2.07,-6.22 -5,-7.41V5c0,1.1 -0.9,2 -2,2h-2V8.17zM21.19,21.19l-1.41,1.41l-2.27,-2.27C15.93,21.39 14.04,22 12,22C6.48,22 2,17.52 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41L21.19,21.19zM11,18c-1.1,0 -2,-0.9 -2,-2v-1l-4.79,-4.79C4.08,10.79 4,11.38 4,12c0,4.08 3.05,7.44 7,7.93V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/publish.xml b/compose/material/material/icons/generator/raw-icons/twotone/publish.xml
deleted file mode 100644
index 15f6a63..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/publish.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,12H11v6h2v-6h1.17L12,9.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,4h14v2L5,6zM12,7l-7,7h4v6h6v-6h4l-7,-7zM13,12v6h-2v-6L9.83,12L12,9.83 14.17,12L13,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/published_with_changes.xml b/compose/material/material/icons/generator/raw-icons/twotone/published_with_changes.xml
deleted file mode 100644
index 2c3609b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/published_with_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,9.53l-7.07,7.07l-4.24,-4.24l1.41,-1.41l2.83,2.83l5.66,-5.66L17.66,9.53zM4,12c0,-2.33 1.02,-4.42 2.62,-5.88L9,8.5v-6H3l2.2,2.2C3.24,6.52 2,9.11 2,12c0,5.19 3.95,9.45 9,9.95v-2.02C7.06,19.44 4,16.07 4,12zM22,12c0,-5.19 -3.95,-9.45 -9,-9.95v2.02c3.94,0.49 7,3.86 7,7.93c0,2.33 -1.02,4.42 -2.62,5.88L15,15.5v6h6l-2.2,-2.2C20.76,17.48 22,14.89 22,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/punch_clock.xml b/compose/material/material/icons/generator/raw-icons/twotone/punch_clock.xml
deleted file mode 100644
index ca04967..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/punch_clock.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,3h8v3h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,20h14V8H5V20zM12,9c2.76,0 5,2.24 5,5s-2.24,5 -5,5c-2.76,0 -5,-2.24 -5,-5S9.24,9 12,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6h-1V1H6v5H5C3.9,6 3,6.9 3,8v12c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V8C21,6.9 20.1,6 19,6zM8,3h8v3H8V3zM19,20H5V8h14V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5c-2.76,0 -5,2.24 -5,5S9.24,19 12,19zM12,10.5c1.93,0 3.5,1.57 3.5,3.5s-1.57,3.5 -3.5,3.5S8.5,15.93 8.5,14S10.07,10.5 12,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.85,15.14l-1.35,-1.35l0,-2.29l-1,0l0,2.71l1.64,1.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/push_pin.xml b/compose/material/material/icons/generator/raw-icons/twotone/push_pin.xml
deleted file mode 100644
index f702c08..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/push_pin.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4h-4v5c0,1.1 -0.35,2.14 -1,3h6c-0.63,-0.84 -1,-1.88 -1,-3V4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12c-1.66,0 -3,-1.34 -3,-3V4l1,0c0,0 0,0 0,0c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1H7C6.45,2 6,2.45 6,3s0.45,1 1,1c0,0 0,0 0,0l1,0v5c0,1.66 -1.34,3 -3,3v2h5.97v7l1,1l1,-1v-7H19L19,12C19,12 19,12 19,12zM9,12c0.65,-0.86 1,-1.9 1,-3V4h4v5c0,1.12 0.37,2.16 1,3H9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/qr_code.xml b/compose/material/material/icons/generator/raw-icons/twotone/qr_code.xml
deleted file mode 100644
index cd075dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/qr_code.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5h4v4h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,17h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,13h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/qr_code_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/qr_code_2.xml
deleted file mode 100644
index 6918603..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/qr_code_2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21h-2v-2h2V21zM13,14h-2v5h2V14zM21,12h-2v4h2V12zM19,10h-2v2h2V10zM7,12H5v2h2V12zM5,10H3v2h2V10zM12,5h2V3h-2V5zM4.5,4.5v3h3v-3H4.5zM9,9H3V3h6V9zM4.5,16.5v3h3v-3H4.5zM9,21H3v-6h6V21zM16.5,4.5v3h3v-3H16.5zM21,9h-6V3h6V9zM19,19v-3l-4,0v2h2v3h4v-2H19zM17,12l-4,0v2h4V12zM13,10H7v2h2v2h2v-2h2V10zM14,9V7h-2V5h-2v4L14,9zM6.75,5.25h-1.5v1.5h1.5V5.25zM6.75,17.25h-1.5v1.5h1.5V17.25zM18.75,5.25h-1.5v1.5h1.5V5.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/qr_code_scanner.xml b/compose/material/material/icons/generator/raw-icons/twotone/qr_code_scanner.xml
deleted file mode 100644
index 597e8d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/qr_code_scanner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,6.5v3h-3v-3H9.5M11,5H5v6h6V5L11,5zM9.5,14.5v3h-3v-3H9.5M11,13H5v6h6V13L11,13zM17.5,6.5v3h-3v-3H17.5M19,5h-6v6h6V5L19,5zM13,13h1.5v1.5H13V13zM14.5,14.5H16V16h-1.5V14.5zM16,13h1.5v1.5H16V13zM13,16h1.5v1.5H13V16zM14.5,17.5H16V19h-1.5V17.5zM16,16h1.5v1.5H16V16zM17.5,14.5H19V16h-1.5V14.5zM17.5,17.5H19V19h-1.5V17.5zM22,7h-2V4h-3V2h5V7zM22,22v-5h-2v3h-3v2H22zM2,22h5v-2H4v-3H2V22zM2,2v5h2V4h3V2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/query_builder.xml b/compose/material/material/icons/generator/raw-icons/twotone/query_builder.xml
deleted file mode 100644
index f3824e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/query_builder.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM16.25,16.15L11,13L11,7h1.5v5.25l4.5,2.67 -0.75,1.23z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/query_stats.xml b/compose/material/material/icons/generator/raw-icons/twotone/query_stats.xml
deleted file mode 100644
index 736d761..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/query_stats.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.88,18.47c0.44,-0.7 0.7,-1.51 0.7,-2.39c0,-2.49 -2.01,-4.5 -4.5,-4.5s-4.5,2.01 -4.5,4.5s2.01,4.5 4.49,4.5c0.88,0 1.7,-0.26 2.39,-0.7L21.58,23L23,21.58L19.88,18.47zM16.08,18.58c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5s2.5,1.12 2.5,2.5C18.58,17.46 17.46,18.58 16.08,18.58zM15.72,10.08c-0.74,0.02 -1.45,0.18 -2.1,0.45l-0.55,-0.83l-3.8,6.18l-3.01,-3.52l-3.63,5.81L1,17l5,-8l3,3.5L13,6C13,6 15.72,10.08 15.72,10.08zM18.31,10.58c-0.64,-0.28 -1.33,-0.45 -2.05,-0.49c0,0 5.12,-8.09 5.12,-8.09L23,3.18L18.31,10.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/question_answer.xml b/compose/material/material/icons/generator/raw-icons/twotone/question_answer.xml
deleted file mode 100644
index 778520b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/question_answer.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11V4H4v8.17l0.59,-0.58 0.58,-0.59H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6h-2v9L6,15v2c0,0.55 0.45,1 1,1h11l4,4L22,7c0,-0.55 -0.45,-1 -1,-1zM16,13c0.55,0 1,-0.45 1,-1L17,3c0,-0.55 -0.45,-1 -1,-1L3,2c-0.55,0 -1,0.45 -1,1v14l4,-4h10zM4.59,11.59l-0.59,0.58L4,4h11v7L5.17,11l-0.58,0.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/question_mark.xml b/compose/material/material/icons/generator/raw-icons/twotone/question_mark.xml
deleted file mode 100644
index e8cfd61..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/question_mark.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.07,12.85c0.77,-1.39 2.25,-2.21 3.11,-3.44c0.91,-1.29 0.4,-3.7 -2.18,-3.7c-1.69,0 -2.52,1.28 -2.87,2.34L6.54,6.96C7.25,4.83 9.18,3 11.99,3c2.35,0 3.96,1.07 4.78,2.41c0.7,1.15 1.11,3.3 0.03,4.9c-1.2,1.77 -2.35,2.31 -2.97,3.45c-0.25,0.46 -0.35,0.76 -0.35,2.24h-2.89C10.58,15.22 10.46,13.95 11.07,12.85zM14,20c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2S14,18.9 14,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/queue.xml b/compose/material/material/icons/generator/raw-icons/twotone/queue.xml
deleted file mode 100644
index fa09c92..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/queue.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12L20,4L8,4v12zM9,9h4L13,5h2v4h4v2h-4v4h-2v-4L9,11L9,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20c0,1.1 0.9,2 2,2h14v-2L4,20L4,6L2,6v14zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM13,15h2v-4h4L19,9h-4L15,5h-2v4L9,9v2h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/queue_music.xml b/compose/material/material/icons/generator/raw-icons/twotone/queue_music.xml
deleted file mode 100644
index 4b1ce08..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/queue_music.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h12v2H3V10zM3,14h8v2H3V14zM3,6h12v2H3V6zM17,14.18C16.69,14.07 16.35,14 16,14c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3V8h3V6h-5V14.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/queue_play_next.xml b/compose/material/material/icons/generator/raw-icons/twotone/queue_play_next.xml
deleted file mode 100644
index bdec5dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/queue_play_next.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15v-3h3v-2h-3L13,7h-2v3L8,10v2h3v3zM18,15l3,3 -3,3 1.5,1.5L24,18l-4.5,-4.5zM8,19v2h8v-2h2v-2L3,17L3,5h18v8h2L23,5c0,-1.11 -0.9,-2 -2,-2L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/quickreply.xml b/compose/material/material/icons/generator/raw-icons/twotone/quickreply.xml
deleted file mode 100644
index 01ae5a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/quickreply.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4l0,13.17l1.17,-1.17l9.83,0l0,-6l5,0l0,-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.17,16L4,17.17V4h16v6h2V4c0,-1.1 -0.9,-2 -2,-2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h9v-2H5.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,23l3.5,-7l-2.2,0l1.7,-4l-5,0l0,6l2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/quiz.xml b/compose/material/material/icons/generator/raw-icons/twotone/quiz.xml
deleted file mode 100644
index 3029362..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/quiz.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4v12h12V4H8zM14.74,14.69C14.54,14.9 14.3,15 14.01,15c-0.29,0 -0.54,-0.1 -0.74,-0.31c-0.21,-0.21 -0.31,-0.45 -0.31,-0.74c0,-0.29 0.1,-0.54 0.31,-0.74c0.21,-0.2 0.45,-0.3 0.74,-0.3c0.29,0 0.54,0.1 0.74,0.3c0.2,0.2 0.3,0.45 0.3,0.74C15.05,14.24 14.94,14.49 14.74,14.69zM16.51,8.83c-0.23,0.34 -0.54,0.69 -0.92,1.06c-0.3,0.27 -0.51,0.52 -0.64,0.75c-0.12,0.23 -0.18,0.49 -0.18,0.78v0.4h-1.52v-0.56c0,-0.42 0.09,-0.78 0.26,-1.09C13.69,9.85 14,9.5 14.46,9.1c0.32,-0.29 0.55,-0.54 0.69,-0.74c0.14,-0.2 0.21,-0.44 0.21,-0.72c0,-0.36 -0.12,-0.65 -0.36,-0.87c-0.24,-0.23 -0.57,-0.34 -0.99,-0.34c-0.4,0 -0.72,0.12 -0.97,0.36c-0.25,0.24 -0.42,0.53 -0.53,0.87l-1.37,-0.57c0.18,-0.55 0.52,-1.03 1,-1.45C12.63,5.21 13.25,5 13.99,5c0.56,0 1.05,0.11 1.49,0.33c0.44,0.22 0.78,0.53 1.02,0.93c0.24,0.4 0.36,0.84 0.36,1.33C16.86,8.08 16.75,8.49 16.51,8.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6zM20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H8V4h12V16zM13.51,10.16c0.41,-0.73 1.18,-1.16 1.63,-1.8c0.48,-0.68 0.21,-1.94 -1.14,-1.94c-0.88,0 -1.32,0.67 -1.5,1.23l-1.37,-0.57C11.51,5.96 12.52,5 13.99,5c1.23,0 2.08,0.56 2.51,1.26c0.37,0.6 0.58,1.73 0.01,2.57c-0.63,0.93 -1.23,1.21 -1.56,1.81c-0.13,0.24 -0.18,0.4 -0.18,1.18h-1.52C13.26,11.41 13.19,10.74 13.51,10.16zM12.95,13.95c0,-0.59 0.47,-1.04 1.05,-1.04c0.59,0 1.04,0.45 1.04,1.04c0,0.58 -0.44,1.05 -1.04,1.05C13.42,15 12.95,14.53 12.95,13.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/r_mobiledata.xml b/compose/material/material/icons/generator/raw-icons/twotone/r_mobiledata.xml
deleted file mode 100644
index 72e6709..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/r_mobiledata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0 2,0.87 2,2v1.33C9,6.13 8.47,6.87 7.8,7.2zM7,4H4v1.33h3V4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/radar.xml b/compose/material/material/icons/generator/raw-icons/twotone/radar.xml
deleted file mode 100644
index b811ecf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/radar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.74,18.33C21.15,16.6 22,14.4 22,12c0,-5.52 -4.48,-10 -10,-10S2,6.48 2,12s4.48,10 10,10c2.4,0 4.6,-0.85 6.33,-2.26c0.27,-0.22 0.53,-0.46 0.78,-0.71c0.03,-0.03 0.05,-0.06 0.07,-0.08C19.38,18.75 19.57,18.54 19.74,18.33zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8c0,1.85 -0.63,3.54 -1.69,4.9l-1.43,-1.43c0.69,-0.98 1.1,-2.17 1.1,-3.46c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6s2.69,6 6,6c1.3,0 2.51,-0.42 3.49,-1.13l1.42,1.42C15.54,19.37 13.85,20 12,20zM13.92,12.51c0.17,-0.66 0.02,-1.38 -0.49,-1.9l-0.02,-0.02c-0.77,-0.77 -2,-0.78 -2.78,-0.04c-0.01,0.01 -0.03,0.02 -0.05,0.04c-0.78,0.78 -0.78,2.05 0,2.83l0.02,0.02c0.52,0.51 1.25,0.67 1.91,0.49l1.51,1.51c-0.6,0.36 -1.29,0.58 -2.04,0.58c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4c0,0.73 -0.21,1.41 -0.56,2L13.92,12.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/radio.xml b/compose/material/material/icons/generator/raw-icons/twotone/radio.xml
deleted file mode 100644
index e0f882b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/radio.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,13H4v7h16v-7zM8,18.98c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20c0,1.1 0.89,2 2,2h16c1.11,0 2,-0.9 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2L8.3,6l8.26,-3.34L15.88,1 3.24,6.15C2.51,6.43 2,7.17 2,8v12zM4,8h16v3h-2L18,9h-2v2L4,11L4,8zM4,13h16v7L4,20v-7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16.48m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/radio_button_checked.xml b/compose/material/material/icons/generator/raw-icons/twotone/radio_button_checked.xml
deleted file mode 100644
index 6d654e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/radio_button_checked.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/radio_button_unchecked.xml b/compose/material/material/icons/generator/raw-icons/twotone/radio_button_unchecked.xml
deleted file mode 100644
index bcb6fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/radio_button_unchecked.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/railway_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/railway_alert.xml
deleted file mode 100644
index 64f502e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/railway_alert.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,16.5C4,17.33 4.67,18 5.5,18h9c0.83,0 1.5,-0.67 1.5,-1.5V13H4V16.5zM10,14c0.83,0 1.5,0.67 1.5,1.5S10.83,17 10,17s-1.5,-0.67 -1.5,-1.5S9.17,14 10,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.43,6H11c0,-0.33 0.03,-0.66 0.08,-0.98C7.71,4.92 5.33,5.23 4.43,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,11V8h7.29C11.1,7.37 11,6.7 11,6H4.43c0.9,-0.77 3.28,-1.08 6.65,-0.98c0.1,-0.7 0.3,-1.37 0.59,-1.99C2.97,2.67 2,5.02 2,7v9.5C2,18.43 3.57,20 5.5,20L4,21v1h12v-1l-1.5,-1c1.93,0 3.5,-1.57 3.5,-3.5V13c-1.91,0 -3.63,-0.76 -4.89,-2H4zM16,16.5c0,0.83 -0.67,1.5 -1.5,1.5h-9C4.67,18 4,17.33 4,16.5V13h12V16.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,9h-1V8h1V9zM18.5,7h-1V3h1V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ramen_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/ramen_dining.xml
deleted file mode 100644
index d6d9a4a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ramen_dining.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.73,18.39l1.27,0.5V20h4v-1.11l1.27,-0.5c2.16,-0.85 3.74,-2.47 4.4,-4.39H4.34C4.99,15.92 6.58,17.54 8.73,18.39z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,3.51V2L4,3.99V12H2c0,3.69 2.47,6.86 6,8.25V22h8v-1.75c3.53,-1.39 6,-4.56 6,-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51zM8,5.06l1,-0.11V6.5H8V5.06zM8,8h1v4H8V8zM5.5,5.34l1,-0.11V6.5h-1V5.34zM5.5,8h1v4h-1V8zM19.66,14c-0.66,1.92 -2.24,3.54 -4.4,4.39L14,18.89V20h-4v-1.11l-1.27,-0.5c-2.16,-0.85 -3.74,-2.47 -4.4,-4.39H19.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ramp_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/ramp_left.xml
deleted file mode 100644
index a70ce96..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ramp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21h-2V6.83L9.41,8.41L8,7l4,-4l4,4l-1.41,1.41L13,6.83V9c0,4.27 4.03,7.13 6,8.27l-1.46,1.46c-1.91,-1.16 -3.44,-2.53 -4.54,-4.02L13,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ramp_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/ramp_right.xml
deleted file mode 100644
index d5a12d4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ramp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,21h2V6.83l1.59,1.59L16,7l-4,-4L8,7l1.41,1.41L11,6.83V9c0,4.27 -4.03,7.13 -6,8.27l1.46,1.46C8.37,17.56 9.9,16.19 11,14.7L11,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rate_review.xml b/compose/material/material/icons/generator/raw-icons/twotone/rate_review.xml
deleted file mode 100644
index db3bd35..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rate_review.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17l0.59,-0.59 0.58,-0.58H20V4H4v13.17zM18,14h-7.5l2,-2H18v2zM6,11.53l5.88,-5.88c0.2,-0.2 0.51,-0.2 0.71,0l1.77,1.77c0.2,0.2 0.2,0.51 0,0.71L8.47,14H6v-2.47z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16l-0.59,0.59 -0.58,0.58L4,4h16v12zM10.5,14L18,14v-2h-5.5zM14.36,8.13c0.2,-0.2 0.2,-0.51 0,-0.71l-1.77,-1.77c-0.2,-0.2 -0.51,-0.2 -0.71,0L6,11.53L6,14h2.47l5.89,-5.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/raw_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/raw_off.xml
deleted file mode 100644
index c6744b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/raw_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.15,14.32l0.59,-2.36l0.76,3.04l1.48,0l1.5,-6l-1.5,0l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l0.72,2.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38,-1.5h0.04l9.11,9.11l1.41,-1.41L2.81,2.81L1.39,4.22zM6.5,11.5h-2v-1h2V11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/raw_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/raw_on.xml
deleted file mode 100644
index 5f73dbd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/raw_on.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9,-2.1C7.6,12.6 8,12.1 8,11.5v-1C8,9.7 7.3,9 6.5,9zM6.5,11.5h-2v-1h2V11.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.25,9l-1.5,6h1.5l0.38,-1.5h1.75l0.37,1.5h1.5l-1.5,-6H10.25zM11,12l0.25,-1h0.5L12,12H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,9l-0.74,3l-0.74,-3l-1.52,0l-0.74,3l-0.74,-3l-1.5,0l1.5,6l1.48,0l0.76,-3.04l0.76,3.04l1.48,0l1.5,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/read_more.xml b/compose/material/material/icons/generator/raw-icons/twotone/read_more.xml
deleted file mode 100644
index feaa455..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/read_more.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15h9v2h-9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l-5,-5l0,4l-6,0l0,2l6,0l0,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/real_estate_agent.xml b/compose/material/material/icons/generator/raw-icons/twotone/real_estate_agent.xml
deleted file mode 100644
index 71775f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/real_estate_agent.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,9.44l5.32,1.99c1.24,0.46 2.21,1.41 2.74,2.57L19,14V7.5L14,4L9,7.5V9h0.33L10.5,9.44zM14.5,7h1v1h-1V7zM14.5,9h1v1h-1V9zM12.5,7h1v1h-1V7zM12.5,9h1v1h-1V9zM3,13h2v7H3V13zM19.9,18.57l-5.93,1.84L7,18.48V13h1.61l5.82,2.17C14.77,15.3 15,15.63 15,16c0,0 -1.99,-0.05 -2.3,-0.15l-2.38,-0.79l-0.63,1.9l2.38,0.79c0.51,0.17 1.04,0.26 1.58,0.26H19C19.39,18.01 19.74,18.24 19.9,18.57z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,7h-1v1h1V7zM13.5,7h-1v1h1V7zM15.5,9h-1v1h1V9zM13.5,9h-1v1h1V9zM21,6.5V14h-2V7.5L14,4L9,7.5V9H7V6.5l7,-5L21,6.5zM19,16h-2c0,-1.2 -0.75,-2.28 -1.87,-2.7L8.97,11H1v11h6v-1.44l7,1.94l8,-2.5v-1C22,17.34 20.66,16 19,16zM3,20v-7h2v7H3zM13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3 15,15.63 15,16c0,0 -1.99,-0.05 -2.3,-0.15l-2.38,-0.79l-0.63,1.9l2.38,0.79c0.51,0.17 1.04,0.26 1.58,0.26H19c0.39,0 0.74,0.23 0.9,0.56L13.97,20.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/receipt.xml b/compose/material/material/icons/generator/raw-icons/twotone/receipt.xml
deleted file mode 100644
index 5ef1757..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/receipt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19.09h14L19,4.91L5,4.91v14.18zM6,7h12v2L6,9L6,7zM6,11h12v2L6,13v-2zM6,15h12v2L6,17v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2 7.5,3.5 6,2 4.5,3.5 3,2v20l1.5,-1.5L6,22l1.5,-1.5L9,22l1.5,-1.5L12,22l1.5,-1.5L15,22l1.5,-1.5L18,22l1.5,-1.5L21,22L21,2l-1.5,1.5zM19,19.09L5,19.09L5,4.91h14v14.18zM6,15h12v2L6,17zM6,11h12v2L6,13zM6,7h12v2L6,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/receipt_long.xml b/compose/material/material/icons/generator/raw-icons/twotone/receipt_long.xml
deleted file mode 100644
index 4b6c2ea..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/receipt_long.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3H8V5h11V19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3V2L19.5,3.5zM19,19c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-3H8V5h11V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,10h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/recent_actors.xml b/compose/material/material/icons/generator/raw-icons/twotone/recent_actors.xml
deleted file mode 100644
index f10465b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/recent_actors.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7L3,7v10h10L13,7zM8,8c1.07,0 1.95,0.87 1.95,1.95 0,1.07 -0.87,1.95 -1.95,1.95s-1.95,-0.87 -1.95,-1.95S6.93,8 8,8zM11.89,16L4.11,16v-0.65c0,-1.3 2.59,-1.95 3.89,-1.95s3.89,0.65 3.89,1.95L11.89,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5h2v14h-2zM17,5h2v14h-2zM14,19c0.55,0 1,-0.45 1,-1L15,6c0,-0.55 -0.45,-1 -1,-1L2,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h12zM3,7h10v10L3,17L3,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9.94m-1.95,0a1.95,1.95 0,1 1,3.9 0a1.95,1.95 0,1 1,-3.9 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13.4c-1.3,0 -3.89,0.65 -3.89,1.95V16h7.78v-0.65c0,-1.3 -2.59,-1.95 -3.89,-1.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/recommend.xml b/compose/material/material/icons/generator/raw-icons/twotone/recommend.xml
deleted file mode 100644
index f38c3b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/recommend.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM17.9,12.3l-2.1,4.9c-0.22,0.51 -0.74,0.83 -1.3,0.8H9c-1.1,0 -2,-0.9 -2,-2v-5c-0.02,-0.38 0.13,-0.74 0.4,-1L12,5l0.69,0.69c0.18,0.19 0.29,0.44 0.3,0.7v0.2L12.41,10H17c0.55,0 1,0.45 1,1v0.8C18.02,11.97 17.98,12.15 17.9,12.3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,10h-4.59l0.58,-3.41v-0.2c-0.01,-0.26 -0.12,-0.51 -0.3,-0.7L12,5l-4.6,5c-0.27,0.26 -0.42,0.62 -0.4,1v5c0,1.1 0.9,2 2,2h5.5c0.56,0.03 1.08,-0.29 1.3,-0.8l2.1,-4.9c0.08,-0.15 0.12,-0.33 0.1,-0.5V11C18,10.45 17.55,10 17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/record_voice_over.xml b/compose/material/material/icons/generator/raw-icons/twotone/record_voice_over.xml
deleted file mode 100644
index d36311f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/record_voice_over.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17c-2.69,0 -5.77,1.28 -6,2h12c-0.2,-0.71 -3.3,-2 -6,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM9,7c1.1,0 2,0.9 2,2s-0.9,2 -2,2 -2,-0.9 -2,-2 0.9,-2 2,-2zM9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4zM3,19c0.22,-0.72 3.31,-2 6,-2 2.7,0 5.8,1.29 6,2L3,19zM16.76,5.36l-1.68,1.69c0.84,1.18 0.84,2.71 0,3.89l1.68,1.69c2.02,-2.02 2.02,-5.07 0,-7.27zM20.07,2l-1.63,1.63c2.77,3.02 2.77,7.56 0,10.74L20.07,16c3.9,-3.89 3.91,-9.95 0,-14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rectangle.xml b/compose/material/material/icons/generator/raw-icons/twotone/rectangle.xml
deleted file mode 100644
index a41422e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rectangle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v12h-16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/recycling.xml b/compose/material/material/icons/generator/raw-icons/twotone/recycling.xml
deleted file mode 100644
index bd30b8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/recycling.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.77,7.15L7.2,4.78l1.03,-1.71c0.39,-0.65 1.33,-0.65 1.72,0l1.48,2.46l-1.23,2.06L9.2,9.21L5.77,7.15zM21.72,12.97l-1.6,-2.66l-3.46,2L18.87,16H20c0.76,0 1.45,-0.43 1.79,-1.11C21.93,14.61 22,14.31 22,14C22,13.64 21.9,13.29 21.72,12.97zM16,21h1.5c0.76,0 1.45,-0.43 1.79,-1.11L20.74,17H16v-2l-4,4l4,4V21zM10,17H5.7l-0.84,1.41c-0.3,0.5 -0.32,1.12 -0.06,1.65l0,0C5.08,20.63 5.67,21 6.32,21H10V17zM6.12,14.35l1.73,1.04L6.48,9.9L1,11.27l1.7,1.02l-0.41,0.69c-0.35,0.59 -0.38,1.31 -0.07,1.92l1.63,3.26L6.12,14.35zM17.02,5.14l-1.3,-2.17C15.35,2.37 14.7,2 14,2h-3.53l3.12,5.2l-1.72,1.03l5.49,1.37l1.37,-5.49L17.02,5.14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/redeem.xml b/compose/material/material/icons/generator/raw-icons/twotone/redeem.xml
deleted file mode 100644
index 445c356..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/redeem.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h16v2L4,19zM17,10.83L15.38,12 13,8.76 12,7.4l-1,1.36L8.62,12 7,10.83 9.08,8L4,8v6h16L20,8h-5.08z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-2.18c0.11,-0.31 0.18,-0.65 0.18,-1 0,-1.66 -1.34,-3 -3,-3 -1.05,0 -1.96,0.54 -2.5,1.35l-0.5,0.67 -0.5,-0.68C10.96,2.54 10.05,2 9,2 7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM9,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,19L4,19v-2h16v2zM20,14L4,14L4,8h5.08L7,10.83 8.62,12 11,8.76l1,-1.36 1,1.36L15.38,12 17,10.83 14.92,8L20,8v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/redo.xml b/compose/material/material/icons/generator/raw-icons/twotone/redo.xml
deleted file mode 100644
index 4e218168..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/redo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.4,10.6C16.55,8.99 14.15,8 11.5,8c-4.65,0 -8.58,3.03 -9.96,7.22L3.9,16c1.05,-3.19 4.05,-5.5 7.6,-5.5 1.95,0 3.73,0.72 5.12,1.88L13,16h9V7l-3.6,3.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/reduce_capacity.xml b/compose/material/material/icons/generator/raw-icons/twotone/reduce_capacity.xml
deleted file mode 100644
index bd11991..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/reduce_capacity.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S16,5.1 16,4zM20.78,7.58C19.93,7.21 18.99,7 18,7c-0.67,0 -1.31,0.1 -1.92,0.28C16.66,7.83 17,8.6 17,9.43V10h5V9.43C22,8.62 21.52,7.9 20.78,7.58zM6,6c1.1,0 2,-0.9 2,-2S7.1,2 6,2S4,2.9 4,4S4.9,6 6,6zM7.92,7.28C7.31,7.1 6.67,7 6,7C5.01,7 4.07,7.21 3.22,7.58C2.48,7.9 2,8.62 2,9.43V10h5V9.43C7,8.6 7.34,7.83 7.92,7.28zM10,4c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,5.1 10,4zM16,10H8V9.43C8,8.62 8.48,7.9 9.22,7.58C10.07,7.21 11.01,7 12,7c0.99,0 1.93,0.21 2.78,0.58C15.52,7.9 16,8.62 16,9.43V10zM15,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S15,17.1 15,16zM21,22h-8v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C15.07,19.21 16.01,19 17,19c0.99,0 1.93,0.21 2.78,0.58C20.52,19.9 21,20.62 21,21.43V22zM5,16c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S5,17.1 5,16zM11,22H3v-0.57c0,-0.81 0.48,-1.53 1.22,-1.85C5.07,19.21 6.01,19 7,19c0.99,0 1.93,0.21 2.78,0.58C10.52,19.9 11,20.62 11,21.43V22zM12.75,13v-2h-1.5v2H9l3,3l3,-3H12.75z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/refresh.xml b/compose/material/material/icons/generator/raw-icons/twotone/refresh.xml
deleted file mode 100644
index f2be45bab..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/refresh.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remember_me.xml b/compose/material/material/icons/generator/raw-icons/twotone/remember_me.xml
deleted file mode 100644
index f084de0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remember_me.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17.52V18h10v-0.48C15.53,16.53 13.78,16 12,16S8.47,16.53 7,17.52z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1H7C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1 17,1zM17,21H7v-1h10V21zM17,18H7v-0.48C8.47,16.53 10.22,16 12,16s3.53,0.53 5,1.52V18zM17,15.21C15.5,14.44 13.8,14 12,14s-3.5,0.44 -5,1.21V6h10V15.21zM17,4H7V3h10V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3s-3,1.34 -3,3S10.34,13 12,13zM12,9c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove.xml
deleted file mode 100644
index 791a2f8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5v-2h14v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_circle.xml
deleted file mode 100644
index 4b80c93..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM17,13L7,13v-2h10v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h10v2L7,13zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_circle_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_circle_outline.xml
deleted file mode 100644
index 065d3dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_circle_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h10v2L7,13zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_done.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_done.xml
deleted file mode 100644
index 621af7c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_done.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24,-4.24l-1.41,1.41l5.66,5.66l2.83,-2.83l6.6,6.6l1.41,-1.41L4.84,1.98zM18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36zM17.34,7.4l-1.41,-1.41l-2.12,2.12l1.41,1.41L17.34,7.4zM1.08,12.35l5.66,5.66l1.41,-1.41l-5.66,-5.66L1.08,12.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_from_queue.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_from_queue.xml
deleted file mode 100644
index 221d8ed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_from_queue.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h18L21,5L3,5v12zM8,10h8v2L8,12v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.11,0 -2,0.89 -2,2v12c0,1.1 0.89,2 2,2h5v2h8v-2h5c1.1,0 2,-0.9 2,-2L23,5c0,-1.11 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12zM8,10h8v2L8,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_moderator.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_moderator.xml
deleted file mode 100644
index 65d137c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_moderator.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11.09c0,4 2.55,7.7 6,8.83c1.17,-0.38 2.24,-1.07 3.14,-1.95L6,8.83V11.09zM12,4.14L8.34,5.51l9.02,9.02c0.41,-1.08 0.64,-2.25 0.64,-3.44v-4.7L12,4.14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.14l6,2.25v4.7c0,1.19 -0.23,2.36 -0.64,3.44l1.51,1.51c0.72,-1.53 1.13,-3.22 1.13,-4.95V5l-8,-3L6.78,3.96l1.55,1.55L12,4.14zM2.81,2.81L1.39,4.22L4,6.83v4.26c0,5.05 3.41,9.76 8,10.91c1.72,-0.43 3.28,-1.36 4.55,-2.62l3.23,3.23l1.41,-1.41L2.81,2.81zM12,19.92c-3.45,-1.13 -6,-4.82 -6,-8.83V8.83l9.14,9.14C14.24,18.85 13.17,19.54 12,19.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_red_eye.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_red_eye.xml
deleted file mode 100644
index 7e454b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_red_eye.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.5c-3.79,0 -7.17,2.13 -8.82,5.5 1.65,3.37 5.02,5.5 8.82,5.5s7.17,-2.13 8.82,-5.5C19.17,8.63 15.79,6.5 12,6.5zM12,16.5c-2.48,0 -4.5,-2.02 -4.5,-4.5S9.52,7.5 12,7.5s4.5,2.02 4.5,4.5 -2.02,4.5 -4.5,4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17.5c-3.79,0 -7.17,-2.13 -8.82,-5.5C4.83,8.63 8.21,6.5 12,6.5s7.17,2.13 8.82,5.5c-1.65,3.37 -5.03,5.5 -8.82,5.5zM12,7.5c-2.48,0 -4.5,2.02 -4.5,4.5s2.02,4.5 4.5,4.5 4.5,-2.02 4.5,-4.5 -2.02,-4.5 -4.5,-4.5zM12,14.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_road.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_road.xml
deleted file mode 100644
index 8923945..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_road.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h2v9h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h2v16h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,10h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.5,16.41l-1.41,-1.41l-2.09,2.09l-2.09,-2.09l-1.41,1.41l2.09,2.09l-2.09,2.09l1.41,1.41l2.09,-2.09l2.09,2.09l1.41,-1.41l-2.09,-2.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/remove_shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/twotone/remove_shopping_cart.xml
deleted file mode 100644
index fea32a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/remove_shopping_cart.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.41,1.13L0,2.54l4.39,4.39 2.21,4.66 -1.35,2.45c-0.16,0.28 -0.25,0.61 -0.25,0.96 0,1.1 0.9,2 2,2h7.46l1.38,1.38c-0.5,0.36 -0.83,0.95 -0.83,1.62 0,1.1 0.89,2 1.99,2 0.67,0 1.26,-0.33 1.62,-0.84L21.46,24l1.41,-1.41L1.41,1.13zM7,15l1.1,-2h2.36l2,2H7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.31,6H9.12l4.99,5h1.44z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H7.12l2,2h9.19l-2.76,5h-1.44l1.94,1.94c0.54,-0.14 0.99,-0.49 1.25,-0.97l3.58,-6.49C21.25,4.82 20.76,4 20,4zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/reorder.xml b/compose/material/material/icons/generator/raw-icons/twotone/reorder.xml
deleted file mode 100644
index 57af84b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/reorder.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,15h18v-2L3,13v2zM3,19h18v-2L3,17v2zM3,11h18L21,9L3,9v2zM3,5v2h18L21,5L3,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/repartition.xml b/compose/material/material/icons/generator/raw-icons/twotone/repartition.xml
deleted file mode 100644
index 92fefc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/repartition.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.67,17h3.33v2h-3.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.33,17h3.33v2h-3.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17h3.33v2h-3.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,21h18v-6H3V21zM15.67,17H19v2h-3.33V17zM10.33,17h3.33v2h-3.33V17zM5,17h3.33v2H5V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,10l1.42,-1.42L5.83,7H17c1.1,0 2,0.9 2,2s-0.9,2 -2,2H3v2h14c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4H5.83l1.59,-1.59L6,2L2,6L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/repeat.xml b/compose/material/material/icons/generator/raw-icons/twotone/repeat.xml
deleted file mode 100644
index b580082..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/repeat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,22v-3h12v-6h-2v4H7v-3l-4,4zM21,6l-4,-4v3H5v6h2V7h10v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/repeat_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/repeat_on.xml
deleted file mode 100644
index a2700e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/repeat_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,19H7v3l-4,-4l4,-4v3h10v-4h2V19zM17,10V7H7v4H5V5h12V2l4,4L17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/repeat_one.xml b/compose/material/material/icons/generator/raw-icons/twotone/repeat_one.xml
deleted file mode 100644
index 32dfd24..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/repeat_one.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,15L13,9h-1l-2,1v1h1.5v4zM19,13h-2v4L7,17v-3l-4,4 4,4v-3h12zM17,2v3L5,5v6h2L7,7h10v3l4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/repeat_one_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/repeat_one_on.xml
deleted file mode 100644
index 0538cf6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/repeat_one_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM19,19H7v3l-4,-4l4,-4v3h10v-4h2V19zM10,10.5V9h3v6h-1.5v-4.5H10zM17,10V7H7v4H5V5h12V2l4,4L17,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/replay.xml b/compose/material/material/icons/generator/raw-icons/twotone/replay.xml
deleted file mode 100644
index ebfbd86..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/replay.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6l5,5V7c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6H4c0,4.42 3.58,8 8,8s8,-3.58 8,-8c0,-4.42 -3.58,-8 -8,-8V1L7,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/replay_10.xml b/compose/material/material/icons/generator/raw-icons/twotone/replay_10.xml
deleted file mode 100644
index c7075d0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/replay_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,5L11.99,1l-5,5 5,5L11.99,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6h-2c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77,-0.63h0.09L10.89,16zM15.17,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.32,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/replay_30.xml b/compose/material/material/icons/generator/raw-icons/twotone/replay_30.xml
deleted file mode 100644
index 7d6fee2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/replay_30.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,1L7,6l5,5L12,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6L4,13c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM9.56,13.49h0.45c0.21,0 0.37,-0.05 0.48,-0.16s0.16,-0.25 0.16,-0.43c0,-0.08 -0.01,-0.15 -0.04,-0.22s-0.06,-0.12 -0.11,-0.17 -0.11,-0.09 -0.18,-0.11 -0.16,-0.04 -0.25,-0.04c-0.08,0 -0.15,0.01 -0.22,0.03s-0.13,0.05 -0.18,0.1 -0.09,0.09 -0.12,0.15 -0.05,0.13 -0.05,0.2h-0.85c0,-0.18 0.04,-0.34 0.11,-0.48s0.17,-0.27 0.3,-0.37 0.27,-0.18 0.44,-0.23 0.35,-0.08 0.54,-0.08c0.21,0 0.41,0.03 0.59,0.08s0.33,0.13 0.46,0.23 0.23,0.23 0.3,0.38 0.11,0.33 0.11,0.53c0,0.09 -0.01,0.18 -0.04,0.27s-0.07,0.17 -0.13,0.25 -0.12,0.15 -0.2,0.22 -0.17,0.12 -0.28,0.17c0.24,0.09 0.42,0.21 0.54,0.39s0.18,0.38 0.18,0.61c0,0.2 -0.04,0.38 -0.12,0.53s-0.18,0.29 -0.32,0.39 -0.29,0.19 -0.48,0.24 -0.38,0.08 -0.6,0.08c-0.18,0 -0.36,-0.02 -0.53,-0.07s-0.33,-0.12 -0.46,-0.23 -0.25,-0.23 -0.33,-0.38 -0.12,-0.34 -0.12,-0.55h0.85c0,0.08 0.02,0.15 0.05,0.22s0.07,0.12 0.13,0.17 0.12,0.09 0.2,0.11 0.16,0.04 0.25,0.04c0.1,0 0.19,-0.01 0.27,-0.04s0.15,-0.07 0.2,-0.12 0.1,-0.11 0.13,-0.18 0.04,-0.15 0.04,-0.24c0,-0.11 -0.02,-0.21 -0.05,-0.29s-0.08,-0.15 -0.14,-0.2 -0.13,-0.09 -0.22,-0.11 -0.18,-0.04 -0.29,-0.04h-0.47v-0.65zM15.3,14.24c0,0.32 -0.03,0.6 -0.1,0.82s-0.17,0.42 -0.29,0.57 -0.28,0.26 -0.45,0.33 -0.37,0.1 -0.59,0.1 -0.41,-0.03 -0.59,-0.1 -0.33,-0.18 -0.46,-0.33 -0.23,-0.34 -0.3,-0.57 -0.11,-0.5 -0.11,-0.82v-0.74c0,-0.32 0.03,-0.6 0.1,-0.82s0.17,-0.42 0.29,-0.57 0.28,-0.26 0.45,-0.33 0.37,-0.1 0.59,-0.1 0.41,0.03 0.59,0.1 0.33,0.18 0.46,0.33 0.23,0.34 0.3,0.57 0.11,0.5 0.11,0.82v0.74zM14.45,13.38c0,-0.19 -0.01,-0.35 -0.04,-0.48s-0.07,-0.23 -0.12,-0.31 -0.11,-0.14 -0.19,-0.17 -0.16,-0.05 -0.25,-0.05 -0.18,0.02 -0.25,0.05 -0.14,0.09 -0.19,0.17 -0.09,0.18 -0.12,0.31 -0.04,0.29 -0.04,0.48v0.97c0,0.19 0.01,0.35 0.04,0.48s0.07,0.24 0.12,0.32 0.11,0.14 0.19,0.17 0.16,0.05 0.25,0.05 0.18,-0.02 0.25,-0.05 0.14,-0.09 0.19,-0.17 0.09,-0.19 0.11,-0.32c0.03,-0.13 0.04,-0.29 0.04,-0.48v-0.97z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/replay_5.xml b/compose/material/material/icons/generator/raw-icons/twotone/replay_5.xml
deleted file mode 100644
index e668cab..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/replay_5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5L12,1L7,6l5,5L12,7c3.31,0 6,2.69 6,6s-2.69,6 -6,6 -6,-2.69 -6,-6L4,13c0,4.42 3.58,8 8,8s8,-3.58 8,-8 -3.58,-8 -8,-8zM10.69,13.9l0.25,-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03,-0.02 0.07,-0.03 0.11,-0.05s0.09,-0.04 0.15,-0.05 0.12,-0.03 0.18,-0.04 0.13,-0.02 0.2,-0.02c0.21,0 0.39,0.03 0.55,0.1s0.3,0.16 0.41,0.28 0.2,0.27 0.25,0.45 0.09,0.38 0.09,0.6c0,0.19 -0.03,0.37 -0.09,0.54s-0.15,0.32 -0.27,0.45 -0.27,0.24 -0.45,0.31 -0.39,0.12 -0.64,0.12c-0.18,0 -0.36,-0.03 -0.53,-0.08s-0.32,-0.14 -0.46,-0.24 -0.24,-0.24 -0.32,-0.39 -0.13,-0.33 -0.13,-0.53h0.84c0.02,0.18 0.08,0.32 0.19,0.41s0.25,0.15 0.42,0.15c0.11,0 0.2,-0.02 0.27,-0.06s0.14,-0.1 0.18,-0.17 0.08,-0.15 0.11,-0.25 0.03,-0.2 0.03,-0.31 -0.01,-0.21 -0.04,-0.31 -0.07,-0.17 -0.13,-0.24 -0.13,-0.12 -0.21,-0.15 -0.19,-0.05 -0.3,-0.05c-0.08,0 -0.15,0.01 -0.2,0.02s-0.11,0.03 -0.15,0.05 -0.08,0.05 -0.12,0.07 -0.07,0.06 -0.1,0.09l-0.67,-0.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/replay_circle_filled.xml b/compose/material/material/icons/generator/raw-icons/twotone/replay_circle_filled.xml
deleted file mode 100644
index 7e00978..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/replay_circle_filled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM18,12.5c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6h2c0,2.21 1.79,4 4,4s4,-1.79 4,-4s-1.79,-4 -4,-4v3l-4,-4l4,-4v3C15.31,6.5 18,9.19 18,12.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/reply.xml b/compose/material/material/icons/generator/raw-icons/twotone/reply.xml
deleted file mode 100644
index 4c0db01..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/reply.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9V5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/reply_all.xml b/compose/material/material/icons/generator/raw-icons/twotone/reply_all.xml
deleted file mode 100644
index 6655ebe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/reply_all.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,8L7,5l-7,7 7,7v-3l-4,-4 4,-4zM13,9L13,5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/report.xml b/compose/material/material/icons/generator/raw-icons/twotone/report.xml
deleted file mode 100644
index 016726e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/report.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.1,5L5,9.1v5.8L9.1,19h5.8l4.1,-4.1L19,9.1L14.9,5L9.1,5zM12,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM13,14h-2L11,7h2v7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1v5.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/report_gmailerrorred.xml b/compose/material/material/icons/generator/raw-icons/twotone/report_gmailerrorred.xml
deleted file mode 100644
index 5efaf43..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/report_gmailerrorred.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3zM19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1v5.8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v7h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/report_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/report_off.xml
deleted file mode 100644
index b6334ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/report_off.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.1L14.9,5H9.1l-0.22,0.22L11,7.33V7h2v2.33l5.78,5.79 0.22,-0.22zM6.05,8.04L5,9.1v5.8L9.1,19h5.8l1.05,-1.05 -9.9,-9.91zM13,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1 0.45,-1 1,-1 1,0.45 1,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.1,5h5.8L19,9.1v5.8l-0.22,0.22 1.42,1.41 0.8,-0.8V8.27L15.73,3H8.27l-0.8,0.8 1.41,1.42z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h-2v0.33l2,2zM2.41,1.58L1,2.99l3.64,3.64L3,8.27v7.46L8.27,21h7.46l1.64,-1.64L21.01,23l1.41,-1.41L2.41,1.58zM14.9,19H9.1L5,14.9V9.1l1.05,-1.05 9.9,9.9L14.9,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/report_problem.xml b/compose/material/material/icons/generator/raw-icons/twotone/report_problem.xml
deleted file mode 100644
index ff536b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/report_problem.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.99L4.47,19h15.06L12,5.99zM13,18h-2v-2h2v2zM11,14v-4h2v4h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L1,21h22L12,2zM12,5.99L19.53,19L4.47,19L12,5.99zM11,16h2v2h-2zM11,10h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/request_page.xml b/compose/material/material/icons/generator/raw-icons/twotone/request_page.xml
deleted file mode 100644
index d2bff0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/request_page.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,4H6v16h12V8.83L13.17,4zM15,11h-4v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h1V8h2v1h2V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.17,4L18,8.83V20H6V4H13.17M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2L14,2zM15,11h-4v1h3c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1h1V8h2v1h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/request_quote.xml b/compose/material/material/icons/generator/raw-icons/twotone/request_quote.xml
deleted file mode 100644
index da0dd1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/request_quote.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20V4h7v4h5v12H6zM11,19h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1H9v2h2V19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM6,20V4h7v4h5v12H6zM11,19h2v-1h1c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h3v1H9v2h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/reset_tv.xml b/compose/material/material/icons/generator/raw-icons/twotone/reset_tv.xml
deleted file mode 100644
index 3e7c009..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/reset_tv.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10h-7.01V7L9,11l3.99,4v-3H20v5H4V5h16v3h2l0,-3c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v12c0,1.1 0.9,2 2,2h4v2h8v-2h4c1.1,0 1.99,-0.9 1.99,-2l0,-5H22C22,10.9 21.1,10 20,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/restart_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/restart_alt.xml
deleted file mode 100644
index 2f9f24c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/restart_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5V2L8,6l4,4V7c3.31,0 6,2.69 6,6c0,2.97 -2.17,5.43 -5,5.91v2.02c3.95,-0.49 7,-3.85 7,-7.93C20,8.58 16.42,5 12,5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c0,-1.65 0.67,-3.15 1.76,-4.24L6.34,7.34C4.9,8.79 4,10.79 4,13c0,4.08 3.05,7.44 7,7.93v-2.02C8.17,18.43 6,15.97 6,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/restaurant.xml b/compose/material/material/icons/generator/raw-icons/twotone/restaurant.xml
deleted file mode 100644
index 26d3cc8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/restaurant.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6v8h3v8h2L21,2c-2.76,0 -5,2.24 -5,4zM11,9L9,9L9,2L7,2v7L5,9L5,2L3,2v7c0,2.21 1.79,4 4,4v9h2v-9c2.21,0 4,-1.79 4,-4L13,2h-2v7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/restaurant_menu.xml b/compose/material/material/icons/generator/raw-icons/twotone/restaurant_menu.xml
deleted file mode 100644
index 4ce2eb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/restaurant_menu.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.1,13.34l2.83,-2.83L3.91,3.5c-1.56,1.56 -1.56,4.09 0,5.66l4.19,4.18zM20.15,10.15c1.91,-1.91 2.28,-4.65 0.81,-6.12 -1.46,-1.46 -4.2,-1.1 -6.12,0.81 -1.59,1.59 -2.09,3.74 -1.38,5.27L3.7,19.87l1.41,1.41L12,14.41l6.88,6.88 1.41,-1.41L13.41,13l1.47,-1.47c1.53,0.71 3.68,0.21 5.27,-1.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/restore.xml b/compose/material/material/icons/generator/raw-icons/twotone/restore.xml
deleted file mode 100644
index 9912df0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l4,3.99L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.25,2.52 0.77,-1.28 -3.52,-2.09L13.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/restore_from_trash.xml b/compose/material/material/icons/generator/raw-icons/twotone/restore_from_trash.xml
deleted file mode 100644
index 0f897fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/restore_from_trash.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14h-2v4h-4v-4L8,14v5h8zM16,14L16,9L8,9v5l4,-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8,14L8,9h8v10L8,19v-5zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4zM10,18h4v-4h2l-4,-4 -4,4h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/restore_page.xml b/compose/material/material/icons/generator/raw-icons/twotone/restore_page.xml
deleted file mode 100644
index e29cbeb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/restore_page.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4v16h12L18,8.83L13.17,4L6,4zM16.72,13c0,2.48 -2.02,4.5 -4.5,4.5 -1.84,0 -3.43,-1.12 -4.12,-2.7h1.54c0.57,0.81 1.51,1.35 2.58,1.35 1.74,0 3.15,-1.41 3.15,-3.15s-1.41,-3.15 -3.15,-3.15c-1.21,0 -2.27,0.7 -2.79,1.71L10.88,13h-3.6L7.28,9.4l1.17,1.17c0.8,-1.24 2.19,-2.07 3.78,-2.07 2.48,0 4.49,2.02 4.49,4.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2L6,2c-1.1,0 -1.99,0.9 -1.99,2L4,20c0,1.1 0.89,2 1.99,2L18,22c1.1,0 2,-0.9 2,-2L20,8l-6,-6zM18,20L6,20L6,4h7.17L18,8.83L18,20zM8.45,10.57L7.28,9.4L7.28,13h3.6l-1.44,-1.44c0.52,-1.01 1.58,-1.71 2.79,-1.71 1.74,0 3.15,1.41 3.15,3.15s-1.41,3.15 -3.15,3.15c-1.07,0 -2.02,-0.54 -2.58,-1.35L8.1,14.8c0.69,1.58 2.28,2.7 4.12,2.7 2.48,0 4.5,-2.02 4.5,-4.5s-2.02,-4.5 -4.5,-4.5c-1.59,0 -2.97,0.83 -3.77,2.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/reviews.xml b/compose/material/material/icons/generator/raw-icons/twotone/reviews.xml
deleted file mode 100644
index 9aacd00..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/reviews.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16H20V4H4V17.17zM10.43,8.43L12,5l1.57,3.43L17,10l-3.43,1.57L12,15l-1.57,-3.43L7,10L10.43,8.43z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15l1.57,-3.43l3.43,-1.57l-3.43,-1.57l-1.57,-3.43l-1.57,3.43l-3.43,1.57l3.43,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rice_bowl.xml b/compose/material/material/icons/generator/raw-icons/twotone/rice_bowl.xml
deleted file mode 100644
index 2b79ffc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rice_bowl.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,14c-0.66,1.92 -2.24,3.54 -4.4,4.39L14,18.88V20h-4v-1.12l-1.27,-0.5c-2.16,-0.85 -3.74,-2.47 -4.4,-4.39H19.66"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.66,14c-0.66,1.92 -2.24,3.54 -4.4,4.39L14,18.88V20h-4v-1.12l-1.27,-0.5c-2.16,-0.85 -3.74,-2.47 -4.4,-4.39H19.66M12,2C6.48,2 2,6.48 2,12c0,3.69 2.47,6.86 6,8.25V22h8v-1.75c3.53,-1.39 6,-4.56 6,-8.25h0C22,6.48 17.52,2 12,2L12,2zM10,12V4.26C10.64,4.1 11.31,4 12,4s1.36,0.1 2,0.26V12H10L10,12zM16,12V5.08c2.39,1.39 4,3.96 4,6.92H16L16,12zM4,12c0,-2.95 1.61,-5.53 4,-6.92V12H4L4,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ring_volume.xml b/compose/material/material/icons/generator/raw-icons/twotone/ring_volume.xml
deleted file mode 100644
index 039f1cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ring_volume.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.6,17.22c0.66,0.37 1.28,0.79 1.87,1.27l1.07,-1.07c-0.91,-0.75 -1.9,-1.38 -2.94,-1.9v1.7zM3.53,18.5c0.58,-0.47 1.21,-0.89 1.87,-1.27v-1.71c-1.05,0.51 -2.03,1.15 -2.95,1.9l1.08,1.08z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12C7.46,12 3.34,13.78 0.29,16.67c-0.18,0.18 -0.29,0.43 -0.29,0.71 0,0.28 0.11,0.53 0.29,0.71l2.48,2.48c0.18,0.18 0.43,0.29 0.71,0.29 0.27,0 0.52,-0.11 0.7,-0.28 0.79,-0.74 1.69,-1.36 2.66,-1.85 0.33,-0.16 0.56,-0.5 0.56,-0.9v-3.1c1.45,-0.48 3,-0.73 4.6,-0.73 1.6,0 3.15,0.25 4.6,0.72v3.1c0,0.39 0.23,0.74 0.56,0.9 0.98,0.49 1.87,1.12 2.66,1.85 0.18,0.18 0.43,0.28 0.7,0.28 0.28,0 0.53,-0.11 0.71,-0.29l2.48,-2.48c0.18,-0.18 0.29,-0.43 0.29,-0.71 0,-0.27 -0.11,-0.52 -0.29,-0.7C20.66,13.78 16.54,12 12,12zM5.4,17.23c-0.66,0.37 -1.29,0.8 -1.87,1.27l-1.07,-1.07c0.91,-0.75 1.9,-1.39 2.95,-1.9v1.7zM20.47,18.49c-0.59,-0.48 -1.21,-0.9 -1.87,-1.27v-1.7c1.04,0.51 2.03,1.15 2.94,1.9l-1.07,1.07zM16.19,8.4l1.41,1.41s3.45,-3.52 3.56,-3.55l-1.41,-1.41 -3.56,3.55zM11,2h2v5h-2zM6.4,9.81L7.81,8.4 4.26,4.84 2.84,6.26c0.11,0.03 3.56,3.55 3.56,3.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rocket.xml b/compose/material/material/icons/generator/raw-icons/twotone/rocket.xml
deleted file mode 100644
index c9d8edb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rocket.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.98,18.25c-0.29,-0.9 -0.57,-1.94 -0.76,-3L6,16.07v2.98L7.98,18.25zM12,4.36c0,0 -3,2.02 -3,8.64c0,2.25 1,5 1,5h4c0,0 1,-2.75 1,-5C15,6.38 12,4.36 12,4.36zM12,13c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,12.1 13.1,13 12,13zM18,19.05v-2.98l-1.22,-0.81c-0.19,1.05 -0.47,2.1 -0.76,3L18,19.05z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2S14,12.1 14,11zM7.98,18.25c-0.29,-0.9 -0.57,-1.94 -0.76,-3L6,16.07v2.98L7.98,18.25zM12,2c0,0 5,2 5,11l2.11,1.41c0.56,0.37 0.89,1 0.89,1.66V22l-5,-2H9l-5,2v-5.93c0,-0.67 0.33,-1.29 0.89,-1.66L7,13C7,4 12,2 12,2zM12,4.36c0,0 -3,2.02 -3,8.64c0,2.25 1,5 1,5h4c0,0 1,-2.75 1,-5C15,6.38 12,4.36 12,4.36zM18,19.05v-2.98l-1.22,-0.81c-0.19,1.05 -0.47,2.1 -0.76,3L18,19.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rocket_launch.xml b/compose/material/material/icons/generator/raw-icons/twotone/rocket_launch.xml
deleted file mode 100644
index 0b258b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rocket_launch.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.71,18.71c-0.28,0.28 -2.17,0.76 -2.17,0.76s0.47,-1.88 0.76,-2.17C5.47,17.11 5.72,17 6,17c0.55,0 1,0.45 1,1C7,18.28 6.89,18.53 6.71,18.71zM7.41,10.83L5.5,10.01l1.97,-1.97l1.44,0.29C8.34,9.16 7.83,10.03 7.41,10.83zM13.99,18.5l-0.82,-1.91c0.8,-0.42 1.67,-0.93 2.49,-1.5l0.29,1.44L13.99,18.5zM19.99,4.01c0,0 -3.55,-0.69 -8.23,3.99c-1.32,1.32 -2.4,3.38 -2.73,4.04l2.93,2.93c0.65,-0.32 2.71,-1.4 4.04,-2.73C20.68,7.56 19.99,4.01 19.99,4.01zM15,11c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C17,10.1 16.1,11 15,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15c-0.83,0 -1.58,0.34 -2.12,0.88C2.7,17.06 2,22 2,22s4.94,-0.7 6.12,-1.88C8.66,19.58 9,18.83 9,18C9,16.34 7.66,15 6,15zM6.71,18.71c-0.28,0.28 -2.17,0.76 -2.17,0.76s0.47,-1.88 0.76,-2.17C5.47,17.11 5.72,17 6,17c0.55,0 1,0.45 1,1C7,18.28 6.89,18.53 6.71,18.71zM17.42,13.65L17.42,13.65c6.36,-6.36 4.24,-11.31 4.24,-11.31s-4.95,-2.12 -11.31,4.24l-2.49,-0.5C7.21,5.95 6.53,6.16 6.05,6.63L2,10.69l5,2.14L11.17,17l2.14,5l4.05,-4.05c0.47,-0.47 0.68,-1.15 0.55,-1.81L17.42,13.65zM7.41,10.83L5.5,10.01l1.97,-1.97l1.44,0.29C8.34,9.16 7.83,10.03 7.41,10.83zM13.99,18.5l-0.82,-1.91c0.8,-0.42 1.67,-0.93 2.49,-1.5l0.29,1.44L13.99,18.5zM16,12.24c-1.32,1.32 -3.38,2.4 -4.04,2.73l-2.93,-2.93c0.32,-0.65 1.4,-2.71 2.73,-4.04c4.68,-4.68 8.23,-3.99 8.23,-3.99S20.68,7.56 16,12.24zM15,11c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S13.9,11 15,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/roller_shades.xml b/compose/material/material/icons/generator/raw-icons/twotone/roller_shades.xml
deleted file mode 100644
index 16afc1a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/roller_shades.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h12v6h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM18,19H6v-6h5v1.82c-0.45,0.32 -0.75,0.84 -0.75,1.43c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75c0,-0.59 -0.3,-1.12 -0.75,-1.43V13h5V19zM18,11H6V5h12V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/roller_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/twotone/roller_shades_closed.xml
deleted file mode 100644
index cf1a0713..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/roller_shades_closed.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h12v10h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h8.25c0,0.97 0.78,1.75 1.75,1.75s1.75,-0.78 1.75,-1.75H22v-2H20zM11,19H6v-2h5V19zM18,19h-5v-2h5V19zM18,15H6V5h12V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/roller_skating.xml b/compose/material/material/icons/generator/raw-icons/twotone/roller_skating.xml
deleted file mode 100644
index 0d2963f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/roller_skating.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14H6V3h5v1H9.5C9.22,4 9,4.22 9,4.5C9,4.78 9.22,5 9.5,5H11l0.1,1H9.5C9.22,6 9,6.22 9,6.5C9,6.78 9.22,7 9.5,7h1.81c0.45,1.12 1.4,2.01 2.6,2.36l2.62,0.73C17.4,10.33 18,11.1 18,12V14zM5,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C6,20.55 5.55,21 5,21zM19,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,20.55 19.55,21 19,21zM12,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,20.55 12.55,21 12,21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12c0,-1.79 -1.19,-3.34 -2.91,-3.82l-2.62,-0.74C13.62,7.19 13,6.39 13,5.5V1H4v15h16V12zM18,14H6V3h5v1H9.5C9.22,4 9,4.22 9,4.5C9,4.78 9.22,5 9.5,5H11l0.1,1H9.5C9.22,6 9,6.22 9,6.5C9,6.78 9.22,7 9.5,7h1.81c0.45,1.12 1.4,2.01 2.6,2.36l2.62,0.73C17.4,10.33 18,11.1 18,12V14zM5,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S6.66,17 5,17zM5,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C6,20.55 5.55,21 5,21zM19,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,17 19,17zM19,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C20,20.55 19.55,21 19,21zM12,17c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S13.66,17 12,17zM12,21c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C13,20.55 12.55,21 12,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/roofing.xml b/compose/material/material/icons/generator/raw-icons/twotone/roofing.xml
deleted file mode 100644
index 20434b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/roofing.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16h2v2h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18h-2v-2h2V18zM15,14H9v6h6V14L15,14zM19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7,-6.31L19,12h3L19,9.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/room.xml b/compose/material/material/icons/generator/raw-icons/twotone/room.xml
deleted file mode 100644
index 569f484..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/room.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C9.24,4 7,6.24 7,9c0,2.85 2.92,7.21 5,9.88 2.11,-2.69 5,-7 5,-9.88 0,-2.76 -2.24,-5 -5,-5zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM7,9c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.88 -2.88,7.19 -5,9.88C9.92,16.21 7,11.85 7,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/room_preferences.xml b/compose/material/material/icons/generator/raw-icons/twotone/room_preferences.xml
deleted file mode 100644
index f30b9fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/room_preferences.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12.11V5H7v14h4.29C11.1,18.37 11,17.7 11,17C11,15.09 11.76,13.37 13,12.11zM10,11h2v2h-2V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13h-2v-2h2V13zM7,19V5h6v7.11c0.57,-0.59 1.25,-1.07 2,-1.42V6h2v4h1h1V4h-4V3H5v16H3v2h9.26c-0.42,-0.6 -0.75,-1.28 -0.97,-2H7zM21.69,17.63l1.14,1l-1,1.73l-1.45,-0.49c-0.32,0.27 -0.68,0.48 -1.08,0.63L19,22h-2l-0.3,-1.49c-0.4,-0.15 -0.76,-0.36 -1.08,-0.63l-1.45,0.49l-1,-1.73l1.14,-1c-0.08,-0.5 -0.08,-0.76 0,-1.26l-1.14,-1l1,-1.73l1.45,0.49c0.32,-0.27 0.68,-0.48 1.08,-0.63L17,12h2l0.3,1.49c0.4,0.15 0.76,0.36 1.08,0.63l1.45,-0.49l1,1.73l-1.14,1C21.77,16.87 21.77,17.13 21.69,17.63zM20,17c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2s0.9,2 2,2S20,18.1 20,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/room_service.xml b/compose/material/material/icons/generator/raw-icons/twotone/room_service.xml
deleted file mode 100644
index 494205e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/room_service.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9.58c-2.95,0 -5.47,1.83 -6.5,4.41h13c-1.03,-2.58 -3.55,-4.41 -6.5,-4.41z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17h20v2L2,19zM13.84,7.79c0.1,-0.24 0.16,-0.51 0.16,-0.79 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2c0,0.28 0.06,0.55 0.16,0.79C6.25,8.6 3.27,11.93 3,16h18c-0.27,-4.07 -3.25,-7.4 -7.16,-8.21zM12,9.58c2.95,0 5.47,1.83 6.5,4.41h-13c1.03,-2.58 3.55,-4.41 6.5,-4.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rotate_90_degrees_ccw.xml b/compose/material/material/icons/generator/raw-icons/twotone/rotate_90_degrees_ccw.xml
deleted file mode 100644
index 8fe8978..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rotate_90_degrees_ccw.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.35,9.24L3.69,12.9l3.65,3.66L11,12.9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.34,6.41L0.86,12.9l6.49,6.48 6.49,-6.48 -6.5,-6.49zM7.34,16.56L3.69,12.9l3.66,-3.66L11,12.9l-3.66,3.66zM19.36,6.64C17.61,4.88 15.3,4 13,4L13,0.76L8.76,5 13,9.24L13,6c1.79,0 3.58,0.68 4.95,2.05 2.73,2.73 2.73,7.17 0,9.9C16.58,19.32 14.79,20 13,20c-0.97,0 -1.94,-0.21 -2.84,-0.61l-1.49,1.49C10.02,21.62 11.51,22 13,22c2.3,0 4.61,-0.88 6.36,-2.64 3.52,-3.51 3.52,-9.21 0,-12.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rotate_90_degrees_cw.xml b/compose/material/material/icons/generator/raw-icons/twotone/rotate_90_degrees_cw.xml
deleted file mode 100644
index 517b75a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rotate_90_degrees_cw.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.64,19.37c3.03,3.03 7.67,3.44 11.15,1.25l-1.46,-1.46c-2.66,1.43 -6.04,1.03 -8.28,-1.21c-2.73,-2.73 -2.73,-7.17 0,-9.9C7.42,6.69 9.21,6.03 11,6.03V9l4,-4l-4,-4v3.01c-2.3,0 -4.61,0.87 -6.36,2.63C1.12,10.15 1.12,15.85 4.64,19.37zM11,13l6,6l6,-6l-6,-6L11,13zM17,16.17L13.83,13L17,9.83L20.17,13L17,16.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.817,12.995l3.175,-3.175l3.175,3.175l-3.175,3.175z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rotate_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/rotate_left.xml
deleted file mode 100644
index 1a4ebd2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rotate_left.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17.91v2.02c3.95,-0.49 7,-3.85 7,-7.93s-3.05,-7.44 -7,-7.93L13,1L8.45,5.55 13,10L13,6.09c2.84,0.48 5,2.94 5,5.91s-2.16,5.43 -5,5.91zM5.69,16.89l1.41,-1.42c-0.52,-0.75 -0.87,-1.59 -1.01,-2.47L4.07,13c0.17,1.39 0.72,2.73 1.62,3.89zM7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11h2.02c0.14,-0.87 0.49,-1.72 1.02,-2.47zM11,17.9c-0.87,-0.15 -1.71,-0.49 -2.46,-1.03L7.1,18.32c1.16,0.9 2.51,1.44 3.9,1.61L11,17.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rotate_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/rotate_right.xml
deleted file mode 100644
index b8188c0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rotate_right.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.93,11c-0.17,-1.39 -0.72,-2.73 -1.62,-3.89l-1.42,1.42c0.54,0.75 0.88,1.6 1.02,2.47h2.02zM11,1v3.07C7.06,4.56 4,7.92 4,12s3.05,7.44 7,7.93v-2.02c-2.84,-0.48 -5,-2.94 -5,-5.91s2.16,-5.43 5,-5.91L11,10l4.55,-4.45L11,1zM15.46,16.87c-0.75,0.54 -1.59,0.89 -2.46,1.03v2.02c1.39,-0.17 2.74,-0.71 3.9,-1.61l-1.44,-1.44zM18.31,16.89c0.9,-1.16 1.45,-2.5 1.62,-3.89h-2.02c-0.14,0.87 -0.48,1.72 -1.02,2.48l1.42,1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/roundabout_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/roundabout_left.xml
deleted file mode 100644
index 09cb912..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/roundabout_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.08,8c0.48,-2.84 2.94,-5 5.92,-5c3.31,0 6,2.69 6,6c0,2.97 -2.16,5.44 -5,5.92L17,21h-2l0,-6.09c0,-0.98 0.71,-1.8 1.67,-1.97C18.56,12.63 20,10.98 20,9c0,-2.21 -1.79,-4 -4,-4c-1.98,0 -3.63,1.44 -3.94,3.33C11.89,9.29 11.07,10 10.09,10l-4.26,0l1.59,1.59L6,13L2,9l4,-4l1.41,1.41L5.83,8L10.08,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/roundabout_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/roundabout_right.xml
deleted file mode 100644
index 3d1f1a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/roundabout_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.92,8C13.44,5.16 10.97,3 8,3C4.69,3 2,5.69 2,9c0,2.97 2.16,5.44 5,5.92L7,21h2l0,-6.09c0,-0.98 -0.71,-1.8 -1.67,-1.97C5.44,12.63 4,10.98 4,9c0,-2.21 1.79,-4 4,-4c1.98,0 3.63,1.44 3.94,3.33C12.11,9.29 12.93,10 13.91,10l4.26,0l-1.59,1.59L18,13l4,-4l-4,-4l-1.41,1.41L18.17,8L13.92,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rounded_corner.xml b/compose/material/material/icons/generator/raw-icons/twotone/rounded_corner.xml
deleted file mode 100644
index afb1b77..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rounded_corner.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19h2v2h-2v-2zM19,17h2v-2h-2v2zM3,13h2v-2L3,11v2zM3,17h2v-2L3,15v2zM3,9h2L5,7L3,7v2zM3,5h2L5,3L3,3v2zM7,5h2L9,3L7,3v2zM15,21h2v-2h-2v2zM11,21h2v-2h-2v2zM15,21h2v-2h-2v2zM7,21h2v-2L7,19v2zM3,21h2v-2L3,19v2zM21,8c0,-2.76 -2.24,-5 -5,-5h-5v2h5c1.65,0 3,1.35 3,3v5h2L21,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/route.xml b/compose/material/material/icons/generator/raw-icons/twotone/route.xml
deleted file mode 100644
index 75636e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/route.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15.18V7c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v10c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8.82C8.16,8.4 9,7.3 9,6c0,-1.66 -1.34,-3 -3,-3S3,4.34 3,6c0,1.3 0.84,2.4 2,2.82V17c0,2.21 1.79,4 4,4s4,-1.79 4,-4V7c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v8.18c-1.16,0.41 -2,1.51 -2,2.82c0,1.66 1.34,3 3,3s3,-1.34 3,-3C21,16.7 20.16,15.6 19,15.18zM6,7C5.45,7 5,6.55 5,6s0.45,-1 1,-1s1,0.45 1,1S6.55,7 6,7zM18,19c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S18.55,19 18,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/router.xml b/compose/material/material/icons/generator/raw-icons/twotone/router.xml
deleted file mode 100644
index cc1eba5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/router.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,15L5,15v4h14v-4h-4zM8,18L6,18v-2h2v2zM11.5,18h-2v-2h2v2zM15,18h-2v-2h2v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,4.2c1.5,0 3,0.6 4.2,1.7l0.8,-0.8C19.6,3.7 17.8,3 16,3s-3.6,0.7 -5,2.1l0.8,0.8C13,4.8 14.5,4.2 16,4.2zM12.7,6.7l0.8,0.8c0.7,-0.7 1.6,-1 2.5,-1s1.8,0.3 2.5,1l0.8,-0.8c-0.9,-0.9 -2.1,-1.4 -3.3,-1.4s-2.4,0.5 -3.3,1.4zM19,13h-2L17,9h-2v4L5,13c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19v-4h14v4zM6,16h2v2L6,18zM9.5,16h2v2h-2zM13,16h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rowing.xml b/compose/material/material/icons/generator/raw-icons/twotone/rowing.xml
deleted file mode 100644
index 596f766..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rowing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5L4,19l1.5,1.5L9,17h2l-2.5,-2.5zM15,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM21,21.01L18,24l-2.99,-3.01L15.01,19.5l-7.1,-7.09c-0.31,0.05 -0.61,0.07 -0.91,0.07v-2.16c1.66,0.03 3.61,-0.87 4.67,-2.04l1.4,-1.55c0.19,-0.21 0.43,-0.38 0.69,-0.5 0.29,-0.14 0.62,-0.23 0.96,-0.23h0.03C15.99,6.01 17,7.02 17,8.26v5.75c0,0.84 -0.35,1.61 -0.92,2.16l-3.58,-3.58v-2.27c-0.63,0.52 -1.43,1.02 -2.29,1.39L16.5,18L18,18l3,3.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rss_feed.xml b/compose/material/material/icons/generator/raw-icons/twotone/rss_feed.xml
deleted file mode 100644
index 198fdc3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rss_feed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.18,17.82m-2.18,0a2.18,2.18 0,1 1,4.36 0a2.18,2.18 0,1 1,-4.36 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4.44v2.83c7.03,0 12.73,5.7 12.73,12.73h2.83c0,-8.59 -6.97,-15.56 -15.56,-15.56zM4,10.1v2.83c3.9,0 7.07,3.17 7.07,7.07h2.83c0,-5.47 -4.43,-9.9 -9.9,-9.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rsvp.xml b/compose/material/material/icons/generator/raw-icons/twotone/rsvp.xml
deleted file mode 100644
index e01c7bf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rsvp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9zM5.1,12.9L6,15H4.5l-0.85,-2H2.5v2H1V9h3.5C5.35,9 6,9.65 6,10.5v1C6,12.1 5.6,12.65 5.1,12.9zM4.5,10.5h-2v1h2V10.5zM21.5,13h-2v2H18V9h3.5c0.83,0 1.5,0.67 1.5,1.5v1C23,12.33 22.33,13 21.5,13zM21.5,10.5h-2v1h2V10.5zM11.5,9v1.5h-3v0.75h2c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7v-1.5h3v-0.75H7.75C7.34,12.75 7,12.41 7,12v-2c0,-0.55 0.45,-1 1,-1H11.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rtt.xml b/compose/material/material/icons/generator/raw-icons/twotone/rtt.xml
deleted file mode 100644
index 56264b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rtt.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.03,3l-1.11,7.07h2.62l0.7,-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4,-2.57h-2.35l2,-12.86h2.58l-0.71,4.5h2.65L22,3H9.03zM8,5H4L3.69,7h4L8,5zM7.39,9h-4l-0.31,2h4L7.39,9zM8.31,17h-6L2,19h6L8.31,17zM8.93,13h-6l-0.31,2h6.01L8.93,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rule.xml b/compose/material/material/icons/generator/raw-icons/twotone/rule.xml
deleted file mode 100644
index 11eb72d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rule.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.54,11L13,7.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L16.54,11zM11,7H2v2h9V7zM21,13.41L19.59,12L17,14.59L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41zM11,15H2v2h9V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rule_folder.xml b/compose/material/material/icons/generator/raw-icons/twotone/rule_folder.xml
deleted file mode 100644
index dc294c1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rule_folder.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.17,8l-2,-2H4v12l16,0V8H11.17zM7.83,16L5,13.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L7.83,16zM19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13L19,14.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,16L5,13.17l1.41,-1.41l1.41,1.41l3.54,-3.54l1.41,1.41L7.83,16zM17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13zM20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/run_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/run_circle.xml
deleted file mode 100644
index b31cd81..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/run_circle.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8s8,-3.58 8,-8S16.42,4 12,4zM13.5,6c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C12.5,6.45 12.95,6 13.5,6zM16,12c-0.7,0 -2.01,-0.54 -2.91,-1.76l-0.41,2.35L14,14.03V18h-1v-3.58l-1.11,-1.21l-0.52,2.64L7.6,15.08l0.2,-0.98l2.78,0.57l0.96,-4.89L10,10.35V12H9V9.65l3.28,-1.21c0.49,-0.18 1.03,0.06 1.26,0.53C14.37,10.67 15.59,11 16,11V12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.54,8.97c-0.23,-0.47 -0.76,-0.71 -1.26,-0.53L9,9.65V12h1v-1.65l1.54,-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77l0.52,-2.64L13,14.42V18h1v-3.97l-1.32,-1.44l0.41,-2.35C13.99,11.46 15.3,12 16,12v-1C15.59,11 14.37,10.67 13.54,8.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/running_with_errors.xml b/compose/material/material/icons/generator/raw-icons/twotone/running_with_errors.xml
deleted file mode 100644
index b3eba04..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/running_with_errors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10v8h-2v-8H22zM20,20v2h2v-2H20zM18,17.29C16.53,18.95 14.39,20 12,20c-4.41,0 -8,-3.59 -8,-8c0,-4.41 3.59,-8 8,-8v9l7.55,-7.55C17.72,3.34 15.02,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10c2.25,0 4.33,-0.74 6,-2V17.29z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/rv_hookup.xml b/compose/material/material/icons/generator/raw-icons/twotone/rv_hookup.xml
deleted file mode 100644
index c566cda..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/rv_hookup.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17v-6c0,-1.1 -0.9,-2 -2,-2L7,9L7,7l-3,3 3,3v-2h4v3L4,14v3c0,1.1 0.9,2 2,2h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h8v-2h-2zM11,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,14h-4v-3h4v3zM17,2v2L9,4v2h8v2l3,-3 -3,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17v-6c0,-1.1 -0.9,-2 -2,-2L7,9L7,7l-3,3 3,3v-2h4v3L4,14v3c0,1.1 0.9,2 2,2h2c0,1.66 1.34,3 3,3s3,-1.34 3,-3h8v-2h-2zM11,20c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,14h-4v-3h4v3zM17,2v2L9,4v2h8v2l3,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/safety_check.xml b/compose/material/material/icons/generator/raw-icons/twotone/safety_check.xml
deleted file mode 100644
index fe03d13..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/safety_check.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.14L6,6.39v4.7c0,4 2.55,7.7 6,8.83c3.45,-1.13 6,-4.82 6,-8.83v-4.7L12,4.14zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5s5,2.24 5,5S14.76,17 12,17zM13.65,14.35l-2.15,-2.15V9h1v2.79l1.85,1.85L13.65,14.35z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09zM12,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S14.76,7 12,7zM13.65,14.35l-2.15,-2.15V9h1v2.79l1.85,1.85L13.65,14.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/safety_divider.xml b/compose/material/material/icons/generator/raw-icons/twotone/safety_divider.xml
deleted file mode 100644
index 4cdfc8c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/safety_divider.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5h2v14h-2V5zM5,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C3,11.1 3.9,12 5,12zM7.78,13.58C6.93,13.21 5.99,13 5,13s-1.93,0.21 -2.78,0.58C1.48,13.9 1,14.62 1,15.43L1,16h8l0,-0.57C9,14.62 8.52,13.9 7.78,13.58zM19,12c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C17,11.1 17.9,12 19,12zM21.78,13.58C20.93,13.21 19.99,13 19,13s-1.93,0.21 -2.78,0.58C15.48,13.9 15,14.62 15,15.43L15,16h8l0,-0.57C23,14.62 22.52,13.9 21.78,13.58z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sailing.xml b/compose/material/material/icons/generator/raw-icons/twotone/sailing.xml
deleted file mode 100644
index 4ae7e6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sailing.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11.5H6.83L9,8.38V11.5zM15.38,5.24c1.42,1.52 2.88,3.72 3.41,6.26h-3.68c0.21,-1.1 0.39,-2.46 0.39,-4C15.5,6.71 15.45,5.95 15.38,5.24z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,13.5V2L3,13.5H11zM9,11.5H6.83L9,8.38V11.5zM21,13.5C21,6.5 14.5,1 12.5,1c0,0 1,3 1,6.5s-1,6 -1,6H21zM15.38,5.24c1.42,1.52 2.88,3.72 3.41,6.26h-3.68c0.21,-1.1 0.39,-2.46 0.39,-4C15.5,6.71 15.45,5.95 15.38,5.24zM22,15H2c0.31,1.53 1.16,2.84 2.33,3.73C4.98,18.46 5.55,18.01 6,17.5C6.73,18.34 7.8,19 9,19s2.27,-0.66 3,-1.5c0.73,0.84 1.8,1.5 3,1.5s2.26,-0.66 3,-1.5c0.45,0.51 1.02,0.96 1.67,1.23C20.84,17.84 21.69,16.53 22,15zM22,23v-2h-1c-1.04,0 -2.08,-0.35 -3,-1c-1.83,1.3 -4.17,1.3 -6,0c-1.83,1.3 -4.17,1.3 -6,0c-0.91,0.65 -1.96,1 -3,1H2l0,2h1c1.03,0 2.05,-0.25 3,-0.75c1.89,1 4.11,1 6,0c1.89,1 4.11,1 6,0h0c0.95,0.5 1.97,0.75 3,0.75H22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sanitizer.xml b/compose/material/material/icons/generator/raw-icons/twotone/sanitizer.xml
deleted file mode 100644
index 9ff5924..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sanitizer.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8c-2.21,0 -4,1.79 -4,4v8h8v-8C14,9.79 12.21,8 10,8zM13,16h-2v2H9v-2H7v-2h2v-2h2v2h2V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,6.5C15.5,5.66 17,4 17,4s1.5,1.66 1.5,2.5C18.5,7.33 17.83,8 17,8S15.5,7.33 15.5,6.5zM19.5,15c1.38,0 2.5,-1.12 2.5,-2.5c0,-1.67 -2.5,-4.5 -2.5,-4.5S17,10.83 17,12.5C17,13.88 18.12,15 19.5,15zM13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14zM16,12v8c0,1.1 -0.9,2 -2,2H6c-1.1,0 -2,-0.9 -2,-2v-8c0,-2.97 2.16,-5.43 5,-5.91V4H7V2h6c1.13,0 2.15,0.39 2.99,1.01l-1.43,1.43C14.1,4.17 13.57,4 13,4h-2v2.09C13.84,6.57 16,9.03 16,12zM14,12c0,-2.21 -1.79,-4 -4,-4s-4,1.79 -4,4v8h8V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/satellite.xml b/compose/material/material/icons/generator/raw-icons/twotone/satellite.xml
deleted file mode 100644
index f7bf816..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/satellite.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM6,6h2.57c0,1.42 -1.15,2.58 -2.57,2.58L6,6zM6,10.29c2.37,0 4.28,-1.93 4.28,-4.29L12,6c0,3.31 -2.68,6 -6,6v-1.71zM9,13.15l2.14,2.58 3,-3.86L18,17L6,17l3,-3.85z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM8.57,6L6,6v2.58c1.42,0 2.57,-1.16 2.57,-2.58zM12,6h-1.72c0,2.36 -1.91,4.29 -4.28,4.29L6,12c3.32,0 6,-2.69 6,-6zM14.14,11.86l-3,3.87L9,13.15 6,17h12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/satellite_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/satellite_alt.xml
deleted file mode 100644
index 9d9506e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/satellite_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.6,19.32l-1.06,1.06L2,16.85l1.06,-1.06L6.6,19.32zM8.72,17.2l-1.06,1.06l-3.54,-3.54l1.06,-1.06L8.72,17.2zM13.67,12.25l-1.41,1.41l-3.54,-3.54l1.41,-1.41L13.67,12.25zM18.26,7.66L17.2,8.72l-3.54,-3.54l1.06,-1.06L18.26,7.66zM20.38,5.54L19.32,6.6l-3.54,-3.54L16.85,2L20.38,5.54z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.44,0.59l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l1.24,1.24l-0.71,0.71L11.55,7.3c-0.78,-0.78 -2.05,-0.78 -2.83,0L7.3,8.72c-0.78,0.78 -0.78,2.05 0,2.83l1.24,1.24l-0.71,0.71L6.6,12.25c-0.78,-0.78 -2.05,-0.78 -2.83,0l-3.18,3.18c-0.78,0.78 -0.78,2.05 0,2.83l3.54,3.54c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18c0.78,-0.78 0.78,-2.05 0,-2.83l-1.24,-1.24l0.71,-0.71l1.24,1.24c0.78,0.78 2.05,0.78 2.83,0l1.41,-1.41c0.78,-0.78 0.78,-2.05 0,-2.83L13.84,9.6l0.71,-0.71l1.24,1.24c0.78,0.78 2.05,0.78 2.83,0l3.18,-3.18c0.78,-0.78 0.78,-2.05 0,-2.83l-3.54,-3.54C17.48,-0.2 16.22,-0.2 15.44,0.59zM6.6,19.32l-1.06,1.06L2,16.85l1.06,-1.06L6.6,19.32zM8.72,17.2l-1.06,1.06l-3.54,-3.54l1.06,-1.06L8.72,17.2zM13.67,12.25l-1.41,1.41l-3.54,-3.54l1.41,-1.41L13.67,12.25zM18.26,7.66L17.2,8.72l-3.54,-3.54l1.06,-1.06L18.26,7.66zM20.38,5.54L19.32,6.6l-3.54,-3.54L16.85,2L20.38,5.54zM21,14l2,0c0,4.97 -4.03,9 -9,9l0,-2C17.87,21 21,17.87 21,14zM17,14l2,0c0,2.76 -2.24,5 -5,5l0,-2C15.66,17 17,15.66 17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/save.xml b/compose/material/material/icons/generator/raw-icons/twotone/save.xml
deleted file mode 100644
index 8130c6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/save.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h14L19,7.83L16.17,5L5,5zM12,18c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM15,10L6,10L6,6h9v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7l-4,-4zM19,19L5,19L5,5h11.17L19,7.83L19,19zM12,12c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM6,6h9v4L6,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/save_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/save_alt.xml
deleted file mode 100644
index 4cf0589..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/save_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12v7L5,19v-7L3,12v7c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2zM13,12.67l2.59,-2.58L17,11.5l-5,5 -5,-5 1.41,-1.41L11,12.67L11,3h2v9.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/save_as.xml b/compose/material/material/icons/generator/raw-icons/twotone/save_as.xml
deleted file mode 100644
index ddd0152..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/save_as.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.17,5H5v14h9.4l4.6,-4.6V7.83L16.17,5zM12,18c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,18 12,18zM15,10H6V6h9V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.4V7l-4,-4H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h7.4l2,-2H5V5h11.17L19,7.83v6.57L21,12.4zM15,15c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,13.34 15,15zM6,6h9v4H6V6zM19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25zM23.25,16.51l-0.85,0.85l-1.77,-1.77l0.85,-0.85c0.2,-0.2 0.51,-0.2 0.71,0l1.06,1.06C23.45,16 23.45,16.32 23.25,16.51z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/saved_search.xml b/compose/material/material/icons/generator/raw-icons/twotone/saved_search.xml
deleted file mode 100644
index 20070c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/saved_search.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.73,13.31C15.52,12.24 16,10.93 16,9.5C16,5.91 13.09,3 9.5,3S3,5.91 3,9.5C3,13.09 5.91,16 9.5,16c1.43,0 2.74,-0.48 3.81,-1.27L19.59,21L21,19.59L14.73,13.31zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5S14,7.01 14,9.5S11.99,14 9.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,6l-0.79,2.44l-2.46,0l2.01,1.59l-0.77,2.47l2.01,-1.53l2.01,1.53l-0.77,-2.47l2.01,-1.59l-2.46,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/savings.xml b/compose/material/material/icons/generator/raw-icons/twotone/savings.xml
deleted file mode 100644
index 3658ffb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/savings.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9.5L15.5,6c0,-0.65 0.09,-1.29 0.26,-1.91C14.79,4.34 14,5.06 13.67,6L7.5,6C5.57,6 4,7.57 4,9.5c0,1.88 1.22,6.65 2.01,9.5L8,19v-2h6v2l2.01,0l1.55,-5.15L20,13.03V9.5H19zM13,9H8V7h5V9zM16,11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C17,10.55 16.55,11 16,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,10c0,-0.55 0.45,-1 1,-1s1,0.45 1,1c0,0.55 -0.45,1 -1,1S15,10.55 15,10zM8,9h5V7H8V9zM22,7.5v6.97l-2.82,0.94L17.5,21L12,21v-2h-2v2l-5.5,0C4.5,21 2,12.54 2,9.5S4.46,4 7.5,4l5,0c0.91,-1.21 2.36,-2 4,-2C17.33,2 18,2.67 18,3.5c0,0.21 -0.04,0.4 -0.12,0.58c-0.14,0.34 -0.26,0.73 -0.32,1.15l2.27,2.27H22zM20,9.5h-1L15.5,6c0,-0.65 0.09,-1.29 0.26,-1.91C14.79,4.34 14,5.06 13.67,6L7.5,6C5.57,6 4,7.57 4,9.5c0,1.88 1.22,6.65 2.01,9.5L8,19v-2h6v2l2.01,0l1.55,-5.15L20,13.03V9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/scale.xml b/compose/material/material/icons/generator/raw-icons/twotone/scale.xml
deleted file mode 100644
index a688ae0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/scale.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.87,4C17.5,5.19 15,6.12 12,6.12C9,6.12 6.5,5.19 5.13,4H18.87z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11V8c4.56,-0.58 8,-3.1 8,-6H2c0,2.9 3.44,5.42 8,6l0,3c-3.68,0.73 -8,3.61 -8,11h6v-2H4.13c0.93,-6.83 6.65,-7.2 7.87,-7.2s6.94,0.37 7.87,7.2H16v2h6C22,14.61 17.68,11.73 14,11zM18.87,4C17.5,5.19 15,6.12 12,6.12C9,6.12 6.5,5.19 5.13,4H18.87zM12,22c-1.1,0 -2,-0.9 -2,-2c0,-0.55 0.22,-1.05 0.59,-1.41C11.39,17.79 16,16 16,16s-1.79,4.61 -2.59,5.41C13.05,21.78 12.55,22 12,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/scanner.xml b/compose/material/material/icons/generator/raw-icons/twotone/scanner.xml
deleted file mode 100644
index 56698d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/scanner.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14v4h14v-4L5,14zM8,17L6,17v-2h2v2zM18,17h-8v-2h8v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,10.7L4.2,5l-0.7,1.9L17.6,12L5,12c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5.5c0,-0.8 -0.5,-1.6 -1.2,-1.8zM19,18L5,18v-4h14v4zM6,15h2v2L6,17zM10,15h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/scatter_plot.xml b/compose/material/material/icons/generator/raw-icons/twotone/scatter_plot.xml
deleted file mode 100644
index 20c30e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/scatter_plot.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.6,17.6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,10c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM7,16c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM15,6c0,-2.21 -1.79,-4 -4,-4S7,3.79 7,6s1.79,4 4,4 4,-1.79 4,-4zM11,8c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM16.6,13.6c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM16.6,19.6c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/schedule.xml b/compose/material/material/icons/generator/raw-icons/twotone/schedule.xml
deleted file mode 100644
index f3824e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/schedule.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM16.25,16.15L11,13L11,7h1.5v5.25l4.5,2.67 -0.75,1.23z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7L11,7v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/schedule_send.xml b/compose/material/material/icons/generator/raw-icons/twotone/schedule_send.xml
deleted file mode 100644
index 2611b04..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/schedule_send.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10.5l6,1.5l-6,1.5v3.49l5.39,-2.27c0.6,-1.73 1.86,-3.16 3.48,-3.97L5,7.01V10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12l-6,-1.5V7.01l8.87,3.74c0.94,-0.47 2,-0.75 3.13,-0.75c0.1,0 0.19,0.01 0.28,0.01L3,4v16l7,-2.95c0,-0.02 0,-0.03 0,-0.05c0,-0.8 0.14,-1.56 0.39,-2.28L5,16.99V13.5L11,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.76,0 5,-2.24 5,-5S19.76,12 17,12zM18.65,19.35l-2.15,-2.15V14h1v2.79l1.85,1.85L18.65,19.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/schema.xml b/compose/material/material/icons/generator/raw-icons/twotone/schema.xml
deleted file mode 100644
index 39ac794..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/schema.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3h3v2H6V3zM9,21H6v-2h3V21zM9,13H6v-2h3V13zM19,13h-3v-2h3V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14zM6,3h3v2H6V3zM9,21H6v-2h3V21zM9,13H6v-2h3V13zM19,13h-3v-2h3V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/school.xml b/compose/material/material/icons/generator/raw-icons/twotone/school.xml
deleted file mode 100644
index 36a34eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/school.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12.27v3.72l5,2.73 5,-2.73v-3.72L12,15zM5.18,9L12,12.72 18.82,9 12,5.28z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L1,9l4,2.18v6L12,21l7,-3.82v-6l2,-1.09L21,17h2L23,9L12,3zM17,15.99l-5,2.73 -5,-2.73v-3.72L12,15l5,-2.73v3.72zM12,12.72L5.18,9 12,5.28 18.82,9 12,12.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/science.xml b/compose/material/material/icons/generator/raw-icons/twotone/science.xml
deleted file mode 100644
index f1c69f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/science.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,6l-2,0l0,5.33l-5,6.67l12,0l-5,-6.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.8,18.4L15,10.67V6.5l1.35,-1.69C16.61,4.48 16.38,4 15.96,4H8.04C7.62,4 7.39,4.48 7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06 3.18,20 4,20h16C20.82,20 21.29,19.06 20.8,18.4zM6,18l5,-6.67V6h2v5.33L18,18H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/score.xml b/compose/material/material/icons/generator/raw-icons/twotone/score.xml
deleted file mode 100644
index c1fb98d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/score.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h8l-4,-4zM5,16.5l4,-4 4,4 6,-6L19,5L5,5v11.5zM12,6h1.5v3l2,-3h1.7l-2,3 2,3h-1.7l-2,-3v3L12,12L12,6zM7,8.25h2.5L9.5,7.5L7,7.5L7,6h4v3.75L8.5,9.75v0.75L11,10.5L11,12L7,12L7,8.25zM19,19v-6l-6,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19l4,-4 4,4 6,-6v6zM19,10.5l-6,6 -4,-4 -4,4L5,5h14v5.5zM13.5,9L13.5,6L12,6v6h1.5zM17.2,12l-2,-3 2,-3h-1.7l-2,3 2,3zM11,10.5L8.5,10.5v-0.75L11,9.75L11,6L7,6v1.5h2.5v0.75L7,8.25L7,12h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/scoreboard.xml b/compose/material/material/icons/generator/raw-icons/twotone/scoreboard.xml
deleted file mode 100644
index edea8fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/scoreboard.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,13.5H16v-3h1.5V13.5zM12.75,6v1.5h-1.5V6H4v12h7.25v-1.5h1.5V18H20V6H12.75zM9.5,11.5c0,0.55 -0.45,1 -1,1h-2v1h3V15H5v-2.5c0,-0.55 0.45,-1 1,-1h2v-1H5V9h3.5c0.55,0 1,0.45 1,1V11.5zM12.75,14.5h-1.5V13h1.5V14.5zM12.75,11h-1.5V9.5h1.5V11zM19,14c0,0.55 -0.45,1 -1,1h-2.5c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1H18c0.55,0 1,0.45 1,1V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9h-2.5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1H18c0.55,0 1,-0.45 1,-1v-4C19,9.45 18.55,9 18,9zM17.5,13.5H16v-3h1.5V13.5zM9.5,15H5v-2.5c0,-0.55 0.45,-1 1,-1h2v-1H5V9h3.5c0.55,0 1,0.45 1,1v1.5c0,0.55 -0.45,1 -1,1h-2v1h3V15zM12.75,11h-1.5V9.5h1.5V11zM12.75,14.5h-1.5V13h1.5V14.5zM22,6v12c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V6c0,-1.1 0.9,-2 2,-2h3V2h2v2h6V2h2v2h3C21.1,4 22,4.9 22,6zM20,18V6h-7.25v1.5h-1.5V6H4v12h7.25v-1.5h1.5V18H20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_landscape.xml b/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_landscape.xml
deleted file mode 100644
index 8705ec4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_landscape.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,10c0,-0.66 -0.54,-1.2 -1.2,-1.2s-1.2,0.54 -1.2,1.2v1h2.4v-1zM5,17h14L19,7L5,7v10zM9,12c0,-0.55 0.45,-1 1,-1v-1c0,-1.1 0.89,-2 2,-2 1.1,0 2,0.89 2,2v1c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1v-1c0,-1.11 -0.9,-2 -2,-2 -1.11,0 -2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2v1h-2.4v-1zM21,5L3,5c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_portrait.xml b/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_portrait.xml
deleted file mode 100644
index 07d98d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_portrait.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.2,10c0,-0.66 -0.54,-1.2 -1.2,-1.2s-1.2,0.54 -1.2,1.2v1h2.4v-1zM7,19h10L17,5L7,5v14zM9,12c0,-0.55 0.45,-1 1,-1v-1c0,-1.1 0.89,-2 2,-2 1.1,0 2,0.89 2,2v1c0.55,0 1,0.45 1,1v3c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16h4c0.55,0 1,-0.45 1,-1v-3c0,-0.55 -0.45,-1 -1,-1v-1c0,-1.11 -0.9,-2 -2,-2 -1.11,0 -2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1zM10.8,10c0,-0.66 0.54,-1.2 1.2,-1.2s1.2,0.54 1.2,1.2v1h-2.4v-1zM17,1L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-2 -2,-2zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_rotation.xml b/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_rotation.xml
deleted file mode 100644
index de6ae2a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screen_lock_rotation.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.3,13.77l-2.57,-2.57 -1.41,1.41 2.22,2.22 -5.66,5.66L3.56,9.17l5.66,-5.66 2.1,2.1 1.41,-1.41 -2.45,-2.45c-0.59,-0.59 -1.54,-0.59 -2.12,0L1.8,8.11c-0.59,0.59 -0.59,1.54 0,2.12l12.02,12.02c0.59,0.59 1.54,0.59 2.12,0l6.36,-6.36c0.59,-0.59 0.59,-1.54 0,-2.12zM7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.82 -1.33,1.33zM15.05,10h5c0.55,0 1,-0.45 1,-1L21.05,5c0,-0.55 -0.45,-1 -1,-1v-0.5c0,-1.38 -1.12,-2.5 -2.5,-2.5s-2.5,1.12 -2.5,2.5L15.05,4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1zM15.85,3.5c0,-0.94 0.76,-1.7 1.7,-1.7s1.7,0.76 1.7,1.7L19.25,4h-3.4v-0.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screen_rotation.xml b/compose/material/material/icons/generator/raw-icons/twotone/screen_rotation.xml
deleted file mode 100644
index 3a6bdc4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screen_rotation.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.828,21.192L2.808,9.172l6.357,-6.357 12.02,12.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.48,2.52c3.27,1.55 5.61,4.72 5.97,8.48h1.5C23.44,4.84 18.29,0 12,0l-0.66,0.03 3.81,3.81 1.33,-1.32zM10.23,1.75c-0.59,-0.59 -1.54,-0.59 -2.12,0L1.75,8.11c-0.59,0.59 -0.59,1.54 0,2.12l12.02,12.02c0.59,0.59 1.54,0.59 2.12,0l6.36,-6.36c0.59,-0.59 0.59,-1.54 0,-2.12L10.23,1.75zM14.83,21.19L2.81,9.17l6.36,-6.36 12.02,12.02 -6.36,6.36zM7.52,21.48C4.25,19.94 1.91,16.76 1.55,13L0.05,13C0.56,19.16 5.71,24 12,24l0.66,-0.03 -3.81,-3.81 -1.33,1.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screen_rotation_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/screen_rotation_alt.xml
deleted file mode 100644
index 553db9c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screen_rotation_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7.59l5,-5c0.78,-0.78 2.05,-0.78 2.83,0L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59zM20,19h2v-6h-6v2h2.59l-4.99,5l-7.01,-7H3.76l8.41,8.41c0.78,0.78 2.05,0.78 2.83,0l5,-5V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screen_search_desktop.xml b/compose/material/material/icons/generator/raw-icons/twotone/screen_search_desktop.xml
deleted file mode 100644
index aa9a7b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screen_search_desktop.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5H4v11h16V5zM15.47,15.03l-2.09,-2.09c-1.35,0.87 -3.17,0.71 -4.36,-0.47c-1.37,-1.37 -1.37,-3.58 0,-4.95s3.58,-1.37 4.95,0c1.18,1.18 1.34,3 0.47,4.36l2.09,2.09L15.47,15.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16c1.1,0 1.99,-0.9 1.99,-2L22,5c0,-1.1 -0.9,-2 -2,-2H4C2.9,3 2,3.9 2,5v11C2,17.1 2.9,18 4,18zM4,5h16v11H4V5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,19h22v2h-22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.97,7.53c-1.37,-1.37 -3.58,-1.37 -4.95,0s-1.37,3.58 0,4.95c1.18,1.18 3,1.34 4.36,0.47l2.09,2.09l1.06,-1.06l-2.09,-2.09C15.31,10.53 15.16,8.71 13.97,7.53zM12.91,11.41c-0.78,0.78 -2.05,0.78 -2.83,0c-0.78,-0.78 -0.78,-2.05 0,-2.83s2.05,-0.78 2.83,0C13.69,9.37 13.69,10.63 12.91,11.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screen_share.xml b/compose/material/material/icons/generator/raw-icons/twotone/screen_share.xml
deleted file mode 100644
index eb12dc7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screen_share.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,16L20,6L4,6v10.01L20,16zM13,14.47v-2.19c-2.78,0 -4.61,0.85 -6,2.72 0.56,-2.67 2.11,-5.33 6,-5.87L13,7l4,3.73 -4,3.74z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18c1.1,0 1.99,-0.9 1.99,-2L22,6c0,-1.11 -0.9,-2 -2,-2L4,4c-1.11,0 -2,0.89 -2,2v10c0,1.1 0.89,2 2,2L0,18v2h24v-2h-4zM4,16L4,6h16v10.01L4,16zM13,9.13c-3.89,0.54 -5.44,3.2 -6,5.87 1.39,-1.87 3.22,-2.72 6,-2.72v2.19l4,-3.74L13,7v2.13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screenshot.xml b/compose/material/material/icons/generator/raw-icons/twotone/screenshot.xml
deleted file mode 100644
index 50dcac2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screenshot.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM9.5,8.5H12V7H8v4h1.5V8.5zM12,17h4v-4h-1.5v2.5H12V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/screenshot_monitor.xml b/compose/material/material/icons/generator/raw-icons/twotone/screenshot_monitor.xml
deleted file mode 100644
index dcc3c3a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/screenshot_monitor.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h16V5H4V17zM15,14.5h2.5V12H19v4h-4V14.5zM5,6h4v1.5H6.5V10H5V6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3H4C2.89,3 2,3.89 2,5v12c0,1.1 0.89,2 2,2h4v2h8v-2h4c1.1,0 2,-0.9 2,-2V5C22,3.89 21.1,3 20,3zM20,17H4V5h16V17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,7.5l2.5,0l0,-1.5l-4,0l0,4l1.5,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12l-1.5,0l0,2.5l-2.5,0l0,1.5l4,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/scuba_diving.xml b/compose/material/material/icons/generator/raw-icons/twotone/scuba_diving.xml
deleted file mode 100644
index eeb739b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/scuba_diving.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,13c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S1,14.1 1,13zM8.89,10.11l4.53,-1.21L12.64,6L8.11,7.21c-0.8,0.21 -1.28,1.04 -1.06,1.84l0,0C7.27,9.85 8.09,10.33 8.89,10.11zM20.5,5.9L23,3l-1,-1l-3,3l-2,4l-9.48,2.87c-0.82,0.2 -1.39,0.89 -1.5,1.68L5.24,18L2.4,21.8L4,23l3,-4l1.14,-3.14L14,14l5,-3.5L20.5,5.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sd.xml b/compose/material/material/icons/generator/raw-icons/twotone/sd.xml
deleted file mode 100644
index c1d51a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sd.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM13,9h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-4V9zM6,13h1.5v0.5h2v-1H7c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h3c0.55,0 1,0.45 1,1v1H9.5v-0.5h-2v1H10c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H7c-0.55,0 -1,-0.45 -1,-1V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.5h2v3h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,15h3c0.55,0 1,-0.45 1,-1v-1.5c0,-0.55 -0.45,-1 -1,-1H7.5v-1h2V11H11v-1c0,-0.55 -0.45,-1 -1,-1H7c-0.55,0 -1,0.45 -1,1v1.5c0,0.55 0.45,1 1,1h2.5v1h-2V13H6v1C6,14.55 6.45,15 7,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,14v-4c0,-0.55 -0.45,-1 -1,-1h-4v6h4C17.55,15 18,14.55 18,14zM16.5,13.5h-2v-3h2V13.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2,4.9 2,6v12c0,1.1 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sd_card.xml b/compose/material/material/icons/generator/raw-icons/twotone/sd_card.xml
deleted file mode 100644
index efa663a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sd_card.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.83L6,20h12L18,4h-7.17L6,8.83zM15,7h2v4h-2L15,7zM12,7h2v4h-2L12,7zM11,11L9,11L9,7h2v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,8.83L10.83,4L18,4v16zM9,7h2v4L9,11zM12,7h2v4h-2zM15,7h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sd_card_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/sd_card_alert.xml
deleted file mode 100644
index 7a13572..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sd_card_alert.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.83L6,20h12L18,4h-7.17L6,8.83zM11,8h2v5h-2L11,8zM11,15h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,8.83L10.83,4L18,4v16zM11,15h2v2h-2zM11,8h2v5h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sd_storage.xml b/compose/material/material/icons/generator/raw-icons/twotone/sd_storage.xml
deleted file mode 100644
index efa663a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sd_storage.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.83L6,20h12L18,4h-7.17L6,8.83zM15,7h2v4h-2L15,7zM12,7h2v4h-2L12,7zM11,11L9,11L9,7h2v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM18,20L6,20L6,8.83L10.83,4L18,4v16zM9,7h2v4L9,11zM12,7h2v4h-2zM15,7h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/search.xml b/compose/material/material/icons/generator/raw-icons/twotone/search.xml
deleted file mode 100644
index 07b76d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/search.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/search_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/search_off.xml
deleted file mode 100644
index 1f3c924..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/search_off.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5C16,5.91 13.09,3 9.5,3C6.08,3 3.28,5.64 3.03,9h2.02C5.3,6.75 7.18,5 9.5,5C11.99,5 14,7.01 14,9.5S11.99,14 9.5,14c-0.17,0 -0.33,-0.03 -0.5,-0.05v2.02C9.17,15.99 9.33,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.47,10.82l-2.47,2.47l-2.47,-2.47l-0.71,0.71l2.47,2.47l-2.47,2.47l0.71,0.71l2.47,-2.47l2.47,2.47l0.71,-0.71l-2.47,-2.47l2.47,-2.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/security.xml b/compose/material/material/icons/generator/raw-icons/twotone/security.xml
deleted file mode 100644
index dabbec5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/security.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3.19L5,6.3V12h7v8.93c3.72,-1.15 6.47,-4.82 7,-8.94h-7v-8.8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM12,20.93L12,12L5,12L5,6.3l7,-3.11v8.8h7c-0.53,4.12 -3.28,7.79 -7,8.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/security_update.xml b/compose/material/material/icons/generator/raw-icons/twotone/security_update.xml
deleted file mode 100644
index 72defcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/security_update.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM16,12h-3V8h-2v4H8l4,4L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/security_update_good.xml b/compose/material/material/icons/generator/raw-icons/twotone/security_update_good.xml
deleted file mode 100644
index 1e0580a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/security_update_good.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h10v-1H7V21zM7,3v1h10V3H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/twotone/security_update_warning.xml
deleted file mode 100644
index 67101cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/security_update_warning.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2V7zM11,15h2v2h-2V15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h10v-1H7V21zM7,3v1h10V3H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/segment.xml b/compose/material/material/icons/generator/raw-icons/twotone/segment.xml
deleted file mode 100644
index fe884c3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/segment.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,18h12v-2H9V18zM3,6v2h18V6H3zM9,13h12v-2H9V13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/select_all.xml b/compose/material/material/icons/generator/raw-icons/twotone/select_all.xml
deleted file mode 100644
index c997121..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/select_all.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h2L5,3c-1.1,0 -2,0.9 -2,2zM3,13h2v-2L3,11v2zM7,21h2v-2L7,19v2zM3,9h2L5,7L3,7v2zM13,3h-2v2h2L13,3zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM5,21v-2L3,19c0,1.1 0.9,2 2,2zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM11,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2zM19,9h2L21,7h-2v2zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM7,17h10L17,7L7,7v10zM9,9h6v6L9,15L9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/self_improvement.xml b/compose/material/material/icons/generator/raw-icons/twotone/self_improvement.xml
deleted file mode 100644
index 850e20a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/self_improvement.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,16v-2c-2.24,0 -4.16,-0.96 -5.6,-2.68l-1.34,-1.6C13.68,9.26 13.12,9 12.53,9h-1.05c-0.59,0 -1.15,0.26 -1.53,0.72l-1.34,1.6C7.16,13.04 5.24,14 3,14v2c2.77,0 5.19,-1.17 7,-3.25V15l-3.88,1.55C5.45,16.82 5,17.48 5,18.21C5,19.2 5.8,20 6.79,20H9v-0.5c0,-1.38 1.12,-2.5 2.5,-2.5h3c0.28,0 0.5,0.22 0.5,0.5S14.78,18 14.5,18h-3c-0.83,0 -1.5,0.67 -1.5,1.5V20h7.21C18.2,20 19,19.2 19,18.21c0,-0.73 -0.45,-1.39 -1.12,-1.66L14,15v-2.25C15.81,14.83 18.23,16 21,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sell.xml b/compose/material/material/icons/generator/raw-icons/twotone/sell.xml
deleted file mode 100644
index 70d6d04..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sell.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4v7.17L12.83,20L20,12.83L11.17,4H4zM6.5,8C5.67,8 5,7.33 5,6.5S5.67,5 6.5,5S8,5.67 8,6.5S7.33,8 6.5,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.41,11.41l-8.83,-8.83C12.21,2.21 11.7,2 11.17,2H4C2.9,2 2,2.9 2,4v7.17c0,0.53 0.21,1.04 0.59,1.41l8.83,8.83c0.78,0.78 2.05,0.78 2.83,0l7.17,-7.17C22.2,13.46 22.2,12.2 21.41,11.41zM12.83,20L4,11.17V4h7.17L20,12.83L12.83,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,6.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/send.xml b/compose/material/material/icons/generator/raw-icons/twotone/send.xml
deleted file mode 100644
index ee3e89f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/send.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8.25l7.51,1 -7.5,-3.22zM4.01,17.97l7.5,-3.22 -7.51,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.01,3L2,10l15,2 -15,2 0.01,7L23,12 2.01,3zM4,8.25L4,6.03l7.51,3.22 -7.51,-1zM4.01,17.97v-2.22l7.51,-1 -7.51,3.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/send_and_archive.xml b/compose/material/material/icons/generator/raw-icons/twotone/send_and_archive.xml
deleted file mode 100644
index f20a919..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/send_and_archive.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7.01v3.49l6,1.5l-6,1.5v3.49l5.39,-2.27l0,0c0.6,-1.74 1.86,-3.16 3.48,-3.97c0,0 0,0 0,0L5,7.01z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12l-6,-1.5V7.01l8.87,3.73c0.94,-0.47 2,-0.75 3.13,-0.75c0.1,0 0.19,0.01 0.28,0.01L3,4v16l7,-2.95c0,-0.02 0,-0.03 0,-0.05c0,-0.8 0.14,-1.56 0.39,-2.28L5,16.99V13.5L11,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S19.76,12 17,12zM17,20l-3,-3h2.5v-3h1v3H20L17,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/send_time_extension.xml b/compose/material/material/icons/generator/raw-icons/twotone/send_time_extension.xml
deleted file mode 100644
index 1d74713..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/send_time_extension.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6V4c0,-0.28 -0.22,-0.5 -0.5,-0.5S11,3.72 11,4v2H5.01v2.13C7.17,8.94 8,11.01 8,12.5c0,1.5 -0.83,3.57 -3,4.37V19h2.13c0.71,-1.93 2.44,-2.8 3.87,-2.97V12V8.76l2.89,1.45L18,12.26V6H12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.13,19H5v-2.13c2.17,-0.8 3,-2.87 3,-4.37c0,-1.49 -0.83,-3.56 -2.99,-4.37V6H11V4c0,-0.28 0.22,-0.5 0.5,-0.5S12,3.72 12,4v2h6v6.26l2,1V6c0,-1.1 -0.9,-2 -2,-2h-4c0,-1.38 -1.12,-2.5 -2.5,-2.5S9,2.62 9,4H5.01c-1.1,0 -2,0.9 -2,2v3.8C5.7,9.8 6,11.96 6,12.5c0,0.54 -0.29,2.7 -3,2.7V19c0,1.1 0.9,2 2,2h3.8c0,-2.16 1.37,-2.78 2.2,-2.94v-2.03C9.57,16.2 7.85,17.07 7.13,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,12l0,4l4,1l-4,1l0,4l10,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/send_to_mobile.xml b/compose/material/material/icons/generator/raw-icons/twotone/send_to_mobile.xml
deleted file mode 100644
index decfc0b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/send_to_mobile.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4,-4v3h-5v2h5v3L22,12zM17,18H7V6h10v1h2V3c0,-1.1 -0.9,-2 -2,-2L7,1.01C5.9,1.01 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-4h-2V18zM7,3h10v1H7V3zM17,21H7v-1h10V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sensor_door.xml b/compose/material/material/icons/generator/raw-icons/twotone/sensor_door.xml
deleted file mode 100644
index b6a5f06..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sensor_door.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v16H6V4H18M15.5,10.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5c0.83,0 1.5,-0.67 1.5,-1.5S16.33,10.5 15.5,10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v16H6V4H18M18,2H6C4.9,2 4,2.9 4,4v18h16V4C20,2.9 19.1,2 18,2L18,2zM15.5,10.5c-0.83,0 -1.5,0.67 -1.5,1.5s0.67,1.5 1.5,1.5c0.83,0 1.5,-0.67 1.5,-1.5S16.33,10.5 15.5,10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sensor_occupied.xml b/compose/material/material/icons/generator/raw-icons/twotone/sensor_occupied.xml
deleted file mode 100644
index bf1c34f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sensor_occupied.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.14,15h7.7c-1.16,-0.65 -2.5,-1 -3.85,-1C10.65,14 9.32,14.35 8.14,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3S9,6.34 9,8S10.34,11 12,11zM12,7c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S11.45,7 12,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12c-1.84,0 -3.56,0.5 -5.03,1.37C6.36,13.72 6,14.39 6,15.09V17h12v-1.91c0,-0.7 -0.36,-1.36 -0.97,-1.72C15.56,12.5 13.84,12 12,12zM8.14,15c1.18,-0.65 2.51,-1 3.86,-1c1.35,0 2.68,0.35 3.85,1H8.14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.23,8.15l1.85,-0.77c-1.22,-2.91 -3.55,-5.25 -6.46,-6.46l-0.77,1.85C18.27,3.79 20.21,5.73 21.23,8.15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.15,2.77L7.38,0.92C4.47,2.14 2.14,4.47 0.92,7.38l1.85,0.77C3.79,5.73 5.73,3.79 8.15,2.77z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.77,15.85l-1.85,0.77c1.22,2.91 3.55,5.25 6.46,6.46l0.77,-1.85C5.73,20.21 3.79,18.27 2.77,15.85z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.85,21.23l0.77,1.85c2.91,-1.22 5.25,-3.55 6.46,-6.46l-1.85,-0.77C20.21,18.27 18.27,20.21 15.85,21.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sensor_window.xml b/compose/material/material/icons/generator/raw-icons/twotone/sensor_window.xml
deleted file mode 100644
index a2ae898..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sensor_window.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4v7h-4v-1h-4v1H6V4H18zM6,20v-7h12v7H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,4v7h-4v-1h-4v1H6V4H18zM6,20v-7h12v7H6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sensors.xml b/compose/material/material/icons/generator/raw-icons/twotone/sensors.xml
deleted file mode 100644
index 1f867db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sensors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.76,16.24C6.67,15.16 6,13.66 6,12s0.67,-3.16 1.76,-4.24l1.42,1.42C8.45,9.9 8,10.9 8,12c0,1.1 0.45,2.1 1.17,2.83L7.76,16.24zM16.24,16.24C17.33,15.16 18,13.66 18,12s-0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,1.1 -0.45,2.1 -1.17,2.83L16.24,16.24zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S13.1,10 12,10zM20,12c0,2.21 -0.9,4.21 -2.35,5.65l1.42,1.42C20.88,17.26 22,14.76 22,12s-1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12zM6.35,6.35L4.93,4.93C3.12,6.74 2,9.24 2,12s1.12,5.26 2.93,7.07l1.42,-1.42C4.9,16.21 4,14.21 4,12S4.9,7.79 6.35,6.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sensors_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/sensors_off.xml
deleted file mode 100644
index 49e1f8a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sensors_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.14,10.96C8.05,11.29 8,11.64 8,12c0,1.1 0.45,2.1 1.17,2.83l-1.42,1.42C6.67,15.16 6,13.66 6,12c0,-0.93 0.21,-1.8 0.58,-2.59L5.11,7.94C4.4,9.13 4,10.52 4,12c0,2.21 0.9,4.21 2.35,5.65l-1.42,1.42C3.12,17.26 2,14.76 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L8.14,10.96zM17.42,14.59C17.79,13.8 18,12.93 18,12c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.42,1.42C15.55,9.9 16,10.9 16,12c0,0.36 -0.05,0.71 -0.14,1.04L17.42,14.59zM20,12c0,1.48 -0.4,2.87 -1.11,4.06l1.45,1.45C21.39,15.93 22,14.04 22,12c0,-2.76 -1.12,-5.26 -2.93,-7.07l-1.42,1.42C19.1,7.79 20,9.79 20,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/twotone/sentiment_dissatisfied.xml
deleted file mode 100644
index b272278..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_dissatisfied.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15.5,8c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,8c0.83,0 1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5 7.67,8 8.5,8zM15.45,17.5c-0.7,-1.19 -1.97,-2 -3.45,-2s-2.76,0.81 -3.45,2L6.88,17.5C7.68,15.45 9.67,14 12,14s4.32,1.45 5.12,3.5h-1.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,14c-2.33,0 -4.32,1.45 -5.12,3.5h1.67c0.69,-1.19 1.97,-2 3.45,-2s2.75,0.81 3.45,2h1.67c-0.8,-2.05 -2.79,-3.5 -5.12,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_neutral.xml b/compose/material/material/icons/generator/raw-icons/twotone/sentiment_neutral.xml
deleted file mode 100644
index a620ad8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_neutral.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM7,9.5C7,8.67 7.67,8 8.5,8s1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5zM15,15.5L9,15.5L9,14h6v1.5zM15.5,11c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,8 15.5,8s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,14h6v1.5H9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_satisfied.xml b/compose/material/material/icons/generator/raw-icons/twotone/sentiment_satisfied.xml
deleted file mode 100644
index b122a72..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_satisfied.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15.5,8c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,8c0.83,0 1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5 7.67,8 8.5,8zM12,17.5c-2.33,0 -4.32,-1.45 -5.12,-3.5h1.67c0.7,1.19 1.97,2 3.45,2s2.75,-0.81 3.45,-2h1.67c-0.8,2.05 -2.79,3.5 -5.12,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.48,0 -2.75,-0.81 -3.45,-2L6.88,14c0.8,2.05 2.79,3.5 5.12,3.5s4.32,-1.45 5.12,-3.5h-1.67c-0.7,1.19 -1.97,2 -3.45,2zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_satisfied_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/sentiment_satisfied_alt.xml
deleted file mode 100644
index ecdcf3e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_satisfied_alt.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15.5,8c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,8c0.83,0 1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5 7.67,8 8.5,8zM12,17.5c-2.33,0 -4.32,-1.45 -5.12,-3.5h1.67c0.7,1.19 1.97,2 3.45,2s2.76,-0.81 3.45,-2h1.67c-0.8,2.05 -2.79,3.5 -5.12,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c-1.48,0 -2.75,-0.81 -3.45,-2L6.88,14c0.8,2.05 2.79,3.5 5.12,3.5s4.32,-1.45 5.12,-3.5h-1.67c-0.69,1.19 -1.97,2 -3.45,2zM11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_very_dissatisfied.xml b/compose/material/material/icons/generator/raw-icons/twotone/sentiment_very_dissatisfied.xml
deleted file mode 100644
index 7ecd276..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_very_dissatisfied.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM6.76,8.82l1.06,-1.06 1.06,1.06 1.06,-1.06L11,8.82 9.94,9.88 11,10.94 9.94,12l-1.06,-1.06L7.82,12l-1.06,-1.06 1.06,-1.06 -1.06,-1.06zM6.89,17c0.8,-2.04 2.78,-3.5 5.11,-3.5s4.31,1.46 5.11,3.5L6.89,17zM17.24,10.94L16.18,12l-1.06,-1.06L14.06,12 13,10.94l1.06,-1.06L13,8.82l1.06,-1.06 1.06,1.06 1.06,-1.06 1.06,1.06 -1.06,1.06 1.06,1.06z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.5c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5zM7.82,12l1.06,-1.06L9.94,12 11,10.94 9.94,9.88 11,8.82 9.94,7.76 8.88,8.82 7.82,7.76 6.76,8.82l1.06,1.06 -1.06,1.06zM11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM16.18,7.76l-1.06,1.06 -1.06,-1.06L13,8.82l1.06,1.06L13,10.94 14.06,12l1.06,-1.06L16.18,12l1.06,-1.06 -1.06,-1.06 1.06,-1.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_very_satisfied.xml b/compose/material/material/icons/generator/raw-icons/twotone/sentiment_very_satisfied.xml
deleted file mode 100644
index b5d3d02..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sentiment_very_satisfied.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM8.88,7.82L11,9.94 9.94,11 8.88,9.94 7.82,11 6.76,9.94l2.12,-2.12zM12,17.5c-2.33,0 -4.31,-1.46 -5.11,-3.5h10.22c-0.8,2.04 -2.78,3.5 -5.11,3.5zM16.18,11l-1.06,-1.06L14.06,11 13,9.94l2.12,-2.12 2.12,2.12L16.18,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.88,9.94L9.94,11 11,9.94 8.88,7.82 6.76,9.94 7.82,11zM13,9.94L14.06,11l1.06,-1.06L16.18,11l1.06,-1.06 -2.12,-2.12zM11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12,17.5c2.33,0 4.31,-1.46 5.11,-3.5L6.89,14c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/set_meal.xml b/compose/material/material/icons/generator/raw-icons/twotone/set_meal.xml
deleted file mode 100644
index bd55d18..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/set_meal.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,13H3V4h18V13zM20,6c-1.68,0 -3.04,0.98 -3.21,2.23C16.15,7.5 14.06,5.5 10.25,5.5c-4.67,0 -6.75,3 -6.75,3s2.08,3 6.75,3c3.81,0 5.9,-2 6.54,-2.73C16.96,10.02 18.32,11 20,11V6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.05,17.56L3.08,18.5L3,17l17.98,-0.94L21.05,17.56zM21,19.48H3v1.5h18V19.48zM23,13V4c0,-1.1 -0.9,-2 -2,-2H3C1.9,2 1,2.9 1,4v9c0,1.1 0.9,2 2,2h18C22.1,15 23,14.1 23,13zM21,13H3V4h18V13zM20,6c-1.68,0 -3.04,0.98 -3.21,2.23C16.15,7.5 14.06,5.5 10.25,5.5c-4.67,0 -6.75,3 -6.75,3s2.08,3 6.75,3c3.81,0 5.9,-2 6.54,-2.73C16.96,10.02 18.32,11 20,11V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings.xml
deleted file mode 100644
index b6b331e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.28,8.6l-0.7,-1.21 -1.27,0.51 -1.06,0.43 -0.91,-0.7c-0.39,-0.3 -0.8,-0.54 -1.23,-0.71l-1.06,-0.43 -0.16,-1.13L12.7,4h-1.4l-0.19,1.35 -0.16,1.13 -1.06,0.44c-0.41,0.17 -0.82,0.41 -1.25,0.73l-0.9,0.68 -1.05,-0.42 -1.27,-0.52 -0.7,1.21 1.08,0.84 0.89,0.7 -0.14,1.13c-0.03,0.3 -0.05,0.53 -0.05,0.73s0.02,0.43 0.05,0.73l0.14,1.13 -0.89,0.7 -1.08,0.84 0.7,1.21 1.27,-0.51 1.06,-0.43 0.91,0.7c0.39,0.3 0.8,0.54 1.23,0.71l1.06,0.43 0.16,1.13 0.19,1.36h1.39l0.19,-1.35 0.16,-1.13 1.06,-0.43c0.41,-0.17 0.82,-0.41 1.25,-0.73l0.9,-0.68 1.04,0.42 1.27,0.51 0.7,-1.21 -1.08,-0.84 -0.89,-0.7 0.14,-1.13c0.04,-0.31 0.05,-0.52 0.05,-0.73 0,-0.21 -0.02,-0.43 -0.05,-0.73l-0.14,-1.13 0.89,-0.7 1.1,-0.84zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.43,12.98c0.04,-0.32 0.07,-0.64 0.07,-0.98 0,-0.34 -0.03,-0.66 -0.07,-0.98l2.11,-1.65c0.19,-0.15 0.24,-0.42 0.12,-0.64l-2,-3.46c-0.09,-0.16 -0.26,-0.25 -0.44,-0.25 -0.06,0 -0.12,0.01 -0.17,0.03l-2.49,1c-0.52,-0.4 -1.08,-0.73 -1.69,-0.98l-0.38,-2.65C14.46,2.18 14.25,2 14,2h-4c-0.25,0 -0.46,0.18 -0.49,0.42l-0.38,2.65c-0.61,0.25 -1.17,0.59 -1.69,0.98l-2.49,-1c-0.06,-0.02 -0.12,-0.03 -0.18,-0.03 -0.17,0 -0.34,0.09 -0.43,0.25l-2,3.46c-0.13,0.22 -0.07,0.49 0.12,0.64l2.11,1.65c-0.04,0.32 -0.07,0.65 -0.07,0.98s0.03,0.66 0.07,0.98l-2.11,1.65c-0.19,0.15 -0.24,0.42 -0.12,0.64l2,3.46c0.09,0.16 0.26,0.25 0.44,0.25 0.06,0 0.12,-0.01 0.17,-0.03l2.49,-1c0.52,0.4 1.08,0.73 1.69,0.98l0.38,2.65c0.03,0.24 0.24,0.42 0.49,0.42h4c0.25,0 0.46,-0.18 0.49,-0.42l0.38,-2.65c0.61,-0.25 1.17,-0.59 1.69,-0.98l2.49,1c0.06,0.02 0.12,0.03 0.18,0.03 0.17,0 0.34,-0.09 0.43,-0.25l2,-3.46c0.12,-0.22 0.07,-0.49 -0.12,-0.64l-2.11,-1.65zM17.45,11.27c0.04,0.31 0.05,0.52 0.05,0.73 0,0.21 -0.02,0.43 -0.05,0.73l-0.14,1.13 0.89,0.7 1.08,0.84 -0.7,1.21 -1.27,-0.51 -1.04,-0.42 -0.9,0.68c-0.43,0.32 -0.84,0.56 -1.25,0.73l-1.06,0.43 -0.16,1.13 -0.2,1.35h-1.4l-0.19,-1.35 -0.16,-1.13 -1.06,-0.43c-0.43,-0.18 -0.83,-0.41 -1.23,-0.71l-0.91,-0.7 -1.06,0.43 -1.27,0.51 -0.7,-1.21 1.08,-0.84 0.89,-0.7 -0.14,-1.13c-0.03,-0.31 -0.05,-0.54 -0.05,-0.74s0.02,-0.43 0.05,-0.73l0.14,-1.13 -0.89,-0.7 -1.08,-0.84 0.7,-1.21 1.27,0.51 1.04,0.42 0.9,-0.68c0.43,-0.32 0.84,-0.56 1.25,-0.73l1.06,-0.43 0.16,-1.13 0.2,-1.35h1.39l0.19,1.35 0.16,1.13 1.06,0.43c0.43,0.18 0.83,0.41 1.23,0.71l0.91,0.7 1.06,-0.43 1.27,-0.51 0.7,1.21 -1.07,0.85 -0.89,0.7 0.14,1.13zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_accessibility.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_accessibility.xml
deleted file mode 100644
index 2914c1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_accessibility.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,4c-2.61,0.7 -5.67,1 -8.5,1S6.11,4.7 3.5,4L3,6c1.86,0.5 4,0.83 6,1v12h2v-6h2v6h2V7c2,-0.17 4.14,-0.5 6,-1L20.5,4zM12,4c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S10.9,4 12,4zM7,24h2v-2H7V24zM11,24h2v-2h-2V24zM15,24h2v-2h-2V24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_applications.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_applications.xml
deleted file mode 100644
index 4ffaf01..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_applications.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM7.5,12c0,-0.2 0.02,-0.39 0.04,-0.58l-1.27,-0.99c-0.11,-0.09 -0.15,-0.26 -0.07,-0.39l1.2,-2.07c0.08,-0.13 0.23,-0.18 0.37,-0.13l1.49,0.6c0.31,-0.25 0.66,-0.44 1.02,-0.6l0.22,-1.59c0.03,-0.14 0.15,-0.25 0.3,-0.25h2.4c0.15,0 0.27,0.11 0.3,0.25l0.22,1.59c0.37,0.15 0.7,0.35 1.01,0.59l1.49,-0.6c0.14,-0.05 0.29,0 0.37,0.13l1.2,2.07c0.08,0.13 0.04,0.29 -0.07,0.39l-1.27,0.99c0.03,0.2 0.04,0.39 0.04,0.59 0,0.2 -0.02,0.39 -0.04,0.58l1.27,0.99c0.11,0.09 0.15,0.26 0.07,0.39l-1.2,2.07c-0.08,0.13 -0.23,0.18 -0.37,0.13l-1.49,-0.6c-0.31,0.24 -0.65,0.44 -1.01,0.59l-0.22,1.59c-0.03,0.15 -0.15,0.26 -0.3,0.26h-2.4c-0.15,0 -0.27,-0.11 -0.3,-0.25l-0.22,-1.59c-0.37,-0.15 -0.7,-0.35 -1.01,-0.59l-1.49,0.6c-0.14,0.05 -0.29,0 -0.37,-0.13l-1.2,-2.07c-0.08,-0.13 -0.04,-0.29 0.07,-0.39l1.27,-0.99c-0.03,-0.2 -0.05,-0.39 -0.05,-0.59z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.21,13.97l1.2,2.07c0.08,0.13 0.23,0.18 0.37,0.13l1.49,-0.6c0.31,0.24 0.64,0.44 1.01,0.59l0.22,1.59c0.03,0.14 0.15,0.25 0.3,0.25h2.4c0.15,0 0.27,-0.11 0.3,-0.26l0.22,-1.59c0.36,-0.15 0.7,-0.35 1.01,-0.59l1.49,0.6c0.14,0.05 0.29,0 0.37,-0.13l1.2,-2.07c0.08,-0.13 0.04,-0.29 -0.07,-0.39l-1.27,-0.99c0.03,-0.19 0.04,-0.39 0.04,-0.58 0,-0.2 -0.02,-0.39 -0.04,-0.59l1.27,-0.99c0.11,-0.09 0.15,-0.26 0.07,-0.39l-1.2,-2.07c-0.08,-0.13 -0.23,-0.18 -0.37,-0.13l-1.49,0.6c-0.31,-0.24 -0.64,-0.44 -1.01,-0.59l-0.22,-1.59c-0.03,-0.14 -0.15,-0.25 -0.3,-0.25h-2.4c-0.15,0 -0.27,0.11 -0.3,0.26l-0.22,1.59c-0.36,0.15 -0.71,0.34 -1.01,0.58l-1.49,-0.6c-0.14,-0.05 -0.29,0 -0.37,0.13l-1.2,2.07c-0.08,0.13 -0.04,0.29 0.07,0.39l1.27,0.99c-0.03,0.2 -0.05,0.39 -0.05,0.59 0,0.2 0.02,0.39 0.04,0.59l-1.27,0.99c-0.11,0.1 -0.14,0.26 -0.06,0.39zM12,10.29c0.94,0 1.71,0.77 1.71,1.71s-0.77,1.71 -1.71,1.71 -1.71,-0.77 -1.71,-1.71 0.77,-1.71 1.71,-1.71zM19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.11,0 2,-0.9 2,-2L21,5c0,-1.1 -0.89,-2 -2,-2zM19,19L5,19L5,5h14v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_backup_restore.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_backup_restore.xml
deleted file mode 100644
index 1772ed5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_backup_restore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2 0.9,2 2,2 2,-0.9 2,-2zM12,3c-4.97,0 -9,4.03 -9,9L0,12l4,4 4,-4L5,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.51,0 -2.91,-0.49 -4.06,-1.3l-1.42,1.44C8.04,20.3 9.94,21 12,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_bluetooth.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_bluetooth.xml
deleted file mode 100644
index 5e11cd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_bluetooth.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,24h2v-2h-2v2zM7,24h2v-2L7,22v2zM15,24h2v-2h-2v2zM17.71,5.71L12,0h-1v7.59L6.41,3 5,4.41 10.59,10 5,15.59 6.41,17 11,12.41L11,20h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,3.83l1.88,1.88L13,7.59L13,3.83zM14.88,14.29L13,16.17v-3.76l1.88,1.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_brightness.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_brightness.xml
deleted file mode 100644
index d79b7d6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_brightness.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19.01h18L21,4.99L3,4.99v14.02zM8,10.5L8,8h2.5L12,6.5 13.5,8L16,8v2.5l1.5,1.5 -1.5,1.5L16,16h-2.5L12,17.5 10.5,16L8,16v-2.5L6.5,12 8,10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h2.5l1.5,1.5 1.5,-1.5L16,16v-2.5l1.5,-1.5 -1.5,-1.5L16,8h-2.5L12,6.5 10.5,8L8,8v2.5L6.5,12 8,13.5L8,16zM12,9c1.66,0 3,1.34 3,3s-1.34,3 -3,3L12,9zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_cell.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_cell.xml
deleted file mode 100644
index 15772c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_cell.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17h8v1H8zM8,2h8v1H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,22h2v2L7,24zM11,22h2v2h-2zM15,22h2v2h-2zM16,0.01L8,0C6.9,0 6,0.9 6,2v16c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,2c0,-1.1 -0.9,-1.99 -2,-1.99zM16,18L8,18v-1h8v1zM16,15L8,15L8,5h8v10zM16,3L8,3L8,2h8v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_ethernet.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_ethernet.xml
deleted file mode 100644
index cdc8802..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_ethernet.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.77,6.76L6.23,5.48 0.82,12l5.41,6.52 1.54,-1.28L3.42,12l4.35,-5.24zM7,13h2v-2L7,11v2zM17,11h-2v2h2v-2zM11,13h2v-2h-2v2zM17.77,5.48l-1.54,1.28L20.58,12l-4.35,5.24 1.54,1.28L23.18,12l-5.41,-6.52z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_antenna.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_input_antenna.xml
deleted file mode 100644
index 9379c0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_antenna.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5c-3.87,0 -7,3.13 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM13,14.29c0.88,-0.39 1.5,-1.26 1.5,-2.29 0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,10.62 9.5,12c0,1.02 0.62,1.9 1.5,2.29v3.3L7.59,21 9,22.41l3,-3 3,3L16.41,21 13,17.59v-3.3zM12,1C5.93,1 1,5.93 1,12h2c0,-4.97 4.03,-9 9,-9s9,4.03 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_component.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_input_component.xml
deleted file mode 100644
index d43e5fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_component.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h-2v2zM3,16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2L3,14v2zM19,16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h-2v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v10c0,1.3 0.84,2.4 2,2.82L3,23h2v-4.18C6.16,18.4 7,17.3 7,16L7,6L5,6L5,2zM5,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h2v2zM5,12L3,12L3,8h2v4zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v10c0,1.3 0.84,2.4 2,2.82L11,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L15,6h-2L13,2zM13,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h2v2zM13,12h-2L11,8h2v4zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v10c0,1.3 0.84,2.4 2,2.82L19,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L23,6h-2zM21,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h2v2zM21,12h-2L19,8h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_composite.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_input_composite.xml
deleted file mode 100644
index 9215cc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_composite.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2L3,14v2zM11,16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h-2v2zM19,16c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-2h-2v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L1,6v10c0,1.3 0.84,2.4 2,2.82L3,23h2v-4.18C6.16,18.4 7,17.3 7,16L7,6L5,6L5,2zM5,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h2v2zM5,12L3,12L3,8h2v4zM13,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4L9,6v10c0,1.3 0.84,2.4 2,2.82L11,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L15,6h-2L13,2zM13,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h2v2zM13,12h-2L11,8h2v4zM21,6L21,2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v4h-2v10c0,1.3 0.84,2.4 2,2.82L19,23h2v-4.18c1.16,-0.42 2,-1.52 2,-2.82L23,6h-2zM21,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1v-2h2v2zM21,12h-2L19,8h2v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_hdmi.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_input_hdmi.xml
deleted file mode 100644
index 07ef755..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_hdmi.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9H7v3.53l2.79,5.58 0.21,0.42V20h4v-1.47l0.21,-0.42L17,12.53V9h-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7L18,4c0,-1.1 -0.9,-2 -2,-2L8,2c-1.1,0 -2,0.9 -2,2v3L5,7v6l3,6v3h8v-3l3,-6L19,7h-1zM8,4h8v3h-2.01L13.99,5h-1v2L11,7L11,5h-1v2L8,7L8,4zM17,12.53l-3,6L14,20h-4v-1.47l-3,-6L7,9h10v3.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_svideo.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_input_svideo.xml
deleted file mode 100644
index 34f5538..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_input_svideo.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3c-4.96,0 -9,4.04 -9,9s4.04,9 9,9 9,-4.04 9,-9 -4.04,-9 -9,-9zM5,11.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S7.33,13 6.5,13 5,12.33 5,11.5zM8.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5S7.67,15 8.5,15s1.5,0.67 1.5,1.5S9.33,18 8.5,18zM10.5,8C9.67,8 9,7.33 9,6.5S9.67,5 10.5,5h3c0.83,0 1.5,0.67 1.5,1.5S14.33,8 13.5,8h-3zM15.5,18c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM17.5,13c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5c0,-0.83 -0.67,-1.5 -1.5,-1.5h-3C9.67,5 9,5.67 9,6.5S9.67,8 10.5,8h3c0.83,0 1.5,-0.67 1.5,-1.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C5.93,1 1,5.93 1,12s4.93,11 11,11 11,-4.93 11,-11S18.07,1 12,1zM12,21c-4.96,0 -9,-4.04 -9,-9s4.04,-9 9,-9 9,4.04 9,9 -4.04,9 -9,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,16.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_overscan.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_overscan.xml
deleted file mode 100644
index e7b1a9d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_overscan.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19.01h18L21,4.99L3,4.99v14.02zM18,10l2.5,2.01L18,14v-4zM12.01,5.5L14,8h-4l2.01,-2.5zM14,16l-1.99,2.5L10,16h4zM6,10v4l-2.5,-1.99L6,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,16h-4l2.01,2.5zM18,10v4l2.5,-1.99zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02zM6,10l-2.5,2.01L6,14zM12.01,5.5L10,8h4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_phone.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_phone.xml
deleted file mode 100644
index 500b93e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_phone.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5h-1.5c0.09,1.32 0.35,2.59 0.75,3.79l1.2,-1.21c-0.24,-0.83 -0.39,-1.7 -0.45,-2.58zM15.2,18.21c1.21,0.41 2.48,0.67 3.8,0.76v-1.5c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45l-1.2,1.19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v2h-2zM15,9h2v2h-2zM20,15.5c-1.25,0 -2.45,-0.2 -3.57,-0.57 -0.1,-0.03 -0.21,-0.05 -0.31,-0.05 -0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.44 -5.15,-3.75 -6.59,-6.58l2.2,-2.21c0.28,-0.27 0.36,-0.66 0.25,-1.01C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1L4,3c-0.55,0 -1,0.45 -1,1 0,9.39 7.61,17 17,17 0.55,0 1,-0.45 1,-1v-3.5c0,-0.55 -0.45,-1 -1,-1zM5.03,5h1.5c0.07,0.88 0.22,1.75 0.46,2.59L5.79,8.8c-0.41,-1.21 -0.67,-2.48 -0.76,-3.8zM19,18.97c-1.32,-0.09 -2.6,-0.35 -3.8,-0.76l1.2,-1.2c0.85,0.24 1.72,0.39 2.6,0.45v1.51zM19,9h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_power.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_power.xml
deleted file mode 100644
index 8af8bdc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_power.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,24h2v-2L7,22v2zM11,24h2v-2h-2v2zM13,2h-2v10h2L13,2zM16.56,4.44l-1.45,1.45C16.84,6.94 18,8.83 18,11c0,3.31 -2.69,6 -6,6s-6,-2.69 -6,-6c0,-2.17 1.16,-4.06 2.88,-5.12L7.44,4.44C5.36,5.88 4,8.28 4,11c0,4.42 3.58,8 8,8s8,-3.58 8,-8c0,-2.72 -1.36,-5.12 -3.44,-6.56zM15,24h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_remote.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_remote.xml
deleted file mode 100644
index 90602cc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_remote.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21h4L14,11h-4v10zM12,12c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9L9,9c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h6c0.55,0 1,-0.45 1,-1L16,10c0,-0.55 -0.45,-1 -1,-1zM14,21h-4L10,11h4v10z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.05,6.05l1.41,1.41C9.37,6.56 10.62,6 12,6s2.63,0.56 3.54,1.46l1.41,-1.41C15.68,4.78 13.93,4 12,4s-3.68,0.78 -4.95,2.05zM12,0C8.96,0 6.21,1.23 4.22,3.22l1.41,1.41C7.26,3.01 9.51,2 12,2s4.74,1.01 6.36,2.64l1.41,-1.41C17.79,1.23 15.04,0 12,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_suggest.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_suggest.xml
deleted file mode 100644
index ecdb7f6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_suggest.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.07,15.23c0.12,-0.39 0.18,-0.8 0.18,-1.23c0,-0.43 -0.06,-0.84 -0.18,-1.23l1.49,-1.13l-0.73,-1.27l-1.73,0.73c-0.56,-0.6 -1.3,-1.04 -2.13,-1.23L10.73,8H9.27L9.03,9.86c-0.83,0.19 -1.57,0.63 -2.13,1.23l-1.73,-0.73l-0.73,1.27l1.49,1.13c-0.12,0.39 -0.18,0.8 -0.18,1.23c0,0.43 0.06,0.84 0.18,1.23l-1.49,1.13l0.73,1.27l1.73,-0.73c0.56,0.6 1.3,1.04 2.13,1.23L9.27,20h1.47l0.23,-1.86c0.83,-0.19 1.57,-0.63 2.13,-1.23l1.73,0.73l0.73,-1.27L14.07,15.23zM10,17c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S11.66,17 10,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S9.45,13 10,13M10,11c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S11.66,11 10,11L10,11zM18.5,9l1.09,-2.41L22,5.5l-2.41,-1.09L18.5,2l-1.09,2.41L15,5.5l2.41,1.09L18.5,9zM21.28,12.72L20.5,11l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78,-1.72L23,13.5L21.28,12.72zM16.25,14c0,-0.12 0,-0.25 -0.01,-0.37l1.94,-1.47l-2.5,-4.33l-2.24,0.94c-0.2,-0.13 -0.42,-0.26 -0.64,-0.37L12.5,6h-5L7.2,8.41C6.98,8.52 6.77,8.65 6.56,8.78L4.32,7.83l-2.5,4.33l1.94,1.47C3.75,13.75 3.75,13.88 3.75,14s0,0.25 0.01,0.37l-1.94,1.47l2.5,4.33l2.24,-0.94c0.2,0.13 0.42,0.26 0.64,0.37L7.5,22h5l0.3,-2.41c0.22,-0.11 0.43,-0.23 0.64,-0.37l2.24,0.94l2.5,-4.33l-1.94,-1.47C16.25,14.25 16.25,14.12 16.25,14zM14.83,17.64l-1.73,-0.73c-0.56,0.6 -1.3,1.04 -2.13,1.23L10.73,20H9.27l-0.23,-1.86c-0.83,-0.19 -1.57,-0.63 -2.13,-1.23l-1.73,0.73l-0.73,-1.27l1.49,-1.13c-0.12,-0.39 -0.18,-0.8 -0.18,-1.23c0,-0.43 0.06,-0.84 0.18,-1.23l-1.49,-1.13l0.73,-1.27l1.73,0.73c0.56,-0.6 1.3,-1.04 2.13,-1.23L9.27,8h1.47l0.23,1.86c0.83,0.19 1.57,0.63 2.13,1.23l1.73,-0.73l0.73,1.27l-1.49,1.13c0.12,0.39 0.18,0.8 0.18,1.23c0,0.43 -0.06,0.84 -0.18,1.23l1.49,1.13L14.83,17.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_system_daydream.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_system_daydream.xml
deleted file mode 100644
index 8a8330f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_system_daydream.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,15h6.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5h-0.87l-0.17,-0.86C14.29,9.92 13.23,9 12,9c-0.96,0 -1.84,0.57 -2.26,1.45l-0.27,0.57h-0.73C7.74,11.15 7,11.99 7,13c0,1.1 0.9,2 2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17h6.5c1.93,0 3.5,-1.57 3.5,-3.5 0,-1.66 -1.16,-3.05 -2.74,-3.41C15.66,8.28 13.95,7 12,7c-1.53,0 -2.96,0.8 -3.78,2.08C6.36,9.44 5,11.07 5,13c0,2.21 1.79,4 4,4zM8.74,11.02h0.74l0.27,-0.57C10.16,9.57 11.04,9 12,9c1.23,0 2.29,0.92 2.46,2.14l0.17,0.86h0.87c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5L9,15c-1.1,0 -2,-0.9 -2,-2 0,-1.01 0.74,-1.85 1.74,-1.98zM21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19.01L3,19.01L3,4.99h18v14.02z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/settings_voice.xml b/compose/material/material/icons/generator/raw-icons/twotone/settings_voice.xml
deleted file mode 100644
index 739882c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/settings_voice.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c0.56,0 0.99,-0.44 0.99,-1L13,4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v6c0,0.55 0.45,1 1,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,22h2v2L7,24zM12,13c1.66,0 2.99,-1.34 2.99,-3L15,4c0,-1.66 -1.34,-3 -3,-3S9,2.34 9,4v6c0,1.66 1.34,3 3,3zM11,4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v6c0,0.56 -0.44,1 -1,1 -0.55,0 -1,-0.45 -1,-1L11,4zM11,22h2v2h-2zM15,22h2v2h-2zM19,10h-1.7c0,3 -2.54,5.1 -5.3,5.1S6.7,13 6.7,10L5,10c0,3.41 2.72,6.23 6,6.72L11,20h2v-3.28c3.28,-0.49 6,-3.31 6,-6.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/severe_cold.xml b/compose/material/material/icons/generator/raw-icons/twotone/severe_cold.xml
deleted file mode 100644
index feac899..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/severe_cold.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10.41l4,-4l-1.41,-1.41l-2.59,2.59l0,-3.59l-2,0l0,3.59l-2.59,-2.59l-1.41,1.41l4,4l0,1.59l-1.59,0l-4,-4l-1.41,1.41l2.59,2.59l-3.59,0l0,2l3.59,0l-2.59,2.59l1.41,1.41l4,-4l1.59,0l0,1.59l-4,4l1.41,1.41l2.59,-2.59l0,3.59l2,0l0,-3.59l2.59,2.59l1.41,-1.41l-4,-4l0,-1.59l1.59,0l4,4l1.41,-1.41l-2.59,-2.59l3.59,0l0,-2l-8,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,2h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shape_line.xml b/compose/material/material/icons/generator/raw-icons/twotone/shape_line.xml
deleted file mode 100644
index 050d535..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shape_line.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,16h5v5h-5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11c2.76,0 5,-2.24 5,-5S8.76,1 6,1S1,3.24 1,6S3.24,11 6,11zM6,3c1.65,0 3,1.35 3,3c0,1.65 -1.35,3 -3,3S3,7.65 3,6C3,4.35 4.35,3 6,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,14h-5c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h5c1.1,0 2,-0.9 2,-2v-5C23,14.9 22.1,14 21,14zM21,21h-5v-5h5V21z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.71,7.7C18.11,7.89 18.54,8 19,8c1.65,0 3,-1.35 3,-3s-1.35,-3 -3,-3s-3,1.35 -3,3c0,0.46 0.11,0.89 0.3,1.29L6.29,16.3C5.89,16.11 5.46,16 5,16c-1.65,0 -3,1.35 -3,3s1.35,3 3,3s3,-1.35 3,-3c0,-0.46 -0.11,-0.89 -0.3,-1.29L17.71,7.7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/share.xml b/compose/material/material/icons/generator/raw-icons/twotone/share.xml
deleted file mode 100644
index 0be2f3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/share.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,19.02m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92s2.92,-1.31 2.92,-2.92c0,-1.61 -1.31,-2.92 -2.92,-2.92zM18,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM6,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM18,20.02c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/share_location.xml b/compose/material/material/icons/generator/raw-icons/twotone/share_location.xml
deleted file mode 100644
index 2acc4e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/share_location.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.02,19.93v2.02c2.01,-0.2 3.84,-1 5.32,-2.21l-1.42,-1.43C15.81,19.17 14.48,19.75 13.02,19.93z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.03,12c0,-4.05 3.03,-7.41 6.95,-7.93V2.05C5.95,2.58 2.03,6.84 2.03,12c0,5.16 3.92,9.42 8.95,9.95v-2.02C7.06,19.41 4.03,16.05 4.03,12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.95,11h2.02c-0.2,-2.01 -1,-3.84 -2.21,-5.32l-1.43,1.43C19.19,8.21 19.77,9.54 19.95,11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.34,4.26c-1.48,-1.21 -3.32,-2.01 -5.32,-2.21v2.02c1.46,0.18 2.79,0.76 3.9,1.62L18.34,4.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.33,16.9l1.43,1.42c1.21,-1.48 2.01,-3.31 2.21,-5.32h-2.02C19.77,14.46 19.19,15.79 18.33,16.9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,11.1C16,8.61 14.1,7 12,7s-4,1.61 -4,4.1c0,1.66 1.33,3.63 4,5.9C14.67,14.73 16,12.76 16,11.1zM12,12c-0.59,0 -1.07,-0.48 -1.07,-1.07c0,-0.59 0.48,-1.07 1.07,-1.07s1.07,0.48 1.07,1.07C13.07,11.52 12.59,12 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shield.xml b/compose/material/material/icons/generator/raw-icons/twotone/shield.xml
deleted file mode 100644
index 0782edb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shield.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.39v4.7c0,4 2.55,7.7 6,8.83c3.45,-1.13 6,-4.82 6,-8.83v-4.7l-6,-2.25L6,6.39z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shield_moon.xml b/compose/material/material/icons/generator/raw-icons/twotone/shield_moon.xml
deleted file mode 100644
index d3a9b93..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shield_moon.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.39v4.7c0,4 2.55,7.7 6,8.83c3.45,-1.13 6,-4.82 6,-8.83v-4.7l-6,-2.25L6,6.39zM12.21,7.61c-0.46,1.23 -0.39,2.64 0.32,3.86c0.71,1.22 1.89,1.99 3.18,2.2c0.34,0.06 0.49,0.47 0.26,0.74c-1.84,2.17 -5.21,2.1 -6.96,-0.07c-2.19,-2.72 -0.65,-6.72 2.69,-7.33C12.04,6.95 12.33,7.28 12.21,7.61z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2L4,5v6.09c0,5.05 3.41,9.76 8,10.91c4.59,-1.15 8,-5.86 8,-10.91V5L12,2zM18,11.09c0,4 -2.55,7.7 -6,8.83c-3.45,-1.13 -6,-4.82 -6,-8.83v-4.7l6,-2.25l6,2.25V11.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.01,14.33c1.75,2.17 5.12,2.24 6.96,0.07c0.23,-0.27 0.08,-0.68 -0.26,-0.74c-1.29,-0.21 -2.48,-0.98 -3.18,-2.2c-0.71,-1.22 -0.78,-2.63 -0.32,-3.86c0.12,-0.33 -0.16,-0.66 -0.51,-0.6C8.36,7.62 6.81,11.61 9.01,14.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shop.xml b/compose/material/material/icons/generator/raw-icons/twotone/shop.xml
deleted file mode 100644
index db85b30..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shop.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19h16V8H4v11zM9,9l7.5,4L9,18V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L2,6v13c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,6h-6zM10,4h4v2h-4L10,4zM20,19L4,19L4,8h16v11zM9,9v9l7.5,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shop_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/shop_2.xml
deleted file mode 100644
index 6419a75..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shop_2.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,16h14V7H7V16zM12,8l5.5,3.5L12,15V8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9H1v11c0,1.11 0.89,2 2,2h16v-2H3V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,5V3c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2H5v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2V5H18zM12,3h4v2h-4V3zM21,16H7V7h14V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8l0,7l5.5,-3.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shop_two.xml b/compose/material/material/icons/generator/raw-icons/twotone/shop_two.xml
deleted file mode 100644
index c98f144..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shop_two.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7v9h14L21,7L7,7zM12,15L12,8l5.5,3 -5.5,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9L1,9v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2L3,20L3,9zM18,5L18,3c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L5,5v11c0,1.11 0.89,2 2,2h14c1.11,0 2,-0.89 2,-2L23,5h-5zM12,3h4v2h-4L12,3zM21,16L7,16L7,7h14v9zM12,15l5.5,-4L12,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shopping_bag.xml b/compose/material/material/icons/generator/raw-icons/twotone/shopping_bag.xml
deleted file mode 100644
index caa7b8cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shopping_bag.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,20H6V8h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8h4v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8h2V20z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6h-2c0,-2.21 -1.79,-4 -4,-4S8,3.79 8,6H6C4.9,6 4,6.9 4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8C20,6.9 19.1,6 18,6zM12,4c1.1,0 2,0.9 2,2h-4C10,4.9 10.9,4 12,4zM18,20H6V8h2v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8h4v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1V8h2V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shopping_basket.xml b/compose/material/material/icons/generator/raw-icons/twotone/shopping_basket.xml
deleted file mode 100644
index dd6cbf1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shopping_basket.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.31,11l2.2,8.01L18.5,19l2.2,-8H3.31zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9h-4.79l-4.38,-6.56c-0.19,-0.28 -0.51,-0.42 -0.83,-0.42s-0.64,0.14 -0.83,0.43L6.79,9H2c-0.55,0 -1,0.45 -1,1 0,0.09 0.01,0.18 0.04,0.27l2.54,9.27c0.23,0.84 1,1.46 1.92,1.46h13c0.92,0 1.69,-0.62 1.93,-1.46l2.54,-9.27L23,10c0,-0.55 -0.45,-1 -1,-1zM12,4.8L14.8,9H9.2L12,4.8zM18.5,19l-12.99,0.01L3.31,11H20.7l-2.2,8zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shopping_cart.xml b/compose/material/material/icons/generator/raw-icons/twotone/shopping_cart.xml
deleted file mode 100644
index 64693b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shopping_cart.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.55,11l2.76,-5H6.16l2.37,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.55,13c0.75,0 1.41,-0.41 1.75,-1.03l3.58,-6.49c0.37,-0.66 -0.11,-1.48 -0.87,-1.48L5.21,4l-0.94,-2L1,2v2h2l3.6,7.59 -1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2L7,15l1.1,-2h7.45zM6.16,6h12.15l-2.76,5L8.53,11L6.16,6zM7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2 -0.9,-2 -2,-2zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shopping_cart_checkout.xml b/compose/material/material/icons/generator/raw-icons/twotone/shopping_cart_checkout.xml
deleted file mode 100644
index d111c5c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shopping_cart_checkout.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,18c-1.1,0 -1.99,0.9 -1.99,2S5.9,22 7,22s2,-0.9 2,-2S8.1,18 7,18zM17,18c-1.1,0 -1.99,0.9 -1.99,2s0.89,2 1.99,2s2,-0.9 2,-2S18.1,18 17,18zM8.1,13h7.45c0.75,0 1.41,-0.41 1.75,-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37 5.48,17 7,17h12v-2H7L8.1,13zM12,2l4,4l-4,4l-1.41,-1.41L12.17,7L8,7l0,-2l4.17,0l-1.59,-1.59L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/short_text.xml b/compose/material/material/icons/generator/raw-icons/twotone/short_text.xml
deleted file mode 100644
index acce608..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/short_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h16v2L4,11zM4,13h10v2L4,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shortcut.xml b/compose/material/material/icons/generator/raw-icons/twotone/shortcut.xml
deleted file mode 100644
index b754869..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shortcut.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l-6,-6v5H8c-2.76,0 -5,2.24 -5,5v4h2v-4c0,-1.65 1.35,-3 3,-3h7v5L21,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/show_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/show_chart.xml
deleted file mode 100644
index d912ab2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/show_chart.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,13.48l-4,-4L2,16.99l1.5,1.5 6,-6.01 4,4L22,6.92l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shower.xml b/compose/material/material/icons/generator/raw-icons/twotone/shower.xml
deleted file mode 100644
index 6f83897..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shower.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-2.76,0 -5,2.24 -5,5h10C17,9.24 14.76,7 12,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.08V3h-2v2.08C7.61,5.57 5,8.47 5,12v2h14v-2C19,8.47 16.39,5.57 13,5.08zM7,12c0,-2.76 2.24,-5 5,-5s5,2.24 5,5H7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,17m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shuffle.xml b/compose/material/material/icons/generator/raw-icons/twotone/shuffle.xml
deleted file mode 100644
index 32581be6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shuffle.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-5.5l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5zM5.41,4L4,5.41l5.17,5.17 1.42,-1.41zM20,20v-5.5l-2.04,2.04 -3.13,-3.13 -1.41,1.41 3.13,3.13L14.5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shuffle_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/shuffle_on.xml
deleted file mode 100644
index 612337e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shuffle_on.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1H3C1.9,1 1,1.9 1,3v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V3C23,1.9 22.1,1 21,1zM5.41,4l5.18,5.17l-1.42,1.41L4,5.41L5.41,4zM20,20h-5.5l2.05,-2.05l-3.13,-3.13l1.41,-1.41l3.13,3.13L20,14.5V20zM20,9.5l-2.04,-2.04L5.41,20L4,18.59L16.54,6.04L14.5,4H20V9.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/shutter_speed.xml b/compose/material/material/icons/generator/raw-icons/twotone/shutter_speed.xml
deleted file mode 100644
index b163d2e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/shutter_speed.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.87,0 -7,3.13 -7,7s3.13,7 7,7 7,-3.13 7,-7 -3.13,-7 -7,-7zM12,7c0.46,0 0.9,0.06 1.33,0.15l-2.72,4.7 -2.32,-3.56C9.31,7.49 10.6,7 12,7zM6,13c0,-1.54 0.59,-2.95 1.55,-4.01L10.81,14L6.09,14c-0.05,-0.33 -0.09,-0.66 -0.09,-1zM6.35,15h5.33l-2.03,3.5 0.11,0.06c-1.59,-0.64 -2.84,-1.94 -3.41,-3.56zM12,19c-0.48,0 -0.94,-0.06 -1.39,-0.17l2.85,-4.92 2.11,3.9c-1,0.74 -2.23,1.19 -3.57,1.19zM18,13c0,1.6 -0.63,3.06 -1.66,4.13L13.57,12h4.34c0.05,0.33 0.09,0.66 0.09,1zM12.26,11l2.05,-3.54c1.56,0.65 2.77,1.94 3.34,3.54h-5.39z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.55,8.99C6.59,10.05 6,11.46 6,13c0,0.34 0.04,0.67 0.09,1h4.72L7.55,8.99zM14.31,7.46L12.26,11h5.39c-0.57,-1.6 -1.78,-2.89 -3.34,-3.54zM13.33,7.15C12.9,7.06 12.46,7 12,7c-1.4,0 -2.69,0.49 -3.71,1.29l2.32,3.56 2.72,-4.7zM11.68,15L6.35,15c0.57,1.62 1.82,2.92 3.41,3.56l-0.11,-0.06 2.03,-3.5zM19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9 9,-4.03 9,-9c0,-2.12 -0.74,-4.07 -1.97,-5.61zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7zM9,1h6v2L9,3zM16.34,17.13C17.37,16.06 18,14.6 18,13c0,-0.34 -0.04,-0.67 -0.09,-1h-4.34l2.77,5.13zM10.61,18.83c0.45,0.11 0.91,0.17 1.39,0.17 1.34,0 2.57,-0.45 3.57,-1.19l-2.11,-3.9 -2.85,4.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sick.xml b/compose/material/material/icons/generator/raw-icons/twotone/sick.xml
deleted file mode 100644
index 720c793..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sick.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.32,10.56L8.38,9.5L7.32,8.44l1.06,-1.06L10.5,9.5l-2.12,2.12L7.32,10.56zM4.5,9c0.03,0 0.05,0.01 0.08,0.01C5.77,6.07 8.64,4 12,4c2.19,0 4.16,0.88 5.61,2.3c0.15,-0.6 0.45,-1.29 0.81,-1.96C16.68,2.88 14.44,2 11.99,2c-4.88,0 -8.94,3.51 -9.81,8.14C2.74,9.44 3.59,9 4.5,9zM21,10.5c-0.42,0 -0.82,-0.09 -1.19,-0.22C19.93,10.83 20,11.41 20,12c0,4.42 -3.58,8 -8,8c-3.36,0 -6.23,-2.07 -7.42,-5.01C4.55,14.99 4.53,15 4.5,15c-0.52,0 -1.04,-0.14 -1.5,-0.4c-0.32,-0.18 -0.59,-0.42 -0.82,-0.7c0.89,4.61 4.93,8.1 9.8,8.1C17.52,22 22,17.52 22,12c0,-0.55 -0.06,-1.09 -0.14,-1.62C21.58,10.45 21.3,10.5 21,10.5zM21,3c0,0 -2,2.9 -2,4c0,1.1 0.9,2 2,2s2,-0.9 2,-2C23,5.9 21,3 21,3zM15.62,7.38L13.5,9.5l2.12,2.12l1.06,-1.06L15.62,9.5l1.06,-1.06L15.62,7.38zM8.56,17c0.69,-1.19 1.97,-2 3.44,-2s2.75,0.81 3.44,2h1.68c-0.8,-2.05 -2.79,-3.5 -5.12,-3.5c-0.87,0 -1.7,0.2 -2.43,0.57l0,0L5.99,12c0,-0.52 -0.26,-1.02 -0.74,-1.29c-0.72,-0.41 -1.63,-0.17 -2.05,0.55c-0.41,0.72 -0.17,1.63 0.55,2.05c0.48,0.28 1.05,0.25 1.49,0l2.97,1.72l0,0C7.64,15.56 7.18,16.24 6.88,17H8.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sign_language.xml b/compose/material/material/icons/generator/raw-icons/twotone/sign_language.xml
deleted file mode 100644
index 823bd8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sign_language.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,13.2V15h-2v7h4c0.55,0 1,-0.45 1,-1v-4.53c0,-0.27 -0.11,-0.54 -0.31,-0.73L14,13.2zM15.38,9l1.93,-1.87l1.38,1.45L20,7.34v3.7c0,0.28 -0.11,0.54 -0.31,0.73l-0.7,0.66L15.38,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.49,13l-0.93,-1.86c-0.37,-0.74 -0.07,-1.64 0.67,-2.01L12.49,9l5.73,5.46c0.5,0.47 0.78,1.13 0.78,1.81v5.23c0,1.38 -1.12,2.5 -2.5,2.5h-11c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H10v-1H4c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h6v-1H3c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1h7v-1H4.5c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1H12.49zM14,13.2V15h-2v7h4c0.55,0 1,-0.45 1,-1v-4.53c0,-0.27 -0.11,-0.54 -0.31,-0.73L14,13.2zM11.78,7.12c-0.84,0.4 -1.17,0.62 -1.63,1.19l-2.7,-2.85c-0.38,-0.4 -0.36,-1.03 0.04,-1.41c0.4,-0.38 1.03,-0.36 1.41,0.04L11.78,7.12zM9.64,9.21C9.41,9.76 9.35,10.45 9.44,11H8.58L6.31,8.61C5.93,8.21 5.94,7.58 6.35,7.2c0.4,-0.38 1.03,-0.36 1.41,0.04L9.64,9.21zM20.33,13.91l0.88,-0.83c0.5,-0.47 0.79,-1.13 0.79,-1.82V3.35l-0.27,-0.1c-0.78,-0.28 -1.64,0.12 -1.92,0.9L19.1,6.11l-5.5,-5.8c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.79,3.99l-0.73,0.69l-4.82,-5.08c-0.38,-0.4 -1.01,-0.42 -1.41,-0.04c-0.4,0.38 -0.42,1.01 -0.04,1.41l3.78,3.98L15.38,9l1.93,-1.87l1.38,1.45L20,7.34v3.7c0,0.28 -0.11,0.54 -0.31,0.73l-0.7,0.66l0.61,0.58C19.89,13.28 20.13,13.58 20.33,13.91z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_0_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_0_bar.xml
deleted file mode 100644
index 2dbba36..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22zM20,20H6.83L20,6.83V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_4_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_4_bar.xml
deleted file mode 100644
index e292fab..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,22h20V2L2,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt.xml
deleted file mode 100644
index 709e279..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4h3v16h-3L17,4zM5,14h3v6L5,20v-6zM11,9h3v11h-3L11,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt_1_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt_1_bar.xml
deleted file mode 100644
index b0c89e6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt_2_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt_2_bar.xml
deleted file mode 100644
index 9d48f66..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_alt_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,14h3v6H5V14zM11,9h3v11h-3V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_connected_no_internet_0_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_connected_no_internet_0_bar.xml
deleted file mode 100644
index 4a1e6fa..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_connected_no_internet_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM18,20v2H2L22,2v6h-2V6.83L6.83,20H18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_connected_no_internet_4_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_connected_no_internet_4_bar.xml
deleted file mode 100644
index 47710c2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_connected_no_internet_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18h2v-8h-2V18zM20,22h2v-2h-2V22zM2,22h16V8h4V2L2,22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_no_sim.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_no_sim.xml
deleted file mode 100644
index 649e2bd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_no_sim.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,5L9.36,6.47 17,14.11V5zM7,9.79V19h9.23z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,5L17,5v9.11l2,2L19,5c0,-1.1 -0.9,-2 -2,-2h-7L7.94,5.06l1.42,1.42L10.83,5zM21.26,21.21L3.79,3.74 2.38,5.15 5,7.77L5,19c0,1.11 0.9,2 2,2h11.23l1.62,1.62 1.41,-1.41zM7,19L7,9.79L16.23,19L7,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_nodata.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_nodata.xml
deleted file mode 100644
index af93c8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_nodata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,13h-9v9H2L22,2V13zM21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_null.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_null.xml
deleted file mode 100644
index cf15ce5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.83V20H6.83L20,6.83M22,2L2,22h20V2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_off.xml
deleted file mode 100644
index eeb9d9b6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_cellular_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,1l-8.31,8.31 8.31,8.3zM4.91,4.36L3.5,5.77l6.36,6.37L1,21h17.73l2,2 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_0_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_0_bar.xml
deleted file mode 100644
index 827c3d2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_0_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6s6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_4_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_4_bar.xml
deleted file mode 100644
index 5988e1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,21.49L23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4C5.28,3 0.81,6.66 0.36,7l11.63,14.49 0.01,0.01 0.01,-0.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_4_bar_lock.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_4_bar_lock.xml
deleted file mode 100644
index f0ee647..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_4_bar_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_bad.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_bad.xml
deleted file mode 100644
index 95ddd92..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_bad.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09l-0.3,-0.3L15.41,14L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_connected_no_internet_4.xml
deleted file mode 100644
index 95ddd92..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_connected_no_internet_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21v-9h8.99L24,8.98zM19.59,14l-2.09,2.09l-0.3,-0.3L15.41,14L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09,-2.08L19.59,21L21,19.59l-2.08,-2.09L21,15.41L19.59,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_off.xml
deleted file mode 100644
index bbb1e05..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23.64,7c-0.45,-0.34 -4.93,-4 -11.64,-4 -1.32,0 -2.55,0.14 -3.69,0.38L18.43,13.5 23.64,7zM3.41,1.31L2,2.72l2.05,2.05C1.91,5.76 0.59,6.82 0.36,7L12,21.5l3.91,-4.87 3.32,3.32 1.41,-1.41L3.41,1.31z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_4_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_4_bar.xml
deleted file mode 100644
index 6424547..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_4_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_connected_no_internet_4.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_connected_no_internet_4.xml
deleted file mode 100644
index 4f6727d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_connected_no_internet_4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21l5,-5.01V8h5.92C19.97,5.51 16.16,4 12,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_null.xml b/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_null.xml
deleted file mode 100644
index 4e2c4f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signal_wifi_statusbar_null.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7.31,4 3.07,5.9 0,8.98L12,21L24,8.98C20.93,5.9 16.69,4 12,4zM2.92,9.07C5.51,7.08 8.67,6 12,6c3.33,0 6.49,1.08 9.08,3.07L12,18.17L2.92,9.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/signpost.xml b/compose/material/material/icons/generator/raw-icons/twotone/signpost.xml
deleted file mode 100644
index 7741a6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/signpost.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h11.17l1,1l-1,1H6V6zM18,16H6.83l-1,-1l1,-1H18V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,10h5l3,-3l-3,-3h-5V2h-2v2H4v6h7v2H6l-3,3l3,3h5v4h2v-4h7v-6h-7V10zM6,6h11.17l1,1l-1,1H6V6zM18,16H6.83l-1,-1l1,-1H18V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sim_card.xml b/compose/material/material/icons/generator/raw-icons/twotone/sim_card.xml
deleted file mode 100644
index 83c8673..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sim_card.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.83L6,20h12L18,4h-7.17L6,8.83zM9,19L7,19v-2h2v2zM9,15L7,15v-4h2v4zM15,11h2v4h-2v-4zM15,17h2v2h-2v-2zM11,11h2v2h-2v-2zM11,15h2v4h-2v-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,4c0,-1.1 -0.9,-2 -2,-2zM18,4v16L6,20L6,8.83L10.83,4L18,4zM7,17h2v2L7,19zM15,17h2v2h-2zM7,11h2v4L7,15zM11,15h2v4h-2zM11,11h2v2h-2zM15,11h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sim_card_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/sim_card_alert.xml
deleted file mode 100644
index 7574f48..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sim_card_alert.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.83V20h12V4h-7.17L6,8.83zM11,8h2v5h-2V8zM11,15h2v2h-2V15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,20H6V8.83L10.83,4H18V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h2v5h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sim_card_download.xml b/compose/material/material/icons/generator/raw-icons/twotone/sim_card_download.xml
deleted file mode 100644
index 82649cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sim_card_download.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,8.83V20h12V4h-7.17L6,8.83zM11,9.02L13,9v4h3l-4,4l-4,-4h3V9.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h-8L4,8v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,20H6V8.83L10.83,4H18V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17l4,-4l-3,0l0,-4l-2,0.02l0,3.98l-3,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/single_bed.xml b/compose/material/material/icons/generator/raw-icons/twotone/single_bed.xml
deleted file mode 100644
index e92ae49..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/single_bed.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12h12v3h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10V7c0,-1.1 -0.9,-2 -2,-2H8C6.9,5 6,5.9 6,7v3c-1.1,0 -2,0.9 -2,2v5h1.33L6,19h1l0.67,-2h8.67L17,19h1l0.67,-2H20v-5C20,10.9 19.1,10 18,10zM13,7h3v3h-3V7zM8,7h3v3H8V7zM18,15H6v-3h12V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sip.xml b/compose/material/material/icons/generator/raw-icons/twotone/sip.xml
deleted file mode 100644
index 12181fc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sip.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,10.5h2v1h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM14,9h4c0.55,0 1,0.45 1,1v2c0,0.55 -0.45,1 -1,1h-2.5v2H14V9zM11,9h2v6h-2V9zM5,13.5h3.5v-0.75H6c-0.55,0 -1,-0.45 -1,-1V10c0,-0.55 0.45,-1 1,-1h4v1.5H6.5v0.75H9c0.55,0 1,0.45 1,1V14c0,0.55 -0.45,1 -1,1H5V13.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,14v-1.75c0,-0.55 -0.45,-1 -1,-1H6.5V10.5H10V9H6c-0.55,0 -1,0.45 -1,1v1.75c0,0.55 0.45,1 1,1h2.5v0.75H5V15h4C9.55,15 10,14.55 10,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,13H18c0.55,0 1,-0.45 1,-1v-2c0,-0.55 -0.45,-1 -1,-1h-4v6h1.5V13zM15.5,10.5h2v1h-2V10.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/skateboarding.xml b/compose/material/material/icons/generator/raw-icons/twotone/skateboarding.xml
deleted file mode 100644
index 1586ea1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/skateboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S13,4.1 13,3zM7.25,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S6.84,24 7.25,24S8,23.66 8,23.25S7.66,22.5 7.25,22.5zM15.75,22.5c-0.41,0 -0.75,0.34 -0.75,0.75S15.34,24 15.75,24s0.75,-0.34 0.75,-0.75S16.16,22.5 15.75,22.5zM19.24,19c-0.24,0 -0.45,0.11 -0.59,0.3c-0.55,0.73 -1.42,1.2 -2.4,1.2H16v-6l-4.32,-2.67l1.8,-2.89C14.63,10.78 16.68,12 19,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C14.16,5.64 13.61,5 12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35l-2.4,3.84c-0.31,0.5 -0.39,1.11 -0.21,1.67l1.34,4.14l-3.12,3.76c-0.7,-0.16 -1.3,-0.57 -1.71,-1.12C4.21,19.11 3.99,19 3.75,19C3.31,19 3,19.36 3,19.75c0,0.15 0.05,0.31 0.15,0.45c0.82,1.1 2.13,1.8 3.6,1.8h9.5c1.47,0 2.78,-0.7 3.6,-1.8c0.1,-0.14 0.15,-0.3 0.15,-0.45C20,19.36 19.68,19 19.24,19zM14,20.5H8.6l2.9,-3.5l-1,-3.3l3.5,2.2V20.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/skip_next.xml b/compose/material/material/icons/generator/raw-icons/twotone/skip_next.xml
deleted file mode 100644
index 48f2ce3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/skip_next.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9.86v4.28L11.03,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,12L6,6v12l8.5,-6zM8,9.86L11.03,12 8,14.14V9.86zM16,6h2v12h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/skip_previous.xml b/compose/material/material/icons/generator/raw-icons/twotone/skip_previous.xml
deleted file mode 100644
index 188ae7e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/skip_previous.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,14.14V9.86L12.97,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6h2v12L6,18zM18,18L18,6l-8.5,6 8.5,6zM16,14.14L12.97,12 16,9.86v4.28z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sledding.xml b/compose/material/material/icons/generator/raw-icons/twotone/sledding.xml
deleted file mode 100644
index 2f029e8f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sledding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,4.5c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S14,3.4 14,4.5zM22.8,20.24c-0.68,2.1 -2.94,3.25 -5.04,2.57h0L1,17.36l0.46,-1.43l3.93,1.28l0.46,-1.43L1.93,14.5l0.46,-1.43L4,13.6V9.5l5.47,-2.35c0.39,-0.17 0.84,-0.21 1.28,-0.07c0.95,0.31 1.46,1.32 1.16,2.27l-1.05,3.24L13,12.25c0.89,-0.15 1.76,0.32 2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32,-1.08L14.9,20.3l3.32,1.08l0,0c1.31,0.43 2.72,-0.29 3.15,-1.61c0.43,-1.31 -0.29,-2.72 -1.61,-3.15l0.46,-1.43C22.33,15.88 23.49,18.14 22.8,20.24zM6,14.25l1.01,0.33c-0.22,-0.42 -0.28,-0.92 -0.12,-1.4L7.92,10L6,10.82V14.25zM13.94,18.41l-6.66,-2.16l-0.46,1.43l6.66,2.16L13.94,18.41zM14.63,17.05l-1.18,-2.56l-3.97,0.89L14.63,17.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/slideshow.xml b/compose/material/material/icons/generator/raw-icons/twotone/slideshow.xml
deleted file mode 100644
index eb8519c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/slideshow.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,5L5,5v14zM10,8l5,4 -5,4L10,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM10,8v8l5,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/slow_motion_video.xml b/compose/material/material/icons/generator/raw-icons/twotone/slow_motion_video.xml
deleted file mode 100644
index 18c7a47..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/slow_motion_video.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.26,18.32l1.43,-1.43c-0.86,-1.1 -1.44,-2.43 -1.62,-3.89L2.05,13c0.2,2.01 1,3.84 2.21,5.32zM7.1,5.69c1.11,-0.86 2.44,-1.44 3.9,-1.62L11,2.05c-2.01,0.2 -3.84,1 -5.32,2.21L7.1,5.69zM2.05,11h2.02c0.18,-1.46 0.76,-2.79 1.62,-3.9L4.26,5.68C3.05,7.16 2.25,8.99 2.05,11zM13.05,2.05v2.02C16.97,4.59 20,7.95 20,12s-3.03,7.41 -6.95,7.93v2.02C18.08,21.42 22,17.16 22,12c0,-5.16 -3.92,-9.42 -8.95,-9.95zM16,12l-2.95,-2.21L10,7.5v9l3.05,-2.29zM5.68,19.74C7.16,20.95 9,21.75 11,21.95v-2.02c-1.46,-0.18 -2.79,-0.76 -3.9,-1.62l-1.42,1.43z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/smart_button.xml b/compose/material/material/icons/generator/raw-icons/twotone/smart_button.xml
deleted file mode 100644
index 9f77a98..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/smart_button.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9v6c0,1.1 -0.9,2 -2,2h-1l0,-2h1V9H4v6h6v2H4c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h16C21.1,7 22,7.9 22,9zM14.5,19l1.09,-2.41L18,15.5l-2.41,-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19zM17,14l0.62,-1.38L19,12l-1.38,-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14zM14.5,19l1.09,-2.41L18,15.5l-2.41,-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19zM17,14l0.62,-1.38L19,12l-1.38,-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/smart_display.xml b/compose/material/material/icons/generator/raw-icons/twotone/smart_display.xml
deleted file mode 100644
index ddb41d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/smart_display.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18.01h16V5.99H4V18.01zM9.5,7.5l7,4.5l-7,4.5V7.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,7.5l0,9l7,-4.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18.01H4V5.99h16V18.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/smart_screen.xml b/compose/material/material/icons/generator/raw-icons/twotone/smart_screen.xml
deleted file mode 100644
index 2d2828d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/smart_screen.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,17h1V7H3V17zM20,7v10h1V7H20z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,11.25h-1.5v1.5H14V11.25zM16.5,11.25H15v1.5h1.5V11.25zM11.5,11.25H10v1.5h1.5V11.25zM9,11.25H7.5v1.5H9V11.25zM21,5H3C1.9,5 1,5.9 1,7v10c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V7C23,5.9 22.1,5 21,5zM4,17H3V7h1V17zM18,17H6V7h12V17zM21,17h-1V7h1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/smart_toy.xml b/compose/material/material/icons/generator/raw-icons/twotone/smart_toy.xml
deleted file mode 100644
index 8f81a0f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/smart_toy.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7H6v12h12V7zM7.5,11.5C7.5,10.67 8.17,10 9,10s1.5,0.67 1.5,1.5S9.83,13 9,13S7.5,12.33 7.5,11.5zM16,17H8v-2h8V17zM15,13c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.17,10 15,10s1.5,0.67 1.5,1.5S15.83,13 15,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,15h8v2h-8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,9V7c0,-1.1 -0.9,-2 -2,-2h-3c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5H6C4.9,5 4,5.9 4,7v2c-1.66,0 -3,1.34 -3,3c0,1.66 1.34,3 3,3v4c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4c1.66,0 3,-1.34 3,-3C23,10.34 21.66,9 20,9zM18,19H6V7h12V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/smartphone.xml b/compose/material/material/icons/generator/raw-icons/twotone/smartphone.xml
deleted file mode 100644
index fe05f59..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/smartphone.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v14H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/smoke_free.xml b/compose/material/material/icons/generator/raw-icons/twotone/smoke_free.xml
deleted file mode 100644
index e73d532..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/smoke_free.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.5,13L22,13v3h-1.5zM18,13h1.5v3L18,16zM18.85,4.73c0.62,-0.61 1,-1.45 1,-2.38h-1.5c0,1.02 -0.83,1.85 -1.85,1.85v1.5c2.24,0 4,1.83 4,4.07L20.5,12L22,12L22,9.76c0,-2.22 -1.28,-4.14 -3.15,-5.03zM14.5,8.65h1.53c1.05,0 1.97,0.74 1.97,2.05L18,12h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16L14.5,7.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35zM17,13h-2.34L17,15.34zM3.41,4.59L2,6l7,7L2,13v3h10l7,7 1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/smoking_rooms.xml b/compose/material/material/icons/generator/raw-icons/twotone/smoking_rooms.xml
deleted file mode 100644
index dc1dda8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/smoking_rooms.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16h15v3L2,19v-3zM20.5,16L22,16v3h-1.5v-3zM18,16h1.5v3L18,19v-3zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38C19.85,3.5 18.35,2 16.5,2v1.5c1.02,0 1.85,0.83 1.85,1.85S17.52,7.2 16.5,7.2v1.5c2.24,0 4,1.83 4,4.07L20.5,15L22,15v-2.24c0,-2.22 -1.28,-4.14 -3.15,-5.03zM16.03,10.2L14.5,10.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35h1.53c1.05,0 1.97,0.74 1.97,2.05L18,15h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16h15v3L2,19v-3zM20.5,16L22,16v3h-1.5v-3zM18,16h1.5v3L18,19v-3zM18.85,7.73c0.62,-0.61 1,-1.45 1,-2.38C19.85,3.5 18.35,2 16.5,2v1.5c1.02,0 1.85,0.83 1.85,1.85S17.52,7.2 16.5,7.2v1.5c2.24,0 4,1.83 4,4.07L20.5,15L22,15v-2.24c0,-2.22 -1.28,-4.14 -3.15,-5.03zM16.03,10.2L14.5,10.2c-1.02,0 -1.85,-0.98 -1.85,-2s0.83,-1.75 1.85,-1.75v-1.5c-1.85,0 -3.35,1.5 -3.35,3.35s1.5,3.35 3.35,3.35h1.53c1.05,0 1.97,0.74 1.97,2.05L18,15h1.5v-1.64c0,-1.81 -1.6,-3.16 -3.47,-3.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sms.xml b/compose/material/material/icons/generator/raw-icons/twotone/sms.xml
deleted file mode 100644
index aa11651..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sms.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16L20,16L20,4L4,4v13.17zM15,9h2v2h-2L15,9zM11,9h2v2h-2L11,9zM7,9h2v2L7,11L7,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM7,9h2v2L7,11zM15,9h2v2h-2zM11,9h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sms_failed.xml b/compose/material/material/icons/generator/raw-icons/twotone/sms_failed.xml
deleted file mode 100644
index 985a1b8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sms_failed.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16L20,16L20,4L4,4v13.17zM11,6h2v4h-2L11,6zM11,12h2v2h-2v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM11,12h2v2h-2zM11,6h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/snippet_folder.xml b/compose/material/material/icons/generator/raw-icons/twotone/snippet_folder.xml
deleted file mode 100644
index 46f465a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/snippet_folder.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,6H4v12l16,0V8h-8.83L9.17,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18zM17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12zM16.5,9H13v8l6,0v-5.5L16.5,9L16.5,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/snooze.xml b/compose/material/material/icons/generator/raw-icons/twotone/snooze.xml
deleted file mode 100644
index 21e0923..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/snooze.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h3.63L9,15.2L9,17h6v-2h-3.63L15,10.8L15,9L9,9zM17.337,1.81l4.607,3.845 -1.28,1.535 -4.61,-3.843zM6.663,1.81l1.282,1.536L3.337,7.19l-1.28,-1.536zM12,4c-4.97,0 -9,4.03 -9,9s4.03,9 9,9 9,-4.03 9,-9 -4.03,-9 -9,-9zM12,20c-3.86,0 -7,-3.14 -7,-7s3.14,-7 7,-7 7,3.14 7,7 -3.14,7 -7,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/snowboarding.xml b/compose/material/material/icons/generator/raw-icons/twotone/snowboarding.xml
deleted file mode 100644
index 3c8e455..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/snowboarding.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,3c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S14,4.1 14,3zM21.4,20.09c-0.23,-0.05 -0.46,0.02 -0.64,0.17c-0.69,0.6 -1.64,0.88 -2.6,0.67L17,20.69l-1,-6.19l-3.32,-2.67l1.8,-2.89C15.63,10.78 17.68,12 20,12v-2c-1.85,0 -3.44,-1.12 -4.13,-2.72l-0.52,-1.21C15.16,5.64 14.61,5 13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45 -0.37,1 -0.25,1.52L9.5,16L6,18.35l-0.47,-0.1c-0.96,-0.2 -1.71,-0.85 -2.1,-1.67c-0.1,-0.21 -0.28,-0.37 -0.51,-0.42c-0.43,-0.09 -0.82,0.2 -0.9,0.58C1.98,16.88 2,17.05 2.07,17.2c0.58,1.24 1.71,2.2 3.15,2.51l12.63,2.69c1.44,0.31 2.86,-0.11 3.9,-1.01c0.13,-0.11 0.21,-0.26 0.24,-0.41C22.06,20.6 21.83,20.18 21.4,20.09zM8.73,18.93l3.02,-2.03l-0.44,-3.32l2.84,2.02l0.75,4.64L8.73,18.93z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/snowmobile.xml b/compose/material/material/icons/generator/raw-icons/twotone/snowmobile.xml
deleted file mode 100644
index 99b9c13..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/snowmobile.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14h-6.7l-7.45,-2.23l0.31,-0.62L11.6,12l3.93,-2.94c0,0 3.77,3.44 4.27,4.14C19.8,13.2 18.7,14 17,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,17c0,0.55 -0.45,1 -1,1h-0.17l-2.2,-2.2C20.58,15.37 22,14.4 22,13c0,-1 -8,-8 -8,-8h-3v2h2.25l0.8,0.72L11,10L2,9l-2,4l4.54,1.36l-3.49,1.88C-0.77,17.22 -0.07,20 2,20h6c2.21,0 4,-1.79 4,-4h4l2,2h-3v2h6c1.66,0 3,-1.34 3,-3H22zM8,18H2l5.25,-2.83L10,16C10,17.1 9.11,18 8,18zM17,14h-6.7l-7.45,-2.23l0.31,-0.62L11.6,12l3.93,-2.94c0,0 3.77,3.44 4.27,4.14C19.8,13.2 18.7,14 17,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/snowshoeing.xml b/compose/material/material/icons/generator/raw-icons/twotone/snowshoeing.xml
deleted file mode 100644
index e1df340..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/snowshoeing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,3.5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S12.5,4.6 12.5,3.5zM6.32,19.03l-1.14,-1.47L4,18.5l2.38,3.04c0.51,0.65 1.16,1.15 1.88,1.41c0.28,0.1 0.53,0.04 0.72,-0.11c0.3,-0.23 0.42,-0.7 0.12,-1.07c-0.08,-0.1 -0.2,-0.17 -0.31,-0.22c-0.43,-0.18 -0.82,-0.45 -1.14,-0.83l-0.08,-0.1L11,18.2l0.89,-3.22l2.11,2v4.52h-2V23h3.87c0.82,0 1.61,-0.21 2.26,-0.61c0.26,-0.16 0.37,-0.39 0.37,-0.64c0,-0.38 -0.3,-0.75 -0.77,-0.75c-0.13,0 -0.26,0.04 -0.37,0.1c-0.4,0.23 -0.87,0.37 -1.36,0.4l0,-6.02l-2.11,-2l0.6,-3C15.79,11.98 17.8,13 20,13v-2c-1.9,0 -3.51,-1.02 -4.31,-2.42l-1,-1.58c-0.4,-0.6 -1,-1 -1.7,-1C12.24,6 11.58,6.34 7,8.28V13h2V9.58l1.79,-0.7L9.2,17L6.32,19.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/soap.xml b/compose/material/material/icons/generator/raw-icons/twotone/soap.xml
deleted file mode 100644
index 72481ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/soap.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,6C14.66,6 15,6.34 15,6.75S14.66,7.5 14.25,7.5S13.5,7.16 13.5,6.75S13.84,6 14.25,6M20,5.5c0.28,0 0.5,0.22 0.5,0.5S20.28,6.5 20,6.5S19.5,6.28 19.5,6S19.72,5.5 20,5.5M10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.25,6C14.66,6 15,6.34 15,6.75S14.66,7.5 14.25,7.5S13.5,7.16 13.5,6.75S13.84,6 14.25,6M14.25,4.5C13.01,4.5 12,5.51 12,6.75S13.01,9 14.25,9s2.25,-1.01 2.25,-2.25S15.49,4.5 14.25,4.5L14.25,4.5zM20,5.5c0.28,0 0.5,0.22 0.5,0.5S20.28,6.5 20,6.5S19.5,6.28 19.5,6S19.72,5.5 20,5.5M20,4c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S21.1,4 20,4L20,4zM16.5,1C15.67,1 15,1.67 15,2.5S15.67,4 16.5,4C17.33,4 18,3.33 18,2.5S17.33,1 16.5,1zM20.75,16c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25c0,-0.67 -0.53,-1.2 -1.18,-1.24L8.87,10l1.48,-2.6c0.09,-0.17 0.14,-0.34 0.14,-0.54c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.12,5l-7.18,6.8C1.34,12.36 1,13.15 1,13.97V20c0,1.66 1.34,3 3,3h13.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1H20.75zM10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/social_distance.xml b/compose/material/material/icons/generator/raw-icons/twotone/social_distance.xml
deleted file mode 100644
index c46410c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/social_distance.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,5c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,1.1 -0.9,2 -2,2S4,6.1 4,5zM8.78,8.58C7.93,8.21 6.99,8 6,8S4.07,8.21 3.22,8.58C2.48,8.9 2,9.62 2,10.43L2,11h8l0,-0.57C10,9.62 9.52,8.9 8.78,8.58zM18,7c1.1,0 2,-0.9 2,-2c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2C16,6.1 16.9,7 18,7zM20.78,8.58C19.93,8.21 18.99,8 18,8c-0.99,0 -1.93,0.21 -2.78,0.58C14.48,8.9 14,9.62 14,10.43L14,11h8l0,-0.57C22,9.62 21.52,8.9 20.78,8.58zM22,17l-4,-4v3H6v-3l-4,4l4,4v-3h12v3L22,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/solar_power.xml b/compose/material/material/icons/generator/raw-icons/twotone/solar_power.xml
deleted file mode 100644
index 447a84f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/solar_power.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.44,20l6.56,0l0,-2l-6.16,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.36,14l-5.36,0l0,2l5.76,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,18l0,2l6.56,0l-0.4,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.24,16l5.76,0l0,-2l-5.36,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12H4L2,22h20L20,12zM13,14h5.36l0.4,2H13V14zM11,20H4.44l0.4,-2H11V20zM11,16H5.24l0.4,-2H11V16zM13,20v-2h6.16l0.4,2H13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.764,7.205l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.705,7.913l2.121,-2.121l1.414,1.414l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,-2.24 5,-5h-2c0,1.65 -1.35,3 -3,3S9,3.65 9,2H7C7,4.76 9.24,7 12,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,2c0,1.66 -1.34,3 -3,3S9,3.66 9,2H15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sort.xml b/compose/material/material/icons/generator/raw-icons/twotone/sort.xml
deleted file mode 100644
index b9a508d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sort.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,18h6v-2L3,16v2zM3,6v2h18L21,6L3,6zM3,13h12v-2L3,11v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sort_by_alpha.xml b/compose/material/material/icons/generator/raw-icons/twotone/sort_by_alpha.xml
deleted file mode 100644
index 8fa868f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sort_by_alpha.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.94,4.66L12.58,2.3l-2.36,2.36zM10.39,17.73h1.84L7.74,6.27L6.1,6.27L1.6,17.73h1.84l0.92,-2.45h5.11l0.92,2.45zM4.97,13.64l1.94,-5.18 1.94,5.18L4.97,13.64zM12.58,21.7l2.33,-2.33h-4.66zM21.66,7.54L21.66,6.28h-8.3v1.6h5.88l-5.92,8.56v1.29h8.53v-1.59h-6.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sos.xml b/compose/material/material/icons/generator/raw-icons/twotone/sos.xml
deleted file mode 100644
index 2005165..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sos.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.5,7h-3c-1.1,0 -2,0.9 -2,2v6c0,1.1 0.9,2 2,2h3c1.1,0 2,-0.9 2,-2V9C15.5,7.9 14.6,7 13.5,7zM13.5,15h-3V9h3V15zM1,15h4v-2H3c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h4v2H3v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2H1V15zM17,15h4v-2h-2c-1.1,0 -2,-0.9 -2,-2V9c0,-1.1 0.9,-2 2,-2h4v2h-4v2h2c1.1,0 2,0.9 2,2v2c0,1.1 -0.9,2 -2,2h-4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/soup_kitchen.xml b/compose/material/material/icons/generator/raw-icons/twotone/soup_kitchen.xml
deleted file mode 100644
index 6ef3e48..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/soup_kitchen.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,17c-0.73,1.78 -2.43,3 -4.37,3c-1.94,0 -3.67,-1.23 -4.43,-3h8.78"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,7C6.06,7.55 6,7.97 6,8.38C6,9.15 7,11 7,12c0,0.95 -0.4,1.5 -0.4,1.5H5.1c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62C4.5,7.97 4.56,7.55 4.9,7H6.4zM11.4,7C11.06,7.55 11,7.97 11,8.38C11,9.15 12,11 12,12c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H11.4zM8.15,7c-0.34,0.55 -0.4,0.97 -0.4,1.38c0,0.77 1,2.63 1,3.62c0,0.95 -0.4,1.5 -0.4,1.5h1.5c0,0 0.4,-0.55 0.4,-1.5c0,-1 -1,-2.85 -1,-3.62c0,-0.41 0.06,-0.83 0.4,-1.38H8.15zM18.6,2c-1.54,0 -2.81,1.16 -2.98,2.65L14.53,15H4.01c-0.6,0 -1.09,0.53 -1,1.13C3.53,19.46 6.39,22 9.75,22c3.48,0 6.34,-2.73 6.71,-6.23l1.15,-10.87C17.66,4.39 18.08,4 18.6,4c0.55,0 1,0.45 1,1c0,0.3 -0.1,1.25 -0.1,1.25l1.97,0.25c0,0 0.13,-1.06 0.13,-1.5C21.6,3.35 20.25,2 18.6,2zM9.75,20c-1.94,0 -3.67,-1.23 -4.43,-3h8.78h0.01C13.39,18.78 11.69,20 9.75,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/source.xml b/compose/material/material/icons/generator/raw-icons/twotone/source.xml
deleted file mode 100644
index 92c011a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/source.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,6H4v12l16,0V8h-8.83L9.17,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18zM18,12H6v-2h12V12zM14,16H6v-2h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/south.xml b/compose/material/material/icons/generator/raw-icons/twotone/south.xml
deleted file mode 100644
index 901daf4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/south.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-1.41,-1.41L13,18.17V2H11v16.17l-4.59,-4.59L5,15l7,7L19,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/south_america.xml b/compose/material/material/icons/generator/raw-icons/twotone/south_america.xml
deleted file mode 100644
index 9f8f6a8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/south_america.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,-1.95 0.7,-3.74 1.87,-5.13L9,10v1c0,1.1 0.9,2 2,2v5.59c0,0.27 0.11,0.52 0.29,0.71L12,20C7.58,20 4,16.42 4,12zM13,19.94V18l3.75,-5.62c0.16,-0.25 0.25,-0.54 0.25,-0.83V10.5c0,-0.55 -0.45,-1 -1,-1h-1.5l-1.4,-1.75C12.72,7.28 12.15,7 11.54,7H8V5.07C9.18,4.39 10.54,4 12,4c4.41,0 8,3.59 8,8C20,16.07 16.94,19.44 13,19.94z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM4,12c0,-1.95 0.7,-3.74 1.87,-5.13L9,10v1c0,1.1 0.9,2 2,2v5.59c0,0.27 0.11,0.52 0.29,0.71L12,20C7.58,20 4,16.42 4,12zM13,19.94V18l3.75,-5.62c0.16,-0.25 0.25,-0.54 0.25,-0.83V10.5c0,-0.55 -0.45,-1 -1,-1h-1.5l-1.4,-1.75C12.72,7.28 12.15,7 11.54,7H8V5.07C9.18,4.39 10.54,4 12,4c4.41,0 8,3.59 8,8C20,16.07 16.94,19.44 13,19.94z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/south_east.xml b/compose/material/material/icons/generator/raw-icons/twotone/south_east.xml
deleted file mode 100644
index 701f3d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/south_east.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/south_west.xml b/compose/material/material/icons/generator/raw-icons/twotone/south_west.xml
deleted file mode 100644
index 6f12610..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/south_west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/spa.xml b/compose/material/material/icons/generator/raw-icons/twotone/spa.xml
deleted file mode 100644
index 8f03edc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/spa.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.55,12c-1.07,-0.71 -2.25,-1.27 -3.53,-1.61 1.28,0.34 2.46,0.9 3.53,1.61zM18.98,10.39c-1.29,0.34 -2.49,0.91 -3.57,1.64 1.08,-0.73 2.28,-1.3 3.57,-1.64z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.94,12.25c0,-0.01 0,-0.01 0,0 -0.13,-0.09 -0.27,-0.17 -0.4,-0.26 0.13,0.1 0.27,0.17 0.4,0.26zM13.35,8.58c-0.22,-1.21 -0.66,-2.35 -1.3,-3.38 -0.66,1.04 -1.12,2.19 -1.37,3.39 0.46,0.3 0.9,0.62 1.33,0.97 0.42,-0.35 0.87,-0.68 1.34,-0.98zM16.54,13.66l0.01,0.02c-0.09,0.06 -0.18,0.12 -0.27,0.17l-0.07,0.05c-0.98,0.71 -1.84,1.61 -2.53,2.66L12,19.1l-1.67,-2.55c-0.68,-1.03 -1.52,-1.92 -2.51,-2.65l-0.07,-0.04c-0.13,-0.08 -0.26,-0.16 -0.39,-0.25l0.01,-0.01c-0.96,-0.63 -2.01,-1.07 -3.12,-1.33 0.75,3.36 3.16,6.17 6.45,7.35 0.42,0.15 0.84,0.27 1.28,0.36 0.45,-0.09 0.89,-0.21 1.33,-0.37 3.27,-1.17 5.67,-3.98 6.43,-7.34 -1.14,0.26 -2.23,0.73 -3.2,1.39zM8.99,12.28"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15.45c-0.82,-1.25 -1.86,-2.34 -3.06,-3.2 -0.13,-0.09 -0.27,-0.16 -0.4,-0.26 0.13,0.09 0.27,0.17 0.39,0.25C6.98,10.83 4.59,10 2,10c0,5.32 3.36,9.82 8.03,11.49 0.63,0.23 1.29,0.4 1.97,0.51 0.68,-0.12 1.33,-0.29 1.97,-0.51C18.64,19.82 22,15.32 22,10c-4.18,0 -7.85,2.17 -10,5.45zM13.32,19.6c-0.44,0.15 -0.88,0.27 -1.33,0.37 -0.44,-0.09 -0.87,-0.21 -1.28,-0.36 -3.29,-1.18 -5.7,-3.99 -6.45,-7.35 1.1,0.26 2.15,0.71 3.12,1.33l-0.02,0.01c0.13,0.09 0.26,0.18 0.39,0.25l0.07,0.04c0.99,0.72 1.84,1.61 2.51,2.65L12,19.1l1.67,-2.55c0.69,-1.05 1.55,-1.95 2.53,-2.66l0.07,-0.05c0.09,-0.05 0.18,-0.11 0.27,-0.17l-0.01,-0.02c0.98,-0.65 2.07,-1.13 3.21,-1.4 -0.75,3.37 -3.15,6.18 -6.42,7.35zM15.49,9.63c-0.18,-2.79 -1.31,-5.51 -3.43,-7.63 -2.14,2.14 -3.32,4.86 -3.55,7.63 1.28,0.68 2.46,1.56 3.49,2.63 1.03,-1.06 2.21,-1.94 3.49,-2.63zM12.05,5.19c0.63,1.03 1.07,2.18 1.3,3.38 -0.47,0.3 -0.91,0.63 -1.34,0.98 -0.42,-0.34 -0.87,-0.67 -1.33,-0.97 0.25,-1.2 0.71,-2.35 1.37,-3.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.99,12.28c-0.02,-0.01 -0.04,-0.03 -0.05,-0.04 0,0 0.01,0 0.01,0.01 0.01,0.01 0.02,0.02 0.04,0.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/space_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/space_bar.xml
deleted file mode 100644
index b489cfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/space_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13H6V9H4v6h16V9h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/space_dashboard.xml b/compose/material/material/icons/generator/raw-icons/twotone/space_dashboard.xml
deleted file mode 100644
index 1baeea4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/space_dashboard.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19V5h6v14H5zM19,19h-6v-7h6V19zM19,10h-6V5h6V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM5,19V5h6v14H5zM19,19h-6v-7h6V19zM19,10h-6V5h6V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/spatial_audio.xml b/compose/material/material/icons/generator/raw-icons/twotone/spatial_audio.xml
deleted file mode 100644
index 9df9c9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/spatial_audio.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.48,17.34C14.29,16.73 12.37,16 10,16c-2.37,0 -4.29,0.73 -5.48,1.34C4.2,17.5 4,17.84 4,18.22V19h12v-0.78C16,17.84 15.8,17.5 15.48,17.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S6,6.79 6,9C6,11.21 7.79,13 10,13zM10,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C8,7.9 8.9,7 10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56zM16,19H4v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C5.71,16.73 7.63,16 10,16c2.37,0 4.29,0.73 5.48,1.34C15.8,17.5 16,17.84 16,18.22V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,1h-2c0,4.97 4.03,9 9,9V8C19.14,8 16,4.86 16,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1h-2c0,2.76 2.24,5 5,5V4C21.35,4 20,2.65 20,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/spatial_audio_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/spatial_audio_off.xml
deleted file mode 100644
index a7acfae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/spatial_audio_off.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.48,17.34C14.29,16.73 12.37,16 10,16c-2.37,0 -4.29,0.73 -5.48,1.34C4.2,17.5 4,17.84 4,18.22V19h12v-0.78C16,17.84 15.8,17.5 15.48,17.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S6,6.79 6,9C6,11.21 7.79,13 10,13zM10,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C8,7.9 8.9,7 10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56zM16,19H4v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C5.71,16.73 7.63,16 10,16c2.37,0 4.29,0.73 5.48,1.34C15.8,17.5 16,17.84 16,18.22V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.36,1l-1.41,1.41c2.73,2.73 2.73,7.17 0,9.9l1.41,1.41C23.88,10.21 23.88,4.51 20.36,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.54,10.9c1.95,-1.95 1.95,-5.12 0,-7.07l-1.41,1.41c1.17,1.17 1.17,3.07 0,4.24L17.54,10.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/spatial_tracking.xml b/compose/material/material/icons/generator/raw-icons/twotone/spatial_tracking.xml
deleted file mode 100644
index b68fd5e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/spatial_tracking.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.05,2.41L18.64,1c-3.51,3.51 -3.51,9.21 0,12.73l1.41,-1.41C17.32,9.58 17.32,5.14 20.05,2.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.88,5.24l-1.41,-1.41c-1.95,1.95 -1.95,5.12 0,7.07l1.41,-1.41C21.71,8.32 21.71,6.41 22.88,5.24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.48,17.34C14.29,16.73 12.37,16 10,16c-2.37,0 -4.29,0.73 -5.48,1.34C4.2,17.5 4,17.84 4,18.22V19h12v-0.78C16,17.84 15.8,17.5 15.48,17.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,9m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S6,6.79 6,9C6,11.21 7.79,13 10,13zM10,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C8,7.9 8.9,7 10,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.39,15.56C14.71,14.7 12.53,14 10,14c-2.53,0 -4.71,0.7 -6.39,1.56C2.61,16.07 2,17.1 2,18.22V21h16v-2.78C18,17.1 17.39,16.07 16.39,15.56zM16,19H4v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C5.71,16.73 7.63,16 10,16c2.37,0 4.29,0.73 5.48,1.34C15.8,17.5 16,17.84 16,18.22V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/speaker.xml b/compose/material/material/icons/generator/raw-icons/twotone/speaker.xml
deleted file mode 100644
index 810dcd3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/speaker.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,4v16h10L17,4L7,4zM12,5c1.1,0 2,0.9 2,2s-0.9,2 -2,2c-1.11,0 -2,-0.9 -2,-2s0.89,-2 2,-2zM12,19c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,2L7,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,1.99 2,1.99L17,22c1.1,0 2,-0.9 2,-2L19,4c0,-1.1 -0.9,-2 -2,-2zM7,20L7,4h10v16L7,20zM12,9c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2c-1.11,0 -2,0.9 -2,2s0.89,2 2,2zM12,11c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/speaker_group.xml b/compose/material/material/icons/generator/raw-icons/twotone/speaker_group.xml
deleted file mode 100644
index fe62f44..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/speaker_group.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,16.99l8,0.01L18,3h-8v13.99zM14,4c1.1,0 2,0.89 2,2s-0.9,2 -2,2 -2,-0.89 -2,-2 0.9,-2 2,-2zM14,9c1.93,0 3.5,1.57 3.5,3.5S15.93,16 14,16s-3.5,-1.57 -3.5,-3.5S12.07,9 14,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.2,1L9.8,1C8.81,1 8,1.81 8,2.8v14.4c0,0.99 0.81,1.79 1.8,1.79l8.4,0.01c0.99,0 1.8,-0.81 1.8,-1.8L20,2.8c0,-0.99 -0.81,-1.8 -1.8,-1.8zM18,17l-8,-0.01L10,3h8v14zM14,8c1.1,0 2,-0.89 2,-2s-0.9,-2 -2,-2 -2,0.89 -2,2 0.9,2 2,2zM14,16c1.93,0 3.5,-1.57 3.5,-3.5S15.93,9 14,9s-3.5,1.57 -3.5,3.5S12.07,16 14,16zM14,11c0.83,0 1.5,0.67 1.5,1.5S14.83,14 14,14s-1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM6,5L4,5v16c0,1.1 0.89,2 2,2h10v-2L6,21L6,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/speaker_notes.xml b/compose/material/material/icons/generator/raw-icons/twotone/speaker_notes.xml
deleted file mode 100644
index e86b90f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/speaker_notes.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17l0.59,-0.59 0.58,-0.58L20,16L20,4L4,4v13.17zM10,6h8v2h-8L10,6zM10,9h8v2h-8L10,9zM10,12h5v2h-5v-2zM6,6h2v2L6,8L6,6zM6,9h2v2L6,11L6,9zM6,12h2v2L6,14v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16l-0.59,0.59 -0.58,0.58L4,4h16v12zM6,12h2v2L6,14zM6,9h2v2L6,11zM6,6h2v2L6,8zM10,12h5v2h-5zM10,9h8v2h-8zM10,6h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/speaker_notes_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/speaker_notes_off.xml
deleted file mode 100644
index a22022b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/speaker_notes_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,11L6,9L4,7v10.17L5.17,16L13,16l-5,-5L6,11zM8,14L6,14v-2h2v2zM20,4L6.66,4L10,7.34L10,6h8v2h-7.34l1,1L18,9v2h-4.34l5,5L20,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4v12h-1.34l1.91,1.91C21.39,17.66 22,16.9 22,16L22,4c0,-1.1 -0.9,-2 -2,-2L4.66,2l2,2L20,4zM6,12h2v2L6,14zM18,11L18,9h-6.34l2,2zM18,8L18,6h-8v1.34l0.66,0.66zM1.41,1.59L0,3l2,2.01L2,22l4,-4h9l5.73,5.73 1.41,-1.41L1.41,1.59zM5.17,16L4,17.17L4,7l2,2v2h2l5,5L5.17,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/speaker_phone.xml b/compose/material/material/icons/generator/raw-icons/twotone/speaker_phone.xml
deleted file mode 100644
index 29ba892..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/speaker_phone.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12h6v8H9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C8.98,1 6.24,2.23 4.25,4.21l1.41,1.41C7.28,4 9.53,3 12,3s4.72,1 6.34,2.62l1.41,-1.41C17.76,2.23 15.02,1 12,1zM7,7.07L8.43,8.5c0.91,-0.91 2.18,-1.48 3.57,-1.48s2.66,0.57 3.57,1.48L17,7.07C15.72,5.79 13.95,5 12,5s-3.72,0.79 -5,2.07zM14.86,10.01L9.14,10C8.51,10 8,10.51 8,11.14v9.71c0,0.63 0.51,1.14 1.14,1.14h5.71c0.63,0 1.14,-0.51 1.14,-1.14v-9.71c0.01,-0.63 -0.5,-1.13 -1.13,-1.13zM15,20L9,20v-8h6v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/speed.xml b/compose/material/material/icons/generator/raw-icons/twotone/speed.xml
deleted file mode 100644
index 0f4767f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/speed.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.38,8.57l-1.23,1.85a8,8 0,0 1,-0.22 7.58H5.07A8,8 0,0 1,15.58 6.85l1.85,-1.23A10,10 0,0 0,3.35 19a2,2 0,0 0,1.72 1h13.85a2,2 0,0 0,1.74 -1,10 10,0 0,0 -0.27,-10.44z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.59,15.41a2,2 0,0 0,2.83 0l5.66,-8.49 -8.49,5.66a2,2 0,0 0,0 2.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/spellcheck.xml b/compose/material/material/icons/generator/raw-icons/twotone/spellcheck.xml
deleted file mode 100644
index fae9ad9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/spellcheck.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.45,16h2.09L9.43,3L7.57,3L2.46,16h2.09l1.12,-3h5.64l1.14,3zM6.43,11L8.5,5.48 10.57,11L6.43,11zM21.59,11.59l-8.09,8.09L9.83,16l-1.41,1.41 5.09,5.09L23,13l-1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/splitscreen.xml b/compose/material/material/icons/generator/raw-icons/twotone/splitscreen.xml
deleted file mode 100644
index 30948c5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/splitscreen.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,4h12v5h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15h12v5h-12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,2H6C4.9,2 4,2.9 4,4v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C20,2.9 19.1,2 18,2zM18,9H6V4h12V9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13H6c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-5C20,13.9 19.1,13 18,13zM18,20H6v-5h12V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/spoke.xml b/compose/material/material/icons/generator/raw-icons/twotone/spoke.xml
deleted file mode 100644
index 8cd536a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/spoke.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,8.1 13.1,9 12,9zM7,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C9,18.1 8.1,19 7,19zM17,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C19,18.1 18.1,19 17,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7c0,-2.21 -1.79,-4 -4,-4S8,4.79 8,7c0,2.21 1.79,4 4,4S16,9.21 16,7zM12,9c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,8.1 13.1,9 12,9zM7,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C11,14.79 9.21,13 7,13zM7,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C9,18.1 8.1,19 7,19zM17,13c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4s4,-1.79 4,-4C21,14.79 19.21,13 17,13zM17,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C19,18.1 18.1,19 17,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports.xml
deleted file mode 100644
index 748e3f5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.23,6C9.57,6 8.01,6.66 6.87,7.73C6.54,6.73 5.61,6 4.5,6C3.12,6 2,7.12 2,8.5C2,9.88 3.12,11 4.5,11c0.21,0 0.41,-0.03 0.61,-0.08c-0.05,0.25 -0.09,0.51 -0.1,0.78c-0.18,3.68 2.95,6.68 6.68,6.27c2.55,-0.28 4.68,-2.26 5.19,-4.77c0.15,-0.71 0.15,-1.4 0.06,-2.06c-0.09,-0.6 0.38,-1.13 0.99,-1.13H22V6H11.23zM4.5,9C4.22,9 4,8.78 4,8.5C4,8.22 4.22,8 4.5,8S5,8.22 5,8.5C5,8.78 4.78,9 4.5,9zM11,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S12.66,15 11,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_bar.xml
deleted file mode 100644
index ac087d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19H8l0,-6.63c1.26,-0.34 2.11,-1.27 2.77,-1.99C11.6,9.47 12.08,9 13,9l2,0V19zM7,10.5c-1.1,0 -2,-0.9 -2,-2c0,-0.85 0.55,-1.6 1.37,-1.88l0.8,-0.27l0.36,-0.76C8,4.62 8.94,4.02 10,4.02c0.79,0 1.39,0.35 1.74,0.65l0.78,0.65c0,0 0.64,-0.32 1.47,-0.32c1.1,0 2,0.9 2,2c0,0 -3,0 -3,0C9.67,7 9.15,10.5 7,10.5C7,10.5 7,10.5 7,10.5L7,10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,19H8l0,-6.63c1.26,-0.34 2.11,-1.27 2.77,-1.99C11.6,9.47 12.08,9 13,9l2,0V19zM10,2.02c-1.89,0 -3.51,1.11 -4.27,2.71C4.15,5.26 3,6.74 3,8.5c0,1.86 1.28,3.41 3,3.86L6,21h11v-2h2c1.1,0 2,-0.9 2,-2v-6c0,-1.1 -0.9,-2 -2,-2h-1.56C17.79,8.41 18,7.73 18,7c0,-2.21 -1.79,-4 -4,-4c-0.34,0 -0.66,0.05 -0.98,0.13C12.2,2.45 11.16,2.02 10,2.02L10,2.02zM7,10.5c-1.1,0 -2,-0.9 -2,-2c0,-0.85 0.55,-1.6 1.37,-1.88l0.8,-0.27l0.36,-0.76C8,4.62 8.94,4.02 10,4.02c0.79,0 1.39,0.35 1.74,0.65l0.78,0.65c0,0 0.64,-0.32 1.47,-0.32c1.1,0 2,0.9 2,2c0,0 -3,0 -3,0C9.67,7 9.15,10.5 7,10.5C7,10.5 7,10.5 7,10.5L7,10.5zM17,17v-6h2v6H17L17,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_baseball.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_baseball.xml
deleted file mode 100644
index ae16f42..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_baseball.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.61,7.22C4.6,8.55 4,10.2 4,12s0.6,3.45 1.61,4.78C7.06,15.69 8,13.95 8,12S7.06,8.31 5.61,7.22z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12c0,-2.52 1.17,-4.77 3,-6.24C15.63,4.66 13.89,4 12,4S8.37,4.66 7,5.76c1.83,1.47 3,3.71 3,6.24s-1.17,4.77 -3,6.24c1.37,1.1 3.11,1.76 5,1.76s3.63,-0.66 5,-1.76C15.17,16.77 14,14.52 14,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.39,7.22C16.94,8.31 16,10.05 16,12s0.94,3.69 2.39,4.78C19.4,15.45 20,13.8 20,12S19.4,8.55 18.39,7.22z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM5.61,16.78C4.6,15.45 4,13.8 4,12s0.6,-3.45 1.61,-4.78C7.06,8.31 8,10.05 8,12S7.06,15.69 5.61,16.78zM12,20c-1.89,0 -3.63,-0.66 -5,-1.76c1.83,-1.47 3,-3.71 3,-6.24S8.83,7.23 7,5.76C8.37,4.66 10.11,4 12,4s3.63,0.66 5,1.76c-1.83,1.47 -3,3.71 -3,6.24s1.17,4.77 3,6.24C15.63,19.34 13.89,20 12,20zM18.39,16.78C16.94,15.69 16,13.95 16,12s0.94,-3.69 2.39,-4.78C19.4,8.55 20,10.2 20,12S19.4,15.45 18.39,16.78z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_basketball.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_basketball.xml
deleted file mode 100644
index 208f876..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_basketball.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.93,11H11V4.07C9.27,4.29 7.71,5.06 6.5,6.2C7.81,7.44 8.69,9.12 8.93,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.93,11c-0.15,-1.18 -0.56,-2.28 -1.16,-3.25C17.9,8.62 17.3,9.74 17.09,11H19.93z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.23,7.75C4.63,8.72 4.22,9.82 4.07,11h2.84C6.7,9.74 6.1,8.62 5.23,7.75z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.07,13c0.15,1.18 0.56,2.28 1.16,3.25C6.1,15.38 6.7,14.26 6.91,13H4.07z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.51,17.79c1.2,1.14 2.76,1.92 4.49,2.14V13H8.93C8.7,14.88 7.81,16.55 6.51,17.79z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,6.2c-1.21,-1.14 -2.77,-1.92 -4.5,-2.13V11h2.07C15.31,9.12 16.19,7.44 17.5,6.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.77,16.25c0.61,-0.96 1.02,-2.07 1.16,-3.25h-2.84C17.3,14.26 17.9,15.38 18.77,16.25z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13v6.93c1.73,-0.22 3.29,-1 4.49,-2.14c-1.3,-1.24 -2.19,-2.91 -2.42,-4.79H13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM5.23,7.75C6.1,8.62 6.7,9.74 6.91,11H4.07C4.22,9.82 4.63,8.72 5.23,7.75zM4.07,13h2.84c-0.21,1.26 -0.81,2.38 -1.68,3.25C4.63,15.28 4.22,14.18 4.07,13zM11,19.93c-1.73,-0.22 -3.29,-1 -4.49,-2.14c1.3,-1.24 2.19,-2.91 2.42,-4.79H11V19.93zM11,11H8.93C8.69,9.12 7.81,7.44 6.5,6.2C7.71,5.06 9.27,4.29 11,4.07V11zM19.93,11h-2.84c0.21,-1.26 0.81,-2.38 1.68,-3.25C19.37,8.72 19.78,9.82 19.93,11zM13,4.07c1.73,0.22 3.29,0.99 4.5,2.13c-1.31,1.24 -2.19,2.92 -2.43,4.8H13V4.07zM13,19.93V13h2.07c0.24,1.88 1.12,3.55 2.42,4.79C16.29,18.93 14.73,19.71 13,19.93zM18.77,16.25c-0.87,-0.86 -1.46,-1.99 -1.68,-3.25h2.84C19.78,14.18 19.37,15.28 18.77,16.25z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_cricket.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_cricket.xml
deleted file mode 100644
index c4ec6a4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_cricket.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.414,7.839l1.421,-1.421l7.085,7.085l-1.421,1.421z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,5.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.04,12.79l-8.5,-8.5C6.35,4.1 6.09,4 5.83,4S5.32,4.1 5.13,4.29L2.29,7.13c-0.39,0.39 -0.39,1.03 0,1.42l8.5,8.5c0.2,0.2 0.45,0.29 0.71,0.29c0.26,0 0.51,-0.1 0.71,-0.29l2.83,-2.83C15.43,13.82 15.43,13.18 15.04,12.79zM11.5,14.92L4.41,7.83l1.42,-1.42l7.09,7.09L11.5,14.92z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.341,17.756l1.414,-1.414l4.243,4.243l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,2C16.57,2 15,3.57 15,5.5C15,7.43 16.57,9 18.5,9S22,7.43 22,5.5C22,3.57 20.43,2 18.5,2zM18.5,7C17.67,7 17,6.33 17,5.5S17.67,4 18.5,4S20,4.67 20,5.5S19.33,7 18.5,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_esports.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_esports.xml
deleted file mode 100644
index f64f71f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_esports.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.53,7H7.47C6.48,7 5.63,7.74 5.49,8.72L4.4,16.37c-0.03,0.21 0.05,0.35 0.13,0.44C4.6,16.9 4.73,17 4.94,17c0.15,0 0.29,-0.06 0.39,-0.16L8.17,14h7.66l2.84,2.84c0.1,0.1 0.24,0.16 0.39,0.16c0.21,0 0.34,-0.1 0.42,-0.19c0.08,-0.09 0.16,-0.23 0.13,-0.44l-1.09,-7.66C18.37,7.74 17.52,7 16.53,7zM11,11H9v2H8v-2H6v-1h2V8h1v2h2V11zM15,10c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C16,9.55 15.55,10 15,10zM17,13c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C18,12.55 17.55,13 17,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.58,16.09l-1.09,-7.66C20.21,6.46 18.52,5 16.53,5H7.47C5.48,5 3.79,6.46 3.51,8.43l-1.09,7.66C2.2,17.63 3.39,19 4.94,19h0c0.68,0 1.32,-0.27 1.8,-0.75L9,16h6l2.25,2.25c0.48,0.48 1.13,0.75 1.8,0.75h0C20.61,19 21.8,17.63 21.58,16.09zM19.48,16.81C19.4,16.9 19.27,17 19.06,17c-0.15,0 -0.29,-0.06 -0.39,-0.16L15.83,14H8.17l-2.84,2.84C5.23,16.94 5.09,17 4.94,17c-0.21,0 -0.34,-0.1 -0.42,-0.19c-0.08,-0.09 -0.16,-0.23 -0.13,-0.44l1.09,-7.66C5.63,7.74 6.48,7 7.47,7h9.06c0.99,0 1.84,0.74 1.98,1.72l1.09,7.66C19.63,16.58 19.55,16.72 19.48,16.81z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8l-1,0l0,2l-2,0l0,1l2,0l0,2l1,0l0,-2l2,0l0,-1l-2,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_football.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_football.xml
deleted file mode 100644
index a9bf131..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_football.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.26,5c-0.35,0 -0.8,0.01 -1.33,0.06l4.03,4.03c0.14,-1.63 0.01,-3.07 -0.17,-3.86C18.28,5.12 17.4,5 16.26,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.21,18.77C5.72,18.88 6.6,19 7.74,19c0.34,0 0.79,-0.01 1.3,-0.05l-4.01,-4.01C4.91,16.56 5.03,17.98 5.21,18.77z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.87,7.87c-1.28,1.28 -2.03,2.97 -2.45,4.65l6.04,6.04c1.6,-0.39 3.33,-1.11 4.66,-2.44c1.28,-1.28 2.03,-2.95 2.44,-4.63l-6.05,-6.05C10.92,5.83 9.2,6.55 7.87,7.87zM15.5,9.9l-5.6,5.6l-1.4,-1.4l5.6,-5.6L15.5,9.9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.31,3.69C19.99,3.36 18.37,3 16.26,3c-3.03,0 -7.09,0.75 -9.8,3.46C1.87,11.05 2.9,19.52 3.69,20.31C4.01,20.64 5.63,21 7.74,21c3.03,0 7.09,-0.75 9.8,-3.46C22.13,12.95 21.1,4.48 20.31,3.69zM7.74,19c-1.14,0 -2.02,-0.12 -2.53,-0.23c-0.18,-0.79 -0.3,-2.21 -0.17,-3.83l4.01,4.01C8.53,18.99 8.08,19 7.74,19zM16.13,16.13c-1.33,1.33 -3.06,2.05 -4.66,2.44l-6.04,-6.04c0.42,-1.68 1.16,-3.37 2.45,-4.65c1.32,-1.32 3.05,-2.04 4.64,-2.43l6.05,6.05C18.15,13.17 17.4,14.85 16.13,16.13zM18.96,9.09l-4.03,-4.03C15.45,5.01 15.91,5 16.26,5c1.14,0 2.02,0.12 2.53,0.23C18.97,6.02 19.09,7.45 18.96,9.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.1l5.6,-5.6l1.4,1.4l-5.6,5.6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_golf.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_golf.xml
deleted file mode 100644
index 0a63d78..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_golf.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5S7,6.24 7,9S9.24,14 12,14zM14,7c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C13,7.45 13.45,7 14,7zM12,5c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1C11,5.45 11.45,5 12,5zM10,7c0.55,0 1,0.45 1,1c0,0.55 -0.45,1 -1,1S9,8.55 9,8C9,7.45 9.45,7 10,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16c3.87,0 7,-3.13 7,-7c0,-3.87 -3.13,-7 -7,-7C8.13,2 5,5.13 5,9C5,12.87 8.13,16 12,16zM12,4c2.76,0 5,2.24 5,5s-2.24,5 -5,5s-5,-2.24 -5,-5S9.24,4 12,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h2c1.1,0 2,0.9 2,2v1h2v-1c0,-1.1 0.9,-2 2,-2h2v-2H7V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_gymnastics.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_gymnastics.xml
deleted file mode 100644
index 8631ae8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_gymnastics.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6c0,-1.1 0.9,-2 2,-2s2,0.9 2,2S7.1,8 6,8S4,7.1 4,6zM1,9h6l7,-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2l-0.5,-10L8,11H1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_handball.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_handball.xml
deleted file mode 100644
index 4ff5718..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_handball.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.27,6C13.72,6.95 14.05,8.18 15,8.73c0.95,0.55 2.18,0.22 2.73,-0.73c0.55,-0.95 0.22,-2.18 -0.73,-2.73C16.05,4.72 14.82,5.05 14.27,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.84,10.41c0,0 -1.63,-0.94 -2.6,-1.5c-2.38,-1.38 -3.2,-4.44 -1.82,-6.82l-1.73,-1C8.1,3.83 8.6,7.21 10.66,9.4l-5.15,8.92l1.73,1l1.5,-2.6l1.73,1l-3,5.2l1.73,1l6.29,-10.89c1.14,1.55 1.33,3.69 0.31,5.46l1.73,1C19.13,16.74 18.81,12.91 15.84,10.41z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,3.8c0.72,0.41 1.63,0.17 2.05,-0.55c0.41,-0.72 0.17,-1.63 -0.55,-2.05c-0.72,-0.41 -1.63,-0.17 -2.05,0.55C11.79,2.47 12.03,3.39 12.75,3.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_hockey.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_hockey.xml
deleted file mode 100644
index 520fe43..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_hockey.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,17v3l2,0v-4H3C2.45,16 2,16.45 2,17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,16H5v4l4.69,-0.01c0.38,0 0.72,-0.21 0.89,-0.55l0.87,-1.9l-1.59,-3.48L9,16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.71,16.29C21.53,16.11 21.28,16 21,16h-1v4l2,0v-3C22,16.72 21.89,16.47 21.71,16.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1c0.17,0.34 0.51,0.55 0.89,0.55L19,20v-4h-4L13.6,12.84z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_kabaddi.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_kabaddi.xml
deleted file mode 100644
index dc08aa5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_kabaddi.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,2.38m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,11.88v-4.7l-5.05,-2.14c-0.97,-0.41 -2.09,-0.06 -2.65,0.84l0,0l-1,1.6c-0.67,1.18 -1.91,2.06 -3.41,2.32l0.06,0.06c0.69,0.69 1.52,1.07 2.46,1.17c0.8,-0.42 1.52,-0.98 2.09,-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1,-2l1.8,8H23l-2.18,-11l-0.62,-3.1l1.8,0.7v3.4H24z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.29,8.09c0.22,0.15 0.47,0.24 0.72,0.29c0.13,0.02 0.25,0.04 0.38,0.04s0.26,-0.01 0.38,-0.04c0.13,-0.02 0.25,-0.06 0.37,-0.11c0.24,-0.1 0.47,-0.24 0.66,-0.44c0.49,-0.49 0.67,-1.17 0.55,-1.8C13.28,5.66 13.1,5.29 12.8,5c-0.19,-0.19 -0.42,-0.34 -0.66,-0.44c-0.12,-0.05 -0.24,-0.09 -0.37,-0.11s-0.25,-0.04 -0.38,-0.04c-0.12,0 -0.23,0.01 -0.35,0.03c-0.14,0.02 -0.28,0.06 -0.41,0.11C10.4,4.66 10.17,4.81 9.98,5C9.68,5.29 9.5,5.66 9.43,6.03c-0.12,0.63 0.06,1.31 0.55,1.8C10.07,7.93 10.18,8.01 10.29,8.09z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.24,10.56l-2,-2c-0.1,-0.1 -0.2,-0.18 -0.31,-0.26C8.71,8.16 8.46,8.06 8.21,8.02C8.08,7.99 7.96,7.98 7.83,7.98c-0.51,0 -1.02,0.2 -1.41,0.59l-3.34,3.34c-0.41,0.41 -0.62,0.98 -0.58,1.54C2.5,13.63 2.54,13.82 2.61,14l1.07,2.95l-3.63,3.63L1.46,22l4.24,-4.24v-2.22L7,16.75v5.13h2v-6l-2.12,-2.12l2.36,-2.36l0.71,0.71l0,0c1.29,1.26 2.97,2.04 5.03,2.04l-0.14,-2.07C13.34,12.06 12.14,11.46 11.24,10.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_martial_arts.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_martial_arts.xml
deleted file mode 100644
index 97fdc73..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_martial_arts.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.8,2l-8.2,6.7l-1.21,-1.04l3.6,-2.08l-4.58,-4.58l-1.41,1.41l2.74,2.74l-5.74,3.31l-1.19,4.29l2.46,4.25l1.73,-1l-2.03,-3.52l0.35,-1.3l3.18,1.82l0.5,9l2,0l0.5,-10l8.5,-8.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_mma.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_mma.xml
deleted file mode 100644
index 2135bbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_mma.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,5H7v5.6C7,10.74 7.64,14 7.64,14h8.72c0,0 0.64,-3.26 0.64,-3.4V10h-2V5zM14,10H8V7h6V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-3H7V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,7c-0.55,0 -1,0.45 -1,1V5c0,-1.1 -0.9,-2 -2,-2H7C5.9,3 5,3.9 5,5v5.8c0,0.13 0.01,0.26 0.04,0.39l0.8,4c0.09,0.47 0.5,0.8 0.98,0.8H17c0.55,0 1.09,-0.44 1.2,-0.98l0.77,-3.83C18.99,11.06 19,10.93 19,10.8V9V8C19,7.45 18.55,7 18,7zM17,10.6c0,0.13 -0.64,3.4 -0.64,3.4H7.64c0,0 -0.64,-3.26 -0.64,-3.4V5h8v5h2V10.6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,7h6v3h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_motorsports.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_motorsports.xml
deleted file mode 100644
index c6e9853..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_motorsports.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.56,6c-0.15,0 -0.29,0 -0.44,0.01c-1.45,0.1 -2.72,0.43 -3.82,0.99l2.5,1.06c1.33,0.57 2.2,1.87 2.2,3.32c0,1.99 -1.62,3.61 -3.61,3.61H4.24C4.01,16.28 4,17.19 4,17.2V18h10c1.68,0 3.3,-0.71 4.44,-1.96c1.15,-1.27 1.7,-2.91 1.54,-4.63C19.69,8.37 16.87,6 13.56,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,11.22C21.57,7.01 17.76,4 13.56,4c-0.19,0 -0.38,0.01 -0.57,0.02C2,4.74 2,17.2 2,17.2V18c0,1.1 0.9,2 2,2h10C18.67,20 22.41,15.99 21.96,11.22zM5.26,11.56c0.57,-1.29 1.28,-2.35 2.14,-3.19l3.62,1.53c0.6,0.25 0.98,0.83 0.98,1.48c0,0.89 -0.72,1.61 -1.61,1.61H4.72C4.87,12.53 5.04,12.05 5.26,11.56zM18.44,16.04C17.3,17.29 15.68,18 14,18H4v-0.8c0,-0.02 0.01,-0.92 0.24,-2.2h6.15c1.99,0 3.61,-1.62 3.61,-3.61c0,-1.45 -0.87,-2.76 -2.2,-3.32L9.3,7.01c1.1,-0.57 2.37,-0.9 3.82,-0.99C13.27,6 13.42,6 13.56,6c3.31,0 6.13,2.37 6.41,5.41C20.13,13.13 19.59,14.77 18.44,16.04z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_rugby.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_rugby.xml
deleted file mode 100644
index 171627d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_rugby.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.29,5.71c-1.93,0.64 -5.02,2.19 -7.7,4.88c-2.71,2.71 -4.24,5.81 -4.87,7.7c1.93,-0.64 5.03,-2.2 7.7,-4.87C16.13,10.7 17.66,7.6 18.29,5.71z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,9.17c2.15,-2.15 4.56,-3.67 6.61,-4.61C14.1,4.64 10.4,5.12 7.76,7.76c-2.32,2.32 -3.1,5.58 -3.2,8.04C5.5,13.75 7.01,11.33 9.17,9.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.83,14.83c-2.15,2.15 -4.56,3.67 -6.61,4.61c1.68,-0.08 5.39,-0.55 8.03,-3.19c2.32,-2.32 3.1,-5.58 3.2,-8.04C18.5,10.25 16.99,12.67 14.83,14.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.49,3.51c-0.56,-0.56 -2.15,-0.97 -4.16,-0.97c-3.08,0 -7.15,0.96 -9.98,3.79C1.66,11.03 2.1,19.07 3.51,20.49c0.56,0.56 2.15,0.97 4.16,0.97c3.08,0 7.15,-0.96 9.98,-3.79C22.34,12.97 21.9,4.93 20.49,3.51zM5.71,18.29c0.63,-1.89 2.16,-4.99 4.87,-7.7c2.68,-2.68 5.78,-4.23 7.7,-4.88c-0.63,1.89 -2.16,4.99 -4.88,7.7C10.74,16.09 7.64,17.64 5.71,18.29zM7.76,7.76c2.64,-2.64 6.34,-3.12 8.03,-3.19c-2.05,0.94 -4.46,2.46 -6.61,4.61c-2.16,2.16 -3.67,4.58 -4.61,6.63C4.66,13.33 5.44,10.07 7.76,7.76zM16.24,16.24c-2.64,2.64 -6.34,3.12 -8.03,3.19c2.05,-0.94 4.46,-2.46 6.61,-4.61c2.16,-2.16 3.67,-4.58 4.62,-6.63C19.34,10.67 18.56,13.93 16.24,16.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_score.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_score.xml
deleted file mode 100644
index 788aa62..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_score.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6H9V4h2V6zM15,4h-2v2h2V4zM9,14h2v-2H9V14zM19,10V8h-2v2H19zM19,14v-2h-2v2H19zM13,14h2v-2h-2V14zM19,4h-2v2h2V4zM13,8V6h-2v2H13zM7,10V8h2V6H7V4H5v16h2v-8h2v-2H7zM15,12h2v-2h-2V12zM11,10v2h2v-2H11zM9,8v2h2V8H9zM13,10h2V8h-2V10zM15,6v2h2V6H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_soccer.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_soccer.xml
deleted file mode 100644
index 74cd222..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_soccer.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.01,9.49L11,6.7V5.3L9.65,4.35C7.83,4.92 6.28,6.12 5.27,7.69l0.39,1.34L7.01,9.49z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.01,10.92l-1,0.73C4.01,11.77 4,11.88 4,12c0,1.99 0.73,3.81 1.94,5.21l1.14,-0.1l0.79,-1.37L6.4,11.4L5.01,10.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.34,9.03l0.39,-1.34c-1.01,-1.57 -2.55,-2.77 -4.38,-3.34L13,5.3v1.4l3.99,2.79L18.34,9.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.37,10.98l1.36,4.02l4.54,0l1.36,-4.02l-3.63,-2.54z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.45,17l-0.64,1.11l0.69,1.49C10.29,19.85 11.13,20 12,20s1.71,-0.15 2.5,-0.41l0.69,-1.49L14.55,17H9.45z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.98,11.65l-1,-0.73L17.6,11.4l-1.46,4.34l0.79,1.37l1.14,0.1C19.27,15.81 20,13.99 20,12C20,11.88 19.99,11.77 19.98,11.65z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,5.3l1.35,-0.95c1.82,0.56 3.37,1.76 4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3zM9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69C6.28,6.12 7.83,4.92 9.65,4.35zM7.08,17.11l-1.14,0.1C4.73,15.81 4,13.99 4,12c0,-0.12 0.01,-0.23 0.02,-0.35l1,-0.73L6.4,11.4l1.46,4.34L7.08,17.11zM14.5,19.59C13.71,19.85 12.87,20 12,20s-1.71,-0.15 -2.5,-0.41l-0.69,-1.49L9.45,17h5.11l0.64,1.11L14.5,19.59zM14.27,15H9.73l-1.35,-4.02L12,8.44l3.63,2.54L14.27,15zM18.06,17.21l-1.14,-0.1l-0.79,-1.37l1.46,-4.34l1.39,-0.47l1,0.73C19.99,11.77 20,11.88 20,12C20,13.99 19.27,15.81 18.06,17.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_tennis.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_tennis.xml
deleted file mode 100644
index f81e308..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_tennis.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.52,2.49c-2.34,-2.34 -6.62,-1.87 -9.55,1.06c-1.6,1.6 -2.52,3.87 -2.54,5.46c-0.02,1.58 0.26,3.89 -1.35,5.5l-4.24,4.24l1.42,1.42l4.24,-4.24c1.61,-1.61 3.92,-1.33 5.5,-1.35s3.86,-0.94 5.46,-2.54C21.38,9.11 21.86,4.83 19.52,2.49zM10.32,11.68c-1.53,-1.53 -1.05,-4.61 1.06,-6.72s5.18,-2.59 6.72,-1.06c1.53,1.53 1.05,4.61 -1.06,6.72S11.86,13.21 10.32,11.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17c0.53,0 1.04,0.21 1.41,0.59c0.78,0.78 0.78,2.05 0,2.83C19.04,20.79 18.53,21 18,21s-1.04,-0.21 -1.41,-0.59c-0.78,-0.78 -0.78,-2.05 0,-2.83C16.96,17.21 17.47,17 18,17M18,15c-1.02,0 -2.05,0.39 -2.83,1.17c-1.56,1.56 -1.56,4.09 0,5.66C15.95,22.61 16.98,23 18,23s2.05,-0.39 2.83,-1.17c1.56,-1.56 1.56,-4.09 0,-5.66C20.05,15.39 19.02,15 18,15L18,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sports_volleyball.xml b/compose/material/material/icons/generator/raw-icons/twotone/sports_volleyball.xml
deleted file mode 100644
index 60ae92c8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sports_volleyball.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.73C4.76,8.14 4,9.98 4,12c0,1.1 0.23,2.14 0.63,3.1L6,14.31V6.73z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4.08c-0.25,0.06 -1.98,0.42 -3,1.01v8.07l3,-1.73V4.08z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4.07v1.58l6.54,3.79C18.57,6.59 16.07,4.45 13,4.07z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.15l-6.36,3.67c0.64,0.85 1.46,1.55 2.38,2.09L15,14.89L12,13.15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.96v3.46l6.37,3.68c0.4,-0.95 0.63,-1.99 0.63,-3.09L13,7.96z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.42,19.84C10.93,19.94 11.46,20 12,20c2.6,0 4.9,-1.25 6.36,-3.17L17,16.04L10.42,19.84z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,4.07c3.07,0.38 5.57,2.52 6.54,5.36L13,5.65V4.07zM8,5.08c1.02,-0.59 2.75,-0.95 3,-1.01v7.35l-3,1.73V5.08zM4.63,15.1C4.23,14.14 4,13.1 4,12c0,-2.02 0.76,-3.86 2,-5.27v7.58L4.63,15.1zM5.64,16.83L12,13.15l3,1.73l-6.98,4.03C7.09,18.38 6.28,17.68 5.64,16.83zM12,20c-0.54,0 -1.07,-0.06 -1.58,-0.16l6.58,-3.8l1.36,0.78C16.9,18.75 14.6,20 12,20zM13,11.42V7.96l7,4.05c0,1.1 -0.23,2.14 -0.63,3.09L13,11.42z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/square.xml b/compose/material/material/icons/generator/raw-icons/twotone/square.xml
deleted file mode 100644
index 1f358e0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/square.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v14h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,3v18h18V3H3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/square_foot.xml b/compose/material/material/icons/generator/raw-icons/twotone/square_foot.xml
deleted file mode 100644
index b9de7ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/square_foot.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17l5.76,0l-5.76,-5.76z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.66,17.66l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06l-1.94,-1.94l-1.06,1.06l-0.71,-0.71l1.06,-1.06L9.7,9.7l-1.06,1.06l-0.71,-0.71l1.06,-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06,-1.06L4,4v14c0,1.1 0.9,2 2,2h14L17.66,17.66zM7,17v-5.76L12.76,17H7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/ssid_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/ssid_chart.xml
deleted file mode 100644
index 2f7895c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/ssid_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47zM21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8,-2l6.2,6l5,-4h4V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stacked_bar_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/stacked_bar_chart.xml
deleted file mode 100644
index 2a7fd72..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stacked_bar_chart.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h4v11h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,15h4v5h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,12h4v8h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stacked_line_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/stacked_line_chart.xml
deleted file mode 100644
index e776269..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stacked_line_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,19.99l7.5,-7.51l4,4l7.09,-7.97L22,9.92l-8.5,9.56l-4,-4l-6,6.01L2,19.99zM3.5,15.49l6,-6.01l4,4L22,3.92l-1.41,-1.41l-7.09,7.97l-4,-4L2,13.99L3.5,15.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stadium.xml b/compose/material/material/icons/generator/raw-icons/twotone/stadium.xml
deleted file mode 100644
index d5f06d5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stadium.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,10.04C6.38,10.53 8.77,11 12,11s5.62,-0.47 7,-0.96C19,9.86 16.22,9 12,9S5,9.86 5,10.04zM20,11.8c-1.82,0.73 -4.73,1.2 -8,1.2s-6.18,-0.47 -8,-1.2v6.78c0.61,0.41 2.36,1.01 5,1.28V16h6v3.86c2.64,-0.27 4.39,-0.87 5,-1.28V11.8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5L3,7V3L7,5zM18,3v4l4,-2L18,3zM11,2v4l4,-2L11,2zM13,18h-2l0,4c-5.05,-0.15 -9,-1.44 -9,-3v-9c0,-1.66 4.48,-3 10,-3s10,1.34 10,3v9c0,1.56 -3.95,2.85 -9,3L13,18zM5,10.04C6.38,10.53 8.77,11 12,11s5.62,-0.47 7,-0.96C19,9.86 16.22,9 12,9S5,9.86 5,10.04zM20,11.8c-1.82,0.73 -4.73,1.2 -8,1.2s-6.18,-0.47 -8,-1.2v6.78c0.61,0.41 2.36,1.01 5,1.28V16h6v3.86c2.64,-0.27 4.39,-0.87 5,-1.28V11.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stairs.xml b/compose/material/material/icons/generator/raw-icons/twotone/stairs.xml
deleted file mode 100644
index adb3343..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stairs.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5H19M18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v14H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3L19,3zM18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/star.xml b/compose/material/material/icons/generator/raw-icons/twotone/star.xml
deleted file mode 100644
index 2001d9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/star.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15.4l-3.76,2.27l1,-4.28l-3.32,-2.88l4.38,-0.38l1.7,-4.03l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27l1,-4.28l-3.32,-2.88l4.38,-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/star_border.xml b/compose/material/material/icons/generator/raw-icons/twotone/star_border.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/star_border.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/star_border_purple500.xml b/compose/material/material/icons/generator/raw-icons/twotone/star_border_purple500.xml
deleted file mode 100644
index f044555..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/star_border_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89M12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35,-7.59L22,10h-7.58L12,2L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/star_half.xml b/compose/material/material/icons/generator/raw-icons/twotone/star_half.xml
deleted file mode 100644
index 7ed1fda..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/star_half.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4V6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/star_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/star_outline.xml
deleted file mode 100644
index b6d93ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/star_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/star_purple500.xml b/compose/material/material/icons/generator/raw-icons/twotone/star_purple500.xml
deleted file mode 100644
index f044555..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/star_purple500.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89M12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35,-7.59L22,10h-7.58L12,2L12,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/star_rate.xml b/compose/material/material/icons/generator/raw-icons/twotone/star_rate.xml
deleted file mode 100644
index b280433..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/star_rate.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.94,12l-0.94,-3.11l-0.94,3.11l-2.82,0l2.27,1.62l-0.93,3.01l2.42,-1.84l2.42,1.84l-0.93,-3.01l2.27,-1.62z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10h-7.58L12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.17,22l-2.35,-7.59L22,10zM14.42,16.63L12,14.79l-2.42,1.84l0.93,-3.01L8.24,12h2.82L12,8.89L12.94,12h2.82l-2.27,1.62L14.42,16.63z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stars.xml b/compose/material/material/icons/generator/raw-icons/twotone/stars.xml
deleted file mode 100644
index e4075a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stars.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.47,9.16c-1.1,-2.87 -3.8,-4.95 -7.01,-5.14l2,4.71 5.01,0.43zM11.54,4.02c-3.22,0.18 -5.92,2.27 -7.02,5.15l5.02,-0.43 2,-4.72zM4.23,10.14C4.08,10.74 4,11.36 4,12c0,2.48 1.14,4.7 2.91,6.17l1.11,-4.75 -3.79,-3.28zM19.77,10.13l-3.79,3.28 1.1,4.76C18.86,16.7 20,14.48 20,12c0,-0.64 -0.09,-1.27 -0.23,-1.87zM7.84,18.82c1.21,0.74 2.63,1.18 4.15,1.18 1.53,0 2.95,-0.44 4.17,-1.18L12,16.31l-4.16,2.51z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM19.47,9.16l-5.01,-0.43 -2,-4.71c3.21,0.19 5.91,2.27 7.01,5.14zM12,8.06l1.09,2.56 2.78,0.24 -2.11,1.83 0.63,2.73L12,13.98l-2.39,1.44 0.63,-2.72 -2.11,-1.83 2.78,-0.24L12,8.06zM11.54,4.02l-2,4.72 -5.02,0.43c1.1,-2.88 3.8,-4.97 7.02,-5.15zM4,12c0,-0.64 0.08,-1.26 0.23,-1.86l3.79,3.28 -1.11,4.75C5.14,16.7 4,14.48 4,12zM11.99,20c-1.52,0 -2.94,-0.44 -4.15,-1.18L12,16.31l4.16,2.51c-1.22,0.74 -2.64,1.18 -4.17,1.18zM17.09,18.17l-1.1,-4.76 3.79,-3.28c0.13,0.6 0.22,1.23 0.22,1.87 0,2.48 -1.14,4.7 -2.91,6.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/start.xml b/compose/material/material/icons/generator/raw-icons/twotone/start.xml
deleted file mode 100644
index dcd56ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/start.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6,-6l-6,-6L14.59,7.41zM2,6v12h2V6H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stay_current_landscape.xml b/compose/material/material/icons/generator/raw-icons/twotone/stay_current_landscape.xml
deleted file mode 100644
index 76c3157..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stay_current_landscape.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h14v10H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5L3,5c-1.1,0 -1.99,0.9 -1.99,2L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stay_current_portrait.xml b/compose/material/material/icons/generator/raw-icons/twotone/stay_current_portrait.xml
deleted file mode 100644
index ea49e3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stay_current_portrait.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v14H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stay_primary_landscape.xml b/compose/material/material/icons/generator/raw-icons/twotone/stay_primary_landscape.xml
deleted file mode 100644
index 76c3157..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stay_primary_landscape.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h14v10H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,5L3,5c-1.1,0 -1.99,0.9 -1.99,2L1,17c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,7c0,-1.1 -0.9,-2 -2,-2zM19,17L5,17L5,7h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stay_primary_portrait.xml b/compose/material/material/icons/generator/raw-icons/twotone/stay_primary_portrait.xml
deleted file mode 100644
index ea49e3d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stay_primary_portrait.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5h10v14H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1c-1.1,0 -1.99,0.9 -1.99,2v18c0,1.1 0.89,2 1.99,2h10c1.1,0 2,-0.9 2,-2V3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19H7V5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sticky_note_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/sticky_note_2.xml
deleted file mode 100644
index 31c4f25..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sticky_note_2.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5v14h9v-5h5V5H5zM12,14H7v-2h5V14zM17,10H7V8h10V10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v9l-5,0l0,5H5V5H19M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h10l6,-6V5C21,3.9 20.1,3 19,3zM12,14H7v-2h5V14zM17,10H7V8h10V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stop.xml b/compose/material/material/icons/generator/raw-icons/twotone/stop.xml
deleted file mode 100644
index fa74703..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stop.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8h8v8H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,18h12V6H6v12zM8,8h8v8H8V8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stop_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/stop_circle.xml
deleted file mode 100644
index ed6354d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stop_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8s8,-3.58 8,-8S16.42,4 12,4zM16,16H8V8h8V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8s8,3.58 8,8S16.42,20 12,20zM16,16H8V8h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stop_screen_share.xml b/compose/material/material/icons/generator/raw-icons/twotone/stop_screen_share.xml
deleted file mode 100644
index e735bbb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stop_screen_share.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,12.54C9.13,12.92 7.96,13.71 7,15c0.31,-1.48 0.94,-2.93 2.08,-4.05L4.13,6.02H4v10.01h10.14l-3.47,-3.49z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.79,18l2,2L24,20v-2h-2.21zM1.11,2.98l1.55,1.56c-0.41,0.37 -0.66,0.89 -0.66,1.48L2,16c0,1.1 0.9,2 2.01,2L0,18v2h18.13l2.71,2.71 1.41,-1.41L2.52,1.57 1.11,2.98zM4,6.02h0.13l4.95,4.93C7.94,12.07 7.31,13.52 7,15c0.96,-1.29 2.13,-2.08 3.67,-2.46l3.46,3.48L4,16.02v-10zM20,6.02v10.19l1.3,1.3c0.42,-0.37 0.7,-0.89 0.7,-1.49v-10c0,-1.11 -0.9,-2 -2,-2L7.8,4.02l2,2L20,6.02zM12.93,9.15l2.79,2.78 1.28,-1.2L13,7v2.13l-0.07,0.02z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6.02H9.8l3.13,3.13c0.02,0 0.04,-0.01 0.07,-0.02V7l4,3.73 -1.28,1.2L20,16.21V6.02z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/storage.xml b/compose/material/material/icons/generator/raw-icons/twotone/storage.xml
deleted file mode 100644
index 5ca45e3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/storage.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,20h20v-4L2,16v4zM4,17h2v2L4,19v-2zM2,4v4h20L22,4L2,4zM6,7L4,7L4,5h2v2zM2,14h20v-4L2,10v4zM4,11h2v2L4,13v-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/store.xml b/compose/material/material/icons/generator/raw-icons/twotone/store.xml
deleted file mode 100644
index cb4c92c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/store.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.64,9l-0.6,3h13.92l-0.6,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h16v2L4,6zM20,7L4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1v-2l-1,-5zM12,18L6,18v-4h6v4zM5.04,12l0.6,-3h12.72l0.6,3L5.04,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/store_mall_directory.xml b/compose/material/material/icons/generator/raw-icons/twotone/store_mall_directory.xml
deleted file mode 100644
index 26c410e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/store_mall_directory.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.64,9l-0.6,3h13.92l-0.6,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,7l-1,5v2h1v6h10v-6h4v6h2v-6h1v-2l-1,-5L4,7zM12,18L6,18v-4h6v4zM5.04,12l0.6,-3h12.72l0.6,3L5.04,12zM4,4h16v2L4,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/storefront.xml b/compose/material/material/icons/generator/raw-icons/twotone/storefront.xml
deleted file mode 100644
index 62e5549..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/storefront.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.44,9.86L7.02,5H5.05L4.04,9.36c-0.1,0.42 -0.01,0.84 0.25,1.17C4.43,10.71 4.73,11 5.23,11C5.84,11 6.36,10.51 6.44,9.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.71,11C10.45,11 11,10.41 11,9.69V5H9.04L8.49,9.52c-0.05,0.39 0.07,0.78 0.33,1.07C9.05,10.85 9.37,11 9.71,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.22,11c0.41,0 0.72,-0.15 0.96,-0.41c0.25,-0.29 0.37,-0.68 0.33,-1.07L14.96,5H13v4.69C13,10.41 13.55,11 14.22,11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.91,4.99L16.98,5l0.58,4.86c0.08,0.65 0.6,1.14 1.21,1.14c0.49,0 0.8,-0.29 0.93,-0.47c0.26,-0.33 0.35,-0.76 0.25,-1.17L18.91,4.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.9,8.89l-1.05,-4.37c-0.22,-0.9 -1,-1.52 -1.91,-1.52H5.05C4.15,3 3.36,3.63 3.15,4.52L2.1,8.89c-0.24,1.02 -0.02,2.06 0.62,2.88C2.8,11.88 2.91,11.96 3,12.06V19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-6.94c0.09,-0.09 0.2,-0.18 0.28,-0.28C21.92,10.96 22.15,9.91 21.9,8.89zM13,5h1.96l0.54,4.52c0.05,0.39 -0.07,0.78 -0.33,1.07C14.95,10.85 14.63,11 14.22,11C13.55,11 13,10.41 13,9.69V5zM8.49,9.52L9.04,5H11v4.69C11,10.41 10.45,11 9.71,11c-0.34,0 -0.65,-0.15 -0.89,-0.41C8.57,10.3 8.45,9.91 8.49,9.52zM4.29,10.53c-0.26,-0.33 -0.35,-0.76 -0.25,-1.17L5.05,5h1.97L6.44,9.86C6.36,10.51 5.84,11 5.23,11C4.73,11 4.43,10.71 4.29,10.53zM19,19H5v-6.03C5.08,12.98 5.15,13 5.23,13c0.87,0 1.66,-0.36 2.24,-0.95c0.6,0.6 1.4,0.95 2.31,0.95c0.87,0 1.65,-0.36 2.23,-0.93c0.59,0.57 1.39,0.93 2.29,0.93c0.84,0 1.64,-0.35 2.24,-0.95c0.58,0.59 1.37,0.95 2.24,0.95c0.08,0 0.15,-0.02 0.23,-0.03V19zM19.71,10.53C19.57,10.71 19.27,11 18.77,11c-0.61,0 -1.14,-0.49 -1.21,-1.14L16.98,5l1.93,-0.01l1.05,4.37C20.06,9.78 19.97,10.21 19.71,10.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/storm.xml b/compose/material/material/icons/generator/raw-icons/twotone/storm.xml
deleted file mode 100644
index 7f53f14..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/storm.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.2,9C15.54,6.13 11.86,5.15 9,6.8c-2.67,1.54 -3.7,4.84 -2.5,7.6c0.09,0.2 0.19,0.4 0.3,0.6c1.66,2.87 5.33,3.85 8.2,2.2c2.67,-1.54 3.7,-4.84 2.5,-7.6C17.41,9.4 17.31,9.2 17.2,9zM12,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4s4,1.79 4,4S14.21,16 12,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S14.21,8 12,8zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S13.1,14 12,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.93,8C16.72,4.18 11.82,2.87 8,5.07c-1.41,0.82 -2.48,2 -3.16,3.37C4.71,6.24 5.06,4.04 5.86,2H3.74C2.2,6.49 2.52,11.58 5.07,16c1.1,1.91 2.88,3.19 4.86,3.72c1.98,0.53 4.16,0.31 6.07,-0.79c1.41,-0.82 2.48,-2 3.16,-3.37c0.13,2.2 -0.21,4.4 -1.01,6.44h2.11C21.79,17.51 21.48,12.42 18.93,8zM15,17.2c-2.87,1.65 -6.54,0.67 -8.2,-2.2c-0.11,-0.2 -0.21,-0.4 -0.3,-0.6C5.3,11.64 6.33,8.34 9,6.8c2.86,-1.65 6.54,-0.67 8.2,2.2c0.11,0.2 0.21,0.4 0.3,0.6C18.7,12.36 17.67,15.66 15,17.2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/straight.xml b/compose/material/material/icons/generator/raw-icons/twotone/straight.xml
deleted file mode 100644
index 8ae6ff1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/straight.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,6.83l-1.59,1.58l-1.41,-1.41l4,-4l4,4l-1.41,1.41l-1.59,-1.58l0,14.17l-2,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/straighten.xml b/compose/material/material/icons/generator/raw-icons/twotone/straighten.xml
deleted file mode 100644
index 9606a842..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/straighten.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,12h-2V8h-2v4h-2V8h-2v4H9V8H7v4H5V8H3v8h18V8h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,8h2v4h2L7,8h2v4h2L11,8h2v4h2L15,8h2v4h2L19,8h2v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stream.xml b/compose/material/material/icons/generator/raw-icons/twotone/stream.xml
deleted file mode 100644
index f748f56..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stream.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.943,8.619l4.404,-4.392l1.412,1.416l-4.404,4.392z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.32,9.68l0.31,0.32l1.42,-1.41l-4.02,-4.04l-0.01,0l-0.31,-0.32l-1.42,1.41l4.02,4.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.41,13.94l-1.41,1.41l3.99,4.01l0.35,0.35l1.42,-1.41l-3.99,-4.01z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.59,13.95l-4.03,4.01l-0.32,0.33l1.41,1.41l4.03,-4.02l0.33,-0.32z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/streetview.xml b/compose/material/material/icons/generator/raw-icons/twotone/streetview.xml
deleted file mode 100644
index 4085e83..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/streetview.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.56,14.33c-0.34,0.27 -0.56,0.7 -0.56,1.17V21h7c1.1,0 2,-0.9 2,-2v-5.98c-0.94,-0.33 -1.95,-0.52 -3,-0.52 -2.03,0 -3.93,0.7 -5.44,1.83z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6m-5,0a5,5 0,1 1,10 0a5,5 0,1 1,-10 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,6c0,-1.08 0.27,-2.1 0.74,-3H5c-1.1,0 -2,0.9 -2,2v14c0,0.55 0.23,1.05 0.59,1.41l9.82,-9.82C12.23,9.42 11.5,7.8 11.5,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/strikethrough_s.xml b/compose/material/material/icons/generator/raw-icons/twotone/strikethrough_s.xml
deleted file mode 100644
index 34ac6ec..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/strikethrough_s.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.44,5.88c0.19,-0.15 0.43,-0.27 0.72,-0.36 0.29,-0.09 0.64,-0.13 1.03,-0.13 0.4,0 0.76,0.06 1.06,0.16 0.3,0.11 0.55,0.25 0.75,0.44s0.35,0.41 0.44,0.68c0.1,0.26 0.15,0.54 0.15,0.85h3.01c0,-0.66 -0.13,-1.26 -0.38,-1.81s-0.61,-1.03 -1.08,-1.43c-0.46,-0.4 -1.03,-0.72 -1.69,-0.94 -0.67,-0.23 -1.4,-0.34 -2.21,-0.34 -0.79,0 -1.52,0.1 -2.18,0.29 -0.65,0.2 -1.22,0.48 -1.7,0.83 -0.48,0.36 -0.85,0.79 -1.11,1.29 -0.27,0.51 -0.4,1.06 -0.4,1.67 0,0.64 0.13,1.19 0.39,1.67 0.04,0.08 0.1,0.17 0.15,0.25H12c-0.64,-0.22 -1.03,-0.45 -1.41,-0.7 -0.49,-0.33 -0.74,-0.73 -0.74,-1.21 0,-0.23 0.05,-0.45 0.15,-0.66s0.25,-0.39 0.44,-0.55zM3,12h9.62c0.18,0.07 0.4,0.14 0.55,0.2 0.37,0.17 0.66,0.34 0.87,0.51 0.21,0.17 0.35,0.36 0.43,0.57 0.07,0.2 0.11,0.43 0.11,0.69 0,0.23 -0.05,0.45 -0.14,0.66 -0.09,0.2 -0.23,0.38 -0.42,0.53 -0.19,0.15 -0.42,0.26 -0.71,0.35 -0.29,0.08 -0.63,0.13 -1.01,0.13 -0.43,0 -0.83,-0.04 -1.18,-0.13s-0.66,-0.23 -0.91,-0.42 -0.45,-0.44 -0.59,-0.75 -0.25,-0.76 -0.25,-1.21H6.4c0,0.55 0.08,1.13 0.24,1.58 0.16,0.45 0.37,0.85 0.65,1.21 0.28,0.35 0.6,0.66 0.98,0.92 0.37,0.26 0.78,0.48 1.22,0.65s0.9,0.3 1.38,0.39c0.48,0.08 0.96,0.13 1.44,0.13 0.8,0 1.53,-0.09 2.18,-0.28 0.65,-0.19 1.21,-0.45 1.67,-0.79 0.46,-0.34 0.82,-0.77 1.07,-1.27s0.38,-1.07 0.38,-1.71c0,-0.6 -0.1,-1.14 -0.31,-1.61 -0.05,-0.11 -0.11,-0.23 -0.17,-0.33H21V10H3v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/stroller.xml b/compose/material/material/icons/generator/raw-icons/twotone/stroller.xml
deleted file mode 100644
index d218fad..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/stroller.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5c0.29,0 0.58,0.02 0.86,0.05L9.49,6.66l-1.4,-1.4C8.71,5.09 9.35,5 10,5M15,8.66V15H9.6L15,8.66"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5c0.29,0 0.58,0.02 0.86,0.05L9.49,6.66l-1.4,-1.4C8.71,5.09 9.35,5 10,5M15,8.66V15H9.6L15,8.66M18.65,3c-1.66,0 -2.54,1.27 -3.18,2.03l-8.8,10.32C6.12,16 6.58,17 7.43,17H15c1.1,0 2,-0.9 2,-2V6.27C17.58,5.59 17.97,5 18.65,5C19.42,5 20,5.66 20,6.48V7h2V6.48C22,4.56 20.52,3 18.65,3L18.65,3zM10,3C8.03,3 6.21,3.64 4.72,4.72l4.89,4.89l4.7,-5.51C13.03,3.4 11.56,3 10,3L10,3zM16,18c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S17.1,18 16,18L16,18zM6,18c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S7.1,18 6,18L6,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/style.xml b/compose/material/material/icons/generator/raw-icons/twotone/style.xml
deleted file mode 100644
index 8b272fd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/style.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.22,4.75L7.87,7.79l4.96,11.96 7.35,-3.05 -4.96,-11.95zM11,10c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.87,11.18l-2.43,5.86c-0.41,1.02 0.08,2.19 1.09,2.61l1.34,0.56v-9.03zM22.03,15.95L17.07,3.98c-0.31,-0.75 -1.04,-1.21 -1.81,-1.23 -0.26,0 -0.53,0.04 -0.79,0.15L7.1,5.95c-0.75,0.31 -1.21,1.03 -1.23,1.8 -0.01,0.27 0.04,0.54 0.15,0.8l4.96,11.97c0.31,0.76 1.05,1.22 1.83,1.23 0.26,0 0.52,-0.05 0.77,-0.15l7.36,-3.05c1.02,-0.42 1.51,-1.59 1.09,-2.6zM12.83,19.75L7.87,7.79l7.35,-3.04h0.01l4.95,11.95 -7.35,3.05z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.33,21.75l-3.45,-8.34v6.34c0,1.1 0.9,2 2,2h1.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subdirectory_arrow_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/subdirectory_arrow_left.xml
deleted file mode 100644
index d02c6f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subdirectory_arrow_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,9l1.42,1.42L8.83,14H18V4h2v12H8.83l3.59,3.58L11,21l-6,-6 6,-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subdirectory_arrow_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/subdirectory_arrow_right.xml
deleted file mode 100644
index 64066a5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subdirectory_arrow_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,15l-6,6 -1.42,-1.42L15.17,16H4V4h2v10h9.17l-3.59,-3.58L13,9l6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subject.xml b/compose/material/material/icons/generator/raw-icons/twotone/subject.xml
deleted file mode 100644
index 5e46992..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subject.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subscript.xml b/compose/material/material/icons/generator/raw-icons/twotone/subscript.xml
deleted file mode 100644
index ac0d19e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,18h-2v1h3v1h-4v-2c0,-0.55 0.45,-1 1,-1h2v-1h-3v-1h3c0.55,0 1,0.45 1,1v1C23,17.55 22.55,18 22,18zM5.88,18h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subscriptions.xml b/compose/material/material/icons/generator/raw-icons/twotone/subscriptions.xml
deleted file mode 100644
index 7523ae4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subscriptions.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16v-8L4,12v8zM10,12.73L16,16l-6,3.26v-6.53z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6h16v2L4,8zM6,2h12v2L6,4zM20,10L4,10c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-8c0,-1.1 -0.9,-2 -2,-2zM20,20L4,20v-8h16v8zM10,12.73v6.53L16,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subtitles.xml b/compose/material/material/icons/generator/raw-icons/twotone/subtitles.xml
deleted file mode 100644
index 876dc18..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subtitles.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16L20,6L4,6v12zM18,16h-2v-2h2v2zM10,10h8v2h-8v-2zM6,10h2v2L6,12v-2zM6,14h8v2L6,16v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h16v12zM6,10h2v2L6,12zM6,14h8v2L6,16zM16,14h2v2h-2zM10,10h8v2h-8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subtitles_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/subtitles_off.xml
deleted file mode 100644
index 2e3dc12..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subtitles_off.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.83,6l4,4l5.17,0l0,2l-3.17,0l5.17,5.17l0,-11.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.17,18l-2,-2l-7.17,0l0,-2l5.17,0l-3.17,-3.17l0,1.17l-2,0l0,-2l1.17,0l-3.17,-3.17l0,11.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10l-5.17,0l2,2l3.17,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65 22,18.34 22,18V6C22,4.9 21.1,4 20,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.04,3.87l1.2,1.2C2.09,5.35 2,5.66 2,6v12c0,1.1 0.9,2 2,2h13.17l2.96,2.96l1.41,-1.41L2.45,2.45L1.04,3.87zM4,6.83L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/subway.xml b/compose/material/material/icons/generator/raw-icons/twotone/subway.xml
deleted file mode 100644
index 5ee6999..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/subway.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.67,18.5L9.17,20h5.66l-1.5,-1.5zM17.07,4.66C15.59,4.08 13.68,4 12,4s-3.59,0.08 -5.07,0.66C5.01,5.41 4,6.86 4,8.86L4,20h3.5v-0.38l1.15,-1.16C7.16,18.29 6,17.04 6,15.5L6,9c0,-2.63 3,-3 6,-3s6,0.37 6,3v6.5c0,1.54 -1.16,2.79 -2.65,2.96l1.15,1.16L16.5,20L20,20L20,8.86c0,-2 -1.01,-3.45 -2.93,-4.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.8,2.8C16,2.09 13.86,2 12,2s-4,0.09 -5.8,0.8C3.53,3.84 2,6.05 2,8.86L2,22h20L22,8.86c0,-2.81 -1.53,-5.02 -4.2,-6.06zM9.17,20l1.5,-1.5h2.66l1.5,1.5L9.17,20zM7.01,14L7.01,9h10v5h-10zM16.5,16c0,0.55 -0.45,1 -1,1s-1,-0.45 -1,-1 0.45,-1 1,-1 1,0.45 1,1zM8.5,15c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM20,20h-3.5v-0.38l-1.15,-1.16c1.49,-0.17 2.65,-1.42 2.65,-2.96L18,9c0,-2.63 -3,-3 -6,-3s-6,0.37 -6,3v6.5c0,1.54 1.16,2.79 2.65,2.96L7.5,19.62L7.5,20L4,20L4,8.86c0,-2 1.01,-3.45 2.93,-4.2C8.41,4.08 10.32,4 12,4s3.59,0.08 5.07,0.66c1.92,0.75 2.93,2.2 2.93,4.2L20,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/summarize.xml b/compose/material/material/icons/generator/raw-icons/twotone/summarize.xml
deleted file mode 100644
index 1e76527..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/summarize.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,5H5v14h14v-9h-5V5zM8,17c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,17 8,17zM8,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S8.55,13 8,13zM8,9C7.45,9 7,8.55 7,8s0.45,-1 1,-1s1,0.45 1,1S8.55,9 8,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,8m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3H5C3.9,3 3.01,3.9 3.01,5L3,19c0,1.1 0.89,2 1.99,2H19c1.1,0 2,-0.9 2,-2V9L15,3zM19,19H5V5h9v5h5V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,12m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/superscript.xml b/compose/material/material/icons/generator/raw-icons/twotone/superscript.xml
deleted file mode 100644
index e3e4fc9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/superscript.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7h-2v1h3v1h-4V7c0,-0.55 0.45,-1 1,-1h2V5h-3V4h3c0.55,0 1,0.45 1,1v1C23,6.55 22.55,7 22,7zM5.88,20h2.66l3.4,-5.42h0.12l3.4,5.42h2.66l-4.65,-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/supervised_user_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/supervised_user_circle.xml
deleted file mode 100644
index d7d644f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/supervised_user_circle.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,10m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.5,17.21c0,-1.88 2.98,-2.7 4.5,-2.7 0.88,0 2.24,0.27 3.24,0.87 0.48,-1.02 0.75,-2.16 0.75,-3.37 0,-4.41 -3.59,-8 -8,-8s-8,3.59 -8,8c0,1.23 0.29,2.39 0.78,3.43 1.34,-0.98 3.43,-1.43 4.73,-1.43 0.44,0 0.97,0.05 1.53,0.16 -0.63,0.57 -1.06,1.22 -1.3,1.86 -0.08,0 -0.15,-0.01 -0.23,-0.01 -1.38,0 -2.98,0.57 -3.66,1.11 1.37,1.65 3.39,2.73 5.66,2.86v-2.78zM16,9c1.11,0 2,0.89 2,2 0,1.11 -0.89,2 -2,2 -1.11,0 -2,-0.89 -2,-2 -0.01,-1.11 0.89,-2 2,-2zM9.5,13c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,10c0,-1.65 -1.35,-3 -3,-3s-3,1.35 -3,3 1.35,3 3,3 3,-1.35 3,-3zM9.5,11c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1zM16,13c1.11,0 2,-0.89 2,-2 0,-1.11 -0.89,-2 -2,-2 -1.11,0 -2.01,0.89 -2,2 0,1.11 0.89,2 2,2zM11.99,2.01c-5.52,0 -10,4.48 -10,10s4.48,10 10,10 10,-4.48 10,-10 -4.48,-10 -10,-10zM5.84,17.12c0.68,-0.54 2.27,-1.11 3.66,-1.11 0.07,0 0.15,0.01 0.23,0.01 0.24,-0.64 0.67,-1.29 1.3,-1.86 -0.56,-0.1 -1.09,-0.16 -1.53,-0.16 -1.3,0 -3.39,0.45 -4.73,1.43 -0.5,-1.04 -0.78,-2.2 -0.78,-3.43 0,-4.41 3.59,-8 8,-8s8,3.59 8,8c0,1.2 -0.27,2.34 -0.75,3.37 -1,-0.59 -2.36,-0.87 -3.24,-0.87 -1.52,0 -4.5,0.81 -4.5,2.7v2.78c-2.27,-0.13 -4.29,-1.21 -5.66,-2.86z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/supervisor_account.xml b/compose/material/material/icons/generator/raw-icons/twotone/supervisor_account.xml
deleted file mode 100644
index 3adc187..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/supervisor_account.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,8.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.77,17h4.28c0.01,-0.06 0.12,-0.58 0.29,-0.99 -0.11,0 -0.23,-0.01 -0.34,-0.01 -1.53,0 -3.25,0.5 -4.23,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12c1.93,0 3.5,-1.57 3.5,-3.5S10.93,5 9,5 5.5,6.57 5.5,8.5 7.07,12 9,12zM9,7c0.83,0 1.5,0.67 1.5,1.5S9.83,10 9,10s-1.5,-0.67 -1.5,-1.5S8.17,7 9,7zM9.05,17L4.77,17c0.99,-0.5 2.7,-1 4.23,-1 0.11,0 0.23,0.01 0.34,0.01 0.34,-0.73 0.93,-1.33 1.64,-1.81 -0.73,-0.13 -1.42,-0.2 -1.98,-0.2 -2.34,0 -7,1.17 -7,3.5L2,19h7v-1.5c0,-0.17 0.02,-0.34 0.05,-0.5zM16.5,14.5c-1.84,0 -5.5,1.01 -5.5,3L11,19h11v-1.5c0,-1.99 -3.66,-3 -5.5,-3zM17.71,12.68c0.76,-0.43 1.29,-1.24 1.29,-2.18C19,9.12 17.88,8 16.5,8S14,9.12 14,10.5c0,0.94 0.53,1.75 1.29,2.18 0.36,0.2 0.77,0.32 1.21,0.32s0.85,-0.12 1.21,-0.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/support.xml b/compose/material/material/icons/generator/raw-icons/twotone/support.xml
deleted file mode 100644
index 4dbec1b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/support.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.3,7.32L9.13,4.54C7.02,5.35 5.35,7.02 4.54,9.13l2.78,1.15C7.83,8.9 8.92,7.82 10.3,7.32z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.32,13.72l-2.78,1.15c0.81,2.1 2.48,3.78 4.59,4.59l1.17,-2.78C8.91,16.18 7.83,15.09 7.32,13.72z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.67,10.27l2.78,-1.15c-0.81,-2.1 -2.48,-3.77 -4.58,-4.58l-1.15,2.78C15.09,7.83 16.17,8.9 16.67,10.27z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.68,13.71c-0.5,1.37 -1.58,2.46 -2.95,2.97l1.15,2.78c2.1,-0.81 3.77,-2.48 4.58,-4.58L16.68,13.71z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM14.87,4.54c2.1,0.81 3.77,2.48 4.58,4.58l-2.78,1.15c-0.51,-1.36 -1.58,-2.44 -2.95,-2.94L14.87,4.54zM9.13,4.54l1.17,2.78c-1.38,0.5 -2.47,1.59 -2.98,2.97L4.54,9.13C5.35,7.02 7.02,5.35 9.13,4.54zM9.13,19.46c-2.1,-0.81 -3.78,-2.48 -4.59,-4.59l2.78,-1.15c0.51,1.38 1.59,2.46 2.97,2.96L9.13,19.46zM9,12c0,-1.66 1.34,-3 3,-3s3,1.34 3,3s-1.34,3 -3,3S9,13.66 9,12zM14.88,19.46l-1.15,-2.78c1.37,-0.51 2.45,-1.59 2.95,-2.97l2.78,1.17C18.65,16.98 16.98,18.65 14.88,19.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/support_agent.xml b/compose/material/material/icons/generator/raw-icons/twotone/support_agent.xml
deleted file mode 100644
index 4ba9636..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/support_agent.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12.22C21,6.73 16.74,3 12,3c-4.69,0 -9,3.65 -9,9.28C2.4,12.62 2,13.26 2,14v2c0,1.1 0.9,2 2,2h1v-6.1c0,-3.87 3.13,-7 7,-7s7,3.13 7,7V19h-8v2h8c1.1,0 2,-0.9 2,-2v-1.22c0.59,-0.31 1,-0.92 1,-1.64v-2.3C22,13.14 21.59,12.53 21,12.22z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11.03C17.52,8.18 15.04,6 12.05,6c-3.03,0 -6.29,2.51 -6.03,6.45c2.47,-1.01 4.33,-3.21 4.86,-5.89C12.19,9.19 14.88,11 18,11.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/surfing.xml b/compose/material/material/icons/generator/raw-icons/twotone/surfing.xml
deleted file mode 100644
index 9727e06..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/surfing.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,23c-1.03,0 -2.06,-0.25 -3,-0.75h0c-1.89,1 -4.11,1 -6,0c-1.89,1 -4.11,1 -6,0C5.05,22.75 4.03,23 3,23H2l0,-2h1c1.04,0 2.08,-0.35 3,-1c1.83,1.3 4.17,1.3 6,0c1.83,1.3 4.17,1.3 6,0c0.91,0.65 1.96,1 3,1h1v2H21zM17,1.5c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2S18.1,1.5 17,1.5zM14.43,8.48L12.18,10L16,13v3.84c0.53,0.38 1.03,0.78 1.49,1.17C16.81,18.59 15.94,19 15,19c-1.2,0 -2.27,-0.66 -3,-1.5c-0.73,0.84 -1.8,1.5 -3,1.5c-0.33,0 -0.65,-0.05 -0.96,-0.14C5.19,16.9 3,14.72 3,13.28C3,12.25 4.01,12 4.85,12c0.98,0 2.28,0.31 3.7,0.83l-0.53,-3.1C7.91,9.06 8.2,8.35 8.8,7.94l2.15,-1.45l-2,-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03c0.45,0.09 0.93,0.37 1.22,0.89l0.88,1.55C17.01,8.98 18.64,10 20.5,10v2C17.91,12 15.64,10.58 14.43,8.48zM10.3,11.1l0.44,2.65c0.92,0.42 2.48,1.27 3.26,1.75V14L10.3,11.1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/surround_sound.xml b/compose/material/material/icons/generator/raw-icons/twotone/surround_sound.xml
deleted file mode 100644
index 873db65..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/surround_sound.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM16.94,7.06C18.32,8.41 19,10.21 19,12s-0.68,3.59 -2.05,4.95l-1.23,-1.23c1.02,-1.03 1.53,-2.37 1.53,-3.72c0,-1.35 -0.52,-2.69 -1.54,-3.71L16.94,7.06zM12,8.5c1.93,0 3.5,1.57 3.5,3.5c0,1.93 -1.57,3.5 -3.5,3.5c-1.93,0 -3.5,-1.57 -3.5,-3.5C8.5,10.07 10.07,8.5 12,8.5zM7.05,7.05l1.23,1.23C7.27,9.31 6.75,10.65 6.75,12c0,1.35 0.52,2.69 1.54,3.71l-1.23,1.23C5.68,15.59 5,13.79 5,12S5.68,8.41 7.05,7.05z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.29,15.71C7.27,14.69 6.75,13.35 6.75,12c0,-1.35 0.52,-2.69 1.53,-3.72L7.05,7.05C5.68,8.41 5,10.21 5,12s0.68,3.59 2.06,4.94L8.29,15.71z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15.5c1.93,0 3.5,-1.57 3.5,-3.5c0,-1.93 -1.57,-3.5 -3.5,-3.5c-1.93,0 -3.5,1.57 -3.5,3.5C8.5,13.93 10.07,15.5 12,15.5zM12,10.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5S11.17,10.5 12,10.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.72,15.72l1.23,1.23C18.32,15.59 19,13.79 19,12s-0.68,-3.59 -2.06,-4.94l-1.23,1.23c1.02,1.02 1.54,2.36 1.54,3.71C17.25,13.35 16.73,14.69 15.72,15.72z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swap_calls.xml b/compose/material/material/icons/generator/raw-icons/twotone/swap_calls.xml
deleted file mode 100644
index 7a81011..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swap_calls.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8h3v7c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2V8c0,-2.21 -1.79,-4 -4,-4S5,5.79 5,8v7H2l4,4 4,-4H7V8c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v7c0,2.21 1.79,4 4,4s4,-1.79 4,-4V8h3l-4,-4 -4,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swap_horiz.xml b/compose/material/material/icons/generator/raw-icons/twotone/swap_horiz.xml
deleted file mode 100644
index 7a7844d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swap_horiz.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.99,11L3,15l3.99,4v-3H14v-2H6.99v-3zM21,9l-3.99,-4v3H10v2h7.01v3L21,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swap_horizontal_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/swap_horizontal_circle.xml
deleted file mode 100644
index a943eb1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swap_horizontal_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM13,15L9,15v2.5L5.5,14 9,10.5L9,13h4v2zM15,13.5L15,11h-4L11,9h4L15,6.5l3.5,3.5 -3.5,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM15,6.5L15,9h-4v2h4v2.5l3.5,-3.5zM9,10.5L5.5,14 9,17.5L9,15h4v-2L9,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swap_vert.xml b/compose/material/material/icons/generator/raw-icons/twotone/swap_vert.xml
deleted file mode 100644
index bbd7d9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swap_vert.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,17.01V10h-2v7.01h-3L15,21l4,-3.99h-3zM9,3L5,6.99h3V14h2V6.99h3L9,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swap_vertical_circle.xml b/compose/material/material/icons/generator/raw-icons/twotone/swap_vertical_circle.xml
deleted file mode 100644
index 0583258..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swap_vertical_circle.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8 8,-3.59 8,-8 -3.59,-8 -8,-8zM6.5,9L10,5.5 13.5,9L11,9v4L9,13L9,9L6.5,9zM14,18.5L10.5,15L13,15v-4h2v4h2.5L14,18.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM11,13L11,9h2.5L10,5.5 6.5,9L9,9v4zM15,11h-2v4h-2.5l3.5,3.5 3.5,-3.5L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe.xml
deleted file mode 100644
index 2796b06..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.13,3.87C18.69,2.17 15.6,1 12,1S5.31,2.17 3.87,3.87L2,2v5h5L4.93,4.93c1,-1.29 3.7,-2.43 7.07,-2.43s6.07,1.14 7.07,2.43L17,7h5V2L20.13,3.87z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13.68V7.5C12,7.22 11.78,7 11.5,7S11,7.22 11,7.5v10.61l-4.17,-0.89l3.7,3.78h6.55L18,15.56l-4.24,-1.89H12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,13.77l-3.8,-1.67C14.96,12.04 14.81,12 14.65,12H14V7.63c0,-1.32 -0.96,-2.5 -2.27,-2.62C10.25,4.88 9,6.05 9,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,17.22l5.12,5.19C9.49,22.79 10,23 10.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,15.03 19.68,14.17 18.89,13.77zM17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56L17.08,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_down.xml
deleted file mode 100644
index 3adf399..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_down.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.22,10l-4.15,0.01c-0.16,-0.01 -0.31,0.02 -0.45,0.08l-0.59,0.26L13.2,6.25c-0.56,-1.26 -2.04,-1.83 -3.3,-1.27s-1.83,2.04 -1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05 -0.99,0.27 -1.36,1.21L8,19.19l6.78,2.67c0.49,0.19 1.05,0.18 1.53,-0.04l5.99,-2.65c0.89,-0.4 1.37,-1.38 1.13,-2.32l-1.36,-5.34C21.85,10.65 21.1,10.04 20.22,10zM21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34zM3.8,12.18c-0.2,-0.86 -0.3,-1.76 -0.3,-2.68c0,-2.84 0.99,-5.45 2.63,-7.5L7.2,3.07C5.82,4.85 5,7.08 5,9.5c0,0.88 0.11,1.74 0.32,2.56l1.62,-1.62L8,11.5L4.5,15L1,11.5l1.06,-1.06L3.8,12.18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_down_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_down_alt.xml
deleted file mode 100644
index c42adc6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_down_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,9m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13.9c2.28,-0.46 4,-2.48 4,-4.9c0,-2.76 -2.24,-5 -5,-5S7,6.24 7,9c0,2.42 1.72,4.44 4,4.9v4.27l-1.59,-1.59L8,18l4,4l4,-4l-1.41,-1.41L13,18.17V13.9zM15,9c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3s1.34,-3 3,-3S15,7.34 15,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_left.xml
deleted file mode 100644
index d532210..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_left.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56L17.08,21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,13.77l-3.8,-1.67C14.96,12.04 14.81,12 14.65,12H14V7.5C14,6.12 12.88,5 11.5,5S9,6.12 9,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,17.22l5.12,5.19C9.49,22.79 10,23 10.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,15.03 19.68,14.17 18.89,13.77zM17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56L17.08,21zM4.09,5.5H7V7H2V2h1.5v2.02C5.82,2.13 8.78,1 12,1c5.49,0 9.27,3.12 10,6h-1.57C19.67,5.02 16.74,2.5 12,2.5C8.97,2.5 6.21,3.64 4.09,5.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_left_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_left_alt.xml
deleted file mode 100644
index 185a877..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_left_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.1,13c0.46,2.28 2.48,4 4.9,4c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5c-2.42,0 -4.44,1.72 -4.9,4H5.83l1.59,-1.59L6,8l-4,4l4,4l1.41,-1.41L5.83,13H10.1zM15,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S16.66,15 15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_right.xml
deleted file mode 100644
index 5df361f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_right.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56L17.08,21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.89,13.77l-3.8,-1.67C14.96,12.04 14.81,12 14.65,12H14V7.5C14,6.12 12.88,5 11.5,5S9,6.12 9,7.5v8.15l-1.87,-0.4c-0.19,-0.03 -1.02,-0.15 -1.73,0.56L4,17.22l5.12,5.19C9.49,22.79 10,23 10.53,23h6.55c0.98,0 1.81,-0.7 1.97,-1.67l0.92,-5.44C20.12,15.03 19.68,14.17 18.89,13.77zM17.08,21h-6.55l-3.7,-3.78L11,18.11V7.5C11,7.22 11.22,7 11.5,7S12,7.22 12,7.5v6.18h1.76L18,15.56L17.08,21zM12,2.5C7.26,2.5 4.33,5.02 3.57,7H2c0.73,-2.88 4.51,-6 10,-6c3.22,0 6.18,1.13 8.5,3.02V2H22v5h-5V5.5h2.91C17.79,3.64 15.03,2.5 12,2.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_right_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_right_alt.xml
deleted file mode 100644
index 0c6ad08..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_right_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,12m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.9,11C13.44,8.72 11.42,7 9,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.42,0 4.44,-1.72 4.9,-4h4.27l-1.59,1.59L18,16l4,-4l-4,-4l-1.41,1.41L18.17,11H13.9zM9,9c1.66,0 3,1.34 3,3s-1.34,3 -3,3s-3,-1.34 -3,-3S7.34,9 9,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_up.xml
deleted file mode 100644
index 724844a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_up.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.22,10l-4.15,0.01c-0.16,-0.01 -0.31,0.02 -0.45,0.08l-0.59,0.26L13.2,6.25c-0.56,-1.26 -2.04,-1.83 -3.3,-1.27s-1.83,2.04 -1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05 -0.99,0.27 -1.36,1.21L8,19.19l6.78,2.67c0.49,0.19 1.05,0.18 1.53,-0.04l5.99,-2.65c0.89,-0.4 1.37,-1.38 1.13,-2.32l-1.36,-5.34C21.85,10.65 21.1,10.04 20.22,10zM21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34zM2.06,5.56L1,4.5L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76 5,5.62 5,6.5c0,2.42 0.82,4.65 2.2,6.43L6.13,14C4.49,11.95 3.5,9.34 3.5,6.5c0,-0.92 0.1,-1.82 0.3,-2.68L2.06,5.56z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_up_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_up_alt.xml
deleted file mode 100644
index 278207bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_up_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15m-3,0a3,3 0,1 1,6 0a3,3 0,1 1,-6 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5.83l1.59,1.59L16,6l-4,-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46 -4,2.48 -4,4.9c0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-2.42 -1.72,-4.44 -4,-4.9V5.83zM12,18c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3s3,1.34 3,3S13.66,18 12,18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/swipe_vertical.xml b/compose/material/material/icons/generator/raw-icons/twotone/swipe_vertical.xml
deleted file mode 100644
index c589704..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/swipe_vertical.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,2h3.5H6v1.5V7H4.5V4.09c-1.86,2.11 -3,4.88 -3,7.91s1.14,5.79 3,7.91V17H6v3.5V22H4.5H1v-1.5h2.02C1.13,18.18 0,15.22 0,12s1.13,-6.18 3.02,-8.5H1V2zM20.22,10l-4.15,0.01c-0.16,-0.01 -0.31,0.02 -0.45,0.08l-0.59,0.26L13.2,6.25c-0.56,-1.26 -2.04,-1.83 -3.3,-1.27s-1.83,2.04 -1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05 -0.99,0.27 -1.36,1.21L8,19.19l6.78,2.67c0.49,0.19 1.05,0.18 1.53,-0.04l5.99,-2.65c0.89,-0.4 1.37,-1.38 1.13,-2.32l-1.36,-5.34C21.85,10.65 21.1,10.04 20.22,10zM21.49,17.34L15.5,20l-4.92,-1.96l4.18,-0.88l-4.3,-9.7c-0.11,-0.25 0,-0.55 0.25,-0.66c0.25,-0.11 0.55,0 0.66,0.25l2.5,5.65l1.61,-0.71L20.13,12L21.49,17.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/switch_access_shortcut.xml b/compose/material/material/icons/generator/raw-icons/twotone/switch_access_shortcut.xml
deleted file mode 100644
index 6c27e1c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/switch_access_shortcut.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-2.73 1.08,-5.27 2.75,-7.25L12,2h7v7l-2.82,-2.82C14.84,7.82 14,9.88 14,12c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/switch_access_shortcut_add.xml b/compose/material/material/icons/generator/raw-icons/twotone/switch_access_shortcut_add.xml
deleted file mode 100644
index 84b07f9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/switch_access_shortcut_add.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,14h-2v-2h-2v2h-2v2h2v2h2v-2h2V14zM7.06,8.94L5,8l2.06,-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94zM8,21l0.94,-2.06L11,18l-2.06,-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21zM4.37,12.37L3,13l1.37,0.63L5,15l0.63,-1.37L7,13l-1.37,-0.63L5,11L4.37,12.37zM12,12c0,-2.73 1.08,-5.27 2.75,-7.25L12,2h7v7l-2.82,-2.82C14.84,7.82 14,9.88 14,12c0,3.32 2.1,6.36 5,7.82L19,22C14.91,20.41 12,16.35 12,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/switch_account.xml b/compose/material/material/icons/generator/raw-icons/twotone/switch_account.xml
deleted file mode 100644
index 9f912eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/switch_account.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,15.73C9.47,14.06 11.6,13 14,13s4.53,1.06 6,2.73V4H8V15.73zM14,5c1.66,0 3,1.34 3,3c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3C11,6.34 12.34,5 14,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6zM14,11c1.66,0 3,-1.34 3,-3c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3C11,9.66 12.34,11 14,11zM14,7c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S13.45,7 14,7zM20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM10.69,16c0.95,-0.63 2.09,-1 3.31,-1s2.36,0.37 3.31,1H10.69zM20,15.73C18.53,14.06 16.4,13 14,13s-4.53,1.06 -6,2.73V4h12V15.73z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/switch_camera.xml b/compose/material/material/icons/generator/raw-icons/twotone/switch_camera.xml
deleted file mode 100644
index b640207..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/switch_camera.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.12,4H9.88L8.05,6H4v12h16V6h-4.05l-1.83,-2zM15,15.5V13H9v2.5L5.5,12 9,8.5V11h6V8.5l3.5,3.5 -3.5,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4h-3.17L15,2L9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,18L4,18L4,6h4.05l1.83,-2h4.24l1.83,2L20,6v12zM15,11L9,11L9,8.5L5.5,12 9,15.5L9,13h6v2.5l3.5,-3.5L15,8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/switch_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/switch_left.xml
deleted file mode 100644
index 1945ee7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/switch_left.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,8.62l0,6.76l-3.38,-3.38l3.38,-3.38"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,8.62v6.76L5.12,12L8.5,8.62M10,5l-7,7l7,7V5L10,5zM14,5v14l7,-7L14,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/switch_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/switch_right.xml
deleted file mode 100644
index 52618e9a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/switch_right.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.38l0,-6.76l3.38,3.38l-3.38,3.38"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.38V8.62L18.88,12L15.5,15.38M14,19l7,-7l-7,-7V19L14,19zM10,19V5l-7,7L10,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/switch_video.xml b/compose/material/material/icons/generator/raw-icons/twotone/switch_video.xml
deleted file mode 100644
index 9be537e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/switch_video.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h12L16,7L4,7v10zM8,9v2h4L12,9l3,3 -3,3v-2L8,13v2l-3,-3 3,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,13h4v2l3,-3 -3,-3v2L8,11L8,9l-3,3 3,3zM18,9.5L18,6c0,-0.55 -0.45,-1 -1,-1L3,5c-0.55,0 -1,0.45 -1,1v12c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-3.5l4,4v-13l-4,4zM16,17L4,17L4,7h12v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/synagogue.xml b/compose/material/material/icons/generator/raw-icons/twotone/synagogue.xml
deleted file mode 100644
index 23929a6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/synagogue.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6C3.45,6 3,6.45 3,7v1h2V7C5,6.45 4.55,6 4,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,10h2v9h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9.92V19h2v-3c0,-1.65 1.35,-3 3,-3c1.65,0 3,1.35 3,3v3h2V9.92l-5,-4.29L7,9.92zM13.5,10c0,0.83 -0.67,1.5 -1.5,1.5s-1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5S13.5,9.17 13.5,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6c-0.55,0 -1,0.45 -1,1v1h2V7C21,6.45 20.55,6 20,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10h2v9h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4c-1.66,0 -3,1.34 -3,3v0.29L12,3L7,7.29V7c0,-1.66 -1.34,-3 -3,-3S1,5.34 1,7v14h10v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5h10V7C23,5.34 21.66,4 20,4zM5,19H3v-9h2V19zM5,8H3V7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V8zM17,19h-2v-3c0,-1.65 -1.35,-3 -3,-3c-1.65,0 -3,1.35 -3,3v3H7V9.92l5,-4.29l5,4.29V19zM21,19h-2v-9h2V19zM21,8h-2V7c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sync.xml b/compose/material/material/icons/generator/raw-icons/twotone/sync.xml
deleted file mode 100644
index ddf478c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sync.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.01,4L12.01,1l-4,4 4,4L12.01,6c3.31,0 6,2.69 6,6 0,1.01 -0.25,1.97 -0.7,2.8l1.46,1.46c0.78,-1.23 1.24,-2.69 1.24,-4.26 0,-4.42 -3.58,-8 -8,-8zM12.01,18c-3.31,0 -6,-2.69 -6,-6 0,-1.01 0.25,-1.97 0.7,-2.8L5.25,7.74C4.47,8.97 4.01,10.43 4.01,12c0,4.42 3.58,8 8,8v3l4,-4 -4,-4v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sync_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/sync_alt.xml
deleted file mode 100644
index 360b6a2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sync_alt.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12l4,-4l-4,-4l0,3l-15,0l0,2l15,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,12l-4,4l4,4l0,-3l15,0l0,-2l-15,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sync_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/sync_disabled.xml
deleted file mode 100644
index d6021bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sync_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6.35V4.26c-0.66,0.17 -1.29,0.43 -1.88,0.75l1.5,1.5c0.13,-0.05 0.25,-0.11 0.38,-0.16zM20,12c0,-2.21 -0.91,-4.2 -2.36,-5.64L20,4h-6v6l2.24,-2.24C17.32,8.85 18,10.34 18,12c0,0.85 -0.19,1.65 -0.51,2.38l1.5,1.5C19.63,14.74 20,13.41 20,12zM4.27,4L2.86,5.41l2.36,2.36C4.45,8.99 4,10.44 4,12c0,2.21 0.91,4.2 2.36,5.64L4,20h6v-6l-2.24,2.24C6.68,15.15 6,13.66 6,12c0,-1 0.25,-1.94 0.68,-2.77l8.08,8.08c-0.25,0.13 -0.5,0.24 -0.76,0.34v2.09c0.8,-0.21 1.55,-0.54 2.23,-0.96l2.58,2.58 1.41,-1.41L4.27,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sync_lock.xml b/compose/material/material/icons/generator/raw-icons/twotone/sync_lock.xml
deleted file mode 100644
index 1ea0e23..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sync_lock.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4.26v2.09C7.67,7.18 6,9.39 6,12c0,1.77 0.78,3.34 2,4.44V14h2v6H4v-2h2.73C5.06,16.54 4,14.4 4,12C4,8.27 6.55,5.15 10,4.26zM20,4h-6v6h2V7.56c1.22,1.1 2,2.67 2,4.44h2c0,-2.4 -1.06,-4.54 -2.73,-6H20V4zM20,17v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C21,17.45 20.55,17 20,17zM19,17h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/sync_problem.xml b/compose/material/material/icons/generator/raw-icons/twotone/sync_problem.xml
deleted file mode 100644
index bb6258a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/sync_problem.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12c0,2.21 0.91,4.2 2.36,5.64L3,20h6v-6l-2.24,2.24C5.68,15.15 5,13.66 5,12c0,-2.61 1.67,-4.83 4,-5.65L9,4.26C5.55,5.15 3,8.27 3,12zM11,17h2v-2h-2v2zM21,4h-6v6l2.24,-2.24C18.32,8.85 19,10.34 19,12c0,2.61 -1.67,4.83 -4,5.65v2.09c3.45,-0.89 6,-4.01 6,-7.74 0,-2.21 -0.91,-4.2 -2.36,-5.64L21,4zM11,13h2L13,7h-2v6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/system_security_update.xml b/compose/material/material/icons/generator/raw-icons/twotone/system_security_update.xml
deleted file mode 100644
index 72defcf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/system_security_update.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,3h10v1h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM16,12h-3V8h-2v4H8l4,4L16,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/system_security_update_good.xml b/compose/material/material/icons/generator/raw-icons/twotone/system_security_update_good.xml
deleted file mode 100644
index 1e0580a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/system_security_update_good.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h10v-1H7V21zM7,3v1h10V3H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4zM16,10.05l-1.41,-1.41l-3.54,3.54l-1.41,-1.41l-1.41,1.41L11.05,15L16,10.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/system_security_update_warning.xml b/compose/material/material/icons/generator/raw-icons/twotone/system_security_update_warning.xml
deleted file mode 100644
index 67101cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/system_security_update_warning.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2V7zM11,15h2v2h-2V15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,15h2v2h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v6h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7v-1h10V21zM17,18H7V6h10V18zM17,4H7V3h10V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,21h10v-1H7V21zM7,3v1h10V3H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/system_update.xml b/compose/material/material/icons/generator/raw-icons/twotone/system_update.xml
deleted file mode 100644
index d599cd9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/system_update.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,19h10L17,5L7,5v14zM11,13L11,8h2v5h3l-4,4 -4,-4h3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13h-3L13,8h-2v5L8,13l4,4zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/system_update_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/system_update_alt.xml
deleted file mode 100644
index e764fca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/system_update_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,16l4,-4h-3L13,3h-2v9L8,12l4,4zM21,3h-6v1.99h6v14.03L3,19.02L3,4.99h6L9,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tab.xml b/compose/material/material/icons/generator/raw-icons/twotone/tab.xml
deleted file mode 100644
index d8a1ee7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tab.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h10v4h8v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tab_unselected.xml b/compose/material/material/icons/generator/raw-icons/twotone/tab_unselected.xml
deleted file mode 100644
index 3266695..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tab_unselected.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h2L3,7L1,7v2zM1,13h2v-2L1,11v2zM1,5h2L3,3c-1.1,0 -2,0.9 -2,2zM9,21h2v-2L9,19v2zM1,17h2v-2L1,15v2zM3,21v-2L1,19c0,1.1 0.9,2 2,2zM21,3h-8v6h10L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17h2v-2h-2v2zM9,5h2L11,3L9,3v2zM5,21h2v-2L5,19v2zM5,5h2L7,3L5,3v2zM21,21c1.1,0 2,-0.9 2,-2h-2v2zM21,13h2v-2h-2v2zM13,21h2v-2h-2v2zM17,21h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/table_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/table_bar.xml
deleted file mode 100644
index caf4fa4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/table_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.28,7.5a7.72,1.5 0,1 0,15.44 0a7.72,1.5 0,1 0,-15.44 0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,7.5C22,5.57 17.52,4 12,4S2,5.57 2,7.5c0,1.81 3.95,3.31 9,3.48V15H9.35c-0.82,0 -1.55,0.5 -1.86,1.26L6,20h2l1.2,-3h5.6l1.2,3h2l-1.5,-3.74C16.2,15.5 15.46,15 14.65,15H13v-4.02C18.05,10.81 22,9.31 22,7.5zM12,9C7.95,9 5.26,8.14 4.28,7.5C5.26,6.86 7.95,6 12,6s6.74,0.86 7.72,1.5C18.74,8.14 16.05,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/table_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/table_chart.xml
deleted file mode 100644
index c3ef87f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/table_chart.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h15v3L5,8zM17,10h3v9h-3zM10,10h5v9h-5zM5,10h3v9L5,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h15c1.1,0 2,-0.9 2,-2L22,5c0,-1.1 -0.9,-2 -2,-2zM8,19L5,19v-9h3v9zM15,19h-5v-9h5v9zM20,19h-3v-9h3v9zM20,8L5,8L5,5h15v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/table_restaurant.xml b/compose/material/material/icons/generator/raw-icons/twotone/table_restaurant.xml
deleted file mode 100644
index 0c12454..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/table_restaurant.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.18,6l-0.85,3l15.34,0l-0.85,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.96,9.73l-1.43,-5C20.41,4.3 20.02,4 19.57,4H4.43C3.98,4 3.59,4.3 3.47,4.73l-1.43,5C1.86,10.36 2.34,11 3,11h2.2L4,20h2l0.67,-5h10.67L18,20h2l-1.2,-9H21C21.66,11 22.14,10.36 21.96,9.73zM6.93,13l0.27,-2h9.6l0.27,2H6.93zM4.33,9l0.86,-3h13.63l0.86,3H4.33z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/table_rows.xml b/compose/material/material/icons/generator/raw-icons/twotone/table_rows.xml
deleted file mode 100644
index a4c9b8b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/table_rows.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,5v3H5V5H19zM19,10v4H5v-4H19zM5,19v-3h14v3H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,5v3H5V5H19zM19,10v4H5v-4H19zM5,19v-3h14v3H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/table_view.xml b/compose/material/material/icons/generator/raw-icons/twotone/table_view.xml
deleted file mode 100644
index 57d05de..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/table_view.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,9v2H9V9H19zM13,15v-2h2v2H13zM15,17v2h-2v-2H15zM11,15H9v-2h2V15zM17,13h2v2h-2V13zM9,17h2v2H9V17zM17,19v-2h2v2H17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7H9C7.9,7 7,7.9 7,9v10c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V9C21,7.9 20.1,7 19,7zM19,9v2H9V9H19zM13,15v-2h2v2H13zM15,17v2h-2v-2H15zM11,15H9v-2h2V15zM17,13h2v2h-2V13zM9,17h2v2H9V17zM17,19v-2h2v2H17zM6,17H5c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2v1h-2V5H5v10h1V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tablet.xml b/compose/material/material/icons/generator/raw-icons/twotone/tablet.xml
deleted file mode 100644
index fad10e8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tablet.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6h14v12H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4L3,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h18c1.1,0 1.99,-0.9 1.99,-2L23,6c0,-1.1 -0.9,-2 -2,-2zM19,18L5,18L5,6h14v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tablet_android.xml b/compose/material/material/icons/generator/raw-icons/twotone/tablet_android.xml
deleted file mode 100644
index dd07161..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tablet_android.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.75,3h14.5v16H4.75z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,0L6,0C4.34,0 3,1.34 3,3v18c0,1.66 1.34,3 3,3h12c1.66,0 3,-1.34 3,-3L21,3c0,-1.66 -1.34,-3 -3,-3zM14,22h-4v-1h4v1zM19.25,19L4.75,19L4.75,3h14.5v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tablet_mac.xml b/compose/material/material/icons/generator/raw-icons/twotone/tablet_mac.xml
deleted file mode 100644
index 6e4a230..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tablet_mac.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h15v16H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,0h-14C3.12,0 2,1.12 2,2.5v19C2,22.88 3.12,24 4.5,24h14c1.38,0 2.5,-1.12 2.5,-2.5v-19C21,1.12 19.88,0 18.5,0zM11.5,23c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM19,19L4,19L4,3h15v16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tag.xml b/compose/material/material/icons/generator/raw-icons/twotone/tag.xml
deleted file mode 100644
index bdc2232..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tag.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20zM14,14h-4v-4h4V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tag_faces.xml b/compose/material/material/icons/generator/raw-icons/twotone/tag_faces.xml
deleted file mode 100644
index 9bddd67..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tag_faces.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15.5,8c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,8c0.83,0 1.5,0.67 1.5,1.5S9.33,11 8.5,11 7,10.33 7,9.5 7.67,8 8.5,8zM12,17.5c-2.33,0 -4.31,-1.46 -5.11,-3.5h10.22c-0.8,2.04 -2.78,3.5 -5.11,3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.5c2.33,0 4.31,-1.46 5.11,-3.5H6.89c0.8,2.04 2.78,3.5 5.11,3.5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,9.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/takeout_dining.xml b/compose/material/material/icons/generator/raw-icons/twotone/takeout_dining.xml
deleted file mode 100644
index 8b44573..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/takeout_dining.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,5l-2.8,2.73l0.09,1.27l9.75,0l0.09,-1.27l-2.8,-2.73z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.79,18l8.44,0l0.51,-7l-9.46,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.59,6.05L19,7.63l0.03,-0.56L14.98,3H9.02L4.97,7.07L5,7.57L3.41,6.01L2,7.44l3.23,3.11L5.93,20h12.14l0.7,-9.44L22,7.46L20.59,6.05zM16.23,18H7.79l-0.51,-7h9.46L16.23,18zM16.87,9H7.12L7.03,7.73L9.83,5h4.33l2.8,2.73L16.87,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tap_and_play.xml b/compose/material/material/icons/generator/raw-icons/twotone/tap_and_play.xml
deleted file mode 100644
index 8dd1722..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tap_and_play.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16v2c2.76,0 5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM2,20v3h3c0,-1.66 -1.34,-3 -3,-3zM2,12v2c4.97,0 9,4.03 9,9h2c0,-6.08 -4.92,-11 -11,-11zM17,1.01L7,1c-1.1,0 -2,0.9 -2,2v7.37c0.69,0.16 1.36,0.37 2,0.64L7,5h10v13h-3.03c0.52,1.25 0.84,2.59 0.95,4L17,22c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tapas.xml b/compose/material/material/icons/generator/raw-icons/twotone/tapas.xml
deleted file mode 100644
index 67bf0df..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tapas.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10V8h4v2c0,1.1 -0.9,2 -2,2S16,11.1 16,10zM4,6C3.72,6 3.5,5.78 3.5,5.5S3.72,5 4,5h6c0.28,0 0.5,0.22 0.5,0.5S10.28,6 10,6H4zM10,12H4c-0.28,0 -0.5,-0.22 -0.5,-0.5S3.72,11 4,11h6c0.28,0 0.5,0.22 0.5,0.5S10.28,12 10,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,10V1h-8v9c0,1.86 1.28,3.41 3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41 22,11.86 22,10zM20,3v3h-4V3H20zM16,10V8h4v2c0,1.1 -0.9,2 -2,2S16,11.1 16,10zM10,9H8V8h2c1.38,0 2.5,-1.12 2.5,-2.5C12.5,4.12 11.38,3 10,3H8V1H6v2H4C2.62,3 1.5,4.12 1.5,5.5C1.5,6.88 2.62,8 4,8h2v1H4c-1.38,0 -2.5,1.12 -2.5,2.5C1.5,12.88 2.62,14 4,14h2v9h2v-9h2c1.38,0 2.5,-1.12 2.5,-2.5C12.5,10.12 11.38,9 10,9zM4,6C3.72,6 3.5,5.78 3.5,5.5S3.72,5 4,5h6c0.28,0 0.5,0.22 0.5,0.5S10.28,6 10,6H4zM10,12H4c-0.28,0 -0.5,-0.22 -0.5,-0.5S3.72,11 4,11h6c0.28,0 0.5,0.22 0.5,0.5S10.28,12 10,12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/task.xml b/compose/material/material/icons/generator/raw-icons/twotone/task.xml
deleted file mode 100644
index 83cc73f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/task.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9V4H6v16h12V9H13zM10.94,18L7.4,14.46l1.41,-1.41l2.12,2.12l4.24,-4.24l1.41,1.41L10.94,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM18,20H6V4h7v5h5V20zM8.82,13.05L7.4,14.46L10.94,18l5.66,-5.66l-1.41,-1.41l-4.24,4.24L8.82,13.05z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/task_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/task_alt.xml
deleted file mode 100644
index 20fd5c9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/task_alt.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,5.18L10.59,16.6l-4.24,-4.24l1.41,-1.41l2.83,2.83l10,-10L22,5.18zM19.79,10.22C19.92,10.79 20,11.39 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.42 3.58,-8 8,-8c1.58,0 3.04,0.46 4.28,1.25l1.44,-1.44C16.1,2.67 14.13,2 12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10c0,-1.19 -0.22,-2.33 -0.6,-3.39L19.79,10.22z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/taxi_alert.xml b/compose/material/material/icons/generator/raw-icons/twotone/taxi_alert.xml
deleted file mode 100644
index a4019ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/taxi_alert.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h14v-5H4V18zM15.5,14c0.83,0 1.5,0.67 1.5,1.5S16.33,17 15.5,17S14,16.33 14,15.5S14.67,14 15.5,14zM6.5,14C7.33,14 8,14.67 8,15.5S7.33,17 6.5,17S5,16.33 5,15.5S5.67,14 6.5,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,15.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,18H4v-5h14c-1.91,0 -3.63,-0.76 -4.89,-2H4.81l1.04,-3h5.44C11.1,7.37 11,6.7 11,6s0.1,-1.37 0.29,-2H8v2H5.5C4.84,6 4.29,6.42 4.08,7.01L2,13v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-0.09,-0.27C19.3,12.9 18.66,13 18,13V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,1c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,1 18,1zM18.5,3v4h-1V3H18.5zM18.5,9h-1V8h1V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/temple_buddhist.xml b/compose/material/material/icons/generator/raw-icons/twotone/temple_buddhist.xml
deleted file mode 100644
index bfc1861..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/temple_buddhist.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.33l-2,2.67l4,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,9h8v2h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20h3v-2c0,-1.65 1.35,-3 3,-3c1.65,0 3,1.35 3,3v2h3v-7H6V20z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9.02c0,1.09 -0.89,1.98 -1.98,1.98H18V8.86c1.72,-0.44 3,-1.99 3,-3.84V5l-2,0.02C19,6.11 18.11,7 17.02,7H16.5L12,1L7.5,7H6.98C5.89,7 5,6.11 5,5.02H3c0,1.86 1.28,3.4 3,3.84V11H4.98C3.89,11 3,10.11 3,9.02H1c0,1.86 1.28,3.4 3,3.84V22h7v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h7v-9.14c1.72,-0.44 3,-1.99 3,-3.84V9L21,9.02zM12,4.33L14,7h-4L12,4.33zM8,9h8v2H8V9zM18,20h-3v-2c0,-1.65 -1.35,-3 -3,-3c-1.65,0 -3,1.35 -3,3v2H6v-7h12V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/temple_hindu.xml b/compose/material/material/icons/generator/raw-icons/twotone/temple_hindu.xml
deleted file mode 100644
index 7105346..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/temple_hindu.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.51,5l-3.02,0l-0.6,2l4.22,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.71,9l-5.42,0l-0.6,2l6.62,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.91,13l-7.82,0l-0.6,2l-3.49,0l0,5l5,0l0,-5l6,0l0,5l5,0l0,-5l-3.49,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,11v2h-2L15,3V1h-2v2h-2.03V1h-2v2.12L6,13H4v-2H2v11h9v-5h2v5h9V11H20zM10.49,5h3.02l0.6,2H9.89L10.49,5zM9.29,9h5.42l0.6,2H8.69L9.29,9zM20,20h-5v-5H9v5H4v-5h3.49l0.6,-2h7.82l0.6,2H20V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/terminal.xml b/compose/material/material/icons/generator/raw-icons/twotone/terminal.xml
deleted file mode 100644
index bdace71..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/terminal.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V8H4V18zM12,15h6v2h-6V15zM6.09,10.41L7.5,9l4,4l-4,4l-1.41,-1.41L8.67,13L6.09,10.41z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.89,4 2,4.9 2,6v12c0,1.1 0.89,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.11,4 20,4zM20,18H4V8h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,17l4,-4l-4,-4l-1.41,1.41l2.58,2.59l-2.58,2.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/terrain.xml b/compose/material/material/icons/generator/raw-icons/twotone/terrain.xml
deleted file mode 100644
index eaac908..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/terrain.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h3.04l-1.52,-2.03z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.78,11.63l1.25,1.67L14,9.33 19,16h-8.46l-4.01,-5.37L1,18h22L14,6l-4.22,5.63zM5,16l1.52,-2.03L8.04,16H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_decrease.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_decrease.xml
deleted file mode 100644
index d62489b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_decrease.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M0.99,19h2.42l1.27,-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19zM5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41zM23,11v2h-8v-2H23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_fields.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_fields.xml
deleted file mode 100644
index a05acc0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_fields.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12h3v7h3v-7h3L21.5,9h-9zM15.5,4h-13v3h5v12h3L10.5,7h5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_format.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_format.xml
deleted file mode 100644
index 79b414c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_format.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,17v2h14v-2L5,17zM9.5,12.8h5l0.9,2.2h2.1L12.75,4h-1.5L6.5,15h2.1l0.9,-2.2zM12,5.98L13.87,11h-3.74L12,5.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_increase.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_increase.xml
deleted file mode 100644
index b06c3ad..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_increase.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1.99,19h2.42l1.27,-3.58h5.65L12.59,19h2.42L9.75,5h-2.5L1.99,19zM6.41,13.39L8.44,7.6h0.12l2.03,5.79H6.41zM20,11h3v2h-3v3h-2v-3h-3v-2h3V8h2V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_rotate_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_rotate_up.xml
deleted file mode 100644
index 7c880d8..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_rotate_up.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4l-3,3h2v13h2L19,7h2l-3,-3zM11.8,15.5v-5l2.2,-0.9L14,7.5L3,12.25v1.5l11,4.75v-2.1l-2.2,-0.9zM4.98,13L10,11.13v3.74L4.98,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_rotate_vertical.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_rotate_vertical.xml
deleted file mode 100644
index 037c1a3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_rotate_vertical.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.75,5h-1.5L9.5,16h2.1l0.9,-2.2h5l0.9,2.2h2.1L15.75,5zM13.13,12L15,6.98 16.87,12h-3.74zM6,20l3,-3L7,17L7,4L5,4v13L3,17l3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_angledown.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_angledown.xml
deleted file mode 100644
index 9c2835f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_angledown.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,21v-4.24l-1.41,1.41 -9.2,-9.19 -1.41,1.41 9.19,9.19L10.76,21L15,21zM11.25,8.48l3.54,3.54 -0.92,2.19 1.48,1.48 4.42,-11.14 -1.06,-1.05L7.57,7.92 9.06,9.4l2.19,-0.92zM17.84,5.43l-2.23,4.87 -2.64,-2.64 4.87,-2.23z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_angleup.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_angleup.xml
deleted file mode 100644
index 3690110..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_angleup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.76,9l1.41,1.41 -9.19,9.19 1.41,1.41 9.19,-9.19L21,13.24L21,9h-4.24zM8.48,12.75l3.54,-3.54 2.19,0.92 1.48,-1.48L4.56,4.23 3.5,5.29l4.42,11.14 1.48,-1.48 -0.92,-2.2zM7.66,11.03L5.43,6.16l4.87,2.23 -2.64,2.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_down.xml
deleted file mode 100644
index 060ea6f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_down.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,20l3,-3L7,17L7,4L5,4v13L3,17l3,3zM12.2,8.5v5l-2.2,0.9v2.1l11,-4.75v-1.5L10,5.5v2.1l2.2,0.9zM19.02,11L14,12.87L14,9.13L19.02,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_none.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_none.xml
deleted file mode 100644
index ad74a29..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_rotation_none.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,18l-3,-3v2H5v2h13v2l3,-3zM9.5,11.8h5l0.9,2.2h2.1L12.75,3h-1.5L6.5,14h2.1l0.9,-2.2zM12,4.98L13.87,10h-3.74L12,4.98z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/text_snippet.xml b/compose/material/material/icons/generator/raw-icons/twotone/text_snippet.xml
deleted file mode 100644
index e5e016f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/text_snippet.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5M7,15h10v2H7V15zM7,11h10v2H7V11zM7,7h7v2H7V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5M14.17,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V9.83c0,-0.53 -0.21,-1.04 -0.59,-1.41l-4.83,-4.83C15.21,3.21 14.7,3 14.17,3L14.17,3zM7,15h10v2H7V15zM7,11h10v2H7V11zM7,7h7v2H7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/textsms.xml b/compose/material/material/icons/generator/raw-icons/twotone/textsms.xml
deleted file mode 100644
index 8e9c223..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/textsms.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18l2,-2h14L20,4L4,4v14zM15,9h2v2h-2L15,9zM11,9h2v2h-2L11,9zM7,9h2v2L7,11L7,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -2,0.9 -2,2v18l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L6,16l-2,2L4,4h16v12zM7,9h2v2L7,11zM11,9h2v2h-2zM15,9h2v2h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/texture.xml b/compose/material/material/icons/generator/raw-icons/twotone/texture.xml
deleted file mode 100644
index d2bbf069..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/texture.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.88,3L3,11.88v2.83L14.71,3zM3,5v2l4,-4L5,3c-1.1,0 -2,0.9 -2,2zM19.51,3.08L3.08,19.51c0.09,0.34 0.27,0.65 0.51,0.9 0.25,0.24 0.56,0.42 0.9,0.51L20.93,4.49c-0.19,-0.69 -0.73,-1.23 -1.42,-1.41zM21,9.29L9.29,21h2.83L21,12.12zM20.41,20.41c0.37,-0.36 0.59,-0.86 0.59,-1.41v-2l-4,4h2c0.55,0 1.05,-0.22 1.41,-0.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/theater_comedy.xml b/compose/material/material/icons/generator/raw-icons/twotone/theater_comedy.xml
deleted file mode 100644
index 0b83dae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/theater_comedy.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,10.81C14.55,9.8 15.64,9 16.99,9c1.38,0 2.5,0.84 2.5,1.88H14.5v1.22c0.69,0.55 1.55,0.9 2.5,0.9c2.21,0 4,-1.79 4,-4V4h-8v3.5h1.5V10.81zM19,5.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S18.45,5.5 19,5.5zM14,6.5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1s-0.45,1 -1,1S14,7.05 14,6.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,2v5.5h2V4h8v5c0,2.21 -1.79,4 -4,4c-0.95,0 -1.81,-0.35 -2.5,-0.9v2.35C15.26,14.8 16.11,15 17,15c3.31,0 6,-2.69 6,-6V2H11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,6.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.99,9c-1.35,0 -2.44,0.8 -2.49,1.81v0.07h4.99C19.49,9.84 18.37,9 16.99,9z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,16c0,3.31 2.69,6 6,6s6,-2.69 6,-6V9H1V16zM3,11h8v5c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4V11z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20c2.21,0 4,-1.79 4,-4v-5H3v5C3,18.21 4.79,20 7,20zM7,17.88c-1.38,0 -2.5,-0.84 -2.5,-1.88h5C9.5,17.04 8.38,17.88 7,17.88zM9,12.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S8.45,12.5 9,12.5zM5,12.5c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S4.45,12.5 5,12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13.5m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17.88c1.38,0 2.5,-0.84 2.5,-1.88h-5C4.5,17.04 5.62,17.88 7,17.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/theaters.xml b/compose/material/material/icons/generator/raw-icons/twotone/theaters.xml
deleted file mode 100644
index 533eb26..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/theaters.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,3v2h-2L16,3L8,3v2L6,5L6,3L4,3v18h2v-2h2v2h8v-2h2v2h2L20,3h-2zM8,17L6,17v-2h2v2zM8,13L6,13v-2h2v2zM8,9L6,9L6,7h2v2zM14,19h-4L10,5h4v14zM18,17h-2v-2h2v2zM18,13h-2v-2h2v2zM18,9h-2L16,7h2v2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,5h4v14h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thermostat.xml b/compose/material/material/icons/generator/raw-icons/twotone/thermostat.xml
deleted file mode 100644
index b67ee87..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thermostat.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,13L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v8c-1.21,0.91 -2,2.37 -2,4 0,2.76 2.24,5 5,5s5,-2.24 5,-5c0,-1.63 -0.79,-3.09 -2,-4zM11,5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1h-1v1h1v2h-1v1h1v2h-2L11,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thermostat_auto.xml b/compose/material/material/icons/generator/raw-icons/twotone/thermostat_auto.xml
deleted file mode 100644
index 936d572..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thermostat_auto.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.8,13.6L9,13V6c0,-0.55 -0.45,-1 -1,-1S7,5.45 7,6v7l-0.8,0.6C5.45,14.16 5,15.06 5,16h6C11,15.06 10.55,14.17 9.8,13.6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,12V6c0,-1.66 -1.34,-3 -3,-3S5,4.34 5,6v6c-1.21,0.91 -2,2.37 -2,4c0,1.12 0.38,2.14 1,2.97V19h0.02c0.91,1.21 2.35,2 3.98,2s3.06,-0.79 3.98,-2H12v-0.03c0.62,-0.83 1,-1.85 1,-2.97C13,14.37 12.21,12.91 11,12zM5,16c0,-0.94 0.45,-1.84 1.2,-2.4L7,13V6c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v7l0.8,0.6c0.75,0.57 1.2,1.46 1.2,2.4H5zM18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22L18.62,4zM16.47,9.39l1.31,-3.72h0.08l1.31,3.72H16.47z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thumb_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/thumb_down.xml
deleted file mode 100644
index 8bd0275..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thumb_down.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12v2h9l-1.34,5.34L15,15V5H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3L6,3c-0.83,0 -1.54,0.5 -1.84,1.22l-3.02,7.05c-0.09,0.23 -0.14,0.47 -0.14,0.73v2c0,1.1 0.9,2 2,2h6.31l-0.95,4.57 -0.03,0.32c0,0.41 0.17,0.79 0.44,1.06L9.83,23l6.59,-6.59c0.36,-0.36 0.58,-0.86 0.58,-1.41L17,5c0,-1.1 -0.9,-2 -2,-2zM15,15l-4.34,4.34L12,14L3,14v-2l3,-7h9v10zM19,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thumb_down_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/thumb_down_alt.xml
deleted file mode 100644
index 652cb29..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thumb_down_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12v2h8.77l-1.11,5.34L15,15V5H6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3L6,3c-0.83,0 -1.54,0.5 -1.84,1.22l-3.02,7.05c-0.09,0.23 -0.14,0.47 -0.14,0.73v2c0,1.1 0.9,2 2,2h6.31l-0.95,4.57 -0.03,0.32c0,0.41 0.17,0.79 0.44,1.06L9.83,23l6.58,-6.59c0.37,-0.36 0.59,-0.86 0.59,-1.41L17,5c0,-1.1 -0.9,-2 -2,-2zM15,15l-4.34,4.34L11.77,14L3,14v-2l3,-7h9v10zM19,3h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thumb_down_off_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/thumb_down_off_alt.xml
deleted file mode 100644
index 2c203db..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thumb_down_off_alt.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,12l0,2l9,0l-1.34,5.34l4.34,-4.34l0,-10l-9,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h4v12h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,3H6C5.17,3 4.46,3.5 4.16,4.22l-3.02,7.05C1.05,11.5 1,11.74 1,12v2c0,1.1 0.9,2 2,2h6.31l-0.95,4.57l-0.03,0.32c0,0.41 0.17,0.79 0.44,1.06L9.83,23l6.59,-6.59C16.78,16.05 17,15.55 17,15V5C17,3.9 16.1,3 15,3zM15,15l-4.34,4.34L12,14H3v-2l3,-7h9V15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thumb_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/thumb_up.xml
deleted file mode 100644
index 4a1a9b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thumb_up.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,12v-2h-9l1.34,-5.34L9,9v10h9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,21h9c0.83,0 1.54,-0.5 1.84,-1.22l3.02,-7.05c0.09,-0.23 0.14,-0.47 0.14,-0.73v-2c0,-1.1 -0.9,-2 -2,-2h-6.31l0.95,-4.57 0.03,-0.32c0,-0.41 -0.17,-0.79 -0.44,-1.06L14.17,1 7.58,7.59C7.22,7.95 7,8.45 7,9v10c0,1.1 0.9,2 2,2zM9,9l4.34,-4.34L12,10h9v2l-3,7H9V9zM1,9h4v12H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thumb_up_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/thumb_up_alt.xml
deleted file mode 100644
index f5c3c60..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thumb_up_alt.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.34,4.66L9,9v10h9l3,-7v-2h-8.77z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8h-6.31l0.95,-4.57 0.03,-0.32c0,-0.41 -0.17,-0.79 -0.44,-1.06L14.17,1 7.59,7.59C7.22,7.95 7,8.45 7,9v10c0,1.1 0.9,2 2,2h9c0.83,0 1.54,-0.5 1.84,-1.22l3.02,-7.05c0.09,-0.23 0.14,-0.47 0.14,-0.73v-2c0,-1.1 -0.9,-2 -2,-2zM21,12l-3,7L9,19L9,9l4.34,-4.34L12.23,10L21,10v2zM1,9h4v12L1,21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thumb_up_off_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/thumb_up_off_alt.xml
deleted file mode 100644
index e98a89b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thumb_up_off_alt.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.34,4.66l-4.34,4.34l0,10l9,0l3,-7l0,-2l-8.77,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,8h-6.31l0.95,-4.57l0.03,-0.32c0,-0.41 -0.17,-0.79 -0.44,-1.06L14.17,1L7.59,7.59C7.22,7.95 7,8.45 7,9v10c0,1.1 0.9,2 2,2h9c0.83,0 1.54,-0.5 1.84,-1.22l3.02,-7.05C22.95,12.5 23,12.26 23,12v-2C23,8.9 22.1,8 21,8zM21,12l-3,7H9V9l4.34,-4.34L12.23,10H21V12z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9h4v12h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thumbs_up_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/thumbs_up_down.xml
deleted file mode 100644
index a4c1a9f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thumbs_up_down.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c0,-0.55 -0.45,-1 -1,-1L5.82,5l0.66,-3.18 0.02,-0.23c0,-0.31 -0.13,-0.59 -0.33,-0.8L5.38,0 0.44,4.94C0.17,5.21 0,5.59 0,6v6.5c0,0.83 0.67,1.5 1.5,1.5h6.75c0.62,0 1.15,-0.38 1.38,-0.91l2.26,-5.29c0.07,-0.17 0.11,-0.36 0.11,-0.55L12,6zM10,7.13L7.92,12L2,12L2,6.21l1.93,-1.93L3.36,7L10,7v0.13zM22.5,10h-6.75c-0.62,0 -1.15,0.38 -1.38,0.91l-2.26,5.29c-0.07,0.17 -0.11,0.36 -0.11,0.55L12,18c0,0.55 0.45,1 1,1h5.18l-0.66,3.18 -0.02,0.24c0,0.31 0.13,0.59 0.33,0.8l0.79,0.78 4.94,-4.94c0.27,-0.27 0.44,-0.65 0.44,-1.06v-6.5c0,-0.83 -0.67,-1.5 -1.5,-1.5zM22,17.79l-1.93,1.93 0.57,-2.72L14,17v-0.13L16.08,12L22,12v5.79z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.93,4.28L2,6.21V12h5.92L10,7.13V7H3.36zM14,16.87V17h6.64l-0.57,2.72L22,17.79V12h-5.92z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/thunderstorm.xml b/compose/material/material/icons/generator/raw-icons/twotone/thunderstorm.xml
deleted file mode 100644
index ba40a82..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/thunderstorm.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.73,9.01L16.2,8.87l-0.25,-1.52C15.63,5.44 13.94,4 12,4c-1.44,0 -2.77,0.78 -3.48,2.04L8.03,6.91L7.04,7.04C5.31,7.27 4,8.76 4,10.5C4,12.43 5.57,14 7.5,14h10c1.38,0 2.5,-1.12 2.5,-2.5C20,10.22 19.01,9.13 17.73,9.01z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.92,7.02C17.45,4.18 14.97,2 12,2C9.82,2 7.83,3.18 6.78,5.06C4.09,5.41 2,7.74 2,10.5C2,13.53 4.47,16 7.5,16h10c2.48,0 4.5,-2.02 4.5,-4.5C22,9.16 20.21,7.23 17.92,7.02zM17.5,14h-10C5.57,14 4,12.43 4,10.5c0,-1.74 1.31,-3.23 3.04,-3.46l0.99,-0.13l0.49,-0.87C9.23,4.78 10.56,4 12,4c1.94,0 3.63,1.44 3.95,3.35l0.25,1.52l1.54,0.14C19.01,9.13 20,10.22 20,11.5C20,12.88 18.88,14 17.5,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.8,17l-2.9,3.32l2,1l-2.35,2.68l2.65,0l2.9,-3.32l-2,-1l2.35,-2.68z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/time_to_leave.xml b/compose/material/material/icons/generator/raw-icons/twotone/time_to_leave.xml
deleted file mode 100644
index efb02f3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/time_to_leave.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.12,11l-0.12,0.34L5,16h14v-4.66l-0.12,-0.34L5.12,11zM7.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S6.67,12 7.5,12s1.5,0.67 1.5,1.5S8.33,15 7.5,15zM16.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,5.01C18.72,4.42 18.16,4 17.5,4h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,11v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.85,6h10.29l1.04,3H5.81l1.04,-3zM19,16H5v-4.66l0.12,-0.34h13.77l0.11,0.34V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timelapse.xml b/compose/material/material/icons/generator/raw-icons/twotone/timelapse.xml
deleted file mode 100644
index e5276e9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timelapse.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3.99c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM16.25,16.23c-2.35,2.34 -6.15,2.34 -8.49,0L12,11.99v-6c1.54,0 3.07,0.59 4.24,1.76 2.35,2.34 2.35,6.14 0.01,8.48z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.24,7.75c-1.17,-1.17 -2.7,-1.76 -4.24,-1.76v6l-4.24,4.24c2.34,2.34 6.14,2.34 8.49,0 2.34,-2.34 2.34,-6.14 -0.01,-8.48zM12,1.99c-5.52,0 -10,4.48 -10,10s4.48,10 10,10 10,-4.48 10,-10 -4.48,-10 -10,-10zM12,19.99c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timeline.xml b/compose/material/material/icons/generator/raw-icons/twotone/timeline.xml
deleted file mode 100644
index 978339f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timeline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,8c0,1.1 -0.9,2 -2,2c-0.18,0 -0.35,-0.02 -0.51,-0.07l-3.56,3.55C16.98,13.64 17,13.82 17,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.18 0.02,-0.36 0.07,-0.52l-2.55,-2.55C10.36,10.98 10.18,11 10,11c-0.18,0 -0.36,-0.02 -0.52,-0.07l-4.55,4.56C4.98,15.65 5,15.82 5,16c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2c0.18,0 0.35,0.02 0.51,0.07l4.56,-4.55C8.02,9.36 8,9.18 8,9c0,-1.1 0.9,-2 2,-2s2,0.9 2,2c0,0.18 -0.02,0.36 -0.07,0.52l2.55,2.55C14.64,12.02 14.82,12 15,12c0.18,0 0.36,0.02 0.52,0.07l3.55,-3.56C19.02,8.35 19,8.18 19,8c0,-1.1 0.9,-2 2,-2S23,6.9 23,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timer.xml b/compose/material/material/icons/generator/raw-icons/twotone/timer.xml
deleted file mode 100644
index b87c567..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timer.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.87,0 -7,3.13 -7,7s3.13,7 7,7s7,-3.13 7,-7S15.87,6 12,6zM13,14h-2V8h2V14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,1h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.03,7.39l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9c0,4.97 4.02,9 9,9s9,-4.03 9,-9C21,10.88 20.26,8.93 19.03,7.39zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7s7,3.13 7,7S15.87,20 12,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8h2v6h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timer_10.xml b/compose/material/material/icons/generator/raw-icons/twotone/timer_10.xml
deleted file mode 100644
index 9699552..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timer_10.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.99,18h2L4.99,6h-0.25L-0.01,7.72L-0.01,9.4l3,-1zM12.58,6.17c-0.47,-0.18 -1.01,-0.27 -1.59,-0.27s-1.11,0.09 -1.59,0.27c-0.48,0.18 -0.89,0.47 -1.23,0.88 -0.34,0.41 -0.6,0.93 -0.79,1.59 -0.18,0.65 -0.28,1.45 -0.28,2.39v1.92c0,0.94 0.09,1.74 0.28,2.39 0.19,0.66 0.45,1.19 0.8,1.6 0.34,0.41 0.75,0.71 1.23,0.89 0.48,0.18 1.01,0.28 1.59,0.28 0.59,0 1.12,-0.09 1.59,-0.28 0.48,-0.18 0.88,-0.48 1.22,-0.89 0.34,-0.41 0.6,-0.94 0.78,-1.6 0.18,-0.65 0.28,-1.45 0.28,-2.39v-1.92c0,-0.94 -0.09,-1.74 -0.28,-2.39 -0.18,-0.66 -0.44,-1.19 -0.78,-1.59s-0.75,-0.7 -1.23,-0.88zM12.9,13.22h-0.01c0,0.6 -0.04,1.11 -0.12,1.53 -0.08,0.42 -0.2,0.76 -0.36,1.02 -0.16,0.26 -0.36,0.45 -0.59,0.57s-0.51,0.18 -0.82,0.18c-0.3,0 -0.58,-0.06 -0.82,-0.18s-0.44,-0.31 -0.6,-0.57c-0.16,-0.26 -0.29,-0.6 -0.38,-1.02 -0.09,-0.42 -0.13,-0.93 -0.13,-1.53v-2.5c0,-0.6 0.04,-1.11 0.13,-1.52 0.09,-0.41 0.21,-0.74 0.38,-1 0.16,-0.25 0.36,-0.43 0.6,-0.55 0.24,-0.11 0.51,-0.17 0.81,-0.17 0.31,0 0.58,0.06 0.81,0.17 0.24,0.11 0.44,0.29 0.6,0.55 0.16,0.25 0.29,0.58 0.37,0.99 0.08,0.41 0.13,0.92 0.13,1.52v2.51zM23.14,13.63c-0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23 -0.23,-0.08 -0.41,-0.16 -0.55,-0.25 -0.14,-0.09 -0.23,-0.19 -0.28,-0.3 -0.05,-0.11 -0.08,-0.24 -0.08,-0.39 0,-0.14 0.03,-0.28 0.09,-0.41 0.06,-0.13 0.15,-0.25 0.27,-0.34 0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11 0.19,0.07 0.35,0.17 0.48,0.29 0.13,0.12 0.22,0.26 0.29,0.42 0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09 -0.16,-0.34 -0.39,-0.63 -0.69,-0.88s-0.66,-0.44 -1.09,-0.59c-0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21 -0.41,0.14 -0.77,0.33 -1.06,0.57s-0.51,0.52 -0.67,0.84c-0.16,0.32 -0.23,0.65 -0.23,1.01s0.08,0.69 0.23,0.96c0.15,0.28 0.36,0.52 0.64,0.73 0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34s0.07,0.25 0.07,0.39c0,0.32 -0.13,0.57 -0.4,0.77 -0.27,0.2 -0.66,0.29 -1.17,0.29 -0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44 -0.11,-0.18 -0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05 0.16,0.34 0.39,0.65 0.7,0.93 0.31,0.27 0.69,0.49 1.15,0.66 0.46,0.17 0.98,0.25 1.58,0.25 0.53,0 1.01,-0.06 1.44,-0.19s0.8,-0.31 1.11,-0.54c0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02 -0.14,-0.28 -0.35,-0.53 -0.63,-0.74z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timer_10_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/timer_10_select.xml
deleted file mode 100644
index ca5d11a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timer_10_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,8v8h-3V8H13M13,5h-3C8.34,5 7,6.34 7,8v8c0,1.66 1.34,3 3,3h3c1.66,0 3,-1.34 3,-3V8C16,6.34 14.66,5 13,5zM1,8h2v11h3V5H1V8zM18.5,11c-0.83,0 -1.5,0.68 -1.5,1.5v2c0,0.82 0.67,1.5 1.5,1.5H21v1h-4v2h4.5c0.83,0 1.5,-0.67 1.5,-1.5v-2c0,-0.83 -0.67,-1.5 -1.5,-1.5H19v-1h4v-2H18.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timer_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/timer_3.xml
deleted file mode 100644
index 9333722..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timer_3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.46,10.8c0.12,-0.1 0.27,-0.18 0.45,-0.24s0.4,-0.09 0.64,-0.09c0.25,0 0.47,0.04 0.66,0.11 0.19,0.07 0.35,0.17 0.48,0.29s0.22,0.26 0.29,0.42c0.06,0.16 0.1,0.32 0.1,0.49h1.95c0,-0.39 -0.08,-0.75 -0.24,-1.09 -0.16,-0.34 -0.39,-0.63 -0.69,-0.88 -0.3,-0.25 -0.66,-0.44 -1.09,-0.59 -0.43,-0.15 -0.92,-0.22 -1.46,-0.22 -0.51,0 -0.98,0.07 -1.39,0.21 -0.41,0.14 -0.77,0.33 -1.06,0.57 -0.29,0.24 -0.51,0.52 -0.67,0.84 -0.16,0.32 -0.23,0.65 -0.23,1.01s0.08,0.68 0.23,0.96c0.15,0.28 0.37,0.52 0.64,0.73 0.27,0.21 0.6,0.38 0.98,0.53 0.38,0.14 0.81,0.26 1.27,0.36 0.39,0.08 0.71,0.17 0.95,0.26s0.43,0.19 0.57,0.29c0.13,0.1 0.22,0.22 0.27,0.34s0.07,0.25 0.07,0.39c0,0.32 -0.13,0.57 -0.4,0.77 -0.27,0.2 -0.66,0.29 -1.17,0.29 -0.22,0 -0.43,-0.02 -0.64,-0.08 -0.21,-0.05 -0.4,-0.13 -0.56,-0.24 -0.17,-0.11 -0.3,-0.26 -0.41,-0.44s-0.17,-0.41 -0.18,-0.67h-1.89c0,0.36 0.08,0.71 0.24,1.05 0.16,0.34 0.39,0.65 0.7,0.93 0.31,0.27 0.69,0.49 1.15,0.66 0.46,0.17 0.98,0.25 1.58,0.25 0.53,0 1.01,-0.06 1.44,-0.19 0.43,-0.13 0.8,-0.31 1.11,-0.54 0.31,-0.23 0.54,-0.51 0.71,-0.83 0.17,-0.32 0.25,-0.67 0.25,-1.06 -0.02,-0.4 -0.09,-0.74 -0.24,-1.02 -0.14,-0.28 -0.35,-0.53 -0.63,-0.74 -0.28,-0.21 -0.61,-0.39 -1.01,-0.53s-0.85,-0.27 -1.35,-0.38c-0.35,-0.07 -0.64,-0.15 -0.87,-0.23s-0.41,-0.16 -0.55,-0.25c-0.14,-0.09 -0.23,-0.19 -0.28,-0.3 -0.05,-0.11 -0.08,-0.24 -0.08,-0.39s0.03,-0.28 0.09,-0.41c0.06,-0.13 0.15,-0.25 0.27,-0.34zM8.12,16.51c-0.29,0 -0.56,-0.04 -0.8,-0.13 -0.24,-0.08 -0.44,-0.2 -0.61,-0.36 -0.17,-0.16 -0.3,-0.34 -0.39,-0.56 -0.09,-0.22 -0.14,-0.46 -0.14,-0.72L4.19,14.74c0,0.55 0.11,1.03 0.32,1.45 0.21,0.42 0.5,0.77 0.86,1.05s0.77,0.49 1.24,0.63 0.96,0.21 1.48,0.21c0.57,0 1.09,-0.08 1.58,-0.23 0.49,-0.15 0.91,-0.38 1.26,-0.68 0.36,-0.3 0.64,-0.66 0.84,-1.1 0.2,-0.43 0.3,-0.93 0.3,-1.48 0,-0.29 -0.04,-0.58 -0.11,-0.86 -0.08,-0.25 -0.19,-0.51 -0.35,-0.76 -0.16,-0.24 -0.36,-0.46 -0.62,-0.65 -0.25,-0.19 -0.56,-0.35 -0.93,-0.48 0.3,-0.14 0.57,-0.3 0.8,-0.5 0.23,-0.2 0.42,-0.41 0.57,-0.64 0.15,-0.23 0.27,-0.46 0.34,-0.71 0.08,-0.24 0.11,-0.49 0.11,-0.73 0,-0.55 -0.09,-1.04 -0.28,-1.46 -0.18,-0.42 -0.44,-0.77 -0.78,-1.06 -0.33,-0.28 -0.73,-0.5 -1.2,-0.64 -0.45,-0.13 -0.97,-0.2 -1.53,-0.2 -0.55,0 -1.06,0.08 -1.52,0.24 -0.47,0.17 -0.87,0.4 -1.2,0.69 -0.33,0.29 -0.6,0.63 -0.78,1.03 -0.2,0.39 -0.29,0.83 -0.29,1.29h1.98c0,-0.26 0.05,-0.49 0.14,-0.69 0.09,-0.2 0.22,-0.38 0.38,-0.52 0.17,-0.14 0.36,-0.25 0.58,-0.33 0.22,-0.08 0.46,-0.12 0.73,-0.12 0.61,0 1.06,0.16 1.36,0.47 0.3,0.31 0.44,0.75 0.44,1.32 0,0.27 -0.04,0.52 -0.12,0.74 -0.08,0.22 -0.21,0.41 -0.38,0.57 -0.17,0.16 -0.38,0.28 -0.63,0.37 -0.25,0.09 -0.55,0.13 -0.89,0.13L6.72,11.09v1.57L7.9,12.66c0.34,0 0.64,0.04 0.91,0.11 0.27,0.08 0.5,0.19 0.69,0.35 0.19,0.16 0.34,0.36 0.44,0.61 0.1,0.24 0.16,0.54 0.16,0.87 0,0.62 -0.18,1.09 -0.53,1.42 -0.35,0.33 -0.84,0.49 -1.45,0.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timer_3_select.xml b/compose/material/material/icons/generator/raw-icons/twotone/timer_3_select.xml
deleted file mode 100644
index c0dbfffe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timer_3_select.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11v2h-4v1h2.5c0.83,0 1.5,0.68 1.5,1.5v2c0,0.83 -0.67,1.5 -1.5,1.5H15v-2h4v-1h-2.5c-0.82,0 -1.5,-0.68 -1.5,-1.5v-2c0,-0.82 0.68,-1.5 1.5,-1.5H21zM4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0 3,-1.34 3,-3v-1.9c0,-1.16 -0.94,-2.1 -2.1,-2.1c1.16,0 2.1,-0.94 2.1,-2.1V8c0,-1.66 -1.34,-3 -3,-3H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/timer_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/timer_off.xml
deleted file mode 100644
index 8897110..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/timer_off.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,20c1.47,0 2.83,-0.45 3.95,-1.22L6.22,9.05C5.45,10.17 5,11.53 5,13C5,16.87 8.13,20 12,20z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-0.94,0 -1.83,0.19 -2.65,0.52L11,8.17V8h2v2.17l5.48,5.48C18.81,14.83 19,13.94 19,13C19,9.13 15.87,6 12,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,1h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c3.87,0 7,3.13 7,7c0,0.94 -0.19,1.83 -0.52,2.65l1.5,1.5C20.63,15.91 21,14.5 21,13c0,-2.12 -0.74,-4.07 -1.97,-5.61l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-1.5,0 -2.91,0.37 -4.15,1.02l1.5,1.5C10.17,6.19 11.06,6 12,6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8l0,0.17l2,2l0,-2.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12 3,10.98 3,13c0,4.97 4.02,9 9,9c2.02,0 3.88,-0.67 5.38,-1.79l2.4,2.4l1.41,-1.41L2.81,2.81zM12,20c-3.87,0 -7,-3.13 -7,-7c0,-1.47 0.45,-2.83 1.22,-3.95l9.73,9.73C14.83,19.55 13.47,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tips_and_updates.xml b/compose/material/material/icons/generator/raw-icons/twotone/tips_and_updates.xml
deleted file mode 100644
index 0223a6d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tips_and_updates.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,9.5C14.5,6.47 12.03,4 9,4S3.5,6.47 3.5,9.5c0,2.47 1.49,3.89 2.35,4.5h6.3C13.01,13.39 14.5,11.97 14.5,9.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,20h4c0,1.1 -0.9,2 -2,2S7,21.1 7,20zM5,19h8v-2H5V19zM16.5,9.5c0,3.82 -2.66,5.86 -3.77,6.5H5.27C4.16,15.36 1.5,13.32 1.5,9.5C1.5,5.36 4.86,2 9,2S16.5,5.36 16.5,9.5zM14.5,9.5C14.5,6.47 12.03,4 9,4S3.5,6.47 3.5,9.5c0,2.47 1.49,3.89 2.35,4.5h6.3C13.01,13.39 14.5,11.97 14.5,9.5zM21.37,7.37L20,8l1.37,0.63L22,10l0.63,-1.37L24,8l-1.37,-0.63L22,6L21.37,7.37zM19,6l0.94,-2.06L22,3l-2.06,-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tire_repair.xml b/compose/material/material/icons/generator/raw-icons/twotone/tire_repair.xml
deleted file mode 100644
index ee9870f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tire_repair.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,8c-0.55,0 -1,-0.45 -1,-1c0,-0.28 0.11,-0.53 0.29,-0.71c0.4,-0.4 2.46,-1.04 2.46,-1.04s-0.64,2.06 -1.04,2.46C19.53,7.89 19.28,8 19,8zM20,13v5c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3v-2c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v3c0,1.1 -0.9,2 -2,2H4c-1.1,0 -2,-0.9 -2,-2V5c0,-1.1 0.9,-2 2,-2h6c1.1,0 2,0.9 2,2v8.17c0.31,-0.11 0.65,-0.17 1,-0.17c1.65,0 3,1.35 3,3v2c0,0.55 0.45,1 1,1s1,-0.45 1,-1v-5h-1l0,-1.42c-1.77,-0.77 -3,-2.53 -3,-4.58c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.05 -1.23,3.81 -3,4.58L21,13H20zM22,7c0,-1.66 -1.34,-3 -3,-3s-3,1.34 -3,3s1.34,3 3,3S22,8.66 22,7zM10,7L8,9V6.17L9.17,5H4.83L6,6.17V9L4,7v2.17l2,2V14l-2,-2v2.17l2,2V19l-2,-2v2h6v-2l-2,2v-2.83l2,-2V12l-2,2v-2.83l2,-2V7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,7L8,9V6.17L9.17,5H4.83L6,6.17V9L4,7v2.17l2,2V14l-2,-2v2.17l2,2V19l-2,-2v2h6v-2l-2,2v-2.83l2,-2V12l-2,2v-2.83l2,-2V7zM19,4c-1.66,0 -3,1.34 -3,3s1.34,3 3,3s3,-1.34 3,-3S20.66,4 19,4zM19.71,7.71C19.53,7.89 19.28,8 19,8c-0.55,0 -1,-0.45 -1,-1c0,-0.28 0.11,-0.53 0.29,-0.71c0.4,-0.4 2.46,-1.04 2.46,-1.04S20.11,7.31 19.71,7.71z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/title.xml b/compose/material/material/icons/generator/raw-icons/twotone/title.xml
deleted file mode 100644
index 22a4db1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/title.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,7h5.5v12h3V7H19V4H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/toc.xml b/compose/material/material/icons/generator/raw-icons/twotone/toc.xml
deleted file mode 100644
index e76ad31..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/toc.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9h14L17,7L3,7v2zM3,13h14v-2L3,11v2zM3,17h14v-2L3,15v2zM19,17h2v-2h-2v2zM19,7v2h2L21,7h-2zM19,13h2v-2h-2v2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/today.xml b/compose/material/material/icons/generator/raw-icons/twotone/today.xml
deleted file mode 100644
index 0431482..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/today.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,9h14v10zM19,7L5,7L5,5h14v2zM12,11L7,11v5h5v-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v2H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/toggle_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/toggle_off.xml
deleted file mode 100644
index 11ff1ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/toggle_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8H7c-2.21,0 -4,1.79 -4,4s1.79,4 4,4h10c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4zM7,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6L7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6h10c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM17,16L7,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h10c2.21,0 4,1.79 4,4s-1.79,4 -4,4zM7,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/toggle_on.xml b/compose/material/material/icons/generator/raw-icons/twotone/toggle_on.xml
deleted file mode 100644
index 7dff18c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/toggle_on.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,8L7,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4h10c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4zM17,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,6L7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6h10c3.31,0 6,-2.69 6,-6s-2.69,-6 -6,-6zM17,16L7,16c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h10c2.21,0 4,1.79 4,4s-1.79,4 -4,4zM17,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/token.xml b/compose/material/material/icons/generator/raw-icons/twotone/token.xml
deleted file mode 100644
index 08315df..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/token.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.29l5.91,3.28L14.9,9.24C14.17,8.48 13.14,8 12,8S9.83,8.48 9.1,9.24L6.09,7.57L12,4.29zM11,19.16l-6,-3.33V9.26l3.13,1.74C8.04,11.31 8,11.65 8,12c0,1.86 1.27,3.43 3,3.87V19.16zM10,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,13.1 10,12zM13,19.16v-3.28c1.73,-0.44 3,-2.01 3,-3.87c0,-0.35 -0.04,-0.69 -0.13,-1.01L19,9.26l0,6.57L13,19.16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7l-9,-5L3,7v10l9,5l9,-5L21,7zM12,4.29l5.91,3.28L14.9,9.24C14.17,8.48 13.14,8 12,8S9.83,8.48 9.1,9.24L6.09,7.57L12,4.29zM11,19.16l-6,-3.33V9.26l3.13,1.74C8.04,11.31 8,11.65 8,12c0,1.86 1.27,3.43 3,3.87V19.16zM10,12c0,-1.1 0.9,-2 2,-2s2,0.9 2,2s-0.9,2 -2,2S10,13.1 10,12zM13,19.16v-3.28c1.73,-0.44 3,-2.01 3,-3.87c0,-0.35 -0.04,-0.69 -0.13,-1.01L19,9.26l0,6.57L13,19.16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/toll.xml b/compose/material/material/icons/generator/raw-icons/twotone/toll.xml
deleted file mode 100644
index 0c841c6..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/toll.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM15,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6zM3,12c0,-2.61 1.67,-4.83 4,-5.65L7,4.26C3.55,5.15 1,8.27 1,12c0,3.73 2.55,6.85 6,7.74v-2.09c-2.33,-0.82 -4,-3.04 -4,-5.65z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tonality.xml b/compose/material/material/icons/generator/raw-icons/twotone/tonality.xml
deleted file mode 100644
index 6627619..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tonality.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,12c0,4.08 3.06,7.44 7,7.93V4.07C7.05,4.56 4,7.92 4,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.94,-0.49 -7,-3.85 -7,-7.93s3.05,-7.44 7,-7.93v15.86zM13,4.07c1.03,0.13 2,0.45 2.87,0.93L13,5v-0.93zM13,7h5.24c0.25,0.31 0.48,0.65 0.68,1L13,8L13,7zM13,10h6.74c0.08,0.33 0.15,0.66 0.19,1L13,11v-1zM13,19.93L13,19h2.87c-0.87,0.48 -1.84,0.8 -2.87,0.93zM18.24,17L13,17v-1h5.92c-0.2,0.35 -0.43,0.69 -0.68,1zM19.74,14L13,14v-1h6.93c-0.04,0.34 -0.11,0.67 -0.19,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/topic.xml b/compose/material/material/icons/generator/raw-icons/twotone/topic.xml
deleted file mode 100644
index 48e3046..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/topic.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,18L4,18V6h5.17l2,2H20V18zM18,12H6v-2h12V12zM14,16H6v-2h8V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-8l-2,-2H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16.77c0.68,0 1.23,-0.56 1.23,-1.23V8C22,6.9 21.1,6 20,6zM20,18L4,18V6h5.17l2,2H20V18zM18,12H6v-2h12V12zM14,16H6v-2h8V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tornado.xml b/compose/material/material/icons/generator/raw-icons/twotone/tornado.xml
deleted file mode 100644
index d23302c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tornado.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.1,13l5.8,0l1.74,-3l-9.28,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,18.01l1.74,-3.01l-3.48,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.47,5l1.74,3l11.58,0l1.74,-3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,3l11,19L23,3H1zM12,18.01L10.26,15h3.48L12,18.01zM14.9,13H9.1l-1.74,-3h9.27L14.9,13zM6.21,8L4.47,5h15.06l-1.74,3H6.21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/touch_app.xml b/compose/material/material/icons/generator/raw-icons/twotone/touch_app.xml
deleted file mode 100644
index 2f7cd1e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/touch_app.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.19,12.44l-3.24,-1.62c1.29,-1 2.12,-2.56 2.12,-4.32c0,-3.03 -2.47,-5.5 -5.5,-5.5s-5.5,2.47 -5.5,5.5c0,2.13 1.22,3.98 3,4.89v3.26c-2.08,-0.44 -2.01,-0.44 -2.26,-0.44c-0.53,0 -1.03,0.21 -1.41,0.59L4,16.22l5.09,5.09C9.52,21.75 10.12,22 10.74,22h6.3c0.98,0 1.81,-0.7 1.97,-1.67l0.8,-4.71C20.03,14.32 19.38,13.04 18.19,12.44zM8.07,6.5c0,-1.93 1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5c0,0.95 -0.38,1.81 -1,2.44V6.5c0,-1.38 -1.12,-2.5 -2.5,-2.5c-1.38,0 -2.5,1.12 -2.5,2.5v2.44C8.45,8.31 8.07,7.45 8.07,6.5zM17.84,15.29L17.04,20h-6.3c-0.09,0 -0.17,-0.04 -0.24,-0.1l-3.68,-3.68l4.25,0.89V6.5c0,-0.28 0.22,-0.5 0.5,-0.5c0.28,0 0.5,0.22 0.5,0.5v6h1.76l3.46,1.73C17.69,14.43 17.91,14.86 17.84,15.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.3,14.23l-3.46,-1.73h-1.77v-6c0,-0.28 -0.22,-0.5 -0.5,-0.5c-0.28,0 -0.5,0.22 -0.5,0.5v10.61l-4.25,-0.89l3.68,3.68c0.06,0.06 0.15,0.1 0.24,0.1h6.3l0.8,-4.71C17.91,14.86 17.69,14.43 17.3,14.23z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tour.xml b/compose/material/material/icons/generator/raw-icons/twotone/tour.xml
deleted file mode 100644
index a4a2946..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tour.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,12l0,-6l11.05,0l-1.2,3l1.2,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2,-5L21,4zM7,12V6h11.05l-1.2,3l1.2,3H7zM14,9c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2s0.9,-2 2,-2S14,7.9 14,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/toys.xml b/compose/material/material/icons/generator/raw-icons/twotone/toys.xml
deleted file mode 100644
index cfab0ae..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/toys.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,12H6c-1.1,0 -2,0.9 -2,2c0,0.51 0.2,0.97 0.51,1.32C5.05,14.53 5.97,14 7,14c1.3,0 2.4,0.84 2.82,2h4.37c0.41,-1.16 1.51,-2 2.82,-2c1.03,0 1.95,0.53 2.49,1.32C19.8,14.97 20,14.51 20,14C20,12.9 19.1,12 18,12z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.75,10.08L17.4,6.05C17,4.82 15.85,4 14.56,4H9.44C8.15,4 7,4.82 6.6,6.05L5.81,8.4L4.41,7l0.29,-0.29c0.39,-0.39 0.39,-1.02 0,-1.41c-0.39,-0.39 -1.02,-0.39 -1.41,0l-2,2c-0.39,0.39 -0.39,1.02 0,1.41c0.39,0.39 1.02,0.39 1.41,0L3,8.41l1.79,1.79C3.18,10.72 2,12.22 2,14c0,1.49 0.83,2.78 2.05,3.47C4.27,18.9 5.51,20 7,20c1.3,0 2.4,-0.84 2.82,-2h4.37c0.41,1.16 1.51,2 2.82,2c1.49,0 2.73,-1.1 2.95,-2.53C21.17,16.78 22,15.49 22,14C22,12.05 20.6,10.43 18.75,10.08zM13,6h1.56c0.43,0 0.81,0.27 0.95,0.68L16.61,10H13V6zM8.49,6.68C8.63,6.27 9.01,6 9.44,6H11v4H7.41L7.39,9.98L8.49,6.68zM7,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S7.55,18 7,18zM17,18c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1s1,0.45 1,1S17.55,18 17,18zM19.49,15.32C18.95,14.53 18.03,14 17,14c-1.3,0 -2.4,0.84 -2.82,2H9.82C9.4,14.84 8.3,14 7,14c-1.03,0 -1.95,0.53 -2.49,1.32C4.2,14.97 4,14.51 4,14c0,-1.1 0.9,-2 2,-2h12c1.1,0 2,0.9 2,2C20,14.51 19.8,14.97 19.49,15.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/track_changes.xml b/compose/material/material/icons/generator/raw-icons/twotone/track_changes.xml
deleted file mode 100644
index 0909be1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/track_changes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.07,4.93l-1.41,1.41C19.1,7.79 20,9.79 20,12c0,4.42 -3.58,8 -8,8s-8,-3.58 -8,-8c0,-4.08 3.05,-7.44 7,-7.93v2.02C8.16,6.57 6,9.03 6,12c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-1.66 -0.67,-3.16 -1.76,-4.24l-1.41,1.41C15.55,9.9 16,10.9 16,12c0,2.21 -1.79,4 -4,4s-4,-1.79 -4,-4c0,-1.86 1.28,-3.41 3,-3.86v2.14c-0.6,0.35 -1,0.98 -1,1.72 0,1.1 0.9,2 2,2s2,-0.9 2,-2c0,-0.74 -0.4,-1.38 -1,-1.72V2h-1C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10c0,-2.76 -1.12,-5.26 -2.93,-7.07z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/traffic.xml b/compose/material/material/icons/generator/raw-icons/twotone/traffic.xml
deleted file mode 100644
index 8f485cd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/traffic.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,19h6L15,5L9,5v14zM12,6c0.83,0 1.5,0.67 1.5,1.5S12.83,9 12,9s-1.5,-0.67 -1.5,-1.5S11.17,6 12,6zM12,10.5c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM12,15c0.83,0 1.5,0.67 1.5,1.5S12.83,18 12,18s-1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,5h-3L17,4c0,-0.55 -0.45,-1 -1,-1L8,3c-0.55,0 -1,0.45 -1,1v1L4,5c0,1.86 1.28,3.41 3,3.86L7,10L4,10c0,1.86 1.28,3.41 3,3.86L7,15L4,15c0,1.86 1.28,3.41 3,3.86L7,20c0,0.55 0.45,1 1,1h8c0.55,0 1,-0.45 1,-1v-1.14c1.72,-0.45 3,-2 3,-3.86h-3v-1.14c1.72,-0.45 3,-2 3,-3.86h-3L17,8.86c1.72,-0.45 3,-2 3,-3.86zM15,19L9,19L9,5h6v14zM12,18c0.83,0 1.5,-0.67 1.5,-1.5S12.83,15 12,15s-1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM12,13.5c0.83,0 1.5,-0.67 1.5,-1.5s-0.67,-1.5 -1.5,-1.5 -1.5,0.67 -1.5,1.5 0.67,1.5 1.5,1.5zM12,9c0.83,0 1.5,-0.67 1.5,-1.5S12.83,6 12,6s-1.5,0.67 -1.5,1.5S11.17,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/train.xml b/compose/material/material/icons/generator/raw-icons/twotone/train.xml
deleted file mode 100644
index bcbd923..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/train.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-3.51,0 -4.96,0.48 -5.57,1h11.13c-0.6,-0.52 -2.05,-1 -5.56,-1zM6,15.5c0,0.83 0.67,1.5 1.5,1.5h9c0.83,0 1.5,-0.67 1.5,-1.5L18,12L6,12v3.5zM15.5,13c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM8.5,13c0.83,0 1.5,0.67 1.5,1.5S9.33,16 8.5,16 7,15.33 7,14.5 7.67,13 8.5,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-4,0 -8,0.5 -8,4v9.5C4,17.43 5.57,19 7.5,19L6,20.5v0.5h2l2,-2h4l2,2h2v-0.5L16.5,19c1.93,0 3.5,-1.57 3.5,-3.5L20,6c0,-3.5 -4,-4 -8,-4zM12,4c3.51,0 4.96,0.48 5.57,1L6.43,5c0.61,-0.52 2.06,-1 5.57,-1zM6,7h5v3L6,10L6,7zM18,15.5c0,0.83 -0.67,1.5 -1.5,1.5h-9c-0.83,0 -1.5,-0.67 -1.5,-1.5L6,12h12v3.5zM18,10h-5L13,7h5v3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tram.xml b/compose/material/material/icons/generator/raw-icons/twotone/tram.xml
deleted file mode 100644
index d17a14c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tram.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.97,7h-1.94c-2.75,0.08 -3.62,0.58 -3.9,1h9.74c-0.28,-0.42 -1.15,-0.92 -3.9,-1zM7,16v1c0,0.45 0.3,0.84 0.74,0.95h3.11c-0.22,-0.26 -0.35,-0.59 -0.35,-0.95 0,-0.39 0.15,-0.73 0.39,-1L7,16zM13.5,17c0,0.36 -0.13,0.69 -0.35,0.95h3.11c0.44,-0.11 0.74,-0.5 0.74,-0.95v-1h-3.89c0.24,0.27 0.39,0.61 0.39,1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5l0.75,-1.5L17,3.5L17,2L7,2v1.5h4.75L11,5c-3.13,0.09 -6,0.73 -6,3.5L5,17c0,1.5 1.11,2.73 2.55,2.95L6,21.5v0.5h2l2,-2h4l2,2h2v-0.5l-1.55,-1.55h-0.01,0.01C17.89,19.73 19,18.5 19,17L19,8.5c0,-2.77 -2.87,-3.41 -6,-3.5zM11.03,7h1.94c2.75,0.08 3.62,0.58 3.9,1L7.13,8c0.28,-0.42 1.15,-0.92 3.9,-1zM10.85,17.95L7.74,17.95C7.3,17.84 7,17.45 7,17v-1h3.89c-0.24,0.27 -0.39,0.61 -0.39,1 0,0.36 0.13,0.69 0.35,0.95zM17,17c0,0.45 -0.3,0.84 -0.74,0.95h-3.11c0.22,-0.26 0.35,-0.59 0.35,-0.95 0,-0.39 -0.15,-0.73 -0.39,-1L17,16v1zM17,14L7,14v-4h10v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/transcribe.xml b/compose/material/material/icons/generator/raw-icons/twotone/transcribe.xml
deleted file mode 100644
index fc8b87e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/transcribe.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.48,17.34C13.29,16.73 11.37,16 9,16c-2.37,0 -4.29,0.73 -5.48,1.34C3.2,17.5 3,17.84 3,18.22V19h12v-0.78C15,17.84 14.8,17.5 14.48,17.34z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.93,2c-3.9,3.89 -3.91,9.95 0,14l1.63,-1.63c-2.77,-3.02 -2.77,-7.56 0,-10.74L17.93,2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4S5,6.79 5,9C5,11.21 6.79,13 9,13zM9,7c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2C7,7.9 7.9,7 9,7z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.39,15.56C13.71,14.7 11.53,14 9,14c-2.53,0 -4.71,0.7 -6.39,1.56C1.61,16.07 1,17.1 1,18.22V21h16v-2.78C17,17.1 16.39,16.07 15.39,15.56zM15,19H3v-0.78c0,-0.38 0.2,-0.72 0.52,-0.88C4.71,16.73 6.63,16 9,16c2.37,0 4.29,0.73 5.48,1.34C14.8,17.5 15,17.84 15,18.22V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.92,7.06l-1.68,-1.69c-2.02,2.02 -2.02,5.07 0,7.27l1.68,-1.69C22.08,9.77 22.08,8.24 22.92,7.06z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/transfer_within_a_station.xml b/compose/material/material/icons/generator/raw-icons/twotone/transfer_within_a_station.xml
deleted file mode 100644
index 4b6bb75..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/transfer_within_a_station.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,13.75L14,16.25l2.49,2.5L16.49,17L22,17v-1.5h-5.51zM19.51,19.75L14,19.75v1.5h5.51L19.51,23L22,20.5 19.51,18zM7.5,3.5c0,1.1 0.9,2 2,2s2,-0.9 2,-2 -0.9,-2 -2,-2 -2,0.9 -2,2zM9.55,10.4C10.85,12 12.8,13 15,13v-2c-1.85,0 -3.45,-1 -4.35,-2.45l-0.95,-1.6C9.35,6.35 8.7,6 8,6c-0.25,0 -0.5,0.05 -0.75,0.15L2,8.3L2,13h2L4,9.65l1.75,-0.75L3,23h2.1l1.75,-8L9,17v6h2v-7.55L8.95,13.4l0.6,-3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/transform.xml b/compose/material/material/icons/generator/raw-icons/twotone/transform.xml
deleted file mode 100644
index 067bdfe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/transform.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,4h2L7,1 4,4h2v2L2,6v2h4v8c0,1.1 0.9,2 2,2h8v2h-2l3,3 3,-3h-2v-2h4v-2L8,16L8,4zM18,14L18,8c0,-1.1 -0.9,-2 -2,-2h-6v2h6v6h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/transgender.xml b/compose/material/material/icons/generator/raw-icons/twotone/transgender.xml
deleted file mode 100644
index 864edbf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/transgender.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8c1.93,0 3.5,1.57 3.5,3.5S13.93,15 12,15s-3.5,-1.57 -3.5,-3.5S10.07,8 12,8zM16.53,8.38l3.97,-3.96V7h2V1h-6v2h2.58l-3.97,3.97C14.23,6.36 13.16,6 12,6c-1.16,0 -2.23,0.36 -3.11,0.97L8.24,6.32l1.41,-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42l1.91,1.9L3.99,7.74l1.41,1.41l1.41,-1.41l0.65,0.65C6.86,9.27 6.5,10.34 6.5,11.5c0,2.7 1.94,4.94 4.5,5.41L11,19H9v2h2v2h2v-2h2v-2h-2l0,-2.09c2.56,-0.47 4.5,-2.71 4.5,-5.41C17.5,10.34 17.14,9.27 16.53,8.38z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/transit_enterexit.xml b/compose/material/material/icons/generator/raw-icons/twotone/transit_enterexit.xml
deleted file mode 100644
index 74fa97b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/transit_enterexit.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.98,6L9,12.77V8H6v10h10v-3h-4.85L18,8.03z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/translate.xml b/compose/material/material/icons/generator/raw-icons/twotone/translate.xml
deleted file mode 100644
index 4e7e364..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/translate.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.87,15.07l-2.54,-2.51 0.03,-0.03c1.74,-1.94 2.98,-4.17 3.71,-6.53L17,6L17,4h-7L10,2L8,2v2L1,4v1.99h11.17C11.5,7.92 10.44,9.75 9,11.35 8.07,10.32 7.3,9.19 6.69,8h-2c0.73,1.63 1.73,3.17 2.98,4.56l-5.09,5.02L4,19l5,-5 3.11,3.11 0.76,-2.04zM18.5,10h-2L12,22h2l1.12,-3h4.75L21,22h2l-4.5,-12zM15.88,17l1.62,-4.33L19.12,17h-3.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/travel_explore.xml b/compose/material/material/icons/generator/raw-icons/twotone/travel_explore.xml
deleted file mode 100644
index 93adef5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/travel_explore.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.3,16.9c0.4,-0.7 0.7,-1.5 0.7,-2.4c0,-2.5 -2,-4.5 -4.5,-4.5S11,12 11,14.5s2,4.5 4.5,4.5c0.9,0 1.7,-0.3 2.4,-0.7l3.2,3.2l1.4,-1.4L19.3,16.9zM15.5,17c-1.4,0 -2.5,-1.1 -2.5,-2.5s1.1,-2.5 2.5,-2.5s2.5,1.1 2.5,2.5S16.9,17 15.5,17zM12,20v2C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2c4.84,0 8.87,3.44 9.8,8h-2.07c-0.64,-2.46 -2.4,-4.47 -4.73,-5.41V5c0,1.1 -0.9,2 -2,2h-2v2c0,0.55 -0.45,1 -1,1H8v2h2v3H9l-4.79,-4.79C4.08,10.79 4,11.38 4,12C4,16.41 7.59,20 12,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/trending_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/trending_down.xml
deleted file mode 100644
index 5a417e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/trending_down.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18l2.29,-2.29 -4.88,-4.88 -4,4L2,7.41 3.41,6l6,6 4,-4 6.3,6.29L22,12v6h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/trending_flat.xml b/compose/material/material/icons/generator/raw-icons/twotone/trending_flat.xml
deleted file mode 100644
index cc4128a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/trending_flat.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,12l-4,-4v3H3v2h15v3l4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/trending_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/trending_up.xml
deleted file mode 100644
index 96ed17b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/trending_up.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,6l2.29,2.29 -4.88,4.88 -4,-4L2,16.59 3.41,18l6,-6 4,4 6.3,-6.29L22,12V6h-6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/trip_origin.xml b/compose/material/material/icons/generator/raw-icons/twotone/trip_origin.xml
deleted file mode 100644
index b5a5008..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/trip_origin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/troubleshoot.xml b/compose/material/material/icons/generator/raw-icons/twotone/troubleshoot.xml
deleted file mode 100644
index 97931d3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/troubleshoot.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,20.59l-4.69,-4.69C18.37,14.55 19,12.85 19,11c0,-4.42 -3.58,-8 -8,-8c-4.08,0 -7.44,3.05 -7.93,7h2.02C5.57,7.17 8.03,5 11,5c3.31,0 6,2.69 6,6s-2.69,6 -6,6c-2.42,0 -4.5,-1.44 -5.45,-3.5H3.4C4.45,16.69 7.46,19 11,19c1.85,0 3.55,-0.63 4.9,-1.69L20.59,22L22,20.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.43,9.69l1.22,5.31l1.64,0l1.26,-3.78l0.95,2.28l2,0l0,-1.5l-1,0l-1.25,-3l-1.54,0l-1.12,3.37l-1.24,-5.37l-1.65,0l-1.25,4l-5.45,0l0,1.5l6.55,0z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/try.xml b/compose/material/material/icons/generator/raw-icons/twotone/try.xml
deleted file mode 100644
index 9aacd00..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/try.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16H20V4H4V17.17zM10.43,8.43L12,5l1.57,3.43L17,10l-3.43,1.57L12,15l-1.57,-3.43L7,10L10.43,8.43z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v18l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,15l1.57,-3.43l3.43,-1.57l-3.43,-1.57l-1.57,-3.43l-1.57,3.43l-3.43,1.57l3.43,1.57z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tsunami.xml b/compose/material/material/icons/generator/raw-icons/twotone/tsunami.xml
deleted file mode 100644
index 00b31d9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tsunami.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.04,14c0.47,-0.24 0.68,-0.41 1.3,-0.87c2,1.48 3.07,1.39 3.79,1.32C8.4,13.27 8,11.92 8,10.5c0,-1.67 0.54,-3.21 1.47,-4.46C6.41,7.52 4.3,10.46 4.04,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17.63c-0.66,0.49 -2.92,2.76 -6.67,0C3.43,19.03 2.65,19 2,19v2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0C19.7,20.68 20.84,21 22,21v-2c-0.66,0 -1.5,-0.02 -3.33,-1.37C14.87,20.43 12.54,18.03 12,17.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.33,12H22v-2h-2.67C17.5,10 16,8.5 16,6.67c0,-1.02 0.38,-1.74 1.09,-3.34C15.72,3.12 15.09,3 14,3C7.36,3 2.15,8.03 2.01,14.5c0,0 -0.01,2 -0.01,2c1.16,0 2.3,-0.32 3.33,-0.93c2.06,1.22 4.61,1.22 6.67,0c2.06,1.22 4.61,1.22 6.67,0c1.03,0.61 2.17,0.93 3.33,0.93v-2c-0.66,0 -1.5,-0.02 -3.33,-1.37c-3.8,2.8 -6.12,0.4 -6.67,0c-0.9,0.67 -0.54,0.41 -0.91,0.63C10.39,12.82 10,11.7 10,10.5c0,-2.58 1.77,-4.74 4.21,-5.33C14.08,5.68 14,6.19 14,6.67C14,9.61 16.39,12 19.33,12zM9.13,14.45c-0.72,0.07 -1.79,0.16 -3.79,-1.32c-0.62,0.46 -0.82,0.63 -1.3,0.87c0.27,-3.53 2.38,-6.48 5.43,-7.96C8.54,7.29 8,8.83 8,10.5C8,11.92 8.4,13.27 9.13,14.45z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tty.xml b/compose/material/material/icons/generator/raw-icons/twotone/tty.xml
deleted file mode 100644
index 842cb19..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tty.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.13,5C4.3,6.37 4.66,7.71 5.18,8.99l1.65,-1.65L6.36,5H4.13zM15.66,16.17l-1.65,1.65c1.28,0.52 2.63,0.87 3.99,1.05v-2.23L15.66,16.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.2,14.84l-3.67,-0.73c-0.33,-0.07 -0.67,0.04 -0.9,0.27L12.1,16.9c-2.5,-1.43 -4.57,-3.5 -6,-6l2.52,-2.52C8.86,8.14 8.96,7.8 8.9,7.48L8.16,3.8C8.07,3.34 7.66,3 7.18,3H3.03C2.47,3 2,3.47 2.03,4.03C2.2,6.92 3.05,9.63 4.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.23 7.97,2.4c0.56,0.03 1.03,-0.44 1.03,-1v-4.15C20,15.34 19.66,14.93 19.2,14.84zM4.13,5h2.23l0.47,2.34L5.18,8.99C4.66,7.71 4.3,6.37 4.13,5zM18,18.87c-1.37,-0.17 -2.71,-0.53 -3.99,-1.05l1.65,-1.65L18,16.64V18.87zM14,4h2v2h-2V4zM13,7h2v2h-2V7zM11,4h2v2h-2V4zM18,9h-2V7h2V9zM19,6h-2V4h2V6zM21,9h-2V7h2V9zM22,6h-2V4h2V6zM14,10h2v2h-2V10zM11,10h2v2h-2V10zM19,12h-2v-2h2V12zM22,12h-2v-2h2V12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tune.xml b/compose/material/material/icons/generator/raw-icons/twotone/tune.xml
deleted file mode 100644
index 8a0223c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tune.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h10v2L3,7zM7,11L3,11v2h4v2h2L9,9L7,9zM13,15h-2v6h2v-2h8v-2h-8zM3,17h6v2L3,19zM11,11h10v2L11,13zM17,3h-2v6h2L17,7h4L21,5h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tungsten.xml b/compose/material/material/icons/generator/raw-icons/twotone/tungsten.xml
deleted file mode 100644
index 7ff23f80..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tungsten.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7.1V5h-2v2.1C11.32,7.04 11.66,7 12,7S12.68,7.04 13,7.1z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,19h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h3v2h-3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.894,17.801l1.407,-1.407l2.121,2.121l-1.407,1.407z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.584,18.509l2.121,-2.121l1.407,1.407l-2.121,2.121z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8.02V3H9v5.02C7.79,8.94 7,10.37 7,12c0,2.76 2.24,5 5,5s5,-2.24 5,-5C17,10.37 16.21,8.94 15,8.02zM11,5h2v2.1C12.68,7.04 12.34,7 12,7s-0.68,0.04 -1,0.1V5zM12,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3c1.65,0 3,1.35 3,3S13.65,15 12,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turn_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/turn_left.xml
deleted file mode 100644
index 79e696b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,11l1.59,1.59L7,14l-4,-4l4,-4l1.41,1.41L6.83,9L15,9c1.1,0 2,0.9 2,2v9h-2v-9L6.83,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turn_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/turn_right.xml
deleted file mode 100644
index 44adeab..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.17,11l-1.59,1.59L17,14l4,-4l-4,-4l-1.41,1.41L17.17,9L9,9c-1.1,0 -2,0.9 -2,2v9h2v-9L17.17,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turn_sharp_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/turn_sharp_left.xml
deleted file mode 100644
index 5b4f04a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turn_sharp_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,6.83L4.41,8.41L3,7l4,-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0 2,0.9 2,2v6h-2v-6H8c-1.1,0 -2,-0.9 -2,-2V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turn_sharp_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/turn_sharp_right.xml
deleted file mode 100644
index 110731e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turn_sharp_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6.83l1.59,1.59L21,7l-4,-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0 -2,0.9 -2,2v6h2v-6h8c1.1,0 2,-0.9 2,-2V6.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turn_slight_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/turn_slight_left.xml
deleted file mode 100644
index 3077490..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turn_slight_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.66,6V4H6v5.66h2V7.41l5,5V20h2v-7.58c0,-0.53 -0.21,-1.04 -0.59,-1.41l-5,-5H11.66z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turn_slight_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/turn_slight_right.xml
deleted file mode 100644
index 1d0bb07..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turn_slight_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.34,6V4H18v5.66h-2V7.41l-5,5V20H9v-7.58c0,-0.53 0.21,-1.04 0.59,-1.41l5,-5H12.34z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turned_in.xml b/compose/material/material/icons/generator/raw-icons/twotone/turned_in.xml
deleted file mode 100644
index 58ebcec..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turned_in.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,17.97l-4.21,-1.81 -0.79,-0.34 -0.79,0.34L7,17.97L7,5h10v12.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,17.97l4.21,-1.81 0.79,-0.34 0.79,0.34L17,17.97V5H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/turned_in_not.xml b/compose/material/material/icons/generator/raw-icons/twotone/turned_in_not.xml
deleted file mode 100644
index 61dc4cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/turned_in_not.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,3L7,3c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,5h10v13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tv.xml b/compose/material/material/icons/generator/raw-icons/twotone/tv.xml
deleted file mode 100644
index 69ed891..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tv.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h18v12H3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h5v2h8v-2h5c1.1,0 1.99,-0.9 1.99,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,17L3,17L3,5h18v12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/tv_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/tv_off.xml
deleted file mode 100644
index c363cdd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/tv_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h13.46l-12,-12L3,7zM10.12,7L21,17.88L21,7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,7v10.88l1.85,1.85c0.09,-0.23 0.15,-0.47 0.15,-0.73L23,7c0,-1.11 -0.89,-2 -2,-2h-7.58l3.29,-3.3L16,1l-4,4 -4,-4 -0.7,0.7L10.58,5L8.12,5l2,2L21,7zM20.46,23l1.26,-1.27 -1.26,1.26zM2.41,2.13l-0.14,0.14L1,3.54l1.53,1.53C1.65,5.28 1,6.06 1,7v12c0,1.1 0.9,2 2,2h15.46l1.99,1.99 1.26,-1.26 0.15,-0.15L2.41,2.13zM3,19L3,7h1.46l12,12L3,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/two_wheeler.xml b/compose/material/material/icons/generator/raw-icons/twotone/two_wheeler.xml
deleted file mode 100644
index e6737f2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/two_wheeler.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.17,11L4.17,11C4.12,11 4.06,11 4,11H4.17M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0 -4,1.79 -4,4c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4l2,2h3l3.49,-6.1l1.01,1.01C16.59,12.64 16,13.75 16,15c0,2.21 1.79,4 4,4c2.21,0 4,-1.79 4,-4c0,-2.21 -1.79,-4 -4,-4c-0.18,0 -0.36,0.03 -0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5zM20,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C22,16.1 21.1,17 20,17L20,17zM4,17c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2c1.1,0 2,0.9 2,2C6,16.1 5.1,17 4,17L4,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/type_specimen.xml b/compose/material/material/icons/generator/raw-icons/twotone/type_specimen.xml
deleted file mode 100644
index c196ceb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/type_specimen.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.04,7.17l-0.08,0l-1.31,3.72l2.69,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12V4H8V16zM13.2,5.5h1.61l3.38,9h-1.56l-0.8,-2.3h-3.63l-0.82,2.3H9.81L13.2,5.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H8V4h12V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.19,12.2h3.63l0.8,2.3h1.56l-3.38,-9H13.2l-3.38,9h1.56L12.19,12.2zM13.96,7.17h0.08l1.31,3.72h-2.69L13.96,7.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/u_turn_left.xml b/compose/material/material/icons/generator/raw-icons/twotone/u_turn_left.xml
deleted file mode 100644
index abec9ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/u_turn_left.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,9v12h-2V9c0,-2.21 -1.79,-4 -4,-4S8,6.79 8,9v4.17l1.59,-1.59L11,13l-4,4l-4,-4l1.41,-1.41L6,13.17V9c0,-3.31 2.69,-6 6,-6S18,5.69 18,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/u_turn_right.xml b/compose/material/material/icons/generator/raw-icons/twotone/u_turn_right.xml
deleted file mode 100644
index a6ee472..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/u_turn_right.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,9v12h2V9c0,-2.21 1.79,-4 4,-4s4,1.79 4,4v4.17l-1.59,-1.59L13,13l4,4l4,-4l-1.41,-1.41L18,13.17V9c0,-3.31 -2.69,-6 -6,-6S6,5.69 6,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/umbrella.xml b/compose/material/material/icons/generator/raw-icons/twotone/umbrella.xml
deleted file mode 100644
index 9b22185c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/umbrella.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.28,8.5l0.76,0.58l0.92,-0.23L13,14.8V8.29L13.28,8.5zM9.03,8.86L11,14.8V8.29L10.72,8.5L9.96,9.09L9.03,8.86z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,6.92L13,5.77V3.88V3.4c0,-0.26 0.22,-0.48 0.5,-0.48c0.28,0 0.5,0.21 0.5,0.48V4h2V3.4C16,2.07 14.88,1 13.5,1C12.12,1 11,2.07 11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77 11.6,22 12,22s0.8,-0.23 0.95,-0.69L18,6.07L14.5,6.92zM13.28,8.5l0.76,0.58l0.92,-0.23L13,14.8V8.29L13.28,8.5zM9.96,9.09l0.76,-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/unarchive.xml b/compose/material/material/icons/generator/raw-icons/twotone/unarchive.xml
deleted file mode 100644
index 460c2eb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/unarchive.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14L19,8L5,8v11zM12,10l4,4h-2.55v3h-2.91v-3L8,14l4,-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.54,5.23l-1.39,-1.68C18.88,3.21 18.47,3 18,3L6,3c-0.47,0 -0.88,0.21 -1.16,0.55L3.46,5.23C3.17,5.57 3,6.02 3,6.5L3,19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6.5c0,-0.48 -0.17,-0.93 -0.46,-1.27zM6.24,5h11.52l0.83,1L5.42,6l0.82,-1zM19,19L5,19L5,8h14v11zM10.55,17h2.9v-3L16,14l-4,-4 -4,4h2.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/undo.xml b/compose/material/material/icons/generator/raw-icons/twotone/undo.xml
deleted file mode 100644
index 4ce4108..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/undo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,8c-2.65,0 -5.05,0.99 -6.9,2.6L2,7v9h9l-3.62,-3.62c1.39,-1.16 3.16,-1.88 5.12,-1.88 3.54,0 6.55,2.31 7.6,5.5l2.37,-0.78C21.08,11.03 17.15,8 12.5,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/unfold_less.xml b/compose/material/material/icons/generator/raw-icons/twotone/unfold_less.xml
deleted file mode 100644
index c6e7907..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/unfold_less.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.41,18.59L8.83,20 12,16.83 15.17,20l1.41,-1.41L12,14l-4.59,4.59zM16.59,5.41L15.17,4 12,7.17 8.83,4 7.41,5.41 12,10l4.59,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/unfold_less_double.xml b/compose/material/material/icons/generator/raw-icons/twotone/unfold_less_double.xml
deleted file mode 100644
index 92f9c80..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/unfold_less_double.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,1.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.58,6.41l-1.42,-1.41l-3.17,3.17l-3.17,-3.17l-1.41,1.41l4.58,4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,17.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.42,22.59l1.42,1.41l3.17,-3.17l3.17,3.17l1.41,-1.41l-4.58,-4.59z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/unfold_more.xml b/compose/material/material/icons/generator/raw-icons/twotone/unfold_more.xml
deleted file mode 100644
index c115159..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/unfold_more.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.83L15.17,9l1.41,-1.41L12,3 7.41,7.59 8.83,9 12,5.83zM12,18.17L8.83,15l-1.41,1.41L12,21l4.59,-4.59L15.17,15 12,18.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/unfold_more_double.xml b/compose/material/material/icons/generator/raw-icons/twotone/unfold_more_double.xml
deleted file mode 100644
index 4d100fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/unfold_more_double.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.83L15.17,11l1.41,-1.41L12,5L7.41,9.59L8.83,11L12,7.83zM12,2.83L15.17,6l1.41,-1.41L12,0L7.41,4.59L8.83,6L12,2.83zM12,21.17L8.83,18l-1.41,1.41L12,24l4.59,-4.59L15.17,18L12,21.17zM12,16.17L8.83,13l-1.41,1.41L12,19l4.59,-4.59L15.17,13L12,16.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/unpublished.xml b/compose/material/material/icons/generator/raw-icons/twotone/unpublished.xml
deleted file mode 100644
index 075e05d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/unpublished.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.59,10.76l2.65,-2.65l1.41,1.41l-2.65,2.65l3.88,3.88C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8c-1.48,0 -2.86,0.41 -4.06,1.12L13.59,10.76zM17.66,9.53l-1.41,-1.41l-2.65,2.65l1.41,1.41L17.66,9.53zM16.06,18.88l-3.88,-3.88l-1.59,1.59l-4.24,-4.24l1.41,-1.41l2.83,2.83l0.18,-0.18L5.12,7.94C4.41,9.14 4,10.52 4,12c0,4.41 3.59,8 8,8C13.48,20 14.86,19.59 16.06,18.88z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.94,5.12L6.49,3.66C8.07,2.61 9.96,2 12,2c5.52,0 10,4.48 10,10c0,2.04 -0.61,3.93 -1.66,5.51l-1.46,-1.46C19.59,14.86 20,13.48 20,12c0,-4.41 -3.59,-8 -8,-8C10.52,4 9.14,4.41 7.94,5.12zM17.66,9.53l-1.41,-1.41l-2.65,2.65l1.41,1.41L17.66,9.53zM19.78,22.61l-2.27,-2.27C15.93,21.39 14.04,22 12,22C6.48,22 2,17.52 2,12c0,-2.04 0.61,-3.93 1.66,-5.51L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM16.06,18.88l-3.88,-3.88l-1.59,1.59l-4.24,-4.24l1.41,-1.41l2.83,2.83l0.18,-0.18L5.12,7.94C4.41,9.14 4,10.52 4,12c0,4.41 3.59,8 8,8C13.48,20 14.86,19.59 16.06,18.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/unsubscribe.xml b/compose/material/material/icons/generator/raw-icons/twotone/unsubscribe.xml
deleted file mode 100644
index 5e4e1b4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/unsubscribe.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.99,5L5,5l7,3.5zM19,13.05L19,7l-7,3.5L5,7v8h10.35c0.56,-1.18 1.76,-2 3.15,-2 0.17,0 0.34,0.03 0.5,0.05z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.99,14.04L20.99,5c0,-1.1 -0.9,-2 -2,-2L5,3c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h10.05c0.28,1.92 2.1,3.35 4.18,2.93 1.34,-0.27 2.43,-1.37 2.7,-2.71 0.25,-1.24 -0.16,-2.39 -0.94,-3.18zM18.99,5L12,8.5 5,5h13.99zM15.35,15L5,15L5,7l7,3.5L19,7v6.05c-0.16,-0.02 -0.33,-0.05 -0.5,-0.05 -1.39,0 -2.59,0.82 -3.15,2zM20.5,17h-4v-1h4v1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/upcoming.xml b/compose/material/material/icons/generator/raw-icons/twotone/upcoming.xml
deleted file mode 100644
index e63d61d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/upcoming.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,17c-2.04,0 -3.81,-1.24 -4.58,-3H4v5h16v-5h-3.42C15.81,15.76 14.04,17 12,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.16,7.26l-1.41,-1.41L16.19,9.4l1.41,1.41C17.6,10.81 21.05,7.29 21.16,7.26z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,12h-5c0,1.66 -1.34,3 -3,3s-3,-1.34 -3,-3H4c-1.1,0 -2,0.9 -2,2v5c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2v-5C22,12.9 21.1,12 20,12zM20,19H4v-5h3.42c0.77,1.76 2.54,3 4.58,3s3.81,-1.24 4.58,-3H20V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.4,10.81L7.81,9.4L4.26,5.84L2.84,7.26C2.95,7.29 6.4,10.81 6.4,10.81z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/update.xml b/compose/material/material/icons/generator/raw-icons/twotone/update.xml
deleted file mode 100644
index 40f997b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/update.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,8v5l4.25,2.52l0.77,-1.28l-3.52,-2.09V8H11zM21,10V3l-2.64,2.64C16.74,4.01 14.49,3 12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9s9,-4.03 9,-9h-2c0,3.86 -3.14,7 -7,7s-7,-3.14 -7,-7s3.14,-7 7,-7c1.93,0 3.68,0.79 4.95,2.05L14,10H21z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/update_disabled.xml b/compose/material/material/icons/generator/raw-icons/twotone/update_disabled.xml
deleted file mode 100644
index cf0830d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/update_disabled.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.67,5.84L7.22,4.39C8.6,3.51 10.24,3 12,3c2.74,0 5.19,1.23 6.84,3.16L21,4v6h-6l2.41,-2.41C16.12,6.02 14.18,5 12,5C10.8,5 9.66,5.31 8.67,5.84zM13,7h-2v1.17l2,2V7zM19.78,22.61l-3,-3C15.39,20.48 13.76,21 12,21c-4.97,0 -9,-4.03 -9,-9c0,-1.76 0.51,-3.4 1.39,-4.78L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM15.32,18.15L5.84,8.67C5.31,9.66 5,10.8 5,12c0,3.86 3.14,7 7,7C13.2,19 14.34,18.69 15.32,18.15zM20.94,13h-2.02c-0.12,0.83 -0.39,1.61 -0.77,2.32l1.47,1.47C20.32,15.67 20.79,14.38 20.94,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/upgrade.xml b/compose/material/material/icons/generator/raw-icons/twotone/upgrade.xml
deleted file mode 100644
index d242dbc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/upgrade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,18v2H8v-2H16zM11,7.99V16h2V7.99h3L12,4L8,7.99H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/upload.xml b/compose/material/material/icons/generator/raw-icons/twotone/upload.xml
deleted file mode 100644
index e7d9251..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/upload.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.83,8H11v6h2V8h1.17L12,5.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3l-7,7h4v6h6v-6h4l-7,-7zM13,8v6h-2L11,8L9.83,8L12,5.83 14.17,8L13,8zM5,18h14v2L5,20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/upload_file.xml b/compose/material/material/icons/generator/raw-icons/twotone/upload_file.xml
deleted file mode 100644
index c19bf50..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/upload_file.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,4H6v16h12V9h-5V4zM16,15h-3v4h-2v-4H8l4.01,-4L16,15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4.01,2.9 4.01,4L4,20c0,1.1 0.89,2 1.99,2H18c1.1,0 2,-0.9 2,-2V8L14,2zM18,20H6V4h7v5h5V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,15l3,0l0,4l2,0l0,-4l3,0l-3.99,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/usb.xml b/compose/material/material/icons/generator/raw-icons/twotone/usb.xml
deleted file mode 100644
index d2c64da..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/usb.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7v4h1v2h-3V5h2l-3,-4 -3,4h2v8H8v-2.07c0.7,-0.37 1.2,-1.08 1.2,-1.93 0,-1.21 -0.99,-2.2 -2.2,-2.2S4.8,7.79 4.8,9c0,0.85 0.5,1.56 1.2,1.93V13c0,1.11 0.89,2 2,2h3v3.05c-0.71,0.37 -1.2,1.1 -1.2,1.95 0,1.22 0.99,2.2 2.2,2.2s2.2,-0.98 2.2,-2.2c0,-0.85 -0.49,-1.58 -1.2,-1.95V15h3c1.11,0 2,-0.89 2,-2v-2h1V7h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/usb_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/usb_off.xml
deleted file mode 100644
index 97c22fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/usb_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,8h4v4h-1v2c0,0.34 -0.08,0.66 -0.23,0.94L16,13.17V12h-1V8zM11,8.17l2,2V6h2l-3,-4L9,6h2V8.17zM13,16v2.28c0.6,0.34 1,0.98 1,1.72c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-0.74 0.4,-1.37 1,-1.72V16H8c-1.11,0 -2,-0.89 -2,-2v-2.28C5.4,11.38 5,10.74 5,10c0,-0.59 0.26,-1.13 0.68,-1.49L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L13.17,16H13zM11,14v-0.17l-2.51,-2.51c-0.14,0.16 -0.31,0.29 -0.49,0.4V14H11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vaccines.xml b/compose/material/material/icons/generator/raw-icons/twotone/vaccines.xml
deleted file mode 100644
index 3d1c3c6b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vaccines.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17h-4v-1.5h4V17zM9,7.5H5V15h4l0,-1.5H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75C6.5,12.34 6.84,12 7.25,12H9v-1.5H7.25c-0.41,0 -0.75,-0.34 -0.75,-0.75C6.5,9.34 6.84,9 7.25,9H9V7.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,5.5H8V4h0.5c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1H6v1.5H3c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1V15c0,1.1 0.9,2 2,2h1v4l2,1.5V17h1c1.1,0 2,-0.9 2,-2V7.5c0.55,0 1,-0.45 1,-1C12,5.95 11.55,5.5 11,5.5zM9,9H7.25C6.84,9 6.5,9.34 6.5,9.75c0,0.41 0.34,0.75 0.75,0.75H9V12H7.25c-0.41,0 -0.75,0.34 -0.75,0.75c0,0.41 0.34,0.75 0.75,0.75H9L9,15H5V7.5h4V9zM19.5,10.5V10c0.55,0 1,-0.45 1,-1c0,-0.55 -0.45,-1 -1,-1h-5c-0.55,0 -1,0.45 -1,1c0,0.55 0.45,1 1,1v0.5c0,0.5 -1.5,1.16 -1.5,3V20c0,1.1 0.9,2 2,2h4c1.1,0 2,-0.9 2,-2v-6.5C21,11.66 19.5,11 19.5,10.5zM16.5,10.5V10h1v0.5c0,1.6 1.5,2 1.5,3V14h-4c0,-0.21 0,-0.39 0,-0.5C15,12.5 16.5,12.1 16.5,10.5zM19,15.5V17h-4c0,-0.51 0,-1.02 0,-1.5H19zM15,20c0,0 0,-0.63 0,-1.5h4V20H15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vape_free.xml b/compose/material/material/icons/generator/raw-icons/twotone/vape_free.xml
deleted file mode 100644
index abc4df7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vape_free.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,17.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM16.17,19H8v-3h5.17L1.39,4.22l1.41,-1.41l18.38,18.38l-1.41,1.41L16.17,19zM18.83,16H22v3h-0.17L18.83,16zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM11.15,8.32c0,-0.01 0,-0.01 0,-0.02c0,-1.85 1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53c1.87,0 3.47,1.35 3.47,3.16V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-0.01,0 -0.01,0 -0.02,0L11.15,8.32z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vaping_rooms.xml b/compose/material/material/icons/generator/raw-icons/twotone/vaping_rooms.xml
deleted file mode 100644
index 8586a18..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vaping_rooms.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.5,17.5m-0.5,0a0.5,0.5 0,1 1,1 0a0.5,0.5 0,1 1,-1 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,16.5h1c1.33,0 2.71,-0.18 4,-0.5v3c-1.29,-0.32 -2.67,-0.5 -4,-0.5H2V16.5zM22,16v3H8v-3H22zM11,17.5c0,-0.28 -0.22,-0.5 -0.5,-0.5S10,17.22 10,17.5c0,0.28 0.22,0.5 0.5,0.5S11,17.78 11,17.5zM22,12.76V15h-1.5v-2.23c0,-2.24 -1.76,-4.07 -4,-4.07V7.2c1.02,0 1.85,-0.83 1.85,-1.85S17.52,3.5 16.5,3.5V2c1.85,0 3.35,1.5 3.35,3.35c0,0.93 -0.38,1.77 -1,2.38C20.72,8.62 22,10.54 22,12.76zM19.5,13.36V15H18v-1.3c0,-1.31 -0.92,-2.05 -1.97,-2.05H14.5c-1.85,0 -3.35,-1.5 -3.35,-3.35s1.5,-3.35 3.35,-3.35v1.5c-1.02,0 -1.85,0.73 -1.85,1.75s0.83,2 1.85,2h1.53C17.9,10.2 19.5,11.55 19.5,13.36z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/verified.xml b/compose/material/material/icons/generator/raw-icons/twotone/verified.xml
deleted file mode 100644
index 766bc11..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/verified.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.49,9.88l0.08,-0.85l0.18,-1.95l-1.9,-0.43l-0.84,-0.19l-0.44,-0.74l-0.99,-1.68L12.79,4.8L12,5.14L11.21,4.8L9.42,4.03L8.43,5.71L7.99,6.45L7.15,6.64l-1.9,0.43l0.18,1.94l0.08,0.85l-0.56,0.65l-1.29,1.48l1.29,1.47l0.56,0.65l-0.08,0.85l-0.18,1.96l1.9,0.43l0.84,0.19l0.44,0.74l0.99,1.67l1.78,-0.77L12,18.85l0.79,0.34l1.78,0.77l0.99,-1.68l0.44,-0.74l0.84,-0.19l1.9,-0.43l-0.18,-1.95l-0.08,-0.85l0.56,-0.65l1.29,-1.47l-1.29,-1.47L18.49,9.88zM10.09,16.72l-3.8,-3.81l1.48,-1.48l2.32,2.33l5.85,-5.87l1.48,1.48L10.09,16.72z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,11.99l-2.44,-2.79l0.34,-3.69l-3.61,-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79l-0.34,3.7l3.61,0.82L8.6,22.5l3.4,-1.47l3.4,1.46l1.89,-3.19l3.61,-0.82l-0.34,-3.69L23,11.99zM19.05,13.47l-0.56,0.65l0.08,0.85l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78,-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99,-1.67l-0.44,-0.74l-0.84,-0.19l-1.9,-0.43l0.18,-1.96l0.08,-0.85l-0.56,-0.65l-1.29,-1.47l1.29,-1.48l0.56,-0.65L5.43,9.01L5.25,7.07l1.9,-0.43l0.84,-0.19l0.44,-0.74l0.99,-1.68l1.78,0.77L12,5.14l0.79,-0.34l1.78,-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85l0.56,0.65l1.29,1.47L19.05,13.47z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.09,13.75l-2.32,-2.33l-1.48,1.49l3.8,3.81l7.34,-7.36l-1.48,-1.49z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/verified_user.xml b/compose/material/material/icons/generator/raw-icons/twotone/verified_user.xml
deleted file mode 100644
index 677589d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/verified_user.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM19,11c0,4.52 -2.98,8.69 -7,9.93 -4.02,-1.24 -7,-5.41 -7,-9.93L5,6.3l7,-3.11 7,3.11L19,11zM7.41,11.59L6,13l4,4 8,-8 -1.41,-1.42L10,14.17z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,6.3V11c0,4.52 2.98,8.69 7,9.93 4.02,-1.23 7,-5.41 7,-9.93V6.3l-7,-3.11L5,6.3zM18,9l-8,8 -4,-4 1.41,-1.41L10,14.17l6.59,-6.59L18,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_bottom.xml b/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_bottom.xml
deleted file mode 100644
index f52d201..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_bottom.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,3v10H8l4,4 4,-4h-3V3zM4,19h16v2H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_center.xml b/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_center.xml
deleted file mode 100644
index 338e655..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_center.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,1v4L8,5l4,4 4,-4h-3L13,1zM4,11h16v2L4,13zM8,19h3v4h2v-4h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_top.xml b/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_top.xml
deleted file mode 100644
index 678cabf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vertical_align_top.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h16v2L4,5zM8,11h3v10h2L13,11h3l-4,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vertical_distribute.xml b/compose/material/material/icons/generator/raw-icons/twotone/vertical_distribute.xml
deleted file mode 100644
index 13712fe..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vertical_distribute.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,2v2H2V2H22zM7,10.5v3h10v-3H7zM2,20v2h20v-2H2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vertical_shades.xml b/compose/material/material/icons/generator/raw-icons/twotone/vertical_shades.xml
deleted file mode 100644
index 8ea63cf..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vertical_shades.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h2v14h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,5h2v14h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM8,19H6V5h2V19zM14,19h-4V5h4V19zM18,19h-2V5h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vertical_shades_closed.xml b/compose/material/material/icons/generator/raw-icons/twotone/vertical_shades_closed.xml
deleted file mode 100644
index 93389a7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vertical_shades_closed.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.5,5h1.5v14h-1.5z"
-      android:strokeAlpha="0.2"
-      android:fillAlpha="0.2"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,5h1.5v14h-1.5z"
-      android:strokeAlpha="0.2"
-      android:fillAlpha="0.2"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5h1.5v14h-1.5z"
-      android:strokeAlpha="0.2"
-      android:fillAlpha="0.2"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,5h1.5v14h-1.5z"
-      android:strokeAlpha="0.2"
-      android:fillAlpha="0.2"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,19V3H4v16H2v2h20v-2H20zM7.5,19H6V5h1.5V19zM11,19H9.5V5H11V19zM14.5,19H13V5h1.5V19zM18,19h-1.5V5H18V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vertical_split.xml b/compose/material/material/icons/generator/raw-icons/twotone/vertical_split.xml
deleted file mode 100644
index 366543a0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vertical_split.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7h4v10h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h8v2L3,15zM3,17h8v2L3,19zM3,9h8v2L3,11zM3,5h8v2L3,7zM13,5v14h8L21,5h-8zM19,17h-4L15,7h4v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vibration.xml b/compose/material/material/icons/generator/raw-icons/twotone/vibration.xml
deleted file mode 100644
index a73f9b3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vibration.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,5h8v14H8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,7h2v10h-2zM22,9h2v6h-2zM0,9h2v6L0,15zM16.5,3h-9C6.67,3 6,3.67 6,4.5v15c0,0.83 0.67,1.5 1.5,1.5h9c0.83,0 1.5,-0.67 1.5,-1.5v-15c0,-0.83 -0.67,-1.5 -1.5,-1.5zM16,19L8,19L8,5h8v14zM3,7h2v10L3,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_call.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_call.xml
deleted file mode 100644
index 2e43a431..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_call.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h10L15,8L5,8v8zM7,11h2L9,9h2v2h2v2h-2v2L9,15v-2L7,13v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7c0,-0.55 -0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4L17,7zM15,16L5,16L5,8h10v8zM9,15h2v-2h2v-2h-2L11,9L9,9v2L7,11v2h2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_camera_back.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_camera_back.xml
deleted file mode 100644
index a536796..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_camera_back.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h12V6H4V18zM7.38,12.83L9,15l2.62,-3.5L15,16H5L7.38,12.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.62,11.5l-2.62,3.5l-1.62,-2.17l-2.38,3.17l10,0z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM16,18H4V6h12V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_camera_front.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_camera_front.xml
deleted file mode 100644
index 90acea9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_camera_front.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10.48V6c0,-1.1 -0.9,-2 -2,-2H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2v-4.48l4,3.98v-11L18,10.48zM16,18H4V6h12V18zM10,12c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2s-2,0.9 -2,2S8.9,12 10,12zM14,15.43c0,-0.81 -0.48,-1.53 -1.22,-1.85C11.93,13.21 10.99,13 10,13c-0.99,0 -1.93,0.21 -2.78,0.58C6.48,13.9 6,14.62 6,15.43V16h8V15.43z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h12V9.69V6H4V18zM10,8c1.1,0 2,0.9 2,2s-0.9,2 -2,2s-2,-0.9 -2,-2S8.9,8 10,8zM6,15.43c0,-0.81 0.48,-1.53 1.22,-1.85C8.07,13.21 9.01,13 10,13c0.99,0 1.93,0.21 2.78,0.58C13.52,13.9 14,14.62 14,15.43V16H6V15.43z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_chat.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_chat.xml
deleted file mode 100644
index 1ab32de..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_chat.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16H20V4H4V17.17zM7,7c0,-0.55 0.45,-1 1,-1h6c0.55,0 1,0.45 1,1v1.99L17,7v6l-2,-1.99V13c0,0.55 -0.45,1 -1,1H8c-0.55,0 -1,-0.45 -1,-1V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2.01,2.9 2.01,4L2,22l4,-4h14c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,16H5.17L4,17.17V4h16V16z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,14h6c0.55,0 1,-0.45 1,-1v-1.99L17,13V7l-2,1.99V7c0,-0.55 -0.45,-1 -1,-1H8C7.45,6 7,6.45 7,7v6C7,13.55 7.45,14 8,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_file.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_file.xml
deleted file mode 100644
index 33ac09a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_file.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,9V4H6v16h12V9H13zM16,17.06L14,16v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1v1l2,-1.06V17.06z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,2H6C4.9,2 4,2.9 4,4v16c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V8L14,2zM6,20V4h7v5h5v11H6zM14,14l2,-1.06v4.12L14,16v1c0,0.55 -0.45,1 -1,1H9c-0.55,0 -1,-0.45 -1,-1v-4c0,-0.55 0.45,-1 1,-1h4c0.55,0 1,0.45 1,1V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_label.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_label.xml
deleted file mode 100644
index aa04937..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_label.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5h18v11H3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,5h18v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_library.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_library.xml
deleted file mode 100644
index ccc45b0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_library.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,16h12L20,4L8,4v12zM12,5.5l6,4.5 -6,4.5v-9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6L2,6v14c0,1.1 0.9,2 2,2h14v-2L4,20L4,6zM20,2L8,2c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L8,16L8,4h12v12zM12,5.5v9l6,-4.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_settings.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_settings.xml
deleted file mode 100644
index 9098716..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_settings.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,6h18v5h2V6c0,-1.1 -0.9,-2 -2,-2H3C1.9,4 1,4.9 1,6v12c0,1.1 0.9,2 2,2h9v-2H3V6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,12l-6,-4l0,8z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.71,18.43c0.03,-0.29 0.04,-0.58 0.01,-0.86l1.07,-0.85c0.1,-0.08 0.12,-0.21 0.06,-0.32l-1.03,-1.79c-0.06,-0.11 -0.19,-0.15 -0.31,-0.11L21.23,15c-0.23,-0.17 -0.48,-0.31 -0.75,-0.42l-0.2,-1.36C20.26,13.09 20.16,13 20.03,13h-2.07c-0.12,0 -0.23,0.09 -0.25,0.21l-0.2,1.36c-0.26,0.11 -0.51,0.26 -0.74,0.42l-1.28,-0.5c-0.12,-0.05 -0.25,0 -0.31,0.11l-1.03,1.79c-0.06,0.11 -0.04,0.24 0.06,0.32l1.07,0.86c-0.03,0.29 -0.04,0.58 -0.01,0.86l-1.07,0.85c-0.1,0.08 -0.12,0.21 -0.06,0.32l1.03,1.79c0.06,0.11 0.19,0.15 0.31,0.11l1.27,-0.5c0.23,0.17 0.48,0.31 0.75,0.42l0.2,1.36c0.02,0.12 0.12,0.21 0.25,0.21h2.07c0.12,0 0.23,-0.09 0.25,-0.21l0.2,-1.36c0.26,-0.11 0.51,-0.26 0.74,-0.42l1.28,0.5c0.12,0.05 0.25,0 0.31,-0.11l1.03,-1.79c0.06,-0.11 0.04,-0.24 -0.06,-0.32L22.71,18.43zM19,19.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5S19.83,19.5 19,19.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/video_stable.xml b/compose/material/material/icons/generator/raw-icons/twotone/video_stable.xml
deleted file mode 100644
index 9d88d38..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/video_stable.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.063,13.319l1.32,-4.926l8.558,2.294l-1.32,4.926z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM4,18V6h2.95l-2.33,8.73L16.82,18H4zM15.62,15.61l-8.55,-2.29l1.31,-4.92l8.56,2.29L15.62,15.61zM20,18h-2.95l2.34,-8.73L7.18,6H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/videocam.xml b/compose/material/material/icons/generator/raw-icons/twotone/videocam.xml
deleted file mode 100644
index bf10f78..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/videocam.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8h10v8H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,7c0,-0.55 -0.45,-1 -1,-1L4,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v-3.5l4,4v-11l-4,4L17,7zM15,16L5,16L5,8h10v8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/videocam_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/videocam_off.xml
deleted file mode 100644
index d9104d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/videocam_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.39,8L15,10.61V8zM5,8v8h9.73l-8,-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.41,1.86L2,3.27 4.73,6L4,6c-0.55,0 -1,0.45 -1,1v10c0,0.55 0.45,1 1,1h12c0.21,0 0.39,-0.08 0.55,-0.18L19.73,21l1.41,-1.41L3.41,1.86zM5,16L5,8h1.73l8,8L5,16zM15,8v2.61l6,6L21,6.5l-4,4L17,7c0,-0.55 -0.45,-1 -1,-1h-5.61l2,2L15,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/videogame_asset.xml b/compose/material/material/icons/generator/raw-icons/twotone/videogame_asset.xml
deleted file mode 100644
index 27ea734..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/videogame_asset.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,16h18L21,8L3,8v8zM18.5,9c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM14.5,12c0.83,0 1.5,0.67 1.5,1.5s-0.67,1.5 -1.5,1.5 -1.5,-0.67 -1.5,-1.5 0.67,-1.5 1.5,-1.5zM4,11h2L6,9h2v2h2v2L8,13v2L6,15v-2L4,13v-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6L3,6c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,8c0,-1.1 -0.9,-2 -2,-2zM21,16L3,16L3,8h18v8zM6,15h2v-2h2v-2L8,11L8,9L6,9v2L4,11v2h2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.5,13.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,10.5m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/videogame_asset_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/videogame_asset_off.xml
deleted file mode 100644
index e4e739a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/videogame_asset_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.83,8l8,8H20V8H10.83zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9S19,9.67 19,10.5S18.33,12 17.5,12zM13.17,16l-3,-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.5,9c0.83,0 1.5,0.67 1.5,1.5S18.33,12 17.5,12S16,11.33 16,10.5S16.67,9 17.5,9zM10.83,8H20v8h-1.17l1.87,1.87C21.45,17.58 22,16.85 22,16V8c0,-1.1 -0.9,-2 -2,-2H8.83L10.83,8zM19.78,22.61L15.17,18H4c-1.1,0 -2,-0.9 -2,-2V8c0,-0.85 0.55,-1.58 1.3,-1.87L1.39,4.22l1.41,-1.41l18.38,18.38L19.78,22.61zM13.17,16l-3,-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_agenda.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_agenda.xml
deleted file mode 100644
index f52bb39..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_agenda.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h14v4h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14v4h-14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,13H5c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-4C21,13.9 20.1,13 19,13zM19,19H5v-4h14V19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,9H5V5h14V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_array.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_array.xml
deleted file mode 100644
index f39b6dc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_array.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7h6v10h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7v10H9V7H15zM21,5h-3v14h3V5zM17,5H7v14h10V5zM6,5H3v14h3V5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_carousel.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_carousel.xml
deleted file mode 100644
index 638b433..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_carousel.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,7h6v10h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,7h4v10H2V7zM7,19h10V5H7V19zM9,7h6v10H9V7zM18,7h4v10h-4V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_column.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_column.xml
deleted file mode 100644
index 295c856..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_column.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.33,17H5V7h3.33V17zM13.67,17h-3.33V7h3.33V17zM19,17h-3.33V7H19V17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM8.33,17H5V7h3.33V17zM13.67,17h-3.33V7h3.33V17zM19,17h-3.33V7H19V17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_comfy.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_comfy.xml
deleted file mode 100644
index 51be2d1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_comfy.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,18h10v-5H10V18zM4,6v5h16V6H4zM4,18h4v-5H4V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM8,18H4v-5h4V18zM20,18H10v-5h10V18zM20,11H4V6h16V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_comfy_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_comfy_alt.xml
deleted file mode 100644
index f5bcf41..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_comfy_alt.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM13,7h4v4h-4V7zM13,13h4v4h-4V13zM7,7h4v4H7V7zM7,13h4v4H7V13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,7h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_compact.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_compact.xml
deleted file mode 100644
index 2a91c96..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_compact.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,13.25h2.5v-2.5H4V13.25zM4,18h2.5v-2.5H4V18zM8.5,8.5H11V6H8.5V8.5zM17.5,18H20v-2.5h-2.5V18zM17.5,13.25H20v-2.5h-2.5V13.25zM17.5,6v2.5H20V6H17.5zM13,8.5h2.5V6H13V8.5zM8.5,13.25H11v-2.5H8.5V13.25zM8.5,18H11v-2.5H8.5V18zM4,8.5h2.5V6H4V8.5zM13,13.25h2.5v-2.5H13V13.25zM13,18h2.5v-2.5H13V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM6.5,18H4v-2.5h2.5V18zM6.5,13.25H4v-2.5h2.5V13.25zM6.5,8.5H4V6h2.5V8.5zM11,18H8.5v-2.5H11V18zM11,13.25H8.5v-2.5H11V13.25zM11,8.5H8.5V6H11V8.5zM15.5,18H13v-2.5h2.5V18zM15.5,13.25H13v-2.5h2.5V13.25zM15.5,8.5H13V6h2.5V8.5zM20,18h-2.5v-2.5H20V18zM20,13.25h-2.5v-2.5H20V13.25zM20,8.5h-2.5V6H20V8.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_compact_alt.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_compact_alt.xml
deleted file mode 100644
index 48eaca1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_compact_alt.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM12.5,7.5h4v4h-4V7.5zM12.5,12.5h4v4h-4V12.5zM7.5,7.5h4v4h-4V7.5zM7.5,12.5h4v4h-4V12.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,7.5h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,7.5h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.5,12.5h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.5,12.5h4v4h-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_cozy.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_cozy.xml
deleted file mode 100644
index e16b21b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_cozy.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,18h16V6H4V18zM12.75,7.25h4v4h-4V7.25zM12.75,12.75h4v4h-4V12.75zM7.25,7.25h4v4h-4V7.25zM7.25,12.75h4v4h-4V12.75z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,7.25h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,7.25h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.25,12.75h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12.75,12.75h4v4h-4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM20,18H4V6h16V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_day.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_day.xml
deleted file mode 100644
index d3d6f29..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_day.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,10h15v4H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18h19v2L2,20zM20,8L3,8c-0.55,0 -1,0.45 -1,1v6c0,0.55 0.45,1 1,1h17c0.55,0 1,-0.45 1,-1L21,9c0,-0.55 -0.45,-1 -1,-1zM19,14L4,14v-4h15v4zM2,4h19v2L2,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_headline.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_headline.xml
deleted file mode 100644
index f9d849b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_headline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,15h16v-2L4,13v2zM4,19h16v-2L4,17v2zM4,11h16L20,9L4,9v2zM4,5v2h16L20,5L4,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_in_ar.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_in_ar.xml
deleted file mode 100644
index 7c4bfa2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_in_ar.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,17.17l4,-2.3l0,-4.63l-4,2.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6.25l-3.96,2.28l3.96,2.31l3.96,-2.31z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,14.87l4,2.3l0,-4.6l-4,-2.33z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,4c0,-0.55 0.45,-1 1,-1h2V1H4C2.34,1 1,2.34 1,4v2h2V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,20v-2H1v2c0,1.66 1.34,3 3,3h2v-2H4C3.45,21 3,20.55 3,20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,1h-2v2h2c0.55,0 1,0.45 1,1v2h2V4C23,2.34 21.66,1 20,1z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,20c0,0.55 -0.45,1 -1,1h-2v2h2c1.66,0 3,-1.34 3,-3v-2h-2V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,14.87V9.13c0,-0.72 -0.38,-1.38 -1,-1.73l-5,-2.88c-0.31,-0.18 -0.65,-0.27 -1,-0.27s-0.69,0.09 -1,0.27L6,7.39C5.38,7.75 5,8.41 5,9.13v5.74c0,0.72 0.38,1.38 1,1.73l5,2.88c0.31,0.18 0.65,0.27 1,0.27s0.69,-0.09 1,-0.27l5,-2.88C18.62,16.25 19,15.59 19,14.87zM11,17.17l-4,-2.3v-4.63l4,2.33V17.17zM12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84zM17,14.87l-4,2.3v-4.6l4,-2.33V14.87z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_kanban.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_kanban.xml
deleted file mode 100644
index b7b55bb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_kanban.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM15,7h2v8h-2V7zM11,7h2v5h-2V7zM7,7h2v10H7V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7h2v10h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,7h2v5h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,7h2v8h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_list.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_list.xml
deleted file mode 100644
index d9cba55..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_list.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7v2H5V7H7zM5,13v-2h2v2H5zM5,15h2v2H5V15zM19,17H9v-2h10V17zM19,13H9v-2h10V13zM19,9H9V7h10V9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM7,7v2H5V7H7zM5,13v-2h2v2H5zM5,15h2v2H5V15zM19,17H9v-2h10V17zM19,13H9v-2h10V13zM19,9H9V7h10V9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_module.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_module.xml
deleted file mode 100644
index e6f7a3b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_module.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,11h-3.33V7H19V11zM13.67,11h-3.33V7h3.33V11zM8.33,7v4H5V7H8.33zM5,17v-4h3.33v4H5zM10.33,17v-4h3.33v4H10.33zM15.67,17v-4H19v4H15.67z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM19,11h-3.33V7H19V11zM13.67,11h-3.33V7h3.33V11zM8.33,7v4H5V7H8.33zM5,17v-4h3.33v4H5zM10.33,17v-4h3.33v4H10.33zM15.67,17v-4H19v4H15.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_quilt.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_quilt.xml
deleted file mode 100644
index 3afb8ac..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_quilt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.33,17H5V7h3.33V17zM13.67,17h-3.33v-4h3.33V17zM19,17h-3.33v-4H19V17zM19,11h-8.67V7H19V11z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,5v14h18V5H3zM8.33,17H5V7h3.33V17zM13.67,17h-3.33v-4h3.33V17zM19,17h-3.33v-4H19V17zM19,11h-8.67V7H19V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_sidebar.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_sidebar.xml
deleted file mode 100644
index 104389f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_sidebar.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.67h-2.5V6H20V8.67zM17.5,10.67H20v2.67h-2.5V10.67zM4,6h11.5v12H4V6zM17.5,18v-2.67H20V18H17.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,4v16h20V4H2zM20,8.67h-2.5V6H20V8.67zM17.5,10.67H20v2.67h-2.5V10.67zM4,6h11.5v12H4V6zM17.5,18v-2.67H20V18H17.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_stream.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_stream.xml
deleted file mode 100644
index 6a63e8e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_stream.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,17H5v-4h14V17zM5,11V7h14v4H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,7v10c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V7c0,-1.1 -0.9,-2 -2,-2H5C3.9,5 3,5.9 3,7zM19,17H5v-4h14V17zM5,11V7h14v4H5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_timeline.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_timeline.xml
deleted file mode 100644
index 80e99f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_timeline.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,19h14V5H5V19zM12,7h6v2h-6V7zM9,11h6v2H9V11zM6,15h6v2H6V15z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,15h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,11h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM19,19H5V5h14V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/view_week.xml b/compose/material/material/icons/generator/raw-icons/twotone/view_week.xml
deleted file mode 100644
index 6922e89..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/view_week.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,18H4V6h4V18zM14,18h-4V6h4V18zM20,18h-4V6h4V18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM8,18H4V6h4V18zM14,18h-4V6h4V18zM20,18h-4V6h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vignette.xml b/compose/material/material/icons/generator/raw-icons/twotone/vignette.xml
deleted file mode 100644
index 892e287..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vignette.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h18L21,5L3,5v14zM12,6c4.42,0 8,2.69 8,6s-3.58,6 -8,6 -8,-2.69 -8,-6 3.58,-6 8,-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,3L3,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,5c0,-1.1 -0.9,-2 -2,-2zM21,19L3,19L3,5h18v14zM12,18c4.42,0 8,-2.69 8,-6s-3.58,-6 -8,-6 -8,2.69 -8,6 3.58,6 8,6zM12,8c3.25,0 6,1.83 6,4s-2.75,4 -6,4 -6,-1.83 -6,-4 2.75,-4 6,-4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/villa.xml b/compose/material/material/icons/generator/raw-icons/twotone/villa.xml
deleted file mode 100644
index 7444724..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/villa.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,9.37l9,-3.46V12H9v7H5V9.37zM19,19h-3v-3h-2v3h-3v-5h8V19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,10c-1.1,0 -2,0.9 -2,2h-1V3L3,8v13h18v-9C21,10.9 20.1,10 19,10zM5,9.37l9,-3.46V12H9v7H5V9.37zM19,19h-3v-3h-2v3h-3v-5h8V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/visibility.xml b/compose/material/material/icons/generator/raw-icons/twotone/visibility.xml
deleted file mode 100644
index 8060668..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/visibility.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c-3.79,0 -7.17,2.13 -8.82,5.5C4.83,14.87 8.21,17 12,17s7.17,-2.13 8.82,-5.5C19.17,8.13 15.79,6 12,6zM12,16c-2.48,0 -4.5,-2.02 -4.5,-4.5S9.52,7 12,7s4.5,2.02 4.5,4.5S14.48,16 12,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4C7,4 2.73,7.11 1,11.5 2.73,15.89 7,19 12,19s9.27,-3.11 11,-7.5C21.27,7.11 17,4 12,4zM12,17c-3.79,0 -7.17,-2.13 -8.82,-5.5C4.83,8.13 8.21,6 12,6s7.17,2.13 8.82,5.5C19.17,14.87 15.79,17 12,17zM12,7c-2.48,0 -4.5,2.02 -4.5,4.5S9.52,16 12,16s4.5,-2.02 4.5,-4.5S14.48,7 12,7zM12,14c-1.38,0 -2.5,-1.12 -2.5,-2.5S10.62,9 12,9s2.5,1.12 2.5,2.5S13.38,14 12,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/visibility_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/visibility_off.xml
deleted file mode 100644
index d6db99b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/visibility_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,14c0.04,0 0.08,-0.01 0.12,-0.01l-2.61,-2.61c0,0.04 -0.01,0.08 -0.01,0.12 0,1.38 1.12,2.5 2.5,2.5zM13.01,9.21l1.28,1.28c-0.26,-0.57 -0.71,-1.03 -1.28,-1.28zM20.82,11.5C19.17,8.13 15.79,6 12,6c-0.68,0 -1.34,0.09 -1.99,0.22l0.92,0.92c0.35,-0.09 0.7,-0.14 1.07,-0.14 2.48,0 4.5,2.02 4.5,4.5 0,0.37 -0.06,0.72 -0.14,1.07l2.05,2.05c0.98,-0.86 1.81,-1.91 2.41,-3.12zM12,17c0.95,0 1.87,-0.13 2.75,-0.39l-0.98,-0.98c-0.54,0.24 -1.14,0.37 -1.77,0.37 -2.48,0 -4.5,-2.02 -4.5,-4.5 0,-0.63 0.13,-1.23 0.36,-1.77L6.11,7.97c-1.22,0.91 -2.23,2.1 -2.93,3.52C4.83,14.86 8.21,17 12,17z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,6c3.79,0 7.17,2.13 8.82,5.5 -0.59,1.22 -1.42,2.27 -2.41,3.12l1.41,1.41c1.39,-1.23 2.49,-2.77 3.18,-4.53C21.27,7.11 17,4 12,4c-1.27,0 -2.49,0.2 -3.64,0.57l1.65,1.65C10.66,6.09 11.32,6 12,6zM14.28,10.49l2.07,2.07c0.08,-0.34 0.14,-0.7 0.14,-1.07C16.5,9.01 14.48,7 12,7c-0.37,0 -0.72,0.06 -1.07,0.14L13,9.21c0.58,0.25 1.03,0.71 1.28,1.28zM2.01,3.87l2.68,2.68C3.06,7.83 1.77,9.53 1,11.5 2.73,15.89 7,19 12,19c1.52,0 2.98,-0.29 4.32,-0.82l3.42,3.42 1.41,-1.41L3.42,2.45 2.01,3.87zM9.51,11.37l2.61,2.61c-0.04,0.01 -0.08,0.02 -0.12,0.02 -1.38,0 -2.5,-1.12 -2.5,-2.5 0,-0.05 0.01,-0.08 0.01,-0.13zM6.11,7.97l1.75,1.75c-0.23,0.55 -0.36,1.15 -0.36,1.78 0,2.48 2.02,4.5 4.5,4.5 0.63,0 1.23,-0.13 1.77,-0.36l0.98,0.98c-0.88,0.24 -1.8,0.38 -2.75,0.38 -3.79,0 -7.17,-2.13 -8.82,-5.5 0.7,-1.43 1.72,-2.61 2.93,-3.53z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/voice_chat.xml b/compose/material/material/icons/generator/raw-icons/twotone/voice_chat.xml
deleted file mode 100644
index 0ab0950..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/voice_chat.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17.17L5.17,16H20V4H4v13.17zM7,7h7v2.4L17,7v6l-3,-2.4V13H7V7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,16L5.17,16L4,17.17L4,4h16v12zM14,10.6l3,2.4L17,7l-3,2.4L14,7L7,7v6h7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/voice_over_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/voice_over_off.xml
deleted file mode 100644
index 22abd80..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/voice_over_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,17c-2.69,0 -5.77,1.28 -6,2h12c-0.2,-0.71 -3.3,-2 -6,-2zM7,9c0,1.1 0.9,2 2,2 0.22,0 0.42,-0.04 0.62,-0.11L7.11,8.38c-0.07,0.2 -0.11,0.4 -0.11,0.62z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.76,5.36l-1.68,1.69c0.8,1.13 0.83,2.58 0.09,3.74l1.7,1.7c1.9,-2.02 1.87,-4.98 -0.11,-7.13zM20.07,2l-1.63,1.63c2.72,2.97 2.76,7.39 0.14,10.56l1.64,1.64c3.74,-3.89 3.71,-9.84 -0.15,-13.83zM9.43,5.04l3.53,3.53c-0.2,-1.86 -1.67,-3.33 -3.53,-3.53zM4.41,2.86L3,4.27l2.62,2.62C5.23,7.5 5,8.22 5,9c0,2.21 1.79,4 4,4 0.78,0 1.5,-0.23 2.11,-0.62l4.4,4.4C13.74,15.6 10.78,15 9,15c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-0.37 -0.11,-0.7 -0.29,-1.02L19.73,21l1.41,-1.41L4.41,2.86zM3,19c0.22,-0.72 3.31,-2 6,-2 2.7,0 5.8,1.29 6,2L3,19zM9,11c-1.1,0 -2,-0.9 -2,-2 0,-0.22 0.04,-0.42 0.11,-0.62l2.51,2.51c-0.2,0.07 -0.4,0.11 -0.62,0.11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/voicemail.xml b/compose/material/material/icons/generator/raw-icons/twotone/voicemail.xml
deleted file mode 100644
index 4947802..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/voicemail.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.5,6C15.46,6 13,8.46 13,11.5c0,1.33 0.47,2.55 1.26,3.5L9.74,15c0.79,-0.95 1.26,-2.17 1.26,-3.5C11,8.46 8.54,6 5.5,6S0,8.46 0,11.5 2.46,17 5.5,17h13c3.04,0 5.5,-2.46 5.5,-5.5S21.54,6 18.5,6zM5.5,15C3.57,15 2,13.43 2,11.5S3.57,8 5.5,8 9,9.57 9,11.5 7.43,15 5.5,15zM18.5,15c-1.93,0 -3.5,-1.57 -3.5,-3.5S16.57,8 18.5,8 22,9.57 22,11.5 20.43,15 18.5,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/volcano.xml b/compose/material/material/icons/generator/raw-icons/twotone/volcano.xml
deleted file mode 100644
index 5cf0557..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/volcano.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,10l-4.14,0l-1.49,3.74l-0.51,1.26l-1.35,0l-1.7,0l-2.22,5l14.27,0z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,8h-7l-2,5H6l-4,9h20L18,8zM7.3,15H9h1.35l0.5,-1.26l1.5,-3.74h4.14l2.86,10H5.08L7.3,15z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,1h2v4h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.121,5.468l2.828,-2.828l1.414,1.414l-2.828,2.828z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.64,4.05l1.414,-1.414l2.828,2.828l-1.414,1.414z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/volume_down.xml b/compose/material/material/icons/generator/raw-icons/twotone/volume_down.xml
deleted file mode 100644
index 9b94656..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/volume_down.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,13h2.83L12,15.17V8.83L9.83,11H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7.97v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02 0,-1.77 -1.02,-3.29 -2.5,-4.03zM5,9v6h4l5,5L14,4L9,9L5,9zM12,8.83v6.34L9.83,13L7,13v-2h2.83L12,8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/volume_mute.xml b/compose/material/material/icons/generator/raw-icons/twotone/volume_mute.xml
deleted file mode 100644
index 27c4cfb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/volume_mute.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,13h2.83L14,15.17V8.83L11.83,11H9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,9v6h4l5,5L16,4l-5,5L7,9zM14,8.83v6.34L11.83,13L9,13v-2h2.83L14,8.83z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/volume_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/volume_off.xml
deleted file mode 100644
index 9a216e1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/volume_off.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.83,11H5v2h2.83L10,15.17v-3.76l-1.29,-1.29z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.34,2.93L2.93,4.34 7.29,8.7 7,9L3,9v6h4l5,5v-6.59l4.18,4.18c-0.65,0.49 -1.38,0.88 -2.18,1.11v2.06c1.34,-0.3 2.57,-0.92 3.61,-1.75l2.05,2.05 1.41,-1.41L4.34,2.93zM10,15.17L7.83,13L5,13v-2h2.83l0.88,-0.88L10,11.41v3.76zM19,12c0,0.82 -0.15,1.61 -0.41,2.34l1.53,1.53c0.56,-1.17 0.88,-2.48 0.88,-3.87 0,-4.28 -2.99,-7.86 -7,-8.77v2.06c2.89,0.86 5,3.54 5,6.71zM12,4l-1.88,1.88L12,7.76zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v1.79l2.48,2.48c0.01,-0.08 0.02,-0.16 0.02,-0.24z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/volume_up.xml b/compose/material/material/icons/generator/raw-icons/twotone/volume_up.xml
deleted file mode 100644
index 7d8c0b2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/volume_up.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h2.83L10,15.17V8.83L7.83,11H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,9v6h4l5,5L12,4L7,9L3,9zM10,8.83v6.34L7.83,13L5,13v-2h2.83L10,8.83zM14,7.97v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02 0,-1.77 -1.02,-3.29 -2.5,-4.03zM14,3.23v2.06c2.89,0.86 5,3.54 5,6.71s-2.11,5.85 -5,6.71v2.06c4.01,-0.91 7,-4.49 7,-8.77 0,-4.28 -2.99,-7.86 -7,-8.77z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/volunteer_activism.xml b/compose/material/material/icons/generator/raw-icons/twotone/volunteer_activism.xml
deleted file mode 100644
index b729829..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/volunteer_activism.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,13h2v7h-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,10.29c1.96,-1.82 4,-3.88 4,-4.99C20,4.56 19.44,4 18.7,4c-0.44,0 -0.89,0.21 -1.18,0.55L16,6.34l-1.52,-1.79C14.19,4.21 13.74,4 13.3,4C12.56,4 12,4.56 12,5.3C12,6.41 14.04,8.47 16,10.29z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,18h-5.35c-0.54,0 -1.07,-0.09 -1.58,-0.26l-2.38,-0.79l0.63,-1.9l2.38,0.79c0.31,0.1 0.63,0.15 0.95,0.15H15c0,-0.37 -0.23,-0.7 -0.57,-0.83L8.61,13H7v5.48l6.97,1.94l5.93,-1.85C19.74,18.23 19.39,18 19,18z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,13c3.09,-2.81 6,-5.44 6,-7.7C22,3.45 20.55,2 18.7,2c-1.04,0 -2.05,0.49 -2.7,1.25C15.35,2.49 14.34,2 13.3,2C11.45,2 10,3.45 10,5.3C10,7.56 12.91,10.19 16,13zM13.3,4c0.44,0 0.89,0.21 1.18,0.55L16,6.34l1.52,-1.79C17.81,4.21 18.26,4 18.7,4C19.44,4 20,4.56 20,5.3c0,1.12 -2.04,3.17 -4,4.99c-1.96,-1.82 -4,-3.88 -4,-4.99C12,4.56 12.56,4 13.3,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,16h-2c0,-1.2 -0.75,-2.28 -1.87,-2.7L8.97,11H1v11h6v-1.44l7,1.94l8,-2.5v-1C22,17.34 20.66,16 19,16zM5,20H3v-7h2V20zM13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3 15,15.63 15,16h-1.35c-0.32,0 -0.64,-0.05 -0.95,-0.15l-2.38,-0.79l-0.63,1.9l2.38,0.79c0.51,0.17 1.04,0.26 1.58,0.26H19c0.39,0 0.74,0.23 0.9,0.56L13.97,20.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vpn_key.xml b/compose/material/material/icons/generator/raw-icons/twotone/vpn_key.xml
deleted file mode 100644
index 9913dd7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vpn_key.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.71,10.33C11.01,8.34 9.11,7 7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5c2.11,0 4.01,-1.34 4.71,-3.33l0.23,-0.67H18v4h2v-4h2v-2H11.94l-0.23,-0.67zM7,15c-1.65,0 -3,-1.35 -3,-3s1.35,-3 3,-3 3,1.35 3,3 -1.35,3 -3,3z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,5c-3.86,0 -7,3.14 -7,7s3.14,7 7,7c2.72,0 5.17,-1.58 6.32,-4L16,15v4h6v-4h2L24,9L13.32,9C12.17,6.58 9.72,5 7,5zM22,13h-2v4h-2v-4h-6.06l-0.23,0.67C11.01,15.66 9.11,17 7,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5c2.11,0 4.01,1.34 4.71,3.33l0.23,0.67L22,11v2zM7,9c-1.65,0 -3,1.35 -3,3s1.35,3 3,3 3,-1.35 3,-3 -1.35,-3 -3,-3zM7,13c-0.55,0 -1,-0.45 -1,-1s0.45,-1 1,-1 1,0.45 1,1 -0.45,1 -1,1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vpn_key_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/vpn_key_off.xml
deleted file mode 100644
index 0221283..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vpn_key_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,14.17V13h-1.17l-2,-2H21v2h-2v3L17,14.17zM7,16c-2.21,0 -4,-1.79 -4,-4c0,-1.67 1.02,-3.1 2.47,-3.7l1.71,1.71C7.12,10 7.06,10 7,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2c0,-0.06 0,-0.12 -0.01,-0.18l1.74,1.74C10.22,14.48 9.14,16 7,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85 1,9.79 1,12c0,3.31 2.69,6 6,6c2.22,0 4.15,-1.21 5.19,-3l7.59,7.61l1.41,-1.41L2.81,2.81zM7,16c-2.21,0 -4,-1.79 -4,-4c0,-1.67 1.02,-3.1 2.47,-3.7l1.71,1.71C7.12,10 7.06,10 7,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2s2,-0.9 2,-2c0,-0.06 0,-0.12 -0.01,-0.18l1.74,1.74C10.22,14.48 9.14,16 7,16zM17,14.17V13h-1.17L17,14.17zM13.83,11H21v2h-2v3l2,2v-3h2V9H11.83L13.83,11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vpn_lock.xml b/compose/material/material/icons/generator/raw-icons/twotone/vpn_lock.xml
deleted file mode 100644
index 6ef87b9..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vpn_lock.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,8h-2v2c0,0.55 -0.45,1 -1,1L7,11v2h6c0.55,0 1,0.45 1,1v3h1c0.9,0 1.64,0.58 1.9,1.39C18.2,16.97 19,15.08 19,13c0,-0.34 -0.04,-0.67 -0.08,-1L17,12c-1.65,0 -3,-1.35 -3,-3L14,6c0,1.1 -0.9,2 -2,2zM8,17v-1l-4.79,-4.79C3.08,11.79 3,12.38 3,13c0,4.08 3.05,7.44 7,7.93L10,19c-1.1,0 -2,-0.9 -2,-2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.92,12c0.04,0.33 0.08,0.66 0.08,1 0,2.08 -0.8,3.97 -2.1,5.39 -0.26,-0.81 -1,-1.39 -1.9,-1.39h-1v-3c0,-0.55 -0.45,-1 -1,-1L7,13v-2h2c0.55,0 1,-0.45 1,-1L10,8h2c1.1,0 2,-0.9 2,-2L14,3.46c-0.95,-0.3 -1.95,-0.46 -3,-0.46C5.48,3 1,7.48 1,13s4.48,10 10,10 10,-4.48 10,-10c0,-0.34 -0.02,-0.67 -0.05,-1h-2.03zM10,20.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L8,16v1c0,1.1 0.9,2 2,2v1.93zM22,4v-0.5C22,2.12 20.88,1 19.5,1S17,2.12 17,3.5L17,4c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h5c0.55,0 1,-0.45 1,-1L23,5c0,-0.55 -0.45,-1 -1,-1zM21,4h-3v-0.5c0,-0.83 0.67,-1.5 1.5,-1.5s1.5,0.67 1.5,1.5L21,4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/vrpano.xml b/compose/material/material/icons/generator/raw-icons/twotone/vrpano.xml
deleted file mode 100644
index 6496eba..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/vrpano.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,6.38v11.25c2.01,-0.59 4.61,-1.13 8,-1.13c3.38,0 5.99,0.54 8,1.13V6.37c-2.01,0.59 -4.62,1.13 -8,1.13C9.32,7.5 6.58,7.11 4,6.38zM18.51,15.4C16.52,15.15 14.3,15 12,15c-2.34,0 -4.52,0.15 -6.52,0.41l3.69,-4.42l2,2.4L14,10L18.51,15.4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.01,4C20.45,4 17.4,5.5 12,5.5c-5.31,0 -8.49,-1.49 -9.01,-1.49C2.46,4.01 2,4.45 2,5.02V19c0,0.57 0.46,1 0.99,1c0.57,0 3.55,-1.5 9.01,-1.5c5.42,0 8.44,1.5 9.01,1.5c0.53,0 0.99,-0.43 0.99,-1V5C22,4.43 21.54,4 21.01,4zM20,17.63c-2.01,-0.59 -4.62,-1.13 -8,-1.13c-3.39,0 -5.99,0.54 -8,1.13V6.38C6.58,7.11 9.32,7.5 12,7.5c3.38,0 5.99,-0.54 8,-1.13V17.63z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.17,10.99l-3.69,4.42C7.48,15.15 9.66,15 12,15c2.3,0 4.52,0.15 6.51,0.4L14,10l-2.83,3.39L9.17,10.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wallet.xml b/compose/material/material/icons/generator/raw-icons/twotone/wallet.xml
deleted file mode 100644
index 0e9a8ca..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wallet.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,10H6c-0.84,0 -1.55,0.52 -1.85,1.25l11.11,2.72c0.31,0.08 0.64,0 0.88,-0.2l3.49,-2.92C19.26,10.34 18.67,10 18,10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,6H6C4.9,6 4,6.9 4,8v0.55C4.59,8.21 5.27,8 6,8h12c0.73,0 1.41,0.21 2,0.55V8C20,6.9 19.1,6 18,6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4H6C3.79,4 2,5.79 2,8v8c0,2.21 1.79,4 4,4h12c2.21,0 4,-1.79 4,-4V8C22,5.79 20.21,4 18,4zM16.14,13.77c-0.24,0.2 -0.57,0.28 -0.88,0.2L4.15,11.25C4.45,10.52 5.16,10 6,10h12c0.67,0 1.26,0.34 1.63,0.84L16.14,13.77zM20,8.55C19.41,8.21 18.73,8 18,8H6C5.27,8 4.59,8.21 4,8.55V8c0,-1.1 0.9,-2 2,-2h12c1.1,0 2,0.9 2,2V8.55z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wallpaper.xml b/compose/material/material/icons/generator/raw-icons/twotone/wallpaper.xml
deleted file mode 100644
index 6b7eb35..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wallpaper.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h7L11,2L4,2c-1.1,0 -2,0.9 -2,2v7h2L4,4zM10,13l-4,5h12l-3,-4 -2.03,2.71L10,13zM17,8.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S14,7.67 14,8.5s0.67,1.5 1.5,1.5S17,9.33 17,8.5zM20,2h-7v2h7v7h2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20h-7v2h7c1.1,0 2,-0.9 2,-2v-7h-2v7zM4,13L2,13v7c0,1.1 0.9,2 2,2h7v-2L4,20v-7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/warehouse.xml b/compose/material/material/icons/generator/raw-icons/twotone/warehouse.xml
deleted file mode 100644
index c5a5c57..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/warehouse.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,8.35V19h-2v-8H6v8H4V8.35l8,-3.2L20,8.35zM22,21V7L12,3L2,7v14h6v-8h8v8H22zM11,19H9v2h2V19zM13,16h-2v2h2V16zM15,19h-2v2h2V19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/warning.xml b/compose/material/material/icons/generator/raw-icons/twotone/warning.xml
deleted file mode 100644
index 630a2d7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/warning.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.47,19h15.06L12,5.99 4.47,19zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h22L12,2 1,21zM4.47,19L12,5.99 19.53,19L4.47,19zM11,16h2v2h-2zM11,10h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/warning_amber.xml b/compose/material/material/icons/generator/raw-icons/twotone/warning_amber.xml
deleted file mode 100644
index dfc9196..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/warning_amber.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,21h22L12,2 1,21zM4.47,19L12,5.99 19.53,19L4.47,19zM11,16h2v2h-2zM11,10h2v4h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wash.xml b/compose/material/material/icons/generator/raw-icons/twotone/wash.xml
deleted file mode 100644
index b55827f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wash.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21zM18.5,6.5c-0.55,0 -1,-0.45 -1,-1c0,-0.4 0.43,-1.22 1,-2.05c0.57,0.83 1,1.65 1,2.05C19.5,6.05 19.05,6.5 18.5,6.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.75,16c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h6.75c0.69,0 1.25,-0.56 1.25,-1.25c0,-0.67 -0.53,-1.2 -1.18,-1.24L8.87,10l1.48,-2.6c0.09,-0.17 0.14,-0.34 0.14,-0.54c0,-0.26 -0.09,-0.5 -0.26,-0.7L9.12,5l-7.18,6.8C1.34,12.36 1,13.15 1,13.97V20c0,1.66 1.34,3 3,3h13.75c0.69,0 1.25,-0.56 1.25,-1.25s-0.56,-1.25 -1.25,-1.25H12v-1h7.75c0.69,0 1.25,-0.56 1.25,-1.25S20.44,17 19.75,17H12v-1H20.75zM10,21H4c-0.55,0 -1,-0.45 -1,-1v-6c0,-0.39 0.23,-0.64 0.36,-0.75L7,9.87V12l3,0V21zM13.5,9C14.33,9 15,8.33 15,7.5C15,6.66 13.5,5 13.5,5S12,6.66 12,7.5C12,8.33 12.67,9 13.5,9zM18.5,1c0,0 -2.5,2.83 -2.5,4.5C16,6.88 17.12,8 18.5,8S21,6.88 21,5.5C21,3.83 18.5,1 18.5,1zM18.5,6.5c-0.55,0 -1,-0.45 -1,-1c0,-0.4 0.43,-1.22 1,-2.05c0.57,0.83 1,1.65 1,2.05C19.5,6.05 19.05,6.5 18.5,6.5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/watch.xml b/compose/material/material/icons/generator/raw-icons/twotone/watch.xml
deleted file mode 100644
index 0e61add..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/watch.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14.72,4.48L14.31,2H9.7l-0.41,2.47C10.13,4.17 11.05,4 12,4c0.96,0 1.87,0.17 2.72,0.48zM9.29,19.53L9.7,22h4.61l0.41,-2.48c-0.85,0.31 -1.76,0.48 -2.72,0.48 -0.95,0 -1.87,-0.17 -2.71,-0.47z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.96,5.73L16,0L8,0l-0.95,5.73C5.19,7.19 4,9.45 4,12s1.19,4.81 3.05,6.27L8,24h8l0.96,-5.73C18.81,16.81 20,14.54 20,12s-1.19,-4.81 -3.04,-6.27zM9.7,2h4.61l0.41,2.48C13.87,4.17 12.96,4 12,4c-0.95,0 -1.87,0.17 -2.71,0.47L9.7,2zM14.31,22L9.7,22l-0.41,-2.47c0.84,0.3 1.76,0.47 2.71,0.47 0.96,0 1.87,-0.17 2.72,-0.48L14.31,22zM12,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/watch_later.xml b/compose/material/material/icons/generator/raw-icons/twotone/watch_later.xml
deleted file mode 100644
index 85a4924..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/watch_later.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-4.41,0 -8,3.59 -8,8s3.59,8 8,8s8,-3.59 8,-8S16.41,4 12,4zM16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8s8,3.59 8,8S16.41,20 12,20zM12.5,7H11v6l5.2,3.2l0.8,-1.3l-4.5,-2.7V7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/watch_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/watch_off.xml
deleted file mode 100644
index 2b6b3f4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/watch_off.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.89,5.27L13.51,4h-3.02l-0.38,1.27C11.93,4.76 13.34,5.11 13.89,5.27z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10.11,18.73L10.49,20h3.02l0.38,-1.27C12.07,19.24 10.66,18.89 10.11,18.73z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c2.76,0 5,2.24 5,5c0,0.64 -0.13,1.25 -0.35,1.82l1.5,1.5C18.69,14.33 19,13.2 19,12c0,-2.22 -1.03,-4.19 -2.64,-5.47L15,2H9L8.04,5.21l2.14,2.14C10.75,7.13 11.36,7 12,7zM10.49,4h3.02l0.38,1.27c-0.55,-0.16 -1.97,-0.51 -3.78,0L10.49,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67 5,10.8 5,12c0,2.22 1.03,4.19 2.64,5.47L9,22h6l0.96,-3.21l3.82,3.82l1.41,-1.41L2.81,2.81zM13.51,20h-3.02l-0.38,-1.27c0.55,0.15 1.97,0.51 3.78,0L13.51,20zM12,17c-2.76,0 -5,-2.24 -5,-5c0,-0.64 0.13,-1.25 0.35,-1.82l6.47,6.47C13.25,16.87 12.64,17 12,17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/water.xml b/compose/material/material/icons/generator/raw-icons/twotone/water.xml
deleted file mode 100644
index c9edfe1..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/water.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,14H22H21.98zM5.35,13c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1v-2c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C3.38,11 3.24,12 2,12v2C3.9,14 4.17,13 5.35,13zM18.67,15c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1c-1.24,0 -1.38,-1 -3.33,-1c-1.95,0 -2.1,1 -3.34,1v2c1.95,0 2.11,-1 3.34,-1c1.24,0 1.38,1 3.33,1c1.95,0 2.1,-1 3.34,-1c1.19,0 1.42,1 3.33,1c1.94,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1v-2C20.76,16 20.62,15 18.67,15zM5.35,9c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.42,1 3.33,1c1.95,0 2.09,-1 3.33,-1c1.19,0 1.4,0.98 3.31,1V8c-1.19,0 -1.42,-1 -3.33,-1c-1.95,0 -2.09,1 -3.33,1c-1.19,0 -1.42,-1 -3.33,-1C10.04,7 9.9,8 8.66,8C7.47,8 7.24,7 5.33,7C3.38,7 3.24,8 2,8v2C3.9,10 4.17,9 5.35,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/water_damage.xml b/compose/material/material/icons/generator/raw-icons/twotone/water_damage.xml
deleted file mode 100644
index b6ac563..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/water_damage.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,5.69l-5,4.5V18h10v-7.81L12,5.69zM12,16c-1.1,0 -2,-0.9 -2,-2c0,-1.1 2,-4 2,-4s2,2.9 2,4C14,15.1 13.1,16 12,16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3L2,12h3v8h14v-8h3L12,3zM7,18v-7.81l5,-4.5l5,4.5V18H7zM14,14c0,1.1 -0.9,2 -2,2s-2,-0.9 -2,-2c0,-1.1 2,-4 2,-4S14,12.9 14,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/water_drop.xml b/compose/material/material/icons/generator/raw-icons/twotone/water_drop.xml
deleted file mode 100644
index e16cd02..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/water_drop.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4.67c-4.05,3.7 -6,6.79 -6,9.14c0,3.63 2.65,6.2 6,6.2s6,-2.57 6,-6.2C18,11.46 16.05,8.36 12,4.67zM12.28,18.99c-2.13,0.13 -4.62,-1.09 -5.19,-4.12C7.01,14.42 7.37,14 7.83,14c0.37,0 0.67,0.26 0.74,0.62c0.41,2.23 2.28,2.98 3.64,2.87c0.43,-0.02 0.79,0.32 0.79,0.75C13,18.64 12.68,18.97 12.28,18.99z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,2c-5.33,4.55 -8,8.48 -8,11.8c0,4.98 3.8,8.2 8,8.2s8,-3.22 8,-8.2C20,10.48 17.33,6.55 12,2zM12,20c-3.35,0 -6,-2.57 -6,-6.2c0,-2.34 1.95,-5.44 6,-9.14c4.05,3.7 6,6.79 6,9.14C18,17.43 15.35,20 12,20zM7.83,14c0.37,0 0.67,0.26 0.74,0.62c0.41,2.22 2.28,2.98 3.64,2.87c0.43,-0.02 0.79,0.32 0.79,0.75c0,0.4 -0.32,0.73 -0.72,0.75c-2.13,0.13 -4.62,-1.09 -5.19,-4.12C7.01,14.42 7.37,14 7.83,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/waterfall_chart.xml b/compose/material/material/icons/generator/raw-icons/twotone/waterfall_chart.xml
deleted file mode 100644
index b2b74f0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/waterfall_chart.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,4h3v16h-3V4zM3,13h3v7H3V13zM14,4h3v3h-3V4zM10,5h3v4h-3V5zM7,10h3v4H7V10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/waves.xml b/compose/material/material/icons/generator/raw-icons/twotone/waves.xml
deleted file mode 100644
index 23733dd..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/waves.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,16.99c-1.35,0 -2.2,0.42 -2.95,0.8 -0.65,0.33 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.42 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.42 2.95,-0.8c0.65,-0.33 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM17,12.54c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.32 -1.17,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.35 1.15,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.58,0.8 2.95,0.8v-1.95c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8zM19.95,4.46c-0.75,-0.38 -1.58,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.32 -1.18,0.6 -2.05,0.6 -0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.37 -1.57,-0.8 -2.95,-0.8s-2.2,0.42 -2.95,0.8c-0.65,0.33 -1.17,0.6 -2.05,0.6v1.93c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.33 1.17,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,5.04c-0.9,0 -1.4,-0.25 -2.05,-0.58zM17,8.09c-1.35,0 -2.2,0.43 -2.95,0.8 -0.65,0.35 -1.15,0.6 -2.05,0.6s-1.4,-0.25 -2.05,-0.6c-0.75,-0.38 -1.57,-0.8 -2.95,-0.8s-2.2,0.43 -2.95,0.8c-0.65,0.35 -1.15,0.6 -2.05,0.6v1.95c1.35,0 2.2,-0.43 2.95,-0.8 0.65,-0.32 1.18,-0.6 2.05,-0.6s1.4,0.25 2.05,0.6c0.75,0.38 1.57,0.8 2.95,0.8s2.2,-0.43 2.95,-0.8c0.65,-0.32 1.18,-0.6 2.05,-0.6 0.9,0 1.4,0.25 2.05,0.6 0.75,0.38 1.58,0.8 2.95,0.8L22,9.49c-0.9,0 -1.4,-0.25 -2.05,-0.6 -0.75,-0.38 -1.6,-0.8 -2.95,-0.8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/waving_hand.xml b/compose/material/material/icons/generator/raw-icons/twotone/waving_hand.xml
deleted file mode 100644
index 9a65143..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/waving_hand.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8.44,6.37c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-3.18,3.18c1.17,1.17 1.17,3.07 0,4.24l1.41,1.41c1.45,-1.45 1.82,-3.57 1.12,-5.36l6.3,-6.3c0.2,-0.2 0.51,-0.2 0.71,0s0.2,0.51 0,0.71l-4.6,4.6l1.41,1.41l6.01,-6.01c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-6.01,6.01l1.41,1.41l4.95,-4.95c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-5.66,5.66l1.41,1.41l3.54,-3.54c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71L14.1,19.1c-2.54,2.54 -6.65,2.54 -9.19,0s-2.54,-6.65 0,-9.19L8.44,6.37z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.03,4.95L3.49,8.49c-3.32,3.32 -3.32,8.7 0,12.02s8.7,3.32 12.02,0l6.01,-6.01c0.97,-0.97 0.97,-2.56 0,-3.54c-0.12,-0.12 -0.25,-0.23 -0.39,-0.32l0.39,-0.39c0.97,-0.97 0.97,-2.56 0,-3.54c-0.16,-0.16 -0.35,-0.3 -0.54,-0.41c0.4,-0.92 0.23,-2.02 -0.52,-2.77c-0.87,-0.87 -2.22,-0.96 -3.2,-0.28c-0.1,-0.15 -0.21,-0.29 -0.34,-0.42c-0.97,-0.97 -2.56,-0.97 -3.54,0l-2.51,2.51c-0.09,-0.14 -0.2,-0.27 -0.32,-0.39C9.58,3.98 8,3.98 7.03,4.95zM8.44,6.37c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-3.18,3.18c1.17,1.17 1.17,3.07 0,4.24l1.41,1.41c1.45,-1.45 1.82,-3.57 1.12,-5.36l6.3,-6.3c0.2,-0.2 0.51,-0.2 0.71,0s0.2,0.51 0,0.71l-4.6,4.6l1.41,1.41l6.01,-6.01c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-6.01,6.01l1.41,1.41l4.95,-4.95c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71l-5.66,5.66l1.41,1.41l3.54,-3.54c0.2,-0.2 0.51,-0.2 0.71,0c0.2,0.2 0.2,0.51 0,0.71L14.1,19.1c-2.54,2.54 -6.65,2.54 -9.19,0s-2.54,-6.65 0,-9.19L8.44,6.37zM23,17c0,3.31 -2.69,6 -6,6v-1.5c2.48,0 4.5,-2.02 4.5,-4.5H23zM1,7c0,-3.31 2.69,-6 6,-6v1.5C4.52,2.5 2.5,4.52 2.5,7H1z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wb_auto.xml b/compose/material/material/icons/generator/raw-icons/twotone/wb_auto.xml
deleted file mode 100644
index ef2ff11..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wb_auto.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.35,0 4.38,-1.36 5.36,-3.32l0.01,-0.01c0.4,-0.81 0.63,-1.71 0.63,-2.67 0,-3.31 -2.69,-6 -6,-6zM10.3,16l-0.7,-2L6.4,14l-0.7,2L3.8,16L7,7h2l3.2,9h-1.9zM6.85,12.65h2.3L8,9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,7l-3.2,9h1.9l0.7,-2h3.2l0.7,2h1.9L9,7L7,7zM6.85,12.65L8,9l1.15,3.65h-2.3zM20.8,13.29L19.3,7h-1.6l-1.49,6.29L15,7h-0.76l-0.01,0.01C12.76,5.18 10.53,4 8,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8c2.96,0 5.55,-1.61 6.93,-4 0.03,-0.06 0.05,-0.12 0.08,-0.18 0.05,-0.08 0.09,-0.17 0.14,-0.25l0.1,0.43L17,16l1.5,-6.1L20,16h1.75l2.05,-9L22,7l-1.2,6.29zM13.37,14.67C12.38,16.64 10.35,18 8,18c-3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6 6,2.69 6,6c0,0.96 -0.23,1.86 -0.63,2.67z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wb_cloudy.xml b/compose/material/material/icons/generator/raw-icons/twotone/wb_cloudy.xml
deleted file mode 100644
index 4192bb5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wb_cloudy.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.23,12.04l-1.52,-0.11 -0.3,-1.5C16.89,7.86 14.62,6 12.01,6 9.95,6 8.08,7.14 7.13,8.96l-0.5,0.95 -1.07,0.11c-2.02,0.22 -3.55,1.93 -3.55,3.98 0,2.21 1.79,4 4,4h13c1.65,0 3,-1.35 3,-3 0,-1.55 -1.23,-2.86 -2.78,-2.96z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.36,10.04C18.67,6.59 15.65,4 12.01,4 9.11,4 6.6,5.64 5.35,8.04 2.35,8.36 0.01,10.91 0.01,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19.01,18h-13c-2.21,0 -4,-1.79 -4,-4 0,-2.05 1.53,-3.76 3.56,-3.97l1.07,-0.11 0.5,-0.95C8.08,7.14 9.95,6 12.01,6c2.61,0 4.89,1.86 5.4,4.43l0.3,1.5 1.52,0.11c1.56,0.11 2.78,1.41 2.78,2.96 0,1.65 -1.35,3 -3,3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wb_incandescent.xml b/compose/material/material/icons/generator/raw-icons/twotone/wb_incandescent.xml
deleted file mode 100644
index f31ca27..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wb_incandescent.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,8.59l-1,-0.58V4.05h-2v3.96l-1,0.58c-1.24,0.72 -2,2.04 -2,3.46 0,2.21 1.79,4 4,4s4,-1.79 4,-4c0,-1.42 -0.77,-2.74 -2,-3.46z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.55,19.09l1.41,1.41 1.79,-1.8 -1.41,-1.41zM11,20h2v3h-2zM1,11h3v2L1,13zM15,6.86L15,2.05L9,2.05v4.81C7.21,7.9 6,9.83 6,12.05c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-2.22 -1.21,-4.15 -3,-5.19zM12,16.05c-2.21,0 -4,-1.79 -4,-4 0,-1.42 0.77,-2.74 2,-3.46l1,-0.58L11,4.05h2v3.96l1,0.58c1.24,0.72 2,2.04 2,3.46 0,2.21 -1.79,4 -4,4zM20,11h3v2h-3zM17.24,18.71l1.79,1.8 1.41,-1.41 -1.8,-1.79z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wb_iridescent.xml b/compose/material/material/icons/generator/raw-icons/twotone/wb_iridescent.xml
deleted file mode 100644
index 15d1876..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wb_iridescent.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,11h10v2H7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,15h14L19,9L5,9v6zM7,11h10v2L7,13v-2zM11,1h2v3h-2zM17.25,5.39l1.41,1.41 1.8,-1.79 -1.42,-1.41zM11,20h2v3h-2zM17.24,18.71l1.79,1.8 1.42,-1.42 -1.8,-1.79zM5.34,6.805l-1.788,-1.79L4.96,3.61l1.788,1.788zM3.55,19.08l1.41,1.42 1.79,-1.8 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wb_shade.xml b/compose/material/material/icons/generator/raw-icons/twotone/wb_shade.xml
deleted file mode 100644
index bdf98ce..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wb_shade.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M14,12v2.5l5.5,5.5H22L14,12zM14,20h3l-3,-3V20zM8,4l-6,6h2v10h8V10h2L8,4zM9,14H7v-4h2V14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wb_sunny.xml b/compose/material/material/icons/generator/raw-icons/twotone/wb_sunny.xml
deleted file mode 100644
index ba81afc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wb_sunny.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7.5c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.34,6.25l1.42,-1.41 -1.8,-1.79 -1.41,1.41zM1,10.5h3v2L1,12.5zM11,0.55h2L13,3.5h-2zM18.66,6.255l-1.41,-1.407 1.79,-1.79 1.406,1.41zM17.24,18.16l1.79,1.8 1.41,-1.41 -1.8,-1.79zM20,10.5h3v2h-3zM12,5.5c-3.31,0 -6,2.69 -6,6s2.69,6 6,6 6,-2.69 6,-6 -2.69,-6 -6,-6zM12,15.5c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4 4,1.79 4,4 -1.79,4 -4,4zM11,19.5h2v2.95h-2zM3.55,18.54l1.41,1.41 1.79,-1.8 -1.41,-1.41z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wb_twilight.xml b/compose/material/material/icons/generator/raw-icons/twotone/wb_twilight.xml
deleted file mode 100644
index 474dbed..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wb_twilight.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.955,8.662l2.121,-2.122l1.415,1.414l-2.121,2.122z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2,18h20v2h-20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11,4h2v3h-2z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.543,7.925l1.414,-1.414l2.121,2.121l-1.414,1.414z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,16h14c0,-3.87 -3.13,-7 -7,-7S5,12.13 5,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wc.xml b/compose/material/material/icons/generator/raw-icons/twotone/wc.xml
deleted file mode 100644
index adc526e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wc.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5.5,22v-7.5L4,14.5L4,9c0,-1.1 0.9,-2 2,-2h3c1.1,0 2,0.9 2,2v5.5L9.5,14.5L9.5,22h-4zM18,22v-6h3l-2.54,-7.63C18.18,7.55 17.42,7 16.56,7h-0.12c-0.86,0 -1.63,0.55 -1.9,1.37L12,16h3v6h3zM7.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2zM16.5,6c1.11,0 2,-0.89 2,-2s-0.89,-2 -2,-2 -2,0.89 -2,2 0.89,2 2,2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/web.xml b/compose/material/material/icons/generator/raw-icons/twotone/web.xml
deleted file mode 100644
index fb328c4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/web.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,9h10.5v3.5h-10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,14.5h10.5v3.5h-10.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.5,9h3.5v9h-3.5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM14.5,18L4,18v-3.5h10.5V18zM14.5,12.5H4V9h10.5V12.5zM20,18l-3.5,0V9H20V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/web_asset.xml b/compose/material/material/icons/generator/raw-icons/twotone/web_asset.xml
deleted file mode 100644
index b43d48b..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/web_asset.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,8h14v10H5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM19,18L5,18L5,8h14v10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/web_asset_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/web_asset_off.xml
deleted file mode 100644
index 6999c2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/web_asset_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,17.17V8h-9.17L20,17.17zM5.17,8H4v10h11.17L5.17,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.83,4H20c1.11,0 2,0.9 2,2v12c0,0.34 -0.09,0.66 -0.23,0.94L20,17.17V8h-9.17L6.83,4zM20.49,23.31L17.17,20H4c-1.11,0 -2,-0.9 -2,-2V6c0,-0.34 0.08,-0.66 0.23,-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31zM15.17,18l-10,-10H4v10H15.17z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/web_stories.xml b/compose/material/material/icons/generator/raw-icons/twotone/web_stories.xml
deleted file mode 100644
index 7141c46..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/web_stories.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,4h9v16h-9z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17,4v16c1.1,0 2,-0.9 2,-2V6C19,4.9 18.1,4 17,4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h9c1.1,0 2,-0.9 2,-2V4C15,2.9 14.1,2 13,2zM13,20H4V4h9V20z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,6v12c0.83,0 1.5,-0.67 1.5,-1.5v-9C22.5,6.67 21.83,6 21,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/webhook.xml b/compose/material/material/icons/generator/raw-icons/twotone/webhook.xml
deleted file mode 100644
index 928e143..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/webhook.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,15l5.88,0c0.27,-0.31 0.67,-0.5 1.12,-0.5c0.83,0 1.5,0.67 1.5,1.5c0,0.83 -0.67,1.5 -1.5,1.5c-0.44,0 -0.84,-0.19 -1.12,-0.5l-3.98,0c-0.46,2.28 -2.48,4 -4.9,4c-2.76,0 -5,-2.24 -5,-5c0,-2.42 1.72,-4.44 4,-4.9l0,2.07C4.84,13.58 4,14.7 4,16c0,1.65 1.35,3 3,3s3,-1.35 3,-3V15zM12.5,4c1.65,0 3,1.35 3,3h2c0,-2.76 -2.24,-5 -5,-5l0,0c-2.76,0 -5,2.24 -5,5c0,1.43 0.6,2.71 1.55,3.62l-2.35,3.9C6.02,14.66 5.5,15.27 5.5,16c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5c0,-0.16 -0.02,-0.31 -0.07,-0.45l3.38,-5.63C10.49,9.61 9.5,8.42 9.5,7C9.5,5.35 10.85,4 12.5,4zM17,13c-0.64,0 -1.23,0.2 -1.72,0.54l-3.05,-5.07C11.53,8.35 11,7.74 11,7c0,-0.83 0.67,-1.5 1.5,-1.5S14,6.17 14,7c0,0.15 -0.02,0.29 -0.06,0.43l2.19,3.65C16.41,11.03 16.7,11 17,11l0,0c2.76,0 5,2.24 5,5c0,2.76 -2.24,5 -5,5c-1.85,0 -3.47,-1.01 -4.33,-2.5l2.67,0C15.82,18.82 16.39,19 17,19c1.65,0 3,-1.35 3,-3S18.65,13 17,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/weekend.xml b/compose/material/material/icons/generator/raw-icons/twotone/weekend.xml
deleted file mode 100644
index 8a5f464..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/weekend.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11c-0.55,0 -1,0.45 -1,1v4H4v-4c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v5c0,0.55 0.45,1 1,1h18c0.55,0 1,-0.45 1,-1v-5c0,-0.55 -0.45,-1 -1,-1zM6,14h12v-2c0,-0.88 0.39,-1.67 1,-2.22V7c0,-0.55 -0.45,-1 -1,-1H6c-0.55,0 -1,0.45 -1,1v2.78c0.61,0.55 1,1.34 1,2.22v2z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,9L21,7c0,-1.65 -1.35,-3 -3,-3L6,4C4.35,4 3,5.35 3,7v2c-1.65,0 -3,1.35 -3,3v5c0,1.65 1.35,3 3,3h18c1.65,0 3,-1.35 3,-3v-5c0,-1.65 -1.35,-3 -3,-3zM5,7c0,-0.55 0.45,-1 1,-1h12c0.55,0 1,0.45 1,1v2.78c-0.61,0.55 -1,1.34 -1,2.22v2L6,14v-2c0,-0.88 -0.39,-1.67 -1,-2.22L5,7zM22,17c0,0.55 -0.45,1 -1,1L3,18c-0.55,0 -1,-0.45 -1,-1v-5c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4h16v-4c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/west.xml b/compose/material/material/icons/generator/raw-icons/twotone/west.xml
deleted file mode 100644
index e383687..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/west.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,19l1.41,-1.41L5.83,13H22V11H5.83l4.59,-4.59L9,5l-7,7L9,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/whatsapp.xml b/compose/material/material/icons/generator/raw-icons/twotone/whatsapp.xml
deleted file mode 100644
index 82a2a5d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/whatsapp.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19.05,4.91C17.18,3.03 14.69,2 12.04,2c-5.46,0 -9.91,4.45 -9.91,9.91c0,1.75 0.46,3.45 1.32,4.95L2.05,22l5.25,-1.38c1.45,0.79 3.08,1.21 4.74,1.21h0c0,0 0,0 0,0c5.46,0 9.91,-4.45 9.91,-9.91C21.95,9.27 20.92,6.78 19.05,4.91zM12.04,20.15L12.04,20.15c-1.48,0 -2.93,-0.4 -4.2,-1.15l-0.3,-0.18l-3.12,0.82l0.83,-3.04l-0.2,-0.31c-0.82,-1.31 -1.26,-2.83 -1.26,-4.38c0,-4.54 3.7,-8.24 8.24,-8.24c2.2,0 4.27,0.86 5.82,2.42c1.56,1.56 2.41,3.63 2.41,5.83C20.28,16.46 16.58,20.15 12.04,20.15zM16.56,13.99c-0.25,-0.12 -1.47,-0.72 -1.69,-0.81c-0.23,-0.08 -0.39,-0.12 -0.56,0.12c-0.17,0.25 -0.64,0.81 -0.78,0.97c-0.14,0.17 -0.29,0.19 -0.54,0.06c-0.25,-0.12 -1.05,-0.39 -1.99,-1.23c-0.74,-0.66 -1.23,-1.47 -1.38,-1.72c-0.14,-0.25 -0.02,-0.38 0.11,-0.51c0.11,-0.11 0.25,-0.29 0.37,-0.43c0.12,-0.14 0.17,-0.25 0.25,-0.41c0.08,-0.17 0.04,-0.31 -0.02,-0.43c-0.06,-0.12 -0.56,-1.34 -0.76,-1.84c-0.2,-0.48 -0.41,-0.42 -0.56,-0.43C8.86,7.33 8.7,7.33 8.53,7.33c-0.17,0 -0.43,0.06 -0.66,0.31C7.65,7.89 7.01,8.49 7.01,9.71c0,1.22 0.89,2.4 1.01,2.56c0.12,0.17 1.75,2.67 4.23,3.74c0.59,0.26 1.05,0.41 1.41,0.52c0.59,0.19 1.13,0.16 1.56,0.1c0.48,-0.07 1.47,-0.6 1.67,-1.18c0.21,-0.58 0.21,-1.07 0.14,-1.18S16.81,14.11 16.56,13.99z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/whatshot.xml b/compose/material/material/icons/generator/raw-icons/twotone/whatshot.xml
deleted file mode 100644
index c49caa3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/whatshot.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.11,6.77c-0.53,2.6 -2.62,4.43 -5.28,4.43 -1.56,0 -2.96,-0.62 -3.97,-1.63C6.3,10.96 6,12.47 6,14c0,3.31 2.69,6 6,6s6,-2.69 6,-6c0,-2.56 -0.66,-5.03 -1.89,-7.23zM11.89,17.99c-1.37,0 -2.49,-1.08 -2.49,-2.42 0,-1.25 0.81,-2.13 2.17,-2.41 1.37,-0.28 2.78,-0.93 3.57,-1.99 0.3,1 0.46,2.05 0.46,3.12 0,2.04 -1.66,3.7 -3.71,3.7z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M11.57,13.16c-1.36,0.28 -2.17,1.16 -2.17,2.41 0,1.34 1.11,2.42 2.49,2.42 2.05,0 3.71,-1.66 3.71,-3.71 0,-1.07 -0.15,-2.12 -0.46,-3.12 -0.79,1.07 -2.2,1.72 -3.57,2zM13.5,0.67s0.74,2.65 0.74,4.8c0,2.06 -1.35,3.73 -3.41,3.73 -2.07,0 -3.63,-1.67 -3.63,-3.73l0.03,-0.36C5.21,7.51 4,10.62 4,14c0,4.42 3.58,8 8,8s8,-3.58 8,-8C20,8.61 17.41,3.8 13.5,0.67zM12,20c-3.31,0 -6,-2.69 -6,-6 0,-1.53 0.3,-3.04 0.86,-4.43 1.01,1.01 2.41,1.63 3.97,1.63 2.66,0 4.75,-1.83 5.28,-4.43C17.34,8.97 18,11.44 18,14c0,3.31 -2.69,6 -6,6z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wheelchair_pickup.xml b/compose/material/material/icons/generator/raw-icons/twotone/wheelchair_pickup.xml
deleted file mode 100644
index c86f4382..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wheelchair_pickup.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4.5,4c0,-1.11 0.89,-2 2,-2s2,0.89 2,2s-0.89,2 -2,2S4.5,5.11 4.5,4zM10,10.95V9c0,-1.1 -0.9,-2 -2,-2H5C3.9,7 3,7.9 3,9v6h2v7h3.5v-0.11c-1.24,-1.26 -2,-2.99 -2,-4.89C6.5,14.42 7.91,12.16 10,10.95zM16.5,17c0,1.65 -1.35,3 -3,3s-3,-1.35 -3,-3c0,-1.11 0.61,-2.06 1.5,-2.58v-2.16C9.98,12.9 8.5,14.77 8.5,17c0,2.76 2.24,5 5,5s5,-2.24 5,-5H16.5zM19.54,14H15V8h-2v8h5.46l2.47,3.71l1.66,-1.11L19.54,14z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/where_to_vote.xml b/compose/material/material/icons/generator/raw-icons/twotone/where_to_vote.xml
deleted file mode 100644
index 70c2356..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/where_to_vote.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,3C8.69,3 6,5.69 6,9c0,3.54 3.82,8.86 6,11.47 1.75,-2.11 6,-7.63 6,-11.47 0,-3.31 -2.69,-6 -6,-6zM10.47,14l-3.18,-3.18L8.71,9.4l1.77,1.77 4.6,-4.6 1.41,1.41L10.47,14z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,1C7.59,1 4,4.59 4,9c0,5.57 6.96,13.34 7.26,13.67l0.74,0.82 0.74,-0.82C13.04,22.34 20,14.57 20,9c0,-4.41 -3.59,-8 -8,-8zM12,20.47C9.82,17.86 6,12.54 6,9c0,-3.31 2.69,-6 6,-6s6,2.69 6,6c0,3.83 -4.25,9.36 -6,11.47zM15.07,6.57l-4.6,4.6L8.71,9.4l-1.42,1.42L10.47,14l6.01,-6.01z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/widgets.xml b/compose/material/material/icons/generator/raw-icons/twotone/widgets.xml
deleted file mode 100644
index 50b0fab..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/widgets.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h4v4L5,9zM15,15h4v4h-4zM5,15h4v4L5,19zM16.66,4.52l-2.83,2.82 2.83,2.83 2.83,-2.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.66,1.69L11,7.34 16.66,13l5.66,-5.66 -5.66,-5.65zM13.83,7.34l2.83,-2.83 2.83,2.83 -2.83,2.83 -2.83,-2.83zM3,3v8h8L11,3L3,3zM9,9L5,9L5,5h4v4zM3,21h8v-8L3,13v8zM5,15h4v4L5,19v-4zM13,13v8h8v-8h-8zM19,19h-4v-4h4v4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/width_full.xml b/compose/material/material/icons/generator/raw-icons/twotone/width_full.xml
deleted file mode 100644
index 06ceb58..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/width_full.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7,6h10v12h-10z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM5,18H4V6h1V18zM17,18H7V6h10V18zM20,18h-1V6h1V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/width_normal.xml b/compose/material/material/icons/generator/raw-icons/twotone/width_normal.xml
deleted file mode 100644
index 4fdc336..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/width_normal.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,6h4v12h-4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM8,18H4V6h4V18zM14,18h-4V6h4V18zM20,18h-4V6h4V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/width_wide.xml b/compose/material/material/icons/generator/raw-icons/twotone/width_wide.xml
deleted file mode 100644
index 8daac03..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/width_wide.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,6h8v12h-8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,4H4C2.9,4 2,4.9 2,6v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6C22,4.9 21.1,4 20,4zM6,18H4V6h2V18zM16,18H8V6h8V18zM20,18h-2V6h2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi.xml
deleted file mode 100644
index b95c22a..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,9l2,2c4.97,-4.97 13.03,-4.97 18,0l2,-2C16.93,2.93 7.08,2.93 1,9zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0zM5,13l2,2c2.76,-2.76 7.24,-2.76 10,0l2,-2C15.14,9.14 8.87,9.14 5,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_1_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_1_bar.xml
deleted file mode 100644
index dff42e7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_1_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.53,17.46L12,21l-3.53,-3.54C9.37,16.56 10.62,16 12,16S14.63,16.56 15.53,17.46z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_2_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_2_bar.xml
deleted file mode 100644
index 7d24069..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_2_bar.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,10c3.03,0 5.78,1.23 7.76,3.22l-2.12,2.12C16.2,13.9 14.2,13 12,13c-2.2,0 -4.2,0.9 -5.64,2.35l-2.12,-2.12C6.22,11.23 8.97,10 12,10zM12,16c-1.38,0 -2.63,0.56 -3.53,1.46L12,21l3.53,-3.54C14.63,16.56 13.38,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_calling.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_calling.xml
deleted file mode 100644
index 16b1e55..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_calling.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.2,18.21c1.2,0.41 2.48,0.67 3.8,0.75v-1.49c-0.88,-0.07 -1.75,-0.22 -2.6,-0.45L15.2,18.21z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6.54,5h-1.5c0.09,1.32 0.35,2.59 0.75,3.8l1.2,-1.2C6.75,6.76 6.6,5.89 6.54,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,15.51c-1.24,0 -2.45,-0.2 -3.57,-0.57c-0.1,-0.04 -0.21,-0.05 -0.31,-0.05c-0.26,0 -0.51,0.1 -0.71,0.29l-2.2,2.2c-2.83,-1.45 -5.15,-3.76 -6.59,-6.59l2.2,-2.2C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4c0,-0.55 -0.45,-1 -1,-1H4C3.45,3 3,3.45 3,4c0,9.39 7.61,17 17,17c0.55,0 1,-0.45 1,-1v-3.49C21,15.96 20.55,15.51 20,15.51zM5.03,5h1.5C6.6,5.89 6.75,6.76 6.99,7.59l-1.2,1.2C5.38,7.59 5.12,6.32 5.03,5zM19,18.97c-1.32,-0.09 -2.59,-0.35 -3.8,-0.75l1.19,-1.19c0.85,0.24 1.72,0.39 2.6,0.45V18.97z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,4.95C21.79,4.78 19.67,3 16.5,3c-3.18,0 -5.29,1.78 -5.5,1.95L16.5,12L22,4.95z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_calling_3.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_calling_3.xml
deleted file mode 100644
index d166519..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_calling_3.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.49,3c-2.21,0 -4.21,0.9 -5.66,2.34l1.06,1.06c1.18,-1.18 2.8,-1.91 4.59,-1.91s3.42,0.73 4.59,1.91l1.06,-1.06C20.7,3.9 18.7,3 16.49,3z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.03,7.46C19.12,6.56 17.87,6 16.49,6s-2.63,0.56 -3.54,1.46l1.06,1.06c0.63,-0.63 1.51,-1.03 2.47,-1.03s1.84,0.39 2.47,1.03L20.03,7.46z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.08,9.59L16.49,11l1.41,-1.41C17.54,9.22 17.04,9 16.49,9S15.44,9.22 15.08,9.59z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15,17.83c1.29,0.54 2.63,0.89 4,1.07v-2.23l-2.35,-0.47L15,17.83z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.33,5H5.1c0.18,1.37 0.53,2.7 1.07,4L7.8,7.35L7.33,5z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20.2,14.87l-3.67,-0.73c-0.5,-0.1 -0.83,0.2 -0.9,0.27l-2.52,2.5c-2.5,-1.43 -4.57,-3.5 -6,-6l2.5,-2.52c0.23,-0.24 0.33,-0.57 0.27,-0.9L9.13,3.8C9.04,3.34 8.63,3 8.15,3H4C3.44,3 2.97,3.47 3,4.03C3.17,6.92 4.05,9.63 5.43,12c1.58,2.73 3.85,4.99 6.57,6.57c2.37,1.37 5.08,2.26 7.97,2.43c0.55,0.03 1.03,-0.43 1.03,-1v-4.15C21,15.37 20.66,14.96 20.2,14.87zM5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7 5.27,6.37 5.1,5zM19,18.9c-1.37,-0.18 -2.7,-0.53 -4,-1.07l1.65,-1.63L19,16.67V18.9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_channel.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_channel.xml
deleted file mode 100644
index 792ca89..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_channel.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,21c0.5,-2.53 2,-6 3,-6s2.5,3.53 3,6H13zM5.01,21c0.61,-5.27 2,-9.82 2.99,-10.87c0.98,1.05 2.38,5.61 2.99,10.87H5.01zM16,13c-0.99,0 -1.82,0.62 -2.5,1.5c0.57,-4.77 1.54,-8.62 2.5,-9.44c0.97,0.81 1.91,4.67 2.49,9.43C17.81,13.62 16.98,13 16,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,3c-2.51,0 -3.77,5.61 -4.4,10.57C10.79,10.66 9.61,8 8,8C4.43,8 3,21 3,21h2.01c0.61,-5.27 2,-9.82 2.99,-10.87c0.98,1.05 2.38,5.61 2.99,10.87H13c0.5,-2.53 2,-6 3,-6s2.5,3.53 3,6h2C21,21 20.5,3 16,3zM16,13c-0.99,0 -1.82,0.62 -2.5,1.5c0.57,-4.77 1.54,-8.62 2.5,-9.44c0.97,0.81 1.91,4.67 2.49,9.43C17.81,13.62 16.98,13 16,13z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_find.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_find.xml
deleted file mode 100644
index 94a8a2c..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_find.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.59,10.39L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98L12,21l1.41,-1.42L2.93,9.08C5.45,7.16 8.59,6 12,6C16.13,6 19.88,7.68 22.59,10.39z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M23,18.59l-2.56,-2.56C20.79,15.44 21,14.75 21,14c0,-2.24 -1.76,-4 -4,-4s-4,1.76 -4,4c0,2.24 1.76,4 4,4c0.75,0 1.44,-0.21 2.03,-0.56L21.59,20L23,18.59zM15,14c0,-1.12 0.88,-2 2,-2s2,0.88 2,2c0,1.12 -0.88,2 -2,2S15,15.12 15,14z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.59,10.39C19.88,7.68 16.13,6 12,6C8.59,6 5.45,7.16 2.93,9.08l2.26,2.26l8.24,8.24l0.46,-0.46C12.15,18.09 11,16.21 11,14c0,-1.62 0.62,-3.13 1.75,-4.25S15.38,8 17,8c2.21,0 4.09,1.15 5.13,2.89l0.49,-0.49l-0.02,-0.02L22.59,10.39z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_lock.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_lock.xml
deleted file mode 100644
index f0ee647..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_lock.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21.98,11L24,8.98C20.93,5.9 16.69,4 12,4C7.31,4 3.07,5.9 0,8.98l6.35,6.36L12,21l3.05,-3.05V15c0,-0.45 0.09,-0.88 0.23,-1.29c0.54,-1.57 2.01,-2.71 3.77,-2.71H21.98z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22,16v-1c0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2v1c-0.55,0 -1,0.45 -1,1v3c0,0.55 0.45,1 1,1h4c0.55,0 1,-0.45 1,-1v-3C23,16.45 22.55,16 22,16zM21,16h-2v-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_off.xml
deleted file mode 100644
index 68c7929..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M21,11l2,-2c-3.73,-3.73 -8.87,-5.15 -13.7,-4.31l2.58,2.58c3.3,-0.02 6.61,1.22 9.12,3.73zM19,13c-1.08,-1.08 -2.36,-1.85 -3.72,-2.33l3.02,3.02 0.7,-0.69zM9,17l3,3 3,-3c-1.65,-1.66 -4.34,-1.66 -6,0zM3.41,1.64L2,3.05 5.05,6.1C3.59,6.83 2.22,7.79 1,9l2,2c1.23,-1.23 2.65,-2.16 4.17,-2.78l2.24,2.24C7.79,10.89 6.27,11.74 5,13l2,2c1.35,-1.35 3.11,-2.04 4.89,-2.06l7.08,7.08 1.41,-1.41L3.41,1.64z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_password.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_password.xml
deleted file mode 100644
index 4eecd27..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_password.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M24,8.98l-2.12,2.13C19.35,8.57 15.85,7 12,7s-7.35,1.57 -9.88,4.11L0,8.98C3.07,5.9 7.31,4 12,4S20.93,5.9 24,8.98zM24,20v3c0,0.55 -0.45,1 -1,1h-4c-0.55,0 -1,-0.45 -1,-1v-3c0,-0.55 0.45,-1 1,-1v-1c0,-1.1 0.9,-2 2,-2s2,0.9 2,2v1C23.55,19 24,19.45 24,20zM22,18c0,-0.55 -0.45,-1 -1,-1s-1,0.45 -1,1v1h2V18zM4.24,13.22l2.12,2.12C7.8,13.9 9.8,13 12,13c2.2,0 4.2,0.9 5.64,2.35l2.12,-2.12C17.78,11.23 15.03,10 12,10C8.97,10 6.22,11.23 4.24,13.22zM12,16c-1.38,0 -2.63,0.56 -3.53,1.46L12,21l3.53,-3.54C14.63,16.56 13.38,16 12,16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_protected_setup.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_protected_setup.xml
deleted file mode 100644
index a0ca4576..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_protected_setup.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16.71,5.29L19,3h-8v8l2.3,-2.3c1.97,1.46 3.25,3.78 3.25,6.42c0,1.31 -0.32,2.54 -0.88,3.63c2.33,-1.52 3.88,-4.14 3.88,-7.13C19.55,9.1 18.44,6.85 16.71,5.29z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M7.46,8.88c0,-1.31 0.32,-2.54 0.88,-3.63C6,6.77 4.46,9.39 4.46,12.38c0,2.52 1.1,4.77 2.84,6.33L5,21h8v-8l-2.3,2.3C8.74,13.84 7.46,11.52 7.46,8.88z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering.xml
deleted file mode 100644
index 1e68b1d..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c0,-3.31 -2.69,-6 -6,-6s-6,2.69 -6,6c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.48 -0.81,2.75 -2,3.45l1,1.74c1.79,-1.04 3,-2.97 3,-5.19zM12,3C6.48,3 2,7.48 2,13c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,18.53 4,15.96 4,13c0,-4.42 3.58,-8 8,-8s8,3.58 8,8c0,2.96 -1.61,5.53 -4,6.92l1,1.73c2.99,-1.73 5,-4.95 5,-8.65 0,-5.52 -4.48,-10 -10,-10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_error.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_error.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_error.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_error_rounded.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_error_rounded.xml
deleted file mode 100644
index 5510531..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_error_rounded.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7c-3.31,0 -6,2.69 -6,6c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,1.11 -0.45,2.1 -1.18,2.82l1.42,1.42C17.32,16.15 18,14.66 18,13C18,9.69 15.31,7 12,7zM12,3C6.48,3 2,7.48 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-4.42 3.58,-8 8,-8c2.53,0 4.78,1.17 6.24,3h2.42C18.93,5.01 15.7,3 12,3zM12,11c-1.1,0 -2,0.9 -2,2c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15s1.05,-0.23 1.41,-0.59C13.77,14.05 14,13.55 14,13C14,11.9 13.1,11 12,11zM20,10h2v6h-2V10zM20,18h2v2h-2V18z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_off.xml
deleted file mode 100644
index 9bfede4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wifi_tethering_off.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6 2,10.71 2,13c0,2.76 1.12,5.26 2.93,7.07l1.42,-1.42C4.9,17.21 4,15.21 4,13c0,-1.75 0.57,-3.35 1.51,-4.66l1.43,1.43C6.35,10.7 6,11.81 6,13c0,1.66 0.68,3.15 1.76,4.24l1.42,-1.42C8.45,15.1 8,14.11 8,13c0,-0.63 0.15,-1.23 0.41,-1.76l1.61,1.61c0,0.05 -0.02,0.1 -0.02,0.15c0,0.55 0.23,1.05 0.59,1.41C10.95,14.77 11.45,15 12,15c0.05,0 0.1,-0.01 0.16,-0.02l7.62,7.62l1.41,-1.41L2.81,2.81zM17.7,14.87C17.89,14.28 18,13.65 18,13c0,-3.31 -2.69,-6 -6,-6c-0.65,0 -1.28,0.1 -1.87,0.3l1.71,1.71C11.89,9 11.95,9 12,9c2.21,0 4,1.79 4,4c0,0.05 0,0.11 -0.01,0.16L17.7,14.87zM12,5c4.42,0 8,3.58 8,8c0,1.22 -0.27,2.37 -0.77,3.4l1.49,1.49C21.53,16.45 22,14.78 22,13c0,-5.52 -4.48,-10 -10,-10c-1.78,0 -3.44,0.46 -4.89,1.28l1.48,1.48C9.63,5.27 10.78,5 12,5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wind_power.xml b/compose/material/material/icons/generator/raw-icons/twotone/wind_power.xml
deleted file mode 100644
index af43dd5..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wind_power.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3.28,13C3.13,13 3,13.13 3,13.28c0,0.12 0.08,0.24 0.2,0.27l4.51,1.29l2.33,-1.4c-0.02,-0.15 -0.03,-0.29 -0.03,-0.44H3.28z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.76,3.54c-0.15,-0.09 -0.29,-0.01 -0.34,0.04L14,6.78v3.36l0.11,0.03l3.74,-6.24C17.94,3.79 17.89,3.62 17.76,3.54z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18.19,15.48l-2.78,-0.69c-0.07,0.1 -0.15,0.19 -0.24,0.28l4.85,4.85c0.16,0.16 0.35,0.05 0.4,0c0.09,-0.09 0.11,-0.23 0.05,-0.33L18.19,15.48z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,3h6v2h-6z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M1,7h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M3,19h5v2h-5z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.21,18.61l-2.28,-4.1c-0.27,-0.48 -0.73,-0.83 -1.26,-0.97l-2.69,-0.67c-0.02,-0.47 -0.14,-0.92 -0.37,-1.33l3.96,-6.59c0.65,-1.08 0.3,-2.48 -0.78,-3.13c-0.36,-0.22 -0.77,-0.32 -1.17,-0.32c-0.56,0 -1.12,0.21 -1.56,0.62l-3.43,3.21C12.23,5.7 12,6.23 12,6.78v3.4c-0.47,0.17 -0.89,0.45 -1.23,0.82H3.28C2.02,11 1,12.02 1,13.28c0,1.02 0.67,1.91 1.65,2.19l4.51,1.29c0.18,0.05 0.37,0.08 0.55,0.08c0.36,0 0.72,-0.1 1.03,-0.29l2.24,-1.34c0.29,0.26 0.63,0.47 1.02,0.61V21c-1.1,0 -2,0.9 -2,2h6c0,-1.1 -0.9,-2 -2,-2v-4.28l4.61,4.61c0.45,0.45 1.03,0.67 1.61,0.67c0.58,0 1.17,-0.22 1.61,-0.67h0C22.55,20.61 22.71,19.5 22.21,18.61zM7.72,14.84L3.2,13.55C3.08,13.52 3,13.4 3,13.28C3,13.13 3.13,13 3.28,13h6.73c0,0.15 0.01,0.3 0.03,0.44L7.72,14.84zM13,14c-0.55,0 -1,-0.45 -1,-1c0,-0.55 0.45,-1 1,-1s1,0.45 1,1C14,13.55 13.55,14 13,14zM14,10.14V6.78l3.43,-3.21c0.05,-0.05 0.19,-0.12 0.34,-0.04c0.13,0.08 0.18,0.25 0.1,0.38l-3.74,6.24L14,10.14zM20.42,19.92c-0.05,0.05 -0.24,0.16 -0.4,0l-4.85,-4.85c0.08,-0.09 0.16,-0.18 0.24,-0.28l2.78,0.69l2.28,4.1C20.53,19.69 20.51,19.83 20.42,19.92z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/window.xml b/compose/material/material/icons/generator/raw-icons/twotone/window.xml
deleted file mode 100644
index 28ecf14..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/window.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,13h6v6h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,13h6v6h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M5,5h6v6h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13,5h6v6h-6z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.1,3 19,3zM11,19H5v-6h6V19zM11,11H5V5h6V11zM19,19h-6v-6h6V19zM19,11h-6V5h6V11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wine_bar.xml b/compose/material/material/icons/generator/raw-icons/twotone/wine_bar.xml
deleted file mode 100644
index c54eae3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wine_bar.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,13c-1.86,0 -3.41,-1.28 -3.86,-3h7.72C15.41,11.72 13.86,13 12,13z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,3l0,6c0,2.97 2.16,5.43 5,5.91V19H8v2h8v-2h-3v-4.09c2.84,-0.48 5,-2.94 5,-5.91V3H6zM12,13c-1.86,0 -3.41,-1.28 -3.86,-3h7.72C15.41,11.72 13.86,13 12,13zM16,8H8l0,-3h8L16,8z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/woman.xml b/compose/material/material/icons/generator/raw-icons/twotone/woman.xml
deleted file mode 100644
index 46868cb..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/woman.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,8.31C13.62,7.52 12.85,7 12,7s-1.62,0.52 -1.94,1.31L7,16h3v6h4v-6h3L13.94,8.31z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/woman_2.xml b/compose/material/material/icons/generator/raw-icons/twotone/woman_2.xml
deleted file mode 100644
index 1f42b3f..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/woman_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M13.94,8.31C13.62,7.52 12.85,7 12,7s-1.62,0.52 -1.94,1.31L7,16h3.5v6h3v-6H17L13.94,8.31z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/work.xml b/compose/material/material/icons/generator/raw-icons/twotone/work.xml
deleted file mode 100644
index da3dad3..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/work.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8h16v11H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM10,4h4v2h-4L10,4zM20,19L4,19L4,8h16v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/work_history.xml b/compose/material/material/icons/generator/raw-icons/twotone/work_history.xml
deleted file mode 100644
index 1940bec..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/work_history.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8v11h7.08C11.03,18.67 11,18.34 11,18c0,-3.87 3.13,-7 7,-7c0.7,0 1.37,0.1 2,0.29V8H4z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,19V8h16v3.29c0.72,0.22 1.4,0.54 2,0.97V8c0,-1.11 -0.89,-2 -2,-2h-4V4c0,-1.11 -0.89,-2 -2,-2h-4C8.89,2 8,2.89 8,4v2H4C2.89,6 2.01,6.89 2.01,8L2,19c0,1.11 0.89,2 2,2h7.68c-0.3,-0.62 -0.5,-1.29 -0.6,-2H4zM10,4h4v2h-4V4z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.76,0 -5,2.24 -5,5s2.24,5 5,5s5,-2.24 5,-5S20.76,13 18,13zM19.65,20.35l-2.15,-2.15V15h1v2.79l1.85,1.85L19.65,20.35z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/work_off.xml b/compose/material/material/icons/generator/raw-icons/twotone/work_off.xml
deleted file mode 100644
index bb186e2..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/work_off.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,8v11h13.74l-11,-11zM12.4,8l7.6,7.6L20,8z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M10,4h4v2h-3.6l2,2H20v7.6l2,2V8c0,-1.11 -0.89,-2 -2,-2h-4V4c0,-1.11 -0.89,-2 -2,-2h-4c-0.99,0 -1.8,0.7 -1.96,1.64L10,5.6V4zM3.4,1.84L1.99,3.25 4.74,6H4c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h15.74l2,2 1.41,-1.41L3.4,1.84zM4,19V8h2.74l11,11H4z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/work_outline.xml b/compose/material/material/icons/generator/raw-icons/twotone/work_outline.xml
deleted file mode 100644
index 3b30a14..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/work_outline.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,6h-4L16,4c0,-1.11 -0.89,-2 -2,-2h-4c-1.11,0 -2,0.89 -2,2v2L4,6c-1.11,0 -1.99,0.89 -1.99,2L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM10,4h4v2h-4L10,4zM20,19L4,19L4,8h16v11z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/workspace_premium.xml b/compose/material/material/icons/generator/raw-icons/twotone/workspace_premium.xml
deleted file mode 100644
index c1ef189..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/workspace_premium.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,4c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S15.31,4 12,4zM14.31,13.69L12,11.93l-2.32,1.76l0.88,-2.85L8.25,9h2.84L12,6.19L12.91,9h2.84l-2.32,1.84L14.31,13.69zM12,19l-4,1.02v-3.1C9.18,17.6 10.54,18 12,18s2.82,-0.4 4,-1.08v3.1L12,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9.68,13.69L12,11.93l2.31,1.76l-0.88,-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69zM20,10c0,-4.42 -3.58,-8 -8,-8s-8,3.58 -8,8c0,2.03 0.76,3.87 2,5.28V23l6,-2l6,2v-7.72C19.24,13.87 20,12.03 20,10zM12,4c3.31,0 6,2.69 6,6s-2.69,6 -6,6s-6,-2.69 -6,-6S8.69,4 12,4zM12,19l-4,1.02v-3.1C9.18,17.6 10.54,18 12,18s2.82,-0.4 4,-1.08v3.1L12,19z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/workspaces.xml b/compose/material/material/icons/generator/raw-icons/twotone/workspaces.xml
deleted file mode 100644
index 452dbff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/workspaces.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,17m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,7m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,17m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S20.2,13 18,13zM18,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C20,18.1 19.1,19 18,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M6,13c-2.2,0 -4,1.8 -4,4s1.8,4 4,4s4,-1.8 4,-4S8.2,13 6,13zM6,19c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C8,18.1 7.1,19 6,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M16,7c0,-2.2 -1.8,-4 -4,-4S8,4.8 8,7s1.8,4 4,4S16,9.2 16,7zM12,9c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2s2,0.9 2,2C14,8.1 13.1,9 12,9z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wrap_text.xml b/compose/material/material/icons/generator/raw-icons/twotone/wrap_text.xml
deleted file mode 100644
index 384c4e4..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wrap_text.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,17h6v2L4,19zM17,11L4,11v2h13.25c1.1,0 2,0.9 2,2s-0.9,2 -2,2L15,17v-2l-3,3 3,3v-2h2c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4zM4,5h16v2L4,7z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wrong_location.xml b/compose/material/material/icons/generator/raw-icons/twotone/wrong_location.xml
deleted file mode 100644
index c00b165..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wrong_location.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,11c0,0.07 0,0.13 0,0.2c0,2.34 -1.95,5.44 -6,9.14c-4.05,-3.7 -6,-6.79 -6,-9.14C6,7.57 8.65,5 12,5c0.34,0 0.68,0.03 1,0.08V3.06C12.67,3.02 12.34,3 12,3c-4.2,0 -8,3.22 -8,8.2c0,3.32 2.67,7.25 8,11.8c5.33,-4.55 8,-8.48 8,-11.8c0,-0.07 0,-0.13 0,-0.2H18z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,11m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M22.54,2.88l-1.42,-1.42l-2.12,2.13l-2.12,-2.13l-1.42,1.42l2.13,2.12l-2.13,2.12l1.42,1.42l2.12,-2.13l2.12,2.13l1.42,-1.42l-2.13,-2.12z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/wysiwyg.xml b/compose/material/material/icons/generator/raw-icons/twotone/wysiwyg.xml
deleted file mode 100644
index ea2b6ff..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/wysiwyg.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal"
-    android:autoMirrored="true">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,19H5V7h14V19zM17,12H7v-2h10V12zM13,16H7v-2h6V16z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M19,3H5C3.89,3 3,3.9 3,5v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5C21,3.9 20.11,3 19,3zM19,19H5V7h14V19zM17,12H7v-2h10V12zM13,16H7v-2h6V16z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/yard.xml b/compose/material/material/icons/generator/raw-icons/twotone/yard.xml
deleted file mode 100644
index aa37436..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/yard.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M4,20h16V4H4V20zM8,8.22c0,-0.86 0.7,-1.56 1.56,-1.56c0.33,0 0.64,0.1 0.89,0.28l-0.01,-0.12c0,-0.86 0.7,-1.56 1.56,-1.56s1.56,0.7 1.56,1.56l-0.01,0.12c0.26,-0.18 0.56,-0.28 0.89,-0.28c0.86,0 1.56,0.7 1.56,1.56c0,0.62 -0.37,1.16 -0.89,1.4C15.63,9.87 16,10.41 16,11.03c0,0.86 -0.7,1.56 -1.56,1.56c-0.33,0 -0.64,-0.11 -0.89,-0.28l0.01,0.12c0,0.86 -0.7,1.56 -1.56,1.56s-1.56,-0.7 -1.56,-1.56l0.01,-0.12c-0.26,0.18 -0.56,0.28 -0.89,0.28C8.7,12.59 8,11.89 8,11.03c0,-0.62 0.37,-1.16 0.89,-1.4C8.37,9.38 8,8.84 8,8.22zM12,19c0,-3.31 2.69,-6 6,-6C18,16.31 15.31,19 12,19s-6,-2.69 -6,-6C9.31,13 12,15.69 12,19z"
-      android:strokeAlpha="0.3"
-      android:fillAlpha="0.3"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M8,11.03c0,0.86 0.7,1.56 1.56,1.56c0.33,0 0.63,-0.1 0.89,-0.28l-0.01,0.12c0,0.86 0.7,1.56 1.56,1.56s1.56,-0.7 1.56,-1.56l-0.01,-0.12c0.25,0.17 0.56,0.28 0.89,0.28c0.86,0 1.56,-0.7 1.56,-1.56c0,-0.62 -0.37,-1.16 -0.89,-1.41C15.63,9.38 16,8.84 16,8.22c0,-0.86 -0.7,-1.56 -1.56,-1.56c-0.33,0 -0.63,0.1 -0.89,0.28l0.01,-0.12c0,-0.86 -0.7,-1.56 -1.56,-1.56s-1.56,0.7 -1.56,1.56l0.01,0.12C10.2,6.76 9.89,6.66 9.56,6.66C8.7,6.66 8,7.36 8,8.22c0,0.62 0.37,1.16 0.89,1.41C8.37,9.87 8,10.41 8,11.03zM12,8.06c0.86,0 1.56,0.7 1.56,1.56s-0.7,1.56 -1.56,1.56s-1.56,-0.7 -1.56,-1.56S11.14,8.06 12,8.06z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M18,13c-3.31,0 -6,2.69 -6,6C15.31,19 18,16.31 18,13z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M12,19c0,-3.31 -2.69,-6 -6,-6C6,16.31 8.69,19 12,19z"/>
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M20,2H4C2.9,2 2,2.9 2,4v16c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM20,20H4V4h16V20z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/youtube_searched_for.xml b/compose/material/material/icons/generator/raw-icons/twotone/youtube_searched_for.xml
deleted file mode 100644
index 97115bc..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/youtube_searched_for.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.01,14h-0.8l-0.27,-0.27c0.98,-1.14 1.57,-2.61 1.57,-4.23 0,-3.59 -2.91,-6.5 -6.5,-6.5s-6.5,3 -6.5,6.5H2l3.84,4 4.16,-4H6.51C6.51,7 8.53,5 11.01,5s4.5,2.01 4.5,4.5c0,2.48 -2.02,4.5 -4.5,4.5 -0.65,0 -1.26,-0.14 -1.82,-0.38L7.71,15.1c0.97,0.57 2.09,0.9 3.3,0.9 1.61,0 3.08,-0.59 4.22,-1.57l0.27,0.27v0.79l5.01,4.99L22,19l-4.99,-5z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/zoom_in.xml b/compose/material/material/icons/generator/raw-icons/twotone/zoom_in.xml
deleted file mode 100644
index 11957f7..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/zoom_in.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM10,7L9,7v2L7,9v1h2v2h1v-2h2L12,9h-2z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/zoom_in_map.xml b/compose/material/material/icons/generator/raw-icons/twotone/zoom_in_map.xml
deleted file mode 100644
index 1a244634..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/zoom_in_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M9,9l0,-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9zM21,9V7l-2.59,0l3.09,-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9zM3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0,-6L3,15zM15,15l0,6h2v-2.59l3.09,3.09l1.41,-1.41L18.41,17H21v-2L15,15z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/zoom_out.xml b/compose/material/material/icons/generator/raw-icons/twotone/zoom_out.xml
deleted file mode 100644
index 22c3cd0..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/zoom_out.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14zM7,9h5v1L7,10z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/raw-icons/twotone/zoom_out_map.xml b/compose/material/material/icons/generator/raw-icons/twotone/zoom_out_map.xml
deleted file mode 100644
index f19c18e..0000000
--- a/compose/material/material/icons/generator/raw-icons/twotone/zoom_out_map.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:width="24dp"
-    android:height="24dp"
-    android:viewportWidth="24"
-    android:viewportHeight="24"
-    android:tint="?attr/colorControlNormal">
-  <path
-      android:fillColor="@android:color/white"
-      android:pathData="M17.3,5.3l-2.89,2.87 1.42,1.42L18.7,6.7 21,9L21,3h-6zM9,3L3,3v6l2.3,-2.3 2.87,2.89 1.42,-1.42L6.7,5.3zM8.17,14.41L5.3,17.3 3,15v6h6l-2.3,-2.3 2.89,-2.87zM15.83,14.41l-1.42,1.42 2.89,2.87L15,21h6v-6l-2.3,2.3z"/>
-</vector>
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/CoreIcons.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/CoreIcons.kt
deleted file mode 100644
index 8a10e84..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/CoreIcons.kt
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-/**
- * List of 'core' icons that will be added to the 'core' icons module, and depended on by
- * material. These icons are the set of most commonly used icons, including icons used by
- * Material components directly (such as the menu icon in an AppBar). All icons not specified
- * here will be generated to the 'extended' icons module.
- */
-val CoreIcons = listOf(
-    "AccountBox",
-    "AccountCircle",
-    "Add",
-    "AddCircle",
-    "ArrowBack",
-    "ArrowDropDown",
-    "ArrowForward",
-    "Build",
-    "Call",
-    "Check",
-    "CheckCircle",
-    "Clear",
-    "Close",
-    "Create",
-    "DateRange",
-    "Delete",
-    "Done",
-    "Email",
-    "ExitToApp",
-    "Edit",
-    "Face",
-    "Favorite",
-    "FavoriteBorder",
-    "Home",
-    "Info",
-    "KeyboardArrowDown",
-    "KeyboardArrowLeft",
-    "KeyboardArrowRight",
-    "KeyboardArrowUp",
-    "List",
-    "LocationOn",
-    "Lock",
-    "MailOutline",
-    "Menu",
-    "MoreVert",
-    "Notifications",
-    "Person",
-    "Phone",
-    "Place",
-    "PlayArrow",
-    "Refresh",
-    "Search",
-    "Send",
-    "Settings",
-    "Share",
-    "ShoppingCart",
-    "Star",
-    "ThumbUp",
-    "Warning"
-)
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/Icon.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/Icon.kt
deleted file mode 100644
index 3a94ce1..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/Icon.kt
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-/**
- * Represents a icon's Kotlin name, processed XML file name, theme, and XML file content.
- *
- * The [kotlinName] is typically the PascalCase equivalent of the original icon name, with the
- * caveat that icons starting with a number are prefixed with an underscore.
- *
- * @property kotlinName the name of the generated Kotlin property, for example `ZoomOutMap`.
- * @property xmlFileName the name of the processed XML file
- * @property theme the theme of this icon
- * @property fileContent the content of the source XML file that will be parsed.
- * @property autoMirrored indicates that this Icon can be auto-mirrored on Right to Left layouts.
- */
-data class Icon(
-    val kotlinName: String,
-    val xmlFileName: String,
-    val theme: IconTheme,
-    val fileContent: String,
-    val autoMirrored: Boolean
-)
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconParser.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconParser.kt
deleted file mode 100644
index 5da5017..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconParser.kt
+++ /dev/null
@@ -1,144 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import androidx.compose.material.icons.generator.vector.FillType
-import androidx.compose.material.icons.generator.vector.PathParser
-import androidx.compose.material.icons.generator.vector.Vector
-import androidx.compose.material.icons.generator.vector.VectorNode
-import org.xmlpull.v1.XmlPullParser
-import org.xmlpull.v1.XmlPullParser.END_DOCUMENT
-import org.xmlpull.v1.XmlPullParser.END_TAG
-import org.xmlpull.v1.XmlPullParser.START_TAG
-import org.xmlpull.v1.XmlPullParserException
-import org.xmlpull.v1.XmlPullParserFactory
-
-/**
- * Parser that converts [icon]s into [Vector]s
- */
-class IconParser(private val icon: Icon) {
-
-    /**
-     * @return a [Vector] representing the provided [icon].
-     */
-    fun parse(): Vector {
-        val parser = XmlPullParserFactory.newInstance().newPullParser().apply {
-            setInput(icon.fileContent.byteInputStream(), null)
-            seekToStartTag()
-        }
-
-        check(parser.name == VECTOR) { "The start tag must be <vector>!" }
-
-        val nodes = mutableListOf<VectorNode>()
-        var autoMirrored = false
-
-        var currentGroup: VectorNode.Group? = null
-
-        while (!parser.isAtEnd()) {
-            when (parser.eventType) {
-                START_TAG -> {
-                    when (parser.name) {
-                        VECTOR -> {
-                            autoMirrored = parser.getValueAsBoolean(AUTO_MIRRORED)
-                        }
-
-                        PATH -> {
-                            val pathData = parser.getAttributeValue(
-                                null,
-                                PATH_DATA
-                            )
-                            val fillAlpha = parser.getValueAsFloat(FILL_ALPHA)
-                            val strokeAlpha = parser.getValueAsFloat(STROKE_ALPHA)
-                            val fillType = when (parser.getAttributeValue(null, FILL_TYPE)) {
-                                // evenOdd and nonZero are the only supported values here, where
-                                // nonZero is the default if no values are defined.
-                                EVEN_ODD -> FillType.EvenOdd
-                                else -> FillType.NonZero
-                            }
-                            val path = VectorNode.Path(
-                                strokeAlpha = strokeAlpha ?: 1f,
-                                fillAlpha = fillAlpha ?: 1f,
-                                fillType = fillType,
-                                nodes = PathParser.parsePathString(pathData)
-                            )
-                            if (currentGroup != null) {
-                                currentGroup.paths.add(path)
-                            } else {
-                                nodes.add(path)
-                            }
-                        }
-                        // Material icons are simple and don't have nested groups, so this can be simple
-                        GROUP -> {
-                            val group = VectorNode.Group()
-                            currentGroup = group
-                            nodes.add(group)
-                        }
-
-                        CLIP_PATH -> { /* TODO: b/147418351 - parse clipping paths */
-                        }
-                    }
-                }
-            }
-            parser.next()
-        }
-
-        return Vector(autoMirrored, nodes)
-    }
-}
-
-/**
- * @return the float value for the attribute [name], or null if it couldn't be found
- */
-private fun XmlPullParser.getValueAsFloat(name: String) =
-    getAttributeValue(null, name)?.toFloatOrNull()
-
-/**
- * @return the boolean value for the attribute [name], or 'false' if it couldn't be found
- */
-private fun XmlPullParser.getValueAsBoolean(name: String) =
-    getAttributeValue(null, name).toBoolean()
-
-private fun XmlPullParser.seekToStartTag(): XmlPullParser {
-    var type = next()
-    while (type != START_TAG && type != END_DOCUMENT) {
-        // Empty loop
-        type = next()
-    }
-    if (type != START_TAG) {
-        throw XmlPullParserException("No start tag found")
-    }
-    return this
-}
-
-private fun XmlPullParser.isAtEnd() =
-    eventType == END_DOCUMENT || (depth < 1 && eventType == END_TAG)
-
-// XML tag names
-private const val VECTOR = "vector"
-private const val CLIP_PATH = "clip-path"
-private const val GROUP = "group"
-private const val PATH = "path"
-
-// XML attribute names
-private const val AUTO_MIRRORED = "android:autoMirrored"
-private const val PATH_DATA = "android:pathData"
-private const val FILL_ALPHA = "android:fillAlpha"
-private const val STROKE_ALPHA = "android:strokeAlpha"
-private const val FILL_TYPE = "android:fillType"
-
-// XML attribute values
-private const val EVEN_ODD = "evenOdd"
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconProcessor.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconProcessor.kt
deleted file mode 100644
index 732b652..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconProcessor.kt
+++ /dev/null
@@ -1,221 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import com.google.common.base.CaseFormat
-import java.io.File
-import java.util.Locale
-
-/**
- * Processes vector drawables in [iconDirectories] into a list of icons, removing any unwanted
- * attributes (such as android: attributes that reference the theme) from the XML source.
- *
- * Each directory in [iconDirectories] should contain a flat list of icons to process. For example,
- * given the existing structure in raw-icons:
- *
- * // Theme name
- * ├── filled
- *     // Icon name
- *     ├── menu.xml
- *     └── zoom_out_map.xml
- * ├── outlined
- * ├── rounded
- * ├── twotone
- * └── sharp
- *
- * Each directory in [iconDirectories] should be a theme directory (filled, outlined, etc).
- *
- * @param iconDirectories list of directories containing icon to process
- * @param expectedApiFile location of the checked-in API file that contains the current list of
- * all icons processed and generated
- * @param generatedApiFile location of the to-be-generated API file in the build directory,
- * that we will write to and compare with [expectedApiFile]. This way the generated file can be
- * copied to overwrite the expected file, 'confirming' any API changes as a result of changing
- * icons in [iconDirectories].
- * @param expectedAutoMirroredApiFile location of the checked-in API file that contains the current
- * list of all auto-mirrored icons processed and generated
- * @param generatedAutoMirroredApiFile location of the to-be-generated API file in the build
- * directory, that we will write to and compare with [expectedAutoMirroredApiFile]. This way the
- * generated file can be copied to overwrite the expected file, 'confirming' any API changes as a
- * result of changing auto-mirrored icons in [iconDirectories]
- */
-class IconProcessor(
-    private val iconDirectories: List<File>,
-    private val expectedApiFile: File,
-    private val generatedApiFile: File,
-    private val expectedAutoMirroredApiFile: File,
-    private val generatedAutoMirroredApiFile: File,
-) {
-    /**
-     * @return a list of processed [Icon]s, from the provided [iconDirectories].
-     */
-    fun process(): List<Icon> {
-        val icons = loadIcons()
-
-        ensureIconsExistInAllThemes(icons)
-        val (regularIcons, autoMirroredIcons) = icons.partition { !it.autoMirrored }
-        writeApiFile(regularIcons, generatedApiFile)
-        writeApiFile(autoMirroredIcons, generatedAutoMirroredApiFile)
-        checkApi(expectedApiFile, generatedApiFile)
-        checkApi(expectedAutoMirroredApiFile, generatedAutoMirroredApiFile)
-
-        return icons
-    }
-
-    private fun loadIcons(): List<Icon> {
-        val themeDirs = iconDirectories
-
-        return themeDirs.flatMap { dir ->
-            val theme = dir.name.toIconTheme()
-            val icons = dir.walk().filter { !it.isDirectory }.toList()
-
-            val transformedIcons = icons.map { file ->
-                val filename = file.nameWithoutExtension
-                val kotlinName = filename.toKotlinPropertyName()
-
-                // Prefix the icon name with a theme so we can ensure they will be unique when
-                // copied to res/drawable.
-                val xmlName = "${theme.themePackageName}_$filename"
-                val fileContent = file.readText()
-                Icon(
-                    kotlinName = kotlinName,
-                    xmlFileName = xmlName,
-                    theme = theme,
-                    fileContent = processXmlFile(fileContent),
-                    autoMirrored = isAutoMirrored(fileContent)
-                )
-            }
-
-            // Ensure icon names are unique when accounting for case insensitive filesystems -
-            // workaround for b/216295020
-            transformedIcons
-                .groupBy { it.kotlinName.lowercase(Locale.ROOT) }
-                .filter { it.value.size > 1 }
-                .filterNot { entry ->
-                    entry.value.map { it.kotlinName }.containsAll(AllowedDuplicateIconNames)
-                }
-                .forEach { entry ->
-                    throw IllegalStateException(
-                        """Found multiple icons with the same case-insensitive filename:
-                                | ${entry.value.joinToString()}. Generating icons with the same
-                                | case-insensitive filename will cause issues on devices without
-                                | a case sensitive filesystem (OSX / Windows).""".trimMargin()
-                    )
-                }
-
-            transformedIcons
-        }
-    }
-}
-
-/**
- * Processes the given [fileContent] by removing android theme attributes and values.
- */
-private fun processXmlFile(fileContent: String): String {
-    // Remove any defined tint for paths that use theme attributes
-    val tintAttribute = Regex.escape("""android:tint="?attr/colorControlNormal"""")
-    val tintRegex = """\n.*?$tintAttribute""".toRegex(RegexOption.MULTILINE)
-
-    return fileContent
-        .replace(tintRegex, "")
-        // The imported icons have white as the default path color, so let's change it to be
-        // black as is typical on Android.
-        .replace("@android:color/white", "@android:color/black")
-}
-
-/**
- * Returns true if the given [fileContent] includes an `android:autoMirrored="true"` attribute.
- */
-private fun isAutoMirrored(fileContent: String): Boolean =
-    fileContent.contains(Regex.fromLiteral("""android:autoMirrored="true""""))
-
-/**
- * Ensures that each icon in each theme is available in every other theme
- */
-private fun ensureIconsExistInAllThemes(icons: List<Icon>) {
-    val groupedIcons = icons.groupBy { it.theme }
-
-    check(groupedIcons.keys.containsAll(IconTheme.values().toList())) {
-        "Some themes were missing from the generated icons"
-    }
-
-    val expectedIconNames = groupedIcons.values.map { themeIcons ->
-        themeIcons.map { icon -> icon.kotlinName }.sorted()
-    }
-
-    expectedIconNames.first().let { expected ->
-        expectedIconNames.forEach { actual ->
-            check(actual == expected) {
-                "Not all icons were found in all themes $actual $expected"
-            }
-        }
-    }
-}
-
-/**
- * Writes an API representation of [icons] to [file].
- */
-private fun writeApiFile(icons: List<Icon>, file: File) {
-    val apiText = icons
-        .groupBy { it.theme }
-        .map { (theme, themeIcons) ->
-            themeIcons
-                .map { icon ->
-                    theme.themeClassName + "." + icon.kotlinName
-                }
-                .sorted()
-                .joinToString(separator = "\n")
-        }
-        .sorted()
-        .joinToString(separator = "\n")
-
-    file.writeText(apiText)
-}
-
-/**
- * Ensures that [generatedFile] matches the checked-in API surface in [expectedFile].
- */
-private fun checkApi(expectedFile: File, generatedFile: File) {
-    check(expectedFile.exists()) {
-        "API file at ${expectedFile.canonicalPath} does not exist!"
-    }
-
-    check(expectedFile.readText() == generatedFile.readText()) {
-        """Found differences when comparing API files!
-                |Please check the difference and copy over the changes if intended.
-                |expected file: ${expectedFile.canonicalPath}
-                |generated file: ${generatedFile.canonicalPath}
-                |Please manually un-ignore and run ExtendedIconComparisonTest locally before
-                |uploading.
-            """.trimMargin()
-    }
-}
-
-/**
- * Converts a snake_case name to a KotlinProperty name.
- *
- * If the first character of [this] is a digit, the resulting name will be prefixed with an `_`
- */
-private fun String.toKotlinPropertyName(): String {
-    return CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, this).let { name ->
-        if (name.first().isDigit()) "_$name" else name
-    }
-}
-
-// These icons have already shipped in a stable release, so it is too late to rename / remove one to
-// fix the clash.
-private val AllowedDuplicateIconNames = listOf("AddChart", "Addchart")
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconTestingManifestGenerator.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconTestingManifestGenerator.kt
deleted file mode 100644
index 36addcd..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconTestingManifestGenerator.kt
+++ /dev/null
@@ -1,190 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import com.squareup.kotlinpoet.AnnotationSpec
-import com.squareup.kotlinpoet.CodeBlock
-import com.squareup.kotlinpoet.FileSpec
-import com.squareup.kotlinpoet.FunSpec
-import com.squareup.kotlinpoet.ParameterizedTypeName.Companion.parameterizedBy
-import com.squareup.kotlinpoet.PropertySpec
-import com.squareup.kotlinpoet.asClassName
-import com.squareup.kotlinpoet.asTypeName
-import com.squareup.kotlinpoet.buildCodeBlock
-import java.io.File
-import kotlin.reflect.KProperty0
-
-/**
- * Generates two lists, named `CoreIcons` and `ExtendedIcons` that contains pairs mapping a
- * [KProperty0] of the generated icon to the name of the corresponding XML drawable. This is used so
- * we can run tests comparing the generated icon against the original source drawable.
- *
- * @property icons the list of [Icon]s to generate the manifest from. This icons list holds all
- * known icons, and the generator will split them to Core and Extended on [generateTo]
- */
-class IconTestingManifestGenerator(private val icons: List<Icon>) {
-    /**
-     * Generates the list and writes it to [outputSrcDirectory].
-     */
-    fun generateTo(outputSrcDirectory: File) {
-        // Sort and split the icons to Core, CoreAutoMirrored, Extended, and ExtendedAutoMirrored
-        // lists, and generate output for each.
-        val sortedIcons = icons.sortedBy { it.kotlinName }
-        val (coreIcons, extendedIcons) = sortedIcons.partition { CoreIcons.contains(it.kotlinName) }
-        // Here we write the entire set of icons into the CoreFilledIcons, CoreOutlinedIcons,
-        // ExtendedFilledIcons etc. These files will include the deprecated set of icons that we
-        // also have under the auto-mirrored sets at CoreAutoMirroredFilledIcons,
-        // ExtendedAutoMirroredFilledIcons etc., which are also being generated here.
-        // Eventually, we will have the AllExtendedIcons, AllExtendedAutoMirroredIcons,
-        // AllCoreIcons, and AllCoreAutoMirroredIcons providing a combined list of the relevant
-        // icons for testing.
-        generateTo(outputSrcDirectory, coreIcons, "Core", isAutoMirrored = false)
-        generateTo(
-            outputSrcDirectory,
-            coreIcons.filter { it.autoMirrored },
-            "Core$AutoMirroredName",
-            isAutoMirrored = true
-        )
-        generateTo(outputSrcDirectory, extendedIcons, "Extended", isAutoMirrored = false)
-        generateTo(
-            outputSrcDirectory,
-            extendedIcons.filter { it.autoMirrored },
-            "Extended$AutoMirroredName",
-            isAutoMirrored = true
-        )
-    }
-
-    private fun generateTo(
-        outputSrcDirectory: File,
-        icons: List<Icon>,
-        prefix: String,
-        isAutoMirrored: Boolean
-    ) {
-        val propertyNames: MutableList<String> = mutableListOf()
-        // Further split each list by themes, otherwise we get a Method too large exception.
-        // We will then generate another file that returns the result of concatenating the list
-        // for each theme.
-        icons
-            .groupBy { it.theme }
-            .map { (theme, icons) ->
-                val propertyName = "$prefix${theme.themeClassName}Icons"
-                propertyNames += propertyName
-                theme to generateListOfIconsForTheme(
-                    propertyName,
-                    theme,
-                    icons,
-                    isAutoMirrored
-                )
-            }
-            .forEach { (theme, fileSpec) ->
-                // KotlinPoet bans wildcard imports, and we run into class compilation errors
-                // (too large a file?) if we add all the imports individually, so let's just add
-                // the imports to each file manually.
-                val wildcardImport = if (isAutoMirrored) {
-                    "import androidx.compose.material.icons.$AutoMirroredPackageName." +
-                        "${theme.themePackageName}.*"
-                } else {
-                    "import androidx.compose.material.icons.${theme.themePackageName}.*"
-                }
-
-                fileSpec.writeToWithCopyright(outputSrcDirectory) { fileContent ->
-                    fileContent.replace(
-                        "import androidx.compose.ui.graphics.vector.ImageVector",
-                        "$wildcardImport\n" +
-                            "import androidx.compose.ui.graphics.vector.ImageVector"
-                    )
-                }
-            }
-
-        val mainGetter = FunSpec.getterBuilder()
-            .addStatement("return " + propertyNames.joinToString(" + "))
-            .build()
-
-        FileSpec.builder(PackageNames.MaterialIconsPackage.packageName, "All${prefix}Icons")
-            .addProperty(
-                PropertySpec.builder("All${prefix}Icons", type = listOfIconsType)
-                    .getter(mainGetter)
-                    .build()
-            ).setIndent().build().writeToWithCopyright(outputSrcDirectory)
-    }
-}
-
-/**
- * Generates a Kotlin file with a list containing all icons of the given [theme].
- *
- * @param propertyName the name of the top level property that we should generate the icons list
- * under
- * @param theme the theme that we are generating the file for
- * @param allIcons a list containing all icons that we will filter to match [theme]
- * @param isAutoMirrored indicates if the icons generated are auto-mirrored
- */
-private fun generateListOfIconsForTheme(
-    propertyName: String,
-    theme: IconTheme,
-    allIcons: List<Icon>,
-    isAutoMirrored: Boolean
-): FileSpec {
-    val icons = allIcons.filter { it.theme == theme }
-    val iconStatements = icons.toStatements(isAutoMirrored)
-    val propertySpecBuilder = PropertySpec.builder(propertyName, type = listOfIconsType)
-    // The icons list will either have all as auto-mirrored, or all as not auto-mirrored. The list
-    // with the non auto-mirrored icons will hold references to deprecated icons, so we add a
-    // deprecation annotation for the generated list.
-    if (!isAutoMirrored) {
-        propertySpecBuilder.addAnnotation(
-            AnnotationSpec.builder(Suppress::class).addMember("\"DEPRECATION\"").build()
-        )
-    }
-    propertySpecBuilder.initializer(
-        buildCodeBlock {
-            addStatement("listOf(")
-            indent()
-            iconStatements.forEach { add(it) }
-            unindent()
-            addStatement(")")
-        }
-    )
-    return FileSpec.builder(PackageNames.MaterialIconsPackage.packageName, propertyName)
-        .addProperty(propertySpecBuilder.build()).setIndent().build()
-}
-
-/**
- * @return a list of [CodeBlock] representing all the statements for the body of the list.
- * For example, one statement would look like `(Icons.Filled::Menu) to menu` or
- * `(Icons.AutoMirrored.Filled::Menu) to menu`.
- *
- * @param autoMirrored indicates that the icon's statement should be for an auto-mirrored icon
- */
-private fun List<Icon>.toStatements(autoMirrored: Boolean): List<CodeBlock> {
-    return mapIndexed { index, icon ->
-        buildCodeBlock {
-            val autoMirroredPrefix = if (autoMirrored) "$AutoMirroredName." else ""
-            val iconFunctionReference =
-                "(%T.$autoMirroredPrefix${icon.theme.themeClassName}::${icon.kotlinName})"
-            val text = "$iconFunctionReference to \"${icon.xmlFileName}\""
-            addStatement(if (index != size - 1) "$text," else text, ClassNames.Icons)
-        }
-    }
-}
-
-private val kPropertyType =
-    (KProperty0::class).asClassName().parameterizedBy(ClassNames.ImageVector)
-private val pairType = (Pair::class).asClassName().parameterizedBy(
-    kPropertyType,
-    (String::class).asTypeName()
-)
-private val listOfIconsType = (List::class).asClassName().parameterizedBy(pairType)
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconTheme.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconTheme.kt
deleted file mode 100644
index 16dacbb..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconTheme.kt
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import java.util.Locale
-
-/**
- * Enum representing the different themes for Material icons.
- *
- * @property themePackageName the lower case name used for package names and in xml files
- * @property themeClassName the CameCase name used for the theme objects
- */
-enum class IconTheme(val themePackageName: String, val themeClassName: String) {
-    Filled("filled", "Filled"),
-    Outlined("outlined", "Outlined"),
-    Rounded("rounded", "Rounded"),
-    TwoTone("twotone", "TwoTone"),
-    Sharp("sharp", "Sharp")
-}
-
-/**
- * Returns the matching [IconTheme] from [this] [IconTheme.themePackageName].
- */
-fun String.toIconTheme() = requireNotNull(
-    IconTheme.values().find {
-        it.themePackageName == this
-    }
-) { "No matching theme found" }
-
-/**
- * The ClassName representing this [IconTheme] object, so we can generate extension properties on
- * the object.
- *
- * @see [autoMirroredClassName]
- */
-val IconTheme.className
-    get() =
-        PackageNames.MaterialIconsPackage.className("Icons", themeClassName)
-
-/**
- * The ClassName representing this [IconTheme] object so we can generate extension properties on the
- * object when used for auto-mirrored icons.
- *
- * @see [className]
- */
-val IconTheme.autoMirroredClassName
-    get() =
-        PackageNames.MaterialIconsPackage.className("Icons", AutoMirroredName, themeClassName)
-
-internal const val AutoMirroredName = "AutoMirrored"
-internal val AutoMirroredPackageName = AutoMirroredName.lowercase(Locale.ROOT)
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconWriter.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconWriter.kt
deleted file mode 100644
index 155a6ff..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/IconWriter.kt
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import java.io.File
-
-/**
- * Generates programmatic representation of all [icons] using [ImageVectorGenerator].
- *
- * @property icons the list of [Icon]s to generate Kotlin files for
- */
-class IconWriter(private val icons: List<Icon>) {
-    /**
-     * Generates icons and writes them to [outputSrcDirectory], using [iconNamePredicate] to
-     * filter what icons to generate for.
-     *
-     * @param outputSrcDirectory the directory to generate source files in
-     * @param iconNamePredicate the predicate that filters what icons should be generated. If
-     * false, the icon will not be parsed and generated in [outputSrcDirectory].
-     */
-    fun generateTo(
-        outputSrcDirectory: File,
-        iconNamePredicate: (String) -> Boolean
-    ) {
-        icons.forEach { icon ->
-            if (!iconNamePredicate(icon.kotlinName)) return@forEach
-
-            val vector = IconParser(icon).parse()
-
-            val fileSpec = ImageVectorGenerator(
-                icon.kotlinName,
-                icon.theme,
-                vector
-            ).createFileSpec()
-
-            fileSpec.writeToWithCopyright(outputSrcDirectory)
-
-            // Write additional file specs for auto-mirrored icons. These files will be written into
-            // an automirrored package and will hold a similar icons theme structure underneath.
-            if (vector.autoMirrored) {
-                val autoMirroredFileSpec = ImageVectorGenerator(
-                    icon.kotlinName,
-                    icon.theme,
-                    vector
-                ).createAutoMirroredFileSpec()
-
-                autoMirroredFileSpec.writeToWithCopyright(outputSrcDirectory)
-            }
-        }
-    }
-}
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/ImageVectorGenerator.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/ImageVectorGenerator.kt
deleted file mode 100644
index f7c8ebc..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/ImageVectorGenerator.kt
+++ /dev/null
@@ -1,262 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import androidx.compose.material.icons.generator.vector.FillType
-import androidx.compose.material.icons.generator.vector.Vector
-import androidx.compose.material.icons.generator.vector.VectorNode
-import com.squareup.kotlinpoet.AnnotationSpec
-import com.squareup.kotlinpoet.CodeBlock
-import com.squareup.kotlinpoet.FileSpec
-import com.squareup.kotlinpoet.FunSpec
-import com.squareup.kotlinpoet.KModifier
-import com.squareup.kotlinpoet.PropertySpec
-import com.squareup.kotlinpoet.buildCodeBlock
-import java.util.Locale
-
-/**
- * Generator for creating a Kotlin source file with an ImageVector property for the given [vector],
- * with name [iconName] and theme [iconTheme].
- *
- * @param iconName the name for the generated property, which is also used for the generated file.
- * I.e if the name is `Menu`, the property will be `Menu` (inside a theme receiver object) and
- * the file will be `Menu.kt` (under the theme package name).
- * @param iconTheme the theme that this vector belongs to. Used to scope the property to the
- * correct receiver object, and also for the package name of the generated file.
- * @param vector the parsed vector to generate ImageVector.Builder commands for
- */
-class ImageVectorGenerator(
-    private val iconName: String,
-    private val iconTheme: IconTheme,
-    private val vector: Vector
-) {
-    /**
-     * @return a [FileSpec] representing a Kotlin source file containing the property for this
-     * programmatic [vector] representation.
-     *
-     * The package name and hence file location of the generated file is:
-     * [PackageNames.MaterialIconsPackage] + [IconTheme.themePackageName].
-     */
-    fun createFileSpec(): FileSpec {
-        val builder = createFileSpecBuilder(themePackageName = iconTheme.themePackageName)
-        val backingProperty = getBackingProperty()
-        // Create a property with a getter. The autoMirror is always false in this case.
-        val propertySpecBuilder =
-            PropertySpec.builder(name = iconName, type = ClassNames.ImageVector)
-                .receiver(iconTheme.className)
-                .getter(
-                    iconGetter(
-                        backingProperty = backingProperty,
-                        iconName = iconName,
-                        iconTheme = iconTheme,
-                        autoMirror = false
-                    )
-                )
-        // Add a deprecation warning with a suggestion to replace this icon's usage with its
-        // equivalent that was generated under the automirrored package.
-        if (vector.autoMirrored) {
-            val autoMirroredPackage = "${PackageNames.MaterialIconsPackage.packageName}." +
-                "$AutoMirroredPackageName.${iconTheme.themePackageName}"
-            propertySpecBuilder.addAnnotation(
-                AnnotationSpec.builder(Deprecated::class)
-                    .addMember(
-                        "\"Use the AutoMirrored version at %N.%N.%N.%N\"",
-                        ClassNames.Icons.simpleName,
-                        AutoMirroredName,
-                        iconTheme.name,
-                        iconName
-                    )
-                    .addMember(
-                        "ReplaceWith( \"%N.%N.%N.%N\", \"$autoMirroredPackage.%N\")",
-                        ClassNames.Icons.simpleName,
-                        AutoMirroredName,
-                        iconTheme.name,
-                        iconName,
-                        iconName
-                    )
-                    .build()
-            )
-        }
-        builder.addProperty(propertySpecBuilder.build())
-        builder.addProperty(backingProperty)
-        return builder.setIndent().build()
-    }
-
-    /**
-     * @return a [FileSpec] representing a Kotlin source file containing the property for this
-     * programmatic, auto-mirrored, [vector] representation.
-     *
-     * The package name and hence file location of the generated file is:
-     * [PackageNames.MaterialIconsPackage] + [AutoMirroredPackageName] +
-     * [IconTheme.themePackageName].
-     */
-    fun createAutoMirroredFileSpec(): FileSpec {
-        // Prepend the AutoMirroredName package name to the IconTheme package name.
-        val builder = createFileSpecBuilder(
-            themePackageName = "$AutoMirroredPackageName.${iconTheme.themePackageName}"
-        )
-        val backingProperty = getBackingProperty()
-        // Create a property with a getter. The autoMirror is always false in this case.
-        builder.addProperty(
-            PropertySpec.builder(name = iconName, type = ClassNames.ImageVector)
-                .receiver(iconTheme.autoMirroredClassName)
-                .getter(
-                    iconGetter(
-                        backingProperty = backingProperty,
-                        iconName = iconName,
-                        iconTheme = iconTheme,
-                        autoMirror = true
-                    )
-                )
-                .build()
-        )
-        builder.addProperty(backingProperty)
-        return builder.setIndent().build()
-    }
-
-    private fun createFileSpecBuilder(themePackageName: String): FileSpec.Builder {
-        val iconsPackage = PackageNames.MaterialIconsPackage.packageName
-        val combinedPackageName = "$iconsPackage.$themePackageName"
-        return FileSpec.builder(
-            packageName = combinedPackageName,
-            fileName = iconName
-        )
-    }
-
-    private fun getBackingProperty(): PropertySpec {
-        // Use a unique property name for the private backing property. This is because (as of
-        // Kotlin 1.4) each property with the same name will be considered as a possible candidate
-        // for resolution, regardless of the access modifier, so by using unique names we reduce
-        // the size from ~6000 to 1, and speed up compilation time for these icons.
-        val backingPropertyName = "_" + iconName.replaceFirstChar { it.lowercase(Locale.ROOT) }
-        return backingProperty(name = backingPropertyName)
-    }
-
-    /**
-     * @return the body of the getter for the icon property. This getter returns the backing
-     * property if it is not null, otherwise creates the icon and 'caches' it in the backing
-     * property, and then returns the backing property.
-     */
-    private fun iconGetter(
-        backingProperty: PropertySpec,
-        iconName: String,
-        iconTheme: IconTheme,
-        autoMirror: Boolean
-    ): FunSpec {
-        return FunSpec.getterBuilder()
-            .addCode(
-                buildCodeBlock {
-                    beginControlFlow("if (%N != null)", backingProperty)
-                    addStatement("return %N!!", backingProperty)
-                    endControlFlow()
-                }
-            )
-            .addCode(
-                buildCodeBlock {
-                    val controlFlow = if (autoMirror) {
-                        "%N = %M(name = \"$AutoMirroredName.%N.%N\", autoMirror = true)"
-                    } else {
-                        "%N = %M(name = \"%N.%N\")"
-                    }
-                    beginControlFlow(
-                        controlFlow,
-                        backingProperty,
-                        MemberNames.MaterialIcon,
-                        iconTheme.name,
-                        iconName
-                    )
-                    vector.nodes.forEach { node -> addRecursively(node) }
-                    endControlFlow()
-                }
-            )
-            .addStatement("return %N!!", backingProperty)
-            .build()
-    }
-
-    /**
-     * @return The private backing property that is used to cache the ImageVector for a given
-     * icon once created.
-     *
-     * @param name the name of this property
-     */
-    private fun backingProperty(name: String): PropertySpec {
-        val nullableImageVector = ClassNames.ImageVector.copy(nullable = true)
-        return PropertySpec.builder(name = name, type = nullableImageVector)
-            .mutable()
-            .addModifiers(KModifier.PRIVATE)
-            .initializer("null")
-            .build()
-    }
-}
-
-/**
- * Recursively adds function calls to construct the given [vectorNode] and its children.
- */
-private fun CodeBlock.Builder.addRecursively(vectorNode: VectorNode) {
-    when (vectorNode) {
-        // TODO: b/147418351 - add clip-paths once they are supported
-        is VectorNode.Group -> {
-            beginControlFlow("%M", MemberNames.Group)
-            vectorNode.paths.forEach { path ->
-                addRecursively(path)
-            }
-            endControlFlow()
-        }
-
-        is VectorNode.Path -> {
-            addPath(vectorNode) {
-                vectorNode.nodes.forEach { pathNode ->
-                    addStatement(pathNode.asFunctionCall())
-                }
-            }
-        }
-    }
-}
-
-/**
- * Adds a function call to create the given [path], with [pathBody] containing the commands for
- * the path.
- */
-private fun CodeBlock.Builder.addPath(
-    path: VectorNode.Path,
-    pathBody: CodeBlock.Builder.() -> Unit
-) {
-    // Only set the fill type if it is EvenOdd - otherwise it will just be the default.
-    val setFillType = path.fillType == FillType.EvenOdd
-
-    val parameterList = with(path) {
-        listOfNotNull(
-            "fillAlpha = ${fillAlpha}f".takeIf { fillAlpha != 1f },
-            "strokeAlpha = ${strokeAlpha}f".takeIf { strokeAlpha != 1f },
-            "pathFillType = %M".takeIf { setFillType }
-        )
-    }
-
-    val parameters = if (parameterList.isNotEmpty()) {
-        parameterList.joinToString(prefix = "(", postfix = ")")
-    } else {
-        ""
-    }
-
-    if (setFillType) {
-        beginControlFlow("%M$parameters", MemberNames.MaterialPath, MemberNames.EvenOdd)
-    } else {
-        beginControlFlow("%M$parameters", MemberNames.MaterialPath)
-    }
-    pathBody()
-    endControlFlow()
-}
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/KotlinPoetUtils.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/KotlinPoetUtils.kt
deleted file mode 100644
index fd01076..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/KotlinPoetUtils.kt
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import com.squareup.kotlinpoet.FileSpec
-import java.io.File
-import java.nio.file.Files
-import java.text.SimpleDateFormat
-import java.util.Date
-
-/**
- * Writes the given [FileSpec] to [directory], appending a copyright notice to the beginning.
- * This is needed as this functionality isn't supported in KotlinPoet natively, and is not
- * intended to be supported. https://github.com/square/kotlinpoet/pull/514#issuecomment-441397363
- *
- * @param directory directory to write this [FileSpec] to
- * @param textTransform optional transformation to apply to the source file before writing to disk
- */
-fun FileSpec.writeToWithCopyright(directory: File, textTransform: ((String) -> String)? = null) {
-    var outputDirectory = directory
-
-    if (packageName.isNotEmpty()) {
-        for (packageComponent in packageName.split('.').dropLastWhile { it.isEmpty() }) {
-            outputDirectory = outputDirectory.resolve(packageComponent)
-        }
-    }
-
-    Files.createDirectories(outputDirectory.toPath())
-
-    val file = outputDirectory.resolve("$name.kt")
-
-    // Write this FileSpec to a StringBuilder, so we can process the text before writing to file.
-    val fileContent = StringBuilder().run {
-        writeTo(this)
-        toString()
-    }
-
-    val transformedText = textTransform?.invoke(fileContent) ?: fileContent
-
-    file.writeText(copyright + "\n\n" + transformedText)
-}
-
-/**
- * Sets the indent for this [FileSpec] to match that of our code style.
- */
-fun FileSpec.Builder.setIndent() = indent(Indent)
-
-// Code style indent is 4 spaces, compared to KotlinPoet's default of 2
-private val Indent = " ".repeat(4)
-
-/**
- * AOSP copyright notice. Given that we generate this code every build, it is never checked in,
- * so we should update the copyright with the current year every time we write to disk.
- */
-private val copyright
-    get() = """
-    /*
-     * Copyright $currentYear The Android Open Source Project
-     *
-     * Licensed under the Apache License, Version 2.0 (the "License");
-     * you may not use this file except in compliance with the License.
-     * You may obtain a copy of the License at
-     *
-     *      http://www.apache.org/licenses/LICENSE-2.0
-     *
-     * Unless required by applicable law or agreed to in writing, software
-     * distributed under the License is distributed on an "AS IS" BASIS,
-     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     * See the License for the specific language governing permissions and
-     * limitations under the License.
-     */
-    """.trimIndent()
-
-private val currentYear: String get() = SimpleDateFormat("yyyy").format(Date())
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/Names.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/Names.kt
deleted file mode 100644
index 7482adb..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/Names.kt
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import com.squareup.kotlinpoet.ClassName
-import com.squareup.kotlinpoet.MemberName
-
-/**
- * Package names used for icon generation.
- */
-enum class PackageNames(val packageName: String) {
-    MaterialIconsPackage("androidx.compose.material.icons"),
-    GraphicsPackage("androidx.compose.ui.graphics"),
-    VectorPackage(GraphicsPackage.packageName + ".vector")
-}
-
-/**
- * [ClassName]s used for icon generation.
- */
-object ClassNames {
-    val Icons = PackageNames.MaterialIconsPackage.className("Icons")
-    val ImageVector = PackageNames.VectorPackage.className("ImageVector")
-    val PathFillType = PackageNames.GraphicsPackage.className("PathFillType", "Companion")
-}
-
-/**
- * [MemberName]s used for icon generation.
- */
-object MemberNames {
-    val MaterialIcon = MemberName(PackageNames.MaterialIconsPackage.packageName, "materialIcon")
-    val MaterialPath = MemberName(PackageNames.MaterialIconsPackage.packageName, "materialPath")
-
-    val EvenOdd = MemberName(ClassNames.PathFillType, "EvenOdd")
-    val Group = MemberName(PackageNames.VectorPackage.packageName, "group")
-}
-
-/**
- * @return the [ClassName] of the given [classNames] inside this package.
- */
-fun PackageNames.className(vararg classNames: String) = ClassName(this.packageName, *classNames)
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconGenerationTask.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconGenerationTask.kt
deleted file mode 100644
index 3787c6c..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconGenerationTask.kt
+++ /dev/null
@@ -1,240 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator.tasks
-
-import androidx.compose.material.icons.generator.Icon
-import androidx.compose.material.icons.generator.IconProcessor
-import com.android.build.gradle.LibraryExtension
-import java.io.File
-import java.util.Locale
-import org.gradle.api.DefaultTask
-import org.gradle.api.Project
-import org.gradle.api.tasks.CacheableTask
-import org.gradle.api.tasks.InputDirectory
-import org.gradle.api.tasks.InputFile
-import org.gradle.api.tasks.Internal
-import org.gradle.api.tasks.OutputDirectory
-import org.gradle.api.tasks.OutputFile
-import org.gradle.api.tasks.PathSensitive
-import org.gradle.api.tasks.PathSensitivity
-import org.gradle.api.tasks.TaskAction
-import org.gradle.api.tasks.TaskProvider
-import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension
-import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
-
-/**
- * Base [org.gradle.api.Task] for tasks relating to icon generation.
- */
-@CacheableTask
-abstract class IconGenerationTask : DefaultTask() {
-
-    /**
-     * Directory containing raw drawables. These icons will be processed to generate programmatic
-     * representations.
-     */
-    @PathSensitive(PathSensitivity.RELATIVE)
-    @InputDirectory
-    val allIconsDirectory =
-        project.rootProject.project(GeneratorProject).projectDir.resolve("raw-icons")
-
-    /**
-     * Specific icon directories to use in this task
-     */
-    @Internal
-    fun getIconDirectories(): List<File> {
-        return allIconsDirectory.listFiles()!!.filter { it.isDirectory }
-    }
-
-    /**
-     * Checked-in API file for the generator module, where we will track all the generated icons.
-     */
-    @PathSensitive(PathSensitivity.NONE)
-    @InputFile
-    val expectedApiFile =
-        project.rootProject.project(GeneratorProject).projectDir.resolve("api/icons.txt")
-
-    /**
-     * Checked-in API file for the generator module, where we will track all the generated
-     * auto-mirrored icons.
-     */
-    @PathSensitive(PathSensitivity.NONE)
-    @InputFile
-    val expectedAutoMirroredApiFile =
-        project.rootProject.project(GeneratorProject).projectDir.resolve(
-            "api/automirrored_icons.txt"
-        )
-
-    /**
-     * Root build directory for this task, where outputs will be placed into.
-     */
-    @OutputDirectory
-    lateinit var buildDirectory: File
-
-    /**
-     * Generated API file that will be placed in the build directory. This can be copied manually
-     * to [expectedApiFile] to confirm that API changes were intended.
-     */
-    @get:OutputFile
-    val generatedApiFile: File
-        get() = buildDirectory.resolve("api/icons.txt")
-
-    /**
-     * Generated API file that will be placed in the build directory. This can be copied manually
-     * to [expectedAutoMirroredApiFile] to confirm that auto-mirrored icons API changes were
-     * intended.
-     */
-    @get:OutputFile
-    val generatedAutoMirroredApiFile: File
-        get() = buildDirectory.resolve("api/automirrored_icons.txt")
-
-    /**
-     * @return a list of all processed [Icon]s from [getIconDirectories].
-     */
-    fun loadIcons(): List<Icon> {
-        // material-icons-core loads and verifies all of the icons from all of the themes:
-        // both that all icons are present in all themes, and also that no icons have been removed.
-        // So, when we're loading just one theme, we don't need to verify it
-        return IconProcessor(
-            getIconDirectories(),
-            expectedApiFile,
-            generatedApiFile,
-            expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile,
-        ).process()
-    }
-
-    @get:OutputDirectory
-    val generatedSrcMainDirectory: File
-        get() = buildDirectory.resolve(GeneratedSrcMain)
-
-    @get:OutputDirectory
-    val generatedSrcAndroidTestDirectory: File
-        get() = buildDirectory.resolve(GeneratedSrcAndroidTest)
-
-    @get:OutputDirectory
-    val generatedResourceDirectory: File
-        get() = buildDirectory.resolve(GeneratedResource)
-
-    /**
-     * The action for this task
-     */
-    @TaskAction
-    abstract fun run()
-
-    companion object {
-        /**
-         * Registers the core [project]. The core project contains only the icons defined in
-         * [androidx.compose.material.icons.generator.CoreIcons], and no tests.
-         */
-        @JvmStatic
-        fun registerCoreIconProject(
-            project: Project,
-            libraryExtension: LibraryExtension,
-            isMpp: Boolean
-        ) {
-            if (isMpp) {
-                CoreIconGenerationTask.register(project, null)
-            } else {
-                libraryExtension.libraryVariants.configureEach { variant ->
-                    CoreIconGenerationTask.register(project, variant)
-                }
-            }
-        }
-
-        /**
-         * Registers the extended [project]. The core project contains all icons except for the
-         * icons defined in [androidx.compose.material.icons.generator.CoreIcons], as well as a
-         * bitmap comparison test for every icon in both the core and extended project.
-         */
-        @JvmStatic
-        fun registerExtendedIconThemeProject(
-            project: Project,
-            libraryExtension: LibraryExtension
-        ) {
-            libraryExtension.libraryVariants.configureEach { variant ->
-                if (variant.name == "release") {
-                    ExtendedIconGenerationTask.register(project, variant)
-                }
-            }
-
-            // b/175401659 - disable lint as it takes a long time, and most errors should
-            // be caught by lint on material-icons-core anyway
-            project.afterEvaluate {
-                if (project.hasProperty("android.injected.invoked.from.ide")) return@afterEvaluate
-                project.tasks.named("lintAnalyzeDebug") { t ->
-                    t.enabled = false
-                }
-                project.tasks.named("lintDebug") { t ->
-                    t.enabled = false
-                }
-            }
-        }
-
-        @JvmStatic
-        fun registerExtendedIconMainProject(
-            project: Project,
-            libraryExtension: LibraryExtension
-        ) {
-            libraryExtension.testVariants.configureEach { variant ->
-                IconTestingGenerationTask.register(project, variant)
-            }
-        }
-
-        const val GeneratedSrcMain = "src/commonMain/kotlin"
-
-        const val GeneratedSrcAndroidTest = "src/androidAndroidTest/kotlin"
-
-        const val GeneratedResource = "generatedIcons/res"
-    }
-}
-
-// Path to the generator project
-private const val GeneratorProject = ":compose:material:material:icons:generator"
-
-/**
- * Registers a new [T] in [this], and sets [IconGenerationTask.buildDirectory] depending on
- * [variant].
- *
- * @param variant the [com.android.build.gradle.api.BaseVariant] to associate this task with, or
- * `null` if this task does not change between variants.
- * @return a [Pair] of the created [TaskProvider] of [T] of [IconGenerationTask], and the [File]
- * for the directory that files will be generated to
- */
-@Suppress("DEPRECATION") // BaseVariant
-fun <T : IconGenerationTask> Project.registerGenerationTask(
-    taskName: String,
-    taskClass: Class<T>,
-    variant: com.android.build.gradle.api.BaseVariant? = null
-): Pair<TaskProvider<T>, File> {
-    val variantName = variant?.name ?: "allVariants"
-
-    val buildDirectory = project.buildDir.resolve("generatedIcons/$variantName")
-
-    return tasks.register("$taskName${variantName.capitalize(Locale.getDefault())}", taskClass) {
-        it.buildDirectory = buildDirectory
-    } to buildDirectory
-}
-
-fun Project.getMultiplatformSourceSet(name: String): KotlinSourceSet {
-    val sourceSet = project.multiplatformExtension!!.sourceSets.find { it.name == name }
-    return requireNotNull(sourceSet) {
-        "No source sets found matching $name"
-    }
-}
-
-private val Project.multiplatformExtension
-    get() = extensions.findByType(KotlinMultiplatformExtension::class.java)
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconSourceTasks.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconSourceTasks.kt
deleted file mode 100644
index e59eb51..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconSourceTasks.kt
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator.tasks
-
-import androidx.compose.material.icons.generator.CoreIcons
-import androidx.compose.material.icons.generator.IconWriter
-import java.io.File
-import org.gradle.api.Project
-import org.gradle.api.tasks.CacheableTask
-import org.gradle.api.tasks.TaskProvider
-import org.gradle.api.tasks.bundling.Jar
-import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
-
-/**
- * Task responsible for converting core icons from xml to a programmatic representation.
- */
-@CacheableTask
-open class CoreIconGenerationTask : IconGenerationTask() {
-    override fun run() =
-        IconWriter(loadIcons()).generateTo(generatedSrcMainDirectory) { it in CoreIcons }
-
-    companion object {
-        /**
-         * Registers [CoreIconGenerationTask] in [project].
-         */
-        @Suppress("DEPRECATION") // BaseVariant
-        fun register(project: Project, variant: com.android.build.gradle.api.BaseVariant? = null) {
-            val (task, buildDirectory) = project.registerGenerationTask(
-                "generateCoreIcons",
-                CoreIconGenerationTask::class.java,
-                variant
-            )
-            registerIconGenerationTask(project, task, buildDirectory)
-        }
-    }
-}
-
-/**
- * Task responsible for converting extended icons from xml to a programmatic representation.
- */
-@CacheableTask
-open class ExtendedIconGenerationTask : IconGenerationTask() {
-    override fun run() =
-        IconWriter(loadIcons()).generateTo(generatedSrcMainDirectory) { it !in CoreIcons }
-
-    companion object {
-        /**
-         * Registers [ExtendedIconGenerationTask] in [project]. (for use with mpp)
-         */
-        @Suppress("DEPRECATION") // BaseVariant
-        fun register(project: Project, variant: com.android.build.gradle.api.BaseVariant? = null) {
-            val (task, buildDirectory) = project.registerGenerationTask(
-                "generateExtendedIcons",
-                ExtendedIconGenerationTask::class.java,
-                variant
-            )
-            registerIconGenerationTask(project, task, buildDirectory)
-        }
-    }
-}
-
-/**
- * Helper to register [task] that outputs to [buildDirectory] as the Kotlin source generating
- * task for [project].
- */
-private fun registerIconGenerationTask(
-    project: Project,
-    task: TaskProvider<*>,
-    buildDirectory: File
-) {
-    val sourceSet = project.getMultiplatformSourceSet(KotlinSourceSet.COMMON_MAIN_SOURCE_SET_NAME)
-    val generatedSrcMainDirectory = buildDirectory.resolve(IconGenerationTask.GeneratedSrcMain)
-    sourceSet.kotlin.srcDir(project.files(generatedSrcMainDirectory).builtBy(task))
-    // add it to the multiplatform sources as well.
-    project.tasks.named("multiplatformSourceJar", Jar::class.java).configure {
-        it.from(task.map { generatedSrcMainDirectory })
-    }
-}
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconTestingGenerationTask.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconTestingGenerationTask.kt
deleted file mode 100644
index d05b035..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconTestingGenerationTask.kt
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator.tasks
-
-import androidx.compose.material.icons.generator.IconTestingManifestGenerator
-import java.io.File
-import org.gradle.api.Project
-import org.gradle.api.tasks.CacheableTask
-import org.gradle.api.tasks.OutputDirectory
-
-/**
- * Task responsible for generating files related to testing.
- *
- * - Generates a list of all icons mapped to the drawable ID used in testing, so we can bitmap
- * compare the programmatic icon with the original source drawable.
- *
- * - Flattens all the source drawables into a drawable folder that will be used in comparison tests.
- */
-@CacheableTask
-open class IconTestingGenerationTask : IconGenerationTask() {
-    /**
-     * Directory to generate the flattened drawables used for testing to.
-     */
-    @get:OutputDirectory
-    val drawableDirectory: File
-        get() = generatedResourceDirectory.resolve("drawable")
-
-    override fun run() {
-        // Copy all drawables to the drawable directory
-        loadIcons().forEach { icon ->
-            drawableDirectory.resolve("${icon.xmlFileName}.xml").apply {
-                createNewFile()
-                writeText(icon.fileContent)
-            }
-        }
-
-        // Generate the testing manifest to the androidTest directory
-        IconTestingManifestGenerator(loadIcons()).generateTo(generatedSrcAndroidTestDirectory)
-    }
-
-    companion object {
-        /**
-         * Registers [IconTestingGenerationTask] in [project] for [variant].
-         */
-        @Suppress("DEPRECATION") // BaseVariant
-        fun register(project: Project, variant: com.android.build.gradle.api.BaseVariant) {
-            val (task, buildDirectory) = project.registerGenerationTask(
-                "generateTestFiles",
-                IconTestingGenerationTask::class.java,
-                variant
-            )
-
-            val generatedResourceDirectory = buildDirectory.resolve(GeneratedResource)
-
-            variant.registerGeneratedResFolders(
-                project.files(generatedResourceDirectory).builtBy(task)
-            )
-
-            val generatedSrcAndroidTestDirectory = buildDirectory.resolve(GeneratedSrcAndroidTest)
-            variant.registerJavaGeneratingTask(task, generatedSrcAndroidTestDirectory)
-        }
-    }
-}
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/FillType.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/FillType.kt
deleted file mode 100644
index 7dbfdbc..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/FillType.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator.vector
-
-/**
- * Determines the winding rule that decides how the interior of a [VectorNode.Path] is calculated.
- *
- * This maps to [android.graphics.Path.FillType] used in the framework, and can be defined in XML
- * via `android:fillType`.
- */
-enum class FillType {
-    NonZero,
-    EvenOdd
-}
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/PathNode.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/PathNode.kt
deleted file mode 100644
index aa9aebc..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/PathNode.kt
+++ /dev/null
@@ -1,453 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator.vector
-
-/**
- * Class representing a singular path command in a vector.
- *
- * @property isCurve whether this command is a curve command
- * @property isQuad whether this command is a quad command
- */
-/* ktlint-disable max-line-length */
-sealed class PathNode(val isCurve: Boolean = false, val isQuad: Boolean = false) {
-    /**
-     * Maps a [PathNode] to a string representing an invocation of the corresponding PathBuilder
-     * function to add this node to the builder.
-     */
-    abstract fun asFunctionCall(): String
-
-    // RelativeClose and Close are considered the same internally, so we represent both with Close
-    // for simplicity and to make equals comparisons robust.
-    object Close : PathNode() {
-        override fun asFunctionCall() = "close()"
-    }
-
-    data class RelativeMoveTo(val x: Float, val y: Float) : PathNode() {
-        override fun asFunctionCall() = "moveToRelative(${x}f, ${y}f)"
-    }
-    data class MoveTo(val x: Float, val y: Float) : PathNode() {
-        override fun asFunctionCall() = "moveTo(${x}f, ${y}f)"
-    }
-
-    data class RelativeLineTo(val x: Float, val y: Float) : PathNode() {
-        override fun asFunctionCall() = "lineToRelative(${x}f, ${y}f)"
-    }
-    data class LineTo(val x: Float, val y: Float) : PathNode() {
-        override fun asFunctionCall() = "lineTo(${x}f, ${y}f)"
-    }
-
-    data class RelativeHorizontalTo(val x: Float) : PathNode() {
-        override fun asFunctionCall() = "horizontalLineToRelative(${x}f)"
-    }
-    data class HorizontalTo(val x: Float) : PathNode() {
-        override fun asFunctionCall() = "horizontalLineTo(${x}f)"
-    }
-
-    data class RelativeVerticalTo(val y: Float) : PathNode() {
-        override fun asFunctionCall() = "verticalLineToRelative(${y}f)"
-    }
-    data class VerticalTo(val y: Float) : PathNode() {
-        override fun asFunctionCall() = "verticalLineTo(${y}f)"
-    }
-
-    data class RelativeCurveTo(
-        val dx1: Float,
-        val dy1: Float,
-        val dx2: Float,
-        val dy2: Float,
-        val dx3: Float,
-        val dy3: Float
-    ) : PathNode(isCurve = true) {
-        override fun asFunctionCall() = "curveToRelative(${dx1}f, ${dy1}f, ${dx2}f, ${dy2}f, ${dx3}f, ${dy3}f)"
-    }
-
-    data class CurveTo(
-        val x1: Float,
-        val y1: Float,
-        val x2: Float,
-        val y2: Float,
-        val x3: Float,
-        val y3: Float
-    ) : PathNode(isCurve = true) {
-        override fun asFunctionCall() = "curveTo(${x1}f, ${y1}f, ${x2}f, ${y2}f, ${x3}f, ${y3}f)"
-    }
-
-    data class RelativeReflectiveCurveTo(
-        val x1: Float,
-        val y1: Float,
-        val x2: Float,
-        val y2: Float
-    ) : PathNode(isCurve = true) {
-        override fun asFunctionCall() = "reflectiveCurveToRelative(${x1}f, ${y1}f, ${x2}f, ${y2}f)"
-    }
-
-    data class ReflectiveCurveTo(
-        val x1: Float,
-        val y1: Float,
-        val x2: Float,
-        val y2: Float
-    ) : PathNode(isCurve = true) {
-        override fun asFunctionCall() = "reflectiveCurveTo(${x1}f, ${y1}f, ${x2}f, ${y2}f)"
-    }
-
-    data class RelativeQuadTo(
-        val x1: Float,
-        val y1: Float,
-        val x2: Float,
-        val y2: Float
-    ) : PathNode(isQuad = true) {
-        override fun asFunctionCall() = "quadToRelative(${x1}f, ${y1}f, ${x2}f, ${y2}f)"
-    }
-
-    data class QuadTo(
-        val x1: Float,
-        val y1: Float,
-        val x2: Float,
-        val y2: Float
-    ) : PathNode(isQuad = true) {
-        override fun asFunctionCall() = "quadTo(${x1}f, ${y1}f, ${x2}f, ${y2}f)"
-    }
-
-    data class RelativeReflectiveQuadTo(
-        val x: Float,
-        val y: Float
-    ) : PathNode(isQuad = true) {
-        override fun asFunctionCall() = "reflectiveQuadToRelative(${x}f, ${y}f)"
-    }
-
-    data class ReflectiveQuadTo(
-        val x: Float,
-        val y: Float
-    ) : PathNode(isQuad = true) {
-        override fun asFunctionCall() = "reflectiveQuadTo(${x}f, ${y}f)"
-    }
-
-    data class RelativeArcTo(
-        val horizontalEllipseRadius: Float,
-        val verticalEllipseRadius: Float,
-        val theta: Float,
-        val isMoreThanHalf: Boolean,
-        val isPositiveArc: Boolean,
-        val arcStartDx: Float,
-        val arcStartDy: Float
-    ) : PathNode() {
-        override fun asFunctionCall() = "arcToRelative(${horizontalEllipseRadius}f, ${verticalEllipseRadius}f, ${theta}f, $isMoreThanHalf, $isPositiveArc, ${arcStartDx}f, ${arcStartDy}f)"
-    }
-
-    data class ArcTo(
-        val horizontalEllipseRadius: Float,
-        val verticalEllipseRadius: Float,
-        val theta: Float,
-        val isMoreThanHalf: Boolean,
-        val isPositiveArc: Boolean,
-        val arcStartX: Float,
-        val arcStartY: Float
-    ) : PathNode() {
-        override fun asFunctionCall() = "arcTo(${horizontalEllipseRadius}f, ${verticalEllipseRadius}f, ${theta}f, $isMoreThanHalf, $isPositiveArc, ${arcStartX}f, ${arcStartY}f)"
-    }
-}
-/* ktlint-enable max-line-length */
-
-/**
- * Return the corresponding [PathNode] for the given character key if it exists.
- * If the key is unknown then [IllegalArgumentException] is thrown
- * @return [PathNode] that matches the key
- * @throws IllegalArgumentException
- */
-internal fun Char.toPathNodes(args: FloatArray): List<PathNode> = when (this) {
-    RelativeCloseKey, CloseKey -> listOf(
-        PathNode.Close
-    )
-    RelativeMoveToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_MOVE_TO_ARGS
-        ) { array ->
-            PathNode.RelativeMoveTo(
-                x = array[0],
-                y = array[1]
-            )
-        }
-
-    MoveToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_MOVE_TO_ARGS
-        ) { array ->
-            PathNode.MoveTo(
-                x = array[0],
-                y = array[1]
-            )
-        }
-
-    RelativeLineToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_LINE_TO_ARGS
-        ) { array ->
-            PathNode.RelativeLineTo(
-                x = array[0],
-                y = array[1]
-            )
-        }
-
-    LineToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_LINE_TO_ARGS
-        ) { array ->
-            PathNode.LineTo(
-                x = array[0],
-                y = array[1]
-            )
-        }
-
-    RelativeHorizontalToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_HORIZONTAL_TO_ARGS
-        ) { array ->
-            PathNode.RelativeHorizontalTo(
-                x = array[0]
-            )
-        }
-
-    HorizontalToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_HORIZONTAL_TO_ARGS
-        ) { array ->
-            PathNode.HorizontalTo(x = array[0])
-        }
-
-    RelativeVerticalToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_VERTICAL_TO_ARGS
-        ) { array ->
-            PathNode.RelativeVerticalTo(y = array[0])
-        }
-
-    VerticalToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_VERTICAL_TO_ARGS
-        ) { array ->
-            PathNode.VerticalTo(y = array[0])
-        }
-
-    RelativeCurveToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_CURVE_TO_ARGS
-        ) { array ->
-            PathNode.RelativeCurveTo(
-                dx1 = array[0],
-                dy1 = array[1],
-                dx2 = array[2],
-                dy2 = array[3],
-                dx3 = array[4],
-                dy3 = array[5]
-            )
-        }
-
-    CurveToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_CURVE_TO_ARGS
-        ) { array ->
-            PathNode.CurveTo(
-                x1 = array[0],
-                y1 = array[1],
-                x2 = array[2],
-                y2 = array[3],
-                x3 = array[4],
-                y3 = array[5]
-            )
-        }
-
-    RelativeReflectiveCurveToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_REFLECTIVE_CURVE_TO_ARGS
-        ) { array ->
-            PathNode.RelativeReflectiveCurveTo(
-                x1 = array[0],
-                y1 = array[1],
-                x2 = array[2],
-                y2 = array[3]
-            )
-        }
-
-    ReflectiveCurveToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_REFLECTIVE_CURVE_TO_ARGS
-        ) { array ->
-            PathNode.ReflectiveCurveTo(
-                x1 = array[0],
-                y1 = array[1],
-                x2 = array[2],
-                y2 = array[3]
-            )
-        }
-
-    RelativeQuadToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_QUAD_TO_ARGS
-        ) { array ->
-            PathNode.RelativeQuadTo(
-                x1 = array[0],
-                y1 = array[1],
-                x2 = array[2],
-                y2 = array[3]
-            )
-        }
-
-    QuadToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_QUAD_TO_ARGS
-        ) { array ->
-            PathNode.QuadTo(
-                x1 = array[0],
-                y1 = array[1],
-                x2 = array[2],
-                y2 = array[3]
-            )
-        }
-
-    RelativeReflectiveQuadToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_REFLECTIVE_QUAD_TO_ARGS
-        ) { array ->
-            PathNode.RelativeReflectiveQuadTo(
-                x = array[0],
-                y = array[1]
-            )
-        }
-
-    ReflectiveQuadToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_REFLECTIVE_QUAD_TO_ARGS
-        ) { array ->
-            PathNode.ReflectiveQuadTo(
-                x = array[0],
-                y = array[1]
-            )
-        }
-
-    RelativeArcToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_ARC_TO_ARGS
-        ) { array ->
-            PathNode.RelativeArcTo(
-                horizontalEllipseRadius = array[0],
-                verticalEllipseRadius = array[1],
-                theta = array[2],
-                isMoreThanHalf = array[3].compareTo(0.0f) != 0,
-                isPositiveArc = array[4].compareTo(0.0f) != 0,
-                arcStartDx = array[5],
-                arcStartDy = array[6]
-            )
-        }
-
-    ArcToKey ->
-        pathNodesFromArgs(
-            args,
-            NUM_ARC_TO_ARGS
-        ) { array ->
-            PathNode.ArcTo(
-                horizontalEllipseRadius = array[0],
-                verticalEllipseRadius = array[1],
-                theta = array[2],
-                isMoreThanHalf = array[3].compareTo(0.0f) != 0,
-                isPositiveArc = array[4].compareTo(0.0f) != 0,
-                arcStartX = array[5],
-                arcStartY = array[6]
-            )
-        }
-
-    else -> throw IllegalArgumentException("Unknown command for: $this")
-}
-
-private inline fun pathNodesFromArgs(
-    args: FloatArray,
-    numArgs: Int,
-    nodeFor: (subArray: FloatArray) -> PathNode
-): List<PathNode> {
-    return (0..args.size - numArgs step numArgs).map { index ->
-        val subArray = args.slice(index until index + numArgs).toFloatArray()
-        val node = nodeFor(subArray)
-        when {
-            // According to the spec, if a MoveTo is followed by multiple pairs of coordinates,
-            // the subsequent pairs are treated as implicit corresponding LineTo commands.
-            node is PathNode.MoveTo && index > 0 -> PathNode.LineTo(
-                subArray[0],
-                subArray[1]
-            )
-            node is PathNode.RelativeMoveTo && index > 0 ->
-                PathNode.RelativeLineTo(
-                    subArray[0],
-                    subArray[1]
-                )
-            else -> node
-        }
-    }
-}
-
-/**
- * Constants used by [Char.toPathNodes] for creating [PathNode]s from parsed paths.
- */
-private const val RelativeCloseKey = 'z'
-private const val CloseKey = 'Z'
-private const val RelativeMoveToKey = 'm'
-private const val MoveToKey = 'M'
-private const val RelativeLineToKey = 'l'
-private const val LineToKey = 'L'
-private const val RelativeHorizontalToKey = 'h'
-private const val HorizontalToKey = 'H'
-private const val RelativeVerticalToKey = 'v'
-private const val VerticalToKey = 'V'
-private const val RelativeCurveToKey = 'c'
-private const val CurveToKey = 'C'
-private const val RelativeReflectiveCurveToKey = 's'
-private const val ReflectiveCurveToKey = 'S'
-private const val RelativeQuadToKey = 'q'
-private const val QuadToKey = 'Q'
-private const val RelativeReflectiveQuadToKey = 't'
-private const val ReflectiveQuadToKey = 'T'
-private const val RelativeArcToKey = 'a'
-private const val ArcToKey = 'A'
-
-/**
- * Constants for the number of expected arguments for a given node. If the number of received
- * arguments is a multiple of these, the excess will be converted into additional path nodes.
- */
-private const val NUM_MOVE_TO_ARGS = 2
-private const val NUM_LINE_TO_ARGS = 2
-private const val NUM_HORIZONTAL_TO_ARGS = 1
-private const val NUM_VERTICAL_TO_ARGS = 1
-private const val NUM_CURVE_TO_ARGS = 6
-private const val NUM_REFLECTIVE_CURVE_TO_ARGS = 4
-private const val NUM_QUAD_TO_ARGS = 4
-private const val NUM_REFLECTIVE_QUAD_TO_ARGS = 2
-private const val NUM_ARC_TO_ARGS = 7
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/PathParser.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/PathParser.kt
deleted file mode 100644
index e004a05..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/PathParser.kt
+++ /dev/null
@@ -1,174 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator.vector
-
-import kotlin.math.min
-
-/**
- * Trimmed down copy of PathParser that doesn't handle interacting with Paths, and only is
- * responsible for parsing path strings.
- */
-object PathParser {
-    /**
-     * Parses the path string to create a collection of PathNode instances with their corresponding
-     * arguments
-     * throws an IllegalArgumentException or NumberFormatException if the parameters are invalid
-     */
-    fun parsePathString(pathData: String): List<PathNode> {
-        val nodes = mutableListOf<PathNode>()
-
-        fun addNode(cmd: Char, args: FloatArray) {
-            nodes.addAll(cmd.toPathNodes(args))
-        }
-
-        var start = 0
-        var end = 1
-        while (end < pathData.length) {
-            end = nextStart(pathData, end)
-            val s = pathData.substring(start, end).trim { it <= ' ' }
-            if (s.isNotEmpty()) {
-                val args = getFloats(s)
-                addNode(s[0], args)
-            }
-
-            start = end
-            end++
-        }
-        if (end - start == 1 && start < pathData.length) {
-            addNode(pathData[start], FloatArray(0))
-        }
-
-        return nodes
-    }
-
-    private fun nextStart(s: String, end: Int): Int {
-        var index = end
-        var c: Char
-
-        while (index < s.length) {
-            c = s[index]
-            // Note that 'e' or 'E' are not valid path commands, but could be
-            // used for floating point numbers' scientific notation.
-            // Therefore, when searching for next command, we should ignore 'e'
-            // and 'E'.
-            if (((c - 'A') * (c - 'Z') <= 0 || (c - 'a') * (c - 'z') <= 0) &&
-                c != 'e' && c != 'E'
-            ) {
-                return index
-            }
-            index++
-        }
-        return index
-    }
-
-    @Throws(NumberFormatException::class)
-    private fun getFloats(s: String): FloatArray {
-        if (s[0] == 'z' || s[0] == 'Z') {
-            return FloatArray(0)
-        }
-        val results = FloatArray(s.length)
-        var count = 0
-        var startPosition = 1
-        var endPosition: Int
-
-        val result =
-            ExtractFloatResult()
-        val totalLength = s.length
-
-        // The startPosition should always be the first character of the
-        // current number, and endPosition is the character after the current
-        // number.
-        while (startPosition < totalLength) {
-            extract(s, startPosition, result)
-            endPosition = result.endPosition
-
-            if (startPosition < endPosition) {
-                results[count++] = java.lang.Float.parseFloat(
-                    s.substring(startPosition, endPosition)
-                )
-            }
-
-            startPosition = if (result.endWithNegativeOrDot) {
-                // Keep the '-' or '.' sign with next number.
-                endPosition
-            } else {
-                endPosition + 1
-            }
-        }
-        return copyOfRange(results, 0, count)
-    }
-
-    private fun copyOfRange(original: FloatArray, start: Int, end: Int): FloatArray {
-        if (start > end) {
-            throw IllegalArgumentException()
-        }
-        val originalLength = original.size
-        if (start < 0 || start > originalLength) {
-            throw ArrayIndexOutOfBoundsException()
-        }
-        val resultLength = end - start
-        val copyLength = min(resultLength, originalLength - start)
-        val result = FloatArray(resultLength)
-        original.copyInto(result, 0, start, start + copyLength)
-        return result
-    }
-
-    private fun extract(s: String, start: Int, result: ExtractFloatResult) {
-        // Now looking for ' ', ',', '.' or '-' from the start.
-        var currentIndex = start
-        var foundSeparator = false
-        result.endWithNegativeOrDot = false
-        var secondDot = false
-        var isExponential = false
-        while (currentIndex < s.length) {
-            val isPrevExponential = isExponential
-            isExponential = false
-            when (s[currentIndex]) {
-                ' ', ',' -> foundSeparator = true
-                '-' ->
-                    // The negative sign following a 'e' or 'E' is not a separator.
-                    if (currentIndex != start && !isPrevExponential) {
-                        foundSeparator = true
-                        result.endWithNegativeOrDot = true
-                    }
-                '.' ->
-                    if (!secondDot) {
-                        secondDot = true
-                    } else {
-                        // This is the second dot, and it is considered as a separator.
-                        foundSeparator = true
-                        result.endWithNegativeOrDot = true
-                    }
-                'e', 'E' -> isExponential = true
-            }
-            if (foundSeparator) {
-                break
-            }
-            currentIndex++
-        }
-        // When there is nothing found, then we put the end position to the end
-        // of the string.
-        result.endPosition = currentIndex
-    }
-
-    private data class ExtractFloatResult(
-        // We need to return the position of the next separator and whether the
-        // next float starts with a '-' or a '.'.
-        var endPosition: Int = 0,
-        var endWithNegativeOrDot: Boolean = false
-    )
-}
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/Vector.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/Vector.kt
deleted file mode 100644
index 13a711c..0000000
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/vector/Vector.kt
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator.vector
-
-/**
- * Simplified representation of a vector, with root [nodes].
- *
- * @param autoMirrored a boolean that indicates if this Vector can be auto-mirrored on left to right
- * locales
- * @param nodes may either be a singleton list of the root group, or a list of root paths / groups
- * if there are multiple top level declaration
- */
-class Vector(val autoMirrored: Boolean, val nodes: List<VectorNode>)
-
-/**
- * Simplified vector node representation, as the total set of properties we need to care about
- * for Material icons is very limited.
- */
-sealed class VectorNode {
-    class Group(val paths: MutableList<Path> = mutableListOf()) : VectorNode()
-    class Path(
-        val strokeAlpha: Float,
-        val fillAlpha: Float,
-        val fillType: FillType,
-        val nodes: List<PathNode>
-    ) : VectorNode()
-}
diff --git a/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/IconParserTest.kt b/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/IconParserTest.kt
deleted file mode 100644
index 276adb5..0000000
--- a/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/IconParserTest.kt
+++ /dev/null
@@ -1,127 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import androidx.compose.material.icons.generator.vector.FillType
-import androidx.compose.material.icons.generator.vector.PathNode
-import androidx.compose.material.icons.generator.vector.Vector
-import androidx.compose.material.icons.generator.vector.VectorNode
-import com.google.common.truth.Truth
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.junit.runners.JUnit4
-
-/**
- * Test for [IconParser].
- */
-@RunWith(JUnit4::class)
-class IconParserTest {
-
-    @Test
-    fun parseVector() {
-        val icon = Icon(
-            "SimpleVector",
-            "simple_vector",
-            IconTheme.Filled,
-            TestVector,
-            autoMirrored = false
-        )
-        val vector = IconParser(icon).parse()
-
-        Truth.assertThat(vector.autoMirrored).isFalse()
-
-        assertVectorNodes(vector)
-    }
-
-    @Test
-    fun parseAutoMirroredVector() {
-        val icon = Icon(
-            "SimpleAutoMirroredVector",
-            "simple_autoMirrored_vector",
-            IconTheme.Filled,
-            TestAutoMirroredVector,
-            autoMirrored = true
-        )
-        val vector = IconParser(icon).parse()
-
-        Truth.assertThat(vector.autoMirrored).isTrue()
-
-        assertVectorNodes(vector)
-    }
-}
-
-private fun assertVectorNodes(vector: Vector) {
-    val nodes = vector.nodes
-    Truth.assertThat(nodes.size).isEqualTo(2)
-
-    val firstPath = nodes[0] as VectorNode.Path
-    Truth.assertThat(firstPath.fillAlpha).isEqualTo(0.3f)
-    Truth.assertThat(firstPath.strokeAlpha).isEqualTo(1f)
-    Truth.assertThat(firstPath.fillType).isEqualTo(FillType.NonZero)
-
-    val expectedFirstPathNodes = listOf(
-        PathNode.MoveTo(20f, 10f),
-        PathNode.RelativeLineTo(10f, 10f),
-        PathNode.RelativeLineTo(0f, 10f),
-        PathNode.RelativeLineTo(-10f, 0f),
-        PathNode.Close
-    )
-    Truth.assertThat(firstPath.nodes).isEqualTo(expectedFirstPathNodes)
-
-    val secondPath = nodes[1] as VectorNode.Path
-    Truth.assertThat(secondPath.fillAlpha).isEqualTo(1f)
-    Truth.assertThat(secondPath.strokeAlpha).isEqualTo(0.9f)
-    Truth.assertThat(secondPath.fillType).isEqualTo(FillType.EvenOdd)
-
-    val expectedSecondPathNodes = listOf(
-        PathNode.MoveTo(16.5f, 9.0f),
-        PathNode.RelativeHorizontalTo(3.5f),
-        PathNode.RelativeVerticalTo(9f),
-        PathNode.RelativeHorizontalTo(-3.5f),
-        PathNode.Close
-    )
-    Truth.assertThat(secondPath.nodes).isEqualTo(expectedSecondPathNodes)
-}
-
-private val TestVector = """
-    <vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp">
-        <path
-            android:fillAlpha=".3"
-            android:pathData="M20,10, l10,10 0,10 -10, 0z" />
-        <path
-            android:strokeAlpha=".9"
-            android:pathData="M16.5,9h3.5v9h-3.5z"
-            android:fillType="evenOdd" />
-    </vector>
-""".trimIndent()
-
-private val TestAutoMirroredVector = """
-    <vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:autoMirrored="true">
-        <path
-            android:fillAlpha=".3"
-            android:pathData="M20,10, l10,10 0,10 -10, 0z" />
-        <path
-            android:strokeAlpha=".9"
-            android:pathData="M16.5,9h3.5v9h-3.5z"
-            android:fillType="evenOdd" />
-    </vector>
-""".trimIndent()
diff --git a/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/IconProcessorTest.kt b/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/IconProcessorTest.kt
deleted file mode 100644
index 5a6027f..0000000
--- a/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/IconProcessorTest.kt
+++ /dev/null
@@ -1,497 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import com.google.common.truth.Truth
-import java.io.File
-import org.junit.Assert.fail
-import org.junit.Rule
-import org.junit.Test
-import org.junit.rules.TemporaryFolder
-import org.junit.runner.RunWith
-import org.junit.runners.JUnit4
-
-/**
- * Test for [IconProcessor].
- */
-@RunWith(JUnit4::class)
-class IconProcessorTest {
-
-    @get:Rule
-    val temporaryFolder: TemporaryFolder = TemporaryFolder()
-
-    /**
-     * Tests that the processed icons match what we expect.
-     */
-    @Test
-    fun iconProcessor_noApiChanges() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to each theme folder
-        iconDirectory.listFiles()!!.forEach { themeDirectory ->
-            themeDirectory.resolve("test_icon.xml").writeText(TestIconFile)
-        }
-
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText(ExpectedApiFile)
-        }
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText("")
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-
-        )
-
-        val icons = processor.process()
-
-        Truth.assertThat(icons.size).isEqualTo(5)
-
-        icons.forEach { icon ->
-            Truth.assertThat(icon.kotlinName).isEqualTo("TestIcon")
-            val themePackage = icon.theme.themePackageName
-            Truth.assertThat(icon.xmlFileName).isEqualTo("${themePackage}_test_icon")
-            Truth.assertThat(icon.fileContent).isEqualTo(ExpectedIconFile)
-        }
-    }
-
-    /**
-     * Tests that the processed auto-mirrored icons match what we expect.
-     */
-    @Test
-    fun iconProcessor_noAutoMirroredApiChanges() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to each theme folder
-        iconDirectory.listFiles()!!.forEach { themeDirectory ->
-            themeDirectory.resolve("test_icon.xml").writeText(TestAutoMirroredIconFile)
-        }
-
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText("")
-        }
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText(ExpectedApiFile)
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-        )
-
-        val icons = processor.process()
-
-        Truth.assertThat(icons.size).isEqualTo(5)
-
-        icons.forEach { icon ->
-            Truth.assertThat(icon.kotlinName).isEqualTo("TestIcon")
-            val themePackage = icon.theme.themePackageName
-            Truth.assertThat(icon.xmlFileName).isEqualTo("${themePackage}_test_icon")
-            Truth.assertThat(icon.fileContent).isEqualTo(ExpectedAutoMirroredIconFile)
-            Truth.assertThat(icon.autoMirrored).isTrue()
-        }
-    }
-
-    /**
-     * Tests that an exception is thrown, failing the build, when there are changes between the
-     * checked in and generated API files.
-     */
-    @Test
-    fun iconProcessor_apiChanges() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to each theme folder
-        iconDirectory.listFiles()!!.forEach { themeDirectory ->
-            themeDirectory.resolve("test_icon.xml").writeText(TestIconFile)
-        }
-
-        // Create an empty expected API file
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText("")
-        }
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText("")
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-        )
-
-        // The generated api file conflicts with the expected api file, so we should throw here
-        assertIllegalStateContainingMessage("Found differences when comparing API files") {
-            processor.process()
-        }
-    }
-
-    /**
-     * Tests that an exception is thrown, failing the build, when there are changes between the
-     * checked in and generated auto-mirrored API files.
-     */
-    @Test
-    fun iconProcessor_autoMirroredApiChanges() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to each theme folder
-        iconDirectory.listFiles()!!.forEach { themeDirectory ->
-            themeDirectory.resolve("test_icon.xml").writeText(TestAutoMirroredIconFile)
-        }
-
-        // Create an empty expected API file
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText("")
-        }
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText("")
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-        )
-
-        // The generated api file conflicts with the expected api file, so we should throw here
-        assertIllegalStateContainingMessage("Found differences when comparing API files") {
-            processor.process()
-        }
-    }
-
-    /**
-     * Tests that an exception is thrown, failing the build, when not all themes contain icons.
-     */
-    @Test
-    fun iconProcessor_missingTheme() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to all but one theme folder
-        iconDirectory.listFiles()!!.forEachIndexed { index, themeDirectory ->
-            if (index != 0) {
-                themeDirectory.resolve("test_icon.xml").writeText(TestIconFile)
-            }
-        }
-
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText(ExpectedIconFile)
-        }
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText("")
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-        )
-
-        // Not all icons exist in all themes, so we should throw here
-        assertIllegalStateContainingMessage("Some themes were missing") {
-            processor.process()
-        }
-    }
-
-    /**
-     * Tests that an exception is thrown, failing the build, when not all themes contain the
-     * auto-mirrored icons.
-     */
-    @Test
-    fun iconProcessor_missingAutoMirroredTheme() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to all but one theme folder
-        iconDirectory.listFiles()!!.forEachIndexed { index, themeDirectory ->
-            if (index != 0) {
-                themeDirectory.resolve("test_icon.xml").writeText(TestAutoMirroredIconFile)
-            }
-        }
-
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText("")
-        }
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText(ExpectedAutoMirroredIconFile)
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-        )
-
-        // Not all icons exist in all themes, so we should throw here
-        assertIllegalStateContainingMessage("Some themes were missing") {
-            processor.process()
-        }
-    }
-
-    /**
-     * Tests that an exception is thrown, failing the build, when the number of icons in each
-     * theme is not the same.
-     */
-    @Test
-    fun iconProcessor_missingIcons() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to all themes
-        iconDirectory.listFiles()!!.forEach { themeDirectory ->
-            themeDirectory.resolve("test_icon.xml").writeText(TestIconFile)
-        }
-
-        // Write a new icon to only one theme
-        iconDirectory.listFiles()!![0].resolve("unique_test_icon").writeText(TestIconFile)
-
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText(ExpectedIconFile)
-        }
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText("")
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-        )
-
-        // Not all icons exist in all themes, so we should throw here
-        assertIllegalStateContainingMessage("Not all icons were found") {
-            processor.process()
-        }
-    }
-
-    /**
-     * Tests that an exception is thrown, failing the build, when the number of icons in each
-     * theme is not the same.
-     */
-    @Test
-    fun iconProcessor_missingAutoMirroredIcons() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        // Write the test icon to all themes
-        iconDirectory.listFiles()!!.forEach { themeDirectory ->
-            themeDirectory.resolve("test_icon.xml").writeText(TestAutoMirroredIconFile)
-        }
-
-        // Write a new icon to only one theme
-        iconDirectory.listFiles()!![0].resolve("unique_test_icon")
-            .writeText(TestAutoMirroredIconFile)
-
-        val expectedApiFile = temporaryFolder.newFile("expected-api.txt").apply {
-            writeText("")
-        }
-
-        val expectedAutoMirroredApiFile =
-            temporaryFolder.newFile("expected-automirrored-api.txt").apply {
-                writeText(ExpectedAutoMirroredIconFile)
-            }
-
-        val generatedApiFile = temporaryFolder.newFile("generated-api.txt")
-
-        val generatedAutoMirroredApiFile =
-            temporaryFolder.newFile("generated-automirrored-api.txt")
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            expectedApiFile = expectedApiFile,
-            generatedApiFile = generatedApiFile,
-            expectedAutoMirroredApiFile = expectedAutoMirroredApiFile,
-            generatedAutoMirroredApiFile = generatedAutoMirroredApiFile
-        )
-
-        // Not all icons exist in all themes, so we should throw here
-        assertIllegalStateContainingMessage("Not all icons were found") {
-            processor.process()
-        }
-    }
-
-    /**
-     * Tests that an exception is thrown, failing the build, if there are multiple icons that will
-     * have the same name on case insensitive filesystems
-     */
-    @Test
-    fun iconProcessor_duplicateIconNames() {
-        val iconDirectory = temporaryFolder.createIconDirectory()
-
-        iconDirectory.listFiles()!!.forEach { themeDirectory ->
-            themeDirectory.resolve("testicon.xml").writeText(TestIconFile)
-            themeDirectory.resolve("test_icon.xml").writeText(TestIconFile)
-        }
-
-        val processor = IconProcessor(
-            iconDirectories = iconDirectory.listFiles()!!.toList(),
-            // Should crash before reaching this point, so just use an empty file
-            expectedApiFile = temporaryFolder.root,
-            generatedApiFile = temporaryFolder.root,
-            expectedAutoMirroredApiFile = temporaryFolder.root,
-            generatedAutoMirroredApiFile = temporaryFolder.root
-        )
-
-        // Duplicate icon names, so we should throw here
-        assertIllegalStateContainingMessage(
-            "Found multiple icons with the same case-insensitive filename"
-        ) {
-            processor.process()
-        }
-    }
-}
-
-/**
- * Asserts that [body] throws an [IllegalStateException], whose message contains [message].
- */
-private fun assertIllegalStateContainingMessage(message: String, body: () -> Unit) {
-    try {
-        body()
-        fail("No exception was thrown")
-    } catch (e: IllegalStateException) {
-        Truth.assertThat(e)
-            .hasMessageThat()
-            .contains(message)
-    }
-}
-
-/**
- * Creates a temporary folder that contains subfolders for each [IconTheme], matching the
- * expected structure.
- */
-private fun TemporaryFolder.createIconDirectory(): File {
-    val iconDirectory = newFolder("icons")
-
-    IconTheme.values().forEach { theme ->
-        val folderName = theme.themePackageName
-        iconDirectory.resolve(folderName).mkdir()
-    }
-
-    return iconDirectory
-}
-
-private val TestIconFile = """
-    <vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24"
-        android:viewportHeight="24"
-        android:tint="?attr/colorControlNormal">
-      <path
-          android:fillColor="@android:color/white"
-          android:pathData="M16.5,9h3.5v9h-3.5z"/>
-    </vector>
-
-""".trimIndent()
-
-private val TestAutoMirroredIconFile = """
-    <vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24"
-        android:viewportHeight="24"
-        android:tint="?attr/colorControlNormal"
-        android:autoMirrored="true">
-      <path
-          android:fillColor="@android:color/white"
-          android:pathData="M16.5,9h3.5v9h-3.5z"/>
-    </vector>
-
-""".trimIndent()
-
-private val ExpectedIconFile = """
-    <vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24"
-        android:viewportHeight="24">
-      <path
-          android:fillColor="@android:color/black"
-          android:pathData="M16.5,9h3.5v9h-3.5z"/>
-    </vector>
-
-""".trimIndent()
-
-private val ExpectedAutoMirroredIconFile = """
-    <vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24"
-        android:viewportHeight="24"
-        android:autoMirrored="true">
-      <path
-          android:fillColor="@android:color/black"
-          android:pathData="M16.5,9h3.5v9h-3.5z"/>
-    </vector>
-
-""".trimIndent()
-
-private val ExpectedApiFile = """
-    Filled.TestIcon
-    Outlined.TestIcon
-    Rounded.TestIcon
-    Sharp.TestIcon
-    TwoTone.TestIcon
-""".trimIndent()
diff --git a/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/ImageVectorGeneratorTest.kt b/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/ImageVectorGeneratorTest.kt
deleted file mode 100644
index 32ee1d7..0000000
--- a/compose/material/material/icons/generator/src/test/kotlin/androidx/compose/material/icons/generator/ImageVectorGeneratorTest.kt
+++ /dev/null
@@ -1,255 +0,0 @@
-/*
- * Copyright 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.compose.material.icons.generator
-
-import androidx.compose.material.icons.generator.PackageNames.MaterialIconsPackage
-import androidx.compose.material.icons.generator.vector.FillType
-import androidx.compose.material.icons.generator.vector.PathNode
-import androidx.compose.material.icons.generator.vector.Vector
-import androidx.compose.material.icons.generator.vector.VectorNode
-import com.google.common.truth.Truth
-import org.intellij.lang.annotations.Language
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.junit.runners.JUnit4
-
-/**
- * Test for [ImageVectorGenerator].
- */
-@RunWith(JUnit4::class)
-class ImageVectorGeneratorTest {
-
-    @Test
-    fun generateFileSpec() {
-        val theme = IconTheme.Filled
-        assertFileSpec(
-            iconName = "TestVector",
-            theme = theme,
-            testVector = TestVector,
-            expectedPackageName = "${MaterialIconsPackage.packageName}.${theme.themePackageName}",
-            expectedFileContent = ExpectedFile,
-            isAutoMirrored = false
-        )
-    }
-
-    @Test
-    fun generateDeprecatedFileSpec() {
-        val theme = IconTheme.Filled
-        assertFileSpec(
-            iconName = "TestVector",
-            theme = theme,
-            testVector = TestAutoMirroredVector,
-            expectedPackageName = "${MaterialIconsPackage.packageName}.${theme.themePackageName}",
-            expectedFileContent = ExpectedDeprecatedFile,
-            isAutoMirrored = false
-        )
-    }
-
-    @Test
-    fun generateAutoMirroredFileSpec() {
-        val theme = IconTheme.Filled
-        assertFileSpec(
-            iconName = "TestVector",
-            theme = theme,
-            testVector = TestAutoMirroredVector,
-            expectedPackageName = "${MaterialIconsPackage.packageName}.$AutoMirroredPackageName" +
-                ".${theme.themePackageName}",
-            expectedFileContent = ExpectedAutoMirroredFile,
-            isAutoMirrored = true
-        )
-    }
-}
-
-private fun assertFileSpec(
-    iconName: String,
-    theme: IconTheme,
-    testVector: Vector,
-    expectedPackageName: String,
-    expectedFileContent: String,
-    isAutoMirrored: Boolean
-) {
-    val generator = ImageVectorGenerator(
-        iconName = iconName,
-        iconTheme = theme,
-        vector = testVector
-    )
-
-    val fileSpec = if (isAutoMirrored) {
-        generator.createAutoMirroredFileSpec()
-    } else {
-        generator.createFileSpec()
-    }
-
-    Truth.assertThat(fileSpec.name).isEqualTo(iconName)
-
-    Truth.assertThat(fileSpec.packageName).isEqualTo(expectedPackageName)
-
-    val fileContent = StringBuilder().run {
-        fileSpec.writeTo(this)
-        toString()
-    }
-
-    Truth.assertThat(fileContent).isEqualTo(expectedFileContent)
-}
-
-@Language("kotlin")
-private val ExpectedFile = """
-    package androidx.compose.material.icons.filled
-
-    import androidx.compose.material.icons.Icons
-    import androidx.compose.material.icons.materialIcon
-    import androidx.compose.material.icons.materialPath
-    import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd
-    import androidx.compose.ui.graphics.vector.ImageVector
-    import androidx.compose.ui.graphics.vector.group
-
-    public val Icons.Filled.TestVector: ImageVector
-        get() {
-            if (_testVector != null) {
-                return _testVector!!
-            }
-            _testVector = materialIcon(name = "Filled.TestVector") {
-                materialPath(fillAlpha = 0.8f) {
-                    moveTo(20.0f, 10.0f)
-                    lineToRelative(0.0f, 10.0f)
-                    lineToRelative(-10.0f, 0.0f)
-                    close()
-                }
-                group {
-                    materialPath(pathFillType = EvenOdd) {
-                        moveTo(0.0f, 10.0f)
-                        lineToRelative(-10.0f, 0.0f)
-                        close()
-                    }
-                }
-            }
-            return _testVector!!
-        }
-
-    private var _testVector: ImageVector? = null
-
-""".trimIndent()
-
-@Language("kotlin")
-private val ExpectedDeprecatedFile = """
-    package androidx.compose.material.icons.filled
-
-    import androidx.compose.material.icons.Icons
-    import androidx.compose.material.icons.materialIcon
-    import androidx.compose.material.icons.materialPath
-    import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd
-    import androidx.compose.ui.graphics.vector.ImageVector
-    import androidx.compose.ui.graphics.vector.group
-    import kotlin.Deprecated
-
-    @Deprecated(
-        "Use the AutoMirrored version at Icons.AutoMirrored.Filled.TestVector",
-        ReplaceWith( "Icons.AutoMirrored.Filled.TestVector",
-                "androidx.compose.material.icons.automirrored.filled.TestVector"),
-    )
-    public val Icons.Filled.TestVector: ImageVector
-        get() {
-            if (_testVector != null) {
-                return _testVector!!
-            }
-            _testVector = materialIcon(name = "Filled.TestVector") {
-                materialPath(fillAlpha = 0.8f) {
-                    moveTo(20.0f, 10.0f)
-                    lineToRelative(0.0f, 10.0f)
-                    lineToRelative(-10.0f, 0.0f)
-                    close()
-                }
-                group {
-                    materialPath(pathFillType = EvenOdd) {
-                        moveTo(0.0f, 10.0f)
-                        lineToRelative(-10.0f, 0.0f)
-                        close()
-                    }
-                }
-            }
-            return _testVector!!
-        }
-
-    private var _testVector: ImageVector? = null
-
-""".trimIndent()
-
-@Language("kotlin")
-private val ExpectedAutoMirroredFile = """
-    package androidx.compose.material.icons.automirrored.filled
-
-    import androidx.compose.material.icons.Icons
-    import androidx.compose.material.icons.materialIcon
-    import androidx.compose.material.icons.materialPath
-    import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd
-    import androidx.compose.ui.graphics.vector.ImageVector
-    import androidx.compose.ui.graphics.vector.group
-
-    public val Icons.AutoMirrored.Filled.TestVector: ImageVector
-        get() {
-            if (_testVector != null) {
-                return _testVector!!
-            }
-            _testVector = materialIcon(name = "AutoMirrored.Filled.TestVector", autoMirror = true) {
-                materialPath(fillAlpha = 0.8f) {
-                    moveTo(20.0f, 10.0f)
-                    lineToRelative(0.0f, 10.0f)
-                    lineToRelative(-10.0f, 0.0f)
-                    close()
-                }
-                group {
-                    materialPath(pathFillType = EvenOdd) {
-                        moveTo(0.0f, 10.0f)
-                        lineToRelative(-10.0f, 0.0f)
-                        close()
-                    }
-                }
-            }
-            return _testVector!!
-        }
-
-    private var _testVector: ImageVector? = null
-
-""".trimIndent()
-
-private val path1 = VectorNode.Path(
-    strokeAlpha = 1f,
-    fillAlpha = 0.8f,
-    fillType = FillType.NonZero,
-    nodes = listOf(
-        PathNode.MoveTo(20f, 10f),
-        PathNode.RelativeLineTo(0f, 10f),
-        PathNode.RelativeLineTo(-10f, 0f),
-        PathNode.Close
-    )
-)
-
-private val path2 = VectorNode.Path(
-    strokeAlpha = 1f,
-    fillAlpha = 1f,
-    fillType = FillType.EvenOdd,
-    nodes = listOf(
-        PathNode.MoveTo(0f, 10f),
-        PathNode.RelativeLineTo(-10f, 0f),
-        PathNode.Close
-    )
-)
-
-private val group = VectorNode.Group(mutableListOf(path2))
-
-private val TestVector = Vector(autoMirrored = false, nodes = listOf(path1, group))
-private val TestAutoMirroredVector = Vector(autoMirrored = true, nodes = listOf(path1, group))
diff --git a/compose/material3/benchmark/build.gradle b/compose/material3/benchmark/build.gradle
index d666836..6a019df 100644
--- a/compose/material3/benchmark/build.gradle
+++ b/compose/material3/benchmark/build.gradle
@@ -24,7 +24,7 @@
 
 dependencies {
 
-    androidTestImplementation(project(":compose:material:material-icons-core"))
+    androidTestImplementation("androidx.compose.material:material-icons-core:1.6.7")
     androidTestImplementation(project(":compose:material3:material3"))
     androidTestImplementation(project(":compose:material3:material3-adaptive-navigation-suite"))
     androidTestImplementation(project(":compose:material3:material3-window-size-class"))
diff --git a/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composer.kt b/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composer.kt
index c836db8..20678df 100644
--- a/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composer.kt
+++ b/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composer.kt
@@ -3557,6 +3557,23 @@
         return false
     }
 
+    fun updateComposerInvalidations(
+        invalidationsRequested: ScopeMap<RecomposeScopeImpl, Any>
+    ) {
+        invalidationsRequested.map.forEach { scope, instances ->
+            scope as RecomposeScopeImpl
+            val location = scope.anchor?.location ?: return@forEach
+            invalidations.add(
+                Invalidation(
+                    scope,
+                    location,
+                    instances.takeUnless { it === ScopeInvalidated }
+                )
+            )
+        }
+        invalidations.sortWith(InvalidationLocationAscending)
+    }
+
     private fun doCompose(
         invalidationsRequested: ScopeMap<RecomposeScopeImpl, Any>,
         content: (@Composable () -> Unit)?
@@ -3565,18 +3582,7 @@
         trace("Compose:recompose") {
             compositionToken = currentSnapshot().id
             providerUpdates = null
-            invalidationsRequested.map.forEach { scope, instances ->
-                scope as RecomposeScopeImpl
-                val location = scope.anchor?.location ?: return@forEach
-                invalidations.add(
-                    Invalidation(
-                        scope,
-                        location,
-                        instances.takeUnless { it === ScopeInvalidated }
-                    )
-                )
-            }
-            invalidations.sortWith(InvalidationLocationAscending)
+            updateComposerInvalidations(invalidationsRequested)
             nodeIndex = 0
             var complete = false
             isComposing = true
@@ -3770,6 +3776,7 @@
      */
     private fun reportAllMovableContent() {
         if (slotTable.containsMark()) {
+            (composition as CompositionImpl).updateMovingInvalidations()
             val changes = ChangeList()
             deferredChanges = changes
             slotTable.read { reader ->
diff --git a/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composition.kt b/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composition.kt
index 9481367..d2a50a8 100644
--- a/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composition.kt
+++ b/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/Composition.kt
@@ -749,6 +749,15 @@
         }
     }
 
+    internal fun updateMovingInvalidations() {
+        synchronized(lock) {
+            drainPendingModificationsForCompositionLocked()
+            guardInvalidationsLocked { invalidations ->
+                composer.updateComposerInvalidations(invalidations)
+            }
+        }
+    }
+
     override fun dispose() {
         synchronized(lock) {
             checkPrecondition(!composer.isComposing) {
diff --git a/compose/runtime/runtime/src/nonEmulatorCommonTest/kotlin/androidx/compose/runtime/MovableContentTests.kt b/compose/runtime/runtime/src/nonEmulatorCommonTest/kotlin/androidx/compose/runtime/MovableContentTests.kt
index f6feff2..389c6ae 100644
--- a/compose/runtime/runtime/src/nonEmulatorCommonTest/kotlin/androidx/compose/runtime/MovableContentTests.kt
+++ b/compose/runtime/runtime/src/nonEmulatorCommonTest/kotlin/androidx/compose/runtime/MovableContentTests.kt
@@ -1671,6 +1671,39 @@
         expectChanges()
         revalidate()
     }
+
+    @Test // 343178423
+    fun movableContent_movingContentOutOfDeferredSubcomposition() = compositionTest {
+        var toggle by mutableStateOf(true)
+        val content = movableContentOf {
+            Text("Toggle = $toggle")
+        }
+
+        compose {
+            if (toggle) {
+                DeferredSubcompose {
+                    content()
+                }
+            } else {
+                content()
+            }
+        }
+        advanceTimeBy(5_000)
+
+        validate {
+            if (toggle) {
+                DeferredSubcompose {
+                    Text("Toggle = $toggle")
+                }
+            } else {
+                Text("Toggle = false")
+            }
+        }
+
+        toggle = !toggle
+        expectChanges()
+        revalidate()
+    }
 }
 
 @Composable
diff --git a/compose/ui/ui-graphics/api/current.txt b/compose/ui/ui-graphics/api/current.txt
index 41516b7..e457c8e 100644
--- a/compose/ui/ui-graphics/api/current.txt
+++ b/compose/ui/ui-graphics/api/current.txt
@@ -518,6 +518,7 @@
     method public androidx.compose.ui.geometry.Rect map(androidx.compose.ui.geometry.Rect rect);
     method public long map(long point);
     method public void reset();
+    method public void resetToPivotedTransform(optional float pivotX, optional float pivotY, optional float translationX, optional float translationY, optional float translationZ, optional float rotationX, optional float rotationY, optional float rotationZ, optional float scaleX, optional float scaleY, optional float scaleZ);
     method public void rotateX(float degrees);
     method public void rotateY(float degrees);
     method public void rotateZ(float degrees);
diff --git a/compose/ui/ui-graphics/api/restricted_current.txt b/compose/ui/ui-graphics/api/restricted_current.txt
index 9da68f8..6b401fe 100644
--- a/compose/ui/ui-graphics/api/restricted_current.txt
+++ b/compose/ui/ui-graphics/api/restricted_current.txt
@@ -590,6 +590,7 @@
     method public androidx.compose.ui.geometry.Rect map(androidx.compose.ui.geometry.Rect rect);
     method public long map(long point);
     method public void reset();
+    method public void resetToPivotedTransform(optional float pivotX, optional float pivotY, optional float translationX, optional float translationY, optional float translationZ, optional float rotationX, optional float rotationY, optional float rotationZ, optional float scaleX, optional float scaleY, optional float scaleZ);
     method public void rotateX(float degrees);
     method public void rotateY(float degrees);
     method public void rotateZ(float degrees);
diff --git a/compose/ui/ui-graphics/src/androidInstrumentedTest/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayerTest.kt b/compose/ui/ui-graphics/src/androidInstrumentedTest/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayerTest.kt
index 9a659d8..28ea7fb 100644
--- a/compose/ui/ui-graphics/src/androidInstrumentedTest/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayerTest.kt
+++ b/compose/ui/ui-graphics/src/androidInstrumentedTest/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayerTest.kt
@@ -436,6 +436,36 @@
     }
 
     @Test
+    fun testResettingToDefaultPivot() {
+        var layer: GraphicsLayer? = null
+        val topLeft = IntOffset.Zero
+        val size = TEST_SIZE
+        graphicsLayerTest(
+            block = { graphicsContext ->
+                layer = graphicsContext.createGraphicsLayer().apply {
+                    record {
+                        inset(this.size.width / 4, this.size.height / 4) {
+                            drawRect(Color.Red)
+                        }
+                    }
+                    scaleY = 2f
+                    scaleX = 2f
+                    // first set to some custom value
+                    pivotOffset = Offset(this.size.width.toFloat(), this.size.height.toFloat())
+                    // and then get back to the default
+                    pivotOffset = Offset.Unspecified
+                }
+                drawLayer(layer!!)
+            },
+            verify = {
+                assertEquals(topLeft, layer!!.topLeft)
+                assertEquals(size, layer!!.size)
+                it.verifyQuadrants(Color.Red, Color.Red, Color.Red, Color.Red)
+            }
+        )
+    }
+
+    @Test
     fun testTranslationX() {
         var layer: GraphicsLayer? = null
         val topLeft = IntOffset.Zero
diff --git a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/AndroidGraphicsContext.android.kt b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/AndroidGraphicsContext.android.kt
index b166e55..3fe9bb2 100644
--- a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/AndroidGraphicsContext.android.kt
+++ b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/AndroidGraphicsContext.android.kt
@@ -127,31 +127,32 @@
     override fun createGraphicsLayer(): GraphicsLayer {
         synchronized(lock) {
             val ownerId = getUniqueDrawingId(ownerView)
-            val layerImpl = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
-                GraphicsLayerV29(ownerId)
-            } else if (isRenderNodeCompatible && Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
-                try {
-                    GraphicsLayerV23(ownerView, ownerId)
-                } catch (_: Throwable) {
-                    // If we ever failed to create an instance of the RenderNode stub based
-                    // GraphicsLayer, always fallback to creation of View based layers as it is
-                    // unlikely that subsequent attempts to create a GraphicsLayer with RenderNode
-                    // stubs would be successful.
-                    isRenderNodeCompatible = false
-                    GraphicsViewLayer(
-                        obtainViewLayerContainer(ownerView),
-                        ownerId
-                    )
-                }
+            val reusedLayer = layerManager.takeFromCache(ownerId)
+            val layer = if (reusedLayer != null) {
+                reusedLayer
             } else {
-                GraphicsViewLayer(
-                    obtainViewLayerContainer(ownerView),
-                    ownerId
-                )
+                val layerImpl = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
+                    GraphicsLayerV29()
+                } else if (isRenderNodeCompatible &&
+                    Build.VERSION.SDK_INT >= Build.VERSION_CODES.M
+                ) {
+                    try {
+                        GraphicsLayerV23(ownerView)
+                    } catch (_: Throwable) {
+                        // If we ever failed to create an instance of the RenderNode stub based
+                        // GraphicsLayer, always fallback to creation of View based layers as it is
+                        // unlikely that subsequent attempts to create a GraphicsLayer with RenderNode
+                        // stubs would be successful.
+                        isRenderNodeCompatible = false
+                        GraphicsViewLayer(obtainViewLayerContainer(ownerView))
+                    }
+                } else {
+                    GraphicsViewLayer(obtainViewLayerContainer(ownerView))
+                }
+                GraphicsLayer(layerImpl, layerManager, ownerId)
             }
-            return GraphicsLayer(layerImpl, layerManager).also { layer ->
-                layerManager.persist(layer)
-            }
+            layerManager.persist(layer)
+            return layer
         }
     }
 
diff --git a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayer.android.kt b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayer.android.kt
index 699f2bd..d5e3492 100644
--- a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayer.android.kt
+++ b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/AndroidGraphicsLayer.android.kt
@@ -51,7 +51,8 @@
 @Suppress("NotCloseable")
 actual class GraphicsLayer internal constructor(
     internal val impl: GraphicsLayerImpl,
-    private val layerManager: LayerManager
+    private val layerManager: LayerManager,
+    ownerViewId: Long
 ) {
     private var density = DefaultDensity
     private var layoutDirection = LayoutDirection.Ltr
@@ -132,10 +133,14 @@
      * @sample androidx.compose.ui.graphics.samples.GraphicsLayerSizeSample
      */
     actual var size: IntSize = IntSize.Zero
-        internal set(value) {
+        private set(value) {
             if (field != value) {
                 field = value
                 setPosition(topLeft, value)
+                if (roundRectOutlineSize.isUnspecified) {
+                    outlineDirty = true
+                    configureOutline()
+                }
             }
         }
 
@@ -390,8 +395,7 @@
      * for use cases where only the [topLeft] is desired to be changed
      */
     private fun setPosition(topLeft: IntOffset, size: IntSize) {
-        impl.setPosition(topLeft, size)
-        this.outlineDirty = true
+        impl.setPosition(topLeft.x, topLeft.y, size)
     }
 
     /**
@@ -413,12 +417,7 @@
         size: IntSize,
         block: DrawScope.() -> Unit
     ) {
-        if (this.size != size) {
-            setPosition(topLeft, size)
-            this.size = size
-            outlineDirty = true
-            configureOutline()
-        }
+        this.size = size
         this.density = density
         this.layoutDirection = layoutDirection
         this.drawBlock = block
@@ -515,9 +514,6 @@
 
         recreateDisplayListIfNeeded()
 
-        if (pivotOffset.isUnspecified) {
-            impl.pivotOffset = Offset(size.width / 2f, size.height / 2f)
-        }
         configureOutline()
         val useZ = shadowElevation > 0f
         if (useZ) {
@@ -578,8 +574,10 @@
         discardContentIfReleasedAndHaveNoParentLayerUsages()
     }
 
+    private var skipOutlineConfiguration = false
+
     private fun configureOutline() {
-        if (outlineDirty) {
+        if (outlineDirty && !skipOutlineConfiguration) {
             val outlineIsNeeded = clip || shadowElevation > 0f
             if (!outlineIsNeeded) {
                 impl.setOutline(null)
@@ -607,8 +605,8 @@
                     impl.setOutline(roundRectOutline)
                 }
             }
+            outlineDirty = false
         }
-        outlineDirty = false
     }
 
     private inline fun <T> resolveOutlinePosition(block: (Offset, Size) -> T): T {
@@ -692,8 +690,8 @@
      * The uniqueDrawingId of the owner view of this graphics layer. This is used by
      * tooling to match a layer to the associated owner View.
      */
-    val ownerViewId: Long
-        get() = impl.ownerId
+    var ownerViewId: Long = ownerViewId
+        private set
 
     actual val outline: Outline
         get() {
@@ -841,6 +839,51 @@
     actual suspend fun toImageBitmap(): ImageBitmap =
         SnapshotImpl.toBitmap(this).asImageBitmap()
 
+    internal fun reuse(ownerViewId: Long) {
+        // apply new owner id
+        this.ownerViewId = ownerViewId
+
+        // mark the layer as not released
+        isReleased = false
+
+        // prepare the implementation to be reused
+        impl.onReused()
+
+        // forget the previous draw lambda
+        drawBlock = {}
+
+        // multiple of the setters can cause configureOutline() calls, however we don't want
+        // to execute it multiple times, so we set this flag to true
+        skipOutlineConfiguration = true
+
+        // reset properties to the default values
+        alpha = 1f
+        blendMode = BlendMode.SrcOver
+        colorFilter = null
+        pivotOffset = Offset.Unspecified
+        scaleX = 1f
+        scaleY = 1f
+        translationX = 0f
+        translationY = 0f
+        shadowElevation = 0f
+        rotationX = 0f
+        rotationY = 0f
+        rotationZ = 0f
+        ambientShadowColor = Color.Black
+        spotShadowColor = Color.Black
+        cameraDistance = DefaultCameraDistance
+        renderEffect = null
+        compositingStrategy = CompositingStrategy.Auto
+        clip = false
+        size = IntSize.Zero
+        topLeft = IntOffset.Zero
+        setRectOutline()
+
+        // unset this flag. if outlineDirty is true we will call configureOutline() again when
+        // the layer will be drawn for the first time.
+        skipOutlineConfiguration = false
+    }
+
     companion object {
 
         // See b/340578758, fallback to software rendering for Robolectric tests
@@ -866,12 +909,6 @@
     val layerId: Long
 
     /**
-     * The uniqueDrawingId of the owner view of this graphics layer. This is used by
-     * tooling to match a layer to the associated owner AndroidComposeView.
-     */
-    val ownerId: Long
-
-    /**
      * @see GraphicsLayer.compositingStrategy
      */
     var compositingStrategy: CompositingStrategy
@@ -969,7 +1006,7 @@
     /**
      * @see GraphicsLayer.setPosition
      */
-    fun setPosition(topLeft: IntOffset, size: IntSize)
+    fun setPosition(x: Int, y: Int, size: IntSize)
 
     /**
      * @see GraphicsLayer.setPathOutline
@@ -1013,6 +1050,8 @@
      */
     fun calculateMatrix(): android.graphics.Matrix
 
+    fun onReused() {}
+
     companion object {
         val DefaultDrawBlock: DrawScope.() -> Unit = { drawRect(Color.Transparent) }
     }
diff --git a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV23.android.kt b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV23.android.kt
index 6c07b2a..2b8f7e1 100644
--- a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV23.android.kt
+++ b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV23.android.kt
@@ -25,6 +25,7 @@
 import android.view.View
 import androidx.annotation.RequiresApi
 import androidx.compose.ui.geometry.Offset
+import androidx.compose.ui.geometry.isUnspecified
 import androidx.compose.ui.graphics.BlendMode
 import androidx.compose.ui.graphics.CanvasHolder
 import androidx.compose.ui.graphics.Color
@@ -38,7 +39,6 @@
 import androidx.compose.ui.graphics.toArgb
 import androidx.compose.ui.graphics.toPorterDuffMode
 import androidx.compose.ui.unit.Density
-import androidx.compose.ui.unit.IntOffset
 import androidx.compose.ui.unit.IntSize
 import androidx.compose.ui.unit.LayoutDirection
 import androidx.compose.ui.unit.toSize
@@ -47,7 +47,6 @@
 @RequiresApi(Build.VERSION_CODES.M)
 internal class GraphicsLayerV23(
     ownerView: View,
-    override val ownerId: Long,
     private val canvasHolder: CanvasHolder = CanvasHolder(),
     private val canvasDrawScope: CanvasDrawScope = CanvasDrawScope()
 ) : GraphicsLayerImpl {
@@ -173,11 +172,20 @@
             renderNode.setAlpha(value)
         }
 
+    private var shouldManuallySetCenterPivot = false
+
     override var pivotOffset: Offset = Offset.Unspecified
         set(value) {
             field = value
-            renderNode.pivotX = value.x
-            renderNode.pivotY = value.y
+            if (value.isUnspecified) {
+                shouldManuallySetCenterPivot = true
+                renderNode.pivotX = size.width / 2f
+                renderNode.pivotY = size.height / 2f
+            } else {
+                shouldManuallySetCenterPivot = false
+                renderNode.pivotX = value.x
+                renderNode.pivotY = value.y
+            }
         }
 
     override var scaleX: Float = 1f
@@ -250,9 +258,20 @@
             applyClip()
         }
 
+    private var clipToBounds = false
+    private var clipToOutline = false
+
     private fun applyClip() {
-        renderNode.setClipToBounds(clip && !outlineIsProvided)
-        renderNode.setClipToOutline(clip && outlineIsProvided)
+        val newClipToBounds = clip && !outlineIsProvided
+        val newClipToOutline = clip && outlineIsProvided
+        if (newClipToBounds != clipToBounds) {
+            clipToBounds = newClipToBounds
+            renderNode.setClipToBounds(clipToBounds)
+        }
+        if (newClipToOutline != clipToOutline) {
+            clipToOutline = newClipToOutline
+            renderNode.setClipToOutline(newClipToOutline)
+        }
     }
 
     // API level 23 does not support RenderEffect so keep the field around for consistency
@@ -262,14 +281,15 @@
     // crash the compose application
     override var renderEffect: RenderEffect? = null
 
-    override fun setPosition(topLeft: IntOffset, size: IntSize) {
-        renderNode.setLeftTopRightBottom(
-            topLeft.x,
-            topLeft.y,
-            topLeft.x + size.width,
-            topLeft.y + size.height
-        )
-        this.size = size
+    override fun setPosition(x: Int, y: Int, size: IntSize) {
+        renderNode.setLeftTopRightBottom(x, y, x + size.width, y + size.height)
+        if (this.size != size) {
+            if (shouldManuallySetCenterPivot) {
+                renderNode.pivotX = size.width / 2f
+                renderNode.pivotY = size.height / 2f
+            }
+            this.size = size
+        }
     }
 
     override fun setOutline(outline: Outline?) {
diff --git a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV29.android.kt b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV29.android.kt
index a27f0a4..7a4e6b5 100644
--- a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV29.android.kt
+++ b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsLayerV29.android.kt
@@ -22,6 +22,8 @@
 import android.os.Build
 import androidx.annotation.RequiresApi
 import androidx.compose.ui.geometry.Offset
+import androidx.compose.ui.geometry.Size
+import androidx.compose.ui.geometry.isUnspecified
 import androidx.compose.ui.graphics.BlendMode
 import androidx.compose.ui.graphics.Canvas
 import androidx.compose.ui.graphics.CanvasHolder
@@ -31,12 +33,10 @@
 import androidx.compose.ui.graphics.asAndroidColorFilter
 import androidx.compose.ui.graphics.drawscope.CanvasDrawScope
 import androidx.compose.ui.graphics.drawscope.DrawScope
-import androidx.compose.ui.graphics.drawscope.draw
 import androidx.compose.ui.graphics.nativeCanvas
 import androidx.compose.ui.graphics.toAndroidBlendMode
 import androidx.compose.ui.graphics.toArgb
 import androidx.compose.ui.unit.Density
-import androidx.compose.ui.unit.IntOffset
 import androidx.compose.ui.unit.IntSize
 import androidx.compose.ui.unit.LayoutDirection
 import androidx.compose.ui.unit.toSize
@@ -46,13 +46,12 @@
  */
 @RequiresApi(Build.VERSION_CODES.Q)
 internal class GraphicsLayerV29(
-    override val ownerId: Long,
     private val canvasHolder: CanvasHolder = CanvasHolder(),
     private val canvasDrawScope: CanvasDrawScope = CanvasDrawScope()
 ) : GraphicsLayerImpl {
     private val renderNode: RenderNode = RenderNode("graphicsLayer")
 
-    private var size: IntSize = IntSize.Zero
+    private var size: Size = Size.Zero
     private var layerPaint: android.graphics.Paint? = null
     private var matrix: Matrix? = null
     private var outlineIsProvided = false
@@ -85,8 +84,12 @@
     override var pivotOffset: Offset = Offset.Unspecified
         set(value) {
             field = value
-            renderNode.pivotX = value.x
-            renderNode.pivotY = value.y
+            if (value.isUnspecified) {
+                renderNode.resetPivot()
+            } else {
+                renderNode.pivotX = value.x
+                renderNode.pivotY = value.y
+            }
         }
     override var scaleX: Float = 1f
         set(value) {
@@ -154,9 +157,20 @@
             applyClip()
         }
 
+    private var clipToBounds = false
+    private var clipToOutline = false
+
     private fun applyClip() {
-        renderNode.setClipToBounds(clip && !outlineIsProvided)
-        renderNode.setClipToOutline(clip && outlineIsProvided)
+        val newClipToBounds = clip && !outlineIsProvided
+        val newClipToOutline = clip && outlineIsProvided
+        if (newClipToBounds != clipToBounds) {
+            clipToBounds = newClipToBounds
+            renderNode.setClipToBounds(clipToBounds)
+        }
+        if (newClipToOutline != clipToOutline) {
+            clipToOutline = newClipToOutline
+            renderNode.setClipToOutline(newClipToOutline)
+        }
     }
 
     override var renderEffect: RenderEffect? = null
@@ -198,14 +212,9 @@
         }
     }
 
-    override fun setPosition(topLeft: IntOffset, size: IntSize) {
-        renderNode.setPosition(
-            topLeft.x,
-            topLeft.y,
-            topLeft.x + size.width,
-            topLeft.y + size.height
-        )
-        this.size = size
+    override fun setPosition(x: Int, y: Int, size: IntSize) {
+        renderNode.setPosition(x, y, x + size.width, y + size.height)
+        this.size = size.toSize()
     }
 
     override fun setOutline(outline: Outline?) {
@@ -224,14 +233,14 @@
     ) {
         val recordingCanvas = renderNode.beginRecording()
         canvasHolder.drawInto(recordingCanvas) {
-            canvasDrawScope.draw(
-                density,
-                layoutDirection,
-                this,
-                size.toSize(),
-                layer,
-                block
-            )
+            canvasDrawScope.drawContext.also {
+                it.density = density
+                it.layoutDirection = layoutDirection
+                it.graphicsLayer = layer
+                it.size = size
+                it.canvas = this
+            }
+            canvasDrawScope.block()
         }
         renderNode.endRecording()
         isInvalidated = false
diff --git a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsViewLayer.android.kt b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsViewLayer.android.kt
index 5c2cb02..2675ea0 100644
--- a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsViewLayer.android.kt
+++ b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/GraphicsViewLayer.android.kt
@@ -29,6 +29,7 @@
 import androidx.annotation.RequiresApi
 import androidx.compose.ui.geometry.Offset
 import androidx.compose.ui.geometry.Size
+import androidx.compose.ui.geometry.isUnspecified
 import androidx.compose.ui.graphics.BlendMode
 import androidx.compose.ui.graphics.CanvasHolder
 import androidx.compose.ui.graphics.Color
@@ -47,7 +48,6 @@
 import androidx.compose.ui.graphics.toArgb
 import androidx.compose.ui.graphics.toPorterDuffMode
 import androidx.compose.ui.unit.Density
-import androidx.compose.ui.unit.IntOffset
 import androidx.compose.ui.unit.IntSize
 import androidx.compose.ui.unit.LayoutDirection
 import androidx.compose.ui.unit.toSize
@@ -102,6 +102,10 @@
         this.parentLayer = parentLayer
     }
 
+    fun resetDrawBlock() {
+        drawBlock = DefaultDrawBlock
+    }
+
     init {
         setWillNotDraw(false) // we WILL draw
         this.clipBounds = null
@@ -155,7 +159,6 @@
 
 internal class GraphicsViewLayer(
     private val layerContainer: DrawChildContainer,
-    override val ownerId: Long,
     val canvasHolder: CanvasHolder = CanvasHolder(),
     canvasDrawScope: CanvasDrawScope = CanvasDrawScope()
 ) : GraphicsLayerImpl {
@@ -186,7 +189,8 @@
         viewLayer.clipBounds = null
     }
 
-    private var topLeft = IntOffset.Zero
+    private var x: Int = 0
+    private var y: Int = 0
     private var size = IntSize.Zero
     private var clipBoundsInvalidated = false
     override var isInvalidated: Boolean = true
@@ -254,11 +258,24 @@
             viewLayer.setAlpha(value)
         }
 
+    private var shouldManuallySetCenterPivot = false
+
     override var pivotOffset: Offset = Offset.Zero
         set(value) {
             field = value
-            viewLayer.pivotX = value.x
-            viewLayer.pivotY = value.y
+            if (value.isUnspecified) {
+                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
+                    ViewLayerVerificationHelper28.resetPivot(viewLayer)
+                } else {
+                    shouldManuallySetCenterPivot = true
+                    viewLayer.pivotX = size.width / 2f
+                    viewLayer.pivotY = size.height / 2f
+                }
+            } else {
+                shouldManuallySetCenterPivot = false
+                viewLayer.pivotX = value.x
+                viewLayer.pivotY = value.y
+            }
         }
     override var scaleX: Float = 1f
         set(value) {
@@ -342,23 +359,27 @@
             }
         }
 
-    override fun setPosition(topLeft: IntOffset, size: IntSize) {
-        if (this.topLeft.x != topLeft.x) {
-            viewLayer.offsetLeftAndRight(topLeft.x - this.topLeft.x)
-        }
-
-        if (this.topLeft.y != topLeft.y) {
-            viewLayer.offsetTopAndBottom(topLeft.y - this.topLeft.y)
-        }
-
+    override fun setPosition(x: Int, y: Int, size: IntSize) {
         if (this.size != size) {
             if (clip) {
                 clipBoundsInvalidated = true
             }
-            viewLayer.layout(topLeft.x, topLeft.y, topLeft.x + size.width, topLeft.y + size.height)
+            viewLayer.layout(x, y, x + size.width, y + size.height)
+            this.size = size
+            if (shouldManuallySetCenterPivot) {
+                viewLayer.pivotX = size.width / 2f
+                viewLayer.pivotY = size.height / 2f
+            }
+        } else {
+            if (this.x != x) {
+                viewLayer.offsetLeftAndRight(x - this.x)
+            }
+            if (this.y != y) {
+                viewLayer.offsetTopAndBottom(y - this.y)
+            }
         }
-        this.topLeft = topLeft
-        this.size = size
+        this.x = x
+        this.y = y
     }
 
     override fun setOutline(outline: Outline?) {
@@ -459,6 +480,12 @@
         layerContainer.removeViewInLayout(viewLayer)
     }
 
+    override fun onReused() {
+        viewLayer.resetDrawBlock()
+        // it was removed in discardDisplayList()
+        layerContainer.addView(viewLayer)
+    }
+
     companion object {
 
         val mayRenderInSoftware = !isLockHardwareCanvasAvailable()
@@ -498,6 +525,11 @@
     fun setOutlineSpotShadowColor(view: View, target: Int) {
         view.outlineSpotShadowColor = target
     }
+
+    @androidx.annotation.DoNotInline
+    fun resetPivot(view: View) {
+        view.resetPivot()
+    }
 }
 
 private object OutlineUtils {
diff --git a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/LayerManager.android.kt b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/LayerManager.android.kt
index 8b17f20..ce7621e 100644
--- a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/LayerManager.android.kt
+++ b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/LayerManager.android.kt
@@ -19,6 +19,8 @@
 import android.graphics.PixelFormat
 import android.media.ImageReader
 import android.os.Build
+import android.os.Build.VERSION.SDK_INT
+import android.os.Build.VERSION_CODES.M
 import android.os.Looper
 import android.os.Message
 import android.view.Surface
@@ -36,7 +38,8 @@
  */
 internal class LayerManager(val canvasHolder: CanvasHolder) {
 
-    private val layerSet = mutableScatterSetOf<GraphicsLayer>()
+    private val activeLayerSet = mutableScatterSetOf<GraphicsLayer>()
+    private val nonActiveLayerCache = WeakCache<GraphicsLayer>()
 
     /**
      * Create a placeholder ImageReader instance that we will use to issue a single draw call
@@ -48,12 +51,16 @@
     private var imageReader: ImageReader? = null
 
     private val handler = HandlerCompat.createAsync(Looper.getMainLooper()) {
-        persistLayers(layerSet)
+        persistLayers(activeLayerSet)
         true
     }
 
+    fun takeFromCache(ownerId: Long): GraphicsLayer? = nonActiveLayerCache.pop()?.also {
+        it.reuse(ownerId)
+    }
+
     fun persist(layer: GraphicsLayer) {
-        layerSet.add(layer)
+        activeLayerSet.add(layer)
         if (!handler.hasMessages(0)) {
             // we don't run persistLayers() synchronously in order to do less work as there
             // might be a lot of new layers created during one frame. however we also want
@@ -66,8 +73,11 @@
     }
 
     fun release(layer: GraphicsLayer) {
-        if (layerSet.remove(layer)) {
+        if (activeLayerSet.remove(layer)) {
             layer.discardDisplayList()
+            if (SDK_INT >= M) { // L throws during RenderThread when reusing the Views.
+                nonActiveLayerCache.push(layer)
+            }
         }
     }
 
@@ -125,7 +135,7 @@
      */
     fun updateLayerPersistence() {
         destroy()
-        persistLayers(layerSet)
+        persistLayers(activeLayerSet)
     }
 
     companion object {
diff --git a/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/WeakCache.android.kt b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/WeakCache.android.kt
new file mode 100644
index 0000000..e6d27c8
--- /dev/null
+++ b/compose/ui/ui-graphics/src/androidMain/kotlin/androidx/compose/ui/graphics/layer/WeakCache.android.kt
@@ -0,0 +1,77 @@
+/*
+ * Copyright 2021 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package androidx.compose.ui.graphics.layer
+
+import androidx.compose.runtime.collection.mutableVectorOf
+import java.lang.ref.Reference
+import java.lang.ref.ReferenceQueue
+import java.lang.ref.WeakReference
+
+// It is a copy from androidx.compose.ui.platform
+/**
+ * A simple collection that keeps values as [WeakReference]s.
+ * Elements are added with [push] and removed with [pop].
+ */
+internal class WeakCache<T> {
+    private val values = mutableVectorOf<Reference<T>>()
+    private val referenceQueue = ReferenceQueue<T>()
+
+    /**
+     * Add [element] to the collection as a [WeakReference]. It will be removed when
+     * garbage collected or from [pop].
+     */
+    fun push(element: T) {
+        clearWeakReferences()
+        values += WeakReference(element, referenceQueue)
+    }
+
+    /**
+     * Remove an element from the collection and return it. If no element is
+     * available, `null` is returned.
+     */
+    fun pop(): T? {
+        clearWeakReferences()
+
+        while (values.isNotEmpty()) {
+            val item = values.removeAt(values.lastIndex).get()
+            if (item != null) {
+                return item
+            }
+        }
+        return null
+    }
+
+    /**
+     * The number of elements currently in the collection. This may change between
+     * calls if the references have been garbage collected.
+     */
+    val size: Int
+        get() {
+            clearWeakReferences()
+            return values.size
+        }
+
+    private fun clearWeakReferences() {
+        do {
+            val item: Reference<out T>? = referenceQueue.poll()
+            if (item != null) {
+                @Suppress("UNCHECKED_CAST")
+                values.remove(item as Reference<T>)
+            }
+        } while (item != null)
+    }
+}
diff --git a/compose/ui/ui-graphics/src/commonMain/kotlin/androidx/compose/ui/graphics/Matrix.kt b/compose/ui/ui-graphics/src/commonMain/kotlin/androidx/compose/ui/graphics/Matrix.kt
index b3079b7..3c9d0f2 100644
--- a/compose/ui/ui-graphics/src/commonMain/kotlin/androidx/compose/ui/graphics/Matrix.kt
+++ b/compose/ui/ui-graphics/src/commonMain/kotlin/androidx/compose/ui/graphics/Matrix.kt
@@ -26,7 +26,19 @@
 import kotlin.math.min
 import kotlin.math.sin
 
-// TODO(mount): This class needs some optimization
+// NOTE: This class contains a number of tests like this:
+//
+//     `if (values.size < 16) return`
+//
+// These tests exist to give the AOT compiler a hint about the size of the array.
+// Their presence eliminates a large number of array bound checks. For instance,
+// in the isIdentity method, this eliminates half of the instructions and half
+// of the branches.
+//
+// These tests are not there to generate early returns (the test will always
+// fail), but only to influence code generation.
+//
+// DO NOT REMOVE THOSE TESTS.
 @kotlin.jvm.JvmInline
 value class Matrix(
     val values: FloatArray = floatArrayOf(
@@ -46,6 +58,9 @@
      * Does the 3D transform on [point] and returns the `x` and `y` values in an [Offset].
      */
     fun map(point: Offset): Offset {
+        // See top-level comment
+        if (values.size < 16) return point
+
         val x = point.x
         val y = point.y
         val z = this[0, 3] * x + this[1, 3] * y + this[3, 3]
@@ -93,6 +108,11 @@
      * Multiply this matrix by [m] and assign the result to this matrix.
      */
     operator fun timesAssign(m: Matrix) {
+        // See top-level comment
+        val v = values
+        if (v.size < 16) return
+        if (m.values.size < 16) return
+
         val v00 = dot(this, 0, m, 0)
         val v01 = dot(this, 0, m, 1)
         val v02 = dot(this, 0, m, 2)
@@ -109,22 +129,23 @@
         val v31 = dot(this, 3, m, 1)
         val v32 = dot(this, 3, m, 2)
         val v33 = dot(this, 3, m, 3)
-        this[0, 0] = v00
-        this[0, 1] = v01
-        this[0, 2] = v02
-        this[0, 3] = v03
-        this[1, 0] = v10
-        this[1, 1] = v11
-        this[1, 2] = v12
-        this[1, 3] = v13
-        this[2, 0] = v20
-        this[2, 1] = v21
-        this[2, 2] = v22
-        this[2, 3] = v23
-        this[3, 0] = v30
-        this[3, 1] = v31
-        this[3, 2] = v32
-        this[3, 3] = v33
+
+        v[ 0] = v00
+        v[ 1] = v01
+        v[ 2] = v02
+        v[ 3] = v03
+        v[ 4] = v10
+        v[ 5] = v11
+        v[ 6] = v12
+        v[ 7] = v13
+        v[ 8] = v20
+        v[ 9] = v21
+        v[10] = v22
+        v[11] = v23
+        v[12] = v30
+        v[13] = v31
+        v[14] = v32
+        v[15] = v33
     }
 
     override fun toString(): String {
@@ -140,6 +161,9 @@
      * Invert `this` Matrix.
      */
     fun invert() {
+        // See top-level comment
+        if (values.size < 16) return
+
         val a00 = this[0, 0]
         val a01 = this[0, 1]
         val a02 = this[0, 2]
@@ -156,6 +180,7 @@
         val a31 = this[3, 1]
         val a32 = this[3, 2]
         val a33 = this[3, 3]
+
         val b00 = a00 * a11 - a01 * a10
         val b01 = a00 * a12 - a02 * a10
         val b02 = a00 * a13 - a03 * a10
@@ -168,11 +193,12 @@
         val b09 = a21 * a32 - a22 * a31
         val b10 = a21 * a33 - a23 * a31
         val b11 = a22 * a33 - a23 * a32
-        val det =
-            (b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06)
+
+        val det = (b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06)
         if (det == 0.0f) {
             return
         }
+
         val invDet = 1.0f / det
         this[0, 0] = ((a11 * b11 - a12 * b10 + a13 * b09) * invDet)
         this[0, 1] = ((-a01 * b11 + a02 * b10 - a03 * b09) * invDet)
@@ -196,26 +222,64 @@
      * Resets the `this` to the identity matrix.
      */
     fun reset() {
-        for (c in 0..3) {
-            for (r in 0..3) {
-                this.set(r, c, if (c == r) 1f else 0f)
-            }
-        }
+        // See top-level comment
+        val v = values
+        if (v.size < 16) return
+        v[0] = 1f
+        v[1] = 0f
+        v[2] = 0f
+        v[3] = 0f
+        v[4] = 0f
+        v[5] = 1f
+        v[6] = 0f
+        v[7] = 0f
+        v[8] = 0f
+        v[9] = 0f
+        v[10] = 1f
+        v[11] = 0f
+        v[12] = 0f
+        v[13] = 0f
+        v[14] = 0f
+        v[15] = 1f
     }
 
     /** Sets the entire matrix to the matrix in [matrix]. */
     fun setFrom(matrix: Matrix) {
-        for (i in 0..15) {
-            values[i] = matrix.values[i]
-        }
+        val src = values
+        val dst = matrix.values
+
+        // See top-level comment
+        if (src.size < 16) return
+        if (dst.size < 16) return
+
+        src[ 0] = dst[ 0]
+        src[ 1] = dst[ 1]
+        src[ 2] = dst[ 2]
+        src[ 3] = dst[ 3]
+        src[ 4] = dst[ 4]
+        src[ 5] = dst[ 5]
+        src[ 6] = dst[ 6]
+        src[ 7] = dst[ 7]
+        src[ 8] = dst[ 8]
+        src[ 9] = dst[ 9]
+        src[10] = dst[10]
+        src[11] = dst[11]
+        src[12] = dst[12]
+        src[13] = dst[13]
+        src[14] = dst[14]
+        src[15] = dst[15]
     }
 
     /**
      * Applies a [degrees] rotation around X to `this`.
      */
     fun rotateX(degrees: Float) {
-        val c = cos(degrees * PI / 180.0).toFloat()
-        val s = sin(degrees * PI / 180.0).toFloat()
+        // See top-level comment
+        if (values.size < 16) return
+
+        val r = degrees * PI / 180.0
+        val s = sin(r).toFloat()
+        val c = cos(r).toFloat()
 
         val a01 = this[0, 1]
         val a02 = this[0, 2]
@@ -251,8 +315,12 @@
      * Applies a [degrees] rotation around Y to `this`.
      */
     fun rotateY(degrees: Float) {
-        val c = cos(degrees * PI / 180.0).toFloat()
-        val s = sin(degrees * PI / 180.0).toFloat()
+        // See top-level comment
+        if (values.size < 16) return
+
+        val r = degrees * PI / 180.0
+        val s = sin(r).toFloat()
+        val c = cos(r).toFloat()
 
         val a00 = this[0, 0]
         val a02 = this[0, 2]
@@ -288,8 +356,12 @@
      * Applies a [degrees] rotation around Z to `this`.
      */
     fun rotateZ(degrees: Float) {
-        val c = cos(degrees * PI / 180.0).toFloat()
-        val s = sin(degrees * PI / 180.0).toFloat()
+        // See top-level comment
+        if (values.size < 16) return
+
+        val r = degrees * PI / 180.0
+        val s = sin(r).toFloat()
+        val c = cos(r).toFloat()
 
         val a00 = this[0, 0]
         val a10 = this[1, 0]
@@ -323,6 +395,8 @@
 
     /** Scale this matrix by [x], [y], [z] */
     fun scale(x: Float = 1f, y: Float = 1f, z: Float = 1f) {
+        // See top-level comment
+        if (values.size < 16) return
         this[0, 0] *= x
         this[0, 1] *= x
         this[0, 2] *= x
@@ -339,6 +413,8 @@
 
     /** Translate this matrix by [x], [y], [z] */
     fun translate(x: Float = 0f, y: Float = 0f, z: Float = 0f) {
+        // See top-level comment
+        if (values.size < 16) return
         val t1 = this[0, 0] * x +
             this[1, 0] * y +
             this[2, 0] * z +
@@ -361,6 +437,124 @@
         this[3, 3] = t4
     }
 
+    /**
+     * Resets this matrix to a "TRS" (translation, rotation, scale) transform around a
+     * pivot point. The transform operations encoded in the matrix are the following,
+     * in this specific order:
+     * - A translation by -[pivotX], -[pivotY]
+     * - A translation by [translationX], [translationY], and [translationZ]
+     * - An X rotation by [rotationX]
+     * - A Y rotation by [rotationY]
+     * - A Z rotation by [rotationZ]
+     * - A scale by [scaleX] and [scaleY]
+     * - A translation by [pivotX], [pivotY]
+     *
+     * Calling this method is equivalent to the following code:
+     * ```
+     * val m: Matrix ...
+     * m.reset()
+     * m.translate(-pivotX, -pivotY)
+     * m *= Matrix().apply {
+     *     translate(translationX, translationY)
+     *     rotateX(rotationX)
+     *     rotateY(rotationY)
+     *     rotateZ(rotationZ)
+     *     scale(scaleX, scaleY)
+     * }
+     * m *= Matrix().apply { translate(pivotX, pivotY) }
+     * ```
+     */
+    fun resetToPivotedTransform(
+        pivotX: Float = 0f,
+        pivotY: Float = 0f,
+        translationX: Float = 0f,
+        translationY: Float = 0f,
+        translationZ: Float = 0f,
+        rotationX: Float = 0f,
+        rotationY: Float = 0f,
+        rotationZ: Float = 0f,
+        scaleX: Float = 1f,
+        scaleY: Float = 1f,
+        scaleZ: Float = 1f
+    ) {
+        // X
+        val rx = rotationX * PI / 180.0
+        val rsx = sin(rx).toFloat()
+        val rcx = cos(rx).toFloat()
+
+        var v11 = rcx
+        var v12 = rsx
+
+        var v21 = -rsx
+        var v22 = rcx
+
+        val v31 = translationY * rcx - translationZ * rsx
+        var v32 = translationY * rsx + translationZ * rcx
+
+        // Y
+        val ry = rotationY * PI / 180.0
+        val rsy = sin(ry).toFloat()
+        val rcy = cos(ry).toFloat()
+
+        var v00 = rcy
+        var v02 = -rsy
+
+        var v10 = v12 * rsy
+        v12 *= rcy
+
+        var v20 = v22 * rsy
+        v22 *= rcy
+
+        val v30 = translationX * rcy + v32 * rsy
+        v32 = -translationX * rsy + v32 * rcy
+
+        // Z
+        val rz = rotationZ * PI / 180.0
+        val rsz = sin(rz).toFloat()
+        val rcz = cos(rz).toFloat()
+
+        val a10 = v10
+        v10 = -rsz * v00 + rcz * v10
+        v00 = rcz * v00 + rsz * a10
+
+        var v01 = rsz * v11
+        v11 *= rcz
+
+        val a12 = v12
+        v12 = -rsz * v02 + rcz * a12
+        v02 = rcz * v02 + rsz * a12
+
+        v00 *= scaleX
+        v01 *= scaleX
+        v02 *= scaleX
+        v10 *= scaleY
+        v11 *= scaleY
+        v12 *= scaleY
+        v20 *= scaleZ
+        v21 *= scaleZ
+        v22 *= scaleZ
+
+        // See top-level comment
+        if (values.size < 16) return
+
+        this[0, 0] = v00
+        this[0, 1] = v01
+        this[0, 2] = v02
+        this[0, 3] = 0f
+        this[1, 0] = v10
+        this[1, 1] = v11
+        this[1, 2] = v12
+        this[1, 3] = 0f
+        this[2, 0] = v20
+        this[2, 1] = v21
+        this[2, 2] = v22
+        this[2, 3] = 0f
+        this[3, 0] = -pivotX * v00 - pivotY * v10 + v30 + pivotX
+        this[3, 1] = -pivotX * v01 - pivotY * v11 + v31 + pivotY
+        this[3, 2] = -pivotX * v02 - pivotY * v12 + v32
+        this[3, 3] = 1f
+    }
+
     companion object {
         /**
          * Index of the flattened array that represents the scale factor along the X axis
@@ -419,7 +613,7 @@
     }
 }
 
-private fun dot(m1: Matrix, row: Int, m2: Matrix, column: Int): Float {
+private inline fun dot(m1: Matrix, row: Int, m2: Matrix, column: Int): Float {
     return m1[row, 0] * m2[0, column] +
         m1[row, 1] * m2[1, column] +
         m1[row, 2] * m2[2, column] +
@@ -428,13 +622,23 @@
 
 /** Whether the given matrix is the identity matrix. */
 fun Matrix.isIdentity(): Boolean {
-    for (row in 0..3) {
-        for (column in 0..3) {
-            val expected = if (row == column) 1f else 0f
-            if (this[row, column] != expected) {
-                return false
-            }
-        }
-    }
-    return true
+    // See top-level comment
+    val v = values
+    if (v.size < 16) return false
+    return v[0] == 1f &&
+        v[1] == 0f &&
+        v[2] == 0f &&
+        v[3] == 0f &&
+        v[4] == 0f &&
+        v[5] == 1f &&
+        v[6] == 0f &&
+        v[7] == 0f &&
+        v[8] == 0f &&
+        v[9] == 0f &&
+        v[10] == 1f &&
+        v[11] == 0f &&
+        v[12] == 0f &&
+        v[13] == 0f &&
+        v[14] == 0f &&
+        v[15] == 1f
 }
diff --git a/compose/ui/ui-graphics/src/commonTest/kotlin/androidx/compose/ui/graphics/MatrixTest.kt b/compose/ui/ui-graphics/src/commonTest/kotlin/androidx/compose/ui/graphics/MatrixTest.kt
index a146a65..a4ffa4f 100644
--- a/compose/ui/ui-graphics/src/commonTest/kotlin/androidx/compose/ui/graphics/MatrixTest.kt
+++ b/compose/ui/ui-graphics/src/commonTest/kotlin/androidx/compose/ui/graphics/MatrixTest.kt
@@ -53,6 +53,52 @@
     }
 
     @Test
+    fun resetToPivotedTransform() {
+        val matrix = Matrix()
+        matrix.translate(5f)
+        matrix.resetToPivotedTransform()
+        assertTrue(matrix.isIdentity())
+
+        matrix.values.fill(2f)
+        matrix.resetToPivotedTransform()
+        assertTrue(matrix.isIdentity())
+
+        val px = 64.0f
+        val py = 32.0f
+        val tx = 200.0f
+        val ty = 300.0f
+        val tz = 1.0f
+        val rx = 15.0f
+        val ry = 25.0f
+        val rz = 35.0f
+        val sx = 1.2f
+        val sy = 1.4f
+        val sz = 1.1f
+
+        matrix.resetToPivotedTransform(
+            px, py,
+            tx, ty, tz,
+            rx, ry, rz,
+            sx, sy, sz
+        )
+
+        val matrix2 = Matrix()
+        matrix2.translate(-px, -py)
+        matrix2 *= Matrix().apply {
+            translate(tx, ty, tz)
+            rotateX(rx)
+            rotateY(ry)
+            rotateZ(rz)
+            scale(sx, sy, sz)
+        }
+        matrix2 *= Matrix().apply {
+            translate(px, py)
+        }
+
+        assertMatricesNearlyEqual(matrix, matrix2)
+    }
+
+    @Test
     fun mapPoint() {
         val matrix = Matrix()
         matrix.rotateZ(45f)
@@ -273,5 +319,13 @@
             }
             return true
         }
+
+        private fun assertMatricesNearlyEqual(m1: Matrix, m2: Matrix, tolerance: Float = 1e-4f) {
+            val v1 = m1.values
+            val v2 = m2.values
+            for (i in 0..15) {
+                assertEquals(v2[i], v1[i], tolerance)
+            }
+        }
     }
 }
diff --git a/compose/ui/ui-inspection/generate-packages/compose_packages_list.txt b/compose/ui/ui-inspection/generate-packages/compose_packages_list.txt
index 36c9a44..85ba2ed 100644
--- a/compose/ui/ui-inspection/generate-packages/compose_packages_list.txt
+++ b/compose/ui/ui-inspection/generate-packages/compose_packages_list.txt
@@ -51,4 +51,9 @@
 androidx.compose.ui.util
 androidx.compose.ui.viewinterop
 androidx.compose.ui.window
-androidx.navigation.compose
\ No newline at end of file
+androidx.navigation.compose
+androidx.wear.compose.foundation
+androidx.wear.compose.material
+androidx.wear.compose.material3
+androidx.wear.compose.materialcore
+androidx.wear.compose.navigation
diff --git a/compose/ui/ui-inspection/src/main/java/androidx/compose/ui/inspection/inspector/PackageHashes.kt b/compose/ui/ui-inspection/src/main/java/androidx/compose/ui/inspection/inspector/PackageHashes.kt
index 6bdbd8a..5f903e4 100644
--- a/compose/ui/ui-inspection/src/main/java/androidx/compose/ui/inspection/inspector/PackageHashes.kt
+++ b/compose/ui/ui-inspection/src/main/java/androidx/compose/ui/inspection/inspector/PackageHashes.kt
@@ -66,4 +66,9 @@
     packageNameHash("androidx.compose.ui.viewinterop"),
     packageNameHash("androidx.compose.ui.window"),
     packageNameHash("androidx.navigation.compose"),
+    packageNameHash("androidx.wear.compose.foundation"),
+    packageNameHash("androidx.wear.compose.material"),
+    packageNameHash("androidx.wear.compose.material3"),
+    packageNameHash("androidx.wear.compose.materialcore"),
+    packageNameHash("androidx.wear.compose.navigation"),
 )
diff --git a/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/DrawingPrebuiltGraphicsLayerTest.kt b/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/DrawingPrebuiltGraphicsLayerTest.kt
index 3b0cfc8..64efe47 100644
--- a/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/DrawingPrebuiltGraphicsLayerTest.kt
+++ b/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/DrawingPrebuiltGraphicsLayerTest.kt
@@ -380,6 +380,41 @@
             .assertPixels(expectedSize) { Color.Red.copy(alpha = 0.5f).compositeOver(Color.White) }
     }
 
+    @Test
+    fun invalidatingNotPlacedAnymoreChildIsNotCorruptingTheLayerContent() {
+        var shouldPlace by mutableStateOf(true)
+        var color by mutableStateOf(Color.Red)
+        rule.setContent {
+            Column {
+                val layer = obtainLayer()
+                Canvas(
+                    Modifier
+                        .layout { measurable, _ ->
+                            val placeable = measurable.measure(Constraints.fixed(size, size))
+                            layout(placeable.width, placeable.height) {
+                                if (shouldPlace) {
+                                    placeable.placeWithLayer(0, 0, layer)
+                                }
+                            }
+                        }
+                ) {
+                    drawRect(color)
+                }
+                LayerDrawingBox()
+            }
+        }
+
+        rule.runOnIdle {
+            shouldPlace = false
+            // changing the color shouldn't affect the layer as we don't place with it anymore
+            color = Color.Green
+        }
+
+        rule.onNodeWithTag(LayerDrawingBoxTag)
+            .captureToImage()
+            .assertPixels(expectedSize) { Color.Red }
+    }
+
     @Composable
     private fun ColoredBox(modifier: Modifier = Modifier, color: () -> Color = { Color.Red }) {
         Canvas(
diff --git a/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/GraphicsLayerTest.kt b/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/GraphicsLayerTest.kt
index f9a8259..f21fef5 100644
--- a/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/GraphicsLayerTest.kt
+++ b/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/draw/GraphicsLayerTest.kt
@@ -1942,6 +1942,27 @@
     }
 
     @Test
+    fun centerPivotIsCorrectlyCalculatedForOddSize() {
+        var bounds: Rect = Rect.Zero
+        rule.setContent {
+            CompositionLocalProvider(LocalDensity provides Density(1f)) {
+                Box(
+                    modifier = Modifier
+                        .size(9.dp)
+                        .rotate(180f)
+                        .onPlaced {
+                            bounds = it.boundsInRoot()
+                        }
+                )
+            }
+        }
+
+        rule.runOnIdle {
+            assertThat(bounds).isEqualTo(Rect(0f, 0f, 9f, 9f))
+        }
+    }
+
+    @Test
     fun customPivotIsCalculatedCorrectlyWhenWeCalculateBoundsBeforeLayerWasFirstDrawn() {
         var bounds: Rect = Rect.Zero
         rule.setContent {
diff --git a/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/layout/RulerTest.kt b/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/layout/RulerTest.kt
index d4e5cb5..f623757 100644
--- a/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/layout/RulerTest.kt
+++ b/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/layout/RulerTest.kt
@@ -644,7 +644,7 @@
             rule.activity.window.decorView.invalidate()
         }
         assertThat(rulerChanged.await(1, TimeUnit.SECONDS)).isTrue()
-        rule.runOnUiThread {
+        rule.runOnIdle {
             assertThat(rulerValue).isWithin(0.01f).of(-100f - rootX)
         }
     }
diff --git a/compose/ui/ui/src/androidMain/kotlin/androidx/compose/ui/platform/GraphicsLayerOwnerLayer.android.kt b/compose/ui/ui/src/androidMain/kotlin/androidx/compose/ui/platform/GraphicsLayerOwnerLayer.android.kt
index a0b9e32..a4ae829 100644
--- a/compose/ui/ui/src/androidMain/kotlin/androidx/compose/ui/platform/GraphicsLayerOwnerLayer.android.kt
+++ b/compose/ui/ui/src/androidMain/kotlin/androidx/compose/ui/platform/GraphicsLayerOwnerLayer.android.kt
@@ -19,6 +19,7 @@
 import android.os.Build
 import androidx.compose.ui.geometry.MutableRect
 import androidx.compose.ui.geometry.Offset
+import androidx.compose.ui.geometry.center
 import androidx.compose.ui.geometry.isUnspecified
 import androidx.compose.ui.graphics.Canvas
 import androidx.compose.ui.graphics.CompositingStrategy as OldCompositingStrategy
@@ -30,7 +31,7 @@
 import androidx.compose.ui.graphics.ReusableGraphicsLayerScope
 import androidx.compose.ui.graphics.TransformOrigin
 import androidx.compose.ui.graphics.drawscope.CanvasDrawScope
-import androidx.compose.ui.graphics.drawscope.draw
+import androidx.compose.ui.graphics.drawscope.DrawScope
 import androidx.compose.ui.graphics.drawscope.drawIntoCanvas
 import androidx.compose.ui.graphics.layer.CompositingStrategy
 import androidx.compose.ui.graphics.layer.GraphicsLayer
@@ -42,8 +43,6 @@
 import androidx.compose.ui.unit.IntOffset
 import androidx.compose.ui.unit.IntSize
 import androidx.compose.ui.unit.LayoutDirection
-import androidx.compose.ui.unit.center
-import androidx.compose.ui.unit.toOffset
 import androidx.compose.ui.unit.toSize
 
 internal class GraphicsLayerOwnerLayer(
@@ -134,10 +133,14 @@
             graphicsLayer.cameraDistance = scope.cameraDistance
         }
         if (maybeChangedFields and Fields.TransformOrigin != 0) {
-            graphicsLayer.pivotOffset = Offset(
-                transformOrigin.pivotFractionX * size.width,
-                transformOrigin.pivotFractionY * size.height
-            )
+            if (transformOrigin == TransformOrigin.Center) {
+                graphicsLayer.pivotOffset = Offset.Unspecified
+            } else {
+                graphicsLayer.pivotOffset = Offset(
+                    transformOrigin.pivotFractionX * size.width,
+                    transformOrigin.pivotFractionY * size.height
+                )
+            }
         }
         if (maybeChangedFields and Fields.Clip != 0) {
             graphicsLayer.clip = scope.clip
@@ -220,29 +223,32 @@
     override fun drawLayer(canvas: Canvas, parentLayer: GraphicsLayer?) {
         updateDisplayList()
         drawnWithEnabledZ = graphicsLayer.shadowElevation > 0
-        scope.draw(density, layoutDirection, canvas, size.toSize(), parentLayer) {
-            drawLayer(graphicsLayer)
+        scope.drawContext.also {
+            it.canvas = canvas
+            it.graphicsLayer = parentLayer
         }
+        scope.drawLayer(graphicsLayer)
     }
 
     override fun updateDisplayList() {
         if (isDirty) {
-            if (graphicsLayer.size != size) {
+            if (transformOrigin != TransformOrigin.Center && graphicsLayer.size != size) {
                 graphicsLayer.pivotOffset = Offset(
                     transformOrigin.pivotFractionX * size.width,
                     transformOrigin.pivotFractionY * size.height
                 )
-                updateOutline()
             }
-            graphicsLayer.record(density, layoutDirection, size) {
-                drawIntoCanvas { canvas ->
-                    drawBlock?.let { it(canvas, drawContext.graphicsLayer) }
-                }
-            }
+            graphicsLayer.record(density, layoutDirection, size, recordLambda)
             isDirty = false
         }
     }
 
+    private val recordLambda: DrawScope.() -> Unit = {
+        drawIntoCanvas { canvas ->
+            this@GraphicsLayerOwnerLayer.drawBlock?.let { it(canvas, drawContext.graphicsLayer) }
+        }
+    }
+
     override fun invalidate() {
         if (!isDirty && !isDestroyed) {
             ownerView.invalidate()
@@ -289,7 +295,6 @@
         val context = requireNotNull(context) {
             "currently reuse is only supported when we manage the layer lifecycle"
         }
-        require(graphicsLayer.isReleased) { "layer should have been released before reuse" }
 
         // recreate a layer
         graphicsLayer = context.createGraphicsLayer()
@@ -340,25 +345,19 @@
     }
 
     private fun updateMatrix() = with(graphicsLayer) {
-        val pivot = if (pivotOffset.isUnspecified) {
-            this@GraphicsLayerOwnerLayer.size.center.toOffset()
+        val (x, y) = if (pivotOffset.isUnspecified) {
+            this@GraphicsLayerOwnerLayer.size.toSize().center
         } else {
             pivotOffset
         }
 
-        matrixCache.reset()
-        matrixCache *= Matrix().apply {
-            translate(x = -pivot.x, y = -pivot.y)
-        }
-        matrixCache *= Matrix().apply {
-            translate(translationX, translationY)
-            rotateX(rotationX)
-            rotateY(rotationY)
-            rotateZ(rotationZ)
-            scale(scaleX, scaleY)
-        }
-        matrixCache *= Matrix().apply {
-            translate(x = pivot.x, y = pivot.y)
-        }
+        matrixCache.resetToPivotedTransform(
+            x, y,
+            translationX, translationY, 1.0f,
+            rotationX,
+            rotationY,
+            rotationZ,
+            scaleX, scaleY
+        )
     }
 }
diff --git a/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNode.kt b/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNode.kt
index 87b82bb..16bd1ca 100644
--- a/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNode.kt
+++ b/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNode.kt
@@ -1431,13 +1431,6 @@
         if (isAttached) {
             invalidateSemantics()
         }
-        releaseLayers()
-    }
-
-    private fun releaseLayers() {
-        forEachCoordinatorIncludingInner {
-            it.releaseLayer()
-        }
     }
 
     override fun onRelease() {
diff --git a/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNodeLayoutDelegate.kt b/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNodeLayoutDelegate.kt
index 356324c..1d1c3d9 100644
--- a/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNodeLayoutDelegate.kt
+++ b/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/node/LayoutNodeLayoutDelegate.kt
@@ -498,6 +498,10 @@
         private fun markSubtreeAsNotPlaced() {
             if (isPlaced) {
                 isPlaced = false
+                layoutNode.forEachCoordinatorIncludingInner {
+                    // nodes are not placed with a layer anymore, so the layers should be released
+                    it.releaseLayer()
+                }
                 forEachChildDelegate {
                     it.markSubtreeAsNotPlaced()
                 }
diff --git a/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/CallsManagerTest.kt b/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/CallsManagerTest.kt
index c18055a..0c6f8f2 100644
--- a/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/CallsManagerTest.kt
+++ b/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/CallsManagerTest.kt
@@ -110,7 +110,7 @@
 
             mCallsManager.registerAppWithTelecom(CallsManager.CAPABILITY_BASELINE)
             val account = mCallsManager.getBuiltPhoneAccount()!!
-
+            assertNotNull(account.extras)
             if (Utils.hasPlatformV2Apis()) {
                 assertTrue(
                     Utils.hasCapability(
diff --git a/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/E2ECallExtensionExtrasTests.kt b/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/E2ECallExtensionExtrasTests.kt
index aaf25d4..0bed35a 100644
--- a/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/E2ECallExtensionExtrasTests.kt
+++ b/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/E2ECallExtensionExtrasTests.kt
@@ -42,6 +42,7 @@
 import org.junit.Assert.assertEquals
 import org.junit.Assert.assertTrue
 import org.junit.Before
+import org.junit.Ignore
 import org.junit.Rule
 import org.junit.Test
 import org.junit.runner.RunWith
@@ -100,6 +101,7 @@
     @SdkSuppress(minSdkVersion = Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
     @LargeTest
     @Test(timeout = 10000)
+    @Ignore //  b/327695134
     fun testCapabilityExchangeIncoming_V2() {
         setUpV2TestWithExtensions()
         addAndVerifyCallExtensionTypeE2E(TestUtils.INCOMING_CALL_ATTRIBUTES)
@@ -113,6 +115,7 @@
     @SdkSuppress(minSdkVersion = Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
     @LargeTest
     @Test(timeout = 10000)
+    @Ignore //  b/327695134
     fun testCapabilityExchangeOutgoing_V2() {
         setUpV2TestWithExtensions()
         addAndVerifyCallExtensionTypeE2E(TestUtils.OUTGOING_CALL_ATTRIBUTES)
@@ -130,6 +133,7 @@
      */
     @LargeTest
     @Test(timeout = 10000)
+    @Ignore //  b/327695134
     fun testCapabilityExchangeIncoming_BackwardsCompat() {
         setUpBackwardsCompatTest()
         addAndVerifyCallExtensionTypeE2E(
@@ -144,6 +148,7 @@
      */
     @LargeTest
     @Test(timeout = 10000)
+    @Ignore //  b/327695134
     fun testCapabilityExchangeOutgoing_BackwardsCompat() {
         setUpBackwardsCompatTest()
         addAndVerifyCallExtensionTypeE2E(
diff --git a/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/InCallServiceCompatTest.kt b/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/InCallServiceCompatTest.kt
index 7cdb3fc..e5659c7 100644
--- a/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/InCallServiceCompatTest.kt
+++ b/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/InCallServiceCompatTest.kt
@@ -41,6 +41,7 @@
 import org.junit.After
 import org.junit.Assert
 import org.junit.Before
+import org.junit.Ignore
 import org.junit.Rule
 import org.junit.Test
 import org.junit.runner.RunWith
@@ -97,6 +98,7 @@
      */
     @LargeTest
     @Test(timeout = 10000)
+    @Ignore //  b/343742088
     fun testResolveCallExtension_Extra() {
         setUpBackwardsCompatTest()
         val voipApiExtra = Pair(CallsManager.EXTRA_VOIP_API_VERSION, true)
@@ -122,6 +124,7 @@
      */
     @LargeTest
     @Test(timeout = 10000)
+    @Ignore //  b/343742088
     fun testResolveCallExtension_CapabilityExchange() {
         // Add EXTRA_VOIP_BACKWARDS_COMPATIBILITY_SUPPORTED for pre-U testing
         val backwardsCompatExtra = configureCapabilityExchangeTypeTest()
@@ -153,6 +156,7 @@
      */
     @LargeTest
     @Test(timeout = 10000)
+    @Ignore //  b/343742088
     fun testResolveCallExtension_TransactionalOpsNotSupported() {
         // Phone accounts that don't use the v2 APIs don't support transactional ops.
         setUpBackwardsCompatTest()
diff --git a/core/core-telecom/src/main/java/androidx/core/telecom/CallsManager.kt b/core/core-telecom/src/main/java/androidx/core/telecom/CallsManager.kt
index 43d84f9..d6b6333 100644
--- a/core/core-telecom/src/main/java/androidx/core/telecom/CallsManager.kt
+++ b/core/core-telecom/src/main/java/androidx/core/telecom/CallsManager.kt
@@ -19,6 +19,7 @@
 import android.content.ComponentName
 import android.content.Context
 import android.os.Build.VERSION_CODES
+import android.os.Bundle
 import android.os.OutcomeReceiver
 import android.os.Process
 import android.telecom.CallControl
@@ -222,6 +223,8 @@
 
         // remap and set capabilities
         phoneAccountBuilder.setCapabilities(remapJetpackCapsToPlatformCaps(capabilities))
+        // see b/343674176. Some OEMs expect the PhoneAccount.getExtras() to be non-null
+        phoneAccountBuilder.setExtras(Bundle())
 
         // build and register the PhoneAccount via the Platform API
         mPhoneAccount = phoneAccountBuilder.build()
diff --git a/credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/CreatePublicKeyCredential/PublicKeyCredentialControllerUtility.kt b/credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/CreatePublicKeyCredential/PublicKeyCredentialControllerUtility.kt
index e1eb564..41fc20a 100644
--- a/credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/CreatePublicKeyCredential/PublicKeyCredentialControllerUtility.kt
+++ b/credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/CreatePublicKeyCredential/PublicKeyCredentialControllerUtility.kt
@@ -295,7 +295,7 @@
           // does not change its error message, but is the only viable solution
           // because there's no other differentiator.
           if (
-            code == ErrorCode.CONSTRAINT_ERR && msg?.contains("Unable to get sync account") == true
+            code == ErrorCode.NOT_ALLOWED_ERR && msg?.contains("Unable to get sync account") == true
           ) {
             exception =
               CreateCredentialCancellationException(
@@ -328,7 +328,7 @@
         // does not change its error message, but is the only viable solution
         // because there's no other differentiator.
         if (
-          code == ErrorCode.CONSTRAINT_ERR && msg?.contains("Unable to get sync account") == true
+          code == ErrorCode.NOT_ALLOWED_ERR && msg?.contains("Unable to get sync account") == true
         ) {
           exception =
             GetCredentialCancellationException("Passkey retrieval was cancelled by the user.")
diff --git a/customview/customview-poolingcontainer/src/androidTest/kotlin/androidx/customview/poolingcontainer/PoolingContainerTest.kt b/customview/customview-poolingcontainer/src/androidTest/kotlin/androidx/customview/poolingcontainer/PoolingContainerTest.kt
index 3b4f2aa..fff3b8f 100644
--- a/customview/customview-poolingcontainer/src/androidTest/kotlin/androidx/customview/poolingcontainer/PoolingContainerTest.kt
+++ b/customview/customview-poolingcontainer/src/androidTest/kotlin/androidx/customview/poolingcontainer/PoolingContainerTest.kt
@@ -47,9 +47,7 @@
     fun listenerIsCalledExactlyOnce() {
         val view = View(InstrumentationRegistry.getInstrumentation().context)
         var callbacks = 0
-        view.addPoolingContainerListener {
-            callbacks++
-        }
+        view.addPoolingContainerListener { callbacks++ }
         view.callPoolingContainerOnRelease()
         assertThat(callbacks).isEqualTo(1)
     }
@@ -58,9 +56,7 @@
     fun listenerRemoved_notCalled() {
         val view = View(InstrumentationRegistry.getInstrumentation().context)
         var callbacks = 0
-        val listener = PoolingContainerListener {
-            callbacks++
-        }
+        val listener = PoolingContainerListener { callbacks++ }
         view.addPoolingContainerListener(listener)
         view.removePoolingContainerListener(listener)
         view.callPoolingContainerOnRelease()
@@ -81,36 +77,33 @@
         val secondLevelParent2 =
             LinearLayout(InstrumentationRegistry.getInstrumentation().context).also {
                 topLevelParent.addView(it)
-                it.addPoolingContainerListener {
-                    callbacks[0]++
-                }
+                it.addPoolingContainerListener { callbacks[0]++ }
             }
-        val secondLevelView = View(InstrumentationRegistry.getInstrumentation().context).also {
-            topLevelParent.addView(it)
-            it.addPoolingContainerListener {
-                callbacks[1]++
+        val secondLevelView =
+            View(InstrumentationRegistry.getInstrumentation().context).also {
+                topLevelParent.addView(it)
+                it.addPoolingContainerListener { callbacks[1]++ }
             }
-        }
-        val thirdLevelView1 = View(InstrumentationRegistry.getInstrumentation().context).also {
-            secondLevelParent1.addView(it)
-            it.addPoolingContainerListener {
-                callbacks[2]++
+        val thirdLevelView1 =
+            View(InstrumentationRegistry.getInstrumentation().context).also {
+                secondLevelParent1.addView(it)
+                it.addPoolingContainerListener { callbacks[2]++ }
             }
-        }
-        val thirdLevelView2 = View(InstrumentationRegistry.getInstrumentation().context).also {
-            secondLevelParent2.addView(it)
-            it.addPoolingContainerListener {
-                callbacks[3]++
+        val thirdLevelView2 =
+            View(InstrumentationRegistry.getInstrumentation().context).also {
+                secondLevelParent2.addView(it)
+                it.addPoolingContainerListener { callbacks[3]++ }
             }
-        }
 
         assertThat(topLevelParent.isWithinPoolingContainer).isFalse()
         listOf(
-            secondLevelParent1, secondLevelParent2, secondLevelView, thirdLevelView1,
-            thirdLevelView2
-        ).forEach {
-            assertThat(it.isWithinPoolingContainer).isTrue()
-        }
+                secondLevelParent1,
+                secondLevelParent2,
+                secondLevelView,
+                thirdLevelView1,
+                thirdLevelView2
+            )
+            .forEach { assertThat(it.isWithinPoolingContainer).isTrue() }
 
         topLevelParent.callPoolingContainerOnRelease()
         // All listeners called exactly once
@@ -121,9 +114,8 @@
     // While this test looks trivial, the implementation is more than just a boolean setter
     fun isPoolingContainerTest() {
         val view = LinearLayout(InstrumentationRegistry.getInstrumentation().context)
-        val child = View(InstrumentationRegistry.getInstrumentation().context).also {
-            view.addView(it)
-        }
+        val child =
+            View(InstrumentationRegistry.getInstrumentation().context).also { view.addView(it) }
 
         assertThat(view.isPoolingContainer).isFalse()
         assertThat(child.isPoolingContainer).isFalse()
@@ -136,9 +128,8 @@
     @Test
     fun isWithinPoolingContainerTest() {
         val parent = LinearLayout(InstrumentationRegistry.getInstrumentation().context)
-        val child = View(InstrumentationRegistry.getInstrumentation().context).also {
-            parent.addView(it)
-        }
+        val child =
+            View(InstrumentationRegistry.getInstrumentation().context).also { parent.addView(it) }
 
         assertThat(parent.isWithinPoolingContainer).isFalse()
         assertThat(child.isWithinPoolingContainer).isFalse()
@@ -157,13 +148,9 @@
         val callbacks = intArrayOf(0, 0)
         val view = View(InstrumentationRegistry.getInstrumentation().context)
 
-        val listener1 = PoolingContainerListener {
-            callbacks[0]++
-        }
+        val listener1 = PoolingContainerListener { callbacks[0]++ }
         view.addPoolingContainerListener(listener1)
-        view.addPoolingContainerListener {
-            callbacks[1]++
-        }
+        view.addPoolingContainerListener { callbacks[1]++ }
 
         view.callPoolingContainerOnRelease()
         assertThat(callbacks).isEqualTo(intArrayOf(1, 1))
@@ -178,21 +165,23 @@
         val callbacks = intArrayOf(0, 0, 0)
 
         val view = View(InstrumentationRegistry.getInstrumentation().context)
-        view.addPoolingContainerListener(object : PoolingContainerListener {
-            override fun onRelease() {
-                callbacks[0]++
-                view.removePoolingContainerListener(this)
+        view.addPoolingContainerListener(
+            object : PoolingContainerListener {
+                override fun onRelease() {
+                    callbacks[0]++
+                    view.removePoolingContainerListener(this)
+                }
             }
-        })
-        view.addPoolingContainerListener {
-            callbacks[1]++
-        }
-        view.addPoolingContainerListener(object : PoolingContainerListener {
-            override fun onRelease() {
-                callbacks[2]++
-                view.removePoolingContainerListener(this)
+        )
+        view.addPoolingContainerListener { callbacks[1]++ }
+        view.addPoolingContainerListener(
+            object : PoolingContainerListener {
+                override fun onRelease() {
+                    callbacks[2]++
+                    view.removePoolingContainerListener(this)
+                }
             }
-        })
+        )
 
         view.callPoolingContainerOnRelease()
         assertThat(callbacks).isEqualTo(intArrayOf(1, 1, 1))
diff --git a/customview/customview-poolingcontainer/src/main/java/androidx/customview/poolingcontainer/PoolingContainer.kt b/customview/customview-poolingcontainer/src/main/java/androidx/customview/poolingcontainer/PoolingContainer.kt
index 054c310..39acc48 100644
--- a/customview/customview-poolingcontainer/src/main/java/androidx/customview/poolingcontainer/PoolingContainer.kt
+++ b/customview/customview-poolingcontainer/src/main/java/androidx/customview/poolingcontainer/PoolingContainer.kt
@@ -1,4 +1,5 @@
 @file:JvmName("PoolingContainer")
+
 /*
  * Copyright 2021 The Android Open Source Project
  *
@@ -31,19 +32,18 @@
  *
  * This callback is not necessarily triggered if the pooling container is disassociating the View
  * from a particular piece of data (that is, it is *not* an "unbind listener"). It is intended for
- * expensive resources that need to be cached across data items, but need a signal to be
- * disposed of.
+ * expensive resources that need to be cached across data items, but need a signal to be disposed
+ * of.
  */
 fun interface PoolingContainerListener {
     /**
      * Signals that this view should dispose any resources it may be holding onto, because its
      * container is either discarding the View or has been removed from the hierarchy itself.
      *
-     * Note: This may be called multiple times. A call to this method does *not* mean the View
-     * will not later be reattached.
+     * Note: This may be called multiple times. A call to this method does *not* mean the View will
+     * not later be reattached.
      */
-    @UiThread
-    fun onRelease()
+    @UiThread fun onRelease()
 }
 
 /**
@@ -56,9 +56,7 @@
     this.poolingContainerListenerHolder.addListener(listener)
 }
 
-/**
- * Remove a callback that was previously added by [addPoolingContainerListener]
- */
+/** Remove a callback that was previously added by [addPoolingContainerListener] */
 @SuppressLint("ExecutorRegistration") // This is a UI thread callback
 fun View.removePoolingContainerListener(listener: PoolingContainerListener) {
     this.poolingContainerListenerHolder.removeListener(listener)
@@ -67,10 +65,10 @@
 /**
  * Whether this View is a container that manages the lifecycle of its child Views.
  *
- * Any View that sets this to `true` must call [callPoolingContainerOnRelease] on child Views
- * before they are discarded and may possibly not be used in the future. This includes when the
- * view itself is detached from the window, unless it is being held for possible later
- * reattachment and its children should not release their resources.
+ * Any View that sets this to `true` must call [callPoolingContainerOnRelease] on child Views before
+ * they are discarded and may possibly not be used in the future. This includes when the view itself
+ * is detached from the window, unless it is being held for possible later reattachment and its
+ * children should not release their resources.
  *
  * **Warning: Failure to call [callPoolingContainerOnRelease] when a View is removed from the
  * hierarchy and discarded is likely to result in memory leaks!**
@@ -81,9 +79,7 @@
         setTag(IsPoolingContainerTag, value)
     }
 
-/**
- * Whether one of this View's ancestors has `isPoolingContainer` set to `true`
- */
+/** Whether one of this View's ancestors has `isPoolingContainer` set to `true` */
 val View.isWithinPoolingContainer: Boolean
     get() {
         ancestors.forEach {
@@ -95,27 +91,23 @@
     }
 
 /**
- * Calls [PoolingContainerListener.onRelease] on any [PoolingContainerListener]s attached to
- * this View or any of its children.
+ * Calls [PoolingContainerListener.onRelease] on any [PoolingContainerListener]s attached to this
+ * View or any of its children.
  *
  * At the point when this is called, the View should be detached from the window.
  */
 fun View.callPoolingContainerOnRelease() {
-    this.allViews.forEach { child ->
-        child.poolingContainerListenerHolder.onRelease()
-    }
+    this.allViews.forEach { child -> child.poolingContainerListenerHolder.onRelease() }
 }
 
 /**
- * Calls [PoolingContainerListener.onRelease] on any [PoolingContainerListener]s attached to
- * any of its children (not including the `ViewGroup` itself)
+ * Calls [PoolingContainerListener.onRelease] on any [PoolingContainerListener]s attached to any of
+ * its children (not including the `ViewGroup` itself)
  *
  * At the point when this is called, the View should be detached from the window.
  */
 fun ViewGroup.callPoolingContainerOnReleaseForChildren() {
-    this.children.forEach { child ->
-        child.poolingContainerListenerHolder.onRelease()
-    }
+    this.children.forEach { child -> child.poolingContainerListenerHolder.onRelease() }
 }
 
 private val PoolingContainerListenerHolderTag = R.id.pooling_container_listener_holder_tag
@@ -141,8 +133,7 @@
 
 private val View.poolingContainerListenerHolder: PoolingContainerListenerHolder
     get() {
-        var lifecycle =
-            getTag(PoolingContainerListenerHolderTag) as PoolingContainerListenerHolder?
+        var lifecycle = getTag(PoolingContainerListenerHolderTag) as PoolingContainerListenerHolder?
         if (lifecycle == null) {
             lifecycle = PoolingContainerListenerHolder()
             setTag(PoolingContainerListenerHolderTag, lifecycle)
diff --git a/customview/customview/src/androidTest/java/androidx/customview/widget/ViewDragHelperTest.kt b/customview/customview/src/androidTest/java/androidx/customview/widget/ViewDragHelperTest.kt
index abc2e38..f1f00e1 100644
--- a/customview/customview/src/androidTest/java/androidx/customview/widget/ViewDragHelperTest.kt
+++ b/customview/customview/src/androidTest/java/androidx/customview/widget/ViewDragHelperTest.kt
@@ -34,9 +34,10 @@
 
     @Test
     fun testProcessTouchEventWithInconsistentStream() {
-        val callback = object : ViewDragHelper.Callback() {
-            override fun tryCaptureView(child: View, pointerId: Int): Boolean = false
-        }
+        val callback =
+            object : ViewDragHelper.Callback() {
+                override fun tryCaptureView(child: View, pointerId: Int): Boolean = false
+            }
         activityRule.runOnUiThread {
             val activity = activityRule.activity
             val content = activity.findViewById<View>(android.R.id.content)!! as ViewGroup
diff --git a/docs-public/build.gradle b/docs-public/build.gradle
index 458547e3..381ce25 100644
--- a/docs-public/build.gradle
+++ b/docs-public/build.gradle
@@ -349,25 +349,25 @@
     docs("androidx.startup:startup-runtime:1.2.0-alpha02")
     docs("androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01")
     // androidx.test is not hosted in androidx
-    docsWithoutApiSince("androidx.test:core:1.6.0-beta01")
-    docsWithoutApiSince("androidx.test:core-ktx:1.6.0-beta01")
-    docsWithoutApiSince("androidx.test:monitor:1.7.0-beta01")
-    docsWithoutApiSince("androidx.test:rules:1.6.0-beta01")
-    docsWithoutApiSince("androidx.test:runner:1.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-accessibility:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-contrib:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-core:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-device:1.0.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-idling-resource:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-intents:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-remote:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso:espresso-web:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso.idling:idling-concurrent:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.espresso.idling:idling-net:3.6.0-beta01")
-    docsWithoutApiSince("androidx.test.ext:junit:1.2.0-beta01")
-    docsWithoutApiSince("androidx.test.ext:junit-ktx:1.2.0-beta01")
-    docsWithoutApiSince("androidx.test.ext:truth:1.6.0-beta01")
-    docsWithoutApiSince("androidx.test.services:storage:1.5.0-beta01")
+    docsWithoutApiSince("androidx.test:core:1.6.0-rc01")
+    docsWithoutApiSince("androidx.test:core-ktx:1.6.0-rc01")
+    docsWithoutApiSince("androidx.test:monitor:1.7.0-rc01")
+    docsWithoutApiSince("androidx.test:rules:1.6.0-rc01")
+    docsWithoutApiSince("androidx.test:runner:1.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-accessibility:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-contrib:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-core:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-device:1.0.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-idling-resource:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-intents:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-remote:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso:espresso-web:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso.idling:idling-concurrent:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.espresso.idling:idling-net:3.6.0-rc01")
+    docsWithoutApiSince("androidx.test.ext:junit:1.2.0-rc01")
+    docsWithoutApiSince("androidx.test.ext:junit-ktx:1.2.0-rc01")
+    docsWithoutApiSince("androidx.test.ext:truth:1.6.0-rc01")
+    docsWithoutApiSince("androidx.test.services:storage:1.5.0-rc01")
     docsWithoutApiSince("androidx.test.uiautomator:uiautomator:2.3.0")
     // androidx.textclassifier is not hosted in androidx
     docsWithoutApiSince("androidx.textclassifier:textclassifier:1.0.0-alpha04")
diff --git a/docs-tip-of-tree/build.gradle b/docs-tip-of-tree/build.gradle
index 2cd20d6..2ce59c4 100644
--- a/docs-tip-of-tree/build.gradle
+++ b/docs-tip-of-tree/build.gradle
@@ -87,7 +87,8 @@
     kmpDocs(project(":compose:material3:material3-common"))
     kmpDocs(project(":compose:material3:material3-window-size-class"))
     kmpDocs(project(":compose:material:material"))
-    kmpDocs(project(":compose:material:material-icons-core"))
+    kmpDocs("androidx.compose.material:material-icons-core:1.7.0-beta01")
+    samples("androidx.compose.material:material-icons-core-samples:1.7.0-alpha07")
     kmpDocs(project(":compose:material:material-ripple"))
     docs(project(":compose:material:material-navigation"))
     kmpDocs(project(":compose:runtime:runtime"))
diff --git a/gradle.properties b/gradle.properties
index 6ddd379..b5a9b11 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -48,7 +48,7 @@
 androidx.unpinComposeCompiler=false
 
 # Prefix of projects that are opted-in to use ktfmt
-androidx.ktfmt.optin=:a,:b,:camera,:car,:collection,:concurrent,:constraintlayout,:core,:d,:e,:f,:g,:h,:i,:j,:k,:l
+androidx.ktfmt.optin=:a,:b,:camera,:car,:collection,:concurrent,:constraintlayout,:core,:customview,:d,:e,:f,:g,:h,:i,:j,:k,:l,:n,:paging,:palette,:preference
 # Disable features we do not use
 android.defaults.buildfeatures.aidl=false
 android.defaults.buildfeatures.buildconfig=false
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 443aec5..c95290b 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -14,12 +14,12 @@
 androidGradlePluginMin = "7.0.4"
 androidLintMin = "30.0.4"
 androidLintMinCompose = "30.0.0"
-androidxTestRunner = "1.6.0-beta01"
-androidxTestRules = "1.6.0-beta01"
-androidxTestMonitor = "1.7.0-beta01"
-androidxTestCore = "1.6.0-beta01"
-androidxTestExtJunit = "1.2.0-beta01"
-androidxTestExtTruth = "1.6.0-beta01"
+androidxTestRunner = "1.6.0-rc01"
+androidxTestRules = "1.6.0-rc01"
+androidxTestMonitor = "1.7.0-rc01"
+androidxTestCore = "1.6.0-rc01"
+androidxTestExtJunit = "1.2.0-rc01"
+androidxTestExtTruth = "1.6.0-rc01"
 annotationVersion = "1.7.0"
 atomicFu = "0.17.0"
 autoService = "1.0-rc6"
@@ -33,8 +33,8 @@
 dependencyAnalysisGradlePlugin = "1.32.0"
 dexmaker = "2.28.3"
 dokka = "1.8.20-dev-214"
-espresso = "3.6.0-beta01"
-espressoDevice = "1.0.0-beta01"
+espresso = "3.6.0-rc01"
+espressoDevice = "1.0.0-rc01"
 grpc = "1.52.0"
 guavaJre = "31.1-jre"
 hilt = "2.49"
diff --git a/health/connect/connect-client/src/androidTest/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensionsTest.kt b/health/connect/connect-client/src/androidTest/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensionsTest.kt
index 48d53d4..05fe60c 100644
--- a/health/connect/connect-client/src/androidTest/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensionsTest.kt
+++ b/health/connect/connect-client/src/androidTest/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensionsTest.kt
@@ -26,12 +26,17 @@
 import androidx.health.connect.client.impl.converters.datatype.RECORDS_CLASS_NAME_MAP
 import androidx.health.connect.client.permission.HealthPermission.Companion.PERMISSION_PREFIX
 import androidx.health.connect.client.records.BloodPressureRecord
+import androidx.health.connect.client.records.CyclingPedalingCadenceRecord
 import androidx.health.connect.client.records.NutritionRecord
+import androidx.health.connect.client.records.SpeedRecord
+import androidx.health.connect.client.records.StepsCadenceRecord
 import androidx.health.connect.client.records.StepsRecord
 import androidx.health.connect.client.records.metadata.DataOrigin
 import androidx.health.connect.client.request.AggregateRequest
 import androidx.health.connect.client.time.TimeRangeFilter
+import androidx.health.connect.client.units.Velocity
 import androidx.health.connect.client.units.grams
+import androidx.health.connect.client.units.metersPerSecond
 import androidx.health.connect.client.units.millimetersOfMercury
 import androidx.test.core.app.ApplicationProvider
 import androidx.test.ext.junit.runners.AndroidJUnit4
@@ -99,6 +104,23 @@
                     diastolic = 70.millimetersOfMercury,
                     systolic = 110.millimetersOfMercury
                 ),
+                CyclingPedalingCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 30.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            CyclingPedalingCadenceRecord.Sample(
+                                time = START_TIME + 5.minutes,
+                                revolutionsPerMinute = 80.0
+                            ),
+                            CyclingPedalingCadenceRecord.Sample(
+                                time = START_TIME + 15.minutes,
+                                revolutionsPerMinute = 90.0
+                            )
+                        )
+                ),
                 NutritionRecord(
                     startTime = START_TIME,
                     endTime = START_TIME + 1.minutes,
@@ -106,35 +128,50 @@
                     calcium = 0.1.grams,
                     startZoneOffset = ZoneOffset.UTC,
                     endZoneOffset = ZoneOffset.UTC
+                ),
+                SpeedRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            SpeedRecord.Sample(
+                                time = START_TIME + 5.minutes,
+                                speed = Velocity.metersPerSecond(2.8)
+                            ),
+                            SpeedRecord.Sample(
+                                time = START_TIME + 10.minutes,
+                                speed = Velocity.metersPerSecond(2.7)
+                            )
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0)
+                        )
                 )
             )
         )
 
+        // Adding calcium total (which has always been supported) to make sure it's filtered out of
+        // the calculation.
         val aggregationResult =
             healthConnectClient.aggregateFallback(
                 AggregateRequest(
-                    metrics =
-                        setOf(
-                            BloodPressureRecord.DIASTOLIC_AVG,
-                            BloodPressureRecord.DIASTOLIC_MAX,
-                            BloodPressureRecord.DIASTOLIC_MIN,
-                            BloodPressureRecord.SYSTOLIC_AVG,
-                            BloodPressureRecord.SYSTOLIC_MAX,
-                            BloodPressureRecord.SYSTOLIC_MIN,
-                            NutritionRecord.TRANS_FAT_TOTAL,
-                            NutritionRecord.CALCIUM_TOTAL
-                        ),
+                    metrics = AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10 + NutritionRecord.CALCIUM_TOTAL,
                     timeRangeFilter = TimeRangeFilter.none()
                 )
             )
 
-        assertThat(BloodPressureRecord.DIASTOLIC_AVG in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.DIASTOLIC_MAX in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.DIASTOLIC_MIN in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.SYSTOLIC_AVG in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.SYSTOLIC_MAX in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.SYSTOLIC_MIN in aggregationResult).isFalse()
-        assertThat(NutritionRecord.TRANS_FAT_TOTAL in aggregationResult).isFalse()
+        for (metric in AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10) {
+            assertThat(metric in aggregationResult).isFalse()
+        }
         assertThat(NutritionRecord.CALCIUM_TOTAL in aggregationResult).isFalse()
         assertThat(aggregationResult.dataOrigins).isEmpty()
     }
@@ -151,6 +188,23 @@
                     diastolic = 70.millimetersOfMercury,
                     systolic = 110.millimetersOfMercury
                 ),
+                CyclingPedalingCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 30.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            CyclingPedalingCadenceRecord.Sample(
+                                time = START_TIME + 5.minutes,
+                                revolutionsPerMinute = 80.0
+                            ),
+                            CyclingPedalingCadenceRecord.Sample(
+                                time = START_TIME + 15.minutes,
+                                revolutionsPerMinute = 90.0
+                            )
+                        )
+                ),
                 NutritionRecord(
                     startTime = START_TIME,
                     endTime = START_TIME + 1.minutes,
@@ -158,24 +212,43 @@
                     calcium = 0.1.grams,
                     startZoneOffset = ZoneOffset.UTC,
                     endZoneOffset = ZoneOffset.UTC
+                ),
+                SpeedRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            SpeedRecord.Sample(
+                                time = START_TIME + 5.minutes,
+                                speed = Velocity.metersPerSecond(2.8)
+                            ),
+                            SpeedRecord.Sample(
+                                time = START_TIME + 10.minutes,
+                                speed = Velocity.metersPerSecond(2.7)
+                            )
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0)
+                        )
                 )
             )
         )
 
+        // Adding calcium total (which has always been supported) to make sure it's filtered out of
+        // the calculation.
         val aggregationResult =
             healthConnectClient.aggregateFallback(
                 AggregateRequest(
-                    metrics =
-                        setOf(
-                            NutritionRecord.TRANS_FAT_TOTAL,
-                            NutritionRecord.CALCIUM_TOTAL,
-                            BloodPressureRecord.DIASTOLIC_AVG,
-                            BloodPressureRecord.DIASTOLIC_MAX,
-                            BloodPressureRecord.DIASTOLIC_MIN,
-                            BloodPressureRecord.SYSTOLIC_AVG,
-                            BloodPressureRecord.SYSTOLIC_MAX,
-                            BloodPressureRecord.SYSTOLIC_MIN,
-                        ),
+                    metrics = AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10 + NutritionRecord.CALCIUM_TOTAL,
                     timeRangeFilter = TimeRangeFilter.none()
                 )
             )
@@ -187,9 +260,19 @@
             aggregationResult[BloodPressureRecord.SYSTOLIC_AVG] to 110.millimetersOfMercury,
             aggregationResult[BloodPressureRecord.SYSTOLIC_MAX] to 110.millimetersOfMercury,
             aggregationResult[BloodPressureRecord.SYSTOLIC_MIN] to 110.millimetersOfMercury,
+            aggregationResult[CyclingPedalingCadenceRecord.RPM_AVG] to 85.0,
+            aggregationResult[CyclingPedalingCadenceRecord.RPM_MAX] to 90.0,
+            aggregationResult[CyclingPedalingCadenceRecord.RPM_MIN] to 80.0,
             aggregationResult[NutritionRecord.TRANS_FAT_TOTAL] to 0.3.grams,
-            (NutritionRecord.CALCIUM_TOTAL in aggregationResult) to false,
+            aggregationResult[SpeedRecord.SPEED_AVG] to 2.75.metersPerSecond,
+            aggregationResult[SpeedRecord.SPEED_MAX] to 2.8.metersPerSecond,
+            aggregationResult[SpeedRecord.SPEED_MIN] to 2.7.metersPerSecond,
+            aggregationResult[StepsCadenceRecord.RATE_AVG] to 170.0,
+            aggregationResult[StepsCadenceRecord.RATE_MAX] to 170.0,
+            aggregationResult[StepsCadenceRecord.RATE_MIN] to 170.0,
         )
+
+        assertThat(NutritionRecord.CALCIUM_TOTAL in aggregationResult).isFalse()
         assertThat(aggregationResult.dataOrigins).containsExactly(DataOrigin(context.packageName))
     }
 
@@ -200,29 +283,15 @@
         val aggregationResult =
             healthConnectClient.aggregateFallback(
                 AggregateRequest(
-                    metrics =
-                        setOf(
-                            BloodPressureRecord.DIASTOLIC_AVG,
-                            BloodPressureRecord.DIASTOLIC_MAX,
-                            BloodPressureRecord.DIASTOLIC_MIN,
-                            BloodPressureRecord.SYSTOLIC_AVG,
-                            BloodPressureRecord.SYSTOLIC_MAX,
-                            BloodPressureRecord.SYSTOLIC_MIN,
-                            NutritionRecord.TRANS_FAT_TOTAL,
-                            NutritionRecord.CALCIUM_TOTAL
-                        ),
+                    metrics = AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10,
                     timeRangeFilter = TimeRangeFilter.none()
                 )
             )
 
-        assertThat(BloodPressureRecord.DIASTOLIC_AVG in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.DIASTOLIC_MAX in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.DIASTOLIC_MIN in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.SYSTOLIC_AVG in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.SYSTOLIC_MAX in aggregationResult).isFalse()
-        assertThat(BloodPressureRecord.SYSTOLIC_MIN in aggregationResult).isFalse()
-        assertThat(NutritionRecord.TRANS_FAT_TOTAL in aggregationResult).isFalse()
-        assertThat(NutritionRecord.CALCIUM_TOTAL in aggregationResult).isFalse()
+        for (metric in AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10) {
+            assertThat(metric in aggregationResult).isFalse()
+        }
+
         assertThat(aggregationResult.dataOrigins).isEmpty()
     }
 
diff --git a/health/connect/connect-client/src/androidTest/java/androidx/health/connect/client/impl/platform/aggregate/SeriesRecordAggregationExtensionsTest.kt b/health/connect/connect-client/src/androidTest/java/androidx/health/connect/client/impl/platform/aggregate/SeriesRecordAggregationExtensionsTest.kt
new file mode 100644
index 0000000..5e42b96
--- /dev/null
+++ b/health/connect/connect-client/src/androidTest/java/androidx/health/connect/client/impl/platform/aggregate/SeriesRecordAggregationExtensionsTest.kt
@@ -0,0 +1,717 @@
+/*
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package androidx.health.connect.client.impl.platform.aggregate
+
+import android.annotation.TargetApi
+import android.content.Context
+import android.os.Build
+import android.os.ext.SdkExtensions
+import androidx.health.connect.client.HealthConnectClient
+import androidx.health.connect.client.impl.HealthConnectClientUpsideDownImpl
+import androidx.health.connect.client.permission.HealthPermission
+import androidx.health.connect.client.records.CyclingPedalingCadenceRecord
+import androidx.health.connect.client.records.HeartRateRecord
+import androidx.health.connect.client.records.SpeedRecord
+import androidx.health.connect.client.records.StepsCadenceRecord
+import androidx.health.connect.client.records.metadata.DataOrigin
+import androidx.health.connect.client.request.AggregateRequest
+import androidx.health.connect.client.time.TimeRangeFilter
+import androidx.health.connect.client.units.metersPerSecond
+import androidx.test.core.app.ApplicationProvider
+import androidx.test.ext.junit.runners.AndroidJUnit4
+import androidx.test.filters.MediumTest
+import androidx.test.filters.SdkSuppress
+import androidx.test.rule.GrantPermissionRule
+import com.google.common.truth.Truth.assertThat
+import java.time.Duration
+import java.time.LocalDate
+import java.time.LocalDateTime
+import java.time.ZoneOffset
+import kotlinx.coroutines.runBlocking
+import kotlinx.coroutines.test.runTest
+import org.junit.After
+import org.junit.Assert.assertThrows
+import org.junit.Assume.assumeFalse
+import org.junit.Before
+import org.junit.Rule
+import org.junit.Test
+import org.junit.runner.RunWith
+
+@RunWith(AndroidJUnit4::class)
+@MediumTest
+@TargetApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
+@SdkSuppress(minSdkVersion = Build.VERSION_CODES.UPSIDE_DOWN_CAKE, codeName = "UpsideDownCake")
+class SeriesRecordAggregationExtensionsTest {
+
+    private val context: Context = ApplicationProvider.getApplicationContext()
+    private val healthConnectClient: HealthConnectClient =
+        HealthConnectClientUpsideDownImpl(context)
+
+    private companion object {
+        private val START_TIME =
+            LocalDate.now().minusDays(5).atStartOfDay().toInstant(ZoneOffset.UTC)
+        private val SERIES_AGGREGATION_FALLBACK_RECORD_TYPES =
+            setOf(
+                CyclingPedalingCadenceRecord::class,
+                SpeedRecord::class,
+                StepsCadenceRecord::class
+            )
+    }
+
+    @get:Rule
+    val grantPermissionRule: GrantPermissionRule =
+        GrantPermissionRule.grant(
+            *(SERIES_AGGREGATION_FALLBACK_RECORD_TYPES.flatMap {
+                    listOf(
+                        HealthPermission.getWritePermission(it),
+                        HealthPermission.getReadPermission(it)
+                    )
+                }
+                .toTypedArray())
+        )
+
+    @Before
+    fun setUp() = runTest {
+        // SDK ext 10 and above don't process any fallback metrics
+        assumeFalse(SdkExtensions.getExtensionVersion(Build.VERSION_CODES.UPSIDE_DOWN_CAKE) >= 10)
+    }
+
+    @After
+    fun tearDown() = runTest {
+        for (recordType in SERIES_AGGREGATION_FALLBACK_RECORD_TYPES) {
+            healthConnectClient.deleteRecords(recordType, TimeRangeFilter.none())
+        }
+    }
+
+    @Test
+    fun aggregateCyclingPedalingCadence() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                CyclingPedalingCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 30.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            CyclingPedalingCadenceRecord.Sample(
+                                time = START_TIME + 5.minutes,
+                                revolutionsPerMinute = 80.0
+                            ),
+                            CyclingPedalingCadenceRecord.Sample(
+                                time = START_TIME + 15.minutes,
+                                revolutionsPerMinute = 90.0
+                            )
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            CyclingPedalingCadenceRecord.RPM_AVG,
+                            CyclingPedalingCadenceRecord.RPM_MAX,
+                            CyclingPedalingCadenceRecord.RPM_MIN
+                        ),
+                    timeRangeFilter = TimeRangeFilter.none()
+                )
+            )
+
+        assertThat(aggregationResult[CyclingPedalingCadenceRecord.RPM_AVG]).isEqualTo(85.0)
+        assertThat(aggregationResult[CyclingPedalingCadenceRecord.RPM_MAX]).isEqualTo(90.0)
+        assertThat(aggregationResult[CyclingPedalingCadenceRecord.RPM_MIN]).isEqualTo(80.0)
+    }
+
+    @Test
+    fun aggregateCyclingSpeed() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                SpeedRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            SpeedRecord.Sample(
+                                time = START_TIME + 5.minutes,
+                                speed = 2.8.metersPerSecond
+                            ),
+                            SpeedRecord.Sample(
+                                time = START_TIME + 10.minutes,
+                                speed = 2.7.metersPerSecond
+                            )
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(SpeedRecord.SPEED_AVG, SpeedRecord.SPEED_MAX, SpeedRecord.SPEED_MIN),
+                    timeRangeFilter = TimeRangeFilter.none()
+                )
+            )
+
+        assertThat(aggregationResult[SpeedRecord.SPEED_AVG]).isEqualTo(2.75.metersPerSecond)
+        assertThat(aggregationResult[SpeedRecord.SPEED_MAX]).isEqualTo(2.8.metersPerSecond)
+        assertThat(aggregationResult[SpeedRecord.SPEED_MIN]).isEqualTo(2.7.metersPerSecond)
+    }
+
+    @Test
+    fun aggregateStepsCadence() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 7.minutes, rate = 180.0)
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN,
+                        ),
+                    timeRangeFilter = TimeRangeFilter.none()
+                )
+            )
+
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_AVG]).isEqualTo(175.0)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MAX]).isEqualTo(180.0)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MIN]).isEqualTo(170.0)
+    }
+
+    @Test
+    fun aggregateSeriesRecord_noData() = runTest {
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN,
+                        ),
+                    timeRangeFilter = TimeRangeFilter.none()
+                )
+            )
+
+        assertThat(StepsCadenceRecord.RATE_AVG in aggregationResult).isFalse()
+        assertThat(StepsCadenceRecord.RATE_MAX in aggregationResult).isFalse()
+        assertThat(StepsCadenceRecord.RATE_MIN in aggregationResult).isFalse()
+        assertThat(aggregationResult.dataOrigins).isEmpty()
+    }
+
+    @Test
+    fun aggregateSeriesRecord_multipleRecords() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 7.minutes, rate = 180.0)
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 11.minutes,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples = listOf()
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 16.minutes,
+                    endTime = START_TIME + 20.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 17.minutes, rate = 181.0)
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN,
+                        ),
+                    timeRangeFilter = TimeRangeFilter.none()
+                )
+            )
+
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_AVG]).isEqualTo(177.0)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MAX]).isEqualTo(181.0)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MIN]).isEqualTo(170.0)
+        assertThat(aggregationResult.dataOrigins).containsExactly(DataOrigin(context.packageName))
+    }
+
+    @Test
+    fun aggregateSeriesRecord_multipleRecords_oneMetric() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 7.minutes, rate = 180.0)
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 11.minutes,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples = listOf()
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 16.minutes,
+                    endTime = START_TIME + 20.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 17.minutes, rate = 181.0)
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_MAX,
+                        ),
+                    timeRangeFilter = TimeRangeFilter.none()
+                )
+            )
+
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MAX]).isEqualTo(181.0)
+        assertThat(StepsCadenceRecord.RATE_AVG in aggregationResult).isFalse()
+        assertThat(StepsCadenceRecord.RATE_MIN in aggregationResult).isFalse()
+        assertThat(aggregationResult.dataOrigins).containsExactly(DataOrigin(context.packageName))
+    }
+
+    @Test
+    fun aggregateSeriesRecord_multipleRecords_instantTimeRangeFilter() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 7.minutes, rate = 180.0)
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 11.minutes,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples = listOf()
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 16.minutes,
+                    endTime = START_TIME + 20.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 17.minutes, rate = 181.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 18.minutes, rate = 182.0)
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN,
+                        ),
+                    timeRangeFilter =
+                        TimeRangeFilter.between(START_TIME + 7.minutes, START_TIME + 18.minutes)
+                )
+            )
+
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_AVG]).isEqualTo(180.5)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MAX]).isEqualTo(181.0)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MIN]).isEqualTo(180.0)
+        assertThat(aggregationResult.dataOrigins).containsExactly(DataOrigin(context.packageName))
+    }
+
+    @Test
+    fun aggregateSeriesRecord_multipleRecords_instantTimeRangeFilterOutOfBounds() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 7.minutes, rate = 180.0)
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 11.minutes,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples = listOf()
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 16.minutes,
+                    endTime = START_TIME + 20.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 17.minutes, rate = 181.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 18.minutes, rate = 182.0)
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN,
+                        ),
+                    timeRangeFilter =
+                        TimeRangeFilter.after(
+                            START_TIME + 19.minutes,
+                        )
+                )
+            )
+
+        assertThat(StepsCadenceRecord.RATE_AVG in aggregationResult).isFalse()
+        assertThat(StepsCadenceRecord.RATE_MAX in aggregationResult).isFalse()
+        assertThat(StepsCadenceRecord.RATE_MIN in aggregationResult).isFalse()
+        assertThat(aggregationResult.dataOrigins).isEmpty()
+    }
+
+    @Test
+    fun aggregateSeriesRecord_multipleRecords_localTimeRangeFilter() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 7.minutes, rate = 180.0)
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 11.minutes,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples = listOf()
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 16.minutes,
+                    endTime = START_TIME + 20.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 17.minutes, rate = 181.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 18.minutes, rate = 182.0)
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN,
+                        ),
+                    timeRangeFilter =
+                        TimeRangeFilter.between(
+                            LocalDateTime.ofInstant(
+                                START_TIME + 7.minutes + 2.hours,
+                                ZoneOffset.ofHours(-2)
+                            ),
+                            LocalDateTime.ofInstant(
+                                START_TIME + 18.minutes + 2.hours,
+                                ZoneOffset.ofHours(-2)
+                            )
+                        )
+                )
+            )
+
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_AVG]).isEqualTo(180.5)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MAX]).isEqualTo(181.0)
+        assertThat(aggregationResult[StepsCadenceRecord.RATE_MIN]).isEqualTo(180.0)
+        assertThat(aggregationResult.dataOrigins).containsExactly(DataOrigin(context.packageName))
+    }
+
+    @Test
+    fun aggregateSeriesRecord_multipleRecords_localTimeRangeFilterOutOfBounds() = runTest {
+        healthConnectClient.insertRecords(
+            listOf(
+                StepsCadenceRecord(
+                    startTime = START_TIME,
+                    endTime = START_TIME + 10.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 3.minutes, rate = 170.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 7.minutes, rate = 180.0)
+                        )
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 11.minutes,
+                    endTime = START_TIME + 15.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples = listOf()
+                ),
+                StepsCadenceRecord(
+                    startTime = START_TIME + 16.minutes,
+                    endTime = START_TIME + 20.minutes,
+                    startZoneOffset = ZoneOffset.UTC,
+                    endZoneOffset = ZoneOffset.UTC,
+                    samples =
+                        listOf(
+                            StepsCadenceRecord.Sample(time = START_TIME + 17.minutes, rate = 181.0),
+                            StepsCadenceRecord.Sample(time = START_TIME + 18.minutes, rate = 182.0)
+                        )
+                )
+            )
+        )
+
+        val aggregationResult =
+            healthConnectClient.aggregateFallback(
+                AggregateRequest(
+                    metrics =
+                        setOf(
+                            StepsCadenceRecord.RATE_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN,
+                        ),
+                    timeRangeFilter =
+                        TimeRangeFilter.before(
+                            LocalDateTime.ofInstant(
+                                START_TIME + 2.minutes + 2.hours,
+                                ZoneOffset.ofHours(-2)
+                            )
+                        )
+                )
+            )
+
+        assertThat(StepsCadenceRecord.RATE_AVG in aggregationResult).isFalse()
+        assertThat(StepsCadenceRecord.RATE_MAX in aggregationResult).isFalse()
+        assertThat(StepsCadenceRecord.RATE_MIN in aggregationResult).isFalse()
+        assertThat(aggregationResult.dataOrigins).isEmpty()
+    }
+
+    @Test
+    fun aggregateSeriesRecord_invalidMetrics_throws() = runTest {
+        assertThrows(IllegalStateException::class.java) {
+            runBlocking {
+                healthConnectClient.aggregateSeriesRecord(
+                    recordType = StepsCadenceRecord::class,
+                    aggregateMetrics =
+                        setOf(
+                            SpeedRecord.SPEED_AVG,
+                            StepsCadenceRecord.RATE_MAX,
+                            StepsCadenceRecord.RATE_MIN
+                        ),
+                    timeRangeFilter = TimeRangeFilter.none(),
+                    dataOriginFilter = emptySet()
+                ) {
+                    samples.map { SampleInfo(time = it.time, value = it.rate) }
+                }
+            }
+        }
+    }
+
+    @Test
+    fun aggregateSeriesRecord_invalidSeriesRecord_throws() = runTest {
+        assertThrows(IllegalArgumentException::class.java) {
+            runBlocking {
+                healthConnectClient.aggregateSeriesRecord(
+                    recordType = HeartRateRecord::class,
+                    aggregateMetrics =
+                        setOf(
+                            HeartRateRecord.BPM_AVG,
+                            HeartRateRecord.BPM_MAX,
+                            HeartRateRecord.BPM_MIN
+                        ),
+                    timeRangeFilter = TimeRangeFilter.none(),
+                    dataOriginFilter = emptySet()
+                ) {
+                    samples.map { SampleInfo(time = it.time, value = it.beatsPerMinute.toDouble()) }
+                }
+            }
+        }
+    }
+
+    @Test
+    fun sampleInfoIsWithin_noneTimeRangeFilter_returnsTrue() {
+        val sampleInfo = SampleInfo(time = START_TIME, value = 0.0)
+        val timeRangeFilter = TimeRangeFilter.none()
+
+        assertThat(sampleInfo.isWithin(timeRangeFilter = timeRangeFilter, zoneOffset = null))
+            .isTrue()
+    }
+
+    @Test
+    fun sampleInfoIsWithin_instantTimeRangeFilter_between() {
+        val sampleInfo = SampleInfo(time = START_TIME, value = 0.0)
+        val zoneOffset = ZoneOffset.ofHours(2)
+
+        var timeRangeFilter =
+            TimeRangeFilter.between(START_TIME - 2.minutes, START_TIME + 2.minutes)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isTrue()
+
+        timeRangeFilter = TimeRangeFilter.between(START_TIME - 2.minutes, START_TIME)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isFalse()
+
+        timeRangeFilter = TimeRangeFilter.between(START_TIME, START_TIME + 2.minutes)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isTrue()
+
+        timeRangeFilter = TimeRangeFilter.between(START_TIME + 1.minutes, START_TIME + 2.minutes)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isFalse()
+    }
+
+    @Test
+    fun sampleInfoIsWithin_instantTimeRangeFilter_openEnded() {
+        val sampleInfo = SampleInfo(time = START_TIME, value = 0.0)
+        val zoneOffset = ZoneOffset.ofHours(2)
+
+        var timeRangeFilter = TimeRangeFilter.after(START_TIME)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isTrue()
+
+        timeRangeFilter = TimeRangeFilter.after(START_TIME + 1.minutes)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isFalse()
+
+        timeRangeFilter = TimeRangeFilter.before(START_TIME)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isFalse()
+
+        timeRangeFilter = TimeRangeFilter.before(START_TIME + 1.minutes)
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isTrue()
+    }
+
+    @Test
+    fun sampleInfoIsWithin_localTimeRangeFilter_between() {
+        val sampleInfo = SampleInfo(time = START_TIME, value = 0.0)
+        val zoneOffset = ZoneOffset.ofHours(2)
+
+        var timeRangeFilter =
+            TimeRangeFilter.between(
+                LocalDateTime.ofInstant(START_TIME - 2.minutes, ZoneOffset.UTC),
+                LocalDateTime.ofInstant(START_TIME + 2.minutes, ZoneOffset.UTC)
+            )
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isFalse()
+
+        timeRangeFilter =
+            TimeRangeFilter.between(
+                LocalDateTime.ofInstant(START_TIME - 2.minutes, zoneOffset),
+                LocalDateTime.ofInstant(START_TIME + 2.minutes, zoneOffset)
+            )
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isTrue()
+
+        timeRangeFilter =
+            TimeRangeFilter.between(
+                LocalDateTime.ofInstant(START_TIME - 2.minutes, zoneOffset),
+                LocalDateTime.ofInstant(START_TIME, zoneOffset)
+            )
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isFalse()
+
+        timeRangeFilter =
+            TimeRangeFilter.between(
+                LocalDateTime.ofInstant(START_TIME, zoneOffset),
+                LocalDateTime.ofInstant(START_TIME + 2.minutes, zoneOffset)
+            )
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isTrue()
+
+        timeRangeFilter =
+            TimeRangeFilter.between(
+                LocalDateTime.ofInstant(START_TIME + 1.minutes, zoneOffset),
+                LocalDateTime.ofInstant(START_TIME + 2.minutes, zoneOffset)
+            )
+        assertThat(sampleInfo.isWithin(timeRangeFilter, zoneOffset)).isFalse()
+    }
+
+    private val Int.hours: Duration
+        get() = Duration.ofHours(this.toLong())
+
+    private val Int.minutes: Duration
+        get() = Duration.ofMinutes(this.toLong())
+}
diff --git a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/AggregationExtensions.kt b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/AggregationExtensions.kt
index f323864..787968d 100644
--- a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/AggregationExtensions.kt
+++ b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/AggregationExtensions.kt
@@ -35,7 +35,7 @@
         if (SdkExtensions.getExtensionVersion(Build.VERSION_CODES.UPSIDE_DOWN_CAKE) >= 10) {
             return metrics
         }
-        return metrics.filterNot { it in SDK_EXT_10_AGGREGATE_METRICS }.toSet()
+        return metrics.filterNot { it in AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10 }.toSet()
     }
 
 internal val AggregateRequest.fallbackMetrics: Set<AggregateMetric<*>>
@@ -43,7 +43,7 @@
         if (SdkExtensions.getExtensionVersion(Build.VERSION_CODES.UPSIDE_DOWN_CAKE) >= 10) {
             return emptySet()
         }
-        return metrics.filter { it in SDK_EXT_10_AGGREGATE_METRICS }.toSet()
+        return metrics.filter { it in AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10 }.toSet()
     }
 
 internal operator fun AggregationResult.plus(other: AggregationResult): AggregationResult {
@@ -54,7 +54,7 @@
     )
 }
 
-internal val SDK_EXT_10_AGGREGATE_METRICS: Set<AggregateMetric<*>> =
+internal val AGGREGATE_METRICS_ADDED_IN_SDK_EXT_10: Set<AggregateMetric<*>> =
     setOf(
         BloodPressureRecord.DIASTOLIC_AVG,
         BloodPressureRecord.DIASTOLIC_MAX,
diff --git a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/Aggregator.kt b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/Aggregator.kt
new file mode 100644
index 0000000..9849d1e
--- /dev/null
+++ b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/Aggregator.kt
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+@file:RequiresApi(api = 34)
+
+package androidx.health.connect.client.impl.platform.aggregate
+
+import androidx.annotation.RequiresApi
+import androidx.health.connect.client.aggregate.AggregationResult
+import androidx.health.connect.client.records.metadata.DataOrigin
+
+internal interface Aggregator<T> {
+    val doubleValues: Map<String, Double>
+    val dataOrigins: Set<DataOrigin>
+
+    operator fun plusAssign(value: T)
+
+    fun getResult(): AggregationResult {
+        if (dataOrigins.isEmpty()) {
+            return emptyAggregationResult()
+        }
+        return AggregationResult(
+            longValues = emptyMap(),
+            doubleValues = doubleValues,
+            dataOrigins = dataOrigins
+        )
+    }
+}
diff --git a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/BloodPressureAggregationExtensions.kt b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/BloodPressureAggregationExtensions.kt
index f397a1c..5051700 100644
--- a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/BloodPressureAggregationExtensions.kt
+++ b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/BloodPressureAggregationExtensions.kt
@@ -43,95 +43,90 @@
     bloodPressureMetrics: Set<AggregateMetric<*>>,
     timeRangeFilter: TimeRangeFilter,
     dataOriginFilter: Set<DataOrigin>
+) =
+    aggregateBloodPressure(
+        timeRangeFilter,
+        dataOriginFilter,
+        BloodPressureAggregator(bloodPressureMetrics)
+    )
+
+private suspend fun HealthConnectClient.aggregateBloodPressure(
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>,
+    aggregator: Aggregator<BloodPressureRecord>
 ): AggregationResult {
-    check(BLOOD_PRESSURE_METRICS.containsAll(bloodPressureMetrics)) {
-        "Invalid set of blood pressure metrics $bloodPressureMetrics"
+    readRecordsFlow(BloodPressureRecord::class, timeRangeFilter, dataOriginFilter).collect { records
+        ->
+        records.forEach { aggregator += it }
     }
+    return aggregator.getResult()
+}
 
-    if (bloodPressureMetrics.isEmpty()) {
-        return emptyAggregationResult()
-    }
-
-    val readRecordsFlow =
-        readRecordsFlow(BloodPressureRecord::class, timeRangeFilter, dataOriginFilter)
-
+private class BloodPressureAggregator(val bloodPressureMetrics: Set<AggregateMetric<*>>) :
+    Aggregator<BloodPressureRecord> {
     val avgDataMap = mutableMapOf<AggregateMetric<Pressure>, AvgData>()
     val minMaxMap = mutableMapOf<AggregateMetric<Pressure>, Double?>()
 
-    for (metric in bloodPressureMetrics) {
-        when (metric) {
-            BloodPressureRecord.DIASTOLIC_AVG,
-            BloodPressureRecord.SYSTOLIC_AVG -> avgDataMap[metric] = AvgData()
-            BloodPressureRecord.DIASTOLIC_MAX,
-            BloodPressureRecord.DIASTOLIC_MIN,
-            BloodPressureRecord.SYSTOLIC_MAX,
-            BloodPressureRecord.SYSTOLIC_MIN -> minMaxMap[metric] = null
-            else -> error("Invalid blood pressure fallback aggregation type ${metric.metricKey}")
+    override val dataOrigins = mutableSetOf<DataOrigin>()
+    override val doubleValues: Map<String, Double>
+        get() = buildMap {
+            for (metric in bloodPressureMetrics) {
+                val aggregatedValue =
+                    when (metric) {
+                        BloodPressureRecord.DIASTOLIC_AVG,
+                        BloodPressureRecord.SYSTOLIC_AVG -> avgDataMap[metric]!!.average()
+                        BloodPressureRecord.DIASTOLIC_MAX,
+                        BloodPressureRecord.DIASTOLIC_MIN,
+                        BloodPressureRecord.SYSTOLIC_MAX,
+                        BloodPressureRecord.SYSTOLIC_MIN -> minMaxMap[metric]!!
+                        else ->
+                            error(
+                                "Invalid blood pressure fallback aggregation type ${metric.metricKey}"
+                            )
+                    }
+
+                put(metric.metricKey, aggregatedValue)
+            }
+        }
+
+    init {
+        check(BLOOD_PRESSURE_METRICS.containsAll(bloodPressureMetrics)) {
+            "Invalid set of blood pressure fallback aggregation metrics ${bloodPressureMetrics.map { it.metricKey }}"
+        }
+
+        for (metric in bloodPressureMetrics) {
+            when (metric) {
+                BloodPressureRecord.DIASTOLIC_AVG,
+                BloodPressureRecord.SYSTOLIC_AVG -> avgDataMap[metric] = AvgData()
+                BloodPressureRecord.DIASTOLIC_MAX,
+                BloodPressureRecord.DIASTOLIC_MIN,
+                BloodPressureRecord.SYSTOLIC_MAX,
+                BloodPressureRecord.SYSTOLIC_MIN -> minMaxMap[metric] = null
+                else ->
+                    error("Invalid blood pressure fallback aggregation metric ${metric.metricKey}")
+            }
         }
     }
 
-    val dataOrigins = mutableSetOf<DataOrigin>()
+    override fun plusAssign(value: BloodPressureRecord) {
+        val diastolic = value.diastolic.inMillimetersOfMercury
+        val systolic = value.systolic.inMillimetersOfMercury
 
-    readRecordsFlow.collect { records ->
-        records.forEach {
-            val diastolic = it.diastolic.inMillimetersOfMercury
-            val systolic = it.systolic.inMillimetersOfMercury
-
-            for (metric in bloodPressureMetrics) {
-                when (metric) {
-                    BloodPressureRecord.DIASTOLIC_AVG -> avgDataMap[metric]!! += diastolic
-                    BloodPressureRecord.DIASTOLIC_MAX ->
-                        minMaxMap[metric] = max(minMaxMap[metric] ?: diastolic, diastolic)
-                    BloodPressureRecord.DIASTOLIC_MIN ->
-                        minMaxMap[metric] = min(minMaxMap[metric] ?: diastolic, diastolic)
-                    BloodPressureRecord.SYSTOLIC_AVG -> avgDataMap[metric]!! += systolic
-                    BloodPressureRecord.SYSTOLIC_MAX ->
-                        minMaxMap[metric] = max(minMaxMap[metric] ?: systolic, systolic)
-                    BloodPressureRecord.SYSTOLIC_MIN ->
-                        minMaxMap[metric] = min(minMaxMap[metric] ?: systolic, systolic)
-                }
+        for (metric in bloodPressureMetrics) {
+            when (metric) {
+                BloodPressureRecord.DIASTOLIC_AVG -> avgDataMap[metric]!! += diastolic
+                BloodPressureRecord.DIASTOLIC_MAX ->
+                    minMaxMap[metric] = max(minMaxMap[metric] ?: diastolic, diastolic)
+                BloodPressureRecord.DIASTOLIC_MIN ->
+                    minMaxMap[metric] = min(minMaxMap[metric] ?: diastolic, diastolic)
+                BloodPressureRecord.SYSTOLIC_AVG -> avgDataMap[metric]!! += systolic
+                BloodPressureRecord.SYSTOLIC_MAX ->
+                    minMaxMap[metric] = max(minMaxMap[metric] ?: systolic, systolic)
+                BloodPressureRecord.SYSTOLIC_MIN ->
+                    minMaxMap[metric] = min(minMaxMap[metric] ?: systolic, systolic)
             }
 
-            dataOrigins += it.metadata.dataOrigin
+            dataOrigins += value.metadata.dataOrigin
         }
     }
-
-    if (dataOrigins.isEmpty()) {
-        return emptyAggregationResult()
-    }
-
-    val doubleValues = buildMap {
-        for (metric in bloodPressureMetrics) {
-            val aggregatedValue =
-                when (metric) {
-                    BloodPressureRecord.DIASTOLIC_AVG,
-                    BloodPressureRecord.SYSTOLIC_AVG -> avgDataMap[metric]!!.average()
-                    BloodPressureRecord.DIASTOLIC_MAX,
-                    BloodPressureRecord.DIASTOLIC_MIN,
-                    BloodPressureRecord.SYSTOLIC_MAX,
-                    BloodPressureRecord.SYSTOLIC_MIN -> minMaxMap[metric]!!
-                    else ->
-                        error(
-                            "Invalid blood pressure fallback aggregation type ${metric.metricKey}"
-                        )
-                }
-
-            put(metric.metricKey, aggregatedValue)
-        }
-    }
-
-    return AggregationResult(
-        longValues = mapOf(),
-        doubleValues = doubleValues,
-        dataOrigins = dataOrigins
-    )
-}
-
-private data class AvgData(var count: Int = 0, var total: Double = 0.0) {
-    operator fun plusAssign(value: Double) {
-        count++
-        total += value
-    }
-
-    fun average() = total / count
 }
diff --git a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensions.kt b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensions.kt
index 24f0364..9d81152 100644
--- a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensions.kt
+++ b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/HealthConnectClientAggregationExtensions.kt
@@ -23,9 +23,6 @@
 import androidx.health.connect.client.aggregate.AggregateMetric
 import androidx.health.connect.client.aggregate.AggregationResult
 import androidx.health.connect.client.impl.converters.datatype.RECORDS_CLASS_NAME_MAP
-import androidx.health.connect.client.impl.platform.div
-import androidx.health.connect.client.impl.platform.duration
-import androidx.health.connect.client.impl.platform.minus
 import androidx.health.connect.client.impl.platform.toInstantWithDefaultZoneFallback
 import androidx.health.connect.client.impl.platform.useLocalTime
 import androidx.health.connect.client.records.BloodPressureRecord
@@ -40,8 +37,6 @@
 import androidx.health.connect.client.request.ReadRecordsRequest
 import androidx.health.connect.client.time.TimeRangeFilter
 import java.time.Duration
-import java.time.Instant
-import kotlin.math.max
 import kotlin.reflect.KClass
 import kotlinx.coroutines.flow.Flow
 import kotlinx.coroutines.flow.flow
@@ -92,10 +87,12 @@
     return when (recordType) {
         BloodPressureRecord::class ->
             aggregateBloodPressure(recordTypeMetrics, timeRangeFilter, dataOriginFilter)
-        CyclingPedalingCadenceRecord::class -> TODO(reason = "b/326414908")
+        CyclingPedalingCadenceRecord::class ->
+            aggregateCyclingPedalingCadence(recordTypeMetrics, timeRangeFilter, dataOriginFilter)
         NutritionRecord::class -> aggregateNutritionTransFatTotal(timeRangeFilter, dataOriginFilter)
-        SpeedRecord::class -> TODO(reason = "b/326414908")
-        StepsCadenceRecord::class -> TODO(reason = "b/326414908")
+        SpeedRecord::class -> aggregateSpeed(recordTypeMetrics, timeRangeFilter, dataOriginFilter)
+        StepsCadenceRecord::class ->
+            aggregateStepsCadence(recordTypeMetrics, timeRangeFilter, dataOriginFilter)
         else -> error("Invalid record type for aggregation fallback: $recordType")
     }
 }
@@ -156,26 +153,14 @@
     )
 }
 
-internal fun sliceFactor(record: NutritionRecord, timeRangeFilter: TimeRangeFilter): Double {
-    val startTime: Instant
-    val endTime: Instant
-
-    if (timeRangeFilter.useLocalTime()) {
-        val requestStartTime =
-            timeRangeFilter.localStartTime?.toInstantWithDefaultZoneFallback(record.startZoneOffset)
-        val requestEndTime =
-            timeRangeFilter.localEndTime?.toInstantWithDefaultZoneFallback(record.endZoneOffset)
-        startTime = maxOf(record.startTime, requestStartTime ?: record.startTime)
-        endTime = minOf(record.endTime, requestEndTime ?: record.endTime)
-    } else {
-        startTime = maxOf(record.startTime, timeRangeFilter.startTime ?: record.startTime)
-        endTime = minOf(record.endTime, timeRangeFilter.endTime ?: record.endTime)
-    }
-
-    return max(0.0, (endTime - startTime) / record.duration)
-}
-
 internal fun emptyAggregationResult() =
     AggregationResult(longValues = mapOf(), doubleValues = mapOf(), dataOrigins = setOf())
 
-class AggregatedData<T>(var value: T, var dataOrigins: MutableSet<DataOrigin> = mutableSetOf())
+internal data class AvgData(var count: Int = 0, var total: Double = 0.0) {
+    operator fun plusAssign(value: Double) {
+        count++
+        total += value
+    }
+
+    fun average() = total / count
+}
diff --git a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/NutritionAggregationExtensions.kt b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/NutritionAggregationExtensions.kt
new file mode 100644
index 0000000..56a255c
--- /dev/null
+++ b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/NutritionAggregationExtensions.kt
@@ -0,0 +1,87 @@
+/*
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+@file:RequiresApi(api = 34)
+
+package androidx.health.connect.client.impl.platform.aggregate
+
+import androidx.annotation.RequiresApi
+import androidx.health.connect.client.HealthConnectClient
+import androidx.health.connect.client.aggregate.AggregationResult
+import androidx.health.connect.client.impl.platform.div
+import androidx.health.connect.client.impl.platform.duration
+import androidx.health.connect.client.impl.platform.minus
+import androidx.health.connect.client.impl.platform.toInstantWithDefaultZoneFallback
+import androidx.health.connect.client.impl.platform.useLocalTime
+import androidx.health.connect.client.records.IntervalRecord
+import androidx.health.connect.client.records.NutritionRecord
+import androidx.health.connect.client.records.metadata.DataOrigin
+import androidx.health.connect.client.time.TimeRangeFilter
+import java.time.Instant
+import kotlin.math.max
+
+internal suspend fun HealthConnectClient.aggregateNutritionTransFatTotal(
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>
+) = aggregateNutrition(timeRangeFilter, dataOriginFilter, TransFatTotalAggregator(timeRangeFilter))
+
+private suspend fun HealthConnectClient.aggregateNutrition(
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>,
+    aggregator: Aggregator<NutritionRecord>
+): AggregationResult {
+    readRecordsFlow(NutritionRecord::class, timeRangeFilter.withBufferedStart(), dataOriginFilter)
+        .collect { records ->
+            records.filter { it.overlaps(timeRangeFilter) }.forEach { aggregator += it }
+        }
+
+    return aggregator.getResult()
+}
+
+internal fun IntervalRecord.sliceFactor(timeRangeFilter: TimeRangeFilter): Double {
+    val startTime: Instant
+    val endTime: Instant
+
+    if (timeRangeFilter.useLocalTime()) {
+        val requestStartTime =
+            timeRangeFilter.localStartTime?.toInstantWithDefaultZoneFallback(startZoneOffset)
+        val requestEndTime =
+            timeRangeFilter.localEndTime?.toInstantWithDefaultZoneFallback(endZoneOffset)
+        startTime = maxOf(this.startTime, requestStartTime ?: this.startTime)
+        endTime = minOf(this.endTime, requestEndTime ?: this.endTime)
+    } else {
+        startTime = maxOf(this.startTime, timeRangeFilter.startTime ?: this.startTime)
+        endTime = minOf(this.endTime, timeRangeFilter.endTime ?: this.endTime)
+    }
+
+    return max(0.0, (endTime - startTime) / duration)
+}
+
+private class TransFatTotalAggregator(val timeRangeFilter: TimeRangeFilter) :
+    Aggregator<NutritionRecord> {
+    var total = 0.0
+
+    override val dataOrigins = mutableSetOf<DataOrigin>()
+    override val doubleValues: Map<String, Double>
+        get() = mapOf(NutritionRecord.TRANS_FAT_TOTAL.metricKey to total)
+
+    override operator fun plusAssign(value: NutritionRecord) {
+        if (value.transFat != null && value.sliceFactor(timeRangeFilter) > 0) {
+            total += value.transFat.inGrams * value.sliceFactor(timeRangeFilter)
+            dataOrigins += value.metadata.dataOrigin
+        }
+    }
+}
diff --git a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/NutritonAggregationExtensions.kt b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/NutritonAggregationExtensions.kt
deleted file mode 100644
index ae0f2d9..0000000
--- a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/NutritonAggregationExtensions.kt
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright 2024 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-@file:RequiresApi(api = 34)
-
-package androidx.health.connect.client.impl.platform.aggregate
-
-import androidx.annotation.RequiresApi
-import androidx.health.connect.client.HealthConnectClient
-import androidx.health.connect.client.aggregate.AggregationResult
-import androidx.health.connect.client.records.NutritionRecord
-import androidx.health.connect.client.records.metadata.DataOrigin
-import androidx.health.connect.client.time.TimeRangeFilter
-import kotlinx.coroutines.flow.fold
-
-internal suspend fun HealthConnectClient.aggregateNutritionTransFatTotal(
-    timeRangeFilter: TimeRangeFilter,
-    dataOriginFilter: Set<DataOrigin>
-): AggregationResult {
-    val readRecordsFlow =
-        readRecordsFlow(
-            NutritionRecord::class,
-            timeRangeFilter.withBufferedStart(),
-            dataOriginFilter
-        )
-
-    val aggregatedData =
-        readRecordsFlow.fold(AggregatedData(0.0)) { currentAggregatedData, records ->
-            val filteredRecords =
-                records.filter {
-                    it.overlaps(timeRangeFilter) &&
-                        it.transFat != null &&
-                        sliceFactor(it, timeRangeFilter) > 0
-                }
-
-            filteredRecords.forEach {
-                currentAggregatedData.value +=
-                    it.transFat!!.inGrams * sliceFactor(it, timeRangeFilter)
-            }
-
-            filteredRecords.mapTo(currentAggregatedData.dataOrigins) { it.metadata.dataOrigin }
-            currentAggregatedData
-        }
-
-    if (aggregatedData.dataOrigins.isEmpty()) {
-        return emptyAggregationResult()
-    }
-
-    return AggregationResult(
-        longValues = mapOf(),
-        doubleValues = mapOf(NutritionRecord.TRANS_FAT_TOTAL.metricKey to aggregatedData.value),
-        dataOrigins = aggregatedData.dataOrigins
-    )
-}
diff --git a/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/SeriesRecordAggregationExtensions.kt b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/SeriesRecordAggregationExtensions.kt
new file mode 100644
index 0000000..012c46d
--- /dev/null
+++ b/health/connect/connect-client/src/main/java/androidx/health/connect/client/impl/platform/aggregate/SeriesRecordAggregationExtensions.kt
@@ -0,0 +1,240 @@
+/*
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+@file:RequiresApi(api = 34)
+
+package androidx.health.connect.client.impl.platform.aggregate
+
+import androidx.annotation.RequiresApi
+import androidx.annotation.VisibleForTesting
+import androidx.health.connect.client.HealthConnectClient
+import androidx.health.connect.client.aggregate.AggregateMetric
+import androidx.health.connect.client.aggregate.AggregationResult
+import androidx.health.connect.client.impl.platform.toInstantWithDefaultZoneFallback
+import androidx.health.connect.client.impl.platform.useLocalTime
+import androidx.health.connect.client.records.CyclingPedalingCadenceRecord
+import androidx.health.connect.client.records.SeriesRecord
+import androidx.health.connect.client.records.SpeedRecord
+import androidx.health.connect.client.records.StepsCadenceRecord
+import androidx.health.connect.client.records.metadata.DataOrigin
+import androidx.health.connect.client.time.TimeRangeFilter
+import java.time.Instant
+import java.time.ZoneOffset
+import kotlin.math.max
+import kotlin.math.min
+import kotlin.reflect.KClass
+
+private val RECORDS_TO_AGGREGATE_METRICS_INFO_MAP =
+    mapOf(
+        CyclingPedalingCadenceRecord::class to
+            AggregateMetricsInfo(
+                averageMetric = CyclingPedalingCadenceRecord.RPM_AVG,
+                maxMetric = CyclingPedalingCadenceRecord.RPM_MAX,
+                minMetric = CyclingPedalingCadenceRecord.RPM_MIN
+            ),
+        SpeedRecord::class to
+            AggregateMetricsInfo(
+                averageMetric = SpeedRecord.SPEED_AVG,
+                maxMetric = SpeedRecord.SPEED_MAX,
+                minMetric = SpeedRecord.SPEED_MIN
+            ),
+        StepsCadenceRecord::class to
+            AggregateMetricsInfo(
+                averageMetric = StepsCadenceRecord.RATE_AVG,
+                maxMetric = StepsCadenceRecord.RATE_MAX,
+                minMetric = StepsCadenceRecord.RATE_MIN
+            )
+    )
+
+internal suspend fun HealthConnectClient.aggregateCyclingPedalingCadence(
+    metrics: Set<AggregateMetric<*>>,
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>
+) =
+    aggregateSeriesRecord(
+        recordType = CyclingPedalingCadenceRecord::class,
+        aggregateMetrics = metrics,
+        timeRangeFilter = timeRangeFilter,
+        dataOriginFilter = dataOriginFilter
+    ) {
+        samples.map { SampleInfo(time = it.time, value = it.revolutionsPerMinute) }
+    }
+
+internal suspend fun HealthConnectClient.aggregateSpeed(
+    metrics: Set<AggregateMetric<*>>,
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>
+) =
+    aggregateSeriesRecord(
+        recordType = SpeedRecord::class,
+        aggregateMetrics = metrics,
+        timeRangeFilter = timeRangeFilter,
+        dataOriginFilter = dataOriginFilter
+    ) {
+        samples.map { SampleInfo(time = it.time, value = it.speed.inMetersPerSecond) }
+    }
+
+internal suspend fun HealthConnectClient.aggregateStepsCadence(
+    metrics: Set<AggregateMetric<*>>,
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>
+) =
+    aggregateSeriesRecord(
+        recordType = StepsCadenceRecord::class,
+        aggregateMetrics = metrics,
+        timeRangeFilter = timeRangeFilter,
+        dataOriginFilter = dataOriginFilter
+    ) {
+        samples.map { SampleInfo(time = it.time, value = it.rate) }
+    }
+
+@VisibleForTesting
+internal suspend fun <T : SeriesRecord<*>> HealthConnectClient.aggregateSeriesRecord(
+    recordType: KClass<T>,
+    aggregateMetrics: Set<AggregateMetric<*>>,
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>,
+    getSampleInfo: T.() -> List<SampleInfo>
+) =
+    aggregateSeriesRecord(
+        recordType,
+        timeRangeFilter,
+        dataOriginFilter,
+        SeriesAggregator(recordType, aggregateMetrics),
+        getSampleInfo
+    )
+
+private suspend fun <T : SeriesRecord<*>> HealthConnectClient.aggregateSeriesRecord(
+    recordType: KClass<T>,
+    timeRangeFilter: TimeRangeFilter,
+    dataOriginFilter: Set<DataOrigin>,
+    aggregator: Aggregator<RecordInfo>,
+    getSampleInfo: T.() -> List<SampleInfo>
+): AggregationResult {
+    val readRecordsFlow =
+        readRecordsFlow(recordType, timeRangeFilter.withBufferedStart(), dataOriginFilter)
+
+    readRecordsFlow.collect { records ->
+        records
+            .asSequence()
+            .map {
+                RecordInfo(
+                    dataOrigin = it.metadata.dataOrigin,
+                    samples =
+                        it.getSampleInfo().filter { sample ->
+                            sample.isWithin(
+                                timeRangeFilter = timeRangeFilter,
+                                zoneOffset = it.startZoneOffset
+                            )
+                        }
+                )
+            }
+            .filter { it.samples.isNotEmpty() }
+            .forEach { recordInfo -> aggregator += recordInfo }
+    }
+
+    return aggregator.getResult()
+}
+
+private class SeriesAggregator<T : SeriesRecord<*>>(
+    recordType: KClass<T>,
+    val aggregateMetrics: Set<AggregateMetric<*>>
+) : Aggregator<RecordInfo> {
+
+    val avgData = AvgData()
+    var min: Double? = null
+    var max: Double? = null
+
+    override val dataOrigins = mutableSetOf<DataOrigin>()
+
+    override val doubleValues: Map<String, Double>
+        get() = buildMap {
+            for (metric in aggregateMetrics) {
+                val result =
+                    when (metric) {
+                        aggregateInfo.averageMetric -> avgData.average()
+                        aggregateInfo.maxMetric -> max!!
+                        aggregateInfo.minMetric -> min!!
+                        else -> error("Invalid fallback aggregation metric ${metric.metricKey}")
+                    }
+                put(metric.metricKey, result)
+            }
+        }
+
+    val aggregateInfo =
+        RECORDS_TO_AGGREGATE_METRICS_INFO_MAP[recordType]
+            ?: throw IllegalArgumentException("Non supported fallback series record $recordType")
+
+    init {
+        check(
+            setOf(aggregateInfo.averageMetric, aggregateInfo.minMetric, aggregateInfo.maxMetric)
+                .containsAll(aggregateMetrics)
+        ) {
+            "Invalid set of metrics ${aggregateMetrics.map { it.metricKey }}"
+        }
+    }
+
+    override fun plusAssign(value: RecordInfo) {
+        value.samples.forEach {
+            avgData += it.value
+            min = min(min ?: it.value, it.value)
+            max = max(max ?: it.value, it.value)
+        }
+        dataOrigins += value.dataOrigin
+    }
+}
+
+@VisibleForTesting
+internal data class AggregateMetricsInfo<T : Any>(
+    val averageMetric: AggregateMetric<T>,
+    val minMetric: AggregateMetric<T>,
+    val maxMetric: AggregateMetric<T>
+)
+
+@VisibleForTesting
+internal data class RecordInfo(val dataOrigin: DataOrigin, val samples: List<SampleInfo>)
+
+@VisibleForTesting
+internal data class SampleInfo(val time: Instant, val value: Double) {
+    fun isWithin(timeRangeFilter: TimeRangeFilter, zoneOffset: ZoneOffset?): Boolean {
+        if (timeRangeFilter.useLocalTime()) {
+            if (
+                timeRangeFilter.localStartTime != null &&
+                    time.isBefore(
+                        timeRangeFilter.localStartTime.toInstantWithDefaultZoneFallback(zoneOffset)
+                    )
+            ) {
+                return false
+            }
+            if (
+                timeRangeFilter.localEndTime != null &&
+                    !time.isBefore(
+                        timeRangeFilter.localEndTime.toInstantWithDefaultZoneFallback(zoneOffset)
+                    )
+            ) {
+                return false
+            }
+            return true
+        }
+        if (timeRangeFilter.startTime != null && time.isBefore(timeRangeFilter.startTime)) {
+            return false
+        }
+        if (timeRangeFilter.endTime != null && !time.isBefore(timeRangeFilter.endTime)) {
+            return false
+        }
+        return true
+    }
+}
diff --git a/leanback/leanback/src/main/java/androidx/leanback/widget/SearchBar.java b/leanback/leanback/src/main/java/androidx/leanback/widget/SearchBar.java
index 7f78041..62fd54a 100644
--- a/leanback/leanback/src/main/java/androidx/leanback/widget/SearchBar.java
+++ b/leanback/leanback/src/main/java/androidx/leanback/widget/SearchBar.java
@@ -498,7 +498,6 @@
         }
     }
 
-    @SuppressWarnings("WrongConstant") // See b/342141577 regarding a source-breaking API change.
     void hideNativeKeyboard() {
         mInputMethodManager.hideSoftInputFromWindow(mSearchTextEditor.getWindowToken(), 0);
     }
diff --git a/libraryversions.toml b/libraryversions.toml
index c78e416..385c6f9 100644
--- a/libraryversions.toml
+++ b/libraryversions.toml
@@ -12,11 +12,11 @@
 BLUETOOTH = "1.0.0-alpha02"
 BROWSER = "1.9.0-alpha01"
 BUILDSRC_TESTS = "1.0.0-alpha01"
-CAMERA = "1.4.0-beta01"
+CAMERA = "1.4.0-beta02"
 CAMERA_PIPE = "1.0.0-alpha01"
 CAMERA_TESTING = "1.0.0-alpha01"
-CAMERA_VIEWFINDER = "1.4.0-alpha06"
-CAMERA_VIEWFINDER_COMPOSE = "1.0.0-alpha01"
+CAMERA_VIEWFINDER = "1.4.0-alpha07"
+CAMERA_VIEWFINDER_COMPOSE = "1.0.0-alpha02"
 CARDVIEW = "1.1.0-alpha01"
 CAR_APP = "1.7.0-alpha02"
 COLLECTION = "1.5.0-alpha01"
@@ -69,7 +69,7 @@
 GRAPHICS_CORE = "1.0.0"
 GRAPHICS_FILTERS = "1.0.0-alpha01"
 GRAPHICS_PATH = "1.0.0-rc01"
-GRAPHICS_SHAPES = "1.0.0-beta01"
+GRAPHICS_SHAPES = "1.0.0-rc01"
 GRIDLAYOUT = "1.1.0-beta02"
 HEALTH_CONNECT = "1.1.0-alpha08"
 HEALTH_SERVICES_CLIENT = "1.1.0-alpha03"
@@ -116,7 +116,7 @@
 RECYCLERVIEW_SELECTION = "1.2.0-alpha02"
 REMOTECALLBACK = "1.0.0-alpha02"
 RESOURCEINSPECTION = "1.1.0-alpha01"
-ROOM = "2.7.0-alpha03"
+ROOM = "2.7.0-alpha04"
 SAFEPARCEL = "1.0.0-alpha01"
 SAVEDSTATE = "1.3.0-alpha01"
 SECURITY = "1.1.0-alpha07"
@@ -132,7 +132,7 @@
 SLICE_BUILDERS_KTX = "1.0.0-alpha09"
 SLICE_REMOTECALLBACK = "1.0.0-alpha01"
 SLIDINGPANELAYOUT = "1.3.0-alpha01"
-SQLITE = "2.5.0-alpha03"
+SQLITE = "2.5.0-alpha04"
 SQLITE_INSPECTOR = "2.1.0-alpha01"
 STABLE_AIDL = "1.0.0-alpha01"
 STARTUP = "1.2.0-alpha03"
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/AndroidFragment.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/AndroidFragment.kt
index 41d82a2..7fc13c0 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/AndroidFragment.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/AndroidFragment.kt
@@ -31,9 +31,7 @@
 import androidx.fragment.app.Fragment
 import androidx.navigation.fragment.findNavController
 
-/**
- * Fragment used to show how to deep link to a destination
- */
+/** Fragment used to show how to deep link to a destination */
 class AndroidFragment : Fragment() {
     override fun onCreateView(
         inflater: LayoutInflater,
@@ -51,31 +49,32 @@
         val b = view.findViewById<Button>(R.id.send_notification)
         b.setOnClickListener {
             val editArgs = view.findViewById<EditText>(R.id.edit_args)
-            val args = Bundle().apply {
-                putString("myarg", editArgs.text.toString())
-            }
-            val deeplink = findNavController().createDeepLink()
-                .setDestination(R.id.android)
-                .setArguments(args)
-                .createPendingIntent()
-            val notificationManager = requireContext().getSystemService(
-                Context.NOTIFICATION_SERVICE
-            ) as NotificationManager
+            val args = Bundle().apply { putString("myarg", editArgs.text.toString()) }
+            val deeplink =
+                findNavController()
+                    .createDeepLink()
+                    .setDestination(R.id.android)
+                    .setArguments(args)
+                    .createPendingIntent()
+            val notificationManager =
+                requireContext().getSystemService(Context.NOTIFICATION_SERVICE)
+                    as NotificationManager
             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                 notificationManager.createNotificationChannel(
                     NotificationChannel(
-                        "deeplink", "Deep Links", NotificationManager.IMPORTANCE_HIGH
+                        "deeplink",
+                        "Deep Links",
+                        NotificationManager.IMPORTANCE_HIGH
                     )
                 )
             }
-            val builder = NotificationCompat.Builder(
-                requireContext(), "deeplink"
-            )
-                .setContentTitle("Navigation")
-                .setContentText("Deep link to Android")
-                .setSmallIcon(R.drawable.ic_android)
-                .setContentIntent(deeplink)
-                .setAutoCancel(true)
+            val builder =
+                NotificationCompat.Builder(requireContext(), "deeplink")
+                    .setContentTitle("Navigation")
+                    .setContentText("Deep link to Android")
+                    .setSmallIcon(R.drawable.ic_android)
+                    .setContentIntent(deeplink)
+                    .setAutoCancel(true)
             notificationManager.notify(0, builder.build())
         }
     }
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/DeepLinkAppWidgetProvider.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/DeepLinkAppWidgetProvider.kt
index 118b869..ad2dc77 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/DeepLinkAppWidgetProvider.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/DeepLinkAppWidgetProvider.kt
@@ -23,28 +23,22 @@
 import android.widget.RemoteViews
 import androidx.navigation.NavDeepLinkBuilder
 
-/**
- * App Widget that deep links you to the [AndroidFragment].
- */
+/** App Widget that deep links you to the [AndroidFragment]. */
 class DeepLinkAppWidgetProvider : AppWidgetProvider() {
     override fun onUpdate(
         context: Context,
         appWidgetManager: AppWidgetManager,
         appWidgetIds: IntArray
     ) {
-        val remoteViews = RemoteViews(
-            context.packageName,
-            R.layout.deep_link_appwidget
-        )
+        val remoteViews = RemoteViews(context.packageName, R.layout.deep_link_appwidget)
 
-        val args = Bundle().apply {
-            putString("myarg", "From Widget")
-        }
-        val pendingIntent = NavDeepLinkBuilder(context)
-            .setGraph(R.navigation.nav_main)
-            .setDestination(R.id.android)
-            .setArguments(args)
-            .createPendingIntent()
+        val args = Bundle().apply { putString("myarg", "From Widget") }
+        val pendingIntent =
+            NavDeepLinkBuilder(context)
+                .setGraph(R.navigation.nav_main)
+                .setDestination(R.id.android)
+                .setArguments(args)
+                .createPendingIntent()
 
         remoteViews.setOnClickPendingIntent(R.id.deep_link, pendingIntent)
         appWidgetManager.updateAppWidget(appWidgetIds, remoteViews)
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/HelpActivity.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/HelpActivity.kt
index e1ed377..a0d03e8 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/HelpActivity.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/HelpActivity.kt
@@ -36,8 +36,8 @@
 import com.google.android.material.navigation.NavigationView
 
 /**
- * Simple 'Help' activity that shows the data URI passed to it. In a real world app, it would
- * load the chosen help article, etc.
+ * Simple 'Help' activity that shows the data URI passed to it. In a real world app, it would load
+ * the chosen help article, etc.
  */
 class HelpActivity : AppCompatActivity() {
 
@@ -86,18 +86,20 @@
         container: ViewGroup?,
         savedInstanceState: Bundle?
     ): View? {
-        val navigationView = requireActivity().layoutInflater
-            .inflate(R.layout.bottom_bar_menu, container, false) as NavigationView
+        val navigationView =
+            requireActivity().layoutInflater.inflate(R.layout.bottom_bar_menu, container, false)
+                as NavigationView
 
         // Add a fake Navigation Graph just to test out the behavior but not
         // actually navigate anywhere
         navigationView.setupWithNavController(
             NavController(requireContext()).apply {
                 navigatorProvider.addNavigator(TestNavigator())
-                graph = createGraph(startDestination = R.id.launcher_home) {
-                    test(R.id.launcher_home)
-                    test(R.id.android)
-                }
+                graph =
+                    createGraph(startDestination = R.id.launcher_home) {
+                        test(R.id.launcher_home)
+                        test(R.id.android)
+                    }
             }
         )
         return navigationView
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/LeafFragment.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/LeafFragment.kt
index 26e7638..c5f5e3b 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/LeafFragment.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/LeafFragment.kt
@@ -23,9 +23,7 @@
 import android.widget.TextView
 import androidx.fragment.app.Fragment
 
-/**
- * Fragment used to show arguments to a nested Deep Link
- */
+/** Fragment used to show arguments to a nested Deep Link */
 class LeafFragment : Fragment() {
 
     override fun onCreateView(
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/MainFragment.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/MainFragment.kt
index e820bfe..d41f0ff 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/MainFragment.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/MainFragment.kt
@@ -30,9 +30,7 @@
 import androidx.navigation.fragment.findNavController
 import androidx.transition.Slide
 
-/**
- * Fragment used to show how to navigate to another destination
- */
+/** Fragment used to show how to navigate to another destination */
 class MainFragment : Fragment() {
 
     override fun onCreateView(
@@ -70,15 +68,11 @@
         val b = view.findViewById<Button>(R.id.next_button)
         ViewCompat.setTransitionName(b, "next")
         b.setOnClickListener {
-            findNavController().navigate(
-                R.id.next, null, null,
-                FragmentNavigatorExtras(b to "next")
-            )
+            findNavController()
+                .navigate(R.id.next, null, null, FragmentNavigatorExtras(b to "next"))
         }
         view.findViewById<Button>(R.id.learn_more).setOnClickListener {
-            val args = Bundle().apply {
-                putString("myarg", myarg)
-            }
+            val args = Bundle().apply { putString("myarg", myarg) }
             findNavController().navigate(R.id.learn_more, args, null)
         }
     }
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/NavigationActivity.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/NavigationActivity.kt
index a2d4835..60e1132 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/NavigationActivity.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/NavigationActivity.kt
@@ -32,16 +32,14 @@
 import com.google.android.material.bottomnavigation.BottomNavigationView
 import com.google.android.material.navigation.NavigationView
 
-/**
- * A simple activity demonstrating use of a NavHostFragment with a navigation drawer.
- */
+/** A simple activity demonstrating use of a NavHostFragment with a navigation drawer. */
 class NavigationActivity : AppCompatActivity(R.layout.navigation_activity) {
 
     override fun onCreate(savedInstanceState: Bundle?) {
         super.onCreate(savedInstanceState)
 
-        val navHostFragment = supportFragmentManager.findFragmentById(R.id.my_nav_host_fragment)
-            as NavHostFragment
+        val navHostFragment =
+            supportFragmentManager.findFragmentById(R.id.my_nav_host_fragment) as NavHostFragment
         val navController = navHostFragment.navController
 
         val toolbar = findViewById<Toolbar>(R.id.toolbar)
@@ -49,10 +47,7 @@
         toolbar.setupWithNavController(
             navController,
             AppBarConfiguration(
-                setOf(
-                    R.id.main,
-                    R.id.android_main
-                ),
+                setOf(R.id.main, R.id.android_main),
                 drawerLayout,
                 ::onSupportNavigateUp
             )
@@ -69,17 +64,20 @@
                 when (item.itemId) {
                     R.id.help_activity -> {
                         navController.navigate(
-                            R.id.help_activity, null, null,
+                            R.id.help_activity,
+                            null,
+                            null,
                             ActivityNavigatorExtras(
-                                ActivityOptionsCompat
-                                    .makeSceneTransitionAnimation(
-                                        this,
-                                        toolbar, "toolbar"
-                                    )
+                                ActivityOptionsCompat.makeSceneTransitionAnimation(
+                                    this,
+                                    toolbar,
+                                    "toolbar"
+                                )
                             )
                         )
                         true
-                    } else -> NavigationUI.onNavDestinationSelected(item, navController)
+                    }
+                    else -> NavigationUI.onNavDestinationSelected(item, navController)
                 }
             }
         }
@@ -88,11 +86,12 @@
         bottomNavView?.setupWithNavController(navController)
 
         navController.addOnDestinationChangedListener { _, destination, _ ->
-            val dest: String = try {
-                resources.getResourceName(destination.id)
-            } catch (e: Resources.NotFoundException) {
-                Integer.toString(destination.id)
-            }
+            val dest: String =
+                try {
+                    resources.getResourceName(destination.id)
+                } catch (e: Resources.NotFoundException) {
+                    Integer.toString(destination.id)
+                }
 
             Toast.makeText(this, "Navigated to $dest", Toast.LENGTH_SHORT).show()
             Log.d("NavigationActivity", "Navigated to $dest")
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneAdapter.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneAdapter.kt
index 1a177e5..1e48a90 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneAdapter.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneAdapter.kt
@@ -32,25 +32,17 @@
         val textView: TextView = view.findViewById(R.id.list_pane_row_item)
 
         init {
-            textView.setOnClickListener {
-                onClick(textView.text)
-            }
+            textView.setOnClickListener { onClick(textView.text) }
         }
     }
 
-    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): TwoPaneAdapter
-    .ViewHolder {
-        val view = LayoutInflater.from(parent.context).inflate(
-            R.layout.list_pane_row_item, parent,
-            false
-        )
+    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): TwoPaneAdapter.ViewHolder {
+        val view =
+            LayoutInflater.from(parent.context).inflate(R.layout.list_pane_row_item, parent, false)
         return ViewHolder(view, onClick)
     }
 
-    override fun onBindViewHolder(
-        holder: ViewHolder,
-        position: Int
-    ) {
+    override fun onBindViewHolder(holder: ViewHolder, position: Int) {
         holder.textView.text = dataSet[position]
     }
 
diff --git a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneFragment.kt b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneFragment.kt
index 10591a8..5780aff 100644
--- a/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneFragment.kt
+++ b/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/TwoPaneFragment.kt
@@ -42,9 +42,10 @@
     override fun onListPaneViewCreated(view: View, savedInstanceState: Bundle?) {
         super.onListPaneViewCreated(view, savedInstanceState)
         val recyclerView = view as RecyclerView
-        recyclerView.adapter = TwoPaneAdapter(map.keys.toTypedArray()) {
-            map[it]?.let { destId -> openDetails(destId) }
-        }
+        recyclerView.adapter =
+            TwoPaneAdapter(map.keys.toTypedArray()) {
+                map[it]?.let { destId -> openDetails(destId) }
+            }
     }
 
     private fun openDetails(destinationId: Int) {
@@ -66,12 +67,13 @@
     }
 
     companion object {
-        val map = mapOf(
-            "first" to R.id.first_fragment,
-            "second" to R.id.second_fragment,
-            "third" to R.id.third_fragment,
-            "fourth" to R.id.fourth_fragment,
-            "fifth" to R.id.fifth_fragment
-        )
+        val map =
+            mapOf(
+                "first" to R.id.first_fragment,
+                "second" to R.id.second_fragment,
+                "third" to R.id.third_fragment,
+                "fourth" to R.id.fourth_fragment,
+                "fifth" to R.id.fifth_fragment
+            )
     }
 }
diff --git a/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDeepLinkBenchmark.kt b/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDeepLinkBenchmark.kt
index 2759419..a86f741 100644
--- a/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDeepLinkBenchmark.kt
+++ b/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDeepLinkBenchmark.kt
@@ -26,30 +26,28 @@
 @RunWith(AndroidJUnit4::class)
 class NavDeepLinkBenchmark {
 
-    @get:Rule
-    val benchmarkRule = BenchmarkRule()
+    @get:Rule val benchmarkRule = BenchmarkRule()
 
-    @Test
-    fun navGraphDestinations_withRoutes() = inflateNavGraph_withRoutes(1)
+    @Test fun navGraphDestinations_withRoutes() = inflateNavGraph_withRoutes(1)
 
-    @Test
-    fun navGraphDestinations_withRoutes10() = inflateNavGraph_withRoutes(10)
+    @Test fun navGraphDestinations_withRoutes10() = inflateNavGraph_withRoutes(10)
 
-    @Test
-    fun navGraphDestinations_withRoutes50() = inflateNavGraph_withRoutes(50)
+    @Test fun navGraphDestinations_withRoutes50() = inflateNavGraph_withRoutes(50)
 
-    @Test
-    fun navGraphDestinations_withRoutes100() = inflateNavGraph_withRoutes(100)
+    @Test fun navGraphDestinations_withRoutes100() = inflateNavGraph_withRoutes(100)
 
     private fun inflateNavGraph_withRoutes(count: Int) {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
+            }
         val navigator = navigatorProvider.getNavigator(NoOpNavigator::class.java)
         benchmarkRule.measureRepeated {
-            navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-                .createDestination().apply {
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
                     id = GRAPH_ID
                     setStartDestination(START_DESTINATION_ID)
                     for (i in 0 until count) {
diff --git a/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDestinationEqualsBenchmark.kt b/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDestinationEqualsBenchmark.kt
index 42bd9b4..0973691 100644
--- a/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDestinationEqualsBenchmark.kt
+++ b/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavDestinationEqualsBenchmark.kt
@@ -28,38 +28,35 @@
 @LargeTest
 class NavDestinationEqualsBenchmark {
 
-    @get:Rule
-    val benchmarkRule = BenchmarkRule()
+    @get:Rule val benchmarkRule = BenchmarkRule()
 
     @Suppress("UnusedEquals")
     @Test
     fun navGraphEquals_100() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
+            }
         val graph1 = navigatorProvider.createGraph(100)
         val graph2 = navigatorProvider.createGraph(100)
-        benchmarkRule.measureRepeated {
-            graph1 == graph2
-        }
+        benchmarkRule.measureRepeated { graph1 == graph2 }
     }
 
-    private fun NavigatorProvider.createGraph(
-        count: Int
-    ) = getNavigator(NavGraphNavigator::class.java).createDestination().apply {
-        id = GRAPH_ID
-        setStartDestination(START_DESTINATION_ID)
-        val navigator = getNavigator(NoOpNavigator::class.java)
-        for (i in 0 until count) {
-            addDestination(
-                navigator.createDestination().apply {
-                    route = URI_PATH + i + URI_EXTRAS
-                    id = i
-                }
-            )
+    private fun NavigatorProvider.createGraph(count: Int) =
+        getNavigator(NavGraphNavigator::class.java).createDestination().apply {
+            id = GRAPH_ID
+            setStartDestination(START_DESTINATION_ID)
+            val navigator = getNavigator(NoOpNavigator::class.java)
+            for (i in 0 until count) {
+                addDestination(
+                    navigator.createDestination().apply {
+                        route = URI_PATH + i + URI_EXTRAS
+                        id = i
+                    }
+                )
+            }
         }
-    }
 
     companion object {
         const val URI_PATH = "example.com/"
diff --git a/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavInflaterBenchmark.kt b/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavInflaterBenchmark.kt
index 846ed2a..7e4384b 100644
--- a/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavInflaterBenchmark.kt
+++ b/navigation/navigation-benchmark/src/androidTest/java/androidx/navigation/NavInflaterBenchmark.kt
@@ -30,8 +30,7 @@
 @LargeTest
 class NavInflaterBenchmark {
 
-    @get:Rule
-    val benchmarkRule = BenchmarkRule()
+    @get:Rule val benchmarkRule = BenchmarkRule()
 
     private val context = ApplicationProvider.getApplicationContext() as android.content.Context
 
diff --git a/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetector.kt b/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetector.kt
index b4596ff..f99ff85 100644
--- a/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetector.kt
+++ b/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetector.kt
@@ -32,26 +32,26 @@
 import org.jetbrains.uast.ULambdaExpression
 
 /**
- * Lint for checking for empty construction of NavDeepLink in the Kotlin DSL,
- * i.e. navDeepLink { }
+ * Lint for checking for empty construction of NavDeepLink in the Kotlin DSL, i.e. navDeepLink { }
  */
 class EmptyNavDeepLinkDetector : Detector(), SourceCodeScanner {
     companion object {
-        val EmptyNavDeepLink = Issue.create(
-            id = "EmptyNavDeepLink",
-            briefDescription = "NavDeepLink must define an uri, action, and/or mimetype to be " +
-                "valid.",
-            explanation = "Attempting to create an empty NavDeepLink will result in an " +
-                "IllegalStateException at runtime. You may set these arguments within the lambda " +
-                "of the call to navDeepLink.",
-            category = Category.CORRECTNESS,
-            severity = Severity.ERROR,
-            implementation = Implementation(
-                EmptyNavDeepLinkDetector::class.java,
-                Scope.JAVA_FILE_SCOPE
+        val EmptyNavDeepLink =
+            Issue.create(
+                id = "EmptyNavDeepLink",
+                briefDescription =
+                    "NavDeepLink must define an uri, action, and/or mimetype to be " + "valid.",
+                explanation =
+                    "Attempting to create an empty NavDeepLink will result in an " +
+                        "IllegalStateException at runtime. You may set these arguments within the lambda " +
+                        "of the call to navDeepLink.",
+                category = Category.CORRECTNESS,
+                severity = Severity.ERROR,
+                implementation =
+                    Implementation(EmptyNavDeepLinkDetector::class.java, Scope.JAVA_FILE_SCOPE)
             )
-        )
     }
+
     override fun getApplicableMethodNames(): List<String> = listOf("navDeepLink")
 
     override fun visitMethodCall(context: JavaContext, node: UCallExpression, method: PsiMethod) {
diff --git a/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/NavigationCommonIssueRegistry.kt b/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/NavigationCommonIssueRegistry.kt
index f5a5d52..4b6682e 100644
--- a/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/NavigationCommonIssueRegistry.kt
+++ b/navigation/navigation-common-lint/src/main/java/androidx/navigation/common/lint/NavigationCommonIssueRegistry.kt
@@ -22,19 +22,18 @@
 import com.android.tools.lint.client.api.Vendor
 import com.android.tools.lint.detector.api.CURRENT_API
 
-/**
- * [IssueRegistry] containing common specific lint issues.
- */
+/** [IssueRegistry] containing common specific lint issues. */
 class NavigationCommonIssueRegistry : IssueRegistry() {
     // Tests are run with this version. We ensure that with ApiLintVersionsTest
     override val api = 14
     override val minApi = CURRENT_API
-    override val issues get() = listOf(
-        EmptyNavDeepLinkDetector.EmptyNavDeepLink
-    )
-    override val vendor = Vendor(
-        feedbackUrl = "https://issuetracker.google.com/issues/new?component=409828",
-        vendorName = "Android Open Source Project",
-        identifier = "androidx.navigation.common"
-    )
+    override val issues
+        get() = listOf(EmptyNavDeepLinkDetector.EmptyNavDeepLink)
+
+    override val vendor =
+        Vendor(
+            feedbackUrl = "https://issuetracker.google.com/issues/new?component=409828",
+            vendorName = "Android Open Source Project",
+            identifier = "androidx.navigation.common"
+        )
 }
diff --git a/navigation/navigation-common-lint/src/test/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetectorTest.kt b/navigation/navigation-common-lint/src/test/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetectorTest.kt
index dc24fed..6e9be59 100644
--- a/navigation/navigation-common-lint/src/test/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetectorTest.kt
+++ b/navigation/navigation-common-lint/src/test/java/androidx/navigation/common/lint/EmptyNavDeepLinkDetectorTest.kt
@@ -30,9 +30,10 @@
 
     @Test
     fun testNoErrors() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                        """
                 package com.example
 
                 import androidx.navigation.navDeepLink
@@ -51,16 +52,20 @@
                     }
                 }
                 """
-            ).indented(),
-            navDeepLinkStub
-        ).run().expectClean()
+                    )
+                    .indented(),
+                navDeepLinkStub
+            )
+            .run()
+            .expectClean()
     }
 
     @Test
     fun testErrors() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                        """
                 package com.example
 
                 import androidx.navigation.navDeepLink
@@ -69,23 +74,27 @@
                     navDeepLink { }
                 }
                 """
-            ).indented(),
-            navDeepLinkStub
-        ).run().expect(
-            """
+                    )
+                    .indented(),
+                navDeepLinkStub
+            )
+            .run()
+            .expect(
+                """
 src/com/example/test.kt:6: Error: Creation of empty NavDeepLink [EmptyNavDeepLink]
     navDeepLink { }
     ~~~~~~~~~~~
 1 errors, 0 warnings
             """
-        )
+            )
     }
 
     @Test
     fun testErrorsWithComment() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                        """
                 package com.example
 
                 import androidx.navigation.navDeepLink
@@ -94,23 +103,28 @@
                     navDeepLink { /* comment */ }
                 }
                 """
-            ).indented(),
-            navDeepLinkStub
-        ).run().expect(
-            """
+                    )
+                    .indented(),
+                navDeepLinkStub
+            )
+            .run()
+            .expect(
+                """
 src/com/example/test.kt:6: Error: Creation of empty NavDeepLink [EmptyNavDeepLink]
     navDeepLink { /* comment */ }
     ~~~~~~~~~~~
 1 errors, 0 warnings
             """
-        )
+            )
     }
 
-    private val navDeepLinkStub: TestFile = kotlin(
-        """
+    private val navDeepLinkStub: TestFile =
+        kotlin(
+                """
 package androidx.navigation
 
 public fun navDeepLink(deepLinkBuilder: NavDeepLinkDslBuilder.() -> Unit): NavDeepLink {}
         """
-    ).indented()
+            )
+            .indented()
 }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/AddInDefaultArgsTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/AddInDefaultArgsTest.kt
index 4e5d562..bcb8f65 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/AddInDefaultArgsTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/AddInDefaultArgsTest.kt
@@ -50,49 +50,53 @@
     companion object {
         @JvmStatic
         @Parameterized.Parameters(name = "arguments={0}, bundle={1}")
-        fun data() = mutableListOf<Array<Any?>>().apply {
-            arrayOf(
-                // Test with an empty set of arguments
-                mapOf(),
-                // Test with an argument with no default value
-                mapOf(stringArgumentWithoutDefault),
-                // Test with arguments where only some have default values
-                mapOf(stringArgumentWithoutDefault, intArgumentWithDefault),
-                // Test with arguments that have default values (int)
-                mapOf(stringArgumentWithDefault, intArgumentWithDefault),
-                // Test with arguments that have default values (float)
-                mapOf(stringArgumentWithDefault, longArgumentWithDefault),
-                // Test with arguments that have default values (long)
-                mapOf(stringArgumentWithDefault, floatArgumentWithDefault),
-                // Test with arguments that have default values (reference)
-                mapOf(stringArgumentWithDefault, referenceArgumentWithDefault),
-                // Test with arguments that have default values (string array)
-                mapOf(stringArgumentWithDefault, stringArrayArgumentWithDefault),
-                // Test with argument that only have unknown default value
-                mapOf(intArgumentWithUnknownDefault),
-                // Test with arguments where only some have unknown default values
-                mapOf(intArgumentWithUnknownDefault, stringArgumentWithDefault)
-
-            ).forEach { arguments: Map<String, NavArgument> ->
-                // Run with a null Bundle
-                add(arrayOf(arguments, Bundle.EMPTY))
-                // Run with a Bundle with a different argument
-                add(arrayOf(arguments, Bundle().apply { putString("customArg", "custom") }))
-                // Run with a Bundle with an overriding argument
-                add(arrayOf(arguments, Bundle().apply { putString("stringArg", "bbb") }))
+        fun data() =
+            mutableListOf<Array<Any?>>().apply {
+                arrayOf(
+                        // Test with an empty set of arguments
+                        mapOf(),
+                        // Test with an argument with no default value
+                        mapOf(stringArgumentWithoutDefault),
+                        // Test with arguments where only some have default values
+                        mapOf(stringArgumentWithoutDefault, intArgumentWithDefault),
+                        // Test with arguments that have default values (int)
+                        mapOf(stringArgumentWithDefault, intArgumentWithDefault),
+                        // Test with arguments that have default values (float)
+                        mapOf(stringArgumentWithDefault, longArgumentWithDefault),
+                        // Test with arguments that have default values (long)
+                        mapOf(stringArgumentWithDefault, floatArgumentWithDefault),
+                        // Test with arguments that have default values (reference)
+                        mapOf(stringArgumentWithDefault, referenceArgumentWithDefault),
+                        // Test with arguments that have default values (string array)
+                        mapOf(stringArgumentWithDefault, stringArrayArgumentWithDefault),
+                        // Test with argument that only have unknown default value
+                        mapOf(intArgumentWithUnknownDefault),
+                        // Test with arguments where only some have unknown default values
+                        mapOf(intArgumentWithUnknownDefault, stringArgumentWithDefault)
+                    )
+                    .forEach { arguments: Map<String, NavArgument> ->
+                        // Run with a null Bundle
+                        add(arrayOf(arguments, Bundle.EMPTY))
+                        // Run with a Bundle with a different argument
+                        add(arrayOf(arguments, Bundle().apply { putString("customArg", "custom") }))
+                        // Run with a Bundle with an overriding argument
+                        add(arrayOf(arguments, Bundle().apply { putString("stringArg", "bbb") }))
+                    }
             }
-        }
     }
 
     @Test
     @Suppress("DEPRECATION")
     fun addInDefaultArgs() {
         val destination = NoOpNavigator().createDestination()
-        arguments.forEach { entry ->
-            destination.addArgument(entry.key, entry.value)
-        }
+        arguments.forEach { entry -> destination.addArgument(entry.key, entry.value) }
 
-        val nullableArgs = if (args != Bundle.EMPTY) { args } else { null }
+        val nullableArgs =
+            if (args != Bundle.EMPTY) {
+                args
+            } else {
+                null
+            }
         val bundle = destination.addInDefaultArgs(nullableArgs)
 
         if (args == Bundle.EMPTY && arguments.isEmpty()) {
@@ -100,21 +104,16 @@
                 .that(bundle)
                 .isNull()
         } else {
-            assertThat(bundle)
-                .isNotNull()
+            assertThat(bundle).isNotNull()
             // Assert that the args take precedence
-            args.keySet()?.forEach { key ->
-                assertThat(bundle!![key])
-                    .isEqualTo(args[key])
-            }
+            args.keySet()?.forEach { key -> assertThat(bundle!![key]).isEqualTo(args[key]) }
             // Assert that arguments with default values not in the args
             // are present in the Bundle
             arguments
                 .filterKeys { !args.containsKey(it) }
                 .filterValues { it.isDefaultValuePresent }
                 .forEach { entry ->
-                    assertThat(bundle!![entry.key])
-                        .isEqualTo(entry.value.defaultValue)
+                    assertThat(bundle!![entry.key]).isEqualTo(entry.value.defaultValue)
                 }
         }
     }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavArgumentTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavArgumentTest.kt
index 202b3b3..7e7f6af 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavArgumentTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavArgumentTest.kt
@@ -27,37 +27,27 @@
     @Suppress("DEPRECATION")
     fun putDefaultValue() {
         val bundle = Bundle()
-        val argument = NavArgument.Builder()
-            .setDefaultValue("abc")
-            .setType(NavType.StringType)
-            .build()
+        val argument =
+            NavArgument.Builder().setDefaultValue("abc").setType(NavType.StringType).build()
         argument.putDefaultValue("name", bundle)
-        assertThat(bundle.get("name"))
-            .isEqualTo("abc")
+        assertThat(bundle.get("name")).isEqualTo("abc")
     }
 
     @Test
     fun verify() {
-        val bundle = Bundle().apply {
-            putString("stringArg", "abc")
-            putInt("intArg", 123)
-            putIntArray("intArrayArg", null)
-        }
+        val bundle =
+            Bundle().apply {
+                putString("stringArg", "abc")
+                putInt("intArg", 123)
+                putIntArray("intArrayArg", null)
+            }
 
-        val stringArgument = NavArgument.Builder()
-            .setType(NavType.StringType)
-            .build()
-        val intArgument = NavArgument.Builder()
-            .setType(NavType.IntType)
-            .build()
-        val intArrArgument = NavArgument.Builder()
-            .setType(NavType.IntArrayType)
-            .setIsNullable(true)
-            .build()
-        val intArrNonNullArgument = NavArgument.Builder()
-            .setType(NavType.IntArrayType)
-            .setIsNullable(false)
-            .build()
+        val stringArgument = NavArgument.Builder().setType(NavType.StringType).build()
+        val intArgument = NavArgument.Builder().setType(NavType.IntType).build()
+        val intArrArgument =
+            NavArgument.Builder().setType(NavType.IntArrayType).setIsNullable(true).build()
+        val intArrNonNullArgument =
+            NavArgument.Builder().setType(NavType.IntArrayType).setIsNullable(false).build()
 
         assertThat(stringArgument.verify("stringArg", bundle)).isTrue()
         assertThat(intArgument.verify("intArg", bundle)).isTrue()
@@ -67,11 +57,12 @@
 
     @Test
     fun setUnknownDefaultValuePresent() {
-        val argument = NavArgument.Builder()
-            .setType(NavType.IntType)
-            .setIsNullable(false)
-            .setUnknownDefaultValuePresent(true)
-            .build()
+        val argument =
+            NavArgument.Builder()
+                .setType(NavType.IntType)
+                .setIsNullable(false)
+                .setUnknownDefaultValuePresent(true)
+                .build()
 
         assertThat(argument.isDefaultValuePresent).isTrue()
         assertThat(argument.isDefaultValueUnknown).isTrue()
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkActionTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkActionTest.kt
index 458a770..52b88b3 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkActionTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkActionTest.kt
@@ -36,12 +36,7 @@
 
         assertWithMessage("The actions should not have matched")
             .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        Uri.parse(DEEP_LINK_EXACT_HTTPS),
-                        null, null
-                    )
-                )
+                deepLink.matches(NavDeepLinkRequest(Uri.parse(DEEP_LINK_EXACT_HTTPS), null, null))
             )
             .isFalse()
     }
@@ -53,10 +48,7 @@
         assertWithMessage("The actions should have matched")
             .that(
                 deepLink.matches(
-                    NavDeepLinkRequest(
-                        Uri.parse(DEEP_LINK_EXACT_HTTPS),
-                        DEEP_LINK_ACTION, null
-                    )
+                    NavDeepLinkRequest(Uri.parse(DEEP_LINK_EXACT_HTTPS), DEEP_LINK_ACTION, null)
                 )
             )
             .isTrue()
@@ -85,10 +77,7 @@
         try {
             NavDeepLink.Builder.fromAction("").build()
         } catch (e: IllegalArgumentException) {
-            assertThat(e)
-                .hasMessageThat().contains(
-                    "The NavDeepLink cannot have an empty action."
-                )
+            assertThat(e).hasMessageThat().contains("The NavDeepLink cannot have an empty action.")
         }
     }
 
@@ -97,10 +86,7 @@
         try {
             NavDeepLink.Builder.fromUriPattern(DEEP_LINK_EXACT_HTTPS).setAction("").build()
         } catch (e: IllegalArgumentException) {
-            assertThat(e)
-                .hasMessageThat().contains(
-                    "The NavDeepLink cannot have an empty action."
-                )
+            assertThat(e).hasMessageThat().contains("The NavDeepLink cannot have an empty action.")
         }
     }
 }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt
index 08434af..de5c6e2 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt
@@ -58,9 +58,8 @@
             fail("NavDeepLink must throw when attempting to build an empty builder.")
         } catch (e: IllegalStateException) {
             assertThat(e)
-                .hasMessageThat().contains(
-                    "The NavDeepLink must have an uri, action, and/or mimeType."
-                )
+                .hasMessageThat()
+                .contains("The NavDeepLink must have an uri, action, and/or mimeType.")
         }
     }
 
@@ -70,10 +69,7 @@
             navDeepLink { action = "" }
             fail("NavDeepLink must throw when attempting to build with an empty action.")
         } catch (e: IllegalArgumentException) {
-            assertThat(e)
-                .hasMessageThat().contains(
-                    "The NavDeepLink cannot have an empty action."
-                )
+            assertThat(e).hasMessageThat().contains("The NavDeepLink cannot have an empty action.")
         }
     }
 
@@ -89,9 +85,7 @@
         assertWithMessage("NavDeepLink should have uri pattern set")
             .that(navDeepLink.uriPattern)
             .isEqualTo(expectedUri)
-        assertWithMessage("NavDeepLink should have action set")
-            .that(navDeepLink.action)
-            .isNull()
+        assertWithMessage("NavDeepLink should have action set").that(navDeepLink.action).isNull()
     }
 
     @Test
@@ -99,10 +93,11 @@
         val expectedUri = "example.com"
         val expectedAction = "test.action"
         val expectedMimeType = "test/type"
-        val navDeepLink = navDeepLink<TestClass>(expectedUri) {
-            action = expectedAction
-            mimeType = expectedMimeType
-        }
+        val navDeepLink =
+            navDeepLink<TestClass>(expectedUri) {
+                action = expectedAction
+                mimeType = expectedMimeType
+            }
         assertWithMessage("NavDeepLink should have uri pattern set")
             .that(navDeepLink.uriPattern)
             .isEqualTo(expectedUri)
@@ -116,16 +111,16 @@
 
     @Test
     fun buildDeepLinkAllSetKClassWithPathArgs() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: String)
+        @Serializable class TestClass(val arg: Int, val arg2: String)
 
         val expectedUri = "example.com"
         val expectedAction = "test.action"
         val expectedMimeType = "test/type"
-        val navDeepLink = navDeepLink<TestClass>(expectedUri) {
-            action = expectedAction
-            mimeType = expectedMimeType
-        }
+        val navDeepLink =
+            navDeepLink<TestClass>(expectedUri) {
+                action = expectedAction
+                mimeType = expectedMimeType
+            }
         assertWithMessage("NavDeepLink should have uri pattern set")
             .that(navDeepLink.uriPattern)
             .isEqualTo("$expectedUri/{arg}/{arg2}")
@@ -139,16 +134,16 @@
 
     @Test
     fun buildDeepLinkAllSetKClassWithQueryArgs() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: String = "default")
+        @Serializable class TestClass(val arg: Int, val arg2: String = "default")
 
         val expectedUri = "example.com"
         val expectedAction = "test.action"
         val expectedMimeType = "test/type"
-        val navDeepLink = navDeepLink<TestClass>(expectedUri) {
-            action = expectedAction
-            mimeType = expectedMimeType
-        }
+        val navDeepLink =
+            navDeepLink<TestClass>(expectedUri) {
+                action = expectedAction
+                mimeType = expectedMimeType
+            }
         assertWithMessage("NavDeepLink should have uri pattern set")
             .that(navDeepLink.uriPattern)
             .isEqualTo("$expectedUri/{arg}?arg2={arg2}")
@@ -182,23 +177,21 @@
         } catch (e: IllegalArgumentException) {
             exception = e
         }
-        assertThat(exception?.message)
-            .isEqualTo("The NavDeepLink cannot have an empty action.")
+        assertThat(exception?.message).isEqualTo("The NavDeepLink cannot have an empty action.")
     }
 
     @Test
     fun buildDeepLinkDoubleActionSetNullKClass() {
         val expectedUri = "www.example.com"
-        val navDeepLink = navDeepLink<TestClass>(expectedUri) {
-            action = "blah"
-            action = null
-        }
+        val navDeepLink =
+            navDeepLink<TestClass>(expectedUri) {
+                action = "blah"
+                action = null
+            }
 
         assertWithMessage("NavDeepLink should have uri pattern set")
             .that(navDeepLink.uriPattern)
             .isEqualTo(expectedUri)
-        assertWithMessage("NavDeepLink should have action set")
-            .that(navDeepLink.action)
-            .isNull()
+        assertWithMessage("NavDeepLink should have action set").that(navDeepLink.action).isNull()
     }
 }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkMimeTypeTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkMimeTypeTest.kt
index bc54d82..13ada05 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkMimeTypeTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkMimeTypeTest.kt
@@ -37,7 +37,8 @@
             fail("NavDeepLink must throw")
         } catch (e: IllegalArgumentException) {
             assertThat(e)
-                .hasMessageThat().contains(
+                .hasMessageThat()
+                .contains(
                     "The given mimeType $mimeType does not match to required \"type/subtype\" " +
                         "format"
                 )
@@ -50,13 +51,7 @@
         val deepLink = NavDeepLink(null, null, mimeType)
 
         assertWithMessage("The mimeTypes should match")
-            .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        null, null, mimeType
-                    )
-                )
-            )
+            .that(deepLink.matches(NavDeepLinkRequest(null, null, mimeType)))
             .isTrue()
     }
 
@@ -68,9 +63,7 @@
         assertWithMessage("The mimeTypes should match")
             .that(
                 deepLink.matches(
-                    NavDeepLinkRequest(
-                        Uri.parse(DEEP_LINK_EXACT_HTTPS), null, mimeType
-                    )
+                    NavDeepLinkRequest(Uri.parse(DEEP_LINK_EXACT_HTTPS), null, mimeType)
                 )
             )
             .isTrue()
@@ -82,13 +75,7 @@
         val deepLink = NavDeepLink(null, null, mimeType)
 
         assertWithMessage("The mimeTypes should match")
-            .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        null, null, "type/subtype"
-                    )
-                )
-            )
+            .that(deepLink.matches(NavDeepLinkRequest(null, null, "type/subtype")))
             .isTrue()
     }
 
@@ -98,13 +85,7 @@
         val deepLink = NavDeepLink(null, null, mimeType)
 
         assertWithMessage("The mimeTypes should match")
-            .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        null, null, "type/subtype"
-                    )
-                )
-            )
+            .that(deepLink.matches(NavDeepLinkRequest(null, null, "type/subtype")))
             .isTrue()
     }
 
@@ -114,13 +95,7 @@
         val deepLink = NavDeepLink(null, null, mimeType)
 
         assertWithMessage("The mimeTypes should match")
-            .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        null, null, "type/subtype"
-                    )
-                )
-            )
+            .that(deepLink.matches(NavDeepLinkRequest(null, null, "type/subtype")))
             .isTrue()
     }
 
@@ -130,13 +105,7 @@
         val deepLink = NavDeepLink(null, null, mimeType)
 
         assertWithMessage("The mimeTypes should match")
-            .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        null, null, "*/*"
-                    )
-                )
-            )
+            .that(deepLink.matches(NavDeepLinkRequest(null, null, "*/*")))
             .isTrue()
     }
 
@@ -146,13 +115,7 @@
         val deepLink = NavDeepLink(null, null, mimeType)
 
         assertWithMessage("The mimeTypes should match")
-            .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        null, null, "type/*"
-                    )
-                )
-            )
+            .that(deepLink.matches(NavDeepLinkRequest(null, null, "type/*")))
             .isTrue()
     }
 
@@ -162,13 +125,7 @@
         val deepLink = NavDeepLink(null, null, mimeType)
 
         assertWithMessage("The mimeTypes should match")
-            .that(
-                deepLink.matches(
-                    NavDeepLinkRequest(
-                        null, null, "*/subtype"
-                    )
-                )
-            )
+            .that(deepLink.matches(NavDeepLinkRequest(null, null, "*/subtype")))
             .isTrue()
     }
 }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkTest.kt
index 17a936b..17d983f 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDeepLinkTest.kt
@@ -17,6 +17,11 @@
 package androidx.navigation
 
 import android.net.Uri
+import androidx.navigation.NavType.Companion.BoolListType
+import androidx.navigation.NavType.Companion.FloatListType
+import androidx.navigation.NavType.Companion.IntListType
+import androidx.navigation.NavType.Companion.LongListType
+import androidx.navigation.serialization.generateRouteWithArgs
 import androidx.navigation.test.booleanArgument
 import androidx.navigation.test.intArgument
 import androidx.navigation.test.intArgumentUnknownDefault
@@ -24,11 +29,13 @@
 import androidx.navigation.test.nullableStringArgumentUnknownDefault
 import androidx.navigation.test.stringArgument
 import androidx.navigation.test.stringArrayArgument
+import androidx.navigation.test.stringListArgument
 import androidx.test.filters.SmallTest
 import com.google.common.truth.Truth.assertThat
 import com.google.common.truth.Truth.assertWithMessage
 import java.io.UnsupportedEncodingException
 import kotlin.test.assertFailsWith
+import kotlinx.serialization.SerialName
 import kotlinx.serialization.Serializable
 import org.junit.Test
 
@@ -70,8 +77,7 @@
         val deepLinkString = "android-app://com.example"
         val deepLink = NavDeepLink(deepLinkString)
 
-        assertThat(deepLink.matches(Uri.parse(deepLinkString)))
-            .isTrue()
+        assertThat(deepLink.matches(Uri.parse(deepLinkString))).isTrue()
     }
 
     @Test
@@ -79,8 +85,7 @@
         val deepLinkString = "android+app://com.example"
         val deepLink = NavDeepLink(deepLinkString)
 
-        assertThat(deepLink.matches(Uri.parse(deepLinkString)))
-            .isTrue()
+        assertThat(deepLink.matches(Uri.parse(deepLinkString))).isTrue()
     }
 
     @Test
@@ -88,8 +93,7 @@
         val deepLinkString = "android.app://com.example"
         val deepLink = NavDeepLink(deepLinkString)
 
-        assertThat(deepLink.matches(Uri.parse(deepLinkString)))
-            .isTrue()
+        assertThat(deepLink.matches(Uri.parse(deepLinkString))).isTrue()
     }
 
     @Test
@@ -110,13 +114,9 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = "2"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id)),
-            mapOf()
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(Uri.parse(deepLinkArgument.replace("{id}", id)), mapOf())
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the id")
             .that(matchArgs?.getString("id"))
             .isEqualTo(id)
@@ -128,16 +128,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -146,13 +143,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = "invalid"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id)),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should be null")
-            .that(matchArgs)
-            .isNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{id}", id)),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should be null").that(matchArgs).isNull()
     }
 
     @Test
@@ -162,19 +158,15 @@
 
         val id = 2
         val myArg = "test"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id.toString()).replace("{myarg}", myArg)),
-            mapOf(
-                "id" to intArgument(),
-                "myarg" to stringArgument()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    deepLinkArgument.replace("{id}", id.toString()).replace("{myarg}", myArg)
+                ),
+                mapOf("id" to intArgument(), "myarg" to stringArgument())
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should contain the argument")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo(myArg)
@@ -188,19 +180,15 @@
 
         val id = 211
         val myArg = "test"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id.toString()).replace("{myarg}", myArg)),
-            mapOf(
-                "id" to intArgument(),
-                "myarg" to stringArgument()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    deepLinkArgument.replace("{id}", id.toString()).replace("{myarg}", myArg)
+                ),
+                mapOf("id" to intArgument(), "myarg" to stringArgument())
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should contain the argument")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo(myArg)
@@ -214,16 +202,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 211
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     // Ensure that path arguments between two literals matches appropriately
@@ -234,16 +219,15 @@
 
         val id = 2
         val myArg = "test"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id.toString()).replace("{myarg}", myArg)),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    deepLinkArgument.replace("{id}", id.toString()).replace("{myarg}", myArg)
+                ),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should contain the argument")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo(myArg)
@@ -255,16 +239,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -273,13 +254,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = "invalid"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id)),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should be null")
-            .that(matchArgs)
-            .isNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{id}", id)),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should be null").that(matchArgs).isNull()
     }
 
     @Test
@@ -289,22 +269,15 @@
 
         val id = 2
         val myarg = "test"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                deepLinkArgument
-                    .replace("{id}", id.toString()).replace("{myarg}", myarg)
-            ),
-            mapOf(
-                "id" to intArgument(),
-                "myarg" to stringArgument()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    deepLinkArgument.replace("{id}", id.toString()).replace("{myarg}", myarg)
+                ),
+                mapOf("id" to intArgument(), "myarg" to stringArgument())
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should contain the argument")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo(myarg)
@@ -316,13 +289,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("id" to intArgument(id))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("id" to intArgument(id))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the id")
             .that(matchArgs?.containsKey("id"))
             .isFalse()
@@ -333,13 +305,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("myarg" to nullableStringArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("myarg" to nullableStringArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the argument")
             .that(matchArgs?.containsKey("myarg"))
             .isFalse()
@@ -352,13 +323,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument),
-            mapOf("id" to intArgument(id))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument),
+                mapOf("id" to intArgument(id))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the id")
             .that(matchArgs?.containsKey("id"))
             .isFalse()
@@ -370,16 +340,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val arg = ""
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{arg}", arg)),
-            mapOf("arg" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.containsKey("arg"))
-            .isTrue()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{arg}", arg)),
+                mapOf("arg" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.containsKey("arg")).isTrue()
     }
 
     // Ensure case when matching the exact argument query (i.e. param names in braces) is handled
@@ -388,13 +355,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument),
-            mapOf("myarg" to nullableStringArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument),
+                mapOf("myarg" to nullableStringArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         // We allow {argName} values for String types
         assertWithMessage("Args should contain the argument")
             .that(matchArgs?.getString("myarg"))
@@ -406,18 +372,19 @@
     fun deepLinkQueryParamNullableNonStringArgumentMatchParamsInBraces() {
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
-        val intArrayArg = NavArgument.Builder().setType(NavType.IntArrayType)
-            .setIsNullable(true)
-            .setDefaultValue(null)
-            .build()
+        val intArrayArg =
+            NavArgument.Builder()
+                .setType(NavType.IntArrayType)
+                .setIsNullable(true)
+                .setDefaultValue(null)
+                .build()
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument),
-            mapOf("myarg" to intArrayArg)
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument),
+                mapOf("myarg" to intArrayArg)
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         // For non-strings, {argName} values are invalid and considered lack of argument value
         assertWithMessage("Args should not contain the argument")
             .that(matchArgs?.containsKey("myarg"))
@@ -430,16 +397,18 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{myarg}", "myarg")),
-            mapOf("myarg" to NavArgument.Builder()
-                .setType(NavType.StringType)
-                .setIsNullable(true)
-                .build())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{myarg}", "myarg")),
+                mapOf(
+                    "myarg" to
+                        NavArgument.Builder()
+                            .setType(NavType.StringType)
+                            .setIsNullable(true)
+                            .build()
+                )
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the argument and it should not be null")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo("myarg")
@@ -452,19 +421,13 @@
 
         val id = 2
         val optional = "test"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id={id}".replace("{id}", id.toString())),
-            mapOf(
-                "id" to intArgument(),
-                "optional" to stringArgument(optional)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id={id}".replace("{id}", id.toString())),
+                mapOf("id" to intArgument(), "optional" to stringArgument(optional))
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should not contain optional")
             .that(matchArgs?.containsKey("optional"))
             .isFalse()
@@ -476,22 +439,16 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                "$DEEP_LINK_EXACT_HTTPS/users?optional={optional}&id={id}"
-                    .replace("{id}", id.toString())
-            ),
-            mapOf(
-                "id" to intArgument(),
-                "optional" to stringArrayArgument(arrayOf("theArg"))
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    "$DEEP_LINK_EXACT_HTTPS/users?optional={optional}&id={id}"
+                        .replace("{id}", id.toString())
+                ),
+                mapOf("id" to intArgument(), "optional" to stringArrayArgument(arrayOf("theArg")))
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should not contain optional")
             .that(matchArgs?.getStringArray("optional"))
             .isEqualTo(arrayOf("{optional}"))
@@ -503,19 +460,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id={id}".replace("{id}", id.toString())),
-            mapOf(
-                "id" to intArgument(),
-                "optional" to nullableStringArgument(null)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id={id}".replace("{id}", id.toString())),
+                mapOf("id" to intArgument(), "optional" to nullableStringArgument(null))
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should not contain optional")
             .that(matchArgs?.containsKey("optional"))
             .isFalse()
@@ -528,10 +479,9 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         assertThat(
-            deepLink.matches(
-                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?extraParam={extraParam}")
+                deepLink.matches(Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?extraParam={extraParam}"))
             )
-        ).isTrue()
+            .isTrue()
     }
 
     @Test
@@ -541,13 +491,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val myarg = "test"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgumentWithExtraParam.replace("{myarg}", myarg)),
-            mapOf("myarg" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgumentWithExtraParam.replace("{myarg}", myarg)),
+                mapOf("myarg" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the argument")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo(myarg)
@@ -560,20 +509,17 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                "$DEEP_LINK_EXACT_HTTPS/users?id={id}&extraParam={extraParam}"
-                    .replace("{id}", id.toString())
-            ),
-            mapOf("id" to intArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    "$DEEP_LINK_EXACT_HTTPS/users?id={id}&extraParam={extraParam}"
+                        .replace("{id}", id.toString())
+                ),
+                mapOf("id" to intArgument())
+            )
 
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -582,13 +528,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?extraParam={extraParam}"),
-            mapOf("id" to intArgument(id))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?extraParam={extraParam}"),
+                mapOf("id" to intArgument(id))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the id")
             .that(matchArgs?.containsKey("id"))
             .isFalse()
@@ -599,13 +544,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id={id}&extraParam={extraParam}"),
-            mapOf("myarg" to nullableStringArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id={id}&extraParam={extraParam}"),
+                mapOf("myarg" to nullableStringArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the argument")
             .that(matchArgs?.containsKey("myarg"))
             .isFalse()
@@ -617,19 +561,15 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                "$DEEP_LINK_EXACT_HTTPS/users?string={id}"
-                    .replace("{id}", id.toString())
-            ),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    "$DEEP_LINK_EXACT_HTTPS/users?string={id}".replace("{id}", id.toString())
+                ),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -637,13 +577,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?string={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("myarg" to nullableStringArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("myarg" to nullableStringArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the argument")
             .that(matchArgs?.containsKey("myarg"))
             .isFalse()
@@ -655,13 +594,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("id" to intArgument(id))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("id" to intArgument(id))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the id")
             .that(matchArgs?.containsKey("id"))
             .isFalse()
@@ -673,16 +611,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{id}", id.toString())),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -690,13 +625,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}L"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("myarg" to nullableStringArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("myarg" to nullableStringArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the argument")
             .that(matchArgs?.containsKey("myarg"))
             .isFalse()
@@ -708,13 +642,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("id" to intArgument(id))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("id" to intArgument(id))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the id")
             .that(matchArgs?.containsKey("id"))
             .isFalse()
@@ -727,16 +660,12 @@
 
         val first = "Jane"
         val last = "Doe"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{first}", first).replace("{last}", last)),
-            mapOf(
-                "first" to stringArgument(),
-                "last" to stringArgument()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{first}", first).replace("{last}", last)),
+                mapOf("first" to stringArgument(), "last" to stringArgument())
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the first name")
             .that(matchArgs?.getString("first"))
             .isEqualTo(first)
@@ -752,16 +681,12 @@
 
         val first = "Jane"
         val last = "Doe"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf(
-                "first" to stringArgument(first),
-                "last" to stringArgument(last)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("first" to stringArgument(first), "last" to stringArgument(last))
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the first name")
             .that(matchArgs?.containsKey("first"))
             .isFalse()
@@ -776,13 +701,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val first = "Jane"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?name=Jane_"),
-            mapOf("first" to stringArgument(), "last" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?name=Jane_"),
+                mapOf("first" to stringArgument(), "last" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the first name")
             .that(matchArgs?.getString("first"))
             .isEqualTo(first)
@@ -798,13 +722,12 @@
 
         val first = ""
         val last = ""
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?name=_"),
-            mapOf("first" to stringArgument(), "last" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?name=_"),
+                mapOf("first" to stringArgument(), "last" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the empty first name")
             .that(matchArgs?.getString("first"))
             .isEqualTo(first)
@@ -818,16 +741,15 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?name={first}_{last}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf(
-                "first" to nullableStringArgument(null),
-                "last" to nullableStringArgument(null)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf(
+                    "first" to nullableStringArgument(null),
+                    "last" to nullableStringArgument(null)
+                )
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the first name")
             .that(matchArgs?.containsKey("first"))
             .isFalse()
@@ -842,19 +764,16 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                "$DEEP_LINK_EXACT_HTTPS/users?productId=wildCardMatch-{id}"
-                    .replace("{id}", id.toString())
-            ),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    "$DEEP_LINK_EXACT_HTTPS/users?productId=wildCardMatch-{id}"
+                        .replace("{id}", id.toString())
+                ),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -863,13 +782,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("id" to intArgument(id))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("id" to intArgument(id))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the id")
             .that(matchArgs?.containsKey("id"))
             .isFalse()
@@ -880,13 +798,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?productId=.*-{myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?productId=wildCardMatch-{myarg}"),
-            mapOf("myarg" to nullableStringArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?productId=wildCardMatch-{myarg}"),
+                mapOf("myarg" to nullableStringArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the argument")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo("{myarg}")
@@ -899,13 +816,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?productId=.*-"),
-            mapOf("id" to intArgument(id))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?productId=.*-"),
+                mapOf("id" to intArgument(id))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the id")
             .that(matchArgs?.containsKey("id"))
             .isFalse()
@@ -917,19 +833,15 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                "$DEEP_LINK_EXACT_HTTPS/users?productId=A*B{id}"
-                    .replace("{id}", id.toString())
-            ),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    "$DEEP_LINK_EXACT_HTTPS/users?productId=A*B{id}".replace("{id}", id.toString())
+                ),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -938,19 +850,15 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                "$DEEP_LINK_EXACT_HTTPS/users?productId={id}A*B"
-                    .replace("{id}", id.toString())
-            ),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    "$DEEP_LINK_EXACT_HTTPS/users?productId={id}A*B".replace("{id}", id.toString())
+                ),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -959,13 +867,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val path = "directions"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?path=go/to/{path}".replace("{path}", path)),
-            mapOf("path" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?path=go/to/{path}".replace("{path}", path)),
+                mapOf("path" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the path")
             .that(matchArgs?.getString("path"))
             .isEqualTo(path)
@@ -977,13 +884,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val path = "directions"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("path" to stringArgument(path))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("path" to stringArgument(path))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the path")
             .that(matchArgs?.containsKey("path"))
             .isFalse()
@@ -994,13 +900,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?path=go/to/{path}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
-            mapOf("path" to nullableStringArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users"),
+                mapOf("path" to nullableStringArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the path")
             .that(matchArgs?.containsKey("path"))
             .isFalse()
@@ -1012,13 +917,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?path=go/to/{path}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?path=go/to/"),
-            mapOf("path" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?path=go/to/"),
+                mapOf("path" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should not contain the path")
             .that(matchArgs?.getString("path"))
             .isEqualTo("")
@@ -1029,13 +933,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users#{frag}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users#testFrag"),
-            mapOf("frag" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users#testFrag"),
+                mapOf("frag" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the fragment")
             .that(matchArgs?.getString("frag"))
             .isEqualTo("testFrag")
@@ -1046,13 +949,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?id={id}#{frag}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id=43#testFrag"),
-            mapOf("id" to intArgument(), "frag" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?id=43#testFrag"),
+                mapOf("id" to intArgument(), "frag" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the query")
             .that(matchArgs?.getInt("id"))
             .isEqualTo(43)
@@ -1066,13 +968,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?id={id}#{frag}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users#testFrag"),
-            mapOf("id" to nullableStringArgument(), "frag" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users#testFrag"),
+                mapOf("id" to nullableStringArgument(), "frag" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the fragment")
             .that(matchArgs?.getString("frag"))
             .isEqualTo("testFrag")
@@ -1085,14 +986,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val name = "John Doe"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{name}", Uri.encode(name))),
-            mapOf("name" to stringArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{name}", Uri.encode(name))),
+                mapOf("name" to stringArgument())
+            )
 
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the name")
             .that(matchArgs?.getString("name"))
             .isEqualTo(name)
@@ -1105,23 +1005,17 @@
 
         val id = 2
         val postId = 42
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                deepLinkArgument
-                    .replace("{id}", id.toString())
-                    .replace("{postId}", postId.toString())
-            ),
-            mapOf(
-                "id" to intArgument(),
-                "postId" to intArgument()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    deepLinkArgument
+                        .replace("{id}", id.toString())
+                        .replace("{postId}", postId.toString())
+                ),
+                mapOf("id" to intArgument(), "postId" to intArgument())
             )
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
         assertWithMessage("Args should contain the postId")
             .that(matchArgs?.getInt("postId"))
             .isEqualTo(postId)
@@ -1132,8 +1026,7 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users/{id}/posts"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        assertThat(deepLink.matches(Uri.parse(deepLinkArgument.replace("{id}", ""))))
-            .isFalse()
+        assertThat(deepLink.matches(Uri.parse(deepLinkArgument.replace("{id}", "")))).isFalse()
     }
 
     @Test
@@ -1141,8 +1034,7 @@
         val deepLinkPrefix = "$DEEP_LINK_EXACT_HTTPS/posts/.*"
         val deepLink = NavDeepLink(deepLinkPrefix)
 
-        assertThat(deepLink.matches(Uri.parse(deepLinkPrefix.replace(".*", "test"))))
-            .isTrue()
+        assertThat(deepLink.matches(Uri.parse(deepLinkPrefix.replace(".*", "test")))).isTrue()
     }
 
     @Test
@@ -1150,8 +1042,7 @@
         val deepLinkWildcard = "$DEEP_LINK_EXACT_HTTPS/posts/.*/new"
         val deepLink = NavDeepLink(deepLinkWildcard)
 
-        assertThat(deepLink.matches(Uri.parse(deepLinkWildcard.replace(".*", "test"))))
-            .isTrue()
+        assertThat(deepLink.matches(Uri.parse(deepLinkWildcard.replace(".*", "test")))).isTrue()
     }
 
     @Test
@@ -1160,17 +1051,14 @@
         val deepLink = NavDeepLink(deepLinkMultiple)
 
         val postId = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                deepLinkMultiple
-                    .replace(".*", "test")
-                    .replace("{postId}", postId.toString())
-            ),
-            mapOf("postId" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    deepLinkMultiple.replace(".*", "test").replace("{postId}", postId.toString())
+                ),
+                mapOf("postId" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the postId")
             .that(matchArgs?.getInt("postId"))
             .isEqualTo(postId)
@@ -1182,20 +1070,13 @@
         val deepLink = NavDeepLink(deepLinkMultiple)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                deepLinkMultiple
-                    .replace("{id}", id.toString())
-                    .replace(".*", "test")
-            ),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkMultiple.replace("{id}", id.toString()).replace(".*", "test")),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -1204,16 +1085,13 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("${DEEP_LINK_EXACT_HTTPS.uppercase()}/users/$id/posts"),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("${DEEP_LINK_EXACT_HTTPS.uppercase()}/users/$id/posts"),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -1222,20 +1100,15 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val id = 2
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                deepLinkArgument
-                    .replace("{id}", id.toString())
-                    .replace("users", "Users")
-            ),
-            mapOf("id" to intArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args should contain the id")
-            .that(matchArgs?.getInt("id"))
-            .isEqualTo(id)
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(
+                    deepLinkArgument.replace("{id}", id.toString()).replace("users", "Users")
+                ),
+                mapOf("id" to intArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args should contain the id").that(matchArgs?.getInt("id")).isEqualTo(id)
     }
 
     @Test
@@ -1244,20 +1117,16 @@
         val deepLink = NavDeepLink(deepLinkString)
 
         val param = 2
-        val deepLinkUpper = deepLinkString
-            .replace("myParam", "MYPARAM")
-            .replace("{param}", param.toString())
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkUpper),
-            mapOf("param" to intArgument(0))
-        )
+        val deepLinkUpper =
+            deepLinkString.replace("myParam", "MYPARAM").replace("{param}", param.toString())
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkUpper),
+                mapOf("param" to intArgument(0))
+            )
 
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args bundle should be empty")
-            .that(matchArgs?.isEmpty)
-            .isTrue()
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args bundle should be empty").that(matchArgs?.isEmpty).isTrue()
     }
 
     @Test
@@ -1265,13 +1134,12 @@
         val deepLinkString = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkString)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkString),
-            mapOf("myarg" to stringArrayArgument(arrayOf("theArg")))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkString),
+                mapOf("myarg" to stringArrayArgument(arrayOf("theArg")))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         // We allow {argName} values for String types
         assertWithMessage("Args bundle should contain arg value")
             .that(matchArgs?.getStringArray("myarg"))
@@ -1284,13 +1152,12 @@
         val deepLink = NavDeepLink(deepLinkString)
 
         val value = "%555"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkString.replace("{myarg}", Uri.encode(value))),
-            mapOf("myarg" to nullableStringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkString.replace("{myarg}", Uri.encode(value))),
+                mapOf("myarg" to nullableStringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the value without additional decoding")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo(value)
@@ -1302,13 +1169,12 @@
         val deepLink = NavDeepLink(deepLinkString)
 
         val value = "some\nthing"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkString.replace("{myarg}", Uri.encode(value))),
-            mapOf("myarg" to nullableStringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkString.replace("{myarg}", Uri.encode(value))),
+                mapOf("myarg" to nullableStringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the value without additional decoding")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo(value)
@@ -1317,27 +1183,25 @@
     @Test
     fun deepLinkMissingRequiredArgumentUnknownDefault() {
         val deepLink = NavDeepLink("$DEEP_LINK_EXACT_HTTPS?myarg={myarg}")
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(DEEP_LINK_EXACT_HTTPS),
-            // NavArgument with unknown default value
-            mapOf("myarg" to intArgumentUnknownDefault())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(DEEP_LINK_EXACT_HTTPS),
+                // NavArgument with unknown default value
+                mapOf("myarg" to intArgumentUnknownDefault())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
     }
 
     @Test
     fun deepLinkMissingNullableArgumentUnknownDefault() {
         val deepLink = NavDeepLink("$DEEP_LINK_EXACT_HTTPS?myarg={myarg}")
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(DEEP_LINK_EXACT_HTTPS),
-            // NavArgument with unknown default value
-            mapOf("myarg" to nullableStringArgumentUnknownDefault())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(DEEP_LINK_EXACT_HTTPS),
+                // NavArgument with unknown default value
+                mapOf("myarg" to nullableStringArgumentUnknownDefault())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
     }
 
     @Test
@@ -1345,17 +1209,13 @@
         val deepLinkString = "$DEEP_LINK_EXACT_HTTPS/greeting?title={title}&text={text}"
         val deepLink = NavDeepLink(deepLinkString)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/greeting?title=No%20text"),
-            mapOf(
-                "title" to stringArgument(),
-                "text" to stringArgument()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/greeting?title=No%20text"),
+                mapOf("title" to stringArgument(), "text" to stringArgument())
             )
-        )
 
-        assertWithMessage("Args should be null")
-            .that(matchArgs)
-            .isNull()
+        assertWithMessage("Args should be null").that(matchArgs).isNull()
     }
 
     @Test
@@ -1363,17 +1223,14 @@
         val deepLinkString = "$DEEP_LINK_EXACT_HTTPS/greeting?text={text}"
         val deepLink = NavDeepLink(deepLinkString)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/greeting"),
-            mapOf("text" to stringArgument("Default greeting"))
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/greeting"),
+                mapOf("text" to stringArgument("Default greeting"))
+            )
 
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
-        assertWithMessage("Args bundle should be empty")
-            .that(matchArgs?.isEmpty)
-            .isTrue()
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        assertWithMessage("Args bundle should be empty").that(matchArgs?.isEmpty).isTrue()
     }
 
     @Test
@@ -1382,13 +1239,12 @@
         val deepLink = NavDeepLink(deepLinkArgument)
 
         val args = "test#split"
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{myarg}", args)),
-            mapOf("myarg" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{myarg}", args)),
+                mapOf("myarg" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the arg")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo("test")
@@ -1399,13 +1255,12 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?{myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(deepLinkArgument.replace("{myarg}", "name")),
-            mapOf("myarg" to stringArgument())
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(deepLinkArgument.replace("{myarg}", "name")),
+                mapOf("myarg" to stringArgument())
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         assertWithMessage("Args should contain the arg")
             .that(matchArgs?.getString("myarg"))
             .isEqualTo("name")
@@ -1416,22 +1271,44 @@
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?myarg=name1&myarg=name2"),
-            mapOf("myarg" to stringArrayArgument(null))
-        )
-        assertWithMessage("Args should not be null")
-            .that(matchArgs)
-            .isNotNull()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?myarg=name1&myarg=name2"),
+                mapOf("myarg" to stringArrayArgument(null))
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
         val matchArgsStringArray = matchArgs?.getStringArray("myarg")
-        assertWithMessage("Args list should not be null")
-            .that(matchArgsStringArray)
-            .isNotNull()
+        assertWithMessage("Args list should not be null").that(matchArgsStringArray).isNotNull()
         assertWithMessage("Args should contain first arg")
-            .that(matchArgsStringArray).asList()
+            .that(matchArgsStringArray)
+            .asList()
             .contains("name1")
         assertWithMessage("Args should contain second arg")
-            .that(matchArgsStringArray).asList()
+            .that(matchArgsStringArray)
+            .asList()
+            .contains("name2")
+    }
+
+    @Suppress("UNCHECKED_CAST")
+    @Test
+    fun deepLinkRepeatedQueryParamsMappedToList() {
+        val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}"
+        val deepLink = NavDeepLink(deepLinkArgument)
+
+        val navArg = stringListArgument()
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("$DEEP_LINK_EXACT_HTTPS/users?myarg=name1&myarg=name2"),
+                mapOf("myarg" to navArg)
+            )
+        assertWithMessage("Args should not be null").that(matchArgs).isNotNull()
+        val matchArgsStringList = navArg.type[matchArgs!!, "myarg"] as List<String>
+        assertWithMessage("Args list should not be null").that(matchArgsStringList).isNotNull()
+        assertWithMessage("Args should contain first arg")
+            .that(matchArgsStringList)
+            .contains("name1")
+        assertWithMessage("Args should contain second arg")
+            .that(matchArgsStringList)
             .contains("name2")
     }
 
@@ -1439,31 +1316,29 @@
     fun deepLinkNoRepeatedQueryParamsInPattern() {
         val deepLinkArgument = "$DEEP_LINK_EXACT_HTTPS/users?myarg={myarg}&myarg={myarg}"
         val deepLink = NavDeepLink(deepLinkArgument)
-        val message = assertFailsWith<IllegalArgumentException> {
-            // query params are parsed lazily, need to run getMatchingArguments to resolve it
-            deepLink.getMatchingArguments(
-                Uri.parse(deepLinkArgument),
-                emptyMap()
+        val message =
+            assertFailsWith<IllegalArgumentException> {
+                    // query params are parsed lazily, need to run getMatchingArguments to resolve
+                    // it
+                    deepLink.getMatchingArguments(Uri.parse(deepLinkArgument), emptyMap())
+                }
+                .message
+        assertThat(message)
+            .isEqualTo(
+                "Query parameter myarg must only be present once in $deepLinkArgument. " +
+                    "To support repeated query parameters, use an array type for your " +
+                    "argument and the pattern provided in your URI will be used to " +
+                    "parse each query parameter instance."
             )
-        }.message
-        assertThat(message).isEqualTo(
-            "Query parameter myarg must only be present once in $deepLinkArgument. " +
-                "To support repeated query parameters, use an array type for your " +
-                "argument and the pattern provided in your URI will be used to " +
-                "parse each query parameter instance."
-        )
     }
 
     @Test
     fun deepLinkExactMatchFromKClassNoScheme() {
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
         assertWithMessage("No scheme deep links should match http")
             .that(deepLink.matches(Uri.parse("http://$uri")))
@@ -1475,13 +1350,10 @@
 
     @Test
     fun deepLinkExactMatchFromKClassPathArgNoScheme() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val uri = "www.test.com"
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
         val expected = "http://$uri/{arg}"
         assertWithMessage("No scheme deep links should match http")
@@ -1490,24 +1362,22 @@
         assertWithMessage("No scheme deep links should match http")
             .that(deepLink.matches(Uri.parse(expected)))
             .isTrue()
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(expected.replace("{arg}", "1")),
-            mapOf("arg" to intArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(expected.replace("{arg}", "1")),
+                mapOf("arg" to intArgument())
+            )
         assertThat(matchArgs).isNotNull()
         assertThat(matchArgs!!.getInt("arg")).isEqualTo(1)
     }
 
     @Test
     fun deepLinkExactMatchFromKClassQueryArgNoScheme() {
-        @Serializable
-        class TestClass(val arg: Int = 1)
+        @Serializable class TestClass(val arg: Int = 1)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
         val expected = "http://$uri?arg={arg}"
         assertWithMessage("No scheme deep links should match http")
@@ -1516,24 +1386,22 @@
         assertWithMessage("No scheme deep links should match http")
             .that(deepLink.matches(Uri.parse(expected)))
             .isTrue()
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(expected.replace("{arg}", "2")),
-            mapOf("arg" to intArgumentUnknownDefault())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(expected.replace("{arg}", "2")),
+                mapOf("arg" to intArgumentUnknownDefault())
+            )
         assertThat(matchArgs).isNotNull()
         assertThat(matchArgs!!.getInt("arg")).isEqualTo(2)
     }
 
     @Test
     fun deepLinkExactMatchFromKClassPathQueryArgNoScheme() {
-        @Serializable
-        class TestClass(val arg: Int = 0, val arg2: Boolean)
+        @Serializable class TestClass(val arg: Int = 0, val arg2: Boolean)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
         val expected = "http://$uri/{arg2}?arg={arg}"
         assertWithMessage("No scheme deep links should match http")
@@ -1542,14 +1410,11 @@
         assertWithMessage("No scheme deep links should match http")
             .that(deepLink.matches(Uri.parse(expected)))
             .isTrue()
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(
-                expected
-                    .replace("{arg}", "1")
-                    .replace("{arg2}", "false")
-            ),
-            mapOf("arg" to intArgumentUnknownDefault(), "arg2" to booleanArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(expected.replace("{arg}", "1").replace("{arg2}", "false")),
+                mapOf("arg" to intArgumentUnknownDefault(), "arg2" to booleanArgument())
+            )
         assertThat(matchArgs).isNotNull()
         assertThat(matchArgs!!.getInt("arg")).isEqualTo(1)
         assertThat(matchArgs.getBoolean("arg2")).isEqualTo(false)
@@ -1557,122 +1422,222 @@
 
     @Test
     fun deepLinkFromKClassMissingRequiredArgNoDefault() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
-        val matchArgs = deepLink.getMatchingArguments(
-            // missing required arg in deeplink
-            Uri.parse("http://$uri"),
-            mapOf("arg" to intArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                // missing required arg in deeplink
+                Uri.parse("http://$uri"),
+                mapOf("arg" to intArgument())
+            )
         // should not match since missing default value
         assertThat(matchArgs).isNull()
     }
 
     @Test
     fun deepLinkFromKClassMissingRequiredArgWithDefault() {
-        @Serializable
-        class TestClass(val arg: Int = 1)
+        @Serializable class TestClass(val arg: Int = 1)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
-        val matchArgs = deepLink.getMatchingArguments(
-            // missing required arg with default value
-            Uri.parse("http://$uri"),
-            mapOf("arg" to intArgumentUnknownDefault())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                // missing required arg with default value
+                Uri.parse("http://$uri"),
+                mapOf("arg" to intArgumentUnknownDefault())
+            )
         // should still match successfully since the string arg has default value
         assertThat(matchArgs).isNotNull()
     }
 
     @Test
     fun deepLinkFromKClassMissingNullableArgNoDefault() {
-        @Serializable
-        class TestClass(val arg: String?)
+        @Serializable class TestClass(val arg: String?)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("http://$uri"),
-            mapOf("arg" to nullableStringArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("http://$uri"),
+                mapOf("arg" to nullableStringArgument())
+            )
         // should not match since missing nullable arg with no default value
         assertThat(matchArgs).isNull()
     }
 
     @Test
     fun deepLinkFromKClassMissingNullableArgWithDefault() {
-        @Serializable
-        class TestClass(val arg: String? = null)
+        @Serializable class TestClass(val arg: String? = null)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse("http://$uri"),
-            mapOf("arg" to nullableStringArgumentUnknownDefault())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse("http://$uri"),
+                mapOf("arg" to nullableStringArgumentUnknownDefault())
+            )
         assertThat(matchArgs).isNotNull()
     }
 
     @Test
+    fun deepLinkFromKClassNullString() {
+        @Serializable @SerialName("www.test.com") class TestClass(val arg: String?)
+
+        val uri = "www.test.com"
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
+
+        val argName = "arg"
+        val navArg = nullableStringArgument()
+        val route = generateRouteWithArgs(TestClass(null), mapOf(argName to navArg.type))
+
+        val matchArgs =
+            deepLink.getMatchingArguments(Uri.parse("http://$route"), mapOf(argName to navArg))
+        assertThat(matchArgs).isNotNull()
+        assertThat(matchArgs!!.containsKey(argName)).isTrue()
+        assertThat(navArg.type[matchArgs, argName]).isNull()
+    }
+
+    @Test
+    fun deepLinkFromKClassNullStringList() {
+        @Serializable @SerialName("www.test.com") class TestClass(val arg: List<String>?)
+
+        val uri = "www.test.com"
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
+
+        val argName = "arg"
+        val navArg = stringListArgument()
+        val route = generateRouteWithArgs(TestClass(null), mapOf(argName to navArg.type))
+
+        val matchArgs =
+            deepLink.getMatchingArguments(Uri.parse("http://$route"), mapOf(argName to navArg))
+        assertThat(matchArgs).isNotNull()
+        assertThat(matchArgs!!.containsKey(argName)).isTrue()
+        assertThat(navArg.type[matchArgs, argName]).isNull()
+    }
+
+    @Test
+    fun deepLinkFromKClassNullIntList() {
+        @Serializable @SerialName("www.test.com") class TestClass(val arg: List<Int>?)
+
+        val uri = "www.test.com"
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
+
+        val navArg = NavArgument.Builder().setType(IntListType).setIsNullable(true).build()
+
+        val argName = "arg"
+        val route = generateRouteWithArgs(TestClass(null), mapOf(argName to navArg.type))
+
+        val matchArgs =
+            deepLink.getMatchingArguments(Uri.parse("http://$route"), mapOf(argName to navArg))
+        assertThat(matchArgs).isNotNull()
+        assertThat(matchArgs!!.containsKey(argName)).isTrue()
+        assertThat(navArg.type[matchArgs, argName]).isNull()
+    }
+
+    @Test
+    fun deepLinkFromKClassNullBoolList() {
+        @Serializable @SerialName("www.test.com") class TestClass(val arg: List<Boolean>?)
+
+        val uri = "www.test.com"
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
+
+        val navArg = NavArgument.Builder().setType(BoolListType).setIsNullable(true).build()
+
+        val argName = "arg"
+        val route = generateRouteWithArgs(TestClass(null), mapOf(argName to navArg.type))
+
+        val matchArgs =
+            deepLink.getMatchingArguments(Uri.parse("http://$route"), mapOf(argName to navArg))
+        assertThat(matchArgs).isNotNull()
+        assertThat(matchArgs!!.containsKey(argName)).isTrue()
+        assertThat(navArg.type[matchArgs, argName]).isNull()
+    }
+
+    @Test
+    fun deepLinkFromKClassNullLongList() {
+        @Serializable @SerialName("www.test.com") class TestClass(val arg: List<Long>?)
+
+        val uri = "www.test.com"
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
+
+        val navArg = NavArgument.Builder().setType(LongListType).setIsNullable(true).build()
+
+        val argName = "arg"
+        val route = generateRouteWithArgs(TestClass(null), mapOf(argName to navArg.type))
+
+        val matchArgs =
+            deepLink.getMatchingArguments(Uri.parse("http://$route"), mapOf(argName to navArg))
+        assertThat(matchArgs).isNotNull()
+        assertThat(matchArgs!!.containsKey(argName)).isTrue()
+        assertThat(navArg.type[matchArgs, argName]).isNull()
+    }
+
+    @Test
+    fun deepLinkFromKClassNullFloatList() {
+        @Serializable @SerialName("www.test.com") class TestClass(val arg: List<Float>?)
+
+        val uri = "www.test.com"
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
+
+        val navArg = NavArgument.Builder().setType(FloatListType).setIsNullable(true).build()
+
+        val argName = "arg"
+        val route = generateRouteWithArgs(TestClass(null), mapOf(argName to navArg.type))
+
+        val matchArgs =
+            deepLink.getMatchingArguments(Uri.parse("http://$route"), mapOf(argName to navArg))
+        assertThat(matchArgs).isNotNull()
+        assertThat(matchArgs!!.containsKey(argName)).isTrue()
+        assertThat(navArg.type[matchArgs, argName]).isNull()
+    }
+
+    @Test
     fun deepLinkMatchFromKClassPartialMissingRequiredArgNoDefault() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: Boolean)
+        @Serializable class TestClass(val arg: Int, val arg2: Boolean)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
         val expected = "http://$uri/{arg}/{arg2}"
         assertWithMessage("No scheme deep links should match http")
             .that(deepLink.matches(Uri.parse(expected)))
             .isTrue()
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(expected.replace("{arg2}", "false")),
-            mapOf("arg" to intArgument(), "arg2" to booleanArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(expected.replace("{arg2}", "false")),
+                mapOf("arg" to intArgument(), "arg2" to booleanArgument())
+            )
         assertThat(matchArgs).isNull()
     }
 
     @Test
     fun deepLinkMatchFromKClassPartialMissingRequiredArgWithDefault() {
-        @Serializable
-        class TestClass(val arg: String? = "ffds", val arg2: Boolean)
+        @Serializable class TestClass(val arg: String? = "ffds", val arg2: Boolean)
 
         val uri = "www.test.com"
 
-        val deepLink = NavDeepLink.Builder
-            .fromUriPattern<TestClass>(uri)
-            .build()
+        val deepLink = NavDeepLink.Builder.fromUriPattern<TestClass>(uri).build()
 
         val expected = "http://$uri/{arg2}?arg={arg}"
         assertWithMessage("No scheme deep links should match http")
             .that(deepLink.matches(Uri.parse(expected)))
             .isTrue()
-        val matchArgs = deepLink.getMatchingArguments(
-            Uri.parse(expected.replace("{arg2}", "false")),
-            mapOf("arg" to nullableStringArgumentUnknownDefault(), "arg2" to booleanArgument())
-        )
+        val matchArgs =
+            deepLink.getMatchingArguments(
+                Uri.parse(expected.replace("{arg2}", "false")),
+                mapOf("arg" to nullableStringArgumentUnknownDefault(), "arg2" to booleanArgument())
+            )
         assertThat(matchArgs).isNotNull()
         assertThat(matchArgs!!.getBoolean("arg2")).isEqualTo(false)
     }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationAndroidTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationAndroidTest.kt
index e8a8776..897a60c 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationAndroidTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationAndroidTest.kt
@@ -52,7 +52,8 @@
             destination.route = ""
         } catch (e: IllegalArgumentException) {
             assertWithMessage("setting blank route should throw an error")
-                .that(e).hasMessageThat()
+                .that(e)
+                .hasMessageThat()
                 .contains("Cannot have an empty route")
         }
     }
@@ -103,13 +104,9 @@
         destination.addArgument("myArg", nullableStringArgument())
         destination.addDeepLink("www.example.com/users?myArg={myArg}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users?")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users?"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
     }
 
     @Test
@@ -118,13 +115,9 @@
         destination.addArgument("id", intArgument())
         destination.addDeepLink("www.example.com/users/{id}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users/43")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users/43"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
 
         assertWithMessage("Deep link should extract id argument correctly")
             .that(match?.matchingArgs?.getInt("id"))
@@ -137,13 +130,9 @@
         destination.addArgument("id", intArgument())
         destination.addDeepLink("www.example.com/users?id={id}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users?id=43")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users?id=43"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
 
         assertWithMessage("Deep link should extract id argument correctly")
             .that(match?.matchingArgs?.getInt("id"))
@@ -156,13 +145,9 @@
         destination.addArgument("id", intArgument())
         destination.addDeepLink("www.example.com/users?userId={id}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users?userId=43")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users?userId=43"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
 
         assertWithMessage("Deep link should extract id argument correctly")
             .that(match?.matchingArgs?.getInt("id"))
@@ -175,13 +160,9 @@
         destination.addArgument("id", intArgument())
         destination.addDeepLink("www.example.com/users?{id}#{myFrag}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users?43#theFrag")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users?43#theFrag"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should extract id argument correctly")
             .that(match?.matchingArgs?.getInt("id"))
             .isEqualTo(43)
@@ -194,13 +175,9 @@
         destination.addDeepLink("www.example.com/users")
         destination.addDeepLink("www.example.com/users#{frag}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users#testFrag")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users#testFrag"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should match with frag")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -217,13 +194,9 @@
         destination.addDeepLink("www.example.com/users#{frag1}&{frag2}")
         destination.addDeepLink("www.example.com/users#{frag}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users#testFrag")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users#testFrag"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should match with link with single frag")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -240,13 +213,12 @@
         destination.addDeepLink("www.example.com/users#{frag1}_{frag2}")
         destination.addDeepLink("www.example.com/users#{frag}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users#testFrag1_testFrag2")
-        )
+        val match =
+            destination.matchDeepLink(
+                Uri.parse("https://www.example.com/users#testFrag1_testFrag2")
+            )
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should match with link with multiple frags")
             .that(match?.matchingArgs?.size())
             .isEqualTo(2)
@@ -265,9 +237,7 @@
         destination.addDeepLink("www.example.com/users")
         destination.addDeepLink("www.example.com/users#param1={value1}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users#myFrag")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users#myFrag"))
         // fragment is optional here, the fragment not matching should not stop it from
         // matching with the link without fragment
         assertWithMessage("Deep link should match with the link without fragment")
@@ -286,14 +256,10 @@
         destination.addArgument("value1", stringArgument())
         destination.addDeepLink("www.example.com/users#param1={value1}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users"))
         // the fragment is a required argument in this case so the requested link should
         // not match with the exact path
-        assertWithMessage("Deep link should not match")
-            .that(match)
-            .isNull()
+        assertWithMessage("Deep link should not match").that(match).isNull()
     }
 
     @Test
@@ -305,13 +271,9 @@
         destination.addArgument("name", nullableStringArgument(null))
         destination.addDeepLink("www.example.com/users/{name}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users/index.html")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users/index.html"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should pick the exact match")
             .that(match?.matchingArgs?.size())
             .isEqualTo(0)
@@ -327,13 +289,12 @@
         destination.addArgument("name", nullableStringArgument(null))
         destination.addDeepLink("www.example.com/users/{name}?tab={tab}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users/anonymous?tab=favorite")
-        )
+        val match =
+            destination.matchDeepLink(
+                Uri.parse("https://www.example.com/users/anonymous?tab=favorite")
+            )
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should pick the exact match with query")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -352,13 +313,9 @@
         destination.addDeepLink("www.test.com/{user}/{name}")
         destination.addDeepLink("www.test.com/testUser/{name}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.test.com/testUser/testName")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.test.com/testUser/testName"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should match with most exact path segments")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -378,13 +335,12 @@
         destination.addDeepLink("www.test.com/{user}/{name}?param={arg}")
         destination.addDeepLink("www.test.com/testUser/{name}?param={arg}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.test.com/testUser/testName?param=testArg")
-        )
+        val match =
+            destination.matchDeepLink(
+                Uri.parse("https://www.test.com/testUser/testName?param=testArg")
+            )
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should match with most exact path segments")
             .that(match?.matchingArgs?.size())
             .isEqualTo(2)
@@ -401,13 +357,9 @@
         destination.addDeepLink("www.test.com/one/two/{three}/{four}")
         destination.addDeepLink("www.test.com/one/{two}/three/four")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.test.com/one/two/three/four")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.test.com/one/two/three/four"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should match with most exact path segments")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -427,13 +379,12 @@
         destination.addArgument("tab2", nullableStringArgument())
         destination.addDeepLink("www.example.com/users/anonymous?tab={tab}&tab2={tab2}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users/anonymous?tab=favorite")
-        )
+        val match =
+            destination.matchDeepLink(
+                Uri.parse("https://www.example.com/users/anonymous?tab=favorite")
+            )
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should pick the exact match with query")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -453,13 +404,12 @@
         destination.addDeepLink("www.example.com/users/anonymous?tab={tab}&tab2={tab2}")
 
         // both query params are required, this URI with only one arg should not match at all
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users/anonymous?tab=favorite")
-        )
+        val match =
+            destination.matchDeepLink(
+                Uri.parse("https://www.example.com/users/anonymous?tab=favorite")
+            )
 
-        assertWithMessage("Deep link should not match")
-            .that(match)
-            .isNull()
+        assertWithMessage("Deep link should not match").that(match).isNull()
     }
 
     @Test
@@ -470,9 +420,7 @@
         destination.addDeepLink("www.example.com/{name}")
 
         val match = destination.matchDeepLink(Uri.parse("https://www.example.com/foo"))
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should pick name over .*")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -488,13 +436,10 @@
         destination.addArgument("postId", intArgument())
         destination.addDeepLink("www.example.com/users/{id}/posts/{postId}")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users/43/posts/99")
-        )
+        val match =
+            destination.matchDeepLink(Uri.parse("https://www.example.com/users/43/posts/99"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should pick the argument with more matching arguments")
             .that(match?.matchingArgs?.size())
             .isEqualTo(2)
@@ -514,13 +459,9 @@
         destination.addDeepLink("www.example.com/users/{id}")
         destination.addDeepLink("www.example.com/users/{id}/posts")
 
-        val match = destination.matchDeepLink(
-            Uri.parse("https://www.example.com/users/u43/posts")
-        )
+        val match = destination.matchDeepLink(Uri.parse("https://www.example.com/users/u43/posts"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should extract id argument correctly")
             .that(match?.matchingArgs?.getString("id"))
             .isEqualTo("u43")
@@ -531,31 +472,21 @@
         val destination = NoOpNavigator().createDestination()
 
         destination.addArgument("deeplink1", nullableStringArgument(null))
-        destination.addDeepLink(
-            NavDeepLink(
-                "www.example.com/users/{deeplink1}",
-                null, "*/*"
-            )
-        )
+        destination.addDeepLink(NavDeepLink("www.example.com/users/{deeplink1}", null, "*/*"))
 
         destination.addArgument("deeplink2", nullableStringArgument(null))
-        destination.addDeepLink(
-            NavDeepLink(
-                "www.example.com/users/{deeplink2}",
-                null, "image/*"
-            )
-        )
+        destination.addDeepLink(NavDeepLink("www.example.com/users/{deeplink2}", null, "image/*"))
 
-        val match = destination.matchDeepLink(
-            NavDeepLinkRequest(
-                Uri.parse("https://www.example.com/users/result"), null,
-                "image/jpg"
+        val match =
+            destination.matchDeepLink(
+                NavDeepLinkRequest(
+                    Uri.parse("https://www.example.com/users/result"),
+                    null,
+                    "image/jpg"
+                )
             )
-        )
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link matching arg should be deeplink2")
             .that(match?.matchingArgs?.getString("deeplink2"))
             .isEqualTo("result")
@@ -567,8 +498,7 @@
         val deepLink = Uri.parse("android-app://androidx.navigation.test/test")
         destination.addDeepLink(deepLink.toString())
 
-        assertWithMessage("Deep link should match")
-            .that(destination.hasDeepLink(deepLink)).isTrue()
+        assertWithMessage("Deep link should match").that(destination.hasDeepLink(deepLink)).isTrue()
     }
 
     @Test
@@ -578,8 +508,7 @@
         val deepLink = Uri.parse("android-app://androidx.navigation.test/route")
         destination.addDeepLink(deepLink.toString())
 
-        assertWithMessage("Deep link should match")
-            .that(destination.hasDeepLink(deepLink)).isTrue()
+        assertWithMessage("Deep link should match").that(destination.hasDeepLink(deepLink)).isTrue()
     }
 
     @Test
@@ -589,8 +518,7 @@
         destination.addDeepLink("android-app://androidx.navigation.test/{testString}")
 
         val deepLink = Uri.parse("android-app://androidx.navigation.test/test")
-        assertWithMessage("Deep link should match")
-            .that(destination.hasDeepLink(deepLink)).isTrue()
+        assertWithMessage("Deep link should match").that(destination.hasDeepLink(deepLink)).isTrue()
     }
 
     @Test
@@ -600,7 +528,8 @@
         val deepLink = Uri.parse("android-app://androidx.navigation.test/invalid")
 
         assertWithMessage("Deep link should not match")
-            .that(destination.hasDeepLink(deepLink)).isFalse()
+            .that(destination.hasDeepLink(deepLink))
+            .isFalse()
     }
 
     @Test
@@ -612,7 +541,8 @@
         val deepLink = Uri.parse("android-app://androidx.navigation.test/test/extra")
 
         assertWithMessage("Deep link should not match")
-            .that(destination.hasDeepLink(deepLink)).isFalse()
+            .that(destination.hasDeepLink(deepLink))
+            .isFalse()
     }
 
     @Test
@@ -621,11 +551,7 @@
         destination.addArgument("stringArg", stringArgument("aaa"))
         destination.addArgument("intArg", intArgument(123))
 
-        val bundle = destination.addInDefaultArgs(
-            Bundle().apply {
-                putString("stringArg", "bbb")
-            }
-        )
+        val bundle = destination.addInDefaultArgs(Bundle().apply { putString("stringArg", "bbb") })
         assertThat(bundle?.getString("stringArg")).isEqualTo("bbb")
         assertThat(bundle?.getInt("intArg")).isEqualTo(123)
     }
@@ -636,11 +562,7 @@
         destination.addArgument("stringArg", stringArgument("aaa"))
         destination.addArgument("intArg", intArgument(123))
 
-        destination.addInDefaultArgs(
-            Bundle().apply {
-                putInt("stringArg", 123)
-            }
-        )
+        destination.addInDefaultArgs(Bundle().apply { putInt("stringArg", 123) })
     }
 
     @Test
@@ -699,66 +621,62 @@
 
     @Test
     fun hasRoute() {
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
-        val destination = NavDestinationBuilder(
-            NoOpNavigator(), TestClass::class, emptyMap()
-        ).build()
+        val destination =
+            NavDestinationBuilder(NoOpNavigator(), TestClass::class, emptyMap()).build()
         assertThat(destination.hasRoute<TestClass>()).isTrue()
     }
 
     @Test
     fun hasRouteArgs() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val destination = NavDestinationBuilder(
-            NoOpNavigator(), TestClass::class, emptyMap()
-        ).build()
+        val destination =
+            NavDestinationBuilder(NoOpNavigator(), TestClass::class, emptyMap()).build()
         assertThat(destination.hasRoute<TestClass>()).isTrue()
     }
 
     @Test
     fun hasRouteArgsCustomType() {
-        @Serializable
-        class TestArg
-        val testArg = object : NavType<TestArg>(true) {
-            override fun put(bundle: Bundle, key: String, value: TestArg) {}
-            override fun get(bundle: Bundle, key: String): TestArg? = null
-            override fun parseValue(value: String) = TestArg()
-        }
+        @Serializable class TestArg
+        val testArg =
+            object : NavType<TestArg>(true) {
+                override fun put(bundle: Bundle, key: String, value: TestArg) {}
 
-        @Serializable
-        class TestClass(val arg: TestArg)
+                override fun get(bundle: Bundle, key: String): TestArg? = null
 
-        val destination = NavDestinationBuilder(
-            NoOpNavigator(), TestClass::class, mapOf(typeOf<TestArg>() to testArg)
-        ).build()
+                override fun parseValue(value: String) = TestArg()
+            }
+
+        @Serializable class TestClass(val arg: TestArg)
+
+        val destination =
+            NavDestinationBuilder(
+                    NoOpNavigator(),
+                    TestClass::class,
+                    mapOf(typeOf<TestArg>() to testArg)
+                )
+                .build()
         assertThat(destination.hasRoute<TestClass>()).isTrue()
     }
 
     @Test
     fun hasRouteWrongClass() {
-        @Serializable
-        class TestClass(val arg: Int)
-        @Serializable
-        class WrongClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
+        @Serializable class WrongClass(val arg: Int)
 
-        val destination = NavDestinationBuilder(
-            NoOpNavigator(), TestClass::class, emptyMap()
-        ).build()
+        val destination =
+            NavDestinationBuilder(NoOpNavigator(), TestClass::class, emptyMap()).build()
         assertThat(destination.hasRoute<WrongClass>()).isFalse()
     }
 
     @Test
     fun hasRouteWrongId() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val destination = NavDestinationBuilder(
-            NoOpNavigator(), TestClass::class, emptyMap()
-        ).build()
+        val destination =
+            NavDestinationBuilder(NoOpNavigator(), TestClass::class, emptyMap()).build()
 
         destination.id = 0
 
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationBuilderTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationBuilderTest.kt
index ec4f0d4..d24be33 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationBuilderTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavDestinationBuilderTest.kt
@@ -33,14 +33,15 @@
 @SmallTest
 @RunWith(AndroidJUnit4::class)
 class NavDestinationTest {
-    private val provider = NavigatorProvider().apply {
-        addNavigator(NavGraphNavigator(this))
-        addNavigator(NoOpNavigator())
-    }
+    private val provider =
+        NavigatorProvider().apply {
+            addNavigator(NavGraphNavigator(this))
+            addNavigator(NoOpNavigator())
+        }
 
     @Test
     fun navDestination() {
-        val destination = provider.navDestination(DESTINATION_ID) { }
+        val destination = provider.navDestination(DESTINATION_ID) {}
         assertWithMessage("NavDestination should have id set")
             .that(destination.id)
             .isEqualTo(DESTINATION_ID)
@@ -48,7 +49,7 @@
 
     @Test
     fun navDestinationRoute() {
-        val destination = provider.navDestination(DESTINATION_ROUTE) { }
+        val destination = provider.navDestination(DESTINATION_ROUTE) {}
         assertWithMessage("NavDestination should have route set")
             .that(destination.route)
             .isEqualTo(DESTINATION_ROUTE)
@@ -56,9 +57,7 @@
 
     @Test
     fun navDestinationLabel() {
-        val destination = provider.navDestination(DESTINATION_ID) {
-            label = LABEL
-        }
+        val destination = provider.navDestination(DESTINATION_ID) { label = LABEL }
         assertWithMessage("NavDestination should have label set")
             .that(destination.label)
             .isEqualTo(LABEL)
@@ -66,15 +65,12 @@
 
     @Test
     fun navDestinationKClass() {
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
-        val destination = provider.navDestination<TestClass> { }
+        val destination = provider.navDestination<TestClass> {}
         assertWithMessage("NavDestination should have route set")
             .that(destination.route)
-            .isEqualTo(
-                "androidx.navigation.NavDestinationTest.navDestinationKClass.TestClass"
-            )
+            .isEqualTo("androidx.navigation.NavDestinationTest.navDestinationKClass.TestClass")
         assertWithMessage("NavDestination should have id set")
             .that(destination.id)
             .isEqualTo(serializer<TestClass>().hashCode())
@@ -86,12 +82,10 @@
         @SerialName(DESTINATION_ROUTE)
         class TestClass(val arg: Int, val arg2: String = "123")
 
-        val destination = provider.navDestination<TestClass> { }
+        val destination = provider.navDestination<TestClass> {}
         assertWithMessage("NavDestination should have route set")
             .that(destination.route)
-            .isEqualTo(
-                "$DESTINATION_ROUTE/{arg}?arg2={arg2}"
-            )
+            .isEqualTo("$DESTINATION_ROUTE/{arg}?arg2={arg2}")
         assertWithMessage("NavDestination should have id set")
             .that(destination.id)
             .isEqualTo(serializer<TestClass>().hashCode())
@@ -108,16 +102,15 @@
 
     @Test
     fun navDestinationDefaultArguments() {
-        val destination = provider.navDestination(DESTINATION_ID) {
-            argument("testArg") {
-                defaultValue = "123"
-                type = NavType.StringType
+        val destination =
+            provider.navDestination(DESTINATION_ID) {
+                argument("testArg") {
+                    defaultValue = "123"
+                    type = NavType.StringType
+                }
+                argument("testArg2") { type = NavType.StringType }
+                argument("testArg3", NavArgument.Builder().setDefaultValue("123").build())
             }
-            argument("testArg2") {
-                type = NavType.StringType
-            }
-            argument("testArg3", NavArgument.Builder().setDefaultValue("123").build())
-        }
         assertWithMessage("NavDestination should have default arguments set")
             .that(destination.arguments.get("testArg")?.defaultValue)
             .isEqualTo("123")
@@ -131,11 +124,8 @@
 
     @Test
     fun navDestinationDefaultArgumentsInferred() {
-        val destination = provider.navDestination(DESTINATION_ID) {
-            argument("testArg") {
-                defaultValue = 123
-            }
-        }
+        val destination =
+            provider.navDestination(DESTINATION_ID) { argument("testArg") { defaultValue = 123 } }
         assertWithMessage("NavDestination should have default arguments set")
             .that(destination.arguments.get("testArg")?.defaultValue)
             .isEqualTo(123)
@@ -144,15 +134,14 @@
     @Suppress("DEPRECATION")
     @Test
     fun navDestinationAction() {
-        val destination = provider.navDestination(DESTINATION_ID) {
-            action(ACTION_ID) {
-                destinationId = DESTINATION_ID
-                navOptions {
-                    popUpTo(DESTINATION_ID)
+        val destination =
+            provider.navDestination(DESTINATION_ID) {
+                action(ACTION_ID) {
+                    destinationId = DESTINATION_ID
+                    navOptions { popUpTo(DESTINATION_ID) }
+                    defaultArguments[ACTION_ARGUMENT_KEY] = ACTION_ARGUMENT_VALUE
                 }
-                defaultArguments[ACTION_ARGUMENT_KEY] = ACTION_ARGUMENT_VALUE
             }
-        }
         val action = destination.getAction(ACTION_ID)
         assertWithMessage("NavDestination should have action that was added")
             .that(action)
@@ -167,19 +156,21 @@
 
     @Test
     fun navDestinationMissingRequiredArgument() {
-        val expected = assertFailsWith<IllegalArgumentException> {
-            provider.navDestination(DESTINATION_ROUTE) {
-                argument("intArg") {
-                    type = NavType.IntType
-                    nullable = false
+        val expected =
+            assertFailsWith<IllegalArgumentException> {
+                provider.navDestination(DESTINATION_ROUTE) {
+                    argument("intArg") {
+                        type = NavType.IntType
+                        nullable = false
+                    }
                 }
             }
-        }
-        assertThat(expected.message).isEqualTo(
-            "Deep link android-app://androidx.navigation/route can't be used to " +
-                "open destination NavDestination(0xa2bd82dc).\n" +
-                "Following required arguments are missing: [intArg]"
-        )
+        assertThat(expected.message)
+            .isEqualTo(
+                "Deep link android-app://androidx.navigation/route can't be used to " +
+                    "open destination NavDestination(0xa2bd82dc).\n" +
+                    "Following required arguments are missing: [intArg]"
+            )
     }
 
     @Test
@@ -194,16 +185,17 @@
 
     @Test
     fun navDestinationUnknownDefaultValuePresent() {
-        val destination = provider.navDestination(DESTINATION_ID) {
-            argument("arg1") {
-                type = NavType.StringType
-                unknownDefaultValuePresent = true
+        val destination =
+            provider.navDestination(DESTINATION_ID) {
+                argument("arg1") {
+                    type = NavType.StringType
+                    unknownDefaultValuePresent = true
+                }
+                argument("arg2") {
+                    type = NavType.StringType
+                    unknownDefaultValuePresent = false
+                }
             }
-            argument("arg2") {
-                type = NavType.StringType
-                unknownDefaultValuePresent = false
-            }
-        }
         val arg1 = destination.arguments["arg1"]
         assertThat(arg1?.isDefaultValuePresent).isTrue()
         assertThat(arg1?.isDefaultValueUnknown).isTrue()
@@ -215,158 +207,123 @@
 
     @Test
     fun navDestinationDeepLinkKClass() {
-        @Serializable
-        class Destination
-        @Serializable
-        class TestDeepLink
+        @Serializable class Destination
+        @Serializable class TestDeepLink
 
-        val destination = provider.navDestination<Destination> {
-            deepLink<TestDeepLink>("example.com")
-        }
-        assertThat(destination.hasDeepLink(
-            Uri.parse("https://example.com"))
-        ).isTrue()
+        val destination =
+            provider.navDestination<Destination> { deepLink<TestDeepLink>("example.com") }
+        assertThat(destination.hasDeepLink(Uri.parse("https://example.com"))).isTrue()
     }
 
     @Test
     fun navDestinationDeepLinkBuilderKClass() {
-        @Serializable
-        class Destination
-        @Serializable
-        class TestDeepLink
+        @Serializable class Destination
+        @Serializable class TestDeepLink
 
-        val destination = provider.navDestination<Destination> {
-            deepLink<TestDeepLink>("example.com") {
-                action = "action"
+        val destination =
+            provider.navDestination<Destination> {
+                deepLink<TestDeepLink>("example.com") { action = "action" }
             }
-        }
-        val request = NavDeepLinkRequest(
-            Uri.parse("https://example.com"),
-            "action",
-            null
-        )
+        val request = NavDeepLinkRequest(Uri.parse("https://example.com"), "action", null)
         assertThat(destination.hasDeepLink(request)).isTrue()
     }
 
     @Test
     fun navDestinationDeepLinkKClassArgs() {
-        @Serializable
-        class Destination(val arg: Int, val arg2: Boolean = false)
-        @Serializable
-        class DeepLink(val arg: Int, val arg2: Boolean = false)
+        @Serializable class Destination(val arg: Int, val arg2: Boolean = false)
+        @Serializable class DeepLink(val arg: Int, val arg2: Boolean = false)
 
-        val destination = provider.navDestination<Destination> {
-            deepLink<DeepLink>("example.com")
-        }
-        assertThat(destination.hasDeepLink(
-            Uri.parse("https://example.com/1?arg2=true"))
-        ).isTrue()
+        val destination = provider.navDestination<Destination> { deepLink<DeepLink>("example.com") }
+        assertThat(destination.hasDeepLink(Uri.parse("https://example.com/1?arg2=true"))).isTrue()
     }
 
     @Test
     fun navDestinationDeepLinkKClassArgsSameClass() {
-        @Serializable
-        class Destination(val arg: Int, val arg2: Boolean = false)
+        @Serializable class Destination(val arg: Int, val arg2: Boolean = false)
 
-        val destination = provider.navDestination<Destination> {
-            deepLink<Destination>("example.com")
-        }
-        assertThat(destination.hasDeepLink(
-            Uri.parse("https://example.com/1?arg2=true"))
-        ).isTrue()
+        val destination =
+            provider.navDestination<Destination> { deepLink<Destination>("example.com") }
+        assertThat(destination.hasDeepLink(Uri.parse("https://example.com/1?arg2=true"))).isTrue()
     }
 
     @Test
     fun navDestinationDeepLinkKClassWrongUriPattern() {
-        @Serializable
-        class Destination(val arg: Int, val arg2: Boolean = false)
-        @Serializable
-        class DeepLink(val arg: Int, val arg2: Boolean = false)
+        @Serializable class Destination(val arg: Int, val arg2: Boolean = false)
+        @Serializable class DeepLink(val arg: Int, val arg2: Boolean = false)
 
-        val destination = provider.navDestination<Destination> {
-            deepLink<DeepLink>("example.com")
-        }
-        assertThat(destination.hasDeepLink(
-            Uri.parse("https://wrong.com/1?arg2=true"))
-        ).isFalse()
+        val destination = provider.navDestination<Destination> { deepLink<DeepLink>("example.com") }
+        assertThat(destination.hasDeepLink(Uri.parse("https://wrong.com/1?arg2=true"))).isFalse()
     }
 
     @Test
     fun navDestinationDeepLinkKClassWithNonKClassDestination() {
-        @Serializable
-        class DeepLink
+        @Serializable class DeepLink
 
-        val exception = assertFailsWith<IllegalStateException> {
-            provider.navDestination("route") {
-                deepLink<DeepLink>("example.com")
+        val exception =
+            assertFailsWith<IllegalStateException> {
+                provider.navDestination("route") { deepLink<DeepLink>("example.com") }
             }
-        }
-        assertThat(exception.message).isEqualTo(
-            "Cannot add deeplink from KClass [class androidx.navigation." +
-                "NavDestinationTest\$navDestinationDeepLinkKClassWithNonKClassDestination" +
-                "\$DeepLink (Kotlin reflection is not available)]. Use the NavDestinationBuilder " +
-                "constructor that takes a KClass with the same arguments."
-        )
+        assertThat(exception.message)
+            .isEqualTo(
+                "Cannot add deeplink from KClass [class androidx.navigation." +
+                    "NavDestinationTest\$navDestinationDeepLinkKClassWithNonKClassDestination" +
+                    "\$DeepLink (Kotlin reflection is not available)]. Use the NavDestinationBuilder " +
+                    "constructor that takes a KClass with the same arguments."
+            )
     }
 
     @Test
     fun navDestinationDeepLinkKClassMissingArgument() {
-        @Serializable
-        class Destination(val arg: Int)
-        @Serializable
-        class DeepLink
+        @Serializable class Destination(val arg: Int)
+        @Serializable class DeepLink
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            provider.navDestination<Destination> {
-                deepLink<DeepLink>("example.com")
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                provider.navDestination<Destination> { deepLink<DeepLink>("example.com") }
             }
-        }
-        assertThat(exception.message).isEqualTo(
-            "Deep link example.com can't be used to open destination " +
-                "NavDestination(0x0).\nFollowing required arguments are missing: [arg]"
-        )
+        assertThat(exception.message)
+            .isEqualTo(
+                "Deep link example.com can't be used to open destination " +
+                    "NavDestination(0x0).\nFollowing required arguments are missing: [arg]"
+            )
     }
 
     @Test
     fun navDestinationDeepLinkKClassExtraArgument() {
-        @Serializable
-        class Destination
-        @Serializable
-        class DeepLink(val arg: Int)
+        @Serializable class Destination
+        @Serializable class DeepLink(val arg: Int)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            provider.navDestination<Destination> {
-                deepLink<DeepLink>("example.com")
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                provider.navDestination<Destination> { deepLink<DeepLink>("example.com") }
             }
-        }
-        assertThat(exception.message).isEqualTo(
-            "Cannot add deeplink from KClass [class androidx.navigation" +
-                ".NavDestinationTest\$navDestinationDeepLinkKClassExtraArgument" +
-                "\$DeepLink (Kotlin reflection is not available)]. DeepLink contains unknown " +
-                "argument [arg]. Ensure deeplink arguments matches the destination's route " +
-                "from KClass"
-        )
+        assertThat(exception.message)
+            .isEqualTo(
+                "Cannot add deeplink from KClass [class androidx.navigation" +
+                    ".NavDestinationTest\$navDestinationDeepLinkKClassExtraArgument" +
+                    "\$DeepLink (Kotlin reflection is not available)]. DeepLink contains unknown " +
+                    "argument [arg]. Ensure deeplink arguments matches the destination's route " +
+                    "from KClass"
+            )
     }
 
     @Test
     fun navDestinationDeepLinkKClassDifferentArgumentType() {
-        @Serializable
-        class Destination(val arg: String)
-        @Serializable
-        class DeepLink(val arg: Int)
+        @Serializable class Destination(val arg: String)
+        @Serializable class DeepLink(val arg: Int)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            provider.navDestination<Destination> {
-                deepLink<DeepLink>("example.com")
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                provider.navDestination<Destination> { deepLink<DeepLink>("example.com") }
             }
-        }
-        assertThat(exception.message).isEqualTo(
-            "Cannot add deeplink from KClass [class androidx.navigation" +
-                ".NavDestinationTest\$navDestinationDeepLinkKClassDifferentArgumentType" +
-                "\$DeepLink (Kotlin reflection is not available)]. DeepLink contains unknown " +
-                "argument [arg]. Ensure deeplink arguments matches the destination's route " +
-                "from KClass"
-        )
+        assertThat(exception.message)
+            .isEqualTo(
+                "Cannot add deeplink from KClass [class androidx.navigation" +
+                    ".NavDestinationTest\$navDestinationDeepLinkKClassDifferentArgumentType" +
+                    "\$DeepLink (Kotlin reflection is not available)]. DeepLink contains unknown " +
+                    "argument [arg]. Ensure deeplink arguments matches the destination's route " +
+                    "from KClass"
+            )
     }
 }
 
@@ -378,9 +335,8 @@
 private const val ACTION_ARGUMENT_VALUE = "VALUE"
 
 /**
- * Instead of constructing a NavGraph from the NavigatorProvider, construct
- * a NavDestination directly to allow for testing NavDestinationBuilder in
- * isolation.
+ * Instead of constructing a NavGraph from the NavigatorProvider, construct a NavDestination
+ * directly to allow for testing NavDestinationBuilder in isolation.
  */
 @Suppress("DEPRECATION")
 fun NavigatorProvider.navDestination(
@@ -389,9 +345,8 @@
 ): NavDestination = NavDestinationBuilder(this[NoOpNavigator::class], id).apply(builder).build()
 
 /**
- * Instead of constructing a NavGraph from the NavigatorProvider, construct
- * a NavDestination directly to allow for testing NavDestinationBuilder in
- * isolation.
+ * Instead of constructing a NavGraph from the NavigatorProvider, construct a NavDestination
+ * directly to allow for testing NavDestinationBuilder in isolation.
  */
 fun NavigatorProvider.navDestination(
     route: String,
@@ -400,9 +355,8 @@
     NavDestinationBuilder(this[NoOpNavigator::class], route = route).apply(builder).build()
 
 /**
- * Instead of constructing a NavGraph from the NavigatorProvider, construct
- * a NavDestination directly to allow for testing NavDestinationBuilder in
- * isolation.
+ * Instead of constructing a NavGraph from the NavigatorProvider, construct a NavDestination
+ * directly to allow for testing NavDestinationBuilder in isolation.
  */
 inline fun <reified T : Any> NavigatorProvider.navDestination(
     typeMap: Map<KType, NavType<*>> = emptyMap(),
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphAndroidTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphAndroidTest.kt
index d674582..2ec9cca 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphAndroidTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphAndroidTest.kt
@@ -36,25 +36,17 @@
 
     @Test
     fun matchDeepLink() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination()
+        val navigatorProvider = NavigatorProvider().apply { addNavigator(NavGraphNavigator(this)) }
+        val graph =
+            navigatorProvider.getNavigator(NavGraphNavigator::class.java).createDestination()
 
-        val idArgument = NavArgument.Builder()
-            .setType(NavType.IntType)
-            .build()
+        val idArgument = NavArgument.Builder().setType(NavType.IntType).build()
         graph.addArgument("id", idArgument)
         graph.addDeepLink("www.example.com/users/{id}")
 
-        val match = graph.matchDeepLink(
-            Uri.parse("https://www.example.com/users/43")
-        )
+        val match = graph.matchDeepLink(Uri.parse("https://www.example.com/users/43"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
 
         assertWithMessage("Deep link should extract id argument correctly")
             .that(match?.matchingArgs?.getInt("id"))
@@ -63,24 +55,18 @@
 
     @Test
     fun matchDeepLinkBestMatchExact() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination()
+        val navigatorProvider = NavigatorProvider().apply { addNavigator(NavGraphNavigator(this)) }
+        val graph =
+            navigatorProvider.getNavigator(NavGraphNavigator::class.java).createDestination()
 
         graph.addDeepLink("www.example.com/users/index.html")
 
         graph.addArgument("id", nullableStringArgument(null))
         graph.addDeepLink("www.example.com/users/{id}")
 
-        val match = graph.matchDeepLink(
-            Uri.parse("https://www.example.com/users/index.html")
-        )
+        val match = graph.matchDeepLink(Uri.parse("https://www.example.com/users/index.html"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should pick the exact match")
             .that(match?.matchingArgs?.size())
             .isEqualTo(0)
@@ -88,19 +74,15 @@
 
     @Test
     fun matchDotStar() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination()
+        val navigatorProvider = NavigatorProvider().apply { addNavigator(NavGraphNavigator(this)) }
+        val graph =
+            navigatorProvider.getNavigator(NavGraphNavigator::class.java).createDestination()
 
         graph.addDeepLink("www.example.com/.*")
         graph.addDeepLink("www.example.com/{name}")
 
         val match = graph.matchDeepLink(Uri.parse("https://www.example.com/foo"))
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
         assertWithMessage("Deep link should pick name over .*")
             .that(match?.matchingArgs?.size())
             .isEqualTo(1)
@@ -108,31 +90,21 @@
 
     @Test
     fun matchDeepLinkBestMatch() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination()
+        val navigatorProvider = NavigatorProvider().apply { addNavigator(NavGraphNavigator(this)) }
+        val graph =
+            navigatorProvider.getNavigator(NavGraphNavigator::class.java).createDestination()
 
-        val idArgument = NavArgument.Builder()
-            .setType(NavType.IntType)
-            .build()
+        val idArgument = NavArgument.Builder().setType(NavType.IntType).build()
         graph.addArgument("id", idArgument)
         graph.addDeepLink("www.example.com/users/{id}")
 
-        val postIdArgument = NavArgument.Builder()
-            .setType(NavType.IntType)
-            .build()
+        val postIdArgument = NavArgument.Builder().setType(NavType.IntType).build()
         graph.addArgument("postId", postIdArgument)
         graph.addDeepLink("www.example.com/users/{id}/posts/{postId}")
 
-        val match = graph.matchDeepLink(
-            Uri.parse("https://www.example.com/users/43/posts/99")
-        )
+        val match = graph.matchDeepLink(Uri.parse("https://www.example.com/users/43/posts/99"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
 
         assertWithMessage("Deep link should pick the argument with more matching arguments")
             .that(match?.matchingArgs?.size())
@@ -147,11 +119,9 @@
 
     @Test
     fun matchDeepLinkBestMatchPathAndQuery() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination()
+        val navigatorProvider = NavigatorProvider().apply { addNavigator(NavGraphNavigator(this)) }
+        val graph =
+            navigatorProvider.getNavigator(NavGraphNavigator::class.java).createDestination()
 
         graph.addArgument("code", nullableStringArgument(null))
         graph.addDeepLink("www.example.com/users?code={code}")
@@ -159,13 +129,9 @@
         graph.addArgument("id", nullableStringArgument(null))
         graph.addDeepLink("www.example.com/users?id={id}")
 
-        val match = graph.matchDeepLink(
-            Uri.parse("https://www.example.com/users?id=1234")
-        )
+        val match = graph.matchDeepLink(Uri.parse("https://www.example.com/users?id=1234"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
 
         assertWithMessage("Deep link should pick the argument with given values")
             .that(match?.matchingArgs?.size())
@@ -177,41 +143,34 @@
 
     @Test
     fun matchDeepLinkBestMatchChildren() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination()
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
+            }
+        val graph =
+            navigatorProvider.getNavigator(NavGraphNavigator::class.java).createDestination()
 
-        val userDestination = navigatorProvider.getNavigator(NoOpNavigator::class.java)
-            .createDestination()
+        val userDestination =
+            navigatorProvider.getNavigator(NoOpNavigator::class.java).createDestination()
         userDestination.id = 1
-        val idArgument = NavArgument.Builder()
-            .setType(NavType.IntType)
-            .build()
+        val idArgument = NavArgument.Builder().setType(NavType.IntType).build()
         userDestination.addArgument("id", idArgument)
         userDestination.addDeepLink("www.example.com/users/{id}")
         graph.addDestination(userDestination)
 
-        val postDestination = navigatorProvider.getNavigator(NoOpNavigator::class.java)
-            .createDestination()
+        val postDestination =
+            navigatorProvider.getNavigator(NoOpNavigator::class.java).createDestination()
         postDestination.id = 2
-        val postIdArgument = NavArgument.Builder()
-            .setType(NavType.IntType)
-            .build()
+        val postIdArgument = NavArgument.Builder().setType(NavType.IntType).build()
         postDestination.addArgument("id", idArgument)
         postDestination.addArgument("postId", postIdArgument)
         postDestination.addDeepLink("www.example.com/users/{id}/posts/{postId}")
         graph.addDestination(postDestination)
 
-        val match = graph.matchDeepLink(
-            Uri.parse("https://www.example.com/users/43/posts/99")
-        )
+        val match = graph.matchDeepLink(Uri.parse("https://www.example.com/users/43/posts/99"))
 
-        assertWithMessage("Deep link should match")
-            .that(match)
-            .isNotNull()
+        assertWithMessage("Deep link should match").that(match).isNotNull()
 
         assertWithMessage("Deep link should point to correct destination")
             .that(match?.destination)
@@ -226,156 +185,190 @@
 
     @Test
     fun toStringStartDestIdOnly() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination().apply {
-                id = GRAPH_ID
-                label = GRAPH_LABEL
-                setStartDestination(DESTINATION_ID)
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
             }
-        val expected = "NavGraph(0x${GRAPH_ID.toString(16)}) label=$GRAPH_LABEL " +
-            "startDestination=0x${DESTINATION_ID.toString(16)}"
+        val graph =
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
+                    id = GRAPH_ID
+                    label = GRAPH_LABEL
+                    setStartDestination(DESTINATION_ID)
+                }
+        val expected =
+            "NavGraph(0x${GRAPH_ID.toString(16)}) label=$GRAPH_LABEL " +
+                "startDestination=0x${DESTINATION_ID.toString(16)}"
         assertThat(graph.toString()).isEqualTo(expected)
     }
 
     @Test
     fun toStringStartDestRouteOnly() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination().apply {
-                route = GRAPH_ROUTE
-                id = GRAPH_ID
-                label = GRAPH_LABEL
-                setStartDestination(DESTINATION_ROUTE)
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
             }
-        val expected = "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
-            "label=$GRAPH_LABEL startDestination=$DESTINATION_ROUTE"
+        val graph =
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
+                    route = GRAPH_ROUTE
+                    id = GRAPH_ID
+                    label = GRAPH_LABEL
+                    setStartDestination(DESTINATION_ROUTE)
+                }
+        val expected =
+            "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
+                "label=$GRAPH_LABEL startDestination=$DESTINATION_ROUTE"
         assertThat(graph.toString()).isEqualTo(expected)
     }
 
     @Test
     fun startDestDisplayNameWithRoute() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination().apply {
-                route = GRAPH_ROUTE
-                id = GRAPH_ID
-                label = GRAPH_LABEL
-                setStartDestination(DESTINATION_ROUTE)
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
             }
+        val graph =
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
+                    route = GRAPH_ROUTE
+                    id = GRAPH_ID
+                    label = GRAPH_LABEL
+                    setStartDestination(DESTINATION_ROUTE)
+                }
         assertThat(graph.startDestDisplayName).isEqualTo(DESTINATION_ROUTE)
     }
 
     @Test
     fun toStringStartDestInNodes() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val destination = navigatorProvider.getNavigator(NoOpNavigator::class.java)
-            .createDestination().apply {
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
+            }
+        val destination =
+            navigatorProvider.getNavigator(NoOpNavigator::class.java).createDestination().apply {
                 id = DESTINATION_ID
                 label = DESTINATION_LABEL
             }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination().apply {
-                id = GRAPH_ID
-                label = GRAPH_LABEL
-                setStartDestination(DESTINATION_ID)
-                addDestination(destination)
-            }
-        val expected = "NavGraph(0x${GRAPH_ID.toString(16)}) label=$GRAPH_LABEL " +
-            "startDestination={NavDestination(0x${DESTINATION_ID.toString(16)}) " +
-            "label=$DESTINATION_LABEL}"
+        val graph =
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
+                    id = GRAPH_ID
+                    label = GRAPH_LABEL
+                    setStartDestination(DESTINATION_ID)
+                    addDestination(destination)
+                }
+        val expected =
+            "NavGraph(0x${GRAPH_ID.toString(16)}) label=$GRAPH_LABEL " +
+                "startDestination={NavDestination(0x${DESTINATION_ID.toString(16)}) " +
+                "label=$DESTINATION_LABEL}"
         assertThat(graph.toString()).isEqualTo(expected)
     }
 
     @Test
     fun toStringStartDestInNodesRoute() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val destination = navigatorProvider.getNavigator(NoOpNavigator::class.java)
-            .createDestination().apply {
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
+            }
+        val destination =
+            navigatorProvider.getNavigator(NoOpNavigator::class.java).createDestination().apply {
                 route = DESTINATION_ROUTE
                 id = DESTINATION_ID
                 label = DESTINATION_LABEL
             }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination().apply {
-                route = GRAPH_ROUTE
-                id = GRAPH_ID
-                label = GRAPH_LABEL
-                setStartDestination(DESTINATION_ROUTE)
-                setStartDestination(DESTINATION_ID)
-                addDestination(destination)
-            }
-        val expected = "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
-            "label=$GRAPH_LABEL " +
-            "startDestination={NavDestination(0x${DESTINATION_ID.toString(16)}) " +
-            "route=$DESTINATION_ROUTE label=$DESTINATION_LABEL}"
+        val graph =
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
+                    route = GRAPH_ROUTE
+                    id = GRAPH_ID
+                    label = GRAPH_LABEL
+                    setStartDestination(DESTINATION_ROUTE)
+                    setStartDestination(DESTINATION_ID)
+                    addDestination(destination)
+                }
+        val expected =
+            "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
+                "label=$GRAPH_LABEL " +
+                "startDestination={NavDestination(0x${DESTINATION_ID.toString(16)}) " +
+                "route=$DESTINATION_ROUTE label=$DESTINATION_LABEL}"
         assertThat(graph.toString()).isEqualTo(expected)
     }
 
     @Test
     fun toStringStartDestInNodesRouteWithStartDestID() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val destination = navigatorProvider.getNavigator(NoOpNavigator::class.java)
-            .createDestination().apply {
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
+            }
+        val destination =
+            navigatorProvider.getNavigator(NoOpNavigator::class.java).createDestination().apply {
                 route = DESTINATION_ROUTE
                 label = DESTINATION_LABEL
             }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination().apply {
-                route = GRAPH_ROUTE
-                id = GRAPH_ID
-                label = GRAPH_LABEL
-                setStartDestination(DESTINATION_ROUTE)
-                setStartDestination(DESTINATION_ID)
-                addDestination(destination)
-            }
-        val expected = "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
-            "label=$GRAPH_LABEL startDestination=0x${DESTINATION_ID.toString(16)}"
+        val graph =
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
+                    route = GRAPH_ROUTE
+                    id = GRAPH_ID
+                    label = GRAPH_LABEL
+                    setStartDestination(DESTINATION_ROUTE)
+                    setStartDestination(DESTINATION_ID)
+                    addDestination(destination)
+                }
+        val expected =
+            "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
+                "label=$GRAPH_LABEL startDestination=0x${DESTINATION_ID.toString(16)}"
         assertThat(graph.toString()).isEqualTo(expected)
     }
 
     @Test
     fun toStringStartDestInNodesRouteWithID() {
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(NoOpNavigator())
-        }
-        val destination = navigatorProvider.getNavigator(NoOpNavigator::class.java)
-            .createDestination().apply {
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(NoOpNavigator())
+            }
+        val destination =
+            navigatorProvider.getNavigator(NoOpNavigator::class.java).createDestination().apply {
                 route = DESTINATION_ROUTE
                 id = DESTINATION_ID
                 label = DESTINATION_LABEL
             }
-        val graph = navigatorProvider.getNavigator(NavGraphNavigator::class.java)
-            .createDestination().apply {
-                route = GRAPH_ROUTE
-                id = GRAPH_ID
-                label = GRAPH_LABEL
-                setStartDestination(DESTINATION_ROUTE)
-                addDestination(destination)
-            }
+        val graph =
+            navigatorProvider
+                .getNavigator(NavGraphNavigator::class.java)
+                .createDestination()
+                .apply {
+                    route = GRAPH_ROUTE
+                    id = GRAPH_ID
+                    label = GRAPH_LABEL
+                    setStartDestination(DESTINATION_ROUTE)
+                    addDestination(destination)
+                }
         // even though id was set after route, it should still be able to find the destination
         // based on route
-        val expected = "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
-            "label=$GRAPH_LABEL startDestination={$destination}"
+        val expected =
+            "NavGraph(0x${GRAPH_ID.toString(16)}) route=$GRAPH_ROUTE " +
+                "label=$GRAPH_LABEL startDestination={$destination}"
         assertThat(graph.toString()).isEqualTo(expected)
     }
 }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphBuilderTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphBuilderTest.kt
index 47313ec..19f03f9 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphBuilderTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphBuilderTest.kt
@@ -33,17 +33,19 @@
 @SmallTest
 @RunWith(AndroidJUnit4::class)
 class NavGraphBuilderTest {
-    private val provider = NavigatorProvider().apply {
-        addNavigator(NavGraphNavigator(this))
-        addNavigator(NoOpNavigator())
-    }
+    private val provider =
+        NavigatorProvider().apply {
+            addNavigator(NavGraphNavigator(this))
+            addNavigator(NoOpNavigator())
+        }
 
     @Suppress("DEPRECATION")
     @Test
     fun navigation() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-            navDestination(DESTINATION_ID) {}
-        }
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ID) {
+                navDestination(DESTINATION_ID) {}
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -51,11 +53,10 @@
 
     @Test
     fun navigationRoute() {
-        val graph = provider.navigation(
-            startDestination = DESTINATION_ROUTE
-        ) {
-            navDestination(DESTINATION_ROUTE) {}
-        }
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ROUTE) {
+                navDestination(DESTINATION_ROUTE) {}
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -64,11 +65,10 @@
     @Suppress("DEPRECATION")
     @Test
     fun navigationUnaryPlus() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-            +provider[NoOpNavigator::class].createDestination().apply {
-                id = DESTINATION_ID
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ID) {
+                +provider[NoOpNavigator::class].createDestination().apply { id = DESTINATION_ID }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -76,13 +76,12 @@
 
     @Test
     fun navigationUnaryPlusRoute() {
-        val graph = provider.navigation(
-            startDestination = DESTINATION_ROUTE
-        ) {
-            +provider[NoOpNavigator::class].createDestination().apply {
-                route = DESTINATION_ROUTE
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ROUTE) {
+                +provider[NoOpNavigator::class].createDestination().apply {
+                    route = DESTINATION_ROUTE
+                }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -91,12 +90,12 @@
     @Suppress("DEPRECATION")
     @Test
     fun navigationAddDestination() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-            val destination = provider[NoOpNavigator::class].createDestination().apply {
-                id = DESTINATION_ID
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ID) {
+                val destination =
+                    provider[NoOpNavigator::class].createDestination().apply { id = DESTINATION_ID }
+                addDestination(destination)
             }
-            addDestination(destination)
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -104,14 +103,14 @@
 
     @Test
     fun navigationAddDestinationRoute() {
-        val graph = provider.navigation(
-            startDestination = DESTINATION_ROUTE
-        ) {
-            val destination = provider[NoOpNavigator::class].createDestination().apply {
-                route = DESTINATION_ROUTE
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ROUTE) {
+                val destination =
+                    provider[NoOpNavigator::class].createDestination().apply {
+                        route = DESTINATION_ROUTE
+                    }
+                addDestination(destination)
             }
-            addDestination(destination)
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -119,19 +118,20 @@
 
     @Test
     fun navigationAddDestinationKClassBuilder() {
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
         val serializer = serializer<TestClass>()
         val route = serializer.generateRoutePattern()
-        val graph = provider.navigation(
-            startDestination = route
-        ) {
-            val builder = NavDestinationBuilder(
-                provider[NoOpNavigator::class], TestClass::class, emptyMap()
-            )
-            addDestination(builder.build())
-        }
+        val graph =
+            provider.navigation(startDestination = route) {
+                val builder =
+                    NavDestinationBuilder(
+                        provider[NoOpNavigator::class],
+                        TestClass::class,
+                        emptyMap()
+                    )
+                addDestination(builder.build())
+            }
         assertWithMessage("Destination route should be added to the graph")
             .that(route in graph)
             .isTrue()
@@ -142,19 +142,20 @@
 
     @Test
     fun navigationAddDestinationWithArgsKClassBuilder() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val serializer = serializer<TestClass>()
         val route = serializer.generateRoutePattern()
-        val graph = provider.navigation(
-            startDestination = route
-        ) {
-            val builder = NavDestinationBuilder(
-                provider[NoOpNavigator::class], TestClass::class, emptyMap()
-            )
-            addDestination(builder.build())
-        }
+        val graph =
+            provider.navigation(startDestination = route) {
+                val builder =
+                    NavDestinationBuilder(
+                        provider[NoOpNavigator::class],
+                        TestClass::class,
+                        emptyMap()
+                    )
+                addDestination(builder.build())
+            }
         assertWithMessage("Destination route should be added to the graph")
             .that(route in graph)
             .isTrue()
@@ -163,23 +164,21 @@
             .isTrue()
     }
 
-    @Test fun navigationStartDestinationKClass() {
-        @Serializable
-        class Graph(val arg: Int)
+    @Test
+    fun navigationStartDestinationKClass() {
+        @Serializable class Graph(val arg: Int)
 
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = provider.navigation(
-            route = Graph::class,
-            startDestination = TestClass::class
-        ) {
-            navDestination(TestClass::class) { }
-        }
+        val graph =
+            provider.navigation(route = Graph::class, startDestination = TestClass::class) {
+                navDestination(TestClass::class) {}
+            }
 
         // assert graph info
-        val expectedGraphRoute = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationStartDestinationKClass.Graph/{arg}"
+        val expectedGraphRoute =
+            "androidx.navigation.NavGraphBuilderTest." +
+                "navigationStartDestinationKClass.Graph/{arg}"
         assertWithMessage("graph route should be set")
             .that(graph.route)
             .isEqualTo(expectedGraphRoute)
@@ -188,8 +187,9 @@
             .isEqualTo(serializer<Graph>().hashCode())
 
         // assert start destination info
-        val expectedStartRoute = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationStartDestinationKClass.TestClass/{arg}"
+        val expectedStartRoute =
+            "androidx.navigation.NavGraphBuilderTest." +
+                "navigationStartDestinationKClass.TestClass/{arg}"
         assertWithMessage("Destination route should be added to the graph")
             .that(expectedStartRoute in graph)
             .isTrue()
@@ -201,23 +201,21 @@
             .isEqualTo(serializer<TestClass>().hashCode())
     }
 
-    @Test fun navigationStartDestinationObject() {
-        @Serializable
-        class Graph(val arg: Int)
+    @Test
+    fun navigationStartDestinationObject() {
+        @Serializable class Graph(val arg: Int)
 
-        @Serializable
-        class TestClass(val arg2: Int)
+        @Serializable class TestClass(val arg2: Int)
 
-        val graph = provider.navigation(
-            route = Graph::class,
-            startDestination = TestClass(1)
-        ) {
-            navDestination(TestClass::class) { }
-        }
+        val graph =
+            provider.navigation(route = Graph::class, startDestination = TestClass(1)) {
+                navDestination(TestClass::class) {}
+            }
 
         // assert graph info
-        val expectedGraphRoute = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationStartDestinationObject.Graph/{arg}"
+        val expectedGraphRoute =
+            "androidx.navigation.NavGraphBuilderTest." +
+                "navigationStartDestinationObject.Graph/{arg}"
         assertWithMessage("graph route should be set")
             .that(graph.route)
             .isEqualTo(expectedGraphRoute)
@@ -226,8 +224,9 @@
             .isEqualTo(serializer<Graph>().hashCode())
 
         // assert start destination info
-        val expectedStartRoute = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationStartDestinationObject.TestClass/1"
+        val expectedStartRoute =
+            "androidx.navigation.NavGraphBuilderTest." +
+                "navigationStartDestinationObject.TestClass/1"
         assertWithMessage("Destination route should be added to the graph")
             .that(expectedStartRoute in graph)
             .isTrue()
@@ -242,42 +241,36 @@
     @Suppress("DEPRECATION")
     @Test(expected = IllegalStateException::class)
     fun navigationMissingStartDestination() {
-        provider.navigation(startDestination = 0) {
-            navDestination(DESTINATION_ID) {}
-        }
+        provider.navigation(startDestination = 0) { navDestination(DESTINATION_ID) {} }
         fail("NavGraph should throw IllegalStateException if startDestination is zero")
     }
 
     @Test(expected = IllegalArgumentException::class)
     fun navigationMissingStartDestinationRoute() {
-        provider.navigation(startDestination = "") {
-            navDestination(DESTINATION_ROUTE) {}
-        }
+        provider.navigation(startDestination = "") { navDestination(DESTINATION_ROUTE) {} }
         fail("NavGraph should throw IllegalStateException if no startDestinationRoute is set")
     }
 
     @Test
     fun navigationMissingStartDestinationKClass() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         assertFailsWith<IllegalStateException> {
             provider.navigation(startDestination = TestClass::class) {
                 // nav destination must have been added via route from KClass
-                navDestination("route") { }
+                navDestination("route") {}
             }
         }
     }
 
     @Test
     fun navigationMissingStartDestinationObject() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         assertFailsWith<IllegalStateException> {
             provider.navigation(startDestination = TestClass(0)) {
                 // nav destination must have been added via route from KClass
-                navDestination("route") { }
+                navDestination("route") {}
             }
         }
     }
@@ -285,11 +278,12 @@
     @Suppress("DEPRECATION")
     @Test
     fun navigationNested() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-            navigation(DESTINATION_ID, startDestination = SECOND_DESTINATION_ID) {
-                navDestination(SECOND_DESTINATION_ID) {}
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ID) {
+                navigation(DESTINATION_ID, startDestination = SECOND_DESTINATION_ID) {
+                    navDestination(SECOND_DESTINATION_ID) {}
+                }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -297,11 +291,12 @@
 
     @Test
     fun navigationNestedRoute() {
-        val graph = provider.navigation(startDestination = DESTINATION_ROUTE) {
-            navigation(startDestination = SECOND_DESTINATION_ROUTE, route = DESTINATION_ROUTE) {
-                navDestination(SECOND_DESTINATION_ROUTE) {}
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ROUTE) {
+                navigation(startDestination = SECOND_DESTINATION_ROUTE, route = DESTINATION_ROUTE) {
+                    navDestination(SECOND_DESTINATION_ROUTE) {}
+                }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -309,28 +304,26 @@
 
     @Test
     fun navigationNestedKClass() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        @Serializable
-        class NestedGraph(val arg: Int)
+        @Serializable class NestedGraph(val arg: Int)
 
-        val graph = provider.navigation(startDestination = NestedGraph::class) {
-            navigation<NestedGraph>(startDestination = TestClass::class) {
-                navDestination(TestClass::class) {}
+        val graph =
+            provider.navigation(startDestination = NestedGraph::class) {
+                navigation<NestedGraph>(startDestination = TestClass::class) {
+                    navDestination(TestClass::class) {}
+                }
             }
-        }
-        val nestedGraph = graph.findNode(
-            serializer<NestedGraph>().generateRoutePattern()
-        ) as NavGraph
+        val nestedGraph =
+            graph.findNode(serializer<NestedGraph>().generateRoutePattern()) as NavGraph
         // assert graph
-        val expectedNestedGraph = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationNestedKClass.NestedGraph/{arg}"
+        val expectedNestedGraph =
+            "androidx.navigation.NavGraphBuilderTest." + "navigationNestedKClass.NestedGraph/{arg}"
         assertThat(nestedGraph.route).isEqualTo(expectedNestedGraph)
         assertThat(nestedGraph.id).isEqualTo(serializer<NestedGraph>().hashCode())
         // assert nested startDestination
-        val expectedNestedStart = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationNestedKClass.TestClass/{arg}"
+        val expectedNestedStart =
+            "androidx.navigation.NavGraphBuilderTest." + "navigationNestedKClass.TestClass/{arg}"
         assertThat(nestedGraph.startDestinationRoute).isEqualTo(expectedNestedStart)
         assertThat(nestedGraph.startDestinationId).isEqualTo(serializer<TestClass>().hashCode())
         assertWithMessage("Destination should be added to the nested graph")
@@ -340,30 +333,28 @@
 
     @Test
     fun navigationNestedObject() {
-        @Serializable
-        class TestClass(val arg2: Int)
+        @Serializable class TestClass(val arg2: Int)
 
-        @Serializable
-        class NestedGraph(val arg: Int)
+        @Serializable class NestedGraph(val arg: Int)
 
-        val graph = provider.navigation(startDestination = NestedGraph::class) {
-            navigation<NestedGraph>(startDestination = TestClass(15)) {
-                navDestination(TestClass::class) {}
+        val graph =
+            provider.navigation(startDestination = NestedGraph::class) {
+                navigation<NestedGraph>(startDestination = TestClass(15)) {
+                    navDestination(TestClass::class) {}
+                }
             }
-        }
-        val nestedGraph = graph.findNode(
-            serializer<NestedGraph>().generateRoutePattern()
-        ) as NavGraph
+        val nestedGraph =
+            graph.findNode(serializer<NestedGraph>().generateRoutePattern()) as NavGraph
 
         // assert graph
-        val expectedNestedGraph = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationNestedObject.NestedGraph/{arg}"
+        val expectedNestedGraph =
+            "androidx.navigation.NavGraphBuilderTest." + "navigationNestedObject.NestedGraph/{arg}"
         assertThat(nestedGraph.route).isEqualTo(expectedNestedGraph)
         assertThat(nestedGraph.id).isEqualTo(serializer<NestedGraph>().hashCode())
 
         // assert nested StartDestination
-        val expectedNestedStart = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationNestedObject.TestClass/15"
+        val expectedNestedStart =
+            "androidx.navigation.NavGraphBuilderTest." + "navigationNestedObject.TestClass/15"
         assertThat(nestedGraph.startDestinationRoute).isEqualTo(expectedNestedStart)
         assertThat(nestedGraph.startDestinationId).isEqualTo(serializer<TestClass>().hashCode())
         assertWithMessage("Destination should be added to the nested graph")
@@ -373,36 +364,37 @@
 
     @Test
     fun navigationNestedObjectAndKClass() {
-        @Serializable
-        class TestClass(val arg2: Int)
+        @Serializable class TestClass(val arg2: Int)
 
-        @Serializable
-        class NestedGraph(val arg: Int)
+        @Serializable class NestedGraph(val arg: Int)
 
-        val graph = provider.navigation(startDestination = NestedGraph(0)) {
-            navigation<NestedGraph>(startDestination = TestClass(15)) {
-                navDestination(TestClass::class) {}
+        val graph =
+            provider.navigation(startDestination = NestedGraph(0)) {
+                navigation<NestedGraph>(startDestination = TestClass(15)) {
+                    navDestination(TestClass::class) {}
+                }
             }
-        }
-        val nestedGraph = graph.findNode(
-            serializer<NestedGraph>().generateRoutePattern()
-        ) as NavGraph
+        val nestedGraph =
+            graph.findNode(serializer<NestedGraph>().generateRoutePattern()) as NavGraph
 
         // assert graph
-        val expectedStart = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationNestedObjectAndKClass.NestedGraph/0"
+        val expectedStart =
+            "androidx.navigation.NavGraphBuilderTest." +
+                "navigationNestedObjectAndKClass.NestedGraph/0"
         assertThat(graph.startDestinationRoute).isEqualTo(expectedStart)
         assertThat(graph.startDestinationId).isEqualTo(serializer<NestedGraph>().hashCode())
 
         // assert nested graph
-        val expectedNestedGraph = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationNestedObjectAndKClass.NestedGraph/{arg}"
+        val expectedNestedGraph =
+            "androidx.navigation.NavGraphBuilderTest." +
+                "navigationNestedObjectAndKClass.NestedGraph/{arg}"
         assertThat(nestedGraph.route).isEqualTo(expectedNestedGraph)
         assertThat(nestedGraph.id).isEqualTo(serializer<NestedGraph>().hashCode())
 
         // assert nested StartDestination
-        val expectedNestedStart = "androidx.navigation.NavGraphBuilderTest." +
-            "navigationNestedObjectAndKClass.TestClass/15"
+        val expectedNestedStart =
+            "androidx.navigation.NavGraphBuilderTest." +
+                "navigationNestedObjectAndKClass.TestClass/15"
         assertThat(nestedGraph.startDestinationRoute).isEqualTo(expectedNestedStart)
         assertThat(nestedGraph.startDestinationId).isEqualTo(serializer<TestClass>().hashCode())
         assertWithMessage("Destination should be added to the nested graph")
@@ -417,8 +409,8 @@
 private const val SECOND_DESTINATION_ROUTE = "second"
 
 /**
- * Create a base NavDestination. Generally, only subtypes of NavDestination should be
- * added to a NavGraph (hence why this is not in the common-ktx library)
+ * Create a base NavDestination. Generally, only subtypes of NavDestination should be added to a
+ * NavGraph (hence why this is not in the common-ktx library)
  */
 @Suppress("DEPRECATION")
 fun NavGraphBuilder.navDestination(
@@ -427,8 +419,8 @@
 ) = destination(NavDestinationBuilder(provider[NoOpNavigator::class], id).apply(builder))
 
 /**
- * Create a base NavDestination. Generally, only subtypes of NavDestination should be
- * added to a NavGraph (hence why this is not in the common-ktx library)
+ * Create a base NavDestination. Generally, only subtypes of NavDestination should be added to a
+ * NavGraph (hence why this is not in the common-ktx library)
  */
 fun NavGraphBuilder.navDestination(
     route: String,
@@ -436,11 +428,13 @@
 ) = destination(NavDestinationBuilder(provider[NoOpNavigator::class], route).apply(builder))
 
 /**
- * Create a base NavDestination. Generally, only subtypes of NavDestination should be
- * added to a NavGraph (hence why this is not in the common-ktx library)
+ * Create a base NavDestination. Generally, only subtypes of NavDestination should be added to a
+ * NavGraph (hence why this is not in the common-ktx library)
  */
 fun NavGraphBuilder.navDestination(
     route: KClass<*>,
     builder: NavDestinationBuilder<NavDestination>.() -> Unit
-) = destination(NavDestinationBuilder(provider[NoOpNavigator::class], route, emptyMap())
-    .apply(builder))
+) =
+    destination(
+        NavDestinationBuilder(provider[NoOpNavigator::class], route, emptyMap()).apply(builder)
+    )
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphTest.kt
index bc28047..ab5d378 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavGraphTest.kt
@@ -111,9 +111,7 @@
         other += navigator.createDestination().apply { id = DESTINATION_ID }
         other += navigator.createDestination().apply { id = SECOND_DESTINATION_ID }
 
-        assertWithMessage("Graphs should be equal")
-            .that(graph)
-            .isEqualTo(other)
+        assertWithMessage("Graphs should be equal").that(graph).isEqualTo(other)
     }
 
     @Test
@@ -125,9 +123,7 @@
         other += navigator.createDestination().apply { id = DESTINATION_ID }
         other += navigator.createDestination().apply { id = 3 }
 
-        assertWithMessage("Graphs should not be equal")
-            .that(graph)
-            .isNotEqualTo(other)
+        assertWithMessage("Graphs should not be equal").that(graph).isNotEqualTo(other)
     }
 
     @Test(expected = IllegalArgumentException::class)
@@ -138,16 +134,15 @@
 
     @Test
     fun graphSetStartDestinationKClass() {
-        @Serializable
-        @SerialName("route")
-        class TestClass(val arg: Int)
+        @Serializable @SerialName("route") class TestClass(val arg: Int)
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            setStartDestination(15)
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                setStartDestination(15)
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
         assertThat(graph.startDestinationId).isEqualTo(15)
 
         graph.setStartDestination<TestClass>()
@@ -157,15 +152,12 @@
 
     @Test
     fun graphSetStartDestinationKClassMissingStartDestination() {
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
         val graph = NavGraph(navGraphNavigator)
 
         // start destination not added via KClass, cannot match
-        assertFailsWith<IllegalStateException> {
-            graph.setStartDestination<TestClass>()
-        }
+        assertFailsWith<IllegalStateException> { graph.setStartDestination<TestClass>() }
     }
 
     @Test
@@ -174,12 +166,13 @@
         @SerialName("route")
         class TestClass(val arg: Int, val arg2: String? = "test")
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            setStartDestination(15)
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                setStartDestination(15)
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
         assertThat(graph.startDestinationId).isEqualTo(15)
 
         graph.setStartDestination(TestClass(20))
@@ -189,27 +182,24 @@
 
     @Test
     fun graphSetStartDestinationObjectMissingStartDestination() {
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
         val graph = NavGraph(navGraphNavigator)
 
         // start destination not added via KClass, cannot match
-        assertFailsWith<IllegalStateException> {
-            graph.setStartDestination(TestClass())
-        }
+        assertFailsWith<IllegalStateException> { graph.setStartDestination(TestClass()) }
     }
 
     @Test
     fun findNodeKClass() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
 
         val dest = graph.findNode<TestClass>()
         assertThat(dest).isNotNull()
@@ -217,42 +207,42 @@
 
     @Test
     fun getNodeKClass() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
 
         assertThat(graph[TestClass::class]).isNotNull()
     }
 
     @Test
     fun containNodeKClass() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
 
         assertThat(graph.contains(TestClass::class)).isTrue()
     }
 
     @Test
     fun findNodeObject() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
 
         val dest = graph.findNode(TestClass(15))
         assertThat(dest).isNotNull()
@@ -260,28 +250,28 @@
 
     @Test
     fun getNodeObject() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
 
         assertThat(graph[TestClass(15)]).isNotNull()
     }
 
     @Test
     fun containNodeObject() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = NavGraph(navGraphNavigator).apply {
-            addDestination(NavDestinationBuilder(
-                navGraphNavigator, TestClass::class, emptyMap()
-            ).build())
-        }
+        val graph =
+            NavGraph(navGraphNavigator).apply {
+                addDestination(
+                    NavDestinationBuilder(navGraphNavigator, TestClass::class, emptyMap()).build()
+                )
+            }
 
         assertThat(graph.contains(TestClass(15))).isTrue()
     }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavOptionsBuilderTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavOptionsBuilderTest.kt
index 191b97b..5ca07ef 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavOptionsBuilderTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavOptionsBuilderTest.kt
@@ -28,16 +28,13 @@
 @RunWith(AndroidJUnit4::class)
 class NavOptionsTest {
 
-    @Serializable
-    class TestClass
+    @Serializable class TestClass
 
     private val TEST_CLASS_ROUTE = "androidx.navigation.NavControllerRouteTest.TestClass"
 
     @Test
     fun launchSingleTop() {
-        val navOptions = navOptions {
-            launchSingleTop = true
-        }
+        val navOptions = navOptions { launchSingleTop = true }
         assertWithMessage("NavOptions should have launchSingleTop set")
             .that(navOptions.shouldLaunchSingleTop())
             .isTrue()
@@ -45,9 +42,7 @@
 
     @Test
     fun restoreState() {
-        val navOptions = navOptions {
-            restoreState = true
-        }
+        val navOptions = navOptions { restoreState = true }
         assertWithMessage("NavOptions should have restoreState set")
             .that(navOptions.shouldRestoreState())
             .isTrue()
@@ -55,9 +50,7 @@
 
     @Test
     fun popUpTo() {
-        val navOptions = navOptions {
-            popUpTo(DESTINATION_ID)
-        }
+        val navOptions = navOptions { popUpTo(DESTINATION_ID) }
         assertWithMessage("NavOptions should have popUpTo destination id set")
             .that(navOptions.popUpToId)
             .isEqualTo(DESTINATION_ID)
@@ -71,9 +64,7 @@
 
     @Test
     fun popUpToRoute() {
-        val navOptions = navOptions {
-            popUpTo(DESTINATION_ROUTE)
-        }
+        val navOptions = navOptions { popUpTo(DESTINATION_ROUTE) }
         assertWithMessage("NavOptions should have popUpTo destination route set")
             .that(navOptions.popUpToRoute)
             .isEqualTo(DESTINATION_ROUTE)
@@ -84,9 +75,7 @@
 
     @Test
     fun popUpToKClass() {
-        val navOptions = navOptions {
-            popUpTo<TestClass>()
-        }
+        val navOptions = navOptions { popUpTo<TestClass>() }
         assertWithMessage("NavOptions should have popUpTo destination route set")
             .that(navOptions.popUpToRouteClass)
             .isEqualTo(TestClass::class)
@@ -104,9 +93,7 @@
     @Test
     fun popUpToObject() {
         val popObj = TestClass()
-        val navOptions = navOptions {
-            popUpTo(popObj)
-        }
+        val navOptions = navOptions { popUpTo(popObj) }
         assertWithMessage("NavOptions should have popUpTo destination id set")
             .that(navOptions.popUpToId)
             .isEqualTo(serializer<TestClass>().hashCode())
@@ -187,11 +174,7 @@
 
     @Test
     fun popUpToRouteInclusive() {
-        val navOptions = navOptions {
-            popUpTo(DESTINATION_ROUTE) {
-                inclusive = true
-            }
-        }
+        val navOptions = navOptions { popUpTo(DESTINATION_ROUTE) { inclusive = true } }
         assertWithMessage("NavOptions should have popUpTo destination id set")
             .that(navOptions.popUpToRoute)
             .isEqualTo(DESTINATION_ROUTE)
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavTypeTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavTypeTest.kt
index 82dd11c..33fdf94 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavTypeTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/NavTypeTest.kt
@@ -67,8 +67,7 @@
         private val serializable = Person()
         private val serializables = arrayOf(Bitmap.Config.ALPHA_8)
         private val parcelableNavType = NavType.ParcelableType(ActivityInfo::class.java)
-        private val parcelableArrayNavType =
-            NavType.ParcelableArrayType(ActivityInfo::class.java)
+        private val parcelableArrayNavType = NavType.ParcelableArrayType(ActivityInfo::class.java)
         private val serializableNavType = NavType.SerializableType(Person::class.java)
         private val enumNavType = NavType.EnumType(Bitmap.Config::class.java)
         private val serializableArrayNavType =
@@ -77,38 +76,22 @@
 
     @Test
     fun fromArgType() {
-        assertThat(NavType.fromArgType("integer", null))
-            .isEqualTo(NavType.IntType)
-        assertThat(NavType.fromArgType("integer[]", null))
-            .isEqualTo(NavType.IntArrayType)
-        assertThat(NavType.fromArgType("List<Int>", null))
-            .isEqualTo(NavType.IntListType)
-        assertThat(NavType.fromArgType("long", null))
-            .isEqualTo(NavType.LongType)
-        assertThat(NavType.fromArgType("long[]", null))
-            .isEqualTo(NavType.LongArrayType)
-        assertThat(NavType.fromArgType("List<Long>", null))
-            .isEqualTo(NavType.LongListType)
-        assertThat(NavType.fromArgType("float", null))
-            .isEqualTo(NavType.FloatType)
-        assertThat(NavType.fromArgType("float[]", null))
-            .isEqualTo(NavType.FloatArrayType)
-        assertThat(NavType.fromArgType("List<Float>", null))
-            .isEqualTo(NavType.FloatListType)
-        assertThat(NavType.fromArgType("boolean", null))
-            .isEqualTo(NavType.BoolType)
-        assertThat(NavType.fromArgType("boolean[]", null))
-            .isEqualTo(NavType.BoolArrayType)
-        assertThat(NavType.fromArgType("List<Boolean>", null))
-            .isEqualTo(NavType.BoolListType)
-        assertThat(NavType.fromArgType("string", null))
-            .isEqualTo(NavType.StringType)
-        assertThat(NavType.fromArgType("string[]", null))
-            .isEqualTo(NavType.StringArrayType)
-        assertThat(NavType.fromArgType("List<String>", null))
-            .isEqualTo(NavType.StringListType)
-        assertThat(NavType.fromArgType("reference", null))
-            .isEqualTo(NavType.ReferenceType)
+        assertThat(NavType.fromArgType("integer", null)).isEqualTo(NavType.IntType)
+        assertThat(NavType.fromArgType("integer[]", null)).isEqualTo(NavType.IntArrayType)
+        assertThat(NavType.fromArgType("List<Int>", null)).isEqualTo(NavType.IntListType)
+        assertThat(NavType.fromArgType("long", null)).isEqualTo(NavType.LongType)
+        assertThat(NavType.fromArgType("long[]", null)).isEqualTo(NavType.LongArrayType)
+        assertThat(NavType.fromArgType("List<Long>", null)).isEqualTo(NavType.LongListType)
+        assertThat(NavType.fromArgType("float", null)).isEqualTo(NavType.FloatType)
+        assertThat(NavType.fromArgType("float[]", null)).isEqualTo(NavType.FloatArrayType)
+        assertThat(NavType.fromArgType("List<Float>", null)).isEqualTo(NavType.FloatListType)
+        assertThat(NavType.fromArgType("boolean", null)).isEqualTo(NavType.BoolType)
+        assertThat(NavType.fromArgType("boolean[]", null)).isEqualTo(NavType.BoolArrayType)
+        assertThat(NavType.fromArgType("List<Boolean>", null)).isEqualTo(NavType.BoolListType)
+        assertThat(NavType.fromArgType("string", null)).isEqualTo(NavType.StringType)
+        assertThat(NavType.fromArgType("string[]", null)).isEqualTo(NavType.StringArrayType)
+        assertThat(NavType.fromArgType("List<String>", null)).isEqualTo(NavType.StringListType)
+        assertThat(NavType.fromArgType("reference", null)).isEqualTo(NavType.ReferenceType)
         assertThat(NavType.fromArgType("android.content.pm.ActivityInfo", null))
             .isEqualTo(parcelableNavType)
         assertThat(NavType.fromArgType("android.content.pm.ActivityInfo[]", null))
@@ -119,60 +102,37 @@
             .isEqualTo(enumNavType)
         assertThat(NavType.fromArgType("android.graphics.Bitmap\$Config[]", null))
             .isEqualTo(serializableArrayNavType)
-        assertThat(NavType.fromArgType(null, null))
-            .isEqualTo(NavType.StringType)
+        assertThat(NavType.fromArgType(null, null)).isEqualTo(NavType.StringType)
     }
 
     @Test
     fun inferFromValue() {
-        assertThat(NavType.inferFromValue("stringvalue"))
-            .isEqualTo(NavType.StringType)
-        assertThat(NavType.inferFromValue("123"))
-            .isEqualTo(NavType.IntType)
-        assertThat(NavType.inferFromValue("0xFF"))
-            .isEqualTo(NavType.IntType)
-        assertThat(NavType.inferFromValue("123L"))
-            .isEqualTo(NavType.LongType)
-        assertThat(NavType.inferFromValue("1.5"))
-            .isEqualTo(NavType.FloatType)
-        assertThat(NavType.inferFromValue("true"))
-            .isEqualTo(NavType.BoolType)
+        assertThat(NavType.inferFromValue("stringvalue")).isEqualTo(NavType.StringType)
+        assertThat(NavType.inferFromValue("123")).isEqualTo(NavType.IntType)
+        assertThat(NavType.inferFromValue("0xFF")).isEqualTo(NavType.IntType)
+        assertThat(NavType.inferFromValue("123L")).isEqualTo(NavType.LongType)
+        assertThat(NavType.inferFromValue("1.5")).isEqualTo(NavType.FloatType)
+        assertThat(NavType.inferFromValue("true")).isEqualTo(NavType.BoolType)
     }
 
     @Test
     fun inferFromValueType() {
-        assertThat(NavType.inferFromValueType(i))
-            .isEqualTo(NavType.IntType)
-        assertThat(NavType.inferFromValueType(ints))
-            .isEqualTo(NavType.IntArrayType)
-        assertThat(NavType.inferFromValueType(l))
-            .isEqualTo(NavType.LongType)
-        assertThat(NavType.inferFromValueType(longs))
-            .isEqualTo(NavType.LongArrayType)
-        assertThat(NavType.inferFromValueType(fl))
-            .isEqualTo(NavType.FloatType)
-        assertThat(NavType.inferFromValueType(floats))
-            .isEqualTo(NavType.FloatArrayType)
-        assertThat(NavType.inferFromValueType(b))
-            .isEqualTo(NavType.BoolType)
-        assertThat(NavType.inferFromValueType(booleans))
-            .isEqualTo(NavType.BoolArrayType)
-        assertThat(NavType.inferFromValueType(s))
-            .isEqualTo(NavType.StringType)
-        assertThat(NavType.inferFromValueType(strings))
-            .isEqualTo(NavType.StringArrayType)
-        assertThat(NavType.inferFromValueType(parcelable))
-            .isEqualTo(parcelableNavType)
-        assertThat(NavType.inferFromValueType(parcelables))
-            .isEqualTo(parcelableArrayNavType)
-        assertThat(NavType.inferFromValueType(en))
-            .isEqualTo(enumNavType)
-        assertThat(NavType.inferFromValueType(serializable))
-            .isEqualTo(serializableNavType)
-        assertThat(NavType.inferFromValueType(serializables))
-            .isEqualTo(serializableArrayNavType)
-        assertThat(NavType.inferFromValueType(null))
-            .isEqualTo(NavType.StringType)
+        assertThat(NavType.inferFromValueType(i)).isEqualTo(NavType.IntType)
+        assertThat(NavType.inferFromValueType(ints)).isEqualTo(NavType.IntArrayType)
+        assertThat(NavType.inferFromValueType(l)).isEqualTo(NavType.LongType)
+        assertThat(NavType.inferFromValueType(longs)).isEqualTo(NavType.LongArrayType)
+        assertThat(NavType.inferFromValueType(fl)).isEqualTo(NavType.FloatType)
+        assertThat(NavType.inferFromValueType(floats)).isEqualTo(NavType.FloatArrayType)
+        assertThat(NavType.inferFromValueType(b)).isEqualTo(NavType.BoolType)
+        assertThat(NavType.inferFromValueType(booleans)).isEqualTo(NavType.BoolArrayType)
+        assertThat(NavType.inferFromValueType(s)).isEqualTo(NavType.StringType)
+        assertThat(NavType.inferFromValueType(strings)).isEqualTo(NavType.StringArrayType)
+        assertThat(NavType.inferFromValueType(parcelable)).isEqualTo(parcelableNavType)
+        assertThat(NavType.inferFromValueType(parcelables)).isEqualTo(parcelableArrayNavType)
+        assertThat(NavType.inferFromValueType(en)).isEqualTo(enumNavType)
+        assertThat(NavType.inferFromValueType(serializable)).isEqualTo(serializableNavType)
+        assertThat(NavType.inferFromValueType(serializables)).isEqualTo(serializableArrayNavType)
+        assertThat(NavType.inferFromValueType(null)).isEqualTo(NavType.StringType)
     }
 
     @Test
@@ -180,152 +140,247 @@
         val key = "key"
         val bundle = Bundle()
         NavType.IntType.put(bundle, key, i)
-        assertThat(NavType.IntType[bundle, key])
-            .isEqualTo(i)
+        assertThat(NavType.IntType[bundle, key]).isEqualTo(i)
         bundle.clear()
 
         NavType.IntArrayType.put(bundle, key, ints)
-        assertThat(NavType.IntArrayType[bundle, key])
-            .isEqualTo(ints)
+        assertThat(NavType.IntArrayType[bundle, key]).isEqualTo(ints)
         bundle.clear()
 
         NavType.IntListType.put(bundle, key, intList)
-        assertThat(NavType.IntListType[bundle, key])
-            .isEqualTo(intList)
+        assertThat(NavType.IntListType[bundle, key]).isEqualTo(intList)
         bundle.clear()
 
         NavType.IntListType.put(bundle, key, intArrayList)
-        assertThat(NavType.IntListType[bundle, key])
-            .isEqualTo(intArrayList)
+        assertThat(NavType.IntListType[bundle, key]).isEqualTo(intArrayList)
         bundle.clear()
 
         NavType.LongType.put(bundle, key, l)
-        assertThat(NavType.LongType[bundle, key])
-            .isEqualTo(l)
+        assertThat(NavType.LongType[bundle, key]).isEqualTo(l)
         bundle.clear()
 
         NavType.LongArrayType.put(bundle, key, longs)
-        assertThat(NavType.LongArrayType[bundle, key])
-            .isEqualTo(longs)
+        assertThat(NavType.LongArrayType[bundle, key]).isEqualTo(longs)
         bundle.clear()
 
         NavType.LongListType.put(bundle, key, longList)
-        assertThat(NavType.LongListType[bundle, key])
-            .isEqualTo(longList)
+        assertThat(NavType.LongListType[bundle, key]).isEqualTo(longList)
         bundle.clear()
 
         NavType.LongListType.put(bundle, key, longArrayList)
-        assertThat(NavType.LongListType[bundle, key])
-            .isEqualTo(longArrayList)
+        assertThat(NavType.LongListType[bundle, key]).isEqualTo(longArrayList)
         bundle.clear()
 
         NavType.FloatType.put(bundle, key, fl)
-        assertThat(NavType.FloatType[bundle, key])
-            .isEqualTo(fl)
+        assertThat(NavType.FloatType[bundle, key]).isEqualTo(fl)
         bundle.clear()
 
         NavType.FloatArrayType.put(bundle, key, floats)
-        assertThat(NavType.FloatArrayType[bundle, key])
-            .isEqualTo(floats)
+        assertThat(NavType.FloatArrayType[bundle, key]).isEqualTo(floats)
         bundle.clear()
 
         NavType.FloatListType.put(bundle, key, floatList)
-        assertThat(NavType.FloatListType[bundle, key])
-            .isEqualTo(floatList)
+        assertThat(NavType.FloatListType[bundle, key]).isEqualTo(floatList)
         bundle.clear()
 
         NavType.FloatListType.put(bundle, key, floatArrayList)
-        assertThat(NavType.FloatListType[bundle, key])
-            .isEqualTo(floatArrayList)
+        assertThat(NavType.FloatListType[bundle, key]).isEqualTo(floatArrayList)
         bundle.clear()
 
         NavType.BoolType.put(bundle, key, b)
-        assertThat(NavType.BoolType[bundle, key])
-            .isEqualTo(b)
+        assertThat(NavType.BoolType[bundle, key]).isEqualTo(b)
         bundle.clear()
 
         NavType.BoolArrayType.put(bundle, key, booleans)
-        assertThat(NavType.BoolArrayType[bundle, key])
-            .isEqualTo(booleans)
+        assertThat(NavType.BoolArrayType[bundle, key]).isEqualTo(booleans)
         bundle.clear()
 
         NavType.BoolListType.put(bundle, key, boolList)
-        assertThat(NavType.BoolListType[bundle, key])
-            .isEqualTo(boolList)
+        assertThat(NavType.BoolListType[bundle, key]).isEqualTo(boolList)
         bundle.clear()
 
         NavType.BoolListType.put(bundle, key, booArrayList)
-        assertThat(NavType.BoolListType[bundle, key])
-            .isEqualTo(booArrayList)
+        assertThat(NavType.BoolListType[bundle, key]).isEqualTo(booArrayList)
         bundle.clear()
 
         NavType.StringType.put(bundle, key, s)
-        assertThat(NavType.StringType[bundle, key])
-            .isEqualTo(s)
+        assertThat(NavType.StringType[bundle, key]).isEqualTo(s)
         bundle.clear()
 
         NavType.StringArrayType.put(bundle, key, strings)
-        assertThat(NavType.StringArrayType[bundle, key])
-            .isEqualTo(strings)
+        assertThat(NavType.StringArrayType[bundle, key]).isEqualTo(strings)
         bundle.clear()
 
         NavType.StringListType.put(bundle, key, stringList)
-        assertThat(NavType.StringListType[bundle, key])
-            .isEqualTo(stringList)
+        assertThat(NavType.StringListType[bundle, key]).isEqualTo(stringList)
         bundle.clear()
 
         NavType.StringListType.put(bundle, key, stringArrayList)
-        assertThat(NavType.StringListType[bundle, key])
-            .isEqualTo(stringArrayList)
+        assertThat(NavType.StringListType[bundle, key]).isEqualTo(stringArrayList)
         bundle.clear()
 
         NavType.ReferenceType.put(bundle, key, reference)
-        assertThat(NavType.ReferenceType[bundle, key])
-            .isEqualTo(reference)
+        assertThat(NavType.ReferenceType[bundle, key]).isEqualTo(reference)
         bundle.clear()
 
         parcelableNavType.put(bundle, key, parcelable)
-        assertThat(parcelableNavType[bundle, key])
-            .isEqualTo(parcelable)
+        assertThat(parcelableNavType[bundle, key]).isEqualTo(parcelable)
         bundle.clear()
 
         parcelableArrayNavType.put(bundle, key, parcelables)
-        assertThat(parcelableArrayNavType[bundle, key])
-            .isEqualTo(parcelables)
+        assertThat(parcelableArrayNavType[bundle, key]).isEqualTo(parcelables)
         bundle.clear()
 
         enumNavType.put(bundle, key, en)
-        assertThat(enumNavType[bundle, key])
-            .isEqualTo(en)
+        assertThat(enumNavType[bundle, key]).isEqualTo(en)
         bundle.clear()
 
         serializableNavType.put(bundle, key, serializable)
-        assertThat(serializableNavType[bundle, key])
-            .isEqualTo(serializable)
+        assertThat(serializableNavType[bundle, key]).isEqualTo(serializable)
         bundle.clear()
 
         serializableArrayNavType.put(bundle, key, serializables)
-        assertThat(serializableArrayNavType[bundle, key])
-            .isEqualTo(serializables)
+        assertThat(serializableArrayNavType[bundle, key]).isEqualTo(serializables)
+        bundle.clear()
+    }
+
+    @Test
+    fun putAndGetNullFromBundle() {
+        val key = "key"
+        val bundle = Bundle()
+
+        NavType.IntArrayType.put(bundle, key, null)
+        assertThat(NavType.IntArrayType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.IntListType.put(bundle, key, null)
+        assertThat(NavType.IntListType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.LongArrayType.put(bundle, key, null)
+        assertThat(NavType.LongArrayType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.LongListType.put(bundle, key, null)
+        assertThat(NavType.LongListType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.FloatArrayType.put(bundle, key, null)
+        assertThat(NavType.FloatArrayType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.FloatListType.put(bundle, key, null)
+        assertThat(NavType.FloatListType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.BoolArrayType.put(bundle, key, null)
+        assertThat(NavType.BoolArrayType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.BoolListType.put(bundle, key, null)
+        assertThat(NavType.BoolListType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.StringType.put(bundle, key, null)
+        assertThat(NavType.StringType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.StringArrayType.put(bundle, key, null)
+        assertThat(NavType.StringArrayType[bundle, key]).isEqualTo(null)
+        bundle.clear()
+
+        NavType.StringListType.put(bundle, key, null)
+        assertThat(NavType.StringListType[bundle, key]).isEqualTo(null)
         bundle.clear()
     }
 
     @Test
     fun parseValueWithHex() {
-        assertThat(NavType.IntType.parseValue(referenceHex))
-            .isEqualTo(reference)
+        assertThat(NavType.IntType.parseValue(referenceHex)).isEqualTo(reference)
 
-        assertThat(NavType.ReferenceType.parseValue(referenceHex))
-            .isEqualTo(reference)
+        assertThat(NavType.ReferenceType.parseValue(referenceHex)).isEqualTo(reference)
     }
 
     @Test
     fun parseEnumValue() {
-        assertThat(enumNavType.parseValue(enString))
-            .isEqualTo(en)
+        assertThat(enumNavType.parseValue(enString)).isEqualTo(en)
 
-        assertThat(enumNavType.parseValue(enStringCasing))
-            .isEqualTo(en)
+        assertThat(enumNavType.parseValue(enStringCasing)).isEqualTo(en)
+    }
+
+    @Test
+    fun parseNull() {
+        assertThat(NavType.IntArrayType.parseValue("null")).isNull()
+        assertThat(NavType.IntListType.parseValue("null")).isNull()
+
+        assertThat(NavType.LongArrayType.parseValue("null")).isNull()
+        assertThat(NavType.LongListType.parseValue("null")).isNull()
+
+        assertThat(NavType.FloatArrayType.parseValue("null")).isNull()
+        assertThat(NavType.FloatListType.parseValue("null")).isNull()
+
+        assertThat(NavType.BoolArrayType.parseValue("null")).isNull()
+        assertThat(NavType.BoolListType.parseValue("null")).isNull()
+
+        assertThat(NavType.StringType.parseValue("null")).isNull()
+        assertThat(NavType.StringArrayType.parseValue("null")).isNull()
+        assertThat(NavType.StringListType.parseValue("null")).isNull()
+    }
+
+    @Test
+    fun parseNullConsecutive() {
+        val stringArray = NavType.StringArrayType.parseValue("null")
+        assertThat(stringArray).isNull()
+        assertThat(NavType.StringArrayType.parseValue("null", stringArray)).isNull()
+        assertThat(NavType.StringArrayType.parseValue("test", stringArray))
+            .isEqualTo(arrayOf("test"))
+
+        val stringList = NavType.StringListType.parseValue("null")
+        assertThat(stringList).isNull()
+        assertThat(NavType.StringListType.parseValue("null", stringList)).isNull()
+        assertThat(NavType.StringListType.parseValue("test", stringList)).isEqualTo(listOf("test"))
+
+        val intArray = NavType.IntArrayType.parseValue("null")
+        assertThat(intArray).isNull()
+        assertThat(NavType.IntArrayType.parseValue("null", intArray)).isNull()
+        assertThat(NavType.IntArrayType.parseValue("1", intArray)).isEqualTo(intArrayOf(1))
+
+        val intList = NavType.IntListType.parseValue("null")
+        assertThat(stringList).isNull()
+        assertThat(NavType.IntListType.parseValue("null", intList)).isNull()
+        assertThat(NavType.IntListType.parseValue("1", intList)).isEqualTo(listOf(1))
+
+        val boolArray = NavType.BoolArrayType.parseValue("null")
+        assertThat(intArray).isNull()
+        assertThat(NavType.BoolArrayType.parseValue("null", boolArray)).isNull()
+        assertThat(NavType.BoolArrayType.parseValue("true", boolArray))
+            .isEqualTo(booleanArrayOf(true))
+
+        val boolList = NavType.BoolListType.parseValue("null")
+        assertThat(stringList).isNull()
+        assertThat(NavType.BoolListType.parseValue("null", boolList)).isNull()
+        assertThat(NavType.BoolListType.parseValue("true", boolList)).isEqualTo(listOf(true))
+
+        val floatArray = NavType.FloatArrayType.parseValue("null")
+        assertThat(floatArray).isNull()
+        assertThat(NavType.FloatArrayType.parseValue("null", floatArray)).isNull()
+        assertThat(NavType.FloatArrayType.parseValue("1.0F", floatArray))
+            .isEqualTo(floatArrayOf(1.0F))
+
+        val floatList = NavType.FloatListType.parseValue("null")
+        assertThat(floatArray).isNull()
+        assertThat(NavType.FloatListType.parseValue("null", floatList)).isNull()
+        assertThat(NavType.FloatListType.parseValue("1.0F", floatList)).isEqualTo(listOf(1.0F))
+
+        val longArray = NavType.LongArrayType.parseValue("null")
+        assertThat(longArray).isNull()
+        assertThat(NavType.LongArrayType.parseValue("null", longArray)).isNull()
+        assertThat(NavType.LongArrayType.parseValue("1L", longArray)).isEqualTo(longArrayOf(1L))
+
+        val longList = NavType.LongListType.parseValue("null")
+        assertThat(longList).isNull()
+        assertThat(NavType.LongListType.parseValue("null", longList)).isNull()
+        assertThat(NavType.LongListType.parseValue("1L", longList)).isEqualTo(listOf(1L))
     }
 
     @Test
@@ -369,68 +424,101 @@
 
     @Test
     fun serializeAsValues() {
-        assertThat((NavType.IntArrayType as CollectionNavType).serializeAsValues(
-            intArrayOf(0, 1))
-        ).containsExactly("0", "1").inOrder()
-        assertThat((NavType.IntListType as CollectionNavType).serializeAsValues(
-            listOf(0, 1))
-        ).containsExactly("0", "1").inOrder()
-        assertThat((NavType.IntListType as CollectionNavType).serializeAsValues(
-            arrayListOf(0, 1))
-        ).containsExactly("0", "1").inOrder()
-        assertThat((NavType.BoolArrayType as CollectionNavType).serializeAsValues(
-            booleanArrayOf(true, false))
-        ).containsExactly("true", "false").inOrder()
-        assertThat((NavType.BoolListType as CollectionNavType).serializeAsValues(
-            listOf(true, false))
-        ).containsExactly("true", "false").inOrder()
-        assertThat((NavType.BoolListType as CollectionNavType).serializeAsValues(
-            arrayListOf(true, false))
-        ).containsExactly("true", "false").inOrder()
-        assertThat((NavType.StringArrayType as CollectionNavType).serializeAsValues(
-            arrayOf("test", "test2"))
-        ).containsExactly("test", "test2").inOrder()
-        assertThat((NavType.StringListType as CollectionNavType).serializeAsValues(
-            listOf("test", "test2"))
-        ).containsExactly("test", "test2").inOrder()
-        assertThat((NavType.StringListType as CollectionNavType).serializeAsValues(
-            arrayListOf("test", "test2"))
-        ).containsExactly("test", "test2").inOrder()
-        assertThat((NavType.FloatArrayType as CollectionNavType).serializeAsValues(
-            floatArrayOf(1F, 2F))
-        ).containsExactly("1.0", "2.0").inOrder()
-        assertThat((NavType.FloatListType as CollectionNavType).serializeAsValues(
-            listOf(1F, 2F))
-        ).containsExactly("1.0", "2.0").inOrder()
-        assertThat((NavType.FloatListType as CollectionNavType).serializeAsValues(
-            arrayListOf(1F, 2F))
-        ).containsExactly("1.0", "2.0").inOrder()
-        assertThat((NavType.LongArrayType as CollectionNavType).serializeAsValues(
-            longArrayOf(1L, 2L))
-        ).containsExactly("1", "2").inOrder()
-        assertThat((NavType.LongListType as CollectionNavType).serializeAsValues(
-            listOf(1L, 2L))
-        ).containsExactly("1", "2").inOrder()
-        assertThat((NavType.LongListType as CollectionNavType).serializeAsValues(
-            arrayListOf(1L, 2L))
-        ).containsExactly("1", "2").inOrder()
+        assertThat((NavType.IntArrayType as CollectionNavType).serializeAsValues(intArrayOf(0, 1)))
+            .containsExactly("0", "1")
+            .inOrder()
+        assertThat((NavType.IntListType as CollectionNavType).serializeAsValues(listOf(0, 1)))
+            .containsExactly("0", "1")
+            .inOrder()
+        assertThat((NavType.IntListType as CollectionNavType).serializeAsValues(arrayListOf(0, 1)))
+            .containsExactly("0", "1")
+            .inOrder()
+        assertThat(
+                (NavType.BoolArrayType as CollectionNavType).serializeAsValues(
+                    booleanArrayOf(true, false)
+                )
+            )
+            .containsExactly("true", "false")
+            .inOrder()
+        assertThat(
+                (NavType.BoolListType as CollectionNavType).serializeAsValues(listOf(true, false))
+            )
+            .containsExactly("true", "false")
+            .inOrder()
+        assertThat(
+                (NavType.BoolListType as CollectionNavType).serializeAsValues(
+                    arrayListOf(true, false)
+                )
+            )
+            .containsExactly("true", "false")
+            .inOrder()
+        assertThat(
+                (NavType.StringArrayType as CollectionNavType).serializeAsValues(
+                    arrayOf("test", "test2")
+                )
+            )
+            .containsExactly("test", "test2")
+            .inOrder()
+        assertThat(
+                (NavType.StringListType as CollectionNavType).serializeAsValues(
+                    listOf("test", "test2")
+                )
+            )
+            .containsExactly("test", "test2")
+            .inOrder()
+        assertThat(
+                (NavType.StringListType as CollectionNavType).serializeAsValues(
+                    arrayListOf("test", "test2")
+                )
+            )
+            .containsExactly("test", "test2")
+            .inOrder()
+        assertThat(
+                (NavType.FloatArrayType as CollectionNavType).serializeAsValues(
+                    floatArrayOf(1F, 2F)
+                )
+            )
+            .containsExactly("1.0", "2.0")
+            .inOrder()
+        assertThat((NavType.FloatListType as CollectionNavType).serializeAsValues(listOf(1F, 2F)))
+            .containsExactly("1.0", "2.0")
+            .inOrder()
+        assertThat(
+                (NavType.FloatListType as CollectionNavType).serializeAsValues(arrayListOf(1F, 2F))
+            )
+            .containsExactly("1.0", "2.0")
+            .inOrder()
+        assertThat(
+                (NavType.LongArrayType as CollectionNavType).serializeAsValues(longArrayOf(1L, 2L))
+            )
+            .containsExactly("1", "2")
+            .inOrder()
+        assertThat((NavType.LongListType as CollectionNavType).serializeAsValues(listOf(1L, 2L)))
+            .containsExactly("1", "2")
+            .inOrder()
+        assertThat(
+                (NavType.LongListType as CollectionNavType).serializeAsValues(arrayListOf(1L, 2L))
+            )
+            .containsExactly("1", "2")
+            .inOrder()
     }
 
     @Test
     fun customType_defaultSerializeAsValue() {
-        val testItemType = object : NavType<TestItem> (false) {
-            override fun put(bundle: Bundle, key: String, value: TestItem) {
-                //
-            }
+        val testItemType =
+            object : NavType<TestItem>(false) {
+                override fun put(bundle: Bundle, key: String, value: TestItem) {
+                    //
+                }
 
-            override fun get(bundle: Bundle, key: String): TestItem? {
-                return TestItem()
-            }
+                override fun get(bundle: Bundle, key: String): TestItem? {
+                    return TestItem()
+                }
 
-            override fun parseValue(value: String): TestItem {
-                return TestItem()
+                override fun parseValue(value: String): TestItem {
+                    return TestItem()
+                }
             }
-        }
 
         val testItem = TestItem()
         val serializedValue = testItemType.serializeAsValue(testItem)
@@ -439,23 +527,24 @@
 
     @Test
     fun customType_overrideSerializeAsValue() {
-        val testItemType = object : NavType<TestItem> (false) {
-            override fun put(bundle: Bundle, key: String, value: TestItem) {
-                //
-            }
+        val testItemType =
+            object : NavType<TestItem>(false) {
+                override fun put(bundle: Bundle, key: String, value: TestItem) {
+                    //
+                }
 
-            override fun get(bundle: Bundle, key: String): TestItem? {
-                return TestItem()
-            }
+                override fun get(bundle: Bundle, key: String): TestItem? {
+                    return TestItem()
+                }
 
-            override fun parseValue(value: String): TestItem {
-                return TestItem()
-            }
+                override fun parseValue(value: String): TestItem {
+                    return TestItem()
+                }
 
-            override fun serializeAsValue(value: TestItem): String {
-                return "MyTestItem"
+                override fun serializeAsValue(value: TestItem): String {
+                    return "MyTestItem"
+                }
             }
-        }
 
         val serializedValue = testItemType.serializeAsValue(TestItem())
         assertThat(serializedValue).isEqualTo("MyTestItem")
@@ -464,33 +553,25 @@
     @Test
     fun stringType_defaultSerializeAsValue() {
         val stringType = NavType.StringType
-        assertThat(stringType.serializeAsValue("test_string")).isEqualTo(
-            Uri.encode("test_string")
-        )
+        assertThat(stringType.serializeAsValue("test_string")).isEqualTo(Uri.encode("test_string"))
     }
 
     @Test
     fun nullStringType_defaultSerializeAsValue() {
         val stringType = NavType.StringType
-        assertThat(stringType.serializeAsValue(null)).isEqualTo(
-            "null"
-        )
+        assertThat(stringType.serializeAsValue(null)).isEqualTo("null")
     }
 
     @Test
     fun nullStringType_parseValue() {
         val stringType = NavType.StringType
-        assertThat(stringType.parseValue("null")).isEqualTo(
-            null
-        )
+        assertThat(stringType.parseValue("null")).isEqualTo(null)
     }
 
     @Test
     fun nullableType_defaultSerializeAsValue() {
         val intArrayType = NavType.IntArrayType
-        assertThat(intArrayType.serializeAsValue(null)).isEqualTo(
-            "null"
-        )
+        assertThat(intArrayType.serializeAsValue(null)).isEqualTo("null")
     }
 }
 
@@ -502,6 +583,7 @@
 
 private data class TestParcelable(val arg: Int) : Parcelable {
     override fun describeContents(): Int = 0
+
     override fun writeToParcel(dest: Parcel, flags: Int) {}
 }
 
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteDecoderTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteDecoderTest.kt
index ebf840d..8be79e4 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteDecoderTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteDecoderTest.kt
@@ -41,15 +41,13 @@
 @RunWith(JUnit4::class)
 class RouteDecoderSavedStateTest : RouteDecoderTest(ArgumentSource.SAVED_STATE_HANDLE)
 
-@RunWith(JUnit4::class)
-class RouteDecoderBundleTest : RouteDecoderTest(ArgumentSource.BUNDLE)
+@RunWith(JUnit4::class) class RouteDecoderBundleTest : RouteDecoderTest(ArgumentSource.BUNDLE)
 
 abstract class RouteDecoderTest(val source: ArgumentSource) {
 
     @Test
     fun decodeString() {
-        @Serializable
-        data class TestClass(val arg: String)
+        @Serializable data class TestClass(val arg: String)
 
         val values = mapOf("arg" to "theArg")
         val result = decode<TestClass>(values, listOf(stringArgument("arg")))
@@ -58,8 +56,7 @@
 
     @Test
     fun decodeInt() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val values = mapOf("arg" to 15)
         val result = decode<TestClass>(values, listOf(intArgument("arg")))
@@ -68,175 +65,123 @@
 
     @Test
     fun decodeBoolean() {
-        @Serializable
-        class TestClass(val arg: Boolean)
+        @Serializable class TestClass(val arg: Boolean)
 
         val values = mapOf("arg" to false)
-        val result = decode<TestClass>(values, listOf(
-            navArgument("arg") {
-                type = NavType.BoolType
-            }
-        ))
+        val result =
+            decode<TestClass>(values, listOf(navArgument("arg") { type = NavType.BoolType }))
         assertThat(result.arg).isEqualTo(false)
     }
 
     @Test
     fun decodeLong() {
-        @Serializable
-        class TestClass(val arg: Long)
+        @Serializable class TestClass(val arg: Long)
 
         val map = mapOf("arg" to 1L)
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.LongType
-            }
-        ))
+        val result = decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.LongType }))
         assertThat(result.arg).isEqualTo(1L)
     }
 
     @Test
     fun decodeFloat() {
-        @Serializable
-        class TestClass(val arg: Float)
+        @Serializable class TestClass(val arg: Float)
 
         val map = mapOf("arg" to 1.0F)
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.FloatType
-            }
-        ))
+        val result = decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.FloatType }))
         assertThat(result.arg).isEqualTo(1.0F)
     }
 
     @Test
     fun decodeReference() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
         val map = mapOf("arg" to R.id.nav_id_reference)
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.ReferenceType
-            }
-        ))
+        val result =
+            decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.ReferenceType }))
         assertThat(result.arg).isEqualTo(R.id.nav_id_reference)
     }
 
     @Test
     fun decodeStringArray() {
-        @Serializable
-        data class TestClass(val arg: Array<String>)
+        @Serializable data class TestClass(val arg: Array<String>)
 
         val expected = arrayOf("arg1", "arg")
         val map = mapOf("arg" to expected)
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.StringArrayType
-            }
-        ))
+        val result =
+            decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.StringArrayType }))
         assertThat(result.arg).isEqualTo(expected)
     }
 
     @Test
     fun decodeIntArray() {
-        @Serializable
-        class TestClass(val arg: IntArray)
+        @Serializable class TestClass(val arg: IntArray)
 
         val map = mapOf("arg" to intArrayOf(0, 1, 2, 3))
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.IntArrayType
-            }
-        ))
+        val result =
+            decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.IntArrayType }))
         assertThat(result.arg).isEqualTo(intArrayOf(0, 1, 2, 3))
     }
 
     @Test
     fun decodeBooleanArray() {
-        @Serializable
-        class TestClass(val arg: BooleanArray)
+        @Serializable class TestClass(val arg: BooleanArray)
 
         val map = mapOf("arg" to booleanArrayOf(false, true))
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.BoolArrayType
-            }
-        ))
+        val result =
+            decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.BoolArrayType }))
         assertThat(result.arg).isEqualTo(booleanArrayOf(false, true))
     }
 
     @Test
     fun decodeLongArray() {
-        @Serializable
-        class TestClass(val arg: LongArray)
+        @Serializable class TestClass(val arg: LongArray)
 
         val map = mapOf("arg" to longArrayOf(1L, 2L))
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.LongArrayType
-            }
-        ))
+        val result =
+            decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.LongArrayType }))
         assertThat(result.arg).isEqualTo(longArrayOf(1L, 2L))
     }
 
     @Test
     fun decodeFloatArray() {
-        @Serializable
-        class TestClass(val arg: FloatArray)
+        @Serializable class TestClass(val arg: FloatArray)
 
         val map = mapOf("arg" to floatArrayOf(1.0F, 1.5F))
-        val result = decode<TestClass>(map, listOf(
-            navArgument("arg") {
-                type = NavType.FloatArrayType
-            }
-        ))
+        val result =
+            decode<TestClass>(map, listOf(navArgument("arg") { type = NavType.FloatArrayType }))
         assertThat(result.arg).isEqualTo(floatArrayOf(1.0F, 1.5F))
     }
 
     @Test
     fun decodeIntString() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: Int, val arg2: String)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: Int, val arg2: String)
 
         val map = mapOf("arg" to 15, "arg2" to "theArg")
-        val result = decode<TestClass>(
-            map,
-            listOf(stringArgument("arg2"), intArgument("arg"))
-        )
+        val result = decode<TestClass>(map, listOf(stringArgument("arg2"), intArgument("arg")))
         assertThat(result.arg).isEqualTo(15)
         assertThat(result.arg2).isEqualTo("theArg")
     }
 
     @Test
     fun decodeCustomType() {
-        @Serializable
-        class TestClass(val arg: CustomType)
+        @Serializable class TestClass(val arg: CustomType)
 
         val map = mapOf("arg" to CustomType(1))
-        val result = decode<TestClass>(
-            map,
-            listOf(customNavType)
-        )
+        val result = decode<TestClass>(map, listOf(customNavType))
         assertThat(result.arg.nestedArg).isEqualTo(1)
     }
 
     @Test
     fun decodeCustomTypeNullable() {
-        @Serializable
-        class TestClass(val arg: CustomType?)
+        @Serializable class TestClass(val arg: CustomType?)
 
         val map = mapOf("arg" to CustomType(1))
-        val result = decode<TestClass>(
-            map,
-            listOf(customNavType)
-        )
+        val result = decode<TestClass>(map, listOf(customNavType))
         assertThat(result.arg?.nestedArg).isEqualTo(1)
     }
 
     @Test
     fun decodeNullLiteral() {
-        @Serializable
-        data class TestClass(val arg: String)
+        @Serializable data class TestClass(val arg: String)
 
         val map = mapOf("arg" to "null")
         val result = decode<TestClass>(map, listOf(stringArgument("arg")))
@@ -245,85 +190,61 @@
 
     @Test
     fun decodeDefaultValue() {
-        @Serializable
-        data class TestClass(val arg: String = "defaultValue")
+        @Serializable data class TestClass(val arg: String = "defaultValue")
 
         val map = emptyMap<String, Any?>()
-        val result = decode<TestClass>(
-            map,
-            listOf(stringArgument("arg", true))
-        )
+        val result = decode<TestClass>(map, listOf(stringArgument("arg", true)))
         assertThat(result.arg).isEqualTo("defaultValue")
     }
 
     @Test
     fun decodeMultipleDefaultValue() {
-        @Serializable
-        data class TestClass(val arg: String = "defaultValue", val arg2: Int = 0)
+        @Serializable data class TestClass(val arg: String = "defaultValue", val arg2: Int = 0)
 
         val map = emptyMap<String, Any?>()
-        val result = decode<TestClass>(
-            map,
-            listOf(
-                stringArgument("arg", true),
-                intArgument("arg2", true)
-            )
-        )
+        val result =
+            decode<TestClass>(map, listOf(stringArgument("arg", true), intArgument("arg2", true)))
         assertThat(result.arg).isEqualTo("defaultValue")
         assertThat(result.arg2).isEqualTo(0)
     }
 
     @Test
     fun decodeDefaultValueOverridden() {
-        @Serializable
-        data class TestClass(val arg: String = "defaultValue")
+        @Serializable data class TestClass(val arg: String = "defaultValue")
 
         val map = mapOf("arg" to "newValue")
-        val result = decode<TestClass>(
-            map,
-            listOf(stringArgument("arg", true))
-        )
+        val result = decode<TestClass>(map, listOf(stringArgument("arg", true)))
         assertThat(result.arg).isEqualTo("newValue")
     }
 
     @Test
     fun decodeMultipleDefaultValueOverridden() {
-        @Serializable
-        data class TestClass(val arg: String = "defaultValue", val arg2: Int = 0)
+        @Serializable data class TestClass(val arg: String = "defaultValue", val arg2: Int = 0)
 
         val map = mapOf("arg" to "newValue", "arg2" to 1)
-        val result = decode<TestClass>(
-            map,
-            listOf(
-                stringArgument("arg", true),
-                intArgument("arg2", hasDefaultValue = true)
+        val result =
+            decode<TestClass>(
+                map,
+                listOf(stringArgument("arg", true), intArgument("arg2", hasDefaultValue = true))
             )
-        )
         assertThat(result.arg).isEqualTo("newValue")
         assertThat(result.arg2).isEqualTo(1)
     }
 
     @Test
     fun decodePartialDefaultValue() {
-        @Serializable
-        data class TestClass(val arg: String = "defaultValue", val arg2: Int)
+        @Serializable data class TestClass(val arg: String = "defaultValue", val arg2: Int)
 
         val map = mapOf("arg2" to 1)
-        val result = decode<TestClass>(
-            map,
-            listOf(
-                stringArgument("arg", true),
-                intArgument("arg2", false)
-            )
-        )
+        val result =
+            decode<TestClass>(map, listOf(stringArgument("arg", true), intArgument("arg2", false)))
         assertThat(result.arg).isEqualTo("defaultValue")
         assertThat(result.arg2).isEqualTo(1)
     }
 
     @Test
     fun decodeNullPrimitive() {
-        @Serializable
-        data class TestClass(val arg: String?)
+        @Serializable data class TestClass(val arg: String?)
 
         val map = mapOf("arg" to null)
         val result = decode<TestClass>(map, listOf(nullableStringArgument("arg")))
@@ -332,14 +253,10 @@
 
     @Test
     fun decodeNullCustom() {
-        @Serializable
-        class TestClass(val arg: CustomType?)
+        @Serializable class TestClass(val arg: CustomType?)
 
         val map = mapOf("arg" to null)
-        val result = decode<TestClass>(
-            map,
-            listOf(customNavType)
-        )
+        val result = decode<TestClass>(map, listOf(customNavType))
         assertThat(result.arg).isNull()
     }
 
@@ -348,76 +265,81 @@
         @Serializable
         class CustomType(val arg: Int?) : Parcelable {
             override fun describeContents() = 0
+
             override fun writeToParcel(dest: Parcel, flags: Int) {}
         }
 
-        @Serializable
-        class TestClass(val custom: CustomType)
+        @Serializable class TestClass(val custom: CustomType)
 
         @Suppress("DEPRECATION")
-        val customArg = navArgument("custom") {
-            type = object : NavType<CustomType>(false) {
-                override fun put(bundle: Bundle, key: String, value: CustomType) {
-                    if (value.arg == null) { bundle.putInt(key, -1) }
-                }
-                override fun get(bundle: Bundle, key: String): CustomType? {
-                    val value = bundle.getInt(key)
-                    return if (value == -1) CustomType(null) else CustomType(value)
-                }
-                override fun parseValue(value: String): CustomType = CustomType(0)
-                override fun serializeAsValue(value: CustomType) = ""
+        val customArg =
+            navArgument("custom") {
+                type =
+                    object : NavType<CustomType>(false) {
+                        override fun put(bundle: Bundle, key: String, value: CustomType) {
+                            if (value.arg == null) {
+                                bundle.putInt(key, -1)
+                            }
+                        }
+
+                        override fun get(bundle: Bundle, key: String): CustomType? {
+                            val value = bundle.getInt(key)
+                            return if (value == -1) CustomType(null) else CustomType(value)
+                        }
+
+                        override fun parseValue(value: String): CustomType = CustomType(0)
+
+                        override fun serializeAsValue(value: CustomType) = ""
+                    }
             }
-        }
         val map = mapOf("custom" to CustomType(null))
-        val result = decode<TestClass>(
-            map,
-            listOf(customArg)
-        )
+        val result = decode<TestClass>(map, listOf(customArg))
         assertThat(result.custom.arg).isNull()
     }
 
     @Test
     fun decodeCollectionNavType() {
-        val arg = listOf(
-            CustomTypeWithArg(1),
-            CustomTypeWithArg(3),
-            CustomTypeWithArg(5)
-        )
+        val arg = listOf(CustomTypeWithArg(1), CustomTypeWithArg(3), CustomTypeWithArg(5))
         val map = mapOf("list" to arg)
-        val result = decode<TestClassCollectionArg>(
-            map,
-            listOf(navArgument("list") { type = collectionNavType })
-        )
+        val result =
+            decode<TestClassCollectionArg>(
+                map,
+                listOf(navArgument("list") { type = collectionNavType })
+            )
         assertThat(result.list).containsExactlyElementsIn(arg).inOrder()
     }
 
-    @Serializable
-    private class CustomType(val nestedArg: Int)
+    @Serializable private class CustomType(val nestedArg: Int)
 
-    private val customNavType = navArgument("arg") {
-        type = object : NavType<CustomType?>(true) {
-            override fun put(bundle: Bundle, key: String, value: CustomType?) {
-                val string = value?.nestedArg?.toString() ?: "null"
-                bundle.putString(key, string)
-            }
-            override fun get(bundle: Bundle, key: String): CustomType? {
-                val string = bundle.getString(key)
-                return if (string == "null") {
-                    null
-                } else {
-                    CustomType(string!!.toInt())
+    private val customNavType =
+        navArgument("arg") {
+            type =
+                object : NavType<CustomType?>(true) {
+                    override fun put(bundle: Bundle, key: String, value: CustomType?) {
+                        val string = value?.nestedArg?.toString() ?: "null"
+                        bundle.putString(key, string)
+                    }
+
+                    override fun get(bundle: Bundle, key: String): CustomType? {
+                        val string = bundle.getString(key)
+                        return if (string == "null") {
+                            null
+                        } else {
+                            CustomType(string!!.toInt())
+                        }
+                    }
+
+                    override fun parseValue(value: String): CustomType? {
+                        return if (value == "null") {
+                            null
+                        } else {
+                            CustomType(value.toInt())
+                        }
+                    }
+
+                    override fun serializeAsValue(value: CustomType?) = value?.nestedArg.toString()
                 }
-            }
-            override fun parseValue(value: String): CustomType? {
-                return if (value == "null") {
-                    null
-                } else {
-                    CustomType(value.toInt())
-                }
-            }
-            override fun serializeAsValue(value: CustomType?) = value?.nestedArg.toString()
         }
-    }
 
     @Suppress("DEPRECATION")
     private inline fun <reified T : Any> decode(
@@ -438,9 +360,7 @@
             serializer<T>().decodeArguments(finalBundle, typeMap)
         } else {
             val handle = SavedStateHandle()
-            finalBundle.keySet().forEach {
-                handle[it] = finalBundle[it]
-            }
+            finalBundle.keySet().forEach { handle[it] = finalBundle[it] }
             serializer<T>().decodeArguments(handle, typeMap)
         }
     }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteFilledTest.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteFilledTest.kt
index 62fe8f0..0c7dee2 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteFilledTest.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/serialization/RouteFilledTest.kt
@@ -43,9 +43,7 @@
 
     @Test
     fun basePath() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass
 
         val clazz = TestClass()
         assertThatRouteFilledFrom(clazz).isEqualTo(PATH_SERIAL_NAME)
@@ -53,76 +51,48 @@
 
     @Test
     fun pathArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String)
 
         val clazz = TestClass("test")
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(stringArgument("arg"))
-        ).isEqualTo("$PATH_SERIAL_NAME/test")
+        assertThatRouteFilledFrom(clazz, listOf(stringArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/test")
     }
 
     @Test
     fun multiplePathArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String, val arg2: Int)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String, val arg2: Int)
 
         val clazz = TestClass("test", 0)
 
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(stringArgument("arg"), intArgument("arg2"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test/0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(stringArgument("arg"), intArgument("arg2")))
+            .isEqualTo("$PATH_SERIAL_NAME/test/0")
     }
 
     @Test
     fun pathArgNullable() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String?)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String?)
 
         val clazz = TestClass("test")
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(nullableStringArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/test")
     }
 
     @Test
     fun pathArgNull() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String?)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String?)
 
         val clazz = TestClass(null)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/null"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(nullableStringArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/null")
     }
 
     @Test
     fun pathArgNullLiteral() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String?)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String?)
 
         val clazz = TestClass("null")
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/null"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(nullableStringArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/null")
     }
 
     @Test
@@ -133,11 +103,10 @@
 
         val clazz = TestClass("test", 0)
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg"), nullableIntArgument("arg2"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test/0"
-        )
+                clazz,
+                listOf(nullableStringArgument("arg"), nullableIntArgument("arg2"))
+            )
+            .isEqualTo("$PATH_SERIAL_NAME/test/0")
     }
 
     @Test
@@ -148,86 +117,55 @@
 
         val clazz = TestClass(null, null)
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg"), nullableIntArgument("arg2"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/null/null"
-        )
+                clazz,
+                listOf(nullableStringArgument("arg"), nullableIntArgument("arg2"))
+            )
+            .isEqualTo("$PATH_SERIAL_NAME/null/null")
     }
 
     @Test
     fun queryArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String = "test")
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String = "test")
 
         val clazz = TestClass()
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(stringArgument("arg", true))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=test"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(stringArgument("arg", true)))
+            .isEqualTo("$PATH_SERIAL_NAME?arg=test")
     }
 
     @Test
     fun queryArgOverrideDefault() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String = "test")
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String = "test")
 
         val clazz = TestClass("newTest")
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(stringArgument("arg", true))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=newTest"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(stringArgument("arg", true)))
+            .isEqualTo("$PATH_SERIAL_NAME?arg=newTest")
     }
 
     @Test
     fun queryArgNullable() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String? = "test")
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String? = "test")
 
         val clazz = TestClass()
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg", true))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=test"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(nullableStringArgument("arg", true)))
+            .isEqualTo("$PATH_SERIAL_NAME?arg=test")
     }
 
     @Test
     fun queryArgNull() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String? = null)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String? = null)
 
         val clazz = TestClass()
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg", true))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=null"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(nullableStringArgument("arg", true)))
+            .isEqualTo("$PATH_SERIAL_NAME?arg=null")
     }
 
     @Test
     fun queryArgNullLiteral() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String? = null)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String? = null)
 
         val clazz = TestClass("null")
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(nullableStringArgument("arg", true))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=null"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(nullableStringArgument("arg", true)))
+            .isEqualTo("$PATH_SERIAL_NAME?arg=null")
     }
 
     @Test
@@ -238,14 +176,10 @@
 
         val clazz = TestClass()
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(
-                nullableStringArgument("arg", true),
-                nullableIntArgument("arg2", true)
+                clazz,
+                listOf(nullableStringArgument("arg", true), nullableIntArgument("arg2", true))
             )
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=test&arg2=0"
-        )
+            .isEqualTo("$PATH_SERIAL_NAME?arg=test&arg2=0")
     }
 
     @Test
@@ -256,14 +190,10 @@
 
         val clazz = TestClass()
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(
-                nullableStringArgument("arg", true),
-                nullableIntArgument("arg2", true)
+                clazz,
+                listOf(nullableStringArgument("arg", true), nullableIntArgument("arg2", true))
             )
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=null&arg2=null"
-        )
+            .isEqualTo("$PATH_SERIAL_NAME?arg=null&arg2=null")
     }
 
     @Test
@@ -274,14 +204,10 @@
 
         val clazz = TestClass("test")
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(
-                stringArgument("pathArg"),
-                intArgument("queryArg", true)
+                clazz,
+                listOf(stringArgument("pathArg"), intArgument("queryArg", true))
             )
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test?queryArg=0"
-        )
+            .isEqualTo("$PATH_SERIAL_NAME/test?queryArg=0")
     }
 
     @Test
@@ -292,14 +218,10 @@
 
         val clazz = TestClass(1, "test")
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(
-                intArgument("queryArg", true),
-                stringArgument("pathArg")
+                clazz,
+                listOf(intArgument("queryArg", true), stringArgument("pathArg"))
             )
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test?queryArg=1"
-        )
+            .isEqualTo("$PATH_SERIAL_NAME/test?queryArg=1")
     }
 
     @Test
@@ -310,59 +232,37 @@
 
         val clazz = TestClass("test", 1)
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(
-                nullableStringArgument("pathArg"),
-                nullableIntArgument("queryArg", true)
+                clazz,
+                listOf(nullableStringArgument("pathArg"), nullableIntArgument("queryArg", true))
             )
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test?queryArg=1"
-        )
+            .isEqualTo("$PATH_SERIAL_NAME/test?queryArg=1")
     }
 
     @Test
     fun queryArrayArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val array: IntArray)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val array: IntArray)
 
         val clazz = TestClass(intArrayOf(0, 1, 2))
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArrayArgument("array"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?array=0&array=1&array=2"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArrayArgument("array")))
+            .isEqualTo("$PATH_SERIAL_NAME?array=0&array=1&array=2")
     }
 
     @Test
     fun queryNullableArrayArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val array: IntArray?)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val array: IntArray?)
 
         val clazz = TestClass(intArrayOf(0, 1, 2))
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArrayArgument("array"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?array=0&array=1&array=2"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArrayArgument("array")))
+            .isEqualTo("$PATH_SERIAL_NAME?array=0&array=1&array=2")
     }
 
     @Test
     fun queryNullArrayArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val array: IntArray? = null)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val array: IntArray? = null)
 
         val clazz = TestClass()
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArrayArgument("array"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?array=null"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArrayArgument("array")))
+            .isEqualTo("$PATH_SERIAL_NAME?array=null")
     }
 
     @Test
@@ -373,14 +273,10 @@
 
         val clazz = TestClass("test", intArrayOf(0, 1, 2))
         assertThatRouteFilledFrom(
-            clazz,
-            listOf(
-                stringArgument("string"),
-                intArrayArgument("array")
+                clazz,
+                listOf(stringArgument("string"), intArrayArgument("array"))
             )
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test?array=0&array=1&array=2"
-        )
+            .isEqualTo("$PATH_SERIAL_NAME/test?array=0&array=1&array=2")
     }
 
     @Test
@@ -390,32 +286,24 @@
         class TestClass(val array: IntArray, val arg: Int = 0)
 
         val clazz = TestClass(intArrayOf(0, 1, 2), 15)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(
-                intArrayArgument("array"),
-                intArgument("arg")
-            )
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?array=0&array=1&array=2&arg=15"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArrayArgument("array"), intArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME?array=0&array=1&array=2&arg=15")
     }
 
     @Test
     fun routeListArgs() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class IntList(val list: List<Int>)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class IntList(val list: List<Int>)
         assertThatRouteFilledFrom(
-            IntList(listOf(1, 2)),
-            listOf(
-                navArgument("list") {
-                    type = NavType.IntListType
-                    nullable = false
-                    unknownDefaultValuePresent = false
-                }
+                IntList(listOf(1, 2)),
+                listOf(
+                    navArgument("list") {
+                        type = NavType.IntListType
+                        nullable = false
+                        unknownDefaultValuePresent = false
+                    }
+                )
             )
-        ).isEqualTo("$PATH_SERIAL_NAME?list=1&list=2")
+            .isEqualTo("$PATH_SERIAL_NAME?list=1&list=2")
     }
 
     @Test
@@ -427,34 +315,22 @@
         }
 
         val clazz = TestClass(0)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(stringArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(stringArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/0")
     }
 
     @Test
     fun withCompanionObject() {
         val clazz = ClassWithCompanionObject(0)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/0")
     }
 
     @Test
     fun withCompanionParameter() {
         val clazz = ClassWithCompanionParam(0)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/0")
     }
 
     @Test
@@ -462,77 +338,73 @@
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val arg: String) {
-            fun testFun() { }
+            fun testFun() {}
         }
 
         val clazz = TestClass("test")
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(stringArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/test"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(stringArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/test")
     }
 
     @Test
     fun customParamType() {
-        @Serializable
-        class CustomType
+        @Serializable class CustomType
 
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val custom: CustomType)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val custom: CustomType)
 
-        val customArg = navArgument("custom") {
-            type = object : NavType<CustomType>(false) {
-                override fun put(bundle: Bundle, key: String, value: CustomType) { }
-                override fun get(bundle: Bundle, key: String): CustomType? = null
-                override fun parseValue(value: String): CustomType = CustomType()
-                override fun serializeAsValue(value: CustomType) = "customValue"
+        val customArg =
+            navArgument("custom") {
+                type =
+                    object : NavType<CustomType>(false) {
+                        override fun put(bundle: Bundle, key: String, value: CustomType) {}
+
+                        override fun get(bundle: Bundle, key: String): CustomType? = null
+
+                        override fun parseValue(value: String): CustomType = CustomType()
+
+                        override fun serializeAsValue(value: CustomType) = "customValue"
+                    }
+                nullable = false
+                unknownDefaultValuePresent = false
             }
-            nullable = false
-            unknownDefaultValuePresent = false
-        }
 
         val clazz = TestClass(CustomType())
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(customArg)
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/customValue"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(customArg))
+            .isEqualTo("$PATH_SERIAL_NAME/customValue")
     }
 
     @Test
     fun nestedCustomParamType() {
         @Serializable
-        class NestedCustomType { override fun toString() = "nestedCustomValue" }
-
-        @Serializable
-        class CustomType(val nested: NestedCustomType)
-
-        val customArg = navArgument("custom") {
-            type = object : NavType<CustomType>(false) {
-                override fun put(bundle: Bundle, key: String, value: CustomType) { }
-                override fun get(bundle: Bundle, key: String) = null
-                override fun parseValue(value: String): CustomType = CustomType(NestedCustomType())
-                override fun serializeAsValue(value: CustomType) = "customValue[${value.nested}]"
-            }
-            nullable = false
-            unknownDefaultValuePresent = false
+        class NestedCustomType {
+            override fun toString() = "nestedCustomValue"
         }
 
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val custom: CustomType)
+        @Serializable class CustomType(val nested: NestedCustomType)
+
+        val customArg =
+            navArgument("custom") {
+                type =
+                    object : NavType<CustomType>(false) {
+                        override fun put(bundle: Bundle, key: String, value: CustomType) {}
+
+                        override fun get(bundle: Bundle, key: String) = null
+
+                        override fun parseValue(value: String): CustomType =
+                            CustomType(NestedCustomType())
+
+                        override fun serializeAsValue(value: CustomType) =
+                            "customValue[${value.nested}]"
+                    }
+                nullable = false
+                unknownDefaultValuePresent = false
+            }
+
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val custom: CustomType)
 
         val clazz = TestClass(CustomType(NestedCustomType()))
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(customArg)
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/customValue[nestedCustomValue]"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(customArg))
+            .isEqualTo("$PATH_SERIAL_NAME/customValue[nestedCustomValue]")
     }
 
     @Test
@@ -541,89 +413,98 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(
             val arg: Int,
-            @Serializable(with = CustomSerializer::class)
-            val arg2: CustomSerializerClass
+            @Serializable(with = CustomSerializer::class) val arg2: CustomSerializerClass
         )
 
-        val customArg = navArgument("arg2") {
-            type = object : NavType<CustomSerializerClass>(false) {
-                override fun put(bundle: Bundle, key: String, value: CustomSerializerClass) { }
-                override fun get(bundle: Bundle, key: String) = null
-                override fun parseValue(value: String) = CustomSerializerClass(1L)
-                override fun serializeAsValue(value: CustomSerializerClass) =
-                    "customSerializerClass[${value.longArg}]"
+        val customArg =
+            navArgument("arg2") {
+                type =
+                    object : NavType<CustomSerializerClass>(false) {
+                        override fun put(
+                            bundle: Bundle,
+                            key: String,
+                            value: CustomSerializerClass
+                        ) {}
+
+                        override fun get(bundle: Bundle, key: String) = null
+
+                        override fun parseValue(value: String) = CustomSerializerClass(1L)
+
+                        override fun serializeAsValue(value: CustomSerializerClass) =
+                            "customSerializerClass[${value.longArg}]"
+                    }
+                nullable = false
+                unknownDefaultValuePresent = false
             }
-            nullable = false
-            unknownDefaultValuePresent = false
-        }
         val clazz = TestClass(0, CustomSerializerClass(1L))
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArgument("arg"), customArg)
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/0/customSerializerClass[1]"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArgument("arg"), customArg))
+            .isEqualTo("$PATH_SERIAL_NAME/0/customSerializerClass[1]")
     }
 
     @Test
     fun customTypeParam() {
-        @Serializable
-        open class TypeParam
-        @Serializable
-        class CustomType<T : TypeParam>
+        @Serializable open class TypeParam
+        @Serializable class CustomType<T : TypeParam>
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val custom: CustomType<TypeParam>)
 
-        val navType = object : NavType<CustomType<TypeParam>>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(bundle: Bundle, key: String, value: CustomType<TypeParam>) { }
-            override fun get(bundle: Bundle, key: String): CustomType<TypeParam>? = null
-            override fun parseValue(value: String): CustomType<TypeParam> = CustomType()
-            override fun serializeAsValue(value: CustomType<TypeParam>) = "customValue"
-        }
+        val navType =
+            object : NavType<CustomType<TypeParam>>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(bundle: Bundle, key: String, value: CustomType<TypeParam>) {}
+
+                override fun get(bundle: Bundle, key: String): CustomType<TypeParam>? = null
+
+                override fun parseValue(value: String): CustomType<TypeParam> = CustomType()
+
+                override fun serializeAsValue(value: CustomType<TypeParam>) = "customValue"
+            }
         assertThatRouteFilledFrom(
-            TestClass(CustomType()),
-            listOf(navArgument("custom") { type = navType })
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/customValue"
-        )
+                TestClass(CustomType()),
+                listOf(navArgument("custom") { type = navType })
+            )
+            .isEqualTo("$PATH_SERIAL_NAME/customValue")
     }
 
     @Test
     fun customTypeParamNested() {
-        @Serializable
-        open class TypeParamNested
-        @Serializable
-        open class TypeParam<K : TypeParamNested>
-        @Serializable
-        class CustomType<T : TypeParam<TypeParamNested>>
+        @Serializable open class TypeParamNested
+        @Serializable open class TypeParam<K : TypeParamNested>
+        @Serializable class CustomType<T : TypeParam<TypeParamNested>>
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val custom: CustomType<TypeParam<TypeParamNested>>)
 
-        val navType = object : NavType<CustomType<TypeParam<TypeParamNested>>>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(
-                bundle: Bundle,
-                key: String,
-                value: CustomType<TypeParam<TypeParamNested>>
-            ) { }
-            override fun get(bundle: Bundle, key: String): CustomType<TypeParam<TypeParamNested>>? =
-                null
-            override fun parseValue(value: String): CustomType<TypeParam<TypeParamNested>> =
-                CustomType()
-            override fun serializeAsValue(value: CustomType<TypeParam<TypeParamNested>>) =
-                "customValue"
-        }
+        val navType =
+            object : NavType<CustomType<TypeParam<TypeParamNested>>>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(
+                    bundle: Bundle,
+                    key: String,
+                    value: CustomType<TypeParam<TypeParamNested>>
+                ) {}
+
+                override fun get(
+                    bundle: Bundle,
+                    key: String
+                ): CustomType<TypeParam<TypeParamNested>>? = null
+
+                override fun parseValue(value: String): CustomType<TypeParam<TypeParamNested>> =
+                    CustomType()
+
+                override fun serializeAsValue(value: CustomType<TypeParam<TypeParamNested>>) =
+                    "customValue"
+            }
         assertThatRouteFilledFrom(
-            TestClass(CustomType()),
-            listOf(navArgument("custom") { type = navType })
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/customValue"
-        )
+                TestClass(CustomType()),
+                listOf(navArgument("custom") { type = navType })
+            )
+            .isEqualTo("$PATH_SERIAL_NAME/customValue")
     }
 
     @Test
@@ -636,11 +517,7 @@
         }
         // only members with backing field should appear on route
         val clazz = TestClass()
-        assertThatRouteFilledFrom(
-            clazz
-        ).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+        assertThatRouteFilledFrom(clazz).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
@@ -651,12 +528,8 @@
             val arg: Int = 0
         }
         val clazz = TestClass()
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME?arg=0")
     }
 
     @Test
@@ -667,18 +540,13 @@
             lateinit var arg: IntArray
         }
         val clazz = TestClass().also { it.arg = intArrayOf(0) }
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArrayArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?arg=0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArrayArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME?arg=0")
     }
 
     @Test
     fun nonSerializableClassInvalid() {
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass
+        @SerialName(PATH_SERIAL_NAME) class TestClass
 
         assertFailsWith<SerializationException> {
             // the class must be serializable
@@ -688,25 +556,20 @@
 
     @Test
     fun childClassOfAbstract() {
-        @Serializable
-        abstract class TestAbstractClass
+        @Serializable abstract class TestAbstractClass
 
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass : TestAbstractClass()
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass : TestAbstractClass()
 
         val clazz = TestClass()
         assertThatRouteFilledFrom(
-            clazz,
-        ).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+                clazz,
+            )
+            .isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
     fun childClassOfAbstract_duplicateArgs() {
-        @Serializable
-        abstract class TestAbstractClass(val arg: Int)
+        @Serializable abstract class TestAbstractClass(val arg: Int)
 
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
@@ -714,66 +577,77 @@
 
         // args will be duplicated
         val clazz = TestClass(0)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArgument("arg"), intArgument("arg2"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/0/0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArgument("arg"), intArgument("arg2")))
+            .isEqualTo("$PATH_SERIAL_NAME/0/0")
     }
 
     @Test
     fun childClassOfSealed_withArgs() {
         // child class overrides parent variable so only child variable shows up in route pattern
         val clazz = SealedClass.TestClass(0)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArgument("arg2"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArgument("arg2")))
+            .isEqualTo("$PATH_SERIAL_NAME/0")
     }
 
     @Test
     fun childClassOfInterface() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: Int) : TestInterface
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: Int) : TestInterface
 
         val clazz = TestClass(0)
-        assertThatRouteFilledFrom(
-            clazz,
-            listOf(intArgument("arg"))
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME/0"
-        )
+        assertThatRouteFilledFrom(clazz, listOf(intArgument("arg")))
+            .isEqualTo("$PATH_SERIAL_NAME/0")
     }
 
     @Test
     fun routeFromObject() {
-        assertThatRouteFilledFrom(TestObject).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+        assertThatRouteFilledFrom(TestObject).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
     fun routeFromObject_argsNotSerialized() {
         // object variables are not serialized and does not show up on route
-        assertThatRouteFilledFrom(TestObjectWithArg).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+        assertThatRouteFilledFrom(TestObjectWithArg).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
     fun collectionNavType() {
         assertThatRouteFilledFrom(
-            TestClassCollectionArg(listOf(
-                CustomTypeWithArg(1), CustomTypeWithArg(3), CustomTypeWithArg(5)
-            )),
-            listOf(navArgument("list") { type = collectionNavType })
-        ).isEqualTo(
-            "$PATH_SERIAL_NAME?list=1&list=3&list=5"
-        )
+                TestClassCollectionArg(
+                    listOf(CustomTypeWithArg(1), CustomTypeWithArg(3), CustomTypeWithArg(5))
+                ),
+                listOf(navArgument("list") { type = collectionNavType })
+            )
+            .isEqualTo("$PATH_SERIAL_NAME?list=1&list=3&list=5")
+    }
+
+    @Test
+    fun nullStringList() {
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val list: List<String>?)
+
+        val clazz = TestClass(null)
+
+        val listArg =
+            navArgument("list") {
+                type = NavType.StringListType
+                nullable = true
+            }
+
+        assertThatRouteFilledFrom(clazz, listOf(listArg)).isEqualTo("$PATH_SERIAL_NAME?list=null")
+    }
+
+    @Test
+    fun nullIntList() {
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val list: List<Int>?)
+
+        val clazz = TestClass(null)
+
+        val listArg =
+            navArgument("list") {
+                type = NavType.IntListType
+                nullable = true
+            }
+
+        assertThatRouteFilledFrom(clazz, listOf(listArg)).isEqualTo("$PATH_SERIAL_NAME?list=null")
     }
 }
 
@@ -804,9 +678,7 @@
     }
 }
 
-@Serializable
-@SerialName(PATH_SERIAL_NAME)
-internal object TestObject
+@Serializable @SerialName(PATH_SERIAL_NAME) internal object TestObject
 
 @Serializable
 @SerialName(PATH_SERIAL_NAME)
@@ -830,107 +702,102 @@
 private class CustomSerializerClass(val longArg: Long)
 
 private class CustomSerializer : KSerializer<CustomSerializerClass> {
-    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(
-        "Date", PrimitiveKind.LONG
-    )
+    override val descriptor: SerialDescriptor =
+        PrimitiveSerialDescriptor("Date", PrimitiveKind.LONG)
+
     override fun serialize(encoder: Encoder, value: CustomSerializerClass) =
         encoder.encodeLong(value.longArg)
+
     override fun deserialize(decoder: Decoder): CustomSerializerClass =
         CustomSerializerClass(decoder.decodeLong())
 }
 
-@Serializable
-internal data class CustomTypeWithArg(val id: Int)
+@Serializable internal data class CustomTypeWithArg(val id: Int)
 
 @Serializable
 @SerialName(PATH_SERIAL_NAME)
 internal class TestClassCollectionArg(val list: List<CustomTypeWithArg>)
 
-internal val collectionNavType = object : CollectionNavType<List<CustomTypeWithArg>>(
-    false
-) {
-    override fun put(bundle: Bundle, key: String, value: List<CustomTypeWithArg>) {
-        bundle.putStringArrayList(key, ArrayList(value.map { it.id.toString() }))
+internal val collectionNavType =
+    object : CollectionNavType<List<CustomTypeWithArg>>(false) {
+        override fun put(bundle: Bundle, key: String, value: List<CustomTypeWithArg>) {
+            bundle.putStringArrayList(key, ArrayList(value.map { it.id.toString() }))
+        }
+
+        override fun serializeAsValues(value: List<CustomTypeWithArg>): List<String> =
+            value.map { it.id.toString() }
+
+        override fun get(bundle: Bundle, key: String): List<CustomTypeWithArg> {
+            return bundle.getStringArrayList(key)?.map { CustomTypeWithArg(it.toInt()) }
+                ?: emptyList()
+        }
+
+        override fun parseValue(value: String): List<CustomTypeWithArg> = listOf()
+
+        override fun serializeAsValue(value: List<CustomTypeWithArg>) = "CustomTypeWithArg"
     }
-    override fun serializeAsValues(value: List<CustomTypeWithArg>): List<String> =
-        value.map { it.id.toString() }
-    override fun get(bundle: Bundle, key: String): List<CustomTypeWithArg> {
-        return bundle.getStringArrayList(key)?.map { CustomTypeWithArg(it.toInt()) } ?: emptyList()
-    }
-    override fun parseValue(value: String): List<CustomTypeWithArg> = listOf()
-    override fun serializeAsValue(value: List<CustomTypeWithArg>) = "CustomTypeWithArg"
-}
 
 private interface TestInterface
 
-internal fun stringArgument(
-    name: String,
-    hasDefaultValue: Boolean = false
-) = navArgument(name) {
-    type = NavType.StringType
-    nullable = false
-    unknownDefaultValuePresent = hasDefaultValue
-}
-
-internal fun nullableStringArgument(
-    name: String,
-    hasDefaultValue: Boolean = false
-) = navArgument(name) {
-    type = NavType.StringType
-    nullable = true
-    unknownDefaultValuePresent = hasDefaultValue
-}
-
-internal fun intArgument(
-    name: String,
-    hasDefaultValue: Boolean = false
-) = navArgument(name) {
-    type = NavType.IntType
-    nullable = false
-    unknownDefaultValuePresent = hasDefaultValue
-}
-
-private fun nullableIntArgument(
-    name: String,
-    hasDefaultValue: Boolean = false
-) = navArgument(name) {
-    type = NullableIntType
-    nullable = true
-    unknownDefaultValuePresent = hasDefaultValue
-}
-
-private fun intArrayArgument(
-    name: String,
-    hasDefaultValue: Boolean = false
-) = navArgument(name) {
-    type = NavType.IntArrayType
-    nullable = true
-    unknownDefaultValuePresent = hasDefaultValue
-}
-
-private val NullableIntType: NavType<Int?> = object : NavType<Int?>(true) {
-    override val name: String
-        get() = "nullable_integer"
-
-    override fun put(bundle: Bundle, key: String, value: Int?) {
-        value?.let { bundle.putInt(key, value) }
+internal fun stringArgument(name: String, hasDefaultValue: Boolean = false) =
+    navArgument(name) {
+        type = NavType.StringType
+        nullable = false
+        unknownDefaultValuePresent = hasDefaultValue
     }
 
-    @Suppress("DEPRECATION")
-    override fun get(bundle: Bundle, key: String): Int? {
-        val value = bundle[key]
-        return value?.let { it as Int }
+internal fun nullableStringArgument(name: String, hasDefaultValue: Boolean = false) =
+    navArgument(name) {
+        type = NavType.StringType
+        nullable = true
+        unknownDefaultValuePresent = hasDefaultValue
     }
 
-    override fun parseValue(value: String): Int? {
-        return if (value == "null") {
-            null
-        } else if (value.startsWith("0x")) {
-            value.substring(2).toInt(16)
-        } else {
-            value.toInt()
+internal fun intArgument(name: String, hasDefaultValue: Boolean = false) =
+    navArgument(name) {
+        type = NavType.IntType
+        nullable = false
+        unknownDefaultValuePresent = hasDefaultValue
+    }
+
+private fun nullableIntArgument(name: String, hasDefaultValue: Boolean = false) =
+    navArgument(name) {
+        type = NullableIntType
+        nullable = true
+        unknownDefaultValuePresent = hasDefaultValue
+    }
+
+private fun intArrayArgument(name: String, hasDefaultValue: Boolean = false) =
+    navArgument(name) {
+        type = NavType.IntArrayType
+        nullable = true
+        unknownDefaultValuePresent = hasDefaultValue
+    }
+
+private val NullableIntType: NavType<Int?> =
+    object : NavType<Int?>(true) {
+        override val name: String
+            get() = "nullable_integer"
+
+        override fun put(bundle: Bundle, key: String, value: Int?) {
+            value?.let { bundle.putInt(key, value) }
         }
-    }
 
-    override fun serializeAsValue(value: Int?): String = value?.toString() ?: "null"
-}
+        @Suppress("DEPRECATION")
+        override fun get(bundle: Bundle, key: String): Int? {
+            val value = bundle[key]
+            return value?.let { it as Int }
+        }
+
+        override fun parseValue(value: String): Int? {
+            return if (value == "null") {
+                null
+            } else if (value.startsWith("0x")) {
+                value.substring(2).toInt(16)
+            } else {
+                value.toInt()
+            }
+        }
+
+        override fun serializeAsValue(value: Int?): String = value?.toString() ?: "null"
+    }
diff --git a/navigation/navigation-common/src/androidTest/java/androidx/navigation/test/NavArgument.kt b/navigation/navigation-common/src/androidTest/java/androidx/navigation/test/NavArgument.kt
index 20bac3b..e0de36f 100644
--- a/navigation/navigation-common/src/androidTest/java/androidx/navigation/test/NavArgument.kt
+++ b/navigation/navigation-common/src/androidTest/java/androidx/navigation/test/NavArgument.kt
@@ -23,92 +23,87 @@
 import androidx.navigation.NavType.Companion.LongType
 import androidx.navigation.NavType.Companion.ReferenceType
 import androidx.navigation.NavType.Companion.StringArrayType
+import androidx.navigation.NavType.Companion.StringListType
 import androidx.navigation.NavType.Companion.StringType
 
 // region IntType
 fun intArgument() = NavArgument.Builder().setType(IntType).build()
+
 fun booleanArgument() = NavArgument.Builder().setType(BoolType).build()
 
-fun intArgument(
-    defaultValue: Int
-) = NavArgument.Builder().setType(IntType)
-    .setDefaultValue(defaultValue)
-    .build()
+fun intArgument(defaultValue: Int) =
+    NavArgument.Builder().setType(IntType).setDefaultValue(defaultValue).build()
 
 fun intArgumentUnknownDefault() =
-    NavArgument.Builder().setType(IntType)
-    .setUnknownDefaultValuePresent(true)
-    .build()
+    NavArgument.Builder().setType(IntType).setUnknownDefaultValuePresent(true).build()
+
 // endregion
 
 // region LongType
 fun longArgument() = NavArgument.Builder().setType(LongType).build()
 
-fun longArgument(
-    defaultValue: Long
-) = NavArgument.Builder().setType(LongType)
-    .setDefaultValue(defaultValue)
-    .build()
+fun longArgument(defaultValue: Long) =
+    NavArgument.Builder().setType(LongType).setDefaultValue(defaultValue).build()
+
 // endregion
 
 // region FloatType
 fun floatArgument() = NavArgument.Builder().setType(FloatType).build()
 
-fun floatArgument(
-    defaultValue: Float
-) = NavArgument.Builder().setType(FloatType)
-    .setDefaultValue(defaultValue)
-    .build()
+fun floatArgument(defaultValue: Float) =
+    NavArgument.Builder().setType(FloatType).setDefaultValue(defaultValue).build()
+
 // endregion
 
 // region FloatType
 fun referenceArgument() = NavArgument.Builder().setType(ReferenceType).build()
 
-fun referenceArgument(
-    defaultValue: Int
-) = NavArgument.Builder().setType(ReferenceType)
-    .setDefaultValue(defaultValue)
-    .build()
+fun referenceArgument(defaultValue: Int) =
+    NavArgument.Builder().setType(ReferenceType).setDefaultValue(defaultValue).build()
+
 // endregion
 
 // region StringType
-fun stringArgument() = NavArgument.Builder().setType(StringType)
-    .setIsNullable(false)
-    .build()
+fun stringArgument() = NavArgument.Builder().setType(StringType).setIsNullable(false).build()
 
-fun stringArgumentUnknownDefault() = NavArgument.Builder().setType(StringType)
-    .setUnknownDefaultValuePresent(true)
-    .setIsNullable(false)
-    .build()
+fun stringArgumentUnknownDefault() =
+    NavArgument.Builder()
+        .setType(StringType)
+        .setUnknownDefaultValuePresent(true)
+        .setIsNullable(false)
+        .build()
 
-fun stringArgument(
-    defaultValue: String
-) = NavArgument.Builder().setType(StringType)
-    .setDefaultValue(defaultValue)
-    .build()
+fun stringArgument(defaultValue: String) =
+    NavArgument.Builder().setType(StringType).setDefaultValue(defaultValue).build()
 
-fun nullableStringArgument() = NavArgument.Builder().setType(StringType)
-    .setIsNullable(true)
-    .build()
+fun nullableStringArgument() = NavArgument.Builder().setType(StringType).setIsNullable(true).build()
 
-fun nullableStringArgument(
-    defaultValue: String?
-) = NavArgument.Builder().setType(StringType)
-    .setIsNullable(true)
-    .setDefaultValue(defaultValue)
-    .build()
+fun nullableStringArgument(defaultValue: String?) =
+    NavArgument.Builder()
+        .setType(StringType)
+        .setIsNullable(true)
+        .setDefaultValue(defaultValue)
+        .build()
 
-fun nullableStringArgumentUnknownDefault() = NavArgument.Builder().setType(StringType)
-    .setIsNullable(true)
-    .setUnknownDefaultValuePresent(true)
-    .build()
+fun nullableStringArgumentUnknownDefault() =
+    NavArgument.Builder()
+        .setType(StringType)
+        .setIsNullable(true)
+        .setUnknownDefaultValuePresent(true)
+        .build()
+
 // endregion
 
 // region StringArrayType
-fun stringArrayArgument(
-    defaultValue: Array<String>?
-) = NavArgument.Builder().setType(StringArrayType)
-    .setIsNullable(true)
-    .setDefaultValue(defaultValue)
-    .build()
+fun stringArrayArgument(defaultValue: Array<String>?) =
+    NavArgument.Builder()
+        .setType(StringArrayType)
+        .setIsNullable(true)
+        .setDefaultValue(defaultValue)
+        .build()
+
+// endregion
+
+// region StringListType
+fun stringListArgument() = NavArgument.Builder().setType(StringListType).setIsNullable(true).build()
 // endregion
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/CollectionNavType.kt b/navigation/navigation-common/src/main/java/androidx/navigation/CollectionNavType.kt
index d3bbefd..f50f433 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/CollectionNavType.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/CollectionNavType.kt
@@ -20,12 +20,12 @@
  * A [NavType] for [Collection] such as arrays, lists, maps.
  *
  * @param T the type of the data that is supported by this NavType
- *
  * @param isNullableAllowed whether the argument of this type can hold a null value
  */
 public abstract class CollectionNavType<T>(
     /**
      * Check if an argument with this type can hold a null value.
+     *
      * @return Returns true if this type allows null values, false otherwise.
      */
     isNullableAllowed: Boolean
@@ -34,8 +34,8 @@
     /**
      * Serialize a value of this NavType into a list of String.
      *
-     * Each element in the collection should be converted to an individual String element
-     * of the returned list.
+     * Each element in the collection should be converted to an individual String element of the
+     * returned list.
      *
      * @param value a value of this NavType
      * @return List containing serialized String representation of [value]
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/FloatingWindow.kt b/navigation/navigation-common/src/main/java/androidx/navigation/FloatingWindow.kt
index 834bc9d..2ecf6d6 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/FloatingWindow.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/FloatingWindow.kt
@@ -20,12 +20,10 @@
  * A marker interface for [NavDestination] subclasses that float above the view of other
  * destinations (i.e. [androidx.navigation.fragment.DialogFragmentNavigator.Destination]).
  *
+ * Destinations that implement this interface will automatically be popped off the back stack when
+ * you navigate to a new destination.
  *
- * Destinations that implement this interface will automatically be popped off the back
- * stack when you navigate to a new destination.
- *
- *
- * [androidx.navigation.NavController.OnDestinationChangedListener] instances can also
- * customize their behavior based on whether the destination is a FloatingWindow.
+ * [androidx.navigation.NavController.OnDestinationChangedListener] instances can also customize
+ * their behavior based on whether the destination is a FloatingWindow.
  */
 public interface FloatingWindow
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NamedNavArgument.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NamedNavArgument.kt
index d898cc0..b8dce1c 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NamedNavArgument.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NamedNavArgument.kt
@@ -16,36 +16,23 @@
 
 package androidx.navigation
 
-/**
- * Construct a new [NavArgument]
- */
-public fun navArgument(
-    name: String,
-    builder: NavArgumentBuilder.() -> Unit
-): NamedNavArgument = NamedNavArgument(name, NavArgumentBuilder().apply(builder).build())
+/** Construct a new [NavArgument] */
+public fun navArgument(name: String, builder: NavArgumentBuilder.() -> Unit): NamedNavArgument =
+    NamedNavArgument(name, NavArgumentBuilder().apply(builder).build())
 
-/**
- * Construct a named [NavArgument] by using the [navArgument] method.
- */
-public class NamedNavArgument internal constructor(
+/** Construct a named [NavArgument] by using the [navArgument] method. */
+public class NamedNavArgument
+internal constructor(
 
-    /**
-     * The name the argument is associated with
-     */
+    /** The name the argument is associated with */
     public val name: String,
 
-    /**
-     * The [NavArgument] associated with the name
-     */
+    /** The [NavArgument] associated with the name */
     public val argument: NavArgument
 ) {
-    /**
-     * Provides destructuring access to this [NamedNavArgument]'s [name]
-     */
+    /** Provides destructuring access to this [NamedNavArgument]'s [name] */
     public operator fun component1(): String = name
 
-    /**
-     * Provides destructuring access to this [NamedNavArgument]'s [argument]
-     */
+    /** Provides destructuring access to this [NamedNavArgument]'s [argument] */
     public operator fun component2(): NavArgument = argument
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavAction.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavAction.kt
index 82ed2e0c..68f597e 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavAction.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavAction.kt
@@ -19,30 +19,26 @@
 import androidx.annotation.IdRes
 
 /**
- * Navigation actions provide a level of indirection between your navigation code and the
- * underlying destinations. This allows you to define common actions that change their destination
- * or [NavOptions] based on the current [NavDestination].
+ * Navigation actions provide a level of indirection between your navigation code and the underlying
+ * destinations. This allows you to define common actions that change their destination or
+ * [NavOptions] based on the current [NavDestination].
  *
- * The [NavOptions] associated with a NavAction are used by default when navigating
- * to this action via [NavController.navigate].
+ * The [NavOptions] associated with a NavAction are used by default when navigating to this action
+ * via [NavController.navigate].
  *
  * Actions should be added via [NavDestination.putAction].
  *
- * @param destinationId the ID of the destination that should be navigated to when this
- * action is used.
+ * @param destinationId the ID of the destination that should be navigated to when this action is
+ *   used.
  * @param navOptions special options for this action that should be used by default
  * @param defaultArguments argument bundle to be used by default
  */
-public class NavAction @JvmOverloads constructor(
-    /**
-     * The ID of the destination that should be navigated to when this action is used
-     */
-    @field:IdRes
-    @param:IdRes
-    public val destinationId: Int,
-    /**
-     * The NavOptions to be used by default when navigating to this action.
-     */
+public class NavAction
+@JvmOverloads
+constructor(
+    /** The ID of the destination that should be navigated to when this action is used */
+    @field:IdRes @param:IdRes public val destinationId: Int,
+    /** The NavOptions to be used by default when navigating to this action. */
     public var navOptions: NavOptions? = null,
     /**
      * The argument bundle to be used by default when navigating to this action.
@@ -58,12 +54,10 @@
         if (other == null || other !is NavAction) return false
         return destinationId == other.destinationId &&
             navOptions == other.navOptions &&
-            (
-                defaultArguments == other.defaultArguments ||
-                    defaultArguments?.keySet()?.all {
-                        defaultArguments?.get(it) == other.defaultArguments?.get(it)
-                    } == true
-                )
+            (defaultArguments == other.defaultArguments ||
+                defaultArguments?.keySet()?.all {
+                    defaultArguments?.get(it) == other.defaultArguments?.get(it)
+                } == true)
     }
 
     @Suppress("DEPRECATION")
@@ -75,6 +69,7 @@
         }
         return result
     }
+
     override fun toString(): String {
         val sb = StringBuilder()
         sb.append(javaClass.simpleName)
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavArgs.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavArgs.kt
index 167dcb1..5a501c3 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavArgs.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavArgs.kt
@@ -15,7 +15,5 @@
  */
 package androidx.navigation
 
-/**
- * An interface marking generated Args classes.
- */
+/** An interface marking generated Args classes. */
 public interface NavArgs
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavArgsLazy.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavArgsLazy.kt
index 2375c94..e1f6cb2 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavArgsLazy.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavArgsLazy.kt
@@ -29,8 +29,8 @@
  * An implementation of [Lazy] used by [android.app.Activity.navArgs] and
  * [androidx.fragment.app.Fragment.navArgs].
  *
- * [argumentProducer] is a lambda that will be called during initialization to provide
- * arguments to construct an [Args] instance via reflection.
+ * [argumentProducer] is a lambda that will be called during initialization to provide arguments to
+ * construct an [Args] instance via reflection.
  */
 public class NavArgsLazy<Args : NavArgs>(
     private val navArgsClass: KClass<Args>,
@@ -43,11 +43,13 @@
             var args = cached
             if (args == null) {
                 val arguments = argumentProducer()
-                val method: Method = methodMap[navArgsClass]
-                    ?: navArgsClass.java.getMethod("fromBundle", *methodSignature).also { method ->
-                        // Save a reference to the method
-                        methodMap[navArgsClass] = method
-                    }
+                val method: Method =
+                    methodMap[navArgsClass]
+                        ?: navArgsClass.java.getMethod("fromBundle", *methodSignature).also { method
+                            ->
+                            // Save a reference to the method
+                            methodMap[navArgsClass] = method
+                        }
 
                 @SuppressLint("BanUncheckedReflection") // needed for method.invoke
                 @Suppress("UNCHECKED_CAST")
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavArgument.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavArgument.kt
index cd4d1d8..87647a2 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavArgument.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavArgument.kt
@@ -21,10 +21,11 @@
 /**
  * NavArgument denotes an argument that is supported by a [NavDestination].
  *
- * A NavArgument has a type and optionally a default value, that are used to read/write
- * it in a Bundle. It can also be nullable if the type supports it.
+ * A NavArgument has a type and optionally a default value, that are used to read/write it in a
+ * Bundle. It can also be nullable if the type supports it.
  */
-public class NavArgument internal constructor(
+public class NavArgument
+internal constructor(
     type: NavType<Any?>,
     isNullable: Boolean,
     defaultValue: Any?,
@@ -33,12 +34,14 @@
 ) {
     /**
      * The type of this NavArgument.
+     *
      * @return the NavType object denoting the type that can be help in this argument.
      */
     public val type: NavType<Any?>
 
     /**
      * Whether this argument allows passing a `null` value.
+     *
      * @return true if `null` is allowed, false otherwise
      */
     public val isNullable: Boolean
@@ -46,20 +49,22 @@
     /**
      * Used to distinguish between a default value of `null` and an argument without an explicit
      * default value.
-     * @return true if this argument has a default value (even if that value is set to null),
-     * false otherwise
+     *
+     * @return true if this argument has a default value (even if that value is set to null), false
+     *   otherwise
      */
     public val isDefaultValuePresent: Boolean
 
     /**
-     * Indicates whether the default value (if present) is unknown (i.e. safe args where
-     * default value is declared in KClass but not stored in [defaultValue]).
+     * Indicates whether the default value (if present) is unknown (i.e. safe args where default
+     * value is declared in KClass but not stored in [defaultValue]).
      */
     internal val isDefaultValueUnknown: Boolean
 
     /**
-     * The default value of this argument or `null` if it doesn't have a default value.
-     * Use [isDefaultValuePresent] to distinguish between `null` and absence of a value.
+     * The default value of this argument or `null` if it doesn't have a default value. Use
+     * [isDefaultValuePresent] to distinguish between `null` and absence of a value.
+     *
      * @return The default value assigned to this argument.
      */
     public val defaultValue: Any?
@@ -121,9 +126,7 @@
         return result
     }
 
-    /**
-     * A builder for constructing [NavArgument] instances.
-     */
+    /** A builder for constructing [NavArgument] instances. */
     @Suppress("UNCHECKED_CAST")
     public class Builder {
         private var type: NavType<Any?>? = null
@@ -134,6 +137,7 @@
 
         /**
          * Set the type of the argument.
+         *
          * @param type Type of the argument.
          * @return This builder.
          */
@@ -143,8 +147,9 @@
         }
 
         /**
-         * Specify if the argument is nullable.
-         * The NavType you set for this argument must allow nullable values.
+         * Specify if the argument is nullable. The NavType you set for this argument must allow
+         * nullable values.
+         *
          * @param isNullable Argument will be nullable if true.
          * @return This builder.
          * @see NavType.isNullableAllowed
@@ -157,8 +162,9 @@
         /**
          * Specify the default value for an argument. Calling this at least once will cause the
          * argument to have a default value, even if it is set to null.
-         * @param defaultValue Default value for this argument.
-         * Must match NavType if it is specified.
+         *
+         * @param defaultValue Default value for this argument. Must match NavType if it is
+         *   specified.
          * @return This builder.
          */
         public fun setDefaultValue(defaultValue: Any?): Builder {
@@ -170,9 +176,8 @@
         /**
          * Set whether there is an unknown default value present.
          *
-         * Use with caution!! In general you should let [setDefaultValue] to automatically set
-         * this state. This state should be set to true only if all these conditions are met:
-         *
+         * Use with caution!! In general you should let [setDefaultValue] to automatically set this
+         * state. This state should be set to true only if all these conditions are met:
          * 1. There is default value present
          * 2. You do not have access to actual default value (thus you can't use [defaultValue])
          * 3. You know the default value will never ever be null if [isNullable] is true.
@@ -183,9 +188,10 @@
         }
 
         /**
-         * Build the NavArgument specified by this builder.
-         * If the type is not set, the builder will infer the type from the default argument value.
-         * If there is no default value, the type will be unspecified.
+         * Build the NavArgument specified by this builder. If the type is not set, the builder will
+         * infer the type from the default argument value. If there is no default value, the type
+         * will be unspecified.
+         *
          * @return the newly constructed NavArgument.
          */
         public fun build(): NavArgument {
@@ -216,18 +222,16 @@
 }
 
 /**
- * Returns a list of NavArgument keys where required NavArguments with that key
- * returns false for the predicate `isArgumentMissing`.
+ * Returns a list of NavArgument keys where required NavArguments with that key returns false for
+ * the predicate `isArgumentMissing`.
  *
- * @param [isArgumentMissing] predicate that returns true if the key of a required NavArgument
- * is missing from a Bundle that is expected to contain it.
+ * @param [isArgumentMissing] predicate that returns true if the key of a required NavArgument is
+ *   missing from a Bundle that is expected to contain it.
  */
 internal fun Map<String, NavArgument?>.missingRequiredArguments(
     isArgumentMissing: (key: String) -> Boolean
 ): List<String> {
-    val requiredArgumentKeys = filterValues {
-        !it?.isNullable!! && !it.isDefaultValuePresent
-    }.keys
+    val requiredArgumentKeys = filterValues { !it?.isNullable!! && !it.isDefaultValuePresent }.keys
 
     return requiredArgumentKeys.filter { key -> isArgumentMissing(key) }
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavBackStackEntry.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavBackStackEntry.kt
index a2601e68..f99a1e8 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavBackStackEntry.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavBackStackEntry.kt
@@ -46,35 +46,41 @@
 
 /**
  * Representation of an entry in the back stack of a [androidx.navigation.NavController]. The
- * [Lifecycle], [ViewModelStore], and [SavedStateRegistry] provided via
- * this object are valid for the lifetime of this destination on the back stack: when this
- * destination is popped off the back stack, the lifecycle will be destroyed, state
- * will no longer be saved, and ViewModels will be cleared.
+ * [Lifecycle], [ViewModelStore], and [SavedStateRegistry] provided via this object are valid for
+ * the lifetime of this destination on the back stack: when this destination is popped off the back
+ * stack, the lifecycle will be destroyed, state will no longer be saved, and ViewModels will be
+ * cleared.
  */
-public class NavBackStackEntry private constructor(
+public class NavBackStackEntry
+private constructor(
     private val context: Context?,
     /**
      * The destination associated with this entry
+     *
      * @return The destination that is currently visible to users
      */
-    @set:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    public var destination: NavDestination,
+    @set:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public var destination: NavDestination,
     private val immutableArgs: Bundle? = null,
     private var hostLifecycleState: Lifecycle.State = Lifecycle.State.CREATED,
     private val viewModelStoreProvider: NavViewModelStoreProvider? = null,
     /**
      * The unique ID that serves as the identity of this entry
+     *
      * @return the unique ID of this entry
      */
     public val id: String = UUID.randomUUID().toString(),
     private val savedState: Bundle? = null
-) : LifecycleOwner,
+) :
+    LifecycleOwner,
     ViewModelStoreOwner,
     HasDefaultViewModelProviderFactory,
     SavedStateRegistryOwner {
 
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    constructor(entry: NavBackStackEntry, arguments: Bundle? = entry.arguments) : this(
+    constructor(
+        entry: NavBackStackEntry,
+        arguments: Bundle? = entry.arguments
+    ) : this(
         entry.context,
         entry.destination,
         arguments,
@@ -97,10 +103,16 @@
             viewModelStoreProvider: NavViewModelStoreProvider? = null,
             id: String = UUID.randomUUID().toString(),
             savedState: Bundle? = null
-        ): NavBackStackEntry = NavBackStackEntry(
-            context, destination, arguments,
-            hostLifecycleState, viewModelStoreProvider, id, savedState
-        )
+        ): NavBackStackEntry =
+            NavBackStackEntry(
+                context,
+                destination,
+                arguments,
+                hostLifecycleState,
+                viewModelStoreProvider,
+                id,
+                savedState
+            )
     }
 
     private var _lifecycle = LifecycleRegistry(this)
@@ -111,23 +123,21 @@
     }
 
     /**
-     * The arguments used for this entry. Note that the arguments of
-     * a NavBackStackEntry are immutable and defined when you `navigate()`
-     * to the destination - changes you make to this Bundle will not be
-     * reflected in future calls to this property.
+     * The arguments used for this entry. Note that the arguments of a NavBackStackEntry are
+     * immutable and defined when you `navigate()` to the destination - changes you make to this
+     * Bundle will not be reflected in future calls to this property.
      *
      * @return The arguments used when this entry was created
      */
     public val arguments: Bundle?
-        get() = if (immutableArgs == null) {
-            null
-        } else {
-            Bundle(immutableArgs)
-        }
+        get() =
+            if (immutableArgs == null) {
+                null
+            } else {
+                Bundle(immutableArgs)
+            }
 
-    /**
-     * The [SavedStateHandle] for this entry.
-     */
+    /** The [SavedStateHandle] for this entry. */
     @get:MainThread
     public val savedStateHandle: SavedStateHandle by lazy {
         check(savedStateRegistryAttached) {
@@ -139,17 +149,17 @@
             "You cannot access the NavBackStackEntry's SavedStateHandle after the " +
                 "NavBackStackEntry is destroyed."
         }
-        ViewModelProvider(
-            this, NavResultSavedStateFactory(this)
-        ).get(SavedStateViewModel::class.java).handle
+        ViewModelProvider(this, NavResultSavedStateFactory(this))
+            .get(SavedStateViewModel::class.java)
+            .handle
     }
 
     /**
      * {@inheritDoc}
      *
      * If the [androidx.navigation.NavHost] has not called
-     * [androidx.navigation.NavHostController.setLifecycleOwner], the
-     * Lifecycle will be capped at [Lifecycle.State.CREATED].
+     * [androidx.navigation.NavHostController.setLifecycleOwner], the Lifecycle will be capped at
+     * [Lifecycle.State.CREATED].
      */
     override val lifecycle: Lifecycle
         get() = _lifecycle
@@ -168,9 +178,7 @@
         updateState()
     }
 
-    /**
-     * Update the state to be the lower of the two constraints:
-     */
+    /** Update the state to be the lower of the two constraints: */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun updateState() {
         if (!savedStateRegistryAttached) {
@@ -195,8 +203,8 @@
          * {@inheritDoc}
          *
          * @throws IllegalStateException if called before the [lifecycle] has moved to
-         * [Lifecycle.State.CREATED] or before the [androidx.navigation.NavHost] has called
-         * [androidx.navigation.NavHostController.setViewModelStore].
+         *   [Lifecycle.State.CREATED] or before the [androidx.navigation.NavHost] has called
+         *   [androidx.navigation.NavHostController.setViewModelStore].
          */
         get() {
             check(savedStateRegistryAttached) {
@@ -225,9 +233,7 @@
             }
             extras[SAVED_STATE_REGISTRY_OWNER_KEY] = this
             extras[VIEW_MODEL_STORE_OWNER_KEY] = this
-            arguments?.let { args ->
-                extras[DEFAULT_ARGS_KEY] = args
-            }
+            arguments?.let { args -> extras[DEFAULT_ARGS_KEY] = args }
             return extras
         }
 
@@ -242,23 +248,21 @@
     @Suppress("DEPRECATION")
     override fun equals(other: Any?): Boolean {
         if (other == null || other !is NavBackStackEntry) return false
-        return id == other.id && destination == other.destination &&
+        return id == other.id &&
+            destination == other.destination &&
             lifecycle == other.lifecycle &&
             savedStateRegistry == other.savedStateRegistry &&
-            (
-                immutableArgs == other.immutableArgs ||
-                    immutableArgs?.keySet()
-                    ?.all { immutableArgs.get(it) == other.immutableArgs?.get(it) } == true
-                )
+            (immutableArgs == other.immutableArgs ||
+                immutableArgs?.keySet()?.all {
+                    immutableArgs.get(it) == other.immutableArgs?.get(it)
+                } == true)
     }
 
     @Suppress("DEPRECATION")
     override fun hashCode(): Int {
         var result = id.hashCode()
         result = 31 * result + destination.hashCode()
-        immutableArgs?.keySet()?.forEach {
-            result = 31 * result + immutableArgs.get(it).hashCode()
-        }
+        immutableArgs?.keySet()?.forEach { result = 31 * result + immutableArgs.get(it).hashCode() }
         result = 31 * result + lifecycle.hashCode()
         result = 31 * result + savedStateRegistry.hashCode()
         return result
@@ -273,12 +277,9 @@
         return sb.toString()
     }
 
-    /**
-     * Used to create the {SavedStateViewModel}
-     */
-    private class NavResultSavedStateFactory(
-        owner: SavedStateRegistryOwner
-    ) : AbstractSavedStateViewModelFactory(owner, null) {
+    /** Used to create the {SavedStateViewModel} */
+    private class NavResultSavedStateFactory(owner: SavedStateRegistryOwner) :
+        AbstractSavedStateViewModelFactory(owner, null) {
         @Suppress("UNCHECKED_CAST")
         override fun <T : ViewModel> create(
             key: String,
@@ -298,13 +299,10 @@
  * Extrapolates arguments from [NavBackStackEntry.arguments] and recreates object [T]
  *
  * @param [T] the entry's [NavDestination.route] as a [KClass]
- *
  * @return A new instance of this entry's [NavDestination.route] as an object of type [T]
  */
 public inline fun <reified T> NavBackStackEntry.toRoute(): T {
     val bundle = arguments ?: Bundle()
-    val typeMap = destination.arguments.mapValues {
-        it.value.type
-    }
+    val typeMap = destination.arguments.mapValues { it.value.type }
     return serializer<T>().decodeArguments(bundle, typeMap)
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLink.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLink.kt
index 0a06c70..d3f36d6 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLink.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLink.kt
@@ -29,10 +29,10 @@
 /**
  * NavDeepLink encapsulates the parsing and matching of a navigation deep link.
  *
- * This should be added to a [NavDestination] using
- * [NavDestination.addDeepLink].
+ * This should be added to a [NavDestination] using [NavDestination.addDeepLink].
  */
-public class NavDeepLink internal constructor(
+public class NavDeepLink
+internal constructor(
     /**
      * The uri pattern from the NavDeepLink.
      *
@@ -69,29 +69,23 @@
     // fragment
     private val fragArgsAndRegex: Pair<MutableList<String>, String>? by
         lazy(LazyThreadSafetyMode.NONE) { parseFragment() }
-    private val fragArgs by lazy(LazyThreadSafetyMode.NONE) {
-        fragArgsAndRegex?.first ?: mutableListOf()
-    }
-    private val fragRegex by lazy(LazyThreadSafetyMode.NONE) {
-        fragArgsAndRegex?.second
-    }
+    private val fragArgs by
+        lazy(LazyThreadSafetyMode.NONE) { fragArgsAndRegex?.first ?: mutableListOf() }
+    private val fragRegex by lazy(LazyThreadSafetyMode.NONE) { fragArgsAndRegex?.second }
     private val fragPattern by lazy {
         fragRegex?.let { Pattern.compile(it, Pattern.CASE_INSENSITIVE) }
     }
 
     // mime
     private var mimeTypeRegex: String? = null
-    private val mimeTypePattern by lazy {
-        mimeTypeRegex?.let { Pattern.compile(it) }
-    }
+    private val mimeTypePattern by lazy { mimeTypeRegex?.let { Pattern.compile(it) } }
 
     /** Arguments present in the deep link, including both path and query arguments. */
     internal val argumentsNames: List<String>
         get() = pathArgs + queryArgsMap.values.flatMap { it.arguments } + fragArgs
 
     public var isExactDeepLink: Boolean = false
-        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-        get
+        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) get
         internal set
 
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -162,12 +156,12 @@
     public fun getMimeTypeMatchRating(mimeType: String): Int {
         return if (this.mimeType == null || !mimeTypePattern!!.matcher(mimeType).matches()) {
             -1
-        } else MimeType(this.mimeType)
-            .compareTo(MimeType(mimeType))
+        } else MimeType(this.mimeType).compareTo(MimeType(mimeType))
     }
 
     @Suppress("NULLABILITY_MISMATCH_BASED_ON_JAVA_ANNOTATIONS", "NullableCollection")
-    /** Pattern.compile has no nullability for the regex parameter
+    /**
+     * Pattern.compile has no nullability for the regex parameter
      *
      * May return null if any of the following:
      * 1. missing required arguments that don't have default values
@@ -176,14 +170,11 @@
      *
      * May return empty bundle if any of the following:
      * 1. deeplink has no arguments
-     * 2. deeplink contains arguments with unknown default values (i.e. deeplink from safe args
-     * with unknown default values)
+     * 2. deeplink contains arguments with unknown default values (i.e. deeplink from safe args with
+     *    unknown default values)
      */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    public fun getMatchingArguments(
-        deepLink: Uri,
-        arguments: Map<String, NavArgument?>
-    ): Bundle? {
+    public fun getMatchingArguments(deepLink: Uri, arguments: Map<String, NavArgument?>): Bundle? {
         // first check overall uri pattern for quick return if general pattern does not match
         val matcher = pathPattern?.matcher(deepLink.toString()) ?: return null
         if (!matcher.matches()) {
@@ -199,17 +190,16 @@
         getMatchingUriFragment(deepLink.fragment, bundle, arguments)
 
         // Check that all required arguments are present in bundle
-        val missingRequiredArguments = arguments.missingRequiredArguments { argName ->
-            !bundle.containsKey(argName)
-        }
+        val missingRequiredArguments =
+            arguments.missingRequiredArguments { argName -> !bundle.containsKey(argName) }
         if (missingRequiredArguments.isNotEmpty()) return null
 
         return bundle
     }
 
     /**
-     * Returns a bundle containing matching path and query arguments with the requested uri.
-     * It returns empty bundle if this Deeplink's path pattern does not match with the uri.
+     * Returns a bundle containing matching path and query arguments with the requested uri. It
+     * returns empty bundle if this Deeplink's path pattern does not match with the uri.
      */
     internal fun getMatchingPathAndQueryArgs(
         deepLink: Uri?,
@@ -304,11 +294,10 @@
         arguments: Map<String, NavArgument?>,
     ): Boolean {
         inputParams?.forEach { inputParam ->
-            val argMatcher = storedParam.paramRegex?.let {
-                Pattern.compile(
-                    it, Pattern.DOTALL
-                ).matcher(inputParam)
-            }
+            val argMatcher =
+                storedParam.paramRegex?.let {
+                    Pattern.compile(it, Pattern.DOTALL).matcher(inputParam)
+                }
             if (argMatcher == null || !argMatcher.matches()) {
                 return false
             }
@@ -347,15 +336,10 @@
     }
 
     /**
-     * Parses [value] based on the NavArgument's NavType and stores the result
-     * inside the [bundle]. Throws if parse fails.
+     * Parses [value] based on the NavArgument's NavType and stores the result inside the [bundle].
+     * Throws if parse fails.
      */
-    private fun parseArgument(
-        bundle: Bundle,
-        name: String,
-        value: String,
-        argument: NavArgument?
-    ) {
+    private fun parseArgument(bundle: Bundle, name: String, value: String, argument: NavArgument?) {
         if (argument != null) {
             val type = argument.type
             type.parseAndPut(bundle, name, value)
@@ -381,9 +365,7 @@
         return false
     }
 
-    /**
-     * Used to maintain query parameters and the mArguments they match with.
-     */
+    /** Used to maintain query parameters and the mArguments they match with. */
     private class ParamQuery {
         var paramRegex: String? = null
         val arguments = mutableListOf<String>()
@@ -404,6 +386,7 @@
     private class MimeType(mimeType: String) : Comparable<MimeType> {
         var type: String
         var subType: String
+
         override fun compareTo(other: MimeType): Int {
             var result = 0
             // matching just subtypes is 1
@@ -419,8 +402,7 @@
         }
 
         init {
-            val typeAndSubType =
-                mimeType.split("/".toRegex()).dropLastWhile { it.isEmpty() }
+            val typeAndSubType = mimeType.split("/".toRegex()).dropLastWhile { it.isEmpty() }
             type = typeAndSubType[0]
             subType = typeAndSubType[1]
         }
@@ -441,13 +423,10 @@
         return result
     }
 
-    /**
-     * A builder for constructing [NavDeepLink] instances.
-     */
+    /** A builder for constructing [NavDeepLink] instances. */
     public class Builder {
 
-        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-        public constructor()
+        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public constructor()
 
         private var uriPattern: String? = null
         private var action: String? = null
@@ -457,7 +436,6 @@
          * Set the uri pattern for the [NavDeepLink].
          *
          * @param uriPattern The uri pattern to add to the NavDeepLink
-         *
          * @return This builder.
          */
         public fun setUriPattern(uriPattern: String): Builder {
@@ -473,49 +451,49 @@
          *
          * Arguments are appended based on property name and in the same order as their declaration
          * order in [T]. They are appended as query parameters if the argument has either:
-         *
          * 1. a default value
          * 2. a [NavType] of [CollectionNavType]
          *
-         * Otherwise, the argument will be appended as path parameters. The final uriPattern
-         * is generated by concatenating `uriPattern + path parameters + query parameters`.
-         *
+         * Otherwise, the argument will be appended as path parameters. The final uriPattern is
+         * generated by concatenating `uriPattern + path parameters + query parameters`.
          *
          * For example, the `name` property in this class does not meet either conditions and will
          * be appended as a path param.
+         *
          * ```
          * @Serializable
          * class MyClass(val name: String)
          * ```
-         * Given a uriPattern of "www.example.com", the generated final uriPattern
-         * will be `www.example.com/{name}`.
          *
+         * Given a uriPattern of "www.example.com", the generated final uriPattern will be
+         * `www.example.com/{name}`.
          *
          * The `name` property in this class has a default value and will be appended as a query.
+         *
          * ```
          * @Serializable
          * class MyClass(val name: String = "default")
          * ```
-         * Given a uriPattern of "www.example.com", the final generated uriPattern
-         * will be `www.example.com?name={name}`
          *
+         * Given a uriPattern of "www.example.com", the final generated uriPattern will be
+         * `www.example.com?name={name}`
          *
          * The append order is based on their declaration order in [T]
+         *
          * ```
          * @Serializable
          * class MyClass(val name: String = "default", val id: Int, val code: Int)
          * ```
-         * Given a uriPattern of "www.example.com", the final generated uriPattern
-         * will be `www.example.com/{id}/{code}?name={name}`. In this example, `name` is appended
-         * first as a query param, then `id` and `code` respectively as path params. The final
-         * pattern is then concatenated with `uriPattern + path + query`.
          *
+         * Given a uriPattern of "www.example.com", the final generated uriPattern will be
+         * `www.example.com/{id}/{code}?name={name}`. In this example, `name` is appended first as a
+         * query param, then `id` and `code` respectively as path params. The final pattern is then
+         * concatenated with `uriPattern + path + query`.
          *
          * @param T The destination's route from KClass
          * @param basePath The base uri path to append arguments onto
          * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-         * [NavType]. May be empty if [T] does not use custom NavTypes.
-         *
+         *   [NavType]. May be empty if [T] does not use custom NavTypes.
          * @return This builder.
          */
         public inline fun <reified T : Any> setUriPattern(
@@ -537,11 +515,9 @@
         /**
          * Set the action for the [NavDeepLink].
          *
-         * @throws IllegalArgumentException if the action is empty.
-         *
          * @param action the intent action for the NavDeepLink
-         *
          * @return This builder.
+         * @throws IllegalArgumentException if the action is empty.
          */
         public fun setAction(action: String): Builder {
             // if the action given at runtime is empty we should throw
@@ -554,7 +530,6 @@
          * Set the mimeType for the [NavDeepLink].
          *
          * @param mimeType the mimeType for the NavDeepLink
-         *
          * @return This builder.
          */
         public fun setMimeType(mimeType: String): Builder {
@@ -588,13 +563,13 @@
             /**
              * Creates a [NavDeepLink.Builder] with a set uri pattern.
              *
-             * Arguments extracted from destination [T] will be automatically appended to the
-             * base path provided in [basePath]
+             * Arguments extracted from destination [T] will be automatically appended to the base
+             * path provided in [basePath]
              *
              * @param T The destination's route from KClass
              * @param basePath The base uri path to append arguments onto
-             * @param typeMap map of destination arguments' kotlin type [KType] to its
-             * respective custom [NavType]. May be empty if [T] does not use custom NavTypes.
+             * @param typeMap map of destination arguments' kotlin type [KType] to its respective
+             *   custom [NavType]. May be empty if [T] does not use custom NavTypes.
              * @return a [Builder] instance
              */
             @JvmStatic
@@ -610,10 +585,9 @@
             /**
              * Creates a [NavDeepLink.Builder] with a set action.
              *
-             * @throws IllegalArgumentException if the action is empty.
-             *
              * @param action the intent action for the NavDeepLink
              * @return a [Builder] instance
+             * @throws IllegalArgumentException if the action is empty.
              */
             @JvmStatic
             fun fromAction(action: String): Builder {
@@ -681,8 +655,8 @@
                     "argument and the pattern provided in your URI will be used to " +
                     "parse each query parameter instance."
             }
-            val queryParam = queryParams.firstOrNull()
-                ?: paramName.apply { isSingleQueryParamValueOnly = true }
+            val queryParam =
+                queryParams.firstOrNull() ?: paramName.apply { isSingleQueryParamValueOnly = true }
             val matcher = FILL_IN_PATTERN.matcher(queryParam)
             var appendPos = 0
             val param = ParamQuery()
@@ -690,14 +664,7 @@
             while (matcher.find()) {
                 // matcher.group(1) as String = "tab" (the extracted param arg from {tab})
                 param.addArgumentName(matcher.group(1) as String)
-                argRegex.append(
-                    Pattern.quote(
-                        queryParam.substring(
-                            appendPos,
-                            matcher.start()
-                        )
-                    )
-                )
+                argRegex.append(Pattern.quote(queryParam.substring(appendPos, matcher.start())))
                 argRegex.append("(.+?)?")
                 appendPos = matcher.end()
             }
@@ -733,9 +700,7 @@
         }
 
         // get the type and subtype of the mimeType
-        val splitMimeType = MimeType(
-            mimeType
-        )
+        val splitMimeType = MimeType(mimeType)
 
         // the matching pattern can have the exact name or it can be wildcard literal (*)
         val regex = "^(${splitMimeType.type}|[*]+)/(${splitMimeType.subType}|[*]+)$"
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkDslBuilder.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkDslBuilder.kt
index fdcd7e4..7ff5b69 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkDslBuilder.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkDslBuilder.kt
@@ -23,8 +23,7 @@
 import kotlinx.serialization.InternalSerializationApi
 import kotlinx.serialization.serializer
 
-@DslMarker
-public annotation class NavDeepLinkDsl
+@DslMarker public annotation class NavDeepLinkDsl
 
 /**
  * Construct a new [NavDeepLink]
@@ -37,22 +36,22 @@
 /**
  * Construct a new [NavDeepLink]
  *
- * Extracts deeplink arguments from [T] and appends it to the [basePath]. The base path
- * & generated arguments form the final uri pattern for the deeplink.
+ * Extracts deeplink arguments from [T] and appends it to the [basePath]. The base path & generated
+ * arguments form the final uri pattern for the deeplink.
  *
- * See docs on the safe args version of [NavDeepLink.Builder.setUriPattern] for the
- * final uriPattern's generation logic.
+ * See docs on the safe args version of [NavDeepLink.Builder.setUriPattern] for the final
+ * uriPattern's generation logic.
  *
  * @param T The deepLink KClass to extract arguments from
  * @param basePath The base uri path to append arguments onto
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param deepLinkBuilder the builder used to construct the deeplink
  */
 public inline fun <reified T : Any> navDeepLink(
     basePath: String,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
-    noinline deepLinkBuilder: NavDeepLinkDslBuilder.() -> Unit = { }
+    noinline deepLinkBuilder: NavDeepLinkDslBuilder.() -> Unit = {}
 ): NavDeepLink = navDeepLink(basePath, T::class, typeMap, deepLinkBuilder)
 
 // public delegation for reified version to call internal build()
@@ -64,9 +63,7 @@
     deepLinkBuilder: NavDeepLinkDslBuilder.() -> Unit
 ): NavDeepLink = NavDeepLinkDslBuilder(basePath, route, typeMap).apply(deepLinkBuilder).build()
 
-/**
- * DSL for constructing a new [NavDeepLink]
- */
+/** DSL for constructing a new [NavDeepLink] */
 @NavDeepLinkDsl
 public class NavDeepLinkDslBuilder {
     private val builder = NavDeepLink.Builder()
@@ -79,16 +76,16 @@
     /**
      * DSl for constructing a new [NavDeepLink] with a route
      *
-     * Extracts deeplink arguments from [route] and appends it to the [basePath]. The base path
-     * & generated arguments form the final uri pattern for the deeplink.
+     * Extracts deeplink arguments from [route] and appends it to the [basePath]. The base path &
+     * generated arguments form the final uri pattern for the deeplink.
      *
-     * See docs on the safe args version of [NavDeepLink.Builder.setUriPattern] for the
-     * final uriPattern's generation logic.
+     * See docs on the safe args version of [NavDeepLink.Builder.setUriPattern] for the final
+     * uriPattern's generation logic.
      *
      * @param basePath The base uri path to append arguments onto
      * @param route The deepLink KClass to extract arguments from
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      */
     @OptIn(InternalSerializationApi::class)
     internal constructor(
@@ -126,17 +123,18 @@
             field = p
         }
 
-    /**
-     * MimeType for the deep link
-     */
+    /** MimeType for the deep link */
     public var mimeType: String? = null
 
-    internal fun build() = builder.apply {
-        check(!(uriPattern == null && action == null && mimeType == null)) {
-            ("The NavDeepLink must have an uri, action, and/or mimeType.")
-        }
-        uriPattern?.let { setUriPattern(it) }
-        action?.let { setAction(it) }
-        mimeType?.let { setMimeType(it) }
-    }.build()
+    internal fun build() =
+        builder
+            .apply {
+                check(!(uriPattern == null && action == null && mimeType == null)) {
+                    ("The NavDeepLink must have an uri, action, and/or mimeType.")
+                }
+                uriPattern?.let { setUriPattern(it) }
+                action?.let { setAction(it) }
+                mimeType?.let { setMimeType(it) }
+            }
+            .build()
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkRequest.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkRequest.kt
index eb28050..571652c 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkRequest.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavDeepLinkRequest.kt
@@ -23,11 +23,12 @@
 /**
  * A request for a deep link in a [NavDestination].
  *
- * NavDeepLinkRequest are used to check if a [NavDeepLink] exists for a
- * [NavDestination] and to navigate to a [NavDestination] with a matching
- * [NavDeepLink].
+ * NavDeepLinkRequest are used to check if a [NavDeepLink] exists for a [NavDestination] and to
+ * navigate to a [NavDestination] with a matching [NavDeepLink].
  */
-public open class NavDeepLinkRequest @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) constructor(
+public open class NavDeepLinkRequest
+@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
+constructor(
     /**
      * The uri from the NavDeepLinkRequest.
      *
@@ -70,9 +71,7 @@
         return sb.toString()
     }
 
-    /**
-     * A builder for constructing [NavDeepLinkRequest] instances.
-     */
+    /** A builder for constructing [NavDeepLinkRequest] instances. */
     public class Builder private constructor() {
         private var uri: Uri? = null
         private var action: String? = null
@@ -82,7 +81,6 @@
          * Set the uri for the [NavDeepLinkRequest].
          *
          * @param uri The uri to add to the NavDeepLinkRequest
-         *
          * @return This builder.
          */
         public fun setUri(uri: Uri): Builder {
@@ -93,11 +91,9 @@
         /**
          * Set the action for the [NavDeepLinkRequest].
          *
-         * @throws IllegalArgumentException if the action is empty.
-         *
          * @param action the intent action for the NavDeepLinkRequest
-         *
          * @return This builder.
+         * @throws IllegalArgumentException if the action is empty.
          */
         public fun setAction(action: String): Builder {
             require(action.isNotEmpty()) { "The NavDeepLinkRequest cannot have an empty action." }
@@ -109,11 +105,9 @@
          * Set the mimeType for the [NavDeepLinkRequest].
          *
          * @param mimeType the mimeType for the NavDeepLinkRequest
-         *
-         * @throws IllegalArgumentException if the given mimeType does not match th3e required
-         * "type/subtype" format.
-         *
          * @return This builder.
+         * @throws IllegalArgumentException if the given mimeType does not match th3e required
+         *   "type/subtype" format.
          */
         public fun setMimeType(mimeType: String): Builder {
             val mimeTypeMatcher = mimeType.matches("^[-\\w*.]+/[-\\w+*.]+$".toRegex())
@@ -150,10 +144,9 @@
             /**
              * Creates a [NavDeepLinkRequest.Builder] with a set action.
              *
-             * @throws IllegalArgumentException if the action is empty.
-             *
              * @param action the intent action for the NavDeepLinkRequest
              * @return a [Builder] instance
+             * @throws IllegalArgumentException if the action is empty.
              */
             @JvmStatic
             public fun fromAction(action: String): Builder {
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavDestination.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavDestination.kt
index 468e617..128ec11 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavDestination.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavDestination.kt
@@ -37,30 +37,26 @@
 /**
  * NavDestination represents one node within an overall navigation graph.
  *
- * Each destination is associated with a [Navigator] which knows how to navigate to this
- * particular destination.
+ * Each destination is associated with a [Navigator] which knows how to navigate to this particular
+ * destination.
  *
- * Destinations declare a set of [actions][putAction] that they
- * support. These actions form a navigation API for the destination; the same actions declared
- * on different destinations that fill similar roles allow application code to navigate based
- * on semantic intent.
+ * Destinations declare a set of [actions][putAction] that they support. These actions form a
+ * navigation API for the destination; the same actions declared on different destinations that fill
+ * similar roles allow application code to navigate based on semantic intent.
  *
- * Each destination has a set of [arguments][arguments] that will
- * be applied when [navigating][NavController.navigate] to that destination.
- * Any default values for those arguments can be overridden at the time of navigation.
+ * Each destination has a set of [arguments][arguments] that will be applied when
+ * [navigating][NavController.navigate] to that destination. Any default values for those arguments
+ * can be overridden at the time of navigation.
  *
  * NavDestinations should be created via [Navigator.createDestination].
  */
 public open class NavDestination(
-    /**
-     * The name associated with this destination's [Navigator].
-     */
+    /** The name associated with this destination's [Navigator]. */
     public val navigatorName: String
 ) {
     /**
-     * This optional annotation allows tooling to offer auto-complete for the
-     * `android:name` attribute. This should match the class type passed to
-     * [parseClassFromName] when parsing the
+     * This optional annotation allows tooling to offer auto-complete for the `android:name`
+     * attribute. This should match the class type passed to [parseClassFromName] when parsing the
      * `android:name` attribute.
      */
     @kotlin.annotation.Retention(AnnotationRetention.BINARY)
@@ -113,17 +109,17 @@
         }
 
         /**
-         * Returns true if all args from [DeepLinkMatch.matchingArgs] can be found within
-         * the [arguments].
+         * Returns true if all args from [DeepLinkMatch.matchingArgs] can be found within the
+         * [arguments].
          *
          * This returns true in these edge cases:
          * 1. If the [arguments] contain more args than [DeepLinkMatch.matchingArgs].
          * 2. If [DeepLinkMatch.matchingArgs] is empty
-         * 3. Argument has null value in both [DeepLinkMatch.matchingArgs] and [arguments]
-         * i.e. arguments/params with nullable values
+         * 3. Argument has null value in both [DeepLinkMatch.matchingArgs] and [arguments] i.e.
+         *    arguments/params with nullable values
          *
          * @param [arguments] The arguments to match with the matchingArgs stored in this
-         * DeepLinkMatch.
+         *   DeepLinkMatch.
          */
         public fun hasMatchingArgs(arguments: Bundle?): Boolean {
             if (arguments == null || matchingArgs == null) return false
@@ -144,17 +140,15 @@
     }
 
     /**
-     * Gets the [NavGraph] that contains this destination. This will be set when a
-     * destination is added to a NavGraph via [NavGraph.addDestination].
+     * Gets the [NavGraph] that contains this destination. This will be set when a destination is
+     * added to a NavGraph via [NavGraph.addDestination].
      */
     public var parent: NavGraph? = null
-        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-        public set
+        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public set
+
     private var idName: String? = null
 
-    /**
-     * The descriptive label of this destination.
-     */
+    /** The descriptive label of this destination. */
     public var label: CharSequence? = null
     private val deepLinks = mutableListOf<NavDeepLink>()
     private val actions: SparseArrayCompat<NavAction> = SparseArrayCompat()
@@ -162,12 +156,12 @@
     private var _arguments: MutableMap<String, NavArgument> = mutableMapOf()
 
     /**
-     * The arguments supported by this destination. Returns a read-only map of argument names
-     * to [NavArgument] objects that can be used to check the type, default value
-     * and nullability of the argument.
+     * The arguments supported by this destination. Returns a read-only map of argument names to
+     * [NavArgument] objects that can be used to check the type, default value and nullability of
+     * the argument.
      *
-     * To add and remove arguments for this NavDestination
-     * use [addArgument] and [removeArgument].
+     * To add and remove arguments for this NavDestination use [addArgument] and [removeArgument].
+     *
      * @return Read-only map of argument names to arguments.
      */
     public val arguments: Map<String, NavArgument>
@@ -178,11 +172,9 @@
      *
      * This constructor requires that the given Navigator has a [Navigator.Name] annotation.
      */
-    public constructor(navigator: Navigator<out NavDestination>) : this(
-        NavigatorProvider.getNameForNavigator(
-            navigator.javaClass
-        )
-    )
+    public constructor(
+        navigator: Navigator<out NavDestination>
+    ) : this(NavigatorProvider.getNameForNavigator(navigator.javaClass))
 
     /**
      * Called when inflating a destination from a resource.
@@ -204,11 +196,11 @@
     }
 
     /**
-     * The destination's unique ID. This should be an ID resource generated by
-     * the Android resource system.
+     * The destination's unique ID. This should be an ID resource generated by the Android resource
+     * system.
      *
-     * If using safe args, setting this manually will override the ID that was set based
-     * on route from KClass.
+     * If using safe args, setting this manually will override the ID that was set based on route
+     * from KClass.
      */
     @get:IdRes
     public var id: Int = 0
@@ -218,11 +210,10 @@
         }
 
     /**
-     * The destination's unique route. Setting this will also update the [id] of the destinations
-     * so custom destination ids should only be set after setting the route.
+     * The destination's unique route. Setting this will also update the [id] of the destinations so
+     * custom destination ids should only be set after setting the route.
      *
      * @return this destination's route, or null if no route is set
-     *
      * @throws IllegalArgumentException is the given route is empty
      */
     public var route: String? = null
@@ -240,16 +231,15 @@
         }
 
     public open val displayName: String
-        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-        get() = idName ?: id.toString()
+        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) get() = idName ?: id.toString()
 
     /**
-     * Checks the given deep link [Uri], and determines whether it matches a Uri pattern added
-     * to the destination by a call to [addDeepLink] . It returns `true`
-     * if the deep link is a valid match, and `false` otherwise.
+     * Checks the given deep link [Uri], and determines whether it matches a Uri pattern added to
+     * the destination by a call to [addDeepLink] . It returns `true` if the deep link is a valid
+     * match, and `false` otherwise.
      *
-     * This should be called prior to [NavController.navigate] to ensure the deep link
-     * can be navigated to.
+     * This should be called prior to [NavController.navigate] to ensure the deep link can be
+     * navigated to.
      *
      * @param deepLink to the destination reachable from the current NavGraph
      * @return True if the deepLink exists for the destination.
@@ -262,13 +252,12 @@
     }
 
     /**
-     * Checks the given [NavDeepLinkRequest], and determines whether it matches a
-     * [NavDeepLink] added to the destination by a call to
-     * [addDeepLink]. It returns `true` if the request is a valid
-     * match, and `false` otherwise.
+     * Checks the given [NavDeepLinkRequest], and determines whether it matches a [NavDeepLink]
+     * added to the destination by a call to [addDeepLink]. It returns `true` if the request is a
+     * valid match, and `false` otherwise.
      *
-     * This should be called prior to [NavController.navigate] to
-     * ensure the deep link can be navigated to.
+     * This should be called prior to [NavController.navigate] to ensure the deep link can be
+     * navigated to.
      *
      * @param deepLinkRequest to the destination reachable from the current NavGraph
      * @return True if the deepLink exists for the destination.
@@ -280,30 +269,25 @@
     }
 
     /**
-     * Add a deep link to this destination. Matching Uris sent to
-     * [NavController.handleDeepLink] or [NavController.navigate] will
-     * trigger navigating to this destination.
+     * Add a deep link to this destination. Matching Uris sent to [NavController.handleDeepLink] or
+     * [NavController.navigate] will trigger navigating to this destination.
      *
      * In addition to a direct Uri match, the following features are supported:
-     *
-     * - Uris without a scheme are assumed as http and https. For example,
-     * `www.example.com` will match `http://www.example.com` and
-     * `https://www.example.com`.
-     * - Placeholders in the form of `{placeholder_name}` matches 1 or more
-     * characters. The parsed value of the placeholder will be available in the arguments
-     * [Bundle] with a key of the same name. For example,
-     * `http://www.example.com/users/{id}` will match
-     * `http://www.example.com/users/4`.
+     * - Uris without a scheme are assumed as http and https. For example, `www.example.com` will
+     *   match `http://www.example.com` and `https://www.example.com`.
+     * - Placeholders in the form of `{placeholder_name}` matches 1 or more characters. The parsed
+     *   value of the placeholder will be available in the arguments [Bundle] with a key of the same
+     *   name. For example, `http://www.example.com/users/{id}` will match
+     *   `http://www.example.com/users/4`.
      * - The `.*` wildcard can be used to match 0 or more characters.
      *
-     * These Uris can be declared in your navigation XML files by adding one or more
-     * `<deepLink app:uri="uriPattern" />` elements as
-     * a child to your destination.
+     * These Uris can be declared in your navigation XML files by adding one or more `<deepLink
+     * app:uri="uriPattern" />` elements as a child to your destination.
      *
      * Deep links added in navigation XML files will automatically replace instances of
-     * `${applicationId}` with the applicationId of your app.
-     * Programmatically added deep links should use [Context.getPackageName] directly
-     * when constructing the uriPattern.
+     * `${applicationId}` with the applicationId of your app. Programmatically added deep links
+     * should use [Context.getPackageName] directly when constructing the uriPattern.
+     *
      * @param uriPattern The uri pattern to add as a deep link
      * @see NavController.handleDeepLink
      * @see NavController.navigate
@@ -314,50 +298,44 @@
     }
 
     /**
-     * Add a deep link to this destination. Uris that match the given [NavDeepLink] uri
-     * sent to [NavController.handleDeepLink] or
-     * [NavController.navigate] will trigger navigating to this
+     * Add a deep link to this destination. Uris that match the given [NavDeepLink] uri sent to
+     * [NavController.handleDeepLink] or [NavController.navigate] will trigger navigating to this
      * destination.
      *
      * In addition to a direct Uri match, the following features are supported:
      *
-     * Uris without a scheme are assumed as http and https. For example,
-     * `www.example.com` will match `http://www.example.com` and
-     * `https://www.example.com`.
-     * Placeholders in the form of `{placeholder_name}` matches 1 or more
-     * characters. The String value of the placeholder will be available in the arguments
-     * [Bundle] with a key of the same name. For example,
-     * `http://www.example.com/users/{id}` will match
-     * `http://www.example.com/users/4`.
-     * The `.*` wildcard can be used to match 0 or more characters.
+     * Uris without a scheme are assumed as http and https. For example, `www.example.com` will
+     * match `http://www.example.com` and `https://www.example.com`. Placeholders in the form of
+     * `{placeholder_name}` matches 1 or more characters. The String value of the placeholder will
+     * be available in the arguments [Bundle] with a key of the same name. For example,
+     * `http://www.example.com/users/{id}` will match `http://www.example.com/users/4`. The `.*`
+     * wildcard can be used to match 0 or more characters.
      *
-     * These Uris can be declared in your navigation XML files by adding one or more
-     * `<deepLink app:uri="uriPattern" />` elements as
-     * a child to your destination.
+     * These Uris can be declared in your navigation XML files by adding one or more `<deepLink
+     * app:uri="uriPattern" />` elements as a child to your destination.
      *
-     * Custom actions and mimetypes are also supported by [NavDeepLink] and can be declared
-     * in your navigation XML files by adding
-     * `<app:action="android.intent.action.SOME_ACTION" />` or
+     * Custom actions and mimetypes are also supported by [NavDeepLink] and can be declared in your
+     * navigation XML files by adding `<app:action="android.intent.action.SOME_ACTION" />` or
      * `<app:mimetype="type/subtype" />` as part of your deepLink declaration.
      *
      * Deep link Uris, actions, and mimetypes added in navigation XML files will automatically
-     * replace instances of `${applicationId}` with the applicationId of your app.
-     * Programmatically added deep links should use [Context.getPackageName] directly
-     * when constructing the uriPattern.
+     * replace instances of `${applicationId}` with the applicationId of your app. Programmatically
+     * added deep links should use [Context.getPackageName] directly when constructing the
+     * uriPattern.
      *
      * When matching deep links for calls to [NavController.handleDeepLink] or
-     * [NavController.navigate] the order of precedence is as follows:
-     * the deep link with the most matching arguments will be chosen, followed by the deep link
-     * with a matching action, followed by the best matching mimeType (e.i. when matching
-     * mimeType image/jpg: image/ * > *\/jpg > *\/ *).
+     * [NavController.navigate] the order of precedence is as follows: the deep link with the most
+     * matching arguments will be chosen, followed by the deep link with a matching action, followed
+     * by the best matching mimeType (e.i. when matching mimeType image/jpg: image/ * > *\/jpg > *\/
+     * *).
+     *
      * @param navDeepLink The NavDeepLink to add as a deep link
      * @see NavController.handleDeepLink
      * @see NavController.navigate
      */
     public fun addDeepLink(navDeepLink: NavDeepLink) {
-        val missingRequiredArguments = _arguments.missingRequiredArguments { key ->
-            key !in navDeepLink.argumentsNames
-        }
+        val missingRequiredArguments =
+            _arguments.missingRequiredArguments { key -> key !in navDeepLink.argumentsNames }
         require(missingRequiredArguments.isEmpty()) {
             "Deep link ${navDeepLink.uriPattern} can't be used to open destination $this.\n" +
                 "Following required arguments are missing: $missingRequiredArguments"
@@ -375,20 +353,21 @@
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun matchDeepLink(route: String): DeepLinkMatch? {
         val request = NavDeepLinkRequest.Builder.fromUri(createRoute(route).toUri()).build()
-        val matchingDeepLink = if (this is NavGraph) {
-            matchDeepLinkExcludingChildren(request)
-        } else {
-            matchDeepLink(request)
-        }
+        val matchingDeepLink =
+            if (this is NavGraph) {
+                matchDeepLinkExcludingChildren(request)
+            } else {
+                matchDeepLink(request)
+            }
         return matchingDeepLink
     }
 
     /**
      * Determines if this NavDestination has a deep link matching the given Uri.
-     * @param navDeepLinkRequest The request to match against all deep links added in
-     * [addDeepLink]
-     * @return The matching [NavDestination] and the appropriate [Bundle] of arguments
-     * extracted from the Uri, or null if no match was found.
+     *
+     * @param navDeepLinkRequest The request to match against all deep links added in [addDeepLink]
+     * @return The matching [NavDestination] and the appropriate [Bundle] of arguments extracted
+     *   from the Uri, or null if no match was found.
      */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public open fun matchDeepLink(navDeepLinkRequest: NavDeepLinkRequest): DeepLinkMatch? {
@@ -403,19 +382,24 @@
                 if (uri != null) deepLink.getMatchingArguments(uri, _arguments) else null
             val matchingPathSegments = deepLink.calculateMatchingPathSegments(uri)
             val requestAction = navDeepLinkRequest.action
-            val matchingAction = requestAction != null && requestAction ==
-                deepLink.action
+            val matchingAction = requestAction != null && requestAction == deepLink.action
             val mimeType = navDeepLinkRequest.mimeType
             val mimeTypeMatchLevel =
                 if (mimeType != null) deepLink.getMimeTypeMatchRating(mimeType) else -1
-            if (matchingArguments != null || ((matchingAction || mimeTypeMatchLevel > -1) &&
-                    hasRequiredArguments(deepLink, uri, _arguments))
+            if (
+                matchingArguments != null ||
+                    ((matchingAction || mimeTypeMatchLevel > -1) &&
+                        hasRequiredArguments(deepLink, uri, _arguments))
             ) {
-                val newMatch = DeepLinkMatch(
-                    this, matchingArguments,
-                    deepLink.isExactDeepLink, matchingPathSegments, matchingAction,
-                    mimeTypeMatchLevel
-                )
+                val newMatch =
+                    DeepLinkMatch(
+                        this,
+                        matchingArguments,
+                        deepLink.isExactDeepLink,
+                        matchingPathSegments,
+                        matchingAction,
+                        mimeTypeMatchLevel
+                    )
                 if (bestMatch == null || newMatch > bestMatch) {
                     bestMatch = newMatch
                 }
@@ -430,9 +414,8 @@
         arguments: Map<String, NavArgument>
     ): Boolean {
         val matchingArgs = deepLink.getMatchingPathAndQueryArgs(uri, arguments)
-        val missingRequiredArguments = arguments.missingRequiredArguments { key ->
-            !matchingArgs.containsKey(key)
-        }
+        val missingRequiredArguments =
+            arguments.missingRequiredArguments { key -> !matchingArgs.containsKey(key) }
         return missingRequiredArguments.isEmpty()
     }
 
@@ -440,8 +423,8 @@
      * Build an array containing the hierarchy from the root down to this destination.
      *
      * @param previousDestination the previous destination we are starting at
-     * @return An array containing all of the ids from the previous destination (or the root of
-     * the graph if null) to this destination
+     * @return An array containing all of the ids from the previous destination (or the root of the
+     *   graph if null) to this destination
      */
     @JvmOverloads
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -453,7 +436,7 @@
             if (
                 // If the current destination is a sibling of the previous, just add it straightaway
                 previousDestination?.parent != null &&
-                previousDestination.parent!!.findNode(current.id) === current
+                    previousDestination.parent!!.findNode(current.id) === current
             ) {
                 hierarchy.addFirst(current)
                 break
@@ -478,13 +461,12 @@
      * 3. a route containing arguments where some or all arguments are filled in
      * 4. a partial route
      *
-     * In the case of 3., it will only match if the entry arguments
-     * match exactly with the arguments that were filled in inside the route.
+     * In the case of 3., it will only match if the entry arguments match exactly with the arguments
+     * that were filled in inside the route.
      *
      * @param [route] The route to match with the route of this destination
-     *
-     * @param [arguments] The [NavBackStackEntry.arguments] that was used to navigate
-     * to this destination
+     * @param [arguments] The [NavBackStackEntry.arguments] that was used to navigate to this
+     *   destination
      */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun hasRoute(route: String, arguments: Bundle?): Boolean {
@@ -514,8 +496,8 @@
 
     /**
      * Returns the [NavAction] for the given action ID. This will recursively check the
-     * [parent][getParent] of this destination if the action destination is not found in
-     * this destination.
+     * [parent][getParent] of this destination if the action destination is not found in this
+     * destination.
      *
      * @param id action ID to fetch
      * @return the [NavAction] mapped to the given action id, or null if one has not been set
@@ -542,7 +524,7 @@
      * @param actionId action ID to bind
      * @param action action to associate with this action ID
      * @throws UnsupportedOperationException this destination is considered a terminal destination
-     * and does not support actions
+     *   and does not support actions
      */
     public fun putAction(@IdRes actionId: Int, action: NavAction) {
         if (!supportsActions()) {
@@ -585,9 +567,8 @@
     }
 
     /**
-     * Combines the default arguments for this destination with the arguments provided
-     * to construct the final set of arguments that should be used to navigate
-     * to this destination.
+     * Combines the default arguments for this destination with the arguments provided to construct
+     * the final set of arguments that should be used to navigate to this destination.
      */
     @Suppress("NullableCollection") // Needed for nullable bundle
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -618,8 +599,8 @@
     /**
      * Parses a dynamic label containing arguments into a String.
      *
-     * Supports String Resource arguments by parsing `R.string` values of `ReferenceType`
-     * arguments found in `android:label` into their String values.
+     * Supports String Resource arguments by parsing `R.string` values of `ReferenceType` arguments
+     * found in `android:label` into their String values.
      *
      * Returns `null` if label is null.
      *
@@ -628,8 +609,8 @@
      * @param context Context used to resolve a resource's name
      * @param bundle Bundle containing the arguments used in the label
      * @return The parsed string or null if the label is null
-     * @throws IllegalArgumentException if an argument provided in the label cannot be found in
-     * the bundle, or if the label contains a string template but the bundle is null
+     * @throws IllegalArgumentException if an argument provided in the label cannot be found in the
+     *   bundle, or if the label contains a string template but the bundle is null
      */
     public fun fillInLabel(context: Context, bundle: Bundle?): String? {
         val label = label ?: return null
@@ -647,8 +628,7 @@
                     val value = context.getString(bundle.getInt(argName))
                     builder.append(value)
                 } else {
-                    @Suppress("DEPRECATION")
-                    builder.append(bundle[argName].toString())
+                    @Suppress("DEPRECATION") builder.append(bundle[argName].toString())
                 }
             } else {
                 throw IllegalArgumentException(
@@ -688,14 +668,15 @@
 
         val equalDeepLinks = deepLinks == other.deepLinks
 
-        val equalActions = actions.size() == other.actions.size() &&
-            actions.keyIterator().asSequence().all { actions.get(it) == other.actions.get(it) }
+        val equalActions =
+            actions.size() == other.actions.size() &&
+                actions.keyIterator().asSequence().all { actions.get(it) == other.actions.get(it) }
 
-        val equalArguments = _arguments.size == other._arguments.size &&
-            _arguments.asSequence().all {
-                other._arguments.containsKey(it.key) &&
-                    other._arguments[it.key] == it.value
-            }
+        val equalArguments =
+            _arguments.size == other._arguments.size &&
+                _arguments.asSequence().all {
+                    other._arguments.containsKey(it.key) && other._arguments[it.key] == it.value
+                }
 
         return id == other.id &&
             route == other.route &&
@@ -732,21 +713,21 @@
 
         /**
          * Parse the class associated with this destination from a raw name, generally extracted
-         * from the `android:name` attribute added to the destination's XML. This should
-         * be the class providing the visual representation of the destination that the
-         * user sees after navigating to this destination.
+         * from the `android:name` attribute added to the destination's XML. This should be the
+         * class providing the visual representation of the destination that the user sees after
+         * navigating to this destination.
          *
          * This method does name -> Class caching and should be strongly preferred over doing your
-         * own parsing if your [Navigator] supports the `android:name` attribute to
-         * give consistent behavior across all Navigators.
+         * own parsing if your [Navigator] supports the `android:name` attribute to give consistent
+         * behavior across all Navigators.
          *
-         * @param context Context providing the package name for use with relative class names and the
-         * ClassLoader
+         * @param context Context providing the package name for use with relative class names and
+         *   the ClassLoader
          * @param name Absolute or relative class name. Null names will be ignored.
          * @param expectedClassType The expected class type
          * @return The parsed class
          * @throws IllegalArgumentException if the class is not found in the provided Context's
-         * ClassLoader or if the class is not of the expected type
+         *   ClassLoader or if the class is not of the expected type
          */
         @Suppress("UNCHECKED_CAST")
         @JvmStatic
@@ -774,9 +755,7 @@
             return clazz as Class<out C?>
         }
 
-        /**
-         * Used internally for NavDestinationTest
-         */
+        /** Used internally for NavDestinationTest */
         @JvmStatic
         @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
         public fun <C> parseClassFromNameInternal(
@@ -789,10 +768,11 @@
 
         /**
          * Retrieve a suitable display name for a given id.
+         *
          * @param context Context used to resolve a resource's name
          * @param id The id to get a display name for
-         * @return The resource's name if it is a valid id or just the id itself if it is not
-         * a valid resource
+         * @return The resource's name if it is a valid id or just the id itself if it is not a
+         *   valid resource
          */
         @JvmStatic
         @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -801,11 +781,12 @@
             // so anything below that cannot be a valid resource id
             return if (id <= 0x00FFFFFF) {
                 id.toString()
-            } else try {
-                context.resources.getResourceName(id)
-            } catch (e: Resources.NotFoundException) {
-                id.toString()
-            }
+            } else
+                try {
+                    context.resources.getResourceName(id)
+                } catch (e: Resources.NotFoundException) {
+                    id.toString()
+                }
         }
 
         @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -814,8 +795,9 @@
 
         /**
          * Provides a sequence of the NavDestination's hierarchy. The hierarchy starts with this
-         * destination itself and is then followed by this destination's [NavDestination.parent], then that
-         * graph's parent, and up the hierarchy until you've reached the root navigation graph.
+         * destination itself and is then followed by this destination's [NavDestination.parent],
+         * then that graph's parent, and up the hierarchy until you've reached the root navigation
+         * graph.
          */
         @JvmStatic
         public val NavDestination.hierarchy: Sequence<NavDestination>
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavDestinationBuilder.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavDestinationBuilder.kt
index c3fc3fc..9383213 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavDestinationBuilder.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavDestinationBuilder.kt
@@ -26,26 +26,20 @@
 import kotlinx.serialization.InternalSerializationApi
 import kotlinx.serialization.serializer
 
-@DslMarker
-public annotation class NavDestinationDsl
+@DslMarker public annotation class NavDestinationDsl
 
-/**
- * DSL for constructing a new [NavDestination]
- */
+/** DSL for constructing a new [NavDestination] */
 @NavDestinationDsl
-public open class NavDestinationBuilder<out D : NavDestination> internal constructor(
+public open class NavDestinationBuilder<out D : NavDestination>
+internal constructor(
     /**
-     * The navigator the destination that will be used in [instantiateDestination]
-     * to create the destination.
+     * The navigator the destination that will be used in [instantiateDestination] to create the
+     * destination.
      */
     protected val navigator: Navigator<out D>,
-    /**
-     * The destination's unique ID.
-     */
+    /** The destination's unique ID. */
     @IdRes public val id: Int,
-    /**
-     * The destination's unique route.
-     */
+    /** The destination's unique route. */
     public val route: String?
 ) {
 
@@ -56,15 +50,13 @@
      *
      * @param navigator navigator used to create the destination
      * @param id the destination's unique id
-     *
      * @return the newly constructed [NavDestination]
      */
     @Deprecated(
         "Use routes to build your NavDestination instead",
         ReplaceWith("NavDestinationBuilder(navigator, route = id.toString())")
     )
-    public constructor(navigator: Navigator<out D>, @IdRes id: Int) :
-        this(navigator, id, null)
+    public constructor(navigator: Navigator<out D>, @IdRes id: Int) : this(navigator, id, null)
 
     /**
      * DSL for constructing a new [NavDestination] with a unique route.
@@ -73,11 +65,9 @@
      *
      * @param navigator navigator used to create the destination
      * @param route the destination's unique route
-     *
      * @return the newly constructed [NavDestination]
      */
-    public constructor(navigator: Navigator<out D>, route: String?) :
-        this(navigator, -1, route)
+    public constructor(navigator: Navigator<out D>, route: String?) : this(navigator, -1, route)
 
     /**
      * DSL for constructing a new [NavDestination] with a serializable [KClass].
@@ -87,8 +77,7 @@
      * @param navigator navigator used to create the destination
      * @param route the [KClass] of the destination
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if destination does not use custom NavTypes.
-     *
+     *   [NavType]. May be empty if destination does not use custom NavTypes.
      * @return the newly constructed [NavDestination]
      */
     @OptIn(InternalSerializationApi::class)
@@ -102,32 +91,24 @@
         route?.serializer()?.generateRoutePattern(typeMap)
     ) {
         route?.apply {
-            serializer().generateNavArguments(typeMap).forEach {
-                arguments[it.name] = it.argument
-            }
+            serializer().generateNavArguments(typeMap).forEach { arguments[it.name] = it.argument }
         }
         this.typeMap = typeMap
     }
 
     private lateinit var typeMap: Map<KType, NavType<*>>
 
-    /**
-     * The descriptive label of the destination
-     */
+    /** The descriptive label of the destination */
     public var label: CharSequence? = null
 
     private var arguments = mutableMapOf<String, NavArgument>()
 
-    /**
-     * Add a [NavArgument] to this destination.
-     */
+    /** Add a [NavArgument] to this destination. */
     public fun argument(name: String, argumentBuilder: NavArgumentBuilder.() -> Unit) {
         arguments[name] = NavArgumentBuilder().apply(argumentBuilder).build()
     }
 
-    /**
-     * Add a [NavArgument] to this destination.
-     */
+    /** Add a [NavArgument] to this destination. */
     @Suppress("BuilderSetStyle")
     public fun argument(name: String, argument: NavArgument) {
         arguments[name] = argument
@@ -139,16 +120,13 @@
      * Add a deep link to this destination.
      *
      * In addition to a direct Uri match, the following features are supported:
-     *
-     * *    Uris without a scheme are assumed as http and https. For example,
-     *      `www.example.com` will match `http://www.example.com` and
-     *      `https://www.example.com`.
-     * *    Placeholders in the form of `{placeholder_name}` matches 1 or more
-     *      characters. The String value of the placeholder will be available in the arguments
-     *      [Bundle] with a key of the same name. For example,
-     *      `http://www.example.com/users/{id}` will match
-     *      `http://www.example.com/users/4`.
-     * *    The `.*` wildcard can be used to match 0 or more characters.
+     * * Uris without a scheme are assumed as http and https. For example, `www.example.com` will
+     *   match `http://www.example.com` and `https://www.example.com`.
+     * * Placeholders in the form of `{placeholder_name}` matches 1 or more characters. The String
+     *   value of the placeholder will be available in the arguments [Bundle] with a key of the same
+     *   name. For example, `http://www.example.com/users/{id}` will match
+     *   `http://www.example.com/users/4`.
+     * * The `.*` wildcard can be used to match 0 or more characters.
      *
      * @param uriPattern The uri pattern to add as a deep link
      * @see deepLink
@@ -160,45 +138,40 @@
     /**
      * Add a deep link to this destination.
      *
-     * The arguments in [T] are expected to be identical (in name and type) to the arguments
-     * in the [route] from KClass that was used to construct this [NavDestinationBuilder].
+     * The arguments in [T] are expected to be identical (in name and type) to the arguments in the
+     * [route] from KClass that was used to construct this [NavDestinationBuilder].
      *
-     * Extracts deeplink arguments from [T] and appends it to the [basePath]. See docs on the
-     * safe args version of [NavDeepLink.Builder.setUriPattern] for the final uriPattern's
-     * generation logic.
+     * Extracts deeplink arguments from [T] and appends it to the [basePath]. See docs on the safe
+     * args version of [NavDeepLink.Builder.setUriPattern] for the final uriPattern's generation
+     * logic.
      *
-     * In addition to a direct Uri match, [basePath]s without a scheme are assumed
-     * as http and https. For example, `www.example.com` will match `http://www.example.com` and
+     * In addition to a direct Uri match, [basePath]s without a scheme are assumed as http and
+     * https. For example, `www.example.com` will match `http://www.example.com` and
      * `https://www.example.com`.
      *
      * @param T The deepLink KClass to extract arguments from
      * @param basePath The base uri path to append arguments onto
-     *
-     * @see NavDeepLink.Builder.setUriPattern for the final uriPattern's
-     * generation logic.
+     * @see NavDeepLink.Builder.setUriPattern for the final uriPattern's generation logic.
      */
     @Suppress("BuilderSetStyle")
     @JvmName("deepLinkSafeArgs")
     public inline fun <reified T : Any> deepLink(
         basePath: String,
     ) {
-        deepLink(basePath, T::class) { }
+        deepLink(basePath, T::class) {}
     }
 
     /**
      * Add a deep link to this destination.
      *
      * In addition to a direct Uri match, the following features are supported:
-     *
-     * *    Uris without a scheme are assumed as http and https. For example,
-     *      `www.example.com` will match `http://www.example.com` and
-     *      `https://www.example.com`.
-     * *    Placeholders in the form of `{placeholder_name}` matches 1 or more
-     *      characters. The String value of the placeholder will be available in the arguments
-     *      [Bundle] with a key of the same name. For example,
-     *      `http://www.example.com/users/{id}` will match
-     *      `http://www.example.com/users/4`.
-     * *    The `.*` wildcard can be used to match 0 or more characters.
+     * * Uris without a scheme are assumed as http and https. For example, `www.example.com` will
+     *   match `http://www.example.com` and `https://www.example.com`.
+     * * Placeholders in the form of `{placeholder_name}` matches 1 or more characters. The String
+     *   value of the placeholder will be available in the arguments [Bundle] with a key of the same
+     *   name. For example, `http://www.example.com/users/{id}` will match
+     *   `http://www.example.com/users/4`.
+     * * The `.*` wildcard can be used to match 0 or more characters.
      *
      * @param navDeepLink the NavDeepLink to be added to this destination
      */
@@ -209,23 +182,21 @@
     /**
      * Add a deep link to this destination.
      *
-     * The arguments in [T] are expected to be identical (in name and type) to the arguments
-     * in the [route] from KClass that was used to construct this [NavDestinationBuilder].
+     * The arguments in [T] are expected to be identical (in name and type) to the arguments in the
+     * [route] from KClass that was used to construct this [NavDestinationBuilder].
      *
-     * Extracts deeplink arguments from [T] and appends it to the [basePath]. See docs on the
-     * safe args version of [NavDeepLink.Builder.setUriPattern] for the final uriPattern's
-     * generation logic.
+     * Extracts deeplink arguments from [T] and appends it to the [basePath]. See docs on the safe
+     * args version of [NavDeepLink.Builder.setUriPattern] for the final uriPattern's generation
+     * logic.
      *
-     * In addition to a direct Uri match, [basePath]s without a scheme are assumed
-     * as http and https. For example, `www.example.com` will match `http://www.example.com` and
+     * In addition to a direct Uri match, [basePath]s without a scheme are assumed as http and
+     * https. For example, `www.example.com` will match `http://www.example.com` and
      * `https://www.example.com`.
      *
      * @param T The deepLink KClass to extract arguments from
      * @param basePath The base uri path to append arguments onto
      * @param navDeepLink the NavDeepLink to be added to this destination
-     *
-     * @see NavDeepLink.Builder.setUriPattern for the final uriPattern's
-     * generation logic.
+     * @see NavDeepLink.Builder.setUriPattern for the final uriPattern's generation logic.
      */
     @Suppress("BuilderSetStyle")
     public inline fun <reified T : Any> deepLink(
@@ -239,16 +210,15 @@
      * Public delegation for the reified deepLink overloads.
      *
      * Checks for deepLink validity:
-     * 1. They used the safe args constructor since we rely on that constructor
-     * to add arguments to the destination
-     * 2. DeepLink does not contain extra arguments not present in the destination
-     * KClass. We will not have its NavType. Even if we do, the destination is not aware of the
-     * argument and will just ignore it. In general we don't want safe args deeplinks to
-     * introduce new arguments.
+     * 1. They used the safe args constructor since we rely on that constructor to add arguments to
+     *    the destination
+     * 2. DeepLink does not contain extra arguments not present in the destination KClass. We will
+     *    not have its NavType. Even if we do, the destination is not aware of the argument and will
+     *    just ignore it. In general we don't want safe args deeplinks to introduce new arguments.
      * 3. DeepLink does not contain different argument type for the same arg name
      *
-     * For the case where the deepLink is missing required arguments in the [route], existing
-     * checks will catch it.
+     * For the case where the deepLink is missing required arguments in the [route], existing checks
+     * will catch it.
      */
     @OptIn(InternalSerializationApi::class)
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -281,16 +251,13 @@
      * Add a deep link to this destination.
      *
      * In addition to a direct Uri match, the following features are supported:
-     *
-     * *    Uris without a scheme are assumed as http and https. For example,
-     *      `www.example.com` will match `http://www.example.com` and
-     *      `https://www.example.com`.
-     * *    Placeholders in the form of `{placeholder_name}` matches 1 or more
-     *      characters. The String value of the placeholder will be available in the arguments
-     *      [Bundle] with a key of the same name. For example,
-     *      `http://www.example.com/users/{id}` will match
-     *      `http://www.example.com/users/4`.
-     * *    The `.*` wildcard can be used to match 0 or more characters.
+     * * Uris without a scheme are assumed as http and https. For example, `www.example.com` will
+     *   match `http://www.example.com` and `https://www.example.com`.
+     * * Placeholders in the form of `{placeholder_name}` matches 1 or more characters. The String
+     *   value of the placeholder will be available in the arguments [Bundle] with a key of the same
+     *   name. For example, `http://www.example.com/users/{id}` will match
+     *   `http://www.example.com/users/4`.
+     * * The `.*` wildcard can be used to match 0 or more characters.
      *
      * @param navDeepLink the NavDeepLink to be added to this destination
      */
@@ -301,9 +268,7 @@
 
     private var actions = mutableMapOf<Int, NavAction>()
 
-    /**
-     * Adds a new [NavAction] to the destination
-     */
+    /** Adds a new [NavAction] to the destination */
     @Deprecated(
         "Building NavDestinations using IDs with the Kotlin DSL has been deprecated in " +
             "favor of using routes. When using routes there is no need for actions."
@@ -315,27 +280,19 @@
     /**
      * Instantiate a new instance of [D] that will be passed to [build].
      *
-     * By default, this calls [Navigator.createDestination] on [navigator], but can
-     * be overridden to call a custom constructor, etc.
+     * By default, this calls [Navigator.createDestination] on [navigator], but can be overridden to
+     * call a custom constructor, etc.
      */
     @Suppress("BuilderSetStyle")
     protected open fun instantiateDestination(): D = navigator.createDestination()
 
-    /**
-     * Build the NavDestination by calling [Navigator.createDestination].
-     */
+    /** Build the NavDestination by calling [Navigator.createDestination]. */
     public open fun build(): D {
         return instantiateDestination().also { destination ->
             destination.label = label
-            arguments.forEach { (name, argument) ->
-                destination.addArgument(name, argument)
-            }
-            deepLinks.forEach { deepLink ->
-                destination.addDeepLink(deepLink)
-            }
-            actions.forEach { (actionId, action) ->
-                destination.putAction(actionId, action)
-            }
+            arguments.forEach { (name, argument) -> destination.addArgument(name, argument) }
+            deepLinks.forEach { deepLink -> destination.addDeepLink(deepLink) }
+            actions.forEach { (actionId, action) -> destination.putAction(actionId, action) }
             if (route != null) {
                 destination.route = route
             }
@@ -346,20 +303,15 @@
     }
 }
 
-/**
- * DSL for building a [NavAction].
- */
+/** DSL for building a [NavAction]. */
 @NavDestinationDsl
 public class NavActionBuilder {
-    /**
-     * The ID of the destination that should be navigated to when this action is used
-     */
+    /** The ID of the destination that should be navigated to when this action is used */
     public var destinationId: Int = 0
 
     /**
-     * The set of default arguments that should be passed to the destination. The keys
-     * used here should be the same as those used on the [NavDestinationBuilder.argument]
-     * for the destination.
+     * The set of default arguments that should be passed to the destination. The keys used here
+     * should be the same as those used on the [NavDestinationBuilder.argument] for the destination.
      *
      * All values added here should be able to be added to a [android.os.Bundle].
      *
@@ -369,25 +321,21 @@
 
     private var navOptions: NavOptions? = null
 
-    /**
-     * Sets the [NavOptions] for this action that should be used by default
-     */
+    /** Sets the [NavOptions] for this action that should be used by default */
     public fun navOptions(optionsBuilder: NavOptionsBuilder.() -> Unit) {
         navOptions = NavOptionsBuilder().apply(optionsBuilder).build()
     }
 
-    internal fun build() = NavAction(
-        destinationId, navOptions,
-        if (defaultArguments.isEmpty())
-            null
-        else
-            bundleOf(*defaultArguments.toList().toTypedArray())
-    )
+    internal fun build() =
+        NavAction(
+            destinationId,
+            navOptions,
+            if (defaultArguments.isEmpty()) null
+            else bundleOf(*defaultArguments.toList().toTypedArray())
+        )
 }
 
-/**
- * DSL for constructing a new [NavArgument]
- */
+/** DSL for constructing a new [NavArgument] */
 @NavDestinationDsl
 public class NavArgumentBuilder {
     private val builder = NavArgument.Builder()
@@ -396,8 +344,8 @@
     /**
      * The NavType for this argument.
      *
-     * If you don't set a type explicitly, it will be inferred
-     * from the default value of this argument.
+     * If you don't set a type explicitly, it will be inferred from the default value of this
+     * argument.
      */
     public var type: NavType<*>
         set(value) {
@@ -408,9 +356,7 @@
             return _type ?: throw IllegalStateException("NavType has not been set on this builder.")
         }
 
-    /**
-     * Controls if this argument allows null values.
-     */
+    /** Controls if this argument allows null values. */
     public var nullable: Boolean = false
         set(value) {
             field = value
@@ -433,7 +379,6 @@
      *
      * Use with caution!! In general you should let [defaultValue] to automatically set this state.
      * This state should be set to true only if all these conditions are met:
-     *
      * 1. There is default value present
      * 2. You do not have access to actual default value (thus you can't use [defaultValue])
      * 3. You know the default value will never ever be null if [nullable] is true.
@@ -444,9 +389,7 @@
             builder.setUnknownDefaultValuePresent(value)
         }
 
-    /**
-     * Builds the NavArgument by calling [NavArgument.Builder.build].
-     */
+    /** Builds the NavArgument by calling [NavArgument.Builder.build]. */
     public fun build(): NavArgument {
         return builder.build()
     }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavDirections.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavDirections.kt
index 1b514e1..42d4e61 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavDirections.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavDirections.kt
@@ -18,18 +18,11 @@
 import android.os.Bundle
 import androidx.annotation.IdRes
 
-/**
- * An interface that describes a navigation operation: action's id and arguments
- */
+/** An interface that describes a navigation operation: action's id and arguments */
 public interface NavDirections {
-    /**
-     * An action id to navigate with.
-     */
-    @get:IdRes
-    public val actionId: Int
+    /** An action id to navigate with. */
+    @get:IdRes public val actionId: Int
 
-    /**
-     * Arguments to pass to the destination
-     */
+    /** Arguments to pass to the destination */
     public val arguments: Bundle
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavGraph.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavGraph.kt
index d21ca6f..1d820c0 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavGraph.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavGraph.kt
@@ -36,32 +36,28 @@
 /**
  * NavGraph is a collection of [NavDestination] nodes fetchable by ID.
  *
- * A NavGraph serves as a 'virtual' destination: while the NavGraph itself will not appear
- * on the back stack, navigating to the NavGraph will cause the
- * [starting destination][getStartDestination] to be added to the back stack.
+ * A NavGraph serves as a 'virtual' destination: while the NavGraph itself will not appear on the
+ * back stack, navigating to the NavGraph will cause the [starting destination][getStartDestination]
+ * to be added to the back stack.
  *
  * Construct a new NavGraph. This NavGraph is not valid until you
  * [add a destination][addDestination] and [set the starting destination][setStartDestination].
  *
- * @param navGraphNavigator The [NavGraphNavigator] which this destination will be associated
- *                          with. Generally retrieved via a
- *                          [NavController]'s[NavigatorProvider.getNavigator] method.
+ * @param navGraphNavigator The [NavGraphNavigator] which this destination will be associated with.
+ *   Generally retrieved via a [NavController]'s[NavigatorProvider.getNavigator] method.
  */
 public open class NavGraph(navGraphNavigator: Navigator<out NavGraph>) :
     NavDestination(navGraphNavigator), Iterable<NavDestination> {
 
     public val nodes: SparseArrayCompat<NavDestination> = SparseArrayCompat<NavDestination>()
-        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-        get
+        @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) get
+
     private var startDestId = 0
     private var startDestIdName: String? = null
 
     override fun onInflate(context: Context, attrs: AttributeSet) {
         super.onInflate(context, attrs)
-        context.resources.obtainAttributes(
-            attrs,
-            R.styleable.NavGraphNavigator
-        ).use {
+        context.resources.obtainAttributes(attrs, R.styleable.NavGraphNavigator).use {
             startDestinationId = it.getResourceId(R.styleable.NavGraphNavigator_startDestination, 0)
             startDestIdName = getDisplayName(context, startDestId)
         }
@@ -72,9 +68,8 @@
         // First search through any deep links directly added to this NavGraph
         val bestMatch = super.matchDeepLink(navDeepLinkRequest)
         // Then search through all child destinations for a matching deep link
-        val bestChildMatch = mapNotNull { child ->
-            child.matchDeepLink(navDeepLinkRequest)
-        }.maxOrNull()
+        val bestChildMatch =
+            mapNotNull { child -> child.matchDeepLink(navDeepLinkRequest) }.maxOrNull()
 
         return listOfNotNull(bestMatch, bestChildMatch).maxOrNull()
     }
@@ -88,16 +83,15 @@
         super.matchDeepLink(request)
 
     /**
-     * Adds a destination to this NavGraph. The destination must have an
-     * [NavDestination.id] id} set.
+     * Adds a destination to this NavGraph. The destination must have an [NavDestination.id] id}
+     * set.
      *
-     * The destination must not have a [parent][NavDestination.parent] set. If
-     * the destination is already part of a [navigation graph][NavGraph], call
-     * [remove] before calling this method.
+     * The destination must not have a [parent][NavDestination.parent] set. If the destination is
+     * already part of a [navigation graph][NavGraph], call [remove] before calling this method.
      *
      * @param node destination to add
-     * @throws IllegalArgumentException if destination does not have an id, the destination has
-     * the same id as the graph, or the destination already has a parent.
+     * @throws IllegalArgumentException if destination does not have an id, the destination has the
+     *   same id as the graph, or the destination already has a parent.
      */
     public fun addDestination(node: NavDestination) {
         val id = node.id
@@ -131,9 +125,8 @@
      * Adds multiple destinations to this NavGraph. Each destination must have an
      * [NavDestination.id] id} set.
      *
-     * Each destination must not have a [parent][NavDestination.parent] set. If any
-     * destination is already part of a [navigation graph][NavGraph], call [remove] before
-     * calling this method.
+     * Each destination must not have a [parent][NavDestination.parent] set. If any destination is
+     * already part of a [navigation graph][NavGraph], call [remove] before calling this method.
      *
      * @param nodes destinations to add
      */
@@ -150,9 +143,8 @@
      * Adds multiple destinations to this NavGraph. Each destination must have an
      * [NavDestination.id] id} set.
      *
-     * Each destination must not have a [parent][NavDestination.parent] set. If any
-     * destination is already part of a [navigation graph][NavGraph], call [remove] before
-     * calling this method.
+     * Each destination must not have a [parent][NavDestination.parent] set. If any destination is
+     * already part of a [navigation graph][NavGraph], call [remove] before calling this method.
      *
      * @param nodes destinations to add
      */
@@ -163,8 +155,8 @@
     }
 
     /**
-     * Finds a destination in the collection by ID. This will recursively check the
-     * [parent][parent] of this navigation graph if node is not found in this navigation graph.
+     * Finds a destination in the collection by ID. This will recursively check the [parent][parent]
+     * of this navigation graph if node is not found in this navigation graph.
      *
      * @param resId ID to locate
      * @return the node with ID resId
@@ -188,12 +180,14 @@
         if (destination != null) return destination
 
         if (searchChildren) {
-            // then dfs through children. Avoid re-visiting children that were recursing up this way.
-            destination = nodes.valueIterator().asSequence().firstNotNullOfOrNull { child ->
-                if (child is NavGraph && child != lastVisited) {
-                    child.findNodeComprehensive(resId, this, true)
-                } else null
-            }
+            // then dfs through children. Avoid re-visiting children that were recursing up this
+            // way.
+            destination =
+                nodes.valueIterator().asSequence().firstNotNullOfOrNull { child ->
+                    if (child is NavGraph && child != lastVisited) {
+                        child.findNodeComprehensive(resId, this, true)
+                    } else null
+                }
         }
 
         // lastly search through parents. Avoid re-visiting parents that were recursing down
@@ -237,11 +231,12 @@
 
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun findNode(route: String, searchParents: Boolean): NavDestination? {
-        val destination = nodes.valueIterator().asSequence().firstOrNull {
-            // first try matching with routePattern
-            // if not found with routePattern, try matching with route args
-            it.route.equals(route) || it.matchDeepLink(route) != null
-        }
+        val destination =
+            nodes.valueIterator().asSequence().firstOrNull {
+                // first try matching with routePattern
+                // if not found with routePattern, try matching with route args
+                it.route.equals(route) || it.matchDeepLink(route) != null
+            }
 
         // Search the parent for the NavDestination if it is not a child of this navigation graph
         // and searchParents is true
@@ -249,13 +244,12 @@
             ?: if (searchParents && parent != null) parent!!.findNode(route) else null
     }
 
-    /**
-     * @throws NoSuchElementException if there no more elements
-     */
+    /** @throws NoSuchElementException if there no more elements */
     public final override fun iterator(): MutableIterator<NavDestination> {
         return object : MutableIterator<NavDestination> {
             private var index = -1
             private var wentToNext = false
+
             override fun hasNext(): Boolean {
                 return index + 1 < nodes.size()
             }
@@ -281,11 +275,11 @@
     }
 
     /**
-     * Add all destinations from another collection to this one. As each destination has at most
-     * one parent, the destinations will be removed from the given NavGraph.
+     * Add all destinations from another collection to this one. As each destination has at most one
+     * parent, the destinations will be removed from the given NavGraph.
      *
      * @param other collection of destinations to add. All destinations will be removed from this
-     * graph after being added to this graph.
+     *   graph after being added to this graph.
      */
     public fun addAll(other: NavGraph) {
         val iterator = other.iterator()
@@ -309,9 +303,7 @@
         }
     }
 
-    /**
-     * Clear all destinations from this navigation graph.
-     */
+    /** Clear all destinations from this navigation graph. */
     public fun clear() {
         val iterator = iterator()
         while (iterator.hasNext()) {
@@ -357,8 +349,7 @@
      *
      * This will clear any previously set [startDestinationRoute].
      *
-     * @param startDestId The id of the destination to be shown when navigating to this
-     *                    NavGraph.
+     * @param startDestId The id of the destination to be shown when navigating to this NavGraph.
      */
     public fun setStartDestination(startDestId: Int) {
         startDestinationId = startDestId
@@ -370,7 +361,7 @@
      * This will override any previously set [startDestinationId]
      *
      * @param startDestRoute The route of the destination to be shown when navigating to this
-     *                    NavGraph.
+     *   NavGraph.
      */
     public fun setStartDestination(startDestRoute: String) {
         startDestinationRoute = startDestRoute
@@ -381,13 +372,11 @@
      *
      * This will override any previously set [startDestinationId]
      *
-     * @param T The route of the destination as a [KClass] to be shown when navigating
-     * to this NavGraph.
+     * @param T The route of the destination as a [KClass] to be shown when navigating to this
+     *   NavGraph.
      */
     public inline fun <reified T : Any> setStartDestination() {
-        setStartDestination(serializer<T>()) { startDestination ->
-            startDestination.route!!
-        }
+        setStartDestination(serializer<T>()) { startDestination -> startDestination.route!! }
     }
 
     /**
@@ -396,14 +385,12 @@
      * This will override any previously set [startDestinationId]
      *
      * @param startDestRoute The route of the destination as an object to be shown when navigating
-     * to this NavGraph.
+     *   to this NavGraph.
      */
     @OptIn(InternalSerializationApi::class)
     public fun <T : Any> setStartDestination(startDestRoute: T) {
         setStartDestination(startDestRoute::class.serializer()) { startDestination ->
-            val args = startDestination.arguments.mapValues {
-                it.value.type
-            }
+            val args = startDestination.arguments.mapValues { it.value.type }
             generateRouteWithArgs(startDestRoute, args)
         }
     }
@@ -429,23 +416,24 @@
     }
 
     /**
-     * The route for the starting destination for this NavGraph. When navigating to the
-     * NavGraph, the destination represented by this route is the one the user will initially see.
+     * The route for the starting destination for this NavGraph. When navigating to the NavGraph,
+     * the destination represented by this route is the one the user will initially see.
      */
     public var startDestinationRoute: String? = null
         private set(startDestRoute) {
-            startDestId = if (startDestRoute == null) {
-                0
-            } else {
-                require(startDestRoute != route) {
-                    "Start destination $startDestRoute cannot use the same route as the graph $this"
+            startDestId =
+                if (startDestRoute == null) {
+                    0
+                } else {
+                    require(startDestRoute != route) {
+                        "Start destination $startDestRoute cannot use the same route as the graph $this"
+                    }
+                    require(startDestRoute.isNotBlank()) {
+                        "Cannot have an empty start destination route"
+                    }
+                    val internalRoute = createRoute(startDestRoute)
+                    internalRoute.hashCode()
                 }
-                require(startDestRoute.isNotBlank()) {
-                    "Cannot have an empty start destination route"
-                }
-                val internalRoute = createRoute(startDestRoute)
-                internalRoute.hashCode()
-            }
             field = startDestRoute
         }
 
@@ -497,20 +485,21 @@
 
     public companion object {
         /**
-         * Finds the actual start destination of the graph, handling cases where the graph's starting
-         * destination is itself a NavGraph.
+         * Finds the actual start destination of the graph, handling cases where the graph's
+         * starting destination is itself a NavGraph.
          *
          * @return the actual startDestination of the given graph.
          */
         @JvmStatic
         public fun NavGraph.findStartDestination(): NavDestination =
             generateSequence(findNode(startDestinationId)) {
-                if (it is NavGraph) {
-                    it.findNode(it.startDestinationId)
-                } else {
-                    null
+                    if (it is NavGraph) {
+                        it.findNode(it.startDestinationId)
+                    } else {
+                        null
+                    }
                 }
-            }.last()
+                .last()
     }
 }
 
@@ -539,10 +528,8 @@
  * @throws IllegalArgumentException if no destination is found with that route.
  */
 @Suppress("NOTHING_TO_INLINE")
-
 public inline operator fun <reified T : Any> NavGraph.get(route: KClass<T>): NavDestination =
-    findNode<T>()
-        ?: throw IllegalArgumentException("No destination for $route was found in $this")
+    findNode<T>() ?: throw IllegalArgumentException("No destination for $route was found in $this")
 
 /**
  * Returns the destination with `route` from an Object.
@@ -569,12 +556,10 @@
 public operator fun <T : Any> NavGraph.contains(route: T): Boolean = findNode(route) != null
 
 /**
- * Adds a destination to this NavGraph. The destination must have an
- * [id][NavDestination.id] set.
+ * Adds a destination to this NavGraph. The destination must have an [id][NavDestination.id] set.
  *
- * The destination must not have a [parent][NavDestination.parent] set. If
- * the destination is already part of a [NavGraph], call
- * [NavGraph.remove] before calling this method.</p>
+ * The destination must not have a [parent][NavDestination.parent] set. If the destination is
+ * already part of a [NavGraph], call [NavGraph.remove] before calling this method.</p>
  *
  * @param node destination to add
  */
@@ -584,11 +569,11 @@
 }
 
 /**
- * Add all destinations from another collection to this one. As each destination has at most
- * one parent, the destinations will be removed from the given NavGraph.
+ * Add all destinations from another collection to this one. As each destination has at most one
+ * parent, the destinations will be removed from the given NavGraph.
  *
  * @param other collection of destinations to add. All destinations will be removed from the
- * parameter graph after being added to this graph.
+ *   parameter graph after being added to this graph.
  */
 @Suppress("NOTHING_TO_INLINE")
 public inline operator fun NavGraph.plusAssign(other: NavGraph) {
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphBuilder.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphBuilder.kt
index 34f592c..72e9f05 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphBuilder.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphBuilder.kt
@@ -28,7 +28,6 @@
  * @param id the destination's unique id
  * @param startDestination the starting destination for this NavGraph
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed NavGraph
  */
 @Suppress("Deprecation")
@@ -51,26 +50,23 @@
  * @param startDestination the starting destination's route for this NavGraph
  * @param route the destination's unique route
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed NavGraph
  */
 public inline fun NavigatorProvider.navigation(
     startDestination: String,
     route: String? = null,
     builder: NavGraphBuilder.() -> Unit
-): NavGraph = NavGraphBuilder(this, startDestination, route).apply(builder)
-    .build()
+): NavGraph = NavGraphBuilder(this, startDestination, route).apply(builder).build()
 
 /**
  * Construct a new [NavGraph]
  *
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
  * @param route the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
- * [route] does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed NavGraph
  */
 public inline fun NavigatorProvider.navigation(
@@ -78,19 +74,17 @@
     route: KClass<*>? = null,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: NavGraphBuilder.() -> Unit
-): NavGraph = NavGraphBuilder(this, startDestination, route, typeMap).apply(builder)
-    .build()
+): NavGraph = NavGraphBuilder(this, startDestination, route, typeMap).apply(builder).build()
 
 /**
  * Construct a new [NavGraph]
  *
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
  * @param route the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
- * [route] does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed NavGraph
  */
 public inline fun NavigatorProvider.navigation(
@@ -98,8 +92,7 @@
     route: KClass<*>? = null,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: NavGraphBuilder.() -> Unit
-): NavGraph = NavGraphBuilder(this, startDestination, route, typeMap).apply(builder)
-    .build()
+): NavGraph = NavGraphBuilder(this, startDestination, route, typeMap).apply(builder).build()
 
 /**
  * Construct a nested [NavGraph]
@@ -107,7 +100,6 @@
  * @param id the destination's unique id
  * @param startDestination the starting destination for this NavGraph
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 @Suppress("Deprecation")
@@ -130,7 +122,6 @@
  * @param startDestination the starting destination's route for this NavGraph
  * @param route the destination's unique route
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 public inline fun NavGraphBuilder.navigation(
@@ -144,47 +135,39 @@
  *
  * @param T the graph's unique route from a KClass<T>
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
- * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if
- * [T] does not use custom NavTypes.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T] does not
+ *   use custom NavTypes.
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 public inline fun <reified T : Any> NavGraphBuilder.navigation(
     startDestination: KClass<*>,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: NavGraphBuilder.() -> Unit
-): Unit = destination(NavGraphBuilder(provider, startDestination, T::class, typeMap)
-    .apply(builder))
+): Unit = destination(NavGraphBuilder(provider, startDestination, T::class, typeMap).apply(builder))
 
 /**
  * Construct a nested [NavGraph]
  *
  * @param T the graph's unique route from a KClass<T>
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
- * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if
- * [T] does not use custom NavTypes.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T] does not
+ *   use custom NavTypes.
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 public inline fun <reified T : Any> NavGraphBuilder.navigation(
     startDestination: Any,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: NavGraphBuilder.() -> Unit
-): Unit = destination(NavGraphBuilder(provider, startDestination, T::class, typeMap)
-    .apply(builder))
+): Unit = destination(NavGraphBuilder(provider, startDestination, T::class, typeMap).apply(builder))
 
-/**
- * DSL for constructing a new [NavGraph]
- */
+/** DSL for constructing a new [NavGraph] */
 @NavDestinationDsl
 public open class NavGraphBuilder : NavDestinationBuilder<NavGraph> {
-    /**
-     * The [NavGraphBuilder]'s [NavigatorProvider].
-     */
+    /** The [NavGraphBuilder]'s [NavigatorProvider]. */
     public val provider: NavigatorProvider
     @IdRes private var startDestinationId: Int = 0
     private var startDestinationRoute: String? = null
@@ -197,7 +180,6 @@
      * @param provider navigator used to create the destination
      * @param id the graph's unique id
      * @param startDestination the starting destination for this NavGraph
-     *
      * @return the newly created NavGraph
      */
     @Suppress("Deprecation")
@@ -223,7 +205,6 @@
      * @param provider navigator used to create the destination
      * @param startDestination the starting destination's route for this NavGraph
      * @param route the graph's unique route
-     *
      * @return the newly created NavGraph
      */
     public constructor(
@@ -240,11 +221,10 @@
      *
      * @param provider navigator used to create the destination
      * @param startDestination the starting destination's route as a [KClass] for this NavGraph. The
-     * respective NavDestination must be added with route from a [KClass] in order to match.
+     *   respective NavDestination must be added with route from a [KClass] in order to match.
      * @param route the graph's unique route as a [KClass]
      * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
-     * [route] does not use custom NavTypes.
-     *
+     *   [route] does not use custom NavTypes.
      * @return the newly created NavGraph
      */
     public constructor(
@@ -262,11 +242,10 @@
      *
      * @param provider navigator used to create the destination
      * @param startDestination the starting destination's route as an Object for this NavGraph. The
-     * respective NavDestination must be added with route from a [KClass] in order to match.
+     *   respective NavDestination must be added with route from a [KClass] in order to match.
      * @param route the graph's unique route as a [KClass]
-     * @param typeMap A mapping of KType to custom NavType<*> in the [route].  May be empty if
-     * [route] does not use custom NavTypes.
-     *
+     * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
+     *   [route] does not use custom NavTypes.
      * @return the newly created NavGraph
      */
     public constructor(
@@ -275,52 +254,51 @@
         route: KClass<*>?,
         typeMap: Map<KType, @JvmSuppressWildcards NavType<*>>
     ) : super(provider[NavGraphNavigator::class], route, typeMap) {
-            this.provider = provider
-            this.startDestinationObject = startDestination
-        }
+        this.provider = provider
+        this.startDestinationObject = startDestination
+    }
 
     private val destinations = mutableListOf<NavDestination>()
 
-    /**
-     * Build and add a new destination to the [NavGraphBuilder]
-     */
+    /** Build and add a new destination to the [NavGraphBuilder] */
     public fun <D : NavDestination> destination(navDestination: NavDestinationBuilder<D>) {
         destinations += navDestination.build()
     }
 
-    /**
-     * Adds this destination to the [NavGraphBuilder]
-     */
+    /** Adds this destination to the [NavGraphBuilder] */
     public operator fun NavDestination.unaryPlus() {
         addDestination(this)
     }
 
-    /**
-     * Add the destination to the [NavGraphBuilder]
-     */
+    /** Add the destination to the [NavGraphBuilder] */
     public fun addDestination(destination: NavDestination) {
         destinations += destination
     }
 
     @OptIn(InternalSerializationApi::class)
-    override fun build(): NavGraph = super.build().also { navGraph ->
-        navGraph.addDestinations(destinations)
-        if (startDestinationId == 0 && startDestinationRoute == null &&
-            startDestinationClass == null && startDestinationObject == null) {
-            if (route != null) {
-                throw IllegalStateException("You must set a start destination route")
+    override fun build(): NavGraph =
+        super.build().also { navGraph ->
+            navGraph.addDestinations(destinations)
+            if (
+                startDestinationId == 0 &&
+                    startDestinationRoute == null &&
+                    startDestinationClass == null &&
+                    startDestinationObject == null
+            ) {
+                if (route != null) {
+                    throw IllegalStateException("You must set a start destination route")
+                } else {
+                    throw IllegalStateException("You must set a start destination id")
+                }
+            }
+            if (startDestinationRoute != null) {
+                navGraph.setStartDestination(startDestinationRoute!!)
+            } else if (startDestinationClass != null) {
+                navGraph.setStartDestination(startDestinationClass!!.serializer()) { it.route!! }
+            } else if (startDestinationObject != null) {
+                navGraph.setStartDestination(startDestinationObject!!)
             } else {
-                throw IllegalStateException("You must set a start destination id")
+                navGraph.setStartDestination(startDestinationId)
             }
         }
-        if (startDestinationRoute != null) {
-            navGraph.setStartDestination(startDestinationRoute!!)
-        } else if (startDestinationClass != null) {
-            navGraph.setStartDestination(startDestinationClass!!.serializer()) { it.route!! }
-        } else if (startDestinationObject != null) {
-            navGraph.setStartDestination(startDestinationObject!!)
-        } else {
-            navGraph.setStartDestination(startDestinationId)
-        }
-    }
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphNavigator.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphNavigator.kt
index 040386d..0dda829 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphNavigator.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavGraphNavigator.kt
@@ -19,28 +19,26 @@
 import kotlinx.coroutines.flow.StateFlow
 
 /**
- * A Navigator built specifically for [NavGraph] elements. Handles navigating to the
- * correct destination when the NavGraph is the target of navigation actions.
+ * A Navigator built specifically for [NavGraph] elements. Handles navigating to the correct
+ * destination when the NavGraph is the target of navigation actions.
  *
- * Construct a Navigator capable of routing incoming navigation requests to the proper
- * destination within a [NavGraph].
+ * Construct a Navigator capable of routing incoming navigation requests to the proper destination
+ * within a [NavGraph].
  *
- * @param navigatorProvider NavigatorProvider used to retrieve the correct
- * [Navigator] to navigate to the start destination
+ * @param navigatorProvider NavigatorProvider used to retrieve the correct [Navigator] to navigate
+ *   to the start destination
  */
 @Navigator.Name("navigation")
-public open class NavGraphNavigator(
-    private val navigatorProvider: NavigatorProvider
-) : Navigator<NavGraph>() {
+public open class NavGraphNavigator(private val navigatorProvider: NavigatorProvider) :
+    Navigator<NavGraph>() {
 
-    /**
-     * Gets the backstack of [NavBackStackEntry] associated with this Navigator
-     */
+    /** Gets the backstack of [NavBackStackEntry] associated with this Navigator */
     public val backStack: StateFlow<List<NavBackStackEntry>>
         get() = state.backStack
 
     /**
      * Creates a new [NavGraph] associated with this navigator.
+     *
      * @return The created [NavGraph].
      */
     override fun createDestination(): NavGraph {
@@ -73,11 +71,12 @@
         check(startId != 0 || startRoute != null) {
             ("no start destination defined via app:startDestination for ${destination.displayName}")
         }
-        val startDestination = if (startRoute != null) {
-            destination.findNode(startRoute, false)
-        } else {
-            destination.nodes[startId]
-        }
+        val startDestination =
+            if (startRoute != null) {
+                destination.findNode(startRoute, false)
+            } else {
+                destination.nodes[startId]
+            }
         requireNotNull(startDestination) {
             val dest = destination.startDestDisplayName
             throw IllegalArgumentException(
@@ -95,15 +94,17 @@
             }
         }
 
-        val navigator = navigatorProvider.getNavigator<Navigator<NavDestination>>(
-            startDestination.navigatorName
-        )
-        val startDestinationEntry = state.createBackStackEntry(
-            startDestination,
-            // could contain default args, restored args, args passed during setGraph,
-            // and args from route
-            startDestination.addInDefaultArgs(args)
-        )
+        val navigator =
+            navigatorProvider.getNavigator<Navigator<NavDestination>>(
+                startDestination.navigatorName
+            )
+        val startDestinationEntry =
+            state.createBackStackEntry(
+                startDestination,
+                // could contain default args, restored args, args passed during setGraph,
+                // and args from route
+                startDestination.addInDefaultArgs(args)
+            )
         navigator.navigate(listOf(startDestinationEntry), navOptions, navigatorExtras)
     }
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavOptions.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavOptions.kt
index e1047d8..8fb856a 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavOptions.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavOptions.kt
@@ -24,58 +24,56 @@
 import kotlinx.serialization.InternalSerializationApi
 import kotlinx.serialization.serializer
 
-/**
- * NavOptions stores special options for navigate actions
- */
-public class NavOptions internal constructor(
+/** NavOptions stores special options for navigate actions */
+public class NavOptions
+internal constructor(
     private val singleTop: Boolean,
     private val restoreState: Boolean,
     /**
      * The destination to pop up to before navigating. When set, all non-matching destinations
      * should be popped from the back stack.
+     *
      * @return the destinationId to pop up to, clearing all intervening destinations
      * @see Builder.setPopUpTo
-     *
      * @see isPopUpToInclusive
      * @see shouldPopUpToSaveState
      */
-    @field:IdRes @get:IdRes @param:IdRes
-    public val popUpToId: Int,
+    @field:IdRes @get:IdRes @param:IdRes public val popUpToId: Int,
     private val popUpToInclusive: Boolean,
     private val popUpToSaveState: Boolean,
     /**
      * The custom enter Animation/Animator that should be run.
+     *
      * @return the resource id of a Animation or Animator or -1 if none.
      */
-    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes
-    public val enterAnim: Int,
+    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes public val enterAnim: Int,
     /**
      * The custom exit Animation/Animator that should be run.
+     *
      * @return the resource id of a Animation or Animator or -1 if none.
      */
-    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes
-    public val exitAnim: Int,
+    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes public val exitAnim: Int,
     /**
-     * The custom enter Animation/Animator that should be run when this destination is
-     * popped from the back stack.
+     * The custom enter Animation/Animator that should be run when this destination is popped from
+     * the back stack.
+     *
      * @return the resource id of a Animation or Animator or -1 if none.
      */
-    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes
-    public val popEnterAnim: Int,
+    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes public val popEnterAnim: Int,
     /**
-     * The custom exit Animation/Animator that should be run when this destination is
-     * popped from the back stack.
+     * The custom exit Animation/Animator that should be run when this destination is popped from
+     * the back stack.
+     *
      * @return the resource id of a Animation or Animator or -1 if none.
      */
-    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes
-    public val popExitAnim: Int
+    @get:AnimatorRes @get:AnimRes @param:AnimRes @param:AnimatorRes public val popExitAnim: Int
 ) {
     /**
      * The destination to pop up to before navigating. When set, all non-matching destinations
      * should be popped from the back stack.
+     *
      * @return the destinationId to pop up to, clearing all intervening destinations
      * @see Builder.setPopUpTo
-     *
      * @see isPopUpToInclusive
      * @see shouldPopUpToSaveState
      */
@@ -86,9 +84,9 @@
     /**
      * Route for the destination to pop up to before navigating. When set, all non-matching
      * destinations should be popped from the back stack.
+     *
      * @return the destination route to pop up to, clearing all intervening destinations
      * @see Builder.setPopUpTo
-     *
      * @see isPopUpToInclusive
      * @see shouldPopUpToSaveState
      */
@@ -96,11 +94,11 @@
         private set
 
     /**
-     * Route from a [KClass] for the destination to pop up to before navigating. When set,
-     * all non-matching destinations should be popped from the back stack.
+     * Route from a [KClass] for the destination to pop up to before navigating. When set, all
+     * non-matching destinations should be popped from the back stack.
+     *
      * @return the destination route to pop up to, clearing all intervening destinations
      * @see Builder.setPopUpTo
-     *
      * @see isPopUpToInclusive
      * @see shouldPopUpToSaveState
      */
@@ -108,20 +106,18 @@
         private set
 
     /**
-     * Route from an Object for the destination to pop up to before navigating. When set,
-     * all non-matching destinations should be popped from the back stack.
+     * Route from an Object for the destination to pop up to before navigating. When set, all
+     * non-matching destinations should be popped from the back stack.
+     *
      * @return the destination route to pop up to, clearing all intervening destinations
      * @see Builder.setPopUpTo
-     *
      * @see isPopUpToInclusive
      * @see shouldPopUpToSaveState
      */
     public var popUpToRouteObject: Any? = null
         private set
 
-    /**
-     * NavOptions stores special options for navigate actions
-     */
+    /** NavOptions stores special options for navigate actions */
     internal constructor(
         singleTop: Boolean,
         restoreState: Boolean,
@@ -146,9 +142,7 @@
         this.popUpToRoute = popUpToRoute
     }
 
-    /**
-     * NavOptions stores special options for navigate actions
-     */
+    /** NavOptions stores special options for navigate actions */
     @OptIn(InternalSerializationApi::class)
     internal constructor(
         singleTop: Boolean,
@@ -174,9 +168,7 @@
         this.popUpToRouteClass = popUpToRouteClass
     }
 
-    /**
-     * NavOptions stores special options for navigate actions
-     */
+    /** NavOptions stores special options for navigate actions */
     @OptIn(InternalSerializationApi::class)
     internal constructor(
         singleTop: Boolean,
@@ -203,20 +195,19 @@
     }
 
     /**
-     * Whether this navigation action should launch as single-top (i.e., there will be at most
-     * one copy of a given destination on the top of the back stack).
+     * Whether this navigation action should launch as single-top (i.e., there will be at most one
+     * copy of a given destination on the top of the back stack).
      *
-     *
-     * This functions similarly to how [android.content.Intent.FLAG_ACTIVITY_SINGLE_TOP]
-     * works with activities.
+     * This functions similarly to how [android.content.Intent.FLAG_ACTIVITY_SINGLE_TOP] works with
+     * activities.
      */
     public fun shouldLaunchSingleTop(): Boolean {
         return singleTop
     }
 
     /**
-     * Whether this navigation action should restore any state previously saved
-     * by [Builder.setPopUpTo] or the `popUpToSaveState` attribute.
+     * Whether this navigation action should restore any state previously saved by
+     * [Builder.setPopUpTo] or the `popUpToSaveState` attribute.
      */
     public fun shouldRestoreState(): Boolean {
         return restoreState
@@ -224,8 +215,8 @@
 
     /**
      * Whether the destination set in [getPopUpTo] should be popped from the back stack.
-     * @see Builder.setPopUpTo
      *
+     * @see Builder.setPopUpTo
      * @see NavOptions.getPopUpTo
      */
     public fun isPopUpToInclusive(): Boolean {
@@ -233,11 +224,10 @@
     }
 
     /**
-     * Whether the back stack and the state of all destinations between the
-     * current destination and [popUpToId] should be saved for later restoration via
-     * [Builder.setRestoreState] or the `restoreState` attribute using the same ID
-     * as [popUpToId] (note: this matching ID is true whether [isPopUpToInclusive] is true or
-     * false).
+     * Whether the back stack and the state of all destinations between the current destination and
+     * [popUpToId] should be saved for later restoration via [Builder.setRestoreState] or the
+     * `restoreState` attribute using the same ID as [popUpToId] (note: this matching ID is true
+     * whether [isPopUpToInclusive] is true or false).
      */
     public fun shouldPopUpToSaveState(): Boolean {
         return popUpToSaveState
@@ -287,26 +277,26 @@
             sb.append("restoreState ")
         }
         if (popUpToRoute != null || popUpToId != -1)
-        if (popUpToRoute != null) {
-            sb.append("popUpTo(")
             if (popUpToRoute != null) {
-                sb.append(popUpToRoute)
-            } else if (popUpToRouteClass != null) {
-                sb.append(popUpToRouteClass)
-            } else if (popUpToRouteObject != null) {
-                sb.append(popUpToRouteObject)
-            } else {
-                sb.append("0x")
-                sb.append(Integer.toHexString(popUpToId))
+                sb.append("popUpTo(")
+                if (popUpToRoute != null) {
+                    sb.append(popUpToRoute)
+                } else if (popUpToRouteClass != null) {
+                    sb.append(popUpToRouteClass)
+                } else if (popUpToRouteObject != null) {
+                    sb.append(popUpToRouteObject)
+                } else {
+                    sb.append("0x")
+                    sb.append(Integer.toHexString(popUpToId))
+                }
+                if (popUpToInclusive) {
+                    sb.append(" inclusive")
+                }
+                if (popUpToSaveState) {
+                    sb.append(" saveState")
+                }
+                sb.append(")")
             }
-            if (popUpToInclusive) {
-                sb.append(" inclusive")
-            }
-            if (popUpToSaveState) {
-                sb.append(" saveState")
-            }
-            sb.append(")")
-        }
         if (enterAnim != -1 || exitAnim != -1 || popEnterAnim != -1 || popExitAnim != -1) {
             sb.append("anim(enterAnim=0x")
             sb.append(Integer.toHexString(enterAnim))
@@ -321,41 +311,30 @@
         return sb.toString()
     }
 
-    /**
-     * Builder for constructing new instances of NavOptions.
-     */
+    /** Builder for constructing new instances of NavOptions. */
     public class Builder {
         private var singleTop = false
         private var restoreState = false
 
-        @IdRes
-        private var popUpToId = -1
+        @IdRes private var popUpToId = -1
         private var popUpToRoute: String? = null
         private var popUpToRouteClass: KClass<*>? = null
         private var popUpToRouteObject: Any? = null
         private var popUpToInclusive = false
         private var popUpToSaveState = false
 
-        @AnimRes
-        @AnimatorRes
-        private var enterAnim = -1
+        @AnimRes @AnimatorRes private var enterAnim = -1
 
-        @AnimRes
-        @AnimatorRes
-        private var exitAnim = -1
+        @AnimRes @AnimatorRes private var exitAnim = -1
 
-        @AnimRes
-        @AnimatorRes
-        private var popEnterAnim = -1
+        @AnimRes @AnimatorRes private var popEnterAnim = -1
 
-        @AnimRes
-        @AnimatorRes
-        private var popExitAnim = -1
+        @AnimRes @AnimatorRes private var popExitAnim = -1
 
         /**
-         * Launch a navigation target as single-top if you are making a lateral navigation
-         * between instances of the same target (e.g. detail pages about similar data items)
-         * that should not preserve history.
+         * Launch a navigation target as single-top if you are making a lateral navigation between
+         * instances of the same target (e.g. detail pages about similar data items) that should not
+         * preserve history.
          *
          * @param singleTop true to launch as single-top
          */
@@ -365,9 +344,9 @@
         }
 
         /**
-         * Whether this navigation action should restore any state previously saved
-         * by [setPopUpTo] or the `popUpToSaveState` attribute. If no state was
-         * previously saved with the destination ID being navigated to, this has no effect.
+         * Whether this navigation action should restore any state previously saved by [setPopUpTo]
+         * or the `popUpToSaveState` attribute. If no state was previously saved with the
+         * destination ID being navigated to, this has no effect.
          */
         @SuppressWarnings("MissingGetterMatchingBuilder")
         public fun setRestoreState(restoreState: Boolean): Builder {
@@ -382,12 +361,10 @@
          * @param destinationId The destination to pop up to, clearing all intervening destinations.
          * @param inclusive true to also pop the given destination from the back stack.
          * @param saveState true if the back stack and the state of all destinations between the
-         * current destination and [destinationId] should be saved for later restoration via
-         * [setRestoreState] or the `restoreState` attribute using the same ID
-         * as [popUpToId] (note: this matching ID is true whether [inclusive] is true or
-         * false).
+         *   current destination and [destinationId] should be saved for later restoration via
+         *   [setRestoreState] or the `restoreState` attribute using the same ID as [popUpToId]
+         *   (note: this matching ID is true whether [inclusive] is true or false).
          * @return this Builder
-         *
          * @see NavOptions.popUpToId
          * @see NavOptions.isPopUpToInclusive
          */
@@ -411,12 +388,10 @@
          * @param route route for destination to pop up to, clearing all intervening destinations.
          * @param inclusive true to also pop the given destination from the back stack.
          * @param saveState true if the back stack and the state of all destinations between the
-         * current destination and [route] should be saved for later restoration via
-         * [setRestoreState] or the `restoreState` attribute using the same ID
-         * as [popUpToRoute] (note: this matching ID is true whether [inclusive] is true or
-         * false).
+         *   current destination and [route] should be saved for later restoration via
+         *   [setRestoreState] or the `restoreState` attribute using the same ID as [popUpToRoute]
+         *   (note: this matching ID is true whether [inclusive] is true or false).
          * @return this Builder
-         *
          * @see NavOptions.popUpToId
          * @see NavOptions.isPopUpToInclusive
          */
@@ -437,16 +412,15 @@
          * Pop up to a given destination before navigating. This pops all non-matching destinations
          * from the back stack until this destination is found.
          *
-         * @param T route from a [KClass] for destination to pop up to, clearing all
-         * intervening destinations.
+         * @param T route from a [KClass] for destination to pop up to, clearing all intervening
+         *   destinations.
          * @param inclusive true to also pop the given destination from the back stack.
          * @param saveState true if the back stack and the state of all destinations between the
-         * current destination and [T] should be saved for later restoration via
-         * [setRestoreState] or the `restoreState` attribute using the same route from [KClass]
-         * as [popUpToRouteClass] (note: this matching route is true whether [inclusive] is true or
-         * false).
+         *   current destination and [T] should be saved for later restoration via [setRestoreState]
+         *   or the `restoreState` attribute using the same route from [KClass] as
+         *   [popUpToRouteClass] (note: this matching route is true whether [inclusive] is true or
+         *   false).
          * @return this Builder
-         *
          * @see NavOptions.popUpToId
          * @see NavOptions.isPopUpToInclusive
          */
@@ -479,16 +453,15 @@
          * Pop up to a given destination before navigating. This pops all non-matching destinations
          * from the back stack until this destination is found.
          *
-         * @param route route from an Object for destination to pop up to, clearing all
-         * intervening destinations.
+         * @param route route from an Object for destination to pop up to, clearing all intervening
+         *   destinations.
          * @param inclusive true to also pop the given destination from the back stack.
          * @param saveState true if the back stack and the state of all destinations between the
-         * current destination and [route] should be saved for later restoration via
-         * [setRestoreState] or the `restoreState` attribute using the same route from an Object
-         * as [popUpToRouteObject] (note: this matching route is true whether [inclusive] is
-         * true or false).
+         *   current destination and [route] should be saved for later restoration via
+         *   [setRestoreState] or the `restoreState` attribute using the same route from an Object
+         *   as [popUpToRouteObject] (note: this matching route is true whether [inclusive] is true
+         *   or false).
          * @return this Builder
-         *
          * @see NavOptions.popUpToId
          * @see NavOptions.isPopUpToInclusive
          */
@@ -509,9 +482,9 @@
          * Sets a custom Animation or Animator resource for the enter animation.
          *
          * Note: Animator resources are not supported for navigating to a new Activity
+         *
          * @param enterAnim Custom animation to run
          * @return this Builder
-         *
          * @see NavOptions.enterAnim
          */
         public fun setEnterAnim(@AnimRes @AnimatorRes enterAnim: Int): Builder {
@@ -523,9 +496,9 @@
          * Sets a custom Animation or Animator resource for the exit animation.
          *
          * Note: Animator resources are not supported for navigating to a new Activity
+         *
          * @param exitAnim Custom animation to run
          * @return this Builder
-         *
          * @see NavOptions.exitAnim
          */
         public fun setExitAnim(@AnimRes @AnimatorRes exitAnim: Int): Builder {
@@ -534,13 +507,13 @@
         }
 
         /**
-         * Sets a custom Animation or Animator resource for the enter animation
-         * when popping off the back stack.
+         * Sets a custom Animation or Animator resource for the enter animation when popping off the
+         * back stack.
          *
          * Note: Animator resources are not supported for navigating to a new Activity
+         *
          * @param popEnterAnim Custom animation to run
          * @return this Builder
-         *
          * @see NavOptions.popEnterAnim
          */
         public fun setPopEnterAnim(@AnimRes @AnimatorRes popEnterAnim: Int): Builder {
@@ -549,13 +522,13 @@
         }
 
         /**
-         * Sets a custom Animation or Animator resource for the exit animation
-         * when popping off the back stack.
+         * Sets a custom Animation or Animator resource for the exit animation when popping off the
+         * back stack.
          *
          * Note: Animator resources are not supported for navigating to a new Activity
+         *
          * @param popExitAnim Custom animation to run
          * @return this Builder
-         *
          * @see NavOptions.popExitAnim
          */
         public fun setPopExitAnim(@AnimRes @AnimatorRes popExitAnim: Int): Builder {
@@ -563,33 +536,55 @@
             return this
         }
 
-        /**
-         * @return a constructed NavOptions
-         */
+        /** @return a constructed NavOptions */
         public fun build(): NavOptions {
             return if (popUpToRoute != null) {
                 NavOptions(
-                    singleTop, restoreState,
-                    popUpToRoute, popUpToInclusive, popUpToSaveState,
-                    enterAnim, exitAnim, popEnterAnim, popExitAnim
+                    singleTop,
+                    restoreState,
+                    popUpToRoute,
+                    popUpToInclusive,
+                    popUpToSaveState,
+                    enterAnim,
+                    exitAnim,
+                    popEnterAnim,
+                    popExitAnim
                 )
             } else if (popUpToRouteClass != null) {
                 NavOptions(
-                    singleTop, restoreState,
-                    popUpToRouteClass, popUpToInclusive, popUpToSaveState,
-                    enterAnim, exitAnim, popEnterAnim, popExitAnim
+                    singleTop,
+                    restoreState,
+                    popUpToRouteClass,
+                    popUpToInclusive,
+                    popUpToSaveState,
+                    enterAnim,
+                    exitAnim,
+                    popEnterAnim,
+                    popExitAnim
                 )
             } else if (popUpToRouteObject != null) {
                 NavOptions(
-                    singleTop, restoreState,
-                    popUpToRouteObject!!, popUpToInclusive, popUpToSaveState,
-                    enterAnim, exitAnim, popEnterAnim, popExitAnim
+                    singleTop,
+                    restoreState,
+                    popUpToRouteObject!!,
+                    popUpToInclusive,
+                    popUpToSaveState,
+                    enterAnim,
+                    exitAnim,
+                    popEnterAnim,
+                    popExitAnim
                 )
             } else {
                 NavOptions(
-                    singleTop, restoreState,
-                    popUpToId, popUpToInclusive, popUpToSaveState,
-                    enterAnim, exitAnim, popEnterAnim, popExitAnim
+                    singleTop,
+                    restoreState,
+                    popUpToId,
+                    popUpToInclusive,
+                    popUpToSaveState,
+                    enterAnim,
+                    exitAnim,
+                    popEnterAnim,
+                    popExitAnim
                 )
             }
         }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavOptionsBuilder.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavOptionsBuilder.kt
index c290691..b56ed88 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavOptionsBuilder.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavOptionsBuilder.kt
@@ -22,43 +22,36 @@
 import androidx.annotation.RestrictTo
 import kotlin.reflect.KClass
 
-@DslMarker
-public annotation class NavOptionsDsl
+@DslMarker public annotation class NavOptionsDsl
 
-/**
- * Construct a new [NavOptions]
- */
+/** Construct a new [NavOptions] */
 public fun navOptions(optionsBuilder: NavOptionsBuilder.() -> Unit): NavOptions =
     NavOptionsBuilder().apply(optionsBuilder).build()
 
-/**
- * DSL for constructing a new [NavOptions]
- */
+/** DSL for constructing a new [NavOptions] */
 @NavOptionsDsl
 public class NavOptionsBuilder {
     private val builder = NavOptions.Builder()
 
     /**
-     * Whether this navigation action should launch as single-top (i.e., there will be at most
-     * one copy of a given destination on the top of the back stack).
+     * Whether this navigation action should launch as single-top (i.e., there will be at most one
+     * copy of a given destination on the top of the back stack).
      *
-     * This functions similarly to how [android.content.Intent.FLAG_ACTIVITY_SINGLE_TOP]
-     * works with activites.
+     * This functions similarly to how [android.content.Intent.FLAG_ACTIVITY_SINGLE_TOP] works with
+     * activities.
      */
     public var launchSingleTop: Boolean = false
 
     /**
-     * Whether this navigation action should restore any state previously saved
-     * by [PopUpToBuilder.saveState] or the `popUpToSaveState` attribute. If no state was
-     * previously saved with the destination ID being navigated to, this has no effect.
+     * Whether this navigation action should restore any state previously saved by
+     * [PopUpToBuilder.saveState] or the `popUpToSaveState` attribute. If no state was previously
+     * saved with the destination ID being navigated to, this has no effect.
      */
     @get:Suppress("GetterOnBuilder", "GetterSetterNames")
     @set:Suppress("SetterReturnsThis", "GetterSetterNames")
     public var restoreState: Boolean = false
 
-    /**
-     * Returns the current destination that the builder will pop up to.
-     */
+    /** Returns the current destination that the builder will pop up to. */
     @IdRes
     public var popUpToId: Int = -1
         internal set(value) {
@@ -67,8 +60,8 @@
         }
 
     /**
-     * The destination to pop up to before navigating. All non-matching destinations
-     * from the back stack up until this destination will also be popped.
+     * The destination to pop up to before navigating. All non-matching destinations from the back
+     * stack up until this destination will also be popped.
      */
     @Deprecated("Use the popUpToId property.")
     public var popUpTo: Int
@@ -79,8 +72,8 @@
         }
 
     /**
-     * The destination to pop up to before navigating. All non-matching destinations
-     * from the back stack up until this destination will also be popped.
+     * The destination to pop up to before navigating. All non-matching destinations from the back
+     * stack up until this destination will also be popped.
      */
     public var popUpToRoute: String? = null
         private set(value) {
@@ -90,12 +83,13 @@
                 inclusive = false
             }
         }
+
     private var inclusive = false
     private var saveState = false
 
     /**
-     * The destination to pop up to before navigating. All non-matching destinations
-     * from the back stack up until this destination will also be popped.
+     * The destination to pop up to before navigating. All non-matching destinations from the back
+     * stack up until this destination will also be popped.
      */
     @get:Suppress("GetterOnBuilder")
     public var popUpToRouteClass: KClass<*>? = null
@@ -107,8 +101,8 @@
         }
 
     /**
-     * The destination to pop up to before navigating. All non-matching destinations
-     * from the back stack up until this destination will also be popped.
+     * The destination to pop up to before navigating. All non-matching destinations from the back
+     * stack up until this destination will also be popped.
      */
     @get:Suppress("GetterOnBuilder")
     public var popUpToRouteObject: Any? = null
@@ -120,8 +114,8 @@
         }
 
     /**
-     * Pop up to a given destination before navigating. This pops all non-matching destinations
-     * from the back stack until this destination is found.
+     * Pop up to a given destination before navigating. This pops all non-matching destinations from
+     * the back stack until this destination is found.
      */
     public fun popUpTo(@IdRes id: Int, popUpToBuilder: PopUpToBuilder.() -> Unit = {}) {
         popUpToId = id
@@ -132,8 +126,8 @@
     }
 
     /**
-     * Pop up to a given destination before navigating. This pops all non-matching destination routes
-     * from the back stack until the destination with a matching route is found.
+     * Pop up to a given destination before navigating. This pops all non-matching destination
+     * routes from the back stack until the destination with a matching route is found.
      *
      * @param route route for the destination
      * @param popUpToBuilder builder used to construct a popUpTo operation
@@ -147,8 +141,8 @@
     }
 
     /**
-     * Pop up to a given destination before navigating. This pops all non-matching destination routes
-     * from the back stack until the destination with a matching route is found.
+     * Pop up to a given destination before navigating. This pops all non-matching destination
+     * routes from the back stack until the destination with a matching route is found.
      *
      * @param T route from a [KClass] for the destination
      * @param popUpToBuilder builder used to construct a popUpTo operation
@@ -164,10 +158,7 @@
     // this restricted public is needed so that the public reified [popUpTo] can call
     // private popUpToRouteClass setter
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    public fun <T : Any> popUpTo(
-        klass: KClass<T>,
-        popUpToBuilder: PopUpToBuilder.() -> Unit
-    ) {
+    public fun <T : Any> popUpTo(klass: KClass<T>, popUpToBuilder: PopUpToBuilder.() -> Unit) {
         popUpToRouteClass = klass
         popUpToId = -1
         popUpToRoute = null
@@ -177,8 +168,8 @@
     }
 
     /**
-     * Pop up to a given destination before navigating. This pops all non-matching destination routes
-     * from the back stack until the destination with a matching route is found.
+     * Pop up to a given destination before navigating. This pops all non-matching destination
+     * routes from the back stack until the destination with a matching route is found.
      *
      * @param route route from a Object for the destination
      * @param popUpToBuilder builder used to construct a popUpTo operation
@@ -201,53 +192,51 @@
      */
     public fun anim(animBuilder: AnimBuilder.() -> Unit) {
         AnimBuilder().apply(animBuilder).run {
-            this@NavOptionsBuilder.builder.setEnterAnim(enter)
+            this@NavOptionsBuilder.builder
+                .setEnterAnim(enter)
                 .setExitAnim(exit)
                 .setPopEnterAnim(popEnter)
                 .setPopExitAnim(popExit)
         }
     }
 
-    internal fun build() = builder.apply {
-        setLaunchSingleTop(launchSingleTop)
-        setRestoreState(restoreState)
-        if (popUpToRoute != null) {
-            setPopUpTo(popUpToRoute, inclusive, saveState)
-        } else if (popUpToRouteClass != null) {
-            setPopUpTo(popUpToRouteClass!!, inclusive, saveState)
-        } else if (popUpToRouteObject != null) {
-            setPopUpTo(popUpToRouteObject!!, inclusive, saveState)
-        } else {
-            setPopUpTo(popUpToId, inclusive, saveState)
-        }
-    }.build()
+    internal fun build() =
+        builder
+            .apply {
+                setLaunchSingleTop(launchSingleTop)
+                setRestoreState(restoreState)
+                if (popUpToRoute != null) {
+                    setPopUpTo(popUpToRoute, inclusive, saveState)
+                } else if (popUpToRouteClass != null) {
+                    setPopUpTo(popUpToRouteClass!!, inclusive, saveState)
+                } else if (popUpToRouteObject != null) {
+                    setPopUpTo(popUpToRouteObject!!, inclusive, saveState)
+                } else {
+                    setPopUpTo(popUpToId, inclusive, saveState)
+                }
+            }
+            .build()
 }
 
-/**
- * DSL for customizing [NavOptionsBuilder.popUpTo] operations.
- */
+/** DSL for customizing [NavOptionsBuilder.popUpTo] operations. */
 @NavOptionsDsl
 public class PopUpToBuilder {
-    /**
-     * Whether the `popUpTo` destination should be popped from the back stack.
-     */
+    /** Whether the `popUpTo` destination should be popped from the back stack. */
     public var inclusive: Boolean = false
 
     /**
-     * Whether the back stack and the state of all destinations between the
-     * current destination and the [NavOptionsBuilder.popUpTo] ID should be saved for later
-     * restoration via [NavOptionsBuilder.restoreState] or the `restoreState` attribute using
-     * the same [NavOptionsBuilder.popUpTo] ID (note: this matching ID is true whether
-     * [inclusive] is true or false).
+     * Whether the back stack and the state of all destinations between the current destination and
+     * the [NavOptionsBuilder.popUpTo] ID should be saved for later restoration via
+     * [NavOptionsBuilder.restoreState] or the `restoreState` attribute using the same
+     * [NavOptionsBuilder.popUpTo] ID (note: this matching ID is true whether [inclusive] is true or
+     * false).
      */
     @get:Suppress("GetterOnBuilder", "GetterSetterNames")
     @set:Suppress("SetterReturnsThis", "GetterSetterNames")
     public var saveState: Boolean = false
 }
 
-/**
- * DSL for setting custom Animation or Animator resources on a [NavOptionsBuilder]
- */
+/** DSL for setting custom Animation or Animator resources on a [NavOptionsBuilder] */
 @NavOptionsDsl
 public class AnimBuilder {
     /**
@@ -255,36 +244,28 @@
      *
      * Note: Animator resources are not supported for navigating to a new Activity
      */
-    @AnimRes
-    @AnimatorRes
-    public var enter: Int = -1
+    @AnimRes @AnimatorRes public var enter: Int = -1
 
     /**
      * The custom Animation or Animator resource for the exit animation.
      *
      * Note: Animator resources are not supported for navigating to a new Activity
      */
-    @AnimRes
-    @AnimatorRes
-    public var exit: Int = -1
+    @AnimRes @AnimatorRes public var exit: Int = -1
 
     /**
-     * The custom Animation or Animator resource for the enter animation
-     * when popping off the back stack.
+     * The custom Animation or Animator resource for the enter animation when popping off the back
+     * stack.
      *
      * Note: Animator resources are not supported for navigating to a new Activity
      */
-    @AnimRes
-    @AnimatorRes
-    public var popEnter: Int = -1
+    @AnimRes @AnimatorRes public var popEnter: Int = -1
 
     /**
-     * The custom Animation or Animator resource for the exit animation
-     * when popping off the back stack.
+     * The custom Animation or Animator resource for the exit animation when popping off the back
+     * stack.
      *
      * Note: Animator resources are not supported for navigating to a new Activity
      */
-    @AnimRes
-    @AnimatorRes
-    public var popExit: Int = -1
+    @AnimRes @AnimatorRes public var popExit: Int = -1
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavType.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavType.kt
index 1304f9c..1efaab1 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavType.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavType.kt
@@ -36,6 +36,7 @@
 public abstract class NavType<T>(
     /**
      * Check if an argument with this type can hold a null value.
+     *
      * @return Returns true if this type allows null values, false otherwise.
      */
     public open val isNullableAllowed: Boolean
@@ -45,8 +46,8 @@
      * Put a value of this type in the `bundle`
      *
      * @param bundle bundle to put value in
-     * @param key    bundle key
-     * @param value  value of this type
+     * @param key bundle key
+     * @param value value of this type
      */
     public abstract fun put(bundle: Bundle, key: String, value: T)
 
@@ -54,7 +55,7 @@
      * Get a value of this type from the `bundle`
      *
      * @param bundle bundle to get value from
-     * @param key    bundle key
+     * @param key bundle key
      * @return value of this type
      */
     public abstract operator fun get(bundle: Bundle, key: String): T?
@@ -69,9 +70,9 @@
     public abstract fun parseValue(value: String): T
 
     /**
-     * Parse a value of this type from a String and then combine that
-     * parsed value with the given previousValue of the same type to
-     * provide a new value that contains both the new and previous value.
+     * Parse a value of this type from a String and then combine that parsed value with the given
+     * previousValue of the same type to provide a new value that contains both the new and previous
+     * value.
      *
      * By default, the given value will replace the previousValue.
      *
@@ -86,8 +87,8 @@
      * Parse a value of this type from a String and put it in a `bundle`
      *
      * @param bundle bundle to put value in
-     * @param key    bundle key under which to put the value
-     * @param value  string representation of a value of this type
+     * @param key bundle key under which to put the value
+     * @param value string representation of a value of this type
      * @return parsed value of the type represented by this NavType
      */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -98,13 +99,12 @@
     }
 
     /**
-     * Parse a value of this type from a String, combine that parsed value
-     * with the given previousValue, and then put that combined parsed
-     * value in a `bundle`.
+     * Parse a value of this type from a String, combine that parsed value with the given
+     * previousValue, and then put that combined parsed value in a `bundle`.
      *
      * @param bundle bundle to put value in
-     * @param key    bundle key under which to put the value
-     * @param value  string representation of a value of this type
+     * @param key bundle key under which to put the value
+     * @param value string representation of a value of this type
      * @param previousValue previously parsed value of this type
      * @return combined parsed value of the type represented by this NavType
      */
@@ -126,8 +126,8 @@
      *
      * By default it returns value of [kotlin.toString] or null if value passed in is null.
      *
-     * This method can be override for custom serialization implementation on types such
-     * custom NavType classes.
+     * This method can be override for custom serialization implementation on types such custom
+     * NavType classes.
      *
      * @param value a value representing this NavType to be serialized into a String
      * @return serialized String value of [value]
@@ -161,11 +161,11 @@
         /**
          * Parse an argType string into a NavType.
          *
-         * @param type        argType string, usually parsed from the Navigation XML file
-         * @param packageName package name of the R file,
-         * used for parsing relative class names starting with a dot.
-         * @return a NavType representing the type indicated by the argType string.
-         * Defaults to StringType for null.
+         * @param type argType string, usually parsed from the Navigation XML file
+         * @param packageName package name of the R file, used for parsing relative class names
+         *   starting with a dot.
+         * @return a NavType representing the type indicated by the argType string. Defaults to
+         *   StringType for null.
          * @throws IllegalArgumentException if there is no valid argType
          * @throws RuntimeException if the type class name cannot be found
          */
@@ -193,11 +193,12 @@
                 !type.isNullOrEmpty() -> {
                     try {
                         var className: String
-                        className = if (type.startsWith(".") && packageName != null) {
-                            packageName + type
-                        } else {
-                            type
-                        }
+                        className =
+                            if (type.startsWith(".") && packageName != null) {
+                                packageName + type
+                            } else {
+                                type
+                            }
                         val isArray = type.endsWith("[]")
                         if (isArray) className = className.substring(0, className.length - 2)
                         return requireNotNull(
@@ -294,15 +295,13 @@
                 value is Array<*> && value.isArrayOf<String>() -> StringArrayType as NavType<Any>
                 value.javaClass.isArray &&
                     Parcelable::class.java.isAssignableFrom(value.javaClass.componentType!!) -> {
-                    ParcelableArrayType(
-                        value.javaClass.componentType as Class<Parcelable>
-                    ) as NavType<Any>
+                    ParcelableArrayType(value.javaClass.componentType as Class<Parcelable>)
+                        as NavType<Any>
                 }
                 value.javaClass.isArray &&
                     Serializable::class.java.isAssignableFrom(value.javaClass.componentType!!) -> {
-                    SerializableArrayType(
-                        value.javaClass.componentType as Class<Serializable>
-                    ) as NavType<Any>
+                    SerializableArrayType(value.javaClass.componentType as Class<Serializable>)
+                        as NavType<Any>
                 }
                 value is Parcelable -> ParcelableType(value.javaClass) as NavType<Any>
                 value is Enum<*> -> EnumType(value.javaClass) as NavType<Any>
@@ -317,566 +316,573 @@
         }
 
         /**
-         * NavType for storing integer values,
-         * corresponding with the "integer" type in a Navigation XML file.
+         * NavType for storing integer values, corresponding with the "integer" type in a Navigation
+         * XML file.
          *
          * Null values are not supported.
          */
         @JvmField
-        public val IntType: NavType<Int> = object : NavType<Int>(false) {
-            override val name: String
-                get() = "integer"
+        public val IntType: NavType<Int> =
+            object : NavType<Int>(false) {
+                override val name: String
+                    get() = "integer"
 
-            override fun put(bundle: Bundle, key: String, value: Int) {
-                bundle.putInt(key, value)
-            }
+                override fun put(bundle: Bundle, key: String, value: Int) {
+                    bundle.putInt(key, value)
+                }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): Int {
-                return bundle[key] as Int
-            }
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): Int {
+                    return bundle[key] as Int
+                }
 
-            override fun parseValue(value: String): Int {
-                return if (value.startsWith("0x")) {
-                    value.substring(2).toInt(16)
-                } else {
-                    value.toInt()
+                override fun parseValue(value: String): Int {
+                    return if (value.startsWith("0x")) {
+                        value.substring(2).toInt(16)
+                    } else {
+                        value.toInt()
+                    }
                 }
             }
-        }
 
         /**
-         * NavType for storing integer values representing resource ids,
-         * corresponding with the "reference" type in a Navigation XML file.
+         * NavType for storing integer values representing resource ids, corresponding with the
+         * "reference" type in a Navigation XML file.
          *
          * Null values are not supported.
          */
         @JvmField
-        public val ReferenceType: NavType<Int> = object : NavType<Int>(false) {
-            override val name: String
-                get() = "reference"
+        public val ReferenceType: NavType<Int> =
+            object : NavType<Int>(false) {
+                override val name: String
+                    get() = "reference"
 
-            override fun put(bundle: Bundle, key: String, @AnyRes value: Int) {
-                bundle.putInt(key, value)
-            }
+                override fun put(bundle: Bundle, key: String, @AnyRes value: Int) {
+                    bundle.putInt(key, value)
+                }
 
-            @AnyRes
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): Int {
-                return bundle[key] as Int
-            }
+                @AnyRes
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): Int {
+                    return bundle[key] as Int
+                }
 
-            override fun parseValue(value: String): Int {
-                return if (value.startsWith("0x")) {
-                    value.substring(2).toInt(16)
-                } else {
-                    value.toInt()
+                override fun parseValue(value: String): Int {
+                    return if (value.startsWith("0x")) {
+                        value.substring(2).toInt(16)
+                    } else {
+                        value.toInt()
+                    }
                 }
             }
-        }
 
         /**
-         * NavType for storing integer arrays,
-         * corresponding with the "integer[]" type in a Navigation XML file.
+         * NavType for storing integer arrays, corresponding with the "integer[]" type in a
+         * Navigation XML file.
          *
-         * Null values are supported.
-         * Default values in Navigation XML files are not supported.
+         * Null values are supported. Default values in Navigation XML files are not supported.
          */
         @JvmField
-        public val IntArrayType: NavType<IntArray?> = object : CollectionNavType<IntArray?>(
-            true
-        ) {
-            override val name: String
-                get() = "integer[]"
+        public val IntArrayType: NavType<IntArray?> =
+            object : CollectionNavType<IntArray?>(true) {
+                override val name: String
+                    get() = "integer[]"
 
-            override fun put(bundle: Bundle, key: String, value: IntArray?) {
-                bundle.putIntArray(key, value)
+                override fun put(bundle: Bundle, key: String, value: IntArray?) {
+                    bundle.putIntArray(key, value)
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): IntArray? {
+                    return bundle[key] as IntArray?
+                }
+
+                override fun parseValue(value: String): IntArray? =
+                    if (value == "null") null else intArrayOf(IntType.parseValue(value))
+
+                override fun parseValue(value: String, previousValue: IntArray?): IntArray? {
+                    return previousValue?.plus(IntType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: IntArray?, other: IntArray?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: IntArray?): List<String> =
+                    value?.toList()?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): IntArray? {
-                return bundle[key] as IntArray?
-            }
-
-            override fun parseValue(value: String): IntArray {
-                return intArrayOf(IntType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: IntArray?): IntArray {
-                return previousValue?.plus(parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: IntArray?, other: IntArray?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: IntArray?): List<String> =
-                value?.toList()?.map { it.toString() } ?: emptyList()
-        }
-
         /**
          * NavType for storing list of Ints.
          *
-         * Null values are supported.
-         * List NavTypes in Navigation XML files are not supported.
+         * Null values are supported. List NavTypes in Navigation XML files are not supported.
          */
         @JvmField
-        public val IntListType: NavType<List<Int>?> = object : CollectionNavType<List<Int>?>(
-            true
-        ) {
-            override val name: String
-                get() = "List<Int>"
+        public val IntListType: NavType<List<Int>?> =
+            object : CollectionNavType<List<Int>?>(true) {
+                override val name: String
+                    get() = "List<Int>"
 
-            override fun put(bundle: Bundle, key: String, value: List<Int>?) {
-                bundle.putIntArray(key, value?.toIntArray())
+                override fun put(bundle: Bundle, key: String, value: List<Int>?) {
+                    bundle.putIntArray(key, value?.toIntArray())
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): List<Int>? {
+                    return (bundle[key] as IntArray?)?.toList()
+                }
+
+                override fun parseValue(value: String): List<Int>? =
+                    if (value == "null") null else listOf(IntType.parseValue(value))
+
+                override fun parseValue(value: String, previousValue: List<Int>?): List<Int>? {
+                    return previousValue?.plus(IntType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: List<Int>?, other: List<Int>?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: List<Int>?): List<String> =
+                    value?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): List<Int>? {
-                return (bundle[key] as IntArray?)?.toList()
-            }
-
-            override fun parseValue(value: String): List<Int> {
-                return listOf(IntType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: List<Int>?): List<Int>? {
-                return previousValue?.plus(IntType.parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: List<Int>?, other: List<Int>?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: List<Int>?): List<String> =
-                value?.map { it.toString() } ?: emptyList()
-        }
-
         /**
-         * NavType for storing long values,
-         * corresponding with the "long" type in a Navigation XML file.
+         * NavType for storing long values, corresponding with the "long" type in a Navigation XML
+         * file.
          *
-         * Null values are not supported.
-         * Default values for this type in Navigation XML files must always end with an 'L' suffix, e.g.
-         * `app:defaultValue="123L"`.
+         * Null values are not supported. Default values for this type in Navigation XML files must
+         * always end with an 'L' suffix, e.g. `app:defaultValue="123L"`.
          */
         @JvmField
-        public val LongType: NavType<Long> = object : NavType<Long>(false) {
-            override val name: String
-                get() = "long"
+        public val LongType: NavType<Long> =
+            object : NavType<Long>(false) {
+                override val name: String
+                    get() = "long"
 
-            override fun put(bundle: Bundle, key: String, value: Long) {
-                bundle.putLong(key, value)
-            }
-
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): Long {
-                return bundle[key] as Long
-            }
-
-            override fun parseValue(value: String): Long {
-                // At runtime the L suffix is optional, contrary to the Safe Args plugin.
-                // This is in order to be able to parse long numbers passed as deep link URL
-                // parameters
-                var localValue = value
-                if (value.endsWith("L")) {
-                    localValue = localValue.substring(0, value.length - 1)
+                override fun put(bundle: Bundle, key: String, value: Long) {
+                    bundle.putLong(key, value)
                 }
-                return if (value.startsWith("0x")) {
-                    localValue.substring(2).toLong(16)
-                } else {
-                    localValue.toLong()
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): Long {
+                    return bundle[key] as Long
+                }
+
+                override fun parseValue(value: String): Long {
+                    // At runtime the L suffix is optional, contrary to the Safe Args plugin.
+                    // This is in order to be able to parse long numbers passed as deep link URL
+                    // parameters
+                    var localValue = value
+                    if (value.endsWith("L")) {
+                        localValue = localValue.substring(0, value.length - 1)
+                    }
+                    return if (value.startsWith("0x")) {
+                        localValue.substring(2).toLong(16)
+                    } else {
+                        localValue.toLong()
+                    }
                 }
             }
-        }
 
         /**
-         * NavType for storing long arrays,
-         * corresponding with the "long[]" type in a Navigation XML file.
+         * NavType for storing long arrays, corresponding with the "long[]" type in a Navigation XML
+         * file.
          *
-         * Null values are supported.
-         * Default values in Navigation XML files are not supported.
+         * Null values are supported. Default values in Navigation XML files are not supported.
          */
         @JvmField
-        public val LongArrayType: NavType<LongArray?> = object : CollectionNavType<LongArray?>(
-            true
-        ) {
-            override val name: String
-                get() = "long[]"
+        public val LongArrayType: NavType<LongArray?> =
+            object : CollectionNavType<LongArray?>(true) {
+                override val name: String
+                    get() = "long[]"
 
-            override fun put(bundle: Bundle, key: String, value: LongArray?) {
-                bundle.putLongArray(key, value)
+                override fun put(bundle: Bundle, key: String, value: LongArray?) {
+                    bundle.putLongArray(key, value)
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): LongArray? {
+                    return bundle[key] as LongArray?
+                }
+
+                override fun parseValue(value: String): LongArray? {
+                    if (value == "null") return null
+                    return longArrayOf(LongType.parseValue(value))
+                }
+
+                override fun parseValue(value: String, previousValue: LongArray?): LongArray? {
+                    return previousValue?.plus(LongType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: LongArray?, other: LongArray?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: LongArray?): List<String> =
+                    value?.toList()?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): LongArray? {
-                return bundle[key] as LongArray?
-            }
-
-            override fun parseValue(value: String): LongArray {
-                return longArrayOf(LongType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: LongArray?): LongArray? {
-                return previousValue?.plus(parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: LongArray?, other: LongArray?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: LongArray?): List<String> =
-                value?.toList()?.map { it.toString() } ?: emptyList()
-        }
-
         /**
          * NavType for storing list of Longs.
          *
-         * Null values are supported.
-         * List NavTypes in Navigation XML files are not supported.
+         * Null values are supported. List NavTypes in Navigation XML files are not supported.
          */
         @JvmField
-        public val LongListType: NavType<List<Long>?> = object : CollectionNavType<List<Long>?>(
-            true
-        ) {
-            override val name: String
-                get() = "List<Long>"
+        public val LongListType: NavType<List<Long>?> =
+            object : CollectionNavType<List<Long>?>(true) {
+                override val name: String
+                    get() = "List<Long>"
 
-            override fun put(bundle: Bundle, key: String, value: List<Long>?) {
-                bundle.putLongArray(key, value?.toLongArray())
+                override fun put(bundle: Bundle, key: String, value: List<Long>?) {
+                    bundle.putLongArray(key, value?.toLongArray())
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): List<Long>? {
+                    return (bundle[key] as LongArray?)?.toList()
+                }
+
+                override fun parseValue(value: String): List<Long>? {
+                    if (value == "null") return null
+                    return listOf(LongType.parseValue(value))
+                }
+
+                override fun parseValue(value: String, previousValue: List<Long>?): List<Long>? {
+                    return previousValue?.plus(LongType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: List<Long>?, other: List<Long>?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: List<Long>?): List<String> =
+                    value?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): List<Long>? {
-                return (bundle[key] as LongArray?)?.toList()
-            }
-
-            override fun parseValue(value: String): List<Long> {
-                return listOf(LongType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: List<Long>?): List<Long>? {
-                return previousValue?.plus(LongType.parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: List<Long>?, other: List<Long>?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: List<Long>?): List<String> =
-                value?.map { it.toString() } ?: emptyList()
-        }
-
         /**
-         * NavType for storing float values,
-         * corresponding with the "float" type in a Navigation XML file.
+         * NavType for storing float values, corresponding with the "float" type in a Navigation XML
+         * file.
          *
          * Null values are not supported.
          */
         @JvmField
-        public val FloatType: NavType<Float> = object : NavType<Float>(false) {
-            override val name: String
-                get() = "float"
+        public val FloatType: NavType<Float> =
+            object : NavType<Float>(false) {
+                override val name: String
+                    get() = "float"
 
-            override fun put(bundle: Bundle, key: String, value: Float) {
-                bundle.putFloat(key, value)
-            }
+                override fun put(bundle: Bundle, key: String, value: Float) {
+                    bundle.putFloat(key, value)
+                }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): Float {
-                return bundle[key] as Float
-            }
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): Float {
+                    return bundle[key] as Float
+                }
 
-            override fun parseValue(value: String): Float {
-                return value.toFloat()
+                override fun parseValue(value: String): Float {
+                    return value.toFloat()
+                }
             }
-        }
 
         /**
-         * NavType for storing float arrays,
-         * corresponding with the "float[]" type in a Navigation XML file.
+         * NavType for storing float arrays, corresponding with the "float[]" type in a Navigation
+         * XML file.
          *
-         * Null values are supported.
-         * Default values in Navigation XML files are not supported.
+         * Null values are supported. Default values in Navigation XML files are not supported.
          */
         @JvmField
-        public val FloatArrayType: NavType<FloatArray?> = object : CollectionNavType<FloatArray?>(
-            true
-        ) {
-            override val name: String
-                get() = "float[]"
+        public val FloatArrayType: NavType<FloatArray?> =
+            object : CollectionNavType<FloatArray?>(true) {
+                override val name: String
+                    get() = "float[]"
 
-            override fun put(bundle: Bundle, key: String, value: FloatArray?) {
-                bundle.putFloatArray(key, value)
+                override fun put(bundle: Bundle, key: String, value: FloatArray?) {
+                    bundle.putFloatArray(key, value)
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): FloatArray? {
+                    return bundle[key] as FloatArray?
+                }
+
+                override fun parseValue(value: String): FloatArray? {
+                    if (value == "null") return null
+                    return floatArrayOf(FloatType.parseValue(value))
+                }
+
+                override fun parseValue(value: String, previousValue: FloatArray?): FloatArray? {
+                    return previousValue?.plus(FloatType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: FloatArray?, other: FloatArray?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: FloatArray?): List<String> =
+                    value?.toList()?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): FloatArray? {
-                return bundle[key] as FloatArray?
-            }
-
-            override fun parseValue(value: String): FloatArray {
-                return floatArrayOf(FloatType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: FloatArray?): FloatArray? {
-                return previousValue?.plus(parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: FloatArray?, other: FloatArray?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: FloatArray?): List<String> =
-                value?.toList()?.map { it.toString() } ?: emptyList()
-        }
-
         /**
          * NavType for storing list of Floats.
          *
-         * Null values are supported.
-         * List NavTypes in Navigation XML files are not supported.
+         * Null values are supported. List NavTypes in Navigation XML files are not supported.
          */
         @JvmField
-        public val FloatListType: NavType<List<Float>?> = object : CollectionNavType<List<Float>?>(
-            true
-        ) {
-            override val name: String
-                get() = "List<Float>"
+        public val FloatListType: NavType<List<Float>?> =
+            object : CollectionNavType<List<Float>?>(true) {
+                override val name: String
+                    get() = "List<Float>"
 
-            override fun put(bundle: Bundle, key: String, value: List<Float>?) {
-                bundle.putFloatArray(key, value?.toFloatArray())
+                override fun put(bundle: Bundle, key: String, value: List<Float>?) {
+                    bundle.putFloatArray(key, value?.toFloatArray())
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): List<Float>? {
+                    return (bundle[key] as FloatArray?)?.toList()
+                }
+
+                override fun parseValue(value: String): List<Float>? {
+                    if (value == "null") return null
+                    return listOf(FloatType.parseValue(value))
+                }
+
+                override fun parseValue(value: String, previousValue: List<Float>?): List<Float>? {
+                    return previousValue?.plus(FloatType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: List<Float>?, other: List<Float>?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: List<Float>?): List<String> =
+                    value?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): List<Float>? {
-                return (bundle[key] as FloatArray?)?.toList()
-            }
-
-            override fun parseValue(value: String): List<Float> {
-                return listOf(FloatType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: List<Float>?): List<Float>? {
-                return previousValue?.plus(FloatType.parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: List<Float>?, other: List<Float>?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: List<Float>?): List<String> =
-                value?.map { it.toString() } ?: emptyList()
-        }
-
         /**
-         * NavType for storing boolean values,
-         * corresponding with the "boolean" type in a Navigation XML file.
+         * NavType for storing boolean values, corresponding with the "boolean" type in a Navigation
+         * XML file.
          *
          * Null values are not supported.
          */
         @JvmField
-        public val BoolType: NavType<Boolean> = object : NavType<Boolean>(false) {
-            override val name: String
-                get() = "boolean"
+        public val BoolType: NavType<Boolean> =
+            object : NavType<Boolean>(false) {
+                override val name: String
+                    get() = "boolean"
 
-            override fun put(bundle: Bundle, key: String, value: Boolean) {
-                bundle.putBoolean(key, value)
-            }
+                override fun put(bundle: Bundle, key: String, value: Boolean) {
+                    bundle.putBoolean(key, value)
+                }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): Boolean? {
-                return bundle[key] as Boolean?
-            }
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): Boolean? {
+                    return bundle[key] as Boolean?
+                }
 
-            override fun parseValue(value: String): Boolean {
-                return when (value) {
-                    "true" -> true
-                    "false" -> false
-                    else -> {
-                        throw IllegalArgumentException(
-                            "A boolean NavType only accepts \"true\" or \"false\" values."
-                        )
+                override fun parseValue(value: String): Boolean {
+                    return when (value) {
+                        "true" -> true
+                        "false" -> false
+                        else -> {
+                            throw IllegalArgumentException(
+                                "A boolean NavType only accepts \"true\" or \"false\" values."
+                            )
+                        }
                     }
                 }
             }
-        }
 
         /**
-         * NavType for storing boolean arrays,
-         * corresponding with the "boolean[]" type in a Navigation XML file.
+         * NavType for storing boolean arrays, corresponding with the "boolean[]" type in a
+         * Navigation XML file.
          *
-         * Null values are supported.
-         * Default values in Navigation XML files are not supported.
+         * Null values are supported. Default values in Navigation XML files are not supported.
          */
         @JvmField
         public val BoolArrayType: NavType<BooleanArray?> =
             object : CollectionNavType<BooleanArray?>(true) {
-            override val name: String
-                get() = "boolean[]"
+                override val name: String
+                    get() = "boolean[]"
 
-            override fun put(bundle: Bundle, key: String, value: BooleanArray?) {
-                bundle.putBooleanArray(key, value)
+                override fun put(bundle: Bundle, key: String, value: BooleanArray?) {
+                    bundle.putBooleanArray(key, value)
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): BooleanArray? {
+                    return bundle[key] as BooleanArray?
+                }
+
+                override fun parseValue(value: String): BooleanArray? {
+                    if (value == "null") return null
+                    return booleanArrayOf(BoolType.parseValue(value))
+                }
+
+                override fun parseValue(
+                    value: String,
+                    previousValue: BooleanArray?
+                ): BooleanArray? {
+                    return previousValue?.plus(BoolType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: BooleanArray?, other: BooleanArray?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: BooleanArray?): List<String> =
+                    value?.toList()?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): BooleanArray? {
-                return bundle[key] as BooleanArray?
-            }
-
-            override fun parseValue(value: String): BooleanArray {
-                return booleanArrayOf(BoolType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: BooleanArray?): BooleanArray? {
-                return previousValue?.plus(parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: BooleanArray?, other: BooleanArray?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: BooleanArray?): List<String> =
-                value?.toList()?.map { it.toString() } ?: emptyList()
-        }
-
         /**
          * NavType for storing list of Booleans.
          *
-         * Null values are supported.
-         * List NavTypes in Navigation XML files are not supported.
+         * Null values are supported. List NavTypes in Navigation XML files are not supported.
          */
         @JvmField
         public val BoolListType: NavType<List<Boolean>?> =
             object : CollectionNavType<List<Boolean>?>(true) {
-            override val name: String
-                get() = "List<Boolean>"
+                override val name: String
+                    get() = "List<Boolean>"
 
-            override fun put(bundle: Bundle, key: String, value: List<Boolean>?) {
-                bundle.putBooleanArray(key, value?.toBooleanArray())
+                override fun put(bundle: Bundle, key: String, value: List<Boolean>?) {
+                    bundle.putBooleanArray(key, value?.toBooleanArray())
+                }
+
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): List<Boolean>? {
+                    return (bundle[key] as BooleanArray?)?.toList()
+                }
+
+                override fun parseValue(value: String): List<Boolean>? {
+                    if (value == "null") return null
+                    return listOf(BoolType.parseValue(value))
+                }
+
+                override fun parseValue(
+                    value: String,
+                    previousValue: List<Boolean>?
+                ): List<Boolean>? {
+                    return previousValue?.plus(BoolType.parseValue(value)) ?: parseValue(value)
+                }
+
+                override fun valueEquals(value: List<Boolean>?, other: List<Boolean>?): Boolean {
+                    val valueArray = value?.toTypedArray()
+                    val otherArray = other?.toTypedArray()
+                    return valueArray.contentDeepEquals(otherArray)
+                }
+
+                override fun serializeAsValues(value: List<Boolean>?): List<String> =
+                    value?.map { it.toString() } ?: emptyList()
             }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): List<Boolean>? {
-                return (bundle[key] as BooleanArray?)?.toList()
-            }
-
-            override fun parseValue(value: String): List<Boolean> {
-                return listOf(BoolType.parseValue(value))
-            }
-
-            override fun parseValue(value: String, previousValue: List<Boolean>?): List<Boolean>? {
-                return previousValue?.plus(BoolType.parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: List<Boolean>?, other: List<Boolean>?): Boolean {
-                val valueArray = value?.toTypedArray()
-                val otherArray = other?.toTypedArray()
-                return valueArray.contentDeepEquals(otherArray)
-            }
-
-            override fun serializeAsValues(value: List<Boolean>?): List<String> =
-                value?.map { it.toString() } ?: emptyList()
-        }
-
         /**
-         * NavType for storing String values,
-         * corresponding with the "string" type in a Navigation XML file.
+         * NavType for storing String values, corresponding with the "string" type in a Navigation
+         * XML file.
          *
          * Null values are supported.
          */
         @JvmField
-        public val StringType: NavType<String?> = object : NavType<String?>(true) {
-            override val name: String
-                get() = "string"
+        public val StringType: NavType<String?> =
+            object : NavType<String?>(true) {
+                override val name: String
+                    get() = "string"
 
-            override fun put(bundle: Bundle, key: String, value: String?) {
-                bundle.putString(key, value)
-            }
+                override fun put(bundle: Bundle, key: String, value: String?) {
+                    bundle.putString(key, value)
+                }
 
-            @Suppress("DEPRECATION")
-            override fun get(bundle: Bundle, key: String): String? {
-                return bundle[key] as String?
-            }
+                @Suppress("DEPRECATION")
+                override fun get(bundle: Bundle, key: String): String? {
+                    return bundle[key] as String?
+                }
 
-            /**
-             * Returns input value by default.
-             *
-             * If input value is "null", returns null as the reversion of Kotlin standard library
-             * serializing null receivers of [kotlin.toString] into "null".
-             */
-            override fun parseValue(value: String): String? {
-                return if (value == "null") null else value
-            }
+                /**
+                 * Returns input value by default.
+                 *
+                 * If input value is "null", returns null as the reversion of Kotlin standard
+                 * library serializing null receivers of [kotlin.toString] into "null".
+                 */
+                override fun parseValue(value: String): String? {
+                    return if (value == "null") null else value
+                }
 
-            /**
-             * Returns default value of Uri.encode(value).
-             *
-             * If input value is null, returns "null" in compliance with Kotlin standard library
-             * parsing null receivers of [kotlin.toString] into "null".
-             *
-             */
-            override fun serializeAsValue(value: String?): String {
-                return value?.let { Uri.encode(value) } ?: "null"
+                /**
+                 * Returns default value of Uri.encode(value).
+                 *
+                 * If input value is null, returns "null" in compliance with Kotlin standard library
+                 * parsing null receivers of [kotlin.toString] into "null".
+                 */
+                override fun serializeAsValue(value: String?): String {
+                    return value?.let { Uri.encode(value) } ?: "null"
+                }
             }
-        }
 
         /**
-         * NavType for storing String arrays,
-         * corresponding with the "string[]" type in a Navigation XML file.
+         * NavType for storing String arrays, corresponding with the "string[]" type in a Navigation
+         * XML file.
          *
-         * Null values are supported.
-         * Default values in Navigation XML files are not supported.
+         * Null values are supported. Default values in Navigation XML files are not supported.
          */
         @JvmField
         public val StringArrayType: NavType<Array<String>?> =
             object : CollectionNavType<Array<String>?>(true) {
-            override val name: String
-                get() = "string[]"
+                override val name: String
+                    get() = "string[]"
 
-            override fun put(bundle: Bundle, key: String, value: Array<String>?) {
-                bundle.putStringArray(key, value)
+                override fun put(bundle: Bundle, key: String, value: Array<String>?) {
+                    bundle.putStringArray(key, value)
+                }
+
+                @Suppress("UNCHECKED_CAST", "DEPRECATION")
+                override fun get(bundle: Bundle, key: String): Array<String>? {
+                    return bundle[key] as Array<String>?
+                }
+
+                override fun parseValue(value: String): Array<String>? {
+                    if (value == "null") return null
+                    return arrayOf(value)
+                }
+
+                override fun parseValue(
+                    value: String,
+                    previousValue: Array<String>?
+                ): Array<String>? {
+                    val newValue = parseValue(value)
+                    return when {
+                        newValue == null -> previousValue
+                        previousValue == null -> newValue
+                        else -> previousValue.plus(newValue)
+                    }
+                }
+
+                override fun valueEquals(value: Array<String>?, other: Array<String>?) =
+                    value.contentDeepEquals(other)
+
+                override fun serializeAsValues(value: Array<String>?): List<String> =
+                    value?.map { Uri.encode(it) } ?: emptyList()
             }
 
-            @Suppress("UNCHECKED_CAST", "DEPRECATION")
-            override fun get(bundle: Bundle, key: String): Array<String>? {
-                return bundle[key] as Array<String>?
-            }
-
-            override fun parseValue(value: String): Array<String> {
-                return arrayOf(value)
-            }
-
-            override fun parseValue(value: String, previousValue: Array<String>?): Array<String>? {
-                return previousValue?.plus(parseValue(value)) ?: parseValue(value)
-            }
-
-            override fun valueEquals(value: Array<String>?, other: Array<String>?) =
-                value.contentDeepEquals(other)
-
-            override fun serializeAsValues(value: Array<String>?): List<String> =
-                value?.map { Uri.encode(it) } ?: emptyList()
-        }
-
         /**
          * NavType for storing list of Strings.
          *
-         * Null values are supported.
-         * List NavTypes in Navigation XML files are not supported.
+         * Null values are supported. List NavTypes in Navigation XML files are not supported.
          */
         @JvmField
         public val StringListType: NavType<List<String>?> =
@@ -893,7 +899,8 @@
                     return (bundle[key] as Array<String>?)?.toList()
                 }
 
-                override fun parseValue(value: String): List<String> {
+                override fun parseValue(value: String): List<String>? {
+                    if (value == "null") return null
                     return listOf(value)
                 }
 
@@ -901,7 +908,12 @@
                     value: String,
                     previousValue: List<String>?
                 ): List<String>? {
-                    return previousValue?.plus(value) ?: parseValue(value)
+                    val newValue = parseValue(value)
+                    return when {
+                        newValue == null -> previousValue
+                        previousValue == null -> newValue
+                        else -> previousValue.plus(newValue)
+                    }
                 }
 
                 override fun valueEquals(value: List<String>?, other: List<String>?): Boolean {
@@ -918,8 +930,7 @@
     /**
      * ParcelableType is used for passing Parcelables in [NavArgument]s.
      *
-     * Null values are supported.
-     * Default values in Navigation XML files are not supported.
+     * Null values are supported. Default values in Navigation XML files are not supported.
      *
      * @param type the Parcelable class that is supported by this NavType
      */
@@ -943,9 +954,7 @@
             return bundle[key] as D?
         }
 
-        /**
-         * @throws UnsupportedOperationException since Parcelables do not support default values
-         */
+        /** @throws UnsupportedOperationException since Parcelables do not support default values */
         public override fun parseValue(value: String): D {
             throw UnsupportedOperationException("Parcelables don't support default values.")
         }
@@ -961,14 +970,14 @@
             return type.hashCode()
         }
 
-        /**
-         * Constructs a NavType that supports a given Parcelable type.
-         */
+        /** Constructs a NavType that supports a given Parcelable type. */
         init {
             require(
                 Parcelable::class.java.isAssignableFrom(type) ||
                     Serializable::class.java.isAssignableFrom(type)
-            ) { "$type does not implement Parcelable or Serializable." }
+            ) {
+                "$type does not implement Parcelable or Serializable."
+            }
             this.type = type
         }
     }
@@ -976,8 +985,7 @@
     /**
      * ParcelableArrayType is used for [NavArgument]s which hold arrays of Parcelables.
      *
-     * Null values are supported.
-     * Default values in Navigation XML files are not supported.
+     * Null values are supported. Default values in Navigation XML files are not supported.
      *
      * @param type the type of Parcelable component class of the array
      */
@@ -997,9 +1005,7 @@
             return bundle[key] as Array<D>?
         }
 
-        /**
-         * @throws UnsupportedOperationException since Arrays do not support default values
-         */
+        /** @throws UnsupportedOperationException since Arrays do not support default values */
         public override fun parseValue(value: String): Array<D> {
             throw UnsupportedOperationException("Arrays don't support default values.")
         }
@@ -1021,29 +1027,27 @@
             @Suppress("ArrayReturn") other: Array<D>?
         ) = value.contentDeepEquals(other)
 
-        /**
-         * Constructs a NavType that supports arrays of a given Parcelable type.
-         */
+        /** Constructs a NavType that supports arrays of a given Parcelable type. */
         init {
             require(Parcelable::class.java.isAssignableFrom(type)) {
                 "$type does not implement Parcelable."
             }
-            val arrayType: Class<Array<D>> = try {
-                @Suppress("UNCHECKED_CAST")
-                Class.forName("[L${type.name};") as Class<Array<D>>
-            } catch (e: ClassNotFoundException) {
-                throw RuntimeException(e) // should never happen
-            }
+            val arrayType: Class<Array<D>> =
+                try {
+                    @Suppress("UNCHECKED_CAST")
+                    Class.forName("[L${type.name};") as Class<Array<D>>
+                } catch (e: ClassNotFoundException) {
+                    throw RuntimeException(e) // should never happen
+                }
             this.arrayType = arrayType
         }
     }
 
     /**
-     * SerializableType is used for Serializable [NavArgument]s.
-     * For handling Enums you must use [EnumType] instead.
+     * SerializableType is used for Serializable [NavArgument]s. For handling Enums you must use
+     * [EnumType] instead.
      *
-     * Null values are supported.
-     * Default values in Navigation XML files are not supported.
+     * Null values are supported. Default values in Navigation XML files are not supported.
      *
      * @see EnumType
      */
@@ -1055,20 +1059,21 @@
 
         /**
          * Constructs a NavType that supports a given Serializable type.
+         *
          * @param type class that is a subtype of Serializable
          */
         public constructor(type: Class<D>) : super(true) {
-            require(
-                Serializable::class.java.isAssignableFrom(type)
-            ) { "$type does not implement Serializable." }
+            require(Serializable::class.java.isAssignableFrom(type)) {
+                "$type does not implement Serializable."
+            }
             require(!type.isEnum) { "$type is an Enum. You should use EnumType instead." }
             this.type = type
         }
 
         internal constructor(nullableAllowed: Boolean, type: Class<D>) : super(nullableAllowed) {
-            require(
-                Serializable::class.java.isAssignableFrom(type)
-            ) { "$type does not implement Serializable." }
+            require(Serializable::class.java.isAssignableFrom(type)) {
+                "$type does not implement Serializable."
+            }
             this.type = type
         }
 
@@ -1103,15 +1108,12 @@
     /**
      * EnumType is used for [NavArgument]s holding enum values.
      *
-     * Null values are not supported.
-     * To specify a default value in a Navigation XML file, simply use the enum constant
-     * without the class name, e.g. `app:defaultValue="MONDAY"`.
+     * Null values are not supported. To specify a default value in a Navigation XML file, simply
+     * use the enum constant without the class name, e.g. `app:defaultValue="MONDAY"`.
      *
      * @param type the Enum class that is supported by this NavType
      */
-    public class EnumType<D : Enum<*>>(
-        type: Class<D>
-    ) : SerializableType<D>(false, type) {
+    public class EnumType<D : Enum<*>>(type: Class<D>) : SerializableType<D>(false, type) {
         private val type: Class<D>
 
         public override val name: String
@@ -1128,14 +1130,13 @@
         public override fun parseValue(value: String): D {
             return type.enumConstants.firstOrNull { constant ->
                 constant.name.equals(value, ignoreCase = true)
-            } ?: throw IllegalArgumentException(
-                "Enum value $value not found for type ${type.name}."
-            )
+            }
+                ?: throw IllegalArgumentException(
+                    "Enum value $value not found for type ${type.name}."
+                )
         }
 
-        /**
-         * Constructs a NavType that supports a given Enum type.
-         */
+        /** Constructs a NavType that supports a given Enum type. */
         init {
             require(type.isEnum) { "$type is not an Enum type." }
             this.type = type
@@ -1143,11 +1144,10 @@
     }
 
     /**
-     * SerializableArrayType is used for [NavArgument]s that hold arrays of Serializables.
-     * This type also supports arrays of Enums.
+     * SerializableArrayType is used for [NavArgument]s that hold arrays of Serializables. This type
+     * also supports arrays of Enums.
      *
-     * Null values are supported.
-     * Default values in Navigation XML files are not supported.
+     * Null values are supported. Default values in Navigation XML files are not supported.
      *
      * @param type the Serializable component class of the array
      */
@@ -1168,9 +1168,7 @@
             return bundle[key] as Array<D>?
         }
 
-        /**
-         * @throws UnsupportedOperationException since Arrays do not support default values
-         */
+        /** @throws UnsupportedOperationException since Arrays do not support default values */
         public override fun parseValue(value: String): Array<D> {
             throw UnsupportedOperationException("Arrays don't support default values.")
         }
@@ -1191,19 +1189,18 @@
             @Suppress("ArrayReturn") other: Array<D>?
         ) = value.contentDeepEquals(other)
 
-        /**
-         * Constructs a NavType that supports arrays of a given Serializable type.
-         */
+        /** Constructs a NavType that supports arrays of a given Serializable type. */
         init {
-            require(
-                Serializable::class.java.isAssignableFrom(type)
-            ) { "$type does not implement Serializable." }
-            val arrayType: Class<Array<D>> = try {
-                @Suppress("UNCHECKED_CAST")
-                Class.forName("[L${type.name};") as Class<Array<D>>
-            } catch (e: ClassNotFoundException) {
-                throw RuntimeException(e) // should never happen
+            require(Serializable::class.java.isAssignableFrom(type)) {
+                "$type does not implement Serializable."
             }
+            val arrayType: Class<Array<D>> =
+                try {
+                    @Suppress("UNCHECKED_CAST")
+                    Class.forName("[L${type.name};") as Class<Array<D>>
+                } catch (e: ClassNotFoundException) {
+                    throw RuntimeException(e) // should never happen
+                }
             this.arrayType = arrayType
         }
     }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavViewModelStoreProvider.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavViewModelStoreProvider.kt
index 93959be..b658e19 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavViewModelStoreProvider.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavViewModelStoreProvider.kt
@@ -20,8 +20,8 @@
 import androidx.lifecycle.ViewModelStore
 
 /**
- * Interface that allows you to retrieve a [ViewModelStore] associated with a
- * particular [NavBackStackEntry.id].
+ * Interface that allows you to retrieve a [ViewModelStore] associated with a particular
+ * [NavBackStackEntry.id].
  */
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 public interface NavViewModelStoreProvider {
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/Navigator.kt b/navigation/navigation-common/src/main/java/androidx/navigation/Navigator.kt
index 95a9803..b8a717e 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/Navigator.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/Navigator.kt
@@ -22,28 +22,28 @@
 /**
  * Navigator defines a mechanism for navigating within an app.
  *
- * Each Navigator sets the policy for a specific type of navigation, e.g.
- * [ActivityNavigator] knows how to launch into [destinations][NavDestination]
- * backed by activities using [startActivity][Context.startActivity].
+ * Each Navigator sets the policy for a specific type of navigation, e.g. [ActivityNavigator] knows
+ * how to launch into [destinations][NavDestination] backed by activities using
+ * [startActivity][Context.startActivity].
  *
- * Navigators should be able to manage their own back stack when navigating between two
- * destinations that belong to that navigator. The [NavController] manages a back stack of
- * navigators representing the current navigation stack across all navigators.
+ * Navigators should be able to manage their own back stack when navigating between two destinations
+ * that belong to that navigator. The [NavController] manages a back stack of navigators
+ * representing the current navigation stack across all navigators.
  *
- * Each Navigator should add the [Navigator.Name annotation][Name] to their class. Any
- * custom attributes used by the associated [destination][NavDestination] subclass should
- * have a name corresponding with the name of the Navigator, e.g., [ActivityNavigator] uses
- * `<declare-styleable name="ActivityNavigator">`
+ * Each Navigator should add the [Navigator.Name annotation][Name] to their class. Any custom
+ * attributes used by the associated [destination][NavDestination] subclass should have a name
+ * corresponding with the name of the Navigator, e.g., [ActivityNavigator] uses `<declare-styleable
+ * name="ActivityNavigator">`
  *
- * @param D the subclass of [NavDestination] used with this Navigator which can be used
- * to hold any special data that will be needed to navigate to that destination.
- * Examples include information about an intent to navigate to other activities,
- * or a fragment class name to instantiate and swap to a new fragment.
+ * @param D the subclass of [NavDestination] used with this Navigator which can be used to hold any
+ *   special data that will be needed to navigate to that destination. Examples include information
+ *   about an intent to navigate to other activities, or a fragment class name to instantiate and
+ *   swap to a new fragment.
  */
 public abstract class Navigator<D : NavDestination> {
     /**
-     * This annotation should be added to each Navigator subclass to denote the default name used
-     * to register the Navigator with a [NavigatorProvider].
+     * This annotation should be added to each Navigator subclass to denote the default name used to
+     * register the Navigator with a [NavigatorProvider].
      *
      * @see NavigatorProvider.addNavigator
      * @see NavigatorProvider.getNavigator
@@ -55,19 +55,20 @@
     private var _state: NavigatorState? = null
 
     /**
-     * The state of the Navigator is the communication conduit between the Navigator
-     * and the [NavController] that has called [onAttach].
+     * The state of the Navigator is the communication conduit between the Navigator and the
+     * [NavController] that has called [onAttach].
      *
-     * It is the responsibility of the Navigator to call [NavigatorState.push]
-     * and [NavigatorState.pop] to in order to update the [NavigatorState.backStack] at
-     * the appropriate times.
+     * It is the responsibility of the Navigator to call [NavigatorState.push] and
+     * [NavigatorState.pop] to in order to update the [NavigatorState.backStack] at the appropriate
+     * times.
      *
      * @throws IllegalStateException if [isAttached] is `false`
      */
     protected val state: NavigatorState
-        get() = checkNotNull(_state) {
-            "You cannot access the Navigator's state until the Navigator is attached"
-        }
+        get() =
+            checkNotNull(_state) {
+                "You cannot access the Navigator's state until the Navigator is attached"
+            }
 
     /**
      * Whether this Navigator is actively being used by a [NavController].
@@ -78,8 +79,8 @@
         private set
 
     /**
-     * Indicator that this Navigator is actively being used by a [NavController]. This
-     * is called when the NavController's state is ready to be restored.
+     * Indicator that this Navigator is actively being used by a [NavController]. This is called
+     * when the NavController's state is ready to be restored.
      */
     @CallSuper
     public open fun onAttach(state: NavigatorState) {
@@ -90,8 +91,9 @@
     /**
      * Construct a new NavDestination associated with this Navigator.
      *
-     * Any initialization of the destination should be done in the destination's constructor as
-     * it is not guaranteed that every destination will be created through this method.
+     * Any initialization of the destination should be done in the destination's constructor as it
+     * is not guaranteed that every destination will be created through this method.
+     *
      * @return a new NavDestination
      */
     public abstract fun createDestination(): D
@@ -99,9 +101,9 @@
     /**
      * Navigate to a destination.
      *
-     * Requests navigation to a given destination associated with this navigator in
-     * the navigation graph. This method generally should not be called directly;
-     * [NavController] will delegate to it when appropriate.
+     * Requests navigation to a given destination associated with this navigator in the navigation
+     * graph. This method generally should not be called directly; [NavController] will delegate to
+     * it when appropriate.
      *
      * @param entries destination(s) to navigate to
      * @param navOptions additional options for navigation
@@ -113,31 +115,31 @@
         navOptions: NavOptions?,
         navigatorExtras: Extras?
     ) {
-        entries.asSequence().map { backStackEntry ->
-            val destination = backStackEntry.destination as? D ?: return@map null
-            val navigatedToDestination = navigate(
-                destination, backStackEntry.arguments, navOptions, navigatorExtras
-            )
-            when (navigatedToDestination) {
-                null -> null
-                destination -> backStackEntry
-                else -> {
-                    state.createBackStackEntry(
-                        navigatedToDestination,
-                        navigatedToDestination.addInDefaultArgs(backStackEntry.arguments)
-                    )
+        entries
+            .asSequence()
+            .map { backStackEntry ->
+                val destination = backStackEntry.destination as? D ?: return@map null
+                val navigatedToDestination =
+                    navigate(destination, backStackEntry.arguments, navOptions, navigatorExtras)
+                when (navigatedToDestination) {
+                    null -> null
+                    destination -> backStackEntry
+                    else -> {
+                        state.createBackStackEntry(
+                            navigatedToDestination,
+                            navigatedToDestination.addInDefaultArgs(backStackEntry.arguments)
+                        )
+                    }
                 }
             }
-        }.filterNotNull().forEach { backStackEntry ->
-            state.push(backStackEntry)
-        }
+            .filterNotNull()
+            .forEach { backStackEntry -> state.push(backStackEntry) }
     }
 
     /**
-     * Informational callback indicating that the given [backStackEntry] has been
-     * affected by a [NavOptions.shouldLaunchSingleTop] operation. The entry provided is a new
-     * [NavBackStackEntry] instance with all the previous state of the old entry and possibly
-     * new arguments.
+     * Informational callback indicating that the given [backStackEntry] has been affected by a
+     * [NavOptions.shouldLaunchSingleTop] operation. The entry provided is a new [NavBackStackEntry]
+     * instance with all the previous state of the old entry and possibly new arguments.
      */
     @Suppress("UNCHECKED_CAST")
     public open fun onLaunchSingleTop(backStackEntry: NavBackStackEntry) {
@@ -149,17 +151,17 @@
     /**
      * Navigate to a destination.
      *
-     * Requests navigation to a given destination associated with this navigator in
-     * the navigation graph. This method generally should not be called directly;
-     * [NavController] will delegate to it when appropriate.
+     * Requests navigation to a given destination associated with this navigator in the navigation
+     * graph. This method generally should not be called directly; [NavController] will delegate to
+     * it when appropriate.
      *
      * @param destination destination node to navigate to
      * @param args arguments to use for navigation
      * @param navOptions additional options for navigation
      * @param navigatorExtras extras unique to your Navigator.
-     * @return The NavDestination that should be added to the back stack or null if
-     * no change was made to the back stack (i.e., in cases of single top operations
-     * where the destination is already on top of the back stack).
+     * @return The NavDestination that should be added to the back stack or null if no change was
+     *   made to the back stack (i.e., in cases of single top operations where the destination is
+     *   already on top of the back stack).
      */
     // TODO Deprecate this method once all call sites are removed
     @Suppress("UNUSED_PARAMETER", "RedundantNullableReturnType")
@@ -175,10 +177,10 @@
      *
      * All destinations back to [popUpTo] should be popped off the back stack.
      *
-     * @param popUpTo the entry that should be popped off the [NavigatorState.backStack]
-     * along with all entries above this entry.
-     * @param savedState whether any Navigator specific state associated with [popUpTo] should
-     * be saved to later be restored by a call to [navigate] with [NavOptions.shouldRestoreState].
+     * @param popUpTo the entry that should be popped off the [NavigatorState.backStack] along with
+     *   all entries above this entry.
+     * @param savedState whether any Navigator specific state associated with [popUpTo] should be
+     *   saved to later be restored by a call to [navigate] with [NavOptions.shouldRestoreState].
      */
     @Suppress("UNUSED_PARAMETER")
     public open fun popBackStack(popUpTo: NavBackStackEntry, savedState: Boolean) {
@@ -203,9 +205,9 @@
     /**
      * Attempt to pop this navigator's back stack, performing the appropriate navigation.
      *
-     * Implementations should return `true` if navigation
-     * was successful. Implementations should return `false` if navigation could not
-     * be performed, for example if the navigator's back stack was empty.
+     * Implementations should return `true` if navigation was successful. Implementations should
+     * return `false` if navigation could not be performed, for example if the navigator's back
+     * stack was empty.
      *
      * @return `true` if pop was successful
      */
@@ -213,17 +215,16 @@
     public open fun popBackStack(): Boolean = true
 
     /**
-     * Called to ask for a [Bundle] representing the Navigator's state. This will be
-     * restored in [onRestoreState].
+     * Called to ask for a [Bundle] representing the Navigator's state. This will be restored in
+     * [onRestoreState].
      */
     public open fun onSaveState(): Bundle? {
         return null
     }
 
     /**
-     * Restore any state previously saved in [onSaveState]. This will be called before
-     * any calls to [navigate] or
-     * [popBackStack].
+     * Restore any state previously saved in [onSaveState]. This will be called before any calls to
+     * [navigate] or [popBackStack].
      *
      * Calls to [createDestination] should not be dependent on any state restored here as
      * [createDestination] can be called before the state is restored.
@@ -233,8 +234,8 @@
     public open fun onRestoreState(savedState: Bundle) {}
 
     /**
-     * Interface indicating that this class should be passed to its respective
-     * [Navigator] to enable Navigator specific behavior.
+     * Interface indicating that this class should be passed to its respective [Navigator] to enable
+     * Navigator specific behavior.
      */
     public interface Extras
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorProvider.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorProvider.kt
index 8162b45..45e2de4 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorProvider.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorProvider.kt
@@ -21,8 +21,8 @@
 import kotlin.reflect.KClass
 
 /**
- * A NavigationProvider stores a set of [Navigator]s that are valid ways to navigate
- * to a destination.
+ * A NavigationProvider stores a set of [Navigator]s that are valid ways to navigate to a
+ * destination.
  */
 @SuppressLint("TypeParameterUnusedInFormals")
 public open class NavigatorProvider {
@@ -37,11 +37,9 @@
      *
      * @param navigatorClass class of the navigator to return
      * @return the registered navigator with the given [Navigator.Name]
-     *
      * @throws IllegalArgumentException if the Navigator does not have a
-     * [Navigator.Name annotation][Navigator.Name]
+     *   [Navigator.Name annotation][Navigator.Name]
      * @throws IllegalStateException if the Navigator has not been added
-     *
      * @see NavigatorProvider.addNavigator
      */
     public fun <T : Navigator<*>> getNavigator(navigatorClass: Class<T>): T {
@@ -54,32 +52,31 @@
      *
      * @param name name of the navigator to return
      * @return the registered navigator with the given name
-     *
      * @throws IllegalStateException if the Navigator has not been added
-     *
      * @see NavigatorProvider.addNavigator
      */
     @Suppress("UNCHECKED_CAST")
     @CallSuper
     public open fun <T : Navigator<*>> getNavigator(name: String): T {
         require(validateName(name)) { "navigator name cannot be an empty string" }
-        val navigator = _navigators[name]
-            ?: throw IllegalStateException(
-                "Could not find Navigator with name \"$name\". You must call " +
-                    "NavController.addNavigator() for each navigation type."
-            )
+        val navigator =
+            _navigators[name]
+                ?: throw IllegalStateException(
+                    "Could not find Navigator with name \"$name\". You must call " +
+                        "NavController.addNavigator() for each navigation type."
+                )
         return navigator as T
     }
 
     /**
      * Register a navigator using the name provided by the
-     * [Navigator.Name annotation][Navigator.Name]. [destinations][NavDestination] may
-     * refer to any registered navigator by name for inflation. If a navigator by this name is
-     * already registered, this new navigator will replace it.
+     * [Navigator.Name annotation][Navigator.Name]. [destinations][NavDestination] may refer to any
+     * registered navigator by name for inflation. If a navigator by this name is already
+     * registered, this new navigator will replace it.
      *
      * @param navigator navigator to add
      * @return the previously added Navigator for the name provided by the
-     * [Navigator.Name annotation][Navigator.Name], if any
+     *   [Navigator.Name annotation][Navigator.Name], if any
      */
     public fun addNavigator(
         navigator: Navigator<out NavDestination>
@@ -88,9 +85,9 @@
     }
 
     /**
-     * Register a navigator by name. [destinations][NavDestination] may refer to any
-     * registered navigator by name for inflation. If a navigator by this name is already
-     * registered, this new navigator will replace it.
+     * Register a navigator by name. [destinations][NavDestination] may refer to any registered
+     * navigator by name for inflation. If a navigator by this name is already registered, this new
+     * navigator will replace it.
      *
      * @param name name for this navigator
      * @param navigator navigator to add
@@ -117,6 +114,7 @@
 
     internal companion object {
         private val annotationNames = mutableMapOf<Class<*>, String?>()
+
         internal fun validateName(name: String?): Boolean {
             return name != null && name.isNotEmpty()
         }
@@ -125,9 +123,7 @@
         internal fun getNameForNavigator(navigatorClass: Class<out Navigator<*>>): String {
             var name = annotationNames[navigatorClass]
             if (name == null) {
-                val annotation = navigatorClass.getAnnotation(
-                    Navigator.Name::class.java
-                )
+                val annotation = navigatorClass.getAnnotation(Navigator.Name::class.java)
                 name = annotation?.value
                 require(validateName(name)) {
                     "No @Navigator.Name annotation found for ${navigatorClass.simpleName}"
@@ -161,8 +157,8 @@
 ): T = getNavigator(clazz.java)
 
 /**
- * Register a [Navigator] by name. If a navigator by this name is already
- * registered, this new navigator will replace it.
+ * Register a [Navigator] by name. If a navigator by this name is already registered, this new
+ * navigator will replace it.
  *
  * @return the previously added [Navigator] for the given name, if any
  */
@@ -173,8 +169,7 @@
 ): Navigator<out NavDestination>? = addNavigator(name, navigator)
 
 /**
- * Register a navigator using the name provided by the
- * [Navigator.Name annotation][Navigator.Name].
+ * Register a navigator using the name provided by the [Navigator.Name annotation][Navigator.Name].
  */
 @Suppress("NOTHING_TO_INLINE")
 public inline operator fun NavigatorProvider.plusAssign(navigator: Navigator<out NavDestination>) {
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorState.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorState.kt
index cb2ae8f..02ef29d 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorState.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NavigatorState.kt
@@ -27,8 +27,7 @@
 import kotlinx.coroutines.flow.asStateFlow
 
 /**
- * The NavigatorState encapsulates the state shared between the [Navigator] and the
- * [NavController].
+ * The NavigatorState encapsulates the state shared between the [Navigator] and the [NavController].
  */
 public abstract class NavigatorState {
     private val backStackLock = ReentrantLock(true)
@@ -41,9 +40,8 @@
     public var isNavigating = false
 
     /**
-     * While the [NavController] is responsible for the combined back stack across all
-     * Navigators, this back stack is specifically the set of destinations associated
-     * with this Navigator.
+     * While the [NavController] is responsible for the combined back stack across all Navigators,
+     * this back stack is specifically the set of destinations associated with this Navigator.
      *
      * Changing the back stack must be done via [push] and [pop].
      */
@@ -56,21 +54,16 @@
     public val transitionsInProgress: StateFlow<Set<NavBackStackEntry>> =
         _transitionsInProgress.asStateFlow()
 
-    /**
-     * Adds the given [backStackEntry] to the [backStack].
-     */
+    /** Adds the given [backStackEntry] to the [backStack]. */
     public open fun push(backStackEntry: NavBackStackEntry) {
-        backStackLock.withLock {
-            _backStack.value = _backStack.value + backStackEntry
-        }
+        backStackLock.withLock { _backStack.value = _backStack.value + backStackEntry }
     }
 
     /**
-     * Adds the given [backStackEntry] to the [backStack]. This also adds the given and
-     * previous entry to the [set of in progress transitions][transitionsInProgress].
-     * Added entries have their [Lifecycle] capped at [Lifecycle.State.STARTED] until an entry is
-     * passed into the [markTransitionComplete] callback, when they are allowed to go to
-     * [Lifecycle.State.RESUMED].
+     * Adds the given [backStackEntry] to the [backStack]. This also adds the given and previous
+     * entry to the [set of in progress transitions][transitionsInProgress]. Added entries have
+     * their [Lifecycle] capped at [Lifecycle.State.STARTED] until an entry is passed into the
+     * [markTransitionComplete] callback, when they are allowed to go to [Lifecycle.State.RESUMED].
      *
      * @see transitionsInProgress
      * @see markTransitionComplete
@@ -81,7 +74,7 @@
         // since we are already moving to the proper state.
         if (
             _transitionsInProgress.value.any { it === backStackEntry } &&
-            backStack.value.any { it === backStackEntry }
+                backStack.value.any { it === backStackEntry }
         ) {
             return
         }
@@ -95,33 +88,29 @@
         push(backStackEntry)
     }
 
-    /**
-     * Create a new [NavBackStackEntry] from a given [destination] and [arguments].
-     */
+    /** Create a new [NavBackStackEntry] from a given [destination] and [arguments]. */
     public abstract fun createBackStackEntry(
         destination: NavDestination,
         arguments: Bundle?
     ): NavBackStackEntry
 
     /**
-     * Pop all destinations up to and including [popUpTo]. This will remove those
-     * destinations from the [backStack], saving their state if [saveState] is `true`.
+     * Pop all destinations up to and including [popUpTo]. This will remove those destinations from
+     * the [backStack], saving their state if [saveState] is `true`.
      */
     public open fun pop(popUpTo: NavBackStackEntry, saveState: Boolean) {
-        backStackLock.withLock {
-            _backStack.value = _backStack.value.takeWhile { it != popUpTo }
-        }
+        backStackLock.withLock { _backStack.value = _backStack.value.takeWhile { it != popUpTo } }
     }
 
     /**
-     * Pops all destinations up to and including [popUpTo]. This also adds the given and
-     * incoming entry to the [set of in progress transitions][transitionsInProgress]. Added
-     * entries have their [Lifecycle] held at [Lifecycle.State.CREATED] until an entry is
-     * passed into the [markTransitionComplete] callback, when they are allowed to go to
-     * [Lifecycle.State.DESTROYED] and have their state cleared.
+     * Pops all destinations up to and including [popUpTo]. This also adds the given and incoming
+     * entry to the [set of in progress transitions][transitionsInProgress]. Added entries have
+     * their [Lifecycle] held at [Lifecycle.State.CREATED] until an entry is passed into the
+     * [markTransitionComplete] callback, when they are allowed to go to [Lifecycle.State.DESTROYED]
+     * and have their state cleared.
      *
-     * This will remove those destinations from the [backStack], saving their state if
-     * [saveState] is `true`.
+     * This will remove those destinations from the [backStack], saving their state if [saveState]
+     * is `true`.
      *
      * @see transitionsInProgress
      * @see markTransitionComplete
@@ -132,15 +121,16 @@
         // since we are already moving to the proper state.
         if (
             _transitionsInProgress.value.any { it === popUpTo } &&
-            backStack.value.none { it === popUpTo }
+                backStack.value.none { it === popUpTo }
         ) {
             return
         }
         _transitionsInProgress.value = _transitionsInProgress.value + popUpTo
-        val incomingEntry = backStack.value.lastOrNull { entry ->
-            entry != popUpTo &&
-                backStack.value.lastIndexOf(entry) < backStack.value.lastIndexOf(popUpTo)
-        }
+        val incomingEntry =
+            backStack.value.lastOrNull { entry ->
+                entry != popUpTo &&
+                    backStack.value.lastIndexOf(entry) < backStack.value.lastIndexOf(popUpTo)
+            }
         // When popping, we need to mark the incoming entry as transitioning so we keep it
         // STARTED until the transition completes at which point we can move it to RESUMED
         if (incomingEntry != null) {
@@ -150,13 +140,13 @@
     }
 
     /**
-     * Informational callback indicating that the given [backStackEntry] has been
-     * affected by a [NavOptions.shouldLaunchSingleTop] operation.
+     * Informational callback indicating that the given [backStackEntry] has been affected by a
+     * [NavOptions.shouldLaunchSingleTop] operation.
      *
      * Replaces the topmost entry with same id with the new [backStackEntry][NavBackStackEntry]
      *
-     * @param [backStackEntry] the [NavBackStackEntry] to replace the old Entry
-     * within the [backStack]
+     * @param [backStackEntry] the [NavBackStackEntry] to replace the old Entry within the
+     *   [backStack]
      */
     @CallSuper
     public open fun onLaunchSingleTop(backStackEntry: NavBackStackEntry) {
@@ -164,28 +154,27 @@
         // it might be using transitions.
         backStackLock.withLock {
             val tempStack = backStack.value.toMutableList()
-            tempStack.indexOfLast { it.id == backStackEntry.id }.let { idx ->
-                tempStack[idx] = backStackEntry
-            }
+            tempStack
+                .indexOfLast { it.id == backStackEntry.id }
+                .let { idx -> tempStack[idx] = backStackEntry }
             _backStack.value = tempStack
         }
     }
 
     /**
-     * Informational callback indicating that the given [backStackEntry] has been
-     * affected by a [NavOptions.shouldLaunchSingleTop] operation. This also adds the given and
-     * previous entry to the [set of in progress transitions][transitionsInProgress].
-     * Added entries have their [Lifecycle] capped at [Lifecycle.State.STARTED] until an entry is
-     * passed into the [markTransitionComplete] callback, when they are allowed to go to
-     * [Lifecycle.State.RESUMED] while previous entries have their [Lifecycle] held at
-     * [Lifecycle.State.CREATED] until an entry is passed into the [markTransitionComplete]
-     * callback, when they are allowed to go to  [Lifecycle.State.DESTROYED] and have their state
-     * cleared.
+     * Informational callback indicating that the given [backStackEntry] has been affected by a
+     * [NavOptions.shouldLaunchSingleTop] operation. This also adds the given and previous entry to
+     * the [set of in progress transitions][transitionsInProgress]. Added entries have their
+     * [Lifecycle] capped at [Lifecycle.State.STARTED] until an entry is passed into the
+     * [markTransitionComplete] callback, when they are allowed to go to [Lifecycle.State.RESUMED]
+     * while previous entries have their [Lifecycle] held at [Lifecycle.State.CREATED] until an
+     * entry is passed into the [markTransitionComplete] callback, when they are allowed to go to
+     * [Lifecycle.State.DESTROYED] and have their state cleared.
      *
      * Replaces the topmost entry with same id with the new [backStackEntry][NavBackStackEntry]
      *
-     * @param [backStackEntry] the [NavBackStackEntry] to replace the old Entry
-     * within the [backStack]
+     * @param [backStackEntry] the [NavBackStackEntry] to replace the old Entry within the
+     *   [backStack]
      */
     @CallSuper
     public open fun onLaunchSingleTopWithTransition(backStackEntry: NavBackStackEntry) {
@@ -195,16 +184,16 @@
     }
 
     /**
-     * This removes the given [NavBackStackEntry] from the [set of the transitions in
-     * progress][transitionsInProgress]. This should be called in conjunction with
-     * [pushWithTransition] and [popWithTransition] as those call are responsible for adding
-     * entries to [transitionsInProgress].
+     * This removes the given [NavBackStackEntry] from the
+     * [set of the transitions in progress][transitionsInProgress]. This should be called in
+     * conjunction with [pushWithTransition] and [popWithTransition] as those call are responsible
+     * for adding entries to [transitionsInProgress].
      *
      * This should also always be called in conjunction with [prepareForTransition] to ensure all
      * [NavBackStackEntries][NavBackStackEntry] settle into the proper state.
      *
-     * Failing to call this method could result in entries being prevented from reaching their
-     * final [Lifecycle.State]}.
+     * Failing to call this method could result in entries being prevented from reaching their final
+     * [Lifecycle.State]}.
      *
      * @see pushWithTransition
      * @see popWithTransition
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/NoOpNavigator.kt b/navigation/navigation-common/src/main/java/androidx/navigation/NoOpNavigator.kt
index 2314f172..ffd10a5 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/NoOpNavigator.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/NoOpNavigator.kt
@@ -18,9 +18,7 @@
 import android.os.Bundle
 import androidx.annotation.RestrictTo
 
-/**
- * A [Navigator] that only supports creating destinations.
- */
+/** A [Navigator] that only supports creating destinations. */
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 @Navigator.Name("NoOp")
 public class NoOpNavigator : Navigator<NavDestination>() {
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/SavedStateHandle.kt b/navigation/navigation-common/src/main/java/androidx/navigation/SavedStateHandle.kt
index d2585a2..3f18a0e 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/SavedStateHandle.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/SavedStateHandle.kt
@@ -31,9 +31,8 @@
  * Extrapolates arguments from [SavedStateHandle] and recreates object [T]
  *
  * @param [T] the entry's [NavDestination.route] as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in [T]. May be empty if
- * [T] does not use custom NavTypes.
- *
+ * @param typeMap A mapping of KType to custom NavType<*> in [T]. May be empty if [T] does not use
+ *   custom NavTypes.
  * @return A new instance of this entry's [NavDestination.route] as an object of type [T]
  */
 public inline fun <reified T : Any> SavedStateHandle.toRoute(
@@ -48,8 +47,6 @@
 ): T {
     val map: MutableMap<String, NavType<*>> = mutableMapOf()
     val serializer = route.serializer()
-    serializer.generateNavArguments(typeMap).onEach {
-        map[it.name] = it.argument.type
-    }
+    serializer.generateNavArguments(typeMap).onEach { map[it.name] = it.argument.type }
     return serializer.decodeArguments(this, map)
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/NavTypeConverter.kt b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/NavTypeConverter.kt
index 7f7b754..f405bac 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/NavTypeConverter.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/NavTypeConverter.kt
@@ -25,9 +25,7 @@
 import kotlinx.serialization.descriptors.SerialDescriptor
 import kotlinx.serialization.serializer
 
-/**
- * Marker for Native Kotlin types with either full or partial built-in NavType support
- */
+/** Marker for Native Kotlin types with either full or partial built-in NavType support */
 private enum class InternalType {
     INT,
     BOOL,
@@ -52,41 +50,42 @@
  * Returns [UNKNOWN] type if the argument does not have built-in NavType support.
  */
 internal fun SerialDescriptor.getNavType(): NavType<*> {
-    val type = when (this.toInternalType()) {
-        InternalType.INT -> NavType.IntType
-        InternalType.BOOL -> NavType.BoolType
-        InternalType.FLOAT -> NavType.FloatType
-        InternalType.LONG -> NavType.LongType
-        InternalType.STRING -> NavType.StringType
-        InternalType.INT_ARRAY -> NavType.IntArrayType
-        InternalType.BOOL_ARRAY -> NavType.BoolArrayType
-        InternalType.FLOAT_ARRAY -> NavType.FloatArrayType
-        InternalType.LONG_ARRAY -> NavType.LongArrayType
-        InternalType.ARRAY -> {
-            val typeParameter = getElementDescriptor(0).toInternalType()
-            if (typeParameter == InternalType.STRING) NavType.StringArrayType else UNKNOWN
-        }
-        InternalType.LIST -> {
-            val typeParameter = getElementDescriptor(0).toInternalType()
-            when (typeParameter) {
-                InternalType.INT -> NavType.IntListType
-                InternalType.BOOL -> NavType.BoolListType
-                InternalType.FLOAT -> NavType.FloatListType
-                InternalType.LONG -> NavType.LongListType
-                InternalType.STRING -> NavType.StringListType
-                else -> UNKNOWN
+    val type =
+        when (this.toInternalType()) {
+            InternalType.INT -> NavType.IntType
+            InternalType.BOOL -> NavType.BoolType
+            InternalType.FLOAT -> NavType.FloatType
+            InternalType.LONG -> NavType.LongType
+            InternalType.STRING -> NavType.StringType
+            InternalType.INT_ARRAY -> NavType.IntArrayType
+            InternalType.BOOL_ARRAY -> NavType.BoolArrayType
+            InternalType.FLOAT_ARRAY -> NavType.FloatArrayType
+            InternalType.LONG_ARRAY -> NavType.LongArrayType
+            InternalType.ARRAY -> {
+                val typeParameter = getElementDescriptor(0).toInternalType()
+                if (typeParameter == InternalType.STRING) NavType.StringArrayType else UNKNOWN
             }
+            InternalType.LIST -> {
+                val typeParameter = getElementDescriptor(0).toInternalType()
+                when (typeParameter) {
+                    InternalType.INT -> NavType.IntListType
+                    InternalType.BOOL -> NavType.BoolListType
+                    InternalType.FLOAT -> NavType.FloatListType
+                    InternalType.LONG -> NavType.LongListType
+                    InternalType.STRING -> NavType.StringListType
+                    else -> UNKNOWN
+                }
+            }
+            else -> UNKNOWN
         }
-        else -> UNKNOWN
-    }
     return type
 }
 
 /**
  * Convert SerialDescriptor to an InternalCommonType.
  *
- * The descriptor's associated argument could be any of the native Kotlin types supported
- * in [InternalType], or it could be an unsupported type (custom class, object or enum).
+ * The descriptor's associated argument could be any of the native Kotlin types supported in
+ * [InternalType], or it could be an unsupported type (custom class, object or enum).
  */
 private fun SerialDescriptor.toInternalType(): InternalType {
     val serialName = serialName.replace("?", "")
@@ -122,7 +121,10 @@
 internal object UNKNOWN : NavType<String>(false) {
     override val name: String
         get() = "unknown"
+
     override fun put(bundle: Bundle, key: String, value: String) {}
+
     override fun get(bundle: Bundle, key: String): String? = null
+
     override fun parseValue(value: String): String = "null"
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteBuilder.kt b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteBuilder.kt
index 60e9f6e..2751ca0 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteBuilder.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteBuilder.kt
@@ -23,37 +23,30 @@
 import kotlinx.serialization.ExperimentalSerializationApi
 import kotlinx.serialization.KSerializer
 
-/**
- * Builds navigation routes from a destination class or instance.
- */
+/** Builds navigation routes from a destination class or instance. */
 internal sealed class RouteBuilder<T> private constructor() {
-    /**
-     * DSL to construct a route pattern
-     */
-     class Pattern<T> : RouteBuilder<T> {
+    /** DSL to construct a route pattern */
+    class Pattern<T> : RouteBuilder<T> {
 
         private val builder: Builder<T>
 
         /**
          * Create a builder that builds a route pattern
          *
-         * @param serializer The serializer for destination type T (class, object etc.)
-         * to build the route for.
+         * @param serializer The serializer for destination type T (class, object etc.) to build the
+         *   route for.
          * @param typeMap map of destination arguments' name to its respective [NavType]
          */
-         constructor(
-             serializer: KSerializer<T>,
-             typeMap: Map<String, NavType<Any?>>
-         ) : super() {
-             builder = Builder(serializer, typeMap)
-         }
+        constructor(serializer: KSerializer<T>, typeMap: Map<String, NavType<Any?>>) : super() {
+            builder = Builder(serializer, typeMap)
+        }
 
         /**
          * Create a builder that builds a route pattern
          *
          * @param path The base uri path to which arguments are appended
-         * @param serializer The serializer for destination type T (class, object etc.)
-         * to build the route for.
+         * @param serializer The serializer for destination type T (class, object etc.) to build the
+         *   route for.
          * @param typeMap map of destination arguments' name to its respective [NavType]
          */
         constructor(
@@ -79,40 +72,34 @@
     /**
      * Builds a route filled with argument values
      *
-     * @param serializer The serializer for destination instance that you
-     * need to build the route for.
-     *
-     * @param typeMap A map of argument name to the NavArgument of all serializable fields
-     * in this destination instance
+     * @param serializer The serializer for destination instance that you need to build the route
+     *   for.
+     * @param typeMap A map of argument name to the NavArgument of all serializable fields in this
+     *   destination instance
      */
-    class Filled<T>(
-        serializer: KSerializer<T>,
-        private val typeMap: Map<String, NavType<Any?>>
-    ) : RouteBuilder<T>() {
+    class Filled<T>(serializer: KSerializer<T>, private val typeMap: Map<String, NavType<Any?>>) :
+        RouteBuilder<T>() {
 
         private val builder = Builder(serializer, typeMap)
         private var elementIndex = -1
 
-        /**
-         * Set index of the argument that is currently getting encoded
-         */
+        /** Set index of the argument that is currently getting encoded */
         fun setElementIndex(idx: Int) {
             elementIndex = idx
         }
 
-        /**
-         * Adds argument value to the url
-         */
+        /** Adds argument value to the url */
         fun addArg(value: Any?) {
             require(!(value == null || value == "null")) {
                 "Expected non-null value but got $value"
             }
             builder.apply(elementIndex) { name, type, paramType ->
-                val parsedValue = if (type is CollectionNavType) {
-                    type.serializeAsValues(value)
-                } else {
-                    listOf(type.serializeAsValue(value))
-                }
+                val parsedValue =
+                    if (type is CollectionNavType) {
+                        type.serializeAsValues(value)
+                    } else {
+                        listOf(type.serializeAsValue(value))
+                    }
                 when (paramType) {
                     ParamType.PATH -> {
                         // path arguments should be a single string value of primitive types
@@ -127,13 +114,9 @@
             }
         }
 
-        /**
-         * Adds null value to the url
-         */
+        /** Adds null value to the url */
         fun addNull(value: Any?) {
-            require(value == null || value == "null") {
-               "Expected null value but got $value"
-            }
+            require(value == null || value == "null") { "Expected null value but got $value" }
             builder.apply(elementIndex) { name, _, paramType ->
                 when (paramType) {
                     ParamType.PATH -> addPath("null")
@@ -150,9 +133,7 @@
         QUERY
     }
 
-    /**
-     * Internal builder that generates the final url output
-     */
+    /** Internal builder that generates the final url output */
     private class Builder<T> {
         private val serializer: KSerializer<T>
         private val typeMap: Map<String, NavType<Any?>>
@@ -160,40 +141,27 @@
         private var pathArgs = ""
         private var queryArgs = ""
 
-        constructor(
-            serializer: KSerializer<T>,
-            typeMap: Map<String, NavType<Any?>>
-        ) {
+        constructor(serializer: KSerializer<T>, typeMap: Map<String, NavType<Any?>>) {
             this.serializer = serializer
             this.typeMap = typeMap
             path = serializer.descriptor.serialName
         }
 
-        constructor(
-            path: String,
-            serializer: KSerializer<T>,
-            typeMap: Map<String, NavType<Any?>>
-        ) {
+        constructor(path: String, serializer: KSerializer<T>, typeMap: Map<String, NavType<Any?>>) {
             this.serializer = serializer
             this.typeMap = typeMap
             this.path = path
         }
 
-        /**
-         * Returns final route
-         */
+        /** Returns final route */
         fun build() = path + pathArgs + queryArgs
 
-        /**
-         * Append string to the route's (url) path
-         */
+        /** Append string to the route's (url) path */
         fun addPath(path: String) {
             pathArgs += "/$path"
         }
 
-        /**
-         * Append string to the route's (url) query parameter
-         */
+        /** Append string to the route's (url) query parameter */
         fun addQuery(name: String, value: String) {
             val symbol = if (queryArgs.isEmpty()) "?" else "&"
             queryArgs += "$symbol$name=$value"
@@ -215,8 +183,8 @@
         }
 
         /**
-         * Given the descriptor of [T], computes the [ParamType] of the element (argument)
-         * at [index].
+         * Given the descriptor of [T], computes the [ParamType] of the element (argument) at
+         * [index].
          *
          * Query args if either conditions met:
          * 1. has default value
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDecoder.kt b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDecoder.kt
index e222245..821b1e3 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDecoder.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDecoder.kt
@@ -31,27 +31,21 @@
 /**
  * Decoder to deserialize a bundle of argument back into an object instance of type [T]
  *
- * This decoder iterates through every class field (argument) in [T], retrieves the value
- * for that argument from the bundle (or fallback to default value), then use the retrieved values
- * to re-create the object instance.
+ * This decoder iterates through every class field (argument) in [T], retrieves the value for that
+ * argument from the bundle (or fallback to default value), then use the retrieved values to
+ * re-create the object instance.
  */
 @OptIn(ExperimentalSerializationApi::class)
 internal class RouteDecoder : AbstractDecoder {
 
     // Bundle as argument source
-    constructor(
-        bundle: Bundle,
-        typeMap: Map<String, NavType<*>>
-    ) {
+    constructor(bundle: Bundle, typeMap: Map<String, NavType<*>>) {
         val store = BundleArgStore(bundle, typeMap)
         decoder = Decoder(store)
     }
 
     // SavedStateHandle as argument source
-    constructor(
-        handle: SavedStateHandle,
-        typeMap: Map<String, NavType<*>>
-    ) {
+    constructor(handle: SavedStateHandle, typeMap: Map<String, NavType<*>>) {
         val store = SavedStateArgStore(handle, typeMap)
         decoder = Decoder(store)
     }
@@ -65,16 +59,15 @@
      * Decodes the index of the next element to be decoded. Index represents a position of the
      * current element in the [descriptor] that can be found with [descriptor].getElementIndex.
      *
-     * The returned index will trigger deserializer to call [decodeValue] on the argument
-     * at that index.
+     * The returned index will trigger deserializer to call [decodeValue] on the argument at that
+     * index.
      *
-     * The decoder continually calls this method to process the next available argument until
-     * this method returns [CompositeDecoder.DECODE_DONE], which indicates that there are
-     * no more arguments to decode.
+     * The decoder continually calls this method to process the next available argument until this
+     * method returns [CompositeDecoder.DECODE_DONE], which indicates that there are no more
+     * arguments to decode.
      *
-     * This method should sequentially return the element index for every element that has its
-     * value available within the [ArgStore]. For more details,
-     * see [Decoder.computeNextElementIndex].
+     * This method should sequentially return the element index for every element that has its value
+     * available within the [ArgStore]. For more details, see [Decoder.computeNextElementIndex].
      */
     override fun decodeElementIndex(descriptor: SerialDescriptor): Int {
         return decoder.computeNextElementIndex(descriptor)
@@ -94,11 +87,10 @@
     /**
      * Entry point to decoding the route
      *
-     * The original entry point was [decodeSerializableValue], however we needed to override it
-     * to handle nested serializable values without recursing into the nested
-     * serializable (non-primitives).
-     * So this is our new entry point which calls super.decodeSerializableValue to deserialize
-     * only the route.
+     * The original entry point was [decodeSerializableValue], however we needed to override it to
+     * handle nested serializable values without recursing into the nested serializable
+     * (non-primitives). So this is our new entry point which calls super.decodeSerializableValue to
+     * deserialize only the route.
      */
     internal fun <T> decodeRouteWithArgs(deserializer: DeserializationStrategy<T>): T {
         return super.decodeSerializableValue(deserializer)
@@ -128,8 +120,8 @@
      * [decodeValue] should only be called for arguments with values stored within [store].
      * Otherwise, we should let the deserializer fall back to default value. This is done by
      * skipping (not returning) the indices whose argument is not present in the bundle. In doing
-     * so, the deserializer considers the skipped element un-processed and will use the
-     * default value (if present) instead.
+     * so, the deserializer considers the skipped element un-processed and will use the default
+     * value (if present) instead.
      */
     @OptIn(ExperimentalSerializationApi::class)
     fun computeNextElementIndex(descriptor: SerialDescriptor): Int {
@@ -150,14 +142,10 @@
         }
     }
 
-    /**
-     * Retrieves argument value stored in the bundle
-     */
+    /** Retrieves argument value stored in the bundle */
     fun decodeValue(): Any {
         val arg = store.get(elementName)
-        checkNotNull(arg) {
-            "Unexpected null value for non-nullable argument $elementName"
-        }
+        checkNotNull(arg) { "Unexpected null value for non-nullable argument $elementName" }
         return arg
     }
 
@@ -168,6 +156,7 @@
 private abstract class ArgStore {
     // Retrieves argument value from store
     abstract fun get(key: String): Any?
+
     // Checks if store contains argument for key
     abstract fun contains(key: String): Boolean
 }
@@ -179,10 +168,10 @@
     override fun get(key: String): Any? {
         val arg: Any? = handle[key]
         val bundle = bundleOf(key to arg)
-        return checkNotNull(typeMap[key]) {
-            "Failed to find type for $key when decoding $handle"
-        }[bundle, key]
+        return checkNotNull(typeMap[key]) { "Failed to find type for $key when decoding $handle" }[
+            bundle, key]
     }
+
     override fun contains(key: String) = handle.contains(key)
 }
 
@@ -194,5 +183,6 @@
         val navType = typeMap[key]
         return navType?.get(bundle, key)
     }
+
     override fun contains(key: String) = bundle.containsKey(key)
 }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDeserializer.kt b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDeserializer.kt
index 3e0db6b..950c2d1 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDeserializer.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteDeserializer.kt
@@ -24,10 +24,8 @@
 
 // public due to reified toRoute()
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-public fun <T> KSerializer<T>.decodeArguments(
-    bundle: Bundle,
-    typeMap: Map<String, NavType<*>>
-): T = RouteDecoder(bundle, typeMap).decodeRouteWithArgs(this)
+public fun <T> KSerializer<T>.decodeArguments(bundle: Bundle, typeMap: Map<String, NavType<*>>): T =
+    RouteDecoder(bundle, typeMap).decodeRouteWithArgs(this)
 
 // public due to reified toRoute()
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteEncoder.kt b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteEncoder.kt
index 417450f..42d4776 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteEncoder.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteEncoder.kt
@@ -25,9 +25,7 @@
 import kotlinx.serialization.modules.EmptySerializersModule
 import kotlinx.serialization.modules.SerializersModule
 
-/**
- * Encodes KClass of type T into a route filled with arguments
- */
+/** Encodes KClass of type T into a route filled with arguments */
 @OptIn(ExperimentalSerializationApi::class)
 internal class RouteEncoder<T : Any>(
     private val serializer: KSerializer<T>,
@@ -41,8 +39,8 @@
      *
      * The default entry point is [encodeSerializableValue] but we need to override it to handle
      * primitive and non-primitive values by converting them directly to string (instead of the
-     * default implementation which further serializes nested non-primitive values). So we
-     * delegate to the default entry by directly calling [super.encodeSerializableValue].
+     * default implementation which further serializes nested non-primitive values). So we delegate
+     * to the default entry by directly calling [super.encodeSerializableValue].
      */
     @Suppress("UNCHECKED_CAST")
     fun encodeRouteWithArgs(value: Any): String {
@@ -67,9 +65,7 @@
         }
     }
 
-    /**
-     * Essentially called for every single argument.
-     */
+    /** Essentially called for every single argument. */
     override fun encodeElement(descriptor: SerialDescriptor, index: Int): Boolean {
         builder.setElementIndex(index)
         return true
@@ -88,9 +84,7 @@
         }
     }
 
-    /**
-     * Called for primitive / non-primitives of null value
-     */
+    /** Called for primitive / non-primitives of null value */
     override fun encodeNull() {
         builder.addNull(null)
     }
diff --git a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteSerializer.kt b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteSerializer.kt
index 08ce9fc..a3b96bd 100644
--- a/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteSerializer.kt
+++ b/navigation/navigation-common/src/main/java/androidx/navigation/serialization/RouteSerializer.kt
@@ -31,17 +31,17 @@
 import kotlinx.serialization.serializer
 
 /**
- * Generates a route pattern for use in Navigation functions such as [::navigate] from
- * a serializer of class T where T is a concrete class or object.
+ * Generates a route pattern for use in Navigation functions such as [::navigate] from a serializer
+ * of class T where T is a concrete class or object.
  *
- * The generated route pattern contains the path, path args, and query args.
- * See [RouteBuilder.Builder.computeParamType] for logic on how parameter type (path or query)
- * is computed.
+ * The generated route pattern contains the path, path args, and query args. See
+ * [RouteBuilder.Builder.computeParamType] for logic on how parameter type (path or query) is
+ * computed.
  *
- * @param [typeMap] A mapping of KType to the custom NavType<*>. For example given
- * an argument of "val userId: UserId", the map should contain [typeOf<UserId>() to MyNavType].
+ * @param [typeMap] A mapping of KType to the custom NavType<*>. For example given an argument of
+ *   "val userId: UserId", the map should contain [typeOf<UserId>() to MyNavType].
  * @param [path] The base path to append arguments to. If null, base path defaults to
- * [KSerializer.descriptor].serialName.
+ *   [KSerializer.descriptor].serialName.
  */
 internal fun <T> KSerializer<T>.generateRoutePattern(
     typeMap: Map<KType, NavType<*>> = emptyMap(),
@@ -61,11 +61,12 @@
         val type = descriptor.getElementDescriptor(i).computeNavType(argName, typeMap)
         map[argName] = type
     }
-    val builder = if (path != null) {
-        RouteBuilder.Pattern(path, this, map)
-    } else {
-        RouteBuilder.Pattern(this, map)
-    }
+    val builder =
+        if (path != null) {
+            RouteBuilder.Pattern(path, this, map)
+        } else {
+            RouteBuilder.Pattern(this, map)
+        }
     for (elementIndex in 0 until descriptor.elementsCount) {
         builder.addArg(elementIndex)
     }
@@ -85,15 +86,13 @@
  * 3. Nullability is based on variable Type's nullability
  * 4. defaultValuePresent is based on whether variable has default value
  *
- * This generator does not check for validity as a NavType.
- * This means if a NavType is not nullable (i.e. Int), and the KType was Int?, it relies on the
- * navArgument builder to throw exception.
+ * This generator does not check for validity as a NavType. This means if a NavType is not nullable
+ * (i.e. Int), and the KType was Int?, it relies on the navArgument builder to throw exception.
  *
- * @param [typeMap] A mapping of KType to the custom NavType<*>. For example given
- * an argument of "val userId: UserId", the map should
- * contain [typeOf<UserId>() to MyNavType]. Custom NavTypes take priority over native
- * NavTypes. This means you can override native NavTypes such as [NavType.IntType] with your own
- * implementation of NavType<Int>.
+ * @param [typeMap] A mapping of KType to the custom NavType<*>. For example given an argument of
+ *   "val userId: UserId", the map should contain [typeOf<UserId>() to MyNavType]. Custom NavTypes
+ *   take priority over native NavTypes. This means you can override native NavTypes such as
+ *   [NavType.IntType] with your own implementation of NavType<Int>.
  */
 internal fun <T> KSerializer<T>.generateNavArguments(
     typeMap: Map<KType, NavType<*>> = emptyMap()
@@ -127,17 +126,14 @@
  * Generates a route filled in with argument value for use in Navigation functions such as
  * [::navigate] from a destination instance of type T.
  *
- * The generated route pattern contains the path, path args, and query args.
- * See [RouteBuilder.Builder.computeParamType] for logic on how parameter type (path or query)
- * is computed.
- *
+ * The generated route pattern contains the path, path args, and query args. See
+ * [RouteBuilder.Builder.computeParamType] for logic on how parameter type (path or query) is
+ * computed.
  */
 @OptIn(InternalSerializationApi::class)
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-public fun <T : Any> generateRouteWithArgs(
-    route: T,
-    typeMap: Map<String, NavType<Any?>>
-): String = RouteEncoder(route::class.serializer(), typeMap).encodeRouteWithArgs(route)
+public fun <T : Any> generateRouteWithArgs(route: T, typeMap: Map<String, NavType<Any?>>): String =
+    RouteEncoder(route::class.serializer(), typeMap).encodeRouteWithArgs(route)
 
 private fun <T> KSerializer<T>.assertNotAbstractClass(handler: () -> Unit) {
     // abstract class
@@ -158,9 +154,8 @@
     name: String,
     typeMap: Map<KType, NavType<*>>
 ): NavType<Any?> {
-    val customType = typeMap.keys
-        .find { kType -> matchKType(kType) }
-        ?.let { typeMap[it] } as? NavType<Any?>
+    val customType =
+        typeMap.keys.find { kType -> matchKType(kType) }?.let { typeMap[it] } as? NavType<Any?>
     val result = customType ?: getNavType()
     if (result == UNKNOWN) {
         throw IllegalArgumentException(
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/ActionOnlyNavDirectionsTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/ActionOnlyNavDirectionsTest.kt
index 6c84215..5df276d 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/ActionOnlyNavDirectionsTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/ActionOnlyNavDirectionsTest.kt
@@ -26,10 +26,8 @@
 
     @Test
     fun testEquals() {
-        assertThat(ActionOnlyNavDirections(1))
-            .isEqualTo(ActionOnlyNavDirections(1))
-        assertThat(ActionOnlyNavDirections(1))
-            .isNotEqualTo(ActionOnlyNavDirections(2))
+        assertThat(ActionOnlyNavDirections(1)).isEqualTo(ActionOnlyNavDirections(1))
+        assertThat(ActionOnlyNavDirections(1)).isNotEqualTo(ActionOnlyNavDirections(2))
     }
 
     @Test
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/NavActionTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/NavActionTest.kt
index b28f474..ee96f87 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/NavActionTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/NavActionTest.kt
@@ -26,8 +26,7 @@
 class NavActionTest {
 
     companion object {
-        @IdRes
-        private const val DESTINATION_ID = 1
+        @IdRes private const val DESTINATION_ID = 1
     }
 
     @Test
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/NavDestinationTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/NavDestinationTest.kt
index c422999..274dab0 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/NavDestinationTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/NavDestinationTest.kt
@@ -31,21 +31,16 @@
 class NavDestinationTest {
 
     companion object {
-        @IdRes
-        private const val INVALID_ACTION_ID = 0
-        @IdRes
-        private const val ACTION_ID = 1
-        @IdRes
-        private const val DESTINATION_ID = 1
+        @IdRes private const val INVALID_ACTION_ID = 0
+        @IdRes private const val ACTION_ID = 1
+        @IdRes private const val DESTINATION_ID = 1
     }
 
     @Test
     fun parseClassFromNameAbsolute() {
         val context = mock(Context::class.java)
-        val clazz = NavDestination.parseClassFromNameInternal(
-            context,
-            "java.lang.String", Any::class.java
-        )
+        val clazz =
+            NavDestination.parseClassFromNameInternal(context, "java.lang.String", Any::class.java)
         assertThat(clazz).isNotNull()
         assertThat(clazz.name).isEqualTo(String::class.java.name)
     }
@@ -56,7 +51,8 @@
         try {
             NavDestination.parseClassFromNameInternal(
                 context,
-                "definitely.not.found", Any::class.java
+                "definitely.not.found",
+                Any::class.java
             )
             fail("Invalid type should cause an IllegalArgumentException")
         } catch (e: IllegalArgumentException) {
@@ -67,10 +63,12 @@
     @Test
     fun parseClassFromNameAbsoluteWithType() {
         val context = mock(Context::class.java)
-        val clazz = NavDestination.parseClassFromNameInternal(
-            context,
-            "java.lang.String", String::class.java
-        )
+        val clazz =
+            NavDestination.parseClassFromNameInternal(
+                context,
+                "java.lang.String",
+                String::class.java
+            )
         assertThat(clazz).isNotNull()
         assertThat(clazz.name).isEqualTo(String::class.java.name)
     }
@@ -79,10 +77,7 @@
     fun parseClassFromNameAbsoluteWithIncorrectType() {
         val context = mock(Context::class.java)
         try {
-            NavDestination.parseClassFromNameInternal(
-                context,
-                "java.lang.String", List::class.java
-            )
+            NavDestination.parseClassFromNameInternal(context, "java.lang.String", List::class.java)
             fail("Incorrect type should cause an IllegalArgumentException")
         } catch (e: IllegalArgumentException) {
             // Expected
@@ -93,10 +88,7 @@
     fun parseClassFromNameRelative() {
         val context = mock(Context::class.java)
         `when`(context.packageName).thenReturn("java.lang")
-        val clazz = NavDestination.parseClassFromNameInternal(
-            context,
-            ".String", Any::class.java
-        )
+        val clazz = NavDestination.parseClassFromNameInternal(context, ".String", Any::class.java)
         assertThat(clazz).isNotNull()
         assertThat(clazz.name).isEqualTo(String::class.java.name)
     }
@@ -108,7 +100,8 @@
         try {
             NavDestination.parseClassFromNameInternal(
                 context,
-                ".definitely.not.found", Any::class.java
+                ".definitely.not.found",
+                Any::class.java
             )
             fail("Invalid type should cause an IllegalArgumentException")
         } catch (e: IllegalArgumentException) {
@@ -120,10 +113,8 @@
     fun parseClassFromNameRelativeWithType() {
         val context = mock(Context::class.java)
         `when`(context.packageName).thenReturn("java.lang")
-        val clazz = NavDestination.parseClassFromNameInternal(
-            context,
-            ".String", String::class.java
-        )
+        val clazz =
+            NavDestination.parseClassFromNameInternal(context, ".String", String::class.java)
         assertThat(clazz).isNotNull()
         assertThat(clazz.name).isEqualTo(String::class.java.name)
     }
@@ -133,10 +124,7 @@
         val context = mock(Context::class.java)
         `when`(context.packageName).thenReturn("java.lang")
         try {
-            NavDestination.parseClassFromNameInternal(
-                context,
-                ".String", List::class.java
-            )
+            NavDestination.parseClassFromNameInternal(context, ".String", List::class.java)
             fail("Incorrect type should cause an IllegalArgumentException")
         } catch (e: IllegalArgumentException) {
             // Expected
@@ -149,10 +137,11 @@
         destination.id = DESTINATION_ID
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-            setStartDestination(DESTINATION_ID)
-        }
+        val parent =
+            navGraphNavigator.createDestination().apply {
+                id = parentId
+                setStartDestination(DESTINATION_ID)
+            }
         destination.parent = parent
         val deepLinkIds = destination.buildDeepLinkIds()
         assertThat(deepLinkIds.size).isEqualTo(1)
@@ -165,9 +154,7 @@
         destination.id = DESTINATION_ID
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-        }
+        val parent = navGraphNavigator.createDestination().apply { id = parentId }
         destination.parent = parent
         val deepLinkIds = destination.buildDeepLinkIds()
         assertThat(deepLinkIds.size).isEqualTo(2)
@@ -181,9 +168,7 @@
         val navGraphId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
 
-        val navGraph = navGraphNavigator.createDestination().apply {
-            id = navGraphId
-        }
+        val navGraph = navGraphNavigator.createDestination().apply { id = navGraphId }
 
         startDest.parent = navGraph
         val deepLinkIds = navGraph.buildDeepLinkIds(navGraph)
@@ -197,9 +182,7 @@
         destination.id = DESTINATION_ID
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-        }
+        val parent = navGraphNavigator.createDestination().apply { id = parentId }
 
         destination.parent = parent
         val deepLinkIds = destination.buildDeepLinkIds(parent)
@@ -214,10 +197,11 @@
 
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-            setStartDestination(DESTINATION_ID)
-        }
+        val parent =
+            navGraphNavigator.createDestination().apply {
+                id = parentId
+                setStartDestination(DESTINATION_ID)
+            }
 
         destination.parent = parent
 
@@ -233,11 +217,12 @@
 
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-            setStartDestination(DESTINATION_ID)
-            addDestination(destination)
-        }
+        val parent =
+            navGraphNavigator.createDestination().apply {
+                id = parentId
+                setStartDestination(DESTINATION_ID)
+                addDestination(destination)
+            }
 
         destination.parent = parent
 
@@ -252,16 +237,18 @@
         destination.id = DESTINATION_ID
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-            setStartDestination(DESTINATION_ID)
-        }
+        val parent =
+            navGraphNavigator.createDestination().apply {
+                id = parentId
+                setStartDestination(DESTINATION_ID)
+            }
         destination.parent = parent
         val grandparentId = 3
-        val grandparent = navGraphNavigator.createDestination().apply {
-            id = grandparentId
-            setStartDestination(parentId)
-        }
+        val grandparent =
+            navGraphNavigator.createDestination().apply {
+                id = grandparentId
+                setStartDestination(parentId)
+            }
         parent.parent = grandparent
         val deepLinkIds = destination.buildDeepLinkIds()
         assertThat(deepLinkIds.size).isEqualTo(1)
@@ -274,15 +261,14 @@
         destination.id = DESTINATION_ID
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-        }
+        val parent = navGraphNavigator.createDestination().apply { id = parentId }
         destination.parent = parent
         val grandparentId = 3
-        val grandparent = navGraphNavigator.createDestination().apply {
-            id = grandparentId
-            setStartDestination(parentId)
-        }
+        val grandparent =
+            navGraphNavigator.createDestination().apply {
+                id = grandparentId
+                setStartDestination(parentId)
+            }
         parent.parent = grandparent
         val deepLinkIds = destination.buildDeepLinkIds()
         assertThat(deepLinkIds.size).isEqualTo(2)
@@ -295,15 +281,14 @@
         destination.id = DESTINATION_ID
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-        }
+        val parent = navGraphNavigator.createDestination().apply { id = parentId }
         destination.parent = parent
         val grandparentId = 3
-        val grandparent = navGraphNavigator.createDestination().apply {
-            id = grandparentId
-            setStartDestination(parentId)
-        }
+        val grandparent =
+            navGraphNavigator.createDestination().apply {
+                id = grandparentId
+                setStartDestination(parentId)
+            }
         parent.parent = grandparent
         val deepLinkIds = destination.buildDeepLinkIds()
         assertThat(deepLinkIds.size).isEqualTo(2)
@@ -351,9 +336,7 @@
     @Test
     fun addArgument() {
         val destination = NoOpNavigator().createDestination()
-        val stringArgument = NavArgument.Builder()
-            .setType(NavType.StringType)
-            .build()
+        val stringArgument = NavArgument.Builder().setType(NavType.StringType).build()
         destination.addArgument("stringArg", stringArgument)
         assertThat(destination.arguments.size).isEqualTo(1)
         assertThat(destination.arguments["stringArg"]).isEqualTo(stringArgument)
@@ -362,9 +345,7 @@
     @Test
     fun removeArgument() {
         val destination = NoOpNavigator().createDestination()
-        val stringArgument = NavArgument.Builder()
-            .setType(NavType.StringType)
-            .build()
+        val stringArgument = NavArgument.Builder().setType(NavType.StringType).build()
         destination.addArgument("stringArg", stringArgument)
         assertThat(destination.arguments.size).isEqualTo(1)
         assertThat(destination.arguments["stringArg"]).isEqualTo(stringArgument)
@@ -380,10 +361,11 @@
         destination.id = DESTINATION_ID
         val parentId = 2
         val navGraphNavigator = NavGraphNavigator(mock(NavigatorProvider::class.java))
-        val parent = navGraphNavigator.createDestination().apply {
-            id = parentId
-            setStartDestination(DESTINATION_ID)
-        }
+        val parent =
+            navGraphNavigator.createDestination().apply {
+                id = parentId
+                setStartDestination(DESTINATION_ID)
+            }
         destination.parent = parent
 
         val found = destination.hierarchy.any { it.id == 2 }
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphNavigatorTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphNavigatorTest.kt
index 4389f4d..595c2c1 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphNavigatorTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphNavigatorTest.kt
@@ -34,14 +34,11 @@
 class NavGraphNavigatorTest {
 
     companion object {
-        @IdRes
-        private const val FIRST_DESTINATION_ID = 1
-        @IdRes
-        private const val SECOND_DESTINATION_ID = 2
+        @IdRes private const val FIRST_DESTINATION_ID = 1
+        @IdRes private const val SECOND_DESTINATION_ID = 2
     }
 
-    @get:Rule
-    val instantTaskExecutorRule = InstantTaskExecutorRule()
+    @get:Rule val instantTaskExecutorRule = InstantTaskExecutorRule()
 
     private lateinit var provider: NavigatorProvider
     private lateinit var noOpState: TestNavigatorState
@@ -53,44 +50,41 @@
     @Before
     fun setup() {
         Dispatchers.setMain(UnconfinedTestDispatcher())
-        provider = NavigatorProvider().apply {
-            addNavigator(NoOpNavigator().also { noOpNavigator = it })
-            addNavigator(
-                NavGraphNavigator(this).also {
-                    navGraphNavigator = it
-                }
-            )
-        }
+        provider =
+            NavigatorProvider().apply {
+                addNavigator(NoOpNavigator().also { noOpNavigator = it })
+                addNavigator(NavGraphNavigator(this).also { navGraphNavigator = it })
+            }
         noOpState = TestNavigatorState()
         noOpNavigator.onAttach(noOpState)
         navGraphState = TestNavigatorState()
         navGraphNavigator.onAttach(navGraphState)
     }
 
-    private fun createFirstDestination() = noOpNavigator.createDestination().apply {
-        id = FIRST_DESTINATION_ID
-    }
+    private fun createFirstDestination() =
+        noOpNavigator.createDestination().apply { id = FIRST_DESTINATION_ID }
 
-    private fun createSecondDestination() = noOpNavigator.createDestination().apply {
-        id = SECOND_DESTINATION_ID
-    }
+    private fun createSecondDestination() =
+        noOpNavigator.createDestination().apply { id = SECOND_DESTINATION_ID }
 
     private fun createGraphWithDestination(
         destination: NavDestination,
         startId: Int = destination.id
-    ) = navGraphNavigator.createDestination().apply {
-        addDestination(destination)
-        setStartDestination(startId)
-    }
+    ) =
+        navGraphNavigator.createDestination().apply {
+            addDestination(destination)
+            setStartDestination(startId)
+        }
 
     @Test(expected = IllegalStateException::class)
     fun navigateWithoutStartDestination() {
         val destination = createFirstDestination()
-        val graph = navGraphNavigator.createDestination().apply {
-            addDestination(destination)
-            id = 2 // can't match id of first destination or the start destination
-            setStartDestination(0)
-        }
+        val graph =
+            navGraphNavigator.createDestination().apply {
+                addDestination(destination)
+                id = 2 // can't match id of first destination or the start destination
+                setStartDestination(0)
+            }
         val entry = navGraphState.createBackStackEntry(graph, null)
         navGraphNavigator.navigate(listOf(entry), null, null)
     }
@@ -101,7 +95,6 @@
         val graph = createGraphWithDestination(destination)
         val entry = navGraphState.createBackStackEntry(graph, null)
         navGraphNavigator.navigate(listOf(entry), null, null)
-        assertThat(noOpState.backStack.value.map { it.destination })
-            .containsExactly(destination)
+        assertThat(noOpState.backStack.value.map { it.destination }).containsExactly(destination)
     }
 }
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphTest.kt
index 98a23f5..89a53e9 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/NavGraphTest.kt
@@ -28,10 +28,8 @@
 class NavGraphTest {
 
     companion object {
-        @IdRes
-        private const val FIRST_DESTINATION_ID = 1
-        @IdRes
-        private const val SECOND_DESTINATION_ID = 2
+        @IdRes private const val FIRST_DESTINATION_ID = 1
+        @IdRes private const val SECOND_DESTINATION_ID = 2
     }
 
     private lateinit var provider: NavigatorProvider
@@ -40,33 +38,24 @@
 
     @Before
     fun setup() {
-        provider = NavigatorProvider().apply {
-            addNavigator(NoOpNavigator().also { noOpNavigator = it })
-            addNavigator(
-                NavGraphNavigator(this).also {
-                    navGraphNavigator = it
-                }
-            )
-        }
+        provider =
+            NavigatorProvider().apply {
+                addNavigator(NoOpNavigator().also { noOpNavigator = it })
+                addNavigator(NavGraphNavigator(this).also { navGraphNavigator = it })
+            }
     }
 
-    private fun createFirstDestination() = noOpNavigator.createDestination().apply {
-        id = FIRST_DESTINATION_ID
-    }
+    private fun createFirstDestination() =
+        noOpNavigator.createDestination().apply { id = FIRST_DESTINATION_ID }
 
-    private fun createSecondDestination() = noOpNavigator.createDestination().apply {
-        id = SECOND_DESTINATION_ID
-    }
+    private fun createSecondDestination() =
+        noOpNavigator.createDestination().apply { id = SECOND_DESTINATION_ID }
 
     private fun createGraphWithDestination(destination: NavDestination) =
-        navGraphNavigator.createDestination().apply {
-            addDestination(destination)
-        }
+        navGraphNavigator.createDestination().apply { addDestination(destination) }
 
     private fun createGraphWithDestinations(vararg destinations: NavDestination) =
-        navGraphNavigator.createDestination().apply {
-            addDestinations(*destinations)
-        }
+        navGraphNavigator.createDestination().apply { addDestinations(*destinations) }
 
     @Test(expected = IllegalArgumentException::class)
     fun addDestinationWithoutId() {
@@ -87,31 +76,30 @@
     @Test
     fun addDestinationWithSameId() {
         val destination = createFirstDestination()
-        val graph = navGraphNavigator.createDestination().apply {
-            id = FIRST_DESTINATION_ID
-        }
+        val graph = navGraphNavigator.createDestination().apply { id = FIRST_DESTINATION_ID }
         try {
             graph.addDestination(destination)
         } catch (e: IllegalArgumentException) {
             assertWithMessage("Adding destination with same id as its parent should fail")
-                .that(e).hasMessageThat().contains(
-                    "Destination $destination cannot have the same id as graph $graph"
-                )
+                .that(e)
+                .hasMessageThat()
+                .contains("Destination $destination cannot have the same id as graph $graph")
         }
     }
 
     @Test
     fun setStartDestinationWithSameId() {
         val destination = createFirstDestination()
-        val graph = navGraphNavigator.createDestination().apply {
-            id = FIRST_DESTINATION_ID
-        }
+        val graph = navGraphNavigator.createDestination().apply { id = FIRST_DESTINATION_ID }
         try {
             graph.setStartDestination(destination.id)
         } catch (e: IllegalArgumentException) {
             assertWithMessage("Setting a start destination with same id as its parent should fail")
-                .that(e).hasMessageThat().contains(
-                    "Start destination " + destination.id +
+                .that(e)
+                .hasMessageThat()
+                .contains(
+                    "Start destination " +
+                        destination.id +
                         " cannot use the same id as the graph $graph"
                 )
         }
@@ -275,10 +263,8 @@
         val secondDestination = createSecondDestination()
         val graph = createGraphWithDestinations(destination, secondDestination)
 
-        val graph2 = createGraphWithDestinations(
-            createFirstDestination(),
-            createSecondDestination()
-        )
+        val graph2 =
+            createGraphWithDestinations(createFirstDestination(), createSecondDestination())
         assertThat(graph2).isEqualTo(graph)
     }
 
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/NavigatorProviderTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/NavigatorProviderTest.kt
index 8a6c0c6..c240792 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/NavigatorProviderTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/NavigatorProviderTest.kt
@@ -47,8 +47,7 @@
         val provider = NavigatorProvider()
         val navigator = NoNameNavigator()
         provider.addNavigator("name", navigator)
-        assertThat(provider.getNavigator<NoNameNavigator>("name"))
-            .isEqualTo(navigator)
+        assertThat(provider.getNavigator<NoNameNavigator>("name")).isEqualTo(navigator)
     }
 
     @Test
@@ -57,8 +56,7 @@
         val navigator = EmptyNavigator()
         provider.addNavigator("name", navigator)
 
-        assertThat(provider.getNavigator<EmptyNavigator>("name"))
-            .isEqualTo(navigator)
+        assertThat(provider.getNavigator<EmptyNavigator>("name")).isEqualTo(navigator)
         try {
             provider.getNavigator(EmptyNavigator::class.java)
             fail("getNavigator(Class) with an invalid name should cause an IllegalStateException")
@@ -88,8 +86,7 @@
         val provider = NavigatorProvider()
         val navigator = EmptyNavigator()
         provider.addNavigator(navigator)
-        assertThat(provider.getNavigator(EmptyNavigator::class.java))
-            .isEqualTo(navigator)
+        assertThat(provider.getNavigator(EmptyNavigator::class.java)).isEqualTo(navigator)
     }
 
     @Test
@@ -97,8 +94,7 @@
         val provider = NavigatorProvider()
         val navigator = EmptyNavigator()
         provider.addNavigator(navigator)
-        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME))
-            .isEqualTo(navigator)
+        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME)).isEqualTo(navigator)
     }
 
     @Test
@@ -108,8 +104,7 @@
         val navigator = EmptyNavigator()
 
         provider.addNavigator(navigator)
-        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME))
-            .isEqualTo(navigator)
+        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME)).isEqualTo(navigator)
 
         navigator.onAttach(navigatorState)
         assertWithMessage("Navigator should be attached")
@@ -137,12 +132,10 @@
         assertThat(navigatorA).isNotEqualTo(navigatorB)
 
         provider.addNavigator(navigatorA)
-        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME))
-            .isEqualTo(navigatorA)
+        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME)).isEqualTo(navigatorA)
 
         provider.addNavigator(navigatorB)
-        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME))
-            .isEqualTo(navigatorB)
+        assertThat(provider.getNavigator<EmptyNavigator>(EmptyNavigator.NAME)).isEqualTo(navigatorB)
     }
 
     private val provider = NavigatorProvider()
@@ -186,9 +179,7 @@
     }
 }
 
-/**
- * An empty [Navigator] used to test [NavigatorProvider].
- */
+/** An empty [Navigator] used to test [NavigatorProvider]. */
 @Navigator.Name(EmptyNavigator.NAME)
 internal open class EmptyNavigator : Navigator<NavDestination>() {
 
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavArgumentGeneratorTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavArgumentGeneratorTest.kt
index c0c9214..35d7d7d 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavArgumentGeneratorTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavArgumentGeneratorTest.kt
@@ -1,4 +1,4 @@
- /*
+/*
  * Copyright 2024 The Android Open Source Project
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -43,10 +43,11 @@
         @Serializable class TestClass(val arg: Int)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.IntType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.IntType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -55,9 +56,10 @@
     fun convertToIntNullableIllegal() {
         @Serializable class TestClass(val arg: Int?)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            serializer<TestClass>().generateNavArguments()
-        }
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                serializer<TestClass>().generateNavArguments()
+            }
         assertThat(exception.message).isEqualTo("integer does not allow nullable values")
     }
 
@@ -66,10 +68,11 @@
         @Serializable class TestClass(val arg: String)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -79,10 +82,11 @@
         @Serializable class TestClass(val arg: String?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -92,10 +96,11 @@
         @Serializable class TestClass(val arg: Boolean)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.BoolType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.BoolType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -104,9 +109,10 @@
     fun convertToBooleanNullableIllegal() {
         @Serializable class TestClass(val arg: Boolean?)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            serializer<TestClass>().generateNavArguments()
-        }
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                serializer<TestClass>().generateNavArguments()
+            }
         assertThat(exception.message).isEqualTo("boolean does not allow nullable values")
     }
 
@@ -115,10 +121,11 @@
         @Serializable class TestClass(val arg: Float)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.FloatType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.FloatType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -127,9 +134,10 @@
     fun convertToFloatNullableIllegal() {
         @Serializable class TestClass(val arg: Float?)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            serializer<TestClass>().generateNavArguments()
-        }
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                serializer<TestClass>().generateNavArguments()
+            }
         assertThat(exception.message).isEqualTo("float does not allow nullable values")
     }
 
@@ -138,10 +146,11 @@
         @Serializable class TestClass(val arg: Long)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.LongType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.LongType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -150,9 +159,10 @@
     fun convertToLongNullableIllegal() {
         @Serializable class TestClass(val arg: Long?)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            serializer<TestClass>().generateNavArguments()
-        }
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                serializer<TestClass>().generateNavArguments()
+            }
         assertThat(exception.message).isEqualTo("long does not allow nullable values")
     }
 
@@ -161,10 +171,11 @@
         @Serializable class TestClass(val arg: IntArray)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.IntArrayType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.IntArrayType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -174,10 +185,11 @@
         @Serializable class TestClass(val arg: IntArray?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.IntArrayType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.IntArrayType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -187,10 +199,11 @@
         @Serializable class TestClass(val arg: List<Int>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.IntListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.IntListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -200,10 +213,11 @@
         @Serializable class TestClass(val arg: ArrayList<Int>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.IntListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.IntListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -213,10 +227,11 @@
         @Serializable class TestClass(val arg: List<Int>?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.IntListType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.IntListType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -226,10 +241,11 @@
         @Serializable class TestClass(val arg: LongArray)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.LongArrayType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.LongArrayType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -239,10 +255,11 @@
         @Serializable class TestClass(val arg: LongArray?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.LongArrayType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.LongArrayType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -252,10 +269,11 @@
         @Serializable class TestClass(val arg: List<Long>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.LongListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.LongListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -265,10 +283,11 @@
         @Serializable class TestClass(val arg: ArrayList<Long>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.LongListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.LongListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -278,10 +297,11 @@
         @Serializable class TestClass(val arg: List<Long>?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.LongListType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.LongListType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -291,10 +311,11 @@
         @Serializable class TestClass(val arg: FloatArray)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.FloatArrayType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.FloatArrayType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -304,10 +325,11 @@
         @Serializable class TestClass(val arg: FloatArray?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.FloatArrayType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.FloatArrayType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -317,10 +339,11 @@
         @Serializable class TestClass(val arg: List<Float>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.FloatListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.FloatListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -330,10 +353,11 @@
         @Serializable class TestClass(val arg: ArrayList<Float>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.FloatListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.FloatListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -343,10 +367,11 @@
         @Serializable class TestClass(val arg: List<Float>?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.FloatListType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.FloatListType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -356,10 +381,11 @@
         @Serializable class TestClass(val arg: BooleanArray)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.BoolArrayType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.BoolArrayType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -369,10 +395,11 @@
         @Serializable class TestClass(val arg: BooleanArray?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.BoolArrayType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.BoolArrayType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -382,10 +409,11 @@
         @Serializable class TestClass(val arg: List<Boolean>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.BoolListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.BoolListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -395,10 +423,11 @@
         @Serializable class TestClass(val arg: ArrayList<Boolean>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.BoolListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.BoolListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -408,10 +437,11 @@
         @Serializable class TestClass(val arg: List<Boolean>?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.BoolListType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.BoolListType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -421,10 +451,11 @@
         @Serializable class TestClass(val arg: Array<String>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringArrayType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringArrayType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -434,10 +465,11 @@
         @Serializable class TestClass(val arg: Array<String>?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringArrayType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringArrayType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -447,10 +479,11 @@
         @Serializable class TestClass(val arg: List<String>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -460,10 +493,11 @@
         @Serializable class TestClass(val arg: ArrayList<String>)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringListType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringListType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -473,10 +507,11 @@
         @Serializable class TestClass(val arg: List<String>?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringListType
-            nullable = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringListType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -486,25 +521,28 @@
         @Serializable
         class TestParcelable : Parcelable {
             override fun describeContents() = 0
+
             override fun writeToParcel(dest: Parcel, flags: Int) {}
         }
 
-        @Serializable
-        class TestClass(val arg: TestParcelable)
+        @Serializable class TestClass(val arg: TestParcelable)
 
-        val navType = object : NavType<TestParcelable>(false) {
-            override fun put(bundle: Bundle, key: String, value: TestParcelable) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = TestParcelable()
-        }
+        val navType =
+            object : NavType<TestParcelable>(false) {
+                override fun put(bundle: Bundle, key: String, value: TestParcelable) {}
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<TestParcelable>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = false
-        }
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = TestParcelable()
+            }
+
+        val converted =
+            serializer<TestClass>().generateNavArguments(mapOf(typeOf<TestParcelable>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -514,25 +552,29 @@
         @Serializable
         class TestParcelable : Parcelable {
             override fun describeContents() = 0
+
             override fun writeToParcel(dest: Parcel, flags: Int) {}
         }
 
-        @Serializable
-        class TestClass(val arg: TestParcelable?)
+        @Serializable class TestClass(val arg: TestParcelable?)
 
-        val navType = object : NavType<TestParcelable?>(true) {
-            override fun put(bundle: Bundle, key: String, value: TestParcelable?) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = TestParcelable()
-        }
+        val navType =
+            object : NavType<TestParcelable?>(true) {
+                override fun put(bundle: Bundle, key: String, value: TestParcelable?) {}
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<TestParcelable?>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = true
-        }
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = TestParcelable()
+            }
+
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<TestParcelable?>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -542,24 +584,28 @@
         @Serializable
         class TestParcelable : Parcelable {
             override fun describeContents() = 0
+
             override fun writeToParcel(dest: Parcel, flags: Int) {}
         }
 
-        @Serializable
-        class TestClass(val arg: Array<TestParcelable>)
+        @Serializable class TestClass(val arg: Array<TestParcelable>)
 
-        val navType = object : NavType<Array<TestParcelable>>(false) {
-            override fun put(bundle: Bundle, key: String, value: Array<TestParcelable>) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = emptyArray<TestParcelable>()
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<Array<TestParcelable>>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = false
-        }
+        val navType =
+            object : NavType<Array<TestParcelable>>(false) {
+                override fun put(bundle: Bundle, key: String, value: Array<TestParcelable>) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = emptyArray<TestParcelable>()
+            }
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<Array<TestParcelable>>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -569,185 +615,206 @@
         @Serializable
         class TestParcelable : Parcelable {
             override fun describeContents() = 0
+
             override fun writeToParcel(dest: Parcel, flags: Int) {}
         }
 
-        @Serializable
-        class TestClass(val arg: Array<TestParcelable>?)
+        @Serializable class TestClass(val arg: Array<TestParcelable>?)
 
-        val navType = object : NavType<Array<TestParcelable>>(true) {
-            override fun put(bundle: Bundle, key: String, value: Array<TestParcelable>) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = emptyArray<TestParcelable>()
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<Array<TestParcelable>?>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = true
-        }
+        val navType =
+            object : NavType<Array<TestParcelable>>(true) {
+                override fun put(bundle: Bundle, key: String, value: Array<TestParcelable>) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = emptyArray<TestParcelable>()
+            }
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<Array<TestParcelable>?>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertToSerializable() {
-        @Serializable
-        class TestSerializable : java.io.Serializable
+        @Serializable class TestSerializable : java.io.Serializable
 
-        @Serializable
-        class TestClass(val arg: TestSerializable)
+        @Serializable class TestClass(val arg: TestSerializable)
 
-        val navType = object : NavType<TestSerializable>(false) {
-            override fun put(bundle: Bundle, key: String, value: TestSerializable) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = TestSerializable()
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<TestSerializable>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = false
-        }
+        val navType =
+            object : NavType<TestSerializable>(false) {
+                override fun put(bundle: Bundle, key: String, value: TestSerializable) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = TestSerializable()
+            }
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<TestSerializable>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertToSerializableNullable() {
-        @Serializable
-        class TestSerializable : java.io.Serializable
+        @Serializable class TestSerializable : java.io.Serializable
 
-        @Serializable
-        class TestClass(val arg: TestSerializable?)
+        @Serializable class TestClass(val arg: TestSerializable?)
 
-        val navType = object : NavType<TestSerializable>(true) {
-            override fun put(bundle: Bundle, key: String, value: TestSerializable) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = TestSerializable()
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<TestSerializable?>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = true
-        }
+        val navType =
+            object : NavType<TestSerializable>(true) {
+                override fun put(bundle: Bundle, key: String, value: TestSerializable) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = TestSerializable()
+            }
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<TestSerializable?>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertToSerializableArray() {
-        @Serializable
-        class TestSerializable : java.io.Serializable
+        @Serializable class TestSerializable : java.io.Serializable
 
-        @Serializable
-        class TestClass(val arg: Array<TestSerializable>)
+        @Serializable class TestClass(val arg: Array<TestSerializable>)
 
-        val navType = object : NavType<Array<TestSerializable>>(false) {
-            override fun put(bundle: Bundle, key: String, value: Array<TestSerializable>) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = emptyArray<TestSerializable>()
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<Array<TestSerializable>>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = false
-        }
+        val navType =
+            object : NavType<Array<TestSerializable>>(false) {
+                override fun put(bundle: Bundle, key: String, value: Array<TestSerializable>) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = emptyArray<TestSerializable>()
+            }
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<Array<TestSerializable>>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertToSerializableArrayNullable() {
-        @Serializable
-        class TestSerializable : java.io.Serializable
+        @Serializable class TestSerializable : java.io.Serializable
 
-        @Serializable
-        class TestClass(val arg: Array<TestSerializable>?)
+        @Serializable class TestClass(val arg: Array<TestSerializable>?)
 
-        val navType = object : NavType<Array<TestSerializable>>(true) {
-            override fun put(bundle: Bundle, key: String, value: Array<TestSerializable>) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = emptyArray<TestSerializable>()
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<Array<TestSerializable>?>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = true
-        }
+        val navType =
+            object : NavType<Array<TestSerializable>>(true) {
+                override fun put(bundle: Bundle, key: String, value: Array<TestSerializable>) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = emptyArray<TestSerializable>()
+            }
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<Array<TestSerializable>?>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertToEnum() {
-        @Serializable
-        class TestClass(val arg: TestEnum)
+        @Serializable class TestClass(val arg: TestEnum)
 
-        val navType = object : NavType<TestEnum>(false) {
-            override fun put(bundle: Bundle, key: String, value: TestEnum) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = TestEnum.TEST
-        }
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = false
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<TestEnum>() to navType)
-        )
+        val navType =
+            object : NavType<TestEnum>(false) {
+                override fun put(bundle: Bundle, key: String, value: TestEnum) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = TestEnum.TEST
+            }
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = false
+            }
+        val converted =
+            serializer<TestClass>().generateNavArguments(mapOf(typeOf<TestEnum>() to navType))
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertToEnumNullable() {
-        @Serializable
-        class TestClass(val arg: TestEnum?)
+        @Serializable class TestClass(val arg: TestEnum?)
 
-        val navType = object : NavType<TestEnum?>(true) {
-            override val name: String
-                get() = "TestEnum"
-            override fun put(bundle: Bundle, key: String, value: TestEnum?) {}
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = TestEnum.TEST
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<TestEnum?>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = true
-        }
+        val navType =
+            object : NavType<TestEnum?>(true) {
+                override val name: String
+                    get() = "TestEnum"
+
+                override fun put(bundle: Bundle, key: String, value: TestEnum?) {}
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = TestEnum.TEST
+            }
+        val converted =
+            serializer<TestClass>().generateNavArguments(mapOf(typeOf<TestEnum?>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertToEnumArray() {
-        @Serializable
-        class TestClass(val arg: Array<TestEnum>)
-        val navType = object : CollectionNavType<Array<TestEnum>>(false) {
-            override fun put(bundle: Bundle, key: String, value: Array<TestEnum>) {}
-            override fun serializeAsValues(value: Array<TestEnum>) = emptyList<String>()
-            override fun get(bundle: Bundle, key: String) = null
-            override fun parseValue(value: String) = emptyArray<TestEnum>()
-        }
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<Array<TestEnum>>() to navType)
-        )
-        val expected = navArgument("arg") {
-            type = navType
-            nullable = false
-        }
+        @Serializable class TestClass(val arg: Array<TestEnum>)
+        val navType =
+            object : CollectionNavType<Array<TestEnum>>(false) {
+                override fun put(bundle: Bundle, key: String, value: Array<TestEnum>) {}
+
+                override fun serializeAsValues(value: Array<TestEnum>) = emptyList<String>()
+
+                override fun get(bundle: Bundle, key: String) = null
+
+                override fun parseValue(value: String) = emptyArray<TestEnum>()
+            }
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<Array<TestEnum>>() to navType))
+        val expected =
+            navArgument("arg") {
+                type = navType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -756,11 +823,12 @@
     fun convertWithDefaultValue() {
         @Serializable class TestClass(val arg: String = "test")
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringType
-            nullable = false
-            unknownDefaultValuePresent = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringType
+                nullable = false
+                unknownDefaultValuePresent = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isTrue()
     }
@@ -769,12 +837,13 @@
     fun convertNullableWithDefaultValue() {
         @Serializable class TestClass(val arg: String? = "test")
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringType
-            nullable = true
-            unknownDefaultValuePresent = true
-            // since String? is nullable, we cannot know for sure the default value is not null
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringType
+                nullable = true
+                unknownDefaultValuePresent = true
+                // since String? is nullable, we cannot know for sure the default value is not null
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isTrue()
     }
@@ -783,11 +852,12 @@
     fun convertNullableWithNullDefaultValue() {
         @Serializable class TestClass(val arg: String? = null)
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.StringType
-            nullable = true
-            unknownDefaultValuePresent = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.StringType
+                nullable = true
+                unknownDefaultValuePresent = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isTrue()
     }
@@ -796,33 +866,39 @@
     fun convertIllegalCustomType() {
         @Serializable class TestClass(val arg: Set<String>)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            serializer<TestClass>().generateNavArguments()
-        }
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                serializer<TestClass>().generateNavArguments()
+            }
 
-        assertThat(exception.message).isEqualTo(
-         "Cannot cast arg of type kotlin.collections.LinkedHashSet to a NavType. " +
-             "Make sure to provide custom NavType for this argument."
-        )
+        assertThat(exception.message)
+            .isEqualTo(
+                "Cannot cast arg of type kotlin.collections.LinkedHashSet to a NavType. " +
+                    "Make sure to provide custom NavType for this argument."
+            )
     }
 
     @Test
     fun convertCustomType() {
         @Serializable class TestClass(val arg: ArrayList<String>)
 
-        val CustomNavType = object : NavType<ArrayList<String>>(false) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<String>) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<String> = arrayListOf()
-        }
+        val CustomNavType =
+            object : NavType<ArrayList<String>>(false) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<String>) {}
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<ArrayList<String>>() to CustomNavType)
-        )
-        val expected = navArgument("arg") {
-            type = CustomNavType
-            nullable = false
-        }
+                override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
+
+                override fun parseValue(value: String): ArrayList<String> = arrayListOf()
+            }
+
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<ArrayList<String>>() to CustomNavType))
+        val expected =
+            navArgument("arg") {
+                type = CustomNavType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -831,43 +907,49 @@
     fun convertCustomTypeNullable() {
         @Serializable class TestClass(val arg: ArrayList<String>?)
 
-        val CustomNavType = object : NavType<ArrayList<String>?>(true) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<String>?) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<String> = arrayListOf()
-        }
+        val CustomNavType =
+            object : NavType<ArrayList<String>?>(true) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<String>?) {}
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<ArrayList<String>?>() to CustomNavType)
-        )
-        val expected = navArgument("arg") {
-            type = CustomNavType
-            nullable = true
-        }
+                override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
+
+                override fun parseValue(value: String): ArrayList<String> = arrayListOf()
+            }
+
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<ArrayList<String>?>() to CustomNavType))
+        val expected =
+            navArgument("arg") {
+                type = CustomNavType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
 
     @Test
     fun convertCustomTypeNullableIllegal() {
-        val CustomNavType = object : NavType<ArrayList<String>>(false) {
-            override val name = "customNavType"
-            override fun put(bundle: Bundle, key: String, value: ArrayList<String>) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<String> = arrayListOf()
-        }
+        val CustomNavType =
+            object : NavType<ArrayList<String>>(false) {
+                override val name = "customNavType"
+
+                override fun put(bundle: Bundle, key: String, value: ArrayList<String>) {}
+
+                override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
+
+                override fun parseValue(value: String): ArrayList<String> = arrayListOf()
+            }
 
         // CustomNavType does not allow nullable but we declare the arg as nullable here
         @Serializable class TestClass(val arg: ArrayList<String>?)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            serializer<TestClass>().generateNavArguments(
-                mapOf(typeOf<ArrayList<String>?>() to CustomNavType)
-            )
-        }
-        assertThat(exception.message).isEqualTo(
-         "customNavType does not allow nullable values"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                serializer<TestClass>()
+                    .generateNavArguments(mapOf(typeOf<ArrayList<String>?>() to CustomNavType))
+            }
+        assertThat(exception.message).isEqualTo("customNavType does not allow nullable values")
     }
 
     @Test
@@ -875,14 +957,16 @@
         @Serializable class TestClass(val arg: Int, val arg2: String?)
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expectedInt = navArgument("arg") {
-            type = NavType.IntType
-            nullable = false
-        }
-        val expectedString = navArgument("arg2") {
-            type = NavType.StringType
-            nullable = true
-        }
+        val expectedInt =
+            navArgument("arg") {
+                type = NavType.IntType
+                nullable = false
+            }
+        val expectedString =
+            navArgument("arg2") {
+                type = NavType.StringType
+                nullable = true
+            }
         assertThat(converted).containsExactlyInOrder(expectedInt, expectedString)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
         assertThat(converted[1].argument.isDefaultValueUnknown).isFalse()
@@ -893,16 +977,18 @@
         @Serializable class TestClass(val arg: Int = 0, val arg2: String? = "test")
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expectedInt = navArgument("arg") {
-            type = NavType.IntType
-            nullable = false
-            unknownDefaultValuePresent = true
-        }
-        val expectedString = navArgument("arg2") {
-            type = NavType.StringType
-            nullable = true
-            unknownDefaultValuePresent = true
-        }
+        val expectedInt =
+            navArgument("arg") {
+                type = NavType.IntType
+                nullable = false
+                unknownDefaultValuePresent = true
+            }
+        val expectedString =
+            navArgument("arg2") {
+                type = NavType.StringType
+                nullable = true
+                unknownDefaultValuePresent = true
+            }
         assertThat(converted).containsExactlyInOrder(expectedInt, expectedString)
         assertThat(converted[0].argument.isDefaultValueUnknown).isTrue()
         assertThat(converted[1].argument.isDefaultValueUnknown).isTrue()
@@ -912,31 +998,42 @@
     fun convertMultipleCustomTypes() {
         @Serializable class TestClass(val arg: ArrayList<String>?, val arg2: ArrayList<Int>)
 
-        val CustomStringList = object : NavType<ArrayList<String>?>(true) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<String>?) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<String> = arrayListOf()
-        }
+        val CustomStringList =
+            object : NavType<ArrayList<String>?>(true) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<String>?) {}
 
-        val CustomIntList = object : NavType<ArrayList<Int>>(true) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<Int>) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<Int> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<Int> = arrayListOf()
-        }
+                override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(
-                typeOf<ArrayList<String>?>() to CustomStringList,
-                typeOf<ArrayList<Int>>() to CustomIntList)
-        )
-        val expectedStringList = navArgument("arg") {
-            type = CustomStringList
-            nullable = true
-        }
-        val expectedIntList = navArgument("arg2") {
-            type = CustomIntList
-            nullable = false
-        }
+                override fun parseValue(value: String): ArrayList<String> = arrayListOf()
+            }
+
+        val CustomIntList =
+            object : NavType<ArrayList<Int>>(true) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<Int>) {}
+
+                override fun get(bundle: Bundle, key: String): ArrayList<Int> = arrayListOf()
+
+                override fun parseValue(value: String): ArrayList<Int> = arrayListOf()
+            }
+
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(
+                    mapOf(
+                        typeOf<ArrayList<String>?>() to CustomStringList,
+                        typeOf<ArrayList<Int>>() to CustomIntList
+                    )
+                )
+        val expectedStringList =
+            navArgument("arg") {
+                type = CustomStringList
+                nullable = true
+            }
+        val expectedIntList =
+            navArgument("arg2") {
+                type = CustomIntList
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expectedStringList, expectedIntList)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
         assertThat(converted[1].argument.isDefaultValueUnknown).isFalse()
@@ -944,38 +1041,50 @@
 
     @Test
     fun convertMultipleCustomTypesWithDefaultValue() {
-        @Serializable class TestClass(
+        @Serializable
+        class TestClass(
             val arg: ArrayList<String>? = arrayListOf(),
             val arg2: ArrayList<Int> = arrayListOf()
         )
 
-        val CustomStringList = object : NavType<ArrayList<String>?>(true) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<String>?) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<String> = arrayListOf()
-        }
+        val CustomStringList =
+            object : NavType<ArrayList<String>?>(true) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<String>?) {}
 
-        val CustomIntList = object : NavType<ArrayList<Int>>(true) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<Int>) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<Int> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<Int> = arrayListOf()
-        }
+                override fun get(bundle: Bundle, key: String): ArrayList<String> = arrayListOf()
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(
-                typeOf<ArrayList<String>?>() to CustomStringList,
-                typeOf<ArrayList<Int>>() to CustomIntList)
-        )
-        val expectedStringList = navArgument("arg") {
-            type = CustomStringList
-            nullable = true
-            unknownDefaultValuePresent = true
-        }
-        val expectedIntList = navArgument("arg2") {
-            type = CustomIntList
-            nullable = false
-            unknownDefaultValuePresent = true
-        }
+                override fun parseValue(value: String): ArrayList<String> = arrayListOf()
+            }
+
+        val CustomIntList =
+            object : NavType<ArrayList<Int>>(true) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<Int>) {}
+
+                override fun get(bundle: Bundle, key: String): ArrayList<Int> = arrayListOf()
+
+                override fun parseValue(value: String): ArrayList<Int> = arrayListOf()
+            }
+
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(
+                    mapOf(
+                        typeOf<ArrayList<String>?>() to CustomStringList,
+                        typeOf<ArrayList<Int>>() to CustomIntList
+                    )
+                )
+        val expectedStringList =
+            navArgument("arg") {
+                type = CustomStringList
+                nullable = true
+                unknownDefaultValuePresent = true
+            }
+        val expectedIntList =
+            navArgument("arg2") {
+                type = CustomIntList
+                nullable = false
+                unknownDefaultValuePresent = true
+            }
         assertThat(converted).containsExactlyInOrder(expectedStringList, expectedIntList)
         assertThat(converted[0].argument.isDefaultValueUnknown).isTrue()
         assertThat(converted[1].argument.isDefaultValueUnknown).isTrue()
@@ -985,19 +1094,24 @@
     fun convertNestedCustomTypes() {
         @Serializable class TestClass(val arg: ArrayList<List<String>>)
 
-        val CustomStringList = object : NavType<ArrayList<List<String>>>(false) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<List<String>>) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<List<String>> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<List<String>> = arrayListOf()
-        }
+        val CustomStringList =
+            object : NavType<ArrayList<List<String>>>(false) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<List<String>>) {}
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<ArrayList<List<String>>>() to CustomStringList)
-        )
-        val expectedStringList = navArgument("arg") {
-            type = CustomStringList
-            nullable = false
-        }
+                override fun get(bundle: Bundle, key: String): ArrayList<List<String>> =
+                    arrayListOf()
+
+                override fun parseValue(value: String): ArrayList<List<String>> = arrayListOf()
+            }
+
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<ArrayList<List<String>>>() to CustomStringList))
+        val expectedStringList =
+            navArgument("arg") {
+                type = CustomStringList
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expectedStringList)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
     }
@@ -1006,23 +1120,28 @@
     fun convertNativeAndCustomTypes() {
         @Serializable class TestClass(val arg: String, val arg2: ArrayList<Int>)
 
-        val CustomIntList = object : NavType<ArrayList<Int>>(true) {
-            override fun put(bundle: Bundle, key: String, value: ArrayList<Int>) { }
-            override fun get(bundle: Bundle, key: String): ArrayList<Int> = arrayListOf()
-            override fun parseValue(value: String): ArrayList<Int> = arrayListOf()
-        }
+        val CustomIntList =
+            object : NavType<ArrayList<Int>>(true) {
+                override fun put(bundle: Bundle, key: String, value: ArrayList<Int>) {}
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<ArrayList<Int>>() to CustomIntList)
-        )
-        val expectedString = navArgument("arg") {
-            type = NavType.StringType
-            nullable = false
-        }
-        val expectedIntList = navArgument("arg2") {
-            type = CustomIntList
-            nullable = false
-        }
+                override fun get(bundle: Bundle, key: String): ArrayList<Int> = arrayListOf()
+
+                override fun parseValue(value: String): ArrayList<Int> = arrayListOf()
+            }
+
+        val converted =
+            serializer<TestClass>()
+                .generateNavArguments(mapOf(typeOf<ArrayList<Int>>() to CustomIntList))
+        val expectedString =
+            navArgument("arg") {
+                type = NavType.StringType
+                nullable = false
+            }
+        val expectedIntList =
+            navArgument("arg2") {
+                type = CustomIntList
+                nullable = false
+            }
 
         assertThat(converted).containsExactlyInOrder(expectedString, expectedIntList)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
@@ -1031,21 +1150,24 @@
 
     @Test
     fun convertPrioritizesProvidedNavType() {
-        val CustomIntNavType = object : NavType<Int>(true) {
-            override fun put(bundle: Bundle, key: String, value: Int) { }
-            override fun get(bundle: Bundle, key: String): Int = 0
-            override fun parseValue(value: String): Int = 0
-        }
+        val CustomIntNavType =
+            object : NavType<Int>(true) {
+                override fun put(bundle: Bundle, key: String, value: Int) {}
+
+                override fun get(bundle: Bundle, key: String): Int = 0
+
+                override fun parseValue(value: String): Int = 0
+            }
 
         @Serializable class TestClass(val arg: Int)
 
-        val converted = serializer<TestClass>().generateNavArguments(
-            mapOf(typeOf<Int>() to CustomIntNavType)
-        )
-        val expected = navArgument("arg") {
-            type = CustomIntNavType
-            nullable = false
-        }
+        val converted =
+            serializer<TestClass>().generateNavArguments(mapOf(typeOf<Int>() to CustomIntNavType))
+        val expected =
+            navArgument("arg") {
+                type = CustomIntNavType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0]).isNotEqualTo(NavType.IntType)
         assertThat(converted[0].argument.isDefaultValueUnknown).isFalse()
@@ -1071,19 +1193,19 @@
         }
 
         val converted = serializer<TestClass>().generateNavArguments()
-        val expected = navArgument("arg") {
-            type = NavType.IntType
-            nullable = false
-            unknownDefaultValuePresent = true
-        }
+        val expected =
+            navArgument("arg") {
+                type = NavType.IntType
+                nullable = false
+                unknownDefaultValuePresent = true
+            }
         assertThat(converted).containsExactlyInOrder(expected)
         assertThat(converted[0].argument.isDefaultValueUnknown).isTrue()
     }
 
     @Test
     fun nonSerializableClassInvalid() {
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass
+        @SerialName(PATH_SERIAL_NAME) class TestClass
 
         assertFailsWith<SerializationException> {
             // the class must be serializable
@@ -1093,42 +1215,41 @@
 
     @Test
     fun abstractClassInvalid() {
-        @Serializable
-        abstract class TestClass(val arg: Int)
+        @Serializable abstract class TestClass(val arg: Int)
 
         val serializer = serializer<TestClass>()
-        val exception = assertFailsWith<IllegalArgumentException> {
-            serializer.generateNavArguments()
-        }
-        assertThat(exception.message).isEqualTo(
-         "Cannot generate NavArguments for polymorphic serializer " +
-             "kotlinx.serialization.PolymorphicSerializer(baseClass: " +
-             "class androidx.navigation.serialization." +
-             "NavArgumentGeneratorTest\$abstractClassInvalid\$TestClass (Kotlin reflection " +
-             "is not available)). Arguments can only be generated from concrete classes " +
-             "or objects."
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { serializer.generateNavArguments() }
+        assertThat(exception.message)
+            .isEqualTo(
+                "Cannot generate NavArguments for polymorphic serializer " +
+                    "kotlinx.serialization.PolymorphicSerializer(baseClass: " +
+                    "class androidx.navigation.serialization." +
+                    "NavArgumentGeneratorTest\$abstractClassInvalid\$TestClass (Kotlin reflection " +
+                    "is not available)). Arguments can only be generated from concrete classes " +
+                    "or objects."
+            )
     }
 
     @Test
     fun childClassOfAbstract_duplicateArgs() {
-        @Serializable
-        abstract class TestAbstractClass(val arg: Int)
+        @Serializable abstract class TestAbstractClass(val arg: Int)
 
-        @Serializable
-        class TestClass(val arg2: Int) : TestAbstractClass(0)
+        @Serializable class TestClass(val arg2: Int) : TestAbstractClass(0)
 
         val serializer = serializer<TestClass>()
         val converted = serializer.generateNavArguments()
         // args will be duplicated
-        val expectedInt = navArgument("arg") {
-            type = NavType.IntType
-            nullable = false
-        }
-        val expectedInt2 = navArgument("arg2") {
-            type = NavType.IntType
-            nullable = false
-        }
+        val expectedInt =
+            navArgument("arg") {
+                type = NavType.IntType
+                nullable = false
+            }
+        val expectedInt2 =
+            navArgument("arg2") {
+                type = NavType.IntType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expectedInt, expectedInt2)
     }
 
@@ -1137,10 +1258,11 @@
         val serializer = serializer<SealedClass.TestClass>()
         val converted = serializer.generateNavArguments()
         // child class overrides parent variable so only child variables are generated as args
-        val expected = navArgument("arg2") {
-            type = NavType.IntType
-            nullable = false
-        }
+        val expected =
+            navArgument("arg2") {
+                type = NavType.IntType
+                nullable = false
+            }
         assertThat(converted).containsExactlyInOrder(expected)
     }
 
@@ -1162,11 +1284,14 @@
             }
 
             if (!expected.argument.isEqual(actual.argument)) {
-                fail("""expected ${expected.name} to be:
+                fail(
+                    """expected ${expected.name} to be:
                 |   ${expected.argument}
                 |   but was:
                 |   ${actual.argument}
-                """.trimMargin())
+                """
+                        .trimMargin()
+                )
             }
         }
     }
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavTypeConverterTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavTypeConverterTest.kt
index dba8173..7441f4a 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavTypeConverterTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/serialization/NavTypeConverterTest.kt
@@ -418,8 +418,7 @@
 
     @Test
     fun matchNativeTypeCustomTypeParam() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: String)
+        @Serializable class TestClass(val arg: Int, val arg2: String)
 
         val descriptor = serializer<List<TestClass>>().descriptor
         val kType = typeOf<List<TestClass>>()
@@ -435,11 +434,9 @@
 
     @Test
     fun matchNativeTypeCustomTypeParamNested() {
-        @Serializable
-        open class Nested(val arg: Int)
+        @Serializable open class Nested(val arg: Int)
 
-        @Serializable
-        class TestClass<T : Nested>(val arg: Nested)
+        @Serializable class TestClass<T : Nested>(val arg: Nested)
 
         val descriptor = serializer<List<TestClass<Nested>>>().descriptor
         val kType = typeOf<List<TestClass<Nested>>>()
@@ -448,8 +445,7 @@
 
     @Test
     fun matchNativeTypeCustomTypeParamNestedCustomSerializer() {
-        @Serializable
-        class TestClass<T : CustomSerializerClass>(val arg: Int)
+        @Serializable class TestClass<T : CustomSerializerClass>(val arg: Int)
 
         val descriptor = serializer<List<TestClass<CustomSerializerClass>>>().descriptor
         val kType = typeOf<List<TestClass<CustomSerializerClass>>>()
@@ -458,8 +454,7 @@
 
     @Test
     fun matchCustomType() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: String)
+        @Serializable class TestClass(val arg: Int, val arg2: String)
 
         val descriptor = serializer<TestClass>().descriptor
         val kType = typeOf<TestClass>()
@@ -482,8 +477,7 @@
 
     @Test
     fun matchCustomTypeNativeTypeParam() {
-        @Serializable
-        class TestClass<T : SerialDescriptor>
+        @Serializable class TestClass<T : SerialDescriptor>
 
         val descriptor = serializer<TestClass<SerialDescriptor>>().descriptor
         val kType = typeOf<TestClass<SerialDescriptor>>()
@@ -492,8 +486,7 @@
 
     @Test
     fun matchCustomTypeArgNativeTypeParam() {
-        @Serializable
-        class TestClass<T : SerialDescriptor>(val arg: Int)
+        @Serializable class TestClass<T : SerialDescriptor>(val arg: Int)
 
         val descriptor = serializer<TestClass<SerialDescriptor>>().descriptor
         val kType = typeOf<TestClass<SerialDescriptor>>()
@@ -502,11 +495,9 @@
 
     @Test
     fun matchCustomTypeCustomArgNativeTypeParam() {
-        @Serializable
-        class MyArg(val name: String)
+        @Serializable class MyArg(val name: String)
 
-        @Serializable
-        class TestClass<T : SerialDescriptor>(val arg: MyArg)
+        @Serializable class TestClass<T : SerialDescriptor>(val arg: MyArg)
 
         val descriptor = serializer<TestClass<SerialDescriptor>>().descriptor
         val kType = typeOf<TestClass<SerialDescriptor>>()
@@ -515,11 +506,9 @@
 
     @Test
     fun matchCustomTypeMultiArgNativeTypeParam() {
-        @Serializable
-        class MyArg(val name: String)
+        @Serializable class MyArg(val name: String)
 
-        @Serializable
-        class TestClass<T : SerialDescriptor>(val arg: Int, val arg2: MyArg)
+        @Serializable class TestClass<T : SerialDescriptor>(val arg: Int, val arg2: MyArg)
 
         val descriptor = serializer<TestClass<SerialDescriptor>>().descriptor
         val kType = typeOf<TestClass<SerialDescriptor>>()
@@ -528,8 +517,7 @@
 
     @Test
     fun matchCustomTypeNativeTypeParamMismatch() {
-        @Serializable
-        class TestClass<T : Any>
+        @Serializable class TestClass<T : Any>
 
         val descriptor = serializer<TestClass<Int>>().descriptor
         val kType = typeOf<TestClass<String>>()
@@ -540,11 +528,9 @@
 
     @Test
     fun matchCustomTypeCustomTypeParam() {
-        @Serializable
-        open class Param
+        @Serializable open class Param
 
-        @Serializable
-        class TestClass<T : Param>
+        @Serializable class TestClass<T : Param>
 
         val descriptor = serializer<TestClass<Param>>().descriptor
         val kType = typeOf<TestClass<Param>>()
@@ -555,8 +541,7 @@
 
     @Test
     fun matchCustomTypeCustomTypeParamCustomSerializer() {
-        @Serializable
-        class TestClass<T : CustomSerializerClass>
+        @Serializable class TestClass<T : CustomSerializerClass>
 
         val descriptor = serializer<TestClass<CustomSerializerClass>>().descriptor
         val kType = typeOf<TestClass<CustomSerializerClass>>()
@@ -567,14 +552,11 @@
 
     @Test
     fun matchCustomTypeMultiCustomTypeParam() {
-        @Serializable
-        open class ParamTwo
+        @Serializable open class ParamTwo
 
-        @Serializable
-        open class Param
+        @Serializable open class Param
 
-        @Serializable
-        class TestClass<T : Param, K : ParamTwo>
+        @Serializable class TestClass<T : Param, K : ParamTwo>
 
         val descriptor = serializer<TestClass<Param, ParamTwo>>().descriptor
         val kType = typeOf<TestClass<Param, ParamTwo>>()
@@ -585,8 +567,7 @@
 
     @Test
     fun matchCustomTypeCustomTypeParamNested() {
-        @Serializable
-        class TestClass<T : Param>
+        @Serializable class TestClass<T : Param>
 
         val descriptor = serializer<TestClass<ParamDerived>>().descriptor
         val kType = typeOf<TestClass<ParamDerived>>()
@@ -597,8 +578,7 @@
 
     @Test
     fun matchCustomTypeMultiCustomTypeParamNested() {
-        @Serializable
-        class TestClass<T : Param, K : Param>
+        @Serializable class TestClass<T : Param, K : Param>
 
         val descriptor = serializer<TestClass<ParamDerived, ParamDerivedTwo>>().descriptor
         val kType = typeOf<TestClass<ParamDerived, ParamDerivedTwo>>()
@@ -609,8 +589,7 @@
 
     @Test
     fun matchCustomTypeCustomTypeParamNestedMismatch() {
-        @Serializable
-        class TestClass<T : Param>
+        @Serializable class TestClass<T : Param>
 
         val descriptor = serializer<TestClass<ParamDerived>>().descriptor
         val kType = typeOf<TestClass<ParamDerivedTwo>>()
@@ -631,14 +610,11 @@
 
     @Test
     fun matchChildOfAbstract() {
-        @Serializable
-        abstract class Abstract
+        @Serializable abstract class Abstract
 
-        @Serializable
-        class FirstChild : Abstract()
+        @Serializable class FirstChild : Abstract()
 
-        @Serializable
-        class SecondChild : Abstract()
+        @Serializable class SecondChild : Abstract()
 
         val firstChildDescriptor = serializer<FirstChild>().descriptor
         val kType = typeOf<FirstChild>()
@@ -724,8 +700,7 @@
     fun getNavTypeUnsupportedArray() {
         assertThat(serializer<Array<Double>>().descriptor.getNavType()).isEqualTo(UNKNOWN)
 
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
         assertThat(serializer<Array<TestClass>>().descriptor.getNavType()).isEqualTo(UNKNOWN)
 
         assertThat(serializer<Array<List<Double>>>().descriptor.getNavType()).isEqualTo(UNKNOWN)
@@ -733,8 +708,7 @@
 
     @Serializable
     class TestBaseClass(val arg: Int) {
-        @Serializable
-        class Nested
+        @Serializable class Nested
     }
 
     @Serializable
@@ -748,21 +722,18 @@
         Second
     }
 
-    @Serializable
-    class ParamDerivedTwo : Param()
+    @Serializable class ParamDerivedTwo : Param()
 
-    @Serializable
-    class ParamDerived : Param()
+    @Serializable class ParamDerived : Param()
 
-    @Serializable
-    open class Param
+    @Serializable open class Param
 
     @Serializable
     class TestParcelable(val arg: Int, val arg2: String) : Parcelable {
         override fun describeContents() = 0
-        override fun writeToParcel(dest: Parcel, flags: Int) { }
+
+        override fun writeToParcel(dest: Parcel, flags: Int) {}
     }
 
-    @Serializable
-    class TestSerializable(val arg: Int, val arg2: String) : java.io.Serializable
+    @Serializable class TestSerializable(val arg: Int, val arg2: String) : java.io.Serializable
 }
diff --git a/navigation/navigation-common/src/test/java/androidx/navigation/serialization/RoutePatternTest.kt b/navigation/navigation-common/src/test/java/androidx/navigation/serialization/RoutePatternTest.kt
index dee4366..17f4cc4 100644
--- a/navigation/navigation-common/src/test/java/androidx/navigation/serialization/RoutePatternTest.kt
+++ b/navigation/navigation-common/src/test/java/androidx/navigation/serialization/RoutePatternTest.kt
@@ -44,44 +44,31 @@
 
     @Test
     fun basePath() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass
 
         assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
     fun pathArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
     fun multiplePathArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String, val arg2: Int)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String, val arg2: Int)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}/{arg2}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME/{arg}/{arg2}")
     }
 
     @Test
     fun pathArgNullable() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String?)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String?)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
@@ -90,20 +77,15 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val arg: String?, val arg2: Int?)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}/{arg2}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME/{arg}/{arg2}")
     }
 
     @Test
     fun queryArg() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String = "test")
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String = "test")
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?arg={arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME?arg={arg}")
     }
 
     @Test
@@ -112,31 +94,22 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val arg: String = "test", val arg2: Int = 0)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?arg={arg}&arg2={arg2}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME?arg={arg}&arg2={arg2}")
     }
 
     @Test
     fun queryArgNullable() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: String? = "test")
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: String? = "test")
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?arg={arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME?arg={arg}")
     }
 
     @Test
     fun queryArgWithNullDefaultValue() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: Int? = null)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: Int? = null)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?arg={arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME?arg={arg}")
     }
 
     @Test
@@ -145,9 +118,8 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val arg: String? = "test", val arg2: Int? = 0)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?arg={arg}&arg2={arg2}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME?arg={arg}&arg2={arg2}")
     }
 
     @Test
@@ -156,9 +128,8 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val pathArg: String, val queryArg: Int = 0)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{pathArg}?queryArg={queryArg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME/{pathArg}?queryArg={queryArg}")
     }
 
     @Test
@@ -167,9 +138,8 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val queryArg: Int = 0, val pathArg: String)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{pathArg}?queryArg={queryArg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME/{pathArg}?queryArg={queryArg}")
     }
 
     @Test
@@ -178,31 +148,24 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val pathArg: String?, val queryArg: Int? = 0)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{pathArg}?queryArg={queryArg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME/{pathArg}?queryArg={queryArg}")
     }
 
     @Test
     fun arrayType() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val array: IntArray)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val array: IntArray)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?array={array}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME?array={array}")
     }
 
     @Test
     fun optionalArrayType() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val array: IntArray?)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val array: IntArray?)
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?array={array}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME?array={array}")
     }
 
     @Test
@@ -214,23 +177,19 @@
         }
 
         // only class members would show up on routePattern
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
     fun withCompanionObject() {
-        assertThatRoutePatternFrom(serializer<ClassWithCompanionObject>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<ClassWithCompanionObject>())
+            .isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
     fun withCompanionParameter() {
-        assertThatRoutePatternFrom(serializer<ClassWithCompanionParam>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<ClassWithCompanionParam>())
+            .isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
@@ -238,61 +197,60 @@
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val arg: String) {
-            fun testFun() { }
+            fun testFun() {}
         }
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
     fun customParamType() {
-        @Serializable
-        class CustomType
+        @Serializable class CustomType
 
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val custom: CustomType)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val custom: CustomType)
 
-        val type = object : NavType<CustomType>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(bundle: Bundle, key: String, value: CustomType) { }
-            override fun get(bundle: Bundle, key: String): CustomType? = null
-            override fun parseValue(value: String): CustomType = CustomType()
-            override fun serializeAsValue(value: CustomType) = "customValue"
-        }
+        val type =
+            object : NavType<CustomType>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(bundle: Bundle, key: String, value: CustomType) {}
+
+                override fun get(bundle: Bundle, key: String): CustomType? = null
+
+                override fun parseValue(value: String): CustomType = CustomType()
+
+                override fun serializeAsValue(value: CustomType) = "customValue"
+            }
         val map = mapOf(typeOf<CustomType>() to type)
-        assertThatRoutePatternFrom(serializer<TestClass>(), map).isEqualTo(
-            "$PATH_SERIAL_NAME/{custom}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>(), map)
+            .isEqualTo("$PATH_SERIAL_NAME/{custom}")
     }
 
     @Test
     fun nestedCustomParamType() {
-        @Serializable
-        class NestedCustomType
+        @Serializable class NestedCustomType
 
-        @Serializable
-        class CustomType(val nested: NestedCustomType)
+        @Serializable class CustomType(val nested: NestedCustomType)
 
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val custom: CustomType)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val custom: CustomType)
 
-        val type = object : NavType<CustomType>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(bundle: Bundle, key: String, value: CustomType) { }
-            override fun get(bundle: Bundle, key: String): CustomType? = null
-            override fun parseValue(value: String): CustomType = CustomType(NestedCustomType())
-            override fun serializeAsValue(value: CustomType) = "customValue"
-        }
+        val type =
+            object : NavType<CustomType>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(bundle: Bundle, key: String, value: CustomType) {}
+
+                override fun get(bundle: Bundle, key: String): CustomType? = null
+
+                override fun parseValue(value: String): CustomType = CustomType(NestedCustomType())
+
+                override fun serializeAsValue(value: CustomType) = "customValue"
+            }
         val map = mapOf(typeOf<CustomType>() to type)
-        assertThatRoutePatternFrom(serializer<TestClass>(), map).isEqualTo(
-            "$PATH_SERIAL_NAME/{custom}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>(), map)
+            .isEqualTo("$PATH_SERIAL_NAME/{custom}")
     }
 
     @Test
@@ -301,76 +259,85 @@
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val arg: Int, val arg2: CustomSerializerClass)
 
-        val type = object : NavType<CustomSerializerClass>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(bundle: Bundle, key: String, value: CustomSerializerClass) { }
-            override fun get(bundle: Bundle, key: String): CustomSerializerClass? = null
-            override fun parseValue(value: String): CustomSerializerClass =
-                CustomSerializerClass(1L)
-            override fun serializeAsValue(value: CustomSerializerClass) = "customValue"
-        }
+        val type =
+            object : NavType<CustomSerializerClass>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(bundle: Bundle, key: String, value: CustomSerializerClass) {}
+
+                override fun get(bundle: Bundle, key: String): CustomSerializerClass? = null
+
+                override fun parseValue(value: String): CustomSerializerClass =
+                    CustomSerializerClass(1L)
+
+                override fun serializeAsValue(value: CustomSerializerClass) = "customValue"
+            }
         val map = mapOf(typeOf<CustomSerializerClass>() to type)
-        assertThatRoutePatternFrom(serializer<TestClass>(), map).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}/{arg2}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>(), map)
+            .isEqualTo("$PATH_SERIAL_NAME/{arg}/{arg2}")
     }
 
     @Test
     fun customTypeParam() {
-        @Serializable
-        open class TypeParam
-        @Serializable
-        class CustomType<T : TypeParam>
+        @Serializable open class TypeParam
+        @Serializable class CustomType<T : TypeParam>
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val custom: CustomType<TypeParam>)
 
-        val type = object : NavType<CustomType<TypeParam>>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(bundle: Bundle, key: String, value: CustomType<TypeParam>) { }
-            override fun get(bundle: Bundle, key: String): CustomType<TypeParam>? = null
-            override fun parseValue(value: String): CustomType<TypeParam> = CustomType()
-            override fun serializeAsValue(value: CustomType<TypeParam>) = "customValue"
-        }
+        val type =
+            object : NavType<CustomType<TypeParam>>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(bundle: Bundle, key: String, value: CustomType<TypeParam>) {}
+
+                override fun get(bundle: Bundle, key: String): CustomType<TypeParam>? = null
+
+                override fun parseValue(value: String): CustomType<TypeParam> = CustomType()
+
+                override fun serializeAsValue(value: CustomType<TypeParam>) = "customValue"
+            }
         val map = mapOf(typeOf<CustomType<TypeParam>>() to type)
-        assertThatRoutePatternFrom(serializer<TestClass>(), map).isEqualTo(
-            "$PATH_SERIAL_NAME/{custom}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>(), map)
+            .isEqualTo("$PATH_SERIAL_NAME/{custom}")
     }
 
     @Test
     fun customTypeParamNested() {
-        @Serializable
-        open class TypeParamNested
-        @Serializable
-        open class TypeParam<K : TypeParamNested>
-        @Serializable
-        class CustomType<T : TypeParam<TypeParamNested>>
+        @Serializable open class TypeParamNested
+        @Serializable open class TypeParam<K : TypeParamNested>
+        @Serializable class CustomType<T : TypeParam<TypeParamNested>>
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val custom: CustomType<TypeParam<TypeParamNested>>)
 
-        val type = object : NavType<CustomType<TypeParam<TypeParamNested>>>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(
-                bundle: Bundle,
-                key: String,
-                value: CustomType<TypeParam<TypeParamNested>>
-            ) { }
-            override fun get(bundle: Bundle, key: String): CustomType<TypeParam<TypeParamNested>>? =
-                null
-            override fun parseValue(value: String): CustomType<TypeParam<TypeParamNested>> =
-                CustomType()
-            override fun serializeAsValue(value: CustomType<TypeParam<TypeParamNested>>) =
-                "customValue"
-        }
+        val type =
+            object : NavType<CustomType<TypeParam<TypeParamNested>>>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(
+                    bundle: Bundle,
+                    key: String,
+                    value: CustomType<TypeParam<TypeParamNested>>
+                ) {}
+
+                override fun get(
+                    bundle: Bundle,
+                    key: String
+                ): CustomType<TypeParam<TypeParamNested>>? = null
+
+                override fun parseValue(value: String): CustomType<TypeParam<TypeParamNested>> =
+                    CustomType()
+
+                override fun serializeAsValue(value: CustomType<TypeParam<TypeParamNested>>) =
+                    "customValue"
+            }
         val map = mapOf(typeOf<CustomType<TypeParam<TypeParamNested>>>() to type)
-        assertThatRoutePatternFrom(serializer<TestClass>(), map).isEqualTo(
-            "$PATH_SERIAL_NAME/{custom}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>(), map)
+            .isEqualTo("$PATH_SERIAL_NAME/{custom}")
     }
 
     @Test
@@ -383,9 +350,7 @@
         }
 
         // only members with backing field should appear on routePattern
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
@@ -396,39 +361,39 @@
             val arg: Int = 0
         }
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME?arg={arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME?arg={arg}")
     }
 
     @Test
     fun pathArgFromClassBody() {
-        @Serializable
-        class CustomType
+        @Serializable class CustomType
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass {
             lateinit var arg: CustomType
         }
 
-        val type = object : NavType<CustomType>(false) {
-            override val name: String
-                get() = "CustomType"
-            override fun put(bundle: Bundle, key: String, value: CustomType) { }
-            override fun get(bundle: Bundle, key: String): CustomType? = null
-            override fun parseValue(value: String): CustomType = CustomType()
-            override fun serializeAsValue(value: CustomType) = "customValue"
-        }
+        val type =
+            object : NavType<CustomType>(false) {
+                override val name: String
+                    get() = "CustomType"
+
+                override fun put(bundle: Bundle, key: String, value: CustomType) {}
+
+                override fun get(bundle: Bundle, key: String): CustomType? = null
+
+                override fun parseValue(value: String): CustomType = CustomType()
+
+                override fun serializeAsValue(value: CustomType) = "customValue"
+            }
         val map = mapOf(typeOf<CustomType>() to type)
-        assertThatRoutePatternFrom(serializer<TestClass>(), map).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>(), map)
+            .isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
     fun nonSerializableClassInvalid() {
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass
+        @SerialName(PATH_SERIAL_NAME) class TestClass
 
         assertFailsWith<SerializationException> {
             // the class must be serializable
@@ -438,102 +403,87 @@
 
     @Test
     fun abstractClassInvalid() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        abstract class TestClass
+        @Serializable @SerialName(PATH_SERIAL_NAME) abstract class TestClass
 
-        val patternException = assertFailsWith<IllegalArgumentException> {
-            serializer<TestClass>().generateRoutePattern()
-        }
-        assertThat(patternException.message).isEqualTo(
-            "Cannot generate route pattern from polymorphic class TestClass. Routes " +
-                "can only be generated from concrete classes or objects."
-        )
+        val patternException =
+            assertFailsWith<IllegalArgumentException> {
+                serializer<TestClass>().generateRoutePattern()
+            }
+        assertThat(patternException.message)
+            .isEqualTo(
+                "Cannot generate route pattern from polymorphic class TestClass. Routes " +
+                    "can only be generated from concrete classes or objects."
+            )
     }
 
     @Test
     fun childClassOfAbstract() {
-        @Serializable
-        abstract class TestAbstractClass
+        @Serializable abstract class TestAbstractClass
 
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass : TestAbstractClass()
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass : TestAbstractClass()
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
     fun childClassOfAbstract_duplicateArgs() {
-        @Serializable
-        abstract class TestAbstractClass(val arg: Int)
+        @Serializable abstract class TestAbstractClass(val arg: Int)
 
         @Serializable
         @SerialName(PATH_SERIAL_NAME)
         class TestClass(val arg2: Int) : TestAbstractClass(0)
 
         // args will be duplicated
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}/{arg2}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME/{arg}/{arg2}")
     }
 
     @Test
     fun childClassOfSealed_withArgs() {
         // child class overrides parent variable so only child variable shows up in route pattern
-        assertThatRoutePatternFrom(serializer<SealedClass.TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg2}"
-        )
+        assertThatRoutePatternFrom(serializer<SealedClass.TestClass>())
+            .isEqualTo("$PATH_SERIAL_NAME/{arg2}")
     }
 
     @Test
     fun childClassOfInterface() {
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val arg: Int) : TestInterface
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val arg: Int) : TestInterface
 
-        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo(
-            "$PATH_SERIAL_NAME/{arg}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>()).isEqualTo("$PATH_SERIAL_NAME/{arg}")
     }
 
     @Test
     fun routeFromPlainObject() {
-        assertThatRoutePatternFrom(serializer<TestObject>()).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+        assertThatRoutePatternFrom(serializer<TestObject>()).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
     fun routeFromObject_argsNotSerialized() {
         // object variables are not serialized and does not show up on routePattern
-        assertThatRoutePatternFrom(serializer<TestObjectWithArg>()).isEqualTo(
-            PATH_SERIAL_NAME
-        )
+        assertThatRoutePatternFrom(serializer<TestObjectWithArg>()).isEqualTo(PATH_SERIAL_NAME)
     }
 
     @Test
     fun collectionNavType() {
-        @Serializable
-        class CustomType
+        @Serializable class CustomType
 
-        @Serializable
-        @SerialName(PATH_SERIAL_NAME)
-        class TestClass(val list: List<CustomType>)
+        @Serializable @SerialName(PATH_SERIAL_NAME) class TestClass(val list: List<CustomType>)
 
-        val type = object : CollectionNavType<List<CustomType>>(false) {
-            override fun put(bundle: Bundle, key: String, value: List<CustomType>) { }
-            override fun serializeAsValues(value: List<CustomType>): List<String> = emptyList()
-            override fun get(bundle: Bundle, key: String): List<CustomType>? = null
-            override fun parseValue(value: String): List<CustomType> = listOf()
-            override fun serializeAsValue(value: List<CustomType>) = "customValue"
-        }
+        val type =
+            object : CollectionNavType<List<CustomType>>(false) {
+                override fun put(bundle: Bundle, key: String, value: List<CustomType>) {}
+
+                override fun serializeAsValues(value: List<CustomType>): List<String> = emptyList()
+
+                override fun get(bundle: Bundle, key: String): List<CustomType>? = null
+
+                override fun parseValue(value: String): List<CustomType> = listOf()
+
+                override fun serializeAsValue(value: List<CustomType>) = "customValue"
+            }
         val map = mapOf(typeOf<List<CustomType>>() to type)
-        assertThatRoutePatternFrom(serializer<TestClass>(), map).isEqualTo(
-            "$PATH_SERIAL_NAME?list={list}"
-        )
+        assertThatRoutePatternFrom(serializer<TestClass>(), map)
+            .isEqualTo("$PATH_SERIAL_NAME?list={list}")
     }
 }
 
@@ -560,9 +510,7 @@
     }
 }
 
-@Serializable
-@SerialName(PATH_SERIAL_NAME)
-internal object TestObject
+@Serializable @SerialName(PATH_SERIAL_NAME) internal object TestObject
 
 @Serializable
 @SerialName(PATH_SERIAL_NAME)
@@ -587,11 +535,12 @@
 internal open class CustomSerializerClass(val longArg: Long)
 
 internal class CustomSerializer : KSerializer<CustomSerializerClass> {
-    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(
-        "Date", PrimitiveKind.LONG
-    )
+    override val descriptor: SerialDescriptor =
+        PrimitiveSerialDescriptor("Date", PrimitiveKind.LONG)
+
     override fun serialize(encoder: Encoder, value: CustomSerializerClass) =
         encoder.encodeLong(value.longArg)
+
     override fun deserialize(decoder: Decoder): CustomSerializerClass =
         CustomSerializerClass(decoder.decodeLong())
 }
diff --git a/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetector.kt b/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetector.kt
index 0978c5b..e5522b3 100644
--- a/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetector.kt
+++ b/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetector.kt
@@ -39,10 +39,8 @@
  * Composable body.
  */
 class ComposableDestinationInComposeScopeDetector : Detector(), SourceCodeScanner {
-    override fun getApplicableMethodNames(): List<String> = listOf(
-        Composable.shortName,
-        Navigation.shortName
-    )
+    override fun getApplicableMethodNames(): List<String> =
+        listOf(Composable.shortName, Navigation.shortName)
 
     override fun visitMethodCall(context: JavaContext, node: UCallExpression, method: PsiMethod) {
         if (!method.isInPackageName(PackageName)) return
@@ -67,29 +65,35 @@
     }
 
     companion object {
-        val ComposableDestinationInComposeScope = Issue.create(
-            "ComposableDestinationInComposeScope",
-            "Building composable destination in compose scope",
-            "Composable destinations should only be constructed directly within a " +
-                "NavGraphBuilder scope. Composable destinations cannot not be nested, and you " +
-                "should use the `navigation` function to create a nested graph instead.",
-            Category.CORRECTNESS, 3, Severity.ERROR,
-            Implementation(
-                ComposableDestinationInComposeScopeDetector::class.java,
-                EnumSet.of(Scope.JAVA_FILE, Scope.TEST_SOURCES)
+        val ComposableDestinationInComposeScope =
+            Issue.create(
+                "ComposableDestinationInComposeScope",
+                "Building composable destination in compose scope",
+                "Composable destinations should only be constructed directly within a " +
+                    "NavGraphBuilder scope. Composable destinations cannot be nested, and you " +
+                    "should use the `navigation` function to create a nested graph instead.",
+                Category.CORRECTNESS,
+                3,
+                Severity.ERROR,
+                Implementation(
+                    ComposableDestinationInComposeScopeDetector::class.java,
+                    EnumSet.of(Scope.JAVA_FILE, Scope.TEST_SOURCES)
+                )
             )
-        )
-        val ComposableNavGraphInComposeScope = Issue.create(
-            "ComposableNavGraphInComposeScope",
-            "Building navigation graph in compose scope",
-            "Composable destinations should only be constructed directly within a " +
-                "NavGraphBuilder scope.",
-            Category.CORRECTNESS, 3, Severity.ERROR,
-            Implementation(
-                ComposableDestinationInComposeScopeDetector::class.java,
-                EnumSet.of(Scope.JAVA_FILE, Scope.TEST_SOURCES)
+        val ComposableNavGraphInComposeScope =
+            Issue.create(
+                "ComposableNavGraphInComposeScope",
+                "Building navigation graph in compose scope",
+                "Composable destinations should only be constructed directly within a " +
+                    "NavGraphBuilder scope.",
+                Category.CORRECTNESS,
+                3,
+                Severity.ERROR,
+                Implementation(
+                    ComposableDestinationInComposeScopeDetector::class.java,
+                    EnumSet.of(Scope.JAVA_FILE, Scope.TEST_SOURCES)
+                )
             )
-        )
     }
 }
 
diff --git a/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/NavigationComposeIssueRegistry.kt b/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/NavigationComposeIssueRegistry.kt
index ee9cf21..c4ee689 100644
--- a/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/NavigationComposeIssueRegistry.kt
+++ b/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/NavigationComposeIssueRegistry.kt
@@ -22,20 +22,22 @@
 import com.android.tools.lint.client.api.Vendor
 import com.android.tools.lint.detector.api.CURRENT_API
 
-/**
- * [IssueRegistry] containing runtime specific lint issues.
- */
+/** [IssueRegistry] containing runtime specific lint issues. */
 class NavigationComposeIssueRegistry : IssueRegistry() {
     // Tests are run with this version. We ensure that with ApiLintVersionsTest
     override val api = 14
     override val minApi = CURRENT_API
-    override val issues get() = listOf(
-        ComposableDestinationInComposeScopeDetector.ComposableDestinationInComposeScope,
-        ComposableDestinationInComposeScopeDetector.ComposableNavGraphInComposeScope,
-        UnrememberedGetBackStackEntryDetector.UnrememberedGetBackStackEntry
-    )
-    override val vendor = Vendor(
-        vendorName = "Jetpack Navigation Compose",
-        identifier = "androidx.navigation.compose"
-    )
+    override val issues
+        get() =
+            listOf(
+                ComposableDestinationInComposeScopeDetector.ComposableDestinationInComposeScope,
+                ComposableDestinationInComposeScopeDetector.ComposableNavGraphInComposeScope,
+                UnrememberedGetBackStackEntryDetector.UnrememberedGetBackStackEntry
+            )
+
+    override val vendor =
+        Vendor(
+            vendorName = "Jetpack Navigation Compose",
+            identifier = "androidx.navigation.compose"
+        )
 }
diff --git a/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetector.kt b/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetector.kt
index 4313039..fb44fc4 100644
--- a/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetector.kt
+++ b/navigation/navigation-compose-lint/src/main/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetector.kt
@@ -39,9 +39,7 @@
  * Composable body, they are `remember`ed with a `NavBackStackEntry` as a key.
  */
 class UnrememberedGetBackStackEntryDetector : Detector(), SourceCodeScanner {
-    override fun getApplicableMethodNames(): List<String> = listOf(
-        GetBackStackEntry.shortName
-    )
+    override fun getApplicableMethodNames(): List<String> = listOf(GetBackStackEntry.shortName)
 
     override fun visitMethodCall(context: JavaContext, node: UCallExpression, method: PsiMethod) {
         if (!method.isInPackageName(PackageName)) return
@@ -58,23 +56,26 @@
     }
 
     companion object {
-        val UnrememberedGetBackStackEntry = Issue.create(
-            "UnrememberedGetBackStackEntry",
-            "Calling getBackStackEntry during composition without using `remember`" +
-                "with a NavBackStackEntry key",
-            "Backstack entries retrieved during composition need to be `remember`ed, otherwise " +
-                "they will be retrieved from the navController again, and be changed. You also " +
-                "need to pass in a key of a NavBackStackEntry to the remember call or they will " +
-                "not be updated properly. If this is in a `NavGraphBuilder.composable` scope, " +
-                "you should pass in the lambda's given entry as the key. Either hoist the state " +
-                "to an object that is not created during composition, or wrap the state in a " +
-                "call to `remember` with a `NavBackStackEntry` as a key.",
-            Category.CORRECTNESS, 3, Severity.ERROR,
-            Implementation(
-                UnrememberedGetBackStackEntryDetector::class.java,
-                EnumSet.of(Scope.JAVA_FILE, Scope.TEST_SOURCES)
+        val UnrememberedGetBackStackEntry =
+            Issue.create(
+                "UnrememberedGetBackStackEntry",
+                "Calling getBackStackEntry during composition without using `remember`" +
+                    "with a NavBackStackEntry key",
+                "Backstack entries retrieved during composition need to be `remember`ed, otherwise " +
+                    "they will be retrieved from the navController again, and be changed. You also " +
+                    "need to pass in a key of a NavBackStackEntry to the remember call or they will " +
+                    "not be updated properly. If this is in a `NavGraphBuilder.composable` scope, " +
+                    "you should pass in the lambda's given entry as the key. Either hoist the state " +
+                    "to an object that is not created during composition, or wrap the state in a " +
+                    "call to `remember` with a `NavBackStackEntry` as a key.",
+                Category.CORRECTNESS,
+                3,
+                Severity.ERROR,
+                Implementation(
+                    UnrememberedGetBackStackEntryDetector::class.java,
+                    EnumSet.of(Scope.JAVA_FILE, Scope.TEST_SOURCES)
+                )
             )
-        )
     }
 }
 
diff --git a/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetectorTest.kt b/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetectorTest.kt
index 28a9253..399b9dd 100644
--- a/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetectorTest.kt
+++ b/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/ComposableDestinationInComposeScopeDetectorTest.kt
@@ -29,9 +29,7 @@
 /* ktlint-disable max-line-length */
 @RunWith(JUnit4::class)
 
-/**
- * Test for [ComposableDestinationInComposeScopeDetector].
- */
+/** Test for [ComposableDestinationInComposeScopeDetector]. */
 class ComposableDestinationInComposeScopeDetectorTest : LintDetectorTest() {
     override fun getDetector(): Detector = ComposableDestinationInComposeScopeDetector()
 
@@ -43,9 +41,10 @@
 
     @Test
     fun expectPass() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                    """
                 package com.example
 
                 import androidx.compose.runtime.*
@@ -65,23 +64,24 @@
                     }
                 }
             """
-            ),
-            Stubs.Composable,
-            NAV_BACK_STACK_ENTRY,
-            NAV_CONTROLLER,
-            NAV_GRAPH_BUILDER,
-            NAV_GRAPH_COMPOSABLE,
-            NAV_HOST
-        )
+                ),
+                Stubs.Composable,
+                NAV_BACK_STACK_ENTRY,
+                NAV_CONTROLLER,
+                NAV_GRAPH_BUILDER,
+                NAV_GRAPH_COMPOSABLE,
+                NAV_HOST
+            )
             .run()
             .expectClean()
     }
 
     @Test
     fun nestedComposableBuilders() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                    """
                 package com.example
 
                 import androidx.compose.runtime.*
@@ -98,14 +98,14 @@
                     }
                 }
             """
-            ),
-            Stubs.Composable,
-            NAV_BACK_STACK_ENTRY,
-            NAV_CONTROLLER,
-            NAV_GRAPH_BUILDER,
-            NAV_GRAPH_COMPOSABLE,
-            NAV_HOST
-        )
+                ),
+                Stubs.Composable,
+                NAV_BACK_STACK_ENTRY,
+                NAV_CONTROLLER,
+                NAV_GRAPH_BUILDER,
+                NAV_GRAPH_COMPOSABLE,
+                NAV_HOST
+            )
             .run()
             .expect(
                 """
@@ -119,9 +119,10 @@
 
     @Test
     fun navigationBuilderInsideComposable() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                    """
                 package com.example
 
                 import androidx.compose.runtime.*
@@ -139,14 +140,14 @@
                     }
                 }
             """
-            ),
-            Stubs.Composable,
-            NAV_BACK_STACK_ENTRY,
-            NAV_CONTROLLER,
-            NAV_GRAPH_BUILDER,
-            NAV_GRAPH_COMPOSABLE,
-            NAV_HOST
-        )
+                ),
+                Stubs.Composable,
+                NAV_BACK_STACK_ENTRY,
+                NAV_CONTROLLER,
+                NAV_GRAPH_BUILDER,
+                NAV_GRAPH_COMPOSABLE,
+                NAV_HOST
+            )
             .run()
             .expect(
                 """
diff --git a/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/Stubs.kt b/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/Stubs.kt
index 28c7915..7d22de8 100644
--- a/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/Stubs.kt
+++ b/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/Stubs.kt
@@ -18,22 +18,24 @@
 
 import androidx.compose.lint.test.bytecodeStub
 
-internal val NAV_BACK_STACK_ENTRY = bytecodeStub(
-    filename = "NavBackStackEntry.kt",
-    filepath = "androidx/navigation",
-    checksum = 0xfef36ae,
-    source = """
+internal val NAV_BACK_STACK_ENTRY =
+    bytecodeStub(
+        filename = "NavBackStackEntry.kt",
+        filepath = "androidx/navigation",
+        checksum = 0xfef36ae,
+        source =
+            """
     package androidx.navigation
 
     public class NavBackStackEntry
 """,
-    """
+        """
     META-INF/main.kotlin_module:
     H4sIAAAAAAAA/2NgYGBmYGBgBGJOBijgUuOSSMxLKcrPTKnQS87PLcgvTtUr
     Ks0rycxNFeIKSs1NzU1KLfIu4RLl4gZK66VWJOYW5KQKsYWkFpd4lygxaDEA
     ALrkMh5XAAAA
     """,
-    """
+        """
     androidx/navigation/NavBackStackEntry.class:
     H4sIAAAAAAAA/41Ru0oDQRQ9d5JsdI2axKjx2YmPwk3EThGMKCysCipprCbZ
     RSePWdidhNjlW/wDK8FCgqUfJd5d7WxsDudxh/uYz6+3dwCH2CBsSe1HofJH
@@ -45,26 +47,28 @@
     NOw0X0txGevpvxFmOCvcI+Ni1sWci3kUmaLkooyFe1CMChY5j2HHWIphfQMn
     9fXa9AEAAA==
     """
-)
+    )
 
-internal val NAV_CONTROLLER = bytecodeStub(
-    filename = "NavController.kt",
-    filepath = "androidx/navigation",
-    checksum = 0xeb9f76f4,
-    source = """
+internal val NAV_CONTROLLER =
+    bytecodeStub(
+        filename = "NavController.kt",
+        filepath = "androidx/navigation",
+        checksum = 0xeb9f76f4,
+        source =
+            """
     package androidx.navigation
 
     public class NavController {
         public fun getBackStackEntry(route: String) = NavBackStackEntry()
     }
 """,
-    """
+        """
     META-INF/main.kotlin_module:
     H4sIAAAAAAAA/2NgYGBmYGBgBGJOBijgUuOSSMxLKcrPTKnQS87PLcgvTtUr
     Ks0rycxNFeIKSs1NzU1KLfIu4RLl4gZK66VWJOYW5KQKsYWkFpd4lygxaDEA
     ALrkMh5XAAAA
     """,
-    """
+        """
     androidx/navigation/NavController.class:
     H4sIAAAAAAAA/41SW08TQRT+ZtruwoJlQbkrioDclAXikzVGIZrU1GrEkBie
     pttJmXY7m+xOG3zjt/gL9AmjiSE++qOMZ8pGrGhkkz3X73wzc875/uPzVwD3
@@ -81,24 +85,26 @@
     cFdI36XfZZnDca8nl7FB+jFFZ4hq9gC5Mq6XcaOMOdwkE7fKmMftA7AUC1g8
     gJvCS7GUwkkxlOJOiiK5PwElc7kHIAQAAA==
     """
-)
+    )
 
-internal val NAV_GRAPH_BUILDER = bytecodeStub(
-    filename = "NavGraphBuilder.kt",
-    filepath = "androidx/navigation",
-    checksum = 0xced68271,
-    source = """
+internal val NAV_GRAPH_BUILDER =
+    bytecodeStub(
+        filename = "NavGraphBuilder.kt",
+        filepath = "androidx/navigation",
+        checksum = 0xced68271,
+        source =
+            """
     package androidx.navigation
 
     public class NavGraphBuilder
 """,
-    """
+        """
     META-INF/main.kotlin_module:
     H4sIAAAAAAAA/2NgYGBmYGBgBGJOBijgsuaSTsxLKcrPTKnQy0ssy0xPLMnM
     z9NLzs8tyC9OFRL0SyxzL0osyHAqzcxJSS3yLhHiBAp55BeXeJdwiXJxAxXq
     pVYk5hbkpAqxhaSChJUYtBgARVljGmwAAAA=
     """,
-    """
+        """
     androidx/navigation/NavGraphBuilder.class:
     H4sIAAAAAAAA/41Ru04CQRQ9d4BFVhTEF/hqjIlauGrsNCZioiFBTNTQUA3s
     BkaWWbM7EEu+xT+wMrEwxNKPMt5dqaxsTs7jzp07d76+3z8AnGCTsC21GwbK
@@ -110,13 +116,15 @@
     QA52kq8nuIqN5McIs5zlW0jVMFfDfA0FFJlioYYSFlugCEtY5jyCHWElgvUD
     nsoUQO4BAAA=
     """
-)
+    )
 
-internal val NAV_GRAPH_COMPOSABLE = bytecodeStub(
-    filename = "NavGraphBuilder.kt",
-    filepath = "androidx/navigation/compose",
-    checksum = 0xc3b35ff,
-    source = """
+internal val NAV_GRAPH_COMPOSABLE =
+    bytecodeStub(
+        filename = "NavGraphBuilder.kt",
+        filepath = "androidx/navigation/compose",
+        checksum = 0xc3b35ff,
+        source =
+            """
     package androidx.navigation.compose
 
     import androidx.compose.runtime.Composable
@@ -129,13 +137,13 @@
 
     public fun NavGraphBuilder.navigation(route: String, builder: NavGraphBuilder.() -> Unit) { }
 """,
-    """
+        """
     META-INF/main.kotlin_module:
     H4sIAAAAAAAA/2NgYGBmYGBgBGJOBijgsuaSTsxLKcrPTKnQy0ssy0xPLMnM
     z9NLzs8tyC9OFRL0SyxzL0osyHAqzcxJSS3yLhHiBAp55BeXeJdwiXJxAxXq
     pVYk5hbkpAqxhaSChJUYtBgARVljGmwAAAA=
     """,
-    """
+        """
     androidx/navigation/compose/NavGraphBuilderKt.class:
     H4sIAAAAAAAA/71UTVMTQRB9s4EkBNRkI8qHIgrIl7ABvw6xqFIKrJQxqCAH
     OU02axiSzFI7kxTcuHqy/Av+A2+WB4vy6I+y7N0kJIFQcNFKpadn5vV7PdM9
@@ -156,26 +164,28 @@
     ZTCewd0M7mEig0lMZXAf0ztgCjOY3cGAQq/CnMINhUTgJBXmFR4oLCgMK4wq
     LP4F8P5Vs6MGAAA=
     """
-)
+    )
 
-internal val NAV_HOST = bytecodeStub(
-    filename = "NavHost.kt",
-    filepath = "androidx/navigation/compose",
-    checksum = 0x6aac9b28,
-    source = """
+internal val NAV_HOST =
+    bytecodeStub(
+        filename = "NavHost.kt",
+        filepath = "androidx/navigation/compose",
+        checksum = 0x6aac9b28,
+        source =
+            """
     package androidx.navigation.compose
 
     import androidx.navigation.NavGraphBuilder
 
     public fun NavHost(route: String, builder: NavGraphBuilder.() -> Unit) { }
 """,
-    """
+        """
     META-INF/main.kotlin_module:
     H4sIAAAAAAAA/2NgYGBmYGBgBGJOBijgsuaSTsxLKcrPTKnQy0ssy0xPLMnM
     z9NLzs8tyC9OFRL0SyxzL0osyHAqzcxJSS3yLhHiBAp55BeXeJdwiXJxAxXq
     pVYk5hbkpAqxhaSChJUYtBgARVljGmwAAAA=
     """,
-    """
+        """
     androidx/navigation/compose/NavHostKt.class:
     H4sIAAAAAAAA/5VSS2/TQBD+1nmHPhKXvgK0hbb0RXFawSkIqVQUrIaAaMml
     p42zpJs468peR+XW38I/4IY4oIojPwoxdpI2UpGAg7+Znf1m5vPM/vz17TuA
@@ -192,4 +202,4 @@
     P9MnIoepuNA4irhN9xsxO4PNKGZQIBt3ycbhrRhX8YjsPkWnqffMCRI2Zm3M
     2aSlZOMO7tq4h4UTsACLWDpBNkAqwP0AuRiLAR4EWA6w8hvNMdYWNAQAAA==
     """
-)
+    )
diff --git a/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetectorTest.kt b/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetectorTest.kt
index 4874559..5997275 100644
--- a/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetectorTest.kt
+++ b/navigation/navigation-compose-lint/src/test/java/androidx/navigation/compose/lint/UnrememberedGetBackStackEntryDetectorTest.kt
@@ -30,9 +30,7 @@
 /* ktlint-disable max-line-length */
 @RunWith(JUnit4::class)
 
-/**
- * Test for [UnrememberedGetBackStackEntryDetector].
- */
+/** Test for [UnrememberedGetBackStackEntryDetector]. */
 class UnrememberedGetBackStackEntryDetectorTest : LintDetectorTest() {
     override fun getDetector(): Detector = UnrememberedGetBackStackEntryDetector()
 
@@ -41,9 +39,10 @@
 
     @Test
     fun notRemembered() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                    """
                 package com.example
 
                 import androidx.compose.runtime.*
@@ -100,10 +99,10 @@
                     }
                 }
             """
-            ),
-            Stubs.Composable,
-            NAV_CONTROLLER
-        )
+                ),
+                Stubs.Composable,
+                NAV_CONTROLLER
+            )
             .skipTestModes(TestMode.TYPE_ALIAS)
             .run()
             .expect(
@@ -139,9 +138,10 @@
 
     @Test
     fun rememberedInsideComposableBodyWithoutEntryKey() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                    """
                 package com.example
 
                 import androidx.compose.runtime.*
@@ -190,12 +190,12 @@
                     }
                 }
             """
-            ),
-            Stubs.Composable,
-            Stubs.Remember,
-            NAV_CONTROLLER,
-            NAV_BACK_STACK_ENTRY
-        )
+                ),
+                Stubs.Composable,
+                Stubs.Remember,
+                NAV_CONTROLLER,
+                NAV_BACK_STACK_ENTRY
+            )
             .run()
             .expect(
                 """
@@ -227,9 +227,10 @@
 
     @Test
     fun rememberedInsideComposableBodyWithEntryKey() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                    """
                 package com.example
 
                 import androidx.compose.runtime.*
@@ -286,21 +287,22 @@
                     }
                 }
             """
-            ),
-            Stubs.Composable,
-            Stubs.Remember,
-            NAV_BACK_STACK_ENTRY,
-            NAV_CONTROLLER
-        )
+                ),
+                Stubs.Composable,
+                Stubs.Remember,
+                NAV_BACK_STACK_ENTRY,
+                NAV_CONTROLLER
+            )
             .run()
             .expectClean()
     }
 
     @Test
     fun noErrors() {
-        lint().files(
-            kotlin(
-                """
+        lint()
+            .files(
+                kotlin(
+                    """
                 package com.example
 
                 import androidx.compose.runtime.*
@@ -366,12 +368,12 @@
                     }
                 }
             """
-            ),
-            Stubs.Composable,
-            Stubs.Remember,
-            NAV_CONTROLLER,
-            NAV_BACK_STACK_ENTRY
-        )
+                ),
+                Stubs.Composable,
+                Stubs.Remember,
+                NAV_CONTROLLER,
+                NAV_BACK_STACK_ENTRY
+            )
             .run()
             .expectClean()
     }
diff --git a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/BottomBarNavDemo.kt b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/BottomBarNavDemo.kt
index d2a4ef6..b87b64c 100644
--- a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/BottomBarNavDemo.kt
+++ b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/BottomBarNavDemo.kt
@@ -45,11 +45,12 @@
 fun BottomBarNavDemo() {
     val navController = rememberNavController()
 
-    val items = listOf(
-        stringResource(R.string.profile) to Profile,
-        stringResource(R.string.dashboard) to Dashboard(),
-        stringResource(R.string.scrollable) to Scrollable
-    )
+    val items =
+        listOf(
+            stringResource(R.string.profile) to Profile,
+            stringResource(R.string.dashboard) to Dashboard(),
+            stringResource(R.string.scrollable) to Scrollable
+        )
 
     Scaffold(
         bottomBar = {
@@ -60,9 +61,10 @@
                     BottomNavigationItem(
                         icon = { Icon(Icons.Filled.Favorite, contentDescription = null) },
                         label = { Text(name) },
-                        selected = currentDestination?.hierarchy?.any {
-                            it.hasRoute(destination::class)
-                        } == true,
+                        selected =
+                            currentDestination?.hierarchy?.any {
+                                it.hasRoute(destination::class)
+                            } == true,
                         onClick = {
                             navController.navigate(destination) {
                                 launchSingleTop = true
diff --git a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavByDeepLinkDemo.kt b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavByDeepLinkDemo.kt
index c715ee7..af0dcd9d2 100644
--- a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavByDeepLinkDemo.kt
+++ b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavByDeepLinkDemo.kt
@@ -48,12 +48,7 @@
     val navController = rememberNavController()
     val basePath = "https://example.com"
     NavHost(navController, startDestination = Profile) {
-        composable<Profile> {
-            ProfileWithDeepLink(
-                navController,
-                "$basePath?userId="
-            )
-        }
+        composable<Profile> { ProfileWithDeepLink(navController, "$basePath?userId=") }
         composable<Dashboard>(
             // use the same args from Destination.Dashboard with custom uri base path
             deepLinks = listOf(navDeepLink<Dashboard>(basePath))
diff --git a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavPopUpToDemo.kt b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavPopUpToDemo.kt
index eed030c..00632bd 100644
--- a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavPopUpToDemo.kt
+++ b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavPopUpToDemo.kt
@@ -34,8 +34,7 @@
 import androidx.navigation.toRoute
 import kotlinx.serialization.Serializable
 
-@Serializable
-class NumberedDestination(val number: Int)
+@Serializable class NumberedDestination(val number: Int)
 
 @Composable
 fun NavPopUpToDemo() {
@@ -64,9 +63,11 @@
         if (navController.previousBackStackEntry != null) {
             val firstScreen = NumberedDestination(1)
             Button(
-                onClick = { navController.navigate(firstScreen) {
-                    popUpTo(firstScreen) { inclusive = true }
-                } },
+                onClick = {
+                    navController.navigate(firstScreen) {
+                        popUpTo(firstScreen) { inclusive = true }
+                    }
+                },
                 colors = ButtonDefaults.buttonColors(backgroundColor = Color.LightGray),
                 modifier = Modifier.fillMaxWidth()
             ) {
diff --git a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavSingleTopDemo.kt b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavSingleTopDemo.kt
index 6250ce4..3191bd7 100644
--- a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavSingleTopDemo.kt
+++ b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavSingleTopDemo.kt
@@ -46,27 +46,21 @@
             placeholder = { Text("Search") }
         )
         NavigateButton("Search") {
-            navController.navigate(SearchScreen(query.value)) {
-                launchSingleTop = true
-            }
+            navController.navigate(SearchScreen(query.value)) { launchSingleTop = true }
         }
         NavHost(navController, startDestination = StartScreen::class) {
             composable<StartScreen> { StartScreen() }
             composable<SearchScreen> { backStackEntry ->
                 val args = backStackEntry.toRoute<SearchScreen>()
-                SearchResultScreen(
-                    args.query
-                )
+                SearchResultScreen(args.query)
             }
         }
     }
 }
 
-@Serializable
-object StartScreen
+@Serializable object StartScreen
 
-@Serializable
-data class SearchScreen(val query: String)
+@Serializable data class SearchScreen(val query: String)
 
 @Composable
 fun StartScreen() {
diff --git a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavigationDemos.kt b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavigationDemos.kt
index 378f5b2..c1df0aa 100644
--- a/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavigationDemos.kt
+++ b/navigation/navigation-compose/integration-tests/navigation-demos/src/main/java/androidx/navigation/compose/demos/NavigationDemos.kt
@@ -19,19 +19,22 @@
 import androidx.compose.integration.demos.common.ComposableDemo
 import androidx.compose.integration.demos.common.DemoCategory
 
-val NavigationDemos = DemoCategory(
-    "Navigation",
-    listOf(
-        ComposableDemo("Basic Nav Demo") { BasicNavDemo() },
-        ComposableDemo("Animated Nav Demo") { AnimatedDemo() },
-        ComposableDemo("Nested Nav Start Destination Demo") { NestNavStartDestinationDemo() },
-        ComposableDemo("Nested Nav In Graph Demo") { NestNavInGraphDemo() },
-        ComposableDemo("Bottom Bar Nav Demo") { BottomBarNavDemo() },
-        ComposableDemo("Navigation with Args") { NavWithArgsDemo() },
-        ComposableDemo("Navigation with Args in Nested Graph") { NavWithArgsInNestedGraphDemo() },
-        ComposableDemo("Navigation by DeepLink") { NavByDeepLinkDemo() },
-        ComposableDemo("Navigation PopUpTo") { NavPopUpToDemo() },
-        ComposableDemo("Navigation SingleTop") { NavSingleTopDemo() },
-        ComposableDemo("Size Transform Demo") { SizeTransformDemo() }
+val NavigationDemos =
+    DemoCategory(
+        "Navigation",
+        listOf(
+            ComposableDemo("Basic Nav Demo") { BasicNavDemo() },
+            ComposableDemo("Animated Nav Demo") { AnimatedDemo() },
+            ComposableDemo("Nested Nav Start Destination Demo") { NestNavStartDestinationDemo() },
+            ComposableDemo("Nested Nav In Graph Demo") { NestNavInGraphDemo() },
+            ComposableDemo("Bottom Bar Nav Demo") { BottomBarNavDemo() },
+            ComposableDemo("Navigation with Args") { NavWithArgsDemo() },
+            ComposableDemo("Navigation with Args in Nested Graph") {
+                NavWithArgsInNestedGraphDemo()
+            },
+            ComposableDemo("Navigation by DeepLink") { NavByDeepLinkDemo() },
+            ComposableDemo("Navigation PopUpTo") { NavPopUpToDemo() },
+            ComposableDemo("Navigation SingleTop") { NavSingleTopDemo() },
+            ComposableDemo("Size Transform Demo") { SizeTransformDemo() }
+        )
     )
-)
diff --git a/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/NavigationSamples.kt b/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/NavigationSamples.kt
index 02acffa..d6426a7 100644
--- a/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/NavigationSamples.kt
+++ b/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/NavigationSamples.kt
@@ -65,29 +65,31 @@
 import kotlinx.serialization.decodeFromString
 import kotlinx.serialization.json.Json
 
-@Serializable object Profile {
+@Serializable
+object Profile {
     val resourceId: Int = R.string.profile
 }
 
-@Serializable object Scrollable {
+@Serializable
+object Scrollable {
     val resourceId: Int = R.string.scrollable
 }
 
-@Serializable object Dialog {
+@Serializable
+object Dialog {
     val resourceId: Int = R.string.dialog
 }
 
-@Serializable data class Dashboard(val userId: String? = "no value given") {
+@Serializable
+data class Dashboard(val userId: String? = "no value given") {
     companion object {
         val resourceId: Int = R.string.dashboard
     }
 }
 
-@Serializable
-object Nested
+@Serializable object Nested
 
-@Serializable
-data class NestedWithArg(val userId: String? = "default nested arg")
+@Serializable data class NestedWithArg(val userId: String? = "default nested arg")
 
 @Composable
 fun BasicNav() {
@@ -199,17 +201,11 @@
 fun Profile(navController: NavHostController) {
     Column(Modifier.fillMaxSize().then(Modifier.padding(8.dp))) {
         Text(text = stringResource(Profile.resourceId))
-        NavigateButton(stringResource(Dashboard.resourceId)) {
-            navController.navigate(Dashboard())
-        }
+        NavigateButton(stringResource(Dashboard.resourceId)) { navController.navigate(Dashboard()) }
         Divider(color = Color.Black)
-        NavigateButton(stringResource(Scrollable.resourceId)) {
-            navController.navigate(Scrollable)
-        }
+        NavigateButton(stringResource(Scrollable.resourceId)) { navController.navigate(Scrollable) }
         Divider(color = Color.Black)
-        NavigateButton(stringResource(Dialog.resourceId)) {
-            navController.navigate(Dialog)
-        }
+        NavigateButton(stringResource(Dialog.resourceId)) { navController.navigate(Dialog) }
         Spacer(Modifier.weight(1f))
         NavigateBackButton(navController)
     }
@@ -229,9 +225,7 @@
             )
         }
         Divider(color = Color.Black)
-        NavigateButton("Dashboard with userId") {
-            navController.navigate(Dashboard(state.value))
-        }
+        NavigateButton("Dashboard with userId") { navController.navigate(Dashboard(state.value)) }
     }
 }
 
@@ -247,13 +241,9 @@
 @Composable
 fun Scrollable(navController: NavController) {
     Column(Modifier.fillMaxSize().then(Modifier.padding(8.dp))) {
-        NavigateButton(stringResource(Dashboard.resourceId)) {
-            navController.navigate(Dashboard())
-        }
+        NavigateButton(stringResource(Dashboard.resourceId)) { navController.navigate(Dashboard()) }
         LazyColumn(modifier = Modifier.weight(1f)) {
-            items(phrases) { phrase ->
-                Text(phrase, fontSize = 30.sp)
-            }
+            items(phrases) { phrase -> Text(phrase, fontSize = 30.sp) }
         }
         NavigateBackButton(navController)
     }
@@ -266,18 +256,13 @@
     Column(Modifier.size(dialogWidth, dialogHeight).background(Color.White).padding(8.dp)) {
         NavigateBackButton(navController)
         LazyColumn(modifier = Modifier.weight(1f)) {
-            items(phrases) { phrase ->
-                Text(phrase, fontSize = 16.sp)
-            }
+            items(phrases) { phrase -> Text(phrase, fontSize = 16.sp) }
         }
     }
 }
 
 @Composable
-fun NavigateButton(
-    text: String,
-    listener: () -> Unit = { }
-) {
+fun NavigateButton(text: String, listener: () -> Unit = {}) {
     Button(
         onClick = listener,
         colors = ButtonDefaults.buttonColors(backgroundColor = LightGray),
@@ -291,8 +276,9 @@
 fun NavigateBackButton(navController: NavController) {
     // Use LocalLifecycleOwner.current as a proxy for the NavBackStackEntry
     // associated with this Composable
-    if (navController.currentBackStackEntry == LocalLifecycleOwner.current &&
-        navController.previousBackStackEntry != null
+    if (
+        navController.currentBackStackEntry == LocalLifecycleOwner.current &&
+            navController.previousBackStackEntry != null
     ) {
         Button(
             onClick = { navController.popBackStack() },
@@ -311,10 +297,7 @@
         LocalInspectionMode provides true,
     ) {
         Box(Modifier.fillMaxSize().background(Color.Red)) {
-            NavHost(
-                navController = rememberNavController(),
-                startDestination = "home"
-            ) {
+            NavHost(navController = rememberNavController(), startDestination = "home") {
                 composable("home") {
                     Box(Modifier.fillMaxSize().background(Color.Blue)) {
                         Text(text = "test", modifier = Modifier.testTag("text"))
@@ -325,38 +308,39 @@
     }
 }
 
-private val phrases = listOf(
-    "Easy As Pie",
-    "Wouldn't Harm a Fly",
-    "No-Brainer",
-    "Keep On Truckin'",
-    "An Arm and a Leg",
-    "Down To Earth",
-    "Under the Weather",
-    "Up In Arms",
-    "Cup Of Joe",
-    "Not the Sharpest Tool in the Shed",
-    "Ring Any Bells?",
-    "Son of a Gun",
-    "Hard Pill to Swallow",
-    "Close But No Cigar",
-    "Beating a Dead Horse",
-    "If You Can't Stand the Heat, Get Out of the Kitchen",
-    "Cut To The Chase",
-    "Heads Up",
-    "Goody Two-Shoes",
-    "Fish Out Of Water",
-    "Cry Over Spilt Milk",
-    "Elephant in the Room",
-    "There's No I in Team",
-    "Poke Fun At",
-    "Talk the Talk",
-    "Know the Ropes",
-    "Fool's Gold",
-    "It's Not Brain Surgery",
-    "Fight Fire With Fire",
-    "Go For Broke"
-)
+private val phrases =
+    listOf(
+        "Easy As Pie",
+        "Wouldn't Harm a Fly",
+        "No-Brainer",
+        "Keep On Truckin'",
+        "An Arm and a Leg",
+        "Down To Earth",
+        "Under the Weather",
+        "Up In Arms",
+        "Cup Of Joe",
+        "Not the Sharpest Tool in the Shed",
+        "Ring Any Bells?",
+        "Son of a Gun",
+        "Hard Pill to Swallow",
+        "Close But No Cigar",
+        "Beating a Dead Horse",
+        "If You Can't Stand the Heat, Get Out of the Kitchen",
+        "Cut To The Chase",
+        "Heads Up",
+        "Goody Two-Shoes",
+        "Fish Out Of Water",
+        "Cry Over Spilt Milk",
+        "Elephant in the Room",
+        "There's No I in Team",
+        "Poke Fun At",
+        "Talk the Talk",
+        "Know the Ropes",
+        "Fool's Gold",
+        "It's Not Brain Surgery",
+        "Fight Fire With Fire",
+        "Go For Broke"
+    )
 
 @Serializable
 @Parcelize
diff --git a/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SharedElementSample.kt b/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SharedElementSample.kt
index 9358d65..838929a6 100644
--- a/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SharedElementSample.kt
+++ b/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SharedElementSample.kt
@@ -47,29 +47,21 @@
 import androidx.navigation.compose.rememberNavController
 import kotlinx.serialization.Serializable
 
-@Serializable
-object Select
+@Serializable object Select
 
-@Serializable
-object SharedElement
+@Serializable object SharedElement
 
-@Serializable
-object TopAppBarShared
+@Serializable object TopAppBarShared
 
-@Serializable
-object RedBox
+@Serializable object RedBox
 
-@Serializable
-object BlueBox
+@Serializable object BlueBox
 
-@Serializable
-object First
+@Serializable object First
 
-@Serializable
-object Second
+@Serializable object Second
 
-@Serializable
-object Third
+@Serializable object Third
 
 @Composable
 fun AnimatedNav() {
@@ -78,31 +70,29 @@
         composable<Select> {
             Column {
                 Box(
-                    Modifier
-                        .heightIn(min = 48.dp)
+                    Modifier.heightIn(min = 48.dp)
                         .fillMaxWidth()
                         .clickable(onClick = { navController.navigate(SharedElement) })
                         .padding(horizontal = 16.dp)
                         .wrapContentHeight(Alignment.CenterVertically),
                     contentAlignment = Alignment.CenterStart
-                ) { Text("AnimationNav") }
+                ) {
+                    Text("AnimationNav")
+                }
                 Box(
-                    Modifier
-                        .heightIn(min = 48.dp)
+                    Modifier.heightIn(min = 48.dp)
                         .fillMaxWidth()
                         .clickable(onClick = { navController.navigate(TopAppBarShared) })
                         .padding(horizontal = 16.dp)
                         .wrapContentHeight(Alignment.CenterVertically),
                     contentAlignment = Alignment.CenterStart
-                ) { Text("Top Bar Shared Element") }
+                ) {
+                    Text("Top Bar Shared Element")
+                }
             }
         }
-        composable<SharedElement> {
-            SharedElementAnimationNav()
-        }
-        composable<TopAppBarShared> {
-            TopAppBarElement()
-        }
+        composable<SharedElement> { SharedElementAnimationNav() }
+        composable<TopAppBarShared> { TopAppBarElement() }
     }
 }
 
@@ -113,12 +103,8 @@
     SharedTransitionLayout {
         val selectFirst = mutableStateOf(true)
         NavHost(navController, startDestination = RedBox) {
-            composable<RedBox> {
-                RedBox(this, selectFirst) { navController.navigate(BlueBox) }
-            }
-            composable<BlueBox> {
-                BlueBox(this, selectFirst) { navController.popBackStack() }
-            }
+            composable<RedBox> { RedBox(this, selectFirst) { navController.navigate(BlueBox) } }
+            composable<BlueBox> { BlueBox(this, selectFirst) { navController.popBackStack() } }
         }
     }
 }
@@ -132,16 +118,17 @@
     onNavigate: () -> Unit
 ) {
     Box(
-        Modifier
-            .sharedBounds(
+        Modifier.sharedBounds(
                 rememberSharedContentState("name"),
                 scope,
                 renderInOverlayDuringTransition = selectFirst.value
             )
-            .clickable(onClick = {
-                selectFirst.value = !selectFirst.value
-                onNavigate()
-            })
+            .clickable(
+                onClick = {
+                    selectFirst.value = !selectFirst.value
+                    onNavigate()
+                }
+            )
             .background(Color.Red)
             .size(100.dp)
     ) {
@@ -158,17 +145,18 @@
     onPopBack: () -> Unit
 ) {
     Box(
-        Modifier
-            .offset(180.dp, 180.dp)
+        Modifier.offset(180.dp, 180.dp)
             .sharedBounds(
                 rememberSharedContentState("name"),
                 scope,
                 renderInOverlayDuringTransition = !selectFirst.value
             )
-            .clickable(onClick = {
-                selectFirst.value = !selectFirst.value
-                onPopBack()
-            })
+            .clickable(
+                onClick = {
+                    selectFirst.value = !selectFirst.value
+                    onPopBack()
+                }
+            )
             .alpha(0.5f)
             .background(Color.Blue)
             .size(180.dp)
@@ -191,10 +179,11 @@
                 Column {
                     TopAppBar(
                         title = { Text("first") },
-                        modifier = Modifier.sharedElement(
-                            rememberSharedContentState("appBar"),
-                            this@composable
-                        )
+                        modifier =
+                            Modifier.sharedElement(
+                                rememberSharedContentState("appBar"),
+                                this@composable
+                            )
                     )
                     Text("first", color = Color.White)
                     Button(onClick = { navController.navigate(Second) }) {
@@ -210,10 +199,11 @@
                 Column {
                     TopAppBar(
                         title = { Text("second") },
-                        modifier = Modifier.sharedElement(
-                            rememberSharedContentState("appBar"),
-                            this@composable
-                        )
+                        modifier =
+                            Modifier.sharedElement(
+                                rememberSharedContentState("appBar"),
+                                this@composable
+                            )
                     )
                     Text("second", color = Color.White)
                     Button(onClick = { navController.navigate(Third) }) {
diff --git a/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SizeTransformSample.kt b/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SizeTransformSample.kt
index a8779ce..23b3fc2 100644
--- a/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SizeTransformSample.kt
+++ b/navigation/navigation-compose/samples/src/main/java/androidx/navigation/compose/samples/SizeTransformSample.kt
@@ -48,11 +48,14 @@
                     SizeTransform { initialSize, targetSize ->
                         keyframes {
                             durationMillis = 500
-                            IntSize(initialSize.width,
-                                (initialSize.height + targetSize.height) / 2) at 150
+                            IntSize(
+                                initialSize.width,
+                                (initialSize.height + targetSize.height) / 2
+                            ) at 150
                         }
                     }
-                }) {
+                }
+            ) {
                 CollapsedScreen { navController.navigate(Expanded) }
             }
             composable<Expanded>(
@@ -65,18 +68,17 @@
                             IntSize(targetSize.width, initialSize.height + 400) at 150
                         }
                     }
-                }) {
+                }
+            ) {
                 ExpandedScreen { navController.popBackStack() }
             }
         }
     }
 }
 
-@Serializable
-object Collapsed
+@Serializable object Collapsed
 
-@Serializable
-object Expanded
+@Serializable object Expanded
 
 @Composable
 fun CollapsedScreen(onNavigate: () -> Unit) {
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/ComposeNavigatorTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/ComposeNavigatorTest.kt
index 1f20de5..a79c30f 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/ComposeNavigatorTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/ComposeNavigatorTest.kt
@@ -35,16 +35,13 @@
 
         val entry = navigatorState.createBackStackEntry(navigator.createDestination(), null)
         navigator.navigate(listOf(entry), null, null)
-        assertThat(navigator.backStack.value)
-            .containsExactly(entry).inOrder()
+        assertThat(navigator.backStack.value).containsExactly(entry).inOrder()
 
         val secondEntry = navigatorState.createBackStackEntry(navigator.createDestination(), null)
         navigator.navigate(listOf(secondEntry), null, null)
-        assertThat(navigator.backStack.value)
-            .containsExactly(entry, secondEntry).inOrder()
+        assertThat(navigator.backStack.value).containsExactly(entry, secondEntry).inOrder()
 
         navigator.popBackStack(secondEntry, false)
-        assertThat(navigator.backStack.value)
-            .containsExactly(entry).inOrder()
+        assertThat(navigator.backStack.value).containsExactly(entry).inOrder()
     }
 }
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/DialogNavigatorTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/DialogNavigatorTest.kt
index c5aa699..3ad636c 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/DialogNavigatorTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/DialogNavigatorTest.kt
@@ -35,8 +35,7 @@
 @MediumTest
 @RunWith(AndroidJUnit4::class)
 class DialogNavigatorTest {
-    @get:Rule
-    val rule = createComposeRule()
+    @get:Rule val rule = createComposeRule()
 
     private val defaultText = "dialogText"
 
@@ -46,15 +45,11 @@
         val navigatorState = TestNavigatorState()
         navigator.onAttach(navigatorState)
 
-        rule.setContent {
-            DialogHost(navigator)
-        }
+        rule.setContent { DialogHost(navigator) }
 
         rule.onNodeWithText(defaultText).assertDoesNotExist()
 
-        val dialog = DialogNavigator.Destination(navigator) {
-            Text(defaultText)
-        }
+        val dialog = DialogNavigator.Destination(navigator) { Text(defaultText) }
         val entry = navigatorState.createBackStackEntry(dialog, null)
         navigator.navigate(listOf(entry), null, null)
 
@@ -66,15 +61,11 @@
         val navigator = DialogNavigator()
         val navigatorState = TestNavigatorState()
         navigator.onAttach(navigatorState)
-        val dialog = DialogNavigator.Destination(navigator) {
-            Text(defaultText)
-        }
+        val dialog = DialogNavigator.Destination(navigator) { Text(defaultText) }
         val entry = navigatorState.createBackStackEntry(dialog, null)
         navigator.navigate(listOf(entry), null, null)
 
-        rule.setContent {
-            DialogHost(navigator)
-        }
+        rule.setContent { DialogHost(navigator) }
 
         rule.onNodeWithText(defaultText).assertIsDisplayed()
 
@@ -90,22 +81,18 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, "first") {
-                composable("first") { }
-                dialog("second") {
-                    viewModel<TestViewModel>(it)
-                }
+                composable("first") {}
+                dialog("second") { viewModel<TestViewModel>(it) }
             }
         }
 
-        rule.runOnIdle {
-            navController.navigate("second")
-        }
+        rule.runOnIdle { navController.navigate("second") }
 
         // Now trigger the back button
         rule.runOnIdle {
-            navController.navigatorProvider.getNavigator(DialogNavigator::class.java).dismiss(
-                navController.getBackStackEntry("second")
-            )
+            navController.navigatorProvider
+                .getNavigator(DialogNavigator::class.java)
+                .dismiss(navController.getBackStackEntry("second"))
         }
 
         rule.waitForIdle()
@@ -119,8 +106,8 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, "first") {
-                composable("first") { }
-                dialog("second") { }
+                composable("first") {}
+                dialog("second") {}
             }
         }
 
@@ -130,9 +117,8 @@
         }
 
         rule.waitForIdle()
-        val dialogNavigator = navController.navigatorProvider.getNavigator(
-            DialogNavigator::class.java
-        )
+        val dialogNavigator =
+            navController.navigatorProvider.getNavigator(DialogNavigator::class.java)
         val bottomDialog = dialogNavigator.backStack.value[0]
         val topDialog = dialogNavigator.backStack.value[1]
 
@@ -140,24 +126,14 @@
         assertThat(topDialog.destination.route).isEqualTo("second")
         assertThat(topDialog).isNotEqualTo(bottomDialog)
 
-        assertThat(topDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.RESUMED
-        )
-        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.STARTED
-        )
+        assertThat(topDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
-        rule.runOnUiThread {
-            dialogNavigator.dismiss(topDialog)
-        }
+        rule.runOnUiThread { dialogNavigator.dismiss(topDialog) }
         rule.waitForIdle()
 
-        assertThat(topDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.DESTROYED
-        )
-        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.RESUMED
-        )
+        assertThat(topDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
     }
 
     @Test
@@ -167,8 +143,8 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, "first") {
-                composable("first") { }
-                dialog("second") { }
+                composable("first") {}
+                dialog("second") {}
             }
         }
 
@@ -179,49 +155,28 @@
         }
 
         rule.waitForIdle()
-        val dialogNavigator = navController.navigatorProvider.getNavigator(
-            DialogNavigator::class.java
-        )
+        val dialogNavigator =
+            navController.navigatorProvider.getNavigator(DialogNavigator::class.java)
         val bottomDialog = dialogNavigator.backStack.value[0]
         val middleDialog = dialogNavigator.backStack.value[1]
         val topDialog = dialogNavigator.backStack.value[2]
 
-        assertThat(topDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.RESUMED
-        )
-        assertThat(middleDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.STARTED
-        )
-        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.STARTED
-        )
+        assertThat(topDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(middleDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
+        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
-        rule.runOnUiThread {
-            dialogNavigator.dismiss(topDialog)
-        }
+        rule.runOnUiThread { dialogNavigator.dismiss(topDialog) }
         rule.waitForIdle()
 
-        assertThat(topDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.DESTROYED
-        )
-        assertThat(middleDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.RESUMED
-        )
-        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.STARTED
-        )
+        assertThat(topDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(middleDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
-        rule.runOnUiThread {
-            dialogNavigator.dismiss(middleDialog)
-        }
+        rule.runOnUiThread { dialogNavigator.dismiss(middleDialog) }
         rule.waitForIdle()
 
-        assertThat(middleDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.DESTROYED
-        )
-        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.RESUMED
-        )
+        assertThat(middleDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
     }
 
     @Test
@@ -231,8 +186,8 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, "first") {
-                composable("first") { }
-                dialog("second") { }
+                composable("first") {}
+                dialog("second") {}
             }
         }
 
@@ -242,18 +197,13 @@
         }
 
         rule.waitForIdle()
-        val dialogNavigator = navController.navigatorProvider.getNavigator(
-            DialogNavigator::class.java
-        )
+        val dialogNavigator =
+            navController.navigatorProvider.getNavigator(DialogNavigator::class.java)
         val bottomDialog = dialogNavigator.backStack.value[0]
         val topDialog = dialogNavigator.backStack.value[1]
 
-        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.STARTED
-        )
-        assertThat(topDialog.lifecycle.currentState).isEqualTo(
-            Lifecycle.State.RESUMED
-        )
+        assertThat(bottomDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
+        assertThat(topDialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
     }
 
     @Test
@@ -263,8 +213,8 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, route = "graph", startDestination = "first") {
-                composable("first") { }
-                dialog("second") { }
+                composable("first") {}
+                dialog("second") {}
                 dialog("third") { Text(defaultText) }
             }
         }
@@ -276,9 +226,8 @@
         }
 
         rule.waitForIdle()
-        val dialogNavigator = navController.navigatorProvider.getNavigator(
-            DialogNavigator::class.java
-        )
+        val dialogNavigator =
+            navController.navigatorProvider.getNavigator(DialogNavigator::class.java)
         val dialog = dialogNavigator.backStack.value[0]
         assertThat(dialog.destination.route).isEqualTo("third")
         assertThat(dialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
@@ -295,7 +244,7 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, route = "graph", startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 dialog("second") { Text(defaultText) }
             }
         }
@@ -307,9 +256,8 @@
         }
 
         rule.waitForIdle()
-        val dialogNavigator = navController.navigatorProvider.getNavigator(
-            DialogNavigator::class.java
-        )
+        val dialogNavigator =
+            navController.navigatorProvider.getNavigator(DialogNavigator::class.java)
         val dialog = dialogNavigator.backStack.value[0]
         assertThat(dialog.destination.route).isEqualTo("second")
         assertThat(dialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
@@ -326,9 +274,9 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, route = "graph", startDestination = "first") {
-                composable("first") { }
-                dialog("second") { }
-                dialog("third") { }
+                composable("first") {}
+                dialog("second") {}
+                dialog("third") {}
                 dialog("fourth") { Text(defaultText) }
             }
         }
@@ -342,9 +290,8 @@
         }
 
         rule.waitForIdle()
-        val dialogNavigator = navController.navigatorProvider.getNavigator(
-            DialogNavigator::class.java
-        )
+        val dialogNavigator =
+            navController.navigatorProvider.getNavigator(DialogNavigator::class.java)
         val dialog = dialogNavigator.backStack.value[0]
         assertThat(dialog.destination.route).isEqualTo("fourth")
         assertThat(dialog.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
@@ -360,15 +307,13 @@
         rule.setContent {
             navController = rememberNavController()
             NavHost(navController, route = "graph", startDestination = "first") {
-                composable("first") { }
-                dialog("second") { }
+                composable("first") {}
+                dialog("second") {}
                 dialog("third") { Text(defaultText) }
             }
         }
 
-        rule.runOnUiThread {
-            navController.navigate("second")
-        }
+        rule.runOnUiThread { navController.navigate("second") }
 
         val secondEntry = navController.currentBackStackEntry
         val entryLifecycle = secondEntry?.lifecycle as LifecycleRegistry
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavBackStackEntryProviderTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavBackStackEntryProviderTest.kt
index 1e36d9d..396fe29 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavBackStackEntryProviderTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavBackStackEntryProviderTest.kt
@@ -42,8 +42,7 @@
 @RunWith(AndroidJUnit4::class)
 class NavBackStackEntryProviderTest {
 
-    @get:Rule
-    val composeTestRule = createComposeRule()
+    @get:Rule val composeTestRule = createComposeRule()
 
     @Test
     fun testViewModelStoreOwnerProvided() {
@@ -58,7 +57,8 @@
         }
 
         assertWithMessage("ViewModelStoreOwner is provided by $backStackEntry")
-            .that(viewModelStoreOwner).isEqualTo(backStackEntry)
+            .that(viewModelStoreOwner)
+            .isEqualTo(backStackEntry)
     }
 
     @Test
@@ -74,7 +74,8 @@
         }
 
         assertWithMessage("LifecycleOwner is provided by $backStackEntry")
-            .that(lifecycleOwner).isEqualTo(backStackEntry)
+            .that(lifecycleOwner)
+            .isEqualTo(backStackEntry)
     }
 
     @Test
@@ -90,7 +91,8 @@
         }
 
         assertWithMessage("LocalSavedStateRegistryOwner is provided by $backStackEntry")
-            .that(localSavedStateRegistryOwner).isEqualTo(backStackEntry)
+            .that(localSavedStateRegistryOwner)
+            .isEqualTo(backStackEntry)
     }
 
     @Test
@@ -102,9 +104,7 @@
         restorationTester.setContent {
             val saveableStateHolder = rememberSaveableStateHolder()
             backStackEntry.LocalOwnersProvider(saveableStateHolder) {
-                array = rememberSaveable {
-                    intArrayOf(0)
-                }
+                array = rememberSaveable { intArrayOf(0) }
             }
         }
 
@@ -152,10 +152,8 @@
         val testNavigator = TestNavigator()
         val testNavigatorState = TestNavigatorState()
         testNavigator.onAttach(testNavigatorState)
-        val backStackEntry = testNavigatorState.createBackStackEntry(
-            testNavigator.createDestination(),
-            null
-        )
+        val backStackEntry =
+            testNavigatorState.createBackStackEntry(testNavigator.createDestination(), null)
         // We navigate to move the NavBackStackEntry to the correct state
         testNavigator.navigate(listOf(backStackEntry), null, null)
         return backStackEntry
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavGraphBuilderTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavGraphBuilderTest.kt
index 33c7477..59c08294 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavGraphBuilderTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavGraphBuilderTest.kt
@@ -46,8 +46,7 @@
 @LargeTest
 @RunWith(AndroidJUnit4::class)
 class NavGraphBuilderTest {
-    @get:Rule
-    val composeTestRule = createComposeRule()
+    @get:Rule val composeTestRule = createComposeRule()
 
     @Test
     fun testCurrentBackStackEntryNavigate() {
@@ -59,8 +58,8 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                composable("$secondRoute/{$key}") { }
+                composable(firstRoute) {}
+                composable("$secondRoute/{$key}") {}
             }
         }
 
@@ -81,11 +80,11 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
+                composable(firstRoute) {}
                 composable(
                     secondRoute,
                     arguments = listOf(navArgument(key) { defaultValue = defaultArg })
-                ) { }
+                ) {}
             }
         }
 
@@ -106,11 +105,11 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
+                composable(firstRoute) {}
                 composable(
                     secondRoute,
                     deepLinks = listOf(navDeepLink { uriPattern = uriString })
-                ) { }
+                ) {}
             }
         }
 
@@ -130,7 +129,7 @@
 
             NavHost(navController, startDestination = firstRoute) {
                 navigation(startDestination = secondRoute, route = firstRoute) {
-                    composable(secondRoute) { }
+                    composable(secondRoute) {}
                 }
             }
         }
@@ -150,9 +149,9 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
+                composable(firstRoute) {}
                 navigation(startDestination = thirdRoute, route = secondRoute) {
-                    composable(thirdRoute) { }
+                    composable(thirdRoute) {}
                 }
             }
         }
@@ -175,12 +174,13 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
+                composable(firstRoute) {}
                 navigation(
-                    startDestination = thirdRoute, route = secondRoute,
+                    startDestination = thirdRoute,
+                    route = secondRoute,
                     arguments = listOf(navArgument(key) { defaultValue = defaultArg })
                 ) {
-                    composable(thirdRoute) { }
+                    composable(thirdRoute) {}
                 }
             }
         }
@@ -202,12 +202,13 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
+                composable(firstRoute) {}
                 navigation(
-                    startDestination = thirdRoute, route = secondRoute,
+                    startDestination = thirdRoute,
+                    route = secondRoute,
                     deepLinks = listOf(navDeepLink { uriPattern = uriString })
                 ) {
-                    composable(thirdRoute) { }
+                    composable(thirdRoute) {}
                 }
             }
         }
@@ -215,8 +216,9 @@
         composeTestRule.runOnUiThread {
             navController.navigate(uriString.toUri())
             assertThat(
-                navController.getBackStackEntry(secondRoute).destination.hasDeepLink(deeplink)
-            ).isTrue()
+                    navController.getBackStackEntry(secondRoute).destination.hasDeepLink(deeplink)
+                )
+                .isTrue()
         }
     }
 
@@ -227,15 +229,11 @@
             navController = TestNavHostController(LocalContext.current)
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
-            NavHost(navController, startDestination = TestClass::class) {
-                composable<TestClass> { }
-            }
+            NavHost(navController, startDestination = TestClass::class) { composable<TestClass> {} }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClass::class in navController.graph)
                 .isTrue()
@@ -252,15 +250,13 @@
 
             NavHost(navController, startDestination = TestClassArg::class) {
                 navigation<TestClassArg>(startDestination = TestClass::class) {
-                    composable<TestClass> { }
+                    composable<TestClass> {}
                 }
             }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClassArg::class in navController.graph)
                 .isTrue()
@@ -270,8 +266,7 @@
 
     @Test
     fun testNavigationKClassNestedInGraph() {
-        @Serializable
-        class NestedGraph
+        @Serializable class NestedGraph
 
         lateinit var navController: TestNavHostController
         composeTestRule.setContent {
@@ -279,9 +274,9 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
+                composable(firstRoute) {}
                 navigation<NestedGraph>(startDestination = TestClass::class) {
-                    composable<TestClass> { }
+                    composable<TestClass> {}
                 }
             }
         }
@@ -304,15 +299,11 @@
             navController = TestNavHostController(LocalContext.current)
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
-            NavHost(navController, startDestination = TestClass()) {
-                composable<TestClass> { }
-            }
+            NavHost(navController, startDestination = TestClass()) { composable<TestClass> {} }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClass::class in navController.graph)
                 .isTrue()
@@ -328,21 +319,18 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = TestClassArg(15)) {
-                composable<TestClassArg> { }
+                composable<TestClassArg> {}
             }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ARG_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClassArg::class in navController.graph)
                 .isTrue()
             assertThat(navController.graph.findStartDestination().route)
                 .isEqualTo(TEST_CLASS_ARG_ROUTE)
-            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-                .isEqualTo(15)
+            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(15)
         }
     }
 
@@ -355,20 +343,17 @@
 
             NavHost(navController, startDestination = TestClassArg::class) {
                 navigation<TestClassArg>(startDestination = TestClass()) {
-                    composable<TestClass> { }
+                    composable<TestClass> {}
                 }
             }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClassArg::class in navController.graph)
                 .isTrue()
-            assertThat(navController.graph.findStartDestination().route)
-                .isEqualTo(TEST_CLASS_ROUTE)
+            assertThat(navController.graph.findStartDestination().route).isEqualTo(TEST_CLASS_ROUTE)
         }
     }
 
@@ -381,29 +366,25 @@
 
             NavHost(navController, startDestination = TestClass::class) {
                 navigation<TestClass>(startDestination = TestClassArg(15)) {
-                    composable<TestClassArg> { }
+                    composable<TestClassArg> {}
                 }
             }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ARG_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClass::class in navController.graph)
                 .isTrue()
             assertThat(navController.graph.findStartDestination().route)
                 .isEqualTo(TEST_CLASS_ARG_ROUTE)
-            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-                .isEqualTo(15)
+            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(15)
         }
     }
 
     @Test
     fun testNavigationNestedAllObjectsStart() {
-        @Serializable
-        class NestedGraph
+        @Serializable class NestedGraph
 
         lateinit var navController: TestNavHostController
         composeTestRule.setContent {
@@ -411,28 +392,22 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = NestedGraph()) {
-                navigation<NestedGraph>(startDestination = TestClass()) {
-                    composable<TestClass> { }
-                }
+                navigation<NestedGraph>(startDestination = TestClass()) { composable<TestClass> {} }
             }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(NestedGraph::class in navController.graph)
                 .isTrue()
-            assertThat(navController.graph.findStartDestination().route)
-                .isEqualTo(TEST_CLASS_ROUTE)
+            assertThat(navController.graph.findStartDestination().route).isEqualTo(TEST_CLASS_ROUTE)
         }
     }
 
     @Test
     fun testNavigationNestedAllObjectsStartArgs() {
-        @Serializable
-        class NestedGraph(val graphArg: Boolean)
+        @Serializable class NestedGraph(val graphArg: Boolean)
 
         lateinit var navController: TestNavHostController
         composeTestRule.setContent {
@@ -441,15 +416,13 @@
 
             NavHost(navController, startDestination = NestedGraph(false)) {
                 navigation<NestedGraph>(startDestination = TestClassArg(15)) {
-                    composable<TestClassArg> { }
+                    composable<TestClassArg> {}
                 }
             }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ARG_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(NestedGraph::class in navController.graph)
                 .isTrue()
@@ -457,15 +430,13 @@
                 .isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertThat(navController.currentBackStackEntry?.arguments?.getBoolean("graphArg"))
                 .isEqualTo(false)
-            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-                .isEqualTo(15)
+            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(15)
         }
     }
 
     @Test
     fun testNavigationObjectNestedInGraph() {
-        @Serializable
-        class NestedGraph
+        @Serializable class NestedGraph
 
         lateinit var navController: TestNavHostController
         composeTestRule.setContent {
@@ -473,10 +444,8 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                navigation<NestedGraph>(startDestination = TestClass()) {
-                    composable<TestClass> { }
-                }
+                composable(firstRoute) {}
+                navigation<NestedGraph>(startDestination = TestClass()) { composable<TestClass> {} }
             }
         }
 
@@ -493,8 +462,7 @@
 
     @Test
     fun testNavigationObjectArgsNestedInGraph() {
-        @Serializable
-        class NestedGraph
+        @Serializable class NestedGraph
 
         lateinit var navController: TestNavHostController
         composeTestRule.setContent {
@@ -502,9 +470,9 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
+                composable(firstRoute) {}
                 navigation<NestedGraph>(startDestination = TestClassArg(15)) {
-                    composable<TestClassArg> { }
+                    composable<TestClassArg> {}
                 }
             }
         }
@@ -517,8 +485,7 @@
             val nestedGraph = navController.graph.findNode<NestedGraph>() as NavGraph
             assertThat(nestedGraph.findStartDestination().route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
-            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-                .isEqualTo(15)
+            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(15)
         }
     }
 
@@ -530,8 +497,8 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                composable<TestClass> { }
+                composable(firstRoute) {}
+                composable<TestClass> {}
             }
         }
         composeTestRule.runOnIdle {
@@ -549,8 +516,8 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                composable<TestClassArg> { }
+                composable(firstRoute) {}
+                composable<TestClassArg> {}
             }
         }
         composeTestRule.runOnIdle {
@@ -563,8 +530,7 @@
 
     @Test
     fun testComposableKClassArgsCustomType() {
-        @Serializable
-        class TestClass(val arg: CustomType)
+        @Serializable class TestClass(val arg: CustomType)
 
         lateinit var navController: TestNavHostController
         composeTestRule.setContent {
@@ -572,8 +538,8 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                composable<TestClass>(typeMap = mapOf(typeOf<CustomType>() to customNavType)) { }
+                composable(firstRoute) {}
+                composable<TestClass>(typeMap = mapOf(typeOf<CustomType>() to customNavType)) {}
             }
         }
         composeTestRule.runOnIdle {
@@ -591,8 +557,10 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                navigation(startDestination = TEST_CLASS_ARG_ROUTE, route = secondRoute,
+                composable(firstRoute) {}
+                navigation(
+                    startDestination = TEST_CLASS_ARG_ROUTE,
+                    route = secondRoute,
                 ) {
                     composable<TestClassArg> {}
                 }
@@ -609,8 +577,7 @@
 
     @Test
     fun testComposableKClassArgsMissingCustomType() {
-        @Serializable
-        class TestClass(val arg: CustomType)
+        @Serializable class TestClass(val arg: CustomType)
 
         lateinit var exception: String
         lateinit var navController: TestNavHostController
@@ -620,17 +587,18 @@
                 navController.navigatorProvider.addNavigator(ComposeNavigator())
 
                 NavHost(navController, startDestination = firstRoute) {
-                    composable(firstRoute) { }
-                    composable<TestClass> { }
+                    composable(firstRoute) {}
+                    composable<TestClass> {}
                 }
             }
         } catch (e: IllegalArgumentException) {
             exception = e.message!!
         }
-        assertThat(exception).isEqualTo(
-            "Cannot cast arg of type androidx.navigation.compose.CustomType to a " +
-                "NavType. Make sure to provide custom NavType for this argument."
-        )
+        assertThat(exception)
+            .isEqualTo(
+                "Cannot cast arg of type androidx.navigation.compose.CustomType to a " +
+                    "NavType. Make sure to provide custom NavType for this argument."
+            )
     }
 
     @Test
@@ -642,8 +610,8 @@
             navController.navigatorProvider.addNavigator(DialogNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                dialog<TestClass> { }
+                composable(firstRoute) {}
+                dialog<TestClass> {}
             }
         }
         composeTestRule.runOnIdle {
@@ -662,8 +630,8 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                dialog<TestClassArg> { }
+                composable(firstRoute) {}
+                dialog<TestClassArg> {}
             }
         }
         composeTestRule.runOnIdle {
@@ -676,8 +644,7 @@
 
     @Test
     fun testDialogKClassArgsCustomType() {
-        @Serializable
-        class TestClass(val arg: CustomType)
+        @Serializable class TestClass(val arg: CustomType)
 
         lateinit var navController: TestNavHostController
         composeTestRule.setContent {
@@ -686,8 +653,8 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                dialog<TestClass>(typeMap = mapOf(typeOf<CustomType>() to customNavType)) { }
+                composable(firstRoute) {}
+                dialog<TestClass>(typeMap = mapOf(typeOf<CustomType>() to customNavType)) {}
             }
         }
         composeTestRule.runOnIdle {
@@ -706,8 +673,10 @@
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
             NavHost(navController, startDestination = firstRoute) {
-                composable(firstRoute) { }
-                navigation(startDestination = TEST_CLASS_ARG_ROUTE, route = secondRoute,
+                composable(firstRoute) {}
+                navigation(
+                    startDestination = TEST_CLASS_ARG_ROUTE,
+                    route = secondRoute,
                 ) {
                     dialog<TestClassArg> {}
                 }
@@ -724,8 +693,7 @@
 
     @Test
     fun testDialogKClassArgsMissingCustomType() {
-        @Serializable
-        class TestClass(val arg: CustomType)
+        @Serializable class TestClass(val arg: CustomType)
 
         lateinit var exception: String
         lateinit var navController: TestNavHostController
@@ -736,17 +704,18 @@
                 navController.navigatorProvider.addNavigator(ComposeNavigator())
 
                 NavHost(navController, startDestination = firstRoute) {
-                    composable(firstRoute) { }
-                    composable<TestClass> { }
+                    composable(firstRoute) {}
+                    composable<TestClass> {}
                 }
             }
         } catch (e: IllegalArgumentException) {
             exception = e.message!!
         }
-        assertThat(exception).isEqualTo(
-            "Cannot cast arg of type androidx.navigation.compose.CustomType to a " +
-                "NavType. Make sure to provide custom NavType for this argument."
-        )
+        assertThat(exception)
+            .isEqualTo(
+                "Cannot cast arg of type androidx.navigation.compose.CustomType to a " +
+                    "NavType. Make sure to provide custom NavType for this argument."
+            )
     }
 
     @Test
@@ -757,22 +726,17 @@
             navController.navigatorProvider.addNavigator(DialogNavigator())
             navController.navigatorProvider.addNavigator(ComposeNavigator())
 
-            NavHost(navController, startDestination = TestClassArg(15)) {
-                dialog<TestClassArg> { }
-            }
+            NavHost(navController, startDestination = TestClassArg(15)) { dialog<TestClassArg> {} }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ARG_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClassArg::class in navController.graph)
                 .isTrue()
             assertThat(navController.graph.findStartDestination().route)
                 .isEqualTo(TEST_CLASS_ARG_ROUTE)
-            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-                .isEqualTo(15)
+            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(15)
         }
     }
 
@@ -786,22 +750,19 @@
 
             NavHost(navController, startDestination = TestClass::class) {
                 navigation<TestClass>(startDestination = TestClassArg(15)) {
-                    dialog<TestClassArg> { }
+                    dialog<TestClassArg> {}
                 }
             }
         }
 
         composeTestRule.runOnUiThread {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                TEST_CLASS_ARG_ROUTE
-            )
+            assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertWithMessage("Destination should be added to the graph")
                 .that(TestClass::class in navController.graph)
                 .isTrue()
             assertThat(navController.graph.findStartDestination().route)
                 .isEqualTo(TEST_CLASS_ARG_ROUTE)
-            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-                .isEqualTo(15)
+            assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(15)
         }
     }
 }
@@ -812,18 +773,19 @@
 internal const val TEST_CLASS_ROUTE = "androidx.navigation.compose.TestClass"
 internal const val TEST_CLASS_ARG_ROUTE = "androidx.navigation.compose.TestClassArg/{arg}"
 
-@Serializable
-internal class TestClass
+@Serializable internal class TestClass
 
-@Serializable
-internal class TestClassArg(val arg: Int)
+@Serializable internal class TestClassArg(val arg: Int)
 
-@Serializable
-internal class CustomType
+@Serializable internal class CustomType
 
-internal val customNavType = object : NavType<CustomType>(false) {
-    override fun put(bundle: Bundle, key: String, value: CustomType) { }
-    override fun get(bundle: Bundle, key: String): CustomType? = null
-    override fun parseValue(value: String): CustomType = CustomType()
-    override fun serializeAsValue(value: CustomType) = "customValue"
-}
+internal val customNavType =
+    object : NavType<CustomType>(false) {
+        override fun put(bundle: Bundle, key: String, value: CustomType) {}
+
+        override fun get(bundle: Bundle, key: String): CustomType? = null
+
+        override fun parseValue(value: String): CustomType = CustomType()
+
+        override fun serializeAsValue(value: CustomType) = "customValue"
+    }
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostControllerTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostControllerTest.kt
index 3cfb09e..da24c24 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostControllerTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostControllerTest.kt
@@ -52,8 +52,7 @@
 @LargeTest
 @RunWith(AndroidJUnit4::class)
 class NavHostControllerTest {
-    @get:Rule
-    val composeTestRule = createComposeRule()
+    @get:Rule val composeTestRule = createComposeRule()
 
     @Test
     fun testRememberNavController() {
@@ -69,14 +68,11 @@
             }
         }
 
-        val navigator = composeTestRule.runOnIdle {
-            navController.navigatorProvider[ComposeNavigator::class]
-        }
+        val navigator =
+            composeTestRule.runOnIdle { navController.navigatorProvider[ComposeNavigator::class] }
 
         // trigger recompose
-        composeTestRule.runOnIdle {
-            navController.navigate("second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("second") }
 
         composeTestRule.runOnIdle {
             assertThat(navController.navigatorProvider[ComposeNavigator::class])
@@ -99,18 +95,14 @@
             }
         }
 
-        val navigator = composeTestRule.runOnIdle {
-            navController.navigatorProvider[NoOpNavigator::class]
-        }
+        val navigator =
+            composeTestRule.runOnIdle { navController.navigatorProvider[NoOpNavigator::class] }
 
         // trigger recompose
-        composeTestRule.runOnIdle {
-            navController.navigate("second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("second") }
 
         composeTestRule.runOnIdle {
-            assertThat(navController.navigatorProvider[NoOpNavigator::class])
-                .isEqualTo(navigator)
+            assertThat(navController.navigatorProvider[NoOpNavigator::class]).isEqualTo(navigator)
         }
     }
 
@@ -120,9 +112,10 @@
         composeTestRule.setContent {
             val navController = rememberNavController(remember { TestNavigator() })
 
-            navController.graph = navController.createGraph(startDestination = FIRST_DESTINATION) {
-                test(FIRST_DESTINATION)
-            }
+            navController.graph =
+                navController.createGraph(startDestination = FIRST_DESTINATION) {
+                    test(FIRST_DESTINATION)
+                }
 
             currentBackStackEntry = navController.currentBackStackEntryAsState()
         }
@@ -139,10 +132,11 @@
         composeTestRule.setContent {
             navController = rememberNavController(remember { TestNavigator() })
 
-            navController.graph = navController.createGraph(startDestination = FIRST_DESTINATION) {
-                test(FIRST_DESTINATION)
-                test(SECOND_DESTINATION)
-            }
+            navController.graph =
+                navController.createGraph(startDestination = FIRST_DESTINATION) {
+                    test(FIRST_DESTINATION)
+                    test(SECOND_DESTINATION)
+                }
 
             currentBackStackEntry = navController.currentBackStackEntryAsState()
         }
@@ -151,9 +145,7 @@
             .that(currentBackStackEntry.value?.destination?.route)
             .isEqualTo(FIRST_DESTINATION)
 
-        composeTestRule.runOnUiThread {
-            navController.navigate(SECOND_DESTINATION)
-        }
+        composeTestRule.runOnUiThread { navController.navigate(SECOND_DESTINATION) }
 
         assertWithMessage("the currentBackStackEntry should be after navigate")
             .that(currentBackStackEntry.value?.destination?.route)
@@ -167,10 +159,11 @@
         composeTestRule.setContent {
             navController = rememberNavController(remember { TestNavigator() })
 
-            navController.graph = navController.createGraph(startDestination = FIRST_DESTINATION) {
-                test(FIRST_DESTINATION)
-                test(SECOND_DESTINATION)
-            }
+            navController.graph =
+                navController.createGraph(startDestination = FIRST_DESTINATION) {
+                    test(FIRST_DESTINATION)
+                    test(SECOND_DESTINATION)
+                }
 
             currentBackStackEntry = navController.currentBackStackEntryAsState()
         }
@@ -192,10 +185,11 @@
         composeTestRule.setContent {
             navController = rememberNavController(remember { TestNavigator() })
 
-            navController.graph = navController.createGraph(startDestination = FIRST_DESTINATION) {
-                test(FIRST_DESTINATION)
-                test(SECOND_DESTINATION)
-            }
+            navController.graph =
+                navController.createGraph(startDestination = FIRST_DESTINATION) {
+                    test(FIRST_DESTINATION)
+                    test(SECOND_DESTINATION)
+                }
 
             currentBackStackEntry = navController.currentBackStackEntryAsState()
         }
@@ -208,9 +202,7 @@
         assertThat(navigator.backStack.size).isEqualTo(1)
 
         composeTestRule.runOnUiThread {
-            navController.navigate(SECOND_DESTINATION) {
-                popUpTo("first") { inclusive = true }
-            }
+            navController.navigate(SECOND_DESTINATION) { popUpTo("first") { inclusive = true } }
         }
 
         assertWithMessage("the currentBackStackEntry should be after navigate")
@@ -228,10 +220,11 @@
         composeTestRule.setContent {
             navController = rememberNavController(remember { TestNavigator() })
 
-            navController.graph = navController.createGraph(startDestination = FIRST_DESTINATION) {
-                test(FIRST_DESTINATION)
-                test(SECOND_DESTINATION)
-            }
+            navController.graph =
+                navController.createGraph(startDestination = FIRST_DESTINATION) {
+                    test(FIRST_DESTINATION)
+                    test(SECOND_DESTINATION)
+                }
 
             currentBackStackEntry = navController.currentBackStackEntryAsState()
         }
@@ -242,18 +235,14 @@
             .isEqualTo(FIRST_DESTINATION)
         assertThat(navigator.backStack.size).isEqualTo(1)
 
-        composeTestRule.runOnUiThread {
-            navController.navigate(SECOND_DESTINATION)
-        }
+        composeTestRule.runOnUiThread { navController.navigate(SECOND_DESTINATION) }
 
         assertWithMessage("there should be 2 destinations on the back stack after navigate")
             .that(navigator.backStack.size)
             .isEqualTo(2)
 
         composeTestRule.runOnUiThread {
-            navController.navigate(SECOND_DESTINATION) {
-                launchSingleTop = true
-            }
+            navController.navigate(SECOND_DESTINATION) { launchSingleTop = true }
         }
 
         assertWithMessage("there should be 2 destination on back stack when using singleTop")
@@ -278,14 +267,13 @@
         }
 
         composeTestRule.runOnUiThread {
-            navController.navigate("first?arg=value2") {
-                launchSingleTop = true
-            }
+            navController.navigate("first?arg=value2") { launchSingleTop = true }
         }
         composeTestRule.runOnIdle {
-            val navigator = navController.navigatorProvider.get<ComposeNavigator>(
-                navController.currentDestination?.navigatorName!!
-            )
+            val navigator =
+                navController.navigatorProvider.get<ComposeNavigator>(
+                    navController.currentDestination?.navigatorName!!
+                )
             assertWithMessage("there should be 1 destination on back stack when using singleTop")
                 .that(navigator.backStack.value.size)
                 .isEqualTo(1)
@@ -300,14 +288,12 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                composable<TestClass> { }
+                composable("first") {}
+                composable<TestClass> {}
             }
         }
 
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass()) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass()) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
         }
@@ -321,15 +307,11 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                composable<TestClassArg> {
-                    args = it.toRoute<TestClassArg>()
-                }
+                composable("first") {}
+                composable<TestClassArg> { args = it.toRoute<TestClassArg>() }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClassArg(1)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClassArg(1)) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertThat(args.arg).isEqualTo(1)
@@ -344,18 +326,17 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 composable<TestClassArg> {
-                    vm = viewModel<TestVM> {
-                        val handle = createSavedStateHandle()
-                        TestVM(handle)
-                    }
+                    vm =
+                        viewModel<TestVM> {
+                            val handle = createSavedStateHandle()
+                            TestVM(handle)
+                        }
                 }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClassArg(1)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClassArg(1)) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertThat(vm.handle.toRoute<TestClassArg>().arg).isEqualTo(1)
@@ -367,21 +348,25 @@
         @Serializable
         class CustomType(val nestedArg: Int) : Parcelable {
             override fun describeContents() = 0
+
             override fun writeToParcel(dest: Parcel, flags: Int) {}
         }
 
-        val navType = object : NavType<CustomType>(false) {
-            override fun put(bundle: Bundle, key: String, value: CustomType) {
-                bundle.putString(key, value.nestedArg.toString())
-            }
-            override fun get(bundle: Bundle, key: String): CustomType =
-                CustomType(nestedArg = bundle.getString(key)!!.toInt())
-            override fun parseValue(value: String): CustomType = CustomType(value.toInt())
-            override fun serializeAsValue(value: CustomType) = value.nestedArg.toString()
-        }
+        val navType =
+            object : NavType<CustomType>(false) {
+                override fun put(bundle: Bundle, key: String, value: CustomType) {
+                    bundle.putString(key, value.nestedArg.toString())
+                }
 
-        @Serializable
-        class TestClass(val arg: CustomType)
+                override fun get(bundle: Bundle, key: String): CustomType =
+                    CustomType(nestedArg = bundle.getString(key)!!.toInt())
+
+                override fun parseValue(value: String): CustomType = CustomType(value.toInt())
+
+                override fun serializeAsValue(value: CustomType) = value.nestedArg.toString()
+            }
+
+        @Serializable class TestClass(val arg: CustomType)
 
         val typeMap = mapOf(typeOf<CustomType>() to navType)
         lateinit var vm: TestVM
@@ -390,18 +375,17 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 composable<TestClass>(typeMap) {
-                    vm = viewModel<TestVM> {
-                        val handle = createSavedStateHandle()
-                        TestVM(handle)
-                    }
+                    vm =
+                        viewModel<TestVM> {
+                            val handle = createSavedStateHandle()
+                            TestVM(handle)
+                        }
                 }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(CustomType(12))) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(CustomType(12))) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.currentDestination?.hasRoute<TestClass>()).isTrue()
             assertThat(vm.handle.toRoute<TestClass>(typeMap).arg.nestedArg).isEqualTo(12)
@@ -410,8 +394,7 @@
 
     @Test
     fun testNavigateKClassMultipleArgsBundle() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: Boolean)
+        @Serializable class TestClass(val arg: Int, val arg2: Boolean)
 
         lateinit var args: TestClass
         lateinit var navController: NavHostController
@@ -419,20 +402,17 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                composable<TestClass> {
-                    args = it.toRoute<TestClass>()
-                }
+                composable("first") {}
+                composable<TestClass> { args = it.toRoute<TestClass>() }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(1, false)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(1, false)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateKClassMultipleArgsBundle.TestClass/{arg}/{arg2}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateKClassMultipleArgsBundle.TestClass/{arg}/{arg2}"
+                )
             assertThat(args.arg).isEqualTo(1)
             assertThat(args.arg2).isEqualTo(false)
         }
@@ -440,8 +420,7 @@
 
     @Test
     fun testNavigateKClassMultipleArgsSavedStateHandle() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: Boolean)
+        @Serializable class TestClass(val arg: Int, val arg2: Boolean)
 
         lateinit var vm: TestVM
         lateinit var navController: NavHostController
@@ -449,23 +428,23 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 composable<TestClass> {
-                    vm = viewModel<TestVM> {
-                        val handle = createSavedStateHandle()
-                        TestVM(handle)
-                    }
+                    vm =
+                        viewModel<TestVM> {
+                            val handle = createSavedStateHandle()
+                            TestVM(handle)
+                        }
                 }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(1, false)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(1, false)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateKClassMultipleArgsSavedStateHandle.TestClass/{arg}/{arg2}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateKClassMultipleArgsSavedStateHandle.TestClass/{arg}/{arg2}"
+                )
             val vmRoute = vm.handle.toRoute<TestClass>()
             assertThat(vmRoute.arg).isEqualTo(1)
             assertThat(vmRoute.arg2).isEqualTo(false)
@@ -474,8 +453,7 @@
 
     @Test
     fun testNavigateKClassArgsNullValueBundle() {
-        @Serializable
-        class TestClass(val arg: String?)
+        @Serializable class TestClass(val arg: String?)
 
         lateinit var args: TestClass
         lateinit var navController: NavHostController
@@ -483,28 +461,24 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                composable<TestClass> {
-                    args = it.toRoute<TestClass>()
-                }
+                composable("first") {}
+                composable<TestClass> { args = it.toRoute<TestClass>() }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(null)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(null)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateKClassArgsNullValueBundle.TestClass/{arg}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateKClassArgsNullValueBundle.TestClass/{arg}"
+                )
             assertThat(args.arg).isNull()
         }
     }
 
     @Test
     fun testNavigateKClassArgsNullValueSavedStateHandle() {
-        @Serializable
-        class TestClass(val arg: String?)
+        @Serializable class TestClass(val arg: String?)
 
         lateinit var vm: TestVM
         lateinit var navController: NavHostController
@@ -512,23 +486,23 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 composable<TestClass> {
-                    vm = viewModel<TestVM> {
-                        val handle = createSavedStateHandle()
-                        TestVM(handle)
-                    }
+                    vm =
+                        viewModel<TestVM> {
+                            val handle = createSavedStateHandle()
+                            TestVM(handle)
+                        }
                 }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(null)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(null)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateKClassArgsNullValueSavedStateHandle.TestClass/{arg}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateKClassArgsNullValueSavedStateHandle.TestClass/{arg}"
+                )
             assertThat(vm.handle.toRoute<TestClass>().arg).isNull()
         }
     }
@@ -540,14 +514,12 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                dialog<TestClass> { }
+                composable("first") {}
+                dialog<TestClass> {}
             }
         }
 
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass()) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass()) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
         }
@@ -561,15 +533,11 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                dialog<TestClassArg> {
-                    bundle = it.toRoute<TestClassArg>()
-                }
+                composable("first") {}
+                dialog<TestClassArg> { bundle = it.toRoute<TestClassArg>() }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClassArg(1)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClassArg(1)) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertThat(bundle.arg).isEqualTo(1)
@@ -584,18 +552,17 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 dialog<TestClassArg> {
-                    vm = viewModel<TestVM> {
-                        val handle = createSavedStateHandle()
-                        TestVM(handle)
-                    }
+                    vm =
+                        viewModel<TestVM> {
+                            val handle = createSavedStateHandle()
+                            TestVM(handle)
+                        }
                 }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClassArg(1)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClassArg(1)) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ARG_ROUTE)
             assertThat(vm.handle.toRoute<TestClassArg>().arg).isEqualTo(1)
@@ -604,8 +571,7 @@
 
     @Test
     fun testNavigateDialogKClassMultipleArgsBundle() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: Boolean)
+        @Serializable class TestClass(val arg: Int, val arg2: Boolean)
 
         lateinit var args: TestClass
         lateinit var navController: NavHostController
@@ -613,20 +579,17 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                dialog<TestClass> {
-                    args = it.toRoute<TestClass>()
-                }
+                composable("first") {}
+                dialog<TestClass> { args = it.toRoute<TestClass>() }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(1, false)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(1, false)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateDialogKClassMultipleArgsBundle.TestClass/{arg}/{arg2}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateDialogKClassMultipleArgsBundle.TestClass/{arg}/{arg2}"
+                )
             assertThat(args.arg).isEqualTo(1)
             assertThat(args.arg2).isEqualTo(false)
         }
@@ -634,8 +597,7 @@
 
     @Test
     fun testNavigateDialogKClassMultipleArgsSavedStateHandle() {
-        @Serializable
-        class TestClass(val arg: Int, val arg2: Boolean)
+        @Serializable class TestClass(val arg: Int, val arg2: Boolean)
 
         lateinit var vm: TestVM
         lateinit var navController: NavHostController
@@ -643,23 +605,23 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 dialog<TestClass> {
-                    vm = viewModel<TestVM> {
-                        val handle = createSavedStateHandle()
-                        TestVM(handle)
-                    }
+                    vm =
+                        viewModel<TestVM> {
+                            val handle = createSavedStateHandle()
+                            TestVM(handle)
+                        }
                 }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(1, false)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(1, false)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateDialogKClassMultipleArgsSavedStateHandle.TestClass/{arg}/{arg2}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateDialogKClassMultipleArgsSavedStateHandle.TestClass/{arg}/{arg2}"
+                )
             val vmRoute = vm.handle.toRoute<TestClass>()
             assertThat(vmRoute.arg).isEqualTo(1)
             assertThat(vmRoute.arg2).isEqualTo(false)
@@ -668,8 +630,7 @@
 
     @Test
     fun testNavigateDialogKClassArgsNullValueBundle() {
-        @Serializable
-        class TestClass(val arg: String?)
+        @Serializable class TestClass(val arg: String?)
 
         lateinit var args: TestClass
         lateinit var navController: NavHostController
@@ -677,28 +638,24 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                dialog<TestClass> {
-                    args = it.toRoute<TestClass>()
-                }
+                composable("first") {}
+                dialog<TestClass> { args = it.toRoute<TestClass>() }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(null)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(null)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateDialogKClassArgsNullValueBundle.TestClass/{arg}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateDialogKClassArgsNullValueBundle.TestClass/{arg}"
+                )
             assertThat(args.arg).isNull()
         }
     }
 
     @Test
     fun testNavigateDialogKClassArgsNullValueSavedStateHandle() {
-        @Serializable
-        class TestClass(val arg: String?)
+        @Serializable class TestClass(val arg: String?)
 
         lateinit var vm: TestVM
         lateinit var navController: NavHostController
@@ -706,23 +663,23 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
+                composable("first") {}
                 dialog<TestClass> {
-                    vm = viewModel<TestVM> {
-                        val handle = createSavedStateHandle()
-                        TestVM(handle)
-                    }
+                    vm =
+                        viewModel<TestVM> {
+                            val handle = createSavedStateHandle()
+                            TestVM(handle)
+                        }
                 }
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass(null)) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass(null)) {} }
         composeTestRule.runOnIdle {
-            assertThat(navController.currentDestination?.route).isEqualTo(
-                "androidx.navigation.compose.NavHostControllerTest." +
-                    "testNavigateDialogKClassArgsNullValueSavedStateHandle.TestClass/{arg}"
-            )
+            assertThat(navController.currentDestination?.route)
+                .isEqualTo(
+                    "androidx.navigation.compose.NavHostControllerTest." +
+                        "testNavigateDialogKClassArgsNullValueSavedStateHandle.TestClass/{arg}"
+                )
             assertThat(vm.handle.toRoute<TestClass>().arg).isNull()
         }
     }
@@ -733,26 +690,21 @@
         composeTestRule.setContent {
             navController = rememberNavController(remember { TestNavigator() })
 
-            navController.graph = navController.createGraph(startDestination = FIRST_DESTINATION) {
-                test(FIRST_DESTINATION)
-                test(SECOND_DESTINATION)
-            }
+            navController.graph =
+                navController.createGraph(startDestination = FIRST_DESTINATION) {
+                    test(FIRST_DESTINATION)
+                    test(SECOND_DESTINATION)
+                }
         }
 
-        composeTestRule.runOnUiThread {
-            navController.navigate(SECOND_DESTINATION)
-        }
+        composeTestRule.runOnUiThread { navController.navigate(SECOND_DESTINATION) }
 
         assertWithMessage("first destination should be on back stack")
-            .that(
-                navController.getBackStackEntry(FIRST_DESTINATION).destination.route
-            )
+            .that(navController.getBackStackEntry(FIRST_DESTINATION).destination.route)
             .isEqualTo(FIRST_DESTINATION)
 
         assertWithMessage("second destination should be on back stack")
-            .that(
-                navController.getBackStackEntry(SECOND_DESTINATION).destination.route
-            )
+            .that(navController.getBackStackEntry(SECOND_DESTINATION).destination.route)
             .isEqualTo(SECOND_DESTINATION)
     }
 
@@ -762,21 +714,21 @@
         composeTestRule.setContent {
             navController = rememberNavController(remember { TestNavigator() })
 
-            navController.graph = navController.createGraph(startDestination = FIRST_DESTINATION) {
-                test(FIRST_DESTINATION)
-                test(SECOND_DESTINATION)
-            }
+            navController.graph =
+                navController.createGraph(startDestination = FIRST_DESTINATION) {
+                    test(FIRST_DESTINATION)
+                    test(SECOND_DESTINATION)
+                }
         }
 
-        composeTestRule.runOnUiThread {
-            navController.navigate(SECOND_DESTINATION)
-        }
+        composeTestRule.runOnUiThread { navController.navigate(SECOND_DESTINATION) }
 
         try {
             navController.getBackStackEntry(SECOND_DESTINATION)
         } catch (e: IllegalArgumentException) {
             assertThat(e)
-                .hasMessageThat().contains(
+                .hasMessageThat()
+                .contains(
                     "No destination with route $SECOND_DESTINATION is on the NavController's " +
                         "back stack. The current destination is " +
                         navController.currentBackStackEntry?.destination
@@ -791,22 +743,18 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "first") {
-                composable("first") { }
-                composable<TestClass> { }
+                composable("first") {}
+                composable<TestClass> {}
             }
         }
-        composeTestRule.runOnUiThread {
-            navController.navigate(TestClass()) {}
-        }
+        composeTestRule.runOnUiThread { navController.navigate(TestClass()) {} }
         composeTestRule.runOnIdle {
             assertThat(navController.getBackStackEntry<TestClass>().destination.route)
                 .isEqualTo(TEST_CLASS_ROUTE)
         }
     }
 
-    class TestVM(
-        val handle: SavedStateHandle
-    ) : ViewModel()
+    class TestVM(val handle: SavedStateHandle) : ViewModel()
 }
 
 private const val FIRST_DESTINATION = "first"
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostPreviewTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostPreviewTest.kt
index 7fe9a67..8af37ca 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostPreviewTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostPreviewTest.kt
@@ -38,16 +38,13 @@
 
 class NavHostPreviewTest {
 
-    @get:Rule
-    val composeTestRule = createAndroidComposeRule<PreviewActivity>()
+    @get:Rule val composeTestRule = createAndroidComposeRule<PreviewActivity>()
 
     @Test
     fun navHostPreviewTest() {
         // prevent auto synchronization so it doesn't actually animate the composable
         composeTestRule.mainClock.autoAdvance = false
-        composeTestRule.setContent {
-            NavHostPreview()
-        }
+        composeTestRule.setContent { NavHostPreview() }
 
         val text = composeTestRule.onNodeWithTag("text").assertExists()
         text.assertIsDisplayed()
@@ -57,9 +54,7 @@
     fun navHostWithDialogPreviewTest() {
         // prevent auto synchronization so it doesn't actually animate the composable
         composeTestRule.mainClock.autoAdvance = false
-        composeTestRule.setContent {
-            NavHostWithDialogPreview()
-        }
+        composeTestRule.setContent { NavHostWithDialogPreview() }
 
         val text = composeTestRule.onNodeWithTag("text").assertExists()
         text.assertIsDisplayed()
@@ -81,10 +76,7 @@
         LocalInspectionMode provides true,
     ) {
         Box(Modifier.fillMaxSize().background(Color.Red)) {
-            NavHost(
-                navController = rememberNavController(),
-                startDestination = "home"
-            ) {
+            NavHost(navController = rememberNavController(), startDestination = "home") {
                 composable("home") {
                     Box(Modifier.fillMaxSize().background(Color.Blue)) {
                         Text(text = "test", modifier = Modifier.testTag("text"))
@@ -103,10 +95,7 @@
     ) {
         val navController = rememberNavController()
         Box(Modifier.fillMaxSize().background(Color.Red)) {
-            NavHost(
-                navController = navController,
-                startDestination = "home"
-            ) {
+            NavHost(navController = navController, startDestination = "home") {
                 composable("home") {
                     Box(Modifier.fillMaxSize().background(Color.Blue)) {
                         Text(text = "test", modifier = Modifier.testTag("text"))
@@ -115,9 +104,7 @@
                     navController.navigate("dialog")
                 }
                 dialog("dialog") {
-                    Box(
-                        Modifier.height(200.dp).background(Color.Gray).testTag("dialog")
-                    ) {
+                    Box(Modifier.height(200.dp).background(Color.Gray).testTag("dialog")) {
                         Text(text = "test", modifier = Modifier.testTag("dialog_text"))
                     }
                 }
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostScreenShotTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostScreenShotTest.kt
index b2ee212..4248edc 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostScreenShotTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostScreenShotTest.kt
@@ -56,11 +56,9 @@
 @LargeTest
 @RunWith(AndroidJUnit4::class)
 class NavHostScreenShotTest {
-    @get:Rule
-    val composeTestRule = createComposeRule()
+    @get:Rule val composeTestRule = createComposeRule()
 
-    @get:Rule
-    val screenshotRule = AndroidXScreenshotTestRule("navigation/navigation-compose")
+    @get:Rule val screenshotRule = AndroidXScreenshotTestRule("navigation/navigation-compose")
 
     @RequiresApi(Build.VERSION_CODES.TIRAMISU)
     @Test
@@ -73,31 +71,23 @@
                 startDestination = FIRST,
                 route = "start",
                 enterTransition = { slideInHorizontally { it / 2 } },
-                exitTransition = { slideOutHorizontally { - it / 2 } }
+                exitTransition = { slideOutHorizontally { -it / 2 } }
             ) {
                 composable(FIRST) { BasicText(FIRST) }
                 composable(SECOND) {
-                    Box(
-                        Modifier
-                            .fillMaxSize()
-                            .background(Color.Blue)) {
+                    Box(Modifier.fillMaxSize().background(Color.Blue)) {
                         BasicText(SECOND, Modifier.size(50.dp))
                     }
                 }
                 composable(THIRD) {
-                    Box(
-                        Modifier
-                            .fillMaxSize()
-                            .background(Color.Red)) {
+                    Box(Modifier.fillMaxSize().background(Color.Red)) {
                         BasicText(THIRD, Modifier.size(50.dp))
                     }
                 }
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate(SECOND)
-        }
+        composeTestRule.runOnIdle { navController.navigate(SECOND) }
 
         // don't start drawing third yet
         composeTestRule.runOnIdle {
@@ -113,11 +103,11 @@
         composeTestRule.mainClock.advanceTimeByFrame()
         composeTestRule.mainClock.advanceTimeByFrame()
 
-        composeTestRule.onNodeWithText(THIRD).onParent()
-            .captureToImage().assertAgainstGolden(
-                screenshotRule,
-                "testNavHostAnimationsZIndex"
-            )
+        composeTestRule
+            .onNodeWithText(THIRD)
+            .onParent()
+            .captureToImage()
+            .assertAgainstGolden(screenshotRule, "testNavHostAnimationsZIndex")
     }
 
     @RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
@@ -135,23 +125,18 @@
                 startDestination = FIRST,
                 route = "start",
                 enterTransition = { slideInHorizontally { it / 2 } },
-                exitTransition = { slideOutHorizontally { - it / 2 } }
+                exitTransition = { slideOutHorizontally { -it / 2 } }
             ) {
                 composable(FIRST) { BasicText(FIRST) }
                 composable(SECOND) {
-                    Box(
-                        Modifier
-                            .fillMaxSize()
-                            .background(Color.Blue)) {
+                    Box(Modifier.fillMaxSize().background(Color.Blue)) {
                         BasicText(SECOND, Modifier.size(50.dp))
                     }
                 }
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate(SECOND)
-        }
+        composeTestRule.runOnIdle { navController.navigate(SECOND) }
 
         composeTestRule.runOnIdle {
             backPressedDispatcher.dispatchOnBackStarted(
@@ -176,11 +161,11 @@
 
         composeTestRule.waitForIdle()
 
-        composeTestRule.onNodeWithText(SECOND).onParent()
-            .captureToImage().assertAgainstGolden(
-                screenshotRule,
-                "testNavHostPredictiveBackAnimations"
-            )
+        composeTestRule
+            .onNodeWithText(SECOND)
+            .onParent()
+            .captureToImage()
+            .assertAgainstGolden(screenshotRule, "testNavHostPredictiveBackAnimations")
     }
 
     @RequiresApi(Build.VERSION_CODES.TIRAMISU)
@@ -191,23 +176,26 @@
             navController = rememberNavController()
             Box {
                 NavHost(navController, startDestination = FIRST) {
-                    composable(FIRST,
+                    composable(
+                        FIRST,
                         enterTransition = { EnterTransition.None },
                         exitTransition = { ExitTransition.None },
                         sizeTransform = {
                             SizeTransform { initialSize, targetSize ->
                                 keyframes {
                                     durationMillis = 500
-                                    IntSize(initialSize.width,
-                                        (initialSize.height + targetSize.height) / 2) at 150
+                                    IntSize(
+                                        initialSize.width,
+                                        (initialSize.height + targetSize.height) / 2
+                                    ) at 150
                                 }
                             }
-                        }) {
-                        Box(Modifier.size(40.dp).background(Green)) {
-                            BasicText(FIRST)
                         }
+                    ) {
+                        Box(Modifier.size(40.dp).background(Green)) { BasicText(FIRST) }
                     }
-                    composable(SECOND,
+                    composable(
+                        SECOND,
                         enterTransition = { EnterTransition.None },
                         exitTransition = { ExitTransition.None },
                         sizeTransform = {
@@ -217,10 +205,9 @@
                                     IntSize(targetSize.width, initialSize.height + 400) at 150
                                 }
                             }
-                        }) {
-                        Box(Modifier.size(500.dp).background(Blue)) {
-                            BasicText(SECOND)
                         }
+                    ) {
+                        Box(Modifier.size(500.dp).background(Blue)) { BasicText(SECOND) }
                     }
                 }
             }
@@ -237,11 +224,11 @@
         // down the screen.
         composeTestRule.mainClock.advanceTimeBy(75)
 
-        composeTestRule.onNodeWithText(SECOND).onParent()
-            .captureToImage().assertAgainstGolden(
-                screenshotRule,
-                "testNavHostSizeTransform"
-            )
+        composeTestRule
+            .onNodeWithText(SECOND)
+            .onParent()
+            .captureToImage()
+            .assertAgainstGolden(screenshotRule, "testNavHostSizeTransform")
     }
 }
 
diff --git a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostTest.kt b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostTest.kt
index 32980f7..6e9e2be 100644
--- a/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostTest.kt
+++ b/navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostTest.kt
@@ -81,8 +81,7 @@
 @LargeTest
 @RunWith(AndroidJUnit4::class)
 class NavHostTest {
-    @get:Rule
-    val composeTestRule = createComposeRule()
+    @get:Rule val composeTestRule = createComposeRule()
 
     @Test
     fun testSingleDestinationSet() {
@@ -90,9 +89,7 @@
         composeTestRule.setContent {
             navController = createNavController(LocalContext.current)
 
-            NavHost(navController, startDestination = "first") {
-                test("first")
-            }
+            NavHost(navController, startDestination = "first") { test("first") }
         }
 
         assertWithMessage("Destination should be added to the graph")
@@ -116,12 +113,11 @@
             .that("first" in navController.graph)
             .isTrue()
 
-        runOnUiThread {
-            navController.navigate("second")
-        }
+        runOnUiThread { navController.navigate("second") }
 
         assertWithMessage("second destination should be current")
-            .that(navController.currentDestination?.route).isEqualTo("second")
+            .that(navController.currentDestination?.route)
+            .isEqualTo("second")
     }
 
     @Test
@@ -134,8 +130,8 @@
             var state by remember { mutableStateOf(0) }
             Column(Modifier.fillMaxSize()) {
                 NavHost(navController, startDestination = "first") {
-                    composable("first") { }
-                    composable("second") { }
+                    composable("first") {}
+                    composable("second") {}
                 }
                 Button(
                     onClick = {
@@ -152,23 +148,22 @@
             .that("first" in navController.graph)
             .isTrue()
 
-        composeTestRule.runOnIdle {
-            navController.navigate("second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("second") }
 
         composeTestRule.runOnIdle {
             assertWithMessage("second destination should be current")
-                .that(navController.currentDestination?.route).isEqualTo("second")
+                .that(navController.currentDestination?.route)
+                .isEqualTo("second")
         }
 
-        composeTestRule.onNodeWithText(text)
-            .performClick()
+        composeTestRule.onNodeWithText(text).performClick()
 
         composeTestRule.runOnIdle {
             // ensure our click listener was fired
             assertThat(counter).isEqualTo(1)
             assertWithMessage("second destination should be current")
-                .that(navController.currentDestination?.route).isEqualTo("second")
+                .that(navController.currentDestination?.route)
+                .isEqualTo("second")
         }
     }
 
@@ -190,7 +185,8 @@
         }
 
         assertWithMessage("First destination should be current")
-            .that(navController.currentDestination?.route).isEqualTo("first")
+            .that(navController.currentDestination?.route)
+            .isEqualTo("first")
     }
 
     @Test
@@ -202,7 +198,9 @@
             val context = LocalContext.current
             // added to avoid lint error b/184349025
             @SuppressLint("RememberReturnType")
-            navController = remember { createNavController(context) }
+            navController = remember {
+                createNavController(context)
+            }
 
             NavHost(navController, startDestination = state.value) {
                 test("first")
@@ -210,13 +208,12 @@
             }
         }
 
-        runOnUiThread {
-            state.value = "second"
-        }
+        runOnUiThread { state.value = "second" }
 
         composeTestRule.runOnIdle {
             assertWithMessage("Second destination should be current")
-                .that(navController.currentDestination?.route).isEqualTo("second")
+                .that(navController.currentDestination?.route)
+                .isEqualTo("second")
         }
     }
 
@@ -229,11 +226,11 @@
             state = remember { mutableStateOf(0) }
             // added to avoid lint error b/184349025
             @SuppressLint("RememberReturnType")
-            navController = remember { createNavController(context) }
+            navController = remember {
+                createNavController(context)
+            }
             if (state.value == 0) {
-                NavHost(navController, startDestination = "first") {
-                    test("first")
-                }
+                NavHost(navController, startDestination = "first") { test("first") }
             }
         }
 
@@ -243,13 +240,12 @@
         }
 
         // wait for recompose without NavHost then recompose with the NavHost
-        composeTestRule.runOnIdle {
-            state.value = 0
-        }
+        composeTestRule.runOnIdle { state.value = 0 }
 
         composeTestRule.runOnIdle {
             assertWithMessage("First destination should be current")
-                .that(navController.currentDestination?.route).isEqualTo("first")
+                .that(navController.currentDestination?.route)
+                .isEqualTo("first")
         }
     }
 
@@ -260,9 +256,7 @@
         composeTestRule.setContent {
             navController = rememberNavController()
             NavHost(navController, startDestination = "dialog") {
-                dialog("dialog") {
-                    Text(defaultText)
-                }
+                dialog("dialog") { Text(defaultText) }
             }
         }
 
@@ -282,16 +276,17 @@
             val context = LocalContext.current
             state = remember { mutableStateOf(0) }
             CompositionLocalProvider(LocalLifecycleOwner provides lifecycleOwner) {
-                navController = if (savedState == null) {
-                    rememberNavController()
-                } else {
-                    NavHostController(context).apply {
-                        restoreState(savedState)
-                        setViewModelStore(LocalViewModelStoreOwner.current!!.viewModelStore)
-                        navigatorProvider += ComposeNavigator()
-                        navigatorProvider += DialogNavigator()
+                navController =
+                    if (savedState == null) {
+                        rememberNavController()
+                    } else {
+                        NavHostController(context).apply {
+                            restoreState(savedState)
+                            setViewModelStore(LocalViewModelStoreOwner.current!!.viewModelStore)
+                            navigatorProvider += ComposeNavigator()
+                            navigatorProvider += DialogNavigator()
+                        }
                     }
-                }
                 if (state.value == 0) {
                     NavHost(navController, startDestination = "first") {
                         composable("first") {
@@ -320,7 +315,8 @@
 
         composeTestRule.runOnIdle {
             assertWithMessage("First destination should be current")
-                .that(navController.currentDestination?.route).isEqualTo("first")
+                .that(navController.currentDestination?.route)
+                .isEqualTo("first")
             assertThat(savedViewModel.value).isEqualTo(viewModel.value)
         }
     }
@@ -338,41 +334,31 @@
 
                 if (state.value == 0) {
                     NavHost(navController, route = "graph", startDestination = "first") {
-                        composable("first") {
-                        }
-                        composable("second") {
-                            viewModel = viewModel<TestViewModel>()
-                        }
+                        composable("first") {}
+                        composable("second") { viewModel = viewModel<TestViewModel>() }
                     }
                 }
             }
         }
 
-        assertThat(navController.currentBackStackEntry?.destination?.route)
-            .isEqualTo("first")
+        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("first")
 
-        runOnUiThread {
-            navController.navigate("second")
-        }
+        runOnUiThread { navController.navigate("second") }
 
         composeTestRule.runOnIdle {
-            assertThat(navController.currentBackStackEntry?.destination?.route)
-                .isEqualTo("second")
+            assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("second")
             assertThat(viewModel.wasCleared).isFalse()
         }
 
         runOnUiThread {
             navController.popBackStack("second", inclusive = true, saveState = false)
-            assertThat(navController.currentBackStackEntry?.destination?.route)
-                .isEqualTo("first")
+            assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("first")
             // dispose the NavHost and move to destroy to simulate config change
             state.value = 1
             lifecycleOwner.currentState = Lifecycle.State.DESTROYED
         }
 
-        composeTestRule.runOnIdle {
-            assertThat(viewModel.wasCleared).isTrue()
-        }
+        composeTestRule.runOnIdle { assertThat(viewModel.wasCleared).isTrue() }
     }
 
     @Test
@@ -390,45 +376,34 @@
 
                 if (state.value == 0) {
                     NavHost(navController, route = "graph", startDestination = "first") {
-                        composable("first") {
-                        }
-                        composable("second") {
-                            viewModel_second = viewModel<TestViewModel>()
-                        }
-                        composable("third") {
-                            viewModel_third = viewModel<TestViewModel>()
-                        }
+                        composable("first") {}
+                        composable("second") { viewModel_second = viewModel<TestViewModel>() }
+                        composable("third") { viewModel_third = viewModel<TestViewModel>() }
                     }
                 }
             }
         }
 
-        assertThat(navController.currentBackStackEntry?.destination?.route)
-            .isEqualTo("first")
+        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("first")
 
-        runOnUiThread {
-            navController.navigate("second")
-        }
+        runOnUiThread { navController.navigate("second") }
 
         composeTestRule.waitForIdle()
 
-        runOnUiThread {
-            navController.navigate("third")
-        }
+        runOnUiThread { navController.navigate("third") }
 
         composeTestRule.runOnIdle {
-            assertThat(navController.currentBackStackEntry?.destination?.route)
-                .isEqualTo("third")
+            assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("third")
             assertThat(navController.currentBackStack.value.map { it.destination.route })
-                .containsExactly("graph", "first", "second", "third").inOrder()
+                .containsExactly("graph", "first", "second", "third")
+                .inOrder()
             assertThat(viewModel_second.wasCleared).isFalse()
             assertThat(viewModel_third.wasCleared).isFalse()
         }
 
         runOnUiThread {
             navController.popBackStack("second", inclusive = true, saveState = false)
-            assertThat(navController.currentBackStackEntry?.destination?.route)
-                .isEqualTo("first")
+            assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("first")
             // dispose the NavHost and move to destroy to simulate config change
             state.value = 1
             lifecycleOwner.currentState = Lifecycle.State.DESTROYED
@@ -447,29 +422,23 @@
         composeTestRule.setContent {
             navController = rememberNavController()
             NavHost(navController, startDestination = "first") {
-                composable("first") {
-                }
-                composable("second") {
-                    viewModel = viewModel()
-                }
+                composable("first") {}
+                composable("second") { viewModel = viewModel() }
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate("second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("second") }
 
         composeTestRule.runOnIdle {
             assertThat(viewModel?.saveableStateHolderRef?.get()).isNotNull()
         }
 
-        composeTestRule.runOnIdle {
-            navController.popBackStack()
-        }
+        composeTestRule.runOnIdle { navController.popBackStack() }
 
         composeTestRule.runOnIdle {
             assertWithMessage("First destination should be current")
-                .that(navController.currentDestination?.route).isEqualTo("first")
+                .that(navController.currentDestination?.route)
+                .isEqualTo("first")
             assertThat(viewModel?.saveableStateHolderRef?.get()).isNull()
         }
     }
@@ -483,29 +452,21 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "First") {
-                composable("First") {
-                    numberOnScreen1 = rememberSaveable { increment++ }
-                }
+                composable("First") { numberOnScreen1 = rememberSaveable { increment++ } }
                 composable("Second") {}
             }
         }
 
         composeTestRule.runOnIdle {
-            assertWithMessage("Initial number should be 0")
-                .that(numberOnScreen1)
-                .isEqualTo(0)
+            assertWithMessage("Initial number should be 0").that(numberOnScreen1).isEqualTo(0)
             numberOnScreen1 = -1
             navController.navigate("Second")
         }
 
-        composeTestRule.runOnIdle {
-            navController.popBackStack()
-        }
+        composeTestRule.runOnIdle { navController.popBackStack() }
 
         composeTestRule.runOnIdle {
-            assertWithMessage("The number should be restored")
-                .that(numberOnScreen1)
-                .isEqualTo(0)
+            assertWithMessage("The number should be restored").that(numberOnScreen1).isEqualTo(0)
         }
     }
 
@@ -518,34 +479,23 @@
             navController = rememberNavController()
 
             NavHost(navController, startDestination = "First") {
-                composable("First") {
-                }
-                composable("Second") {
-                    numberOnScreen2 = rememberSaveable { increment++ }
-                }
+                composable("First") {}
+                composable("Second") { numberOnScreen2 = rememberSaveable { increment++ } }
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate("Second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("Second") }
 
         composeTestRule.runOnIdle {
-            assertWithMessage("Initial number should be 0")
-                .that(numberOnScreen2)
-                .isEqualTo(0)
+            assertWithMessage("Initial number should be 0").that(numberOnScreen2).isEqualTo(0)
             numberOnScreen2 = -1
             navController.popBackStack()
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate("Second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("Second") }
 
         composeTestRule.runOnIdle {
-            assertWithMessage("The number shouldn't be restored")
-                .that(numberOnScreen2)
-                .isEqualTo(1)
+            assertWithMessage("The number shouldn't be restored").that(numberOnScreen2).isEqualTo(1)
         }
     }
 
@@ -567,9 +517,7 @@
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate("Second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("Second") }
 
         composeTestRule.runOnIdle {
             assertWithMessage("Each entry should have its own SavedStateRegistry")
@@ -586,21 +534,21 @@
         lateinit var navController: NavHostController
         composeTestRule.setContent {
             navController = rememberNavController()
-            graph1 = navController.createGraph(startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
-            graph2 = navController.createGraph(startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
+            graph1 =
+                navController.createGraph(startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
+            graph2 =
+                navController.createGraph(startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
             currentGraph = graph1
             NavHost(navController, currentGraph!!)
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate("Second")
-        }
+        composeTestRule.runOnIdle { navController.navigate("Second") }
 
         composeTestRule.runOnIdle {
             assertWithMessage("Current destination should be Second")
@@ -608,9 +556,7 @@
                 .isEqualTo("Second")
         }
 
-        composeTestRule.runOnIdle {
-            currentGraph = graph2
-        }
+        composeTestRule.runOnIdle { currentGraph = graph2 }
 
         composeTestRule.runOnIdle {
             assertWithMessage("Current destination should be Second")
@@ -627,14 +573,16 @@
 
         composeTestRule.setContent {
             navController = rememberNavController()
-            graph1 = navController.createGraph(startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
-            graph2 = navController.createGraph(startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
+            graph1 =
+                navController.createGraph(startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
+            graph2 =
+                navController.createGraph(startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
             NavHost(navController, graph1)
         }
 
@@ -674,14 +622,16 @@
 
         composeTestRule.setContent {
             navController = rememberNavController()
-            graph1 = navController.createGraph(route = "route", startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
-            graph2 = navController.createGraph(route = "route", startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
+            graph1 =
+                navController.createGraph(route = "route", startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
+            graph2 =
+                navController.createGraph(route = "route", startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
             NavHost(navController, graph1)
         }
 
@@ -721,20 +671,22 @@
 
         composeTestRule.setContent {
             navController = rememberNavController()
-            graph1 = navController.createGraph(startDestination = "First") {
-                composable("First") { }
-                navigation(startDestination = "Third", route = "Second") {
-                    composable("Third") { }
-                    composable("Fourth") { }
+            graph1 =
+                navController.createGraph(startDestination = "First") {
+                    composable("First") {}
+                    navigation(startDestination = "Third", route = "Second") {
+                        composable("Third") {}
+                        composable("Fourth") {}
+                    }
                 }
-            }
-            graph2 = navController.createGraph(startDestination = "First") {
-                composable("First") { }
-                navigation(startDestination = "Third", route = "Second") {
-                    composable("Third") { }
-                    composable("Fourth") { }
+            graph2 =
+                navController.createGraph(startDestination = "First") {
+                    composable("First") {}
+                    navigation(startDestination = "Third", route = "Second") {
+                        composable("Third") {}
+                        composable("Fourth") {}
+                    }
                 }
-            }
             NavHost(navController, graph1)
         }
 
@@ -778,27 +730,28 @@
 
         composeTestRule.setContent {
             navController = rememberNavController()
-            graph1 = navController.createGraph(route = "Root", startDestination = "First") {
-                composable("First") { }
-                navigation(route = "Second", startDestination = "Third") {
-                    composable("Third") { }
-                    composable("Fourth") { }
+            graph1 =
+                navController.createGraph(route = "Root", startDestination = "First") {
+                    composable("First") {}
+                    navigation(route = "Second", startDestination = "Third") {
+                        composable("Third") {}
+                        composable("Fourth") {}
+                    }
                 }
-            }
-            graph2 = navController.createGraph(route = "Root", startDestination = "First") {
-                composable("First") { }
-                navigation(route = "Second", startDestination = "Third") {
-                    composable("Third") { }
-                    composable("Fourth") { }
+            graph2 =
+                navController.createGraph(route = "Root", startDestination = "First") {
+                    composable("First") {}
+                    navigation(route = "Second", startDestination = "Third") {
+                        composable("Third") {}
+                        composable("Fourth") {}
+                    }
                 }
-            }
             NavHost(navController, graph1)
         }
 
         composeTestRule.runOnIdle {
             navController.navigate("Fourth")
-            assertThat(navController.currentBackStackEntry?.destination?.route)
-                .isEqualTo("Fourth")
+            assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("Fourth")
             // Root, First, Second, Fourth
             assertThat(navController.currentBackStack.value.size).isEqualTo(4)
         }
@@ -809,14 +762,15 @@
 
         composeTestRule.runOnIdle {
             // make sure NavController backQueue is updated with new nested destinations
-            val entryDestinations = navController.currentBackStack.value.filter {
-                !it.destination.route.equals("Root")
-            }.map { it.destination }
+            val entryDestinations =
+                navController.currentBackStack.value
+                    .filter { !it.destination.route.equals("Root") }
+                    .map { it.destination }
 
             val entryRoutes = entryDestinations.map { it.route }
-            assertThat(entryRoutes).containsExactlyElementsIn(
-                listOf("First", "Second", "Fourth")
-            ).inOrder()
+            assertThat(entryRoutes)
+                .containsExactlyElementsIn(listOf("First", "Second", "Fourth"))
+                .inOrder()
 
             assertThat(entryDestinations[0]).isSameInstanceAs(graph2Nodes[0]) // First
             assertThat(entryDestinations[1]).isSameInstanceAs(graph2Nodes[1]) // Second
@@ -835,37 +789,37 @@
 
         composeTestRule.setContent {
             navController = rememberNavController()
-            graph1 = navController.createGraph(route = "Root", startDestination = "First") {
-                composable("First") { }
-                navigation(route = "Second", startDestination = "Third") {
-                    composable("Third") { }
-                    navigation(route = "Fourth", startDestination = "First") {
-                        composable("First") { }
+            graph1 =
+                navController.createGraph(route = "Root", startDestination = "First") {
+                    composable("First") {}
+                    navigation(route = "Second", startDestination = "Third") {
+                        composable("Third") {}
+                        navigation(route = "Fourth", startDestination = "First") {
+                            composable("First") {}
+                        }
                     }
                 }
-            }
-            graph2 = navController.createGraph(route = "Root", startDestination = "First") {
-                composable("First") { }
-                navigation(route = "Second", startDestination = "Third") {
-                    composable("Third") { }
-                    navigation(route = "Fourth", startDestination = "First") {
-                        composable("First") { }
+            graph2 =
+                navController.createGraph(route = "Root", startDestination = "First") {
+                    composable("First") {}
+                    navigation(route = "Second", startDestination = "Third") {
+                        composable("Third") {}
+                        navigation(route = "Fourth", startDestination = "First") {
+                            composable("First") {}
+                        }
                     }
                 }
-            }
             NavHost(navController, graph1)
         }
 
         composeTestRule.runOnIdle {
-            assertThat(navController.currentBackStackEntry?.destination?.route)
-                .isEqualTo("First")
+            assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("First")
 
             // navigate to duplicated destination
             navController.navigate("Fourth")
             // Root, First, Second, Fourth, First
             assertThat(navController.currentBackStack.value.size).isEqualTo(5)
-            assertThat(navController.currentBackStackEntry?.destination?.route)
-                .isEqualTo("First")
+            assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("First")
             // make sure current destination's parent is the nested graph
             assertThat(navController.currentBackStackEntry?.destination?.parent?.route)
                 .isEqualTo("Fourth")
@@ -876,22 +830,22 @@
         navController.setGraph(graph2, null)
 
         composeTestRule.runOnIdle {
-            val entryDestinations = navController.currentBackStack.value.filter {
-                !it.destination.route.equals("Root")
-            }.map { it.destination }
+            val entryDestinations =
+                navController.currentBackStack.value
+                    .filter { !it.destination.route.equals("Root") }
+                    .map { it.destination }
 
             val entryRoutes = entryDestinations.map { it.route }
-            assertThat(entryRoutes).containsExactlyElementsIn(
-                listOf("First", "Second", "Fourth", "First")
-            ).inOrder()
+            assertThat(entryRoutes)
+                .containsExactlyElementsIn(listOf("First", "Second", "Fourth", "First"))
+                .inOrder()
 
             // make sure duplicated nodes are updated with correct instances
             val dup1 = graph2Nodes[0]
             assertThat(dup1.route).isEqualTo("First")
             assertThat(entryDestinations[0]).isSameInstanceAs(dup1)
 
-            val dup2 = ((graph2Nodes[1] as NavGraph).nodes.valueAt(1) as NavGraph)
-                .nodes.valueAt(0)
+            val dup2 = ((graph2Nodes[1] as NavGraph).nodes.valueAt(1) as NavGraph).nodes.valueAt(0)
             assertThat(dup2.route).isEqualTo("First")
             assertThat(entryDestinations[3]).isSameInstanceAs(dup2)
         }
@@ -904,14 +858,16 @@
         lateinit var navController: NavHostController
         composeTestRule.setContent {
             navController = rememberNavController()
-            graph1 = navController.createGraph(route = "Root", startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
-            graph2 = navController.createGraph(route = "Root", startDestination = "First") {
-                composable("First") { }
-                composable("Second") { }
-            }
+            graph1 =
+                navController.createGraph(route = "Root", startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
+            graph2 =
+                navController.createGraph(route = "Root", startDestination = "First") {
+                    composable("First") {}
+                    composable("Second") {}
+                }
 
             NavHost(navController, graph1)
         }
@@ -938,9 +894,9 @@
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
         val entryRoutes = navController.currentBackStack.value.map { it.destination.route }
         // ensure that Root did not get added a second time
-        assertThat(entryRoutes).containsExactlyElementsIn(
-            listOf("Root", "First", "Second")
-        ).inOrder()
+        assertThat(entryRoutes)
+            .containsExactlyElementsIn(listOf("Root", "First", "Second"))
+            .inOrder()
     }
 
     @Test
@@ -962,26 +918,21 @@
         composeTestRule.mainClock.autoAdvance = true
 
         composeTestRule.runOnIdle {
-            assertThat(firstEntry?.lifecycle?.currentState)
-                .isEqualTo(Lifecycle.State.RESUMED)
+            assertThat(firstEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.RESUMED)
         }
 
         composeTestRule.mainClock.autoAdvance = false
 
-        composeTestRule.runOnIdle {
-            navController.navigate(second)
-        }
+        composeTestRule.runOnIdle { navController.navigate(second) }
 
-        assertThat(firstEntry?.lifecycle?.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
+        assertThat(firstEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.CREATED)
         assertThat(navController.currentBackStackEntry?.lifecycle?.currentState)
             .isEqualTo(Lifecycle.State.STARTED)
 
         // advance half way between animations
         composeTestRule.mainClock.advanceTimeBy(DefaultDurationMillis.toLong() / 2)
 
-        assertThat(firstEntry?.lifecycle?.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
+        assertThat(firstEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.CREATED)
         assertThat(navController.currentBackStackEntry?.lifecycle?.currentState)
             .isEqualTo(Lifecycle.State.STARTED)
 
@@ -989,17 +940,13 @@
         composeTestRule.onNodeWithText(second).assertExists()
 
         assertThat(navController.visibleEntries.value)
-            .containsExactly(
-                firstEntry,
-                navController.currentBackStackEntry
-            )
+            .containsExactly(firstEntry, navController.currentBackStackEntry)
             .inOrder()
 
         composeTestRule.mainClock.autoAdvance = true
 
         composeTestRule.runOnIdle {
-            assertThat(firstEntry?.lifecycle?.currentState)
-                .isEqualTo(Lifecycle.State.CREATED)
+            assertThat(firstEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.CREATED)
             assertThat(navController.currentBackStackEntry?.lifecycle?.currentState)
                 .isEqualTo(Lifecycle.State.RESUMED)
         }
@@ -1008,22 +955,18 @@
 
         val secondEntry = navController.currentBackStackEntry
 
-        composeTestRule.runOnIdle {
-            navController.popBackStack()
-        }
+        composeTestRule.runOnIdle { navController.popBackStack() }
 
         assertThat(navController.currentBackStackEntry?.lifecycle?.currentState)
             .isEqualTo(Lifecycle.State.STARTED)
-        assertThat(secondEntry?.lifecycle?.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.CREATED)
 
         // advance half way between animations
         composeTestRule.mainClock.advanceTimeBy(DefaultDurationMillis.toLong() / 2)
 
         assertThat(navController.currentBackStackEntry?.lifecycle?.currentState)
             .isEqualTo(Lifecycle.State.STARTED)
-        assertThat(secondEntry?.lifecycle?.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.CREATED)
 
         composeTestRule.onNodeWithText(first).assertExists()
         composeTestRule.onNodeWithText(second).assertExists()
@@ -1033,8 +976,7 @@
         composeTestRule.runOnIdle {
             assertThat(navController.currentBackStackEntry?.lifecycle?.currentState)
                 .isEqualTo(Lifecycle.State.RESUMED)
-            assertThat(secondEntry?.lifecycle?.currentState)
-                .isEqualTo(Lifecycle.State.DESTROYED)
+            assertThat(secondEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.DESTROYED)
         }
     }
 
@@ -1055,20 +997,17 @@
                         }
                     }
                 }
-                composable(second) { }
+                composable(second) {}
             }
         }
 
         val firstEntry = navController.currentBackStackEntry
 
         composeTestRule.runOnIdle {
-            assertThat(firstEntry?.lifecycle?.currentState)
-                .isEqualTo(Lifecycle.State.RESUMED)
+            assertThat(firstEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.RESUMED)
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate(second)
-        }
+        composeTestRule.runOnIdle { navController.navigate(second) }
 
         val secondEntry = navController.currentBackStackEntry
 
@@ -1078,10 +1017,8 @@
         }
 
         composeTestRule.runOnIdle {
-            assertThat(firstEntry?.lifecycle?.currentState)
-                .isEqualTo(Lifecycle.State.DESTROYED)
-            assertThat(secondEntry?.lifecycle?.currentState)
-                .isEqualTo(Lifecycle.State.DESTROYED)
+            assertThat(firstEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.DESTROYED)
+            assertThat(secondEntry?.lifecycle?.currentState).isEqualTo(Lifecycle.State.DESTROYED)
         }
     }
 
@@ -1117,10 +1054,8 @@
         composeTestRule.mainClock.autoAdvance = true
 
         composeTestRule.runOnIdle {
-            assertThat(firstEntry.lifecycle.currentState)
-                .isEqualTo(Lifecycle.State.CREATED)
-            assertThat(secondEntry.lifecycle.currentState)
-                .isEqualTo(Lifecycle.State.RESUMED)
+            assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+            assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
         }
     }
 
@@ -1134,11 +1069,9 @@
             NavHost(navController, "start") {
                 composable("start") {
                     text = rememberSaveable { mutableStateOf("") }
-                    Column {
-                        TextField(value = text.value, onValueChange = { text.value = it })
-                    }
+                    Column { TextField(value = text.value, onValueChange = { text.value = it }) }
                 }
-                composable("second") { }
+                composable("second") {}
             }
         }
 
@@ -1150,9 +1083,7 @@
 
         composeTestRule.runOnIdle {
             navController.navigate("second") {
-                popUpTo(navController.graph.findStartDestination().id) {
-                    saveState = true
-                }
+                popUpTo(navController.graph.findStartDestination().id) { saveState = true }
 
                 launchSingleTop = true
                 restoreState = true
@@ -1161,9 +1092,7 @@
 
         composeTestRule.runOnIdle {
             navController.navigate("start") {
-                popUpTo(navController.graph.findStartDestination().id) {
-                    saveState = true
-                }
+                popUpTo(navController.graph.findStartDestination().id) { saveState = true }
 
                 launchSingleTop = true
                 restoreState = true
@@ -1181,7 +1110,7 @@
         composeTestRule.setContent {
             navController = rememberNavController()
             NavHost(navController, first) {
-                composable(first) { }
+                composable(first) {}
                 navigation(second, "subGraph") {
                     composable(second) {
                         model = viewModel(remember { navController.getBackStackEntry("subGraph") })
@@ -1190,13 +1119,9 @@
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate(second)
-        }
+        composeTestRule.runOnIdle { navController.navigate(second) }
 
-        composeTestRule.runOnIdle {
-            navController.popBackStack()
-        }
+        composeTestRule.runOnIdle { navController.popBackStack() }
 
         assertThat(model.wasCleared).isFalse()
 
@@ -1213,20 +1138,14 @@
         composeTestRule.setContent {
             navController = rememberNavController()
             NavHost(navController, first) {
-                composable(first) { }
-                dialog(second) {
-                    model = viewModel(it)
-                }
+                composable(first) {}
+                dialog(second) { model = viewModel(it) }
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate(second)
-        }
+        composeTestRule.runOnIdle { navController.navigate(second) }
 
-        composeTestRule.runOnIdle {
-            navController.popBackStack()
-        }
+        composeTestRule.runOnIdle { navController.popBackStack() }
 
         assertThat(model.wasCleared).isFalse()
 
@@ -1248,7 +1167,7 @@
             // instance is different
             navBackStackEntry?.destination
             NavHost(navController, first) {
-                composable(first) { }
+                composable(first) {}
                 navigation(second, "subGraph") {
                     composable(second) {
                         model = viewModel(remember { navController.getBackStackEntry("subGraph") })
@@ -1257,13 +1176,9 @@
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate(second)
-        }
+        composeTestRule.runOnIdle { navController.navigate(second) }
 
-        composeTestRule.runOnIdle {
-            navController.popBackStack()
-        }
+        composeTestRule.runOnIdle { navController.popBackStack() }
 
         assertThat(model.wasCleared).isFalse()
 
@@ -1286,9 +1201,7 @@
             }
         }
 
-        composeTestRule.runOnIdle {
-            navController.navigate(second)
-        }
+        composeTestRule.runOnIdle { navController.navigate(second) }
     }
 
     @Test
@@ -1329,13 +1242,9 @@
         }
 
         // Now navigate to a second destination in the outer NavHost
-        composeTestRule.runOnIdle {
-            navController.navigate(second)
-        }
+        composeTestRule.runOnIdle { navController.navigate(second) }
 
-        composeTestRule.runOnIdle {
-            innerLifecycleOwner.currentState = Lifecycle.State.DESTROYED
-        }
+        composeTestRule.runOnIdle { innerLifecycleOwner.currentState = Lifecycle.State.DESTROYED }
 
         // Now trigger the back button
         composeTestRule.runOnIdle {
@@ -1348,9 +1257,7 @@
         assertThat(innerNavController.currentDestination?.route).isEqualTo("innerSecond")
 
         // Now trigger the back button
-        composeTestRule.runOnIdle {
-            onBackPressedDispatcher.onBackPressed()
-        }
+        composeTestRule.runOnIdle { onBackPressedDispatcher.onBackPressed() }
 
         composeTestRule.waitForIdle()
         assertThat(navController.currentDestination?.route).isEqualTo(first)
@@ -1377,18 +1284,14 @@
                         }
                         lifecycleOwner.lifecycle.addObserver(observer)
 
-                        onDispose {
-                            lifecycleOwner.lifecycle.removeObserver(observer)
-                        }
+                        onDispose { lifecycleOwner.lifecycle.removeObserver(observer) }
                     }
                 }
             }
         }
 
         composeTestRule.runOnIdle {
-            assertWithMessage("Lifecycle should not have been stopped")
-                .that(stopCount)
-                .isEqualTo(0)
+            assertWithMessage("Lifecycle should not have been stopped").that(stopCount).isEqualTo(0)
         }
     }
 
@@ -1406,9 +1309,7 @@
             CompositionLocalProvider(LocalLifecycleOwner provides lifecycleOwner) {
                 BackHandler { wasCalled = true }
                 NavHost(navController, startDestination = "first") {
-                    composable("first") {
-                        BackHandler { count++ }
-                    }
+                    composable("first") { BackHandler { count++ } }
                 }
             }
         }
@@ -1419,14 +1320,10 @@
         }
 
         // move to the back ground to unregister the BackHandlers
-        composeTestRule.runOnIdle {
-            lifecycleOwner.currentState = Lifecycle.State.CREATED
-        }
+        composeTestRule.runOnIdle { lifecycleOwner.currentState = Lifecycle.State.CREATED }
 
         // register the BackHandlers again
-        composeTestRule.runOnIdle {
-            lifecycleOwner.currentState = Lifecycle.State.RESUMED
-        }
+        composeTestRule.runOnIdle { lifecycleOwner.currentState = Lifecycle.State.RESUMED }
 
         composeTestRule.runOnUiThread {
             backPressedDispatcher?.onBackPressed()
@@ -1444,11 +1341,11 @@
             NavHost(navController, startDestination = first) {
                 composable(first) {
                     NavHost(innerNavController, "nested1") {
-                        composable("nested1") { }
-                        composable("nested2") { }
+                        composable("nested1") {}
+                        composable("nested2") {}
                     }
                 }
-                composable(second) { }
+                composable(second) {}
             }
         }
 
@@ -1464,9 +1361,7 @@
         composeTestRule.runOnIdle {
             navController.navigate(first) {
                 restoreState = true
-                popUpTo(second) {
-                    inclusive = true
-                }
+                popUpTo(second) { inclusive = true }
             }
         }
 
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavGraphNavigator.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavGraphNavigator.kt
index 4f7e97d..544ae48 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavGraphNavigator.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavGraphNavigator.kt
@@ -27,33 +27,41 @@
 import androidx.navigation.NavigatorProvider
 
 /**
- * Custom subclass of [NavGraphNavigator] that adds support for defining
- * transitions at the navigation graph level.
+ * Custom subclass of [NavGraphNavigator] that adds support for defining transitions at the
+ * navigation graph level.
  */
 @Navigator.Name("navigation")
-internal class ComposeNavGraphNavigator(
-    navigatorProvider: NavigatorProvider
-) : NavGraphNavigator(navigatorProvider) {
+internal class ComposeNavGraphNavigator(navigatorProvider: NavigatorProvider) :
+    NavGraphNavigator(navigatorProvider) {
     override fun createDestination(): NavGraph {
         return ComposeNavGraph(this)
     }
 
-    internal class ComposeNavGraph(
-        navGraphNavigator: Navigator<out NavGraph>
-    ) : NavGraph(navGraphNavigator) {
-        internal var enterTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null
+    internal class ComposeNavGraph(navGraphNavigator: Navigator<out NavGraph>) :
+        NavGraph(navGraphNavigator) {
+        internal var enterTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+            null
 
-        internal var exitTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null
+        internal var exitTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+            null
 
-        internal var popEnterTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null
+        internal var popEnterTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+            null
 
-        internal var popExitTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null
+        internal var popExitTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+            null
 
-        internal var sizeTransform: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null
+        internal var sizeTransform:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+            null
     }
 }
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigator.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigator.kt
index fbc96b1..51a127e 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigator.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigator.kt
@@ -30,22 +30,20 @@
 import androidx.navigation.compose.ComposeNavigator.Destination
 
 /**
- * Navigator that navigates through [Composable]s. Every destination using this Navigator must
- * set a valid [Composable] by setting it directly on an instantiated [Destination] or calling
+ * Navigator that navigates through [Composable]s. Every destination using this Navigator must set a
+ * valid [Composable] by setting it directly on an instantiated [Destination] or calling
  * [composable].
  */
 @Navigator.Name("composable")
 public class ComposeNavigator : Navigator<Destination>() {
 
-    /**
-     * Get the map of transitions currently in progress from the [state].
-     */
-    internal val transitionsInProgress get() = state.transitionsInProgress
+    /** Get the map of transitions currently in progress from the [state]. */
+    internal val transitionsInProgress
+        get() = state.transitionsInProgress
 
-    /**
-     * Get the back stack from the [state].
-     */
-    public val backStack get() = state.backStack
+    /** Get the back stack from the [state]. */
+    public val backStack
+        get() = state.backStack
 
     internal val isPop = mutableStateOf(false)
 
@@ -54,14 +52,12 @@
         navOptions: NavOptions?,
         navigatorExtras: Extras?
     ) {
-        entries.forEach { entry ->
-            state.pushWithTransition(entry)
-        }
+        entries.forEach { entry -> state.pushWithTransition(entry) }
         isPop.value = false
     }
 
     override fun createDestination(): Destination {
-        return Destination(this) { }
+        return Destination(this) {}
     }
 
     override fun popBackStack(popUpTo: NavBackStackEntry, savedState: Boolean) {
@@ -72,8 +68,8 @@
     /**
      * Function to prepare the entry for transition.
      *
-     * This should be called when the entry needs to move the [Lifecycle.State] in preparation for
-     * a transition such as when using predictive back.
+     * This should be called when the entry needs to move the [Lifecycle.State] in preparation for a
+     * transition such as when using predictive back.
      */
     public fun prepareForTransition(entry: NavBackStackEntry) {
         state.prepareForTransition(entry)
@@ -82,25 +78,24 @@
     /**
      * Callback to mark a navigation in transition as complete.
      *
-     * This should be called in conjunction with [navigate] and [popBackStack] as those
-     * calls merely start a transition to the target destination, and requires manually marking
-     * the transition as complete by calling this method.
+     * This should be called in conjunction with [navigate] and [popBackStack] as those calls merely
+     * start a transition to the target destination, and requires manually marking the transition as
+     * complete by calling this method.
      *
-     * Failing to call this method could result in entries being prevented from reaching their
-     * final [Lifecycle.State].
+     * Failing to call this method could result in entries being prevented from reaching their final
+     * [Lifecycle.State].
      */
     public fun onTransitionComplete(entry: NavBackStackEntry) {
         state.markTransitionComplete(entry)
     }
 
-    /**
-     * NavDestination specific to [ComposeNavigator]
-     */
+    /** NavDestination specific to [ComposeNavigator] */
     @NavDestination.ClassType(Composable::class)
     public class Destination(
         navigator: ComposeNavigator,
         internal val content:
-            @Composable AnimatedContentScope.(@JvmSuppressWildcards NavBackStackEntry) -> Unit
+            @Composable
+            AnimatedContentScope.(@JvmSuppressWildcards NavBackStackEntry) -> Unit
     ) : NavDestination(navigator) {
 
         @Deprecated(
@@ -112,20 +107,30 @@
             content: @Composable (NavBackStackEntry) -> @JvmSuppressWildcards Unit
         ) : this(navigator, content = { entry -> content(entry) })
 
-        internal var enterTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null
+        internal var enterTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+            null
 
-        internal var exitTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null
+        internal var exitTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+            null
 
-        internal var popEnterTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null
+        internal var popEnterTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+            null
 
-        internal var popExitTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null
+        internal var popExitTransition:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+            null
 
-        internal var sizeTransform: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null
+        internal var sizeTransform:
+            (@JvmSuppressWildcards
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+            null
     }
 
     internal companion object {
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigatorDestinationBuilder.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigatorDestinationBuilder.kt
index 21be69b..f27f4a69 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigatorDestinationBuilder.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/ComposeNavigatorDestinationBuilder.kt
@@ -29,9 +29,7 @@
 import kotlin.reflect.KClass
 import kotlin.reflect.KType
 
-/**
- * DSL for constructing a new [ComposeNavigator.Destination]
- */
+/** DSL for constructing a new [ComposeNavigator.Destination] */
 @NavDestinationDsl
 public class ComposeNavigatorDestinationBuilder :
     NavDestinationBuilder<ComposeNavigator.Destination> {
@@ -39,20 +37,30 @@
     private val composeNavigator: ComposeNavigator
     private val content: @Composable (AnimatedContentScope.(NavBackStackEntry) -> Unit)
 
-    var enterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null
+    var enterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+        null
 
-    var exitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null
+    var exitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+        null
 
-    var popEnterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null
+    var popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+        null
 
-    var popExitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null
+    var popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+        null
 
-    var sizeTransform: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null
+    var sizeTransform:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+        null
 
     /**
      * DSL for constructing a new [ComposeNavigator.Destination]
@@ -76,7 +84,7 @@
      * @param navigator navigator used to create the destination
      * @param route the destination's unique route from a [KClass]
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      * @param content composable for the destination
      */
     public constructor(
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogHost.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogHost.kt
index 1de04ee..bd9c086 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogHost.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogHost.kt
@@ -73,8 +73,10 @@
     // entries that were composed, unless they were disposed of already.
     LaunchedEffect(transitionInProgress, dialogsToDispose) {
         transitionInProgress.forEach { entry ->
-            if (!dialogNavigator.backStack.value.contains(entry) &&
-                !dialogsToDispose.contains(entry)) {
+            if (
+                !dialogNavigator.backStack.value.contains(entry) &&
+                    !dialogsToDispose.contains(entry)
+            ) {
                 dialogNavigator.onTransitionComplete(entry)
             }
         }
@@ -107,9 +109,7 @@
                 }
             }
             entry.lifecycle.addObserver(observer)
-            onDispose {
-                entry.lifecycle.removeObserver(observer)
-            }
+            onDispose { entry.lifecycle.removeObserver(observer) }
         }
     }
 }
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigator.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigator.kt
index c7496f8..255d1a5 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigator.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigator.kt
@@ -27,26 +27,22 @@
 import androidx.navigation.compose.DialogNavigator.Destination
 
 /**
- * Navigator that navigates through [Composable]s that will be hosted within a
- * [Dialog]. Every destination using this Navigator must  set a valid [Composable] by setting it
- * directly on an instantiated [Destination] or calling [dialog].
+ * Navigator that navigates through [Composable]s that will be hosted within a [Dialog]. Every
+ * destination using this Navigator must set a valid [Composable] by setting it directly on an
+ * instantiated [Destination] or calling [dialog].
  */
 @Navigator.Name("dialog")
 public class DialogNavigator : Navigator<Destination>() {
 
-    /**
-     * Get the back stack from the [state].
-     */
-    internal val backStack get() = state.backStack
+    /** Get the back stack from the [state]. */
+    internal val backStack
+        get() = state.backStack
 
-    /**
-     * Get the transitioning dialogs from the [state].
-     */
-    internal val transitionInProgress get() = state.transitionsInProgress
+    /** Get the transitioning dialogs from the [state]. */
+    internal val transitionInProgress
+        get() = state.transitionsInProgress
 
-    /**
-     * Dismiss the dialog destination associated with the given [backStackEntry].
-     */
+    /** Dismiss the dialog destination associated with the given [backStackEntry]. */
     internal fun dismiss(backStackEntry: NavBackStackEntry) {
         popBackStack(backStackEntry, false)
     }
@@ -56,13 +52,11 @@
         navOptions: NavOptions?,
         navigatorExtras: Extras?
     ) {
-        entries.forEach { entry ->
-            state.push(entry)
-        }
+        entries.forEach { entry -> state.push(entry) }
     }
 
     override fun createDestination(): Destination {
-        return Destination(this) { }
+        return Destination(this) {}
     }
 
     override fun popBackStack(popUpTo: NavBackStackEntry, savedState: Boolean) {
@@ -80,9 +74,7 @@
         state.markTransitionComplete(entry)
     }
 
-    /**
-     * NavDestination specific to [DialogNavigator]
-     */
+    /** NavDestination specific to [DialogNavigator] */
     @NavDestination.ClassType(Composable::class)
     public class Destination(
         navigator: DialogNavigator,
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigatorDestinationBuilder.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigatorDestinationBuilder.kt
index 1e55b3d..4070846 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigatorDestinationBuilder.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/DialogNavigatorDestinationBuilder.kt
@@ -25,9 +25,7 @@
 import kotlin.reflect.KClass
 import kotlin.reflect.KType
 
-/**
- * DSL for constructing a new [DialogNavigator.Destination]
- */
+/** DSL for constructing a new [DialogNavigator.Destination] */
 @NavDestinationDsl
 public class DialogNavigatorDestinationBuilder :
     NavDestinationBuilder<DialogNavigator.Destination> {
@@ -42,7 +40,7 @@
      * @param navigator navigator used to create the destination
      * @param route the destination's unique route
      * @param dialogProperties properties that should be passed to
-     * [androidx.compose.ui.window.Dialog].
+     *   [androidx.compose.ui.window.Dialog].
      * @param content composable for the destination
      */
     public constructor(
@@ -62,9 +60,9 @@
      * @param navigator navigator used to create the destination
      * @param route the destination's unique route from a [KClass]
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      * @param dialogProperties properties that should be passed to
-     * [androidx.compose.ui.window.Dialog].
+     *   [androidx.compose.ui.window.Dialog].
      * @param content composable for the destination
      */
     public constructor(
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavBackStackEntryProvider.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavBackStackEntryProvider.kt
index 2ca5a6f..3f7d047 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavBackStackEntryProvider.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavBackStackEntryProvider.kt
@@ -34,9 +34,9 @@
  * [LocalSavedStateRegistryOwner] to the [content] and saves the [content]'s saveable states with
  * the given [saveableStateHolder].
  *
- * @param saveableStateHolder The [SaveableStateHolder] that holds the saved states. The same
- * holder should be used for all [NavBackStackEntry]s in the encapsulating [Composable] and the
- * holder should be hoisted.
+ * @param saveableStateHolder The [SaveableStateHolder] that holds the saved states. The same holder
+ *   should be used for all [NavBackStackEntry]s in the encapsulating [Composable] and the holder
+ *   should be hoisted.
  * @param content The content [Composable]
  */
 @Composable
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavGraphBuilder.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavGraphBuilder.kt
index fb4e5d5..8ec6591 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavGraphBuilder.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavGraphBuilder.kt
@@ -53,18 +53,14 @@
     content: @Composable (NavBackStackEntry) -> Unit
 ) {
     addDestination(
-        ComposeNavigator.Destination(provider[ComposeNavigator::class]) {
-                entry ->
-            content(entry)
-        }.apply {
-            this.route = route
-            arguments.forEach { (argumentName, argument) ->
-                addArgument(argumentName, argument)
+        ComposeNavigator.Destination(provider[ComposeNavigator::class]) { entry -> content(entry) }
+            .apply {
+                this.route = route
+                arguments.forEach { (argumentName, argument) ->
+                    addArgument(argumentName, argument)
+                }
+                deepLinks.forEach { deepLink -> addDeepLink(deepLink) }
             }
-            deepLinks.forEach { deepLink ->
-                addDeepLink(deepLink)
-            }
-        }
     )
 }
 
@@ -88,35 +84,34 @@
     route: String,
     arguments: List<NamedNavArgument> = emptyList(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    enterTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null,
-    exitTransition: (@JvmSuppressWildcards
-        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null,
-    popEnterTransition: (@JvmSuppressWildcards
+    enterTransition:
+        (@JvmSuppressWildcards
         AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
-            enterTransition,
-    popExitTransition: (@JvmSuppressWildcards
+        null,
+    exitTransition:
+        (@JvmSuppressWildcards
         AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
-            exitTransition,
+        null,
+    popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+        enterTransition,
+    popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+        exitTransition,
     content: @Composable AnimatedContentScope.(NavBackStackEntry) -> Unit
 ) {
     destination(
-        ComposeNavigatorDestinationBuilder(
-            provider[ComposeNavigator::class],
-            route,
-            content
-        ).apply {
-            arguments.forEach { (argumentName, argument) ->
-                argument(argumentName, argument)
+        ComposeNavigatorDestinationBuilder(provider[ComposeNavigator::class], route, content)
+            .apply {
+                arguments.forEach { (argumentName, argument) -> argument(argumentName, argument) }
+                deepLinks.forEach { deepLink -> deepLink(deepLink) }
+                this.enterTransition = enterTransition
+                this.exitTransition = exitTransition
+                this.popEnterTransition = popEnterTransition
+                this.popExitTransition = popExitTransition
             }
-            deepLinks.forEach { deepLink ->
-                deepLink(deepLink)
-            }
-            this.enterTransition = enterTransition
-            this.exitTransition = exitTransition
-            this.popEnterTransition = popEnterTransition
-            this.popExitTransition = popExitTransition
-        }
     )
 }
 
@@ -137,38 +132,39 @@
     route: String,
     arguments: List<NamedNavArgument> = emptyList(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    enterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null,
-    exitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null,
-    popEnterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+    enterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+        null,
+    exitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+        null,
+    popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
         enterTransition,
-    popExitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+    popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
         exitTransition,
-    sizeTransform: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null,
+    sizeTransform:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+        null,
     content: @Composable AnimatedContentScope.(NavBackStackEntry) -> Unit
 ) {
     destination(
-        ComposeNavigatorDestinationBuilder(
-            provider[ComposeNavigator::class],
-            route,
-            content
-        ).apply {
-            arguments.forEach { (argumentName, argument) ->
-                argument(argumentName, argument)
+        ComposeNavigatorDestinationBuilder(provider[ComposeNavigator::class], route, content)
+            .apply {
+                arguments.forEach { (argumentName, argument) -> argument(argumentName, argument) }
+                deepLinks.forEach { deepLink -> deepLink(deepLink) }
+                this.enterTransition = enterTransition
+                this.exitTransition = exitTransition
+                this.popEnterTransition = popEnterTransition
+                this.popExitTransition = popExitTransition
+                this.sizeTransform = sizeTransform
             }
-            deepLinks.forEach { deepLink ->
-                deepLink(deepLink)
-            }
-            this.enterTransition = enterTransition
-            this.exitTransition = exitTransition
-            this.popEnterTransition = popEnterTransition
-            this.popExitTransition = popExitTransition
-            this.sizeTransform = sizeTransform
-        }
     )
 }
 
@@ -177,7 +173,7 @@
  *
  * @param T route from a [KClass] for the destination
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param deepLinks list of deep links to associate with the destinations
  * @param enterTransition callback to determine the destination's enter transition
  * @param exitTransition callback to determine the destination's exit transition
@@ -189,34 +185,43 @@
 public inline fun <reified T : Any> NavGraphBuilder.composable(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    noinline enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = null,
-    noinline exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = null,
-    noinline popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = enterTransition,
-    noinline popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = exitTransition,
-    noinline sizeTransform: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards SizeTransform?)? = null,
+    noinline enterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        null,
+    noinline exitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        null,
+    noinline popEnterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        enterTransition,
+    noinline popExitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        exitTransition,
+    noinline sizeTransform:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            SizeTransform?)? =
+        null,
     noinline content: @Composable AnimatedContentScope.(NavBackStackEntry) -> Unit
 ) {
     destination(
         ComposeNavigatorDestinationBuilder(
-            provider[ComposeNavigator::class],
-            T::class,
-            typeMap,
-            content
-        ).apply {
-            deepLinks.forEach { deepLink ->
-                deepLink(deepLink)
+                provider[ComposeNavigator::class],
+                T::class,
+                typeMap,
+                content
+            )
+            .apply {
+                deepLinks.forEach { deepLink -> deepLink(deepLink) }
+                this.enterTransition = enterTransition
+                this.exitTransition = exitTransition
+                this.popEnterTransition = popEnterTransition
+                this.popExitTransition = popExitTransition
+                this.sizeTransform = sizeTransform
             }
-            this.enterTransition = enterTransition
-            this.exitTransition = exitTransition
-            this.popEnterTransition = popEnterTransition
-            this.popExitTransition = popExitTransition
-            this.sizeTransform = sizeTransform
-        }
     )
 }
 
@@ -242,8 +247,7 @@
     deepLinks: List<NavDeepLink> = emptyList(),
     builder: NavGraphBuilder.() -> Unit
 ) {
-    navigation(startDestination, route, arguments, deepLinks, null, null,
-        null, null, null, builder)
+    navigation(startDestination, route, arguments, deepLinks, null, null, null, null, null, builder)
 }
 
 /**
@@ -256,10 +260,9 @@
  * @param enterTransition callback to define enter transitions for destination in this NavGraph
  * @param exitTransition callback to define exit transitions for destination in this NavGraph
  * @param popEnterTransition callback to define pop enter transitions for destination in this
- * NavGraph
+ *   NavGraph
  * @param popExitTransition callback to define pop exit transitions for destination in this NavGraph
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 @Deprecated(
@@ -275,16 +278,25 @@
         null,
     exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
         null,
-    popEnterTransition: (
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?
-    )? = enterTransition,
-    popExitTransition: (
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?
-    )? = exitTransition,
+    popEnterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+        enterTransition,
+    popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+        exitTransition,
     builder: NavGraphBuilder.() -> Unit
 ) {
-    navigation(startDestination, route, arguments, deepLinks, enterTransition, exitTransition,
-        popEnterTransition, popExitTransition, null, builder)
+    navigation(
+        startDestination,
+        route,
+        arguments,
+        deepLinks,
+        enterTransition,
+        exitTransition,
+        popEnterTransition,
+        popExitTransition,
+        null,
+        builder
+    )
 }
 
 /**
@@ -299,11 +311,10 @@
  * @param enterTransition callback to define enter transitions for destination in this NavGraph
  * @param exitTransition callback to define exit transitions for destination in this NavGraph
  * @param popEnterTransition callback to define pop enter transitions for destination in this
- * NavGraph
+ *   NavGraph
  * @param popExitTransition callback to define pop exit transitions for destination in this NavGraph
  * @param sizeTransform callback to define the size transform for destinations in this NavGraph
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 public fun NavGraphBuilder.navigation(
@@ -311,28 +322,32 @@
     route: String,
     arguments: List<NamedNavArgument> = emptyList(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    enterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null,
-    exitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? = null,
-    popEnterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?
-    )? = enterTransition,
-    popExitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?
-    )? = exitTransition,
-    sizeTransform: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null,
+    enterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+        null,
+    exitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+        null,
+    popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? =
+        enterTransition,
+    popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition?)? =
+        exitTransition,
+    sizeTransform:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+        null,
     builder: NavGraphBuilder.() -> Unit
 ) {
     addDestination(
         NavGraphBuilder(provider, startDestination, route).apply(builder).build().apply {
-            arguments.forEach { (argumentName, argument) ->
-                addArgument(argumentName, argument)
-            }
-            deepLinks.forEach { deepLink ->
-                addDeepLink(deepLink)
-            }
+            arguments.forEach { (argumentName, argument) -> addArgument(argumentName, argument) }
+            deepLinks.forEach { deepLink -> addDeepLink(deepLink) }
             if (this is ComposeNavGraphNavigator.ComposeNavGraph) {
                 this.enterTransition = enterTransition
                 this.exitTransition = exitTransition
@@ -352,32 +367,41 @@
  * @param T the destination's unique route from a KClass
  * @param startDestination the starting destination's route from [KClass] for this NavGraph
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param deepLinks list of deep links to associate with the destinations
  * @param enterTransition callback to define enter transitions for destination in this NavGraph
  * @param exitTransition callback to define exit transitions for destination in this NavGraph
  * @param popEnterTransition callback to define pop enter transitions for destination in this
- * NavGraph
+ *   NavGraph
  * @param popExitTransition callback to define pop exit transitions for destination in this NavGraph
  * @param sizeTransform callback to define the size transform for destinations in this NavGraph
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 public inline fun <reified T : Any> NavGraphBuilder.navigation(
     startDestination: KClass<*>,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    noinline enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = null,
-    noinline exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = null,
-    noinline popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = enterTransition,
-    noinline popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = exitTransition,
-    noinline sizeTransform: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards SizeTransform?)? = null,
+    noinline enterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        null,
+    noinline exitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        null,
+    noinline popEnterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        enterTransition,
+    noinline popExitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        exitTransition,
+    noinline sizeTransform:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            SizeTransform?)? =
+        null,
     noinline builder: NavGraphBuilder.() -> Unit
 ) {
     navigation(
@@ -401,23 +425,31 @@
     route: KClass<*>,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = null,
-    exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = null,
-    popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = enterTransition,
-    popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = exitTransition,
-    sizeTransform: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards SizeTransform?)? = null,
+    enterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        null,
+    exitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        null,
+    popEnterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        enterTransition,
+    popExitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        exitTransition,
+    sizeTransform:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            SizeTransform?)? =
+        null,
     builder: NavGraphBuilder.() -> Unit
 ) {
     addDestination(
         NavGraphBuilder(provider, startDestination, route, typeMap).apply(builder).build().apply {
-            deepLinks.forEach { deepLink ->
-                addDeepLink(deepLink)
-            }
+            deepLinks.forEach { deepLink -> addDeepLink(deepLink) }
             if (this is ComposeNavGraphNavigator.ComposeNavGraph) {
                 this.enterTransition = enterTransition
                 this.exitTransition = exitTransition
@@ -437,32 +469,41 @@
  * @param T the destination's unique route from a KClass
  * @param startDestination the starting destination's route from an Object for this NavGraph
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param deepLinks list of deep links to associate with the destinations
  * @param enterTransition callback to define enter transitions for destination in this NavGraph
  * @param exitTransition callback to define exit transitions for destination in this NavGraph
  * @param popEnterTransition callback to define pop enter transitions for destination in this
- * NavGraph
+ *   NavGraph
  * @param popExitTransition callback to define pop exit transitions for destination in this NavGraph
  * @param sizeTransform callback to define the size transform for destinations in this NavGraph
  * @param builder the builder used to construct the graph
- *
  * @return the newly constructed nested NavGraph
  */
 public inline fun <reified T : Any> NavGraphBuilder.navigation(
     startDestination: Any,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    noinline enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = null,
-    noinline exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = null,
-    noinline popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = enterTransition,
-    noinline popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = exitTransition,
-    noinline sizeTransform: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards SizeTransform?)? = null,
+    noinline enterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        null,
+    noinline exitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        null,
+    noinline popEnterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        enterTransition,
+    noinline popExitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        exitTransition,
+    noinline sizeTransform:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            SizeTransform?)? =
+        null,
     noinline builder: NavGraphBuilder.() -> Unit
 ) {
     navigation(
@@ -486,23 +527,31 @@
     route: KClass<*>,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     deepLinks: List<NavDeepLink> = emptyList(),
-    enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = null,
-    exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = null,
-    popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards EnterTransition?)? = enterTransition,
-    popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards ExitTransition?)? = exitTransition,
-    sizeTransform: (AnimatedContentTransitionScope<NavBackStackEntry>.() ->
-    @JvmSuppressWildcards SizeTransform?)? = null,
+    enterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        null,
+    exitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        null,
+    popEnterTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            EnterTransition?)? =
+        enterTransition,
+    popExitTransition:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            ExitTransition?)? =
+        exitTransition,
+    sizeTransform:
+        (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards
+            SizeTransform?)? =
+        null,
     builder: NavGraphBuilder.() -> Unit
 ) {
     addDestination(
         NavGraphBuilder(provider, startDestination, route, typeMap).apply(builder).build().apply {
-            deepLinks.forEach { deepLink ->
-                addDeepLink(deepLink)
-            }
+            deepLinks.forEach { deepLink -> addDeepLink(deepLink) }
             if (this is ComposeNavGraphNavigator.ComposeNavGraph) {
                 this.enterTransition = enterTransition
                 this.exitTransition = exitTransition
@@ -516,11 +565,10 @@
 
 /**
  * Add the [Composable] to the [NavGraphBuilder] that will be hosted within a
- * [androidx.compose.ui.window.Dialog]. This is suitable only when this dialog represents
- * a separate screen in your app that needs its own lifecycle and saved state, independent
- * of any other destination in your navigation graph. For use cases such as `AlertDialog`,
- * you should use those APIs directly in the [composable] destination that wants to show that
- * dialog.
+ * [androidx.compose.ui.window.Dialog]. This is suitable only when this dialog represents a separate
+ * screen in your app that needs its own lifecycle and saved state, independent of any other
+ * destination in your navigation graph. For use cases such as `AlertDialog`, you should use those
+ * APIs directly in the [composable] destination that wants to show that dialog.
  *
  * @param route route for the destination
  * @param arguments list of arguments to associate with destination
@@ -537,32 +585,28 @@
 ) {
     destination(
         DialogNavigatorDestinationBuilder(
-            provider[DialogNavigator::class],
-            route,
-            dialogProperties,
-            content
-        ).apply {
-            arguments.forEach { (argumentName, argument) ->
-                argument(argumentName, argument)
+                provider[DialogNavigator::class],
+                route,
+                dialogProperties,
+                content
+            )
+            .apply {
+                arguments.forEach { (argumentName, argument) -> argument(argumentName, argument) }
+                deepLinks.forEach { deepLink -> deepLink(deepLink) }
             }
-            deepLinks.forEach { deepLink ->
-                deepLink(deepLink)
-            }
-        }
     )
 }
 
 /**
  * Add the [Composable] to the [NavGraphBuilder] that will be hosted within a
- * [androidx.compose.ui.window.Dialog]. This is suitable only when this dialog represents
- * a separate screen in your app that needs its own lifecycle and saved state, independent
- * of any other destination in your navigation graph. For use cases such as `AlertDialog`,
- * you should use those APIs directly in the [composable] destination that wants to show that
- * dialog.
+ * [androidx.compose.ui.window.Dialog]. This is suitable only when this dialog represents a separate
+ * screen in your app that needs its own lifecycle and saved state, independent of any other
+ * destination in your navigation graph. For use cases such as `AlertDialog`, you should use those
+ * APIs directly in the [composable] destination that wants to show that dialog.
  *
  * @param T route from a KClass for the destination
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param deepLinks list of deep links to associate with the destinations
  * @param dialogProperties properties that should be passed to [androidx.compose.ui.window.Dialog].
  * @param content composable content for the destination that will be hosted within the Dialog
@@ -575,15 +619,12 @@
 ) {
     destination(
         DialogNavigatorDestinationBuilder(
-            provider[DialogNavigator::class],
-            T::class,
-            typeMap,
-            dialogProperties,
-            content
-        ).apply {
-            deepLinks.forEach { deepLink ->
-                deepLink(deepLink)
-            }
-        }
+                provider[DialogNavigator::class],
+                T::class,
+                typeMap,
+                dialogProperties,
+                content
+            )
+            .apply { deepLinks.forEach { deepLink -> deepLink(deepLink) } }
     )
 }
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHost.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHost.kt
index 531a3fb..b4f6dd3 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHost.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHost.kt
@@ -128,10 +128,12 @@
     modifier: Modifier = Modifier,
     contentAlignment: Alignment = Alignment.TopStart,
     route: String? = null,
-    enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
-        { fadeIn(animationSpec = tween(700)) },
-    exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
-        { fadeOut(animationSpec = tween(700)) },
+    enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) = {
+        fadeIn(animationSpec = tween(700))
+    },
+    exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) = {
+        fadeOut(animationSpec = tween(700))
+    },
     popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
         enterTransition,
     popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
@@ -180,18 +182,30 @@
     modifier: Modifier = Modifier,
     contentAlignment: Alignment = Alignment.TopStart,
     route: String? = null,
-    enterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
-        { fadeIn(animationSpec = tween(700)) },
-    exitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
-        { fadeOut(animationSpec = tween(700)) },
-    popEnterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) = enterTransition,
-    popExitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) = exitTransition,
-    sizeTransform: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null,
+    enterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        {
+            fadeIn(animationSpec = tween(700))
+        },
+    exitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        {
+            fadeOut(animationSpec = tween(700))
+        },
+    popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        enterTransition,
+    popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        exitTransition,
+    sizeTransform:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+        null,
     builder: NavGraphBuilder.() -> Unit
 ) {
     NavHost(
@@ -224,7 +238,7 @@
  * @param contentAlignment The [Alignment] of the [AnimatedContent]
  * @param route the route from a [KClass] for the graph
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [route] does not use custom NavTypes.
+ *   [NavType]. May be empty if [route] does not use custom NavTypes.
  * @param enterTransition callback to define enter transitions for destination in this host
  * @param exitTransition callback to define exit transitions for destination in this host
  * @param popEnterTransition callback to define popEnter transitions for destination in this host
@@ -240,18 +254,30 @@
     contentAlignment: Alignment = Alignment.TopStart,
     route: KClass<*>? = null,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
-    enterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
-        { fadeIn(animationSpec = tween(700)) },
-    exitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
-        { fadeOut(animationSpec = tween(700)) },
-    popEnterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) = enterTransition,
-    popExitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) = exitTransition,
-    sizeTransform: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null,
+    enterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        {
+            fadeIn(animationSpec = tween(700))
+        },
+    exitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        {
+            fadeOut(animationSpec = tween(700))
+        },
+    popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        enterTransition,
+    popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        exitTransition,
+    sizeTransform:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+        null,
     builder: NavGraphBuilder.() -> Unit
 ) {
     NavHost(
@@ -284,7 +310,7 @@
  * @param contentAlignment The [Alignment] of the [AnimatedContent]
  * @param route the route from a [KClass] for the graph
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [route] does not use custom NavTypes.
+ *   [NavType]. May be empty if [route] does not use custom NavTypes.
  * @param enterTransition callback to define enter transitions for destination in this host
  * @param exitTransition callback to define exit transitions for destination in this host
  * @param popEnterTransition callback to define popEnter transitions for destination in this host
@@ -300,18 +326,30 @@
     contentAlignment: Alignment = Alignment.TopStart,
     route: KClass<*>? = null,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
-    enterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
-        { fadeIn(animationSpec = tween(700)) },
-    exitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
-        { fadeOut(animationSpec = tween(700)) },
-    popEnterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) = enterTransition,
-    popExitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) = exitTransition,
-    sizeTransform: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null,
+    enterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        {
+            fadeIn(animationSpec = tween(700))
+        },
+    exitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        {
+            fadeOut(animationSpec = tween(700))
+        },
+    popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        enterTransition,
+    popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        exitTransition,
+    sizeTransform:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+        null,
     builder: NavGraphBuilder.() -> Unit
 ) {
     NavHost(
@@ -379,10 +417,12 @@
     graph: NavGraph,
     modifier: Modifier = Modifier,
     contentAlignment: Alignment = Alignment.TopStart,
-    enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
-        { fadeIn(animationSpec = tween(700)) },
-    exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
-        { fadeOut(animationSpec = tween(700)) },
+    enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) = {
+        fadeIn(animationSpec = tween(700))
+    },
+    exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) = {
+        fadeOut(animationSpec = tween(700))
+    },
     popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
         enterTransition,
     popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
@@ -423,24 +463,37 @@
     graph: NavGraph,
     modifier: Modifier = Modifier,
     contentAlignment: Alignment = Alignment.TopStart,
-    enterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
-        { fadeIn(animationSpec = tween(700)) },
-    exitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
-        { fadeOut(animationSpec = tween(700)) },
-    popEnterTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) = enterTransition,
-    popExitTransition: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) = exitTransition,
-    sizeTransform: (@JvmSuppressWildcards
-    AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? = null
+    enterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        {
+            fadeIn(animationSpec = tween(700))
+        },
+    exitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        {
+            fadeOut(animationSpec = tween(700))
+        },
+    popEnterTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition) =
+        enterTransition,
+    popExitTransition:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> ExitTransition) =
+        exitTransition,
+    sizeTransform:
+        (@JvmSuppressWildcards
+        AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform?)? =
+        null
 ) {
 
     val lifecycleOwner = LocalLifecycleOwner.current
-    val viewModelStoreOwner = checkNotNull(LocalViewModelStoreOwner.current) {
-        "NavHost requires a ViewModelStoreOwner to be provided via LocalViewModelStoreOwner"
-    }
+    val viewModelStoreOwner =
+        checkNotNull(LocalViewModelStoreOwner.current) {
+            "NavHost requires a ViewModelStoreOwner to be provided via LocalViewModelStoreOwner"
+        }
 
     navController.setViewModelStore(viewModelStoreOwner.viewModelStore)
 
@@ -449,9 +502,9 @@
 
     // Find the ComposeNavigator, returning early if it isn't found
     // (such as is the case when using TestNavHostController)
-    val composeNavigator = navController.navigatorProvider.get<Navigator<out NavDestination>>(
-        ComposeNavigator.NAME
-    ) as? ComposeNavigator ?: return
+    val composeNavigator =
+        navController.navigatorProvider.get<Navigator<out NavDestination>>(ComposeNavigator.NAME)
+            as? ComposeNavigator ?: return
 
     val currentBackStack by composeNavigator.backStack.collectAsState()
 
@@ -478,7 +531,7 @@
     DisposableEffect(lifecycleOwner) {
         // Setup the navController with proper owners
         navController.setLifecycleOwner(lifecycleOwner)
-        onDispose { }
+        onDispose {}
     }
 
     val saveableStateHolder = rememberSaveableStateHolder()
@@ -528,19 +581,18 @@
         }
 
         val finalSizeTransform:
-            AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform? = {
-            val targetDestination = targetState.destination as ComposeNavigator.Destination
+            AnimatedContentTransitionScope<NavBackStackEntry>.() -> SizeTransform? =
+            {
+                val targetDestination = targetState.destination as ComposeNavigator.Destination
 
-            targetDestination.hierarchy.firstNotNullOfOrNull { destination ->
-                destination.createSizeTransform(this)
-            } ?: sizeTransform?.invoke(this)
-        }
+                targetDestination.hierarchy.firstNotNullOfOrNull { destination ->
+                    destination.createSizeTransform(this)
+                } ?: sizeTransform?.invoke(this)
+            }
 
         DisposableEffect(true) {
             onDispose {
-                visibleEntries.forEach { entry ->
-                    composeNavigator.onTransitionComplete(entry)
-                }
+                visibleEntries.forEach { entry -> composeNavigator.onTransitionComplete(entry) }
             }
         }
 
@@ -575,16 +627,21 @@
                 // a case where visible has cleared the old state for some reason, so instead of
                 // attempting to animate away from the initialState, we skip the animation.
                 if (initialState in visibleEntries) {
-                    val initialZIndex = zIndices[initialState.id]
-                        ?: 0f.also { zIndices[initialState.id] = 0f }
-                    val targetZIndex = when {
-                        targetState.id == initialState.id -> initialZIndex
-                        composeNavigator.isPop.value -> initialZIndex - 1f
-                        else -> initialZIndex + 1f
-                    }.also { zIndices[targetState.id] = it }
+                    val initialZIndex =
+                        zIndices[initialState.id] ?: 0f.also { zIndices[initialState.id] = 0f }
+                    val targetZIndex =
+                        when {
+                            targetState.id == initialState.id -> initialZIndex
+                            composeNavigator.isPop.value -> initialZIndex - 1f
+                            else -> initialZIndex + 1f
+                        }.also { zIndices[targetState.id] = it }
 
-                    ContentTransform(finalEnter(this), finalExit(this), targetZIndex,
-                        finalSizeTransform(this))
+                    ContentTransform(
+                        finalEnter(this),
+                        finalExit(this),
+                        targetZIndex,
+                        finalSizeTransform(this)
+                    )
                 } else {
                     EnterTransition.None togetherWith ExitTransition.None
                 }
@@ -598,26 +655,28 @@
             // animating. In these cases the currentEntry will be null, and in those cases,
             // AnimatedContent will just skip attempting to transition the old entry.
             // See https://issuetracker.google.com/238686802
-            val currentEntry = if (inPredictiveBack) {
-                // We have to do this because the previous entry does not show up in visibleEntries
-                // even if we prepare it above as part of onBackStackChangeStarted
-                 it
-            } else {
-                visibleEntries.lastOrNull { entry -> it == entry }
-            }
+            val currentEntry =
+                if (inPredictiveBack) {
+                    // We have to do this because the previous entry does not show up in
+                    // visibleEntries
+                    // even if we prepare it above as part of onBackStackChangeStarted
+                    it
+                } else {
+                    visibleEntries.lastOrNull { entry -> it == entry }
+                }
 
             // while in the scope of the composable, we provide the navBackStackEntry as the
             // ViewModelStoreOwner and LifecycleOwner
             currentEntry?.LocalOwnersProvider(saveableStateHolder) {
-                (currentEntry.destination as ComposeNavigator.Destination)
-                    .content(this, currentEntry)
+                (currentEntry.destination as ComposeNavigator.Destination).content(
+                    this,
+                    currentEntry
+                )
             }
         }
         LaunchedEffect(transition.currentState, transition.targetState) {
             if (transition.currentState == transition.targetState) {
-                visibleEntries.forEach { entry ->
-                    composeNavigator.onTransitionComplete(entry)
-                }
+                visibleEntries.forEach { entry -> composeNavigator.onTransitionComplete(entry) }
                 zIndices
                     .filter { it.key != transition.targetState.id }
                     .forEach { zIndices.remove(it.key) }
@@ -625,9 +684,9 @@
         }
     }
 
-    val dialogNavigator = navController.navigatorProvider.get<Navigator<out NavDestination>>(
-        DialogNavigator.NAME
-    ) as? DialogNavigator ?: return
+    val dialogNavigator =
+        navController.navigatorProvider.get<Navigator<out NavDestination>>(DialogNavigator.NAME)
+            as? DialogNavigator ?: return
 
     // Show any dialog destinations
     DialogHost(dialogNavigator)
@@ -635,39 +694,45 @@
 
 private fun NavDestination.createEnterTransition(
     scope: AnimatedContentTransitionScope<NavBackStackEntry>
-): EnterTransition? = when (this) {
-    is ComposeNavigator.Destination -> this.enterTransition?.invoke(scope)
-    is ComposeNavGraphNavigator.ComposeNavGraph -> this.enterTransition?.invoke(scope)
-    else -> null
-}
+): EnterTransition? =
+    when (this) {
+        is ComposeNavigator.Destination -> this.enterTransition?.invoke(scope)
+        is ComposeNavGraphNavigator.ComposeNavGraph -> this.enterTransition?.invoke(scope)
+        else -> null
+    }
 
 private fun NavDestination.createExitTransition(
     scope: AnimatedContentTransitionScope<NavBackStackEntry>
-): ExitTransition? = when (this) {
-    is ComposeNavigator.Destination -> this.exitTransition?.invoke(scope)
-    is ComposeNavGraphNavigator.ComposeNavGraph -> this.exitTransition?.invoke(scope)
-    else -> null
-}
+): ExitTransition? =
+    when (this) {
+        is ComposeNavigator.Destination -> this.exitTransition?.invoke(scope)
+        is ComposeNavGraphNavigator.ComposeNavGraph -> this.exitTransition?.invoke(scope)
+        else -> null
+    }
 
 private fun NavDestination.createPopEnterTransition(
     scope: AnimatedContentTransitionScope<NavBackStackEntry>
-): EnterTransition? = when (this) {
-    is ComposeNavigator.Destination -> this.popEnterTransition?.invoke(scope)
-    is ComposeNavGraphNavigator.ComposeNavGraph -> this.popEnterTransition?.invoke(scope)
-    else -> null
-}
+): EnterTransition? =
+    when (this) {
+        is ComposeNavigator.Destination -> this.popEnterTransition?.invoke(scope)
+        is ComposeNavGraphNavigator.ComposeNavGraph -> this.popEnterTransition?.invoke(scope)
+        else -> null
+    }
+
 private fun NavDestination.createPopExitTransition(
     scope: AnimatedContentTransitionScope<NavBackStackEntry>
-): ExitTransition? = when (this) {
-    is ComposeNavigator.Destination -> this.popExitTransition?.invoke(scope)
-    is ComposeNavGraphNavigator.ComposeNavGraph -> this.popExitTransition?.invoke(scope)
-    else -> null
-}
+): ExitTransition? =
+    when (this) {
+        is ComposeNavigator.Destination -> this.popExitTransition?.invoke(scope)
+        is ComposeNavGraphNavigator.ComposeNavGraph -> this.popExitTransition?.invoke(scope)
+        else -> null
+    }
 
 private fun NavDestination.createSizeTransform(
     scope: AnimatedContentTransitionScope<NavBackStackEntry>
-): SizeTransform? = when (this) {
-    is ComposeNavigator.Destination -> this.sizeTransform?.invoke(scope)
-    is ComposeNavGraphNavigator.ComposeNavGraph -> this.sizeTransform?.invoke(scope)
-    else -> null
-}
+): SizeTransform? =
+    when (this) {
+        is ComposeNavigator.Destination -> this.sizeTransform?.invoke(scope)
+        is ComposeNavGraphNavigator.ComposeNavGraph -> this.sizeTransform?.invoke(scope)
+        else -> null
+    }
diff --git a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHostController.kt b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHostController.kt
index 2c84ae7..baeeaa4 100644
--- a/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHostController.kt
+++ b/navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHostController.kt
@@ -45,10 +45,10 @@
 
 /**
  * Creates a NavHostController that handles the adding of the [ComposeNavigator] and
- * [DialogNavigator]. Additional [Navigator] instances can be passed through [navigators] to
- * be applied to the returned NavController. Note that each [Navigator] must be separately
- * remembered before being passed in here: any changes to those inputs will cause the
- * NavController to be recreated.
+ * [DialogNavigator]. Additional [Navigator] instances can be passed through [navigators] to be
+ * applied to the returned NavController. Note that each [Navigator] must be separately remembered
+ * before being passed in here: any changes to those inputs will cause the NavController to be
+ * recreated.
  *
  * @see NavHost
  */
@@ -58,12 +58,13 @@
 ): NavHostController {
     val context = LocalContext.current
     return rememberSaveable(inputs = navigators, saver = NavControllerSaver(context)) {
-        createNavController(context)
-    }.apply {
-        for (navigator in navigators) {
-            navigatorProvider.addNavigator(navigator)
+            createNavController(context)
         }
-    }
+        .apply {
+            for (navigator in navigators) {
+                navigatorProvider.addNavigator(navigator)
+            }
+        }
 }
 
 private fun createNavController(context: Context) =
@@ -73,12 +74,9 @@
         navigatorProvider.addNavigator(DialogNavigator())
     }
 
-/**
- * Saver to save and restore the NavController across config change and process death.
- */
-private fun NavControllerSaver(
-    context: Context
-): Saver<NavHostController, *> = Saver<NavHostController, Bundle>(
-    save = { it.saveState() },
-    restore = { createNavController(context).apply { restoreState(it) } }
-)
+/** Saver to save and restore the NavController across config change and process death. */
+private fun NavControllerSaver(context: Context): Saver<NavHostController, *> =
+    Saver<NavHostController, Bundle>(
+        save = { it.saveState() },
+        restore = { createNavController(context).apply { restoreState(it) } }
+    )
diff --git a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilderTest.kt b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilderTest.kt
index df440cf..23ef990 100644
--- a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilderTest.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilderTest.kt
@@ -37,22 +37,21 @@
 public class DynamicFragmentNavigatorDestinationBuilderTest {
 
     @get:Rule
-    public val rule: ActivityScenarioRule<TestActivity> = ActivityScenarioRule(
-        TestActivity::class.java
-    )
-    private val fragmentManager get() = rule.withActivity { supportFragmentManager }
+    public val rule: ActivityScenarioRule<TestActivity> =
+        ActivityScenarioRule(TestActivity::class.java)
+    private val fragmentManager
+        get() = rule.withActivity { supportFragmentManager }
 
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     public fun reified() {
         val navHostFragment = DynamicNavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ID) {
-            fragment<TestFragment>(DESTINATION_ID)
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ID) {
+                fragment<TestFragment>(DESTINATION_ID)
+            }
         val fragmentDestination = graph[DESTINATION_ID] as DynamicFragmentNavigator.Destination
         assertWithMessage("Fragment class should be set")
             .that(fragmentDestination.className)
@@ -64,14 +63,11 @@
     @Test
     public fun moduleName() {
         val navHostFragment = DynamicNavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ID) {
-            fragment(DESTINATION_ID, FRAGMENT_CLASS_NAME) {
-                moduleName = MODULE_NAME
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ID) {
+                fragment(DESTINATION_ID, FRAGMENT_CLASS_NAME) { moduleName = MODULE_NAME }
             }
-        }
         val fragmentDestination = graph[DESTINATION_ID] as DynamicFragmentNavigator.Destination
         assertWithMessage("Fragment class should be set")
             .that(fragmentDestination.className)
@@ -86,12 +82,11 @@
     @Test
     public fun no_moduleName() {
         val navHostFragment = DynamicNavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ID) {
-            fragment(DESTINATION_ID, FRAGMENT_CLASS_NAME) {}
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ID) {
+                fragment(DESTINATION_ID, FRAGMENT_CLASS_NAME) {}
+            }
         val fragmentDestination = graph[DESTINATION_ID] as DynamicFragmentNavigator.Destination
         assertWithMessage("Fragment class should be set")
             .that(fragmentDestination.className)
@@ -105,12 +100,11 @@
     @Test
     public fun reifiedKClass() {
         val navHostFragment = DynamicNavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = TestClass::class) {
-            fragment<TestFragment, TestClass>()
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = TestClass::class) {
+                fragment<TestFragment, TestClass>()
+            }
         val fragmentDestination = graph[TestClass::class] as DynamicFragmentNavigator.Destination
         assertWithMessage("Fragment class should be set")
             .that(fragmentDestination.className)
@@ -121,14 +115,11 @@
     @Test
     public fun moduleNameKClass() {
         val navHostFragment = DynamicNavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = TestClass::class) {
-            fragment<TestClass>(FRAGMENT_CLASS_NAME) {
-                moduleName = MODULE_NAME
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = TestClass::class) {
+                fragment<TestClass>(FRAGMENT_CLASS_NAME) { moduleName = MODULE_NAME }
             }
-        }
         val fragmentDestination = graph[TestClass::class] as DynamicFragmentNavigator.Destination
         assertWithMessage("Fragment class should be set")
             .that(fragmentDestination.className)
@@ -142,12 +133,11 @@
     @Test
     public fun no_moduleNameKClass() {
         val navHostFragment = DynamicNavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = TestClass::class) {
-            fragment<TestClass>(FRAGMENT_CLASS_NAME) {}
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = TestClass::class) {
+                fragment<TestClass>(FRAGMENT_CLASS_NAME) {}
+            }
         val fragmentDestination = graph[TestClass::class] as DynamicFragmentNavigator.Destination
         assertWithMessage("Fragment class should be set")
             .that(fragmentDestination.className)
@@ -160,16 +150,14 @@
     @UiThreadTest
     @Test
     public fun reifiedKClass_startDestinationObject() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val navHostFragment = DynamicNavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = TestClass(0)) {
-            fragment<TestFragment, TestClass>()
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = TestClass(0)) {
+                fragment<TestFragment, TestClass>()
+            }
         val fragmentDestination = graph[TestClass::class] as DynamicFragmentNavigator.Destination
         assertWithMessage("Fragment class should be set")
             .that(fragmentDestination.className)
@@ -183,7 +171,7 @@
 private const val FRAGMENT_CLASS_NAME = "androidx.navigation.dynamicfeatures.fragment.TestFragment"
 
 public class TestActivity : FragmentActivity()
+
 private class TestFragment : Fragment()
 
-@Serializable
-private class TestClass
+@Serializable private class TestClass
diff --git a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicIncludeGraphRecreateTest.kt b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicIncludeGraphRecreateTest.kt
index af51a8d..df405f3e 100644
--- a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicIncludeGraphRecreateTest.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicIncludeGraphRecreateTest.kt
@@ -33,9 +33,8 @@
 class DynamicIncludeGraphRecreateTest {
 
     @get:Rule
-    public val rule: ActivityScenarioRule<NavigationActivity> = ActivityScenarioRule(
-        NavigationActivity::class.java
-    )
+    public val rule: ActivityScenarioRule<NavigationActivity> =
+        ActivityScenarioRule(NavigationActivity::class.java)
 
     @Test
     public fun recreateTest() {
@@ -43,16 +42,15 @@
         with(ActivityScenario.launch(NavigationActivity::class.java)) {
             withActivity {
                 fragment = TestDynamicNavHostFragment()
-                supportFragmentManager.beginTransaction()
+                supportFragmentManager
+                    .beginTransaction()
                     .add(R.id.nav_host, fragment, null)
                     .setPrimaryNavigationFragment(fragment)
                     .commitNow()
             }
 
             val navController = fragment.findNavController()
-            withActivity {
-                navController.setGraph(R.navigation.include_dynamic_nav_graph)
-            }
+            withActivity { navController.setGraph(R.navigation.include_dynamic_nav_graph) }
 
             recreate()
 
diff --git a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragmentTest.kt b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragmentTest.kt
index efceadd..7a972a7 100644
--- a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragmentTest.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragmentTest.kt
@@ -36,9 +36,8 @@
 public class DynamicNavHostFragmentTest {
 
     @get:Rule
-    public val rule: ActivityScenarioRule<NavigationActivity> = ActivityScenarioRule(
-        NavigationActivity::class.java
-    )
+    public val rule: ActivityScenarioRule<NavigationActivity> =
+        ActivityScenarioRule(NavigationActivity::class.java)
 
     @Test
     public fun createSplitInstallManager() {
@@ -46,7 +45,8 @@
         with(ActivityScenario.launch(NavigationActivity::class.java)) {
             withActivity {
                 fragment = TestDynamicNavHostFragment()
-                supportFragmentManager.beginTransaction()
+                supportFragmentManager
+                    .beginTransaction()
                     .add(R.id.nav_host, fragment, null)
                     .setPrimaryNavigationFragment(fragment)
                     .commitNow()
@@ -66,12 +66,8 @@
     @UiThreadTest
     @Test
     public fun create_withArgs() {
-        val fragment = DynamicNavHostFragment.create(
-            R.id.nav_host,
-            Bundle().apply {
-                putInt("Test", 1)
-            }
-        )
+        val fragment =
+            DynamicNavHostFragment.create(R.id.nav_host, Bundle().apply { putInt("Test", 1) })
         assertThat(fragment.arguments!!.size()).isEqualTo(2)
     }
 }
diff --git a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragmentTest.kt b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragmentTest.kt
index 54267a3..fd9a238 100644
--- a/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragmentTest.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/androidTest/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragmentTest.kt
@@ -47,7 +47,8 @@
         with(ActivityScenario.launch(NavigationActivity::class.java)) {
             withActivity {
                 fragment = DynamicNavHostFragment()
-                supportFragmentManager.beginTransaction()
+                supportFragmentManager
+                    .beginTransaction()
                     .add(testR.id.nav_host, fragment)
                     .commitNow()
 
@@ -61,9 +62,9 @@
                 defaultProgressFragment =
                     fragment.childFragmentManager.primaryNavigationFragment
                         as DefaultProgressFragment
-                val viewModel = ViewModelProvider(
-                    defaultProgressFragment, InstallViewModel.FACTORY
-                )[InstallViewModel::class.java]
+                val viewModel =
+                    ViewModelProvider(defaultProgressFragment, InstallViewModel.FACTORY)[
+                        InstallViewModel::class.java]
                 // On devices that have play store installed, instead of the split install failing
                 // synchronously without a connection, the connection succeeds and we end up failing
                 // asynchronously since there are no play accounts to install. In this case, we need
@@ -71,14 +72,15 @@
                 // we observe the livedata of the DefaultProgressFragment's viewModel, and wait for
                 // it to fail before we check for test failure.
                 val liveData = viewModel.installMonitor!!.status
-                val observer = object : Observer<SplitInstallSessionState> {
-                    override fun onChanged(value: SplitInstallSessionState) {
-                        if (value.status() == SplitInstallSessionStatus.FAILED) {
-                            liveData.removeObserver(this)
-                            failureCountdownLatch.countDown()
+                val observer =
+                    object : Observer<SplitInstallSessionState> {
+                        override fun onChanged(value: SplitInstallSessionState) {
+                            if (value.status() == SplitInstallSessionStatus.FAILED) {
+                                liveData.removeObserver(this)
+                                failureCountdownLatch.countDown()
+                            }
                         }
                     }
-                }
                 liveData.observe(defaultProgressFragment, observer)
             }
 
@@ -87,8 +89,8 @@
             // check that we are now on the installation failed screen
             withActivity {
                 val title = findViewById<TextView>(mainR.id.progress_title)
-                val installationFailedText = fragment.requireContext().resources
-                    .getText(mainR.string.installation_failed)
+                val installationFailedText =
+                    fragment.requireContext().resources.getText(mainR.string.installation_failed)
                 assertThat(title.text).isEqualTo(installationFailedText)
             }
         }
diff --git a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigator.kt b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigator.kt
index 8cb8658..e9f2bcd 100644
--- a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigator.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigator.kt
@@ -28,9 +28,7 @@
 import androidx.navigation.dynamicfeatures.DynamicInstallManager
 import androidx.navigation.fragment.FragmentNavigator
 
-/**
- * The [Navigator] that enables navigating to destinations within dynamic feature modules.
- */
+/** The [Navigator] that enables navigating to destinations within dynamic feature modules. */
 @Navigator.Name("fragment")
 public class DynamicFragmentNavigator(
     context: Context,
@@ -72,9 +70,7 @@
         )
     }
 
-    /**
-     * Destination for dynamic feature navigator.
-     */
+    /** Destination for dynamic feature navigator. */
     public class Destination : FragmentNavigator.Destination {
         public var moduleName: String? = null
 
diff --git a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilder.kt b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilder.kt
index a1610b2..2a8fc9d 100644
--- a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilder.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicFragmentNavigatorDestinationBuilder.kt
@@ -30,6 +30,7 @@
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
+ *
  * @param id Destination id.
  */
 @Suppress("Deprecation")
@@ -37,12 +38,12 @@
     "Use routes to create your DynamicFragmentDestination instead",
     ReplaceWith("fragment(route = id.toString())")
 )
-public inline fun <reified F : Fragment> DynamicNavGraphBuilder.fragment(
-    @IdRes id: Int
-): Unit = fragment<F>(id) {}
+public inline fun <reified F : Fragment> DynamicNavGraphBuilder.fragment(@IdRes id: Int): Unit =
+    fragment<F>(id) {}
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
+ *
  * @param id Destination id.
  */
 @Suppress("Deprecation")
@@ -57,6 +58,7 @@
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
+ *
  * @param id Destination id.
  * @param fragmentClassName Fully qualified class name of destination Fragment.
  */
@@ -69,24 +71,27 @@
     @IdRes id: Int,
     fragmentClassName: String,
     builder: DynamicFragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DynamicFragmentNavigatorDestinationBuilder(
-        provider[DynamicFragmentNavigator::class],
-        id,
-        fragmentClassName
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicFragmentNavigatorDestinationBuilder(
+                provider[DynamicFragmentNavigator::class],
+                id,
+                fragmentClassName
+            )
+            .apply(builder)
+    )
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
+ *
  * @param route Destination route.
  */
-public inline fun <reified F : Fragment> DynamicNavGraphBuilder.fragment(
-    route: String
-): Unit = fragment<F>(route) {}
+public inline fun <reified F : Fragment> DynamicNavGraphBuilder.fragment(route: String): Unit =
+    fragment<F>(route) {}
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
+ *
  * @param route Destination route.
  * @param builder the builder used to construct the fragment destination
  */
@@ -97,6 +102,7 @@
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
+ *
  * @param route Destination route.
  * @param fragmentClassName Fully qualified class name of destination Fragment.
  * @param builder the builder used to construct the fragment destination
@@ -105,31 +111,33 @@
     route: String,
     fragmentClassName: String,
     builder: DynamicFragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DynamicFragmentNavigatorDestinationBuilder(
-        provider[DynamicFragmentNavigator::class],
-        route,
-        fragmentClassName
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicFragmentNavigatorDestinationBuilder(
+                provider[DynamicFragmentNavigator::class],
+                route,
+                fragmentClassName
+            )
+            .apply(builder)
+    )
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
  *
  * @param T the destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  */
 public inline fun <reified F : Fragment, reified T : Any> DynamicNavGraphBuilder.fragment(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
-    ): Unit = fragment<F, T>(typeMap) {}
+): Unit = fragment<F, T>(typeMap) {}
 
 /**
  * Construct a new [DynamicFragmentNavigator.Destination]
  *
  * @param T the destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param builder the builder used to construct the fragment destination
  */
 public inline fun <reified F : Fragment, reified T : Any> DynamicNavGraphBuilder.fragment(
@@ -142,7 +150,7 @@
  *
  * @param T the destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param fragmentClassName Fully qualified class name of destination Fragment.
  * @param builder the builder used to construct the fragment destination
  */
@@ -150,18 +158,18 @@
     fragmentClassName: String,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DynamicFragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DynamicFragmentNavigatorDestinationBuilder(
-        provider[DynamicFragmentNavigator::class],
-        T::class,
-        typeMap,
-        fragmentClassName
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicFragmentNavigatorDestinationBuilder(
+                provider[DynamicFragmentNavigator::class],
+                T::class,
+                typeMap,
+                fragmentClassName
+            )
+            .apply(builder)
+    )
 
-/**
- * DSL for constructing a new [DynamicFragmentNavigator.Destination]
- */
+/** DSL for constructing a new [DynamicFragmentNavigator.Destination] */
 @NavDestinationDsl
 public class DynamicFragmentNavigatorDestinationBuilder :
     NavDestinationBuilder<FragmentNavigator.Destination> {
@@ -198,7 +206,7 @@
      * @param navigator navigator used to create the destination
      * @param route the route from a [KClass] of the destination
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      * @param fragmentClassName Fully qualified class name of destination Fragment.
      */
     public constructor(
diff --git a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragment.kt b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragment.kt
index 28b3e4f..8fb6582 100644
--- a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragment.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/DynamicNavHostFragment.kt
@@ -29,9 +29,7 @@
 import com.google.android.play.core.splitinstall.SplitInstallManager
 import com.google.android.play.core.splitinstall.SplitInstallManagerFactory
 
-/**
- * The [NavHostFragment] for dynamic features.
- */
+/** The [NavHostFragment] for dynamic features. */
 public open class DynamicNavHostFragment : NavHostFragment() {
 
     override fun onCreateNavHostController(navHostController: NavHostController) {
@@ -42,16 +40,11 @@
 
         navigatorProvider += DynamicActivityNavigator(requireActivity(), installManager)
 
-        val fragmentNavigator = DynamicFragmentNavigator(
-            requireContext(),
-            childFragmentManager, id, installManager
-        )
+        val fragmentNavigator =
+            DynamicFragmentNavigator(requireContext(), childFragmentManager, id, installManager)
         navigatorProvider += fragmentNavigator
 
-        val graphNavigator = DynamicGraphNavigator(
-            navigatorProvider,
-            installManager
-        )
+        val graphNavigator = DynamicGraphNavigator(navigatorProvider, installManager)
         graphNavigator.installDefaultProgressDestination {
             fragmentNavigator.createDestination().apply {
                 setClassName(DefaultProgressFragment::class.java.name)
@@ -60,15 +53,16 @@
         }
         navigatorProvider += graphNavigator
 
-        navigatorProvider += DynamicIncludeGraphNavigator(
-            requireContext(),
-            navigatorProvider, navHostController.navInflater, installManager
-        )
+        navigatorProvider +=
+            DynamicIncludeGraphNavigator(
+                requireContext(),
+                navigatorProvider,
+                navHostController.navInflater,
+                installManager
+            )
     }
 
-    /**
-     * Create a new [SplitInstallManager].
-     */
+    /** Create a new [SplitInstallManager]. */
     protected open fun createSplitInstallManager(): SplitInstallManager =
         SplitInstallManagerFactory.create(requireContext())
 
@@ -76,7 +70,8 @@
     public companion object {
 
         /**
-         * Create a new [DynamicNavHostFragment] instance with an inflated {@link NavGraph} resource.
+         * Create a new [DynamicNavHostFragment] instance with an inflated {@link NavGraph}
+         * resource.
          *
          * @param graphResId Resource id of the navigation graph to inflate.
          * @param startDestinationArgs Arguments to send to the start destination of the graph.
@@ -89,16 +84,17 @@
             startDestinationArgs: Bundle? = null
         ): DynamicNavHostFragment {
             return DynamicNavHostFragment().apply {
-                arguments = if (graphResId != 0 || startDestinationArgs != null) {
-                    Bundle().apply {
-                        if (graphResId != 0) {
-                            putInt(KEY_GRAPH_ID, graphResId)
+                arguments =
+                    if (graphResId != 0 || startDestinationArgs != null) {
+                        Bundle().apply {
+                            if (graphResId != 0) {
+                                putInt(KEY_GRAPH_ID, graphResId)
+                            }
+                            if (startDestinationArgs != null) {
+                                putBundle(KEY_START_DESTINATION_ARGS, startDestinationArgs)
+                            }
                         }
-                        if (startDestinationArgs != null) {
-                            putBundle(KEY_START_DESTINATION_ARGS, startDestinationArgs)
-                        }
-                    }
-                } else null
+                    } else null
             }
         }
     }
diff --git a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/AbstractProgressFragment.kt b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/AbstractProgressFragment.kt
index e0caf39..af3cc42 100644
--- a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/AbstractProgressFragment.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/AbstractProgressFragment.kt
@@ -38,8 +38,8 @@
 /**
  * The base class for [Fragment]s that handle dynamic feature installation.
  *
- * When extending from this class, you are responsible for forwarding installation state changes
- * to your UI via the provided hooks in [onCancelled], [onFailed], [onProgress].
+ * When extending from this class, you are responsible for forwarding installation state changes to
+ * your UI via the provided hooks in [onCancelled], [onFailed], [onProgress].
  *
  * The installation process itself is handled within the [AbstractProgressFragment] itself.
  * Navigation to the target destination will occur once the installation is completed.
@@ -52,15 +52,10 @@
     }
 
     private val installViewModel: InstallViewModel by lazy {
-        ViewModelProvider(
-            viewModelStore,
-            InstallViewModel.FACTORY,
-            defaultViewModelCreationExtras
-        )[InstallViewModel::class.java]
+        ViewModelProvider(viewModelStore, InstallViewModel.FACTORY, defaultViewModelCreationExtras)[
+            InstallViewModel::class.java]
     }
-    private val destinationId by lazy {
-        requireArguments().getInt(Constants.DESTINATION_ID)
-    }
+    private val destinationId by lazy { requireArguments().getInt(Constants.DESTINATION_ID) }
     private val destinationArgs: Bundle? by lazy {
         requireArguments().getBundle(Constants.DESTINATION_ARGS)
     }
@@ -70,13 +65,12 @@
 
     public constructor(contentLayoutId: Int) : super(contentLayoutId)
 
-    private val intentSenderLauncher = registerForActivityResult(
-        ActivityResultContracts.StartIntentSenderForResult()
-    ) { result ->
-        if (result.resultCode == Activity.RESULT_CANCELED) {
-            onCancelled()
+    private val intentSenderLauncher =
+        registerForActivityResult(ActivityResultContracts.StartIntentSenderForResult()) { result ->
+            if (result.resultCode == Activity.RESULT_CANCELED) {
+                onCancelled()
+            }
         }
-    }
 
     override fun onCreate(savedInstanceState: Bundle?) {
         super.onCreate(savedInstanceState)
@@ -101,9 +95,8 @@
             monitor.status.observe(viewLifecycleOwner, StateObserver(monitor))
         }
     }
-    /**
-     * Navigates to an installed dynamic feature module or kicks off installation.
-     */
+
+    /** Navigates to an installed dynamic feature module or kicks off installation. */
     internal fun navigate() {
         Log.i(TAG, "navigate: ")
         val installMonitor = DynamicInstallMonitor()
@@ -127,8 +120,7 @@
         Observer<SplitInstallSessionState> {
 
         override fun onChanged(
-            @Suppress("PARAMETER_NAME_CHANGED_ON_OVERRIDE")
-            sessionState: SplitInstallSessionState
+            @Suppress("PARAMETER_NAME_CHANGED_ON_OVERRIDE") sessionState: SplitInstallSessionState
         ) {
             if (sessionState.hasTerminalStatus()) {
                 monitor.status.removeObserver(this)
@@ -147,7 +139,8 @@
                         }
                         splitInstallManager.startConfirmationDialogForResult(
                             sessionState,
-                            IntentSenderForResultStarter { intent,
+                            IntentSenderForResultStarter {
+                                intent,
                                 _,
                                 fillInIntent,
                                 flagsMask,
@@ -168,8 +161,7 @@
                     }
                 SplitInstallSessionStatus.CANCELED -> onCancelled()
                 SplitInstallSessionStatus.FAILED -> onFailed(sessionState.errorCode())
-                SplitInstallSessionStatus.UNKNOWN ->
-                    onFailed(SplitInstallErrorCode.INTERNAL_ERROR)
+                SplitInstallSessionStatus.UNKNOWN -> onFailed(SplitInstallErrorCode.INTERNAL_ERROR)
                 SplitInstallSessionStatus.CANCELING,
                 SplitInstallSessionStatus.DOWNLOADED,
                 SplitInstallSessionStatus.DOWNLOADING,
@@ -198,9 +190,7 @@
         bytesTotal: Long
     )
 
-    /**
-     * Called when the user decided to cancel installation.
-     */
+    /** Called when the user decided to cancel installation. */
     protected abstract fun onCancelled()
 
     /**
diff --git a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragment.kt b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragment.kt
index 5a2754d..51e966c 100644
--- a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragment.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/DefaultProgressFragment.kt
@@ -33,8 +33,8 @@
 /**
  * The default [androidx.fragment.app.Fragment] to display during installation progress.
  *
- * This `Fragment` provides a default UI and handles split install state changes so you don't
- * have to deal with this.
+ * This `Fragment` provides a default UI and handles split install state changes so you don't have
+ * to deal with this.
  *
  * To create a custom progress fragment, extend [AbstractProgressFragment].
  */
@@ -69,11 +69,12 @@
 
     private fun setActivityIcon(activityIcon: ImageView) {
         with(requireContext().packageManager) {
-            val icon = try {
-                getActivityIcon(ComponentName(requireContext(), requireActivity().javaClass))
-            } catch (e: PackageManager.NameNotFoundException) {
-                defaultActivityIcon
-            }
+            val icon =
+                try {
+                    getActivityIcon(ComponentName(requireContext(), requireActivity().javaClass))
+                } catch (e: PackageManager.NameNotFoundException) {
+                    defaultActivityIcon
+                }
             activityIcon.setImageDrawable(icon)
         }
     }
@@ -101,23 +102,17 @@
         displayAction(R.string.ok) { findNavController().popBackStack() }
     }
 
-    /**
-     * Display an error state message.
-     */
+    /** Display an error state message. */
     private fun displayErrorState(@StringRes text: Int) {
         title?.setText(text)
         progressBar?.visibility = View.INVISIBLE
     }
 
-    /**
-     * Display the action button and assign `onClick` behavior.
-     */
+    /** Display the action button and assign `onClick` behavior. */
     private fun displayAction(@StringRes text: Int, onClick: () -> Unit) {
         action?.run {
             setText(text)
-            setOnClickListener {
-                onClick()
-            }
+            setOnClickListener { onClick() }
             visibility = View.VISIBLE
         }
     }
diff --git a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/InstallViewModel.kt b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/InstallViewModel.kt
index 021771f..56e9fe2 100644
--- a/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/InstallViewModel.kt
+++ b/navigation/navigation-dynamic-features-fragment/src/main/java/androidx/navigation/dynamicfeatures/fragment/ui/InstallViewModel.kt
@@ -20,19 +20,18 @@
 import androidx.lifecycle.ViewModelProvider
 import androidx.navigation.dynamicfeatures.DynamicInstallMonitor
 
-/**
- * View model for installation of dynamic feature modules.
- */
+/** View model for installation of dynamic feature modules. */
 internal class InstallViewModel : ViewModel() {
 
     companion object {
-        val FACTORY = object : ViewModelProvider.Factory {
-            @Suppress("UNCHECKED_CAST")
-            override fun <T : ViewModel> create(modelClass: Class<T>): T {
-                val viewModel = InstallViewModel()
-                return viewModel as T
+        val FACTORY =
+            object : ViewModelProvider.Factory {
+                @Suppress("UNCHECKED_CAST")
+                override fun <T : ViewModel> create(modelClass: Class<T>): T {
+                    val viewModel = InstallViewModel()
+                    return viewModel as T
+                }
             }
-        }
     }
 
     var installMonitor: DynamicInstallMonitor? = null
diff --git a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilderTest.kt b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilderTest.kt
index 93202b5..d4d9b72 100644
--- a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilderTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilderTest.kt
@@ -36,238 +36,208 @@
 
     private val navController =
         NavController(context).also { controller ->
-            val installManager = DynamicInstallManager(
-                context,
-                SplitInstallManagerFactory.create(context)
-            )
+            val installManager =
+                DynamicInstallManager(context, SplitInstallManagerFactory.create(context))
             val navigatorProvider = controller.navigatorProvider
-            navigatorProvider += DynamicActivityNavigator(
-                context,
-                installManager
-            )
+            navigatorProvider += DynamicActivityNavigator(context, installManager)
         }
 
     @Suppress("DEPRECATION")
     @Test
     public fun module() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                moduleName = MODULE_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) { moduleName = MODULE_NAME }
             }
-        }
 
         assertThat(
-            (graph.findNode(DESTINATION_ID) as DynamicActivityNavigator.Destination).moduleName
-        )
+                (graph.findNode(DESTINATION_ID) as DynamicActivityNavigator.Destination).moduleName
+            )
             .isEqualTo(MODULE_NAME)
     }
 
     @Suppress("DEPRECATION")
     @Test
     public fun noModule() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) {}
             }
-        }
         assertThat(
-            (graph.findNode(DESTINATION_ID) as DynamicActivityNavigator.Destination).moduleName
-        ).isNull()
+                (graph.findNode(DESTINATION_ID) as DynamicActivityNavigator.Destination).moduleName
+            )
+            .isNull()
     }
 
     @Suppress("DEPRECATION")
     @Test
     public fun activity() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                moduleName = MODULE_NAME
-                activityClassName = CLASS_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) {
+                    moduleName = MODULE_NAME
+                    activityClassName = CLASS_NAME
+                }
             }
-        }
         val destination = graph.findNode(DESTINATION_ID) as DynamicActivityNavigator.Destination
-        assertThat(
-            destination.component
-        ).isEqualTo(
-            ComponentName(
-                context,
-                CLASS_NAME
-            )
-        )
+        assertThat(destination.component).isEqualTo(ComponentName(context, CLASS_NAME))
     }
 
     @Suppress("DEPRECATION")
     @Test
     public fun noActivity() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) {}
             }
-        }
         val destination = graph.findNode(DESTINATION_ID) as DynamicActivityNavigator.Destination
-        assertThat(
-            destination.component
-        ).isNull()
+        assertThat(destination.component).isNull()
     }
 
     @Suppress("DEPRECATION")
     @Test
     public fun modulePackage() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                moduleName = MODULE_NAME
-                activityClassName = CLASS_NAME
-                targetPackage = PACKAGE_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) {
+                    moduleName = MODULE_NAME
+                    activityClassName = CLASS_NAME
+                    targetPackage = PACKAGE_NAME
+                }
             }
-        }
         val destination = graph.findNode(DESTINATION_ID) as DynamicActivityNavigator.Destination
         assertThat(destination.component).isEqualTo(ComponentName(PACKAGE_NAME, CLASS_NAME))
     }
 
     @Test
     public fun moduleRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                moduleName = MODULE_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) { moduleName = MODULE_NAME }
             }
-        }
 
         assertThat(
-            (graph.findNode(DESTINATION_ROUTE) as DynamicActivityNavigator.Destination).moduleName
-        )
+                (graph.findNode(DESTINATION_ROUTE) as DynamicActivityNavigator.Destination)
+                    .moduleName
+            )
             .isEqualTo(MODULE_NAME)
     }
 
     @Test
     public fun noModuleRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) {}
             }
-        }
         assertThat(
-            (graph.findNode(DESTINATION_ROUTE) as DynamicActivityNavigator.Destination).moduleName
-        ).isNull()
+                (graph.findNode(DESTINATION_ROUTE) as DynamicActivityNavigator.Destination)
+                    .moduleName
+            )
+            .isNull()
     }
 
     @Test
     public fun activityRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                moduleName = MODULE_NAME
-                activityClassName = CLASS_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) {
+                    moduleName = MODULE_NAME
+                    activityClassName = CLASS_NAME
+                }
             }
-        }
         val destination = graph.findNode(DESTINATION_ROUTE) as DynamicActivityNavigator.Destination
-        assertThat(
-            destination.component
-        ).isEqualTo(
-            ComponentName(
-                context,
-                CLASS_NAME
-            )
-        )
+        assertThat(destination.component).isEqualTo(ComponentName(context, CLASS_NAME))
     }
 
     @Test
     public fun noActivityRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) {}
             }
-        }
         val destination = graph.findNode(DESTINATION_ROUTE) as DynamicActivityNavigator.Destination
-        assertThat(
-            destination.component
-        ).isNull()
+        assertThat(destination.component).isNull()
     }
 
     @Test
     public fun modulePackageRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                moduleName = MODULE_NAME
-                activityClassName = CLASS_NAME
-                targetPackage = PACKAGE_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) {
+                    moduleName = MODULE_NAME
+                    activityClassName = CLASS_NAME
+                    targetPackage = PACKAGE_NAME
+                }
             }
-        }
         val destination = graph.findNode(DESTINATION_ROUTE) as DynamicActivityNavigator.Destination
         assertThat(destination.component).isEqualTo(ComponentName(PACKAGE_NAME, CLASS_NAME))
     }
 
     @Test
     public fun moduleKClass() {
-        val graph = navController.createGraph(startDestination = TestClass::class) {
-            activity<TestClass> {
-                moduleName = MODULE_NAME
+        val graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                activity<TestClass> { moduleName = MODULE_NAME }
             }
-        }
 
-        assertThat(
-            (graph.findNode<TestClass>() as DynamicActivityNavigator.Destination).moduleName
-        )
+        assertThat((graph.findNode<TestClass>() as DynamicActivityNavigator.Destination).moduleName)
             .isEqualTo(MODULE_NAME)
     }
 
     @Test
     public fun noModuleKClass() {
-        val graph = navController.createGraph(startDestination = TestClass::class) {
-            activity<TestClass> {
+        val graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                activity<TestClass> {}
             }
-        }
-        assertThat(
-            (graph.findNode<TestClass>() as DynamicActivityNavigator.Destination).moduleName
-        ).isNull()
+        assertThat((graph.findNode<TestClass>() as DynamicActivityNavigator.Destination).moduleName)
+            .isNull()
     }
 
     @Test
     public fun activityKClass() {
-        val graph = navController.createGraph(startDestination = TestClass::class) {
-            activity<TestClass> {
-                moduleName = MODULE_NAME
-                activityClassName = CLASS_NAME
+        val graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                activity<TestClass> {
+                    moduleName = MODULE_NAME
+                    activityClassName = CLASS_NAME
+                }
             }
-        }
         val destination = graph.findNode<TestClass>() as DynamicActivityNavigator.Destination
-        assertThat(
-            destination.component
-        ).isEqualTo(
-            ComponentName(
-                context,
-                CLASS_NAME
-            )
-        )
+        assertThat(destination.component).isEqualTo(ComponentName(context, CLASS_NAME))
     }
 
     @Test
     public fun noActivityKClass() {
-        val graph = navController.createGraph(startDestination = TestClass::class) {
-            activity<TestClass> {
+        val graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                activity<TestClass> {}
             }
-        }
         val destination = graph.findNode<TestClass>() as DynamicActivityNavigator.Destination
-        assertThat(
-            destination.component
-        ).isNull()
+        assertThat(destination.component).isNull()
     }
 
     @Test
     public fun modulePackageKClass() {
-        val graph = navController.createGraph(startDestination = TestClass::class) {
-            activity<TestClass> {
-                moduleName = MODULE_NAME
-                activityClassName = CLASS_NAME
-                targetPackage = PACKAGE_NAME
+        val graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                activity<TestClass> {
+                    moduleName = MODULE_NAME
+                    activityClassName = CLASS_NAME
+                    targetPackage = PACKAGE_NAME
+                }
             }
-        }
         val destination = graph.findNode<TestClass>() as DynamicActivityNavigator.Destination
         assertThat(destination.component).isEqualTo(ComponentName(PACKAGE_NAME, CLASS_NAME))
     }
 
     @Test
     public fun moduleObject() {
-        @Serializable
-        class TestClass(val arg: Int)
-        val graph = navController.createGraph(startDestination = TestClass(0)) {
-            activity<TestClass> {
-                moduleName = MODULE_NAME
+        @Serializable class TestClass(val arg: Int)
+        val graph =
+            navController.createGraph(startDestination = TestClass(0)) {
+                activity<TestClass> { moduleName = MODULE_NAME }
             }
-        }
 
         val dest = graph.findNode<TestClass>() as DynamicActivityNavigator.Destination
         assertThat(dest.moduleName).isEqualTo(MODULE_NAME)
diff --git a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorTest.kt b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorTest.kt
index a8e6f2d..cbe9f43 100644
--- a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorTest.kt
@@ -55,15 +55,10 @@
     public fun setup() {
         splitInstallManager = mock(SplitInstallManager::class.java)
         activityRule.withActivity {
-            installManager = DynamicInstallManager(
-                this,
-                splitInstallManager
-            )
+            installManager = DynamicInstallManager(this, splitInstallManager)
             navigator = DynamicActivityNavigator(this, installManager)
             dynamicDestination = navigator.createDestination()
-            dynamicDestination.setIntent(
-                Intent(this, DestinationActivity::class.java)
-            )
+            dynamicDestination.setIntent(Intent(this, DestinationActivity::class.java))
         }
         provider = NavigatorProvider()
         noOpNavigator = NoOpNavigator()
@@ -78,15 +73,14 @@
     @Test(expected = IllegalStateException::class)
     public fun navigate_DynamicActivityDestination_NoDynamicNavGraph() {
         lateinit var activity: NavigationActivity
-        activityRule.scenario.onActivity {
-            activity = it
-        }
+        activityRule.scenario.onActivity { activity = it }
         @Suppress("UNUSED_VARIABLE")
         val destination = DynamicActivityNavigator.Destination(NavigatorProvider())
-        val navDestination = mock(DynamicActivityNavigator.Destination::class.java).apply {
-            mockWhen(moduleName).thenReturn("module")
-            setIntent(Intent(activity, DestinationActivity::class.java))
-        }
+        val navDestination =
+            mock(DynamicActivityNavigator.Destination::class.java).apply {
+                mockWhen(moduleName).thenReturn("module")
+                setIntent(Intent(activity, DestinationActivity::class.java))
+            }
         navigator.navigate(navDestination, null, null, null)
     }
 
diff --git a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigatorTest.kt b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigatorTest.kt
index 500e6c7..133a8e2 100644
--- a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigatorTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigatorTest.kt
@@ -52,26 +52,23 @@
 
     private fun setupInternal(navGraphId: Int = R.navigation.nav_graph) {
 
-        rule.withActivity {
-            context = this
-        }
+        rule.withActivity { context = this }
 
         val navController = NavController(context)
         val navigatorProvider = navController.navigatorProvider
-        val installManager = AndroidTestDynamicInstallManager(context).also {
-            `when`(it.splitInstallManager.installedModules)
-                .thenReturn(setOf("test"))
-        }
-        navigator = DynamicIncludeGraphNavigator(
-            context,
-            navigatorProvider,
-            navController.navInflater,
-            installManager
-        )
-        with(navController) {
-            navigatorProvider.addNavigator(
-                DynamicGraphNavigator(navigatorProvider, installManager)
+        val installManager =
+            AndroidTestDynamicInstallManager(context).also {
+                `when`(it.splitInstallManager.installedModules).thenReturn(setOf("test"))
+            }
+        navigator =
+            DynamicIncludeGraphNavigator(
+                context,
+                navigatorProvider,
+                navController.navInflater,
+                installManager
             )
+        with(navController) {
+            navigatorProvider.addNavigator(DynamicGraphNavigator(navigatorProvider, installManager))
             navigatorProvider.addNavigator(navigator)
             navigatorProvider.addNavigator(NoOpNavigator())
             setGraph(navGraphId)
@@ -86,28 +83,25 @@
     @Test
     public fun testReplacePackagePlaceholder() {
         val packageName = context.packageName
-        val dynamicNavGraph = navigator.createDestination().apply {
-            moduleName = FEATURE_NAME
-        }
+        val dynamicNavGraph = navigator.createDestination().apply { moduleName = FEATURE_NAME }
         assertThat(
-            dynamicNavGraph.getPackageOrDefault(
-                context,
-                "\${applicationId}.something" +
-                    ".$FEATURE_NAME"
+                dynamicNavGraph.getPackageOrDefault(
+                    context,
+                    "\${applicationId}.something" + ".$FEATURE_NAME"
+                )
             )
-        ).isEqualTo("$packageName.something.$FEATURE_NAME")
+            .isEqualTo("$packageName.something.$FEATURE_NAME")
 
         assertThat(
-            dynamicNavGraph.getPackageOrDefault(
-                context,
-                "something.\${applicationId}" +
-                    ".$FEATURE_NAME"
+                dynamicNavGraph.getPackageOrDefault(
+                    context,
+                    "something.\${applicationId}" + ".$FEATURE_NAME"
+                )
             )
-        ).isEqualTo("something.$packageName.$FEATURE_NAME")
+            .isEqualTo("something.$packageName.$FEATURE_NAME")
 
-        assertThat(
-            dynamicNavGraph.getPackageOrDefault(context, null)
-        ).isEqualTo("$packageName.$FEATURE_NAME")
+        assertThat(dynamicNavGraph.getPackageOrDefault(context, null))
+            .isEqualTo("$packageName.$FEATURE_NAME")
     }
 
     @Test
@@ -116,12 +110,14 @@
             setupInternal(R.navigation.nav_invalid_id)
             fail("Inflating nav_invalid_id should fail with an IllegalStateException")
         } catch (e: IllegalStateException) {
-            assertThat(e).hasMessageThat().containsMatch(
-                ".*" +
-                    "androidx.navigation.dynamicfeatures.test:id/featureFragmentNested" +
+            assertThat(e)
+                .hasMessageThat()
+                .containsMatch(
                     ".*" +
-                    "androidx.navigation.dynamicfeatures.test:id/dynamic_graph"
-            )
+                        "androidx.navigation.dynamicfeatures.test:id/featureFragmentNested" +
+                        ".*" +
+                        "androidx.navigation.dynamicfeatures.test:id/dynamic_graph"
+                )
         }
     }
 
diff --git a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilderTest.kt b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilderTest.kt
index 1d5b5e5..5446fc3 100644
--- a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilderTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilderTest.kt
@@ -37,22 +37,27 @@
 public class DynamicIncludeNavGraphBuilderTest {
 
     private val context: Context = ApplicationProvider.getApplicationContext()
-    private val navController = NavController(context).apply {
-        navigatorProvider += DynamicIncludeGraphNavigator(
-            context, navigatorProvider, navInflater,
-            AndroidTestDynamicInstallManager(context)
-        )
-        navigatorProvider += NoOpNavigator()
-    }
+    private val navController =
+        NavController(context).apply {
+            navigatorProvider +=
+                DynamicIncludeGraphNavigator(
+                    context,
+                    navigatorProvider,
+                    navInflater,
+                    AndroidTestDynamicInstallManager(context)
+                )
+            navigatorProvider += NoOpNavigator()
+        }
 
     @Suppress("DEPRECATION")
     @Test
     public fun includeDynamic() {
-        val graph = navController.navigatorProvider.navigation(startDestination = GRAPH_ID) {
-            includeDynamic(GRAPH_ID, MODULE_NAME, GRAPH_RESOURCE_NAME) {
-                graphPackage = GRAPH_PACKAGE
+        val graph =
+            navController.navigatorProvider.navigation(startDestination = GRAPH_ID) {
+                includeDynamic(GRAPH_ID, MODULE_NAME, GRAPH_RESOURCE_NAME) {
+                    graphPackage = GRAPH_PACKAGE
+                }
             }
-        }
         val includeDynamic = graph[GRAPH_ID] as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
         assertWithMessage("Module should be set in the graph")
             .that(includeDynamic.moduleName)
@@ -83,13 +88,15 @@
     @Suppress("DEPRECATION")
     @Test
     public fun includeDynamic_graphPackage_null() {
-        val graph = navController.navigatorProvider.navigation(startDestination = GRAPH_ID) {
-            includeDynamic(GRAPH_ID, MODULE_NAME, GRAPH_RESOURCE_NAME)
-        }
+        val graph =
+            navController.navigatorProvider.navigation(startDestination = GRAPH_ID) {
+                includeDynamic(GRAPH_ID, MODULE_NAME, GRAPH_RESOURCE_NAME)
+            }
         val includeDynamic = graph[GRAPH_ID] as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
 
         assertWithMessage("graphPackage should be filled in from package name and module name")
-            .that(includeDynamic.graphPackage).isEqualTo("${context.packageName}.$MODULE_NAME")
+            .that(includeDynamic.graphPackage)
+            .isEqualTo("${context.packageName}.$MODULE_NAME")
     }
 
     @Suppress("DEPRECATION")
@@ -97,9 +104,7 @@
     public fun includeDynamic_graphPackage_empty() {
         navController.navigatorProvider.navigation(startDestination = GRAPH_ID) {
             try {
-                includeDynamic(GRAPH_ID, MODULE_NAME, GRAPH_RESOURCE_NAME) {
-                    graphPackage = ""
-                }
+                includeDynamic(GRAPH_ID, MODULE_NAME, GRAPH_RESOURCE_NAME) { graphPackage = "" }
                 fail("includeDynamic should fail with an empty graph package")
             } catch (e: IllegalStateException) {
                 assertThat(e).hasMessageThat().isEqualTo("Graph package name cannot be empty")
@@ -122,13 +127,14 @@
 
     @Test
     public fun includeDynamicRoute() {
-        val graph = navController.navigatorProvider.navigation(startDestination = GRAPH_ROUTE) {
-            includeDynamic(GRAPH_ROUTE, MODULE_NAME, GRAPH_RESOURCE_NAME) {
-                graphPackage = GRAPH_PACKAGE
+        val graph =
+            navController.navigatorProvider.navigation(startDestination = GRAPH_ROUTE) {
+                includeDynamic(GRAPH_ROUTE, MODULE_NAME, GRAPH_RESOURCE_NAME) {
+                    graphPackage = GRAPH_PACKAGE
+                }
             }
-        }
-        val includeDynamic = graph[GRAPH_ROUTE]
-            as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
+        val includeDynamic =
+            graph[GRAPH_ROUTE] as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
         assertWithMessage("Module should be set in the graph")
             .that(includeDynamic.moduleName)
             .isEqualTo(MODULE_NAME)
@@ -156,23 +162,23 @@
 
     @Test
     public fun includeDynamic_graphPackage_nullRoute() {
-        val graph = navController.navigatorProvider.navigation(startDestination = GRAPH_ROUTE) {
-            includeDynamic(GRAPH_ROUTE, MODULE_NAME, GRAPH_RESOURCE_NAME)
-        }
-        val includeDynamic = graph[GRAPH_ROUTE]
-            as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
+        val graph =
+            navController.navigatorProvider.navigation(startDestination = GRAPH_ROUTE) {
+                includeDynamic(GRAPH_ROUTE, MODULE_NAME, GRAPH_RESOURCE_NAME)
+            }
+        val includeDynamic =
+            graph[GRAPH_ROUTE] as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
 
         assertWithMessage("graphPackage should be filled in from package name and module name")
-            .that(includeDynamic.graphPackage).isEqualTo("${context.packageName}.$MODULE_NAME")
+            .that(includeDynamic.graphPackage)
+            .isEqualTo("${context.packageName}.$MODULE_NAME")
     }
 
     @Test
     public fun includeDynamic_graphPackage_emptyRoute() {
         navController.navigatorProvider.navigation(startDestination = GRAPH_ROUTE) {
             try {
-                includeDynamic(GRAPH_ROUTE, MODULE_NAME, GRAPH_RESOURCE_NAME) {
-                    graphPackage = ""
-                }
+                includeDynamic(GRAPH_ROUTE, MODULE_NAME, GRAPH_RESOURCE_NAME) { graphPackage = "" }
                 fail("includeDynamic should fail with an empty graph package")
             } catch (e: IllegalStateException) {
                 assertThat(e).hasMessageThat().isEqualTo("Graph package name cannot be empty")
@@ -194,15 +200,14 @@
 
     @Test
     public fun includeDynamicKClass() {
-        val graph = navController.navigatorProvider.navigation(
-            startDestination = TestClass::class
-        ) {
-            includeDynamic<TestClass>(MODULE_NAME, GRAPH_RESOURCE_NAME) {
-                graphPackage = GRAPH_PACKAGE
+        val graph =
+            navController.navigatorProvider.navigation(startDestination = TestClass::class) {
+                includeDynamic<TestClass>(MODULE_NAME, GRAPH_RESOURCE_NAME) {
+                    graphPackage = GRAPH_PACKAGE
+                }
             }
-        }
-        val includeDynamic = graph[TestClass::class]
-            as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
+        val includeDynamic =
+            graph[TestClass::class] as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
         assertWithMessage("Module should be set in the graph")
             .that(includeDynamic.moduleName)
             .isEqualTo(MODULE_NAME)
@@ -230,25 +235,23 @@
 
     @Test
     public fun includeDynamic_graphPackage_nullKClass() {
-        val graph = navController.navigatorProvider.navigation(
-            startDestination = TestClass::class
-        ) {
-            includeDynamic<TestClass>(MODULE_NAME, GRAPH_RESOURCE_NAME)
-        }
-        val includeDynamic = graph[TestClass::class]
-            as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
+        val graph =
+            navController.navigatorProvider.navigation(startDestination = TestClass::class) {
+                includeDynamic<TestClass>(MODULE_NAME, GRAPH_RESOURCE_NAME)
+            }
+        val includeDynamic =
+            graph[TestClass::class] as DynamicIncludeGraphNavigator.DynamicIncludeNavGraph
 
         assertWithMessage("graphPackage should be filled in from package name and module name")
-            .that(includeDynamic.graphPackage).isEqualTo("${context.packageName}.$MODULE_NAME")
+            .that(includeDynamic.graphPackage)
+            .isEqualTo("${context.packageName}.$MODULE_NAME")
     }
 
     @Test
     public fun includeDynamic_graphPackage_emptyKClass() {
         try {
             navController.navigatorProvider.navigation(startDestination = TestClass::class) {
-                includeDynamic<TestClass>(MODULE_NAME, GRAPH_RESOURCE_NAME) {
-                    graphPackage = ""
-                }
+                includeDynamic<TestClass>(MODULE_NAME, GRAPH_RESOURCE_NAME) { graphPackage = "" }
             }
             fail("includeDynamic should fail with an empty graph package")
         } catch (e: IllegalStateException) {
@@ -275,5 +278,4 @@
 private const val GRAPH_PACKAGE = "com.example.mypackage"
 private const val GRAPH_RESOURCE_NAME = "graphName"
 
-@Serializable
-class TestClass
+@Serializable class TestClass
diff --git a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilderTest.kt b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilderTest.kt
index e3833806..945f46e 100644
--- a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilderTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilderTest.kt
@@ -38,23 +38,25 @@
 @RunWith(AndroidJUnit4::class)
 public class DynamicNavGraphBuilderTest {
 
-    private val provider = NavigatorProvider().apply {
-        addNavigator(
-            DynamicGraphNavigator(
-                this,
-                AndroidTestDynamicInstallManager(ApplicationProvider.getApplicationContext())
+    private val provider =
+        NavigatorProvider().apply {
+            addNavigator(
+                DynamicGraphNavigator(
+                    this,
+                    AndroidTestDynamicInstallManager(ApplicationProvider.getApplicationContext())
+                )
             )
-        )
-        addNavigator(NoOpNavigator())
-    }
+            addNavigator(NoOpNavigator())
+        }
 
     @Suppress("DEPRECATION")
     @Test
     public fun navigation() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-            moduleName = MODULE_NAME
-            navDestination(DESTINATION_ID) {}
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ID) {
+                moduleName = MODULE_NAME
+                navDestination(DESTINATION_ID) {}
+            } as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
@@ -66,8 +68,7 @@
 
     @Suppress("DEPRECATION")
     public fun navigation_emptyModuleName() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-        }
+        val graph = provider.navigation(startDestination = DESTINATION_ID) {}
         assertWithMessage("Without a moduleName the graph should be a NavGraph")
             .that(graph !is DynamicGraphNavigator.DynamicNavGraph)
     }
@@ -75,12 +76,13 @@
     @Suppress("DEPRECATION")
     @Test
     public fun progressDestination() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-            moduleName = MODULE_NAME
-            progressDestination = PROGRESS_DESTINATION_ID
-            navDestination(DESTINATION_ID) {}
-            navDestination(PROGRESS_DESTINATION_ID) {}
-        }
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ID) {
+                moduleName = MODULE_NAME
+                progressDestination = PROGRESS_DESTINATION_ID
+                navDestination(DESTINATION_ID) {}
+                navDestination(PROGRESS_DESTINATION_ID) {}
+            }
 
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
@@ -93,9 +95,9 @@
     @Suppress("DEPRECATION")
     @Test
     public fun progressDestination_notSet() {
-        val graph = provider.navigation(startDestination = DESTINATION_ID) {
-            moduleName = MODULE_NAME
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ID) { moduleName = MODULE_NAME }
+                as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("ProgressDestination should default to 0")
             .that(graph.progressDestination)
@@ -104,10 +106,11 @@
 
     @Test
     public fun navigationRoute() {
-        val graph = provider.navigation(startDestination = DESTINATION_ROUTE) {
-            moduleName = MODULE_NAME
-            navDestination(DESTINATION_ROUTE) {}
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ROUTE) {
+                moduleName = MODULE_NAME
+                navDestination(DESTINATION_ROUTE) {}
+            } as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
@@ -119,13 +122,13 @@
 
     @Test
     public fun navigationKClass() {
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
-        val graph = provider.navigation(startDestination = TestClass::class) {
-            moduleName = MODULE_NAME
-            navDestination<TestClass> {}
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = TestClass::class) {
+                moduleName = MODULE_NAME
+                navDestination<TestClass> {}
+            } as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
@@ -137,13 +140,13 @@
 
     @Test
     public fun navigationObject() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
-        val graph = provider.navigation(startDestination = TestClass(0)) {
-            moduleName = MODULE_NAME
-            navDestination<TestClass> {}
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = TestClass(0)) {
+                moduleName = MODULE_NAME
+                navDestination<TestClass> {}
+            } as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
@@ -156,18 +159,17 @@
 
     @Test
     public fun navigationNestedKClass() {
-        @Serializable
-        class TestGraph
+        @Serializable class TestGraph
 
-        @Serializable
-        class TestClass
+        @Serializable class TestClass
 
-        val graph = provider.navigation(startDestination = TestGraph::class) {
-            moduleName = MODULE_NAME
-            navigation<TestGraph>(startDestination = TestClass::class) {
-                navDestination<TestClass> {}
-            }
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = TestGraph::class) {
+                moduleName = MODULE_NAME
+                navigation<TestGraph>(startDestination = TestClass::class) {
+                    navDestination<TestClass> {}
+                }
+            } as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("Destination should be added to the graph")
             .that(TestGraph::class in graph)
@@ -180,18 +182,17 @@
 
     @Test
     public fun navigationNestedObject() {
-        @Serializable
-        class TestGraph(val arg: Int)
+        @Serializable class TestGraph(val arg: Int)
 
-        @Serializable
-        class TestClass(val arg2: String)
+        @Serializable class TestClass(val arg2: String)
 
-        val graph = provider.navigation(startDestination = TestGraph(0)) {
-            moduleName = MODULE_NAME
-            navigation<TestGraph>(startDestination = TestClass("test")) {
-                navDestination<TestClass> {}
-            }
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = TestGraph(0)) {
+                moduleName = MODULE_NAME
+                navigation<TestGraph>(startDestination = TestClass("test")) {
+                    navDestination<TestClass> {}
+                }
+            } as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("Destination should be added to the graph")
             .that(TestGraph::class in graph)
@@ -205,20 +206,20 @@
     }
 
     public fun navigation_emptyModuleNameRoute() {
-        val graph = provider.navigation(startDestination = DESTINATION_ROUTE) {
-        }
+        val graph = provider.navigation(startDestination = DESTINATION_ROUTE) {}
         assertWithMessage("Without a moduleName the graph should be a NavGraph")
             .that(graph !is DynamicGraphNavigator.DynamicNavGraph)
     }
 
     @Test
     public fun progressDestinationRoute() {
-        val graph = provider.navigation(startDestination = DESTINATION_ROUTE) {
-            moduleName = MODULE_NAME
-            progressDestinationRoute = PROGRESS_DESTINATION_ROUTE
-            navDestination(DESTINATION_ROUTE) {}
-            navDestination(PROGRESS_DESTINATION_ROUTE) {}
-        }
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ROUTE) {
+                moduleName = MODULE_NAME
+                progressDestinationRoute = PROGRESS_DESTINATION_ROUTE
+                navDestination(DESTINATION_ROUTE) {}
+                navDestination(PROGRESS_DESTINATION_ROUTE) {}
+            }
 
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
@@ -230,9 +231,9 @@
 
     @Test
     public fun progressDestination_notSetRoute() {
-        val graph = provider.navigation(startDestination = DESTINATION_ROUTE) {
-            moduleName = MODULE_NAME
-        } as DynamicGraphNavigator.DynamicNavGraph
+        val graph =
+            provider.navigation(startDestination = DESTINATION_ROUTE) { moduleName = MODULE_NAME }
+                as DynamicGraphNavigator.DynamicNavGraph
 
         assertWithMessage("ProgressDestination should default to 0")
             .that(graph.progressDestination)
@@ -247,8 +248,8 @@
 private const val MODULE_NAME = "myModule"
 
 /**
- * Create a base NavDestination. Generally, only subtypes of NavDestination should be
- * added to a NavGraph (hence why this is not in the common-ktx library)
+ * Create a base NavDestination. Generally, only subtypes of NavDestination should be added to a
+ * NavGraph (hence why this is not in the common-ktx library)
  */
 @Suppress("DEPRECATION")
 public fun DynamicNavGraphBuilder.navDestination(
@@ -257,8 +258,8 @@
 ): Unit = destination(NavDestinationBuilder(provider[NoOpNavigator::class], id).apply(builder))
 
 /**
- * Create a base NavDestination. Generally, only subtypes of NavDestination should be
- * added to a NavGraph (hence why this is not in the common-ktx library)
+ * Create a base NavDestination. Generally, only subtypes of NavDestination should be added to a
+ * NavGraph (hence why this is not in the common-ktx library)
  */
 public fun DynamicNavGraphBuilder.navDestination(
     route: String,
@@ -266,10 +267,12 @@
 ): Unit = destination(NavDestinationBuilder(provider[NoOpNavigator::class], route).apply(builder))
 
 /**
- * Create a base NavDestination. Generally, only subtypes of NavDestination should be
- * added to a NavGraph (hence why this is not in the common-ktx library)
+ * Create a base NavDestination. Generally, only subtypes of NavDestination should be added to a
+ * NavGraph (hence why this is not in the common-ktx library)
  */
 public inline fun <reified T> DynamicNavGraphBuilder.navDestination(
     builder: NavDestinationBuilder<NavDestination>.() -> Unit
-): Unit = destination(NavDestinationBuilder(provider[NoOpNavigator::class], T::class, emptyMap())
-    .apply(builder))
+): Unit =
+    destination(
+        NavDestinationBuilder(provider[NoOpNavigator::class], T::class, emptyMap()).apply(builder)
+    )
diff --git a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/shared/AndroidTestDynamicInstallManager.kt b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/shared/AndroidTestDynamicInstallManager.kt
index c400233..924c2f5 100644
--- a/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/shared/AndroidTestDynamicInstallManager.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/androidTest/java/androidx/navigation/dynamicfeatures/shared/AndroidTestDynamicInstallManager.kt
@@ -21,9 +21,7 @@
 import com.google.android.play.core.splitinstall.SplitInstallManager
 import org.mockito.Mockito.mock
 
-/**
- * A dynamic install manager used for testing.
- */
+/** A dynamic install manager used for testing. */
 public class AndroidTestDynamicInstallManager(
     context: Context,
     public val splitInstallManager: SplitInstallManager = mock(SplitInstallManager::class.java)
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/Constants.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/Constants.kt
index 30fd5da..2775c16 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/Constants.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/Constants.kt
@@ -18,9 +18,7 @@
 
 import androidx.annotation.RestrictTo
 
-/**
- * Internal constants for dynamic feature navigator.
- */
+/** Internal constants for dynamic feature navigator. */
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 public object Constants {
     public const val KEY_NAVIGATED: String = "dfn:navigated"
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigator.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigator.kt
index 4a30617..9b8cdba 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigator.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigator.kt
@@ -25,9 +25,7 @@
 import androidx.navigation.Navigator
 import androidx.navigation.NavigatorProvider
 
-/**
- * Dynamic feature navigator for Activity destinations.
- */
+/** Dynamic feature navigator for Activity destinations. */
 @Navigator.Name("activity")
 public class DynamicActivityNavigator(
     context: Context,
@@ -69,24 +67,24 @@
 
     override fun createDestination(): Destination = Destination(this)
 
-    /**
-     * Destination for [DynamicActivityNavigator].
-     */
+    /** Destination for [DynamicActivityNavigator]. */
     public class Destination : ActivityNavigator.Destination {
         /**
-         * The module name of this [Destination]'s dynamic feature module. This has to be the
-         * same as defined in the dynamic feature module's AndroidManifest.xml file.
+         * The module name of this [Destination]'s dynamic feature module. This has to be the same
+         * as defined in the dynamic feature module's AndroidManifest.xml file.
          */
         public var moduleName: String? = null
 
         /**
          * Create a new [Destination] with a [NavigatorProvider].
+         *
          * @see ActivityNavigator.Destination
          */
         public constructor(navigatorProvider: NavigatorProvider) : super(navigatorProvider)
 
         /**
          * Create a new [Destination] with an [ActivityNavigator.Destination].
+         *
          * @param activityNavigator The Navigator to use for this [Destination].
          */
         public constructor(
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilder.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilder.kt
index ba5e7a5..22b03b7 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilder.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicActivityNavigatorDestinationBuilder.kt
@@ -31,6 +31,7 @@
 
 /**
  * Construct a new [DynamicActivityNavigator.Destination]
+ *
  * @param id Destination id.
  */
 @Suppress("Deprecation")
@@ -41,49 +42,49 @@
 public inline fun DynamicNavGraphBuilder.activity(
     @IdRes id: Int,
     builder: DynamicActivityNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DynamicActivityNavigatorDestinationBuilder(
-        provider[DynamicActivityNavigator::class],
-        id
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicActivityNavigatorDestinationBuilder(provider[DynamicActivityNavigator::class], id)
+            .apply(builder)
+    )
 
 /**
  * Construct a new [DynamicActivityNavigator.Destination]
+ *
  * @param route Destination route.
  * @param builder the builder used to construct the graph
  */
 public inline fun DynamicNavGraphBuilder.activity(
     route: String,
     builder: DynamicActivityNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DynamicActivityNavigatorDestinationBuilder(
-        provider[DynamicActivityNavigator::class],
-        route
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicActivityNavigatorDestinationBuilder(provider[DynamicActivityNavigator::class], route)
+            .apply(builder)
+    )
 
 /**
  * Construct a new [DynamicActivityNavigator.Destination]
+ *
  * @param T Destination route from a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T]
- * does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T] does not
+ *   use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun <reified T : Any> DynamicNavGraphBuilder.activity(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DynamicActivityNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DynamicActivityNavigatorDestinationBuilder(
-        provider[DynamicActivityNavigator::class],
-        T::class,
-        typeMap
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicActivityNavigatorDestinationBuilder(
+                provider[DynamicActivityNavigator::class],
+                T::class,
+                typeMap
+            )
+            .apply(builder)
+    )
 
-/**
- * DSL for constructing a new [DynamicActivityNavigator.Destination]
- */
+/** DSL for constructing a new [DynamicActivityNavigator.Destination] */
 @NavDestinationDsl
 public class DynamicActivityNavigatorDestinationBuilder :
     NavDestinationBuilder<ActivityNavigator.Destination> {
@@ -116,7 +117,7 @@
      * @param activityNavigator navigator used to create the destination
      * @param route the route from a [KClass] of the destination
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      */
     public constructor(
         activityNavigator: DynamicActivityNavigator,
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicExtras.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicExtras.kt
index d9c2cee..639b98a 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicExtras.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicExtras.kt
@@ -24,13 +24,11 @@
  * You can set a [DynamicInstallMonitor] here to be notified of install state changes as well as any
  * [Navigator.Extras].
  */
-public class DynamicExtras @JvmOverloads constructor(
-    /**
-     * @return The [DynamicInstallMonitor] used.
-     */
+public class DynamicExtras
+@JvmOverloads
+constructor(
+    /** @return The [DynamicInstallMonitor] used. */
     public val installMonitor: DynamicInstallMonitor? = null,
-    /**
-     * @return [Navigator.Extras] associated with these [DynamicExtras].
-     */
+    /** @return [Navigator.Extras] associated with these [DynamicExtras]. */
     public val destinationExtras: Navigator.Extras? = null
 ) : Navigator.Extras
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigator.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigator.kt
index 85627bc..5b42291 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigator.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigator.kt
@@ -32,10 +32,10 @@
 /**
  * Navigator for graphs in dynamic feature modules.
  *
- * This class handles navigating to a progress destination when the installation
- * of a dynamic feature module is required. By default, the progress destination set
- * by [installDefaultProgressDestination] will be used, but this can be overridden
- * by setting the `app:progressDestinationId` attribute in your navigation XML file.
+ * This class handles navigating to a progress destination when the installation of a dynamic
+ * feature module is required. By default, the progress destination set by
+ * [installDefaultProgressDestination] will be used, but this can be overridden by setting the
+ * `app:progressDestinationId` attribute in your navigation XML file.
  */
 @Navigator.Name("navigation")
 public class DynamicGraphNavigator(
@@ -43,9 +43,7 @@
     private val installManager: DynamicInstallManager
 ) : NavGraphNavigator(navigatorProvider) {
 
-    /**
-     * @return The progress destination supplier if any is set.
-     */
+    /** @return The progress destination supplier if any is set. */
     internal var defaultProgressDestinationSupplier: (() -> NavDestination)? = null
         private set
 
@@ -54,9 +52,9 @@
     /**
      * Navigate to a destination.
      *
-     * In case the destination module is installed the navigation will trigger directly.
-     * Otherwise the dynamic feature module is requested and navigation is postponed until the
-     * module has successfully been installed.
+     * In case the destination module is installed the navigation will trigger directly. Otherwise
+     * the dynamic feature module is requested and navigation is postponed until the module has
+     * successfully been installed.
      */
     override fun navigate(
         entries: List<NavBackStackEntry>,
@@ -83,7 +81,8 @@
             }
         }
         super.navigate(
-            listOf(entry), navOptions,
+            listOf(entry),
+            navOptions,
             if (extras != null) extras.destinationExtras else navigatorExtras
         )
     }
@@ -98,13 +97,12 @@
     }
 
     /**
-     * Installs the default progress destination to this graph via a lambda.
-     * This supplies a [NavDestination] to use when the actual destination is not installed at
-     * navigation time.
+     * Installs the default progress destination to this graph via a lambda. This supplies a
+     * [NavDestination] to use when the actual destination is not installed at navigation time.
      *
      * This **must** be called before you call [androidx.navigation.NavController.setGraph] to
-     * ensure that all [DynamicNavGraph] instances have the correct progress destination
-     * installed in [onRestoreState].
+     * ensure that all [DynamicNavGraph] instances have the correct progress destination installed
+     * in [onRestoreState].
      *
      * @param progressDestinationSupplier The default progress destination supplier.
      */
@@ -128,14 +126,16 @@
             progressDestinationId = installDefaultProgressDestination(dynamicNavGraph)
         }
 
-        val progressDestination = dynamicNavGraph.findNode(progressDestinationId)
-            ?: throw IllegalStateException(
-                "The progress destination id must be set and " +
-                    "accessible to the module of this navigator."
+        val progressDestination =
+            dynamicNavGraph.findNode(progressDestinationId)
+                ?: throw IllegalStateException(
+                    "The progress destination id must be set and " +
+                        "accessible to the module of this navigator."
+                )
+        val navigator =
+            navigatorProvider.getNavigator<Navigator<NavDestination>>(
+                progressDestination.navigatorName
             )
-        val navigator = navigatorProvider.getNavigator<Navigator<NavDestination>>(
-            progressDestination.navigatorName
-        )
         val entry = state.createBackStackEntry(progressDestination, progressArgs)
         navigator.navigate(listOf(entry), null, null)
     }
@@ -176,9 +176,7 @@
         }
     }
 
-    /**
-     * The [NavGraph] for dynamic features.
-     */
+    /** The [NavGraph] for dynamic features. */
     public class DynamicNavGraph(
         @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
         internal val navGraphNavigator: DynamicGraphNavigator,
@@ -189,8 +187,8 @@
         internal companion object {
 
             /**
-             * Get the [DynamicNavGraph] for a supplied [NavDestination] or throw an
-             * exception if it's not a [DynamicNavGraph].
+             * Get the [DynamicNavGraph] for a supplied [NavDestination] or throw an exception if
+             * it's not a [DynamicNavGraph].
              */
             internal fun getOrThrow(destination: NavDestination): DynamicNavGraph {
                 return destination.parent as? DynamicNavGraph
@@ -204,14 +202,12 @@
             }
         }
 
-        /**
-         * The dynamic feature's module name.
-         */
+        /** The dynamic feature's module name. */
         public var moduleName: String? = null
 
         /**
-         * Resource id of progress destination. This will be preferred over any
-         * default progress destination set by [installDefaultProgressDestination].
+         * Resource id of progress destination. This will be preferred over any default progress
+         * destination set by [installDefaultProgressDestination].
          */
         public var progressDestination: Int = 0
 
@@ -219,12 +215,12 @@
             super.onInflate(context, attrs)
             context.withStyledAttributes(attrs, R.styleable.DynamicGraphNavigator) {
                 moduleName = getString(R.styleable.DynamicGraphNavigator_moduleName)
-                progressDestination = getResourceId(
-                    R.styleable.DynamicGraphNavigator_progressDestination, 0
-                )
+                progressDestination =
+                    getResourceId(R.styleable.DynamicGraphNavigator_progressDestination, 0)
                 if (progressDestination == 0) {
-                    navGraphNavigator.destinationsWithoutDefaultProgressDestination
-                        .add(this@DynamicNavGraph)
+                    navGraphNavigator.destinationsWithoutDefaultProgressDestination.add(
+                        this@DynamicNavGraph
+                    )
                 }
             }
         }
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigator.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigator.kt
index 340b50f..5f8a812 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigator.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeGraphNavigator.kt
@@ -49,9 +49,7 @@
     private val createdDestinations = mutableListOf<DynamicIncludeNavGraph>()
 
     override fun createDestination(): DynamicIncludeNavGraph {
-        return DynamicIncludeNavGraph(this).also {
-            createdDestinations.add(it)
-        }
+        return DynamicIncludeNavGraph(this).also { createdDestinations.add(it) }
     }
 
     /**
@@ -60,11 +58,9 @@
      * @param entries destination(s) to navigate to
      * @param navOptions additional options for navigation
      * @param navigatorExtras extras unique to your Navigator.
-     *
      * @throws Resources.NotFoundException if one of the [entries] does not have a valid
-     * `graphResourceName` and `graphPackage`.
+     *   `graphResourceName` and `graphPackage`.
      * @throws IllegalStateException if one of the [entries] does not have a parent.
-
      * @see Navigator.navigate
      */
     override fun navigate(
@@ -78,8 +74,8 @@
     }
 
     /**
-     * @throws Resources.NotFoundException if the [entry] does not have a valid
-     * `graphResourceName` and `graphPackage`.
+     * @throws Resources.NotFoundException if the [entry] does not have a valid `graphResourceName`
+     *   and `graphPackage`.
      * @throws IllegalStateException if the [entry] does not have a parent.
      */
     private fun navigate(
@@ -108,10 +104,12 @@
      * @return the newly inflated included navigation graph
      */
     private fun replaceWithIncludedNav(destination: DynamicIncludeNavGraph): NavGraph {
-        val graphId = context.resources.getIdentifier(
-            destination.graphResourceName, "navigation",
-            destination.graphPackage
-        )
+        val graphId =
+            context.resources.getIdentifier(
+                destination.graphResourceName,
+                "navigation",
+                destination.graphPackage
+            )
         if (graphId == 0) {
             throw Resources.NotFoundException(
                 "${destination.graphPackage}:navigation/${destination.graphResourceName}"
@@ -124,11 +122,12 @@
                 "<navigation> id or make them match."
         }
         includedNav.id = destination.id
-        val outerNav = destination.parent
-            ?: throw IllegalStateException(
-                "The include-dynamic destination with id ${destination.displayName} " +
-                    "does not have a parent. Make sure it is attached to a NavGraph."
-            )
+        val outerNav =
+            destination.parent
+                ?: throw IllegalStateException(
+                    "The include-dynamic destination with id ${destination.displayName} " +
+                        "does not have a parent. Make sure it is attached to a NavGraph."
+                )
         outerNav.addDestination(includedNav)
         // Avoid calling replaceWithIncludedNav() on the same destination more than once
         createdDestinations.remove(destination)
@@ -165,26 +164,20 @@
     /**
      * The graph for dynamic-include.
      *
-     * This class contains information to navigate to a DynamicNavGraph which is contained
-     * within a dynamic feature module.
+     * This class contains information to navigate to a DynamicNavGraph which is contained within a
+     * dynamic feature module.
      */
     public class DynamicIncludeNavGraph
     internal constructor(navGraphNavigator: Navigator<out NavDestination>) :
         NavDestination(navGraphNavigator) {
 
-        /**
-         * Resource name of the graph.
-         */
+        /** Resource name of the graph. */
         public var graphResourceName: String? = null
 
-        /**
-         * The graph's package.
-         */
+        /** The graph's package. */
         public var graphPackage: String? = null
 
-        /**
-         * Name of the module containing the included graph, if set.
-         */
+        /** Name of the module containing the included graph, if set. */
         public var moduleName: String? = null
 
         override fun onInflate(context: Context, attrs: AttributeSet) {
@@ -195,8 +188,8 @@
                     "`moduleName` must be set for <include-dynamic>"
                 }
 
-                graphPackage = getString(R.styleable.DynamicIncludeGraphNavigator_graphPackage)
-                    .let {
+                graphPackage =
+                    getString(R.styleable.DynamicIncludeGraphNavigator_graphPackage).let {
                         if (it != null) {
                             require(it.isNotEmpty()) {
                                 "`graphPackage` cannot be empty for <include-dynamic>. You can " +
@@ -207,22 +200,16 @@
                         getPackageOrDefault(context, it)
                     }
 
-                graphResourceName =
-                    getString(R.styleable.DynamicIncludeGraphNavigator_graphResName)
+                graphResourceName = getString(R.styleable.DynamicIncludeGraphNavigator_graphResName)
                 require(!graphResourceName.isNullOrEmpty()) {
                     "`graphResName` must be set for <include-dynamic>"
                 }
             }
         }
 
-        internal fun getPackageOrDefault(
-            context: Context,
-            graphPackage: String?
-        ): String {
-            return graphPackage?.replace(
-                APPLICATION_ID_PLACEHOLDER,
-                context.packageName
-            ) ?: "${context.packageName}.$moduleName"
+        internal fun getPackageOrDefault(context: Context, graphPackage: String?): String {
+            return graphPackage?.replace(APPLICATION_ID_PLACEHOLDER, context.packageName)
+                ?: "${context.packageName}.$moduleName"
         }
 
         override fun equals(other: Any?): Boolean {
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilder.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilder.kt
index e1811b5..202133c7 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilder.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicIncludeNavGraphBuilder.kt
@@ -31,10 +31,10 @@
  * Construct a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph].
  *
  * @param id NavGraph id.
- * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`.
- * This must not be an empty string.
- * @param graphResourceName Graph's resource name without the `navigation` qualifier. This
- * must not be an empty string.
+ * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`. This
+ *   must not be an empty string.
+ * @param graphResourceName Graph's resource name without the `navigation` qualifier. This must not
+ *   be an empty string.
  */
 @Suppress("Deprecation")
 @Deprecated(
@@ -51,10 +51,10 @@
  * Construct a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph].
  *
  * @param id NavGraph id.
- * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`.
- * This must not be an empty string.
- * @param graphResourceName Graph's resource name without the `navigation` qualifier. This
- * must not be an empty string.
+ * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`. This
+ *   must not be an empty string.
+ * @param graphResourceName Graph's resource name without the `navigation` qualifier. This must not
+ *   be an empty string.
  * @param builder Another builder for chaining.
  */
 @Suppress("Deprecation")
@@ -69,23 +69,25 @@
     moduleName: String,
     graphResourceName: String,
     builder: DynamicIncludeNavGraphBuilder.() -> Unit
-): Unit = destination(
-    DynamicIncludeNavGraphBuilder(
-        provider[DynamicIncludeGraphNavigator::class],
-        id,
-        moduleName,
-        graphResourceName
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicIncludeNavGraphBuilder(
+                provider[DynamicIncludeGraphNavigator::class],
+                id,
+                moduleName,
+                graphResourceName
+            )
+            .apply(builder)
+    )
 
 /**
  * Construct a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph].
  *
  * @param route NavGraph route.
- * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`.
- * This must not be an empty string.
- * @param graphResourceName Graph's resource name without the `navigation` qualifier. This
- * must not be an empty string.
+ * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`. This
+ *   must not be an empty string.
+ * @param graphResourceName Graph's resource name without the `navigation` qualifier. This must not
+ *   be an empty string.
  */
 public inline fun DynamicNavGraphBuilder.includeDynamic(
     route: String,
@@ -97,12 +99,12 @@
  * Construct a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph].
  *
  * @param T the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if
- * [T] does not use custom NavTypes.
- * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`.
- * This must not be an empty string.
- * @param graphResourceName Graph's resource name without the `navigation` qualifier. This
- * must not be an empty string.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T] does not
+ *   use custom NavTypes.
+ * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`. This
+ *   must not be an empty string.
+ * @param graphResourceName Graph's resource name without the `navigation` qualifier. This must not
+ *   be an empty string.
  */
 public inline fun <reified T : Any> DynamicNavGraphBuilder.includeDynamic(
     moduleName: String,
@@ -114,10 +116,10 @@
  * Construct a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph].
  *
  * @param route NavGraph route.
- * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`.
- * This must not be an empty string.
- * @param graphResourceName Graph's resource name without the `navigation` qualifier. This
- * must not be an empty string.
+ * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`. This
+ *   must not be an empty string.
+ * @param graphResourceName Graph's resource name without the `navigation` qualifier. This must not
+ *   be an empty string.
  * @param builder Another builder for chaining.
  */
 public inline fun DynamicNavGraphBuilder.includeDynamic(
@@ -125,25 +127,27 @@
     moduleName: String,
     graphResourceName: String,
     builder: DynamicIncludeNavGraphBuilder.() -> Unit
-): Unit = destination(
-    DynamicIncludeNavGraphBuilder(
-        provider[DynamicIncludeGraphNavigator::class],
-        route,
-        moduleName,
-        graphResourceName
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicIncludeNavGraphBuilder(
+                provider[DynamicIncludeGraphNavigator::class],
+                route,
+                moduleName,
+                graphResourceName
+            )
+            .apply(builder)
+    )
 
 /**
  * Construct a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph].
  *
  * @param T the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if
- * [T] does not use custom NavTypes.
- * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`.
- * This must not be an empty string.
- * @param graphResourceName Graph's resource name without the `navigation` qualifier. This
- * must not be an empty string.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T] does not
+ *   use custom NavTypes.
+ * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`. This
+ *   must not be an empty string.
+ * @param graphResourceName Graph's resource name without the `navigation` qualifier. This must not
+ *   be an empty string.
  * @param builder Another builder for chaining.
  */
 public inline fun <reified T : Any> DynamicNavGraphBuilder.includeDynamic(
@@ -151,19 +155,19 @@
     graphResourceName: String,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DynamicIncludeNavGraphBuilder.() -> Unit
-): Unit = destination(
-    DynamicIncludeNavGraphBuilder(
-        provider[DynamicIncludeGraphNavigator::class],
-        T::class,
-        typeMap,
-        moduleName,
-        graphResourceName
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicIncludeNavGraphBuilder(
+                provider[DynamicIncludeGraphNavigator::class],
+                T::class,
+                typeMap,
+                moduleName,
+                graphResourceName
+            )
+            .apply(builder)
+    )
 
-/**
- * DSL for constructing a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph]
- */
+/** DSL for constructing a new [DynamicIncludeGraphNavigator.DynamicIncludeNavGraph] */
 @NavDestinationDsl
 public class DynamicIncludeNavGraphBuilder : NavDestinationBuilder<DynamicIncludeNavGraph> {
 
@@ -206,12 +210,12 @@
      *
      * @param dynamicIncludeGraphNavigator navigator used to create the destination
      * @param route the graph's unique route as a [KClass]
-     * @param typeMap A mapping of KType to custom NavType<*> in the [route].  May be empty if
-     * [route] does not use custom NavTypes.
+     * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
+     *   [route] does not use custom NavTypes.
      * @param moduleName Dynamic feature module name as defined in the module's `AndroidManifest`.
-     * This must not be an empty string.
-     * @param graphResourceName Graph's resource name without the `navigation` qualifier. This
-     * must not be an empty string.
+     *   This must not be an empty string.
+     * @param graphResourceName Graph's resource name without the `navigation` qualifier. This must
+     *   not be an empty string.
      * @return the newly created NavGraph
      */
     public constructor(
@@ -227,34 +231,26 @@
     }
 
     /**
-     * Destination NavGraph's resource package as defined in the module's
-     * `AndroidManifest`. This generally does not need to be manually set and will
-     * be set `applicationId.moduleName` if left null.
+     * Destination NavGraph's resource package as defined in the module's `AndroidManifest`. This
+     * generally does not need to be manually set and will be set `applicationId.moduleName` if left
+     * null.
      *
      * This cannot be an empty string.
      */
     public var graphPackage: String? = null
 
-    /**
-     * @return The [DynamicGraphNavigator.DynamicNavGraph]
-     */
+    /** @return The [DynamicGraphNavigator.DynamicNavGraph] */
     override fun build(): DynamicIncludeNavGraph =
         super.build().also { navGraph ->
-            check(moduleName.isNotEmpty()) {
-                "Module name cannot be empty"
-            }
+            check(moduleName.isNotEmpty()) { "Module name cannot be empty" }
             navGraph.moduleName = moduleName
             if (graphPackage == null) {
                 navGraph.graphPackage = "${dynamicIncludeGraphNavigator.packageName}.$moduleName"
             } else {
-                check(!graphPackage.isNullOrEmpty()) {
-                    "Graph package name cannot be empty"
-                }
+                check(!graphPackage.isNullOrEmpty()) { "Graph package name cannot be empty" }
                 navGraph.graphPackage = graphPackage
             }
-            check(graphResourceName.isNotEmpty()) {
-                "Graph resource name cannot be empty"
-            }
+            check(graphResourceName.isNotEmpty()) { "Graph resource name cannot be empty" }
             navGraph.graphResourceName = graphResourceName
         }
 }
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallManager.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallManager.kt
index 86855bc..0f30d28 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallManager.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallManager.kt
@@ -47,9 +47,7 @@
 ) {
 
     internal companion object {
-        internal fun terminateLiveData(
-            status: MutableLiveData<SplitInstallSessionState>
-        ) {
+        internal fun terminateLiveData(status: MutableLiveData<SplitInstallSessionState>) {
             // Best effort leak prevention, will only work for active observers
             check(!status.hasActiveObservers()) {
                 "This DynamicInstallMonitor will not " +
@@ -69,10 +67,11 @@
             requestInstall(moduleName, extras.installMonitor)
             return null
         } else {
-            val progressArgs = Bundle().apply {
-                putInt(Constants.DESTINATION_ID, backStackEntry.destination.id)
-                putBundle(Constants.DESTINATION_ARGS, backStackEntry.arguments)
-            }
+            val progressArgs =
+                Bundle().apply {
+                    putInt(Constants.DESTINATION_ID, backStackEntry.destination.id)
+                    putBundle(Constants.DESTINATION_ARGS, backStackEntry.arguments)
+                }
             val dynamicNavGraph = DynamicNavGraph.getOrThrow(backStackEntry.destination)
             val navigator: Navigator<*> =
                 dynamicNavGraph.navigatorProvider[dynamicNavGraph.navigatorName]
@@ -96,10 +95,7 @@
         return !splitInstallManager.installedModules.contains(module)
     }
 
-    private fun requestInstall(
-        module: String,
-        installMonitor: DynamicInstallMonitor
-    ) {
+    private fun requestInstall(module: String, installMonitor: DynamicInstallMonitor) {
         check(!installMonitor.isUsed) {
             // We don't want an installMonitor in an undefined state or used by another install
             "You must pass in a fresh DynamicInstallMonitor " +
@@ -109,10 +105,7 @@
         val status = installMonitor.status as MutableLiveData<SplitInstallSessionState>
         installMonitor.isInstallRequired = true
 
-        val request = SplitInstallRequest
-            .newBuilder()
-            .addModule(module)
-            .build()
+        val request = SplitInstallRequest.newBuilder().addModule(module).build()
 
         splitInstallManager
             .startInstall(request)
@@ -121,21 +114,19 @@
                 installMonitor.splitInstallManager = splitInstallManager
                 if (sessionId == 0) {
                     // The feature is already installed, emit synthetic INSTALLED state.
-                    status.value = SplitInstallSessionState.create(
-                        sessionId,
-                        SplitInstallSessionStatus.INSTALLED,
-                        SplitInstallErrorCode.NO_ERROR,
-                        /* bytesDownloaded */ 0,
-                        /* totalBytesToDownload */ 0,
-                        listOf(module),
-                        emptyList()
-                    )
+                    status.value =
+                        SplitInstallSessionState.create(
+                            sessionId,
+                            SplitInstallSessionStatus.INSTALLED,
+                            SplitInstallErrorCode.NO_ERROR,
+                            /* bytesDownloaded */ 0,
+                            /* totalBytesToDownload */ 0,
+                            listOf(module),
+                            emptyList()
+                        )
                     terminateLiveData(status)
                 } else {
-                    val listener = SplitInstallListenerWrapper(
-                        context, status,
-                        installMonitor
-                    )
+                    val listener = SplitInstallListenerWrapper(context, status, installMonitor)
                     splitInstallManager.registerListener(listener)
                 }
             }
@@ -145,18 +136,17 @@
                     "Error requesting install of $module: ${exception.message}"
                 )
                 installMonitor.exception = exception
-                status.value = SplitInstallSessionState.create(
-                    /* sessionId */ 0,
-                    SplitInstallSessionStatus.FAILED,
-                    if (exception is SplitInstallException)
-                        exception.errorCode
-                    else
-                        SplitInstallErrorCode.INTERNAL_ERROR,
-                    /* bytesDownloaded */ 0,
-                    /* totalBytesToDownload */ 0,
-                    listOf(module),
-                    emptyList()
-                )
+                status.value =
+                    SplitInstallSessionState.create(
+                        /* sessionId */ 0,
+                        SplitInstallSessionStatus.FAILED,
+                        if (exception is SplitInstallException) exception.errorCode
+                        else SplitInstallErrorCode.INTERNAL_ERROR,
+                        /* bytesDownloaded */ 0,
+                        /* totalBytesToDownload */ 0,
+                        listOf(module),
+                        emptyList()
+                    )
                 terminateLiveData(status)
             }
     }
@@ -167,9 +157,7 @@
         private val installMonitor: DynamicInstallMonitor
     ) : SplitInstallStateUpdatedListener {
 
-        override fun onStateUpdate(
-            splitInstallSessionState: SplitInstallSessionState
-        ) {
+        override fun onStateUpdate(splitInstallSessionState: SplitInstallSessionState) {
             if (splitInstallSessionState.sessionId() == installMonitor.sessionId) {
                 if (splitInstallSessionState.status() == SplitInstallSessionStatus.INSTALLED) {
                     SplitCompat.install(context)
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallMonitor.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallMonitor.kt
index 266a82d..a734183 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallMonitor.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicInstallMonitor.kt
@@ -24,31 +24,27 @@
 import com.google.android.play.core.splitinstall.model.SplitInstallSessionStatus
 
 /**
- * Monitor installation progress of dynamic feature modules.
- * This class enables you to subscribe to the current installation state via [getStatus].
- * You also can perform various checks on installation state directly through this monitor.
+ * Monitor installation progress of dynamic feature modules. This class enables you to subscribe to
+ * the current installation state via [getStatus]. You also can perform various checks on
+ * installation state directly through this monitor.
  *
- * In order to enable installation and monitoring of progress you'll have to provide an instance
- * of this class to [DynamicExtras].
+ * In order to enable installation and monitoring of progress you'll have to provide an instance of
+ * this class to [DynamicExtras].
  */
 public class DynamicInstallMonitor {
 
-    /**
-     * The occurred exception, if any.
-     */
+    /** The occurred exception, if any. */
     public var exception: Exception? = null
         internal set
 
-    /**
-     * Get a LiveData of [SplitInstallSessionStatus] with updates on the installation progress.
-     */
+    /** Get a LiveData of [SplitInstallSessionStatus] with updates on the installation progress. */
     public val status: LiveData<SplitInstallSessionState> = MutableLiveData()
 
     /**
      * Check whether an installation is required.
      *
-     * If this returns `true`, you should observe the LiveData returned by
-     * [status] for installation updates and handle them accordingly.
+     * If this returns `true`, you should observe the LiveData returned by [status] for installation
+     * updates and handle them accordingly.
      *
      * @return `true` if installation is required, `false` otherwise.
      */
@@ -60,29 +56,20 @@
             }
         }
 
-    /**
-     * The session id from Play Core for this installation session.
-     */
+    /** The session id from Play Core for this installation session. */
     public var sessionId: Int = 0
         internal set
 
-    /**
-     * The [SplitInstallManager] used to monitor the installation if any was set.
-     */
+    /** The [SplitInstallManager] used to monitor the installation if any was set. */
     @set:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public var splitInstallManager: SplitInstallManager? = null
 
-    /**
-     * `true` if the monitor has been used to request an install, else
-     * `false`.
-     */
+    /** `true` if the monitor has been used to request an install, else `false`. */
     internal var isUsed = false
         private set
 
-    /**
-     * Cancel the current split installation session in the SplitInstallManager.
-     */
+    /** Cancel the current split installation session in the SplitInstallManager. */
     public fun cancelInstall() {
         val splitInstallManager = splitInstallManager
         if (splitInstallManager != null && sessionId != 0) {
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilder.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilder.kt
index c95bee4..f45a47f 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilder.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/DynamicNavGraphBuilder.kt
@@ -47,11 +47,7 @@
     @IdRes id: Int = 0,
     @IdRes startDestination: Int,
     builder: DynamicNavGraphBuilder.() -> Unit
-): NavGraph = DynamicNavGraphBuilder(
-    this,
-    id,
-    startDestination
-).apply(builder).build()
+): NavGraph = DynamicNavGraphBuilder(this, id, startDestination).apply(builder).build()
 
 /**
  * Construct a nested [DynamicGraphNavigator.DynamicNavGraph]
@@ -72,13 +68,7 @@
     @IdRes id: Int,
     @IdRes startDestination: Int,
     builder: DynamicNavGraphBuilder.() -> Unit
-): Unit = destination(
-    DynamicNavGraphBuilder(
-        provider,
-        id,
-        startDestination
-    ).apply(builder)
-)
+): Unit = destination(DynamicNavGraphBuilder(provider, id, startDestination).apply(builder))
 
 /**
  * Construct a new [DynamicGraphNavigator.DynamicNavGraph]
@@ -91,11 +81,7 @@
     startDestination: String,
     route: String? = null,
     builder: DynamicNavGraphBuilder.() -> Unit
-): NavGraph = DynamicNavGraphBuilder(
-    this,
-    startDestination,
-    route
-).apply(builder).build()
+): NavGraph = DynamicNavGraphBuilder(this, startDestination, route).apply(builder).build()
 
 /**
  * Construct a nested [DynamicGraphNavigator.DynamicNavGraph]
@@ -108,22 +94,16 @@
     startDestination: String,
     route: String,
     builder: DynamicNavGraphBuilder.() -> Unit
-): Unit = destination(
-    DynamicNavGraphBuilder(
-        provider,
-        startDestination,
-        route
-    ).apply(builder)
-)
+): Unit = destination(DynamicNavGraphBuilder(provider, startDestination, route).apply(builder))
 
 /**
  * Construct a new [DynamicGraphNavigator.DynamicNavGraph]
  *
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
  * @param route the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
- * [route] does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
+ *   does not use custom NavTypes.
  * @param builder Another builder for chaining.
  */
 public inline fun NavigatorProvider.navigation(
@@ -131,21 +111,16 @@
     route: KClass<*>? = null,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DynamicNavGraphBuilder.() -> Unit
-): NavGraph = DynamicNavGraphBuilder(
-    this,
-    startDestination,
-    route,
-    typeMap
-).apply(builder).build()
+): NavGraph = DynamicNavGraphBuilder(this, startDestination, route, typeMap).apply(builder).build()
 
 /**
  * Construct a new [DynamicGraphNavigator.DynamicNavGraph]
  *
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
  * @param route the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
- * [route] does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
+ *   does not use custom NavTypes.
  * @param builder Another builder for chaining.
  */
 public inline fun NavigatorProvider.navigation(
@@ -153,62 +128,47 @@
     route: KClass<*>? = null,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DynamicNavGraphBuilder.() -> Unit
-): NavGraph = DynamicNavGraphBuilder(
-    this,
-    startDestination,
-    route,
-    typeMap
-).apply(builder).build()
+): NavGraph = DynamicNavGraphBuilder(this, startDestination, route, typeMap).apply(builder).build()
 
 /**
  * Construct a nested [DynamicGraphNavigator.DynamicNavGraph]
  *
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
  * @param T the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if
- * [T] does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T] does not
+ *   use custom NavTypes.
  * @param builder Another builder for chaining.
  */
 public inline fun <reified T : Any> DynamicNavGraphBuilder.navigation(
     startDestination: KClass<*>,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DynamicNavGraphBuilder.() -> Unit
-): Unit = destination(
-    DynamicNavGraphBuilder(
-        provider,
-        startDestination,
-        T::class,
-        typeMap
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicNavGraphBuilder(provider, startDestination, T::class, typeMap).apply(builder)
+    )
 
 /**
  * Construct a nested [DynamicGraphNavigator.DynamicNavGraph]
  *
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added with route from a [KClass] in order to match.
+ *   respective NavDestination must be added with route from a [KClass] in order to match.
  * @param T the graph's unique route as a [KClass]
- * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if
- * [T] does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [T]. May be empty if [T] does not
+ *   use custom NavTypes.
  * @param builder Another builder for chaining.
  */
 public inline fun <reified T : Any> DynamicNavGraphBuilder.navigation(
     startDestination: Any,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DynamicNavGraphBuilder.() -> Unit
-): Unit = destination(
-    DynamicNavGraphBuilder(
-        provider,
-        startDestination,
-        T::class,
-        typeMap
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DynamicNavGraphBuilder(provider, startDestination, T::class, typeMap).apply(builder)
+    )
 
-/**
- * DSL for constructing a new [DynamicGraphNavigator.DynamicNavGraph]
- */
+/** DSL for constructing a new [DynamicGraphNavigator.DynamicNavGraph] */
 @NavDestinationDsl
 public class DynamicNavGraphBuilder : NavGraphBuilder {
     @IdRes private var startDestinationId: Int = 0
@@ -243,11 +203,10 @@
      *
      * @param provider navigator used to create the destination
      * @param startDestination the starting destination's route as a [KClass] for this NavGraph. The
-     * respective NavDestination must be added with route from a [KClass] in order to match.
+     *   respective NavDestination must be added with route from a [KClass] in order to match.
      * @param route the graph's unique route as a [KClass]
      * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
-     * [route] does not use custom NavTypes.
-     *
+     *   [route] does not use custom NavTypes.
      * @return the newly created NavGraph
      */
     public constructor(
@@ -262,11 +221,10 @@
      *
      * @param provider navigator used to create the destination
      * @param startDestination the starting destination's route as an Object for this NavGraph. The
-     * respective NavDestination must be added with route from a [KClass] in order to match.
+     *   respective NavDestination must be added with route from a [KClass] in order to match.
      * @param route the graph's unique route as a [KClass]
-     * @param typeMap A mapping of KType to custom NavType<*> in the [route].  May be empty if
-     * [route] does not use custom NavTypes.
-     *
+     * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
+     *   [route] does not use custom NavTypes.
      * @return the newly created NavGraph
      */
     public constructor(
@@ -277,15 +235,15 @@
     ) : super(provider, startDestination, route, typeMap)
 
     /**
-     * The module name of this [Destination]'s dynamic feature module. This has to be the
-     * same as defined in the dynamic feature module's AndroidManifest.xml file.
+     * The module name of this [Destination]'s dynamic feature module. This has to be the same as
+     * defined in the dynamic feature module's AndroidManifest.xml file.
      */
     public var moduleName: String? = null
 
     private var _progressDestination: Int = 0
     /**
-     * ID of the destination displayed during module installation. This generally does
-     * not need to be set, but is instead filled in by the NavHost via
+     * ID of the destination displayed during module installation. This generally does not need to
+     * be set, but is instead filled in by the NavHost via
      * [DynamicGraphNavigator.installDefaultProgressDestination].
      *
      * Setting this clears any previously set [progressDestinationRoute].
@@ -300,28 +258,27 @@
         }
 
     /**
-     * Route of the destination displayed during module installation. This generally does
-     * not need to be set, but is instead filled in by the NavHost via
+     * Route of the destination displayed during module installation. This generally does not need
+     * to be set, but is instead filled in by the NavHost via
      * [DynamicGraphNavigator.installDefaultProgressDestination].
      *
      * Setting this overrides any previously set [progressDestination].
      */
     public var progressDestinationRoute: String? = null
         set(progDestRoute) {
-            _progressDestination = if (progDestRoute == null) {
-                0
-            } else {
-                require(progDestRoute.isNotBlank()) {
-                    "Cannot have an empty progress destination route"
+            _progressDestination =
+                if (progDestRoute == null) {
+                    0
+                } else {
+                    require(progDestRoute.isNotBlank()) {
+                        "Cannot have an empty progress destination route"
+                    }
+                    NavDestination.createRoute(progressDestinationRoute).hashCode()
                 }
-                NavDestination.createRoute(progressDestinationRoute).hashCode()
-            }
             field = progDestRoute
         }
 
-    /**
-     * @return The [DynamicGraphNavigator.DynamicNavGraph].
-     */
+    /** @return The [DynamicGraphNavigator.DynamicNavGraph]. */
     override fun build(): NavGraph =
         super.build().also { navGraph ->
             if (navGraph is DynamicGraphNavigator.DynamicNavGraph) {
@@ -335,8 +292,7 @@
                 if (progressDestination == 0) {
                     val navGraphNavigator: DynamicGraphNavigator =
                         provider[DynamicGraphNavigator::class]
-                    navGraphNavigator.destinationsWithoutDefaultProgressDestination
-                        .add(navGraph)
+                    navGraphNavigator.destinationsWithoutDefaultProgressDestination.add(navGraph)
                 }
             }
         }
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavController.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavController.kt
index fc255be..abc0746 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavController.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavController.kt
@@ -23,9 +23,7 @@
 import kotlin.reflect.KClass
 import kotlin.reflect.KType
 
-/**
- * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
- */
+/** Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations */
 @Suppress("Deprecation")
 @Deprecated(
     "Use routes to create your dynamic NavGraph instead",
@@ -40,9 +38,7 @@
     builder: DynamicNavGraphBuilder.() -> Unit
 ): NavGraph = navigatorProvider.navigation(id, startDestination, builder)
 
-/**
- * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
- */
+/** Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations */
 public inline fun NavController.createGraph(
     startDestination: String,
     route: String? = null,
@@ -53,10 +49,10 @@
  * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
  *
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavController.createGraph(
@@ -70,10 +66,10 @@
  * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
  *
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavController.createGraph(
diff --git a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavHost.kt b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavHost.kt
index fd02f36..535c4ad 100644
--- a/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavHost.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/main/java/androidx/navigation/dynamicfeatures/NavHost.kt
@@ -23,9 +23,7 @@
 import kotlin.reflect.KClass
 import kotlin.reflect.KType
 
-/**
- * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
- */
+/** Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations */
 @Suppress("Deprecation")
 @Deprecated(
     "Use routes to create your dynamic NavGraph instead",
@@ -40,9 +38,7 @@
     builder: DynamicNavGraphBuilder.() -> Unit
 ): NavGraph = navController.createGraph(id, startDestination, builder)
 
-/**
- * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
- */
+/** Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations */
 public inline fun NavHost.createGraph(
     startDestination: String,
     route: String? = null,
@@ -53,10 +49,10 @@
  * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
  *
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavHost.createGraph(
@@ -70,10 +66,10 @@
  * Construct a new [androidx.navigation.NavGraph] that supports dynamic navigation destinations
  *
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavHost.createGraph(
diff --git a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigatorTest.kt b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigatorTest.kt
index 7e1d5c1..396b8ee 100644
--- a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigatorTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicGraphNavigatorTest.kt
@@ -29,10 +29,7 @@
 public class DynamicGraphNavigatorTest {
 
     private val navigator =
-        DynamicGraphNavigator(
-            mock(NavigatorProvider::class.java),
-            TestDynamicInstallManager()
-        )
+        DynamicGraphNavigator(mock(NavigatorProvider::class.java), TestDynamicInstallManager())
 
     @Test
     public fun testCreateDestination() {
diff --git a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicInstallManagerTest.kt b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicInstallManagerTest.kt
index 9e0ac66..64a8b2e 100644
--- a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicInstallManagerTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicInstallManagerTest.kt
@@ -30,10 +30,7 @@
 public class DynamicInstallManagerTest {
 
     private val splitInstallManager = mock(SplitInstallManager::class.java)
-    private var manager = DynamicInstallManager(
-        spy(Context::class.java),
-        splitInstallManager
-    )
+    private var manager = DynamicInstallManager(spy(Context::class.java), splitInstallManager)
 
     @Test
     public fun testNeedsInstall_InstallNeeded() {
diff --git a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicNavGraphTest.kt b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicNavGraphTest.kt
index d5045ec..4372797 100644
--- a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicNavGraphTest.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/DynamicNavGraphTest.kt
@@ -54,10 +54,7 @@
         Dispatchers.setMain(UnconfinedTestDispatcher())
         provider = NavigatorProvider()
         noOpNavigator = NoOpNavigator()
-        navigator = DynamicGraphNavigator(
-            provider,
-            TestDynamicInstallManager()
-        )
+        navigator = DynamicGraphNavigator(provider, TestDynamicInstallManager())
         provider.addNavigator(noOpNavigator)
         noOpState = TestNavigatorState()
         noOpNavigator.onAttach(noOpState)
@@ -71,11 +68,7 @@
 
     @Test
     public fun testGetOrThrow_CorrectParent() {
-        setupProgressDestination(
-            noOpNavigator.createDestination().apply {
-                id = progressId
-            }
-        )
+        setupProgressDestination(noOpNavigator.createDestination().apply { id = progressId })
         navigator.navigateToProgressDestination(dynamicNavGraph, null)
         val progressDestination = noOpState.backStack.value.lastOrNull()?.destination
         assertThat(progressDestination).isNotNull()
@@ -93,20 +86,14 @@
 
     @Test
     public fun testNavigateToProgressDestination_withProviderAndDestination() {
-        setupProgressDestination(
-            noOpNavigator.createDestination().apply {
-                id = progressId
-            }
-        )
+        setupProgressDestination(noOpNavigator.createDestination().apply { id = progressId })
         navigator.navigateToProgressDestination(dynamicNavGraph, null)
         val destination = noOpState.backStack.value.lastOrNull()?.destination
         assertThat(destination?.parent).isInstanceOf(DynamicNavGraph::class.java)
     }
 
     private fun setupProgressDestination(progressDestination: NavDestination?) {
-        progressDestination?.let {
-            navigator.installDefaultProgressDestination { it }
-        }
+        progressDestination?.let { navigator.installDefaultProgressDestination { it } }
         provider.addNavigator(navigator)
         navigatorState = TestNavigatorState()
         navigator.onAttach(navigatorState)
diff --git a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/shared/TestDynamicInstallManager.kt b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/shared/TestDynamicInstallManager.kt
index cbdf11a..422e4ef 100644
--- a/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/shared/TestDynamicInstallManager.kt
+++ b/navigation/navigation-dynamic-features-runtime/src/test/java/androidx/navigation/dynamicfeatures/shared/TestDynamicInstallManager.kt
@@ -21,9 +21,7 @@
 import com.google.android.play.core.splitinstall.SplitInstallManager
 import org.mockito.Mockito
 
-/**
- * A dynamic install manager used for testing.
- */
+/** A dynamic install manager used for testing. */
 public class TestDynamicInstallManager :
     DynamicInstallManager(
         Mockito.spy(Context::class.java),
diff --git a/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentNavigatorTest.kt b/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentNavigatorTest.kt
index e5a6c79..7ef4899 100644
--- a/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentNavigatorTest.kt
+++ b/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentNavigatorTest.kt
@@ -36,16 +36,17 @@
 @RunWith(AndroidJUnit4::class)
 class ComposableFragmentNavigatorTest {
 
-    @get:Rule
-    val testRule = createAndroidComposeRule<TestActivity>()
+    @get:Rule val testRule = createAndroidComposeRule<TestActivity>()
 
     @Test
     fun inflateGraph() {
         val navController = NavController(testRule.activity)
-        navController.navigatorProvider += FragmentNavigator(
-            testRule.activity,
-            testRule.activity.supportFragmentManager,
-            R.id.fragment_container)
+        navController.navigatorProvider +=
+            FragmentNavigator(
+                testRule.activity,
+                testRule.activity.supportFragmentManager,
+                R.id.fragment_container
+            )
         navController.navigatorProvider +=
             ComposableFragmentNavigator(navController.navigatorProvider)
 
diff --git a/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentTest.kt b/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentTest.kt
index a122a75..3dc91c1 100644
--- a/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentTest.kt
+++ b/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableFragmentTest.kt
@@ -35,19 +35,17 @@
 @RunWith(AndroidJUnit4::class)
 class ComposableFragmentTest {
 
-    @get:Rule
-    val testRule = createAndroidComposeRule<TestActivity>()
+    @get:Rule val testRule = createAndroidComposeRule<TestActivity>()
 
     @Test
     fun showContent() {
-        val composableFragment = ComposableFragment(
-            "androidx.navigation.fragment.compose.ComposableFragmentTestKt\$Content"
-        )
+        val composableFragment =
+            ComposableFragment(
+                "androidx.navigation.fragment.compose.ComposableFragmentTestKt\$Content"
+            )
         val fragmentManager = testRule.activity.supportFragmentManager
         testRule.runOnUiThread {
-            fragmentManager.commitNow {
-                add(R.id.fragment_container, composableFragment)
-            }
+            fragmentManager.commitNow { add(R.id.fragment_container, composableFragment) }
         }
 
         testRule.waitForIdle()
@@ -57,16 +55,14 @@
 
     @Test
     fun showContentWithArgs() {
-        val composableFragment = ComposableFragment(
-            "androidx.navigation.fragment.compose.ComposableFragmentTestKt\$ContentWithArgs"
-        ).apply {
-            requireArguments().putString("test", "argument")
-        }
+        val composableFragment =
+            ComposableFragment(
+                    "androidx.navigation.fragment.compose.ComposableFragmentTestKt\$ContentWithArgs"
+                )
+                .apply { requireArguments().putString("test", "argument") }
         val fragmentManager = testRule.activity.supportFragmentManager
         testRule.runOnUiThread {
-            fragmentManager.commitNow {
-                add(R.id.fragment_container, composableFragment)
-            }
+            fragmentManager.commitNow { add(R.id.fragment_container, composableFragment) }
         }
 
         testRule.waitForIdle()
diff --git a/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableNavHostFragmentTest.kt b/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableNavHostFragmentTest.kt
index 1ba072e..594d552 100644
--- a/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableNavHostFragmentTest.kt
+++ b/navigation/navigation-fragment-compose/src/androidTest/java/androidx/navigation/fragment/compose/ComposableNavHostFragmentTest.kt
@@ -33,8 +33,7 @@
 @RunWith(AndroidJUnit4::class)
 class ComposableNavHostFragmentTest {
 
-    @get:Rule
-    val testRule = createAndroidComposeRule<TestActivity>()
+    @get:Rule val testRule = createAndroidComposeRule<TestActivity>()
 
     @Test
     fun create() {
@@ -48,9 +47,10 @@
         testRule.waitForIdle()
 
         val childFragmentManager = navHostFragment.childFragmentManager
-        val currentFragment = requireNotNull(childFragmentManager.primaryNavigationFragment) {
-            "Primary Navigation Fragment should be non-null"
-        }
+        val currentFragment =
+            requireNotNull(childFragmentManager.primaryNavigationFragment) {
+                "Primary Navigation Fragment should be non-null"
+            }
         assertWithMessage("Current Fragment should be a ComposableFragment instance")
             .that(currentFragment)
             .isInstanceOf(ComposableFragment::class.java)
diff --git a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragment.kt b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragment.kt
index 4e616cd..a77097f 100644
--- a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragment.kt
+++ b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragment.kt
@@ -30,20 +30,20 @@
 
 /**
  * This class provides a [Fragment] wrapper around a composable function that is loaded via
- * reflection. The composable function has access to this fragment instance via
- * [LocalFragment].
+ * reflection. The composable function has access to this fragment instance via [LocalFragment].
  *
- * This class is constructed via a factory method: make sure you add
- * `import androidx.navigation.fragment.compose.ComposableFragment.Companion.ComposableFragment`
+ * This class is constructed via a factory method: make sure you add `import
+ * androidx.navigation.fragment.compose.ComposableFragment.Companion.ComposableFragment`
  */
 class ComposableFragment internal constructor() : Fragment() {
 
     private val composableMethod by lazy {
         val arguments = requireArguments()
-        val fullyQualifiedName = checkNotNull(arguments.getString(FULLY_QUALIFIED_NAME)) {
-            "Instances of ComposableFragment must be created with the factory function " +
-                "ComposableFragment(fullyQualifiedName)"
-        }
+        val fullyQualifiedName =
+            checkNotNull(arguments.getString(FULLY_QUALIFIED_NAME)) {
+                "Instances of ComposableFragment must be created with the factory function " +
+                    "ComposableFragment(fullyQualifiedName)"
+            }
         val (className, methodName) = fullyQualifiedName.split("$")
         val clazz = Class.forName(className)
         clazz.getDeclaredComposableMethod(methodName)
@@ -70,12 +70,12 @@
             "androidx.navigation.fragment.compose.FULLY_QUALIFIED_NAME"
 
         /**
-         * Creates a new [ComposableFragment] instance that will wrap the Composable method
-         * loaded via reflection from [fullyQualifiedName].
+         * Creates a new [ComposableFragment] instance that will wrap the Composable method loaded
+         * via reflection from [fullyQualifiedName].
          *
-         * @param fullyQualifiedName the fully qualified name of the static, no argument
-         * Composable method that this fragment should display. It should be formatted in the
-         * format `com.example.NameOfFileKt/$MethodName`.
+         * @param fullyQualifiedName the fully qualified name of the static, no argument Composable
+         *   method that this fragment should display. It should be formatted in the format
+         *   `com.example.NameOfFileKt/$MethodName`.
          */
         @JvmStatic
         fun ComposableFragment(fullyQualifiedName: String): ComposableFragment {
diff --git a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragmentNavigator.kt b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragmentNavigator.kt
index 3a87ec8..e3de833 100644
--- a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragmentNavigator.kt
+++ b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableFragmentNavigator.kt
@@ -28,26 +28,21 @@
 import androidx.navigation.get
 
 /**
- * This Navigator intercepts the inflation of `navigation` destinations
- * in a Navigation with Fragment XML file, reusing the `android:name`
- * field as the fully qualified name of the composable function to use
- * as the contents of the inflated destination.
+ * This Navigator intercepts the inflation of `navigation` destinations in a Navigation with
+ * Fragment XML file, reusing the `android:name` field as the fully qualified name of the composable
+ * function to use as the contents of the inflated destination.
  *
- * Internally, this uses a [ComposableFragment] to implement the
- * reflection call.
+ * Internally, this uses a [ComposableFragment] to implement the reflection call.
  */
 @Navigator.Name("composable")
-class ComposableFragmentNavigator(
-    private val fragmentNavigator: FragmentNavigator
-) : Navigator<FragmentNavigator.Destination>() {
+class ComposableFragmentNavigator(private val fragmentNavigator: FragmentNavigator) :
+    Navigator<FragmentNavigator.Destination>() {
 
     /**
-     * Construct a [ComposableFragmentNavigator] by retrieving the associated
-     * [FragmentNavigator] from [provider].
+     * Construct a [ComposableFragmentNavigator] by retrieving the associated [FragmentNavigator]
+     * from [provider].
      */
-    constructor(
-        provider: NavigatorProvider
-    ) : this(provider[FragmentNavigator::class])
+    constructor(provider: NavigatorProvider) : this(provider[FragmentNavigator::class])
 
     override fun createDestination(): FragmentNavigator.Destination {
         // Note how we associate the destination with the given
@@ -58,19 +53,19 @@
     }
 
     @NavDestination.ClassType(Composable::class)
-    internal class Destination(
-        fragmentNavigator: Navigator<out FragmentNavigator.Destination>
-    ) : FragmentNavigator.Destination(fragmentNavigator) {
+    internal class Destination(fragmentNavigator: Navigator<out FragmentNavigator.Destination>) :
+        FragmentNavigator.Destination(fragmentNavigator) {
         override fun onInflate(context: Context, attrs: AttributeSet) {
             super.onInflate(context, attrs)
             // The className that was parsed out is actually the fully
             // qualified name of the Composable Function to run, so extract
             // that and add it as a default argument on the destination
             val fullyQualifiedName = className
-            val navArgument = NavArgument.Builder()
-                .setType(NavType.StringType)
-                .setDefaultValue(fullyQualifiedName)
-                .build()
+            val navArgument =
+                NavArgument.Builder()
+                    .setType(NavType.StringType)
+                    .setDefaultValue(fullyQualifiedName)
+                    .build()
             addArgument(ComposableFragment.FULLY_QUALIFIED_NAME, navArgument)
             // And then ensure that the actual Fragment that is constructed
             // is our ComposableFragment
diff --git a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableNavHostFragment.kt b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableNavHostFragment.kt
index a9d0b20..0e5146e 100644
--- a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableNavHostFragment.kt
+++ b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/ComposableNavHostFragment.kt
@@ -52,16 +52,17 @@
             startDestinationArgs: Bundle? = null
         ): ComposableNavHostFragment {
             return ComposableNavHostFragment().apply {
-                arguments = if (graphResId != 0 || startDestinationArgs != null) {
-                    Bundle().apply {
-                        if (graphResId != 0) {
-                            putInt(KEY_GRAPH_ID, graphResId)
+                arguments =
+                    if (graphResId != 0 || startDestinationArgs != null) {
+                        Bundle().apply {
+                            if (graphResId != 0) {
+                                putInt(KEY_GRAPH_ID, graphResId)
+                            }
+                            if (startDestinationArgs != null) {
+                                putBundle(KEY_START_DESTINATION_ARGS, startDestinationArgs)
+                            }
                         }
-                        if (startDestinationArgs != null) {
-                            putBundle(KEY_START_DESTINATION_ARGS, startDestinationArgs)
-                        }
-                    }
-                } else null
+                    } else null
             }
         }
     }
diff --git a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/LocalFragment.kt b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/LocalFragment.kt
index de9543e..f743993 100644
--- a/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/LocalFragment.kt
+++ b/navigation/navigation-fragment-compose/src/main/java/androidx/navigation/fragment/compose/LocalFragment.kt
@@ -23,7 +23,10 @@
  * The CompositionLocal containing the containing [Fragment]. This is sett by default for
  * composables created within a [ComposableFragment].
  */
-val LocalFragment = staticCompositionLocalOf<Fragment> {
-    error("CompositionLocal Fragment not present: are you sure your composable is within a " +
-        "navigation-fragment-compose provided ComposableFragment?")
-}
+val LocalFragment =
+    staticCompositionLocalOf<Fragment> {
+        error(
+            "CompositionLocal Fragment not present: are you sure your composable is within a " +
+                "navigation-fragment-compose provided ComposableFragment?"
+        )
+    }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/BaseNavControllerTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/BaseNavControllerTest.kt
index dc2862b..658ac053 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/BaseNavControllerTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/BaseNavControllerTest.kt
@@ -51,11 +51,7 @@
 
     @Suppress("DEPRECATION")
     @get:Rule
-    var activityRule = androidx.test.rule.ActivityTestRule(
-        activityClass,
-        false,
-        false
-    )
+    var activityRule = androidx.test.rule.ActivityTestRule(activityClass, false, false)
 
     private lateinit var instrumentation: Instrumentation
 
@@ -96,10 +92,7 @@
 
     @Suppress("DEPRECATION")
     private fun assertDeeplink(@IdRes destId: Int, expectedStackSize: Int) {
-        val activity = launchDeepLink(
-            R.navigation.nav_deep_link,
-            destId, null
-        )
+        val activity = launchDeepLink(R.navigation.nav_deep_link, destId, null)
         val navController = activity.navController
 
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(destId)
@@ -108,9 +101,8 @@
 
         // Test that the deep link Intent was passed through even though we don't pass in any args
 
-        val deepLinkIntent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val deepLinkIntent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(deepLinkIntent).isNotNull()
         assertThat(deepLinkIntent?.action).isEqualTo(TEST_DEEP_LINK_ACTION)
     }
@@ -147,13 +139,8 @@
 
     @Suppress("DEPRECATION")
     private fun assertDeepLinkWithArgs(@IdRes destId: Int, expectedStackSize: Int) {
-        val args = Bundle().apply {
-            putString(TEST_ARG, TEST_ARG_VALUE)
-        }
-        val activity = launchDeepLink(
-            R.navigation.nav_deep_link,
-            destId, args
-        )
+        val args = Bundle().apply { putString(TEST_ARG, TEST_ARG_VALUE) }
+        val activity = launchDeepLink(R.navigation.nav_deep_link, destId, args)
         val navController = activity.navController
 
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(destId)
@@ -163,9 +150,8 @@
         assertThat(navigator.current.arguments?.getString(TEST_ARG)).isEqualTo(TEST_ARG_VALUE)
 
         // Test that the deep link Intent was passed in alongside our args
-        val deepLinkIntent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val deepLinkIntent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(deepLinkIntent).isNotNull()
         assertThat(deepLinkIntent?.action).isEqualTo(TEST_DEEP_LINK_ACTION)
     }
@@ -193,8 +179,10 @@
     @Test
     fun testNestedUriDeepLinkWithSlash() {
         assertUriDeepLink(
-            "nested_deep_link/$TEST_ARG_VALUE/", TEST_ARG_VALUE,
-            R.id.nested_deep_link_test, 3
+            "nested_deep_link/$TEST_ARG_VALUE/",
+            TEST_ARG_VALUE,
+            R.id.nested_deep_link_test,
+            3
         )
     }
 
@@ -208,9 +196,7 @@
         assertUriDeepLink("double_nested_deep_link", R.id.double_nested_deep_link_test, 3)
     }
 
-    /**
-     * Test a deep link path with the default [TEST_ARG_VALUE] suffix
-     */
+    /** Test a deep link path with the default [TEST_ARG_VALUE] suffix */
     private fun assertUriDeepLink(path: String, @IdRes destId: Int, expectedStackSize: Int) {
         assertUriDeepLink("$path/$TEST_ARG_VALUE", TEST_ARG_VALUE, destId, expectedStackSize)
     }
@@ -223,19 +209,13 @@
         expectedStackSize: Int
     ) {
         val deepLinkUri = Uri.parse("http://www.example.com/$fullPath")
-        val intent = Intent(Intent.ACTION_VIEW, deepLinkUri)
-            .setComponent(
-                ComponentName(
-                    instrumentation.context,
-                    activityClass
-                )
-            )
-            .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
+        val intent =
+            Intent(Intent.ACTION_VIEW, deepLinkUri)
+                .setComponent(ComponentName(instrumentation.context, activityClass))
+                .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
         val activity = launchActivity(intent)
         val navController = activity.navController
-        activityRule.runOnUiThread {
-            navController.setGraph(R.navigation.nav_deep_link)
-        }
+        activityRule.runOnUiThread { navController.setGraph(R.navigation.nav_deep_link) }
 
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(destId)
         val navigator = navController.navigatorProvider[TestNavigator::class]
@@ -244,9 +224,8 @@
         assertThat(navigator.current.arguments?.getString(TEST_ARG)).isEqualTo(expectedValue)
 
         // Test that the deep link Intent was passed in alongside our args
-        val deepLinkIntent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val deepLinkIntent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(deepLinkIntent).isNotNull()
         assertThat(deepLinkIntent?.data).isEqualTo(deepLinkUri)
     }
@@ -265,20 +244,19 @@
         @IdRes destId: Int,
         args: Bundle?
     ): BaseNavigationActivity {
-        val intents = NavDeepLinkBuilder(instrumentation.targetContext)
-            .setGraph(graphId)
-            .setDestination(destId)
-            .setArguments(args)
-            .createTaskStackBuilder()
+        val intents =
+            NavDeepLinkBuilder(instrumentation.targetContext)
+                .setGraph(graphId)
+                .setDestination(destId)
+                .setArguments(args)
+                .createTaskStackBuilder()
         val intent = intents.editIntentAt(0)!!
         intent.action = TEST_DEEP_LINK_ACTION
 
         // Now launch the deeplink Intent
         val deeplinkActivity = launchActivity(intent)
         val navController = deeplinkActivity.navController
-        activityRule.runOnUiThread {
-            navController.setGraph(graphId)
-        }
+        activityRule.runOnUiThread { navController.setGraph(graphId) }
 
         return deeplinkActivity
     }
@@ -287,8 +265,7 @@
 /**
  * Base Navigation Activity.
  *
- * You must call [NavController.setGraph]
- * to set the appropriate graph for your test.
+ * You must call [NavController.setGraph] to set the appropriate graph for your test.
  */
 abstract class BaseNavigationActivity : FragmentActivity() {
 
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilderTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilderTest.kt
index 897ac4a..c370094 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilderTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilderTest.kt
@@ -34,18 +34,19 @@
     @Suppress("DEPRECATION")
     @get:Rule
     val activityRule = androidx.test.rule.ActivityTestRule<TestActivity>(TestActivity::class.java)
-    private val fragmentManager get() = activityRule.activity.supportFragmentManager
+    private val fragmentManager
+        get() = activityRule.activity.supportFragmentManager
 
     @Suppress("DEPRECATION")
     @UiThreadTest
-    @Test fun fragment() {
+    @Test
+    fun fragment() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ID) {
-            dialog<BuilderTestDialogFragment>(DESTINATION_ID)
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ID) {
+                dialog<BuilderTestDialogFragment>(DESTINATION_ID)
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -56,16 +57,14 @@
 
     @Suppress("DEPRECATION")
     @UiThreadTest
-    @Test fun fragmentWithBody() {
+    @Test
+    fun fragmentWithBody() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ID) {
-            dialog<BuilderTestDialogFragment>(DESTINATION_ID) {
-                label = LABEL
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ID) {
+                dialog<BuilderTestDialogFragment>(DESTINATION_ID) { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -78,14 +77,14 @@
     }
 
     @UiThreadTest
-    @Test fun fragmentRoute() {
+    @Test
+    fun fragmentRoute() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            dialog<BuilderTestDialogFragment>(DESTINATION_ROUTE)
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                dialog<BuilderTestDialogFragment>(DESTINATION_ROUTE)
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -95,16 +94,14 @@
     }
 
     @UiThreadTest
-    @Test fun fragmentWithBodyRoute() {
+    @Test
+    fun fragmentWithBodyRoute() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            dialog<BuilderTestDialogFragment>(DESTINATION_ROUTE) {
-                label = LABEL
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                dialog<BuilderTestDialogFragment>(DESTINATION_ROUTE) { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -120,12 +117,11 @@
     @Test
     fun fragmentKClass() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            dialog<BuilderTestDialogFragment, TestClass>()
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                dialog<BuilderTestDialogFragment, TestClass>()
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -138,14 +134,11 @@
     @Test
     fun fragmentWithBodyKClass() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            dialog<BuilderTestDialogFragment, TestClass> {
-                label = LABEL
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                dialog<BuilderTestDialogFragment, TestClass> { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -161,4 +154,5 @@
 private const val DESTINATION_ID = 1
 private const val DESTINATION_ROUTE = "destination"
 private const val LABEL = "Test"
+
 class BuilderTestDialogFragment : DialogFragment()
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorTest.kt
index 3ab7844..e57102f 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DialogFragmentNavigatorTest.kt
@@ -72,20 +72,20 @@
     @Test
     fun testNavigate() {
         lateinit var dialogFragment: DialogFragment
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragment = fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragment = fragment
+                        }
                     }
                 }
             }
-        }
         val entry = createBackStackEntry()
 
         dialogNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         assertWithMessage("Dialog should be shown")
             .that(dialogFragment.requireDialog().isShowing)
@@ -96,28 +96,25 @@
     @Test
     fun testNavigateWithImmediatePop() {
         lateinit var dialogFragment: DialogFragment
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragment = fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragment = fragment
+                        }
                     }
                 }
             }
-        }
         val entry = createBackStackEntry()
 
         dialogNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         dialogNavigator.popBackStack(entry, false)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .isEmpty()
+        assertThat(navigatorState.backStack.value).isEmpty()
 
-        assertWithMessage("Dialog should not be shown")
-            .that(dialogFragment.dialog)
-            .isNull()
+        assertWithMessage("Dialog should not be shown").that(dialogFragment.dialog).isNull()
     }
 
     @UiThreadTest
@@ -138,28 +135,27 @@
         )
 
         val returnedNavController = NavHostFragment.findNavController(dialogFragment)
-        assertThat(returnedNavController)
-            .isEqualTo(navController)
+        assertThat(returnedNavController).isEqualTo(navController)
     }
 
     @UiThreadTest
     @Test
     fun testPop() {
         lateinit var dialogFragment: DialogFragment
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragment = fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragment = fragment
+                        }
                     }
                 }
             }
-        }
         val entry = createBackStackEntry()
 
         dialogNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         assertWithMessage("Dialog should be shown")
             .that(dialogFragment.requireDialog().isShowing)
@@ -169,9 +165,7 @@
         assertWithMessage("DialogNavigator should pop dialog off the back stack")
             .that(navigatorState.backStack.value)
             .isEmpty()
-        assertWithMessage("Dismiss should remove the dialog")
-            .that(dialogFragment.dialog)
-            .isNull()
+        assertWithMessage("Dismiss should remove the dialog").that(dialogFragment.dialog).isNull()
         assertWithMessage("Dismissed DialogFragment should be removed from the FragmentManager")
             .that(fragmentManager.fragments)
             .doesNotContain(dialogFragment)
@@ -184,57 +178,67 @@
         val entry = createBackStackEntry()
         var matchCount = 0
 
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragment = fragment
-                        // observer before navigator to verify down states
-                        dialogFragment.lifecycle.addObserver(object : LifecycleEventObserver {
-                            override fun onStateChanged(
-                                source: LifecycleOwner,
-                                event: Lifecycle.Event
-                            ) {
-                                if (event == Lifecycle.Event.ON_STOP) {
-                                    if (entry.lifecycle.currentState == Lifecycle.State.CREATED) {
-                                        matchCount++
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragment = fragment
+                            // observer before navigator to verify down states
+                            dialogFragment.lifecycle.addObserver(
+                                object : LifecycleEventObserver {
+                                    override fun onStateChanged(
+                                        source: LifecycleOwner,
+                                        event: Lifecycle.Event
+                                    ) {
+                                        if (event == Lifecycle.Event.ON_STOP) {
+                                            if (
+                                                entry.lifecycle.currentState ==
+                                                    Lifecycle.State.CREATED
+                                            ) {
+                                                matchCount++
+                                            }
+                                        }
+                                        if (event == Lifecycle.Event.ON_DESTROY) {
+                                            if (
+                                                entry.lifecycle.currentState ==
+                                                    Lifecycle.State.DESTROYED
+                                            ) {
+                                                matchCount++
+                                            }
+                                            dialogFragment.lifecycle.removeObserver(this)
+                                        }
                                     }
                                 }
-                                if (event == Lifecycle.Event.ON_DESTROY) {
-                                    if (entry.lifecycle.currentState == Lifecycle.State.DESTROYED) {
-                                        matchCount++
-                                    }
-                                    dialogFragment.lifecycle.removeObserver(this)
-                                }
-                            }
-                        })
+                            )
+                        }
                     }
                 }
             }
-        }
 
         dialogNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
 
         // observer after navigator to verify up states
-        dialogFragment.lifecycle.addObserver(object : LifecycleEventObserver {
-            override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                if (event == Lifecycle.Event.ON_START) {
-                    if (entry.lifecycle.currentState == Lifecycle.State.STARTED) {
-                        matchCount++
+        dialogFragment.lifecycle.addObserver(
+            object : LifecycleEventObserver {
+                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                    if (event == Lifecycle.Event.ON_START) {
+                        if (entry.lifecycle.currentState == Lifecycle.State.STARTED) {
+                            matchCount++
+                        }
                     }
-                }
-                if (event == Lifecycle.Event.ON_RESUME) {
-                    if (entry.lifecycle.currentState == Lifecycle.State.RESUMED) {
-                        matchCount++
+                    if (event == Lifecycle.Event.ON_RESUME) {
+                        if (entry.lifecycle.currentState == Lifecycle.State.RESUMED) {
+                            matchCount++
+                        }
                     }
-                }
-                if (event == Lifecycle.Event.ON_DESTROY) {
-                    dialogFragment.lifecycle.removeObserver(this)
+                    if (event == Lifecycle.Event.ON_DESTROY) {
+                        dialogFragment.lifecycle.removeObserver(this)
+                    }
                 }
             }
-        })
+        )
 
         fragmentManager.executePendingTransactions()
         assertWithMessage("Dialog should be shown")
@@ -247,9 +251,7 @@
         assertWithMessage("Dismiss should remove the dialog from the back stack")
             .that(navigatorState.backStack.value)
             .isEmpty()
-        assertWithMessage("Dismiss should remove the dialog")
-            .that(dialogFragment.dialog)
-            .isNull()
+        assertWithMessage("Dismiss should remove the dialog").that(dialogFragment.dialog).isNull()
         assertWithMessage("Dismissed DialogFragment should be removed from the FragmentManager")
             .that(fragmentManager.fragments)
             .doesNotContain(dialogFragment)
@@ -259,20 +261,20 @@
     @Test
     fun testDismissAndNavigate() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
         val entry = createBackStackEntry()
 
         dialogNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         assertWithMessage("Dialog should be shown")
             .that(dialogFragments[0].requireDialog().isShowing)
@@ -283,8 +285,7 @@
         // Call dismiss and, before executing pending transactions, call navigate()
         dialogFragments[0].dismiss()
         dialogNavigator.navigate(listOf(secondEntry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry).inOrder()
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry).inOrder()
         fragmentManager.executePendingTransactions()
         assertWithMessage("Dismiss should remove the dialogs from the back stack")
             .that(navigatorState.backStack.value)
@@ -307,15 +308,16 @@
     @Test
     fun testPop_transitioningDialogStaysInTransition() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
 
         val firstEntry = createBackStackEntry()
         val secondEntry = createBackStackEntry(2)
@@ -324,15 +326,14 @@
         dialogNavigator.navigate(listOf(firstEntry), null, null)
         dialogNavigator.navigate(listOf(secondEntry), null, null)
         dialogNavigator.navigate(listOf(thirdEntry), null, null)
-        assertThat(navigatorState.backStack.value).containsExactly(
-            firstEntry, secondEntry, thirdEntry
-        ).inOrder()
+        assertThat(navigatorState.backStack.value)
+            .containsExactly(firstEntry, secondEntry, thirdEntry)
+            .inOrder()
 
         dialogNavigator.popBackStack(secondEntry, false)
         // should contain all entries as they have not moved to RESUMED state yet
-        assertThat(navigatorState.transitionsInProgress.value).containsExactly(
-            firstEntry, secondEntry, thirdEntry
-        )
+        assertThat(navigatorState.transitionsInProgress.value)
+            .containsExactly(firstEntry, secondEntry, thirdEntry)
         fragmentManager.executePendingTransactions()
         assertThat(navigatorState.transitionsInProgress.value).isEmpty()
     }
@@ -341,15 +342,16 @@
     @Test
     fun testPop_nonTransitioningDialogMarkedComplete() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
 
         val firstEntry = createBackStackEntry()
         val secondEntry = createBackStackEntry(2)
@@ -373,15 +375,16 @@
     @Test
     fun testPush_transitioningDialogStaysInTransition() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
 
         val entry = createBackStackEntry()
         val secondEntry = createBackStackEntry(SECOND_FRAGMENT)
@@ -389,9 +392,9 @@
         dialogNavigator.navigate(listOf(entry), null, null)
         dialogNavigator.navigate(listOf(secondEntry), null, null)
         // Both entries have not reached RESUME and should be in transition
-        assertThat(navigatorState.transitionsInProgress.value).containsExactly(
-            entry, secondEntry
-        ).inOrder()
+        assertThat(navigatorState.transitionsInProgress.value)
+            .containsExactly(entry, secondEntry)
+            .inOrder()
         fragmentManager.executePendingTransactions()
         assertThat(navigatorState.transitionsInProgress.value).isEmpty()
     }
@@ -400,15 +403,16 @@
     @Test
     fun testPush_nonTransitioningDialogMarkedComplete() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
 
         val entry = createBackStackEntry()
 
@@ -430,15 +434,16 @@
     @Test
     fun testConsecutiveNavigateLifecycle() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
 
         val entry = createBackStackEntry()
         dialogNavigator.navigate(listOf(entry), null, null)
@@ -459,15 +464,16 @@
     @Test
     fun testConsecutiveNavigateThenPopLifecycle() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
 
         val entry = createBackStackEntry()
         val secondEntry = createBackStackEntry(SECOND_FRAGMENT)
@@ -494,15 +500,16 @@
     @Test
     fun testConsecutiveNavigateThenDismissLifecycle() {
         val dialogFragments = mutableListOf<DialogFragment>()
-        fragmentManager.fragmentFactory = object : FragmentFactory() {
-            override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
-                return super.instantiate(classLoader, className).also { fragment ->
-                    if (fragment is DialogFragment) {
-                        dialogFragments += fragment
+        fragmentManager.fragmentFactory =
+            object : FragmentFactory() {
+                override fun instantiate(classLoader: ClassLoader, className: String): Fragment {
+                    return super.instantiate(classLoader, className).also { fragment ->
+                        if (fragment is DialogFragment) {
+                            dialogFragments += fragment
+                        }
                     }
                 }
             }
-        }
 
         val entry = createBackStackEntry()
         val secondEntry = createBackStackEntry(SECOND_FRAGMENT)
@@ -532,10 +539,11 @@
         destId: Int = INITIAL_FRAGMENT,
         clazz: KClass<out Fragment> = EmptyDialogFragment::class
     ): NavBackStackEntry {
-        val destination = dialogNavigator.createDestination().apply {
-            id = destId
-            setClassName(clazz.java.name)
-        }
+        val destination =
+            dialogNavigator.createDestination().apply {
+                id = destId
+                setClassName(clazz.java.name)
+            }
         return navigatorState.createBackStackEntry(destination, null)
     }
 }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DynamicNavControllerTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DynamicNavControllerTest.kt
index e638d70..5e87dbf 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DynamicNavControllerTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/DynamicNavControllerTest.kt
@@ -25,9 +25,8 @@
 
 @LargeTest
 @RunWith(AndroidJUnit4::class)
-class DynamicNavControllerTest : BaseNavControllerTest<DynamicNavigationActivity>(
-    DynamicNavigationActivity::class.java
-)
+class DynamicNavControllerTest :
+    BaseNavControllerTest<DynamicNavigationActivity>(DynamicNavigationActivity::class.java)
 
 /**
  * Test Navigation Activity that dynamically adds the [NavHostFragment].
@@ -42,7 +41,8 @@
 
         if (savedInstanceState == null) {
             val finalHost = NavHostFragment()
-            supportFragmentManager.beginTransaction()
+            supportFragmentManager
+                .beginTransaction()
                 .replace(R.id.nav_host, finalHost)
                 .setPrimaryNavigationFragment(finalHost)
                 .commit()
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/EmbeddedXmlTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/EmbeddedXmlTest.kt
index ac1cb9b..b004103 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/EmbeddedXmlTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/EmbeddedXmlTest.kt
@@ -38,20 +38,14 @@
 
     @Suppress("DEPRECATION")
     @get:Rule
-    var activityRule = androidx.test.rule.ActivityTestRule(
-        EmbeddedXmlActivity::class.java,
-        false,
-        false
-    )
+    var activityRule =
+        androidx.test.rule.ActivityTestRule(EmbeddedXmlActivity::class.java, false, false)
 
     @Test
     @Throws(Throwable::class)
     fun testRecreate() {
         val instrumentation = InstrumentationRegistry.getInstrumentation()
-        val intent = Intent(
-            instrumentation.context,
-            EmbeddedXmlActivity::class.java
-        )
+        val intent = Intent(instrumentation.context, EmbeddedXmlActivity::class.java)
 
         val activity = activityRule.launchActivity(intent)
         instrumentation.waitForIdleSync()
@@ -62,9 +56,7 @@
 /**
  * Test Navigation Activity that dynamically adds the [NavHostFragment].
  *
- *
- * You must call [NavController.setGraph]
- * to set the appropriate graph for your test.
+ * You must call [NavController.setGraph] to set the appropriate graph for your test.
  */
 class EmbeddedXmlActivity : FragmentActivity() {
 
@@ -74,7 +66,8 @@
 
         if (savedInstanceState == null) {
             val embeddedFragment = EmbeddedXmlFragment()
-            supportFragmentManager.beginTransaction()
+            supportFragmentManager
+                .beginTransaction()
                 .replace(R.id.container, embeddedFragment)
                 .setPrimaryNavigationFragment(embeddedFragment)
                 .commit()
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilderTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilderTest.kt
index 64b5d96..0286465 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilderTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilderTest.kt
@@ -35,18 +35,19 @@
     @Suppress("DEPRECATION")
     @get:Rule
     val activityRule = androidx.test.rule.ActivityTestRule<TestActivity>(TestActivity::class.java)
-    private val fragmentManager get() = activityRule.activity.supportFragmentManager
+    private val fragmentManager
+        get() = activityRule.activity.supportFragmentManager
 
     @Suppress("DEPRECATION")
     @UiThreadTest
-    @Test fun fragment() {
+    @Test
+    fun fragment() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ID) {
-            fragment<BuilderTestFragment>(DESTINATION_ID)
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ID) {
+                fragment<BuilderTestFragment>(DESTINATION_ID)
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -57,16 +58,14 @@
 
     @Suppress("DEPRECATION")
     @UiThreadTest
-    @Test fun fragmentWithBody() {
+    @Test
+    fun fragmentWithBody() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ID) {
-            fragment<BuilderTestFragment>(DESTINATION_ID) {
-                label = LABEL
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ID) {
+                fragment<BuilderTestFragment>(DESTINATION_ID) { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -79,14 +78,14 @@
     }
 
     @UiThreadTest
-    @Test fun fragmentRoute() {
+    @Test
+    fun fragmentRoute() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            fragment<BuilderTestFragment>(DESTINATION_ROUTE)
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                fragment<BuilderTestFragment>(DESTINATION_ROUTE)
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -96,16 +95,14 @@
     }
 
     @UiThreadTest
-    @Test fun fragmentWithBodyRoute() {
+    @Test
+    fun fragmentWithBodyRoute() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            fragment<BuilderTestFragment>(DESTINATION_ROUTE) {
-                label = LABEL
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                fragment<BuilderTestFragment>(DESTINATION_ROUTE) { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -118,14 +115,14 @@
     }
 
     @UiThreadTest
-    @Test fun fragmentKClass() {
+    @Test
+    fun fragmentKClass() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            fragment<BuilderTestFragment, TestClass>()
-        }
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                fragment<BuilderTestFragment, TestClass>()
+            }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -135,16 +132,14 @@
     }
 
     @UiThreadTest
-    @Test fun fragmentWithBodyKClass() {
+    @Test
+    fun fragmentWithBodyKClass() {
         val navHostFragment = NavHostFragment()
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
-        val graph = navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
-            fragment<BuilderTestFragment, TestClass> {
-                label = LABEL
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
+        val graph =
+            navHostFragment.createGraph(startDestination = DESTINATION_ROUTE) {
+                fragment<BuilderTestFragment, TestClass> { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -163,11 +158,8 @@
 
 class BuilderTestFragment : Fragment()
 
-@Serializable
-internal class TestClass
+@Serializable internal class TestClass
 
-@Serializable
-internal class TestClassArg(val arg: Int)
+@Serializable internal class TestClassArg(val arg: Int)
 
-@Serializable
-internal class TestGraph
+@Serializable internal class TestGraph
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorExtrasTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorExtrasTest.kt
index e8603f2..e81aa42 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorExtrasTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorExtrasTest.kt
@@ -31,43 +31,30 @@
     @Test
     fun testAddSharedElement() {
         val view = View(InstrumentationRegistry.getInstrumentation().targetContext)
-        val extras = FragmentNavigator.Extras.Builder()
-            .addSharedElement(view, "test")
-            .build()
+        val extras = FragmentNavigator.Extras.Builder().addSharedElement(view, "test").build()
         val sharedElements = extras.sharedElements
-        assertWithMessage("Should be one shared element")
-            .that(sharedElements.size)
-            .isEqualTo(1)
+        assertWithMessage("Should be one shared element").that(sharedElements.size).isEqualTo(1)
         val name = sharedElements[view]
-        assertWithMessage("Shared element should exist in the map")
-            .that(name)
-            .isNotNull()
-        assertWithMessage("Shared element's name should match")
-            .that(name)
-            .isEqualTo("test")
+        assertWithMessage("Shared element should exist in the map").that(name).isNotNull()
+        assertWithMessage("Shared element's name should match").that(name).isEqualTo("test")
     }
 
     @Test
     fun testAddSharedElements() {
-        val map = mapOf(
-            View(InstrumentationRegistry.getInstrumentation().targetContext) to "test1",
-            View(InstrumentationRegistry.getInstrumentation().targetContext) to "test2"
-        )
-        val extras = FragmentNavigator.Extras.Builder()
-            .addSharedElements(map)
-            .build()
+        val map =
+            mapOf(
+                View(InstrumentationRegistry.getInstrumentation().targetContext) to "test1",
+                View(InstrumentationRegistry.getInstrumentation().targetContext) to "test2"
+            )
+        val extras = FragmentNavigator.Extras.Builder().addSharedElements(map).build()
         val sharedElements = extras.sharedElements
         assertWithMessage("Should be ${map.size} shared elements")
             .that(sharedElements.size)
             .isEqualTo(map.size)
         map.forEach { (view, expected) ->
             val name = sharedElements[view]
-            assertWithMessage("Shared element should exist in the map")
-                .that(name)
-                .isNotNull()
-            assertWithMessage("Shared element's name should match")
-                .that(name)
-                .isEqualTo(expected)
+            assertWithMessage("Shared element should exist in the map").that(name).isNotNull()
+            assertWithMessage("Shared element's name should match").that(name).isEqualTo(expected)
         }
     }
 
@@ -78,22 +65,12 @@
         val extras = FragmentNavigatorExtras(view1 to "test1", view2 to "test2")
         val sharedElements = extras.sharedElements
 
-        assertWithMessage("Should be 2 shared elements")
-            .that(sharedElements.size)
-            .isEqualTo(2)
+        assertWithMessage("Should be 2 shared elements").that(sharedElements.size).isEqualTo(2)
         val name1 = sharedElements[view1]
-        assertWithMessage("Shared element should exist in the map")
-            .that(name1)
-            .isNotNull()
-        assertWithMessage("Shared element's name should match")
-            .that(name1)
-            .isEqualTo("test1")
+        assertWithMessage("Shared element should exist in the map").that(name1).isNotNull()
+        assertWithMessage("Shared element's name should match").that(name1).isEqualTo("test1")
         val name2 = sharedElements[view2]
-        assertWithMessage("Shared element should exist in the map")
-            .that(name2)
-            .isNotNull()
-        assertWithMessage("Shared element's name should match")
-            .that(name2)
-            .isEqualTo("test2")
+        assertWithMessage("Shared element should exist in the map").that(name2).isNotNull()
+        assertWithMessage("Shared element's name should match").that(name2).isEqualTo("test2")
     }
 }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorTest.kt
index bdac5a9..5c8d1c9 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentNavigatorTest.kt
@@ -102,16 +102,13 @@
         val entry = createBackStackEntry()
 
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertWithMessage("Initial navigation should not trigger an addBackStack transaction")
             .that(fragmentNavigator.pendingOps.entries())
             .isEmpty()
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
         assertWithMessage("Fragment should be the correct type")
             .that(fragment)
             .isInstanceOf(EmptyFragment::class.java)
@@ -130,13 +127,10 @@
         val entry = createBackStackEntry(clazz = NonEmptyConstructorFragment::class)
 
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
         assertWithMessage("Fragment should be the correct type")
             .that(fragment)
             .isInstanceOf(NonEmptyConstructorFragment::class.java)
@@ -151,13 +145,10 @@
         val entry = createBackStackEntry()
 
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
         assertWithMessage("Fragment should be the correct type")
             .that(fragment)
             .isInstanceOf(EmptyFragment::class.java)
@@ -169,7 +160,8 @@
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
         assertThat(fragmentNavigator.pendingOps.entries())
             .containsExactly(entry.id, replacementEntry.id)
         fragmentManager.executePendingTransactions()
@@ -194,36 +186,30 @@
 
         // Push initial fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
 
         // Push a second fragment
         val secondEntry = createBackStackEntry(SECOND_FRAGMENT)
         fragmentNavigator.navigate(listOf(secondEntry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry).inOrder()
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry).inOrder()
         fragmentManager.executePendingTransactions()
 
         // Pop and then push third fragment, simulating popUpTo to initial.
         fragmentNavigator.popBackStack(secondEntry, false)
         assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(entry.id, secondEntry.id)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         val thirdEntry = createBackStackEntry(THIRD_FRAGMENT)
         fragmentNavigator.navigate(listOf(thirdEntry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, thirdEntry).inOrder()
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, secondEntry.id, thirdEntry.id
-        )
+        assertThat(navigatorState.backStack.value).containsExactly(entry, thirdEntry).inOrder()
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, secondEntry.id, thirdEntry.id)
         fragmentManager.executePendingTransactions()
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
 
         // Now pop the Fragment
         fragmentNavigator.popBackStack(thirdEntry, false)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(entry.id, thirdEntry.id)
         fragmentManager.executePendingTransactions()
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
@@ -237,14 +223,11 @@
         fragmentNavigator.navigate(listOf(entry), null, null)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
         val lifecycle = fragment!!.lifecycle
 
         fragmentNavigator.onLaunchSingleTop(entry)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
@@ -273,36 +256,31 @@
 
         // First push an initial Fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val initialFragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Initial Fragment should be added")
-            .that(initialFragment)
-            .isNotNull()
+        assertWithMessage("Initial Fragment should be added").that(initialFragment).isNotNull()
 
         // Now push the Fragment that we want to replace with a singleTop operation
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, replacementEntry.id
-        )
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, replacementEntry.id)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
         val lifecycle = fragment!!.lifecycle
 
         fragmentNavigator.onLaunchSingleTop(replacementEntry)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, replacementEntry.id, replacementEntry.id
-        )
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, replacementEntry.id, replacementEntry.id)
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -323,11 +301,9 @@
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
 
         fragmentNavigator.popBackStack(replacementEntry, false)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, replacementEntry.id
-        )
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, replacementEntry.id)
         fragmentManager.executePendingTransactions()
         assertWithMessage("Initial Fragment should be on top of back stack after pop")
             .that(fragmentManager.findFragmentById(R.id.container))
@@ -345,14 +321,12 @@
 
         // First push an initial Fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
 
         // Now pop the initial Fragment
         fragmentNavigator.popBackStack(entry, false)
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
-        assertThat(navigatorState.backStack.value)
-            .isEmpty()
+        assertThat(navigatorState.backStack.value).isEmpty()
     }
 
     @UiThreadTest
@@ -362,19 +336,17 @@
 
         // First push an initial Fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // Now push the Fragment that we want to pop
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -392,12 +364,10 @@
 
         // Now pop the Fragment
         fragmentNavigator.popBackStack(replacementEntry, false)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, replacementEntry.id
-        )
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, replacementEntry.id)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertWithMessage("Fragment should be the primary navigation Fragment after pop")
             .that(fragmentManager.primaryNavigationFragment)
             .isSameInstanceAs(fragment)
@@ -421,12 +391,10 @@
 
         // Now pop thirdEntry
         fragmentNavigator.popBackStack(thirdEntry, false)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            secondEntry.id, thirdEntry.id
-        )
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(secondEntry.id, thirdEntry.id)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry)
         // We should ensure the fragment manager is on the proper fragment at the end
         assertWithMessage("FragmentManager back stack should have only SECOND_FRAGMENT")
             .that(fragmentManager.backStackEntryCount)
@@ -524,22 +492,28 @@
         }
 
         val fragment1 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment1)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment1).isNotNull()
         assertThat(fragment1?.tag).isEqualTo(entry1.id)
 
         // Add an observer to ensure that we don't attempt to verify the state until animations
         // are complete and the viewLifecycle has been RESUMED.
         val countDownLatch3 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment1?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch3.countDown()
+            fragment1
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch3.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch3.await(1000, TimeUnit.MILLISECONDS)).isTrue()
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
@@ -561,19 +535,15 @@
 
         // First push an initial Fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // Now push a second Fragment
         val secondEntry = createBackStackEntry(SECOND_FRAGMENT)
         fragmentNavigator.navigate(listOf(secondEntry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry).inOrder()
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry).inOrder()
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -588,15 +558,13 @@
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry, replacementEntry).inOrder()
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            secondEntry.id, replacementEntry.id
-        )
+            .containsExactly(entry, secondEntry, replacementEntry)
+            .inOrder()
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(secondEntry.id, replacementEntry.id)
         fragmentManager.executePendingTransactions()
         val fragmentToPop = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment to pop should be added")
-            .that(fragmentToPop)
-            .isNotNull()
+        assertWithMessage("Fragment to pop should be added").that(fragmentToPop).isNotNull()
         assertWithMessage("Fragment to pop should be the primary navigation Fragment")
             .that(fragmentManager.primaryNavigationFragment)
             .isSameInstanceAs(fragmentToPop)
@@ -604,16 +572,13 @@
 
         // Now pop the Fragment
         fragmentNavigator.popBackStack(replacementEntry, false)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            secondEntry.id, replacementEntry.id
-        )
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(secondEntry.id, replacementEntry.id)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry).inOrder()
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry).inOrder()
         assertWithMessage(
-            "Replacement Fragment should be the primary navigation Fragment " +
-                "after pop"
-        )
+                "Replacement Fragment should be the primary navigation Fragment " + "after pop"
+            )
             .that(fragmentManager.primaryNavigationFragment)
             .isSameInstanceAs(replacementFragment)
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
@@ -626,19 +591,17 @@
 
         // First push an initial Fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // Now push the Fragment that we want to pop
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -653,10 +616,7 @@
 
         // Add a Fragment to the replacementFragment's childFragmentManager back stack
         replacementFragment?.childFragmentManager?.run {
-            beginTransaction()
-                .add(EmptyFragment(), "child")
-                .addToBackStack(null)
-                .commit()
+            beginTransaction().add(EmptyFragment(), "child").addToBackStack(null).commit()
             executePendingTransactions()
         }
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
@@ -664,8 +624,7 @@
         // Now pop the Fragment
         fragmentNavigator.popBackStack(replacementEntry, false)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertWithMessage("Fragment should be the primary navigation Fragment after pop")
             .that(fragmentManager.primaryNavigationFragment)
             .isSameInstanceAs(fragment)
@@ -680,14 +639,12 @@
 
         // First push two Fragments as our 'deep link'
         fragmentNavigator.navigate(listOf(entry, secondEntry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry)
 
         // Now push the Fragment that we want to pop
         val thirdEntry = createBackStackEntry(THIRD_FRAGMENT)
         fragmentNavigator.navigate(listOf(thirdEntry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry, thirdEntry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry, thirdEntry)
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -721,12 +678,10 @@
 
         // Now pop the Fragment
         fragmentNavigator.popBackStack(thirdEntry, false)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, secondEntry.id, thirdEntry.id
-        )
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, secondEntry.id, thirdEntry.id)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, secondEntry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry, secondEntry)
         // We should ensure the fragment manager is on the proper fragment at the end
         assertWithMessage("FragmentManager back stack should have only SECOND_FRAGMENT")
             .that(fragmentManager.backStackEntryCount)
@@ -747,18 +702,16 @@
 
         // Push 3 fragments
         fragmentNavigator.navigate(listOf(entry, secondEntry, thirdEntry), null, null)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, secondEntry.id, thirdEntry.id
-        )
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, secondEntry.id, thirdEntry.id)
         fragmentManager.executePendingTransactions()
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
 
         // Now pop multiple fragments with savedState so that the secondEntry does not get
         // marked complete by clear viewModel
         fragmentNavigator.popBackStack(secondEntry, true)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, secondEntry.id, thirdEntry.id
-        )
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, secondEntry.id, thirdEntry.id)
         fragmentManager.executePendingTransactions()
         assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertThat(navigatorState.transitionsInProgress.value).isEmpty()
@@ -774,10 +727,7 @@
         val fourthEntry = createBackStackEntry(FOURTH_FRAGMENT)
 
         // Push 4 fragments
-        fragmentNavigator.navigate(
-            listOf(entry, secondEntry, thirdEntry, fourthEntry),
-            null, null
-        )
+        fragmentNavigator.navigate(listOf(entry, secondEntry, thirdEntry, fourthEntry), null, null)
         fragmentManager.executePendingTransactions()
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
 
@@ -785,12 +735,10 @@
         fragmentNavigator.popBackStack(thirdEntry, false)
 
         fragmentNavigator.popBackStack(secondEntry, false)
-        assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-            entry.id, secondEntry.id, thirdEntry.id, fourthEntry.id
-        )
+        assertThat(fragmentNavigator.pendingOps.entries())
+            .containsExactly(entry.id, secondEntry.id, thirdEntry.id, fourthEntry.id)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
     }
 
@@ -800,13 +748,10 @@
         val entry = createBackStackEntry()
 
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
         assertWithMessage("Fragment should be the correct type")
             .that(fragment)
             .isInstanceOf(EmptyFragment::class.java)
@@ -815,9 +760,7 @@
             .isSameInstanceAs(fragment)
 
         val independentFragment = EmptyFragment()
-        fragmentManager.beginTransaction()
-            .replace(R.id.container, independentFragment)
-            .commit()
+        fragmentManager.beginTransaction().replace(R.id.container, independentFragment).commit()
         assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
         fragmentManager.executePendingTransactions()
 
@@ -832,13 +775,10 @@
         val entry = createBackStackEntry()
 
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
         assertWithMessage("Fragment should be the correct type")
             .that(fragment)
             .isInstanceOf(EmptyFragment::class.java)
@@ -847,7 +787,8 @@
             .isSameInstanceAs(fragment)
 
         val independentFragment = EmptyFragment()
-        fragmentManager.beginTransaction()
+        fragmentManager
+            .beginTransaction()
             .replace(R.id.container, independentFragment)
             .addToBackStack(null)
             .commit()
@@ -856,9 +797,13 @@
         } catch (e: IllegalArgumentException) {
             assertWithMessage("adding a fragment to the back stack manually should fail")
                 .that(e.message)
-                .contains("The fragment " + independentFragment + " is unknown to the " +
-                    "FragmentNavigator. Please use the navigate() function to add fragments to " +
-                    "the FragmentNavigator managed FragmentManager.")
+                .contains(
+                    "The fragment " +
+                        independentFragment +
+                        " is unknown to the " +
+                        "FragmentNavigator. Please use the navigate() function to add fragments to " +
+                        "the FragmentNavigator managed FragmentManager."
+                )
         }
     }
 
@@ -885,9 +830,7 @@
         fragmentManager.executePendingTransactions()
 
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
@@ -918,28 +861,30 @@
         }
 
         // navigate to first entry and verify it executed correctly
-        activityRule.runOnUiThread {
-            fragmentNavigator.navigate(listOf(entry1), options, null)
-        }
+        activityRule.runOnUiThread { fragmentNavigator.navigate(listOf(entry1), options, null) }
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
-        activityRule.runOnUiThread {
-            fragmentManager.executePendingTransactions()
-        }
+        activityRule.runOnUiThread { fragmentManager.executePendingTransactions() }
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // assert states
         val countDownLatch = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch.countDown()
+            fragment
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
 
         assertThat(countDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
@@ -954,19 +899,25 @@
 
         // assert states
         val fragment2 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment2)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment2).isNotNull()
 
         val countDownLatch2 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment2?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch2.countDown()
+            fragment2
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch2.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch2.await(1000, TimeUnit.MILLISECONDS)).isTrue()
         assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
@@ -984,9 +935,7 @@
         assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         assertThat(entry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
@@ -994,7 +943,8 @@
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT, SavedStateFragment::class)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -1013,10 +963,7 @@
 
         // Create a new FragmentNavigator, replacing the previous one
         val savedState = fragmentNavigator.onSaveState() as Bundle
-        fragmentNavigator = FragmentNavigator(
-            emptyActivity,
-            fragmentManager, R.id.container
-        )
+        fragmentNavigator = FragmentNavigator(emptyActivity, fragmentManager, R.id.container)
         fragmentNavigator.onAttach(navigatorState)
         fragmentNavigator.onRestoreState(savedState)
 
@@ -1024,10 +971,10 @@
         val restoredEntry = navigatorState.restoreBackStackEntry(replacementEntry)
         fragmentNavigator.navigate(
             listOf(restoredEntry),
-            NavOptions.Builder().setRestoreState(true).build(), null
+            NavOptions.Builder().setRestoreState(true).build(),
+            null
         )
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, restoredEntry).inOrder()
+        assertThat(navigatorState.backStack.value).containsExactly(entry, restoredEntry).inOrder()
         fragmentManager.executePendingTransactions()
 
         assertThat(entry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
@@ -1040,22 +987,20 @@
     fun testEntryStatesWithAnimationAfterReconfiguration() {
         withUse(ActivityScenario.launch(NavigationActivity::class.java)) {
             val navController1 = withActivity { findNavController(R.id.nav_host) }
-            val fragNavigator1 = navController1.navigatorProvider.getNavigator(
-                FragmentNavigator::class.java
-            )
+            val fragNavigator1 =
+                navController1.navigatorProvider.getNavigator(FragmentNavigator::class.java)
 
             // navigated to startDestination -- assert states
             assertThat(fragNavigator1.backStack.value.size).isEqualTo(1)
             val entry1 = fragNavigator1.backStack.value[0]
             val fm1 = withActivity {
-                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager
-                    .also { it.executePendingTransactions() }
+                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager.also {
+                    it.executePendingTransactions()
+                }
             }
 
             val fragment1 = fm1.findFragmentByTag(entry1.id)
-            assertWithMessage("Fragment should be added")
-                .that(fragment1)
-                .isNotNull()
+            assertWithMessage("Fragment should be added").that(fragment1).isNotNull()
             assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
             // use animation
@@ -1076,9 +1021,7 @@
             assertThat(fragNavigator1.backStack.value.size).isEqualTo(2)
             val entry2 = fragNavigator1.backStack.value[1]
             val fragment2 = fm1.findFragmentByTag(entry2.id)
-            assertWithMessage("Fragment should be added")
-                .that(fragment2)
-                .isNotNull()
+            assertWithMessage("Fragment should be added").that(fragment2).isNotNull()
             assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
             assertThat(entry2.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
@@ -1090,13 +1033,13 @@
 
             // get restored components
             val fm2 = withActivity {
-                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager
-                    .also { it.executePendingTransactions() }
+                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager.also {
+                    it.executePendingTransactions()
+                }
             }
             val navController2 = withActivity { findNavController(R.id.nav_host) }
-            val fragNavigator2 = navController2.navigatorProvider.getNavigator(
-                FragmentNavigator::class.java
-            )
+            val fragNavigator2 =
+                navController2.navigatorProvider.getNavigator(FragmentNavigator::class.java)
             assertThat(fm2).isNotEqualTo(fm1)
             assertThat(navController2).isNotEqualTo(navController1)
             assertThat(fragNavigator2).isNotEqualTo(fragNavigator1)
@@ -1112,49 +1055,49 @@
 
             // check that fragments have been restored
             val fragment1Restored = fm2.findFragmentByTag(entry1.id)
-            assertWithMessage("Fragment should be added")
-                .that(fragment1Restored)
-                .isNotNull()
+            assertWithMessage("Fragment should be added").that(fragment1Restored).isNotNull()
             val fragment2Restored = fm2.findFragmentByTag(entry2.id)
-            assertWithMessage("Fragment should be added")
-                .that(fragment2Restored)
-                .isNotNull()
+            assertWithMessage("Fragment should be added").that(fragment2Restored).isNotNull()
 
             // attach ON_DESTROY listeners which should be triggered when we pop
             var entry2RestoredDestroyed = false
             val countDownLatch = CountDownLatch(1)
             onActivity {
-                fragment2Restored?.viewLifecycleOwner?.lifecycle?.addObserver(
+                fragment2Restored
+                    ?.viewLifecycleOwner
+                    ?.lifecycle
+                    ?.addObserver(
+                        object : LifecycleEventObserver {
+                            override fun onStateChanged(
+                                source: LifecycleOwner,
+                                event: Lifecycle.Event
+                            ) {
+                                if (event == Lifecycle.Event.ON_DESTROY) {
+                                    countDownLatch.countDown()
+                                }
+                            }
+                        }
+                    )
+                entry2Restored.lifecycle.addObserver(
                     object : LifecycleEventObserver {
                         override fun onStateChanged(
                             source: LifecycleOwner,
                             event: Lifecycle.Event
                         ) {
                             if (event == Lifecycle.Event.ON_DESTROY) {
-                                countDownLatch.countDown()
+                                entry2RestoredDestroyed = true
                             }
                         }
                     }
                 )
-                entry2Restored.lifecycle.addObserver(object : LifecycleEventObserver {
-                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                        if (event == Lifecycle.Event.ON_DESTROY) {
-                            entry2RestoredDestroyed = true
-                        }
-                    }
-                })
             }
 
             // pop backstack
-            onActivity {
-                navController2.popBackStack(entry2Restored.destination.id, true)
-            }
+            onActivity { navController2.popBackStack(entry2Restored.destination.id, true) }
 
             assertThat(countDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
-            onActivity {
-                fm2.executePendingTransactions()
-            }
+            onActivity { fm2.executePendingTransactions() }
 
             // assert popped states
             assertThat(entry2RestoredDestroyed).isTrue()
@@ -1172,22 +1115,20 @@
     fun testEntryStatesWithAnimatorAfterReconfiguration() {
         withUse(ActivityScenario.launch(NavigationActivity::class.java)) {
             val navController1 = withActivity { findNavController(R.id.nav_host) }
-            val fragNavigator1 = navController1.navigatorProvider.getNavigator(
-                FragmentNavigator::class.java
-            )
+            val fragNavigator1 =
+                navController1.navigatorProvider.getNavigator(FragmentNavigator::class.java)
 
             // navigated to startDestination -- assert states
             assertThat(fragNavigator1.backStack.value.size).isEqualTo(1)
             val entry1 = fragNavigator1.backStack.value[0]
             val fm1 = withActivity {
-                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager
-                    .also { it.executePendingTransactions() }
+                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager.also {
+                    it.executePendingTransactions()
+                }
             }
 
             val fragment1 = fm1.findFragmentByTag(entry1.id)
-            assertWithMessage("Fragment should be added")
-                .that(fragment1)
-                .isNotNull()
+            assertWithMessage("Fragment should be added").that(fragment1).isNotNull()
             assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
             // use animator
@@ -1226,13 +1167,13 @@
 
             // get restored components
             val fm2 = withActivity {
-                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager
-                    .also { it.executePendingTransactions() }
+                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager.also {
+                    it.executePendingTransactions()
+                }
             }
             val navController2 = withActivity { findNavController(R.id.nav_host) }
-            val fragNavigator2 = navController2.navigatorProvider.getNavigator(
-                FragmentNavigator::class.java
-            )
+            val fragNavigator2 =
+                navController2.navigatorProvider.getNavigator(FragmentNavigator::class.java)
             assertThat(fm2).isNotEqualTo(fm1)
             assertThat(navController2).isNotEqualTo(navController1)
             assertThat(fragNavigator2).isNotEqualTo(fragNavigator1)
@@ -1248,49 +1189,49 @@
 
             // check that fragments have been restored
             val fragment1Restored = fm2.findFragmentByTag(entry1.id)
-            assertWithMessage("Fragment should be added")
-                .that(fragment1Restored)
-                .isNotNull()
+            assertWithMessage("Fragment should be added").that(fragment1Restored).isNotNull()
             val fragment2Restored = fm2.findFragmentByTag(entry2.id)
-            assertWithMessage("Fragment should be added")
-                .that(fragment2Restored)
-                .isNotNull()
+            assertWithMessage("Fragment should be added").that(fragment2Restored).isNotNull()
 
             // attach ON_DESTROY listeners which should be triggered when we pop
             var entry2RestoredDestroyed = false
             val countDownLatch = CountDownLatch(1)
             onActivity {
-                fragment2Restored?.viewLifecycleOwner?.lifecycle?.addObserver(
+                fragment2Restored
+                    ?.viewLifecycleOwner
+                    ?.lifecycle
+                    ?.addObserver(
+                        object : LifecycleEventObserver {
+                            override fun onStateChanged(
+                                source: LifecycleOwner,
+                                event: Lifecycle.Event
+                            ) {
+                                if (event == Lifecycle.Event.ON_DESTROY) {
+                                    countDownLatch.countDown()
+                                }
+                            }
+                        }
+                    )
+                entry2Restored.lifecycle.addObserver(
                     object : LifecycleEventObserver {
                         override fun onStateChanged(
                             source: LifecycleOwner,
                             event: Lifecycle.Event
                         ) {
                             if (event == Lifecycle.Event.ON_DESTROY) {
-                                countDownLatch.countDown()
+                                entry2RestoredDestroyed = true
                             }
                         }
                     }
                 )
-                entry2Restored.lifecycle.addObserver(object : LifecycleEventObserver {
-                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                        if (event == Lifecycle.Event.ON_DESTROY) {
-                            entry2RestoredDestroyed = true
-                        }
-                    }
-                })
             }
 
             // pop backstack
-            onActivity {
-                navController2.popBackStack(entry2Restored.destination.id, true)
-            }
+            onActivity { navController2.popBackStack(entry2Restored.destination.id, true) }
 
             assertThat(countDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
-            onActivity {
-                fm2.executePendingTransactions()
-            }
+            onActivity { fm2.executePendingTransactions() }
 
             // assert popped states
             assertThat(entry2RestoredDestroyed).isTrue()
@@ -1319,9 +1260,7 @@
         fragmentManager.executePendingTransactions()
 
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
         // assert entry received fragment lifecycle event to move it to resumed
@@ -1332,9 +1271,7 @@
         fragmentManager.executePendingTransactions()
         // assert states
         val fragment2 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment2)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment2).isNotNull()
 
         assertThat(entry2.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
         // assert entry received fragment lifecycle event to move it to resumed
@@ -1352,16 +1289,16 @@
     fun testNavigatePopUpToGraphInterrupt() {
         withUse(ActivityScenario.launch(NavigationActivity::class.java)) {
             val navController1 = withActivity { findNavController(R.id.nav_host) }
-            val fragNavigator1 = navController1.navigatorProvider.getNavigator(
-                FragmentNavigator::class.java
-            )
+            val fragNavigator1 =
+                navController1.navigatorProvider.getNavigator(FragmentNavigator::class.java)
 
             // navigated to entry1
             assertThat(fragNavigator1.backStack.value.size).isEqualTo(1)
             val entry1 = fragNavigator1.backStack.value[0]
             val fm = withActivity {
-                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager
-                    .also { it.executePendingTransactions() }
+                supportFragmentManager.findFragmentById(R.id.nav_host)!!.childFragmentManager.also {
+                    it.executePendingTransactions()
+                }
             }
 
             assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
@@ -1370,23 +1307,18 @@
             assertThat(fragment1).isNotNull()
 
             // setup pop options
-            val popUpToOptions = NavOptions.Builder()
-                .setPopUpTo((navController1.graph.id), false, false)
-                .build()
+            val popUpToOptions =
+                NavOptions.Builder().setPopUpTo((navController1.graph.id), false, false).build()
 
             // navigate to entry2
-            onActivity {
-                navController1.navigate(R.id.empty_fragment, null, popUpToOptions)
-            }
+            onActivity { navController1.navigate(R.id.empty_fragment, null, popUpToOptions) }
 
             assertThat(fragNavigator1.backStack.value.size).isEqualTo(1)
             val entry2 = fragNavigator1.backStack.value[0]
             assertThat(entry2.id).isNotEqualTo(entry1.id)
 
             // navigate to entry3 immediately
-            onActivity {
-                navController1.navigate(R.id.empty_fragment_2, null, popUpToOptions)
-            }
+            onActivity { navController1.navigate(R.id.empty_fragment_2, null, popUpToOptions) }
 
             assertThat(fragNavigator1.backStack.value.size).isEqualTo(1)
             val entry3 = fragNavigator1.backStack.value[0]
@@ -1418,16 +1350,18 @@
         val entry2 = createBackStackEntry(SECOND_FRAGMENT)
         // Add observer to entry to verify lifecycle events.
         activityRule.runOnUiThread {
-            entry2.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_START) {
-                        entry2Started = true
-                    }
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        entry2Resumed = true
+            entry2.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_START) {
+                            entry2Started = true
+                        }
+                        if (event == Lifecycle.Event.ON_RESUME) {
+                            entry2Resumed = true
+                        }
                     }
                 }
-            })
+            )
         }
 
         val entry3 = createBackStackEntry(THIRD_FRAGMENT)
@@ -1442,25 +1376,18 @@
         }
 
         // navigate to first entry and verify it executed correctly
-        activityRule.runOnUiThread {
-            fragmentNavigator.navigate(listOf(entry1), options, null)
-        }
+        activityRule.runOnUiThread { fragmentNavigator.navigate(listOf(entry1), options, null) }
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
-        activityRule.runOnUiThread {
-            fragmentManager.executePendingTransactions()
-        }
+        activityRule.runOnUiThread { fragmentManager.executePendingTransactions() }
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // navigate to both the second and third entry back to back.
         activityRule.runOnUiThread {
             fragmentNavigator.navigate(listOf(entry2), options, null)
             fragmentNavigator.navigate(listOf(entry3), options, null)
-            assertThat(fragmentNavigator.pendingOps.entries()).containsExactly(
-                entry1.id, entry2.id, entry3.id
-            )
+            assertThat(fragmentNavigator.pendingOps.entries())
+                .containsExactly(entry1.id, entry2.id, entry3.id)
         }
         assertThat(navigatorState.backStack.value).containsExactly(entry1, entry2, entry3)
         activityRule.runOnUiThread {
@@ -1468,9 +1395,7 @@
             assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
         }
         val fragment3 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment3)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment3).isNotNull()
 
         // Verify that both entries on the back stack are in a CREATED state
         assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
@@ -1480,13 +1405,21 @@
         // are complete and the viewLifecycle has been RESUMED.
         val countDownLatch = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment3?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch.countDown()
+            fragment3
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
         assertThat(entry3.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
@@ -1505,13 +1438,15 @@
 
         // Add observer to entry to verify lifecycle events.
         activityRule.runOnUiThread {
-            entry1.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_STOP) {
-                        entry1Stopped = true
+            entry1.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_STOP) {
+                            entry1Stopped = true
+                        }
                     }
                 }
-            })
+            )
         }
 
         val entry2 = createBackStackEntry(SECOND_FRAGMENT, clazz = AnimatorFragment::class)
@@ -1526,17 +1461,11 @@
         }
 
         // navigate to first entry and verify it executed correctly
-        activityRule.runOnUiThread {
-            fragmentNavigator.navigate(listOf(entry1), options, null)
-        }
+        activityRule.runOnUiThread { fragmentNavigator.navigate(listOf(entry1), options, null) }
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
-        activityRule.runOnUiThread {
-            fragmentManager.executePendingTransactions()
-        }
+        activityRule.runOnUiThread { fragmentManager.executePendingTransactions() }
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // navigate to the second entry and pop it back to back.
         activityRule.runOnUiThread {
@@ -1559,20 +1488,30 @@
         val viewCountDownLatch = CountDownLatch(1)
         val entryCountDownLatch = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        viewCountDownLatch.countDown()
+            fragment
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                viewCountDownLatch.countDown()
+                            }
+                        }
+                    }
+                )
+            entry1.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_RESUME) {
+                            entryCountDownLatch.countDown()
+                        }
                     }
                 }
-            })
-            entry1.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        entryCountDownLatch.countDown()
-                    }
-                }
-            })
+            )
         }
         assertThat(viewCountDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
         assertThat(entryCountDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
@@ -1594,13 +1533,15 @@
 
         // Add observer to entry to verify lifecycle events.
         activityRule.runOnUiThread {
-            entry1.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_STOP) {
-                        entry1Stopped = true
+            entry1.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_STOP) {
+                            entry1Stopped = true
+                        }
                     }
                 }
-            })
+            )
         }
 
         val entry2 = createBackStackEntry(SECOND_FRAGMENT, clazz = AnimatorFragment::class)
@@ -1615,17 +1556,11 @@
         }
 
         // navigate to first entry and verify it executed correctly
-        activityRule.runOnUiThread {
-            fragmentNavigator.navigate(listOf(entry1), options, null)
-        }
+        activityRule.runOnUiThread { fragmentNavigator.navigate(listOf(entry1), options, null) }
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
-        activityRule.runOnUiThread {
-            fragmentManager.executePendingTransactions()
-        }
+        activityRule.runOnUiThread { fragmentManager.executePendingTransactions() }
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // navigate to the second entry and pop it back to back.
         activityRule.runOnUiThread {
@@ -1644,20 +1579,30 @@
         val viewCountDownLatch = CountDownLatch(1)
         val entryCountDownLatch = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        viewCountDownLatch.countDown()
+            fragment
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                viewCountDownLatch.countDown()
+                            }
+                        }
+                    }
+                )
+            entry1.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_RESUME) {
+                            entryCountDownLatch.countDown()
+                        }
                     }
                 }
-            })
-            entry1.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        entryCountDownLatch.countDown()
-                    }
-                }
-            })
+            )
         }
 
         assertThat(viewCountDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
@@ -1704,9 +1649,7 @@
         }
 
         val fragment3 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment3)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment3).isNotNull()
 
         // Verify that both entries on the back stack are in a CREATED state
         assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
@@ -1716,13 +1659,21 @@
         // are complete and the viewLifecycle has been RESUMED.
         val countDownLatch1 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment3?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch1.countDown()
+            fragment3
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch1.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch1.await(1000, TimeUnit.MILLISECONDS)).isTrue()
         // Entry 3 should be RESUMED
@@ -1732,13 +1683,15 @@
 
         // Add observer to entry to verify lifecycle events.
         activityRule.runOnUiThread {
-            entry2.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_START) {
-                        entry2Started = true
+            entry2.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_START) {
+                            entry2Started = true
+                        }
                     }
                 }
-            })
+            )
         }
         // obs for upcoming pop
         val countDownLatch2 = CountDownLatch(1)
@@ -1768,9 +1721,7 @@
             assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
         }
         val fragment1 = fragmentManager.findFragmentById(R.id.container) as AnimatorFragment
-        assertWithMessage("Fragment should be added")
-            .that(fragment1)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment1).isNotNull()
 
         // middle of transition
 
@@ -1787,13 +1738,15 @@
         // are complete and the viewLifecycle has been RESUMED.
         val countDownLatch4 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment1.viewLifecycleOwner.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch4.countDown()
+            fragment1.viewLifecycleOwner.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_RESUME) {
+                            countDownLatch4.countDown()
+                        }
                     }
                 }
-            })
+            )
         }
         assertThat(countDownLatch4.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
@@ -1826,14 +1779,10 @@
         }
 
         // navigate to first entry and verify it executed correctly
-        activityRule.runOnUiThread {
-            fragmentNavigator.navigate(listOf(entry1), options, null)
-        }
+        activityRule.runOnUiThread { fragmentNavigator.navigate(listOf(entry1), options, null) }
         assertThat(fragmentNavigator.backStack.value).containsExactly(entry1)
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
-        activityRule.runOnUiThread {
-            fragmentManager.executePendingTransactions()
-        }
+        activityRule.runOnUiThread { fragmentManager.executePendingTransactions() }
 
         // navigate to the second entry
         activityRule.runOnUiThread {
@@ -1843,23 +1792,29 @@
             assertThat(fragmentNavigator.pendingOps.entries()).isEmpty()
         }
         assertThat(navigatorState.backStack.value).containsExactlyElementsIn(listOf(entry1, entry2))
-        assertThat(fragmentNavigator.backStack.value).containsExactlyElementsIn(
-            listOf(entry1, entry2)
-        ).inOrder()
+        assertThat(fragmentNavigator.backStack.value)
+            .containsExactlyElementsIn(listOf(entry1, entry2))
+            .inOrder()
         val fragment2 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment2)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment2).isNotNull()
 
         val countDownLatch2 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment2?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch2.countDown()
+            fragment2
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch2.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch2.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
@@ -1874,14 +1829,16 @@
 
         val countDownLatch3 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            entry1.lifecycle.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        // wait for animator to finish
-                        countDownLatch3.countDown()
+            entry1.lifecycle.addObserver(
+                object : LifecycleEventObserver {
+                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                        if (event == Lifecycle.Event.ON_RESUME) {
+                            // wait for animator to finish
+                            countDownLatch3.countDown()
+                        }
                     }
                 }
-            })
+            )
         }
         assertThat(countDownLatch3.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
@@ -1911,14 +1868,10 @@
         }
 
         // navigate to first entry and verify it executed correctly
-        activityRule.runOnUiThread {
-            fragmentNavigator.navigate(listOf(entry1), options, null)
-        }
+        activityRule.runOnUiThread { fragmentNavigator.navigate(listOf(entry1), options, null) }
         assertThat(fragmentNavigator.backStack.value).containsExactly(entry1)
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
-        activityRule.runOnUiThread {
-            fragmentManager.executePendingTransactions()
-        }
+        activityRule.runOnUiThread { fragmentManager.executePendingTransactions() }
 
         // navigate to the second entry
         activityRule.runOnUiThread {
@@ -1926,23 +1879,29 @@
             fragmentManager.executePendingTransactions()
         }
         assertThat(navigatorState.backStack.value).containsExactlyElementsIn(listOf(entry1, entry2))
-        assertThat(fragmentNavigator.backStack.value).containsExactlyElementsIn(
-            listOf(entry1, entry2)
-        ).inOrder()
+        assertThat(fragmentNavigator.backStack.value)
+            .containsExactlyElementsIn(listOf(entry1, entry2))
+            .inOrder()
         var fragment2 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment2)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment2).isNotNull()
 
         var countDownLatch2 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment2?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch2.countDown()
+            fragment2
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch2.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch2.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
@@ -1954,26 +1913,31 @@
             fragmentNavigator.navigate(listOf(entry3), options, null)
             fragmentManager.executePendingTransactions()
         }
-        assertThat(navigatorState.backStack.value).containsExactlyElementsIn(
-            listOf(entry1, entry2, entry3)
-        )
-        assertThat(fragmentNavigator.backStack.value).containsExactlyElementsIn(
-            listOf(entry1, entry2, entry3)
-        ).inOrder()
+        assertThat(navigatorState.backStack.value)
+            .containsExactlyElementsIn(listOf(entry1, entry2, entry3))
+        assertThat(fragmentNavigator.backStack.value)
+            .containsExactlyElementsIn(listOf(entry1, entry2, entry3))
+            .inOrder()
         val fragment3 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment3)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment3).isNotNull()
 
         val countDownLatch3 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment3?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch3.countDown()
+            fragment3
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch3.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch3.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
@@ -1982,31 +1946,34 @@
         assertThat(entry3.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         // system back press
-        activityRule.runOnUiThread {
-            emptyActivity.onBackPressed()
-        }
+        activityRule.runOnUiThread { emptyActivity.onBackPressed() }
 
         fragment2 = fragmentManager.findFragmentById(R.id.container)
 
         countDownLatch2 = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment2?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch2.countDown()
+            fragment2
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch2.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch2.await(1000, TimeUnit.MILLISECONDS)).isTrue()
 
         // exit from entry3, enter entry2
-        assertThat(navigatorState.backStack.value).containsExactlyElementsIn(
-            listOf(entry1, entry2)
-        )
-        assertThat(fragmentNavigator.backStack.value).containsExactlyElementsIn(
-            listOf(entry1, entry2)
-        )
+        assertThat(navigatorState.backStack.value).containsExactlyElementsIn(listOf(entry1, entry2))
+        assertThat(fragmentNavigator.backStack.value)
+            .containsExactlyElementsIn(listOf(entry1, entry2))
         assertThat(entry1.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
         assertThat(entry2.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
         assertThat(entry3.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
@@ -2045,34 +2012,48 @@
             emptyActivity.onBackPressed()
 
             val fragment2 = fragmentManager.findFragmentByTag(entry2.id)
-            fragment2?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_START) {
-                        // second back press here imitates two back to back back presses
-                        emptyActivity.onBackPressed()
-                        fragmentManager.executePendingTransactions()
+            fragment2
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_START) {
+                                // second back press here imitates two back to back back presses
+                                emptyActivity.onBackPressed()
+                                fragmentManager.executePendingTransactions()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
 
         // ensure correct fragment displayed
         val fragment1 = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment1)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment1).isNotNull()
         assertThat(fragment1?.tag).isEqualTo(entry1.id)
 
         // Add an observer to ensure we don't verify the state until postponement is complete
         val countDownLatch = CountDownLatch(1)
         activityRule.runOnUiThread {
-            fragment1?.viewLifecycleOwner?.lifecycle?.addObserver(object : LifecycleEventObserver {
-                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                    if (event == Lifecycle.Event.ON_RESUME) {
-                        countDownLatch.countDown()
+            fragment1
+                ?.viewLifecycleOwner
+                ?.lifecycle
+                ?.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event == Lifecycle.Event.ON_RESUME) {
+                                countDownLatch.countDown()
+                            }
+                        }
                     }
-                }
-            })
+                )
         }
         assertThat(countDownLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
         assertThat(navigatorState.backStack.value).containsExactly(entry1)
@@ -2097,19 +2078,17 @@
 
         // First push an initial Fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // Now push the Fragment that we want to save
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT, SavedStateFragment::class)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -2128,8 +2107,7 @@
         // Now save the Fragment
         fragmentNavigator.popBackStack(replacementEntry, true)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertWithMessage("Fragment should be the primary navigation Fragment after pop")
             .that(fragmentManager.primaryNavigationFragment)
             .isSameInstanceAs(fragment)
@@ -2138,15 +2116,13 @@
         val restoredEntry = navigatorState.restoreBackStackEntry(replacementEntry)
         fragmentNavigator.navigate(
             listOf(restoredEntry),
-            NavOptions.Builder().setRestoreState(true).build(), null
+            NavOptions.Builder().setRestoreState(true).build(),
+            null
         )
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, restoredEntry).inOrder()
+        assertThat(navigatorState.backStack.value).containsExactly(entry, restoredEntry).inOrder()
         fragmentManager.executePendingTransactions()
         val restoredFragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Restored Fragment should be added")
-            .that(restoredFragment)
-            .isNotNull()
+        assertWithMessage("Restored Fragment should be added").that(restoredFragment).isNotNull()
         assertWithMessage("Restored Fragment should be the correct type")
             .that(restoredFragment)
             .isInstanceOf(SavedStateFragment::class.java)
@@ -2166,19 +2142,17 @@
 
         // First push an initial Fragment
         fragmentNavigator.navigate(listOf(entry), null, null)
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         fragmentManager.executePendingTransactions()
         val fragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Fragment should be added")
-            .that(fragment)
-            .isNotNull()
+        assertWithMessage("Fragment should be added").that(fragment).isNotNull()
 
         // Now push the Fragment that we want to save
         val replacementEntry = createBackStackEntry(SECOND_FRAGMENT, SavedStateFragment::class)
         fragmentNavigator.navigate(listOf(replacementEntry), null, null)
         assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, replacementEntry).inOrder()
+            .containsExactly(entry, replacementEntry)
+            .inOrder()
         fragmentManager.executePendingTransactions()
         val replacementFragment = fragmentManager.findFragmentById(R.id.container)
         assertWithMessage("Replacement Fragment should be added")
@@ -2197,18 +2171,14 @@
         // Now save the Fragment
         fragmentNavigator.popBackStack(replacementEntry, true)
         fragmentManager.executePendingTransactions()
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry)
+        assertThat(navigatorState.backStack.value).containsExactly(entry)
         assertWithMessage("Fragment should be the primary navigation Fragment after pop")
             .that(fragmentManager.primaryNavigationFragment)
             .isSameInstanceAs(fragment)
 
         // Create a new FragmentNavigator, replacing the previous one
         val savedState = fragmentNavigator.onSaveState() as Bundle
-        fragmentNavigator = FragmentNavigator(
-            emptyActivity,
-            fragmentManager, R.id.container
-        )
+        fragmentNavigator = FragmentNavigator(emptyActivity, fragmentManager, R.id.container)
         fragmentNavigator.onAttach(navigatorState)
         fragmentNavigator.onRestoreState(savedState)
 
@@ -2216,15 +2186,13 @@
         val restoredEntry = navigatorState.restoreBackStackEntry(replacementEntry)
         fragmentNavigator.navigate(
             listOf(restoredEntry),
-            NavOptions.Builder().setRestoreState(true).build(), null
+            NavOptions.Builder().setRestoreState(true).build(),
+            null
         )
-        assertThat(navigatorState.backStack.value)
-            .containsExactly(entry, restoredEntry).inOrder()
+        assertThat(navigatorState.backStack.value).containsExactly(entry, restoredEntry).inOrder()
         fragmentManager.executePendingTransactions()
         val restoredFragment = fragmentManager.findFragmentById(R.id.container)
-        assertWithMessage("Restored Fragment should be added")
-            .that(restoredFragment)
-            .isNotNull()
+        assertWithMessage("Restored Fragment should be added").that(restoredFragment).isNotNull()
         assertWithMessage("Restored Fragment should be the correct type")
             .that(restoredFragment)
             .isInstanceOf(SavedStateFragment::class.java)
@@ -2239,24 +2207,27 @@
 
     @Test
     fun testToString() {
-        val destination = fragmentNavigator.createDestination().apply {
-            id = INITIAL_FRAGMENT
-            setClassName(EmptyFragment::class.java.name)
-            label = TEST_LABEL
-        }
-        val expected = "Destination(0x${INITIAL_FRAGMENT.toString(16)}) label=test_label " +
-            "class=${EmptyFragment::class.java.name}"
+        val destination =
+            fragmentNavigator.createDestination().apply {
+                id = INITIAL_FRAGMENT
+                setClassName(EmptyFragment::class.java.name)
+                label = TEST_LABEL
+            }
+        val expected =
+            "Destination(0x${INITIAL_FRAGMENT.toString(16)}) label=test_label " +
+                "class=${EmptyFragment::class.java.name}"
         assertThat(destination.toString()).isEqualTo(expected)
     }
 
     @Test
     fun testToStringNoClassName() {
-        val destination = fragmentNavigator.createDestination().apply {
-            id = INITIAL_FRAGMENT
-            label = TEST_LABEL
-        }
-        val expected = "Destination(0x${INITIAL_FRAGMENT.toString(16)}) label=test_label " +
-            "class=null"
+        val destination =
+            fragmentNavigator.createDestination().apply {
+                id = INITIAL_FRAGMENT
+                label = TEST_LABEL
+            }
+        val expected =
+            "Destination(0x${INITIAL_FRAGMENT.toString(16)}) label=test_label " + "class=null"
         assertThat(destination.toString()).isEqualTo(expected)
     }
 
@@ -2264,24 +2235,27 @@
         destId: Int = INITIAL_FRAGMENT,
         clazz: KClass<out Fragment> = EmptyFragment::class
     ): NavBackStackEntry {
-        val destination = fragmentNavigator.createDestination().apply {
-            id = destId
-            setClassName(clazz.java.name)
-        }
+        val destination =
+            fragmentNavigator.createDestination().apply {
+                id = destId
+                setClassName(clazz.java.name)
+            }
         return navigatorState.createBackStackEntry(destination, null)
     }
 
     private fun List<Pair<String, Boolean>>.onBackStackChangedStarted(
         block: (List<Pair<String, Boolean>>) -> Unit
     ) {
-        fragmentManager.addOnBackStackChangedListener(object : OnBackStackChangedListener {
-            override fun onBackStackChanged() { }
+        fragmentManager.addOnBackStackChangedListener(
+            object : OnBackStackChangedListener {
+                override fun onBackStackChanged() {}
 
-            override fun onBackStackChangeStarted(fragment: Fragment, pop: Boolean) {
-                block(this@onBackStackChangedStarted)
-                fragmentManager.removeOnBackStackChangedListener(this)
+                override fun onBackStackChangeStarted(fragment: Fragment, pop: Boolean) {
+                    block(this@onBackStackChangedStarted)
+                    fragmentManager.removeOnBackStackChangedListener(this)
+                }
             }
-        })
+        )
     }
 
     private fun List<Pair<String, Boolean>>.entries() = map { it.first }
@@ -2320,27 +2294,26 @@
     StrictFragment(contentLayoutId) {
     lateinit var endLatch: CountDownLatch
 
-    override fun onCreateAnimator(
-        transit: Int,
-        enter: Boolean,
-        nextAnim: Int
-    ): Animator? {
+    override fun onCreateAnimator(transit: Int, enter: Boolean, nextAnim: Int): Animator? {
         if (nextAnim == 0) {
             return null
         }
 
-        val animator: Animator = try {
-            AnimatorInflater.loadAnimator(context, nextAnim)
-        } catch (_: Resources.NotFoundException) {
-            null
-        } ?: ValueAnimator.ofFloat(0f, 1f).setDuration(1)
+        val animator: Animator =
+            try {
+                AnimatorInflater.loadAnimator(context, nextAnim)
+            } catch (_: Resources.NotFoundException) {
+                null
+            } ?: ValueAnimator.ofFloat(0f, 1f).setDuration(1)
 
         return animator.apply {
-            addListener(object : AnimatorListenerAdapter() {
-                override fun onAnimationEnd(animation: Animator) {
-                    endLatch.countDown()
+            addListener(
+                object : AnimatorListenerAdapter() {
+                    override fun onAnimationEnd(animation: Animator) {
+                        endLatch.countDown()
+                    }
                 }
-            })
+            )
             endLatch = CountDownLatch(1)
         }
     }
@@ -2350,21 +2323,17 @@
     StrictFragment(contentLayoutId) {
     override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
         postponeEnterTransition()
-        Handler(Looper.myLooper()!!).postDelayed(1000) {
-            startPostponedEnterTransition()
-        }
+        Handler(Looper.myLooper()!!).postDelayed(1000) { startPostponedEnterTransition() }
     }
 }
 
 class NonEmptyConstructorFragment(val test: String) : Fragment()
 
 class NonEmptyFragmentFactory : FragmentFactory() {
-    override fun instantiate(
-        classLoader: ClassLoader,
-        className: String
-    ) = if (className == NonEmptyConstructorFragment::class.java.name) {
-        NonEmptyConstructorFragment("test")
-    } else {
-        super.instantiate(classLoader, className)
-    }
+    override fun instantiate(classLoader: ClassLoader, className: String) =
+        if (className == NonEmptyConstructorFragment::class.java.name) {
+            NonEmptyConstructorFragment("test")
+        } else {
+            super.instantiate(classLoader, className)
+        }
 }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentTest.kt
index fc21ee1..1ce90fe 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/FragmentTest.kt
@@ -34,15 +34,17 @@
     @Suppress("DEPRECATION")
     @get:Rule
     val activityRule = androidx.test.rule.ActivityTestRule<TestActivity>(TestActivity::class.java)
-    private val fragmentManager get() = activityRule.activity.supportFragmentManager
-    private val contentFragment get() = fragmentManager.findFragmentById(android.R.id.content)!!
+    private val fragmentManager
+        get() = activityRule.activity.supportFragmentManager
+
+    private val contentFragment
+        get() = fragmentManager.findFragmentById(android.R.id.content)!!
 
     @UiThreadTest
-    @Test fun findNavController() {
+    @Test
+    fun findNavController() {
         val navHostFragment = NavHostFragment.create(R.navigation.test_graph)
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
 
         val foundNavController = contentFragment.findNavController()
         assertWithMessage("Fragment should have NavController set")
@@ -51,10 +53,9 @@
     }
 
     @UiThreadTest
-    @Test fun findNavControllerNull() {
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, TestFragment())
-            .commitNow()
+    @Test
+    fun findNavControllerNull() {
+        fragmentManager.beginTransaction().add(android.R.id.content, TestFragment()).commitNow()
         try {
             contentFragment.findNavController()
             fail(
@@ -68,34 +69,31 @@
 
     @UiThreadTest
     @Suppress("DEPRECATION")
-    @Test fun navArgsLazy() {
+    @Test
+    fun navArgsLazy() {
         val navHostFragment = NavHostFragment.create(R.navigation.test_graph)
-        fragmentManager.beginTransaction()
-            .add(android.R.id.content, navHostFragment)
-            .commitNow()
+        fragmentManager.beginTransaction().add(android.R.id.content, navHostFragment).commitNow()
 
         // TODO Create a real API to get the current Fragment b/119800853
-        val testFragment = navHostFragment.childFragmentManager.primaryNavigationFragment
-            as TestFragment
-        assertThat(testFragment.args)
-            .isNotNull()
-        assertThat(testFragment.args.bundle["test"])
-            .isEqualTo("test")
+        val testFragment =
+            navHostFragment.childFragmentManager.primaryNavigationFragment as TestFragment
+        assertThat(testFragment.args).isNotNull()
+        assertThat(testFragment.args.bundle["test"]).isEqualTo("test")
     }
 }
 
 class TestActivity : FragmentActivity()
+
 /**
- * It is a lot harder to test generated NavArgs classes, so
- * we'll just fake one that has the same fromBundle method
- * that NavArgsLazy expects
+ * It is a lot harder to test generated NavArgs classes, so we'll just fake one that has the same
+ * fromBundle method that NavArgsLazy expects
  */
 data class FakeTestArgs(val bundle: Bundle) : NavArgs {
     companion object {
-        @JvmStatic
-        fun fromBundle(bundle: Bundle) = FakeTestArgs(bundle)
+        @JvmStatic fun fromBundle(bundle: Bundle) = FakeTestArgs(bundle)
     }
 }
+
 class TestFragment : Fragment() {
     val args: FakeTestArgs by navArgs()
 }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/ImmediateNavigationTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/ImmediateNavigationTest.kt
index fdad624..6c37554 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/ImmediateNavigationTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/ImmediateNavigationTest.kt
@@ -39,9 +39,7 @@
 
     @Suppress("DEPRECATION")
     @get:Rule
-    var activityRule = ActivityScenarioRule(
-        ImmediateNavigationActivity::class.java
-    )
+    var activityRule = ActivityScenarioRule(ImmediateNavigationActivity::class.java)
 
     @Test
     fun testNavigateInOnResume() {
@@ -63,9 +61,7 @@
                 }
             }
         }
-        activityRule.withActivity {
-            navController.navigate(R.id.immediate_test)
-        }
+        activityRule.withActivity { navController.navigate(R.id.immediate_test) }
         countDownLatch.await(1, TimeUnit.SECONDS)
     }
 }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/MultiNavHostFragmentTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/MultiNavHostFragmentTest.kt
index c715a81..e2186fd 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/MultiNavHostFragmentTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/MultiNavHostFragmentTest.kt
@@ -38,9 +38,7 @@
     @Test
     fun testFragmentToNavHost() {
         with(ActivityScenario.launch(NavigationActivityMultiNavHost::class.java)) {
-            val navController = withActivity {
-                findNavController(R.id.nav_host_fragment)
-            }
+            val navController = withActivity { findNavController(R.id.nav_host_fragment) }
 
             withActivity {
                 navController.setGraph(R.navigation.nav_nav_host)
@@ -48,8 +46,8 @@
             }
 
             val rootNavController = withActivity {
-                val navHostFragment = supportFragmentManager
-                    .findFragmentById(R.id.nav_host_fragment)!!
+                val navHostFragment =
+                    supportFragmentManager.findFragmentById(R.id.nav_host_fragment)!!
                 navHostFragment.requireView().findNavController()
             }
             assertWithMessage("Child should have changed the NavController")
@@ -61,23 +59,20 @@
     @Test
     fun testNavHostToFragment() {
         with(ActivityScenario.launch(NavigationActivityMultiNavHost::class.java)) {
-            val navController = withActivity {
-                findNavController(R.id.nav_host_fragment)
-            }
+            val navController = withActivity { findNavController(R.id.nav_host_fragment) }
 
             withActivity {
                 navController.setGraph(R.navigation.nav_nav_host)
                 navController.navigate(R.id.nav_host_1)
             }
             val childFragment = withActivity {
-                supportFragmentManager.findFragmentById(R.id.nav_host_fragment)
-                    ?.childFragmentManager?.findFragmentById(R.id.nav_host_fragment) as
-                    BasicNavHostFragment
+                supportFragmentManager
+                    .findFragmentById(R.id.nav_host_fragment)
+                    ?.childFragmentManager
+                    ?.findFragmentById(R.id.nav_host_fragment) as BasicNavHostFragment
             }
 
-            withActivity {
-                navController.popBackStack()
-            }
+            withActivity { navController.popBackStack() }
             val returnNavController = withActivity {
                 val navHostFragment =
                     supportFragmentManager.findFragmentById(R.id.nav_host_fragment)!!
@@ -96,9 +91,7 @@
     @Test
     fun testNavHostToNavHost() {
         with(ActivityScenario.launch(NavigationActivityMultiNavHost::class.java)) {
-            val navController = withActivity {
-                findNavController(R.id.nav_host_fragment)
-            }
+            val navController = withActivity { findNavController(R.id.nav_host_fragment) }
 
             withActivity {
                 navController.setGraph(R.navigation.nav_nav_host)
@@ -114,9 +107,7 @@
                 .that(firstChildNavController)
                 .isNotEqualTo(navController)
 
-            withActivity {
-                navController.navigate(R.id.nav_host_2)
-            }
+            withActivity { navController.navigate(R.id.nav_host_2) }
             val secondChildNavController = withActivity {
                 val navHostFragment =
                     supportFragmentManager.findFragmentById(R.id.nav_host_fragment)!!
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavControllerWithFragmentTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavControllerWithFragmentTest.kt
index 227957f..3bd7088 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavControllerWithFragmentTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavControllerWithFragmentTest.kt
@@ -51,8 +51,7 @@
     fun fragmentNavigateWithSingleTop() = withNavigationActivity {
         navController.navigate(R.id.empty_fragment)
 
-        val fm =
-            supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
+        val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
         val fragment = fm?.findFragmentById(R.id.nav_host)
 
@@ -78,9 +77,8 @@
         assertWithMessage("New Entry should be RESUMED")
             .that(navController.currentBackStackEntry!!.lifecycle.currentState)
             .isEqualTo(Lifecycle.State.RESUMED)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry!!
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry!!)
     }
 
     @Test
@@ -101,21 +99,21 @@
 
         assertThat(navigator.backStack.value.size).isEqualTo(2)
         val originalBackStackEntry = navController.currentBackStackEntry!!
-        val originalEntryViewModel = ViewModelProvider(originalBackStackEntry)[
-            TestClearViewModel::class.java
-        ]
+        val originalEntryViewModel =
+            ViewModelProvider(originalBackStackEntry)[TestClearViewModel::class.java]
         val originalFragment = fm?.findFragmentById(R.id.nav_host) as Fragment
         val destroyCountDownLatch = CountDownLatch(1)
-        originalFragment.lifecycle.addObserver(object : LifecycleEventObserver {
-            override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                if (event == Lifecycle.Event.ON_DESTROY) {
-                    destroyCountDownLatch.countDown()
+        originalFragment.lifecycle.addObserver(
+            object : LifecycleEventObserver {
+                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                    if (event == Lifecycle.Event.ON_DESTROY) {
+                        destroyCountDownLatch.countDown()
+                    }
                 }
             }
-        })
-        val originalFragmentViewModel = ViewModelProvider(originalFragment)[
-            TestClearViewModel::class.java
-        ]
+        )
+        val originalFragmentViewModel =
+            ViewModelProvider(originalFragment)[TestClearViewModel::class.java]
 
         navController.navigate(
             R.id.empty_fragment_2,
@@ -147,10 +145,11 @@
 
     @Test
     fun fragmentNavigateWithKClass() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<EmptyFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<EmptyFragment, TestClass>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
@@ -159,17 +158,17 @@
 
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ROUTE)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun fragmentNavigateWithKClassArg() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<EmptyFragment, TestClassArg>()
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<EmptyFragment, TestClassArg>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
@@ -178,104 +177,95 @@
 
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ARG_ROUTE)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
         val arg = navController.currentBackStackEntry?.arguments?.getInt("arg")
         assertThat(arg).isEqualTo(15)
     }
 
     @Test
     fun fragmentStartDestinationWithKClass() = withNavigationActivity {
-        navController.graph = navController.createGraph(TestClass::class) {
-            fragment<EmptyFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(TestClass::class) { fragment<EmptyFragment, TestClass>() }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ROUTE)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun fragmentStartDestinationAndRouteWithKClass() = withNavigationActivity {
-        navController.graph = navController.createGraph(
-            route = TestGraph::class,
-            startDestination = TestClass::class
-        ) {
-            fragment<EmptyFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(
+                route = TestGraph::class,
+                startDestination = TestClass::class
+            ) {
+                fragment<EmptyFragment, TestClass>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.graph.route).isEqualTo(TEST_GRAPH_ROUTE)
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ROUTE)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun fragmentStartDestinationWithObject() = withNavigationActivity {
-        navController.graph = navController.createGraph(TestClass()) {
-            fragment<EmptyFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(TestClass()) { fragment<EmptyFragment, TestClass>() }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ROUTE)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun fragmentStartDestinationWithObjectAndKClassRoute() = withNavigationActivity {
-        navController.graph = navController.createGraph(
-            route = TestGraph::class,
-            startDestination = TestClass()
-        ) {
-            fragment<EmptyFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(route = TestGraph::class, startDestination = TestClass()) {
+                fragment<EmptyFragment, TestClass>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.graph.route).isEqualTo(TEST_GRAPH_ROUTE)
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ROUTE)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun fragmentStartDestinationWithObjectArg() = withNavigationActivity {
-        navController.graph = navController.createGraph(TestClassArg(15)) {
-            fragment<EmptyFragment, TestClassArg>()
-        }
+        navController.graph =
+            navController.createGraph(TestClassArg(15)) { fragment<EmptyFragment, TestClassArg>() }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ARG_ROUTE)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
         val arg = navController.currentBackStackEntry?.arguments?.getInt("arg")
         assertThat(arg).isEqualTo(15)
     }
 
     @Test
     fun dialogNavigateWithObject() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            dialog<BuilderTestDialogFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                dialog<BuilderTestDialogFragment, TestClass>()
+            }
         navController.navigate(TestClass())
 
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
@@ -284,17 +274,18 @@
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ROUTE)
         val startEntry = navController.getBackStackEntry("first")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            startEntry, navController.currentBackStackEntry
-        ).inOrder()
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(startEntry, navController.currentBackStackEntry)
+            .inOrder()
     }
 
     @Test
     fun dialogNavigateWithObjectArg() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            dialog<BuilderTestDialogFragment, TestClassArg>()
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                dialog<BuilderTestDialogFragment, TestClassArg>()
+            }
         navController.navigate(TestClassArg(15))
 
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
@@ -303,18 +294,18 @@
         assertThat(navController.currentBackStackEntry?.destination?.route)
             .isEqualTo(TEST_CLASS_ARG_ROUTE)
         val startEntry = navController.getBackStackEntry("first")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            startEntry, navController.currentBackStackEntry
-        ).inOrder()
-        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-            .isEqualTo(15)
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(startEntry, navController.currentBackStackEntry)
+            .inOrder()
+        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(15)
     }
 
     @Test
     fun dialogStartDestinationWithKClass() = withNavigationActivity {
-        navController.graph = navController.createGraph(TestClass::class) {
-            dialog<BuilderTestDialogFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(TestClass::class) {
+                dialog<BuilderTestDialogFragment, TestClass>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
@@ -326,12 +317,13 @@
 
     @Test
     fun dialogStartDestinationAndRouteWithKClass() = withNavigationActivity {
-        navController.graph = navController.createGraph(
-            route = TestGraph::class,
-            startDestination = TestClass::class
-        ) {
-            dialog<BuilderTestDialogFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(
+                route = TestGraph::class,
+                startDestination = TestClass::class
+            ) {
+                dialog<BuilderTestDialogFragment, TestClass>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
@@ -344,9 +336,10 @@
 
     @Test
     fun dialogStartDestinationWithObject() = withNavigationActivity {
-        navController.graph = navController.createGraph(TestClass()) {
-            dialog<BuilderTestDialogFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(TestClass()) {
+                dialog<BuilderTestDialogFragment, TestClass>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
@@ -358,12 +351,10 @@
 
     @Test
     fun dialogStartDestinationWithObjectAndKClassRoute() = withNavigationActivity {
-        navController.graph = navController.createGraph(
-            route = TestGraph::class,
-            startDestination = TestClass()
-        ) {
-            dialog<BuilderTestDialogFragment, TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(route = TestGraph::class, startDestination = TestClass()) {
+                dialog<BuilderTestDialogFragment, TestClass>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
@@ -376,9 +367,10 @@
 
     @Test
     fun dialogStartDestinationWithObjectArg() = withNavigationActivity {
-        navController.graph = navController.createGraph(TestClassArg(15)) {
-            dialog<BuilderTestDialogFragment, TestClassArg>()
-        }
+        navController.graph =
+            navController.createGraph(TestClassArg(15)) {
+                dialog<BuilderTestDialogFragment, TestClassArg>()
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
@@ -401,8 +393,8 @@
 
         assertThat(navController.currentBackStackEntry?.destination?.id)
             .isEqualTo(R.id.testDialog_fragment)
-        val originalFragment = fm?.findFragmentByTag(navController.currentBackStackEntry?.id)
-            as? TestDialogFragment
+        val originalFragment =
+            fm?.findFragmentByTag(navController.currentBackStackEntry?.id) as? TestDialogFragment
         assertThat(originalFragment!!.dialogs.first().isShowing).isTrue()
 
         // backStacks should be in sync
@@ -421,8 +413,8 @@
 
         assertThat(navController.currentBackStackEntry?.destination?.id)
             .isEqualTo(R.id.testDialog_fragment)
-        val replacementFragment = fm.findFragmentByTag(navController.currentBackStackEntry?.id)
-            as? TestDialogFragment
+        val replacementFragment =
+            fm.findFragmentByTag(navController.currentBackStackEntry?.id) as? TestDialogFragment
         // the first dialog should be dismissed
         assertThat(originalFragment.dialogs.first().isShowing).isFalse()
         assertThat(replacementFragment!!.dialogs.first().isShowing).isTrue()
@@ -458,8 +450,8 @@
 
         assertThat(navController.currentBackStackEntry?.destination?.id)
             .isEqualTo(R.id.testDialog_fragment)
-        val replacementFragment = fm?.findFragmentByTag(navController.currentBackStackEntry?.id)
-            as? TestDialogFragment
+        val replacementFragment =
+            fm?.findFragmentByTag(navController.currentBackStackEntry?.id) as? TestDialogFragment
 
         assertThat(replacementFragment!!.dialogs.first().isShowing).isTrue()
 
@@ -499,8 +491,8 @@
 
         assertThat(navController.currentBackStackEntry?.destination?.id)
             .isEqualTo(R.id.testDialog_fragment)
-        val replacementFragment = fm?.findFragmentByTag(navController.currentBackStackEntry?.id)
-            as? TestDialogFragment
+        val replacementFragment =
+            fm?.findFragmentByTag(navController.currentBackStackEntry?.id) as? TestDialogFragment
 
         assertThat(replacementFragment!!.dialogs.first().isShowing).isTrue()
 
@@ -538,8 +530,8 @@
 
         assertThat(navController.currentBackStackEntry?.destination?.id)
             .isEqualTo(R.id.testDialog_fragment)
-        val replacementFragment = fm?.findFragmentByTag(navController.currentBackStackEntry?.id)
-            as? TestDialogFragment
+        val replacementFragment =
+            fm?.findFragmentByTag(navController.currentBackStackEntry?.id) as? TestDialogFragment
 
         assertThat(replacementFragment!!.dialogs.first().isShowing).isTrue()
 
@@ -550,78 +542,75 @@
 
     @Test
     fun testPopEntryInFragmentResumed() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<PopInOnResumeFragment>("second")
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<PopInOnResumeFragment>("second")
+            }
         navController.navigate("second")
 
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("first")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun testPopEntryInFragmentStarted() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<PopInOnStartedFragment>("second")
-            fragment<EmptyFragment>("third")
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<PopInOnStartedFragment>("second")
+                fragment<EmptyFragment>("third")
+            }
         navController.navigate("second")
 
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("third")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun testPopToInitialInFragmentStarted() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<PopToInitialInOnStartedFragment>("second")
-            fragment<EmptyFragment>("third")
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<PopToInitialInOnStartedFragment>("second")
+                fragment<EmptyFragment>("third")
+            }
         navController.navigate("second")
 
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("third")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @Test
     fun testPopInitialAndNavigateInitial() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<EmptyFragment>("second")
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<EmptyFragment>("second")
+            }
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
         // pop first as initial entry, then navigate to second which is the new initial entry
-        navController.navigate(
-            "second",
-            navOptions { popUpTo("first") { inclusive = true } }
-        )
+        navController.navigate("second", navOptions { popUpTo("first") { inclusive = true } })
 
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("second")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
         val navigator = navController.navigatorProvider.getNavigator(FragmentNavigator::class.java)
         // the popUpTo and following navigation to second are both isolated
         // fragment operations (initial entry) so neither of them would trigger a callback from FM
@@ -631,18 +620,17 @@
     @LargeTest
     @Test
     fun testSystemBackPressAfterPopUpToStartDestinationOffBackStack() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<EmptyFragment>("second")
-            fragment<EmptyFragment>("third")
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<EmptyFragment>("second")
+                fragment<EmptyFragment>("third")
+            }
         navController.navigate("second")
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
 
-        navController.navigate("third", navOptions {
-            popUpTo("first") { inclusive = true }
-        })
+        navController.navigate("third", navOptions { popUpTo("first") { inclusive = true } })
         fm?.executePendingTransactions()
 
         navController.navigate("first")
@@ -651,20 +639,20 @@
         onBackPressedDispatcher.onBackPressed()
 
         assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("third")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry!!
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry!!)
     }
 
     @LargeTest
     @Test
     fun testSystemBackPressAfterPopUpToOffBackStack() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            fragment<EmptyFragment>("second")
-            fragment<EmptyFragment>("third")
-            fragment<EmptyFragment>("fourth")
-        }
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                fragment<EmptyFragment>("second")
+                fragment<EmptyFragment>("third")
+                fragment<EmptyFragment>("fourth")
+            }
         navController.navigate("second")
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
         fm?.executePendingTransactions()
@@ -672,9 +660,7 @@
         navController.navigate("third")
         fm?.executePendingTransactions()
 
-        navController.navigate("fourth", navOptions {
-            popUpTo("second") { inclusive = true }
-        })
+        navController.navigate("fourth", navOptions { popUpTo("second") { inclusive = true } })
         fm?.executePendingTransactions()
 
         navController.navigate("second")
@@ -683,21 +669,21 @@
         onBackPressedDispatcher.onBackPressed()
 
         assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("fourth")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry!!
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry!!)
     }
 
     @LargeTest
     @Test
     fun testSystemBackPressWithNavigatePopUpTo() = withNavigationActivity {
-        navController.graph = navController.createGraph("first") {
-            fragment<EmptyFragment>("first")
-            navigation("second", "graph_2") {
-                fragment<PopInOnStartedFragment>("second")
-                fragment<EmptyFragment>("third")
+        navController.graph =
+            navController.createGraph("first") {
+                fragment<EmptyFragment>("first")
+                navigation("second", "graph_2") {
+                    fragment<PopInOnStartedFragment>("second")
+                    fragment<EmptyFragment>("third")
+                }
             }
-        }
         navController.navigate("second")
         navController.navigate("third")
         val fm = supportFragmentManager.findFragmentById(R.id.nav_host)?.childFragmentManager
@@ -707,18 +693,13 @@
         fm?.executePendingTransactions()
 
         assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("third")
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry!!
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry!!)
     }
 
-    private fun withNavigationActivity(
-        block: NavigationActivity.() -> Unit
-    ) {
+    private fun withNavigationActivity(block: NavigationActivity.() -> Unit) {
         with(ActivityScenario.launch(NavigationActivity::class.java)) {
-            withActivity {
-                this.block()
-            }
+            withActivity { this.block() }
         }
     }
 }
@@ -726,20 +707,14 @@
 class PopInOnResumeFragment : Fragment(R.layout.strict_view_fragment) {
     override fun onResume() {
         super.onResume()
-        findNavController().navigate("first") {
-            popUpTo("first")
-        }
+        findNavController().navigate("first") { popUpTo("first") }
     }
 }
 
 class PopInOnStartedFragment : Fragment(R.layout.strict_view_fragment) {
     override fun onStart() {
         super.onStart()
-        findNavController().navigate("third") {
-            popUpTo("second") {
-                inclusive = true
-            }
-        }
+        findNavController().navigate("third") { popUpTo("second") { inclusive = true } }
     }
 }
 
@@ -750,11 +725,7 @@
 class PopToInitialInOnStartedFragment : Fragment(R.layout.strict_view_fragment) {
     override fun onStart() {
         super.onStart()
-        findNavController().navigate("third") {
-            popUpTo("first") {
-                inclusive = true
-            }
-        }
+        findNavController().navigate("third") { popUpTo("first") { inclusive = true } }
     }
 }
 
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavGraphViewModelLazyTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavGraphViewModelLazyTest.kt
index dbaab04..e3313ff 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavGraphViewModelLazyTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavGraphViewModelLazyTest.kt
@@ -56,9 +56,7 @@
 @RunWith(AndroidJUnit4::class)
 class NavGraphViewModelLazyTest {
     private val navController =
-        NavHostController(
-            ApplicationProvider.getApplicationContext() as Context
-        ).apply {
+        NavHostController(ApplicationProvider.getApplicationContext() as Context).apply {
             navigatorProvider += TestNavigator()
         }
 
@@ -70,15 +68,14 @@
         scenario.onFragment { fragment ->
             Navigation.setViewNavController(fragment.requireView(), navController)
         }
-        val navGraph = navController.navigatorProvider.navigation(
-            id = R.id.vm_graph,
-            startDestination = R.id.start_destination
-        ) {
-            test(R.id.start_destination)
-        }
-        scenario.withFragment {
-            navController.setGraph(navGraph, null)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                id = R.id.vm_graph,
+                startDestination = R.id.start_destination
+            ) {
+                test(R.id.start_destination)
+            }
+        scenario.withFragment { navController.setGraph(navGraph, null) }
 
         scenario.onFragment { fragment ->
             assertThat(fragment.viewModel).isNotNull()
@@ -93,15 +90,14 @@
         scenario.onFragment { fragment ->
             Navigation.setViewNavController(fragment.requireView(), navController)
         }
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "vm_graph",
-            startDestination = "start_destination"
-        ) {
-            test("start_destination")
-        }
-        scenario.withFragment {
-            navController.setGraph(navGraph, null)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "vm_graph",
+                startDestination = "start_destination"
+            ) {
+                test("start_destination")
+            }
+        scenario.withFragment { navController.setGraph(navGraph, null) }
 
         scenario.onFragment { fragment ->
             assertThat(fragment.viewModel).isNotNull()
@@ -115,8 +111,8 @@
         with(ActivityScenario.launch(NavGraphActivity::class.java)) {
             val navController = withActivity { findNavController(R.id.nav_host_fragment) }
             val firstFragment: TestVMFragment = withActivity {
-                val navHostFragment = supportFragmentManager
-                    .findFragmentById(R.id.nav_host_fragment)!!
+                val navHostFragment =
+                    supportFragmentManager.findFragmentById(R.id.nav_host_fragment)!!
                 navHostFragment.childFragmentManager.primaryNavigationFragment as TestVMFragment
             }
             val viewModel = withActivity { firstFragment.viewModel }
@@ -134,20 +130,15 @@
 
             // Navigate to the second destination and ensure it
             // gets the same ViewModels and data
-            withActivity {
-                navController.navigate(R.id.second_destination)
-            }
+            withActivity { navController.navigate(R.id.second_destination) }
             val secondFragment: TestVMFragment = withActivity {
-                val navHostFragment = supportFragmentManager
-                    .findFragmentById(R.id.nav_host_fragment)!!
+                val navHostFragment =
+                    supportFragmentManager.findFragmentById(R.id.nav_host_fragment)!!
                 navHostFragment.childFragmentManager.primaryNavigationFragment as TestVMFragment
             }
-            assertThat(secondFragment.viewModel)
-                .isSameInstanceAs(viewModel)
-            assertThat(secondFragment.savedStateViewModel)
-                .isSameInstanceAs(savedStateViewModel)
-            val savedValue: String? = secondFragment.savedStateViewModel
-                .savedStateHandle["test"]
+            assertThat(secondFragment.viewModel).isSameInstanceAs(viewModel)
+            assertThat(secondFragment.savedStateViewModel).isSameInstanceAs(savedStateViewModel)
+            val savedValue: String? = secondFragment.savedStateViewModel.savedStateHandle["test"]
             assertThat(savedValue).isEqualTo("test")
 
             // Now recreate the Activity and ensure that when we
@@ -155,16 +146,14 @@
             // that we get the same ViewModel and data back
             recreate()
             val recreatedFragment: TestVMFragment = withActivity {
-                val navHostFragment = supportFragmentManager
-                    .findFragmentById(R.id.nav_host_fragment)!!
+                val navHostFragment =
+                    supportFragmentManager.findFragmentById(R.id.nav_host_fragment)!!
                 navHostFragment.childFragmentManager.primaryNavigationFragment as TestVMFragment
             }
-            assertThat(recreatedFragment.viewModel)
-                .isSameInstanceAs(viewModel)
-            assertThat(recreatedFragment.savedStateViewModel)
-                .isSameInstanceAs(savedStateViewModel)
-            val recreatedValue: String? = recreatedFragment.savedStateViewModel
-                .savedStateHandle["test"]
+            assertThat(recreatedFragment.viewModel).isSameInstanceAs(viewModel)
+            assertThat(recreatedFragment.savedStateViewModel).isSameInstanceAs(savedStateViewModel)
+            val recreatedValue: String? =
+                recreatedFragment.savedStateViewModel.savedStateHandle["test"]
             assertThat(recreatedValue).isEqualTo("test")
         }
     }
@@ -193,20 +182,15 @@
 
             // Navigate to the second destination and ensure it
             // gets the same ViewModels and data
-            withActivity {
-                navController.navigate("second_destination")
-            }
+            withActivity { navController.navigate("second_destination") }
             val secondFragment: TestRouteVMFragment = withActivity {
                 val navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host)!!
                 navHostFragment.childFragmentManager.primaryNavigationFragment
                     as TestRouteVMFragment
             }
-            assertThat(secondFragment.viewModel)
-                .isSameInstanceAs(viewModel)
-            assertThat(secondFragment.savedStateViewModel)
-                .isSameInstanceAs(savedStateViewModel)
-            val savedValue: String? = secondFragment.savedStateViewModel
-                .savedStateHandle["test"]
+            assertThat(secondFragment.viewModel).isSameInstanceAs(viewModel)
+            assertThat(secondFragment.savedStateViewModel).isSameInstanceAs(savedStateViewModel)
+            val savedValue: String? = secondFragment.savedStateViewModel.savedStateHandle["test"]
             assertThat(savedValue).isEqualTo("test")
 
             // Now recreate the Activity and ensure that when we
@@ -218,12 +202,10 @@
                 navHostFragment.childFragmentManager.primaryNavigationFragment
                     as TestRouteVMFragment
             }
-            assertThat(recreatedFragment.viewModel)
-                .isSameInstanceAs(viewModel)
-            assertThat(recreatedFragment.savedStateViewModel)
-                .isSameInstanceAs(savedStateViewModel)
-            val recreatedValue: String? = recreatedFragment.savedStateViewModel
-                .savedStateHandle["test"]
+            assertThat(recreatedFragment.viewModel).isSameInstanceAs(viewModel)
+            assertThat(recreatedFragment.savedStateViewModel).isSameInstanceAs(savedStateViewModel)
+            val recreatedValue: String? =
+                recreatedFragment.savedStateViewModel.savedStateHandle["test"]
             assertThat(recreatedValue).isEqualTo("test")
         }
     }
@@ -237,17 +219,15 @@
         val navHostFragment =
             supportFragmentManager.findFragmentById(R.id.nav_host) as NavHostFragment
         navHostFragment.navController.apply {
-            graph = createGraph(
-                "start_destination",
-                "vm_graph"
-            ) {
-                fragment<TestRouteVMFragment>("start_destination") {
-                    argument("test") { defaultValue = "first" }
+            graph =
+                createGraph("start_destination", "vm_graph") {
+                    fragment<TestRouteVMFragment>("start_destination") {
+                        argument("test") { defaultValue = "first" }
+                    }
+                    fragment<TestRouteVMFragment>("second_destination") {
+                        argument("test") { defaultValue = "second" }
+                    }
                 }
-                fragment<TestRouteVMFragment>("second_destination") {
-                    argument("test") { defaultValue = "second" }
-                }
-            }
         }
     }
 }
@@ -255,6 +235,7 @@
 class TestVMFragment : Fragment() {
     val viewModel: TestViewModel by navGraphViewModels(R.id.vm_graph)
     val savedStateViewModel: TestSavedStateViewModel by navGraphViewModels(R.id.vm_graph)
+
     override fun onCreateView(
         inflater: LayoutInflater,
         container: ViewGroup?,
@@ -267,9 +248,9 @@
 class TestRouteVMFragment : Fragment() {
     val viewModel: TestViewModel by navGraphViewModels("vm_graph")
     val savedStateViewModel: TestSavedStateViewModel by navGraphViewModels("vm_graph")
-    val savedStateViewModelCE: TestSavedStateViewModel by navGraphViewModels("vm_graph",
-        extrasProducer = { defaultViewModelCreationExtras }
-    )
+    val savedStateViewModelCE: TestSavedStateViewModel by
+        navGraphViewModels("vm_graph", extrasProducer = { defaultViewModelCreationExtras })
+
     override fun onCreateView(
         inflater: LayoutInflater,
         container: ViewGroup?,
@@ -289,6 +270,7 @@
 }
 
 class TestViewModel : ViewModel()
+
 class TestSavedStateViewModel(val savedStateHandle: SavedStateHandle) : ViewModel() {
     val defaultValue = savedStateHandle.get<String>("test")
 }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentDynamicTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentDynamicTest.kt
index 65b52f4..cb31674 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentDynamicTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentDynamicTest.kt
@@ -34,7 +34,8 @@
     fun testFindNavControllerDynamic() {
         with(ActivityScenario.launch(EmptyActivity::class.java)) {
             val navController = withActivity {
-                supportFragmentManager.beginTransaction()
+                supportFragmentManager
+                    .beginTransaction()
                     .add(R.id.container, NavHostFragment())
                     .commitNow()
                 findNavController(R.id.container)
@@ -58,10 +59,12 @@
             val initialNavHostFragment = NavHostFragment()
             val secondNavHostFragment = NavHostFragment()
             val navController = withActivity {
-                supportFragmentManager.beginTransaction()
+                supportFragmentManager
+                    .beginTransaction()
                     .add(R.id.container, initialNavHostFragment)
                     .commitNow()
-                supportFragmentManager.beginTransaction()
+                supportFragmentManager
+                    .beginTransaction()
                     .add(R.id.container, secondNavHostFragment)
                     .commitNow()
                 findNavController(R.id.container)
@@ -83,9 +86,7 @@
     fun testFindNavControllerDynamicWithoutId() {
         with(ActivityScenario.launch(EmptyActivity::class.java)) {
             withActivity {
-                supportFragmentManager.beginTransaction()
-                    .add(NavHostFragment(), "tag")
-                    .commitNow()
+                supportFragmentManager.beginTransaction().add(NavHostFragment(), "tag").commitNow()
             }
             val hostRootNavController = withActivity {
                 val navHostFragment = supportFragmentManager.findFragmentByTag("tag")!!
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentTest.kt
index 2ea9ec0..bd5c157 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/NavHostFragmentTest.kt
@@ -35,9 +35,7 @@
 
 @MediumTest
 @RunWith(Parameterized::class)
-class NavHostFragmentTest(
-    private val activityClass: Class<NavigationBaseActivity>
-) {
+class NavHostFragmentTest(private val activityClass: Class<NavigationBaseActivity>) {
     companion object {
         @JvmStatic
         @Parameterized.Parameters
@@ -52,9 +50,7 @@
     @Test
     fun testFindNavControllerXml() {
         with(ActivityScenario.launch(activityClass)) {
-            val navController = withActivity {
-                findNavController(R.id.nav_host)
-            }
+            val navController = withActivity { findNavController(R.id.nav_host) }
             assertWithMessage("NavController on the activity's view should be non-null")
                 .that(navController)
                 .isNotNull()
@@ -71,9 +67,7 @@
     @Test
     fun testFindNavControllerRecreate() {
         with(ActivityScenario.launch(activityClass)) {
-            val navController = withActivity {
-                findNavController(R.id.nav_host)
-            }
+            val navController = withActivity { findNavController(R.id.nav_host) }
             assertWithMessage("NavController on the activity's view should be non-null")
                 .that(navController)
                 .isNotNull()
@@ -84,9 +78,7 @@
 
             recreate()
 
-            val restoredNavController = withActivity {
-                findNavController(R.id.nav_host)
-            }
+            val restoredNavController = withActivity { findNavController(R.id.nav_host) }
 
             assertWithMessage("NavController on the activity's view should be non-null")
                 .that(restoredNavController)
@@ -102,38 +94,32 @@
     fun testDismissDialogAfterRecreate() {
         with(ActivityScenario.launch(activityClass)) {
             val navController = withActivity {
-                findNavController(R.id.nav_host).also {
-                    it.navigate(R.id.dialog_fragment)
-                }
+                findNavController(R.id.nav_host).also { it.navigate(R.id.dialog_fragment) }
             }
 
-            assertThat(navController.currentDestination?.id)
-                .isEqualTo(R.id.dialog_fragment)
+            assertThat(navController.currentDestination?.id).isEqualTo(R.id.dialog_fragment)
 
-            val dialogFragment = withActivity {
-                val navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host)!!
-                navHostFragment.childFragmentManager.fragments.first {
-                    it is DialogFragment
+            val dialogFragment =
+                withActivity {
+                    val navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host)!!
+                    navHostFragment.childFragmentManager.fragments.first { it is DialogFragment }
                 }
-            } as DialogFragment
+                    as DialogFragment
 
             assertThat(dialogFragment.dialog).isNotNull()
 
             recreate()
 
-            val restoredNavController = withActivity {
-                findNavController(R.id.nav_host)
-            }
+            val restoredNavController = withActivity { findNavController(R.id.nav_host) }
 
-            assertThat(restoredNavController.currentDestination?.id)
-                .isEqualTo(R.id.dialog_fragment)
+            assertThat(restoredNavController.currentDestination?.id).isEqualTo(R.id.dialog_fragment)
 
-            val restoredDialogFragment = withActivity {
-                val navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host)!!
-                navHostFragment.childFragmentManager.fragments.first {
-                    it is DialogFragment
+            val restoredDialogFragment =
+                withActivity {
+                    val navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host)!!
+                    navHostFragment.childFragmentManager.fragments.first { it is DialogFragment }
                 }
-            } as DialogFragment
+                    as DialogFragment
 
             assertThat(restoredDialogFragment.dialog).isNotNull()
 
@@ -148,8 +134,7 @@
                 .that(foundDialogFragment)
                 .isFalse()
 
-            assertThat(restoredNavController.currentDestination?.id)
-                .isEqualTo(R.id.start_fragment)
+            assertThat(restoredNavController.currentDestination?.id).isEqualTo(R.id.start_fragment)
         }
     }
 }
@@ -163,7 +148,6 @@
             .isNotNull()
         val backStackEntry = navController.getBackStackEntry(R.id.start_fragment)
         val savedStateHandle = backStackEntry.savedStateHandle
-        assertThat(savedStateHandle)
-            .isNotNull()
+        assertThat(savedStateHandle).isNotNull()
     }
 }
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/OnBackPressedTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/OnBackPressedTest.kt
index 3d8b7d7..3f0a75d 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/OnBackPressedTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/OnBackPressedTest.kt
@@ -40,9 +40,7 @@
 @Suppress("DEPRECATION")
 @MediumTest
 @RunWith(Parameterized::class)
-class OnBackPressedTest(
-    private val activityClass: Class<NavigationBaseActivity>
-) {
+class OnBackPressedTest(private val activityClass: Class<NavigationBaseActivity>) {
     companion object {
         @JvmStatic
         @Parameterized.Parameters
@@ -87,14 +85,18 @@
         with(ActivityScenario.launch(activityClass)) {
             withActivity {
                 navController.setGraph(R.navigation.nav_simple)
-                navController.navigate(R.id.empty_fragment, null, navOptions {
-                    anim {
-                        enter = R.animator.fade_enter
-                        exit = R.animator.fade_exit
-                        popEnter = R.animator.fade_enter
-                        popExit = R.animator.fade_exit
+                navController.navigate(
+                    R.id.empty_fragment,
+                    null,
+                    navOptions {
+                        anim {
+                            enter = R.animator.fade_enter
+                            exit = R.animator.fade_exit
+                            popEnter = R.animator.fade_enter
+                            popExit = R.animator.fade_exit
+                        }
                     }
-                })
+                )
                 onBackPressed()
                 assertWithMessage("onBackPressed() should trigger NavController.popBackStack()")
                     .that(navController.currentDestination?.id)
@@ -109,14 +111,15 @@
             withActivity {
                 navController.setGraph(R.navigation.nav_simple)
 
-                val navigator = navController.navigatorProvider.getNavigator(
-                    FragmentNavigator::class.java
-                )
+                val navigator =
+                    navController.navigatorProvider.getNavigator(FragmentNavigator::class.java)
                 val fragment = supportFragmentManager.findFragmentById(R.id.nav_host)
                 navController.navigate(R.id.empty_fragment)
                 fragment?.childFragmentManager?.executePendingTransactions()
 
-                navController.navigate(R.id.empty_fragment_2, null,
+                navController.navigate(
+                    R.id.empty_fragment_2,
+                    null,
                     navOptions { popUpTo(R.id.empty_fragment) { inclusive = true } }
                 )
                 fragment?.childFragmentManager?.executePendingTransactions()
@@ -140,7 +143,8 @@
             val countDownLatch = withActivity {
                 navController.setGraph(R.navigation.nav_simple)
                 navController.navigate(R.id.empty_fragment)
-                supportFragmentManager.beginTransaction()
+                supportFragmentManager
+                    .beginTransaction()
                     .setPrimaryNavigationFragment(null)
                     .commitNow()
 
@@ -148,9 +152,8 @@
                 finishCountDownLatch
             }
             assertWithMessage(
-                "onBackPressed() should finish the activity when not the " +
-                    "primary nav"
-            )
+                    "onBackPressed() should finish the activity when not the " + "primary nav"
+                )
                 .that(countDownLatch.await(1, TimeUnit.SECONDS))
                 .isTrue()
         }
@@ -160,25 +163,25 @@
     fun testOnBackPressedWithChildBackStack() {
         with(ActivityScenario.launch(activityClass)) {
             withActivity {
-                val navHostFragment = supportFragmentManager.primaryNavigationFragment
-                    as NavHostFragment
+                val navHostFragment =
+                    supportFragmentManager.primaryNavigationFragment as NavHostFragment
                 val navHostFragmentManager = navHostFragment.childFragmentManager
                 val navController = navHostFragment.navController
                 navController.setGraph(R.navigation.nav_simple)
                 navController.navigate(R.id.child_back_stack_fragment)
                 navHostFragmentManager.executePendingTransactions()
 
-                val currentFragment = navHostFragmentManager.primaryNavigationFragment
-                    as ChildBackStackFragment
+                val currentFragment =
+                    navHostFragmentManager.primaryNavigationFragment as ChildBackStackFragment
                 assertWithMessage("Current Fragment should have a child Fragment by default")
                     .that(currentFragment.childFragment)
                     .isNotNull()
 
                 onBackPressed()
                 assertWithMessage(
-                    "onBackPressed() should not trigger NavController when there " +
-                        "is a child back stack"
-                )
+                        "onBackPressed() should not trigger NavController when there " +
+                            "is a child back stack"
+                    )
                     .that(navController.currentDestination?.id)
                     .isEqualTo(R.id.child_back_stack_fragment)
                 assertWithMessage("Child Fragment should be popped")
@@ -194,9 +197,8 @@
             withActivity {
                 navController.setGraph(R.navigation.nav_simple)
 
-                val navigator = navController.navigatorProvider.getNavigator(
-                    FragmentNavigator::class.java
-                )
+                val navigator =
+                    navController.navigatorProvider.getNavigator(FragmentNavigator::class.java)
                 val fragment = supportFragmentManager.findFragmentById(R.id.nav_host)
 
                 navController.navigate(R.id.null_view_fragment, null, null)
@@ -220,11 +222,13 @@
 }
 
 class ChildBackStackFragment : EmptyFragment() {
-    val childFragment get() = childFragmentManager.findFragmentByTag("child")
+    val childFragment
+        get() = childFragmentManager.findFragmentByTag("child")
 
     override fun onCreate(savedInstanceState: Bundle?) {
         super.onCreate(savedInstanceState)
-        childFragmentManager.beginTransaction()
+        childFragmentManager
+            .beginTransaction()
             .add(Fragment(), "child")
             .addToBackStack(null)
             .commit()
@@ -233,6 +237,7 @@
 
 class NullViewFragment : EmptyFragment() {
     var viewAlreadyCreated = false
+
     override fun onCreateView(
         inflater: LayoutInflater,
         container: ViewGroup?,
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/StartDestinationArgsTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/StartDestinationArgsTest.kt
index 4ebd11b..ee502f1 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/StartDestinationArgsTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/StartDestinationArgsTest.kt
@@ -60,14 +60,10 @@
         setContentView(R.layout.start_destination_args_activity)
 
         if (savedInstanceState == null) {
-            val args = Bundle().apply {
-                putString(TEST_ARG, TEST_ARG_VALUE)
-            }
-            val navHostFragment = NavHostFragment.create(
-                R.navigation.nav_fragment_start_args,
-                args
-            )
-            supportFragmentManager.beginTransaction()
+            val args = Bundle().apply { putString(TEST_ARG, TEST_ARG_VALUE) }
+            val navHostFragment = NavHostFragment.create(R.navigation.nav_fragment_start_args, args)
+            supportFragmentManager
+                .beginTransaction()
                 .replace(R.id.nav_host, navHostFragment)
                 .setPrimaryNavigationFragment(navHostFragment)
                 .commit()
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/XmlNavControllerTest.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/XmlNavControllerTest.kt
index 375c7c0..d73d376 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/XmlNavControllerTest.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/XmlNavControllerTest.kt
@@ -25,16 +25,13 @@
 
 @LargeTest
 @RunWith(AndroidJUnit4::class)
-class XmlNavControllerTest : BaseNavControllerTest<XmlNavigationActivity>(
-    XmlNavigationActivity::class.java
-)
+class XmlNavControllerTest :
+    BaseNavControllerTest<XmlNavigationActivity>(XmlNavigationActivity::class.java)
 
 /**
  * Test Navigation Activity that adds the [NavHostFragment] in XML.
  *
- *
- * You must call [NavController.setGraph]
- * to set the appropriate graph for your test.
+ * You must call [NavController.setGraph] to set the appropriate graph for your test.
  */
 class XmlNavigationActivity : BaseNavigationActivity() {
 
diff --git a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/test/NavigationActivity.kt b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/test/NavigationActivity.kt
index b660a329..23332b1 100644
--- a/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/test/NavigationActivity.kt
+++ b/navigation/navigation-fragment/src/androidTest/java/androidx/navigation/fragment/test/NavigationActivity.kt
@@ -22,14 +22,15 @@
 
 class NavigationActivity : NavigationBaseActivity(R.layout.navigation_activity)
 
-class NavigationActivityWithFragmentTag : NavigationBaseActivity(
-    R.layout.navigation_activity_fragment_tag
-)
+class NavigationActivityWithFragmentTag :
+    NavigationBaseActivity(R.layout.navigation_activity_fragment_tag)
 
-class NavigationActivityMultiNavHost : NavigationBaseActivity(R.layout.navigation_activity_nav_host)
+class NavigationActivityMultiNavHost :
+    NavigationBaseActivity(R.layout.navigation_activity_nav_host)
 
 open class NavigationBaseActivity(contentLayoutId: Int) : FragmentActivity(contentLayoutId) {
-    val navController get() = findNavController(R.id.nav_host)
+    val navController
+        get() = findNavController(R.id.nav_host)
 
     val finishCountDownLatch = CountDownLatch(1)
 
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/NavGraphViewModelLazy.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/NavGraphViewModelLazy.kt
index 79eb8ac..98501dc 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/NavGraphViewModelLazy.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/NavGraphViewModelLazy.kt
@@ -35,21 +35,21 @@
  * }
  * ```
  *
- * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter,
- * factory returned by it will be used to create [ViewModel]:
+ * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter, factory
+ * returned by it will be used to create [ViewModel]:
  * ```
  * class MyFragment : Fragment() {
  *     val viewmodel: MainViewModel by navGraphViewModels(R.id.main) { myFactory }
  * }
  * ```
  *
- * This property can be accessed only after this NavGraph is on the NavController back stack,
- * and an attempt access prior to that will result in an IllegalArgumentException.
+ * This property can be accessed only after this NavGraph is on the NavController back stack, and an
+ * attempt access prior to that will result in an IllegalArgumentException.
  *
  * @param navGraphId ID of a NavGraph that exists on the [NavController] back stack
  * @param factoryProducer lambda that will be called during initialization to return
- * [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
- * [NavBackStackEntry] referenced by the [navGraphId].
+ *   [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
+ *   [NavBackStackEntry] referenced by the [navGraphId].
  */
 @Deprecated(
     "Superseded by navGraphViewModels that takes a CreationExtras producer",
@@ -60,14 +60,11 @@
     @IdRes navGraphId: Int,
     noinline factoryProducer: (() -> ViewModelProvider.Factory)? = null
 ): Lazy<VM> {
-    val backStackEntry by lazy {
-        findNavController().getBackStackEntry(navGraphId)
-    }
-    val storeProducer: () -> ViewModelStore = {
-        backStackEntry.viewModelStore
-    }
+    val backStackEntry by lazy { findNavController().getBackStackEntry(navGraphId) }
+    val storeProducer: () -> ViewModelStore = { backStackEntry.viewModelStore }
     return createViewModelLazy(
-        VM::class, storeProducer,
+        VM::class,
+        storeProducer,
         { backStackEntry.defaultViewModelCreationExtras },
         factoryProducer ?: { backStackEntry.defaultViewModelProviderFactory }
     )
@@ -82,24 +79,24 @@
  * }
  * ```
  *
- * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter,
- * factory returned by it will be used to create [ViewModel]:
+ * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter, factory
+ * returned by it will be used to create [ViewModel]:
  * ```
  * class MyFragment : Fragment() {
  *     val viewmodel: MainViewModel by navGraphViewModels(R.id.main) { myFactory }
  * }
  * ```
  *
- * This property can be accessed only after this NavGraph is on the NavController back stack,
- * and an attempt access prior to that will result in an IllegalArgumentException.
+ * This property can be accessed only after this NavGraph is on the NavController back stack, and an
+ * attempt access prior to that will result in an IllegalArgumentException.
  *
  * @param navGraphId ID of a NavGraph that exists on the [NavController] back stack
  * @param extrasProducer lambda that will be called during initialization to return
- * [CreationExtras]. If none is provided, this will use the extras from the [NavBackStackEntry]
- * referenced by the [navGraphId].
+ *   [CreationExtras]. If none is provided, this will use the extras from the [NavBackStackEntry]
+ *   referenced by the [navGraphId].
  * @param factoryProducer lambda that will be called during initialization to return
- * [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
- * [NavBackStackEntry] referenced by the [navGraphId].
+ *   [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
+ *   [NavBackStackEntry] referenced by the [navGraphId].
  */
 @MainThread
 public inline fun <reified VM : ViewModel> Fragment.navGraphViewModels(
@@ -107,14 +104,11 @@
     noinline extrasProducer: (() -> CreationExtras)? = null,
     noinline factoryProducer: (() -> ViewModelProvider.Factory)? = null
 ): Lazy<VM> {
-    val backStackEntry by lazy {
-        findNavController().getBackStackEntry(navGraphId)
-    }
-    val storeProducer: () -> ViewModelStore = {
-        backStackEntry.viewModelStore
-    }
+    val backStackEntry by lazy { findNavController().getBackStackEntry(navGraphId) }
+    val storeProducer: () -> ViewModelStore = { backStackEntry.viewModelStore }
     return createViewModelLazy(
-        VM::class, storeProducer,
+        VM::class,
+        storeProducer,
         { extrasProducer?.invoke() ?: backStackEntry.defaultViewModelCreationExtras },
         factoryProducer ?: { backStackEntry.defaultViewModelProviderFactory }
     )
@@ -129,23 +123,23 @@
  * }
  * ```
  *
- * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter,
- * factory returned by it will be used to create [ViewModel]:
+ * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter, factory
+ * returned by it will be used to create [ViewModel]:
  * ```
  * class MyFragment : Fragment() {
  *     val viewModel: MainViewModel by navGraphViewModels("main") { myFactory }
  * }
  * ```
  *
- * This property can be accessed only after this NavGraph is on the NavController back stack,
- * and an attempt access prior to that will result in an IllegalArgumentException.
+ * This property can be accessed only after this NavGraph is on the NavController back stack, and an
+ * attempt access prior to that will result in an IllegalArgumentException.
  *
- * @param navGraphRoute [NavDestination.route] of a NavGraph that exists on the [NavController]
- * back stack. If a [NavDestination] with the given route does not exist on the back stack, an
- * [IllegalArgumentException] will be thrown.
+ * @param navGraphRoute [NavDestination.route] of a NavGraph that exists on the [NavController] back
+ *   stack. If a [NavDestination] with the given route does not exist on the back stack, an
+ *   [IllegalArgumentException] will be thrown.
  * @param factoryProducer lambda that will be called during initialization to return
- * [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
- * [NavBackStackEntry] referenced by the [navGraphRoute].
+ *   [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
+ *   [NavBackStackEntry] referenced by the [navGraphRoute].
  */
 @Deprecated(
     "Superseded by navGraphViewModels that takes a CreationExtras producer",
@@ -156,14 +150,11 @@
     navGraphRoute: String,
     noinline factoryProducer: (() -> ViewModelProvider.Factory)? = null
 ): Lazy<VM> {
-    val backStackEntry by lazy {
-        findNavController().getBackStackEntry(navGraphRoute)
-    }
-    val storeProducer: () -> ViewModelStore = {
-        backStackEntry.viewModelStore
-    }
+    val backStackEntry by lazy { findNavController().getBackStackEntry(navGraphRoute) }
+    val storeProducer: () -> ViewModelStore = { backStackEntry.viewModelStore }
     return createViewModelLazy(
-        VM::class, storeProducer,
+        VM::class,
+        storeProducer,
         { backStackEntry.defaultViewModelCreationExtras },
         factoryProducer ?: { backStackEntry.defaultViewModelProviderFactory }
     )
@@ -178,26 +169,26 @@
  * }
  * ```
  *
- * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter,
- * factory returned by it will be used to create [ViewModel]:
+ * Custom [ViewModelProvider.Factory] can be defined via [factoryProducer] parameter, factory
+ * returned by it will be used to create [ViewModel]:
  * ```
  * class MyFragment : Fragment() {
  *     val viewModel: MainViewModel by navGraphViewModels("main") { myFactory }
  * }
  * ```
  *
- * This property can be accessed only after this NavGraph is on the NavController back stack,
- * and an attempt access prior to that will result in an IllegalArgumentException.
+ * This property can be accessed only after this NavGraph is on the NavController back stack, and an
+ * attempt access prior to that will result in an IllegalArgumentException.
  *
- * @param navGraphRoute [NavDestination.route] of a NavGraph that exists on the [NavController]
- * back stack. If a [NavDestination] with the given route does not exist on the back stack, an
- * [IllegalArgumentException] will be thrown.
+ * @param navGraphRoute [NavDestination.route] of a NavGraph that exists on the [NavController] back
+ *   stack. If a [NavDestination] with the given route does not exist on the back stack, an
+ *   [IllegalArgumentException] will be thrown.
  * @param extrasProducer lambda that will be called during initialization to return
- * [CreationExtras]. If none is provided, this will use the extras from the [NavBackStackEntry]
- * referenced by the [navGraphRoute].
+ *   [CreationExtras]. If none is provided, this will use the extras from the [NavBackStackEntry]
+ *   referenced by the [navGraphRoute].
  * @param factoryProducer lambda that will be called during initialization to return
- * [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
- * [NavBackStackEntry] referenced by the [navGraphRoute].
+ *   [ViewModelProvider.Factory]. If none is provided, this will use the factory from the
+ *   [NavBackStackEntry] referenced by the [navGraphRoute].
  */
 @MainThread
 public inline fun <reified VM : ViewModel> Fragment.navGraphViewModels(
@@ -205,14 +196,11 @@
     noinline extrasProducer: (() -> CreationExtras)? = null,
     noinline factoryProducer: (() -> ViewModelProvider.Factory)? = null
 ): Lazy<VM> {
-    val backStackEntry by lazy {
-        findNavController().getBackStackEntry(navGraphRoute)
-    }
-    val storeProducer: () -> ViewModelStore = {
-        backStackEntry.viewModelStore
-    }
+    val backStackEntry by lazy { findNavController().getBackStackEntry(navGraphRoute) }
+    val storeProducer: () -> ViewModelStore = { backStackEntry.viewModelStore }
     return createViewModelLazy(
-        VM::class, storeProducer,
+        VM::class,
+        storeProducer,
         { extrasProducer?.invoke() ?: backStackEntry.defaultViewModelCreationExtras },
         factoryProducer ?: { backStackEntry.defaultViewModelProviderFactory }
     )
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/AbstractListDetailFragment.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/AbstractListDetailFragment.kt
index 38f685a..62563f3 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/AbstractListDetailFragment.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/AbstractListDetailFragment.kt
@@ -60,7 +60,7 @@
      * Return the [NavHostFragment] this fragment uses
      *
      * @throws IllegalStateException if the NavHostFragment has not been created by
-     * {@link #onCreateView}.
+     *   {@link #onCreateView}.
      */
     val detailPaneNavHostFragment: NavHostFragment
         get() {
@@ -70,11 +70,8 @@
             return _detailPaneNavHostFragment as NavHostFragment
         }
 
-    private class InnerOnBackPressedCallback(
-        private val slidingPaneLayout: SlidingPaneLayout
-    ) :
-        OnBackPressedCallback(true),
-        SlidingPaneLayout.PanelSlideListener {
+    private class InnerOnBackPressedCallback(private val slidingPaneLayout: SlidingPaneLayout) :
+        OnBackPressedCallback(true), SlidingPaneLayout.PanelSlideListener {
 
         init {
             slidingPaneLayout.addPanelSlideListener(this)
@@ -98,19 +95,11 @@
     }
 
     @CallSuper
-    override fun onInflate(
-        context: Context,
-        attrs: AttributeSet,
-        savedInstanceState: Bundle?
-    ) {
+    override fun onInflate(context: Context, attrs: AttributeSet, savedInstanceState: Bundle?) {
         super.onInflate(context, attrs, savedInstanceState)
-        context.obtainStyledAttributes(
-            attrs,
-            androidx.navigation.R.styleable.NavHost
-        ).use { navHost ->
-            val graphId = navHost.getResourceId(
-                androidx.navigation.R.styleable.NavHost_navGraph, 0
-            )
+        context.obtainStyledAttributes(attrs, androidx.navigation.R.styleable.NavHost).use { navHost
+            ->
+            val graphId = navHost.getResourceId(androidx.navigation.R.styleable.NavHost_navGraph, 0)
             if (graphId != 0) {
                 this.graphId = graphId
             }
@@ -118,15 +107,13 @@
     }
 
     /**
-     * Create the view for the fragment. This method provides two callbacks to instantiate a
-     * list pane view and a NavHostFragment to control navigation between different detail views.
+     * Create the view for the fragment. This method provides two callbacks to instantiate a list
+     * pane view and a NavHostFragment to control navigation between different detail views.
      *
      * @param inflater The [LayoutInflater] that used to inflate the fragment's views.
      * @param container The parent view that the fragment's UI should be attached to.
      * @param savedInstanceState The previous saved state of the fragment.
-     *
      * @return Return the view for the fragment's UI
-     *
      * @see onCreateListPaneView
      * @see onCreateDetailPaneNavHostFragment
      */
@@ -139,9 +126,8 @@
         if (savedInstanceState != null) {
             graphId = savedInstanceState.getInt(NavHostFragment.KEY_GRAPH_ID)
         }
-        val slidingPaneLayout = SlidingPaneLayout(inflater.context).apply {
-            id = R.id.sliding_pane_layout
-        }
+        val slidingPaneLayout =
+            SlidingPaneLayout(inflater.context).apply { id = R.id.sliding_pane_layout }
 
         // Create and add the list pane
         val listPaneView = onCreateListPaneView(inflater, slidingPaneLayout, savedInstanceState)
@@ -150,40 +136,38 @@
         }
 
         // Set up the detail container
-        val detailContainer = FragmentContainerView(inflater.context).apply {
-            id = R.id.sliding_pane_detail_container
-        }
-        val detailWidth = inflater.context.resources.getDimensionPixelSize(
-            R.dimen.sliding_pane_detail_pane_width
-        )
-        val detailLayoutParams = SlidingPaneLayout.LayoutParams(detailWidth, MATCH_PARENT).apply {
-            weight = 1F
-        }
+        val detailContainer =
+            FragmentContainerView(inflater.context).apply {
+                id = R.id.sliding_pane_detail_container
+            }
+        val detailWidth =
+            inflater.context.resources.getDimensionPixelSize(R.dimen.sliding_pane_detail_pane_width)
+        val detailLayoutParams =
+            SlidingPaneLayout.LayoutParams(detailWidth, MATCH_PARENT).apply { weight = 1F }
         slidingPaneLayout.addView(detailContainer, detailLayoutParams)
 
         // Now create the NavHostFragment for the detail container
         val existingNavHostFragment =
             childFragmentManager.findFragmentById(R.id.sliding_pane_detail_container)
-        _detailPaneNavHostFragment = if (existingNavHostFragment != null) {
-            existingNavHostFragment as NavHostFragment
-        } else {
-            onCreateDetailPaneNavHostFragment().also { newNavHostFragment ->
-                childFragmentManager
-                    .commit {
+        _detailPaneNavHostFragment =
+            if (existingNavHostFragment != null) {
+                existingNavHostFragment as NavHostFragment
+            } else {
+                onCreateDetailPaneNavHostFragment().also { newNavHostFragment ->
+                    childFragmentManager.commit {
                         setReorderingAllowed(true)
                         add(R.id.sliding_pane_detail_container, newNavHostFragment)
                     }
+                }
             }
-        }
         onBackPressedCallback = InnerOnBackPressedCallback(slidingPaneLayout)
         slidingPaneLayout.doOnLayout {
             onBackPressedCallback!!.isEnabled =
                 slidingPaneLayout.isSlideable && slidingPaneLayout.isOpen
         }
-        requireActivity().onBackPressedDispatcher.addCallback(
-            viewLifecycleOwner,
-            onBackPressedCallback!!
-        )
+        requireActivity()
+            .onBackPressedDispatcher
+            .addCallback(viewLifecycleOwner, onBackPressedCallback!!)
         return slidingPaneLayout
     }
 
@@ -192,9 +176,8 @@
      *
      * @param inflater The [LayoutInflater] that used to inflate the list pane view.
      * @param container The parent view of the list pane view. The parent view can be used to
-     * generate the LayoutParams of the view.
+     *   generate the LayoutParams of the view.
      * @param savedInstanceState The previous saved state of the fragment.
-     *
      * @return Return the list pane view for the fragment.
      */
     abstract fun onCreateListPaneView(
@@ -204,8 +187,8 @@
     ): View
 
     /**
-     * Return an alternative [NavHostFragment] to swap the default NavHostFragment in the
-     * fragment. This method get called when creating the view of the fragment.
+     * Return an alternative [NavHostFragment] to swap the default NavHostFragment in the fragment.
+     * This method get called when creating the view of the fragment.
      */
     open fun onCreateDetailPaneNavHostFragment(): NavHostFragment {
         if (graphId != 0) {
@@ -215,12 +198,11 @@
     }
 
     /**
-     * This method provides a callback [onListPaneViewCreated] after the view hierarchy has
-     * been completely created.
+     * This method provides a callback [onListPaneViewCreated] after the view hierarchy has been
+     * completely created.
      *
      * @param view The view returned by [onCreateView]
      * @param savedInstanceState The previous saved state of the fragment.
-     *
      * @see onListPaneViewCreated
      */
     @CallSuper
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigator.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigator.kt
index 2876ef4..31ecf58 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigator.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigator.kt
@@ -36,9 +36,8 @@
 import kotlinx.coroutines.flow.StateFlow
 
 /**
- * Navigator that uses [DialogFragment.show]. Every
- * destination using this Navigator must set a valid DialogFragment class name with
- * `android:name` or [Destination.setClassName].
+ * Navigator that uses [DialogFragment.show]. Every destination using this Navigator must set a
+ * valid DialogFragment class name with `android:name` or [Destination.setClassName].
  */
 @Navigator.Name("dialog")
 public class DialogFragmentNavigator(
@@ -46,87 +45,82 @@
     private val fragmentManager: FragmentManager
 ) : Navigator<Destination>() {
     private val restoredTagsAwaitingAttach = mutableSetOf<String>()
-    private val observer = object : LifecycleEventObserver {
-        override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-            when (event) {
-                Lifecycle.Event.ON_CREATE -> {
-                    val dialogFragment = source as DialogFragment
-                    val dialogOnBackStack = state.backStack.value.any {
-                        it.id == dialogFragment.tag
-                    }
-                    if (!dialogOnBackStack) {
-                        // If the Fragment is no longer on the back stack, it must have been
-                        // been popped before it was actually attached to the FragmentManager
-                        // (i.e., popped in the same frame as the navigate() call that added it).
-                        // For that case, we need to dismiss the dialog to ensure the states stay
-                        // in sync
-                        dialogFragment.dismiss()
-                    }
-                }
-                Lifecycle.Event.ON_RESUME -> {
-                    val dialogFragment = source as DialogFragment
-                    val entry = state.transitionsInProgress.value.lastOrNull { entry ->
-                        entry.id == dialogFragment.tag
-                    }
-                    entry?.let { state.markTransitionComplete(it) }
-                }
-                Lifecycle.Event.ON_STOP -> {
-                    val dialogFragment = source as DialogFragment
-                    if (!dialogFragment.requireDialog().isShowing) {
-                        val beforePopList = state.backStack.value
-                        val popIndex = beforePopList.indexOfLast {
-                            it.id == dialogFragment.tag
+    private val observer =
+        object : LifecycleEventObserver {
+            override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                when (event) {
+                    Lifecycle.Event.ON_CREATE -> {
+                        val dialogFragment = source as DialogFragment
+                        val dialogOnBackStack =
+                            state.backStack.value.any { it.id == dialogFragment.tag }
+                        if (!dialogOnBackStack) {
+                            // If the Fragment is no longer on the back stack, it must have been
+                            // been popped before it was actually attached to the FragmentManager
+                            // (i.e., popped in the same frame as the navigate() call that added
+                            // it).
+                            // For that case, we need to dismiss the dialog to ensure the states
+                            // stay
+                            // in sync
+                            dialogFragment.dismiss()
                         }
-                        val poppedEntry = beforePopList.elementAtOrNull(popIndex)
-                        if (beforePopList.lastOrNull() != poppedEntry) {
-                            Log.i(
-                                TAG,
-                                "Dialog $dialogFragment was dismissed while it was not the " +
-                                    "top of the back stack, popping all dialogs above this " +
-                                    "dismissed dialog"
-                            )
+                    }
+                    Lifecycle.Event.ON_RESUME -> {
+                        val dialogFragment = source as DialogFragment
+                        val entry =
+                            state.transitionsInProgress.value.lastOrNull { entry ->
+                                entry.id == dialogFragment.tag
+                            }
+                        entry?.let { state.markTransitionComplete(it) }
+                    }
+                    Lifecycle.Event.ON_STOP -> {
+                        val dialogFragment = source as DialogFragment
+                        if (!dialogFragment.requireDialog().isShowing) {
+                            val beforePopList = state.backStack.value
+                            val popIndex = beforePopList.indexOfLast { it.id == dialogFragment.tag }
+                            val poppedEntry = beforePopList.elementAtOrNull(popIndex)
+                            if (beforePopList.lastOrNull() != poppedEntry) {
+                                Log.i(
+                                    TAG,
+                                    "Dialog $dialogFragment was dismissed while it was not the " +
+                                        "top of the back stack, popping all dialogs above this " +
+                                        "dismissed dialog"
+                                )
+                            }
+                            poppedEntry?.let { popWithTransition(popIndex, it, false) }
                         }
-                        poppedEntry?.let { popWithTransition(popIndex, it, false) }
+                    }
+                    Lifecycle.Event.ON_DESTROY -> {
+                        val dialogFragment = source as DialogFragment
+                        val entry =
+                            state.transitionsInProgress.value.lastOrNull { entry ->
+                                entry.id == dialogFragment.tag
+                            }
+                        entry?.let { state.markTransitionComplete(it) }
+                        dialogFragment.lifecycle.removeObserver(this)
+                    }
+                    else -> {
+                        /* added to exhaust when */
                     }
                 }
-                Lifecycle.Event.ON_DESTROY -> {
-                    val dialogFragment = source as DialogFragment
-                    val entry = state.transitionsInProgress.value.lastOrNull { entry ->
-                        entry.id == dialogFragment.tag
-                    }
-                    entry?.let { state.markTransitionComplete(it) }
-                    dialogFragment.lifecycle.removeObserver(this)
-                }
-                else -> { /* added to exhaust when */ }
             }
         }
-    }
 
-    /**
-     * Gets the backstack of [NavBackStackEntry] associated with this Navigator
-     */
+    /** Gets the backstack of [NavBackStackEntry] associated with this Navigator */
     internal val backStack: StateFlow<List<NavBackStackEntry>>
         get() = state.backStack
 
-    /**
-     * Stores DialogFragments that have been created but pendingTransaction.
-     */
+    /** Stores DialogFragments that have been created but pendingTransaction. */
     private val transitioningFragments: MutableMap<String, DialogFragment> = mutableMapOf()
 
     override fun popBackStack(popUpTo: NavBackStackEntry, savedState: Boolean) {
         if (fragmentManager.isStateSaved) {
-            Log.i(
-                TAG, "Ignoring popBackStack() call: FragmentManager has already saved its state"
-            )
+            Log.i(TAG, "Ignoring popBackStack() call: FragmentManager has already saved its state")
             return
         }
         val beforePopList = state.backStack.value
         // Get the set of entries that are going to be popped
         val popUpToIndex = beforePopList.indexOf(popUpTo)
-        val poppedList = beforePopList.subList(
-            popUpToIndex,
-            beforePopList.size
-        )
+        val poppedList = beforePopList.subList(popUpToIndex, beforePopList.size)
 
         // Now go through the list in reversed order (i.e., starting from the most recently added)
         // and dismiss each dialog
@@ -174,9 +168,7 @@
         }
     }
 
-    private fun navigate(
-        entry: NavBackStackEntry
-    ) {
+    private fun navigate(entry: NavBackStackEntry) {
         val dialogFragment = createDialogFragment(entry)
         dialogFragment.show(fragmentManager, entry.id)
         val outGoingEntry = state.backStack.value.lastOrNull()
@@ -199,8 +191,9 @@
 
         // Ensure previous fragment is dismissed. If it is in transition, we have to dismiss it
         // here before its value with same key (entry.id) gets replaced by new fragment.
-        val oldFragment = transitioningFragments[backStackEntry.id]
-            ?: fragmentManager.findFragmentByTag(backStackEntry.id) as? DialogFragment
+        val oldFragment =
+            transitioningFragments[backStackEntry.id]
+                ?: fragmentManager.findFragmentByTag(backStackEntry.id) as? DialogFragment
         if (oldFragment != null) {
             oldFragment.lifecycle.removeObserver(observer)
             oldFragment.dismiss()
@@ -217,9 +210,7 @@
         if (className[0] == '.') {
             className = context.packageName + className
         }
-        val frag = fragmentManager.fragmentFactory.instantiate(
-            context.classLoader, className
-        )
+        val frag = fragmentManager.fragmentFactory.instantiate(context.classLoader, className)
         require(DialogFragment::class.java.isAssignableFrom(frag.javaClass)) {
             "Dialog destination ${destination.className} is not an instance of DialogFragment"
         }
@@ -237,10 +228,8 @@
     override fun onAttach(state: NavigatorState) {
         super.onAttach(state)
         for (entry in state.backStack.value) {
-            val fragment = fragmentManager
-                .findFragmentByTag(entry.id) as DialogFragment?
-            fragment?.lifecycle?.addObserver(observer)
-                ?: restoredTagsAwaitingAttach.add(entry.id)
+            val fragment = fragmentManager.findFragmentByTag(entry.id) as DialogFragment?
+            fragment?.lifecycle?.addObserver(observer) ?: restoredTagsAwaitingAttach.add(entry.id)
         }
         fragmentManager.addFragmentOnAttachListener { _, childFragment ->
             val needToAddObserver = restoredTagsAwaitingAttach.remove(childFragment.tag)
@@ -258,8 +247,8 @@
      * Fragment via [setClassName].
      *
      * @param fragmentNavigator The [DialogFragmentNavigator] which this destination will be
-     *                          associated with. Generally retrieved via a [NavController]'s
-     *                          [NavigatorProvider.getNavigator] method.
+     *   associated with. Generally retrieved via a [NavController]'s
+     *   [NavigatorProvider.getNavigator] method.
      */
     @NavDestination.ClassType(DialogFragment::class)
     public open class Destination
@@ -281,20 +270,18 @@
          * Construct a new fragment destination. This destination is not valid until you set the
          * Fragment via [setClassName].
          *
-         * @param navigatorProvider The [NavController] which this destination
-         * will be associated with.
+         * @param navigatorProvider The [NavController] which this destination will be associated
+         *   with.
          */
-        public constructor(navigatorProvider: NavigatorProvider) : this(
-            navigatorProvider.getNavigator(DialogFragmentNavigator::class.java)
-        )
+        public constructor(
+            navigatorProvider: NavigatorProvider
+        ) : this(navigatorProvider.getNavigator(DialogFragmentNavigator::class.java))
 
         @CallSuper
         public override fun onInflate(context: Context, attrs: AttributeSet) {
             super.onInflate(context, attrs)
-            context.resources.obtainAttributes(
-                attrs,
-                R.styleable.DialogFragmentNavigator
-            ).use { array ->
+            context.resources.obtainAttributes(attrs, R.styleable.DialogFragmentNavigator).use {
+                array ->
                 val className = array.getString(R.styleable.DialogFragmentNavigator_android_name)
                 className?.let { setClassName(it) }
             }
@@ -302,8 +289,9 @@
 
         /**
          * Set the DialogFragment class name associated with this destination
+         *
          * @param className The class name of the DialogFragment to show when you navigate to this
-         *                  destination
+         *   destination
          * @return this [Destination]
          */
         public fun setClassName(className: String): Destination {
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilder.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilder.kt
index 6721d34..83a2a10 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilder.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/DialogFragmentNavigatorDestinationBuilder.kt
@@ -36,9 +36,8 @@
     "Use routes to create your DialogFragmentDestination instead",
     ReplaceWith("dialog<F>(route = id.toString())")
 )
-public inline fun <reified F : DialogFragment> NavGraphBuilder.dialog(
-    @IdRes id: Int
-): Unit = dialog<F>(id) {}
+public inline fun <reified F : DialogFragment> NavGraphBuilder.dialog(@IdRes id: Int): Unit =
+    dialog<F>(id) {}
 
 /**
  * Construct a new [DialogFragmentNavigator.Destination]
@@ -54,21 +53,23 @@
 public inline fun <reified F : DialogFragment> NavGraphBuilder.dialog(
     @IdRes id: Int,
     builder: DialogFragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DialogFragmentNavigatorDestinationBuilder(
-        provider[DialogFragmentNavigator::class],
-        id,
-        F::class
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DialogFragmentNavigatorDestinationBuilder(
+                provider[DialogFragmentNavigator::class],
+                id,
+                F::class
+            )
+            .apply(builder)
+    )
+
 /**
  * Construct a new [DialogFragmentNavigator.Destination]
  *
  * @param route the destination's unique route
  */
-public inline fun <reified F : DialogFragment> NavGraphBuilder.dialog(
-    route: String
-): Unit = dialog<F>(route) {}
+public inline fun <reified F : DialogFragment> NavGraphBuilder.dialog(route: String): Unit =
+    dialog<F>(route) {}
 
 /**
  * Construct a new [DialogFragmentNavigator.Destination]
@@ -79,20 +80,22 @@
 public inline fun <reified F : DialogFragment> NavGraphBuilder.dialog(
     route: String,
     builder: DialogFragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DialogFragmentNavigatorDestinationBuilder(
-        provider[DialogFragmentNavigator::class],
-        route,
-        F::class
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DialogFragmentNavigatorDestinationBuilder(
+                provider[DialogFragmentNavigator::class],
+                route,
+                F::class
+            )
+            .apply(builder)
+    )
 
 /**
  * Construct a new [DialogFragmentNavigator.Destination]
  *
  * @param T the destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  */
 public inline fun <reified F : DialogFragment, reified T : Any> NavGraphBuilder.dialog(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
@@ -103,24 +106,24 @@
  *
  * @param T the destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param builder the builder used to construct the fragment destination
  */
 public inline fun <reified F : DialogFragment, reified T : Any> NavGraphBuilder.dialog(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: DialogFragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    DialogFragmentNavigatorDestinationBuilder(
-        provider[DialogFragmentNavigator::class],
-        T::class,
-        typeMap,
-        F::class
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        DialogFragmentNavigatorDestinationBuilder(
+                provider[DialogFragmentNavigator::class],
+                T::class,
+                typeMap,
+                F::class
+            )
+            .apply(builder)
+    )
 
-/**
- * DSL for constructing a new [DialogFragmentNavigator.Destination]
- */
+/** DSL for constructing a new [DialogFragmentNavigator.Destination] */
 @NavDestinationDsl
 public class DialogFragmentNavigatorDestinationBuilder :
     NavDestinationBuilder<DialogFragmentNavigator.Destination> {
@@ -133,7 +136,7 @@
      * @param navigator navigator used to create the destination
      * @param id the destination's unique id
      * @param fragmentClass the class name of the DialogFragment to show when you navigate to this
-     * destination
+     *   destination
      */
     @Suppress("Deprecation")
     @Deprecated(
@@ -155,10 +158,10 @@
      * DSL for constructing a new [DialogFragmentNavigator.Destination]
      *
      * @param navigator navigator used to create the destination
-     * @param route the destination's unique route. This sets the [route] on the newly
-     * constructed [NavDestination]. This can be any valid non-empty String.
+     * @param route the destination's unique route. This sets the [route] on the newly constructed
+     *   [NavDestination]. This can be any valid non-empty String.
      * @param fragmentClass the class name of the DialogFragment to show when you navigate to this
-     * destination
+     *   destination
      */
     public constructor(
         navigator: DialogFragmentNavigator,
@@ -172,12 +175,12 @@
      * DSL for constructing a new [DialogFragmentNavigator.Destination]
      *
      * @param navigator navigator used to create the destination
-     * @param route the destination's unique route from a [KClass]. This sets the [route] on
-     * the newly constructed [NavDestination].
+     * @param route the destination's unique route from a [KClass]. This sets the [route] on the
+     *   newly constructed [NavDestination].
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      * @param fragmentClass the class name of the DialogFragment to show when you navigate to this
-     * destination
+     *   destination
      */
     public constructor(
         navigator: DialogFragmentNavigator,
@@ -189,7 +192,5 @@
     }
 
     override fun build(): DialogFragmentNavigator.Destination =
-        super.build().also { destination ->
-            destination.setClassName(fragmentClass.java.name)
-        }
+        super.build().also { destination -> destination.setClassName(fragmentClass.java.name) }
 }
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/Fragment.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/Fragment.kt
index 903221b..13584dc 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/Fragment.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/Fragment.kt
@@ -22,8 +22,7 @@
 /**
  * Find a [NavController] given a [Fragment]
  *
- * Calling this on a Fragment that is not a [NavHostFragment] or within a [NavHostFragment]
- * will result in an [IllegalStateException]
+ * Calling this on a Fragment that is not a [NavHostFragment] or within a [NavHostFragment] will
+ * result in an [IllegalStateException]
  */
-public fun Fragment.findNavController(): NavController =
-    NavHostFragment.findNavController(this)
+public fun Fragment.findNavController(): NavController = NavHostFragment.findNavController(this)
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavArgsLazy.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavArgsLazy.kt
index eb17a78..8e318ff 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavArgsLazy.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavArgsLazy.kt
@@ -24,10 +24,10 @@
 /**
  * Returns a [Lazy] delegate to access the Fragment's arguments as an [Args] instance.
  *
- * It is strongly recommended that this method only be used when the Fragment is created
- * by [androidx.navigation.NavController.navigate] with the corresponding
- * [androidx.navigation.NavDirections] object, which ensures that the required
- * arguments are present.
+ * It is strongly recommended that this method only be used when the Fragment is created by
+ * [androidx.navigation.NavController.navigate] with the corresponding
+ * [androidx.navigation.NavDirections] object, which ensures that the required arguments are
+ * present.
  *
  * ```
  * class MyFragment : Fragment() {
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigator.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigator.kt
index 80a18ce..5f3c995 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigator.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigator.kt
@@ -45,20 +45,20 @@
 import java.lang.ref.WeakReference
 
 /**
- * Navigator that navigates through [fragment transactions][FragmentTransaction]. Every
- * destination using this Navigator must set a valid Fragment class name with
- * `android:name` or [Destination.setClassName].
+ * Navigator that navigates through [fragment transactions][FragmentTransaction]. Every destination
+ * using this Navigator must set a valid Fragment class name with `android:name` or
+ * [Destination.setClassName].
  *
  * The current Fragment from FragmentNavigator's perspective can be retrieved by calling
- * [FragmentManager.getPrimaryNavigationFragment] with the FragmentManager
- * passed to this FragmentNavigator.
+ * [FragmentManager.getPrimaryNavigationFragment] with the FragmentManager passed to this
+ * FragmentNavigator.
  *
- * Note that the default implementation does Fragment transactions
- * asynchronously, so the current Fragment will not be available immediately
- * (i.e., in callbacks to [NavController.OnDestinationChangedListener]).
+ * Note that the default implementation does Fragment transactions asynchronously, so the current
+ * Fragment will not be available immediately (i.e., in callbacks to
+ * [NavController.OnDestinationChangedListener]).
  *
- * FragmentNavigator respects [Log.isLoggable] for debug logging, allowing you to
- * use `adb shell setprop log.tag.FragmentNavigator VERBOSE`.
+ * FragmentNavigator respects [Log.isLoggable] for debug logging, allowing you to use `adb shell
+ * setprop log.tag.FragmentNavigator VERBOSE`.
  */
 @Navigator.Name("fragment")
 public open class FragmentNavigator(
@@ -71,6 +71,7 @@
     private fun isLoggingEnabled(level: Int): Boolean {
         return Log.isLoggable("FragmentManager", level) || Log.isLoggable(TAG, level)
     }
+
     private val savedIds = mutableSetOf<String>()
 
     /**
@@ -79,25 +80,23 @@
      * this list is expected to be cleared.
      *
      * In general, each entry would be added only once to this list within a single transaction
-     * except in the case of singleTop transactions. Single top transactions involve two
-     * fragment instances with the same entry, so we would get two onBackStackChanged callbacks
-     * on the same entry.
+     * except in the case of singleTop transactions. Single top transactions involve two fragment
+     * instances with the same entry, so we would get two onBackStackChanged callbacks on the same
+     * entry.
      *
      * Each Pair represents the entry.id and whether this entry is getting popped
      */
     internal val pendingOps = mutableListOf<Pair<String, Boolean>>()
 
-    /**
-     * Get the back stack from the [state].
-     */
-    internal val backStack get() = state.backStack
+    /** Get the back stack from the [state]. */
+    internal val backStack
+        get() = state.backStack
 
     private val fragmentObserver = LifecycleEventObserver { source, event ->
         if (event == Lifecycle.Event.ON_DESTROY) {
             val fragment = source as Fragment
-            val entry = state.transitionsInProgress.value.lastOrNull { entry ->
-                entry.id == fragment.tag
-            }
+            val entry =
+                state.transitionsInProgress.value.lastOrNull { entry -> entry.id == fragment.tag }
             if (entry != null) {
                 if (isLoggingEnabled(Log.VERBOSE)) {
                     Log.v(
@@ -163,73 +162,80 @@
             }
         }
 
-        fragmentManager.addOnBackStackChangedListener(object : OnBackStackChangedListener {
-            override fun onBackStackChanged() { }
+        fragmentManager.addOnBackStackChangedListener(
+            object : OnBackStackChangedListener {
+                override fun onBackStackChanged() {}
 
-            override fun onBackStackChangeStarted(fragment: Fragment, pop: Boolean) {
-                // We only care about the pop case here since in the navigate case by the time
-                // we get here the fragment will have already been moved to STARTED.
-                // In the case of a pop, we move the entries to STARTED
-                if (pop) {
-                    val entry = state.backStack.value.lastOrNull { it.id == fragment.tag }
-                    if (isLoggingEnabled(Log.VERBOSE)) {
-                        Log.v(
-                            TAG,
-                            "OnBackStackChangedStarted for fragment " +
-                                "$fragment associated with entry $entry"
-                        )
-                    }
-                    entry?.let { state.prepareForTransition(it) }
-                }
-            }
-
-            override fun onBackStackChangeCommitted(fragment: Fragment, pop: Boolean) {
-                val entry = (state.backStack.value + state.transitionsInProgress.value).lastOrNull {
-                    it.id == fragment.tag
-                }
-
-                // In case of system back, all pending transactions are executed before handling
-                // back press, hence pendingOps will be empty.
-                val isSystemBack = pop && pendingOps.isEmpty() && fragment.isRemoving
-                val op = pendingOps.firstOrNull { it.first == fragment.tag }
-                op?.let { pendingOps.remove(it) }
-
-                if (!isSystemBack && isLoggingEnabled(Log.VERBOSE)) {
-                    Log.v(
-                        TAG,
-                        "OnBackStackChangedCommitted for fragment " +
-                            "$fragment associated with entry $entry"
-                    )
-                }
-
-                val popOp = op?.second == true
-                if (!pop && !popOp) {
-                    requireNotNull(entry) {
-                        "The fragment " + fragment + " is unknown to the FragmentNavigator. " +
-                            "Please use the navigate() function to add fragments to the " +
-                            "FragmentNavigator managed FragmentManager."
-                    }
-                }
-                if (entry != null) {
-                    // In case we get a fragment that was never attached to the fragment manager,
-                    // we need to make sure we still return the entries to their proper final state.
-                    attachClearViewModel(fragment, entry, state)
-                    // This is the case of system back where we will need to make the call to
-                    // popBackStack. Otherwise, popBackStack was called directly and we avoid
-                    // popping again.
-                    if (isSystemBack) {
+                override fun onBackStackChangeStarted(fragment: Fragment, pop: Boolean) {
+                    // We only care about the pop case here since in the navigate case by the time
+                    // we get here the fragment will have already been moved to STARTED.
+                    // In the case of a pop, we move the entries to STARTED
+                    if (pop) {
+                        val entry = state.backStack.value.lastOrNull { it.id == fragment.tag }
                         if (isLoggingEnabled(Log.VERBOSE)) {
                             Log.v(
                                 TAG,
-                                "OnBackStackChangedCommitted for fragment $fragment " +
-                                    "popping associated entry $entry via system back"
+                                "OnBackStackChangedStarted for fragment " +
+                                    "$fragment associated with entry $entry"
                             )
                         }
-                        state.popWithTransition(entry, false)
+                        entry?.let { state.prepareForTransition(it) }
+                    }
+                }
+
+                override fun onBackStackChangeCommitted(fragment: Fragment, pop: Boolean) {
+                    val entry =
+                        (state.backStack.value + state.transitionsInProgress.value).lastOrNull {
+                            it.id == fragment.tag
+                        }
+
+                    // In case of system back, all pending transactions are executed before handling
+                    // back press, hence pendingOps will be empty.
+                    val isSystemBack = pop && pendingOps.isEmpty() && fragment.isRemoving
+                    val op = pendingOps.firstOrNull { it.first == fragment.tag }
+                    op?.let { pendingOps.remove(it) }
+
+                    if (!isSystemBack && isLoggingEnabled(Log.VERBOSE)) {
+                        Log.v(
+                            TAG,
+                            "OnBackStackChangedCommitted for fragment " +
+                                "$fragment associated with entry $entry"
+                        )
+                    }
+
+                    val popOp = op?.second == true
+                    if (!pop && !popOp) {
+                        requireNotNull(entry) {
+                            "The fragment " +
+                                fragment +
+                                " is unknown to the FragmentNavigator. " +
+                                "Please use the navigate() function to add fragments to the " +
+                                "FragmentNavigator managed FragmentManager."
+                        }
+                    }
+                    if (entry != null) {
+                        // In case we get a fragment that was never attached to the fragment
+                        // manager,
+                        // we need to make sure we still return the entries to their proper final
+                        // state.
+                        attachClearViewModel(fragment, entry, state)
+                        // This is the case of system back where we will need to make the call to
+                        // popBackStack. Otherwise, popBackStack was called directly and we avoid
+                        // popping again.
+                        if (isSystemBack) {
+                            if (isLoggingEnabled(Log.VERBOSE)) {
+                                Log.v(
+                                    TAG,
+                                    "OnBackStackChangedCommitted for fragment $fragment " +
+                                        "popping associated entry $entry via system back"
+                                )
+                            }
+                            state.popWithTransition(entry, false)
+                        }
                     }
                 }
             }
-        })
+        )
     }
 
     private fun attachObservers(entry: NavBackStackEntry, fragment: Fragment) {
@@ -256,54 +262,47 @@
         entry: NavBackStackEntry,
         state: NavigatorState
     ) {
-        val viewModel = ViewModelProvider(
-            fragment.viewModelStore,
-            viewModelFactory { initializer { ClearEntryStateViewModel() } },
-            CreationExtras.Empty
-        )[ClearEntryStateViewModel::class.java]
-        viewModel.completeTransition =
-            WeakReference {
-                entry.let {
-                    state.transitionsInProgress.value.forEach { entry ->
-                        if (isLoggingEnabled(Log.VERBOSE)) {
-                            Log.v(
-                                TAG,
-                                "Marking transition complete for entry " +
-                                    "$entry due to fragment $fragment viewmodel being cleared"
-                            )
-                        }
-                        state.markTransitionComplete(entry)
+        val viewModel =
+            ViewModelProvider(
+                fragment.viewModelStore,
+                viewModelFactory { initializer { ClearEntryStateViewModel() } },
+                CreationExtras.Empty
+            )[ClearEntryStateViewModel::class.java]
+        viewModel.completeTransition = WeakReference {
+            entry.let {
+                state.transitionsInProgress.value.forEach { entry ->
+                    if (isLoggingEnabled(Log.VERBOSE)) {
+                        Log.v(
+                            TAG,
+                            "Marking transition complete for entry " +
+                                "$entry due to fragment $fragment viewmodel being cleared"
+                        )
                     }
+                    state.markTransitionComplete(entry)
                 }
             }
+        }
     }
 
     /**
      * {@inheritDoc}
      *
-     * This method must call
-     * [FragmentTransaction.setPrimaryNavigationFragment]
-     * if the pop succeeded so that the newly visible Fragment can be retrieved with
+     * This method must call [FragmentTransaction.setPrimaryNavigationFragment] if the pop succeeded
+     * so that the newly visible Fragment can be retrieved with
      * [FragmentManager.getPrimaryNavigationFragment].
      *
-     * Note that the default implementation pops the Fragment
-     * asynchronously, so the newly visible Fragment from the back stack
-     * is not instantly available after this call completes.
+     * Note that the default implementation pops the Fragment asynchronously, so the newly visible
+     * Fragment from the back stack is not instantly available after this call completes.
      */
     override fun popBackStack(popUpTo: NavBackStackEntry, savedState: Boolean) {
         if (fragmentManager.isStateSaved) {
-            Log.i(
-                TAG, "Ignoring popBackStack() call: FragmentManager has already saved its state"
-            )
+            Log.i(TAG, "Ignoring popBackStack() call: FragmentManager has already saved its state")
             return
         }
         val beforePopList = state.backStack.value
         // Get the set of entries that are going to be popped
         val popUpToIndex = beforePopList.indexOf(popUpTo)
-        val poppedList = beforePopList.subList(
-            popUpToIndex,
-            beforePopList.size
-        )
+        val poppedList = beforePopList.subList(popUpToIndex, beforePopList.size)
         val initialEntry = beforePopList.first()
 
         // add pending ops here before any animation (if present) or FragmentManager work starts
@@ -311,16 +310,16 @@
         if (incomingEntry != null) {
             addPendingOps(incomingEntry.id)
         }
-        poppedList.filter { entry ->
-            // normally we don't add initialEntry to pending ops because the adding/popping
-            // of an isolated fragment does not trigger onBackStackCommitted. But if initial
-            // entry was already added to pendingOps, it was likely an incomingEntry that now
-            // needs to be popped, so we need to overwrite isPop to true here.
-            pendingOps.asSequence().map { it.first }.contains(entry.id) ||
-                entry.id != initialEntry.id
-        }.forEach { entry ->
-            addPendingOps(entry.id, isPop = true)
-        }
+        poppedList
+            .filter { entry ->
+                // normally we don't add initialEntry to pending ops because the adding/popping
+                // of an isolated fragment does not trigger onBackStackCommitted. But if initial
+                // entry was already added to pendingOps, it was likely an incomingEntry that now
+                // needs to be popped, so we need to overwrite isPop to true here.
+                pendingOps.asSequence().map { it.first }.contains(entry.id) ||
+                    entry.id != initialEntry.id
+            }
+            .forEach { entry -> addPendingOps(entry.id, isPop = true) }
         if (savedState) {
             // Now go through the list in reversed order (i.e., started from the most added)
             // and save the back stack state of each.
@@ -336,10 +335,7 @@
                 }
             }
         } else {
-            fragmentManager.popBackStack(
-                popUpTo.id,
-                FragmentManager.POP_BACK_STACK_INCLUSIVE
-            )
+            fragmentManager.popBackStack(popUpTo.id, FragmentManager.POP_BACK_STACK_INCLUSIVE)
         }
         if (isLoggingEnabled(Log.VERBOSE)) {
             Log.v(
@@ -357,11 +353,10 @@
     }
 
     /**
-     * Instantiates the Fragment via the FragmentManager's
-     * [androidx.fragment.app.FragmentFactory].
+     * Instantiates the Fragment via the FragmentManager's [androidx.fragment.app.FragmentFactory].
      *
-     * Note that this method is **not** responsible for calling
-     * [Fragment.setArguments] on the returned Fragment instance.
+     * Note that this method is **not** responsible for calling [Fragment.setArguments] on the
+     * returned Fragment instance.
      *
      * @param context Context providing the correct [ClassLoader]
      * @param fragmentManager FragmentManager the Fragment will be added to
@@ -387,14 +382,12 @@
     /**
      * {@inheritDoc}
      *
-     * This method should always call
-     * [FragmentTransaction.setPrimaryNavigationFragment]
-     * so that the Fragment associated with the new destination can be retrieved with
+     * This method should always call [FragmentTransaction.setPrimaryNavigationFragment] so that the
+     * Fragment associated with the new destination can be retrieved with
      * [FragmentManager.getPrimaryNavigationFragment].
      *
-     * Note that the default implementation commits the new Fragment
-     * asynchronously, so the new Fragment is not instantly available
-     * after this call completes.
+     * Note that the default implementation commits the new Fragment asynchronously, so the new
+     * Fragment is not instantly available after this call completes.
      *
      * This call will be ignored if the FragmentManager state has already been saved.
      */
@@ -404,9 +397,7 @@
         navigatorExtras: Navigator.Extras?
     ) {
         if (fragmentManager.isStateSaved) {
-            Log.i(
-                TAG, "Ignoring navigate() call: FragmentManager has already saved its state"
-            )
+            Log.i(TAG, "Ignoring navigate() call: FragmentManager has already saved its state")
             return
         }
         for (entry in entries) {
@@ -420,11 +411,11 @@
         navigatorExtras: Navigator.Extras?
     ) {
         val initialNavigation = state.backStack.value.isEmpty()
-        val restoreState = (
-            navOptions != null && !initialNavigation &&
+        val restoreState =
+            (navOptions != null &&
+                !initialNavigation &&
                 navOptions.shouldRestoreState() &&
-                savedIds.remove(entry.id)
-            )
+                savedIds.remove(entry.id))
         if (restoreState) {
             // Restore back stack does all the work to restore the entry
             fragmentManager.restoreBackStack(entry.id)
@@ -453,10 +444,7 @@
         ft.commit()
         // The commit succeeded, update our view of the world
         if (isLoggingEnabled(Log.VERBOSE)) {
-            Log.v(
-                TAG,
-                "Calling pushWithTransition via navigate() on entry $entry"
-            )
+            Log.v(TAG, "Calling pushWithTransition via navigate() on entry $entry")
         }
         state.pushWithTransition(entry)
     }
@@ -464,14 +452,12 @@
     /**
      * {@inheritDoc}
      *
-     * This method should always call
-     * [FragmentTransaction.setPrimaryNavigationFragment]
-     * so that the Fragment associated with the new destination can be retrieved with
+     * This method should always call [FragmentTransaction.setPrimaryNavigationFragment] so that the
+     * Fragment associated with the new destination can be retrieved with
      * [FragmentManager.getPrimaryNavigationFragment].
      *
-     * Note that the default implementation commits the new Fragment
-     * asynchronously, so the new Fragment is not instantly available
-     * after this call completes.
+     * Note that the default implementation commits the new Fragment asynchronously, so the new
+     * Fragment is not instantly available after this call completes.
      *
      * This call will be ignored if the FragmentManager state has already been saved.
      */
@@ -560,7 +546,7 @@
      * Fragment via [setClassName].
      *
      * @param fragmentNavigator The [FragmentNavigator] which this destination will be associated
-     * with. Generally retrieved via a [NavController]'s [NavigatorProvider.getNavigator] method.
+     *   with. Generally retrieved via a [NavController]'s [NavigatorProvider.getNavigator] method.
      */
     @NavDestination.ClassType(Fragment::class)
     public open class Destination
@@ -571,11 +557,12 @@
          * Construct a new fragment destination. This destination is not valid until you set the
          * Fragment via [setClassName].
          *
-         * @param navigatorProvider The [NavController] which this destination
-         * will be associated with.
+         * @param navigatorProvider The [NavController] which this destination will be associated
+         *   with.
          */
-        public constructor(navigatorProvider: NavigatorProvider) :
-            this(navigatorProvider.getNavigator(FragmentNavigator::class.java))
+        public constructor(
+            navigatorProvider: NavigatorProvider
+        ) : this(navigatorProvider.getNavigator(FragmentNavigator::class.java))
 
         @CallSuper
         public override fun onInflate(context: Context, attrs: AttributeSet) {
@@ -588,8 +575,9 @@
 
         /**
          * Set the Fragment class name associated with this destination
+         *
          * @param className The class name of the Fragment to show when you navigate to this
-         * destination
+         *   destination
          * @return this [Destination]
          */
         public fun setClassName(className: String): Destination {
@@ -634,23 +622,19 @@
         }
     }
 
-    /**
-     * Extras that can be passed to FragmentNavigator to enable Fragment specific behavior
-     */
-    public class Extras internal constructor(sharedElements: Map<View, String>) :
-        Navigator.Extras {
+    /** Extras that can be passed to FragmentNavigator to enable Fragment specific behavior */
+    public class Extras internal constructor(sharedElements: Map<View, String>) : Navigator.Extras {
         private val _sharedElements = LinkedHashMap<View, String>()
 
         /**
-         * The map of shared elements associated with these Extras. The returned map
-         * is an [unmodifiable][Map] copy of the underlying map and should be treated as immutable.
+         * The map of shared elements associated with these Extras. The returned map is an
+         * [unmodifiable][Map] copy of the underlying map and should be treated as immutable.
          */
         public val sharedElements: Map<View, String>
             get() = _sharedElements.toMap()
 
         /**
-         * Builder for constructing new [Extras] instances. The resulting instances are
-         * immutable.
+         * Builder for constructing new [Extras] instances. The resulting instances are immutable.
          */
         public class Builder {
             private val _sharedElements = LinkedHashMap<View, String>()
@@ -674,9 +658,9 @@
              * Fragment being navigated to.
              *
              * @param sharedElement A View in the current Fragment to match with a View in the
-             * Fragment being navigated to.
+             *   Fragment being navigated to.
              * @param name The transitionName of the View in the Fragment being navigated to that
-             * should be matched to the shared element.
+             *   should be matched to the shared element.
              * @return this [Builder]
              * @see FragmentTransaction.addSharedElement
              */
@@ -707,6 +691,7 @@
 
     internal class ClearEntryStateViewModel : ViewModel() {
         lateinit var completeTransition: WeakReference<() -> Unit>
+
         override fun onCleared() {
             super.onCleared()
             completeTransition.get()?.invoke()
@@ -714,8 +699,8 @@
     }
 
     /**
-     * In general, each entry would only get one callback within a transaction except
-     * for single top transactions, where we would get two callbacks for the same entry.
+     * In general, each entry would only get one callback within a transaction except for single top
+     * transactions, where we would get two callbacks for the same entry.
      */
     private fun addPendingOps(id: String, isPop: Boolean = false, deduplicate: Boolean = true) {
         if (deduplicate) {
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilder.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilder.kt
index dda33d3..5f18f1f 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilder.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorDestinationBuilder.kt
@@ -36,9 +36,8 @@
     "Use routes to create your FragmentDestination instead",
     ReplaceWith("fragment<F>(route = id.toString())")
 )
-public inline fun <reified F : Fragment> NavGraphBuilder.fragment(
-    @IdRes id: Int
-): Unit = fragment<F>(id) {}
+public inline fun <reified F : Fragment> NavGraphBuilder.fragment(@IdRes id: Int): Unit =
+    fragment<F>(id) {}
 
 /**
  * Construct a new [FragmentNavigator.Destination]
@@ -54,22 +53,19 @@
 public inline fun <reified F : Fragment> NavGraphBuilder.fragment(
     @IdRes id: Int,
     builder: FragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    FragmentNavigatorDestinationBuilder(
-        provider[FragmentNavigator::class],
-        id,
-        F::class
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        FragmentNavigatorDestinationBuilder(provider[FragmentNavigator::class], id, F::class)
+            .apply(builder)
+    )
 
 /**
  * Construct a new [FragmentNavigator.Destination]
  *
  * @param route the destination's unique route
  */
-public inline fun <reified F : Fragment> NavGraphBuilder.fragment(
-    route: String
-): Unit = fragment<F>(route) {}
+public inline fun <reified F : Fragment> NavGraphBuilder.fragment(route: String): Unit =
+    fragment<F>(route) {}
 
 /**
  * Construct a new [FragmentNavigator.Destination]
@@ -80,20 +76,18 @@
 public inline fun <reified F : Fragment> NavGraphBuilder.fragment(
     route: String,
     builder: FragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    FragmentNavigatorDestinationBuilder(
-        provider[FragmentNavigator::class],
-        route,
-        F::class
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        FragmentNavigatorDestinationBuilder(provider[FragmentNavigator::class], route, F::class)
+            .apply(builder)
+    )
 
 /**
  * Construct a new [FragmentNavigator.Destination]
  *
  * @param T the destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  */
 public inline fun <reified F : Fragment, reified T : Any> NavGraphBuilder.fragment(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
@@ -104,24 +98,24 @@
  *
  * @param T the destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param builder the builder used to construct the fragment destination
  */
 public inline fun <reified F : Fragment, reified T : Any> NavGraphBuilder.fragment(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: FragmentNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    FragmentNavigatorDestinationBuilder(
-        provider[FragmentNavigator::class],
-        T::class,
-        typeMap,
-        F::class,
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        FragmentNavigatorDestinationBuilder(
+                provider[FragmentNavigator::class],
+                T::class,
+                typeMap,
+                F::class,
+            )
+            .apply(builder)
+    )
 
-/**
- * DSL for constructing a new [FragmentNavigator.Destination]
- */
+/** DSL for constructing a new [FragmentNavigator.Destination] */
 @NavDestinationDsl
 public class FragmentNavigatorDestinationBuilder :
     NavDestinationBuilder<FragmentNavigator.Destination> {
@@ -134,7 +128,7 @@
      * @param navigator navigator used to create the destination
      * @param id the destination's unique id
      * @param fragmentClass The class name of the Fragment to show when you navigate to this
-     * destination
+     *   destination
      */
     @Suppress("Deprecation")
     @Deprecated(
@@ -157,7 +151,7 @@
      * @param navigator navigator used to create the destination
      * @param route the destination's unique route
      * @param fragmentClass The class name of the Fragment to show when you navigate to this
-     * destination
+     *   destination
      */
     public constructor(
         navigator: FragmentNavigator,
@@ -173,9 +167,9 @@
      * @param navigator navigator used to create the destination
      * @param route the route from a [KClass] of the destination
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      * @param fragmentClass The class name of the Fragment to show when you navigate to this
-     * destination
+     *   destination
      */
     public constructor(
         navigator: FragmentNavigator,
@@ -187,7 +181,5 @@
     }
 
     override fun build(): FragmentNavigator.Destination =
-        super.build().also { destination ->
-            destination.setClassName(fragmentClass.java.name)
-        }
+        super.build().also { destination -> destination.setClassName(fragmentClass.java.name) }
 }
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorExtras.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorExtras.kt
index 36ae0bd..f5787bd 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorExtras.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/FragmentNavigatorExtras.kt
@@ -22,13 +22,12 @@
  * Create a new [FragmentNavigator.Extras] instance with the given shared elements
  *
  * @param sharedElements One or more pairs of View+String names to be passed through to
- * [FragmentNavigator.Extras.Builder.addSharedElement].
+ *   [FragmentNavigator.Extras.Builder.addSharedElement].
  */
 @Suppress("FunctionName")
 public fun FragmentNavigatorExtras(
     vararg sharedElements: Pair<View, String>
-): FragmentNavigator.Extras = FragmentNavigator.Extras.Builder().apply {
-    sharedElements.forEach { (view, name) ->
-        addSharedElement(view, name)
-    }
-}.build()
+): FragmentNavigator.Extras =
+    FragmentNavigator.Extras.Builder()
+        .apply { sharedElements.forEach { (view, name) -> addSharedElement(view, name) } }
+        .build()
diff --git a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/NavHostFragment.kt b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/NavHostFragment.kt
index b44887e..93a9285 100644
--- a/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/NavHostFragment.kt
+++ b/navigation/navigation-fragment/src/main/java/androidx/navigation/fragment/NavHostFragment.kt
@@ -39,9 +39,8 @@
 /**
  * NavHostFragment provides an area within your layout for self-contained navigation to occur.
  *
- * NavHostFragment is intended to be used as the content area within a layout resource
- * defining your app's chrome around it, e.g.:
- *
+ * NavHostFragment is intended to be used as the content area within a layout resource defining your
+ * app's chrome around it, e.g.:
  * ```
  * <androidx.drawerlayout.widget.DrawerLayout
  * xmlns:android="http://schemas.android.com/apk/res/android"
@@ -62,23 +61,22 @@
  * </androidx.drawerlayout.widget.DrawerLayout>
  * ```
  *
- * Each NavHostFragment has a [NavController] that defines valid navigation within
- * the navigation host. This includes the [navigation graph][NavGraph] as well as navigation
- * state such as current location and back stack that will be saved and restored along with the
- * NavHostFragment itself.
+ * Each NavHostFragment has a [NavController] that defines valid navigation within the navigation
+ * host. This includes the [navigation graph][NavGraph] as well as navigation state such as current
+ * location and back stack that will be saved and restored along with the NavHostFragment itself.
  *
- * NavHostFragments register their navigation controller at the root of their view subtree
- * such that any descendant can obtain the controller instance through the [Navigation]
- * helper class's methods such as [Navigation.findNavController]. View event listener
- * implementations such as [android.view.View.OnClickListener] within navigation destination
- * fragments can use these helpers to navigate based on user interaction without creating a tight
- * coupling to the navigation host.
+ * NavHostFragments register their navigation controller at the root of their view subtree such that
+ * any descendant can obtain the controller instance through the [Navigation] helper class's methods
+ * such as [Navigation.findNavController]. View event listener implementations such as
+ * [android.view.View.OnClickListener] within navigation destination fragments can use these helpers
+ * to navigate based on user interaction without creating a tight coupling to the navigation host.
  */
 public open class NavHostFragment : Fragment(), NavHost {
     internal val navHostController: NavHostController by lazy {
-        val context = checkNotNull(context) {
-            "NavController cannot be created before the fragment is attached"
-        }
+        val context =
+            checkNotNull(context) {
+                "NavController cannot be created before the fragment is attached"
+            }
         NavHostController(context).apply {
             setLifecycleOwner(this@NavHostFragment)
             setViewModelStore(viewModelStore)
@@ -120,9 +118,9 @@
     private var defaultNavHost = false
 
     /**
-     * The [navigation controller][NavController] for this navigation host.
-     * This method will return null until this host fragment's [onCreate]
-     * has been called and it has had an opportunity to restore from a previous instance state.
+     * The [navigation controller][NavController] for this navigation host. This method will return
+     * null until this host fragment's [onCreate] has been called and it has had an opportunity to
+     * restore from a previous instance state.
      *
      * @return this host's navigation controller
      * @throws IllegalStateException if called before [onCreate]
@@ -138,9 +136,7 @@
         // but it can stay here until we can add the necessary attr resources to
         // the fragment lib.
         if (defaultNavHost) {
-            parentFragmentManager.beginTransaction()
-                .setPrimaryNavigationFragment(this)
-                .commit()
+            parentFragmentManager.beginTransaction().setPrimaryNavigationFragment(this).commit()
         }
     }
 
@@ -151,9 +147,7 @@
         if (savedInstanceState != null) {
             if (savedInstanceState.getBoolean(KEY_DEFAULT_NAV_HOST, false)) {
                 defaultNavHost = true
-                parentFragmentManager.beginTransaction()
-                    .setPrimaryNavigationFragment(this)
-                    .commit()
+                parentFragmentManager.beginTransaction().setPrimaryNavigationFragment(this).commit()
             }
         }
 
@@ -164,13 +158,12 @@
     }
 
     /**
-     * Callback for when the [NavHostController] is created. If you
-     * support any custom destination types, their [Navigator] should be added here to
-     * ensure it is available before the navigation graph is inflated / set.
+     * Callback for when the [NavHostController] is created. If you support any custom destination
+     * types, their [Navigator] should be added here to ensure it is available before the navigation
+     * graph is inflated / set.
      *
-     * This provides direct access to the host specific methods available on
-     * [NavHostController] such as
-     * [NavHostController.setOnBackPressedDispatcher].
+     * This provides direct access to the host specific methods available on [NavHostController]
+     * such as [NavHostController.setOnBackPressedDispatcher].
      *
      * By default, this adds a [DialogFragmentNavigator] and [FragmentNavigator].
      *
@@ -178,8 +171,8 @@
      * if the navController has not yet been called. This should not be called directly by
      * subclasses.
      *
-     * @param navHostController The newly created [NavHostController] that will be
-     * returned by [getNavController] after
+     * @param navHostController The newly created [NavHostController] that will be returned by
+     *   [getNavController] after
      */
     @Suppress("DEPRECATION")
     @CallSuper
@@ -188,9 +181,9 @@
     }
 
     /**
-     * Callback for when the [NavController][getNavController] is created. If you
-     * support any custom destination types, their [Navigator] should be added here to
-     * ensure it is available before the navigation graph is inflated / set.
+     * Callback for when the [NavController][getNavController] is created. If you support any custom
+     * destination types, their [Navigator] should be added here to ensure it is available before
+     * the navigation graph is inflated / set.
      *
      * By default, this adds a [DialogFragmentNavigator] and [FragmentNavigator].
      *
@@ -216,8 +209,8 @@
      * Create the FragmentNavigator that this NavHostFragment will use. By default, this uses
      * [FragmentNavigator], which replaces the entire contents of the NavHostFragment.
      *
-     * This is only called once in [onCreate] and should not be called directly by
-     * subclasses.
+     * This is only called once in [onCreate] and should not be called directly by subclasses.
+     *
      * @return a new instance of a FragmentNavigator
      */
     @Deprecated("Use {@link #onCreateNavController(NavController)}")
@@ -241,8 +234,8 @@
 
     /**
      * We specifically can't use [View.NO_ID] as the container ID (as we use
-     * [androidx.fragment.app.FragmentTransaction.add] under the hood),
-     * so we need to make sure we return a valid ID when asked for the container ID.
+     * [androidx.fragment.app.FragmentTransaction.add] under the hood), so we need to make sure we
+     * return a valid ID when asked for the container ID.
      *
      * @return a valid ID to be used to contain child fragments
      */
@@ -277,13 +270,9 @@
         savedInstanceState: Bundle?
     ) {
         super.onInflate(context, attrs, savedInstanceState)
-        context.obtainStyledAttributes(
-            attrs,
-            androidx.navigation.R.styleable.NavHost
-        ).use { navHost ->
-            val graphId = navHost.getResourceId(
-                androidx.navigation.R.styleable.NavHost_navGraph, 0
-            )
+        context.obtainStyledAttributes(attrs, androidx.navigation.R.styleable.NavHost).use { navHost
+            ->
+            val graphId = navHost.getResourceId(androidx.navigation.R.styleable.NavHost_navGraph, 0)
             if (graphId != 0) {
                 this.graphId = graphId
             }
@@ -315,13 +304,11 @@
     }
 
     public companion object {
-        /**
-         */
+        /**  */
         @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
         public const val KEY_GRAPH_ID: String = "android-support-nav:fragment:graphId"
 
-        /**
-         */
+        /**  */
         @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
         public const val KEY_START_DESTINATION_ARGS: String =
             "android-support-nav:fragment:startDestinationArgs"
@@ -332,16 +319,15 @@
         /**
          * Find a [NavController] given a local [Fragment].
          *
-         * This method will locate the [NavController] associated with this Fragment,
-         * looking first for a [NavHostFragment] along the given Fragment's parent chain.
-         * If a [NavController] is not found, this method will look for one along this
-         * Fragment's [view hierarchy][Fragment.getView] as specified by
-         * [Navigation.findNavController].
+         * This method will locate the [NavController] associated with this Fragment, looking first
+         * for a [NavHostFragment] along the given Fragment's parent chain. If a [NavController] is
+         * not found, this method will look for one along this Fragment's
+         * [view hierarchy][Fragment.getView] as specified by [Navigation.findNavController].
          *
          * @param fragment the locally scoped Fragment for navigation
          * @return the locally scoped [NavController] for navigating from this [Fragment]
-         * @throws IllegalStateException if the given Fragment does not correspond with a
-         * [NavHost] or is not within a NavHost.
+         * @throws IllegalStateException if the given Fragment does not correspond with a [NavHost]
+         *   or is not within a NavHost.
          */
         @JvmStatic
         public fun findNavController(fragment: Fragment): NavController {
@@ -350,8 +336,8 @@
                 if (findFragment is NavHostFragment) {
                     return findFragment.navHostController
                 }
-                val primaryNavFragment = findFragment.parentFragmentManager
-                    .primaryNavigationFragment
+                val primaryNavFragment =
+                    findFragment.parentFragmentManager.primaryNavigationFragment
                 if (primaryNavFragment is NavHostFragment) {
                     return primaryNavFragment.navHostController
                 }
diff --git a/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetector.kt b/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetector.kt
index 1ad931c..04d5c49 100644
--- a/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetector.kt
+++ b/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetector.kt
@@ -32,9 +32,7 @@
 import java.util.Collections
 import org.w3c.dom.Element
 
-/**
- * Lint check for detecting use of <deeplink> inside of <activity>.
- */
+/** Lint check for detecting use of <deeplink> inside of <activity>. */
 class DeepLinkInActivityDestinationDetector : ResourceXmlDetector() {
 
     override fun appliesTo(folderType: ResourceFolderType): Boolean {
@@ -45,33 +43,41 @@
 
     override fun visitElement(context: XmlContext, element: Element) {
         if (element.parentNode?.nodeName == TAG_ACTIVITY) {
-            val incident = Incident(context)
-                .issue(DeepLinkInActivityDestination)
-                .location(context.getLocation(element))
-                .message("Do not attach a <deeplink> to an <activity> destination. " +
-                    "Attach the deeplink directly to the second activity or the start " +
-                    "destination of a nav host in the second activity instead.")
+            val incident =
+                Incident(context)
+                    .issue(DeepLinkInActivityDestination)
+                    .location(context.getLocation(element))
+                    .message(
+                        "Do not attach a <deeplink> to an <activity> destination. " +
+                            "Attach the deeplink directly to the second activity or the start " +
+                            "destination of a nav host in the second activity instead."
+                    )
             context.report(incident)
         }
     }
 
     companion object {
-        val DeepLinkInActivityDestination = Issue.create(
-            id = "DeepLinkInActivityDestination",
-            briefDescription = "A <deeplink> should not be attached to an <activity> destination",
-            explanation = """Attaching a <deeplink> to an <activity> destination will never give \
+        val DeepLinkInActivityDestination =
+            Issue.create(
+                id = "DeepLinkInActivityDestination",
+                briefDescription =
+                    "A <deeplink> should not be attached to an <activity> destination",
+                explanation =
+                    """Attaching a <deeplink> to an <activity> destination will never give \
                 the right behavior when using an implicit deep link on another app's task \
                 (where the system back should immediately take the user back to the app that \
                 triggered the deep link). Instead, attach the deep link directly to \
                 the second activity (either by manually writing the appropriate <intent-filter> \
                 or by adding the <deeplink> to the start destination of a nav host in that second \
                 activity).""",
-            category = Category.CORRECTNESS,
-            severity = Severity.WARNING,
-            implementation = Implementation(
-                DeepLinkInActivityDestinationDetector::class.java, Scope.RESOURCE_FILE_SCOPE
-            ),
-            androidSpecific = true
-        )
+                category = Category.CORRECTNESS,
+                severity = Severity.WARNING,
+                implementation =
+                    Implementation(
+                        DeepLinkInActivityDestinationDetector::class.java,
+                        Scope.RESOURCE_FILE_SCOPE
+                    ),
+                androidSpecific = true
+            )
     }
 }
diff --git a/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/NavigationRuntimeIssueRegistry.kt b/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/NavigationRuntimeIssueRegistry.kt
index 48b846a..ceb86a7 100644
--- a/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/NavigationRuntimeIssueRegistry.kt
+++ b/navigation/navigation-runtime-lint/src/main/java/androidx/navigation/runtime/lint/NavigationRuntimeIssueRegistry.kt
@@ -22,19 +22,18 @@
 import com.android.tools.lint.client.api.Vendor
 import com.android.tools.lint.detector.api.CURRENT_API
 
-/**
- * [IssueRegistry] containing runtime specific lint issues.
- */
+/** [IssueRegistry] containing runtime specific lint issues. */
 class NavigationRuntimeIssueRegistry : IssueRegistry() {
     // Tests are run with this version. We ensure that with ApiLintVersionsTest
     override val api = 14
     override val minApi = CURRENT_API
-    override val issues get() = listOf(
-        DeepLinkInActivityDestinationDetector.DeepLinkInActivityDestination
-    )
-    override val vendor = Vendor(
-        feedbackUrl = "https://issuetracker.google.com/issues/new?component=409828",
-        vendorName = "Android Open Source Project",
-        identifier = "androidx.navigation.runtime"
-    )
+    override val issues
+        get() = listOf(DeepLinkInActivityDestinationDetector.DeepLinkInActivityDestination)
+
+    override val vendor =
+        Vendor(
+            feedbackUrl = "https://issuetracker.google.com/issues/new?component=409828",
+            vendorName = "Android Open Source Project",
+            identifier = "androidx.navigation.runtime"
+        )
 }
diff --git a/navigation/navigation-runtime-lint/src/test/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetectorTest.kt b/navigation/navigation-runtime-lint/src/test/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetectorTest.kt
index b6215a9..24d631e 100644
--- a/navigation/navigation-runtime-lint/src/test/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetectorTest.kt
+++ b/navigation/navigation-runtime-lint/src/test/java/androidx/navigation/runtime/lint/DeepLinkInActivityDestinationDetectorTest.kt
@@ -34,9 +34,11 @@
 
     @Test
     fun expectPass() {
-        lint().files(
-            xml("res/navigation/nav_main.xml",
-                """
+        lint()
+            .files(
+                xml(
+                    "res/navigation/nav_main.xml",
+                    """
 <navigation xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/nav_main"
@@ -57,17 +59,19 @@
 
 </navigation>
             """
+                )
             )
-        )
             .run()
             .expectClean()
     }
 
     @Test
     fun expectFail() {
-        lint().files(
-            xml("res/navigation/nav_main.xml",
-                """
+        lint()
+            .files(
+                xml(
+                    "res/navigation/nav_main.xml",
+                    """
 <navigation xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/nav_main"
@@ -88,11 +92,12 @@
 
 </navigation>
             """
+                )
             )
-        )
             .skipTestModes(TestMode.SUPPRESSIBLE) // b/257336973
             .run()
-            .expect("""
+            .expect(
+                """
 res/navigation/nav_main.xml:17: Warning: Do not attach a <deeplink> to an <activity> destination. Attach the deeplink directly to the second activity or the start destination of a nav host in the second activity instead. [DeepLinkInActivityDestination]
         <deepLink app:uri="www.example.com" />
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -103,9 +108,11 @@
 
     @Test
     fun expectCleanSuppress() {
-        lint().files(
-            xml("res/navigation/nav_main.xml",
-            """
+        lint()
+            .files(
+                xml(
+                    "res/navigation/nav_main.xml",
+                    """
 <navigation xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     xmlns:tools="http://schemas.android.com/tools"
@@ -127,8 +134,8 @@
 
 </navigation>
             """
+                )
             )
-        )
             .run()
             .expectClean()
     }
diff --git a/navigation/navigation-runtime-truth/src/androidTest/java/androidx/navigation/truth/NavControllerSubjectTest.kt b/navigation/navigation-runtime-truth/src/androidTest/java/androidx/navigation/truth/NavControllerSubjectTest.kt
index 10caf31..998ffde 100644
--- a/navigation/navigation-runtime-truth/src/androidTest/java/androidx/navigation/truth/NavControllerSubjectTest.kt
+++ b/navigation/navigation-runtime-truth/src/androidTest/java/androidx/navigation/truth/NavControllerSubjectTest.kt
@@ -35,10 +35,11 @@
     @UiThreadTest
     @Before
     fun setUp() {
-        navController = NavController(ApplicationProvider.getApplicationContext()).apply {
-            navigatorProvider += TestNavigator()
-            setGraph(R.navigation.test_graph)
-        }
+        navController =
+            NavController(ApplicationProvider.getApplicationContext()).apply {
+                navigatorProvider += TestNavigator()
+                setGraph(R.navigation.test_graph)
+            }
     }
 
     @Test
@@ -48,13 +49,8 @@
 
     @Test
     fun testIsCurrentDestinationFailure() {
-        with(
-            assertThrows {
-                assertThat(navController).isCurrentDestination(R.id.second_test)
-            }
-        ) {
-            factValue("expected id")
-                .isEqualTo("0x${R.id.second_test.toString(16)}")
+        with(assertThrows { assertThat(navController).isCurrentDestination(R.id.second_test) }) {
+            factValue("expected id").isEqualTo("0x${R.id.second_test.toString(16)}")
             factValue("but was")
                 .isEqualTo("0x${navController.currentDestination?.id?.toString(16)}")
             factValue("current destination is")
@@ -69,17 +65,10 @@
 
     @Test
     fun testIsGraphFailure() {
-        with(
-            assertThrows {
-                assertThat(navController).isGraph(R.id.second_test_graph)
-            }
-        ) {
-            factValue("expected id")
-                .isEqualTo("0x${R.id.second_test_graph.toString(16)}")
-            factValue("but was")
-                .isEqualTo("0x${navController.graph.id.toString(16)}")
-            factValue("current graph is")
-                .isEqualTo(navController.graph.toString())
+        with(assertThrows { assertThat(navController).isGraph(R.id.second_test_graph) }) {
+            factValue("expected id").isEqualTo("0x${R.id.second_test_graph.toString(16)}")
+            factValue("but was").isEqualTo("0x${navController.graph.id.toString(16)}")
+            factValue("current graph is").isEqualTo(navController.graph.toString())
         }
     }
 }
diff --git a/navigation/navigation-runtime-truth/src/main/java/androidx/navigation/truth/NavControllerSubject.kt b/navigation/navigation-runtime-truth/src/main/java/androidx/navigation/truth/NavControllerSubject.kt
index bbbb6c0..8e23a53 100644
--- a/navigation/navigation-runtime-truth/src/main/java/androidx/navigation/truth/NavControllerSubject.kt
+++ b/navigation/navigation-runtime-truth/src/main/java/androidx/navigation/truth/NavControllerSubject.kt
@@ -24,17 +24,14 @@
 import com.google.common.truth.Subject
 import com.google.common.truth.Truth.assertAbout
 
-/**
- * A Truth Subject for making assertions about [NavController].
- */
-class NavControllerSubject private constructor(
-    metadata: FailureMetadata,
-    private val actual: NavController
-) : Subject(metadata, actual) {
+/** A Truth Subject for making assertions about [NavController]. */
+class NavControllerSubject
+private constructor(metadata: FailureMetadata, private val actual: NavController) :
+    Subject(metadata, actual) {
 
     /**
-     * Assert that the [NavController] has the given current destination
-     * in its [androidx.navigation.NavGraph].
+     * Assert that the [NavController] has the given current destination in its
+     * [androidx.navigation.NavGraph].
      *
      * @param navDest The ID resource of a [androidx.navigation.NavDestination]
      */
@@ -50,8 +47,8 @@
     }
 
     /**
-     * Assert that the [NavController] has the given [androidx.navigation.NavGraph] as
-     * its current graph.
+     * Assert that the [NavController] has the given [androidx.navigation.NavGraph] as its current
+     * graph.
      *
      * @param navGraph The ID resource of a [androidx.navigation.NavGraph]
      */
@@ -68,10 +65,10 @@
 
     companion object {
         @SuppressLint("MemberVisibilityCanBePrivate")
-        val factory = Factory<NavControllerSubject, NavController> {
-            metadata, actual ->
-            NavControllerSubject(metadata, actual)
-        }
+        val factory =
+            Factory<NavControllerSubject, NavController> { metadata, actual ->
+                NavControllerSubject(metadata, actual)
+            }
 
         @JvmStatic
         fun assertThat(actual: NavController): NavControllerSubject {
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorDestinationBuilderTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorDestinationBuilderTest.kt
index 130d596..b8bb4aa 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorDestinationBuilderTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorDestinationBuilderTest.kt
@@ -34,11 +34,10 @@
     @Suppress("DEPRECATION")
     @Test
     fun activity() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                label = LABEL
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -50,11 +49,10 @@
     @Suppress("DEPRECATION")
     @Test
     fun activityPackage() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                targetPackage = PACKAGE_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) { targetPackage = PACKAGE_NAME }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -66,11 +64,10 @@
     @Suppress("DEPRECATION")
     @Test
     fun activityClass() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                activityClass = TestActivity::class
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) { activityClass = TestActivity::class }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -82,11 +79,10 @@
     @Suppress("DEPRECATION")
     @Test
     fun action() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                action = ACTION
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) { action = ACTION }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -98,11 +94,10 @@
     @Suppress("DEPRECATION")
     @Test
     fun data() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                data = DATA
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) { data = DATA }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -114,11 +109,10 @@
     @Suppress("DEPRECATION")
     @Test
     fun dataPattern() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            activity(DESTINATION_ID) {
-                dataPattern = DATA_PATTERN
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) {
+                activity(DESTINATION_ID) { dataPattern = DATA_PATTERN }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
@@ -129,11 +123,10 @@
 
     @Test
     fun activityRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                label = LABEL
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -144,11 +137,10 @@
 
     @Test
     fun activityPackageRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                targetPackage = PACKAGE_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) { targetPackage = PACKAGE_NAME }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -159,11 +151,10 @@
 
     @Test
     fun activityClassRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                activityClass = TestActivity::class
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) { activityClass = TestActivity::class }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -174,11 +165,10 @@
 
     @Test
     fun actionRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                action = ACTION
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) { action = ACTION }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -189,11 +179,10 @@
 
     @Test
     fun dataRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                data = DATA
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) { data = DATA }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -204,11 +193,10 @@
 
     @Test
     fun dataPatternRoute() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity(DESTINATION_ROUTE) {
-                dataPattern = DATA_PATTERN
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity(DESTINATION_ROUTE) { dataPattern = DATA_PATTERN }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ROUTE in graph)
             .isTrue()
@@ -219,11 +207,10 @@
 
     @Test
     fun activityKClass() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity<TestClass> {
-                label = LABEL
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity<TestClass> { label = LABEL }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -234,11 +221,10 @@
 
     @Test
     fun activityPackageKClass() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity<TestClass> {
-                targetPackage = PACKAGE_NAME
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity<TestClass> { targetPackage = PACKAGE_NAME }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -249,11 +235,10 @@
 
     @Test
     fun activityClassKClass() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity<TestClass> {
-                activityClass = TestActivity::class
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity<TestClass> { activityClass = TestActivity::class }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -264,11 +249,10 @@
 
     @Test
     fun actionKClass() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity<TestClass> {
-                action = ACTION
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity<TestClass> { action = ACTION }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -279,11 +263,10 @@
 
     @Test
     fun dataKClass() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity<TestClass> {
-                data = DATA
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity<TestClass> { data = DATA }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
@@ -294,11 +277,10 @@
 
     @Test
     fun dataPatternKClass() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ROUTE) {
-            activity<TestClass> {
-                dataPattern = DATA_PATTERN
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ROUTE) {
+                activity<TestClass> { dataPattern = DATA_PATTERN }
             }
-        }
         assertWithMessage("Destination should be added to the graph")
             .that(TestClass::class in graph)
             .isTrue()
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorExtrasTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorExtrasTest.kt
index c244438..339bb4a 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorExtrasTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorExtrasTest.kt
@@ -38,8 +38,6 @@
             .that(extras.activityOptions)
             .isSameInstanceAs(activityOptions)
         assertThat(extras.activityOptions).isSameInstanceAs(activityOptions)
-        assertWithMessage("Flags should be passed through")
-            .that(extras.flags)
-            .isEqualTo(flags)
+        assertWithMessage("Flags should be passed through").that(extras.flags).isEqualTo(flags)
     }
 }
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorTest.kt
index fb24f725..98bf240 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityNavigatorTest.kt
@@ -74,9 +74,7 @@
 
     @After
     fun cleanup() {
-        TargetActivity.instances.forEach { activity ->
-            activity.finish()
-        }
+        TargetActivity.instances.forEach { activity -> activity.finish() }
     }
 
     @Test(expected = UnsupportedOperationException::class)
@@ -87,10 +85,11 @@
 
     @Test
     fun navigate() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         activityNavigator.navigate(targetDestination, null, null, null)
 
         val targetActivity = waitForActivity()
@@ -106,10 +105,11 @@
         // Create using the applicationContext
         val activityNavigator = ActivityNavigator(activityRule.activity.applicationContext)
 
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         activityNavigator.navigate(targetDestination, null, null, null)
 
         val targetActivity = waitForActivity()
@@ -122,15 +122,15 @@
 
     @Test
     fun navigateSingleTop() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         activityNavigator.navigate(
-            targetDestination, null,
-            navOptions {
-                launchSingleTop = true
-            },
+            targetDestination,
+            null,
+            navOptions { launchSingleTop = true },
             null
         )
 
@@ -144,14 +144,13 @@
 
     @Test
     fun navigateWithArgs() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
 
-        val args = Bundle().apply {
-            putString(TARGET_ARGUMENT_NAME, TARGET_ARGUMENT_VALUE)
-        }
+        val args = Bundle().apply { putString(TARGET_ARGUMENT_NAME, TARGET_ARGUMENT_VALUE) }
         activityNavigator.navigate(targetDestination, args, null, null)
 
         val targetActivity = waitForActivity()
@@ -164,11 +163,12 @@
 
     @Test
     fun navigateAction() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setAction(TARGET_ACTION)
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setAction(TARGET_ACTION)
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         activityNavigator.navigate(targetDestination, null, null, null)
 
         val targetActivity = waitForActivity()
@@ -181,31 +181,29 @@
 
     @Test
     fun navigateData() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setData(TARGET_DATA)
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setData(TARGET_DATA)
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         activityNavigator.navigate(targetDestination, null, null, null)
 
         val targetActivity = waitForActivity()
         val intent = targetActivity.intent
         assertThat(intent).isNotNull()
-        assertWithMessage("Intent should have data set")
-            .that(intent.data)
-            .isEqualTo(TARGET_DATA)
+        assertWithMessage("Intent should have data set").that(intent.data).isEqualTo(TARGET_DATA)
     }
 
     @Test
     fun navigateDataPattern() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setDataPattern(TARGET_DATA_PATTERN)
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
-        val args = Bundle().apply {
-            putString(TARGET_ARGUMENT_NAME, TARGET_ARGUMENT_VALUE)
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setDataPattern(TARGET_DATA_PATTERN)
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
+        val args = Bundle().apply { putString(TARGET_ARGUMENT_NAME, TARGET_ARGUMENT_VALUE) }
         activityNavigator.navigate(targetDestination, args, null, null)
 
         val targetActivity = waitForActivity()
@@ -214,10 +212,7 @@
         assertWithMessage("Intent should have data set with argument filled in")
             .that(intent.data?.toString())
             .isEqualTo(
-                TARGET_DATA_PATTERN.replace(
-                    "{$TARGET_ARGUMENT_NAME}",
-                    TARGET_ARGUMENT_VALUE
-                )
+                TARGET_DATA_PATTERN.replace("{$TARGET_ARGUMENT_NAME}", TARGET_ARGUMENT_VALUE)
             )
         assertWithMessage("Intent should have its arguments in its extras")
             .that(intent.getStringExtra(TARGET_ARGUMENT_NAME))
@@ -226,14 +221,13 @@
 
     @Test
     fun navigateDataPatternInt() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setDataPattern(TARGET_DATA_PATTERN)
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
-        val args = Bundle().apply {
-            putInt(TARGET_ARGUMENT_NAME, TARGET_ARGUMENT_INT_VALUE)
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setDataPattern(TARGET_DATA_PATTERN)
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
+        val args = Bundle().apply { putInt(TARGET_ARGUMENT_NAME, TARGET_ARGUMENT_INT_VALUE) }
         activityNavigator.navigate(targetDestination, args, null, null)
 
         val targetActivity = waitForActivity()
@@ -254,11 +248,12 @@
 
     @Test
     fun navigateDataPatternMissingArgument() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setDataPattern(TARGET_DATA_PATTERN)
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setDataPattern(TARGET_DATA_PATTERN)
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         try {
             val args = Bundle()
             activityNavigator.navigate(targetDestination, args, null, null)
@@ -275,138 +270,141 @@
         val context = mock(Context::class.java)
         val view = mock(View::class.java)
         val activityNavigator = ActivityNavigator(context)
-        val activityOptions = ActivityOptionsCompat.makeSceneTransitionAnimation(
-            activityRule.activity,
-            view,
-            "test"
-        )
+        val activityOptions =
+            ActivityOptionsCompat.makeSceneTransitionAnimation(activityRule.activity, view, "test")
         val flags = Intent.FLAG_ACTIVITY_CLEAR_TASK
-        val extras = ActivityNavigator.Extras.Builder()
-            .setActivityOptions(activityOptions)
-            .addFlags(flags)
-            .build()
+        val extras =
+            ActivityNavigator.Extras.Builder()
+                .setActivityOptions(activityOptions)
+                .addFlags(flags)
+                .build()
 
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         activityNavigator.navigate(targetDestination, null, null, extras)
         // Just verify that the ActivityOptions got passed through, there's
         // CTS tests to ensure that the ActivityOptions do the right thing
-        verify(context).startActivity(
-            argThat { intent ->
-                intent.flags and flags != 0
-            },
-            refEq(activityOptions.toBundle())
-        )
+        verify(context)
+            .startActivity(
+                argThat { intent -> intent.flags and flags != 0 },
+                refEq(activityOptions.toBundle())
+            )
     }
 
     @Test
     fun testEquals() {
-        val firstDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
-        val secondDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val firstDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
+        val secondDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         assertThat(firstDestination).isEqualTo(secondDestination)
     }
 
     @Test
     fun testFilterEquals() {
-        val firstDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
-        val secondDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-            intent!!.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
-        }
+        val firstDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
+        val secondDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+                intent!!.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
+            }
         assertThat(firstDestination).isEqualTo(secondDestination)
     }
 
     @Test
     fun testEqualsBothIntentNull() {
-        val firstDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-        }
-        val secondDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-        }
+        val firstDestination = activityNavigator.createDestination().apply { id = TARGET_ID }
+        val secondDestination = activityNavigator.createDestination().apply { id = TARGET_ID }
         assertThat(firstDestination).isEqualTo(secondDestination)
     }
 
     @Test
     fun testNotEquals() {
-        val firstDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
-        val secondDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-            setAction(TARGET_ACTION)
-        }
+        val firstDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
+        val secondDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+                setAction(TARGET_ACTION)
+            }
         assertThat(firstDestination).isNotEqualTo(secondDestination)
     }
 
     @Test
     fun testNotEqualsFirstIntentNull() {
-        val firstDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-        }
-        val secondDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
+        val firstDestination = activityNavigator.createDestination().apply { id = TARGET_ID }
+        val secondDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
         assertThat(firstDestination).isNotEqualTo(secondDestination)
     }
 
     @Test
     fun testNotEqualsSecondIntentNull() {
-        val firstDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
-        val secondDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-        }
+        val firstDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
+        val secondDestination = activityNavigator.createDestination().apply { id = TARGET_ID }
         assertThat(firstDestination).isNotEqualTo(secondDestination)
     }
 
     @Test
     fun testToString() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            label = TARGET_LABEL
-            setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
-        }
-        val expected = "Destination(0x${TARGET_ID.toString(16)}) label=$TARGET_LABEL " +
-            "class=${TargetActivity::class.java.name}"
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                label = TARGET_LABEL
+                setComponentName(ComponentName(activityRule.activity, TargetActivity::class.java))
+            }
+        val expected =
+            "Destination(0x${TARGET_ID.toString(16)}) label=$TARGET_LABEL " +
+                "class=${TargetActivity::class.java.name}"
         assertThat(targetDestination.toString()).isEqualTo(expected)
     }
 
     @Test
     fun testToStringNoClass() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            label = TARGET_LABEL
-            setAction(TARGET_ACTION)
-        }
-        val expected = "Destination(0x${TARGET_ID.toString(16)}) label=$TARGET_LABEL " +
-            "action=$TARGET_ACTION"
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                label = TARGET_LABEL
+                setAction(TARGET_ACTION)
+            }
+        val expected =
+            "Destination(0x${TARGET_ID.toString(16)}) label=$TARGET_LABEL " +
+                "action=$TARGET_ACTION"
         assertThat(targetDestination.toString()).isEqualTo(expected)
     }
 
     @Test
     fun testToStringNoClassOrAction() {
-        val targetDestination = activityNavigator.createDestination().apply {
-            id = TARGET_ID
-            label = TARGET_LABEL
-        }
+        val targetDestination =
+            activityNavigator.createDestination().apply {
+                id = TARGET_ID
+                label = TARGET_LABEL
+            }
         val expected = "Destination(0x${TARGET_ID.toString(16)}) label=$TARGET_LABEL"
         assertThat(targetDestination.toString()).isEqualTo(expected)
     }
@@ -415,9 +413,7 @@
         verify(TargetActivity.instances, timeout(3000)).add(any())
         verifyNoMoreInteractions(TargetActivity.instances)
         val targetActivity: ArrayList<TargetActivity> = ArrayList()
-        activityRule.runOnUiThread {
-            targetActivity.addAll(TargetActivity.instances)
-        }
+        activityRule.runOnUiThread { targetActivity.addAll(TargetActivity.instances) }
         assertWithMessage("Only expected a single TargetActivity")
             .that(targetActivity.size == 1)
             .isTrue()
@@ -426,6 +422,7 @@
 }
 
 class ActivityNavigatorActivity : Activity()
+
 class TargetActivity : Activity() {
     companion object {
         var instances: ArrayList<TargetActivity> = spy(ArrayList())
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityTest.kt
index 5ecaa23..8165ec5 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ActivityTest.kt
@@ -30,21 +30,25 @@
 @LargeTest
 class ActivityTest {
     @Suppress("DEPRECATION")
-    @get:Rule val activityRule = androidx.test.rule.ActivityTestRule<TestArgsActivity>(
-        TestArgsActivity::class.java
-    )
-    private val view get() = activityRule.activity.findViewById<View>(VIEW_ID)
+    @get:Rule
+    val activityRule =
+        androidx.test.rule.ActivityTestRule<TestArgsActivity>(TestArgsActivity::class.java)
+    private val view
+        get() = activityRule.activity.findViewById<View>(VIEW_ID)
 
-    @Test fun findNavController() {
+    @Test
+    fun findNavController() {
         val navController = NavController(activityRule.activity)
         Navigation.setViewNavController(view, navController)
 
         val foundNavController = activityRule.activity.findNavController(VIEW_ID)
         assertWithMessage("View should have NavController set")
-            .that(foundNavController).isSameInstanceAs(navController)
+            .that(foundNavController)
+            .isSameInstanceAs(navController)
     }
 
-    @Test fun findNavControllerNull() {
+    @Test
+    fun findNavControllerNull() {
         try {
             activityRule.activity.findNavController(VIEW_ID)
             fail(
@@ -56,7 +60,8 @@
         }
     }
 
-    @Test fun findNavControllerInvalidViewId() {
+    @Test
+    fun findNavControllerInvalidViewId() {
         try {
             activityRule.activity.findNavController(INVALID_VIEW_ID)
             fail(
@@ -69,34 +74,33 @@
     }
 
     @Suppress("DEPRECATION")
-    @Test fun navArgsLazy() {
+    @Test
+    fun navArgsLazy() {
         // Normally, this would be set by using an <activity> destination to
         // start the Activity, but we'll fake it here in the test
-        activityRule.activity.intent = Intent(
-            activityRule.activity, TestArgsActivity::class.java
-        ).apply {
-            putExtra("test", "test")
-        }
-        assertThat(activityRule.activity.args)
-            .isNotNull()
-        assertThat(activityRule.activity.args.bundle["test"])
-            .isEqualTo("test")
+        activityRule.activity.intent =
+            Intent(activityRule.activity, TestArgsActivity::class.java).apply {
+                putExtra("test", "test")
+            }
+        assertThat(activityRule.activity.args).isNotNull()
+        assertThat(activityRule.activity.args.bundle["test"]).isEqualTo("test")
     }
 
-    @Test fun navArgsLazyNoExtras() {
+    @Test
+    fun navArgsLazyNoExtras() {
         // Normally, this would be set by using an <activity> destination to
         // start the Activity, but we'll fake it here in the test
-        activityRule.activity.intent = Intent(
-            activityRule.activity, TestArgsActivity::class.java
-        )
+        activityRule.activity.intent = Intent(activityRule.activity, TestArgsActivity::class.java)
         try {
             activityRule.activity.args
             fail("by navArgs() should throw an IllegalStateException when there are no extras")
         } catch (e: IllegalStateException) {
-            assertThat(e).hasMessageThat().isEqualTo(
-                "Activity ${activityRule.activity} has null extras in " +
-                    activityRule.activity.intent
-            )
+            assertThat(e)
+                .hasMessageThat()
+                .isEqualTo(
+                    "Activity ${activityRule.activity} has null extras in " +
+                        activityRule.activity.intent
+                )
         }
     }
 }
@@ -105,25 +109,20 @@
 private const val INVALID_VIEW_ID = 2
 
 /**
- * It is a lot harder to test generated NavArgs classes, so
- * we'll just fake one that has the same fromBundle method
- * that NavArgsLazy expects
+ * It is a lot harder to test generated NavArgs classes, so we'll just fake one that has the same
+ * fromBundle method that NavArgsLazy expects
  */
 data class FakeTestArgs(val bundle: Bundle) : NavArgs {
     companion object {
-        @JvmStatic
-        fun fromBundle(bundle: Bundle) = FakeTestArgs(bundle)
+        @JvmStatic fun fromBundle(bundle: Bundle) = FakeTestArgs(bundle)
     }
 }
+
 class TestArgsActivity : Activity() {
     val args: FakeTestArgs by navArgs()
 
     override fun onCreate(savedInstanceState: Bundle?) {
         super.onCreate(savedInstanceState)
-        setContentView(
-            View(this).apply {
-                id = VIEW_ID
-            }
-        )
+        setContentView(View(this).apply { id = VIEW_ID })
     }
 }
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/FloatingWindowTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/FloatingWindowTest.kt
index c324e80..d23595a 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/FloatingWindowTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/FloatingWindowTest.kt
@@ -36,24 +36,18 @@
     fun testNavigateFloatingToNotFloating() {
         val navController = createNavController()
         navController.setGraph(R.navigation.nav_floating)
-        val floatingNavigator = navController.navigatorProvider.getNavigator(
-            FloatingTestNavigator::class.java
-        )
+        val floatingNavigator =
+            navController.navigatorProvider.getNavigator(FloatingTestNavigator::class.java)
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(floatingNavigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(floatingNavigator.backStack.size).isEqualTo(1)
 
         navController.navigate(R.id.second_test)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
         // FloatingWindow destination should be popped after navigate()
         // to a not FloatingWindow
-        assertThat(floatingNavigator.backStack.size)
-            .isEqualTo(0)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(floatingNavigator.backStack.size).isEqualTo(0)
+        assertThat(navigator.backStack.size).isEqualTo(1)
     }
 
     @UiThreadTest
@@ -61,21 +55,16 @@
     fun testNavigateFloatingToFloating() {
         val navController = createNavController()
         navController.setGraph(R.navigation.nav_floating)
-        val floatingNavigator = navController.navigatorProvider.getNavigator(
-            FloatingTestNavigator::class.java
-        )
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(floatingNavigator.backStack.size)
-            .isEqualTo(1)
+        val floatingNavigator =
+            navController.navigatorProvider.getNavigator(FloatingTestNavigator::class.java)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(floatingNavigator.backStack.size).isEqualTo(1)
 
         navController.navigate(R.id.floating_test)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.floating_test)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.floating_test)
         // FloatingWindow destination should be kept when
         // navigating to a second FloatingWindow destination
-        assertThat(floatingNavigator.backStack.size)
-            .isEqualTo(2)
+        assertThat(floatingNavigator.backStack.size).isEqualTo(2)
     }
 
     @UiThreadTest
@@ -83,30 +72,22 @@
     fun testNavigateFloating2xToNotFloating() {
         val navController = createNavController()
         navController.setGraph(R.navigation.nav_floating)
-        val floatingNavigator = navController.navigatorProvider.getNavigator(
-            FloatingTestNavigator::class.java
-        )
+        val floatingNavigator =
+            navController.navigatorProvider.getNavigator(FloatingTestNavigator::class.java)
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(floatingNavigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(floatingNavigator.backStack.size).isEqualTo(1)
 
         navController.navigate(R.id.floating_test)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.floating_test)
-        assertThat(floatingNavigator.backStack.size)
-            .isEqualTo(2)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.floating_test)
+        assertThat(floatingNavigator.backStack.size).isEqualTo(2)
 
         navController.navigate(R.id.second_test)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
         // FloatingWindow destinations should be popped after navigate()
         // to a not FloatingWindow
-        assertThat(floatingNavigator.backStack.size)
-            .isEqualTo(0)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(floatingNavigator.backStack.size).isEqualTo(0)
+        assertThat(navigator.backStack.size).isEqualTo(1)
     }
 
     private fun createNavController(): NavController {
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryLifecycleTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryLifecycleTest.kt
index 9c1db71..b393c43 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryLifecycleTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryLifecycleTest.kt
@@ -46,21 +46,17 @@
 @RunWith(AndroidJUnit4::class)
 class NavBackStackEntryLifecycleTest {
 
-    /**
-     * Test that navigating between siblings correctly stops the previous sibling.
-     */
+    /** Test that navigating between siblings correctly stops the previous sibling. */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycle() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-            test(R.id.second_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+                test(R.id.second_test)
+            }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -113,11 +109,12 @@
     @Suppress("DEPRECATION", "EXPERIMENTAL_API_USAGE")
     fun visibleEntriesFlow() = runBlocking {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = 1) {
-            test(1)
-            test(2)
-            test(3)
-        }
+        navController.graph =
+            navController.createGraph(startDestination = 1) {
+                test(1)
+                test(2)
+                test(3)
+            }
 
         navController.visibleEntries
             .take(navController.graph.count())
@@ -141,11 +138,12 @@
     fun visibleEntriesFlowChangedLifecycle() = runBlocking {
         val owner = TestLifecycleOwner(Lifecycle.State.RESUMED)
         val navController = createNavController(owner)
-        navController.graph = navController.createGraph(startDestination = 1) {
-            test(1)
-            test(2)
-            test(3)
-        }
+        navController.graph =
+            navController.createGraph(startDestination = 1) {
+                test(1)
+                test(2)
+                test(3)
+            }
 
         owner.currentState = Lifecycle.State.CREATED
 
@@ -174,13 +172,11 @@
     @Test
     fun testLifecycleWithDialog() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-            dialog(R.id.second_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+                dialog(R.id.second_test)
+            }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -228,22 +224,21 @@
             .isEqualTo(Lifecycle.State.DESTROYED)
     }
 
-    /**
-     * Test that all visible floating windows underneath the top one are marked started.
-     */
+    /** Test that all visible floating windows underneath the top one are marked started. */
     @UiThreadTest
     @Test
     fun testLifecycleWithConsecutiveDialogs() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph",
-            startDestination = "start"
-        ) {
-            test("start")
-            dialog("bottomDialog")
-            dialog("midDialog")
-            dialog("topDialog")
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "start"
+            ) {
+                test("start")
+                dialog("bottomDialog")
+                dialog("midDialog")
+                dialog("topDialog")
+            }
         navController.graph = navGraph
 
         val graphEntry = navController.getBackStackEntry("graph")
@@ -277,18 +272,19 @@
     @Test
     fun testLifecycleWithDialogsAndGraphs() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph",
-            startDestination = "firstNested"
-        ) {
-            navigation(route = "firstNested", startDestination = "bottomDialog") {
-                dialog(route = "bottomDialog")
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "firstNested"
+            ) {
+                navigation(route = "firstNested", startDestination = "bottomDialog") {
+                    dialog(route = "bottomDialog")
+                }
+                navigation(route = "secondNested", startDestination = "midDialog") {
+                    dialog(route = "midDialog")
+                    dialog(route = "topDialog")
+                }
             }
-            navigation(route = "secondNested", startDestination = "midDialog") {
-                dialog(route = "midDialog")
-                dialog(route = "topDialog")
-            }
-        }
 
         navController.graph = navGraph
 
@@ -322,18 +318,19 @@
     @Test
     fun testLifecycleWithDialogsAndGraphsOrdering() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph",
-            startDestination = "firstNested"
-        ) {
-            navigation(route = "firstNested", startDestination = "bottomDialog") {
-                dialog(route = "bottomDialog")
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "firstNested"
+            ) {
+                navigation(route = "firstNested", startDestination = "bottomDialog") {
+                    dialog(route = "bottomDialog")
+                }
+                navigation(route = "secondNested", startDestination = "midDialog") {
+                    dialog(route = "midDialog")
+                    dialog(route = "topDialog")
+                }
             }
-            navigation(route = "secondNested", startDestination = "midDialog") {
-                dialog(route = "midDialog")
-                dialog(route = "topDialog")
-            }
-        }
 
         navController.graph = navGraph
 
@@ -351,34 +348,29 @@
         val midDialog = navController.getBackStackEntry("midDialog")
         val midDialogObserver = mock(LifecycleEventObserver::class.java)
         midDialog.lifecycle.addObserver(midDialogObserver)
-        val inOrder = inOrder(
-            firstNestedGraphEntryObserver, bottomDialogObserver, secondNestedGraphEntryObserver,
-            midDialogObserver
-        )
-        inOrder.verify(bottomDialogObserver).onStateChanged(
-            bottomDialog, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder.verify(firstNestedGraphEntryObserver).onStateChanged(
-            firstNestedGraphEntry, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder.verify(secondNestedGraphEntryObserver).onStateChanged(
-            secondNestedGraphEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(secondNestedGraphEntryObserver).onStateChanged(
-            secondNestedGraphEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(secondNestedGraphEntryObserver).onStateChanged(
-            secondNestedGraphEntry, Lifecycle.Event.ON_RESUME
-        )
-        inOrder.verify(midDialogObserver).onStateChanged(
-            midDialog, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(midDialogObserver).onStateChanged(
-            midDialog, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(midDialogObserver).onStateChanged(
-            midDialog, Lifecycle.Event.ON_RESUME
-        )
+        val inOrder =
+            inOrder(
+                firstNestedGraphEntryObserver,
+                bottomDialogObserver,
+                secondNestedGraphEntryObserver,
+                midDialogObserver
+            )
+        inOrder.verify(bottomDialogObserver).onStateChanged(bottomDialog, Lifecycle.Event.ON_PAUSE)
+        inOrder
+            .verify(firstNestedGraphEntryObserver)
+            .onStateChanged(firstNestedGraphEntry, Lifecycle.Event.ON_PAUSE)
+        inOrder
+            .verify(secondNestedGraphEntryObserver)
+            .onStateChanged(secondNestedGraphEntry, Lifecycle.Event.ON_CREATE)
+        inOrder
+            .verify(secondNestedGraphEntryObserver)
+            .onStateChanged(secondNestedGraphEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(secondNestedGraphEntryObserver)
+            .onStateChanged(secondNestedGraphEntry, Lifecycle.Event.ON_RESUME)
+        inOrder.verify(midDialogObserver).onStateChanged(midDialog, Lifecycle.Event.ON_CREATE)
+        inOrder.verify(midDialogObserver).onStateChanged(midDialog, Lifecycle.Event.ON_START)
+        inOrder.verify(midDialogObserver).onStateChanged(midDialog, Lifecycle.Event.ON_RESUME)
         inOrder.verifyNoMoreInteractions()
 
         navController.navigate("topDialog")
@@ -387,18 +379,10 @@
         topDialog.lifecycle.addObserver(topDialogObserver)
 
         val inOrder2 = inOrder(secondNestedGraphEntryObserver, midDialogObserver, topDialogObserver)
-        inOrder2.verify(midDialogObserver).onStateChanged(
-            midDialog, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder2.verify(topDialogObserver).onStateChanged(
-            topDialog, Lifecycle.Event.ON_CREATE
-        )
-        inOrder2.verify(topDialogObserver).onStateChanged(
-            topDialog, Lifecycle.Event.ON_START
-        )
-        inOrder2.verify(topDialogObserver).onStateChanged(
-            topDialog, Lifecycle.Event.ON_RESUME
-        )
+        inOrder2.verify(midDialogObserver).onStateChanged(midDialog, Lifecycle.Event.ON_PAUSE)
+        inOrder2.verify(topDialogObserver).onStateChanged(topDialog, Lifecycle.Event.ON_CREATE)
+        inOrder2.verify(topDialogObserver).onStateChanged(topDialog, Lifecycle.Event.ON_START)
+        inOrder2.verify(topDialogObserver).onStateChanged(topDialog, Lifecycle.Event.ON_RESUME)
         inOrder2.verifyNoMoreInteractions()
     }
 
@@ -406,17 +390,18 @@
     @Test
     fun testLifecycleWithDialogsAndFragments() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph",
-            startDestination = "nested"
-        ) {
-            navigation(route = "nested", startDestination = "bottomFrag") {
-                test("bottomFrag")
-                dialog(route = "bottomDialog")
-                test("topFrag")
-                dialog(route = "topDialog")
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "nested"
+            ) {
+                navigation(route = "nested", startDestination = "bottomFrag") {
+                    test("bottomFrag")
+                    dialog(route = "bottomDialog")
+                    test("topFrag")
+                    dialog(route = "topDialog")
+                }
             }
-        }
 
         navController.graph = navGraph
 
@@ -451,17 +436,18 @@
     @Test
     fun testLifecycleWithDialogsAndFragmentsOrdering() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph",
-            startDestination = "nested"
-        ) {
-            navigation(route = "nested", startDestination = "bottomFrag") {
-                test("bottomFrag")
-                dialog(route = "bottomDialog")
-                test("topFrag")
-                dialog(route = "topDialog")
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "nested"
+            ) {
+                navigation(route = "nested", startDestination = "bottomFrag") {
+                    test("bottomFrag")
+                    dialog(route = "bottomDialog")
+                    test("topFrag")
+                    dialog(route = "topDialog")
+                }
             }
-        }
 
         navController.graph = navGraph
 
@@ -476,33 +462,21 @@
         bottomFrag.lifecycle.addObserver(bottomFragObserver)
 
         val inOrder = inOrder(graphObserver, nestedGraphEntryObserver, bottomFragObserver)
-        inOrder.verify(graphObserver).onStateChanged(
-            graphEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphEntry, Lifecycle.Event.ON_RESUME
-        )
-        inOrder.verify(nestedGraphEntryObserver).onStateChanged(
-            nestedGraphEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(nestedGraphEntryObserver).onStateChanged(
-            nestedGraphEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(nestedGraphEntryObserver).onStateChanged(
-            nestedGraphEntry, Lifecycle.Event.ON_RESUME
-        )
-        inOrder.verify(bottomFragObserver).onStateChanged(
-            bottomFrag, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(bottomFragObserver).onStateChanged(
-            bottomFrag, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(bottomFragObserver).onStateChanged(
-            bottomFrag, Lifecycle.Event.ON_RESUME
-        )
+        inOrder.verify(graphObserver).onStateChanged(graphEntry, Lifecycle.Event.ON_CREATE)
+        inOrder.verify(graphObserver).onStateChanged(graphEntry, Lifecycle.Event.ON_START)
+        inOrder.verify(graphObserver).onStateChanged(graphEntry, Lifecycle.Event.ON_RESUME)
+        inOrder
+            .verify(nestedGraphEntryObserver)
+            .onStateChanged(nestedGraphEntry, Lifecycle.Event.ON_CREATE)
+        inOrder
+            .verify(nestedGraphEntryObserver)
+            .onStateChanged(nestedGraphEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(nestedGraphEntryObserver)
+            .onStateChanged(nestedGraphEntry, Lifecycle.Event.ON_RESUME)
+        inOrder.verify(bottomFragObserver).onStateChanged(bottomFrag, Lifecycle.Event.ON_CREATE)
+        inOrder.verify(bottomFragObserver).onStateChanged(bottomFrag, Lifecycle.Event.ON_START)
+        inOrder.verify(bottomFragObserver).onStateChanged(bottomFrag, Lifecycle.Event.ON_RESUME)
 
         navController.navigate("bottomDialog")
         val bottomDialog = navController.getBackStackEntry("bottomDialog")
@@ -510,18 +484,14 @@
         bottomDialog.lifecycle.addObserver(bottomDialogObserver)
 
         val inOrder2 = inOrder(nestedGraphEntryObserver, bottomFragObserver, bottomDialogObserver)
-        inOrder2.verify(bottomFragObserver).onStateChanged(
-            bottomFrag, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder2.verify(bottomDialogObserver).onStateChanged(
-            bottomDialog, Lifecycle.Event.ON_CREATE
-        )
-        inOrder2.verify(bottomDialogObserver).onStateChanged(
-            bottomDialog, Lifecycle.Event.ON_START
-        )
-        inOrder2.verify(bottomDialogObserver).onStateChanged(
-            bottomDialog, Lifecycle.Event.ON_RESUME
-        )
+        inOrder2.verify(bottomFragObserver).onStateChanged(bottomFrag, Lifecycle.Event.ON_PAUSE)
+        inOrder2
+            .verify(bottomDialogObserver)
+            .onStateChanged(bottomDialog, Lifecycle.Event.ON_CREATE)
+        inOrder2.verify(bottomDialogObserver).onStateChanged(bottomDialog, Lifecycle.Event.ON_START)
+        inOrder2
+            .verify(bottomDialogObserver)
+            .onStateChanged(bottomDialog, Lifecycle.Event.ON_RESUME)
         inOrder2.verifyNoMoreInteractions()
 
         navController.navigate("topFrag")
@@ -529,30 +499,22 @@
         val topFragObserver = mock(LifecycleEventObserver::class.java)
         topFrag.lifecycle.addObserver(topFragObserver)
 
-        val inOrder3 = inOrder(
-            nestedGraphEntryObserver, bottomFragObserver, bottomDialogObserver, topFragObserver
-        )
-        inOrder3.verify(bottomFragObserver).onStateChanged(
-            bottomFrag, Lifecycle.Event.ON_CREATE
-        )
-        inOrder3.verify(bottomDialogObserver).onStateChanged(
-            bottomDialog, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder3.verify(bottomDialogObserver).onStateChanged(
-            bottomDialog, Lifecycle.Event.ON_STOP
-        )
-        inOrder3.verify(bottomDialogObserver).onStateChanged(
-            bottomDialog, Lifecycle.Event.ON_DESTROY
-        )
-        inOrder3.verify(topFragObserver).onStateChanged(
-            topFrag, Lifecycle.Event.ON_CREATE
-        )
-        inOrder3.verify(topFragObserver).onStateChanged(
-            topFrag, Lifecycle.Event.ON_START
-        )
-        inOrder3.verify(topFragObserver).onStateChanged(
-            topFrag, Lifecycle.Event.ON_RESUME
-        )
+        val inOrder3 =
+            inOrder(
+                nestedGraphEntryObserver,
+                bottomFragObserver,
+                bottomDialogObserver,
+                topFragObserver
+            )
+        inOrder3.verify(bottomFragObserver).onStateChanged(bottomFrag, Lifecycle.Event.ON_CREATE)
+        inOrder3.verify(bottomDialogObserver).onStateChanged(bottomDialog, Lifecycle.Event.ON_PAUSE)
+        inOrder3.verify(bottomDialogObserver).onStateChanged(bottomDialog, Lifecycle.Event.ON_STOP)
+        inOrder3
+            .verify(bottomDialogObserver)
+            .onStateChanged(bottomDialog, Lifecycle.Event.ON_DESTROY)
+        inOrder3.verify(topFragObserver).onStateChanged(topFrag, Lifecycle.Event.ON_CREATE)
+        inOrder3.verify(topFragObserver).onStateChanged(topFrag, Lifecycle.Event.ON_START)
+        inOrder3.verify(topFragObserver).onStateChanged(topFrag, Lifecycle.Event.ON_RESUME)
         inOrder3.verifyNoMoreInteractions()
 
         navController.navigate("topDialog")
@@ -560,39 +522,29 @@
         val topDialogObserver = mock(LifecycleEventObserver::class.java)
         topDialog.lifecycle.addObserver(topDialogObserver)
         val inOrder4 = inOrder(nestedGraphEntryObserver, topFragObserver, topDialogObserver)
-        inOrder4.verify(topFragObserver).onStateChanged(
-            topFrag, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder4.verify(topDialogObserver).onStateChanged(
-            topDialog, Lifecycle.Event.ON_CREATE
-        )
-        inOrder4.verify(topDialogObserver).onStateChanged(
-            topDialog, Lifecycle.Event.ON_START
-        )
-        inOrder4.verify(topDialogObserver).onStateChanged(
-            topDialog, Lifecycle.Event.ON_RESUME
-        )
+        inOrder4.verify(topFragObserver).onStateChanged(topFrag, Lifecycle.Event.ON_PAUSE)
+        inOrder4.verify(topDialogObserver).onStateChanged(topDialog, Lifecycle.Event.ON_CREATE)
+        inOrder4.verify(topDialogObserver).onStateChanged(topDialog, Lifecycle.Event.ON_START)
+        inOrder4.verify(topDialogObserver).onStateChanged(topDialog, Lifecycle.Event.ON_RESUME)
         inOrder4.verifyNoMoreInteractions()
     }
 
     /**
-     * Test that navigating from within a nested navigation graph to one of the graph's
-     * siblings correctly stops both the previous destination and its graph.
+     * Test that navigating from within a nested navigation graph to one of the graph's siblings
+     * correctly stops both the previous destination and its graph.
      */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycleNested() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -653,10 +605,9 @@
         val graphEntry = navController.getBackStackEntry(R.id.simple_child_start)
 
         navController.navigate(
-            R.id.simple_child_start_test, null,
-            navOptions {
-                launchSingleTop = true
-            }
+            R.id.simple_child_start_test,
+            null,
+            navOptions { launchSingleTop = true }
         )
 
         navController.popBackStack()
@@ -674,15 +625,13 @@
     @Test
     fun testLifecycleNestedWithDialog() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                dialog(R.id.second_test)
             }
-            dialog(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -707,9 +656,8 @@
             .that(nestedGraphBackStackEntry.lifecycle.currentState)
             .isEqualTo(Lifecycle.State.STARTED)
         assertWithMessage(
-            "The nested start destination should be started when a " +
-                "FloatingWindow is open"
-        )
+                "The nested start destination should be started when a " + "FloatingWindow is open"
+            )
             .that(nestedBackStackEntry.lifecycle.currentState)
             .isEqualTo(Lifecycle.State.STARTED)
         val secondBackStackEntry = navController.getBackStackEntry(R.id.second_test)
@@ -734,23 +682,21 @@
     }
 
     /**
-     * Test that navigating from within a nested navigation graph to one of the graph's
-     * siblings correctly stops both the previous destination and its graph.
+     * Test that navigating from within a nested navigation graph to one of the graph's siblings
+     * correctly stops both the previous destination and its graph.
      */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycleNestedOrdering() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -763,102 +709,88 @@
         val nestedObserver = mock(LifecycleEventObserver::class.java)
         nestedBackStackEntry.lifecycle.addObserver(nestedObserver)
         val inOrder = inOrder(graphObserver, nestedGraphObserver, nestedObserver)
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_CREATE)
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_RESUME)
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_CREATE)
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME)
 
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_CREATE)
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_RESUME)
 
         navController.navigate(R.id.second_test)
 
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_STOP
-        )
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_PAUSE)
+        inOrder.verify(nestedObserver).onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_STOP)
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_STOP
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_PAUSE)
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_STOP)
 
         navController.popBackStack()
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME)
 
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_RESUME)
 
         inOrder.verifyNoMoreInteractions()
 
         navController.popBackStack()
 
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_STOP
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_DESTROY
-        )
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_PAUSE)
+        inOrder.verify(nestedObserver).onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_STOP)
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_DESTROY)
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_STOP
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_PAUSE)
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_STOP)
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_DESTROY
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_DESTROY)
 
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_PAUSE
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_STOP
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_DESTROY
-        )
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_PAUSE)
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_STOP)
+        inOrder
+            .verify(graphObserver)
+            .onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_DESTROY)
 
         inOrder.verifyNoMoreInteractions()
     }
@@ -873,15 +805,13 @@
     @Test
     fun testLifecycleNestedOrderingWithDialog() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                dialog(R.id.second_test)
             }
-            dialog(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -894,77 +824,69 @@
         val nestedObserver = mock(LifecycleEventObserver::class.java)
         nestedBackStackEntry.lifecycle.addObserver(nestedObserver)
         val inOrder = inOrder(graphObserver, nestedGraphObserver, nestedObserver)
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(graphObserver).onStateChanged(
-            graphBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_CREATE)
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder.verify(graphObserver).onStateChanged(graphBackStackEntry, Lifecycle.Event.ON_RESUME)
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_CREATE)
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME)
 
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_CREATE
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_START
-        )
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_CREATE)
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_START)
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_RESUME)
 
         navController.navigate(R.id.second_test)
 
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_PAUSE
-        )
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_PAUSE)
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_PAUSE
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_PAUSE)
 
         navController.popBackStack()
 
-        inOrder.verify(nestedGraphObserver).onStateChanged(
-            nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedGraphObserver)
+            .onStateChanged(nestedGraphBackStackEntry, Lifecycle.Event.ON_RESUME)
 
-        inOrder.verify(nestedObserver).onStateChanged(
-            nestedBackStackEntry, Lifecycle.Event.ON_RESUME
-        )
+        inOrder
+            .verify(nestedObserver)
+            .onStateChanged(nestedBackStackEntry, Lifecycle.Event.ON_RESUME)
 
         inOrder.verifyNoMoreInteractions()
     }
 
     /**
-     * Test that popping the last destination in a graph while navigating to a new
-     * destination in that graph keeps the graph around
+     * Test that popping the last destination in a graph while navigating to a new destination in
+     * that graph keeps the graph around
      */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycleReplaceLastDestination() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -983,11 +905,7 @@
         navController.navigate(
             R.id.nested_test,
             null,
-            navOptions {
-                popUpTo(R.id.nested_test) {
-                    inclusive = true
-                }
-            }
+            navOptions { popUpTo(R.id.nested_test) { inclusive = true } }
         )
 
         assertWithMessage("The parent graph should be resumed when its child is resumed")
@@ -1006,23 +924,21 @@
     }
 
     /**
-     * Test that popping the last destination in a graph while navigating correctly
-     * cleans up the previous navigation graph
+     * Test that popping the last destination in a graph while navigating correctly cleans up the
+     * previous navigation graph
      */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycleOrphanedGraph() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -1041,11 +957,7 @@
         navController.navigate(
             R.id.second_test,
             null,
-            navOptions {
-                popUpTo(R.id.nested_test) {
-                    inclusive = true
-                }
-            }
+            navOptions { popUpTo(R.id.nested_test) { inclusive = true } }
         )
 
         assertWithMessage("The parent graph should be resumed when its child is resumed")
@@ -1071,19 +983,20 @@
     @Test
     fun testLifecycleDoubleNestedGraph() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "root",
-            startDestination = "first_nested"
-        ) {
-            navigation(route = "first_nested", startDestination = "first_nested_test") {
-                test("first_nested_test")
-                navigation(route = "second_nested", startDestination = "third_nested") {
-                    navigation(route = "third_nested", startDestination = "third_nested_test") {
-                        test("third_nested_test")
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "root",
+                startDestination = "first_nested"
+            ) {
+                navigation(route = "first_nested", startDestination = "first_nested_test") {
+                    test("first_nested_test")
+                    navigation(route = "second_nested", startDestination = "third_nested") {
+                        navigation(route = "third_nested", startDestination = "third_nested_test") {
+                            test("third_nested_test")
+                        }
                     }
                 }
             }
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.route!!)
@@ -1099,12 +1012,7 @@
             .that(nestedBackStackEntry.lifecycle.currentState)
             .isEqualTo(Lifecycle.State.RESUMED)
 
-        navController.navigate(
-            "second_nested",
-            navOptions {
-                popUpTo("first_nested")
-            }
-        )
+        navController.navigate("second_nested", navOptions { popUpTo("first_nested") })
 
         assertWithMessage("The parent graph should be resumed when its child is resumed")
             .that(graphBackStackEntry.lifecycle.currentState)
@@ -1127,15 +1035,13 @@
     @Test
     fun testLifecyclePoppedGraph() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -1154,11 +1060,7 @@
         navController.navigate(
             R.id.second_test,
             null,
-            navOptions {
-                popUpTo(R.id.nested) {
-                    inclusive = true
-                }
-            }
+            navOptions { popUpTo(R.id.nested) { inclusive = true } }
         )
 
         assertWithMessage("The parent graph should be resumed when its child is resumed")
@@ -1177,23 +1079,21 @@
     }
 
     /**
-     * Test that navigating to a new instance of a graph leaves the previous instance in its
-     * current state.
+     * Test that navigating to a new instance of a graph leaves the previous instance in its current
+     * state.
      */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycleNestedRepeated() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -1251,23 +1151,21 @@
     }
 
     /**
-     * Test that navigating to a new instance of a graph back to back with its previous
-     * instance creates a brand new graph instance
+     * Test that navigating to a new instance of a graph back to back with its previous instance
+     * creates a brand new graph instance
      */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycleNestedRepeatedBackToBack() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -1310,24 +1208,22 @@
     }
 
     /**
-     * Test that navigating to a new instance of a graph back to back with popping the
-     * last destination from the previous instance of the graph correctly cleans up
-     * the orphaned graph and creates a new graph instance.
+     * Test that navigating to a new instance of a graph back to back with popping the last
+     * destination from the previous instance of the graph correctly cleans up the orphaned graph
+     * and creates a new graph instance.
      */
     @Suppress("DEPRECATION")
     @UiThreadTest
     @Test
     fun testLifecycleNestedRepeatedBackToBackWithOrphanedGraph() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -1348,11 +1244,7 @@
         navController.navigate(
             navGraph.id,
             null,
-            navOptions {
-                popUpTo(R.id.nested_test) {
-                    inclusive = true
-                }
-            }
+            navOptions { popUpTo(R.id.nested_test) { inclusive = true } }
         )
 
         assertWithMessage("The parent graph should be destroyed when its children are destroyed")
@@ -1387,18 +1279,14 @@
     @Test
     fun testLifecycleNestedRepeatedWithDialog() {
         val navController = createNavController()
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.nested
-        ) {
-            navigation(id = R.id.nested, startDestination = R.id.nested_test) {
-                test(R.id.nested_test)
-                dialog(R.id.nested_second_test) {
-                    deepLink("test://test/")
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.nested) {
+                navigation(id = R.id.nested, startDestination = R.id.nested_test) {
+                    test(R.id.nested_test)
+                    dialog(R.id.nested_second_test) { deepLink("test://test/") }
                 }
+                test(R.id.second_test)
             }
-            test(R.id.second_test)
-        }
         navController.graph = navGraph
 
         val graphBackStackEntry = navController.getBackStackEntry(navGraph.id)
@@ -1460,13 +1348,11 @@
     @Test
     fun testLifecycleToDestroyedWhenInitialized() {
         val navController = createNavController(TestLifecycleOwner(Lifecycle.State.INITIALIZED))
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-            test(R.id.second_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+                test(R.id.second_test)
+            }
         navController.graph = navGraph
 
         val startBackStackEntry = navController.getBackStackEntry(R.id.start_test)
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryTest.kt
index 4235c67..746e68d 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavBackStackEntryTest.kt
@@ -53,12 +53,10 @@
     fun testGetViewModelStoreOwner() {
         val navController = createNavController()
         navController.setViewModelStore(ViewModelStore())
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val owner = navController.getViewModelStoreOwner(navGraph.id)
@@ -73,12 +71,10 @@
     fun testGetViewModelStoreOwnerAndroidViewModel() {
         val navController = createNavController()
         navController.setViewModelStore(ViewModelStore())
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val owner = navController.getViewModelStoreOwner(navGraph.id)
@@ -94,12 +90,13 @@
             val navController = withActivity { NavController(this) }
             navController.navigatorProvider.addNavigator(TestNavigator())
 
-            val navGraph = navController.navigatorProvider.navigation(
-                route = "start",
-                startDestination = "first"
-            ) {
-                test("first")
-            }
+            val navGraph =
+                navController.navigatorProvider.navigation(
+                    route = "start",
+                    startDestination = "first"
+                ) {
+                    test("first")
+                }
             withActivity { navController.setGraph(navGraph, null) }
 
             val entry = navController.currentBackStackEntry
@@ -125,17 +122,16 @@
     fun testGetViewModelStoreOwnerSavedStateViewModel() {
         val hostStore = ViewModelStore()
         val lifecycleOwner = TestLifecycleOwner(Lifecycle.State.RESUMED)
-        val navController = NavHostController(ApplicationProvider.getApplicationContext()).apply {
-            setLifecycleOwner(lifecycleOwner)
-            navigatorProvider.addNavigator(TestNavigator())
-        }
+        val navController =
+            NavHostController(ApplicationProvider.getApplicationContext()).apply {
+                setLifecycleOwner(lifecycleOwner)
+                navigatorProvider.addNavigator(TestNavigator())
+            }
         navController.setViewModelStore(hostStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val owner = navController.getViewModelStoreOwner(navGraph.id)
@@ -157,9 +153,8 @@
         restoredNavController.graph = navGraph
 
         val restoredOwner = restoredNavController.getViewModelStoreOwner(navGraph.id)
-        val restoredViewModel = ViewModelProvider(
-            restoredOwner
-        )[TestSavedStateViewModel::class.java]
+        val restoredViewModel =
+            ViewModelProvider(restoredOwner)[TestSavedStateViewModel::class.java]
         val restoredState: String? = restoredViewModel.savedStateHandle.get("test")
         assertThat(restoredState).isEqualTo("test")
     }
@@ -171,12 +166,10 @@
         val hostStore = ViewModelStore()
         val navController = createNavController()
         navController.setViewModelStore(hostStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val store = navController.getViewModelStoreOwner(navGraph.id).viewModelStore
@@ -208,9 +201,8 @@
             )
         } catch (e: IllegalArgumentException) {
             assertThat(e)
-                .hasMessageThat().contains(
-                    "No destination with ID $navGraphId is on the NavController's back stack"
-                )
+                .hasMessageThat()
+                .contains("No destination with ID $navGraphId is on the NavController's back stack")
         }
     }
 
@@ -221,11 +213,10 @@
         val navController = createNavController()
         navController.setViewModelStore(ViewModelStore())
         val provider = navController.navigatorProvider
-        val graph = provider.navigation(1, startDestination = 2) {
-            navigation(2, startDestination = 3) {
-                test(3)
+        val graph =
+            provider.navigation(1, startDestination = 2) {
+                navigation(2, startDestination = 3) { test(3) }
             }
-        }
 
         navController.setGraph(graph, null)
         val owner = navController.getViewModelStoreOwner(graph.id)
@@ -245,12 +236,10 @@
         val hostStore = ViewModelStore()
         val navController = createNavController()
         navController.setViewModelStore(ViewModelStore())
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val key = "test"
@@ -266,7 +255,8 @@
         val restoredSavedStateHandle = restoredNavController.currentBackStackEntry?.savedStateHandle
         val restoredResult: String? = restoredSavedStateHandle?.get(key)
         assertWithMessage("Restored SavedStateHandle should still have the result")
-            .that(restoredResult).isEqualTo(result)
+            .that(restoredResult)
+            .isEqualTo(result)
     }
 
     @Suppress("DEPRECATION")
@@ -275,30 +265,29 @@
     fun testCreateViewModelViaExtras() {
         val hostStore = ViewModelStore()
         val lifecycleOwner = TestLifecycleOwner(Lifecycle.State.RESUMED)
-        val navController = NavHostController(ApplicationProvider.getApplicationContext()).apply {
-            setLifecycleOwner(lifecycleOwner)
-            navigatorProvider.addNavigator(TestNavigator())
-        }
+        val navController =
+            NavHostController(ApplicationProvider.getApplicationContext()).apply {
+                setLifecycleOwner(lifecycleOwner)
+                navigatorProvider.addNavigator(TestNavigator())
+            }
         navController.setViewModelStore(hostStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val entry = navController.currentBackStackEntry!!
 
-        val extras = MutableCreationExtras(entry.defaultViewModelCreationExtras).apply {
-            this[DEFAULT_ARGS_KEY] = bundleOf("test" to "value")
-        }
+        val extras =
+            MutableCreationExtras(entry.defaultViewModelCreationExtras).apply {
+                this[DEFAULT_ARGS_KEY] = bundleOf("test" to "value")
+            }
 
         val actualValue =
-            ViewModelProvider(
-                entry.viewModelStore,
-                entry.defaultViewModelProviderFactory,
-                extras)["test", TestSavedStateViewModel::class.java].defaultValue
+            ViewModelProvider(entry.viewModelStore, entry.defaultViewModelProviderFactory, extras)[
+                    "test", TestSavedStateViewModel::class.java]
+                .defaultValue
 
         assertWithMessage("ViewModel from back stack entry should have args from CreationExtras")
             .that(actualValue)
@@ -308,10 +297,14 @@
     @UiThreadTest
     @Test
     fun testGetSavedStateHandle() {
-        val entry = NavBackStackEntry.create(
-            ApplicationProvider.getApplicationContext(),
-            NavDestination(TestNavigator()), null, Lifecycle.State.STARTED, NavControllerViewModel()
-        )
+        val entry =
+            NavBackStackEntry.create(
+                ApplicationProvider.getApplicationContext(),
+                NavDestination(TestNavigator()),
+                null,
+                Lifecycle.State.STARTED,
+                NavControllerViewModel()
+            )
         entry.maxLifecycle = Lifecycle.State.CREATED
 
         assertThat(entry.savedStateHandle).isNotNull()
@@ -320,10 +313,12 @@
     @UiThreadTest
     @Test
     fun testGetSavedStateHandleBeforeUpdateState() {
-        val entry = NavBackStackEntry.create(
-            ApplicationProvider.getApplicationContext(),
-            NavDestination(TestNavigator()), viewModelStoreProvider = NavControllerViewModel()
-        )
+        val entry =
+            NavBackStackEntry.create(
+                ApplicationProvider.getApplicationContext(),
+                NavDestination(TestNavigator()),
+                viewModelStoreProvider = NavControllerViewModel()
+            )
 
         try {
             entry.savedStateHandle
@@ -333,7 +328,8 @@
             )
         } catch (e: IllegalStateException) {
             assertThat(e)
-                .hasMessageThat().contains(
+                .hasMessageThat()
+                .contains(
                     "You cannot access the NavBackStackEntry's SavedStateHandle until it is " +
                         "added to the NavController's back stack (i.e., the Lifecycle of the " +
                         "NavBackStackEntry reaches the CREATED state)."
@@ -344,10 +340,12 @@
     @UiThreadTest
     @Test
     fun testGetSavedStateHandleInitializedLifecycle() {
-        val entry = NavBackStackEntry.create(
-            ApplicationProvider.getApplicationContext(),
-            NavDestination(TestNavigator()), viewModelStoreProvider = NavControllerViewModel()
-        )
+        val entry =
+            NavBackStackEntry.create(
+                ApplicationProvider.getApplicationContext(),
+                NavDestination(TestNavigator()),
+                viewModelStoreProvider = NavControllerViewModel()
+            )
         entry.updateState()
 
         assertThat(entry.savedStateHandle).isNotNull()
@@ -356,10 +354,12 @@
     @UiThreadTest
     @Test
     fun testGetSavedStateHandleDestroyedLifecycle() {
-        val entry = NavBackStackEntry.create(
-            ApplicationProvider.getApplicationContext(),
-            NavDestination(TestNavigator()), viewModelStoreProvider = NavControllerViewModel()
-        )
+        val entry =
+            NavBackStackEntry.create(
+                ApplicationProvider.getApplicationContext(),
+                NavDestination(TestNavigator()),
+                viewModelStoreProvider = NavControllerViewModel()
+            )
         entry.maxLifecycle = Lifecycle.State.CREATED
         // Immediately destroy the NavBackStackEntry
         entry.maxLifecycle = Lifecycle.State.DESTROYED
@@ -372,7 +372,8 @@
             )
         } catch (e: IllegalStateException) {
             assertThat(e)
-                .hasMessageThat().contains(
+                .hasMessageThat()
+                .contains(
                     "You cannot access the NavBackStackEntry's SavedStateHandle after the " +
                         "NavBackStackEntry is destroyed."
                 )
@@ -382,10 +383,11 @@
     @UiThreadTest
     @Test
     fun testGetSavedStateHandleNoViewModelSet() {
-        val entry = NavBackStackEntry.create(
-            ApplicationProvider.getApplicationContext(),
-            NavDestination(TestNavigator())
-        )
+        val entry =
+            NavBackStackEntry.create(
+                ApplicationProvider.getApplicationContext(),
+                NavDestination(TestNavigator())
+            )
         entry.maxLifecycle = Lifecycle.State.CREATED
 
         try {
@@ -396,7 +398,8 @@
             )
         } catch (e: IllegalStateException) {
             assertThat(e)
-                .hasMessageThat().contains(
+                .hasMessageThat()
+                .contains(
                     "You must call setViewModelStore() on your NavHostController before " +
                         "accessing the ViewModelStore of a navigation graph."
                 )
@@ -410,12 +413,10 @@
         val hostStore = ViewModelStore()
         val navController = createNavController()
         navController.setViewModelStore(hostStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val owner = navController.getViewModelStoreOwner(navGraph.id)
@@ -437,12 +438,10 @@
         val hostStore = ViewModelStore()
         val navController = createNavController()
         navController.setViewModelStore(hostStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val owner = navController.getBackStackEntry(R.id.start_test)
@@ -454,11 +453,7 @@
         navController.navigate(
             R.id.start_test,
             null,
-            navOptions {
-                popUpTo(R.id.start_test) {
-                    inclusive = true
-                }
-            }
+            navOptions { popUpTo(R.id.start_test) { inclusive = true } }
         )
         assertWithMessage("ViewModel should be cleared when the destination is popped")
             .that(viewModel.isCleared)
@@ -472,12 +467,10 @@
         val hostStore = ViewModelStore()
         val navController = createNavController()
         navController.setViewModelStore(hostStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val owner = navController.getBackStackEntry(R.id.start_test)
@@ -514,12 +507,10 @@
         val hostStore = ViewModelStore()
         val navController = createNavController(true)
         navController.setViewModelStore(hostStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         val owner = navController.getBackStackEntry(R.id.start_test)
@@ -556,15 +547,13 @@
     @Test
     fun testLifecyclePoppedGraph() {
         val navController = createNavController(true)
-        val navGraph = navController.navigatorProvider.navigation(
-            startDestination = "first",
-            route = "main"
-        ) {
-            test(route = "first")
-            navigation(startDestination = "second_test", route = "graph_nested") {
-                test(route = "second_test")
+        val navGraph =
+            navController.navigatorProvider.navigation(startDestination = "first", route = "main") {
+                test(route = "first")
+                navigation(startDestination = "second_test", route = "graph_nested") {
+                    test(route = "second_test")
+                }
             }
-        }
         navController.graph = navGraph
 
         navController.navigatorProvider[TestNavigator::class].onTransitionComplete(
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerActivityTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerActivityTest.kt
index ecf5801..a873450 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerActivityTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerActivityTest.kt
@@ -55,17 +55,12 @@
     fun testNavigateUpPop() {
         navController.setGraph(R.navigation.nav_simple)
         navController.navigate(R.id.second_test)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(2)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
+        assertThat(navigator.backStack.size).isEqualTo(2)
 
-        assertThat(navController.navigateUp())
-            .isTrue()
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.navigateUp()).isTrue()
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
     }
 
     @UiThreadTest
@@ -74,21 +69,14 @@
         val activity = activityRule.activity
         navController.setGraph(R.navigation.nav_simple)
         navController.handleDeepLink(
-            Intent().apply {
-                data = Uri.parse("android-app://androidx.navigation.test/test/arg2")
-            }
+            Intent().apply { data = Uri.parse("android-app://androidx.navigation.test/test/arg2") }
         )
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
 
-        assertThat(activity.isFinishCalled)
-            .isFalse()
-        assertThat(navController.navigateUp())
-            .isTrue()
-        assertThat(activity.isFinishCalled)
-            .isTrue()
+        assertThat(activity.isFinishCalled).isFalse()
+        assertThat(navController.navigateUp()).isTrue()
+        assertThat(activity.isFinishCalled).isTrue()
     }
 
     @UiThreadTest
@@ -96,9 +84,8 @@
     fun testActivityDeepLinkHandledOnce() {
         val activity = activityRule.activity
 
-        val intent = Intent().apply {
-            data = Uri.parse("android-app://androidx.navigation.test/test/arg2")
-        }
+        val intent =
+            Intent().apply { data = Uri.parse("android-app://androidx.navigation.test/test/arg2") }
 
         activity.intent = intent
 
@@ -107,22 +94,21 @@
         assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
 
-        navController.navigate(R.id.start_test, null, navOptions {
-            popUpTo(R.id.second_test) { inclusive = true }
-        })
+        navController.navigate(
+            R.id.start_test,
+            null,
+            navOptions { popUpTo(R.id.second_test) { inclusive = true } }
+        )
         assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
 
         // Create a slightly different graph to ensure we are testing the deep link handling
         // rather than setGraph being a ~no-op when you call it multiple times
-        val navGraph = navController.navInflater.inflate(R.navigation.nav_simple).apply {
-            route = "root"
-        }
+        val navGraph =
+            navController.navInflater.inflate(R.navigation.nav_simple).apply { route = "root" }
         navController.setGraph(navGraph, null)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
     }
 
     @UiThreadTest
@@ -130,9 +116,8 @@
     fun testActivityDeepLinkHandledOnceAfterRestore() {
         val activity = activityRule.activity
 
-        val intent = Intent().apply {
-            data = Uri.parse("android-app://androidx.navigation.test/test/arg2")
-        }
+        val intent =
+            Intent().apply { data = Uri.parse("android-app://androidx.navigation.test/test/arg2") }
 
         activity.intent = intent
 
@@ -141,9 +126,11 @@
         assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
 
-        navController.navigate(R.id.start_test, null, navOptions {
-            popUpTo(R.id.second_test) { inclusive = true }
-        })
+        navController.navigate(
+            R.id.start_test,
+            null,
+            navOptions { popUpTo(R.id.second_test) { inclusive = true } }
+        )
         assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
 
@@ -158,10 +145,8 @@
         // Now set the same graph again and verify that we are still on the restored,
         // not deep link destination
         navController.setGraph(R.navigation.nav_simple)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
     }
 
     @UiThreadTest
@@ -169,10 +154,11 @@
     fun testActivityDeepLinkHandledOnceAfterRestoreNewTask() {
         val activity = activityRule.activity
 
-        val intent = Intent().apply {
-            data = Uri.parse("android-app://androidx.navigation.test/test/arg2")
-            addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
-        }
+        val intent =
+            Intent().apply {
+                data = Uri.parse("android-app://androidx.navigation.test/test/arg2")
+                addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
+            }
 
         activity.intent = intent
 
@@ -195,10 +181,8 @@
         // Now set the same graph again and verify that we are still on the restored,
         // not deep link destination
         navController.setGraph(R.navigation.nav_simple)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
     }
 }
 
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerRouteTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerRouteTest.kt
index 8dfc1ac..f0ad683 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerRouteTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerRouteTest.kt
@@ -71,9 +71,7 @@
     val nav_simple_route_graph =
         createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
             test("start_test")
-            test("start_test_with_default_arg") {
-                argument("defaultArg") { defaultValue = true }
-            }
+            test("start_test_with_default_arg") { argument("defaultArg") { defaultValue = true } }
             test("second_test/{arg2}") {
                 argument("arg2") {
                     type = NavType.StringType
@@ -158,14 +156,16 @@
 
     val nav_multiple_navigation_route_graph =
         createNavController().createGraph(
-            route = "nav_multi_module_base", startDestination = "simple_child_start"
+            route = "nav_multi_module_base",
+            startDestination = "simple_child_start"
         ) {
             navigation(route = "simple_child_start", startDestination = "simple_child_start_test") {
                 test("simple_child_start_test")
                 test("simple_child_second_test")
             }
             navigation(
-                route = "deep_link_child_start", startDestination = "deep_link_child_start_test"
+                route = "deep_link_child_start",
+                startDestination = "deep_link_child_start_test"
             ) {
                 test("deep_link_child_start_test")
                 test("deep_link_child_second_test") {
@@ -190,9 +190,7 @@
     val nav_singleArg_graph =
         createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
             test("start_test")
-            test("second_test/{arg}") {
-                argument("arg") { type = NavType.StringType }
-            }
+            test("second_test/{arg}") { argument("arg") { type = NavType.StringType } }
         }
 
     val nav_multiArg_graph =
@@ -202,16 +200,13 @@
                 argument("arg") { type = NavType.StringType }
                 argument("arg2") { type = NavType.StringType }
             }
-    }
+        }
 
-    @Serializable
-    class TestClass
+    @Serializable class TestClass
 
-    @Serializable
-    class TestClassPathArg(val arg: Int)
+    @Serializable class TestClassPathArg(val arg: Int)
 
-    @Serializable
-    class TestGraph
+    @Serializable class TestGraph
 
     companion object {
         private const val UNKNOWN_DESTINATION_ID = -1
@@ -220,10 +215,10 @@
         private const val TEST_OVERRIDDEN_VALUE_ARG = "test_overridden_value"
         private const val TEST_OVERRIDDEN_VALUE_ARG_VALUE = "override"
         private const val TEST_CLASS_ROUTE = "androidx.navigation.NavControllerRouteTest.TestClass"
-        private const val TEST_CLASS_PATH_ARG_ROUTE = "androidx.navigation." +
-            "NavControllerRouteTest.TestClassPathArg/{arg}"
-        private const val TEST_GRAPH_ROUTE = "androidx.navigation." +
-            "NavControllerRouteTest.TestGraph"
+        private const val TEST_CLASS_PATH_ARG_ROUTE =
+            "androidx.navigation." + "NavControllerRouteTest.TestClassPathArg/{arg}"
+        private const val TEST_GRAPH_ROUTE =
+            "androidx.navigation." + "NavControllerRouteTest.TestGraph"
     }
 
     @UiThreadTest
@@ -254,97 +249,70 @@
     @UiThreadTest
     @Test
     fun testStartDestinationKClass() {
-        @Serializable
-        @SerialName("test")
-        class TestClass
+        @Serializable @SerialName("test") class TestClass
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClass::class) {
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClass::class) { test<TestClass>() }
         assertThat(navController.currentDestination?.route).isEqualTo("test")
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            serializer<TestClass>().hashCode()
-        )
+        assertThat(navController.currentDestination?.id)
+            .isEqualTo(serializer<TestClass>().hashCode())
     }
 
     @UiThreadTest
     @Test
     fun testStartDestinationKClassWithArgs() {
-        @Serializable
-        @SerialName("test")
-        class TestClass(val arg: Int)
+        @Serializable @SerialName("test") class TestClass(val arg: Int)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClass::class) {
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClass::class) { test<TestClass>() }
         assertThat(navController.currentDestination?.route).isEqualTo("test/{arg}")
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            serializer<TestClass>().hashCode()
-        )
+        assertThat(navController.currentDestination?.id)
+            .isEqualTo(serializer<TestClass>().hashCode())
     }
 
     @UiThreadTest
     @Test
     fun testNestedStartDestinationKClass() {
-        @Serializable
-        class NestedGraph
+        @Serializable class NestedGraph
 
-        @Serializable
-        @SerialName("test")
-        class TestClass
+        @Serializable @SerialName("test") class TestClass
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            startDestination = NestedGraph::class
-        ) {
-            navigation<NestedGraph>(startDestination = TestClass::class) {
-                test<TestClass>()
+        navController.graph =
+            navController.createGraph(startDestination = NestedGraph::class) {
+                navigation<NestedGraph>(startDestination = TestClass::class) { test<TestClass>() }
             }
-        }
         assertThat(navController.currentDestination?.route).isEqualTo("test")
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            serializer<TestClass>().hashCode()
-        )
+        assertThat(navController.currentDestination?.id)
+            .isEqualTo(serializer<TestClass>().hashCode())
     }
 
     @UiThreadTest
     @Test
     fun testStartDestinationObject() {
-        @Serializable
-        @SerialName("test")
-        class TestClass
+        @Serializable @SerialName("test") class TestClass
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClass()) {
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClass()) { test<TestClass>() }
         assertThat(navController.currentDestination?.route).isEqualTo("test")
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            serializer<TestClass>().hashCode()
-        )
+        assertThat(navController.currentDestination?.id)
+            .isEqualTo(serializer<TestClass>().hashCode())
     }
 
     @UiThreadTest
     @Test
     fun testStartDestinationObjectWithPathArg() {
-        @Serializable
-        @SerialName("test")
-        class TestClass(val arg: Int)
+        @Serializable @SerialName("test") class TestClass(val arg: Int)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            startDestination = TestClass(0)
-        ) {
-            test<TestClass>()
-        }
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            "test/{arg}"
-        )
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            serializer<TestClass>().hashCode()
-        )
+        navController.graph =
+            navController.createGraph(startDestination = TestClass(0)) { test<TestClass>() }
+        assertThat(navController.currentDestination?.route).isEqualTo("test/{arg}")
+        assertThat(navController.currentDestination?.id)
+            .isEqualTo(serializer<TestClass>().hashCode())
         val arg = navController.currentBackStackEntry?.arguments?.getInt("arg")
         assertThat(arg).isNotNull()
         assertThat(arg).isEqualTo(0)
@@ -353,22 +321,14 @@
     @UiThreadTest
     @Test
     fun testStartDestinationObjectWithQueryArg() {
-        @Serializable
-        @SerialName("test")
-        class TestClass(val arg: Boolean = false)
+        @Serializable @SerialName("test") class TestClass(val arg: Boolean = false)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            startDestination = TestClass(false)
-        ) {
-            test<TestClass>()
-        }
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            "test?arg={arg}"
-        )
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            serializer<TestClass>().hashCode()
-        )
+        navController.graph =
+            navController.createGraph(startDestination = TestClass(false)) { test<TestClass>() }
+        assertThat(navController.currentDestination?.route).isEqualTo("test?arg={arg}")
+        assertThat(navController.currentDestination?.id)
+            .isEqualTo(serializer<TestClass>().hashCode())
         val arg = navController.currentBackStackEntry?.arguments?.getBoolean("arg")
         assertThat(arg).isNotNull()
         assertThat(arg).isEqualTo(false)
@@ -377,20 +337,17 @@
     @UiThreadTest
     @Test
     fun testStartDestinationObjectNoMatch() {
-        @Serializable
-        @SerialName("test")
-        class TestClass(val arg: Boolean = false)
+        @Serializable @SerialName("test") class TestClass(val arg: Boolean = false)
 
         val navController = createNavController()
 
         // Even though route string matches, startDestinations are matched based on id which
         // is based on serializer. So this won't match. StartDestination must be added via KClass
         assertFailsWith<IllegalStateException> {
-            navController.graph = navController.createGraph(
-                startDestination = TestClass(false)
-            ) {
-                test(route = "test?arg={arg}")
-            }
+            navController.graph =
+                navController.createGraph(startDestination = TestClass(false)) {
+                    test(route = "test?arg={arg}")
+                }
         }
     }
 
@@ -400,26 +357,20 @@
         val navController = createNavController()
         navController.graph = nav_start_destination_route_graph
         val navigator = navController.navigatorProvider[TestNavigator::class]
-        assertThat(navController.currentDestination?.route)
-            .isEqualTo("start_test")
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.route).isEqualTo("start_test")
+        assertThat(navigator.backStack.size).isEqualTo(1)
 
         // Now set a new graph, overriding the first
         navController.graph = nav_nested_start_destination_route_graph
-        assertThat(navController.currentDestination?.route)
-            .isEqualTo("nested_test")
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.route).isEqualTo("nested_test")
+        assertThat(navigator.backStack.size).isEqualTo(1)
     }
 
     @UiThreadTest
     @Test
     fun testStartDestinationWithArgs() {
         val navController = createNavController()
-        val args = Bundle().apply {
-            putString(TEST_ARG, TEST_ARG_VALUE)
-        }
+        val args = Bundle().apply { putString(TEST_ARG, TEST_ARG_VALUE) }
         navController.setGraph(nav_simple_route_graph, args)
         val navigator = navController.navigatorProvider[TestNavigator::class]
         assertThat(navController.currentDestination?.route).isEqualTo("start_test")
@@ -433,15 +384,16 @@
     @Test
     fun testStartDestinationWithPathArg() {
         val navController = createNavController()
-        val graph = navController.createGraph(route = "graph", startDestination = "start/myArg") {
-            test("start/{arg}") {
-                argument("arg") {
-                    type = NavType.StringType
-                    nullable = false
-                    defaultValue = "defaultArg"
+        val graph =
+            navController.createGraph(route = "graph", startDestination = "start/myArg") {
+                test("start/{arg}") {
+                    argument("arg") {
+                        type = NavType.StringType
+                        nullable = false
+                        defaultValue = "defaultArg"
+                    }
                 }
             }
-        }
         navController.setGraph(graph, null)
         assertThat(navController.currentDestination?.route).isEqualTo("start/{arg}")
         val entry = navController.currentBackStackEntry!!
@@ -453,28 +405,18 @@
     @UiThreadTest
     @Test
     fun testNestedStartDestinationObjectWithPathArg() {
-        @Serializable
-        @SerialName("graph")
-        class NestedGraph(val nestedArg: Int)
+        @Serializable @SerialName("graph") class NestedGraph(val nestedArg: Int)
 
-        @Serializable
-        @SerialName("test")
-        class TestClass(val arg: Int)
+        @Serializable @SerialName("test") class TestClass(val arg: Int)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            startDestination = NestedGraph(0)
-        ) {
-            navigation<NestedGraph>(startDestination = TestClass(1)) {
-                test<TestClass>()
+        navController.graph =
+            navController.createGraph(startDestination = NestedGraph(0)) {
+                navigation<NestedGraph>(startDestination = TestClass(1)) { test<TestClass>() }
             }
-        }
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            "test/{arg}"
-        )
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            serializer<TestClass>().hashCode()
-        )
+        assertThat(navController.currentDestination?.route).isEqualTo("test/{arg}")
+        assertThat(navController.currentDestination?.id)
+            .isEqualTo(serializer<TestClass>().hashCode())
 
         val nestedArg = navController.currentBackStackEntry?.arguments?.getInt("nestedArg")
         assertThat(nestedArg).isNotNull()
@@ -489,20 +431,19 @@
     @Test
     fun testNestedStartDestinationWithPathArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            route = "graph", startDestination = "start"
-        ) {
-            test("start")
-            navigation(route = "nestedGraph", startDestination = "nestedStart/myArg") {
-                test("nestedStart/{arg}") {
-                    argument("arg") {
-                        type = NavType.StringType
-                        nullable = false
-                        defaultValue = "defaultArg"
+        navController.graph =
+            navController.createGraph(route = "graph", startDestination = "start") {
+                test("start")
+                navigation(route = "nestedGraph", startDestination = "nestedStart/myArg") {
+                    test("nestedStart/{arg}") {
+                        argument("arg") {
+                            type = NavType.StringType
+                            nullable = false
+                            defaultValue = "defaultArg"
+                        }
                     }
                 }
             }
-        }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         navController.navigate("nestedGraph")
         assertThat(navController.currentDestination?.route).isEqualTo("nestedStart/{arg}")
@@ -516,19 +457,16 @@
     @Test
     fun testStartDestinationWithArgAndPathArgs() {
         val navController = createNavController()
-        val args = Bundle().apply {
-            putString("arg", "startArg")
-        }
-        val graph = navController.createGraph(
-            route = "graph", startDestination = "start/myArg"
-        ) {
-            test("start/{arg}") {
-                argument("arg") {
-                    type = NavType.StringType
-                    nullable = false
+        val args = Bundle().apply { putString("arg", "startArg") }
+        val graph =
+            navController.createGraph(route = "graph", startDestination = "start/myArg") {
+                test("start/{arg}") {
+                    argument("arg") {
+                        type = NavType.StringType
+                        nullable = false
+                    }
                 }
             }
-        }
         navController.setGraph(graph, args)
         assertThat(navController.currentDestination?.route).isEqualTo("start/{arg}")
         val entry = navController.currentBackStackEntry
@@ -542,23 +480,20 @@
     @Test
     fun testStartDestinationWithArgAndMultiplePathArgs() {
         val navController = createNavController()
-        val args = Bundle().apply {
-            putString("arg", "startArg")
-        }
-        val graph = navController.createGraph(
-            route = "graph", startDestination = "start/myArg/myArg2"
-        ) {
-            test("start/{arg}/{arg2}") {
-                argument("arg") {
-                    type = NavType.StringType
-                    nullable = false
-                }
-                argument("arg2") {
-                    type = NavType.StringType
-                    nullable = false
+        val args = Bundle().apply { putString("arg", "startArg") }
+        val graph =
+            navController.createGraph(route = "graph", startDestination = "start/myArg/myArg2") {
+                test("start/{arg}/{arg2}") {
+                    argument("arg") {
+                        type = NavType.StringType
+                        nullable = false
+                    }
+                    argument("arg2") {
+                        type = NavType.StringType
+                        nullable = false
+                    }
                 }
             }
-        }
         navController.setGraph(graph, args)
         assertThat(navController.currentDestination?.route).isEqualTo("start/{arg}/{arg2}")
         val entry = navController.currentBackStackEntry
@@ -576,16 +511,15 @@
     @Test
     fun testStartDestinationWithQueryArgs() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            route = "graph", startDestination = "start?arg=myArg"
-        ) {
-            test("start?arg={arg}") {
-                argument("arg") {
-                    type = NavType.StringType
-                    nullable = false
+        navController.graph =
+            navController.createGraph(route = "graph", startDestination = "start?arg=myArg") {
+                test("start?arg={arg}") {
+                    argument("arg") {
+                        type = NavType.StringType
+                        nullable = false
+                    }
                 }
             }
-        }
         assertThat(navController.currentDestination?.route).isEqualTo("start?arg={arg}")
         val entry = navController.currentBackStackEntry
         val actual = entry!!.arguments!!.getString("arg")
@@ -597,15 +531,15 @@
     @Test
     fun testStartDestinationWithArgsProgrammatic() {
         val navController = createNavController()
-        val args = Bundle().apply {
-            putString(TEST_ARG, TEST_ARG_VALUE)
-        }
+        val args = Bundle().apply { putString(TEST_ARG, TEST_ARG_VALUE) }
 
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph", startDestination = "start"
-        ) {
-            test("start")
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "start"
+            ) {
+                test("start")
+            }
         navController.setGraph(navGraph, args)
         val navigator = navController.navigatorProvider[TestNavigator::class]
         assertThat(navController.currentDestination?.route).isEqualTo("start")
@@ -638,19 +572,21 @@
     fun testSetViewModelStoreOwnerAfterGraphSet() {
         val navController = createNavController()
         navController.setViewModelStore(ViewModelStore())
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph", startDestination = "start"
-        ) {
-            test("start")
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "start"
+            ) {
+                test("start")
+            }
         navController.setGraph(navGraph, null)
 
         try {
             navController.setViewModelStore(ViewModelStore())
         } catch (e: IllegalStateException) {
-            assertThat(e).hasMessageThat().contains(
-                "ViewModelStore should be set before setGraph call"
-            )
+            assertThat(e)
+                .hasMessageThat()
+                .contains("ViewModelStore should be set before setGraph call")
         }
     }
 
@@ -660,12 +596,13 @@
         val navController = createNavController()
         val viewModelStore = ViewModelStore()
         navController.setViewModelStore(viewModelStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            route = "graph",
-            startDestination = "start"
-        ) {
-            test("start")
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(
+                route = "graph",
+                startDestination = "start"
+            ) {
+                test("start")
+            }
         navController.setGraph(navGraph, null)
 
         navController.setViewModelStore(viewModelStore)
@@ -697,9 +634,8 @@
         navController.navigate(deepLink)
         assertThat(navController.currentDestination?.route).isEqualTo("second_test/{arg2}")
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val intent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val intent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(intent?.data).isEqualTo(deepLink)
     }
 
@@ -707,10 +643,11 @@
     @Test
     fun testNavigateWithObject() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
@@ -723,39 +660,40 @@
     @Test
     fun testNavigateWithObjectPathArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
         navController.navigate(TestClassPathArg(0))
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
-        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-            .isEqualTo(0)
+        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(0)
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithObjectQueryArg() {
-        @Serializable
-        class TestClass(val arg: IntArray)
+        @Serializable class TestClass(val arg: IntArray)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
         navController.navigate(TestClass(intArrayOf(0, 1, 2)))
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            "androidx.navigation.NavControllerRouteTest." +
-                "testNavigateWithObjectQueryArg.TestClass?arg={arg}"
-        )
+        assertThat(navController.currentDestination?.route)
+            .isEqualTo(
+                "androidx.navigation.NavControllerRouteTest." +
+                    "testNavigateWithObjectQueryArg.TestClass?arg={arg}"
+            )
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
         assertThat(navController.currentBackStackEntry?.arguments?.getIntArray("arg"))
             .isEqualTo(intArrayOf(0, 1, 2))
@@ -764,22 +702,23 @@
     @UiThreadTest
     @Test
     fun testNavigateWithObjectPathQueryArg() {
-        @Serializable
-        class TestClass(val arg: IntArray, val arg2: Boolean)
+        @Serializable class TestClass(val arg: IntArray, val arg2: Boolean)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
         navController.navigate(TestClass(intArrayOf(0, 1, 2), true))
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            "androidx.navigation.NavControllerRouteTest." +
-                "testNavigateWithObjectPathQueryArg.TestClass/{arg2}?arg={arg}"
-        )
+        assertThat(navController.currentDestination?.route)
+            .isEqualTo(
+                "androidx.navigation.NavControllerRouteTest." +
+                    "testNavigateWithObjectPathQueryArg.TestClass/{arg2}?arg={arg}"
+            )
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
         assertThat(navController.currentBackStackEntry?.arguments?.getIntArray("arg"))
             .isEqualTo(intArrayOf(0, 1, 2))
@@ -791,85 +730,88 @@
     @Test
     fun testNavigateWithObjectCollectionNavType() {
         val navController = createNavController()
-        @Serializable
-        data class CustomType(val id: Int)
-        @Serializable
-        class TestClass(val list: List<CustomType>)
+        @Serializable data class CustomType(val id: Int)
+        @Serializable class TestClass(val list: List<CustomType>)
 
-        val collectionNavType = object : CollectionNavType<List<CustomType>>(false) {
-            override fun put(bundle: Bundle, key: String, value: List<CustomType>) {
-                val array = value.map { it.id }.toIntArray()
-                bundle.putIntArray(key, array)
-            }
-            override fun serializeAsValues(value: List<CustomType>) = value.map { it.id.toString() }
-            override fun get(bundle: Bundle, key: String): List<CustomType> {
-                return bundle.getIntArray(key)!!.map { CustomType(it) }
-            }
-            override fun parseValue(value: String) = listOf(CustomType(value.toInt()))
-            override fun parseValue(
-                value: String,
-                previousValue: List<CustomType>
-            ): List<CustomType> {
-                val list = mutableListOf<CustomType>()
-                list.addAll(previousValue)
-                list.add(CustomType(value.toInt()))
-                return list
-            }
-        }
+        val collectionNavType =
+            object : CollectionNavType<List<CustomType>>(false) {
+                override fun put(bundle: Bundle, key: String, value: List<CustomType>) {
+                    val array = value.map { it.id }.toIntArray()
+                    bundle.putIntArray(key, array)
+                }
 
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>(mapOf(typeOf<List<CustomType>>() to collectionNavType))
-        }
+                override fun serializeAsValues(value: List<CustomType>) =
+                    value.map { it.id.toString() }
+
+                override fun get(bundle: Bundle, key: String): List<CustomType> {
+                    return bundle.getIntArray(key)!!.map { CustomType(it) }
+                }
+
+                override fun parseValue(value: String) = listOf(CustomType(value.toInt()))
+
+                override fun parseValue(
+                    value: String,
+                    previousValue: List<CustomType>
+                ): List<CustomType> {
+                    val list = mutableListOf<CustomType>()
+                    list.addAll(previousValue)
+                    list.add(CustomType(value.toInt()))
+                    return list
+                }
+            }
+
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>(mapOf(typeOf<List<CustomType>>() to collectionNavType))
+            }
 
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
         val list = listOf(CustomType(1), CustomType(3), CustomType(5))
         navController.navigate(TestClass(list))
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            "androidx.navigation.NavControllerRouteTest." +
-                "testNavigateWithObjectCollectionNavType.TestClass?list={list}"
-        )
+        assertThat(navController.currentDestination?.route)
+            .isEqualTo(
+                "androidx.navigation.NavControllerRouteTest." +
+                    "testNavigateWithObjectCollectionNavType.TestClass?list={list}"
+            )
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
-        assertThat(
-            navController.currentBackStackEntry!!.toRoute<TestClass>().list
-        ).containsExactlyElementsIn(list).inOrder()
+        assertThat(navController.currentBackStackEntry!!.toRoute<TestClass>().list)
+            .containsExactlyElementsIn(list)
+            .inOrder()
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithObjectInvalidObject() {
-        @Serializable
-        class WrongTestClass
+        @Serializable class WrongTestClass
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
-        assertFailsWith<IllegalArgumentException> {
-            navController.navigate(WrongTestClass())
-        }
+        assertFailsWith<IllegalArgumentException> { navController.navigate(WrongTestClass()) }
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithObjectWithPopUpTo() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
-        navController.navigate(TestClass(), navOptions {
-            popUpTo("start") { inclusive = true }
-        })
+        navController.navigate(TestClass(), navOptions { popUpTo("start") { inclusive = true } })
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
     }
@@ -878,10 +820,11 @@
     @Test
     fun testNavigateWithObjectArgsSavedAndRestored() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
@@ -889,8 +832,7 @@
         val dest = TestClassPathArg(0)
         navController.navigate(dest)
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
-        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-            .isEqualTo(0)
+        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(0)
 
         // pop + save
         val popped = navController.popBackStack(dest, true, true)
@@ -901,18 +843,18 @@
         val dest2 = TestClassPathArg(1)
         navController.navigate(dest2, navOptions { restoreState = true })
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
-        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-            .isEqualTo(0)
+        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(0)
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithObjectArgsSavedNotRestored() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
         assertThat(navController.currentDestination?.route).isEqualTo("start")
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
 
@@ -920,8 +862,7 @@
         val dest = TestClassPathArg(0)
         navController.navigate(dest)
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
-        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-            .isEqualTo(0)
+        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(0)
 
         // pop + save
         val popped = navController.popBackStack(dest, true, true)
@@ -932,14 +873,12 @@
         val dest2 = TestClassPathArg(1)
         navController.navigate(dest2, navOptions { restoreState = false })
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
-        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-            .isEqualTo(1)
+        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(1)
 
         // now we restore
         navController.navigate(dest2, navOptions { restoreState = true })
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
-        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg"))
-            .isEqualTo(0)
+        assertThat(navController.currentBackStackEntry?.arguments?.getInt("arg")).isEqualTo(0)
     }
 
     @UiThreadTest
@@ -966,15 +905,12 @@
         assertThat(navigator.backStack.size).isEqualTo(4)
 
         // now popUpTo the first time we navigated to second_test with args
-        val navOptions = navOptions {
-            popUpTo("second_test/arg1") { inclusive = true }
-        }
+        val navOptions = navOptions { popUpTo("second_test/arg1") { inclusive = true } }
         navController.navigate("start_test", navOptions)
         assertThat(navController.currentDestination?.route).isEqualTo("start_test")
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navigator.backStack.map { it.destination.route }).containsExactly(
-            "start_test", "start_test"
-        )
+        assertThat(navigator.backStack.map { it.destination.route })
+            .containsExactly("start_test", "start_test")
     }
 
     @UiThreadTest
@@ -1001,15 +937,13 @@
         assertThat(navigator.backStack.size).isEqualTo(4)
 
         // now popUpTo the second time we navigated to second_test with args
-        val navOptions = navOptions {
-            popUpTo("second_test/arg2") { inclusive = true }
-        }
+        val navOptions = navOptions { popUpTo("second_test/arg2") { inclusive = true } }
         navController.navigate("start_test", navOptions)
         assertThat(navController.currentDestination?.route).isEqualTo("start_test")
         assertThat(navigator.backStack.size).isEqualTo(4)
-        assertThat(navigator.backStack.map { it.destination.route }).containsExactly(
-            "start_test", "second_test/{arg}", "start_test", "start_test"
-        ).inOrder()
+        assertThat(navigator.backStack.map { it.destination.route })
+            .containsExactly("start_test", "second_test/{arg}", "start_test", "start_test")
+            .inOrder()
     }
 
     @UiThreadTest
@@ -1116,7 +1050,8 @@
         val navController = createNavController()
         navController.graph =
             createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test?{arg}"
+                route = "nav_root",
+                startDestination = "start_test?{arg}"
             ) {
                 test("start_test?{arg}") {
                     argument("arg") {
@@ -1138,7 +1073,8 @@
         val navController = createNavController()
         navController.graph =
             createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test?opt={arg}"
+                route = "nav_root",
+                startDestination = "start_test?opt={arg}"
             ) {
                 test("start_test?opt={arg}") {
                     argument("arg") {
@@ -1160,7 +1096,8 @@
         val navController = createNavController()
         navController.graph =
             createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test?opt=null"
+                route = "nav_root",
+                startDestination = "start_test?opt=null"
             ) {
                 test("start_test?opt={arg}") {
                     argument("arg") {
@@ -1181,9 +1118,7 @@
     fun testGetBackStackEntryWithPartialExactRoute_incorrectNullQueryParams() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
                 test("start_test")
                 test("second_test?opt={arg}") {
                     argument("arg") {
@@ -1203,13 +1138,13 @@
         // fails because this is a StringType arg and `null` is considered a string
         // with the word "null" rather than a null value
         val route = "second_test?opt=null"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1217,9 +1152,7 @@
     fun testGetBackStackEntryWithPartialExactRoute_multiQueryParams() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
                 test("start_test")
                 test("second_test?opt={arg}&opt2={arg2}") {
                     argument("arg") {
@@ -1232,8 +1165,7 @@
             }
 
         // navigate with query params
-        val deepLink = Uri.parse(
-            "android-app://androidx.navigation/second_test?opt=null&opt2=13")
+        val deepLink = Uri.parse("android-app://androidx.navigation/second_test?opt=null&opt2=13")
         navController.navigate(deepLink)
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
@@ -1247,22 +1179,21 @@
         val navController = createNavController()
         navController.graph =
             createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test?{arg}"
+                route = "nav_root",
+                startDestination = "start_test?{arg}"
             ) {
-                test("start_test?{arg}") {
-                    argument("arg") { type = NavType.StringType }
-                }
+                test("start_test?{arg}") { argument("arg") { type = NavType.StringType } }
             }
 
         // getBackStack with a route that has clipped all arg segments
         val route = "start_test"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1271,22 +1202,21 @@
         val navController = createNavController()
         navController.graph =
             createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test?opt={arg}"
+                route = "nav_root",
+                startDestination = "start_test?opt={arg}"
             ) {
-                test("start_test?opt={arg}") {
-                    argument("arg") { type = NavType.StringType }
-                }
+                test("start_test?opt={arg}") { argument("arg") { type = NavType.StringType } }
             }
 
         // getBackStack with a route that has null arguments
         val route = "start_test?opt=null"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1306,13 +1236,13 @@
         // route "second_test/18" should not match with any entries in backstack since we never
         // navigated with args "18"
         val route = "second_test/18"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1331,13 +1261,13 @@
 
         // route "second_test/13/13" should not match with any entries in backstack
         val route = "second_test/13/19"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1356,13 +1286,13 @@
 
         // route with additional arg "14" should not match
         val route = "second_test/13/14"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1380,13 +1310,13 @@
 
         // route missing arg "18" should not match
         val route = "second_test/13/{arg2}"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1394,9 +1324,7 @@
     fun testGetBackStackEntryWithArrayArg() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start") {
                 test("start")
                 test("second?arg={arg}") {
                     argument("arg") {
@@ -1418,9 +1346,7 @@
     fun testGetBackStackEntryWithDifferingArrayArg() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start") {
                 test("start")
                 test("second?arg={arg}") {
                     argument("arg") {
@@ -1434,13 +1360,13 @@
         val currentEntry = navController.currentBackStackEntry
         assertThat(currentEntry?.destination?.route).isEqualTo("second?arg={arg}")
         val route = "second?arg=15"
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(route)
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $route is on the NavController's " +
-                "back stack. The current destination is ${currentEntry?.destination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> { navController.getBackStackEntry(route) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $route is on the NavController's " +
+                    "back stack. The current destination is ${currentEntry?.destination}"
+            )
     }
 
     @UiThreadTest
@@ -1448,9 +1374,7 @@
     fun testGetBackStackEntryWithMissingArrayArg() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start") {
                 test("start")
                 test("second?arg={arg}") {
                     argument("arg") {
@@ -1472,10 +1396,11 @@
     @Test
     fun testGetBackStackEntryWithKClass() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         navController.navigate(TEST_CLASS_ROUTE)
 
@@ -1490,10 +1415,11 @@
     @Test
     fun testGetBackStackEntryWithKClassArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         navController.navigate(TEST_CLASS_PATH_ARG_ROUTE.replace("{arg}", "0"))
 
@@ -1508,22 +1434,20 @@
     @Test
     fun testGetBackStackEntryWithKClassNested() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            // a sibling graph with nested KClass destination
-            navigation<TestGraph>(startDestination = TestClass::class) {
-                test<TestClass>()
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                // a sibling graph with nested KClass destination
+                navigation<TestGraph>(startDestination = TestClass::class) { test<TestClass>() }
+                test("second")
             }
-            test("second")
-        }
 
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo(
-            TEST_CLASS_ROUTE
-        )
+        assertThat(navController.currentBackStackEntry?.destination?.route)
+            .isEqualTo(TEST_CLASS_ROUTE)
 
         navController.navigate("second")
 
@@ -1538,53 +1462,60 @@
     @Test
     fun testGetBackStackEntryWithKClassNotInGraph() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry<TestClassPathArg>()
-        }
-        assertThat(exception.message).isEqualTo(
-            "Destination with route TestClassPathArg cannot be found in " +
-                "navigation graph ${navController.graph}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                navController.getBackStackEntry<TestClassPathArg>()
+            }
+        assertThat(exception.message)
+            .isEqualTo(
+                "Destination with route TestClassPathArg cannot be found in " +
+                    "navigation graph ${navController.graph}"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGetBackStackEntryWithKClassNotInBackstack() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry<TestClass>()
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route TestClass is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                navController.getBackStackEntry<TestClass>()
+            }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route TestClass is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGetBackStackEntryWithObject() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         navController.navigate(TEST_CLASS_ROUTE)
 
@@ -1599,12 +1530,13 @@
     @Test
     fun testGetBackStackEntryGraphWithObject() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            route = TestGraph::class,
-            startDestination = TestClass::class
-        ) {
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(
+                route = TestGraph::class,
+                startDestination = TestClass::class
+            ) {
+                test<TestClass>()
+            }
 
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
         assertThat(navController.currentBackStackEntry?.destination?.route)
@@ -1621,10 +1553,11 @@
     @Test
     fun testGetBackStackEntryWithObjectArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         navController.navigate(TEST_CLASS_PATH_ARG_ROUTE.replace("{arg}", "0"))
 
@@ -1639,10 +1572,11 @@
     @Test
     fun testGetBackStackEntryWithObjectIncorrectArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         navController.navigate(TEST_CLASS_PATH_ARG_ROUTE.replace("{arg}", "0"))
 
@@ -1658,22 +1592,22 @@
     @Test
     fun testGetBackStackEntryWithObjectNested() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            // a sibling graph with nested KClass destination
-            navigation<TestGraph>(startDestination = TestClassPathArg::class) {
-                test<TestClassPathArg>()
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                // a sibling graph with nested KClass destination
+                navigation<TestGraph>(startDestination = TestClassPathArg::class) {
+                    test<TestClassPathArg>()
+                }
+                test("second")
             }
-            test("second")
-        }
 
         navController.navigate(TestClassPathArg(1))
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo(
-            TEST_CLASS_PATH_ARG_ROUTE
-        )
+        assertThat(navController.currentBackStackEntry?.destination?.route)
+            .isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
 
         navController.navigate("second")
 
@@ -1688,43 +1622,49 @@
     @Test
     fun testGetBackStackEntryWithObjectNotInGraph() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(TestClassPathArg(1))
-        }
-        assertThat(exception.message).isEqualTo(
-            "Destination with route TestClassPathArg cannot be found in " +
-                "navigation graph ${navController.graph}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                navController.getBackStackEntry(TestClassPathArg(1))
+            }
+        assertThat(exception.message)
+            .isEqualTo(
+                "Destination with route TestClassPathArg cannot be found in " +
+                    "navigation graph ${navController.graph}"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGetBackStackEntryWithObjectNotInBackstack() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.getBackStackEntry(TestClass())
-        }
-        assertThat(exception.message).isEqualTo(
-            "No destination with route $TEST_CLASS_ROUTE is on the NavController's " +
-                "back stack. The current destination is ${navController.currentDestination}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                navController.getBackStackEntry(TestClass())
+            }
+        assertThat(exception.message)
+            .isEqualTo(
+                "No destination with route $TEST_CLASS_ROUTE is on the NavController's " +
+                    "back stack. The current destination is ${navController.currentDestination}"
+            )
     }
 
     @UiThreadTest
@@ -1815,9 +1755,7 @@
     fun testPopBackStackWithPartialExactRoute_missingNullableQueryParams() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
                 test("start_test")
                 test("second_test?{arg}") {
                     argument("arg") {
@@ -1845,7 +1783,8 @@
         val navController = createNavController()
         navController.graph =
             createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test?opt={arg}"
+                route = "nav_root",
+                startDestination = "start_test?opt={arg}"
             ) {
                 test("start_test")
                 test("second_test?opt={arg}") {
@@ -1873,9 +1812,7 @@
     fun testPopBackStackWithPartialExactRoute_nullNullableQueryParams() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
                 test("start_test")
                 test("second_test?opt={arg}") {
                     argument("arg") {
@@ -1914,6 +1851,7 @@
         assertThat(popped).isFalse()
         assertThat(navigator.backStack.size).isEqualTo(2)
     }
+
     @UiThreadTest
     @Test
     fun testPopBackStackWithAdditionalPartialArgs() {
@@ -1949,6 +1887,7 @@
         assertThat(popped).isFalse()
         assertThat(navigator.backStack.size).isEqualTo(2)
     }
+
     @UiThreadTest
     @Test
     fun testPopBackStackWithWrongArgOrder() {
@@ -1971,10 +1910,11 @@
     @Test
     fun testPopBackStackWithKClass() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
@@ -1989,12 +1929,13 @@
     @Test
     fun testPopBackStackGraphWithKClass() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            route = TestGraph::class,
-            startDestination = TestClass::class
-        ) {
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(
+                route = TestGraph::class,
+                startDestination = TestClass::class
+            ) {
+                test<TestClass>()
+            }
 
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
         assertThat(navController.currentBackStackEntry?.destination?.route)
@@ -2012,22 +1953,20 @@
     @Test
     fun testPopBackStackWithKClassNested() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            // a sibling graph with nested KClass destination
-            navigation<TestGraph>(startDestination = TestClass::class) {
-                test<TestClass>()
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                // a sibling graph with nested KClass destination
+                navigation<TestGraph>(startDestination = TestClass::class) { test<TestClass>() }
+                test("second")
             }
-            test("second")
-        }
 
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo(
-            TEST_CLASS_ROUTE
-        )
+        assertThat(navController.currentBackStackEntry?.destination?.route)
+            .isEqualTo(TEST_CLASS_ROUTE)
 
         navController.navigate("second")
 
@@ -2043,10 +1982,11 @@
     @Test
     fun testPopBackStackWithKClassArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         // first nav
         navController.navigate("start")
@@ -2066,32 +2006,36 @@
     @Test
     fun testPopBackStackWithKClassNotInGraph() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.popBackStack<TestClassPathArg>(true)
-        }
-        assertThat(exception.message).isEqualTo(
-            "Destination with route TestClassPathArg cannot be found in " +
-                "navigation graph ${navController.graph}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                navController.popBackStack<TestClassPathArg>(true)
+            }
+        assertThat(exception.message)
+            .isEqualTo(
+                "Destination with route TestClassPathArg cannot be found in " +
+                    "navigation graph ${navController.graph}"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testPopBackStackWithKClassNotInBackStack() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
@@ -2104,10 +2048,11 @@
     @Test
     fun testPopBackStackWithObject() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         // first nav
         navController.navigate("start")
@@ -2127,12 +2072,13 @@
     @Test
     fun testPopBackStackGraphWithObject() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            route = TestGraph::class,
-            startDestination = TestClass::class
-        ) {
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(
+                route = TestGraph::class,
+                startDestination = TestClass::class
+            ) {
+                test<TestClass>()
+            }
 
         assertThat(navController.currentBackStack.value.size).isEqualTo(2)
         assertThat(navController.currentBackStackEntry?.destination?.route)
@@ -2150,10 +2096,11 @@
     @Test
     fun testPopBackStackWithObjectArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         // first nav
         navController.navigate("start")
@@ -2173,10 +2120,11 @@
     @Test
     fun testPopBackStackWithObjectIncorrectArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         // first nav
         navController.navigate("start")
@@ -2196,22 +2144,20 @@
     @Test
     fun testPopBackStackWithObjectNested() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            // a sibling graph with nested KClass destination
-            navigation<TestGraph>(startDestination = TestClass::class) {
-                test<TestClass>()
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                // a sibling graph with nested KClass destination
+                navigation<TestGraph>(startDestination = TestClass::class) { test<TestClass>() }
+                test("second")
             }
-            test("second")
-        }
 
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo(
-            TEST_CLASS_ROUTE
-        )
+        assertThat(navController.currentBackStackEntry?.destination?.route)
+            .isEqualTo(TEST_CLASS_ROUTE)
 
         navController.navigate("second")
 
@@ -2227,32 +2173,36 @@
     @Test
     fun testPopBackStackWithObjectNotInGraph() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
 
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.popBackStack(TestClassPathArg(1), true)
-        }
-        assertThat(exception.message).isEqualTo(
-            "Destination with route TestClassPathArg cannot be found in " +
-                "navigation graph ${navController.graph}"
-        )
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                navController.popBackStack(TestClassPathArg(1), true)
+            }
+        assertThat(exception.message)
+            .isEqualTo(
+                "Destination with route TestClassPathArg cannot be found in " +
+                    "navigation graph ${navController.graph}"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testPopBackStackWithObjectNotInBackStack() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
@@ -2333,20 +2283,20 @@
     @Test
     fun testClearBackStackNested() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            navigation(route = "nested", startDestination = "nestedStart") {
-                test("nestedStart")
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                navigation(route = "nested", startDestination = "nestedStart") {
+                    test("nestedStart")
+                }
+                test("second")
             }
-            test("second")
-        }
 
         navController.navigate("nestedStart")
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry?.destination?.route)
-            .isEqualTo("nestedStart")
+        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo("nestedStart")
 
         navController.navigate("second")
 
@@ -2495,9 +2445,7 @@
     fun testClearBackStackWithPartialExactRoute_missingNullableQueryParams() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
                 test("start_test")
                 test("second_test?{arg}") {
                     argument("arg") {
@@ -2526,9 +2474,7 @@
     fun testClearBackStackWithPartialExactRoute_ignoredNullableQueryParams() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
                 test("start_test")
                 test("second_test?opt={arg}") {
                     argument("arg") {
@@ -2557,9 +2503,7 @@
     fun testClearBackStackWithPartialExactRoute_nullNullableQueryParams() {
         val navController = createNavController()
         navController.graph =
-            createNavController().createGraph(
-                route = "nav_root", startDestination = "start_test"
-            ) {
+            createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
                 test("start_test")
                 test("second_test?opt={arg}") {
                     argument("arg") {
@@ -2658,10 +2602,11 @@
     @Test
     fun testClearBackStackWithKClass() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         navController.navigate(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
@@ -2677,10 +2622,11 @@
     @Test
     fun testClearBackStackWithKClassPoppedWithObject() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         navController.navigate(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
@@ -2696,10 +2642,11 @@
     @Test
     fun testClearBackStackWithKClassArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         navController.navigate(TEST_CLASS_PATH_ARG_ROUTE.replace("{arg}", "0"))
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
@@ -2715,22 +2662,20 @@
     @Test
     fun testClearBackStackWithKClassNested() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            // a sibling graph with nested KClass destination
-            navigation<TestGraph>(startDestination = TestClass::class) {
-                test<TestClass>()
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                // a sibling graph with nested KClass destination
+                navigation<TestGraph>(startDestination = TestClass::class) { test<TestClass>() }
+                test("second")
             }
-            test("second")
-        }
 
         navController.navigate(TestClass())
 
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry?.destination?.route).isEqualTo(
-            TEST_CLASS_ROUTE
-        )
+        assertThat(navController.currentBackStackEntry?.destination?.route)
+            .isEqualTo(TEST_CLASS_ROUTE)
 
         navController.navigate("second")
 
@@ -2748,10 +2693,11 @@
     @Test
     fun testClearBackStackWithObject() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         navController.navigate(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
@@ -2767,10 +2713,11 @@
     @Test
     fun testClearBackStackWithObjectPoppedWithKClass() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass>()
+            }
 
         navController.navigate(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
@@ -2786,18 +2733,17 @@
     @Test
     fun testClearBackStackWithObjectIncorrectArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClassPathArg>()
-        }
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClassPathArg>()
+            }
 
         // second nav
         navController.navigate(TEST_CLASS_PATH_ARG_ROUTE.replace("{arg}", "0"))
         assertThat(navController.currentBackStack.value.size).isEqualTo(3)
 
-        val popped = navController.popBackStack(
-            TestClassPathArg(0), true, true
-        )
+        val popped = navController.popBackStack(TestClassPathArg(0), true, true)
         assertThat(popped).isTrue()
 
         // pass in different arg value
@@ -2809,44 +2755,35 @@
     @Test
     fun testNavigateViaDeepLinkKClass() {
         val baseUri = "www.example.com"
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass> {
-                deepLink(
-                    navDeepLink<TestClass>(baseUri)
-                )
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass> { deepLink(navDeepLink<TestClass>(baseUri)) }
             }
-        }
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val deepLink = Uri.parse("http://$baseUri/1")
 
         navController.navigate(deepLink)
 
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry!!.arguments!!.getInt("arg"))
-            .isEqualTo(1)
+        assertThat(navController.currentBackStackEntry!!.arguments!!.getInt("arg")).isEqualTo(1)
     }
 
     @UiThreadTest
     @Test
     fun testNavigateViaDeepLinkKClassDefaultArg() {
         val baseUri = "www.example.com"
-        @Serializable
-        class TestClass(val arg: Int = 1)
+        @Serializable class TestClass(val arg: Int = 1)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass> {
-                deepLink(
-                    navDeepLink<TestClass>(baseUri)
-                )
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass> { deepLink(navDeepLink<TestClass>(baseUri)) }
             }
-        }
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val deepLink = Uri.parse("http://$baseUri")
 
@@ -2861,18 +2798,14 @@
     @Test
     fun testNavigateViaDeepLinkKClassDefaultArgOverride() {
         val baseUri = "www.example.com"
-        @Serializable
-        class TestClass(val arg: Int = 1)
+        @Serializable class TestClass(val arg: Int = 1)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass> {
-                deepLink(
-                    navDeepLink<TestClass>(baseUri)
-                )
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass> { deepLink(navDeepLink<TestClass>(baseUri)) }
             }
-        }
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val deepLink = Uri.parse("http://$baseUri?arg=2")
 
@@ -2887,28 +2820,21 @@
     @Test
     fun testNavigateViaDeepLinkKClassPopUpTo() {
         val baseUri = "www.example.com"
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = "start") {
-            test("start")
-            test<TestClass> {
-                deepLink(
-                    navDeepLink<TestClass>(baseUri)
-                )
+        navController.graph =
+            navController.createGraph(startDestination = "start") {
+                test("start")
+                test<TestClass> { deepLink(navDeepLink<TestClass>(baseUri)) }
             }
-        }
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val deepLink = Uri.parse("http://$baseUri/1")
 
-        navController.navigate(deepLink, navOptions {
-            popUpTo("start") { inclusive = true }
-        })
+        navController.navigate(deepLink, navOptions { popUpTo("start") { inclusive = true } })
 
         assertThat(navigator.backStack.size).isEqualTo(1)
-        assertThat(navController.currentBackStackEntry!!.arguments!!.getInt("arg"))
-            .isEqualTo(1)
+        assertThat(navController.currentBackStackEntry!!.arguments!!.getInt("arg")).isEqualTo(1)
     }
 
     @UiThreadTest
@@ -2948,15 +2874,15 @@
         navController.graph = nav_simple_route_graph
         val deepLink = NavDeepLinkRequest(Uri.parse("invalidDeepLink.com"), "test.action2", null)
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLink)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Navigation destination that matches request " +
-                "NavDeepLinkRequest{ uri=invalidDeepLink.com action=test.action2 } cannot be " +
-                "found in the navigation graph NavGraph(0xc017d10b) route=nav_root " +
-                "startDestination={Destination(0x4a13399c) route=start_test}"
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLink) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Navigation destination that matches request " +
+                    "NavDeepLinkRequest{ uri=invalidDeepLink.com action=test.action2 } cannot be " +
+                    "found in the navigation graph NavGraph(0xc017d10b) route=nav_root " +
+                    "startDestination={Destination(0x4a13399c) route=start_test}"
+            )
     }
 
     @UiThreadTest
@@ -2979,15 +2905,15 @@
         navController.graph = nav_simple_route_graph
         val deepLink = NavDeepLinkRequest(Uri.parse("invalidDeepLink.com"), null, "type/test2")
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLink)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Navigation destination that matches request " +
-                "NavDeepLinkRequest{ uri=invalidDeepLink.com mimetype=type/test2 } cannot be " +
-                "found in the navigation graph NavGraph(0xc017d10b) route=nav_root " +
-                "startDestination={Destination(0x4a13399c) route=start_test}"
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLink) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Navigation destination that matches request " +
+                    "NavDeepLinkRequest{ uri=invalidDeepLink.com mimetype=type/test2 } cannot be " +
+                    "found in the navigation graph NavGraph(0xc017d10b) route=nav_root " +
+                    "startDestination={Destination(0x4a13399c) route=start_test}"
+            )
     }
 
     @UiThreadTest
@@ -3003,9 +2929,8 @@
         navController.navigate(deepLink)
         assertThat(navController.currentDestination?.route).isEqualTo("forth_test")
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val intent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val intent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(intent?.type).isEqualTo(mimeType)
     }
 
@@ -3056,12 +2981,7 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val deepLink = Uri.parse("android-app://androidx.navigation.test/test/arg2")
 
-        navController.navigate(
-            deepLink,
-            navOptions {
-                popUpTo("nav_root") { inclusive = true }
-            }
-        )
+        navController.navigate(deepLink, navOptions { popUpTo("nav_root") { inclusive = true } })
         assertThat(navController.currentDestination?.route).isEqualTo("second_test/{arg2}")
         assertThat(navigator.backStack.size).isEqualTo(1)
     }
@@ -3157,12 +3077,13 @@
     @LargeTest
     @Test
     fun testNavigateViaImplicitDeepLink() {
-        val intent = Intent(
-            Intent.ACTION_VIEW,
-            Uri.parse("android-app://androidx.navigation.test/test/argument1/argument2"),
-            ApplicationProvider.getApplicationContext() as Context,
-            TestActivity::class.java
-        )
+        val intent =
+            Intent(
+                Intent.ACTION_VIEW,
+                Uri.parse("android-app://androidx.navigation.test/test/argument1/argument2"),
+                ApplicationProvider.getApplicationContext() as Context,
+                TestActivity::class.java
+            )
 
         Intents.init()
 
@@ -3187,13 +3108,18 @@
                     navController.navigateUp()
                 }
 
-                activity.lifecycle.addObserver(object : LifecycleEventObserver {
-                    override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                        if (event.targetState == Lifecycle.State.DESTROYED) {
-                            destroyActivityLatch.countDown()
+                activity.lifecycle.addObserver(
+                    object : LifecycleEventObserver {
+                        override fun onStateChanged(
+                            source: LifecycleOwner,
+                            event: Lifecycle.Event
+                        ) {
+                            if (event.targetState == Lifecycle.State.DESTROYED) {
+                                destroyActivityLatch.countDown()
+                            }
                         }
                     }
-                })
+                )
             }
 
             assertThat(destroyActivityLatch.await(1000, TimeUnit.MILLISECONDS)).isTrue()
@@ -3206,7 +3132,8 @@
                 toPackage((ApplicationProvider.getApplicationContext() as Context).packageName),
                 not(hasData(anyString())), // The rethrow should not use the URI as primary target.
                 hasExtra(
-                    NavController.KEY_DEEP_LINK_IDS, intArrayOf(createRoute("nav_root").hashCode())
+                    NavController.KEY_DEEP_LINK_IDS,
+                    intArrayOf(createRoute("nav_root").hashCode())
                 ),
                 hasExtra(
                     Matchers.`is`(NavController.KEY_DEEP_LINK_EXTRAS),
@@ -3277,9 +3204,7 @@
 
         var destinationChangedCount = 0
 
-        navController.addOnDestinationChangedListener { _, _, _ ->
-            destinationChangedCount++
-        }
+        navController.addOnDestinationChangedListener { _, _, _ -> destinationChangedCount++ }
 
         // Explicitly setting a graph then restores the state
         navController.graph = nav_simple_route_graph
@@ -3352,20 +3277,17 @@
         var navigator = SaveStateTestNavigator()
         navController.navigatorProvider.addNavigator(navigator)
         navController.graph = nav_multiple_navigation_route_graph
-        assertThat(navController.currentDestination?.route)
-            .isEqualTo("simple_child_start_test")
+        assertThat(navController.currentDestination?.route).isEqualTo("simple_child_start_test")
         assertThat(navigator.backStack.size).isEqualTo(1)
 
         val deepLink = Uri.parse("android-app://androidx.navigation.test/test")
 
         navController.navigate(deepLink)
-        assertThat(navController.currentDestination?.route)
-            .isEqualTo("deep_link_child_second_test")
+        assertThat(navController.currentDestination?.route).isEqualTo("deep_link_child_second_test")
         assertThat(navigator.backStack.size).isEqualTo(2)
 
         navController.navigate("simple_child_start")
-        assertThat(navController.currentDestination?.route)
-            .isEqualTo("simple_child_start_test")
+        assertThat(navController.currentDestination?.route).isEqualTo("simple_child_start_test")
         assertThat(navigator.backStack.size).isEqualTo(3)
 
         val savedState = navController.saveState()
@@ -3379,8 +3301,7 @@
 
         // Explicitly setting a graph then restores the state
         navController.graph = nav_multiple_navigation_route_graph
-        assertThat(navController.currentDestination?.route)
-            .isEqualTo("simple_child_start_test")
+        assertThat(navController.currentDestination?.route).isEqualTo("simple_child_start_test")
         assertThat(navigator.backStack.size).isEqualTo(3)
         // Save state should be called on the navigator exactly once
         assertThat(navigator.saveStateCount).isEqualTo(1)
@@ -3390,16 +3311,15 @@
     @Test
     fun testSaveRestoreFromSiblingGraph() {
         val navController = createNavController()
-        val graph = createNavController().createGraph(route = "root", startDestination = "graphA") {
-            navigation(route = "graphA", startDestination = "A1") {
-                test("A1")
-                test("A2")
-                test("A3")
+        val graph =
+            createNavController().createGraph(route = "root", startDestination = "graphA") {
+                navigation(route = "graphA", startDestination = "A1") {
+                    test("A1")
+                    test("A2")
+                    test("A3")
+                }
+                navigation(route = "graphB", startDestination = "B1") { test("B1") }
             }
-            navigation(route = "graphB", startDestination = "B1") {
-                test("B1")
-            }
-        }
         navController.graph = graph
         navController.navigate("A2")
         navController.navigate("A3")
@@ -3413,9 +3333,7 @@
             }
         }
 
-        navController.navigate("A2") {
-            restoreState = true
-        }
+        navController.navigate("A2") { restoreState = true }
         // the popped stack [A2, A3] should be restored
         assertThat(navController.currentDestination?.route).isEqualTo("A3")
     }
@@ -3465,13 +3383,11 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val returnedArgs = navigator.current.arguments
         assertThat(returnedArgs).isNotNull()
-        assertThat(returnedArgs!!["test_start_default"])
-            .isEqualTo("default")
+        assertThat(returnedArgs!!["test_start_default"]).isEqualTo("default")
 
         navController.addOnDestinationChangedListener { _, _, arguments ->
             assertThat(arguments).isNotNull()
-            assertThat(arguments!!["test_start_default"])
-                .isEqualTo("default")
+            assertThat(arguments!!["test_start_default"]).isEqualTo("default")
         }
     }
 
@@ -3564,9 +3480,8 @@
 
         val popped = navController.popBackStack()
         assertWithMessage(
-            "popBackStack should return false when there's nothing on the " +
-                "back stack"
-        )
+                "popBackStack should return false when there's nothing on the " + "back stack"
+            )
             .that(popped)
             .isFalse()
     }
@@ -3622,9 +3537,7 @@
         assertThat(navController.currentDestination?.route).isEqualTo("start_test")
         assertThat(navigator.backStack.size).isEqualTo(1)
 
-        navController.navigate("second_test/arg2") {
-            popUpTo("start_test") { inclusive = true }
-        }
+        navController.navigate("second_test/arg2") { popUpTo("start_test") { inclusive = true } }
         assertThat(navController.currentDestination?.route).isEqualTo("second_test/{arg2}")
         assertThat(navigator.backStack.size).isEqualTo(1)
     }
@@ -3638,9 +3551,7 @@
         assertThat(navController.currentDestination?.route).isEqualTo("start_test")
         assertThat(navigator.backStack.size).isEqualTo(1)
 
-        navController.navigate("second_test/arg2") {
-            popUpTo("nav_root") { inclusive = true }
-        }
+        navController.navigate("second_test/arg2") { popUpTo("nav_root") { inclusive = true } }
         assertThat(navController.currentDestination?.route).isEqualTo("second_test/{arg2}")
         assertThat(navigator.backStack.size).isEqualTo(1)
     }
@@ -3660,8 +3571,7 @@
 
         // This should function identically to popBackStack()
         val success = navController.navigateUp()
-        assertThat(success)
-            .isTrue()
+        assertThat(success).isTrue()
         assertThat(navController.currentDestination?.route).isEqualTo("start_test")
         assertThat(navigator.backStack.size).isEqualTo(1)
     }
@@ -3697,172 +3607,169 @@
     @Test
     fun testNavigateWithPopKClassInclusive() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClass::class) {
-            test<TestClass>()
-            test("second")
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                test<TestClass>()
+                test("second")
+            }
 
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE).inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE)
+            .inOrder()
 
-        navController.navigate("second") {
-            popUpTo<TestClass> {
-                inclusive = true
-            }
-        }
+        navController.navigate("second") { popUpTo<TestClass> { inclusive = true } }
 
         assertThat(navController.currentDestination?.route).isEqualTo("second")
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, "second").inOrder()
+            .containsExactly(null, "second")
+            .inOrder()
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithPopKClassNotInclusive() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClass::class) {
-            test<TestClass>()
-            test("second")
-            test("third")
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                test<TestClass>()
+                test("second")
+                test("third")
+            }
 
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE).inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE)
+            .inOrder()
 
         navController.navigate("second")
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE, "second").inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE, "second")
+            .inOrder()
 
-        navController.navigate("third") {
-            popUpTo<TestClass> {
-                inclusive = false
-            }
-        }
+        navController.navigate("third") { popUpTo<TestClass> { inclusive = false } }
 
         assertThat(navController.currentDestination?.route).isEqualTo("third")
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE, "third").inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE, "third")
+            .inOrder()
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithPopObjectInclusive() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClass::class) {
-            test<TestClass>()
-            test("second")
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                test<TestClass>()
+                test("second")
+            }
 
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE).inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE)
+            .inOrder()
 
-        navController.navigate("second") {
-            popUpTo(TestClass()) {
-                inclusive = true
-            }
-        }
+        navController.navigate("second") { popUpTo(TestClass()) { inclusive = true } }
 
         assertThat(navController.currentDestination?.route).isEqualTo("second")
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, "second").inOrder()
+            .containsExactly(null, "second")
+            .inOrder()
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithPopObjectNotInclusive() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClass::class) {
-            test<TestClass>()
-            test("second")
-            test("third")
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClass::class) {
+                test<TestClass>()
+                test("second")
+                test("third")
+            }
 
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE).inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE)
+            .inOrder()
 
         navController.navigate("second")
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE, "second").inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE, "second")
+            .inOrder()
 
-        navController.navigate("third") {
-            popUpTo(TestClass()) {
-                inclusive = false
-            }
-        }
+        navController.navigate("third") { popUpTo(TestClass()) { inclusive = false } }
 
         assertThat(navController.currentDestination?.route).isEqualTo("third")
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_ROUTE, "third").inOrder()
+            .containsExactly(null, TEST_CLASS_ROUTE, "third")
+            .inOrder()
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithPopObjectArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClassPathArg(0)) {
-            test<TestClassPathArg>()
-            test("second")
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClassPathArg(0)) {
+                test<TestClassPathArg>()
+                test("second")
+            }
 
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_PATH_ARG_ROUTE).inOrder()
+            .containsExactly(null, TEST_CLASS_PATH_ARG_ROUTE)
+            .inOrder()
 
-        navController.navigate("second") {
-            popUpTo(TestClassPathArg(0)) {
-                inclusive = true
-            }
-        }
+        navController.navigate("second") { popUpTo(TestClassPathArg(0)) { inclusive = true } }
 
         assertThat(navController.currentDestination?.route).isEqualTo("second")
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, "second").inOrder()
+            .containsExactly(null, "second")
+            .inOrder()
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithPopObjectWrongArg() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(startDestination = TestClassPathArg(0)) {
-            test<TestClassPathArg>()
-            test("second")
-        }
+        navController.graph =
+            navController.createGraph(startDestination = TestClassPathArg(0)) {
+                test<TestClassPathArg>()
+                test("second")
+            }
 
         assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_PATH_ARG_ROUTE)
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_PATH_ARG_ROUTE).inOrder()
+            .containsExactly(null, TEST_CLASS_PATH_ARG_ROUTE)
+            .inOrder()
 
-        navController.navigate("second") {
-            popUpTo(TestClassPathArg(1)) {
-                inclusive = true
-            }
-        }
+        navController.navigate("second") { popUpTo(TestClassPathArg(1)) { inclusive = true } }
         assertThat(navController.currentDestination?.route).isEqualTo("second")
         // should not be popped due to wrong arg
         assertThat(navController.currentBackStack.value.map { it.destination.route })
-            .containsExactly(null, TEST_CLASS_PATH_ARG_ROUTE, "second").inOrder()
+            .containsExactly(null, TEST_CLASS_PATH_ARG_ROUTE, "second")
+            .inOrder()
     }
 
     @UiThreadTest
     @Test
     fun testNavigateWithObjectListArg() {
-        @Serializable
-        class TestClass(val arg: MutableList<Boolean>)
+        @Serializable class TestClass(val arg: MutableList<Boolean>)
 
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            startDestination = TestClass(mutableListOf(true, false, true))
-        ) {
-           test<TestClass>()
-        }
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            "androidx.navigation.NavControllerRouteTest.testNavigateWithObjectListArg" +
-                ".TestClass?arg={arg}"
-        )
+        navController.graph =
+            navController.createGraph(
+                startDestination = TestClass(mutableListOf(true, false, true))
+            ) {
+                test<TestClass>()
+            }
+        assertThat(navController.currentDestination?.route)
+            .isEqualTo(
+                "androidx.navigation.NavControllerRouteTest.testNavigateWithObjectListArg" +
+                    ".TestClass?arg={arg}"
+            )
         val route = navController.currentBackStackEntry?.toRoute<TestClass>()
         assertThat(route?.arg is MutableList).isTrue()
         assertThat(route?.arg).containsExactly(true, false, true).inOrder()
@@ -3872,21 +3779,70 @@
     @Test
     fun testNavigateWithObjectNotInGraph() {
         val navController = createNavController()
-        navController.graph = navController.createGraph(
-            startDestination = TestClass::class
-        ) {
-            test<TestClass>()
-        }
-        assertThat(navController.currentDestination?.route).isEqualTo(
-            TEST_CLASS_ROUTE
-        )
-        val exception = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(TestClassPathArg(1))
-        }
-        assertThat(exception.message).isEqualTo(
-            "Destination with route TestClassPathArg cannot be found in navigation " +
-                "graph ${navController.graph}"
-        )
+        navController.graph =
+            navController.createGraph(startDestination = TestClass::class) { test<TestClass>() }
+        assertThat(navController.currentDestination?.route).isEqualTo(TEST_CLASS_ROUTE)
+        val exception =
+            assertFailsWith<IllegalArgumentException> {
+                navController.navigate(TestClassPathArg(1))
+            }
+        assertThat(exception.message)
+            .isEqualTo(
+                "Destination with route TestClassPathArg cannot be found in navigation " +
+                    "graph ${navController.graph}"
+            )
+    }
+
+    @UiThreadTest
+    @Test
+    fun testNavigateWithObjectPathNullString() {
+        @Serializable @SerialName("test") class TestClass(val arg: String?)
+
+        val navController = createNavController()
+        navController.graph =
+            navController.createGraph(startDestination = TestClass(null)) { test<TestClass>() }
+        assertThat(navController.currentDestination?.route).isEqualTo("test/{arg}")
+        val route = navController.currentBackStackEntry?.toRoute<TestClass>()
+        assertThat(route!!.arg).isNull()
+    }
+
+    @UiThreadTest
+    @Test
+    fun testNavigateWithObjectQueryNullString() {
+        @Serializable @SerialName("test") class TestClass(val arg: String? = null)
+
+        val navController = createNavController()
+        navController.graph =
+            navController.createGraph(startDestination = TestClass()) { test<TestClass>() }
+        assertThat(navController.currentDestination?.route).isEqualTo("test?arg={arg}")
+        val route = navController.currentBackStackEntry?.toRoute<TestClass>()
+        assertThat(route!!.arg).isNull()
+    }
+
+    @UiThreadTest
+    @Test
+    fun testNavigateWithObjectNullStringList() {
+        @Serializable @SerialName("test") class TestClass(val arg: List<String>?)
+
+        val navController = createNavController()
+        navController.graph =
+            navController.createGraph(startDestination = TestClass(null)) { test<TestClass>() }
+        assertThat(navController.currentDestination?.route).isEqualTo("test?arg={arg}")
+        val route = navController.currentBackStackEntry?.toRoute<TestClass>()
+        assertThat(route!!.arg).isNull()
+    }
+
+    @UiThreadTest
+    @Test
+    fun testNavigateWithObjectNullIntList() {
+        @Serializable @SerialName("test") class TestClass(val arg: List<Int>?)
+
+        val navController = createNavController()
+        navController.graph =
+            navController.createGraph(startDestination = TestClass(null)) { test<TestClass>() }
+        assertThat(navController.currentDestination?.route).isEqualTo("test?arg={arg}")
+        val route = navController.currentBackStackEntry?.toRoute<TestClass>()
+        assertThat(route!!.arg).isNull()
     }
 
     @UiThreadTest
@@ -3895,10 +3851,12 @@
         val navController = createNavController()
         navController.graph = nav_simple_route_graph
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination("second_test/{arg2}")
-            .setArguments(bundleOf("arg2" to "value"))
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination("second_test/{arg2}")
+                .setArguments(bundleOf("arg2" to "value"))
+                .createTaskStackBuilder()
         assertThat(taskStackBuilder).isNotNull()
         assertThat(taskStackBuilder.intentCount).isEqualTo(1)
     }
@@ -3909,14 +3867,17 @@
         val navController = createNavController()
         navController.graph = nav_simple_route_graph
 
-        val args = bundleOf(
-            "test" to "test",
-            "arg2" to "value",
-        )
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination("second_test/{arg2}")
-            .setArguments(args)
-            .createTaskStackBuilder()
+        val args =
+            bundleOf(
+                "test" to "test",
+                "arg2" to "value",
+            )
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination("second_test/{arg2}")
+                .setArguments(args)
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3933,10 +3894,12 @@
         val navController = createNavController()
         navController.graph = nav_simple_route_graph
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination("second_test/{arg2}")
-            .setArguments(bundleOf("arg2" to "value"))
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination("second_test/{arg2}")
+                .setArguments(bundleOf("arg2" to "value"))
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3962,10 +3925,12 @@
             collectedDestinationIds.add(destination.route)
         }
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination("second_test/{arg2}")
-            .setArguments(bundleOf("arg2" to "value"))
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination("second_test/{arg2}")
+                .setArguments(bundleOf("arg2" to "value"))
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3988,9 +3953,8 @@
             collectedDestinationIds.add(destination.route)
         }
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination("second_test")
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController.createDeepLink().setDestination("second_test").createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -4014,10 +3978,12 @@
             collectedDestinationRoutes.add(destination.route)
         }
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination("simple_child_second_test")
-            .addDestination("deep_link_child_second_test")
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination("simple_child_second_test")
+                .addDestination("deep_link_child_second_test")
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -4029,10 +3995,12 @@
         assertThat(collectedDestinationRoutes)
             .containsExactly(
                 // First to the destination added via setDestination()
-                "simple_child_start_test", "simple_child_start_test",
+                "simple_child_start_test",
+                "simple_child_start_test",
                 "simple_child_second_test",
                 // Then to the second destination added via addDestination()
-                "deep_link_child_start_test", "deep_link_child_second_test"
+                "deep_link_child_start_test",
+                "deep_link_child_second_test"
             )
             .inOrder()
     }
@@ -4047,21 +4015,20 @@
             collectedDestinations.add(destination.route to arguments)
         }
 
-        val globalBundle = Bundle().apply {
-            putString("global", "global")
-        }
-        val firstBundle = Bundle().apply {
-            putString("test", "first")
-        }
-        val secondBundle = Bundle().apply {
-            putString("global", "overridden")
-            putString("test", "second")
-        }
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(createRoute("simple_child_second_test").hashCode(), firstBundle)
-            .addDestination(createRoute("deep_link_child_second_test").hashCode(), secondBundle)
-            .setArguments(globalBundle)
-            .createTaskStackBuilder()
+        val globalBundle = Bundle().apply { putString("global", "global") }
+        val firstBundle = Bundle().apply { putString("test", "first") }
+        val secondBundle =
+            Bundle().apply {
+                putString("global", "overridden")
+                putString("test", "second")
+            }
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination(createRoute("simple_child_second_test").hashCode(), firstBundle)
+                .addDestination(createRoute("deep_link_child_second_test").hashCode(), secondBundle)
+                .setArguments(globalBundle)
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -4097,7 +4064,8 @@
         assertThat(bundle4).string("test").isEqualTo("second")
 
         assertWithMessage("$collectedDestinations should have 5 destinations")
-            .that(collectedDestinations).hasSize(5)
+            .that(collectedDestinations)
+            .hasSize(5)
     }
 
     @UiThreadTest
@@ -4112,10 +4080,12 @@
 
         assertThat(collectedDestinationRoutes).containsExactly("start_test")
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setGraph(nav_nested_start_destination_route_graph)
-            .setDestination("nested_second_test")
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setGraph(nav_nested_start_destination_route_graph)
+                .setDestination("nested_second_test")
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -4124,7 +4094,8 @@
             .isFalse()
 
         assertWithMessage("$collectedDestinationRoutes should have 1 destination id")
-            .that(collectedDestinationRoutes).hasSize(1)
+            .that(collectedDestinationRoutes)
+            .hasSize(1)
     }
 
     @UiThreadTest
@@ -4139,10 +4110,12 @@
 
         assertThat(collectedDestinationRoutes).containsExactly("start_test")
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setGraph(nav_nested_start_destination_route_graph)
-            .setDestination("nested_test")
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setGraph(nav_nested_start_destination_route_graph)
+                .setDestination("nested_test")
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -4151,7 +4124,8 @@
             .isFalse()
 
         assertWithMessage("$collectedDestinationRoutes should have 1 destination id")
-            .that(collectedDestinationRoutes).hasSize(1)
+            .that(collectedDestinationRoutes)
+            .hasSize(1)
     }
 
     @UiThreadTest
@@ -4167,8 +4141,7 @@
 
         navController.graph = nav_simple_route_graph
         navController.navigate("second_test/arg2")
-        assertThat(navController.previousBackStackEntry?.destination?.route)
-            .isEqualTo("start_test")
+        assertThat(navController.previousBackStackEntry?.destination?.route).isEqualTo("start_test")
 
         dispatcher.addCallback(navController.currentBackStackEntry!!) {
             backPressedIntercepted = true
@@ -4196,9 +4169,7 @@
 
         val navRepeatedGraph =
             createNavController().createGraph(route = "nav_root", startDestination = "0") {
-                repeat(13) { index ->
-                    test("$index")
-                }
+                repeat(13) { index -> test("$index") }
             }
 
         navController.graph = navRepeatedGraph
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerTest.kt
index daea832..ae11abb 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerTest.kt
@@ -103,20 +103,14 @@
                 }
                 test("nested2.2")
             }
-    }
+        }
 
     private val NESTED_NAV_GRAPH_2 =
         navController.createGraph(route = "graph", startDestination = "dest1") {
             test("dest1")
             navigation(route = "nested/{longArg}", startDestination = "dest2/{longArg}") {
-                argument("longArg") {
-                    type = NavType.LongType
-                }
-                test("dest2/{longArg}") {
-                    argument("longArg") {
-                        type = NavType.LongType
-                    }
-                }
+                argument("longArg") { type = NavType.LongType }
+                test("dest2/{longArg}") { argument("longArg") { type = NavType.LongType } }
                 test("dest3")
             }
         }
@@ -171,24 +165,19 @@
         navController.setGraph(R.navigation.nav_start_destination)
         navController.navigate(R.id.second_test)
         val navigator = navController.navigatorProvider[TestNavigator::class]
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(2)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
+        assertThat(navigator.backStack.size).isEqualTo(2)
         val originalBackStackEntry = navigator.backStack.last()
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
 
         // Now set a new graph, overriding the first
         navController.setGraph(R.navigation.nav_nested_start_destination)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.nested_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.nested_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
         assertThat(originalViewModel.isCleared).isTrue()
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -199,21 +188,17 @@
         navController.setGraph(R.navigation.nav_start_destination)
         navController.navigate(R.id.second_test)
         val navigator = navController.navigatorProvider[TestNavigator::class]
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(2)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
+        assertThat(navigator.backStack.size).isEqualTo(2)
         val originalBackStackEntry = navigator.backStack.last()
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
 
         // Now set the graph a second time, using the same graph
         navController.setGraph(R.navigation.nav_start_destination)
         // Setting the same graph shouldn't change the back stack
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(2)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
+        assertThat(navigator.backStack.size).isEqualTo(2)
         val newBackStackEntry = navigator.backStack.last()
         val newViewModel = ViewModelProvider(newBackStackEntry).get<TestAndroidViewModel>()
         assertThat(newBackStackEntry.id).isSameInstanceAs(originalBackStackEntry.id)
@@ -229,27 +214,21 @@
         navController.setGraph(R.navigation.nav_start_destination)
         navController.navigate(R.id.second_test)
         val navigator = navController.navigatorProvider[TestNavigator::class]
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.second_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(2)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.second_test)
+        assertThat(navigator.backStack.size).isEqualTo(2)
         val originalBackStackEntry = navigator.backStack.last()
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
 
         navController.popBackStack(R.id.second_test, inclusive = true, saveState = true)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
         assertThat(originalViewModel.isCleared).isFalse()
 
         // Now set a new graph, overriding the first
         navController.setGraph(R.navigation.nav_nested_start_destination)
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.nested_test)
-        assertThat(navigator.backStack.size)
-            .isEqualTo(1)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.nested_test)
+        assertThat(navigator.backStack.size).isEqualTo(1)
         assertThat(originalViewModel.isCleared).isTrue()
     }
 
@@ -283,11 +262,10 @@
         val navController = createNavController()
         val args = bundleOf(TEST_ARG to TEST_ARG_VALUE)
 
-        val navGraph = navController.navigatorProvider.navigation(
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, args)
         val navigator = navController.navigatorProvider[TestNavigator::class]
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.start_test)
@@ -323,142 +301,157 @@
     @Test
     fun testGraphRootMissingRequiredArgumentPlaceholder() {
         val navController = createNavController()
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.createGraph(route = "graph", startDestination = "dest1") {
-                argument("intArg") {
-                    type = NavType.IntType
-                    nullable = false
+        val expected =
+            assertFailsWith<IllegalArgumentException> {
+                navController.createGraph(route = "graph", startDestination = "dest1") {
+                    argument("intArg") {
+                        type = NavType.IntType
+                        nullable = false
+                    }
+                    test("dest1")
                 }
-                test("dest1")
             }
-        }
-        assertThat(expected.message).isEqualTo(
-            "Deep link android-app://androidx.navigation/graph can't be used to open destination " +
-                "NavGraph(0xa22391e1) startDestination=0x0.\n" +
-                "Following required arguments are missing: [intArg]"
-        )
+        assertThat(expected.message)
+            .isEqualTo(
+                "Deep link android-app://androidx.navigation/graph can't be used to open destination " +
+                    "NavGraph(0xa22391e1) startDestination=0x0.\n" +
+                    "Following required arguments are missing: [intArg]"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGraphRootMissingPartialRequiredArgumentPlaceholders() {
         val navController = createNavController()
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.createGraph(route = "graph/{intArg}", startDestination = "dest1") {
-                argument("intArg") {
-                    type = NavType.IntType
-                    nullable = false
+        val expected =
+            assertFailsWith<IllegalArgumentException> {
+                navController.createGraph(route = "graph/{intArg}", startDestination = "dest1") {
+                    argument("intArg") {
+                        type = NavType.IntType
+                        nullable = false
+                    }
+                    argument("longArg") {
+                        type = NavType.LongType
+                        nullable = false
+                    }
+                    test("dest1")
                 }
-                argument("longArg") {
-                    type = NavType.LongType
-                    nullable = false
-                }
-                test("dest1")
             }
-        }
-        assertThat(expected.message).isEqualTo(
-            "Deep link android-app://androidx.navigation/graph/{intArg} can't be used to " +
-                "open destination NavGraph(0xf9423909) startDestination=0x0.\n" +
-                "Following required arguments are missing: [longArg]"
-        )
+        assertThat(expected.message)
+            .isEqualTo(
+                "Deep link android-app://androidx.navigation/graph/{intArg} can't be used to " +
+                    "open destination NavGraph(0xf9423909) startDestination=0x0.\n" +
+                    "Following required arguments are missing: [longArg]"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGraphRootMissingAllRequiredArgumentPlaceholders() {
         val navController = createNavController()
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.createGraph(route = "graph", startDestination = "dest1") {
-                argument("intArg") {
-                    type = NavType.IntType
-                    nullable = false
+        val expected =
+            assertFailsWith<IllegalArgumentException> {
+                navController.createGraph(route = "graph", startDestination = "dest1") {
+                    argument("intArg") {
+                        type = NavType.IntType
+                        nullable = false
+                    }
+                    argument("longArg") {
+                        type = NavType.LongType
+                        nullable = false
+                    }
+                    test("dest1")
                 }
-                argument("longArg") {
-                    type = NavType.LongType
-                    nullable = false
-                }
-                test("dest1")
             }
-        }
-        assertThat(expected.message).isEqualTo(
-            "Deep link android-app://androidx.navigation/graph can't be used to open " +
-                "destination NavGraph(0xa22391e1) startDestination=0x0.\n" +
-                "Following required arguments are missing: [intArg, longArg]"
-        )
+        assertThat(expected.message)
+            .isEqualTo(
+                "Deep link android-app://androidx.navigation/graph can't be used to open " +
+                    "destination NavGraph(0xa22391e1) startDestination=0x0.\n" +
+                    "Following required arguments are missing: [intArg, longArg]"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGraphDestMissingRequiredArgumentPlaceholder() {
         val navController = createNavController()
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.graph =
-                navController.createGraph(route = "graph", startDestination = "dest1") {
-                    test("dest1") {
-                        argument("intArg") {
-                            type = NavType.IntType
-                            nullable = false
+        val expected =
+            assertFailsWith<IllegalArgumentException> {
+                navController.graph =
+                    navController.createGraph(route = "graph", startDestination = "dest1") {
+                        test("dest1") {
+                            argument("intArg") {
+                                type = NavType.IntType
+                                nullable = false
+                            }
                         }
                     }
-                }
-        }
-        assertThat(expected.message).isEqualTo(
-            "Deep link android-app://androidx.navigation/dest1 can't be used to open " +
-                "destination Destination(0xa1f3a662).\n" +
-                "Following required arguments are missing: [intArg]"
-        )
+            }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Deep link android-app://androidx.navigation/dest1 can't be used to open " +
+                    "destination Destination(0xa1f3a662).\n" +
+                    "Following required arguments are missing: [intArg]"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGraphDestMissingPartialRequiredArgumentPlaceholder() {
         val navController = createNavController()
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.graph =
-                navController.createGraph(route = "graph", startDestination = "dest1/{intArg}") {
-                    test("dest1/{intArg}") {
-                        argument("intArg") {
-                            type = NavType.IntType
-                            nullable = false
-                        }
-                        argument("longArg") {
-                            type = NavType.LongType
-                            nullable = false
+        val expected =
+            assertFailsWith<IllegalArgumentException> {
+                navController.graph =
+                    navController.createGraph(
+                        route = "graph",
+                        startDestination = "dest1/{intArg}"
+                    ) {
+                        test("dest1/{intArg}") {
+                            argument("intArg") {
+                                type = NavType.IntType
+                                nullable = false
+                            }
+                            argument("longArg") {
+                                type = NavType.LongType
+                                nullable = false
+                            }
                         }
                     }
-                }
-        }
-        assertThat(expected.message).isEqualTo(
-            "Deep link android-app://androidx.navigation/dest1/{intArg} can't be used to " +
-                "open destination Destination(0x994aa5a8).\n" +
-                "Following required arguments are missing: [longArg]"
-        )
+            }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Deep link android-app://androidx.navigation/dest1/{intArg} can't be used to " +
+                    "open destination Destination(0x994aa5a8).\n" +
+                    "Following required arguments are missing: [longArg]"
+            )
     }
 
     @UiThreadTest
     @Test
     fun testGraphDestMissingAllRequiredArgumentPlaceholders() {
         val navController = createNavController()
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.graph =
-                navController.createGraph(route = "graph", startDestination = "dest1") {
-                    test("dest") {
-                        argument("intArg") {
-                            type = NavType.IntType
-                            nullable = false
-                        }
-                        argument("longArg") {
-                            type = NavType.LongType
-                            nullable = false
+        val expected =
+            assertFailsWith<IllegalArgumentException> {
+                navController.graph =
+                    navController.createGraph(route = "graph", startDestination = "dest1") {
+                        test("dest") {
+                            argument("intArg") {
+                                type = NavType.IntType
+                                nullable = false
+                            }
+                            argument("longArg") {
+                                type = NavType.LongType
+                                nullable = false
+                            }
                         }
                     }
-                }
-        }
-        assertThat(expected.message).isEqualTo(
-            "Deep link android-app://androidx.navigation/dest can't be used to open " +
-                "destination Destination(0x78d64faf).\n" +
-                "Following required arguments are missing: [intArg, longArg]"
-        )
+            }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Deep link android-app://androidx.navigation/dest can't be used to open " +
+                    "destination Destination(0x78d64faf).\n" +
+                    "Following required arguments are missing: [intArg, longArg]"
+            )
     }
 
     @UiThreadTest
@@ -478,8 +471,7 @@
         try {
             navController.graph
             fail("getGraph() should throw an IllegalStateException before setGraph()")
-        } catch (expected: IllegalStateException) {
-        }
+        } catch (expected: IllegalStateException) {}
     }
 
     @Suppress("DEPRECATION")
@@ -488,20 +480,18 @@
     fun testSetViewModelStoreOwnerAfterGraphSet() {
         val navController = createNavController()
         navController.setViewModelStore(ViewModelStore())
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         try {
             navController.setViewModelStore(ViewModelStore())
         } catch (e: IllegalStateException) {
-            assertThat(e).hasMessageThat().contains(
-                "ViewModelStore should be set before setGraph call"
-            )
+            assertThat(e)
+                .hasMessageThat()
+                .contains("ViewModelStore should be set before setGraph call")
         }
     }
 
@@ -512,12 +502,10 @@
         val navController = createNavController()
         val viewModelStore = ViewModelStore()
         navController.setViewModelStore(viewModelStore)
-        val navGraph = navController.navigatorProvider.navigation(
-            id = 1,
-            startDestination = R.id.start_test
-        ) {
-            test(R.id.start_test)
-        }
+        val navGraph =
+            navController.navigatorProvider.navigation(id = 1, startDestination = R.id.start_test) {
+                test(R.id.start_test)
+            }
         navController.setGraph(navGraph, null)
 
         navController.setViewModelStore(viewModelStore)
@@ -610,26 +598,27 @@
         navController.navigate(R.id.second_test)
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @UiThreadTest
     @Test
     fun testNavigateNullGraph() {
         val navController = createNavController()
-        val deepLinkRequest = NavDeepLinkRequest.Builder.fromUri(
-            Uri.parse("android-app://androidx.navigation.test/destination")
-        ).build()
+        val deepLinkRequest =
+            NavDeepLinkRequest.Builder.fromUri(
+                    Uri.parse("android-app://androidx.navigation.test/destination")
+                )
+                .build()
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLinkRequest)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Cannot navigate to $deepLinkRequest. Navigation graph has not " +
-                "been set for NavController $navController."
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLinkRequest) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Cannot navigate to $deepLinkRequest. Navigation graph has not " +
+                    "been set for NavController $navController."
+            )
     }
 
     @UiThreadTest
@@ -637,16 +626,19 @@
     fun testInvalidNavigateViaDeepLink() {
         val navController = createNavController()
         navController.setGraph(R.navigation.nav_simple)
-        val deepLinkRequest = NavDeepLinkRequest.Builder.fromUri(
-            Uri.parse("android-app://androidx.navigation.test/invalid")
-        ).build()
+        val deepLinkRequest =
+            NavDeepLinkRequest.Builder.fromUri(
+                    Uri.parse("android-app://androidx.navigation.test/invalid")
+                )
+                .build()
 
         try {
             navController.navigate(deepLinkRequest)
             fail("navController.navigate must throw")
         } catch (e: IllegalArgumentException) {
             assertThat(e)
-                .hasMessageThat().contains(
+                .hasMessageThat()
+                .contains(
                     "Navigation destination that matches request $deepLinkRequest cannot be " +
                         "found in the navigation graph ${navController.graph}"
                 )
@@ -665,9 +657,8 @@
         navController.navigate(deepLink)
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val intent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val intent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(intent?.data).isEqualTo(deepLink)
     }
 
@@ -701,9 +692,8 @@
         navController.navigate(deepLink)
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val intent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val intent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(intent?.action).isEqualTo(action)
     }
 
@@ -715,15 +705,15 @@
         val action = "test.action2"
         val deepLink = NavDeepLinkRequest(null, action, null)
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLink)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Navigation destination that matches request " +
-                "NavDeepLinkRequest{ action=test.action2 } cannot be " +
-                "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
-                "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLink) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Navigation destination that matches request " +
+                    "NavDeepLinkRequest{ action=test.action2 } cannot be " +
+                    "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
+                    "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
+            )
         assertThat(navController.currentDestination?.route).isEqualTo(null)
     }
 
@@ -740,9 +730,8 @@
         navController.navigate(deepLink)
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val intent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val intent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(intent?.action).isEqualTo(action)
     }
 
@@ -754,15 +743,15 @@
         val action = "test.action2"
         val deepLink = NavDeepLinkRequest("http://www.example.com".toUri(), action, null)
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLink)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Navigation destination that matches request " +
-                "NavDeepLinkRequest{ uri=http://www.example.com action=test.action2 } cannot be " +
-                "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
-                "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLink) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Navigation destination that matches request " +
+                    "NavDeepLinkRequest{ uri=http://www.example.com action=test.action2 } cannot be " +
+                    "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
+                    "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
+            )
         assertThat(navController.currentDestination?.route).isEqualTo(null)
     }
 
@@ -786,15 +775,15 @@
         navController.setGraph(R.navigation.nav_simple)
         val deepLink = NavDeepLinkRequest(Uri.parse("invalidDeepLink.com"), "test.action2", null)
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLink)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Navigation destination that matches request " +
-                "NavDeepLinkRequest{ uri=invalidDeepLink.com action=test.action2 } cannot be " +
-                "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
-                "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLink) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Navigation destination that matches request " +
+                    "NavDeepLinkRequest{ uri=invalidDeepLink.com action=test.action2 } cannot be " +
+                    "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
+                    "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
+            )
     }
 
     @UiThreadTest
@@ -817,15 +806,15 @@
         navController.setGraph(R.navigation.nav_simple)
         val deepLink = NavDeepLinkRequest(Uri.parse("invalidDeepLink.com"), null, "type/test2")
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLink)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Navigation destination that matches request " +
-                "NavDeepLinkRequest{ uri=invalidDeepLink.com mimetype=type/test2 } cannot be " +
-                "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
-                "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLink) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Navigation destination that matches request " +
+                    "NavDeepLinkRequest{ uri=invalidDeepLink.com mimetype=type/test2 } cannot be " +
+                    "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
+                    "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
+            )
         assertThat(navController.currentDestination?.route).isEqualTo(null)
     }
 
@@ -837,15 +826,15 @@
         // deeplink with this mime type has a required Query arg
         val deepLink = NavDeepLinkRequest(null, null, "type/test3")
 
-        val expected = assertFailsWith<IllegalArgumentException> {
-            navController.navigate(deepLink)
-        }
-        assertThat(expected.message).isEqualTo(
-            "Navigation destination that matches request " +
-                "NavDeepLinkRequest{ mimetype=type/test3 } cannot be " +
-                "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
-                "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
-        )
+        val expected =
+            assertFailsWith<IllegalArgumentException> { navController.navigate(deepLink) }
+        assertThat(expected.message)
+            .isEqualTo(
+                "Navigation destination that matches request " +
+                    "NavDeepLinkRequest{ mimetype=type/test3 } cannot be " +
+                    "found in the navigation graph NavGraph(androidx.navigation.test:id/nav_root) " +
+                    "label= startDestination={Destination(androidx.navigation.test:id/start_test)}"
+            )
         assertThat(navController.currentDestination?.route).isEqualTo(null)
     }
 
@@ -862,9 +851,8 @@
         navController.navigate(deepLink)
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.forth_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val intent = navigator.current.arguments?.getParcelable<Intent>(
-            NavController.KEY_DEEP_LINK_INTENT
-        )
+        val intent =
+            navigator.current.arguments?.getParcelable<Intent>(NavController.KEY_DEEP_LINK_INTENT)
         assertThat(intent?.type).isEqualTo(mimeType)
     }
 
@@ -915,12 +903,7 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val deepLink = Uri.parse("android-app://androidx.navigation.test/test/arg2")
 
-        navController.navigate(
-            deepLink,
-            navOptions {
-                popUpTo(R.id.nav_root) { inclusive = true }
-            }
-        )
+        navController.navigate(deepLink, navOptions { popUpTo(R.id.nav_root) { inclusive = true } })
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
     }
@@ -1026,12 +1009,13 @@
     @LargeTest
     @Test
     fun testNavigateViaImplicitDeepLink() {
-        val intent = Intent(
-            Intent.ACTION_VIEW,
-            Uri.parse("android-app://androidx.navigation.test/test/argument1/argument2"),
-            ApplicationProvider.getApplicationContext(),
-            TestActivity::class.java
-        )
+        val intent =
+            Intent(
+                Intent.ACTION_VIEW,
+                Uri.parse("android-app://androidx.navigation.test/test/argument1/argument2"),
+                ApplicationProvider.getApplicationContext(),
+                TestActivity::class.java
+            )
 
         Intents.init()
 
@@ -1043,9 +1027,7 @@
                 val navigator =
                     navController.navigatorProvider.getNavigator(TestNavigator::class.java)
 
-                assertThat(
-                    navController.currentDestination!!.id
-                ).isEqualTo(R.id.second_test)
+                assertThat(navController.currentDestination!!.id).isEqualTo(R.id.second_test)
 
                 // Only the leaf destination should be on the stack.
                 assertThat(navigator.backStack.size).isEqualTo(1)
@@ -1084,12 +1066,13 @@
 
     @Test
     fun testNavigateUp_nullArgs() {
-        val intent = Intent(
-            Intent.ACTION_VIEW,
-            Uri.parse("android-app://androidx.navigation.test/nullArgTest/"),
-            ApplicationProvider.getApplicationContext(),
-            TestActivity::class.java
-        )
+        val intent =
+            Intent(
+                Intent.ACTION_VIEW,
+                Uri.parse("android-app://androidx.navigation.test/nullArgTest/"),
+                ApplicationProvider.getApplicationContext(),
+                TestActivity::class.java
+            )
 
         Intents.init()
 
@@ -1101,9 +1084,7 @@
                 val navigator =
                     navController.navigatorProvider.getNavigator(TestNavigator::class.java)
 
-                assertThat(
-                    navController.currentDestination!!.id
-                ).isEqualTo(R.id.nullArg_test)
+                assertThat(navController.currentDestination!!.id).isEqualTo(R.id.nullArg_test)
                 assertThat(navigator.backStack.size).isEqualTo(1)
 
                 // destination does not have args
@@ -1119,32 +1100,25 @@
     @LargeTest
     @Test
     fun testExplicitDeepLinkNavigateUpOffOtherTaskStack() {
-        val navDeepLinkBuilder = NavDeepLinkBuilder(
-            ApplicationProvider.getApplicationContext()
-                as Context
-        )
+        val navDeepLinkBuilder =
+            NavDeepLinkBuilder(ApplicationProvider.getApplicationContext() as Context)
 
-        val originalIntent = navDeepLinkBuilder
-            .setComponentName(TestActivity::class.java)
-            .setGraph(R.navigation.nav_simple) // startDestination= @id/start_test
-            // Explicitly adding the start destination allows arguments to be set.
-            .addDestination(
-                R.id.start_test,
-                bundleOf("arg" to "Start Argument")
-            )
-            .addDestination(
-                R.id.start_test_with_default_arg,
-                bundleOf("arg" to "Middle Argument")
-            )
-            .addDestination(
-                R.id.second_test,
-                bundleOf("arg" to "Leaf Argument")
-            )
-            .createTaskStackBuilder()
-            .intents[0]
-            .apply {
-                this.setFlags(0) // No flags. Simulate another app's task stack.
-            }
+        val originalIntent =
+            navDeepLinkBuilder
+                .setComponentName(TestActivity::class.java)
+                .setGraph(R.navigation.nav_simple) // startDestination= @id/start_test
+                // Explicitly adding the start destination allows arguments to be set.
+                .addDestination(R.id.start_test, bundleOf("arg" to "Start Argument"))
+                .addDestination(
+                    R.id.start_test_with_default_arg,
+                    bundleOf("arg" to "Middle Argument")
+                )
+                .addDestination(R.id.second_test, bundleOf("arg" to "Leaf Argument"))
+                .createTaskStackBuilder()
+                .intents[0]
+                .apply {
+                    this.setFlags(0) // No flags. Simulate another app's task stack.
+                }
 
         Intents.init()
         with(ActivityScenario.launch(TestActivity::class.java)) {
@@ -1190,14 +1164,12 @@
 
                 with(backStack[1]) {
                     assertThat(destination.id).isEqualTo(R.id.start_test_with_default_arg)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("Middle Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("Middle Argument")
                 }
 
                 with(backStack[0]) {
                     assertThat(destination.id).isEqualTo(R.id.start_test)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("Start Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("Start Argument")
                 }
 
                 assertThat(navController.navigateUp()).isTrue()
@@ -1206,8 +1178,7 @@
 
                 with(backStack[0]) {
                     assertThat(destination.id).isEqualTo(R.id.start_test)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("Start Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("Start Argument")
                 }
 
                 assertThat(navController.navigateUp()).isFalse()
@@ -1218,21 +1189,17 @@
     @LargeTest
     @Test
     fun testExplicitDeepLinkNavigateUpWithImplicitStartDestination() {
-        val navDeepLinkBuilder = NavDeepLinkBuilder(
-            ApplicationProvider.getApplicationContext()
-                as Context
-        )
+        val navDeepLinkBuilder =
+            NavDeepLinkBuilder(ApplicationProvider.getApplicationContext() as Context)
 
-        val intent = navDeepLinkBuilder
-            .setComponentName(TestActivity::class.java)
-            .setGraph(R.navigation.nav_simple) // startDestination= @id/start_test
-            // startDestination is implied here.
-            .addDestination(
-                R.id.second_test,
-                bundleOf("arg" to "Leaf Argument")
-            )
-            .createTaskStackBuilder()
-            .intents[0]
+        val intent =
+            navDeepLinkBuilder
+                .setComponentName(TestActivity::class.java)
+                .setGraph(R.navigation.nav_simple) // startDestination= @id/start_test
+                // startDestination is implied here.
+                .addDestination(R.id.second_test, bundleOf("arg" to "Leaf Argument"))
+                .createTaskStackBuilder()
+                .intents[0]
 
         with(ActivityScenario.launch(TestActivity::class.java)) {
             withActivity {
@@ -1248,8 +1215,7 @@
 
                 with(backStack[1]) { // Explicit leaf Destination
                     assertThat(destination.id).isEqualTo(R.id.second_test)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("Leaf Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("Leaf Argument")
                 }
 
                 with(backStack[0]) { // Implied Start Destination
@@ -1278,31 +1244,21 @@
     @LargeTest
     @Test
     fun testExplicitDeepLinkOffOtherTaskWithRepeatedStartDestination() {
-        val navDeepLinkBuilder = NavDeepLinkBuilder(
-            ApplicationProvider.getApplicationContext()
-                as Context
-        )
+        val navDeepLinkBuilder =
+            NavDeepLinkBuilder(ApplicationProvider.getApplicationContext() as Context)
 
-        val intent = navDeepLinkBuilder
-            .setComponentName(TestActivity::class.java)
-            .setGraph(R.navigation.nav_simple) // startDestination= @id/start_test
-            .addDestination(
-                R.id.start_test,
-                bundleOf("arg" to "Start Argument")
-            )
-            .addDestination(
-                R.id.second_test,
-                bundleOf("arg" to "Middle Argument")
-            )
-            .addDestination(
-                R.id.start_test,
-                bundleOf("arg" to "Leaf Argument")
-            )
-            .createTaskStackBuilder()
-            .intents[0]
-            .apply {
-                this.setFlags(0) // Simulate another app's task stack.
-            }
+        val intent =
+            navDeepLinkBuilder
+                .setComponentName(TestActivity::class.java)
+                .setGraph(R.navigation.nav_simple) // startDestination= @id/start_test
+                .addDestination(R.id.start_test, bundleOf("arg" to "Start Argument"))
+                .addDestination(R.id.second_test, bundleOf("arg" to "Middle Argument"))
+                .addDestination(R.id.start_test, bundleOf("arg" to "Leaf Argument"))
+                .createTaskStackBuilder()
+                .intents[0]
+                .apply {
+                    this.setFlags(0) // Simulate another app's task stack.
+                }
 
         with(ActivityScenario.launch(TestActivity::class.java)) {
             withActivity {
@@ -1318,8 +1274,7 @@
 
                 with(backStack[0]) { // Leaf (only) destination on other task.
                     assertThat(destination.id).isEqualTo(R.id.start_test)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("Leaf Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("Leaf Argument")
                 }
 
                 // Should relaunch Activity.
@@ -1333,20 +1288,16 @@
     @LargeTest
     @Test
     fun testExplicitDeepLinkWithStartDestinationOnly() {
-        val navDeepLinkBuilder = NavDeepLinkBuilder(
-            ApplicationProvider.getApplicationContext()
-                as Context
-        )
+        val navDeepLinkBuilder =
+            NavDeepLinkBuilder(ApplicationProvider.getApplicationContext() as Context)
 
-        val intent = navDeepLinkBuilder
-            .setComponentName(TestActivity::class.java)
-            .setGraph(R.navigation.nav_simple)
-            .addDestination(
-                R.id.start_test,
-                bundleOf("arg" to "Start Argument")
-            )
-            .createTaskStackBuilder()
-            .intents[0]
+        val intent =
+            navDeepLinkBuilder
+                .setComponentName(TestActivity::class.java)
+                .setGraph(R.navigation.nav_simple)
+                .addDestination(R.id.start_test, bundleOf("arg" to "Start Argument"))
+                .createTaskStackBuilder()
+                .intents[0]
 
         with(ActivityScenario.launch(TestActivity::class.java)) {
             withActivity {
@@ -1361,8 +1312,7 @@
 
                 with(backStack[0]) { // Start (only) destination.
                     assertThat(destination.id).isEqualTo(R.id.start_test)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("Start Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("Start Argument")
                 }
 
                 // Shouldn't relaunch Activity.
@@ -1375,27 +1325,20 @@
     @LargeTest
     @Test
     fun testExplicitDeepLinkOffLeafDestination() {
-        val navDeepLinkBuilder = NavDeepLinkBuilder(
-            ApplicationProvider.getApplicationContext()
-                as Context
-        )
+        val navDeepLinkBuilder =
+            NavDeepLinkBuilder(ApplicationProvider.getApplicationContext() as Context)
 
-        val intent = navDeepLinkBuilder
-            .setComponentName(TestActivity::class.java)
-            .setGraph(R.navigation.nav_simple)
-            .addDestination(
-                R.id.start_test,
-                bundleOf("arg" to "Start Argument")
-            )
-            .addDestination(
-                R.id.second_test,
-                bundleOf("arg" to "Second Argument")
-            )
-            .createTaskStackBuilder()
-            .intents[0]
-            .apply {
-                this.setFlags(0) // Simulate another app's task stack.
-            }
+        val intent =
+            navDeepLinkBuilder
+                .setComponentName(TestActivity::class.java)
+                .setGraph(R.navigation.nav_simple)
+                .addDestination(R.id.start_test, bundleOf("arg" to "Start Argument"))
+                .addDestination(R.id.second_test, bundleOf("arg" to "Second Argument"))
+                .createTaskStackBuilder()
+                .intents[0]
+                .apply {
+                    this.setFlags(0) // Simulate another app's task stack.
+                }
 
         with(ActivityScenario.launch(TestActivity::class.java)) {
             withActivity {
@@ -1410,8 +1353,7 @@
 
                 with(backStack[0]) { // Leaf destination
                     assertThat(destination.id).isEqualTo(R.id.second_test)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("Second Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("Second Argument")
                 }
 
                 // Run some undefined behavior to take us off the previous explicitly-built
@@ -1419,14 +1361,11 @@
                 // it's still the Activity's current Intent.
                 // In supported usage, Activity#setIntent() would have been called, avoiding this.
                 navController.handleDeepLink(
-                    navController.createDeepLink()
-                        .addDestination(
-                            R.id.start_test,
-                            bundleOf("arg" to "New Start Argument")
-                        )
+                    navController
+                        .createDeepLink()
+                        .addDestination(R.id.start_test, bundleOf("arg" to "New Start Argument"))
                         .createTaskStackBuilder()
                         .intents[0]
-
                 )
 
                 backStack = navigator.backStack
@@ -1434,8 +1373,7 @@
                 assertThat(backStack).hasSize(1)
                 with(backStack[0]) {
                     assertThat(destination.id).isEqualTo(R.id.start_test)
-                    assertThat(arguments?.getString("arg"))
-                        .isEqualTo("New Start Argument")
+                    assertThat(arguments?.getString("arg")).isEqualTo("New Start Argument")
                 }
 
                 // Shouldn't relaunch Activity, since we're not in a valid place for the original
@@ -1449,22 +1387,23 @@
     @LargeTest
     @Test
     fun testExplicitDeepLinkNestedNavGraph() {
-        val navDeepLinkBuilder = NavDeepLinkBuilder(
-            ApplicationProvider.getApplicationContext()
-                as Context
-        )
+        val navDeepLinkBuilder =
+            NavDeepLinkBuilder(ApplicationProvider.getApplicationContext() as Context)
 
-        val intent = navDeepLinkBuilder
-            .setComponentName(TestActivity::class.java)
-            .setGraph(R.navigation.nav_nested_start_destination) // startDestination = R.id.nested
-            .addDestination(R.id.root) // The root nav_graph of nav_nested_start_destination
-            // R.id.nested implied
-            // R.id.nested_test implied
-            .createTaskStackBuilder()
-            .intents[0]
-            .apply {
-                this.setFlags(0) // Simulate another app's task stack.
-            }
+        val intent =
+            navDeepLinkBuilder
+                .setComponentName(TestActivity::class.java)
+                .setGraph(
+                    R.navigation.nav_nested_start_destination
+                ) // startDestination = R.id.nested
+                .addDestination(R.id.root) // The root nav_graph of nav_nested_start_destination
+                // R.id.nested implied
+                // R.id.nested_test implied
+                .createTaskStackBuilder()
+                .intents[0]
+                .apply {
+                    this.setFlags(0) // Simulate another app's task stack.
+                }
 
         with(ActivityScenario.launch(TestActivity::class.java)) {
             withActivity {
@@ -1491,22 +1430,21 @@
     @LargeTest
     @Test
     fun testExplicitDeepLinkSeparateNavGraph() {
-        val navDeepLinkBuilder = NavDeepLinkBuilder(
-            ApplicationProvider.getApplicationContext()
-                as Context
-        )
+        val navDeepLinkBuilder =
+            NavDeepLinkBuilder(ApplicationProvider.getApplicationContext() as Context)
 
-        val intent = navDeepLinkBuilder
-            .setComponentName(TestActivity::class.java)
-            .setGraph(R.navigation.nav_multiple_navigation)
-            // Implied start: simple_child_start_test
-            .addDestination(R.id.deep_link_child_start)
-            // Implied start: deep_link_child_start_test
-            .createTaskStackBuilder()
-            .intents[0]
-            .apply {
-                this.setFlags(0) // Simulate another app's task stack.
-            }
+        val intent =
+            navDeepLinkBuilder
+                .setComponentName(TestActivity::class.java)
+                .setGraph(R.navigation.nav_multiple_navigation)
+                // Implied start: simple_child_start_test
+                .addDestination(R.id.deep_link_child_start)
+                // Implied start: deep_link_child_start_test
+                .createTaskStackBuilder()
+                .intents[0]
+                .apply {
+                    this.setFlags(0) // Simulate another app's task stack.
+                }
 
         Intents.init()
         with(ActivityScenario.launch(TestActivity::class.java)) {
@@ -1528,16 +1466,15 @@
                 assertThat(isFinishing).isTrue()
             }
         }
-        val ids = checkNotNull(
-            Intents.getIntents().last().getIntArrayExtra(NavController.KEY_DEEP_LINK_IDS)
-        )
+        val ids =
+            checkNotNull(
+                Intents.getIntents().last().getIntArrayExtra(NavController.KEY_DEEP_LINK_IDS)
+            )
         Intents.release()
 
         // Both the defined navGraph, and its implied startDestination, should have been popped.
         // The root navigation element will inflate its own startDestination.
-        assertThat(ids.asList()).containsExactly(
-            R.id.nav_multi_module_base
-        )
+        assertThat(ids.asList()).containsExactly(R.id.nav_multi_module_base)
     }
 
     @UiThreadTest
@@ -1588,9 +1525,7 @@
 
         var destinationChangedCount = 0
 
-        navController.addOnDestinationChangedListener { _, _, _ ->
-            destinationChangedCount++
-        }
+        navController.addOnDestinationChangedListener { _, _, _ -> destinationChangedCount++ }
 
         // Explicitly setting a graph then restores the state
         navController.setGraph(R.navigation.nav_simple)
@@ -1607,8 +1542,8 @@
         var navController = NavController(context)
         var navigator = TestNavigator()
         navController.navigatorProvider.addNavigator(navigator)
-        val graph = NavInflater(context, navController.navigatorProvider)
-            .inflate(R.navigation.nav_simple)
+        val graph =
+            NavInflater(context, navController.navigatorProvider).inflate(R.navigation.nav_simple)
         navController.graph = graph
         navController.navigate(R.id.second_test)
 
@@ -1733,6 +1668,7 @@
                 .isEqualTo(TEST_ARG_VALUE)
         }
     }
+
     @UiThreadTest
     @Test
     fun testChangeArgsFromOnDestinationChangedListener() {
@@ -1814,20 +1750,21 @@
 
         val startLifecycle = navController.getBackStackEntry(R.id.start_test).lifecycle
         assertThat(startLifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
-        startLifecycle.addObserver(object : LifecycleEventObserver {
-            override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                if (event == Lifecycle.Event.ON_RESUME) {
-                    navController.navigate(R.id.start_test_with_default_arg)
+        startLifecycle.addObserver(
+            object : LifecycleEventObserver {
+                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                    if (event == Lifecycle.Event.ON_RESUME) {
+                        navController.navigate(R.id.start_test_with_default_arg)
+                    }
                 }
             }
-        })
+        )
 
         // Now call popBackStack() to trigger our observer
         navController.popBackStack()
 
         // And assert that we navigated correctly
-        assertThat(navController.currentDestination?.id)
-            .isEqualTo(R.id.start_test_with_default_arg)
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.start_test_with_default_arg)
         assertThat(receivedDestinationIds)
             .containsExactly(
                 R.id.start_test,
@@ -1855,13 +1792,15 @@
 
         val startLifecycle = navController.getBackStackEntry(R.id.second_test).lifecycle
         assertThat(startLifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
-        startLifecycle.addObserver(object : LifecycleEventObserver {
-            override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                if (event == Lifecycle.Event.ON_RESUME) {
-                    navController.popBackStack()
+        startLifecycle.addObserver(
+            object : LifecycleEventObserver {
+                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                    if (event == Lifecycle.Event.ON_RESUME) {
+                        navController.popBackStack()
+                    }
                 }
             }
-        })
+        )
 
         // Now call popBackStack() to trigger our observer
         navController.popBackStack()
@@ -1889,13 +1828,11 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         val returnedArgs = navigator.current.arguments
         assertThat(returnedArgs).isNotNull()
-        assertThat(returnedArgs!!["test_start_default"])
-            .isEqualTo("default")
+        assertThat(returnedArgs!!["test_start_default"]).isEqualTo("default")
 
         navController.addOnDestinationChangedListener { _, _, arguments ->
             assertThat(arguments).isNotNull()
-            assertThat(arguments!!["test_start_default"])
-                .isEqualTo("default")
+            assertThat(arguments!!["test_start_default"]).isEqualTo("default")
         }
     }
 
@@ -1937,12 +1874,8 @@
 
         val nestedId = ("android-app://androidx.navigation/nested/{longArg}").hashCode()
 
-        val expected = assertFailsWith<NullPointerException> {
-            navController.navigate(nestedId)
-        }
-        assertThat(expected.message).isEqualTo(
-            "null cannot be cast to non-null type kotlin.Long"
-        )
+        val expected = assertFailsWith<NullPointerException> { navController.navigate(nestedId) }
+        assertThat(expected.message).isEqualTo("null cannot be cast to non-null type kotlin.Long")
     }
 
     @UiThreadTest
@@ -1972,10 +1905,7 @@
         val nestedId1 = ("android-app://androidx.navigation/nested/{longArg}").hashCode()
 
         // navigate to nested graph first destination, provide non-nullable arg
-        navController.navigate(
-            nestedId1,
-            bundleOf("longArg" to 123L)
-        )
+        navController.navigate(nestedId1, bundleOf("longArg" to 123L))
         assertThat(navController.currentDestination?.route).isEqualTo("dest2/{longArg}")
         assertThat(navController.currentBackStackEntry?.arguments?.getLong("longArg"))
             .isEqualTo(123L)
@@ -2053,9 +1983,8 @@
 
         val popped = navController.popBackStack()
         assertWithMessage(
-            "popBackStack should return false when there's nothing on the " +
-                "back stack"
-        )
+                "popBackStack should return false when there's nothing on the " + "back stack"
+            )
             .that(popped)
             .isFalse()
     }
@@ -2079,9 +2008,8 @@
             .isTrue()
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.start_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2100,9 +2028,8 @@
         navigator.popCurrent()
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.start_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2136,16 +2063,14 @@
         assertThat(navigator.backStack.size).isEqualTo(1)
 
         navController.navigate(
-            R.id.second_test, null,
-            navOptions {
-                popUpTo(R.id.start_test) { inclusive = true }
-            }
+            R.id.second_test,
+            null,
+            navOptions { popUpTo(R.id.start_test) { inclusive = true } }
         )
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2158,10 +2083,9 @@
         assertThat(navigator.backStack.size).isEqualTo(1)
 
         navController.navigate(
-            R.id.second_test, null,
-            navOptions {
-                popUpTo(R.id.nav_root) { inclusive = true }
-            }
+            R.id.second_test,
+            null,
+            navOptions { popUpTo(R.id.nav_root) { inclusive = true } }
         )
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
@@ -2182,13 +2106,11 @@
 
         // This should function identically to popBackStack()
         val success = navController.navigateUp()
-        assertThat(success)
-            .isTrue()
+        assertThat(success).isTrue()
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.start_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2246,9 +2168,8 @@
         navController.navigate(R.id.self)
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.second_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navController.visibleEntries.value).containsExactly(
-            navController.currentBackStackEntry
-        )
+        assertThat(navController.visibleEntries.value)
+            .containsExactly(navController.currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2283,9 +2204,7 @@
         val returnedArgs = navigator.current.arguments
         assertThat(returnedArgs?.getString(testKey)).isEqualTo(testValue)
         assertThat(destinationListenerExecuted).isTrue()
-        assertThat(navController.currentBackStackEntry).isNotSameInstanceAs(
-            currentBackStackEntry
-        )
+        assertThat(navController.currentBackStackEntry).isNotSameInstanceAs(currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2316,12 +2235,7 @@
             destinationListenerExecutionCount++
         }
 
-        navController.navigate(
-            R.id.start_test, args,
-            navOptions {
-                launchSingleTop = true
-            }
-        )
+        navController.navigate(R.id.start_test, args, navOptions { launchSingleTop = true })
 
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.start_test)
         assertThat(navigator.backStack.size).isEqualTo(1)
@@ -2329,9 +2243,7 @@
         val returnedArgs = navigator.current.arguments
         assertThat(returnedArgs?.getString(testKey)).isEqualTo(testValue)
         assertThat(destinationListenerExecutionCount).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry).isNotSameInstanceAs(
-            currentBackStackEntry
-        )
+        assertThat(navController.currentBackStackEntry).isNotSameInstanceAs(currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2368,10 +2280,9 @@
         }
 
         navController.navigate(
-            R.id.start_test_with_default_arg, args,
-            navOptions {
-                launchSingleTop = true
-            }
+            R.id.start_test_with_default_arg,
+            args,
+            navOptions { launchSingleTop = true }
         )
 
         assertThat(navController.currentDestination?.id ?: 0)
@@ -2382,9 +2293,7 @@
         assertThat(returnedArgs?.getString(testKey)).isEqualTo(testValue)
         assertThat(returnedArgs?.getBoolean("defaultArg", false)).isTrue()
         assertThat(destinationListenerExecutionCount).isEqualTo(2)
-        assertThat(navController.currentBackStackEntry).isNotSameInstanceAs(
-            currentBackStackEntry
-        )
+        assertThat(navController.currentBackStackEntry).isNotSameInstanceAs(currentBackStackEntry)
     }
 
     @UiThreadTest
@@ -2429,9 +2338,8 @@
         navController.setGraph(NESTED_NAV_GRAPH, startDestinationArgs = null)
         assertThat(navController.currentDestination?.route).isEqualTo("nested4")
 
-        val graphNavigator = navController.navigatorProvider.getNavigator(
-            NavGraphNavigator::class.java
-        )
+        val graphNavigator =
+            navController.navigatorProvider.getNavigator(NavGraphNavigator::class.java)
         val testNavigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
 
         // contains all entries from base node to final destination
@@ -2475,9 +2383,8 @@
         navController.setGraph(NESTED_NAV_GRAPH, startDestinationArgs = null)
         assertThat(navController.currentDestination?.route).isEqualTo("nested4")
 
-        val graphNavigator = navController.navigatorProvider.getNavigator(
-            NavGraphNavigator::class.java
-        )
+        val graphNavigator =
+            navController.navigatorProvider.getNavigator(NavGraphNavigator::class.java)
         val testNavigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
 
         // contains all entries from base node to final destination
@@ -2526,9 +2433,8 @@
         navController.setGraph(NESTED_NAV_GRAPH, startDestinationArgs = null)
         assertThat(navController.currentDestination?.route).isEqualTo("nested4")
 
-        val graphNavigator = navController.navigatorProvider.getNavigator(
-            NavGraphNavigator::class.java
-        )
+        val graphNavigator =
+            navController.navigatorProvider.getNavigator(NavGraphNavigator::class.java)
         val testNavigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
 
         // second navigation to a non-singleTop destination
@@ -2579,9 +2485,8 @@
         navController.setGraph(NESTED_NAV_GRAPH, startDestinationArgs = null)
         assertThat(navController.currentDestination?.route).isEqualTo("nested4")
 
-        val graphNavigator = navController.navigatorProvider.getNavigator(
-            NavGraphNavigator::class.java
-        )
+        val graphNavigator =
+            navController.navigatorProvider.getNavigator(NavGraphNavigator::class.java)
         val testNavigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
 
         // second navigation to a singleTop destination
@@ -2633,9 +2538,8 @@
         navController.setGraph(NESTED_NAV_GRAPH, startDestinationArgs = null)
         assertThat(navController.currentDestination?.route).isEqualTo("nested4")
 
-        val graphNavigator = navController.navigatorProvider.getNavigator(
-            NavGraphNavigator::class.java
-        )
+        val graphNavigator =
+            navController.navigatorProvider.getNavigator(NavGraphNavigator::class.java)
         val testNavigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
 
         // contains all entries from base node to final destination
@@ -2682,8 +2586,8 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
         val originalBackStackEntry = navigator.backStack[0]
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
         navController.navigate(
             R.id.second_test,
             null,
@@ -2702,9 +2606,7 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.second_test) {
-                    inclusive = true
-                }
+                popUpTo(R.id.second_test) { inclusive = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.start_test)
@@ -2720,22 +2622,23 @@
     fun testNavigateOptionSaveRestoreStateNested() {
         // navigated with Transition so child does not destroy parent graph too soon
         val childNavigator = TestNavigator(hasTransitions = true)
-        val navController = NavHostController(ApplicationProvider.getApplicationContext()).apply {
-            navigatorProvider.addNavigator(childNavigator)
-            setViewModelStore(ViewModelStore())
-            graph = navController.navigatorProvider.navigation(
-                route = "graph",
-                startDestination = "outerChild"
-            ) {
-                test("outerChild")
-                navigation(route = "nestedParent", startDestination = "nestedChild") {
-                    test(route = "nestedChild")
-                }
+        val navController =
+            NavHostController(ApplicationProvider.getApplicationContext()).apply {
+                navigatorProvider.addNavigator(childNavigator)
+                setViewModelStore(ViewModelStore())
+                graph =
+                    navController.navigatorProvider.navigation(
+                        route = "graph",
+                        startDestination = "outerChild"
+                    ) {
+                        test("outerChild")
+                        navigation(route = "nestedParent", startDestination = "nestedChild") {
+                            test(route = "nestedChild")
+                        }
+                    }
             }
-        }
-        val parentNavigator = navController.navigatorProvider.getNavigator(
-            NavGraphNavigator::class.java
-        )
+        val parentNavigator =
+            navController.navigatorProvider.getNavigator(NavGraphNavigator::class.java)
 
         // navigate to nested graph
         navController.navigate("nestedParent")
@@ -2752,9 +2655,7 @@
         navController.navigate(
             "graph",
             navOptions {
-                popUpTo(navController.graph.findStartDestination().route!!) {
-                    saveState = true
-                }
+                popUpTo(navController.graph.findStartDestination().route!!) { saveState = true }
                 launchSingleTop = true
             }
         )
@@ -2766,9 +2667,7 @@
         navController.navigate(
             "nestedParent",
             navOptions {
-                popUpTo(navController.graph.findStartDestination().route!!) {
-                    saveState = true
-                }
+                popUpTo(navController.graph.findStartDestination().route!!) { saveState = true }
                 restoreState = true
                 launchSingleTop = true
             }
@@ -2796,8 +2695,8 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
         val originalBackStackEntry = navigator.backStack[0]
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
         navController.navigate(
             R.id.second_test,
             null,
@@ -2826,8 +2725,8 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
         val originalBackStackEntry = navController.getBackStackEntry(R.id.nav_root)
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
         navController.navigate(
             R.id.second_test,
             null,
@@ -2846,9 +2745,7 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.nav_root) {
-                    inclusive = true
-                }
+                popUpTo(R.id.nav_root) { inclusive = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0).isEqualTo(R.id.start_test)
@@ -2926,8 +2823,8 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
         val originalBackStackEntry = navController.getBackStackEntry(R.id.simple_child_start)
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
         navController.navigate(R.id.simple_child_second_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
         navController.navigate(
@@ -2949,9 +2846,7 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.deep_link_child_start) {
-                    inclusive = true
-                }
+                popUpTo(R.id.deep_link_child_start) { inclusive = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0)
@@ -2972,8 +2867,8 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
         val originalBackStackEntry = navController.getBackStackEntry(R.id.simple_child_start)
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
         navController.navigate(R.id.simple_child_second_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
 
@@ -2983,18 +2878,16 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.simple_child_start_test) {
-                    saveState = true
-                }
+                popUpTo(R.id.simple_child_start_test) { saveState = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0)
             .isEqualTo(R.id.deep_link_child_start_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val secondGraphBackStackEntry = navController
-            .getBackStackEntry(R.id.deep_link_child_start_test)
-        val secondGraphViewModel = ViewModelProvider(secondGraphBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val secondGraphBackStackEntry =
+            navController.getBackStackEntry(R.id.deep_link_child_start_test)
+        val secondGraphViewModel =
+            ViewModelProvider(secondGraphBackStackEntry).get<TestAndroidViewModel>()
         assertThat(secondGraphViewModel).isNotSameInstanceAs(originalViewModel)
         navController.navigate(R.id.deep_link_child_second_test)
         assertThat(navigator.backStack.size).isEqualTo(3)
@@ -3005,9 +2898,7 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.simple_child_start_test) {
-                    saveState = true
-                }
+                popUpTo(R.id.simple_child_start_test) { saveState = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0)
@@ -3025,18 +2916,16 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.simple_child_start_test) {
-                    saveState = true
-                }
+                popUpTo(R.id.simple_child_start_test) { saveState = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0)
             .isEqualTo(R.id.deep_link_child_second_test)
         assertThat(navigator.backStack.size).isEqualTo(3)
-        val newSecondGraphBackStackEntry = navController
-            .getBackStackEntry(R.id.deep_link_child_start_test)
-        val newSecondGraphViewModel = ViewModelProvider(newSecondGraphBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val newSecondGraphBackStackEntry =
+            navController.getBackStackEntry(R.id.deep_link_child_start_test)
+        val newSecondGraphViewModel =
+            ViewModelProvider(newSecondGraphBackStackEntry).get<TestAndroidViewModel>()
         assertThat(newSecondGraphBackStackEntry.id).isSameInstanceAs(secondGraphBackStackEntry.id)
         assertThat(newSecondGraphViewModel).isSameInstanceAs(secondGraphViewModel)
     }
@@ -3050,8 +2939,8 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(1)
         val originalBackStackEntry = navController.getBackStackEntry(R.id.simple_child_start)
-        val originalViewModel = ViewModelProvider(originalBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val originalViewModel =
+            ViewModelProvider(originalBackStackEntry).get<TestAndroidViewModel>()
 
         // Navigate to the second graph
         navController.navigate(
@@ -3059,18 +2948,16 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.simple_child_start_test) {
-                    saveState = true
-                }
+                popUpTo(R.id.simple_child_start_test) { saveState = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0)
             .isEqualTo(R.id.deep_link_child_start_test)
         assertThat(navigator.backStack.size).isEqualTo(2)
-        val secondGraphBackStackEntry = navController
-            .getBackStackEntry(R.id.deep_link_child_start_test)
-        val secondGraphViewModel = ViewModelProvider(secondGraphBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val secondGraphBackStackEntry =
+            navController.getBackStackEntry(R.id.deep_link_child_start_test)
+        val secondGraphViewModel =
+            ViewModelProvider(secondGraphBackStackEntry).get<TestAndroidViewModel>()
         assertThat(secondGraphViewModel).isNotSameInstanceAs(originalViewModel)
         navController.navigate(R.id.deep_link_child_second_test)
         assertThat(navigator.backStack.size).isEqualTo(3)
@@ -3081,9 +2968,7 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.simple_child_start_test) {
-                    saveState = true
-                }
+                popUpTo(R.id.simple_child_start_test) { saveState = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0)
@@ -3101,18 +2986,16 @@
             null,
             navOptions {
                 restoreState = true
-                popUpTo(R.id.simple_child_start_test) {
-                    saveState = true
-                }
+                popUpTo(R.id.simple_child_start_test) { saveState = true }
             }
         )
         assertThat(navController.currentDestination?.id ?: 0)
             .isEqualTo(R.id.deep_link_child_second_test)
         assertThat(navigator.backStack.size).isEqualTo(3)
-        val newSecondGraphBackStackEntry = navController
-            .getBackStackEntry(R.id.deep_link_child_start_test)
-        val newSecondGraphViewModel = ViewModelProvider(newSecondGraphBackStackEntry)
-            .get<TestAndroidViewModel>()
+        val newSecondGraphBackStackEntry =
+            navController.getBackStackEntry(R.id.deep_link_child_start_test)
+        val newSecondGraphViewModel =
+            ViewModelProvider(newSecondGraphBackStackEntry).get<TestAndroidViewModel>()
         assertThat(newSecondGraphBackStackEntry.id).isSameInstanceAs(secondGraphBackStackEntry.id)
         assertThat(newSecondGraphViewModel).isSameInstanceAs(secondGraphViewModel)
     }
@@ -3142,9 +3025,7 @@
         val navigator = navController.navigatorProvider.getNavigator(TestNavigator::class.java)
         assertThat(navigator.backStack.size).isEqualTo(2)
 
-        val navOptions = navOptions {
-            popUpTo(R.id.start_test)
-        }
+        val navOptions = navOptions { popUpTo(R.id.start_test) }
         // the same as to call .navigate(R.id.finish)
         navController.navigate(0, null, navOptions)
 
@@ -3207,17 +3088,14 @@
     @Suppress("DEPRECATION")
     fun testNavigateOptionPopUpToFurthestRouteWithArg() {
         val navController = createNavController()
-        val graph = navController.createGraph(id = 1, startDestination = 2) {
-            test(id = 2)
-            test(id = 3)
-        }
+        val graph =
+            navController.createGraph(id = 1, startDestination = 2) {
+                test(id = 2)
+                test(id = 3)
+            }
         graph[3].apply {
             route = "route/{arg}"
-            addArgument(
-                "arg",
-                NavArgumentBuilder().apply {
-                    type = NavType.StringType
-                }.build())
+            addArgument("arg", NavArgumentBuilder().apply { type = NavType.StringType }.build())
         }
         navController.graph = graph
         // series of alternate navigation between two destinations
@@ -3250,17 +3128,14 @@
     @Suppress("DEPRECATION")
     fun testNavigateOptionPopUpToClosestRouteWithArg() {
         val navController = createNavController()
-        val graph = navController.createGraph(id = 1, startDestination = 2) {
-            test(id = 2)
-            test(id = 3)
-        }
+        val graph =
+            navController.createGraph(id = 1, startDestination = 2) {
+                test(id = 2)
+                test(id = 3)
+            }
         graph[3].apply {
             route = "route/{arg}"
-            addArgument(
-                "arg",
-                NavArgumentBuilder().apply {
-                    type = NavType.StringType
-                }.build())
+            addArgument("arg", NavArgumentBuilder().apply { type = NavType.StringType }.build())
         }
         navController.graph = graph
         // series of alternate navigation between two destinations
@@ -3292,10 +3167,11 @@
     @Suppress("DEPRECATION")
     fun testNavigateOptionPopUpToRouteWithoutArg() {
         val navController = createNavController()
-        val graph = navController.createGraph(route = "nav_root", startDestination = "start_test") {
-            test("start_test")
-            test("second_test")
-        }
+        val graph =
+            navController.createGraph(route = "nav_root", startDestination = "start_test") {
+                test("start_test")
+                test("second_test")
+            }
 
         navController.graph = graph
         // series of alternate navigation between two destinations
@@ -3312,9 +3188,8 @@
         navController.navigate("start_test", navOptions)
         assertThat(navController.currentDestination?.route).isEqualTo("start_test")
         assertThat(navigator.backStack.size).isEqualTo(2)
-        assertThat(navigator.backStack.map { it.destination.route }).containsExactly(
-            "start_test", "start_test"
-        )
+        assertThat(navigator.backStack.map { it.destination.route })
+            .containsExactly("start_test", "start_test")
     }
 
     @UiThreadTest
@@ -3352,9 +3227,8 @@
         val navController = createNavController()
         navController.setGraph(R.navigation.nav_simple)
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(R.id.second_test)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController.createDeepLink().setDestination(R.id.second_test).createTaskStackBuilder()
         assertThat(taskStackBuilder).isNotNull()
         assertThat(taskStackBuilder.intentCount).isEqualTo(1)
     }
@@ -3367,10 +3241,12 @@
 
         val args = Bundle()
         args.putString("test", "test")
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(R.id.second_test)
-            .setArguments(args)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination(R.id.second_test)
+                .setArguments(args)
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3387,9 +3263,8 @@
         val navController = createNavController()
         navController.setGraph(R.navigation.nav_simple)
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(R.id.second_test)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController.createDeepLink().setDestination(R.id.second_test).createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3415,9 +3290,8 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(R.id.second_test)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController.createDeepLink().setDestination(R.id.second_test).createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3440,9 +3314,10 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val intent = Intent("test.action").apply {
-            addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
-        }
+        val intent =
+            Intent("test.action").apply {
+                addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
+            }
         assertThat(intent).isNotNull()
         assertWithMessage("NavController should handle deep links to its own graph")
             .that(navController.handleDeepLink(intent))
@@ -3463,9 +3338,10 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val intent = Intent("test.action2").apply {
-            addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
-        }
+        val intent =
+            Intent("test.action2").apply {
+                addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
+            }
         assertThat(intent).isNotNull()
         assertWithMessage("NavController should not match with any deeplink due to missing arg")
             .that(navController.handleDeepLink(intent))
@@ -3484,12 +3360,13 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val intent = Intent(
-            "test.action2",
-            "invalidDeepLink.com".toUri(),
-            ApplicationProvider.getApplicationContext() as Context,
-            TestActivity::class.java
-        )
+        val intent =
+            Intent(
+                "test.action2",
+                "invalidDeepLink.com".toUri(),
+                ApplicationProvider.getApplicationContext() as Context,
+                TestActivity::class.java
+            )
         assertThat(intent).isNotNull()
         assertWithMessage("NavController should not match with any deeplink due to missing arg")
             .that(navController.handleDeepLink(intent))
@@ -3508,13 +3385,14 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val intent = Intent(
-            "test.action2",
-            // deeplink with matching action has Int NavType
-            "test-app://test/abc".toUri(),
-            ApplicationProvider.getApplicationContext() as Context,
-            TestActivity::class.java
-        )
+        val intent =
+            Intent(
+                "test.action2",
+                // deeplink with matching action has Int NavType
+                "test-app://test/abc".toUri(),
+                ApplicationProvider.getApplicationContext() as Context,
+                TestActivity::class.java
+            )
         assertThat(intent).isNotNull()
         assertWithMessage("NavController should not match with any deeplink due to wrong arg type")
             .that(navController.handleDeepLink(intent))
@@ -3531,13 +3409,14 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val intent = Intent(
-            "test.action3",
-            // deeplink with this action type has a required Query arg
-            "test-app://test".toUri(),
-            ApplicationProvider.getApplicationContext() as Context,
-            TestActivity::class.java
-        )
+        val intent =
+            Intent(
+                "test.action3",
+                // deeplink with this action type has a required Query arg
+                "test-app://test".toUri(),
+                ApplicationProvider.getApplicationContext() as Context,
+                TestActivity::class.java
+            )
         assertThat(intent).isNotNull()
         assertWithMessage("NavController should not match with any deeplink due to wrong arg type")
             .that(navController.handleDeepLink(intent))
@@ -3554,9 +3433,8 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(R.id.second_test)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController.createDeepLink().setDestination(R.id.second_test).createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3580,10 +3458,12 @@
             collectedDestinationIds.add(destination.id)
         }
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(R.id.simple_child_second_test)
-            .addDestination(R.id.deep_link_child_second_test)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination(R.id.simple_child_second_test)
+                .addDestination(R.id.deep_link_child_second_test)
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3595,10 +3475,12 @@
         assertThat(collectedDestinationIds)
             .containsExactly(
                 // First to the destination added via setDestination()
-                R.id.simple_child_start_test, R.id.simple_child_start_test,
+                R.id.simple_child_start_test,
+                R.id.simple_child_start_test,
                 R.id.simple_child_second_test,
                 // Then to the second destination added via addDestination()
-                R.id.deep_link_child_start_test, R.id.deep_link_child_second_test
+                R.id.deep_link_child_start_test,
+                R.id.deep_link_child_second_test
             )
             .inOrder()
     }
@@ -3615,15 +3497,14 @@
 
         val globalBundle = bundleOf("global" to "global")
         val firstBundle = bundleOf("test" to "first")
-        val secondBundle = bundleOf(
-            "global" to "overridden",
-            "test" to "second"
-        )
-        val taskStackBuilder = navController.createDeepLink()
-            .setDestination(R.id.simple_child_second_test, firstBundle)
-            .addDestination(R.id.deep_link_child_second_test, secondBundle)
-            .setArguments(globalBundle)
-            .createTaskStackBuilder()
+        val secondBundle = bundleOf("global" to "overridden", "test" to "second")
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setDestination(R.id.simple_child_second_test, firstBundle)
+                .addDestination(R.id.deep_link_child_second_test, secondBundle)
+                .setArguments(globalBundle)
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3659,7 +3540,8 @@
         assertThat(bundle4).string("test").isEqualTo("second")
 
         assertWithMessage("$collectedDestinations should have 5 destinations")
-            .that(collectedDestinations).hasSize(5)
+            .that(collectedDestinations)
+            .hasSize(5)
     }
 
     @UiThreadTest
@@ -3674,10 +3556,12 @@
 
         assertThat(collectedDestinationIds).containsExactly(R.id.start_test)
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setGraph(R.navigation.nav_nested_start_destination)
-            .setDestination(R.id.nested_second_test)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setGraph(R.navigation.nav_nested_start_destination)
+                .setDestination(R.id.nested_second_test)
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3686,7 +3570,8 @@
             .isFalse()
 
         assertWithMessage("$collectedDestinationIds should have 1 destination id")
-            .that(collectedDestinationIds).hasSize(1)
+            .that(collectedDestinationIds)
+            .hasSize(1)
     }
 
     @UiThreadTest
@@ -3701,10 +3586,12 @@
 
         assertThat(collectedDestinationIds).containsExactly(R.id.start_test)
 
-        val taskStackBuilder = navController.createDeepLink()
-            .setGraph(R.navigation.nav_nested_start_destination)
-            .setDestination(R.id.nested_test)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            navController
+                .createDeepLink()
+                .setGraph(R.navigation.nav_nested_start_destination)
+                .setDestination(R.id.nested_test)
+                .createTaskStackBuilder()
 
         val intent = taskStackBuilder.editIntentAt(0)
         assertThat(intent).isNotNull()
@@ -3713,7 +3600,8 @@
             .isFalse()
 
         assertWithMessage("$collectedDestinationIds should have 1 destination id")
-            .that(collectedDestinationIds).hasSize(1)
+            .that(collectedDestinationIds)
+            .hasSize(1)
     }
 
     @UiThreadTest
@@ -3752,15 +3640,16 @@
         val navController = createNavController()
         navController.setGraph(R.navigation.nav_simple)
 
-        val listener = object : NavController.OnDestinationChangedListener {
-            override fun onDestinationChanged(
-                controller: NavController,
-                destination: NavDestination,
-                arguments: Bundle?
-            ) {
-                navController.removeOnDestinationChangedListener(this)
+        val listener =
+            object : NavController.OnDestinationChangedListener {
+                override fun onDestinationChanged(
+                    controller: NavController,
+                    destination: NavDestination,
+                    arguments: Bundle?
+                ) {
+                    navController.removeOnDestinationChangedListener(this)
+                }
             }
-        }
 
         navController.addOnDestinationChangedListener(listener)
         navController.addOnDestinationChangedListener { _, _, _ -> }
@@ -3770,22 +3659,23 @@
     @Suppress("DEPRECATION")
     @Test
     fun createGraph() {
-        val graph = navController.createGraph(startDestination = DESTINATION_ID) {
-            test(DESTINATION_ID)
-        }
+        val graph =
+            navController.createGraph(startDestination = DESTINATION_ID) { test(DESTINATION_ID) }
         assertWithMessage("Destination should be added to the graph")
-            .that(DESTINATION_ID in graph).isTrue()
+            .that(DESTINATION_ID in graph)
+            .isTrue()
     }
 
     @UiThreadTest
     @Test
     @Suppress("DEPRECATION", "EXPERIMENTAL_API_USAGE")
     fun currentBackStackEntryFlow() = runBlocking {
-        navController.graph = navController.createGraph(startDestination = 1) {
-            test(1)
-            test(2)
-            test(3)
-        }
+        navController.graph =
+            navController.createGraph(startDestination = 1) {
+                test(1)
+                test(2)
+                test(3)
+            }
 
         navController.currentBackStackEntryFlow
             .take(navController.graph.count())
@@ -3862,9 +3752,7 @@
     }
 }
 
-/**
- * [TestNavigator] that helps with testing saving and restoring state.
- */
+/** [TestNavigator] that helps with testing saving and restoring state. */
 @Navigator.Name("test")
 class SaveStateTestNavigator : TestNavigator() {
 
@@ -3892,9 +3780,7 @@
     }
 }
 
-/**
- * [CustomTestParcelable] that helps testing bundled custom parcels
- */
+/** [CustomTestParcelable] that helps testing bundled custom parcels */
 data class CustomTestParcelable(val name: String?) : Parcelable {
     constructor(parcel: Parcel) : this(parcel.readString())
 
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerViewModelTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerViewModelTest.kt
index 2ff68ee9..c877334 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerViewModelTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerViewModelTest.kt
@@ -66,8 +66,7 @@
         assertThat(navGraphViewModelStore).isNotNull()
 
         baseViewModelStore.clear()
-        assertThat(viewModel.getViewModelStore(navGraphId)).isNotSameInstanceAs(
-            navGraphViewModelStore
-        )
+        assertThat(viewModel.getViewModelStore(navGraphId))
+            .isNotSameInstanceAs(navGraphViewModelStore)
     }
 }
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt
index 18a7e32..52ac13c 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavDeepLinkBuilderTest.kt
@@ -35,14 +35,13 @@
 @RunWith(AndroidJUnit4::class)
 class NavDeepLinkBuilderTest {
 
-    private val targetContext get() = ApplicationProvider.getApplicationContext() as Context
+    private val targetContext
+        get() = ApplicationProvider.getApplicationContext() as Context
 
     val nav_simple_route_graph =
         createNavController().createGraph(route = "nav_root", startDestination = "start_test") {
             test("start_test")
-            test("start_test_with_default_arg") {
-                argument("defaultArg") { defaultValue = true }
-            }
+            test("start_test_with_default_arg") { argument("defaultArg") { defaultValue = true } }
             test("second_test/{arg2}") {
                 argument("arg2") { type = NavType.StringType }
                 argument("defaultArg") {
@@ -84,10 +83,11 @@
     fun fromContextSetGraphNavInflater() {
         val deepLinkBuilder = NavDeepLinkBuilder(targetContext)
 
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(TestNavigator())
-        }
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(TestNavigator())
+            }
         val navInflater = NavInflater(targetContext, navigatorProvider)
         val navGraph = navInflater.inflate(R.navigation.nav_simple)
         deepLinkBuilder.setGraph(navGraph)
@@ -111,13 +111,12 @@
     fun fromContextSetGraphProgrammatic() {
         val deepLinkBuilder = NavDeepLinkBuilder(targetContext)
 
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(TestNavigator())
-        }
-        val navGraph = navigatorProvider.navigation(startDestination = 1) {
-            test(1)
-        }
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(TestNavigator())
+            }
+        val navGraph = navigatorProvider.navigation(startDestination = 1) { test(1) }
         deepLinkBuilder.setGraph(navGraph)
         deepLinkBuilder.setDestination(1)
         val taskStackBuilder = deepLinkBuilder.createTaskStackBuilder()
@@ -128,15 +127,15 @@
     fun fromContextSetGraphProgrammaticRoute() {
         val deepLinkBuilder = NavDeepLinkBuilder(targetContext)
 
-        val navigatorProvider = NavigatorProvider().apply {
-            addNavigator(NavGraphNavigator(this))
-            addNavigator(TestNavigator())
-        }
-        val navGraph = navigatorProvider.navigation(
-            route = "graph", startDestination = "test"
-        ) {
-            test("test")
-        }
+        val navigatorProvider =
+            NavigatorProvider().apply {
+                addNavigator(NavGraphNavigator(this))
+                addNavigator(TestNavigator())
+            }
+        val navGraph =
+            navigatorProvider.navigation(route = "graph", startDestination = "test") {
+                test("test")
+            }
         deepLinkBuilder.setGraph(navGraph)
         deepLinkBuilder.setDestination("test")
         val taskStackBuilder = deepLinkBuilder.createTaskStackBuilder()
@@ -146,10 +145,11 @@
     @UiThreadTest
     @Test
     fun fromNavController() {
-        val navController = NavController(targetContext).apply {
-            navigatorProvider.addNavigator(TestNavigator())
-            setGraph(R.navigation.nav_simple)
-        }
+        val navController =
+            NavController(targetContext).apply {
+                navigatorProvider.addNavigator(TestNavigator())
+                setGraph(R.navigation.nav_simple)
+            }
         val deepLinkBuilder = NavDeepLinkBuilder(navController)
 
         deepLinkBuilder.setDestination(R.id.second_test)
@@ -160,10 +160,11 @@
     @UiThreadTest
     @Test
     fun fromNavControllerRoute() {
-        val navController = NavController(targetContext).apply {
-            navigatorProvider.addNavigator(TestNavigator())
-            graph = nav_simple_route_graph
-        }
+        val navController =
+            NavController(targetContext).apply {
+                navigatorProvider.addNavigator(TestNavigator())
+                graph = nav_simple_route_graph
+            }
         val deepLinkBuilder = NavDeepLinkBuilder(navController)
 
         deepLinkBuilder.setDestination("second_test/{arg2}")
@@ -191,15 +192,14 @@
 
         deepLinkBuilder.setGraph(R.navigation.nav_simple) // startDest=start_test
         deepLinkBuilder.addDestination(R.id.start_test, bundleOf("arg" to "arg1"))
-        deepLinkBuilder.addDestination(
-            R.id.second_test,
-            bundleOf("arg" to "arg2")
-        )
+        deepLinkBuilder.addDestination(R.id.second_test, bundleOf("arg" to "arg2"))
         val intent = deepLinkBuilder.createTaskStackBuilder().intents[0]
 
         val ids = intent.getIntArrayExtra(NavController.KEY_DEEP_LINK_IDS)
-        val args = intent.getParcelableArrayListExtra<Bundle>(NavController.KEY_DEEP_LINK_ARGS)
-            ?.map { it.getString("arg") }
+        val args =
+            intent.getParcelableArrayListExtra<Bundle>(NavController.KEY_DEEP_LINK_ARGS)?.map {
+                it.getString("arg")
+            }
 
         assertThat(ids).asList().containsExactly(R.id.nav_root, R.id.second_test).inOrder()
         assertThat(args).containsExactly("arg1", "arg2").inOrder()
@@ -217,8 +217,10 @@
         val intent = deepLinkBuilder.createTaskStackBuilder().intents[0]
 
         val ids = intent.getIntArrayExtra(NavController.KEY_DEEP_LINK_IDS)
-        val args = intent.getParcelableArrayListExtra<Bundle>(NavController.KEY_DEEP_LINK_ARGS)
-            ?.map { it.getString("arg") }
+        val args =
+            intent.getParcelableArrayListExtra<Bundle>(NavController.KEY_DEEP_LINK_ARGS)?.map {
+                it.getString("arg")
+            }
         assertThat(ids).asList().containsExactly(R.id.nav_root)
         assertThat(args).containsExactly("arg1")
     }
@@ -240,7 +242,8 @@
     fun generateNestedExplicitStartDestinationMultipleTimes() {
         val deepLinkBuilder = NavDeepLinkBuilder(targetContext)
 
-        deepLinkBuilder.setGraph(R.navigation.nav_nested_start_destination) // startDest=nested_test
+        deepLinkBuilder
+            .setGraph(R.navigation.nav_nested_start_destination) // startDest=nested_test
             .addDestination(R.id.nested_test) // Implied by the graph.
             .addDestination(R.id.nested_test) // An additional instance
         val intent = deepLinkBuilder.createTaskStackBuilder().intents[0]
@@ -272,11 +275,10 @@
         val intent = deepLinkBuilder.createTaskStackBuilder().intents[0]
 
         val ids = intent.getIntArrayExtra(NavController.KEY_DEEP_LINK_IDS)
-        assertThat(ids).asList().containsExactly(
-            R.id.nav_root,
-            R.id.nested_navigation,
-            R.id.nested_other
-        ).inOrder()
+        assertThat(ids)
+            .asList()
+            .containsExactly(R.id.nav_root, R.id.nested_navigation, R.id.nested_other)
+            .inOrder()
     }
 
     @Test
@@ -291,11 +293,10 @@
         val intent = deepLinkBuilder.createTaskStackBuilder().intents[0]
 
         val ids = intent.getIntArrayExtra(NavController.KEY_DEEP_LINK_IDS)
-        assertThat(ids).asList().containsExactly(
-            R.id.nav_root,
-            R.id.nested_navigation,
-            R.id.nested_start
-        ).inOrder()
+        assertThat(ids)
+            .asList()
+            .containsExactly(R.id.nav_root, R.id.nested_navigation, R.id.nested_start)
+            .inOrder()
     }
 
     @Test
@@ -436,9 +437,7 @@
         // Change the args but not the destination
         args.putString("test", "test2")
         val secondPendingIntent = deepLinkBuilder.createPendingIntent()
-        assertWithMessage(
-            "PendingIntents with different destination arguments should be different"
-        )
+        assertWithMessage("PendingIntents with different destination arguments should be different")
             .that(firstPendingIntent)
             .isNotEqualTo(secondPendingIntent)
     }
@@ -456,9 +455,7 @@
         // Change the args but not the destination
         args.putString("test", "test2")
         val secondPendingIntent = deepLinkBuilder.createPendingIntent()
-        assertWithMessage(
-            "PendingIntents with different destination arguments should be different"
-        )
+        assertWithMessage("PendingIntents with different destination arguments should be different")
             .that(firstPendingIntent)
             .isNotEqualTo(secondPendingIntent)
     }
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavHostTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavHostTest.kt
index 4095965..b8b7635 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavHostTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavHostTest.kt
@@ -30,17 +30,16 @@
         NavController(ApplicationProvider.getApplicationContext() as Context).apply {
             navigatorProvider += TestNavigator()
         }
-    private val navHost = object : NavHost {
-        override val navController: NavController
-            get() = this@NavHostTest.navController
-    }
+    private val navHost =
+        object : NavHost {
+            override val navController: NavController
+                get() = this@NavHostTest.navController
+        }
 
     @Suppress("DEPRECATION")
     @Test
     fun createGraph() {
-        val graph = navHost.createGraph(startDestination = DESTINATION_ID) {
-            test(DESTINATION_ID)
-        }
+        val graph = navHost.createGraph(startDestination = DESTINATION_ID) { test(DESTINATION_ID) }
         assertWithMessage("Destination should be added to the graph")
             .that(DESTINATION_ID in graph)
             .isTrue()
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavInflaterTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavInflaterTest.kt
index 46db9a0..b6a6e44 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavInflaterTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavInflaterTest.kt
@@ -48,8 +48,7 @@
         val graph = navInflater.inflate(R.navigation.nav_simple)
 
         assertThat(graph).isNotNull()
-        assertThat(graph.startDestinationId)
-            .isEqualTo(R.id.start_test)
+        assertThat(graph.startDestinationId).isEqualTo(R.id.start_test)
     }
 
     @Test
@@ -59,8 +58,7 @@
         val graph = navInflater.inflate(R.navigation.nav_simple)
 
         assertThat(graph).isNotNull()
-        assertThat(graph.label)
-            .isEqualTo("")
+        assertThat(graph.label).isEqualTo("")
     }
 
     @Test(expected = RuntimeException::class)
@@ -84,16 +82,12 @@
         val graph = navInflater.inflate(R.navigation.nav_simple)
 
         assertThat(graph).isNotNull()
-        val expectedUri = Uri.parse(
-            "android-app://" +
-                instrumentation.targetContext.packageName + "/test/arg2"
-        )
+        val expectedUri =
+            Uri.parse("android-app://" + instrumentation.targetContext.packageName + "/test/arg2")
         val expectedDeepLinkRequest = NavDeepLinkRequest.Builder.fromUri(expectedUri).build()
         val result = graph.matchDeepLink(expectedDeepLinkRequest)
-        assertThat(result)
-            .isNotNull()
-        assertThat(result?.destination)
-            .isNotNull()
+        assertThat(result).isNotNull()
+        assertThat(result?.destination).isNotNull()
         assertThat(result?.destination?.id).isEqualTo(R.id.second_test)
     }
 
@@ -106,10 +100,8 @@
         assertThat(graph).isNotNull()
         val expectedDeepLinkRequest = NavDeepLinkRequest.Builder.fromAction("test.action").build()
         val result = graph.matchDeepLink(expectedDeepLinkRequest)
-        assertThat(result)
-            .isNotNull()
-        assertThat(result?.destination)
-            .isNotNull()
+        assertThat(result).isNotNull()
+        assertThat(result?.destination).isNotNull()
         assertThat(result?.destination?.id).isEqualTo(R.id.second_test)
     }
 
@@ -122,8 +114,7 @@
         assertThat(graph).isNotNull()
         val expectedDeepLinkRequest = NavDeepLinkRequest.Builder.fromAction("test.action2").build()
         val result = graph.matchDeepLink(expectedDeepLinkRequest)
-        assertThat(result)
-            .isNull()
+        assertThat(result).isNull()
     }
 
     @Test
@@ -133,18 +124,18 @@
         val graph = navInflater.inflate(R.navigation.nav_simple)
 
         assertThat(graph).isNotNull()
-        val expectedDeepLinkRequest = NavDeepLinkRequest.Builder
-            .fromUri(
-                Uri.parse(
-                    "android-app://" +
-                        instrumentation.targetContext.packageName + "/test/param1/param2"
+        val expectedDeepLinkRequest =
+            NavDeepLinkRequest.Builder.fromUri(
+                    Uri.parse(
+                        "android-app://" +
+                            instrumentation.targetContext.packageName +
+                            "/test/param1/param2"
+                    )
                 )
-            ).build()
+                .build()
         val result = graph.matchDeepLink(expectedDeepLinkRequest)
-        assertThat(result)
-            .isNotNull()
-        assertThat(result?.destination)
-            .isNotNull()
+        assertThat(result).isNotNull()
+        assertThat(result?.destination).isNotNull()
         assertThat(result?.destination?.id).isEqualTo(R.id.second_test)
     }
 
@@ -157,10 +148,8 @@
         assertThat(graph).isNotNull()
         val expectedDeepLinkRequest = NavDeepLinkRequest.Builder.fromMimeType("type/test").build()
         val result = graph.matchDeepLink(expectedDeepLinkRequest)
-        assertThat(result)
-            .isNotNull()
-        assertThat(result?.destination)
-            .isNotNull()
+        assertThat(result).isNotNull()
+        assertThat(result?.destination).isNotNull()
         assertThat(result?.destination?.id).isEqualTo(R.id.second_test)
     }
 
@@ -173,18 +162,15 @@
         assertThat(graph).isNotNull()
         val expectedDeepLinkRequest = NavDeepLinkRequest.Builder.fromMimeType("type/test2").build()
         val result = graph.matchDeepLink(expectedDeepLinkRequest)
-        assertThat(result)
-            .isNull()
+        assertThat(result).isNull()
     }
 
     @Test
     fun testInflateWithDataPatternApplicationId() {
         val context = ApplicationProvider.getApplicationContext() as Context
         val activityNavigator = ActivityNavigator(context)
-        val navInflater = NavInflater(
-            context,
-            TestNavigatorProvider().apply { addNavigator(activityNavigator) }
-        )
+        val navInflater =
+            NavInflater(context, TestNavigatorProvider().apply { addNavigator(activityNavigator) })
 
         val graph = navInflater.inflate(R.navigation.nav_applicationid_arg)
         val destination = graph.nodes.get(R.id.dataPattern_appId) as ActivityNavigator.Destination
@@ -197,10 +183,8 @@
     fun testInflateWithNullDataPattern() {
         val context = ApplicationProvider.getApplicationContext() as Context
         val activityNavigator = ActivityNavigator(context)
-        val navInflater = NavInflater(
-            context,
-            TestNavigatorProvider().apply { addNavigator(activityNavigator) }
-        )
+        val navInflater =
+            NavInflater(context, TestNavigatorProvider().apply { addNavigator(activityNavigator) })
 
         val graph = navInflater.inflate(R.navigation.nav_applicationid_arg)
         val destination = graph.nodes.get(R.id.dataPattern_null) as ActivityNavigator.Destination
@@ -213,10 +197,8 @@
         val context = ApplicationProvider.getApplicationContext() as Context
         val activityNavigator = ActivityNavigator(context)
 
-        val navInflater = NavInflater(
-            context,
-            TestNavigatorProvider().apply { addNavigator(activityNavigator) }
-        )
+        val navInflater =
+            NavInflater(context, TestNavigatorProvider().apply { addNavigator(activityNavigator) })
 
         val graph = navInflater.inflate(R.navigation.nav_applicationid_arg)
         val destination = graph.nodes.get(R.id.data_appId) as ActivityNavigator.Destination
@@ -229,10 +211,8 @@
     fun testInflateWithNullData() {
         val context = ApplicationProvider.getApplicationContext() as Context
         val activityNavigator = ActivityNavigator(context)
-        val navInflater = NavInflater(
-            context,
-            TestNavigatorProvider().apply { addNavigator(activityNavigator) }
-        )
+        val navInflater =
+            NavInflater(context, TestNavigatorProvider().apply { addNavigator(activityNavigator) })
 
         val graph = navInflater.inflate(R.navigation.nav_applicationid_arg)
         val destination = graph.nodes.get(R.id.data_null) as ActivityNavigator.Destination
@@ -275,10 +255,9 @@
         assertThat(defaultArguments["test_boolean_with_argType"]?.run { type to defaultValue })
             .isEqualTo(NavType.BoolType to true)
         assertThat(
-            defaultArguments["test_boolean_with_argType_false"]?.run {
-                type to defaultValue
-            }
-        ).isEqualTo(NavType.BoolType to false)
+                defaultArguments["test_boolean_with_argType_false"]?.run { type to defaultValue }
+            )
+            .isEqualTo(NavType.BoolType to false)
     }
 
     @Test
@@ -315,10 +294,9 @@
             .isEqualTo(NavType.StringType to "123")
 
         assertThat(
-            defaultArguments["test_string_no_default"]?.run {
-                type to isDefaultValuePresent
-            }
-        ).isEqualTo(NavType.StringType to false)
+                defaultArguments["test_string_no_default"]?.run { type to isDefaultValuePresent }
+            )
+            .isEqualTo(NavType.StringType to false)
     }
 
     @Test
@@ -364,8 +342,7 @@
         val graph = navInflater.inflate(R.navigation.nav_default_arguments)
         val startDestination = graph.findNode(graph.startDestinationId)
         val action = startDestination?.getAction(R.id.my_action)
-        assertThat(action?.defaultArguments?.get("test_action_arg"))
-            .isEqualTo(123L)
+        assertThat(action?.defaultArguments?.get("test_action_arg")).isEqualTo(123L)
     }
 
     private fun inflateDefaultArgumentsFromGraph(): Map<String, NavArgument> {
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ViewTest.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ViewTest.kt
index f1f120f..48943b2 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ViewTest.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/ViewTest.kt
@@ -29,7 +29,8 @@
 @RunWith(AndroidJUnit4::class)
 class ViewTest {
 
-    @Test fun findNavController() {
+    @Test
+    fun findNavController() {
         val view = View(ApplicationProvider.getApplicationContext() as android.content.Context)
         val navController =
             NavController(ApplicationProvider.getApplicationContext() as android.content.Context)
@@ -37,10 +38,12 @@
 
         val foundNavController = view.findNavController()
         assertWithMessage("View should have NavController set")
-            .that(foundNavController).isSameInstanceAs(navController)
+            .that(foundNavController)
+            .isSameInstanceAs(navController)
     }
 
-    @Test fun findNavControllerNull() {
+    @Test
+    fun findNavControllerNull() {
         val view = View(ApplicationProvider.getApplicationContext() as android.content.Context)
         try {
             view.findNavController()
diff --git a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/test/FloatingTestNavigator.kt b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/test/FloatingTestNavigator.kt
index 260ff8f..1770d36 100644
--- a/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/test/FloatingTestNavigator.kt
+++ b/navigation/navigation-runtime/src/androidTest/java/androidx/navigation/test/FloatingTestNavigator.kt
@@ -33,55 +33,44 @@
         return FloatingDestination(this)
     }
 
-    class FloatingDestination(navigator: TestNavigator) :
-        Destination(navigator),
-        FloatingWindow
+    class FloatingDestination(navigator: TestNavigator) : Destination(navigator), FloatingWindow
 }
 
-/**
- * Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with id.
- */
+/** Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with id. */
 inline fun NavGraphBuilder.dialog(@IdRes id: Int) = dialog(id) {}
 
-/**
- * Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with route.
- */
+/** Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with route. */
 inline fun NavGraphBuilder.dialog(route: String) = dialog(route) {}
 
-/**
- * Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with id.
- */
+/** Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with id. */
 inline fun NavGraphBuilder.dialog(
     @IdRes id: Int,
     builder: FloatingTestNavigatorDestinationBuilder.() -> Unit
-) = destination(
-    FloatingTestNavigatorDestinationBuilder(
-        provider[FloatingTestNavigator::class],
-        id
-    ).apply(builder)
-)
+) =
+    destination(
+        FloatingTestNavigatorDestinationBuilder(provider[FloatingTestNavigator::class], id)
+            .apply(builder)
+    )
 
-/**
- * Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with route.
- */
+/** Construct a new [TestNavigator.Destination] from a [FloatingTestNavigator] with route. */
 inline fun NavGraphBuilder.dialog(
     route: String,
     builder: FloatingTestNavigatorDestinationBuilder.() -> Unit
-) = destination(
-    FloatingTestNavigatorDestinationBuilder(
-        provider[FloatingTestNavigator::class],
-        route
-    ).apply(builder)
-)
+) =
+    destination(
+        FloatingTestNavigatorDestinationBuilder(provider[FloatingTestNavigator::class], route)
+            .apply(builder)
+    )
 
 /**
- * DSL for constructing a new [TestNavigator.Destination] from a [FloatingTestNavigator] with
- * id or route.
+ * DSL for constructing a new [TestNavigator.Destination] from a [FloatingTestNavigator] with id or
+ * route.
  */
 @Suppress("DEPRECATION")
 @NavDestinationDsl
 class FloatingTestNavigatorDestinationBuilder : NavDestinationBuilder<TestNavigator.Destination> {
     @Suppress("DEPRECATION")
     constructor(navigator: FloatingTestNavigator, @IdRes id: Int = 0) : super(navigator, id)
+
     constructor(navigator: FloatingTestNavigator, route: String) : super(navigator, route)
 }
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/Activity.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/Activity.kt
index 8cff70e..8bf71cd 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/Activity.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/Activity.kt
@@ -20,12 +20,10 @@
 import androidx.annotation.IdRes
 
 /**
- * Find a [NavController] given the id of a View and its containing
- * [Activity].
+ * Find a [NavController] given the id of a View and its containing [Activity].
  *
- * Calling this on a View that is not a [NavHost] or within a [NavHost]
- * will result in an [IllegalStateException]
+ * Calling this on a View that is not a [NavHost] or within a [NavHost] will result in an
+ * [IllegalStateException]
  */
-public fun Activity.findNavController(
-    @IdRes viewId: Int
-): NavController = Navigation.findNavController(this, viewId)
+public fun Activity.findNavController(@IdRes viewId: Int): NavController =
+    Navigation.findNavController(this, viewId)
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavArgsLazy.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavArgsLazy.kt
index 47ef4f0..f1d9052 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavArgsLazy.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavArgsLazy.kt
@@ -22,10 +22,10 @@
 /**
  * Returns a [Lazy] delegate to access the Activity's extras as an [Args] instance.
  *
- * It is strongly recommended that this method only be used when the Activity is started
- * by [androidx.navigation.NavController.navigate] with the corresponding
- * [androidx.navigation.NavDirections] object, which ensures that the required
- * arguments are present.
+ * It is strongly recommended that this method only be used when the Activity is started by
+ * [androidx.navigation.NavController.navigate] with the corresponding
+ * [androidx.navigation.NavDirections] object, which ensures that the required arguments are
+ * present.
  *
  * ```
  * class MyActivity : Activity() {
@@ -33,8 +33,8 @@
  * }
  * ```
  *
- * This property can be accessed only after the Activity is attached to the Application,
- * and access prior to that will result in IllegalStateException.
+ * This property can be accessed only after the Activity is attached to the Application, and access
+ * prior to that will result in IllegalStateException.
  */
 @MainThread
 public inline fun <reified Args : NavArgs> Activity.navArgs(): NavArgsLazy<Args> =
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigator.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigator.kt
index 47edb5a..3ab7bd0 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigator.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigator.kt
@@ -31,22 +31,18 @@
 import androidx.core.content.res.use
 import java.util.regex.Pattern
 
-/**
- * ActivityNavigator implements cross-activity navigation.
- */
+/** ActivityNavigator implements cross-activity navigation. */
 @Navigator.Name("activity")
 public open class ActivityNavigator(
-    @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    public val context: Context
+    @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public val context: Context
 ) : Navigator<ActivityNavigator.Destination>() {
-    private val hostActivity: Activity? = generateSequence(context) {
-        if (it is ContextWrapper) {
-            it.baseContext
-        } else
-            null
-    }.firstOrNull {
-        it is Activity
-    } as Activity?
+    private val hostActivity: Activity? =
+        generateSequence(context) {
+                if (it is ContextWrapper) {
+                    it.baseContext
+                } else null
+            }
+            .firstOrNull { it is Activity } as Activity?
 
     override fun createDestination(): Destination {
         return Destination(this)
@@ -63,18 +59,17 @@
     /**
      * Navigate to a destination.
      *
-     * <p>Requests navigation to a given destination associated with this navigator in
-     * the navigation graph. This method generally should not be called directly;
-     * NavController will delegate to it when appropriate.</p>
+     * <p>Requests navigation to a given destination associated with this navigator in the
+     * navigation graph. This method generally should not be called directly; NavController will
+     * delegate to it when appropriate.</p>
      *
      * @param destination destination node to navigate to
      * @param args arguments to use for navigation
      * @param navOptions additional options for navigation
      * @param navigatorExtras extras unique to your Navigator.
-     * @return The NavDestination that should be added to the back stack or null if
-     * no change was made to the back stack (i.e., in cases of single top operations
-     * where the destination is already on top of the back stack).
-     *
+     * @return The NavDestination that should be added to the back stack or null if no change was
+     *   made to the back stack (i.e., in cases of single top operations where the destination is
+     *   already on top of the back stack).
      * @throws IllegalArgumentException if the given destination has no Intent
      */
     @Suppress("DEPRECATION")
@@ -138,7 +133,7 @@
             val popExitAnim = navOptions.popExitAnim
             if (
                 popEnterAnim > 0 && resources.getResourceTypeName(popEnterAnim) == "animator" ||
-                popExitAnim > 0 && resources.getResourceTypeName(popExitAnim) == "animator"
+                    popExitAnim > 0 && resources.getResourceTypeName(popExitAnim) == "animator"
             ) {
                 Log.w(
                     LOG_TAG,
@@ -168,14 +163,19 @@
             var exitAnim = navOptions.exitAnim
             if (
                 enterAnim > 0 && (resources.getResourceTypeName(enterAnim) == "animator") ||
-                exitAnim > 0 && (resources.getResourceTypeName(exitAnim) == "animator")
+                    exitAnim > 0 && (resources.getResourceTypeName(exitAnim) == "animator")
             ) {
                 Log.w(
                     LOG_TAG,
                     "Activity destinations do not support Animator resource. " +
-                        "Ignoring " + "enter resource " + resources.getResourceName(enterAnim) +
-                        " and exit resource " + resources.getResourceName(exitAnim) + "when " +
-                        "launching " + destination
+                        "Ignoring " +
+                        "enter resource " +
+                        resources.getResourceName(enterAnim) +
+                        " and exit resource " +
+                        resources.getResourceName(exitAnim) +
+                        "when " +
+                        "launching " +
+                        destination
                 )
             } else if (enterAnim >= 0 || exitAnim >= 0) {
                 enterAnim = enterAnim.coerceAtLeast(0)
@@ -192,32 +192,26 @@
     /**
      * NavDestination for activity navigation
      *
-     * Construct a new activity destination. This destination is not valid until you set the
-     * Intent via [setIntent] or one or more of the other set method.
+     * Construct a new activity destination. This destination is not valid until you set the Intent
+     * via [setIntent] or one or more of the other set method.
      *
-     * @param activityNavigator The [ActivityNavigator] which this destination
-     * will be associated with. Generally retrieved via a
-     * [NavController]'s
-     * [NavigatorProvider.getNavigator] method.
+     * @param activityNavigator The [ActivityNavigator] which this destination will be associated
+     *   with. Generally retrieved via a [NavController]'s [NavigatorProvider.getNavigator] method.
      */
     @NavDestination.ClassType(Activity::class)
-    public open class Destination(
-        activityNavigator: Navigator<out Destination>
-    ) : NavDestination(activityNavigator) {
-        /**
-         * The Intent associated with this destination.
-         */
+    public open class Destination(activityNavigator: Navigator<out Destination>) :
+        NavDestination(activityNavigator) {
+        /** The Intent associated with this destination. */
         public var intent: Intent? = null
             private set
 
-        /**
-         * The dynamic data URI pattern, if any
-         */
+        /** The dynamic data URI pattern, if any */
         public var dataPattern: String? = null
             private set
 
         /**
          * Set the Intent to start when navigating to this destination.
+         *
          * @param intent Intent to associated with this destination.
          * @return this [Destination]
          */
@@ -229,19 +223,16 @@
         /**
          * Sets a dynamic data URI pattern that is sent when navigating to this destination.
          *
-         *
          * If a non-null arguments Bundle is present when navigating, any segments in the form
          * `{argName}` will be replaced with a URI encoded string from the arguments.
          *
-         * When inflated from XML, you can use `${applicationId}` as an argument pattern
-         * to automatically use [Context.getPackageName].
+         * When inflated from XML, you can use `${applicationId}` as an argument pattern to
+         * automatically use [Context.getPackageName].
          *
-         * @param dataPattern A URI pattern with segments in the form of `{argName}` that
-         * will be replaced with URI encoded versions of the Strings in the
-         * arguments Bundle.
-         * @see Destination.setData
-         *
+         * @param dataPattern A URI pattern with segments in the form of `{argName}` that will be
+         *   replaced with URI encoded versions of the Strings in the arguments Bundle.
          * @return this [Destination]
+         * @see Destination.setData
          */
         public fun setDataPattern(dataPattern: String?): Destination {
             this.dataPattern = dataPattern
@@ -252,9 +243,8 @@
          * Construct a new activity destination. This destination is not valid until you set the
          * Intent via [setIntent] or one or more of the other set method.
          *
-         *
-         * @param navigatorProvider The [NavController] which this destination
-         * will be associated with.
+         * @param navigatorProvider The [NavController] which this destination will be associated
+         *   with.
          */
         public constructor(
             navigatorProvider: NavigatorProvider
@@ -263,14 +253,12 @@
         @CallSuper
         override fun onInflate(context: Context, attrs: AttributeSet) {
             super.onInflate(context, attrs)
-            context.resources.obtainAttributes(
-                attrs,
-                R.styleable.ActivityNavigator
-            ).use { array ->
-                var targetPackage = parseApplicationId(
-                    context,
-                    array.getString(R.styleable.ActivityNavigator_targetPackage)
-                )
+            context.resources.obtainAttributes(attrs, R.styleable.ActivityNavigator).use { array ->
+                var targetPackage =
+                    parseApplicationId(
+                        context,
+                        array.getString(R.styleable.ActivityNavigator_targetPackage)
+                    )
                 setTargetPackage(targetPackage)
                 var className = array.getString(R.styleable.ActivityNavigator_android_name)
                 if (className != null) {
@@ -280,42 +268,35 @@
                     setComponentName(ComponentName(context, className))
                 }
                 setAction(array.getString(R.styleable.ActivityNavigator_action))
-                val data = parseApplicationId(
-                    context,
-                    array.getString(R.styleable.ActivityNavigator_data)
-                )
+                val data =
+                    parseApplicationId(context, array.getString(R.styleable.ActivityNavigator_data))
                 if (data != null) {
                     setData(Uri.parse(data))
                 }
-                val dataPattern = parseApplicationId(
-                    context,
-                    array.getString(R.styleable.ActivityNavigator_dataPattern)
-                )
+                val dataPattern =
+                    parseApplicationId(
+                        context,
+                        array.getString(R.styleable.ActivityNavigator_dataPattern)
+                    )
                 setDataPattern(dataPattern)
             }
         }
 
         private fun parseApplicationId(context: Context, pattern: String?): String? {
-            return pattern?.replace(
-                NavInflater.APPLICATION_ID_PLACEHOLDER,
-                context.packageName
-            )
+            return pattern?.replace(NavInflater.APPLICATION_ID_PLACEHOLDER, context.packageName)
         }
 
-        /**
-         * The explicit application package name associated with this destination, if any
-         */
+        /** The explicit application package name associated with this destination, if any */
         public var targetPackage: String? = null
             private set
             get() = intent?.`package`
 
         /**
-         * Set an explicit application package name that limits
-         * the components this destination will navigate to.
+         * Set an explicit application package name that limits the components this destination will
+         * navigate to.
          *
-         *
-         * When inflated from XML, you can use `${applicationId}` as the
-         * package name to automatically use [Context.getPackageName].
+         * When inflated from XML, you can use `${applicationId}` as the package name to
+         * automatically use [Context.getPackageName].
          *
          * @param packageName packageName to set
          * @return this [Destination]
@@ -328,9 +309,7 @@
             return this
         }
 
-        /**
-         * The explicit [ComponentName] associated with this destination, if any
-         */
+        /** The explicit [ComponentName] associated with this destination, if any */
         public var component: ComponentName? = null
             private set
             get() = intent?.component
@@ -349,15 +328,14 @@
             return this
         }
 
-        /**
-         * The action used to start the Activity, if any
-         */
+        /** The action used to start the Activity, if any */
         public var action: String? = null
             private set
             get() = intent?.action
 
         /**
          * Sets the action sent when navigating to this destination.
+         *
          * @param action The action string to use.
          * @return this [Destination]
          */
@@ -369,9 +347,7 @@
             return this
         }
 
-        /**
-         * The data URI used to start the Activity, if any
-         */
+        /** The data URI used to start the Activity, if any */
         public var data: Uri? = null
             private set
             get() = intent?.data
@@ -379,17 +355,15 @@
         /**
          * Sets a static data URI that is sent when navigating to this destination.
          *
+         * To use a dynamic URI that changes based on the arguments passed in when navigating, use
+         * [setDataPattern], which will take precedence when arguments are present.
          *
-         * To use a dynamic URI that changes based on the arguments passed in when navigating,
-         * use [setDataPattern], which will take precedence when arguments are
-         * present.
-         *
-         *  When inflated from XML, you can use `${applicationId}` for string interpolation
-         *  to automatically use [Context.getPackageName].
+         * When inflated from XML, you can use `${applicationId}` for string interpolation to
+         * automatically use [Context.getPackageName].
          *
          * @param data A static URI that should always be used.
-         * @see Destination.setDataPattern
          * @return this [Destination]
+         * @see Destination.setDataPattern
          */
         public fun setData(data: Uri?): Destination {
             if (intent == null) {
@@ -438,24 +412,19 @@
     }
 
     /**
-     * Extras that can be passed to ActivityNavigator to customize what
-     * [ActivityOptionsCompat] and flags are passed through to the call to
-     * [ActivityCompat.startActivity].
+     * Extras that can be passed to ActivityNavigator to customize what [ActivityOptionsCompat] and
+     * flags are passed through to the call to [ActivityCompat.startActivity].
      */
-    public class Extras internal constructor(
-        /**
-         * The `Intent.FLAG_ACTIVITY_` flags that should be added to the Intent.
-         */
+    public class Extras
+    internal constructor(
+        /** The `Intent.FLAG_ACTIVITY_` flags that should be added to the Intent. */
         public val flags: Int,
-        /**
-         * The [ActivityOptionsCompat] that should be used with [ActivityCompat.startActivity].
-         */
+        /** The [ActivityOptionsCompat] that should be used with [ActivityCompat.startActivity]. */
         public val activityOptions: ActivityOptionsCompat?
     ) : Navigator.Extras {
 
         /**
-         * Builder for constructing new [Extras] instances. The resulting instances are
-         * immutable.
+         * Builder for constructing new [Extras] instances. The resulting instances are immutable.
          */
         public class Builder {
             private var flags = 0
@@ -506,8 +475,9 @@
 
         /**
          * Apply any pop animations in the Intent of the given Activity to a pending transition.
-         * This should be used in place of [Activity.overridePendingTransition]
-         * to get the appropriate pop animations.
+         * This should be used in place of [Activity.overridePendingTransition] to get the
+         * appropriate pop animations.
+         *
          * @param activity An activity started from the [ActivityNavigator].
          * @see NavOptions.popEnterAnim
          * @see NavOptions.popExitAnim
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorDestinationBuilder.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorDestinationBuilder.kt
index c385874..8fdb188 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorDestinationBuilder.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorDestinationBuilder.kt
@@ -26,9 +26,7 @@
 import kotlin.reflect.KClass
 import kotlin.reflect.KType
 
-/**
- * Construct a new [ActivityNavigator.Destination]
- */
+/** Construct a new [ActivityNavigator.Destination] */
 @Suppress("Deprecation")
 @Deprecated(
     "Use routes to build your ActivityDestination instead",
@@ -37,48 +35,39 @@
 public inline fun NavGraphBuilder.activity(
     @IdRes id: Int,
     builder: ActivityNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    ActivityNavigatorDestinationBuilder(
-        provider[ActivityNavigator::class],
-        id
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        ActivityNavigatorDestinationBuilder(provider[ActivityNavigator::class], id).apply(builder)
+    )
 
-/**
- * Construct a new [ActivityNavigator.Destination]
- */
+/** Construct a new [ActivityNavigator.Destination] */
 public inline fun NavGraphBuilder.activity(
     route: String,
     builder: ActivityNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    ActivityNavigatorDestinationBuilder(
-        provider[ActivityNavigator::class],
-        route
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        ActivityNavigatorDestinationBuilder(provider[ActivityNavigator::class], route)
+            .apply(builder)
+    )
 
 /**
  * Construct a new [ActivityNavigator.Destination]
  *
  * @param T destination's unique route from a [KClass]
  * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
- * [NavType]. May be empty if [T] does not use custom NavTypes.
+ *   [NavType]. May be empty if [T] does not use custom NavTypes.
  * @param builder the builder used to construct the fragment destination
  */
 public inline fun <reified T : Any> NavGraphBuilder.activity(
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap(),
     builder: ActivityNavigatorDestinationBuilder.() -> Unit
-): Unit = destination(
-    ActivityNavigatorDestinationBuilder(
-        provider[ActivityNavigator::class],
-        T::class,
-        typeMap
-    ).apply(builder)
-)
+): Unit =
+    destination(
+        ActivityNavigatorDestinationBuilder(provider[ActivityNavigator::class], T::class, typeMap)
+            .apply(builder)
+    )
 
-/**
- * DSL for constructing a new [ActivityNavigator.Destination]
- */
+/** DSL for constructing a new [ActivityNavigator.Destination] */
 @NavDestinationDsl
 public class ActivityNavigatorDestinationBuilder :
     NavDestinationBuilder<ActivityNavigator.Destination> {
@@ -103,7 +92,7 @@
      * @param navigator navigator used to create the destination
      * @param route the route from a [KClass] of the destination
      * @param typeMap map of destination arguments' kotlin type [KType] to its respective custom
-     * [NavType]. May be empty if [route] does not use custom NavTypes.
+     *   [NavType]. May be empty if [route] does not use custom NavTypes.
      */
     public constructor(
         navigator: ActivityNavigator,
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorExtras.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorExtras.kt
index 1c0fe36..f280a1a 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorExtras.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/ActivityNavigatorExtras.kt
@@ -19,20 +19,23 @@
 import androidx.core.app.ActivityOptionsCompat
 
 /**
- * Create a new [ActivityNavigator.Extras] instance with a specific [ActivityOptionsCompat]
- * instance and/or any `Intent.FLAG_ACTIVITY_` flags.
+ * Create a new [ActivityNavigator.Extras] instance with a specific [ActivityOptionsCompat] instance
+ * and/or any `Intent.FLAG_ACTIVITY_` flags.
  *
  * @param activityOptions Optional [ActivityOptionsCompat] to pass through to
- * [androidx.core.app.ActivityCompat.startActivity].
+ *   [androidx.core.app.ActivityCompat.startActivity].
  * @param flags `Intent.FLAG_ACTIVITY_` flags to add to the Intent.
  */
 @Suppress("FunctionName")
 public fun ActivityNavigatorExtras(
     activityOptions: ActivityOptionsCompat? = null,
     flags: Int = 0
-): ActivityNavigator.Extras = ActivityNavigator.Extras.Builder().apply {
-    if (activityOptions != null) {
-        setActivityOptions(activityOptions)
-    }
-    addFlags(flags)
-}.build()
+): ActivityNavigator.Extras =
+    ActivityNavigator.Extras.Builder()
+        .apply {
+            if (activityOptions != null) {
+                setActivityOptions(activityOptions)
+            }
+            addFlags(flags)
+        }
+        .build()
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavBackStackEntryState.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavBackStackEntryState.kt
index cbf3493..2fec191 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavBackStackEntryState.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavBackStackEntryState.kt
@@ -50,13 +50,15 @@
         hostLifecycleState: Lifecycle.State,
         viewModel: NavControllerViewModel?
     ): NavBackStackEntry {
-        val args = args?.apply {
-            classLoader = context.classLoader
-        }
+        val args = args?.apply { classLoader = context.classLoader }
         return NavBackStackEntry.create(
-            context, destination, args,
-            hostLifecycleState, viewModel,
-            id, savedState
+            context,
+            destination,
+            args,
+            hostLifecycleState,
+            viewModel,
+            id,
+            savedState
         )
     }
 
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavController.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavController.kt
index 78eb9e5..21a993a 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavController.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavController.kt
@@ -64,22 +64,22 @@
  * Apps will generally obtain a controller directly from a host, or by using one of the utility
  * methods on the [Navigation] class rather than create a controller directly.
  *
- * Navigation flows and destinations are determined by the
- * [navigation graph][NavGraph] owned by the controller. These graphs are typically
- * [inflated][navInflater] from an Android resource, but, like views, they can also
- * be constructed or combined programmatically or for the case of dynamic navigation structure.
- * (For example, if the navigation structure of the application is determined by live data obtained'
- * from a remote server.)
+ * Navigation flows and destinations are determined by the [navigation graph][NavGraph] owned by the
+ * controller. These graphs are typically [inflated][navInflater] from an Android resource, but,
+ * like views, they can also be constructed or combined programmatically or for the case of dynamic
+ * navigation structure. (For example, if the navigation structure of the application is determined
+ * by live data obtained' from a remote server.)
  */
 public open class NavController(
-    @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    public val context: Context
+    @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public val context: Context
 ) {
-    private var activity: Activity? = generateSequence(context) {
-        if (it is ContextWrapper) {
-            it.baseContext
-        } else null
-    }.firstOrNull { it is Activity } as Activity?
+    private var activity: Activity? =
+        generateSequence(context) {
+                if (it is ContextWrapper) {
+                    it.baseContext
+                } else null
+            }
+            .firstOrNull { it is Activity } as Activity?
 
     private var inflater: NavInflater? = null
 
@@ -90,8 +90,8 @@
      *
      * When this is set any current navigation graph data (including back stack) will be replaced.
      *
-     * @see NavController.setGraph
      * @throws IllegalStateException if called before `setGraph()`.
+     * @see NavController.setGraph
      */
     public open var graph: NavGraph
         @MainThread
@@ -131,22 +131,20 @@
      * A [StateFlow] that will emit the currently visible [NavBackStackEntries][NavBackStackEntry]
      * whenever they change. If there is no visible [NavBackStackEntry], this will be set to an
      * empty list.
-     *
      * - `CREATED` entries are listed first and include all entries that are in the process of
-     * completing their exit transition. Note that this can include entries that have been
-     * popped off the Navigation back stack.
-     * - `STARTED` entries on the back stack are next and include all entries that are running
-     * their enter transition and entries whose destination is partially covered by a
-     * `FloatingWindow` destination
+     *   completing their exit transition. Note that this can include entries that have been popped
+     *   off the Navigation back stack.
+     * - `STARTED` entries on the back stack are next and include all entries that are running their
+     *   enter transition and entries whose destination is partially covered by a `FloatingWindow`
+     *   destination
      * - The last entry in the list is the topmost entry in the back stack and is in the `RESUMED`
-     * state only if its enter transition has completed. Otherwise it too will be `STARTED`.
+     *   state only if its enter transition has completed. Otherwise it too will be `STARTED`.
      *
      * Note that the `Lifecycle` of any entry cannot be higher than the containing
      * Activity/Fragment - if the Activity is not `RESUMED`, no entry will be `RESUMED`, no matter
      * what the transition state is.
      */
-    public val visibleEntries: StateFlow<List<NavBackStackEntry>> =
-        _visibleEntries.asStateFlow()
+    public val visibleEntries: StateFlow<List<NavBackStackEntry>> = _visibleEntries.asStateFlow()
 
     private val childToParentEntries = mutableMapOf<NavBackStackEntry, NavBackStackEntry>()
     private val parentToChildCount = mutableMapOf<NavBackStackEntry, AtomicInteger>()
@@ -206,15 +204,15 @@
     private var enableOnBackPressedCallback = true
 
     /**
-     * OnDestinationChangedListener receives a callback when the
-     * [currentDestination] or its arguments change.
+     * OnDestinationChangedListener receives a callback when the [currentDestination] or its
+     * arguments change.
      */
     public fun interface OnDestinationChangedListener {
         /**
-         * Callback for when the [currentDestination] or its arguments change.
-         * This navigation may be to a destination that has not been seen before, or one that
-         * was previously on the back stack. This method is called after navigation is complete,
-         * but associated transitions may still be playing.
+         * Callback for when the [currentDestination] or its arguments change. This navigation may
+         * be to a destination that has not been seen before, or one that was previously on the back
+         * stack. This method is called after navigation is complete, but associated transitions may
+         * still be playing.
          *
          * @param controller the controller that navigated
          * @param destination the new destination
@@ -231,21 +229,20 @@
 
     @set:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     /**
-     * The NavController's [NavigatorProvider]. All [Navigators][Navigator] used
-     * to construct the [navigation graph][NavGraph] for this nav controller should be added
-     * to this navigator provider before the graph is constructed.
+     * The NavController's [NavigatorProvider]. All [Navigators][Navigator] used to construct the
+     * [navigation graph][NavGraph] for this nav controller should be added to this navigator
+     * provider before the graph is constructed.
      *
      * This can only be set before the graph is set via `setGraph()`.
      *
-     * Generally, the Navigators are set for you by the [NavHost] hosting this NavController
-     * and you do not need to manually interact with the navigator provider.
+     * Generally, the Navigators are set for you by the [NavHost] hosting this NavController and you
+     * do not need to manually interact with the navigator provider.
      *
      * @throws IllegalStateException If this set called after `setGraph()`
      */
     public open var navigatorProvider: NavigatorProvider
         get() = _navigatorProvider
-        /**
-         */
+        /**  */
         set(navigatorProvider) {
             check(backQueue.isEmpty()) { "NavigatorProvider must be set before setGraph call" }
             _navigatorProvider = navigatorProvider
@@ -258,8 +255,8 @@
     private val entrySavedState = mutableMapOf<NavBackStackEntry, Boolean>()
 
     /**
-     * Call [Navigator.navigate] while setting up a [handler] that receives callbacks
-     * when [NavigatorState.push] is called.
+     * Call [Navigator.navigate] while setting up a [handler] that receives callbacks when
+     * [NavigatorState.push] is called.
      */
     private fun Navigator<out NavDestination>.navigateInternal(
         entries: List<NavBackStackEntry>,
@@ -273,8 +270,8 @@
     }
 
     /**
-     * Call [Navigator.popBackStack] while setting up a [handler] that receives callbacks
-     * when [NavigatorState.pop] is called.
+     * Call [Navigator.popBackStack] while setting up a [handler] that receives callbacks when
+     * [NavigatorState.pop] is called.
      */
     private fun Navigator<out NavDestination>.popBackStackInternal(
         popUpTo: NavBackStackEntry,
@@ -286,9 +283,8 @@
         popFromBackStackHandler = null
     }
 
-    private inner class NavControllerNavigatorState(
-        val navigator: Navigator<out NavDestination>
-    ) : NavigatorState() {
+    private inner class NavControllerNavigatorState(val navigator: Navigator<out NavDestination>) :
+        NavigatorState() {
         override fun push(backStackEntry: NavBackStackEntry) {
             val destinationNavigator: Navigator<out NavDestination> =
                 _navigatorProvider[backStackEntry.destination.navigatorName]
@@ -306,10 +302,11 @@
                     )
                 }
             } else {
-                val navigatorBackStack = checkNotNull(navigatorState[destinationNavigator]) {
-                    "NavigatorBackStack for ${backStackEntry.destination.navigatorName} should " +
-                        "already be created"
-                }
+                val navigatorBackStack =
+                    checkNotNull(navigatorState[destinationNavigator]) {
+                        "NavigatorBackStack for ${backStackEntry.destination.navigatorName} should " +
+                            "already be created"
+                    }
                 navigatorBackStack.push(backStackEntry)
             }
         }
@@ -318,13 +315,8 @@
             super.push(backStackEntry)
         }
 
-        override fun createBackStackEntry(
-            destination: NavDestination,
-            arguments: Bundle?
-        ) = NavBackStackEntry.create(
-            context, destination, arguments,
-            hostLifecycleState, viewModel
-        )
+        override fun createBackStackEntry(destination: NavDestination, arguments: Bundle?) =
+            NavBackStackEntry.create(context, destination, arguments, hostLifecycleState, viewModel)
 
         override fun pop(popUpTo: NavBackStackEntry, saveState: Boolean) {
             val destinationNavigator: Navigator<out NavDestination> =
@@ -336,9 +328,7 @@
                     handler(popUpTo)
                     super.pop(popUpTo, saveState)
                 } else {
-                    popBackStackFromNavigator(popUpTo) {
-                        super.pop(popUpTo, saveState)
-                    }
+                    popBackStackFromNavigator(popUpTo) { super.pop(popUpTo, saveState) }
                 }
             } else {
                 navigatorState[destinationNavigator]!!.pop(popUpTo, saveState)
@@ -388,19 +378,19 @@
     }
 
     /**
-     * Constructs a new controller for a given [Context]. Controllers should not be
-     * used outside of their context and retain a hard reference to the context supplied.
-     * If you need a global controller, pass [Context.getApplicationContext].
+     * Constructs a new controller for a given [Context]. Controllers should not be used outside of
+     * their context and retain a hard reference to the context supplied. If you need a global
+     * controller, pass [Context.getApplicationContext].
      *
      * Apps should generally not construct controllers, instead obtain a relevant controller
-     * directly from a navigation host via [NavHost.getNavController] or by using one of
-     * the utility methods on the [Navigation] class.
+     * directly from a navigation host via [NavHost.getNavController] or by using one of the utility
+     * methods on the [Navigation] class.
      *
-     * Note that controllers that are not constructed with an [Activity] context
-     * (or a wrapped activity context) will only be able to navigate to
+     * Note that controllers that are not constructed with an [Activity] context (or a wrapped
+     * activity context) will only be able to navigate to
      * [new tasks][android.content.Intent.FLAG_ACTIVITY_NEW_TASK] or
-     * [new document tasks][android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT] when
-     * navigating to new activities.
+     * [new document tasks][android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT] when navigating to
+     * new activities.
      *
      * @param context context for this controller
      */
@@ -410,8 +400,8 @@
     }
 
     /**
-     * Adds an [OnDestinationChangedListener] to this controller to receive a callback
-     * whenever the [currentDestination] or its arguments change.
+     * Adds an [OnDestinationChangedListener] to this controller to receive a callback whenever the
+     * [currentDestination] or its arguments change.
      *
      * The current destination, if any, will be immediately sent to your listener.
      *
@@ -432,8 +422,8 @@
     }
 
     /**
-     * Removes an [OnDestinationChangedListener] from this controller.
-     * It will no longer receive callbacks.
+     * Removes an [OnDestinationChangedListener] from this controller. It will no longer receive
+     * callbacks.
      *
      * @param listener the listener to remove
      */
@@ -442,12 +432,12 @@
     }
 
     /**
-     * Attempts to pop the controller's back stack. Analogous to when the user presses
-     * the system [Back][android.view.KeyEvent.KEYCODE_BACK] button when the associated
-     * navigation host has focus.
+     * Attempts to pop the controller's back stack. Analogous to when the user presses the system
+     * [Back][android.view.KeyEvent.KEYCODE_BACK] button when the associated navigation host has
+     * focus.
      *
-     * @return true if the stack was popped at least once and the user has been navigated to
-     * another destination, false otherwise
+     * @return true if the stack was popped at least once and the user has been navigated to another
+     *   destination, false otherwise
      */
     @MainThread
     public open fun popBackStack(): Boolean {
@@ -464,9 +454,8 @@
      *
      * @param destinationId The topmost destination to retain
      * @param inclusive Whether the given destination should also be popped.
-     *
-     * @return true if the stack was popped at least once and the user has been navigated to
-     * another destination, false otherwise
+     * @return true if the stack was popped at least once and the user has been navigated to another
+     *   destination, false otherwise
      */
     @MainThread
     public open fun popBackStack(@IdRes destinationId: Int, inclusive: Boolean): Boolean {
@@ -478,14 +467,12 @@
      *
      * @param destinationId The topmost destination to retain
      * @param inclusive Whether the given destination should also be popped.
-     * @param saveState Whether the back stack and the state of all destinations between the
-     * current destination and the [destinationId] should be saved for later
-     * restoration via [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using
-     * the same [destinationId] (note: this matching ID is true whether
-     * [inclusive] is true or false).
-     *
-     * @return true if the stack was popped at least once and the user has been navigated to
-     * another destination, false otherwise
+     * @param saveState Whether the back stack and the state of all destinations between the current
+     *   destination and the [destinationId] should be saved for later restoration via
+     *   [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using the same
+     *   [destinationId] (note: this matching ID is true whether [inclusive] is true or false).
+     * @return true if the stack was popped at least once and the user has been navigated to another
+     *   destination, false otherwise
      */
     @MainThread
     public open fun popBackStack(
@@ -502,17 +489,15 @@
     /**
      * Attempts to pop the controller's back stack back to a specific destination.
      *
-     * @param route The topmost destination to retain. May contain filled in arguments as long as
-     * it is exact match with route used to navigate.
+     * @param route The topmost destination to retain. May contain filled in arguments as long as it
+     *   is exact match with route used to navigate.
      * @param inclusive Whether the given destination should also be popped.
-     * @param saveState Whether the back stack and the state of all destinations between the
-     * current destination and the [route] should be saved for later
-     * restoration via [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using
-     * the same [route] (note: this matching ID is true whether
-     * [inclusive] is true or false).
-     *
-     * @return true if the stack was popped at least once and the user has been navigated to
-     * another destination, false otherwise
+     * @param saveState Whether the back stack and the state of all destinations between the current
+     *   destination and the [route] should be saved for later restoration via
+     *   [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using the same [route]
+     *   (note: this matching ID is true whether [inclusive] is true or false).
+     * @return true if the stack was popped at least once and the user has been navigated to another
+     *   destination, false otherwise
      */
     @MainThread
     @JvmOverloads
@@ -530,17 +515,15 @@
     /**
      * Attempts to pop the controller's back stack back to a specific destination.
      *
-     * @param T The topmost destination to retain with route from a [KClass]. The
-     * target NavDestination must have been created with route from [KClass].
+     * @param T The topmost destination to retain with route from a [KClass]. The target
+     *   NavDestination must have been created with route from [KClass].
      * @param inclusive Whether the given destination should also be popped.
-     * @param saveState Whether the back stack and the state of all destinations between the
-     * current destination and [T] should be saved for later
-     * restoration via [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using
-     * the same [T] (note: this matching ID is true whether
-     * [inclusive] is true or false).
-     *
-     * @return true if the stack was popped at least once and the user has been navigated to
-     * another destination, false otherwise
+     * @param saveState Whether the back stack and the state of all destinations between the current
+     *   destination and [T] should be saved for later restoration via
+     *   [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using the same [T]
+     *   (note: this matching ID is true whether [inclusive] is true or false).
+     * @return true if the stack was popped at least once and the user has been navigated to another
+     *   destination, false otherwise
      */
     @MainThread
     @JvmOverloads
@@ -559,17 +542,15 @@
     /**
      * Attempts to pop the controller's back stack back to a specific destination.
      *
-     * @param route The topmost destination to retain with route from an Object. The
-     * target NavDestination must have been created with route from [KClass].
+     * @param route The topmost destination to retain with route from an Object. The target
+     *   NavDestination must have been created with route from [KClass].
      * @param inclusive Whether the given destination should also be popped.
-     * @param saveState Whether the back stack and the state of all destinations between the
-     * current destination and the [route] should be saved for later
-     * restoration via [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using
-     * the same [route] (note: this matching ID is true whether
-     * [inclusive] is true or false).
-     *
-     * @return true if the stack was popped at least once and the user has been navigated to
-     * another destination, false otherwise
+     * @param saveState Whether the back stack and the state of all destinations between the current
+     *   destination and the [route] should be saved for later restoration via
+     *   [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using the same [route]
+     *   (note: this matching ID is true whether [inclusive] is true or false).
+     * @return true if the stack was popped at least once and the user has been navigated to another
+     *   destination, false otherwise
      */
     @MainThread
     @JvmOverloads
@@ -585,17 +566,15 @@
     }
 
     /**
-     * Attempts to pop the controller's back stack back to a specific destination. This does
-     * **not** handle calling [dispatchOnDestinationChanged]
+     * Attempts to pop the controller's back stack back to a specific destination. This does **not**
+     * handle calling [dispatchOnDestinationChanged]
      *
      * @param destinationId The topmost destination to retain
      * @param inclusive Whether the given destination should also be popped.
-     * @param saveState Whether the back stack and the state of all destinations between the
-     * current destination and the [destinationId] should be saved for later
-     * restoration via [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using
-     * the same [destinationId] (note: this matching ID is true whether
-     * [inclusive] is true or false).
-     *
+     * @param saveState Whether the back stack and the state of all destinations between the current
+     *   destination and the [destinationId] should be saved for later restoration via
+     *   [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using the same
+     *   [destinationId] (note: this matching ID is true whether [inclusive] is true or false).
      * @return true if the stack was popped at least once, false otherwise
      */
     @MainThread
@@ -613,9 +592,7 @@
         var foundDestination: NavDestination? = null
         while (iterator.hasNext()) {
             val destination = iterator.next().destination
-            val navigator = _navigatorProvider.getNavigator<Navigator<*>>(
-                destination.navigatorName
-            )
+            val navigator = _navigatorProvider.getNavigator<Navigator<*>>(destination.navigatorName)
             if (inclusive || destination.id != destinationId) {
                 popOperations.add(navigator)
             }
@@ -627,9 +604,7 @@
         if (foundDestination == null) {
             // We were passed a destinationId that doesn't exist on our back stack.
             // Better to ignore the popBackStack than accidentally popping the entire stack
-            val destinationName = NavDestination.getDisplayName(
-                context, destinationId
-            )
+            val destinationName = NavDestination.getDisplayName(context, destinationId)
             Log.i(
                 TAG,
                 "Ignoring popBackStack to destination $destinationName as it was not found " +
@@ -652,17 +627,16 @@
     }
 
     /**
-     * Attempts to pop the controller's back stack back to a specific destination. This does
-     * **not** handle calling [dispatchOnDestinationChanged]
+     * Attempts to pop the controller's back stack back to a specific destination. This does **not**
+     * handle calling [dispatchOnDestinationChanged]
      *
      * @param route The topmost destination with this route to retain
      * @param inclusive Whether the given destination should also be popped.
-     * @param saveState Whether the back stack and the state of all destinations between the
-     * current destination and the destination with [route] should be saved for later to be
-     * restored via [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using
-     * the [NavDestination.id] of the destination with this route (note: this matching ID
-     * is true whether [inclusive] is true or false).
-     *
+     * @param saveState Whether the back stack and the state of all destinations between the current
+     *   destination and the destination with [route] should be saved for later to be restored via
+     *   [NavOptions.Builder.setRestoreState] or the `restoreState` attribute using the
+     *   [NavDestination.id] of the destination with this route (note: this matching ID is true
+     *   whether [inclusive] is true or false).
      * @return true if the stack was popped at least once, false otherwise
      */
     private fun popBackStackInternal(
@@ -676,16 +650,20 @@
         }
 
         val popOperations = mutableListOf<Navigator<*>>()
-        val foundDestination = backQueue.lastOrNull { entry ->
-            val hasRoute = entry.destination.hasRoute(route, entry.arguments)
-            if (inclusive || !hasRoute) {
-                val navigator = _navigatorProvider.getNavigator<Navigator<*>>(
-                    entry.destination.navigatorName
-                )
-                popOperations.add(navigator)
-            }
-            hasRoute
-        }?.destination
+        val foundDestination =
+            backQueue
+                .lastOrNull { entry ->
+                    val hasRoute = entry.destination.hasRoute(route, entry.arguments)
+                    if (inclusive || !hasRoute) {
+                        val navigator =
+                            _navigatorProvider.getNavigator<Navigator<*>>(
+                                entry.destination.navigatorName
+                            )
+                        popOperations.add(navigator)
+                    }
+                    hasRoute
+                }
+                ?.destination
 
         if (foundDestination == null) {
             // We were passed a route that doesn't exist on our back stack.
@@ -726,17 +704,19 @@
                 // saved state to the destination you've actually passed to popUpTo
                 // as well as its parents (if it is the start destination)
                 generateSequence(foundDestination) { destination ->
-                    if (destination.parent?.startDestinationId == destination.id) {
-                        destination.parent
-                    } else {
-                        null
+                        if (destination.parent?.startDestinationId == destination.id) {
+                            destination.parent
+                        } else {
+                            null
+                        }
                     }
-                }.takeWhile { destination ->
-                    // Only add the state if it doesn't already exist
-                    !backStackMap.containsKey(destination.id)
-                }.forEach { destination ->
-                    backStackMap[destination.id] = savedState.firstOrNull()?.id
-                }
+                    .takeWhile { destination ->
+                        // Only add the state if it doesn't already exist
+                        !backStackMap.containsKey(destination.id)
+                    }
+                    .forEach { destination ->
+                        backStackMap[destination.id] = savedState.firstOrNull()?.id
+                    }
             }
             if (savedState.isNotEmpty()) {
                 val firstState = savedState.first()
@@ -745,17 +725,17 @@
                 // as well as its parents (if it is the start destination)
                 val firstStateDestination = findDestination(firstState.destinationId)
                 generateSequence(firstStateDestination) { destination ->
-                    if (destination.parent?.startDestinationId == destination.id) {
-                        destination.parent
-                    } else {
-                        null
+                        if (destination.parent?.startDestinationId == destination.id) {
+                            destination.parent
+                        } else {
+                            null
+                        }
                     }
-                }.takeWhile { destination ->
-                    // Only add the state if it doesn't already exist
-                    !backStackMap.containsKey(destination.id)
-                }.forEach { destination ->
-                    backStackMap[destination.id] = firstState.id
-                }
+                    .takeWhile { destination ->
+                        // Only add the state if it doesn't already exist
+                        !backStackMap.containsKey(destination.id)
+                    }
+                    .forEach { destination -> backStackMap[destination.id] = firstState.id }
 
                 if (backStackMap.values.contains(firstState.id)) {
                     // And finally, store the actual state itself if the entry was added
@@ -770,22 +750,19 @@
 
     /**
      * Trigger a popBackStack() that originated from a Navigator specifically calling
-     * [NavigatorState.pop] outside of a call to [popBackStack] (e.g., in response to some
-     * user interaction that caused that destination to no longer be needed such as
-     * dismissing a dialog destination).
+     * [NavigatorState.pop] outside of a call to [popBackStack] (e.g., in response to some user
+     * interaction that caused that destination to no longer be needed such as dismissing a dialog
+     * destination).
      *
      * This method is responsible for popping all destinations above the given [popUpTo] entry and
-     * popping the entry itself and removing it from the back stack before calling the
-     * [onComplete] callback. Only after the processing here is done and the [onComplete]
-     * callback completes does this method dispatch the destination change event.
+     * popping the entry itself and removing it from the back stack before calling the [onComplete]
+     * callback. Only after the processing here is done and the [onComplete] callback completes does
+     * this method dispatch the destination change event.
      */
     internal fun popBackStackFromNavigator(popUpTo: NavBackStackEntry, onComplete: () -> Unit) {
         val popIndex = backQueue.indexOf(popUpTo)
         if (popIndex < 0) {
-            Log.i(
-                TAG,
-                "Ignoring pop of $popUpTo as it was not found on the current back stack"
-            )
+            Log.i(TAG, "Ignoring pop of $popUpTo as it was not found on the current back stack")
             return
         }
         if (popIndex + 1 != backQueue.size) {
@@ -816,14 +793,17 @@
                 "(${entry.destination})"
         }
         backQueue.removeLast()
-        val navigator = navigatorProvider
-            .getNavigator<Navigator<NavDestination>>(entry.destination.navigatorName)
+        val navigator =
+            navigatorProvider.getNavigator<Navigator<NavDestination>>(
+                entry.destination.navigatorName
+            )
         val state = navigatorState[navigator]
         // If we pop an entry with transitions, but not the graph, we will not make a call to
         // popBackStackInternal, so the graph entry will not be marked as transitioning so we
         // need to check if it still has children.
-        val transitioning = state?.transitionsInProgress?.value?.contains(entry) == true ||
-            parentToChildCount.containsKey(entry)
+        val transitioning =
+            state?.transitionsInProgress?.value?.contains(entry) == true ||
+                parentToChildCount.containsKey(entry)
         if (entry.lifecycle.currentState.isAtLeast(Lifecycle.State.CREATED)) {
             if (saveState) {
                 // Move the state through STOPPED
@@ -844,13 +824,12 @@
     }
 
     /**
-     * Clears any saved state associated with [route] that was previously saved
-     * via [popBackStack] when using a `saveState` value of `true`.
+     * Clears any saved state associated with [route] that was previously saved via [popBackStack]
+     * when using a `saveState` value of `true`.
      *
      * @param route The route of the destination previously used with [popBackStack] with a
-     * `saveState` value of `true`. May contain filled in arguments as long as
-     * it is exact match with route used with [popBackStack].
-     *
+     *   `saveState` value of `true`. May contain filled in arguments as long as it is exact match
+     *   with route used with [popBackStack].
      * @return true if the saved state of the stack associated with [route] was cleared.
      */
     @MainThread
@@ -862,12 +841,11 @@
     }
 
     /**
-     * Clears any saved state associated with [destinationId] that was previously saved
-     * via [popBackStack] when using a `saveState` value of `true`.
+     * Clears any saved state associated with [destinationId] that was previously saved via
+     * [popBackStack] when using a `saveState` value of `true`.
      *
      * @param destinationId The ID of the destination previously used with [popBackStack] with a
-     * `saveState`value of `true`
-     *
+     *   `saveState`value of `true`
      * @return true if the saved state of the stack associated with [destinationId] was cleared.
      */
     @MainThread
@@ -879,13 +857,12 @@
     }
 
     /**
-     * Clears any saved state associated with KClass [T] that was previously saved
-     * via [popBackStack] when using a `saveState` value of `true`.
+     * Clears any saved state associated with KClass [T] that was previously saved via
+     * [popBackStack] when using a `saveState` value of `true`.
      *
      * @param T The route from the [KClass] of the destination previously used with [popBackStack]
-     * with a `saveState`value of `true`. The target NavDestination must have been created
-     * with route from [KClass].
-     *
+     *   with a `saveState`value of `true`. The target NavDestination must have been created with
+     *   route from [KClass].
      * @return true if the saved state of the stack associated with [T] was cleared.
      */
     @MainThread
@@ -893,13 +870,12 @@
         clearBackStack(serializer<T>().hashCode())
 
     /**
-     * Clears any saved state associated with KClass [T] that was previously saved
-     * via [popBackStack] when using a `saveState` value of `true`.
+     * Clears any saved state associated with KClass [T] that was previously saved via
+     * [popBackStack] when using a `saveState` value of `true`.
      *
-     * @param route The route from an Object of the destination previously used with
-     * [popBackStack] with a `saveState`value of `true`. The target NavDestination must
-     * have been created with route from [KClass].
-     *
+     * @param route The route from an Object of the destination previously used with [popBackStack]
+     *   with a `saveState`value of `true`. The target NavDestination must have been created with
+     *   route from [KClass].
      * @return true if the saved state of the stack associated with [T] was cleared.
      */
     @OptIn(InternalSerializationApi::class)
@@ -916,40 +892,32 @@
 
     @MainThread
     private fun clearBackStackInternal(@IdRes destinationId: Int): Boolean {
-        navigatorState.values.forEach { state ->
-            state.isNavigating = true
-        }
-        val restored = restoreStateInternal(destinationId, null,
-            navOptions { restoreState = true }, null)
-        navigatorState.values.forEach { state ->
-            state.isNavigating = false
-        }
+        navigatorState.values.forEach { state -> state.isNavigating = true }
+        val restored =
+            restoreStateInternal(destinationId, null, navOptions { restoreState = true }, null)
+        navigatorState.values.forEach { state -> state.isNavigating = false }
         return restored && popBackStackInternal(destinationId, inclusive = true, saveState = false)
     }
 
     @MainThread
     private fun clearBackStackInternal(route: String): Boolean {
-        navigatorState.values.forEach { state ->
-            state.isNavigating = true
-        }
+        navigatorState.values.forEach { state -> state.isNavigating = true }
         val restored = restoreStateInternal(route)
-        navigatorState.values.forEach { state ->
-            state.isNavigating = false
-        }
+        navigatorState.values.forEach { state -> state.isNavigating = false }
         return restored && popBackStackInternal(route, inclusive = true, saveState = false)
     }
 
     /**
-     * Attempts to navigate up in the navigation hierarchy. Suitable for when the
-     * user presses the "Up" button marked with a left (or start)-facing arrow in the upper left
-     * (or starting) corner of the app UI.
+     * Attempts to navigate up in the navigation hierarchy. Suitable for when the user presses the
+     * "Up" button marked with a left (or start)-facing arrow in the upper left (or starting) corner
+     * of the app UI.
      *
-     * The intended behavior of Up differs from [Back][popBackStack] when the user
-     * did not reach the current destination from the application's own task. e.g. if the user
-     * is viewing a document or link in the current app in an activity hosted on another app's
-     * task where the user clicked the link. In this case the current activity (determined by the
-     * context used to create this NavController) will be [finished][Activity.finish] and
-     * the user will be taken to an appropriate destination in this app on its own task.
+     * The intended behavior of Up differs from [Back][popBackStack] when the user did not reach the
+     * current destination from the application's own task. e.g. if the user is viewing a document
+     * or link in the current app in an activity hosted on another app's task where the user clicked
+     * the link. In this case the current activity (determined by the context used to create this
+     * NavController) will be [finished][Activity.finish] and the user will be taken to an
+     * appropriate destination in this app on its own task.
      *
      * @return true if navigation was successful, false otherwise
      */
@@ -969,9 +937,10 @@
         }
     }
 
-    /** Starts a new Activity directed to the next-upper Destination in the explicit deep link
-     * stack used to start this Activity. Returns false if
-     * the current destination was already the root of the deep link.
+    /**
+     * Starts a new Activity directed to the next-upper Destination in the explicit deep link stack
+     * used to start this Activity. Returns false if the current destination was already the root of
+     * the deep link.
      */
     @Suppress("DEPRECATION")
     private fun tryRelaunchUpToExplicitStack(): Boolean {
@@ -1010,9 +979,7 @@
 
         // Attach the original global arguments, and also the original calling Intent.
         val arguments = bundleOf(KEY_DEEP_LINK_INTENT to intent)
-        extras.getBundle(KEY_DEEP_LINK_EXTRAS)?.let {
-            arguments.putAll(it)
-        }
+        extras.getBundle(KEY_DEEP_LINK_EXTRAS)?.let { arguments.putAll(it) }
         navDeepLinkBuilder.setArguments(arguments)
 
         deepLinkIds.forEachIndexed { index, deepLinkId ->
@@ -1025,8 +992,8 @@
     }
 
     /**
-     * Starts a new Activity directed to the parent of the current Destination. Returns false if
-     * the current destination was already the root of the deep link.
+     * Starts a new Activity directed to the parent of the current Destination. Returns false if the
+     * current destination was already the root of the deep link.
      */
     private fun tryRelaunchUpToGeneratedStack(): Boolean {
         val currentDestination = currentDestination
@@ -1042,25 +1009,23 @@
                     if (data != null) {
                         // Include the original deep link Intent so the Destinations can
                         // synthetically generate additional arguments as necessary.
-                        args.putParcelable(
-                            KEY_DEEP_LINK_INTENT,
-                            activity!!.intent
-                        )
-                        val matchingDeepLink = _graph!!.matchDeepLink(
-                            NavDeepLinkRequest(activity!!.intent)
-                        )
+                        args.putParcelable(KEY_DEEP_LINK_INTENT, activity!!.intent)
+                        val matchingDeepLink =
+                            _graph!!.matchDeepLink(NavDeepLinkRequest(activity!!.intent))
                         if (matchingDeepLink?.matchingArgs != null) {
-                            val destinationArgs = matchingDeepLink.destination.addInDefaultArgs(
-                                matchingDeepLink.matchingArgs
-                            )
+                            val destinationArgs =
+                                matchingDeepLink.destination.addInDefaultArgs(
+                                    matchingDeepLink.matchingArgs
+                                )
                             args.putAll(destinationArgs)
                         }
                     }
                 }
-                val parentIntents = NavDeepLinkBuilder(this)
-                    .setDestination(parent.id)
-                    .setArguments(args)
-                    .createTaskStackBuilder()
+                val parentIntents =
+                    NavDeepLinkBuilder(this)
+                        .setDestination(parent.id)
+                        .setArguments(args)
+                        .createTaskStackBuilder()
                 parentIntents.startActivities()
                 activity?.finish()
                 return true
@@ -1071,13 +1036,9 @@
         return false
     }
 
-    /**
-     * Gets the number of non-NavGraph destinations on the back stack
-     */
+    /** Gets the number of non-NavGraph destinations on the back stack */
     private val destinationCountOnBackStack: Int
-        get() = backQueue.count { entry ->
-            entry.destination !is NavGraph
-        }
+        get() = backQueue.count { entry -> entry.destination !is NavGraph }
 
     private var dispatchReentrantCount = 0
     private val backStackEntriesToDispatch = mutableListOf<NavBackStackEntry>()
@@ -1169,8 +1130,10 @@
                 // Upward Lifecycle transitions need to be done afterwards so that
                 // the parent navigation graph is resumed before their children
                 if (currentMaxLifecycle != Lifecycle.State.RESUMED) {
-                    val navigator = navigatorProvider
-                        .getNavigator<Navigator<*>>(entry.destination.navigatorName)
+                    val navigator =
+                        navigatorProvider.getNavigator<Navigator<*>>(
+                            entry.destination.navigatorName
+                        )
                     val state = navigatorState[navigator]
                     val transitioning = state?.transitionsInProgress?.value?.contains(entry)
                     if (transitioning != true && parentToChildCount[entry]?.get() != 0) {
@@ -1193,7 +1156,9 @@
                     upwardStateTransitions[entry] = Lifecycle.State.STARTED
                 }
                 started.parent?.let {
-                    if (!nextStarted.contains(it)) { nextStarted.add(it) }
+                    if (!nextStarted.contains(it)) {
+                        nextStarted.add(it)
+                    }
                 }
             } else {
                 entry.maxLifecycle = Lifecycle.State.CREATED
@@ -1218,20 +1183,19 @@
         val entries = mutableListOf<NavBackStackEntry>()
         // Add any transitioning entries that are not at least STARTED
         navigatorState.values.forEach { state ->
-            entries += state.transitionsInProgress.value.filter { entry ->
-                !entries.contains(entry) &&
-                    !entry.maxLifecycle.isAtLeast(Lifecycle.State.STARTED)
-            }
+            entries +=
+                state.transitionsInProgress.value.filter { entry ->
+                    !entries.contains(entry) &&
+                        !entry.maxLifecycle.isAtLeast(Lifecycle.State.STARTED)
+                }
         }
         // Add any STARTED entries from the backQueue. This will include the topmost
         // non-FloatingWindow destination plus every FloatingWindow destination above it.
-        entries += backQueue.filter { entry ->
-            !entries.contains(entry) &&
-                entry.maxLifecycle.isAtLeast(Lifecycle.State.STARTED)
-        }
-        return entries.filter {
-            it.destination !is NavGraph
-        }
+        entries +=
+            backQueue.filter { entry ->
+                !entries.contains(entry) && entry.maxLifecycle.isAtLeast(Lifecycle.State.STARTED)
+            }
+        return entries.filter { it.destination !is NavGraph }
     }
 
     /**
@@ -1244,13 +1208,12 @@
     }
 
     /**
-     * Sets the [navigation graph][NavGraph] to the specified resource.
-     * Any current navigation graph data (including back stack) will be replaced.
+     * Sets the [navigation graph][NavGraph] to the specified resource. Any current navigation graph
+     * data (including back stack) will be replaced.
      *
      * The inflated graph can be retrieved via [graph].
      *
      * @param graphResId resource id of the navigation graph to inflate
-     *
      * @see NavController.navInflater
      * @see NavController.setGraph
      * @see NavController.graph
@@ -1262,14 +1225,13 @@
     }
 
     /**
-     * Sets the [navigation graph][NavGraph] to the specified resource.
-     * Any current navigation graph data (including back stack) will be replaced.
+     * Sets the [navigation graph][NavGraph] to the specified resource. Any current navigation graph
+     * data (including back stack) will be replaced.
      *
      * The inflated graph can be retrieved via [graph].
      *
      * @param graphResId resource id of the navigation graph to inflate
      * @param startDestinationArgs arguments to send to the start destination of the graph
-     *
      * @see NavController.navInflater
      * @see NavController.setGraph
      * @see NavController.graph
@@ -1281,14 +1243,13 @@
     }
 
     /**
-     * Sets the [navigation graph][NavGraph] to the specified graph.
-     * Any current navigation graph data (including back stack) will be replaced.
+     * Sets the [navigation graph][NavGraph] to the specified graph. Any current navigation graph
+     * data (including back stack) will be replaced.
      *
      * The graph can be retrieved later via [graph].
      *
      * @param graph graph to set
      * @param startDestinationArgs arguments to send to the start destination of the graph
-     *
      * @see NavController.setGraph
      * @see NavController.graph
      */
@@ -1300,9 +1261,7 @@
                 // Clear all saved back stacks by iterating through a copy of the saved keys,
                 // thus avoiding any concurrent modification exceptions
                 val savedBackStackIds = ArrayList(backStackMap.keys)
-                savedBackStackIds.forEach { id ->
-                    clearBackStackInternal(id)
-                }
+                savedBackStackIds.forEach { id -> clearBackStackInternal(id) }
                 // Pop everything from the old graph off the back stack
                 popBackStackInternal(previousGraph.id, true)
             }
@@ -1319,19 +1278,19 @@
             backQueue.forEach { entry ->
                 // we will trace this hierarchy in new graph to get new destination instance
                 val hierarchy = entry.destination.hierarchy.toList().asReversed()
-                val newDestination = hierarchy.fold(_graph!!) {
-                        newDest: NavDestination, oldDest: NavDestination ->
-                    if (oldDest == _graph && newDest == graph) {
-                        // if root graph, it is already the node that matches with oldDest
-                        newDest
-                    } else if (newDest is NavGraph) {
-                        // otherwise we walk down the hierarchy to the next child
-                        newDest.findNode(oldDest.id)!!
-                    } else {
-                        // final leaf node found
-                        newDest
+                val newDestination =
+                    hierarchy.fold(_graph!!) { newDest: NavDestination, oldDest: NavDestination ->
+                        if (oldDest == _graph && newDest == graph) {
+                            // if root graph, it is already the node that matches with oldDest
+                            newDest
+                        } else if (newDest is NavGraph) {
+                            // otherwise we walk down the hierarchy to the next child
+                            newDest.findNode(oldDest.id)!!
+                        } else {
+                            // final leaf node found
+                            newDest
+                        }
                     }
-                }
                 entry.destination = newDestination
             }
         }
@@ -1340,9 +1299,8 @@
     @MainThread
     private fun onGraphCreated(startDestinationArgs: Bundle?) {
         navigatorStateToRestore?.let { navigatorStateToRestore ->
-            val navigatorNames = navigatorStateToRestore.getStringArrayList(
-                KEY_NAVIGATOR_STATE_NAMES
-            )
+            val navigatorNames =
+                navigatorStateToRestore.getStringArrayList(KEY_NAVIGATOR_STATE_NAMES)
             if (navigatorNames != null) {
                 for (name in navigatorNames) {
                     val navigator = _navigatorProvider.getNavigator<Navigator<*>>(name)
@@ -1358,10 +1316,7 @@
                 val state = parcelable as NavBackStackEntryState
                 val node = findDestination(state.destinationId)
                 if (node == null) {
-                    val dest = NavDestination.getDisplayName(
-                        context,
-                        state.destinationId
-                    )
+                    val dest = NavDestination.getDisplayName(context, state.destinationId)
                     throw IllegalStateException(
                         "Restoring the Navigation back stack failed: destination $dest cannot be " +
                             "found from the current destination $currentDestination"
@@ -1369,9 +1324,8 @@
                 }
                 val entry = state.instantiate(context, node, hostLifecycleState, viewModel)
                 val navigator = _navigatorProvider.getNavigator<Navigator<*>>(node.navigatorName)
-                val navigatorBackStack = navigatorState.getOrPut(navigator) {
-                    NavControllerNavigatorState(navigator)
-                }
+                val navigatorBackStack =
+                    navigatorState.getOrPut(navigator) { NavControllerNavigatorState(navigator) }
                 backQueue.add(entry)
                 navigatorBackStack.addInternal(entry)
                 val parent = entry.destination.parent
@@ -1383,12 +1337,13 @@
             this.backStackToRestore = null
         }
         // Mark all Navigators as attached
-        _navigatorProvider.navigators.values.filterNot { it.isAttached }.forEach { navigator ->
-            val navigatorBackStack = navigatorState.getOrPut(navigator) {
-                NavControllerNavigatorState(navigator)
+        _navigatorProvider.navigators.values
+            .filterNot { it.isAttached }
+            .forEach { navigator ->
+                val navigatorBackStack =
+                    navigatorState.getOrPut(navigator) { NavControllerNavigatorState(navigator) }
+                navigator.onAttach(navigatorBackStack)
             }
-            navigator.onAttach(navigatorBackStack)
-        }
         if (_graph != null && backQueue.isEmpty()) {
             val deepLinked =
                 !deepLinkHandled && activity != null && handleDeepLink(activity!!.intent)
@@ -1405,20 +1360,19 @@
     /**
      * Checks the given Intent for a Navigation deep link and navigates to the deep link if present.
      * This is called automatically for you the first time you set the graph if you've passed in an
-     * [Activity] as the context when constructing this NavController, but should be manually
-     * called if your Activity receives new Intents in [Activity.onNewIntent].
+     * [Activity] as the context when constructing this NavController, but should be manually called
+     * if your Activity receives new Intents in [Activity.onNewIntent].
      *
      * The types of Intents that are supported include:
      *
-     * Intents created by [NavDeepLinkBuilder] or
-     * [createDeepLink]. This assumes that the current graph shares
-     * the same hierarchy to get to the deep linked destination as when the deep link was
-     * constructed.
-     * Intents that include a [data Uri][Intent.getData]. This Uri will be checked
+     * Intents created by [NavDeepLinkBuilder] or [createDeepLink]. This assumes that the current
+     * graph shares the same hierarchy to get to the deep linked destination as when the deep link
+     * was constructed. Intents that include a [data Uri][Intent.getData]. This Uri will be checked
      * against the Uri patterns in the [NavDeepLinks][NavDeepLink] added via
      * [NavDestination.addDeepLink].
      *
      * The [navigation graph][graph] should be set before calling this method.
+     *
      * @param intent The Intent that may contain a valid deep link
      * @return True if the navigation controller found a valid deep link and navigated to it.
      * @throws IllegalStateException if deep link cannot be accessed from the current destination
@@ -1431,16 +1385,13 @@
             return false
         }
         val extras = intent.extras
-        var deepLink = try {
-            extras?.getIntArray(KEY_DEEP_LINK_IDS)
-        } catch (e: Exception) {
-            Log.e(
-                TAG,
-                "handleDeepLink() could not extract deepLink from $intent",
-                e
-            )
-            null
-        }
+        var deepLink =
+            try {
+                extras?.getIntArray(KEY_DEEP_LINK_IDS)
+            } catch (e: Exception) {
+                Log.e(TAG, "handleDeepLink() could not extract deepLink from $intent", e)
+                null
+            }
         var deepLinkArgs = extras?.getParcelableArrayList<Bundle>(KEY_DEEP_LINK_ARGS)
         val globalArgs = Bundle()
         val deepLinkExtras = extras?.getBundle(KEY_DEEP_LINK_EXTRAS)
@@ -1485,16 +1436,16 @@
             args[index] = arguments
         }
         val flags = intent.flags
-        if (flags and Intent.FLAG_ACTIVITY_NEW_TASK != 0 &&
-            flags and Intent.FLAG_ACTIVITY_CLEAR_TASK == 0
+        if (
+            flags and Intent.FLAG_ACTIVITY_NEW_TASK != 0 &&
+                flags and Intent.FLAG_ACTIVITY_CLEAR_TASK == 0
         ) {
             // Someone called us with NEW_TASK, but we don't know what state our whole
             // task stack is in, so we need to manually restart the whole stack to
             // ensure we're in a predictably good state.
             intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK)
-            val taskStackBuilder = TaskStackBuilder
-                .create(context)
-                .addNextIntentWithParentStack(intent)
+            val taskStackBuilder =
+                TaskStackBuilder.create(context).addNextIntentWithParentStack(intent)
             taskStackBuilder.startActivities()
             activity?.let { activity ->
                 activity.finish()
@@ -1514,36 +1465,35 @@
                 val arguments = args[index++]
                 val node = findDestination(destinationId)
                 if (node == null) {
-                    val dest = NavDestination.getDisplayName(
-                        context, destinationId
-                    )
+                    val dest = NavDestination.getDisplayName(context, destinationId)
                     throw IllegalStateException(
                         "Deep Linking failed: destination $dest cannot be found from the current " +
                             "destination $currentDestination"
                     )
                 }
                 navigate(
-                    node, arguments,
+                    node,
+                    arguments,
                     navOptions {
                         anim {
                             enter = 0
                             exit = 0
                         }
-                        val changingGraphs = node is NavGraph &&
-                            node.hierarchy.none { it == currentDestination?.parent }
+                        val changingGraphs =
+                            node is NavGraph &&
+                                node.hierarchy.none { it == currentDestination?.parent }
                         if (changingGraphs && deepLinkSaveState) {
                             // If we are navigating to a 'sibling' graph (one that isn't part
                             // of the current destination's hierarchy), then we need to saveState
                             // to ensure that each graph has its own saved state that users can
                             // return to
-                            popUpTo(graph.findStartDestination().id) {
-                                saveState = true
-                            }
+                            popUpTo(graph.findStartDestination().id) { saveState = true }
                             // Note we specifically don't call restoreState = true
                             // as our deep link should support multiple instances of the
                             // same graph in a row
                         }
-                    }, null
+                    },
+                    null
                 )
             }
             deepLinkHandled = true
@@ -1590,25 +1540,21 @@
     }
 
     /**
-     * Looks through the deep link for invalid destinations, returning the display name of
-     * any invalid destinations in the deep link array.
+     * Looks through the deep link for invalid destinations, returning the display name of any
+     * invalid destinations in the deep link array.
      *
      * @param deepLink array of deep link IDs that are expected to match the graph
-     * @return The display name of the first destination not found in the graph or null if
-     * all destinations were found in the graph.
+     * @return The display name of the first destination not found in the graph or null if all
+     *   destinations were found in the graph.
      */
     private fun findInvalidDestinationDisplayNameInDeepLink(deepLink: IntArray): String? {
         var graph = _graph
         for (i in deepLink.indices) {
             val destinationId = deepLink[i]
             val node =
-                (
-                    if (i == 0)
-                        if (_graph!!.id == destinationId) _graph
-                        else null
-                    else
-                        graph!!.findNode(destinationId)
-                    ) ?: return NavDestination.getDisplayName(context, destinationId)
+                (if (i == 0) if (_graph!!.id == destinationId) _graph else null
+                else graph!!.findNode(destinationId))
+                    ?: return NavDestination.getDisplayName(context, destinationId)
             if (i != deepLink.size - 1) {
                 // We're not at the final NavDestination yet, so keep going through the chain
                 if (node is NavGraph) {
@@ -1625,17 +1571,13 @@
         return null
     }
 
-    /**
-     * The current destination.
-     */
+    /** The current destination. */
     public open val currentDestination: NavDestination?
         get() {
             return currentBackStackEntry?.destination
         }
 
-    /**
-     * Recursively searches through parents
-     */
+    /** Recursively searches through parents */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun findDestination(@IdRes destinationId: Int): NavDestination? {
         if (_graph == null) {
@@ -1649,8 +1591,8 @@
     }
 
     /**
-     * Recursively searches through parents. If [searchChildren] is true, also recursively
-     * searches children.
+     * Recursively searches through parents. If [searchChildren] is true, also recursively searches
+     * children.
      */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun NavDestination.findDestinationComprehensive(
@@ -1665,9 +1607,7 @@
         return currentGraph.findNodeComprehensive(destinationId, currentGraph, searchChildren)
     }
 
-    /**
-     * Recursively searches through parents
-     */
+    /** Recursively searches through parents */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun findDestination(route: String): NavDestination? {
         if (_graph == null) {
@@ -1705,12 +1645,10 @@
      * Navigate to a destination from the current navigation graph. This supports both navigating
      * via an [action][NavDestination.getAction] and directly navigating to a destination.
      *
-     * @param resId an [action][NavDestination.getAction] id or a destination id to
-     * navigate to
-     *
+     * @param resId an [action][NavDestination.getAction] id or a destination id to navigate to
      * @throws IllegalStateException if there is no current navigation node
-     * @throws IllegalArgumentException if the desired destination cannot be found from the
-     *                                  current destination
+     * @throws IllegalArgumentException if the desired destination cannot be found from the current
+     *   destination
      */
     @MainThread
     public open fun navigate(@IdRes resId: Int) {
@@ -1721,13 +1659,11 @@
      * Navigate to a destination from the current navigation graph. This supports both navigating
      * via an [action][NavDestination.getAction] and directly navigating to a destination.
      *
-     * @param resId an [action][NavDestination.getAction] id or a destination id to
-     * navigate to
+     * @param resId an [action][NavDestination.getAction] id or a destination id to navigate to
      * @param args arguments to pass to the destination
-     *
      * @throws IllegalStateException if there is no current navigation node
-     * @throws IllegalArgumentException if the desired destination cannot be found from the
-     *                                  current destination
+     * @throws IllegalArgumentException if the desired destination cannot be found from the current
+     *   destination
      */
     @MainThread
     public open fun navigate(@IdRes resId: Int, args: Bundle?) {
@@ -1741,14 +1677,12 @@
      * If given [NavOptions] pass in [NavOptions.restoreState] `true`, any args passed here will be
      * overridden by the restored args.
      *
-     * @param resId an [action][NavDestination.getAction] id or a destination id to
-     * navigate to
+     * @param resId an [action][NavDestination.getAction] id or a destination id to navigate to
      * @param args arguments to pass to the destination
      * @param navOptions special options for this navigation operation
-     *
      * @throws IllegalStateException if there is no current navigation node
-     * @throws IllegalArgumentException if the desired destination cannot be found from the
-     *                                  current destination
+     * @throws IllegalArgumentException if the desired destination cannot be found from the current
+     *   destination
      */
     @MainThread
     public open fun navigate(@IdRes resId: Int, args: Bundle?, navOptions: NavOptions?) {
@@ -1762,15 +1696,13 @@
      * If given [NavOptions] pass in [NavOptions.restoreState] `true`, any args passed here will be
      * overridden by the restored args.
      *
-     * @param resId an [action][NavDestination.getAction] id or a destination id to
-     * navigate to
+     * @param resId an [action][NavDestination.getAction] id or a destination id to navigate to
      * @param args arguments to pass to the destination
      * @param navOptions special options for this navigation operation
      * @param navigatorExtras extras to pass to the Navigator
-     *
      * @throws IllegalStateException if navigation graph has not been set for this NavController
-     * @throws IllegalArgumentException if the desired destination cannot be found from the
-     *                                  current destination
+     * @throws IllegalArgumentException if the desired destination cannot be found from the current
+     *   destination
      */
     @OptIn(InternalSerializationApi::class)
     @MainThread
@@ -1781,18 +1713,14 @@
         navigatorExtras: Navigator.Extras?
     ) {
         var finalNavOptions = navOptions
-        val currentNode = (
-            if (backQueue.isEmpty())
-                _graph
-            else
-                backQueue.last().destination
-            ) ?: throw IllegalStateException(
-                "No current destination found. Ensure a navigation graph has been set for " +
-                    "NavController $this."
-            )
+        val currentNode =
+            (if (backQueue.isEmpty()) _graph else backQueue.last().destination)
+                ?: throw IllegalStateException(
+                    "No current destination found. Ensure a navigation graph has been set for " +
+                        "NavController $this."
+                )
 
-        @IdRes
-        var destId = resId
+        @IdRes var destId = resId
         val navAction = currentNode.getAction(resId)
         var combinedArgs: Bundle? = null
         if (navAction != null) {
@@ -1813,13 +1741,18 @@
             combinedArgs.putAll(args)
         }
         // just pop and return if destId is invalid
-        if (destId == 0 && finalNavOptions != null && (finalNavOptions.popUpToId != -1 ||
-                finalNavOptions.popUpToRoute != null || finalNavOptions.popUpToRouteClass != null)
+        if (
+            destId == 0 &&
+                finalNavOptions != null &&
+                (finalNavOptions.popUpToId != -1 ||
+                    finalNavOptions.popUpToRoute != null ||
+                    finalNavOptions.popUpToRouteClass != null)
         ) {
             when {
                 finalNavOptions.popUpToRoute != null ->
                     popBackStack(
-                        finalNavOptions.popUpToRoute!!, finalNavOptions.isPopUpToInclusive()
+                        finalNavOptions.popUpToRoute!!,
+                        finalNavOptions.isPopUpToInclusive()
                     )
                 finalNavOptions.popUpToRouteClass != null ->
                     popBackStack(
@@ -1827,9 +1760,7 @@
                         finalNavOptions.isPopUpToInclusive()
                     )
                 finalNavOptions.popUpToId != -1 ->
-                    popBackStack(
-                        finalNavOptions.popUpToId, finalNavOptions.isPopUpToInclusive()
-                    )
+                    popBackStack(finalNavOptions.popUpToId, finalNavOptions.isPopUpToInclusive())
             }
             return
         }
@@ -1853,9 +1784,8 @@
     }
 
     /**
-     * Navigate to a destination via the given deep link [Uri].
-     * [NavDestination.hasDeepLink] should be called on
-     * [the navigation graph][graph] prior to calling this method to check if the deep
+     * Navigate to a destination via the given deep link [Uri]. [NavDestination.hasDeepLink] should
+     * be called on [the navigation graph][graph] prior to calling this method to check if the deep
      * link is valid. If an invalid deep link is given, an [IllegalArgumentException] will be
      * thrown.
      *
@@ -1868,9 +1798,8 @@
     }
 
     /**
-     * Navigate to a destination via the given deep link [Uri].
-     * [NavDestination.hasDeepLink] should be called on
-     * [the navigation graph][graph] prior to calling this method to check if the deep
+     * Navigate to a destination via the given deep link [Uri]. [NavDestination.hasDeepLink] should
+     * be called on [the navigation graph][graph] prior to calling this method to check if the deep
      * link is valid. If an invalid deep link is given, an [IllegalArgumentException] will be
      * thrown.
      *
@@ -1884,9 +1813,8 @@
     }
 
     /**
-     * Navigate to a destination via the given deep link [Uri].
-     * [NavDestination.hasDeepLink] should be called on
-     * [the navigation graph][graph] prior to calling this method to check if the deep
+     * Navigate to a destination via the given deep link [Uri]. [NavDestination.hasDeepLink] should
+     * be called on [the navigation graph][graph] prior to calling this method to check if the deep
      * link is valid. If an invalid deep link is given, an [IllegalArgumentException] will be
      * thrown.
      *
@@ -1905,14 +1833,12 @@
     }
 
     /**
-     * Navigate to a destination via the given [NavDeepLinkRequest].
-     * [NavDestination.hasDeepLink] should be called on
-     * [the navigation graph][graph] prior to calling this method to check if the deep
-     * link is valid. If an invalid deep link is given, an [IllegalArgumentException] will be
-     * thrown.
+     * Navigate to a destination via the given [NavDeepLinkRequest]. [NavDestination.hasDeepLink]
+     * should be called on [the navigation graph][graph] prior to calling this method to check if
+     * the deep link is valid. If an invalid deep link is given, an [IllegalArgumentException] will
+     * be thrown.
      *
      * @param request deepLinkRequest to the destination reachable from the current NavGraph
-     *
      * @throws IllegalArgumentException if the given deep link request is invalid
      */
     @MainThread
@@ -1921,15 +1847,13 @@
     }
 
     /**
-     * Navigate to a destination via the given [NavDeepLinkRequest].
-     * [NavDestination.hasDeepLink] should be called on
-     * [the navigation graph][graph] prior to calling this method to check if the deep
-     * link is valid. If an invalid deep link is given, an [IllegalArgumentException] will be
-     * thrown.
+     * Navigate to a destination via the given [NavDeepLinkRequest]. [NavDestination.hasDeepLink]
+     * should be called on [the navigation graph][graph] prior to calling this method to check if
+     * the deep link is valid. If an invalid deep link is given, an [IllegalArgumentException] will
+     * be thrown.
      *
      * @param request deepLinkRequest to the destination reachable from the current NavGraph
      * @param navOptions special options for this navigation operation
-     *
      * @throws IllegalArgumentException if the given deep link request is invalid
      */
     @MainThread
@@ -1938,16 +1862,14 @@
     }
 
     /**
-     * Navigate to a destination via the given [NavDeepLinkRequest].
-     * [NavDestination.hasDeepLink] should be called on
-     * [the navigation graph][graph] prior to calling this method to check if the deep
-     * link is valid. If an invalid deep link is given, an [IllegalArgumentException] will be
-     * thrown.
+     * Navigate to a destination via the given [NavDeepLinkRequest]. [NavDestination.hasDeepLink]
+     * should be called on [the navigation graph][graph] prior to calling this method to check if
+     * the deep link is valid. If an invalid deep link is given, an [IllegalArgumentException] will
+     * be thrown.
      *
      * @param request deepLinkRequest to the destination reachable from the current NavGraph
      * @param navOptions special options for this navigation operation
      * @param navigatorExtras extras to pass to the Navigator
-     *
      * @throws IllegalArgumentException if the given deep link request is invalid
      */
     @MainThread
@@ -1965,10 +1887,11 @@
             val destination = deepLinkMatch.destination
             val args = destination.addInDefaultArgs(deepLinkMatch.matchingArgs) ?: Bundle()
             val node = deepLinkMatch.destination
-            val intent = Intent().apply {
-                setDataAndType(request.uri, request.mimeType)
-                action = request.action
-            }
+            val intent =
+                Intent().apply {
+                    setDataAndType(request.uri, request.mimeType)
+                    action = request.action
+                }
             args.putParcelable(KEY_DEEP_LINK_INTENT, intent)
             navigate(node, args, navOptions, navigatorExtras)
         } else {
@@ -1987,38 +1910,40 @@
         navOptions: NavOptions?,
         navigatorExtras: Navigator.Extras?
     ) {
-        navigatorState.values.forEach { state ->
-            state.isNavigating = true
-        }
+        navigatorState.values.forEach { state -> state.isNavigating = true }
         var popped = false
         var launchSingleTop = false
         var navigated = false
         if (navOptions != null) {
             when {
                 navOptions.popUpToRoute != null ->
-                    popped = popBackStackInternal(
-                        navOptions.popUpToRoute!!,
-                        navOptions.isPopUpToInclusive(),
-                        navOptions.shouldPopUpToSaveState()
-                    )
+                    popped =
+                        popBackStackInternal(
+                            navOptions.popUpToRoute!!,
+                            navOptions.isPopUpToInclusive(),
+                            navOptions.shouldPopUpToSaveState()
+                        )
                 navOptions.popUpToRouteClass != null ->
-                    popped = popBackStackInternal(
-                        navOptions.popUpToRouteClass!!.serializer().hashCode(),
-                        navOptions.isPopUpToInclusive(),
-                        navOptions.shouldPopUpToSaveState()
-                    )
+                    popped =
+                        popBackStackInternal(
+                            navOptions.popUpToRouteClass!!.serializer().hashCode(),
+                            navOptions.isPopUpToInclusive(),
+                            navOptions.shouldPopUpToSaveState()
+                        )
                 navOptions.popUpToRouteObject != null ->
-                    popped = popBackStackInternal(
-                        navOptions.popUpToRouteObject!!,
-                        navOptions.isPopUpToInclusive(),
-                        navOptions.shouldPopUpToSaveState()
-                    )
+                    popped =
+                        popBackStackInternal(
+                            navOptions.popUpToRouteObject!!,
+                            navOptions.isPopUpToInclusive(),
+                            navOptions.shouldPopUpToSaveState()
+                        )
                 navOptions.popUpToId != -1 ->
-                    popped = popBackStackInternal(
-                        navOptions.popUpToId,
-                        navOptions.isPopUpToInclusive(),
-                        navOptions.shouldPopUpToSaveState()
-                    )
+                    popped =
+                        popBackStackInternal(
+                            navOptions.popUpToId,
+                            navOptions.isPopUpToInclusive(),
+                            navOptions.shouldPopUpToSaveState()
+                        )
             }
         }
         val finalArgs = node.addInDefaultArgs(args)
@@ -2026,17 +1951,21 @@
         if (navOptions?.shouldRestoreState() == true && backStackMap.containsKey(node.id)) {
             navigated = restoreStateInternal(node.id, finalArgs, navOptions, navigatorExtras)
         } else {
-            launchSingleTop = navOptions?.shouldLaunchSingleTop() == true &&
-                launchSingleTopInternal(node, args)
+            launchSingleTop =
+                navOptions?.shouldLaunchSingleTop() == true && launchSingleTopInternal(node, args)
 
             if (!launchSingleTop) {
                 // Not a single top operation, so we're looking to add the node to the back stack
-                val backStackEntry = NavBackStackEntry.create(
-                    context, node, finalArgs, hostLifecycleState, viewModel
-                )
-                val navigator = _navigatorProvider.getNavigator<Navigator<NavDestination>>(
-                    node.navigatorName
-                )
+                val backStackEntry =
+                    NavBackStackEntry.create(
+                        context,
+                        node,
+                        finalArgs,
+                        hostLifecycleState,
+                        viewModel
+                    )
+                val navigator =
+                    _navigatorProvider.getNavigator<Navigator<NavDestination>>(node.navigatorName)
                 navigator.navigateInternal(listOf(backStackEntry), navOptions, navigatorExtras) {
                     navigated = true
                     addEntryToBackStack(node, finalArgs, it)
@@ -2044,9 +1973,7 @@
             }
         }
         updateOnBackPressedCallbackEnabled()
-        navigatorState.values.forEach { state ->
-            state.isNavigating = false
-        }
+        navigatorState.values.forEach { state -> state.isNavigating = false }
         if (popped || navigated || launchSingleTop) {
             dispatchOnDestinationChanged()
         } else {
@@ -2054,27 +1981,24 @@
         }
     }
 
-    private fun launchSingleTopInternal(
-        node: NavDestination,
-        args: Bundle?
-    ): Boolean {
+    private fun launchSingleTopInternal(node: NavDestination, args: Bundle?): Boolean {
         val currentBackStackEntry = currentBackStackEntry
         val nodeId = if (node is NavGraph) node.findStartDestination().id else node.id
         if (nodeId != currentBackStackEntry?.destination?.id) return false
 
         val tempBackQueue: ArrayDeque<NavBackStackEntry> = ArrayDeque()
         // pop from startDestination back to original node and create a new entry for each
-        backQueue.indexOfLast { it.destination === node }.let { nodeIndex ->
-            while (backQueue.lastIndex >= nodeIndex) {
-                val oldEntry = backQueue.removeLast()
-                unlinkChildFromParent(oldEntry)
-                val newEntry = NavBackStackEntry(
-                    oldEntry,
-                    oldEntry.destination.addInDefaultArgs(args)
-                )
-                tempBackQueue.addFirst(newEntry)
+        backQueue
+            .indexOfLast { it.destination === node }
+            .let { nodeIndex ->
+                while (backQueue.lastIndex >= nodeIndex) {
+                    val oldEntry = backQueue.removeLast()
+                    unlinkChildFromParent(oldEntry)
+                    val newEntry =
+                        NavBackStackEntry(oldEntry, oldEntry.destination.addInDefaultArgs(args))
+                    tempBackQueue.addFirst(newEntry)
+                }
             }
-        }
 
         // add each new entry to backQueue starting from original node to startDestination
         tempBackQueue.forEach { newEntry ->
@@ -2088,9 +2012,8 @@
 
         // we replace NavState entries here only after backQueue has been finalized
         tempBackQueue.forEach { newEntry ->
-            val navigator = _navigatorProvider.getNavigator<Navigator<*>>(
-                newEntry.destination.navigatorName
-            )
+            val navigator =
+                _navigatorProvider.getNavigator<Navigator<*>>(newEntry.destination.navigatorName)
             navigator.onLaunchSingleTop(newEntry)
         }
 
@@ -2138,9 +2061,8 @@
             val matchingDeepLink = matchingDestination.matchDeepLink(route)
             // check if the topmost NavBackStackEntryState contains the arguments in this
             // matchingDeepLink. If not, we didn't find the correct stack.
-            val isCorrectStack = matchingDeepLink!!.hasMatchingArgs(
-                backStackState?.firstOrNull()?.args
-            )
+            val isCorrectStack =
+                matchingDeepLink!!.hasMatchingArgs(backStackState?.firstOrNull()?.args)
             if (!isCorrectStack) return false
             val entries = instantiateBackStack(backStackState)
             executeRestoreState(entries, null, null, null)
@@ -2155,26 +2077,29 @@
     ): Boolean {
         // Split up the entries by Navigator so we can restore them as an atomic operation
         val entriesGroupedByNavigator = mutableListOf<MutableList<NavBackStackEntry>>()
-        entries.filterNot { entry ->
-            // Skip navigation graphs - they'll be added by addEntryToBackStack()
-            entry.destination is NavGraph
-        }.forEach { entry ->
-            val previousEntryList = entriesGroupedByNavigator.lastOrNull()
-            val previousNavigatorName = previousEntryList?.last()?.destination?.navigatorName
-            if (previousNavigatorName == entry.destination.navigatorName) {
-                // Group back to back entries associated with the same Navigator together
-                previousEntryList += entry
-            } else {
-                // Create a new group for the new Navigator
-                entriesGroupedByNavigator += mutableListOf(entry)
+        entries
+            .filterNot { entry ->
+                // Skip navigation graphs - they'll be added by addEntryToBackStack()
+                entry.destination is NavGraph
             }
-        }
+            .forEach { entry ->
+                val previousEntryList = entriesGroupedByNavigator.lastOrNull()
+                val previousNavigatorName = previousEntryList?.last()?.destination?.navigatorName
+                if (previousNavigatorName == entry.destination.navigatorName) {
+                    // Group back to back entries associated with the same Navigator together
+                    previousEntryList += entry
+                } else {
+                    // Create a new group for the new Navigator
+                    entriesGroupedByNavigator += mutableListOf(entry)
+                }
+            }
         var navigated = false
         // Now actually navigate to each set of entries
         for (entryList in entriesGroupedByNavigator) {
-            val navigator = _navigatorProvider.getNavigator<Navigator<NavDestination>>(
-                entryList.first().destination.navigatorName
-            )
+            val navigator =
+                _navigatorProvider.getNavigator<Navigator<NavDestination>>(
+                    entryList.first().destination.navigatorName
+                )
             var lastNavigatedIndex = 0
             navigator.navigateInternal(entryList, navOptions, navigatorExtras) { entry ->
                 navigated = true
@@ -2182,13 +2107,14 @@
                 // pass all destinations between the last navigated entry and this one
                 // to ensure that any navigation graphs are properly restored as well
                 val entryIndex = entries.indexOf(entry)
-                val restoredEntries = if (entryIndex != -1) {
-                    entries.subList(lastNavigatedIndex, entryIndex + 1).also {
-                        lastNavigatedIndex = entryIndex + 1
+                val restoredEntries =
+                    if (entryIndex != -1) {
+                        entries.subList(lastNavigatedIndex, entryIndex + 1).also {
+                            lastNavigatedIndex = entryIndex + 1
+                        }
+                    } else {
+                        emptyList()
                     }
-                } else {
-                    emptyList()
-                }
                 addEntryToBackStack(entry.destination, args, entry, restoredEntries)
             }
         }
@@ -2201,13 +2127,9 @@
         val backStack = mutableListOf<NavBackStackEntry>()
         var currentDestination = backQueue.lastOrNull()?.destination ?: graph
         backStackState?.forEach { state ->
-            val node = currentDestination.findDestinationComprehensive(
-                state.destinationId, true
-            )
+            val node = currentDestination.findDestinationComprehensive(state.destinationId, true)
             checkNotNull(node) {
-                val dest = NavDestination.getDisplayName(
-                    context, state.destinationId
-                )
+                val dest = NavDestination.getDisplayName(context, state.destinationId)
                 "Restore State failed: destination $dest cannot be found from the current " +
                     "destination $currentDestination"
             }
@@ -2228,9 +2150,10 @@
             // We've successfully navigating to the new destination, which means
             // we should pop any FloatingWindow destination off the back stack
             // before updating the back stack with our new destination
-            while (!backQueue.isEmpty() &&
-                backQueue.last().destination is FloatingWindow &&
-                popBackStackInternal(backQueue.last().destination.id, true)
+            while (
+                !backQueue.isEmpty() &&
+                    backQueue.last().destination is FloatingWindow &&
+                    popBackStackInternal(backQueue.last().destination.id, true)
             ) {
                 // Keep popping
             }
@@ -2244,12 +2167,17 @@
             do {
                 val parent = destination!!.parent
                 if (parent != null) {
-                    val entry = restoredEntries.lastOrNull { restoredEntry ->
-                        restoredEntry.destination == parent
-                    } ?: NavBackStackEntry.create(
-                        context, parent,
-                        finalArgs, hostLifecycleState, viewModel
-                    )
+                    val entry =
+                        restoredEntries.lastOrNull { restoredEntry ->
+                            restoredEntry.destination == parent
+                        }
+                            ?: NavBackStackEntry.create(
+                                context,
+                                parent,
+                                finalArgs,
+                                hostLifecycleState,
+                                viewModel
+                            )
                     hierarchy.addFirst(entry)
                     // Pop any orphaned copy of that navigation graph off the back stack
                     if (backQueue.isNotEmpty() && backQueue.last().destination === parent) {
@@ -2269,24 +2197,28 @@
             val parent = destination.parent
             if (parent != null) {
                 val args = if (finalArgs?.isEmpty == true) null else finalArgs
-                val entry = restoredEntries.lastOrNull { restoredEntry ->
-                    restoredEntry.destination == parent
-                } ?: NavBackStackEntry.create(
-                    context, parent, parent.addInDefaultArgs(args), hostLifecycleState,
-                    viewModel
-                )
+                val entry =
+                    restoredEntries.lastOrNull { restoredEntry ->
+                        restoredEntry.destination == parent
+                    }
+                        ?: NavBackStackEntry.create(
+                            context,
+                            parent,
+                            parent.addInDefaultArgs(args),
+                            hostLifecycleState,
+                            viewModel
+                        )
                 hierarchy.addFirst(entry)
             }
             destination = parent
         }
         val overlappingDestination: NavDestination =
-            if (hierarchy.isEmpty())
-                newDest
-            else
-                hierarchy.first().destination
+            if (hierarchy.isEmpty()) newDest else hierarchy.first().destination
         // Pop any orphaned navigation graphs that don't connect to the new destinations
-        while (!backQueue.isEmpty() && backQueue.last().destination is NavGraph &&
-            (backQueue.last().destination as NavGraph).nodes[overlappingDestination.id] == null
+        while (
+            !backQueue.isEmpty() &&
+                backQueue.last().destination is NavGraph &&
+                (backQueue.last().destination as NavGraph).nodes[overlappingDestination.id] == null
         ) {
             popEntryFromBackStack(backQueue.last())
         }
@@ -2294,23 +2226,28 @@
         // The _graph should always be on the top of the back stack after you navigate()
         val firstEntry = backQueue.firstOrNull() ?: hierarchy.firstOrNull()
         if (firstEntry?.destination != _graph) {
-            val entry = restoredEntries.lastOrNull { restoredEntry ->
-                restoredEntry.destination == _graph!!
-            } ?: NavBackStackEntry.create(
-                context, _graph!!, _graph!!.addInDefaultArgs(finalArgs), hostLifecycleState,
-                viewModel
-            )
+            val entry =
+                restoredEntries.lastOrNull { restoredEntry ->
+                    restoredEntry.destination == _graph!!
+                }
+                    ?: NavBackStackEntry.create(
+                        context,
+                        _graph!!,
+                        _graph!!.addInDefaultArgs(finalArgs),
+                        hostLifecycleState,
+                        viewModel
+                    )
             hierarchy.addFirst(entry)
         }
 
         // Now add the parent hierarchy to the NavigatorStates and back stack
         hierarchy.forEach { entry ->
-            val navigator = _navigatorProvider.getNavigator<Navigator<*>>(
-                entry.destination.navigatorName
-            )
-            val navigatorBackStack = checkNotNull(navigatorState[navigator]) {
-                "NavigatorBackStack for ${node.navigatorName} should already be created"
-            }
+            val navigator =
+                _navigatorProvider.getNavigator<Navigator<*>>(entry.destination.navigatorName)
+            val navigatorBackStack =
+                checkNotNull(navigatorState[navigator]) {
+                    "NavigatorBackStack for ${node.navigatorName} should already be created"
+                }
             navigatorBackStack.addInternal(entry)
         }
         backQueue.addAll(hierarchy)
@@ -2369,7 +2306,6 @@
      *
      * @param route route for the destination
      * @param builder DSL for constructing a new [NavOptions]
-     *
      * @throws IllegalArgumentException if the given route is invalid
      */
     @MainThread
@@ -2387,7 +2323,6 @@
      * @param route route for the destination
      * @param navOptions special options for this navigation operation
      * @param navigatorExtras extras to pass to the [Navigator]
-     *
      * @throws IllegalArgumentException if the given route is invalid
      */
     @MainThread
@@ -2398,7 +2333,8 @@
         navigatorExtras: Navigator.Extras? = null
     ) {
         navigate(
-            NavDeepLinkRequest.Builder.fromUri(createRoute(route).toUri()).build(), navOptions,
+            NavDeepLinkRequest.Builder.fromUri(createRoute(route).toUri()).build(),
+            navOptions,
             navigatorExtras
         )
     }
@@ -2414,7 +2350,6 @@
      *
      * @param route route from an Object for the destination
      * @param builder DSL for constructing a new [NavOptions]
-     *
      * @throws IllegalArgumentException if the given route is invalid
      */
     @MainThread
@@ -2434,7 +2369,6 @@
      * @param route route from an Object for the destination
      * @param navOptions special options for this navigation operation
      * @param navigatorExtras extras to pass to the [Navigator]
-     *
      * @throws IllegalArgumentException if the given route is invalid
      */
     @MainThread
@@ -2446,7 +2380,8 @@
     ) {
         val finalRoute = generateRouteFilled(route)
         navigate(
-            NavDeepLinkRequest.Builder.fromUri(createRoute(finalRoute).toUri()).build(), navOptions,
+            NavDeepLinkRequest.Builder.fromUri(createRoute(finalRoute).toUri()).build(),
+            navOptions,
             navigatorExtras
         )
     }
@@ -2463,9 +2398,8 @@
     /**
      * Saves all navigation controller state to a Bundle.
      *
-     * State may be restored from a bundle returned from this method by calling
-     * [restoreState]. Saving controller state is the responsibility
-     * of a [NavHost].
+     * State may be restored from a bundle returned from this method by calling [restoreState].
+     * Saving controller state is the responsibility of a [NavHost].
      *
      * @return saved state for this controller
      */
@@ -2536,11 +2470,11 @@
     }
 
     /**
-     * Restores all navigation controller state from a bundle. This should be called before any
-     * call to [setGraph].
+     * Restores all navigation controller state from a bundle. This should be called before any call
+     * to [setGraph].
      *
-     * State may be saved to a bundle by calling [saveState].
-     * Restoring controller state is the responsibility of a [NavHost].
+     * State may be saved to a bundle by calling [saveState]. Restoring controller state is the
+     * responsibility of a [NavHost].
      *
      * @param navState state bundle to restore
      */
@@ -2557,21 +2491,18 @@
         val backStackDestIds = navState.getIntArray(KEY_BACK_STACK_DEST_IDS)
         val backStackIds = navState.getStringArrayList(KEY_BACK_STACK_IDS)
         if (backStackDestIds != null && backStackIds != null) {
-            backStackDestIds.forEachIndexed { index, id ->
-                backStackMap[id] = backStackIds[index]
-            }
+            backStackDestIds.forEachIndexed { index, id -> backStackMap[id] = backStackIds[index] }
         }
         val backStackStateIds = navState.getStringArrayList(KEY_BACK_STACK_STATES_IDS)
         backStackStateIds?.forEach { id ->
             val backStackState = navState.getParcelableArray(KEY_BACK_STACK_STATES_PREFIX + id)
             if (backStackState != null) {
-                backStackStates[id] = ArrayDeque<NavBackStackEntryState>(
-                    backStackState.size
-                ).apply {
-                    for (parcelable in backStackState) {
-                        add(parcelable as NavBackStackEntryState)
+                backStackStates[id] =
+                    ArrayDeque<NavBackStackEntryState>(backStackState.size).apply {
+                        for (parcelable in backStackState) {
+                            add(parcelable as NavBackStackEntryState)
+                        }
                     }
-                }
             }
         }
         deepLinkHandled = navState.getBoolean(KEY_DEEP_LINK_HANDLED)
@@ -2592,9 +2523,10 @@
         if (dispatcher == onBackPressedDispatcher) {
             return
         }
-        val lifecycleOwner = checkNotNull(lifecycleOwner) {
-            "You must call setLifecycleOwner() before calling setOnBackPressedDispatcher()"
-        }
+        val lifecycleOwner =
+            checkNotNull(lifecycleOwner) {
+                "You must call setLifecycleOwner() before calling setOnBackPressedDispatcher()"
+            }
         // Remove the callback from any previous dispatcher
         onBackPressedCallback.remove()
         // Then add it to the new dispatcher
@@ -2616,9 +2548,8 @@
     }
 
     private fun updateOnBackPressedCallbackEnabled() {
-        onBackPressedCallback.isEnabled = (
-            enableOnBackPressedCallback && destinationCountOnBackStack > 1
-            )
+        onBackPressedCallback.isEnabled =
+            (enableOnBackPressedCallback && destinationCountOnBackStack > 1)
     }
 
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -2632,13 +2563,12 @@
 
     /**
      * Gets the [ViewModelStoreOwner] for a NavGraph. This can be passed to
-     * [androidx.lifecycle.ViewModelProvider] to retrieve a ViewModel that is scoped
-     * to the navigation graph - it will be cleared when the navigation graph is popped off
-     * the back stack.
+     * [androidx.lifecycle.ViewModelProvider] to retrieve a ViewModel that is scoped to the
+     * navigation graph - it will be cleared when the navigation graph is popped off the back stack.
      *
      * @param navGraphId ID of a NavGraph that exists on the back stack
      * @throws IllegalStateException if called before the [NavHost] has called
-     * [NavHostController.setViewModelStore].
+     *   [NavHostController.setViewModelStore].
      * @throws IllegalArgumentException if the NavGraph is not on the back stack
      */
     public open fun getViewModelStoreOwner(@IdRes navGraphId: Int): ViewModelStoreOwner {
@@ -2656,16 +2586,15 @@
      * Gets the topmost [NavBackStackEntry] for a destination id.
      *
      * This is always safe to use with [the current destination][currentDestination] or
-     * [its parent][NavDestination.parent] or grandparent navigation graphs as these
-     * destinations are guaranteed to be on the back stack.
+     * [its parent][NavDestination.parent] or grandparent navigation graphs as these destinations
+     * are guaranteed to be on the back stack.
      *
      * @param destinationId ID of a destination that exists on the back stack
      * @throws IllegalArgumentException if the destination is not on the back stack
      */
     public open fun getBackStackEntry(@IdRes destinationId: Int): NavBackStackEntry {
-        val lastFromBackStack: NavBackStackEntry? = backQueue.lastOrNull { entry ->
-            entry.destination.id == destinationId
-        }
+        val lastFromBackStack: NavBackStackEntry? =
+            backQueue.lastOrNull { entry -> entry.destination.id == destinationId }
         requireNotNull(lastFromBackStack) {
             "No destination with ID $destinationId is on the NavController's back stack. The " +
                 "current destination is $currentDestination"
@@ -2677,17 +2606,16 @@
      * Gets the topmost [NavBackStackEntry] for a route.
      *
      * This is always safe to use with [the current destination][currentDestination] or
-     * [its parent][NavDestination.parent] or grandparent navigation graphs as these
-     * destinations are guaranteed to be on the back stack.
+     * [its parent][NavDestination.parent] or grandparent navigation graphs as these destinations
+     * are guaranteed to be on the back stack.
      *
      * @param route route of a destination that exists on the back stack. May contain filled in
-     * arguments as long as it is exact match with route used to navigate.
+     *   arguments as long as it is exact match with route used to navigate.
      * @throws IllegalArgumentException if the destination is not on the back stack
      */
     public fun getBackStackEntry(route: String): NavBackStackEntry {
-        val lastFromBackStack: NavBackStackEntry? = backQueue.lastOrNull { entry ->
-            entry.destination.hasRoute(route, entry.arguments)
-        }
+        val lastFromBackStack: NavBackStackEntry? =
+            backQueue.lastOrNull { entry -> entry.destination.hasRoute(route, entry.arguments) }
         requireNotNull(lastFromBackStack) {
             "No destination with route $route is on the NavController's back stack. The " +
                 "current destination is $currentDestination"
@@ -2699,11 +2627,11 @@
      * Gets the topmost [NavBackStackEntry] for a route from [KClass].
      *
      * This is always safe to use with [the current destination][currentDestination] or
-     * [its parent][NavDestination.parent] or grandparent navigation graphs as these
-     * destinations are guaranteed to be on the back stack.
+     * [its parent][NavDestination.parent] or grandparent navigation graphs as these destinations
+     * are guaranteed to be on the back stack.
      *
-     * @param T route from the [KClass] of a destination that exists on the back stack. The
-     * target NavBackStackEntry's [NavDestination] must have been created with route from [KClass].
+     * @param T route from the [KClass] of a destination that exists on the back stack. The target
+     *   NavBackStackEntry's [NavDestination] must have been created with route from [KClass].
      * @throws IllegalArgumentException if the destination is not on the back stack
      */
     public inline fun <reified T : Any> getBackStackEntry(): NavBackStackEntry {
@@ -2712,9 +2640,8 @@
             "Destination with route ${T::class.simpleName} cannot be found in navigation " +
                 "graph $graph"
         }
-        val lastFromBackStack = currentBackStack.value.lastOrNull { entry ->
-            entry.destination.id == id
-        }
+        val lastFromBackStack =
+            currentBackStack.value.lastOrNull { entry -> entry.destination.id == id }
         requireNotNull(lastFromBackStack) {
             "No destination with route ${T::class.simpleName} is on the NavController's " +
                 "back stack. The current destination is $currentDestination"
@@ -2726,11 +2653,11 @@
      * Gets the topmost [NavBackStackEntry] for a route from an Object.
      *
      * This is always safe to use with [the current destination][currentDestination] or
-     * [its parent][NavDestination.parent] or grandparent navigation graphs as these
-     * destinations are guaranteed to be on the back stack.
+     * [its parent][NavDestination.parent] or grandparent navigation graphs as these destinations
+     * are guaranteed to be on the back stack.
      *
-     * @param route route from an Object of a destination that exists on the back stack. The
-     * target NavBackStackEntry's [NavDestination] must have been created with route from [KClass].
+     * @param route route from an Object of a destination that exists on the back stack. The target
+     *   NavBackStackEntry's [NavDestination] must have been created with route from [KClass].
      * @throws IllegalArgumentException if the destination is not on the back stack
      */
     public fun <T : Any> getBackStackEntry(route: T): NavBackStackEntry {
@@ -2763,8 +2690,8 @@
      *
      * This skips over any [NavBackStackEntry] that is associated with a [NavGraph].
      *
-     * @return the previous visible entry on the back stack or null if the back stack has less
-     * than two visible entries
+     * @return the previous visible entry on the back stack or null if the back stack has less than
+     *   two visible entries
      */
     public open val previousBackStackEntry: NavBackStackEntry?
         get() {
@@ -2773,9 +2700,7 @@
             if (iterator.hasNext()) {
                 iterator.next()
             }
-            return iterator.asSequence().firstOrNull { entry ->
-                entry.destination !is NavGraph
-            }
+            return iterator.asSequence().firstOrNull { entry -> entry.destination !is NavGraph }
         }
 
     public companion object {
@@ -2786,8 +2711,7 @@
         private const val KEY_BACK_STACK = "android-support-nav:controller:backStack"
         private const val KEY_BACK_STACK_DEST_IDS =
             "android-support-nav:controller:backStackDestIds"
-        private const val KEY_BACK_STACK_IDS =
-            "android-support-nav:controller:backStackIds"
+        private const val KEY_BACK_STACK_IDS = "android-support-nav:controller:backStackIds"
         private const val KEY_BACK_STACK_STATES_IDS =
             "android-support-nav:controller:backStackStates"
         private const val KEY_BACK_STACK_STATES_PREFIX =
@@ -2804,9 +2728,7 @@
         public const val KEY_DEEP_LINK_HANDLED: String =
             "android-support-nav:controller:deepLinkHandled"
 
-        /**
-         * The [Intent] that triggered a deep link to the current destination.
-         */
+        /** The [Intent] that triggered a deep link to the current destination. */
         public const val KEY_DEEP_LINK_INTENT: String =
             "android-support-nav:controller:deepLinkIntent"
 
@@ -2814,9 +2736,9 @@
 
         /**
          * By default, [handleDeepLink] will automatically add calls to
-         * [NavOptions.Builder.setPopUpTo] with a `saveState` of `true` when the deep
-         * link takes you to another graph (e.g., a different navigation graph than the
-         * one your start destination is in).
+         * [NavOptions.Builder.setPopUpTo] with a `saveState` of `true` when the deep link takes you
+         * to another graph (e.g., a different navigation graph than the one your start destination
+         * is in).
          *
          * You can disable this behavior by passing `false` for [saveState].
          */
@@ -2866,10 +2788,10 @@
  * Construct a new [NavGraph]
  *
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavController.createGraph(
@@ -2883,10 +2805,10 @@
  * Construct a new [NavGraph]
  *
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavController.createGraph(
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavControllerViewModel.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavControllerViewModel.kt
index 3224871..3bf56b3 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavControllerViewModel.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavControllerViewModel.kt
@@ -21,8 +21,8 @@
 import androidx.lifecycle.get
 
 /**
- * NavControllerViewModel is the always up to date view of the NavController's
- * non configuration state
+ * NavControllerViewModel is the always up to date view of the NavController's non configuration
+ * state
  */
 internal class NavControllerViewModel : ViewModel(), NavViewModelStoreProvider {
     private val viewModelStores = mutableMapOf<String, ViewModelStore>()
@@ -65,12 +65,13 @@
     }
 
     companion object {
-        private val FACTORY: ViewModelProvider.Factory = object : ViewModelProvider.Factory {
-            @Suppress("UNCHECKED_CAST")
-            override fun <T : ViewModel> create(modelClass: Class<T>): T {
-                return NavControllerViewModel() as T
+        private val FACTORY: ViewModelProvider.Factory =
+            object : ViewModelProvider.Factory {
+                @Suppress("UNCHECKED_CAST")
+                override fun <T : ViewModel> create(modelClass: Class<T>): T {
+                    return NavControllerViewModel() as T
+                }
             }
-        }
 
         @JvmStatic
         fun getInstance(viewModelStore: ViewModelStore): NavControllerViewModel {
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkBuilder.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkBuilder.kt
index 2b624ea..fec16b1 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkBuilder.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkBuilder.kt
@@ -30,48 +30,41 @@
  * Class used to construct deep links to a particular destination in a [NavGraph].
  *
  * When this deep link is triggered:
+ * 1. The task is cleared.
+ * 2. The destination and all of its parents will be on the back stack.
+ * 3. Calling [NavController.navigateUp] will navigate to the parent of the destination.
  *
- *  1. The task is cleared.
- *  2. The destination and all of its parents will be on the back stack.
- *  3. Calling [NavController.navigateUp] will navigate to the parent of the
- * destination.
+ * The parent of the destination is the [start destination][NavGraph.getStartDestination] of the
+ * containing [navigation graph][NavGraph]. In the cases where the destination is the start
+ * destination of its containing navigation graph, the start destination of its grandparent is used.
  *
- * The parent of the destination is the [start destination][NavGraph.getStartDestination]
- * of the containing [navigation graph][NavGraph]. In the cases where the destination is
- * the start destination of its containing navigation graph, the start destination of its
- * grandparent is used.
- *
- * You can construct an instance directly with [NavDeepLinkBuilder] or build one
- * using an existing [NavController] via [NavController.createDeepLink].
+ * You can construct an instance directly with [NavDeepLinkBuilder] or build one using an existing
+ * [NavController] via [NavController.createDeepLink].
  *
  * If the context passed in here is not an [Activity], this method will use
- * [android.content.pm.PackageManager.getLaunchIntentForPackage] as the
- * default activity to launch, if available.
+ * [android.content.pm.PackageManager.getLaunchIntentForPackage] as the default activity to launch,
+ * if available.
  *
  * @param context Context used to create deep links
  * @see NavDeepLinkBuilder.setComponentName
  */
 public class NavDeepLinkBuilder(private val context: Context) {
-    private class DeepLinkDestination constructor(
-        val destinationId: Int,
-        val arguments: Bundle?
-    )
+    private class DeepLinkDestination constructor(val destinationId: Int, val arguments: Bundle?)
 
-    private val intent: Intent = if (context is Activity) {
-        Intent(context, context.javaClass)
-    } else {
-        val launchIntent = context.packageManager.getLaunchIntentForPackage(context.packageName)
-        launchIntent ?: Intent()
-    }.also {
-        it.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
-    }
+    private val intent: Intent =
+        if (context is Activity) {
+                Intent(context, context.javaClass)
+            } else {
+                val launchIntent =
+                    context.packageManager.getLaunchIntentForPackage(context.packageName)
+                launchIntent ?: Intent()
+            }
+            .also { it.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK) }
     private var graph: NavGraph? = null
     private val destinations = mutableListOf<DeepLinkDestination>()
     private var globalArgs: Bundle? = null
 
-    /**
-     * @see NavController.createDeepLink
-     */
+    /** @see NavController.createDeepLink */
     internal constructor(navController: NavController) : this(navController.context) {
         graph = navController.graph
     }
@@ -79,9 +72,8 @@
     /**
      * Sets an explicit Activity to be started by the deep link created by this class.
      *
-     * @param activityClass The Activity to start. This Activity should have a [NavController]
-     * which uses the same [NavGraph] used to construct this
-     * deep link.
+     * @param activityClass The Activity to start. This Activity should have a [NavController] which
+     *   uses the same [NavGraph] used to construct this deep link.
      * @return this object for chaining
      */
     public fun setComponentName(activityClass: Class<out Activity?>): NavDeepLinkBuilder {
@@ -91,9 +83,8 @@
     /**
      * Sets an explicit Activity to be started by the deep link created by this class.
      *
-     * @param componentName The Activity to start. This Activity should have a [NavController]
-     *                      which uses the same [NavGraph] used to construct this
-     *                      deep link.
+     * @param componentName The Activity to start. This Activity should have a [NavController] which
+     *   uses the same [NavGraph] used to construct this deep link.
      * @return this object for chaining
      */
     public fun setComponentName(componentName: ComponentName): NavDeepLinkBuilder {
@@ -114,9 +105,8 @@
     /**
      * Sets the graph that contains the [deep link destination][setDestination].
      *
-     * If you do not have access to a [NavController], you can create a
-     * [NavigatorProvider] and use that to programmatically construct a navigation
-     * graph or use [NavInflater][NavInflater].
+     * If you do not have access to a [NavController], you can create a [NavigatorProvider] and use
+     * that to programmatically construct a navigation graph or use [NavInflater][NavInflater].
      *
      * @param navGraph The [NavGraph] containing the deep link destination
      * @return this object for chaining
@@ -128,13 +118,12 @@
     }
 
     /**
-     * Sets the destination id to deep link to. Any destinations previous added via
-     * [addDestination] are cleared, effectively resetting this object
-     * back to only this single destination.
+     * Sets the destination id to deep link to. Any destinations previous added via [addDestination]
+     * are cleared, effectively resetting this object back to only this single destination.
      *
      * @param destId destination ID to deep link to.
-     * @param args Arguments to pass to this destination and any synthetic back stack created
-     * due to this destination being added.
+     * @param args Arguments to pass to this destination and any synthetic back stack created due to
+     *   this destination being added.
      * @return this object for chaining
      */
     @JvmOverloads
@@ -149,12 +138,12 @@
 
     /**
      * Sets the destination route to deep link to. Any destinations previous added via
-     * [.addDestination] are cleared, effectively resetting this object
-     * back to only this single destination.
+     * [.addDestination] are cleared, effectively resetting this object back to only this single
+     * destination.
      *
      * @param destRoute destination route to deep link to.
-     * @param args Arguments to pass to this destination and any synthetic back stack created
-     * due to this destination being added.
+     * @param args Arguments to pass to this destination and any synthetic back stack created due to
+     *   this destination being added.
      * @return this object for chaining
      */
     @JvmOverloads
@@ -169,18 +158,18 @@
 
     /**
      * Add a new destination id to deep link to. This builds off any previous calls to this method
-     * or calls to [setDestination], building the minimal synthetic back stack of
-     * start destinations between the previous deep link destination and the newly added
-     * deep link destination.
+     * or calls to [setDestination], building the minimal synthetic back stack of start destinations
+     * between the previous deep link destination and the newly added deep link destination.
      *
      * This means that if R.navigation.nav_graph has startDestination= R.id.start_destination,
-     *
      * ```
      * navDeepLinkBuilder
      *    .setGraph(R.navigation.nav_graph)
      *    .addDestination(R.id.second_destination, null)
      * ```
+     *
      * is equivalent to
+     *
      * ```
      * navDeepLinkBuilder
      *    .setGraph(R.navigation.nav_graph)
@@ -191,8 +180,8 @@
      * Use the second form to assign specific arguments to the start destination.
      *
      * @param destId destination ID to deep link to.
-     * @param args Arguments to pass to this destination and any synthetic back stack created
-     * due to this destination being added.
+     * @param args Arguments to pass to this destination and any synthetic back stack created due to
+     *   this destination being added.
      * @return this object for chaining
      */
     @JvmOverloads
@@ -206,13 +195,13 @@
 
     /**
      * Add a new destination route to deep link to. This builds off any previous calls to this
-     * method or calls to [.setDestination], building the minimal synthetic back stack of
-     * start destinations between the previous deep link destination and the newly added
-     * deep link destination.
+     * method or calls to [.setDestination], building the minimal synthetic back stack of start
+     * destinations between the previous deep link destination and the newly added deep link
+     * destination.
      *
      * @param route destination route to deep link to.
-     * @param args Arguments to pass to this destination and any synthetic back stack created
-     * due to this destination being added.
+     * @param args Arguments to pass to this destination and any synthetic back stack created due to
+     *   this destination being added.
      * @return this object for chaining
      */
     @JvmOverloads
@@ -280,6 +269,7 @@
 
     /**
      * Set optional arguments to send onto every destination created by this deep link.
+     *
      * @param args arguments to pass to each destination
      * @return this object for chaining
      */
@@ -293,18 +283,16 @@
      * Construct the full [task stack][TaskStackBuilder] needed to deep link to the given
      * destination.
      *
-     * You must have [set a NavGraph][setGraph] and [set a destination][setDestination]
-     * before calling this method.
+     * You must have [set a NavGraph][setGraph] and [set a destination][setDestination] before
+     * calling this method.
      *
      * @return a [TaskStackBuilder] which can be used to
-     * [send the deep link][TaskStackBuilder.startActivities] or
-     * [create a PendingIntent][TaskStackBuilder.getPendingIntent] to deep link to
-     * the given destination.
+     *   [send the deep link][TaskStackBuilder.startActivities] or
+     *   [create a PendingIntent][TaskStackBuilder.getPendingIntent] to deep link to the given
+     *   destination.
      */
     public fun createTaskStackBuilder(): TaskStackBuilder {
-        checkNotNull(graph) {
-            "You must call setGraph() before constructing the deep link"
-        }
+        checkNotNull(graph) { "You must call setGraph() before constructing the deep link" }
         check(destinations.isNotEmpty()) {
             "You must call setDestination() or addDestination() before constructing the deep link"
         }
@@ -312,12 +300,13 @@
         // We create a copy of the Intent to ensure the Intent does not have itself
         // as an extra. This also prevents developers from modifying the internal Intent
         // via taskStackBuilder.editIntentAt()
-        val taskStackBuilder = TaskStackBuilder.create(context)
-            .addNextIntentWithParentStack(Intent(intent))
+        val taskStackBuilder =
+            TaskStackBuilder.create(context).addNextIntentWithParentStack(Intent(intent))
         for (index in 0 until taskStackBuilder.intentCount) {
             // Attach the original Intent to each Activity so that they can know
             // they were constructed in response to a deep link
-            taskStackBuilder.editIntentAt(index)
+            taskStackBuilder
+                .editIntentAt(index)
                 ?.putExtra(NavController.KEY_DEEP_LINK_INTENT, intent)
         }
         return taskStackBuilder
@@ -328,11 +317,11 @@
      *
      * This constructs the entire [task stack][createTaskStackBuilder] needed.
      *
-     * You must have [set a NavGraph][setGraph] and [set a destination][setDestination]
-     * before calling this method.
+     * You must have [set a NavGraph][setGraph] and [set a destination][setDestination] before
+     * calling this method.
      *
-     * @return a PendingIntent constructed with [TaskStackBuilder.getPendingIntent] to deep link
-     * to the given destination
+     * @return a PendingIntent constructed with [TaskStackBuilder.getPendingIntent] to deep link to
+     *   the given destination
      */
     @Suppress("DEPRECATION")
     public fun createPendingIntent(): PendingIntent {
@@ -354,21 +343,19 @@
                 }
             }
         }
-        return createTaskStackBuilder().getPendingIntent(
-            requestCode,
-            PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
-        )!!
+        return createTaskStackBuilder()
+            .getPendingIntent(
+                requestCode,
+                PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
+            )!!
     }
 
     /**
-     * A [NavigatorProvider] that only parses the basics: [navigation graphs][NavGraph]
-     * and [destinations][NavDestination], effectively only getting the base destination
-     * information.
+     * A [NavigatorProvider] that only parses the basics: [navigation graphs][NavGraph] and
+     * [destinations][NavDestination], effectively only getting the base destination information.
      */
     private class PermissiveNavigatorProvider : NavigatorProvider() {
-        /**
-         * A Navigator that only parses the [NavDestination] attributes.
-         */
+        /** A Navigator that only parses the [NavDestination] attributes. */
         private val mDestNavigator: Navigator<NavDestination> =
             object : Navigator<NavDestination>() {
                 override fun createDestination(): NavDestination {
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkSaveStateControl.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkSaveStateControl.kt
index 15341ca..469b038 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkSaveStateControl.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavDeepLinkSaveStateControl.kt
@@ -16,9 +16,7 @@
 
 package androidx.navigation
 
-/**
- * @see NavController.enableDeepLinkSaveState
- */
+/** @see NavController.enableDeepLinkSaveState */
 @Retention(AnnotationRetention.BINARY)
 @Target(AnnotationTarget.FUNCTION)
 @RequiresOptIn(level = RequiresOptIn.Level.WARNING)
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHost.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHost.kt
index 04f22d2..30024a2 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHost.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHost.kt
@@ -24,37 +24,30 @@
  * A host is a single context or container for navigation via a [NavController].
  *
  * It is strongly recommended to construct the nav controller by instantiating a
- * [NavHostController], which offers additional APIs specifically for a NavHost.
- * The NavHostController should still only be externally accessible as a [NavController],
- * rather than directly exposing it as a [NavHostController].
+ * [NavHostController], which offers additional APIs specifically for a NavHost. The
+ * NavHostController should still only be externally accessible as a [NavController], rather than
+ * directly exposing it as a [NavHostController].
  *
  * Navigation hosts must:
- *
- *  * Handle [saving][NavController.saveState] and
- * [restoring][NavController.restoreState] their controller's state
- *  * Call [Navigation.setViewNavController] on their root view
- *  * Route system Back button events to the NavController either by manually calling
- * [NavController.popBackStack] or by calling
- * [NavHostController.setOnBackPressedDispatcher]
- * when constructing the NavController.
+ * * Handle [saving][NavController.saveState] and [restoring][NavController.restoreState] their
+ *   controller's state
+ * * Call [Navigation.setViewNavController] on their root view
+ * * Route system Back button events to the NavController either by manually calling
+ *   [NavController.popBackStack] or by calling [NavHostController.setOnBackPressedDispatcher] when
+ *   constructing the NavController.
  *
  * Optionally, a navigation host should consider calling:
- *
- *  * Call [NavHostController.setLifecycleOwner] to associate the
- * NavController with a specific Lifecycle.
- *  * Call [NavHostController.setViewModelStore] to enable usage of
- * [NavController.getViewModelStoreOwner] and navigation graph scoped ViewModels.
+ * * Call [NavHostController.setLifecycleOwner] to associate the NavController with a specific
+ *   Lifecycle.
+ * * Call [NavHostController.setViewModelStore] to enable usage of
+ *   [NavController.getViewModelStoreOwner] and navigation graph scoped ViewModels.
  */
 public interface NavHost {
-    /**
-     * The [navigation controller][NavController] for this navigation host.
-     */
+    /** The [navigation controller][NavController] for this navigation host. */
     public val navController: NavController
 }
 
-/**
- * Construct a new [NavGraph]
- */
+/** Construct a new [NavGraph] */
 @Suppress("Deprecation")
 @Deprecated(
     "Use routes to create your NavGraph instead",
@@ -69,9 +62,7 @@
     builder: NavGraphBuilder.() -> Unit
 ): NavGraph = navController.createGraph(id, startDestination, builder)
 
-/**
- * Construct a new [NavGraph]
- */
+/** Construct a new [NavGraph] */
 public inline fun NavHost.createGraph(
     startDestination: String,
     route: String? = null,
@@ -82,10 +73,10 @@
  * Construct a new [NavGraph]
  *
  * @param startDestination the starting destination's route from a [KClass] for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavHost.createGraph(
@@ -99,10 +90,10 @@
  * Construct a new [NavGraph]
  *
  * @param startDestination the starting destination's route from an Object for this NavGraph. The
- * respective NavDestination must be added as a [KClass] in order to match.
+ *   respective NavDestination must be added as a [KClass] in order to match.
  * @param route the graph's unique route from a [KClass]
  * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
- * does not use custom NavTypes.
+ *   does not use custom NavTypes.
  * @param builder the builder used to construct the graph
  */
 public inline fun NavHost.createGraph(
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHostController.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHostController.kt
index e511cfc..25b1771 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHostController.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavHostController.kt
@@ -21,25 +21,24 @@
 import androidx.lifecycle.ViewModelStore
 
 /**
- * Subclass of [NavController] that offers additional APIs for use by a
- * [NavHost] to connect the NavController to external dependencies.
+ * Subclass of [NavController] that offers additional APIs for use by a [NavHost] to connect the
+ * NavController to external dependencies.
  *
- * Apps should generally not construct controllers, instead obtain a relevant controller
- * directly from a navigation host via [NavHost.getNavController] or by using one of
- * the utility methods on the [Navigation] class.
+ * Apps should generally not construct controllers, instead obtain a relevant controller directly
+ * from a navigation host via [NavHost.getNavController] or by using one of the utility methods on
+ * the [Navigation] class.
  */
 public open class NavHostController
 /**
- * Construct a new controller for a given [Context] suitable for use in a
- * [NavHost]. Controllers should not be used outside of their context and retain a
- * hard reference to the context supplied. If you need a global controller, pass
- * [Context.getApplicationContext].
+ * Construct a new controller for a given [Context] suitable for use in a [NavHost]. Controllers
+ * should not be used outside of their context and retain a hard reference to the context supplied.
+ * If you need a global controller, pass [Context.getApplicationContext].
  *
- * Note that controllers that are not constructed with an [Activity] context
- * (or a wrapped activity context) will only be able to navigate to
+ * Note that controllers that are not constructed with an [Activity] context (or a wrapped activity
+ * context) will only be able to navigate to
  * [new tasks][android.content.Intent.FLAG_ACTIVITY_NEW_TASK] or
- * [new document tasks][android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT] when
- * navigating to new activities.
+ * [new document tasks][android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT] when navigating to new
+ * activities.
  *
  * @param context context for this controller
  */
@@ -55,20 +54,18 @@
     }
 
     /**
-     * Sets the host's [OnBackPressedDispatcher]. If set, NavController will
-     * register a [onBackPressedCallback] to handle system Back button events.
+     * Sets the host's [OnBackPressedDispatcher]. If set, NavController will register a
+     * [onBackPressedCallback] to handle system Back button events.
      *
-     * You must explicitly called [setLifecycleOwner] before calling this
-     * method as the owner set there will be used as the [LifecycleOwner] for registering
-     * the [onBackPressedCallback].
+     * You must explicitly called [setLifecycleOwner] before calling this method as the owner set
+     * there will be used as the [LifecycleOwner] for registering the [onBackPressedCallback].
      *
-     * You can dynamically enable and disable whether the NavController should handle the
-     * system Back button events by calling [enableOnBackPressed].
+     * You can dynamically enable and disable whether the NavController should handle the system
+     * Back button events by calling [enableOnBackPressed].
      *
-     * @param dispatcher The [OnBackPressedDispatcher] associated with the containing
-     * [NavHost].
-     * @throws IllegalStateException if you have not called
-     * [setLifecycleOwner] before calling this method.
+     * @param dispatcher The [OnBackPressedDispatcher] associated with the containing [NavHost].
+     * @throws IllegalStateException if you have not called [setLifecycleOwner] before calling this
+     *   method.
      * @see NavHostController.setLifecycleOwner
      */
     public final override fun setOnBackPressedDispatcher(dispatcher: OnBackPressedDispatcher) {
@@ -76,8 +73,8 @@
     }
 
     /**
-     * Set whether the NavController should handle the system Back button events via the
-     * registered [OnBackPressedDispatcher].
+     * Set whether the NavController should handle the system Back button events via the registered
+     * [OnBackPressedDispatcher].
      *
      * @param enabled True if the NavController should handle system Back button events.
      */
@@ -87,15 +84,15 @@
 
     /**
      * Sets the host's ViewModelStore used by the NavController to store ViewModels at the
-     * navigation graph level. This is required to call [getViewModelStoreOwner] and
-     * should generally be called for you by your [NavHost].
+     * navigation graph level. This is required to call [getViewModelStoreOwner] and should
+     * generally be called for you by your [NavHost].
      *
-     * You must call this method before [setGraph] or similar methods, because the
-     * [ViewModelStore] set here will be used by the created [NavBackStackEntry] items.
+     * You must call this method before [setGraph] or similar methods, because the [ViewModelStore]
+     * set here will be used by the created [NavBackStackEntry] items.
      *
      * @param viewModelStore ViewModelStore used to store ViewModels at the navigation graph level
      * @throws IllegalStateException if this method is called when graph was already set via
-     * [setGraph] or similar methods.
+     *   [setGraph] or similar methods.
      */
     public final override fun setViewModelStore(viewModelStore: ViewModelStore) {
         super.setViewModelStore(viewModelStore)
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavInflater.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavInflater.kt
index 23fa625..f8e46da 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/NavInflater.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/NavInflater.kt
@@ -33,9 +33,7 @@
 import org.xmlpull.v1.XmlPullParser
 import org.xmlpull.v1.XmlPullParserException
 
-/**
- * Class which translates a navigation XML file into a [NavGraph]
- */
+/** Class which translates a navigation XML file into a [NavGraph] */
 public class NavInflater(
     private val context: Context,
     private val navigatorProvider: NavigatorProvider
@@ -53,9 +51,11 @@
         val attrs = Xml.asAttributeSet(parser)
         return try {
             var type: Int
-            while (parser.next().also { type = it } != XmlPullParser.START_TAG &&
-                type != XmlPullParser.END_DOCUMENT
-            ) { /* Empty loop */
+            while (
+                parser.next().also { type = it } != XmlPullParser.START_TAG &&
+                    type != XmlPullParser.END_DOCUMENT
+            ) {
+                /* Empty loop */
             }
             if (type != XmlPullParser.START_TAG) {
                 throw XmlPullParserException("No start tag found")
@@ -89,8 +89,9 @@
         val innerDepth = parser.depth + 1
         var type: Int
         var depth = 0
-        while (parser.next().also { type = it } != XmlPullParser.END_DOCUMENT &&
-            (parser.depth.also { depth = it } >= innerDepth || type != XmlPullParser.END_TAG)
+        while (
+            parser.next().also { type = it } != XmlPullParser.END_DOCUMENT &&
+                (parser.depth.also { depth = it } >= innerDepth || type != XmlPullParser.END_TAG)
         ) {
             if (type != XmlPullParser.START_TAG) {
                 continue
@@ -125,8 +126,9 @@
         graphResId: Int
     ) {
         res.obtainAttributes(attrs, R.styleable.NavArgument).use { array ->
-            val name = array.getString(R.styleable.NavArgument_android_name)
-                ?: throw XmlPullParserException("Arguments must have a name")
+            val name =
+                array.getString(R.styleable.NavArgument_android_name)
+                    ?: throw XmlPullParserException("Arguments must have a name")
             val argument = inflateArgument(array, res, graphResId)
             dest.addArgument(name, argument)
         }
@@ -140,8 +142,9 @@
         graphResId: Int
     ) {
         res.obtainAttributes(attrs, R.styleable.NavArgument).use { array ->
-            val name = array.getString(R.styleable.NavArgument_android_name)
-                ?: throw XmlPullParserException("Arguments must have a name")
+            val name =
+                array.getString(R.styleable.NavArgument_android_name)
+                    ?: throw XmlPullParserException("Arguments must have a name")
             val argument = inflateArgument(array, res, graphResId)
             if (argument.isDefaultValuePresent) {
                 argument.putDefaultValue(name, bundle)
@@ -166,17 +169,18 @@
         }
         if (a.getValue(R.styleable.NavArgument_android_defaultValue, value)) {
             if (navType === NavType.ReferenceType) {
-                defaultValue = if (value.resourceId != 0) {
-                    value.resourceId
-                } else if (value.type == TypedValue.TYPE_FIRST_INT && value.data == 0) {
-                    // Support "0" as a default value for reference types
-                    0
-                } else {
-                    throw XmlPullParserException(
-                        "unsupported value '${value.string}' for ${navType.name}. Must be a " +
-                            "reference to a resource."
-                    )
-                }
+                defaultValue =
+                    if (value.resourceId != 0) {
+                        value.resourceId
+                    } else if (value.type == TypedValue.TYPE_FIRST_INT && value.data == 0) {
+                        // Support "0" as a default value for reference types
+                        0
+                    } else {
+                        throw XmlPullParserException(
+                            "unsupported value '${value.string}' for ${navType.name}. Must be a " +
+                                "reference to a resource."
+                        )
+                    }
             } else if (value.resourceId != 0) {
                 if (navType == null) {
                     navType = NavType.ReferenceType
@@ -199,9 +203,8 @@
                         defaultValue = navType.parseValue(stringValue)
                     }
                     TypedValue.TYPE_DIMENSION -> {
-                        navType = checkNavType(
-                            value, navType, NavType.IntType, argType, "dimension"
-                        )
+                        navType =
+                            checkNavType(value, navType, NavType.IntType, argType, "dimension")
                         defaultValue = value.getDimension(res.displayMetrics).toInt()
                     }
                     TypedValue.TYPE_FLOAT -> {
@@ -213,18 +216,29 @@
                         defaultValue = value.data != 0
                     }
                     else ->
-                        if (value.type >= TypedValue.TYPE_FIRST_INT &&
-                            value.type <= TypedValue.TYPE_LAST_INT
+                        if (
+                            value.type >= TypedValue.TYPE_FIRST_INT &&
+                                value.type <= TypedValue.TYPE_LAST_INT
                         ) {
                             if (navType === NavType.FloatType) {
-                                navType = checkNavType(
-                                    value, navType, NavType.FloatType, argType, "float"
-                                )
+                                navType =
+                                    checkNavType(
+                                        value,
+                                        navType,
+                                        NavType.FloatType,
+                                        argType,
+                                        "float"
+                                    )
                                 defaultValue = value.data.toFloat()
                             } else {
-                                navType = checkNavType(
-                                    value, navType, NavType.IntType, argType, "integer"
-                                )
+                                navType =
+                                    checkNavType(
+                                        value,
+                                        navType,
+                                        NavType.IntType,
+                                        argType,
+                                        "integer"
+                                    )
                                 defaultValue = value.data
                             }
                         } else {
@@ -263,10 +277,7 @@
             }
             if (mimeType != null) {
                 builder.setMimeType(
-                    mimeType.replace(
-                        APPLICATION_ID_PLACEHOLDER,
-                        context.packageName
-                    )
+                    mimeType.replace(APPLICATION_ID_PLACEHOLDER, context.packageName)
                 )
             }
             dest.addDeepLink(builder.build())
@@ -302,8 +313,10 @@
             val innerDepth = parser.depth + 1
             var type: Int
             var depth = 0
-            while (parser.next().also { type = it } != XmlPullParser.END_DOCUMENT &&
-                (parser.depth.also { depth = it } >= innerDepth || type != XmlPullParser.END_TAG)
+            while (
+                parser.next().also { type = it } != XmlPullParser.END_DOCUMENT &&
+                    (parser.depth.also { depth = it } >= innerDepth ||
+                        type != XmlPullParser.END_TAG)
             ) {
                 if (type != XmlPullParser.START_TAG) {
                     continue
@@ -329,11 +342,11 @@
         private const val TAG_ACTION = "action"
         private const val TAG_INCLUDE = "include"
 
-        /**
-         */
+        /**  */
         @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
         public const val APPLICATION_ID_PLACEHOLDER: String = "\${applicationId}"
         private val sTmpValue = ThreadLocal<TypedValue>()
+
         @Throws(XmlPullParserException::class)
         internal fun checkNavType(
             value: TypedValue,
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/Navigation.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/Navigation.kt
index 09b284a..4597770 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/Navigation.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/Navigation.kt
@@ -25,23 +25,22 @@
 /**
  * Entry point for navigation operations.
  *
- * This class provides utilities for finding a relevant [NavController] instance from
- * various common places in your application, or for performing navigation in response to
- * UI events.
+ * This class provides utilities for finding a relevant [NavController] instance from various common
+ * places in your application, or for performing navigation in response to UI events.
  */
 public object Navigation {
     /**
-     * Find a [NavController] given the id of a View and its containing
-     * [Activity]. This is a convenience wrapper around [findNavController].
+     * Find a [NavController] given the id of a View and its containing [Activity]. This is a
+     * convenience wrapper around [findNavController].
      *
-     * This method will locate the [NavController] associated with this view.
-     * This is automatically populated for the id of a [NavHost] and its children.
+     * This method will locate the [NavController] associated with this view. This is automatically
+     * populated for the id of a [NavHost] and its children.
      *
      * @param activity The Activity hosting the view
      * @param viewId The id of the view to search from
      * @return the [NavController] associated with the view referenced by id
-     * @throws IllegalStateException if the given viewId does not correspond with a
-     * [NavHost] or is not within a NavHost.
+     * @throws IllegalStateException if the given viewId does not correspond with a [NavHost] or is
+     *   not within a NavHost.
      */
     @JvmStatic
     public fun findNavController(activity: Activity, @IdRes viewId: Int): NavController {
@@ -55,15 +54,14 @@
     /**
      * Find a [NavController] given a local [View].
      *
-     * This method will locate the [NavController] associated with this view.
-     * This is automatically populated for views that are managed by a [NavHost]
-     * and is intended for use by various [listener][android.view.View.OnClickListener]
-     * interfaces.
+     * This method will locate the [NavController] associated with this view. This is automatically
+     * populated for views that are managed by a [NavHost] and is intended for use by various
+     * [listener][android.view.View.OnClickListener] interfaces.
      *
      * @param view the view to search from
      * @return the locally scoped [NavController] to the given view
-     * @throws IllegalStateException if the given view does not correspond with a
-     * [NavHost] or is not within a NavHost.
+     * @throws IllegalStateException if the given view does not correspond with a [NavHost] or is
+     *   not within a NavHost.
      */
     @JvmStatic
     public fun findNavController(view: View): NavController {
@@ -72,12 +70,12 @@
     }
 
     /**
-     * Create an [android.view.View.OnClickListener] for navigating
-     * to a destination. This supports both navigating via an
-     * [action][NavDestination.getAction] and directly navigating to a destination.
+     * Create an [android.view.View.OnClickListener] for navigating to a destination. This supports
+     * both navigating via an [action][NavDestination.getAction] and directly navigating to a
+     * destination.
      *
-     * @param resId an [action][NavDestination.getAction] id or a destination id to
-     * navigate to when the view is clicked
+     * @param resId an [action][NavDestination.getAction] id or a destination id to navigate to when
+     *   the view is clicked
      * @param args arguments to pass to the final destination
      * @return a new click listener for setting on an arbitrary view
      */
@@ -91,8 +89,8 @@
     }
 
     /**
-     * Create an [android.view.View.OnClickListener] for navigating
-     * to a destination via a generated [NavDirections].
+     * Create an [android.view.View.OnClickListener] for navigating to a destination via a generated
+     * [NavDirections].
      *
      * @param directions directions that describe this navigation operation
      * @return a new click listener for setting on an arbitrary view
@@ -104,13 +102,13 @@
 
     /**
      * Associates a NavController with the given View, allowing developers to use
-     * [findNavController] and [findNavController] with that
-     * View or any of its children to retrieve the NavController.
+     * [findNavController] and [findNavController] with that View or any of its children to retrieve
+     * the NavController.
      *
      * This is generally called for you by the hosting [NavHost].
+     *
      * @param view View that should be associated with the given NavController
-     * @param controller The controller you wish to later retrieve via
-     * [findNavController]
+     * @param controller The controller you wish to later retrieve via [findNavController]
      */
     @JvmStatic
     public fun setViewNavController(view: View, controller: NavController?) {
@@ -119,15 +117,14 @@
 
     /**
      * Recurse up the view hierarchy, looking for the NavController
+     *
      * @param view the view to search from
      * @return the locally scoped [NavController] to the given view, if found
      */
     private fun findViewNavController(view: View): NavController? =
-        generateSequence(view) {
-            it.parent as? View?
-        }.mapNotNull {
-            getViewNavController(it)
-        }.firstOrNull()
+        generateSequence(view) { it.parent as? View? }
+            .mapNotNull { getViewNavController(it) }
+            .firstOrNull()
 
     @Suppress("UNCHECKED_CAST")
     private fun getViewNavController(view: View): NavController? {
diff --git a/navigation/navigation-runtime/src/main/java/androidx/navigation/View.kt b/navigation/navigation-runtime/src/main/java/androidx/navigation/View.kt
index 4494520..55db610 100644
--- a/navigation/navigation-runtime/src/main/java/androidx/navigation/View.kt
+++ b/navigation/navigation-runtime/src/main/java/androidx/navigation/View.kt
@@ -21,8 +21,6 @@
 /**
  * Find a [NavController] associated with a [View].
  *
- * Calling this on a View not within a [NavHost] will result in an
- * [IllegalStateException]
+ * Calling this on a View not within a [NavHost] will result in an [IllegalStateException]
  */
-public fun View.findNavController(): NavController =
-    Navigation.findNavController(this)
+public fun View.findNavController(): NavController = Navigation.findNavController(this)
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/CodeFile.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/CodeFile.kt
index 5d4dbae..44bfdac 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/CodeFile.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/CodeFile.kt
@@ -20,5 +20,6 @@
 
 interface CodeFile {
     fun writeTo(directory: File)
+
     fun fileName(): String
 }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Context.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Context.kt
index 41847ea..0283694 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Context.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Context.kt
@@ -26,11 +26,12 @@
     private var nextId = 0
 
     fun createStubId() = ResReference("error", "id", "errorId${next()}")
+
     fun createStubArg() = Argument("errorArg${next()}", StringType)
-    fun createStubDestination() = Destination(
-        createStubId(), null, "stub",
-        emptyList(), emptyList()
-    )
+
+    fun createStubDestination() =
+        Destination(createStubId(), null, "stub", emptyList(), emptyList())
+
     fun createStubIncludedDestination() = IncludedDestination(createStubId())
 
     private fun next() = nextId++
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolver.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolver.kt
index f47b7f7..3c6911d 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolver.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolver.kt
@@ -26,14 +26,15 @@
     fun dfs(dest: Destination): Destination {
         val nested = dest.nested.filter { it.id != null }.associateBy { it.id!! }
         destinations.putAll(nested)
-        val resolvedActions = dest.actions.map { action ->
-            val actionDestination = destinations[action.destination]
-            if (actionDestination != null) {
-                action.copy(args = mergeArguments(action.args, actionDestination.args))
-            } else {
-                action
+        val resolvedActions =
+            dest.actions.map { action ->
+                val actionDestination = destinations[action.destination]
+                if (actionDestination != null) {
+                    action.copy(args = mergeArguments(action.args, actionDestination.args))
+                } else {
+                    action
+                }
             }
-        }
         val result = dest.copy(nested = dest.nested.map(::dfs), actions = resolvedActions)
         nested.keys.forEach { id -> destinations.remove(id) }
         return result
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParser.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParser.kt
index a866ae8..3844a1d 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParser.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParser.kt
@@ -88,17 +88,21 @@
             }
         }
 
-        actions.groupBy { it.id.javaIdentifier.toCamelCase() }.forEach { (sanitizedName, actions) ->
-            if (actions.size > 1) {
-                context.logger.error(sameSanitizedNameActions(sanitizedName, actions), position)
+        actions
+            .groupBy { it.id.javaIdentifier.toCamelCase() }
+            .forEach { (sanitizedName, actions) ->
+                if (actions.size > 1) {
+                    context.logger.error(sameSanitizedNameActions(sanitizedName, actions), position)
+                }
             }
-        }
 
-        args.groupBy { it.sanitizedName }.forEach { (sanitizedName, args) ->
-            if (args.size > 1) {
-                context.logger.error(sameSanitizedNameArguments(sanitizedName, args), position)
+        args
+            .groupBy { it.sanitizedName }
+            .forEach { (sanitizedName, args) ->
+                if (args.size > 1) {
+                    context.logger.error(sameSanitizedNameArguments(sanitizedName, args), position)
+                }
             }
-        }
 
         val id = idValue?.let { parseId(idValue, rFilePackage, position) }
         val className = Destination.createName(id, name, applicationId)
@@ -133,9 +137,9 @@
         val name = parser.attrValueOrError(NAMESPACE_ANDROID, ATTRIBUTE_NAME)
         val defaultValue = parser.attrValue(NAMESPACE_ANDROID, ATTRIBUTE_DEFAULT_VALUE)
         val typeString = parser.attrValue(NAMESPACE_RES_AUTO, ATTRIBUTE_TYPE)
-        val nullable = parser.attrValue(NAMESPACE_RES_AUTO, ATTRIBUTE_NULLABLE)?.let {
-            it == VALUE_TRUE
-        } ?: false
+        val nullable =
+            parser.attrValue(NAMESPACE_RES_AUTO, ATTRIBUTE_NULLABLE)?.let { it == VALUE_TRUE }
+                ?: false
 
         if (name == null) return context.createStubArg()
 
@@ -158,60 +162,66 @@
             return Argument(name, type, null, nullable)
         }
 
-        val defaultTypedValue = when (type) {
-            IntType -> parseIntValue(defaultValue)
-            LongType -> parseLongValue(defaultValue)
-            FloatType -> parseFloatValue(defaultValue)
-            BoolType -> parseBoolean(defaultValue)
-            ReferenceType -> {
-                when (defaultValue) {
-                    VALUE_NULL -> {
+        val defaultTypedValue =
+            when (type) {
+                IntType -> parseIntValue(defaultValue)
+                LongType -> parseLongValue(defaultValue)
+                FloatType -> parseFloatValue(defaultValue)
+                BoolType -> parseBoolean(defaultValue)
+                ReferenceType -> {
+                    when (defaultValue) {
+                        VALUE_NULL -> {
+                            context.logger.error(
+                                NavParserErrors.nullDefaultValueReference(name),
+                                xmlPosition
+                            )
+                            return context.createStubArg()
+                        }
+                        "0" -> IntValue("0")
+                        else ->
+                            parseReference(defaultValue, rFilePackage)?.let { ReferenceValue(it) }
+                    }
+                }
+                StringType -> {
+                    if (defaultValue == VALUE_NULL) {
+                        NullValue
+                    } else {
+                        StringValue(defaultValue)
+                    }
+                }
+                IntArrayType,
+                LongArrayType,
+                FloatArrayType,
+                StringArrayType,
+                BoolArrayType,
+                ReferenceArrayType,
+                is ObjectArrayType -> {
+                    if (defaultValue == VALUE_NULL) {
+                        NullValue
+                    } else {
                         context.logger.error(
-                            NavParserErrors.nullDefaultValueReference(name),
+                            NavParserErrors.defaultValueObjectType(typeString),
                             xmlPosition
                         )
                         return context.createStubArg()
                     }
-                    "0" -> IntValue("0")
-                    else -> parseReference(defaultValue, rFilePackage)?.let {
-                        ReferenceValue(it)
+                }
+                is ObjectType -> {
+                    if (defaultValue == VALUE_NULL) {
+                        NullValue
+                    } else {
+                        EnumValue(type, defaultValue)
                     }
                 }
+                else -> throw IllegalStateException("Unknown type: $type")
             }
-            StringType -> {
-                if (defaultValue == VALUE_NULL) {
-                    NullValue
-                } else {
-                    StringValue(defaultValue)
-                }
-            }
-            IntArrayType, LongArrayType, FloatArrayType, StringArrayType,
-            BoolArrayType, ReferenceArrayType, is ObjectArrayType -> {
-                if (defaultValue == VALUE_NULL) {
-                    NullValue
-                } else {
-                    context.logger.error(
-                        NavParserErrors.defaultValueObjectType(typeString),
-                        xmlPosition
-                    )
-                    return context.createStubArg()
-                }
-            }
-            is ObjectType -> {
-                if (defaultValue == VALUE_NULL) {
-                    NullValue
-                } else {
-                    EnumValue(type, defaultValue)
-                }
-            }
-            else -> throw IllegalStateException("Unknown type: $type")
-        }
 
         if (defaultTypedValue == null) {
-            val errorMessage = when (type) {
-                ReferenceType -> NavParserErrors.invalidDefaultValueReference(defaultValue)
-                else -> NavParserErrors.invalidDefaultValue(defaultValue, type)
-            }
+            val errorMessage =
+                when (type) {
+                    ReferenceType -> NavParserErrors.invalidDefaultValueReference(defaultValue)
+                    else -> NavParserErrors.invalidDefaultValue(defaultValue, type)
+                }
             context.logger.error(errorMessage, xmlPosition)
             return context.createStubArg()
         }
@@ -235,17 +245,20 @@
             }
         }
 
-        args.groupBy { it.sanitizedName }.forEach { (sanitizedName, args) ->
-            if (args.size > 1) {
-                context.logger.error(sameSanitizedNameArguments(sanitizedName, args), position)
+        args
+            .groupBy { it.sanitizedName }
+            .forEach { (sanitizedName, args) ->
+                if (args.size > 1) {
+                    context.logger.error(sameSanitizedNameArguments(sanitizedName, args), position)
+                }
             }
-        }
 
-        val id = if (idValue != null) {
-            parseId(idValue, rFilePackage, position)
-        } else {
-            context.createStubId()
-        }
+        val id =
+            if (idValue != null) {
+                parseId(idValue, rFilePackage, position)
+            } else {
+                context.createStubId()
+            }
         val destination = destValue?.let { parseId(destValue, rFilePackage, position) }
         return Action(id, destination, args)
     }
@@ -267,12 +280,15 @@
 internal fun inferArgument(name: String, defaultValue: String, rFilePackage: String): Argument {
     val reference = parseReference(defaultValue, rFilePackage)
     if (reference != null) {
-        val type = when (reference.resType) {
-            "color", "dimen", "integer" -> IntType
-            "bool" -> BoolType
-            "string" -> StringType
-            else -> ReferenceType
-        }
+        val type =
+            when (reference.resType) {
+                "color",
+                "dimen",
+                "integer" -> IntType
+                "bool" -> BoolType
+                "string" -> StringType
+                else -> ReferenceType
+            }
         return Argument(name, type, ReferenceValue(reference))
     }
     val longValue = parseLongValue(defaultValue)
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParserErrors.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParserErrors.kt
index c363dae..114a7cb 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParserErrors.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavParserErrors.kt
@@ -20,29 +20,34 @@
 import androidx.navigation.safe.args.generator.models.Argument
 
 object NavParserErrors {
-    val UNNAMED_DESTINATION = "Destination with arguments or actions must have " +
-        "'name' or 'id' attributes."
+    val UNNAMED_DESTINATION =
+        "Destination with arguments or actions must have " + "'name' or 'id' attributes."
 
-    fun invalidDefaultValueReference(value: String) = "Failed to parse defaultValue " +
-        "'$value' as reference. Reference must be in format @[+][package:]res_type/resource_name"
+    fun invalidDefaultValueReference(value: String) =
+        "Failed to parse defaultValue " +
+            "'$value' as reference. Reference must be in format @[+][package:]res_type/resource_name"
 
-    fun nullDefaultValueReference(name: String?) = "android:defaultValue is @null, but '$name' " +
-        "is of type \"reference\". Use \"0\" to signify a empty reference id"
+    fun nullDefaultValueReference(name: String?) =
+        "android:defaultValue is @null, but '$name' " +
+            "is of type \"reference\". Use \"0\" to signify a empty reference id"
 
-    fun invalidDefaultValue(value: String, type: NavType) = "Failed to parse defaultValue " +
-        "'$value' as $type"
+    fun invalidDefaultValue(value: String, type: NavType) =
+        "Failed to parse defaultValue " + "'$value' as $type"
 
-    fun invalidId(value: String) = "Failed to parse $value as id. 'id' must be in the format:" +
-        " @[+][package:]id/resource_name "
+    fun invalidId(value: String) =
+        "Failed to parse $value as id. 'id' must be in the format:" +
+            " @[+][package:]id/resource_name "
 
-    fun defaultValueObjectType(type: String?) = "'$type' " +
-        "doesn't allow default values other than @null"
+    fun defaultValueObjectType(type: String?) =
+        "'$type' " + "doesn't allow default values other than @null"
 
-    fun defaultNullButNotNullable(name: String?) = "android:defaultValue is @null, but '$name' " +
-        "is not nullable. Add app:nullable=\"true\" to the argument to make it nullable."
+    fun defaultNullButNotNullable(name: String?) =
+        "android:defaultValue is @null, but '$name' " +
+            "is not nullable. Add app:nullable=\"true\" to the argument to make it nullable."
 
-    fun typeIsNotNullable(typeName: String?) = "'$typeName' is a simple type " +
-        "and cannot be nullable. Remove app:nullable=\"true\" from the argument."
+    fun typeIsNotNullable(typeName: String?) =
+        "'$typeName' is a simple type " +
+            "and cannot be nullable. Remove app:nullable=\"true\" from the argument."
 
     fun sameSanitizedNameArguments(sanitizedName: String, args: List<Argument>) =
         "Multiple same name arguments. The named arguments: " +
@@ -60,6 +65,7 @@
 
     val MISSING_GRAPH_ATTR = "Missing 'graph' attribute in <include> tag."
 
-    fun invalidNavReference(value: String) = "Failed to parse '$value' as a navigation reference." +
-        " Reference must be in format @[package:]navigation/resource_name"
+    fun invalidNavReference(value: String) =
+        "Failed to parse '$value' as a navigation reference." +
+            " Reference must be in format @[package:]navigation/resource_name"
 }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavSafeArgsGenerator.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavSafeArgsGenerator.kt
index d48b33a1..6b147cc 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavSafeArgsGenerator.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavSafeArgsGenerator.kt
@@ -28,19 +28,21 @@
     outputDir: File,
     useAndroidX: Boolean = true,
     generateKotlin: Boolean
-) = NavSafeArgsGenerator(
-    rFilePackage,
-    applicationId,
-    navigationXml,
-    outputDir,
-    if (generateKotlin) {
-        KotlinNavWriter(useAndroidX)
-    } else {
-        JavaNavWriter(useAndroidX)
-    }
-)
+) =
+    NavSafeArgsGenerator(
+        rFilePackage,
+        applicationId,
+        navigationXml,
+        outputDir,
+        if (generateKotlin) {
+            KotlinNavWriter(useAndroidX)
+        } else {
+            JavaNavWriter(useAndroidX)
+        }
+    )
 
-class NavSafeArgsGenerator<T : CodeFile> internal constructor(
+class NavSafeArgsGenerator<T : CodeFile>
+internal constructor(
     private val rFilePackage: String,
     private val applicationId: String,
     private val navigationXml: File,
@@ -49,33 +51,27 @@
 ) {
     fun generate(): GeneratorOutput {
         val context = Context()
-        val rawDestination = NavParser.parseNavigationFile(
-            navigationXml,
-            rFilePackage,
-            applicationId,
-            context
-        )
+        val rawDestination =
+            NavParser.parseNavigationFile(navigationXml, rFilePackage, applicationId, context)
         val resolvedDestination = resolveArguments(rawDestination)
         val codeFiles = mutableSetOf<CodeFile>()
-        fun writeCodeFiles(
-            destination: Destination,
-            parentDirectionsFileList: List<T>
-        ) {
+        fun writeCodeFiles(destination: Destination, parentDirectionsFileList: List<T>) {
             val newParentDirectionFile =
                 if (destination.actions.isNotEmpty() || parentDirectionsFileList.isNotEmpty()) {
-                    writer.generateDirectionsCodeFile(destination, parentDirectionsFileList)
-                } else {
-                    null
-                }?.also { codeFiles.add(it) }
+                        writer.generateDirectionsCodeFile(destination, parentDirectionsFileList)
+                    } else {
+                        null
+                    }
+                    ?.also { codeFiles.add(it) }
             if (destination.args.isNotEmpty()) {
                 codeFiles.add(writer.generateArgsCodeFile(destination))
             }
             destination.nested.forEach { nestedDestination ->
                 writeCodeFiles(
                     destination = nestedDestination,
-                    parentDirectionsFileList = newParentDirectionFile?.let {
-                        listOf(it) + parentDirectionsFileList
-                    } ?: parentDirectionsFileList
+                    parentDirectionsFileList =
+                        newParentDirectionFile?.let { listOf(it) + parentDirectionsFileList }
+                            ?: parentDirectionsFileList
                 )
             }
         }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavWriter.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavWriter.kt
index 2944947..00cdafd 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavWriter.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/NavWriter.kt
@@ -19,10 +19,7 @@
 import androidx.navigation.safe.args.generator.models.Destination
 
 interface NavWriter<T : CodeFile> {
-    fun generateDirectionsCodeFile(
-        destination: Destination,
-        parentDirectionsFileList: List<T>
-    ): T
+    fun generateDirectionsCodeFile(destination: Destination, parentDirectionsFileList: List<T>): T
 
     fun generateArgsCodeFile(destination: Destination): T
 }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Types.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Types.kt
index c52b8c3..d1419da 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Types.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/Types.kt
@@ -20,121 +20,161 @@
 
 interface NavType {
     fun bundlePutMethod(): String
+
     fun bundleGetMethod(): String
+
     fun allowsNullable(): Boolean
 
     companion object {
-        fun from(name: String?, rFilePackage: String? = null) = when (name) {
-            "integer" -> IntType
-            "integer[]" -> IntArrayType
-            "long" -> LongType
-            "long[]" -> LongArrayType
-            "float" -> FloatType
-            "float[]" -> FloatArrayType
-            "boolean" -> BoolType
-            "boolean[]" -> BoolArrayType
-            "reference" -> ReferenceType
-            "reference[]" -> ReferenceArrayType
-            "string" -> StringType
-            "string[]" -> StringArrayType
-            null -> StringType
-            else -> {
-                val prependPackageName = if (name.startsWith(".") && rFilePackage != null) {
-                    rFilePackage
-                } else {
-                    ""
-                }
-                if (name.endsWith("[]")) {
-                    ObjectArrayType(prependPackageName + name.substringBeforeLast("[]"))
-                } else {
-                    ObjectType(prependPackageName + name)
+        fun from(name: String?, rFilePackage: String? = null) =
+            when (name) {
+                "integer" -> IntType
+                "integer[]" -> IntArrayType
+                "long" -> LongType
+                "long[]" -> LongArrayType
+                "float" -> FloatType
+                "float[]" -> FloatArrayType
+                "boolean" -> BoolType
+                "boolean[]" -> BoolArrayType
+                "reference" -> ReferenceType
+                "reference[]" -> ReferenceArrayType
+                "string" -> StringType
+                "string[]" -> StringArrayType
+                null -> StringType
+                else -> {
+                    val prependPackageName =
+                        if (name.startsWith(".") && rFilePackage != null) {
+                            rFilePackage
+                        } else {
+                            ""
+                        }
+                    if (name.endsWith("[]")) {
+                        ObjectArrayType(prependPackageName + name.substringBeforeLast("[]"))
+                    } else {
+                        ObjectType(prependPackageName + name)
+                    }
                 }
             }
-        }
     }
 }
 
 object IntType : NavType {
     override fun bundlePutMethod() = "putInt"
+
     override fun bundleGetMethod() = "getInt"
+
     override fun toString() = "integer"
+
     override fun allowsNullable() = false
 }
 
 object IntArrayType : NavType {
     override fun bundlePutMethod() = "putIntArray"
+
     override fun bundleGetMethod() = "getIntArray"
+
     override fun toString() = "integer[]"
+
     override fun allowsNullable() = true
 }
 
 object LongType : NavType {
     override fun bundlePutMethod() = "putLong"
+
     override fun bundleGetMethod() = "getLong"
+
     override fun toString() = "long"
+
     override fun allowsNullable() = false
 }
 
 object LongArrayType : NavType {
     override fun bundlePutMethod() = "putLongArray"
+
     override fun bundleGetMethod() = "getLongArray"
+
     override fun toString() = "long[]"
+
     override fun allowsNullable() = true
 }
 
 object FloatType : NavType {
     override fun bundlePutMethod() = "putFloat"
+
     override fun bundleGetMethod() = "getFloat"
+
     override fun toString() = "float"
+
     override fun allowsNullable() = false
 }
 
 object FloatArrayType : NavType {
     override fun bundlePutMethod() = "putFloatArray"
+
     override fun bundleGetMethod() = "getFloatArray"
+
     override fun toString() = "float[]"
+
     override fun allowsNullable() = true
 }
 
 object StringType : NavType {
     override fun bundlePutMethod() = "putString"
+
     override fun bundleGetMethod() = "getString"
+
     override fun toString() = "string"
+
     override fun allowsNullable() = true
 }
 
 object StringArrayType : NavType {
     override fun bundlePutMethod() = "putStringArray"
+
     override fun bundleGetMethod() = "getStringArray"
+
     override fun toString() = "string[]"
+
     override fun allowsNullable() = true
 }
 
 object BoolType : NavType {
     override fun bundlePutMethod() = "putBoolean"
+
     override fun bundleGetMethod() = "getBoolean"
+
     override fun toString() = "boolean"
+
     override fun allowsNullable() = false
 }
 
 object BoolArrayType : NavType {
     override fun bundlePutMethod() = "putBooleanArray"
+
     override fun bundleGetMethod() = "getBooleanArray"
+
     override fun toString() = "boolean"
+
     override fun allowsNullable() = true
 }
 
 object ReferenceType : NavType {
     override fun bundlePutMethod() = "putInt"
+
     override fun bundleGetMethod() = "getInt"
+
     override fun toString() = "reference"
+
     override fun allowsNullable() = false
 }
 
 object ReferenceArrayType : NavType {
     override fun bundlePutMethod() = "putIntArray"
+
     override fun bundleGetMethod() = "getIntArray"
+
     override fun toString() = "reference[]"
+
     override fun allowsNullable() = true
 }
 
@@ -146,13 +186,17 @@
         throw UnsupportedOperationException("Use addBundleGetStatement instead.")
 
     override fun toString() = "parcelable or serializable"
+
     override fun allowsNullable() = true
 }
 
 data class ObjectArrayType(val canonicalName: String) : NavType {
     override fun bundlePutMethod() = "putParcelableArray"
+
     override fun bundleGetMethod() = "getParcelableArray"
+
     override fun toString() = "parcelable array"
+
     override fun allowsNullable() = true
 }
 
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/XmlPositionParser.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/XmlPositionParser.kt
index b76b43b..c0a02d4 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/XmlPositionParser.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/XmlPositionParser.kt
@@ -23,10 +23,11 @@
 internal class XmlPositionParser(private val name: String, reader: Reader, val logger: NavLogger) {
     private var startLine = 0
     private var startColumn = 0
-    private val parser: XmlPullParser = XmlPullParserFactory.newInstance().newPullParser().apply {
-        setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, true)
-        setInput(reader)
-    }
+    private val parser: XmlPullParser =
+        XmlPullParserFactory.newInstance().newPullParser().apply {
+            setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, true)
+            setInput(reader)
+        }
 
     fun name(): String = parser.name
 
@@ -41,7 +42,8 @@
             }
 
             if (processedLine == parser.lineNumber && processedColumn == parser.columnNumber) {
-                // otherwise onStart already called next() and we need to try to process current node
+                // otherwise onStart already called next() and we need to try to process current
+                // node
                 nextToken()
             }
         }
@@ -67,9 +69,11 @@
     }
 
     fun attrValue(namespace: String, name: String): String? =
-        (0 until parser.attributeCount).find {
-            parser.getAttributeNamespace(it) == namespace && name == parser.getAttributeName(it)
-        }?.let { parser.getAttributeValue(it) }
+        (0 until parser.attributeCount)
+            .find {
+                parser.getAttributeNamespace(it) == namespace && name == parser.getAttributeName(it)
+            }
+            ?.let { parser.getAttributeValue(it) }
 
     fun attrValueOrError(namespace: String, attrName: String): String? {
         val value = attrValue(namespace, attrName)
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/List_ext.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/List_ext.kt
index 39d1152..fd07b27 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/List_ext.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/List_ext.kt
@@ -16,14 +16,16 @@
 
 package androidx.navigation.safe.args.generator.ext
 
-fun List<String>.joinToCamelCase(): String = when (size) {
-    0 -> throw IllegalArgumentException("invalid section size, cannot be zero")
-    1 -> this[0].toCamelCase()
-    else -> this.joinToString("") { it.toCamelCase() }
-}
+fun List<String>.joinToCamelCase(): String =
+    when (size) {
+        0 -> throw IllegalArgumentException("invalid section size, cannot be zero")
+        1 -> this[0].toCamelCase()
+        else -> this.joinToString("") { it.toCamelCase() }
+    }
 
-fun List<String>.joinToCamelCaseAsVar(): String = when (size) {
-    0 -> throw IllegalArgumentException("invalid section size, cannot be zero")
-    1 -> this[0].toCamelCaseAsVar()
-    else -> get(0).toCamelCaseAsVar() + drop(1).joinToCamelCase()
-}
+fun List<String>.joinToCamelCaseAsVar(): String =
+    when (size) {
+        0 -> throw IllegalArgumentException("invalid section size, cannot be zero")
+        1 -> this[0].toCamelCaseAsVar()
+        else -> get(0).toCamelCaseAsVar() + drop(1).joinToCamelCase()
+    }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/String_ext.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/String_ext.kt
index 01a8d46..7ea1b29 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/String_ext.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/String_ext.kt
@@ -36,22 +36,25 @@
 // as a.b.OuterClass$InnerClass, useful for then building a javapoet or kotlinpoet ClassName.
 fun String.toClassNameParts(): Triple<String, String, Array<String>> {
     val packageName = substringBeforeLast('.', "")
-    val (simpleName, innerNames) = substringAfterLast('.').let {
-        val simpleName = it.substringBefore("$")
-        val innerNames = it.substringAfter("$", "").let { innerName ->
-            if (innerName.isNotEmpty()) {
-                innerName.split("$")
-            } else {
-                emptyList()
-            }
+    val (simpleName, innerNames) =
+        substringAfterLast('.').let {
+            val simpleName = it.substringBefore("$")
+            val innerNames =
+                it.substringAfter("$", "").let { innerName ->
+                    if (innerName.isNotEmpty()) {
+                        innerName.split("$")
+                    } else {
+                        emptyList()
+                    }
+                }
+            simpleName to innerNames
         }
-        simpleName to innerNames
-    }
     return Triple(packageName, simpleName, innerNames.toTypedArray())
 }
 
-fun String.capitalize(locale: Locale): String = if (isNotEmpty() && this[0].isLowerCase()) {
-    substring(0, 1).uppercase(locale) + substring(1)
-} else {
-    this
-}
+fun String.capitalize(locale: Locale): String =
+    if (isNotEmpty() && this[0].isLowerCase()) {
+        substring(0, 1).uppercase(locale) + substring(1)
+    } else {
+        this
+    }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaNavWriter.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaNavWriter.kt
index e9ae219..20420b5 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaNavWriter.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaNavWriter.kt
@@ -75,13 +75,12 @@
     ): TypeSpec {
         val constructor = MethodSpec.constructorBuilder().addModifiers(Modifier.PRIVATE).build()
 
-        val actionTypes = destination.actions.map { action ->
-            action to generateDirectionsTypeSpec(action)
-        }
+        val actionTypes =
+            destination.actions.map { action -> action to generateDirectionsTypeSpec(action) }
 
         @Suppress("NAME_SHADOWING")
-        val getters = actionTypes
-            .map { (action, actionType) ->
+        val getters =
+            actionTypes.map { (action, actionType) ->
                 val annotations = Annotations.getInstance(useAndroidX)
                 val methodName = action.id.javaIdentifier.toCamelCaseAsVar()
                 if (action.args.isEmpty()) {
@@ -91,17 +90,19 @@
                         .returns(NAV_DIRECTION_CLASSNAME)
                         .addStatement(
                             "return new $T($L)",
-                            ACTION_ONLY_NAV_DIRECTION_CLASSNAME, action.id.accessor()
+                            ACTION_ONLY_NAV_DIRECTION_CLASSNAME,
+                            action.id.accessor()
                         )
                         .build()
                 } else {
                     val constructor = actionType.methodSpecs.find(MethodSpec::isConstructor)!!
                     val params = constructor.parameters.joinToString(", ") { param -> param.name }
-                    val actionTypeName = ClassName.get(
-                        className.packageName(),
-                        className.simpleName(),
-                        actionType.name
-                    )
+                    val actionTypeName =
+                        ClassName.get(
+                            className.packageName(),
+                            className.simpleName(),
+                            actionType.name
+                        )
                     MethodSpec.methodBuilder(methodName)
                         .addAnnotation(annotations.NONNULL_CLASSNAME)
                         .addModifiers(Modifier.PUBLIC, Modifier.STATIC)
@@ -118,24 +119,28 @@
         parentDirectionsFileList.forEach {
             val parentPackageName = it.wrapped.packageName
             val parentTypeSpec = it.wrapped.typeSpec
-            parentTypeSpec.methodSpecs.filter { method ->
-                method.hasModifier(Modifier.STATIC) &&
-                    getters.none { it.name == method.name } && // de-dupe local actions
-                    parentGetters.none { it.name == method.name } // de-dupe parent actions
-            }.forEach { actionMethod ->
-                val params = actionMethod.parameters.joinToString(", ") { param -> param.name }
-                val methodSpec = MethodSpec.methodBuilder(actionMethod.name)
-                    .addAnnotations(actionMethod.annotations)
-                    .addModifiers(actionMethod.modifiers)
-                    .addParameters(actionMethod.parameters)
-                    .returns(actionMethod.returnType)
-                    .addStatement(
-                        "return $T.$L($params)",
-                        ClassName.get(parentPackageName, parentTypeSpec.name), actionMethod.name
-                    )
-                    .build()
-                parentGetters.add(methodSpec)
-            }
+            parentTypeSpec.methodSpecs
+                .filter { method ->
+                    method.hasModifier(Modifier.STATIC) &&
+                        getters.none { it.name == method.name } && // de-dupe local actions
+                        parentGetters.none { it.name == method.name } // de-dupe parent actions
+                }
+                .forEach { actionMethod ->
+                    val params = actionMethod.parameters.joinToString(", ") { param -> param.name }
+                    val methodSpec =
+                        MethodSpec.methodBuilder(actionMethod.name)
+                            .addAnnotations(actionMethod.annotations)
+                            .addModifiers(actionMethod.modifiers)
+                            .addParameters(actionMethod.parameters)
+                            .returns(actionMethod.returnType)
+                            .addStatement(
+                                "return $T.$L($params)",
+                                ClassName.get(parentPackageName, parentTypeSpec.name),
+                                actionMethod.name
+                            )
+                            .build()
+                    parentGetters.add(methodSpec)
+                }
         }
 
         return TypeSpec.classBuilder(className)
@@ -155,27 +160,39 @@
         val specs = ClassWithArgsSpecs(action.args, annotations, privateConstructor = true)
         val className = ClassName.get("", action.id.javaIdentifier.toCamelCase())
 
-        val getDestIdMethod = MethodSpec.methodBuilder("getActionId")
-            .addAnnotation(Override::class.java)
-            .addModifiers(Modifier.PUBLIC)
-            .returns(Int::class.java)
-            .addStatement("return $L", action.id.accessor())
-            .build()
+        val getDestIdMethod =
+            MethodSpec.methodBuilder("getActionId")
+                .addAnnotation(Override::class.java)
+                .addModifiers(Modifier.PUBLIC)
+                .returns(Int::class.java)
+                .addStatement("return $L", action.id.accessor())
+                .build()
 
-        val additionalEqualsBlock = CodeBlock.builder().apply {
-            beginControlFlow("if ($N() != that.$N())", getDestIdMethod, getDestIdMethod).apply {
-                addStatement("return false")
-            }
-            endControlFlow()
-        }.build()
+        val additionalEqualsBlock =
+            CodeBlock.builder()
+                .apply {
+                    beginControlFlow("if ($N() != that.$N())", getDestIdMethod, getDestIdMethod)
+                        .apply { addStatement("return false") }
+                    endControlFlow()
+                }
+                .build()
 
-        val additionalHashCodeBlock = CodeBlock.builder().apply {
-            addStatement("result = 31 * result + $N()", getDestIdMethod)
-        }.build()
+        val additionalHashCodeBlock =
+            CodeBlock.builder()
+                .apply { addStatement("result = 31 * result + $N()", getDestIdMethod) }
+                .build()
 
-        val toStringHeaderBlock = CodeBlock.builder().apply {
-            add("$S + $L() + $S", "${className.simpleName()}(actionId=", getDestIdMethod.name, "){")
-        }.build()
+        val toStringHeaderBlock =
+            CodeBlock.builder()
+                .apply {
+                    add(
+                        "$S + $L() + $S",
+                        "${className.simpleName()}(actionId=",
+                        getDestIdMethod.name,
+                        "){"
+                    )
+                }
+                .build()
 
         return TypeSpec.classBuilder(className)
             .addSuperinterface(NAV_DIRECTION_CLASSNAME)
@@ -192,132 +209,148 @@
             .build()
     }
 
-    override fun generateArgsCodeFile(
-        destination: Destination
-    ): JavaCodeFile {
+    override fun generateArgsCodeFile(destination: Destination): JavaCodeFile {
         val annotations = Annotations.getInstance(useAndroidX)
-        val destName = destination.name
-            ?: throw IllegalStateException("Destination with arguments must have name")
+        val destName =
+            destination.name
+                ?: throw IllegalStateException("Destination with arguments must have name")
         val className = ClassName.get(destName.packageName(), "${destName.simpleName()}Args")
         val args = destination.args
         val specs = ClassWithArgsSpecs(args, annotations)
 
-        val fromBundleMethod = MethodSpec.methodBuilder("fromBundle").apply {
-            addAnnotation(annotations.NONNULL_CLASSNAME)
-            addModifiers(Modifier.PUBLIC, Modifier.STATIC)
-            if (args.any { it.type is ObjectArrayType || it.type is ObjectType }) {
-                addAnnotation(
-                    specs.suppressAnnotationSpec.toBuilder()
-                        .addMember("value", "$S", "deprecation")
-                        .build()
-                )
-            } else {
-                addAnnotation(specs.suppressAnnotationSpec)
-            }
-            val bundle = "bundle"
-            addParameter(
-                ParameterSpec.builder(BUNDLE_CLASSNAME, bundle)
-                    .addAnnotation(specs.androidAnnotations.NONNULL_CLASSNAME)
-                    .build()
-            )
-            returns(className)
-            val result = "__result"
-            addStatement("$T $N = new $T()", className, result, className)
-            addStatement("$N.setClassLoader($T.class.getClassLoader())", bundle, className)
-            args.forEach { arg ->
-                addReadSingleArgBlock("containsKey", bundle, result, arg, specs) {
-                    arg.type.addBundleGetStatement(this, arg, arg.sanitizedName, bundle)
+        val fromBundleMethod =
+            MethodSpec.methodBuilder("fromBundle")
+                .apply {
+                    addAnnotation(annotations.NONNULL_CLASSNAME)
+                    addModifiers(Modifier.PUBLIC, Modifier.STATIC)
+                    if (args.any { it.type is ObjectArrayType || it.type is ObjectType }) {
+                        addAnnotation(
+                            specs.suppressAnnotationSpec
+                                .toBuilder()
+                                .addMember("value", "$S", "deprecation")
+                                .build()
+                        )
+                    } else {
+                        addAnnotation(specs.suppressAnnotationSpec)
+                    }
+                    val bundle = "bundle"
+                    addParameter(
+                        ParameterSpec.builder(BUNDLE_CLASSNAME, bundle)
+                            .addAnnotation(specs.androidAnnotations.NONNULL_CLASSNAME)
+                            .build()
+                    )
+                    returns(className)
+                    val result = "__result"
+                    addStatement("$T $N = new $T()", className, result, className)
+                    addStatement("$N.setClassLoader($T.class.getClassLoader())", bundle, className)
+                    args.forEach { arg ->
+                        addReadSingleArgBlock("containsKey", bundle, result, arg, specs) {
+                            arg.type.addBundleGetStatement(this, arg, arg.sanitizedName, bundle)
+                        }
+                    }
+                    addStatement("return $N", result)
                 }
-            }
-            addStatement("return $N", result)
-        }.build()
+                .build()
 
-        val fromSavedStateHandleMethod = MethodSpec.methodBuilder("fromSavedStateHandle").apply {
-            addAnnotation(annotations.NONNULL_CLASSNAME)
-            addModifiers(Modifier.PUBLIC, Modifier.STATIC)
-            addAnnotation(specs.suppressAnnotationSpec)
-            val savedStateHandle = "savedStateHandle"
-            addParameter(
-                ParameterSpec.builder(SAVED_STATE_HANDLE_CLASSNAME, savedStateHandle)
-                    .addAnnotation(specs.androidAnnotations.NONNULL_CLASSNAME)
-                    .build()
-            )
-            returns(className)
-            val result = "__result"
-            addStatement("$T $N = new $T()", className, result, className)
-            args.forEach { arg ->
-                addReadSingleArgBlock("contains", savedStateHandle, result, arg, specs) {
-                    addStatement("$N = $N.get($S)", arg.sanitizedName, savedStateHandle, arg.name)
+        val fromSavedStateHandleMethod =
+            MethodSpec.methodBuilder("fromSavedStateHandle")
+                .apply {
+                    addAnnotation(annotations.NONNULL_CLASSNAME)
+                    addModifiers(Modifier.PUBLIC, Modifier.STATIC)
+                    addAnnotation(specs.suppressAnnotationSpec)
+                    val savedStateHandle = "savedStateHandle"
+                    addParameter(
+                        ParameterSpec.builder(SAVED_STATE_HANDLE_CLASSNAME, savedStateHandle)
+                            .addAnnotation(specs.androidAnnotations.NONNULL_CLASSNAME)
+                            .build()
+                    )
+                    returns(className)
+                    val result = "__result"
+                    addStatement("$T $N = new $T()", className, result, className)
+                    args.forEach { arg ->
+                        addReadSingleArgBlock("contains", savedStateHandle, result, arg, specs) {
+                            addStatement(
+                                "$N = $N.get($S)",
+                                arg.sanitizedName,
+                                savedStateHandle,
+                                arg.name
+                            )
+                        }
+                    }
+                    addStatement("return $N", result)
                 }
-            }
-            addStatement("return $N", result)
-        }.build()
+                .build()
 
         val constructor = MethodSpec.constructorBuilder().addModifiers(Modifier.PRIVATE).build()
 
-        val copyConstructor = MethodSpec.constructorBuilder()
-            .addAnnotation(specs.suppressAnnotationSpec)
-            .addModifiers(Modifier.PUBLIC)
-            .addParameter(
-                ParameterSpec.builder(className, "original")
-                    .addAnnotation(specs.androidAnnotations.NONNULL_CLASSNAME)
-                    .build()
-            )
-            .addCode(specs.copyMapContents("this", "original"))
-            .build()
+        val copyConstructor =
+            MethodSpec.constructorBuilder()
+                .addAnnotation(specs.suppressAnnotationSpec)
+                .addModifiers(Modifier.PUBLIC)
+                .addParameter(
+                    ParameterSpec.builder(className, "original")
+                        .addAnnotation(specs.androidAnnotations.NONNULL_CLASSNAME)
+                        .build()
+                )
+                .addCode(specs.copyMapContents("this", "original"))
+                .build()
 
-        val fromMapConstructor = MethodSpec.constructorBuilder()
-            .addAnnotation(specs.suppressAnnotationSpec)
-            .addModifiers(Modifier.PRIVATE)
-            .addParameter(HASHMAP_CLASSNAME, "argumentsMap")
-            .addStatement(
-                "$N.$N.putAll($N)",
-                "this",
-                specs.hashMapFieldSpec.name,
-                "argumentsMap"
-            )
-            .build()
+        val fromMapConstructor =
+            MethodSpec.constructorBuilder()
+                .addAnnotation(specs.suppressAnnotationSpec)
+                .addModifiers(Modifier.PRIVATE)
+                .addParameter(HASHMAP_CLASSNAME, "argumentsMap")
+                .addStatement(
+                    "$N.$N.putAll($N)",
+                    "this",
+                    specs.hashMapFieldSpec.name,
+                    "argumentsMap"
+                )
+                .build()
 
-        val buildMethod = MethodSpec.methodBuilder("build")
-            .addAnnotation(annotations.NONNULL_CLASSNAME)
-            .addModifiers(Modifier.PUBLIC)
-            .returns(className)
-            .addStatement(
-                "$T result = new $T($N)",
-                className,
-                className,
-                specs.hashMapFieldSpec.name
-            )
-            .addStatement("return result")
-            .build()
+        val buildMethod =
+            MethodSpec.methodBuilder("build")
+                .addAnnotation(annotations.NONNULL_CLASSNAME)
+                .addModifiers(Modifier.PUBLIC)
+                .returns(className)
+                .addStatement(
+                    "$T result = new $T($N)",
+                    className,
+                    className,
+                    specs.hashMapFieldSpec.name
+                )
+                .addStatement("return result")
+                .build()
 
         val builderClassName = ClassName.get("", "Builder")
-        val builderTypeSpec = TypeSpec.classBuilder("Builder")
-            .addModifiers(Modifier.PUBLIC, Modifier.STATIC, Modifier.FINAL)
-            .addField(specs.hashMapFieldSpec)
-            .addMethod(copyConstructor)
-            .addMethod(specs.constructor())
-            .addMethod(buildMethod)
-            .addMethods(specs.setters(builderClassName))
-            .addMethods(specs.getters(true))
-            .build()
+        val builderTypeSpec =
+            TypeSpec.classBuilder("Builder")
+                .addModifiers(Modifier.PUBLIC, Modifier.STATIC, Modifier.FINAL)
+                .addField(specs.hashMapFieldSpec)
+                .addMethod(copyConstructor)
+                .addMethod(specs.constructor())
+                .addMethod(buildMethod)
+                .addMethods(specs.setters(builderClassName))
+                .addMethods(specs.getters(true))
+                .build()
 
-        val typeSpec = TypeSpec.classBuilder(className)
-            .addSuperinterface(NAV_ARGS_CLASSNAME)
-            .addModifiers(Modifier.PUBLIC)
-            .addField(specs.hashMapFieldSpec)
-            .addMethod(constructor)
-            .addMethod(fromMapConstructor)
-            .addMethod(fromBundleMethod)
-            .addMethod(fromSavedStateHandleMethod)
-            .addMethods(specs.getters())
-            .addMethod(specs.toBundleMethod("toBundle"))
-            .addMethod(specs.toSavedStateHandleMethod())
-            .addMethod(specs.equalsMethod(className))
-            .addMethod(specs.hashCodeMethod())
-            .addMethod(specs.toStringMethod(className))
-            .addType(builderTypeSpec)
-            .build()
+        val typeSpec =
+            TypeSpec.classBuilder(className)
+                .addSuperinterface(NAV_ARGS_CLASSNAME)
+                .addModifiers(Modifier.PUBLIC)
+                .addField(specs.hashMapFieldSpec)
+                .addMethod(constructor)
+                .addMethod(fromMapConstructor)
+                .addMethod(fromBundleMethod)
+                .addMethod(fromSavedStateHandleMethod)
+                .addMethods(specs.getters())
+                .addMethod(specs.toBundleMethod("toBundle"))
+                .addMethod(specs.toSavedStateHandleMethod())
+                .addMethod(specs.equalsMethod(className))
+                .addMethod(specs.hashCodeMethod())
+                .addMethod(specs.toStringMethod(className))
+                .addType(builderTypeSpec)
+                .build()
 
         return JavaFile.builder(className.packageName(), typeSpec).build().toCodeFile()
     }
@@ -343,7 +376,8 @@
         nextControlFlow("else")
         if (arg.defaultValue == null) {
             addStatement(
-                "throw new $T($S)", IllegalArgumentException::class.java,
+                "throw new $T($S)",
+                IllegalArgumentException::class.java,
                 "Required argument \"${arg.name}\" is missing and does not have an " +
                     "android:defaultValue"
             )
@@ -365,173 +399,201 @@
     val privateConstructor: Boolean = false
 ) {
 
-    val suppressAnnotationSpec = AnnotationSpec.builder(SuppressWarnings::class.java)
-        .addMember("value", "$S", "unchecked")
-        .build()
+    val suppressAnnotationSpec =
+        AnnotationSpec.builder(SuppressWarnings::class.java)
+            .addMember("value", "$S", "unchecked")
+            .build()
 
-    val hashMapFieldSpec = FieldSpec.builder(
-        HASHMAP_CLASSNAME,
-        "arguments",
-        Modifier.PRIVATE,
-        Modifier.FINAL
-    ).initializer("new $T()", HASHMAP_CLASSNAME).build()
+    val hashMapFieldSpec =
+        FieldSpec.builder(HASHMAP_CLASSNAME, "arguments", Modifier.PRIVATE, Modifier.FINAL)
+            .initializer("new $T()", HASHMAP_CLASSNAME)
+            .build()
 
-    fun setters(thisClassName: ClassName) = args.map { arg ->
-        val capitalizedName = arg.sanitizedName.capitalize(Locale.US)
-        MethodSpec.methodBuilder("set$capitalizedName").apply {
-            addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
-            addAnnotation(suppressAnnotationSpec)
-            addModifiers(Modifier.PUBLIC)
-            addParameter(generateParameterSpec(arg))
-            addNullCheck(arg, arg.sanitizedName)
-            addStatement(
-                "this.$N.put($S, $N)",
-                hashMapFieldSpec.name,
-                arg.name,
-                arg.sanitizedName
-            )
-            addStatement("return this")
-            returns(thisClassName)
-        }.build()
-    }
-
-    fun constructor() = MethodSpec.constructorBuilder().apply {
-        if (args.filterNot(Argument::isOptional).isNotEmpty()) {
-            addAnnotation(suppressAnnotationSpec)
-        }
-        addModifiers(if (privateConstructor) Modifier.PRIVATE else Modifier.PUBLIC)
-        args.filterNot(Argument::isOptional).forEach { arg ->
-            addParameter(generateParameterSpec(arg))
-            addNullCheck(arg, arg.sanitizedName)
-            addStatement(
-                "this.$N.put($S, $N)",
-                hashMapFieldSpec.name,
-                arg.name,
-                arg.sanitizedName
-            )
-        }
-    }.build()
-
-    fun toBundleMethod(
-        name: String,
-        addOverrideAnnotation: Boolean = false
-    ) = MethodSpec.methodBuilder(name).apply {
-        if (addOverrideAnnotation) {
-            addAnnotation(Override::class.java)
-        }
-        addAnnotation(suppressAnnotationSpec)
-        addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
-        addModifiers(Modifier.PUBLIC)
-        returns(BUNDLE_CLASSNAME)
-        val result = "__result"
-        addStatement("$T $N = new $T()", BUNDLE_CLASSNAME, result, BUNDLE_CLASSNAME)
-        args.forEach { arg ->
-            beginControlFlow("if ($N.containsKey($S))", hashMapFieldSpec.name, arg.name).apply {
-                addStatement(
-                    "$T $N = ($T) $N.get($S)",
-                    arg.type.typeName(),
-                    arg.sanitizedName,
-                    arg.type.typeName(),
-                    hashMapFieldSpec.name,
-                    arg.name
-                )
-                arg.type.addBundlePutStatement(this, arg, result, arg.sanitizedName)
-            }
-            if (arg.defaultValue != null) {
-                nextControlFlow("else").apply {
-                    arg.type.addBundlePutStatement(this, arg, result, arg.defaultValue.write())
+    fun setters(thisClassName: ClassName) =
+        args.map { arg ->
+            val capitalizedName = arg.sanitizedName.capitalize(Locale.US)
+            MethodSpec.methodBuilder("set$capitalizedName")
+                .apply {
+                    addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
+                    addAnnotation(suppressAnnotationSpec)
+                    addModifiers(Modifier.PUBLIC)
+                    addParameter(generateParameterSpec(arg))
+                    addNullCheck(arg, arg.sanitizedName)
+                    addStatement(
+                        "this.$N.put($S, $N)",
+                        hashMapFieldSpec.name,
+                        arg.name,
+                        arg.sanitizedName
+                    )
+                    addStatement("return this")
+                    returns(thisClassName)
                 }
-            }
-            endControlFlow()
+                .build()
         }
-        addStatement("return $N", result)
-    }.build()
 
-    fun toSavedStateHandleMethod(
-        addOverrideAnnotation: Boolean = false
-    ) = MethodSpec.methodBuilder("toSavedStateHandle").apply {
-        if (addOverrideAnnotation) {
-            addAnnotation(Override::class.java)
-        }
-        addAnnotation(suppressAnnotationSpec)
-        addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
-        addModifiers(Modifier.PUBLIC)
-        returns(SAVED_STATE_HANDLE_CLASSNAME)
-        val result = "__result"
-        addStatement(
-            "$T $N = new $T()", SAVED_STATE_HANDLE_CLASSNAME, result, SAVED_STATE_HANDLE_CLASSNAME
-        )
-        args.forEach { arg ->
-            beginControlFlow("if ($N.containsKey($S))", hashMapFieldSpec.name, arg.name).apply {
-                addStatement(
-                    "$T $N = ($T) $N.get($S)",
-                    arg.type.typeName(),
-                    arg.sanitizedName,
-                    arg.type.typeName(),
-                    hashMapFieldSpec.name,
-                    arg.name
-                )
-                arg.type.addSavedStateHandleSetStatement(this, arg, result, arg.sanitizedName)
-            }
-            if (arg.defaultValue != null) {
-                nextControlFlow("else").apply {
-                    arg.type.addSavedStateHandleSetStatement(
-                        this, arg, result, arg.defaultValue.write()
+    fun constructor() =
+        MethodSpec.constructorBuilder()
+            .apply {
+                if (args.filterNot(Argument::isOptional).isNotEmpty()) {
+                    addAnnotation(suppressAnnotationSpec)
+                }
+                addModifiers(if (privateConstructor) Modifier.PRIVATE else Modifier.PUBLIC)
+                args.filterNot(Argument::isOptional).forEach { arg ->
+                    addParameter(generateParameterSpec(arg))
+                    addNullCheck(arg, arg.sanitizedName)
+                    addStatement(
+                        "this.$N.put($S, $N)",
+                        hashMapFieldSpec.name,
+                        arg.name,
+                        arg.sanitizedName
                     )
                 }
             }
-            endControlFlow()
-        }
-        addStatement("return $N", result)
-    }.build()
+            .build()
 
-    fun copyMapContents(to: String, from: String) = CodeBlock.builder()
-        .addStatement(
-            "$N.$N.putAll($N.$N)",
-            to,
-            hashMapFieldSpec.name,
-            from,
-            hashMapFieldSpec.name
-        ).build()
-
-    fun getters(isBuilder: Boolean = false) = args.map { arg ->
-        MethodSpec.methodBuilder(getterFromArgName(arg.sanitizedName)).apply {
-            addModifiers(Modifier.PUBLIC)
-            if (!isBuilder) {
-                addAnnotation(suppressAnnotationSpec)
-            } else {
-                addAnnotation(
-                    AnnotationSpec.builder(SuppressWarnings::class.java)
-                        .addMember("value", "{$S,$S}", "unchecked", "GetterOnBuilder")
-                        .build()
-                )
-            }
-            if (arg.type.allowsNullable()) {
-                if (arg.isNullable) {
-                    addAnnotation(androidAnnotations.NULLABLE_CLASSNAME)
-                } else {
-                    addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
+    fun toBundleMethod(name: String, addOverrideAnnotation: Boolean = false) =
+        MethodSpec.methodBuilder(name)
+            .apply {
+                if (addOverrideAnnotation) {
+                    addAnnotation(Override::class.java)
                 }
+                addAnnotation(suppressAnnotationSpec)
+                addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
+                addModifiers(Modifier.PUBLIC)
+                returns(BUNDLE_CLASSNAME)
+                val result = "__result"
+                addStatement("$T $N = new $T()", BUNDLE_CLASSNAME, result, BUNDLE_CLASSNAME)
+                args.forEach { arg ->
+                    beginControlFlow("if ($N.containsKey($S))", hashMapFieldSpec.name, arg.name)
+                        .apply {
+                            addStatement(
+                                "$T $N = ($T) $N.get($S)",
+                                arg.type.typeName(),
+                                arg.sanitizedName,
+                                arg.type.typeName(),
+                                hashMapFieldSpec.name,
+                                arg.name
+                            )
+                            arg.type.addBundlePutStatement(this, arg, result, arg.sanitizedName)
+                        }
+                    if (arg.defaultValue != null) {
+                        nextControlFlow("else").apply {
+                            arg.type.addBundlePutStatement(
+                                this,
+                                arg,
+                                result,
+                                arg.defaultValue.write()
+                            )
+                        }
+                    }
+                    endControlFlow()
+                }
+                addStatement("return $N", result)
             }
-            addStatement(
-                "return ($T) $N.get($S)",
-                arg.type.typeName(),
-                hashMapFieldSpec.name,
-                arg.name
-            )
-            returns(arg.type.typeName())
-        }.build()
-    }
+            .build()
 
-    fun equalsMethod(
-        className: ClassName,
-        additionalCode: CodeBlock? = null
-    ) = MethodSpec.methodBuilder("equals").apply {
-        addAnnotation(Override::class.java)
-        addModifiers(Modifier.PUBLIC)
-        addParameter(TypeName.OBJECT, "object")
-        addCode(
-            """
+    fun toSavedStateHandleMethod(addOverrideAnnotation: Boolean = false) =
+        MethodSpec.methodBuilder("toSavedStateHandle")
+            .apply {
+                if (addOverrideAnnotation) {
+                    addAnnotation(Override::class.java)
+                }
+                addAnnotation(suppressAnnotationSpec)
+                addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
+                addModifiers(Modifier.PUBLIC)
+                returns(SAVED_STATE_HANDLE_CLASSNAME)
+                val result = "__result"
+                addStatement(
+                    "$T $N = new $T()",
+                    SAVED_STATE_HANDLE_CLASSNAME,
+                    result,
+                    SAVED_STATE_HANDLE_CLASSNAME
+                )
+                args.forEach { arg ->
+                    beginControlFlow("if ($N.containsKey($S))", hashMapFieldSpec.name, arg.name)
+                        .apply {
+                            addStatement(
+                                "$T $N = ($T) $N.get($S)",
+                                arg.type.typeName(),
+                                arg.sanitizedName,
+                                arg.type.typeName(),
+                                hashMapFieldSpec.name,
+                                arg.name
+                            )
+                            arg.type.addSavedStateHandleSetStatement(
+                                this,
+                                arg,
+                                result,
+                                arg.sanitizedName
+                            )
+                        }
+                    if (arg.defaultValue != null) {
+                        nextControlFlow("else").apply {
+                            arg.type.addSavedStateHandleSetStatement(
+                                this,
+                                arg,
+                                result,
+                                arg.defaultValue.write()
+                            )
+                        }
+                    }
+                    endControlFlow()
+                }
+                addStatement("return $N", result)
+            }
+            .build()
+
+    fun copyMapContents(to: String, from: String) =
+        CodeBlock.builder()
+            .addStatement(
+                "$N.$N.putAll($N.$N)",
+                to,
+                hashMapFieldSpec.name,
+                from,
+                hashMapFieldSpec.name
+            )
+            .build()
+
+    fun getters(isBuilder: Boolean = false) =
+        args.map { arg ->
+            MethodSpec.methodBuilder(getterFromArgName(arg.sanitizedName))
+                .apply {
+                    addModifiers(Modifier.PUBLIC)
+                    if (!isBuilder) {
+                        addAnnotation(suppressAnnotationSpec)
+                    } else {
+                        addAnnotation(
+                            AnnotationSpec.builder(SuppressWarnings::class.java)
+                                .addMember("value", "{$S,$S}", "unchecked", "GetterOnBuilder")
+                                .build()
+                        )
+                    }
+                    if (arg.type.allowsNullable()) {
+                        if (arg.isNullable) {
+                            addAnnotation(androidAnnotations.NULLABLE_CLASSNAME)
+                        } else {
+                            addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
+                        }
+                    }
+                    addStatement(
+                        "return ($T) $N.get($S)",
+                        arg.type.typeName(),
+                        hashMapFieldSpec.name,
+                        arg.name
+                    )
+                    returns(arg.type.typeName())
+                }
+                .build()
+        }
+
+    fun equalsMethod(className: ClassName, additionalCode: CodeBlock? = null) =
+        MethodSpec.methodBuilder("equals")
+            .apply {
+                addAnnotation(Override::class.java)
+                addModifiers(Modifier.PUBLIC)
+                addParameter(TypeName.OBJECT, "object")
+                addCode(
+                    """
                 if (this == object) {
                     return true;
                 }
@@ -539,123 +601,142 @@
                     return false;
                 }
 
-            """.trimIndent()
-        )
-        addStatement("$T that = ($T) object", className, className)
-        args.forEach { (name, type, _, _, sanitizedName) ->
-            beginControlFlow(
-                "if ($N.containsKey($S) != that.$N.containsKey($S))",
-                hashMapFieldSpec,
-                name,
-                hashMapFieldSpec,
-                name
-            ).apply {
-                addStatement("return false")
-            }.endControlFlow()
-            val getterName = getterFromArgName(sanitizedName, "()")
-            val compareExpression = when (type) {
-                IntType,
-                BoolType,
-                ReferenceType,
-                LongType -> "$getterName != that.$getterName"
-                FloatType -> "Float.compare(that.$getterName, $getterName) != 0"
-                StringType, IntArrayType, LongArrayType, FloatArrayType, StringArrayType,
-                BoolArrayType, ReferenceArrayType, is ObjectArrayType, is ObjectType ->
-                    "$getterName != null ? !$getterName.equals(that.$getterName) " +
-                        ": that.$getterName != null"
-                else -> throw IllegalStateException("unknown type: $type")
+            """
+                        .trimIndent()
+                )
+                addStatement("$T that = ($T) object", className, className)
+                args.forEach { (name, type, _, _, sanitizedName) ->
+                    beginControlFlow(
+                            "if ($N.containsKey($S) != that.$N.containsKey($S))",
+                            hashMapFieldSpec,
+                            name,
+                            hashMapFieldSpec,
+                            name
+                        )
+                        .apply { addStatement("return false") }
+                        .endControlFlow()
+                    val getterName = getterFromArgName(sanitizedName, "()")
+                    val compareExpression =
+                        when (type) {
+                            IntType,
+                            BoolType,
+                            ReferenceType,
+                            LongType -> "$getterName != that.$getterName"
+                            FloatType -> "Float.compare(that.$getterName, $getterName) != 0"
+                            StringType,
+                            IntArrayType,
+                            LongArrayType,
+                            FloatArrayType,
+                            StringArrayType,
+                            BoolArrayType,
+                            ReferenceArrayType,
+                            is ObjectArrayType,
+                            is ObjectType ->
+                                "$getterName != null ? !$getterName.equals(that.$getterName) " +
+                                    ": that.$getterName != null"
+                            else -> throw IllegalStateException("unknown type: $type")
+                        }
+                    beginControlFlow("if ($N)", compareExpression).apply {
+                        addStatement("return false")
+                    }
+                    endControlFlow()
+                }
+                if (additionalCode != null) {
+                    addCode(additionalCode)
+                }
+                addStatement("return true")
+                returns(TypeName.BOOLEAN)
             }
-            beginControlFlow("if ($N)", compareExpression).apply {
-                addStatement("return false")
-            }
-            endControlFlow()
-        }
-        if (additionalCode != null) {
-            addCode(additionalCode)
-        }
-        addStatement("return true")
-        returns(TypeName.BOOLEAN)
-    }.build()
+            .build()
 
     private fun getterFromArgName(sanitizedName: String, suffix: String = ""): String {
         val capitalizedName = sanitizedName.capitalize(Locale.US)
         return "get${capitalizedName}$suffix"
     }
 
-    fun hashCodeMethod(
-        additionalCode: CodeBlock? = null
-    ) = MethodSpec.methodBuilder("hashCode").apply {
-        addAnnotation(Override::class.java)
-        addModifiers(Modifier.PUBLIC)
-        addStatement("int result = 1")
-        args.forEach { (_, type, _, _, sanitizedName) ->
-            val getterName = getterFromArgName(sanitizedName, "()")
-            val hashCodeExpression = when (type) {
-                IntType, ReferenceType -> getterName
-                FloatType -> "Float.floatToIntBits($getterName)"
-                IntArrayType, LongArrayType, FloatArrayType, StringArrayType,
-                BoolArrayType, ReferenceArrayType, is ObjectArrayType ->
-                    "java.util.Arrays.hashCode($getterName)"
-                StringType, is ObjectType ->
-                    "($getterName != null ? $getterName.hashCode() : 0)"
-                BoolType -> "($getterName ? 1 : 0)"
-                LongType -> "(int)($getterName ^ ($getterName >>> 32))"
-                else -> throw IllegalStateException("unknown type: $type")
-            }
-            addStatement("result = 31 * result + $N", hashCodeExpression)
-        }
-        if (additionalCode != null) {
-            addCode(additionalCode)
-        }
-        addStatement("return result")
-        returns(TypeName.INT)
-    }.build()
-
-    fun toStringMethod(
-        className: ClassName,
-        toStringHeaderBlock: CodeBlock? = null
-    ) = MethodSpec.methodBuilder("toString").apply {
-        addAnnotation(Override::class.java)
-        addModifiers(Modifier.PUBLIC)
-        addCode(
-            CodeBlock.builder().apply {
-                if (toStringHeaderBlock != null) {
-                    add("${BEGIN_STMT}return $L", toStringHeaderBlock)
-                } else {
-                    add("${BEGIN_STMT}return $S", "${className.simpleName()}{")
-                }
-                args.forEachIndexed { index, (_, _, _, _, sanitizedName) ->
+    fun hashCodeMethod(additionalCode: CodeBlock? = null) =
+        MethodSpec.methodBuilder("hashCode")
+            .apply {
+                addAnnotation(Override::class.java)
+                addModifiers(Modifier.PUBLIC)
+                addStatement("int result = 1")
+                args.forEach { (_, type, _, _, sanitizedName) ->
                     val getterName = getterFromArgName(sanitizedName, "()")
-                    val prefix = if (index == 0) "" else ", "
-                    add("\n+ $S + $L", "$prefix$sanitizedName=", getterName)
+                    val hashCodeExpression =
+                        when (type) {
+                            IntType,
+                            ReferenceType -> getterName
+                            FloatType -> "Float.floatToIntBits($getterName)"
+                            IntArrayType,
+                            LongArrayType,
+                            FloatArrayType,
+                            StringArrayType,
+                            BoolArrayType,
+                            ReferenceArrayType,
+                            is ObjectArrayType -> "java.util.Arrays.hashCode($getterName)"
+                            StringType,
+                            is ObjectType -> "($getterName != null ? $getterName.hashCode() : 0)"
+                            BoolType -> "($getterName ? 1 : 0)"
+                            LongType -> "(int)($getterName ^ ($getterName >>> 32))"
+                            else -> throw IllegalStateException("unknown type: $type")
+                        }
+                    addStatement("result = 31 * result + $N", hashCodeExpression)
                 }
-                add("\n+ $S;\n$END_STMT", "}")
-            }.build()
-        )
-        returns(ClassName.get(String::class.java))
-    }.build()
+                if (additionalCode != null) {
+                    addCode(additionalCode)
+                }
+                addStatement("return result")
+                returns(TypeName.INT)
+            }
+            .build()
+
+    fun toStringMethod(className: ClassName, toStringHeaderBlock: CodeBlock? = null) =
+        MethodSpec.methodBuilder("toString")
+            .apply {
+                addAnnotation(Override::class.java)
+                addModifiers(Modifier.PUBLIC)
+                addCode(
+                    CodeBlock.builder()
+                        .apply {
+                            if (toStringHeaderBlock != null) {
+                                add("${BEGIN_STMT}return $L", toStringHeaderBlock)
+                            } else {
+                                add("${BEGIN_STMT}return $S", "${className.simpleName()}{")
+                            }
+                            args.forEachIndexed { index, (_, _, _, _, sanitizedName) ->
+                                val getterName = getterFromArgName(sanitizedName, "()")
+                                val prefix = if (index == 0) "" else ", "
+                                add("\n+ $S + $L", "$prefix$sanitizedName=", getterName)
+                            }
+                            add("\n+ $S;\n$END_STMT", "}")
+                        }
+                        .build()
+                )
+                returns(ClassName.get(String::class.java))
+            }
+            .build()
 
     private fun generateParameterSpec(arg: Argument): ParameterSpec {
-        return ParameterSpec.builder(arg.type.typeName(), arg.sanitizedName).apply {
-            if (arg.type.allowsNullable()) {
-                if (arg.isNullable) {
-                    addAnnotation(androidAnnotations.NULLABLE_CLASSNAME)
-                } else {
-                    addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
+        return ParameterSpec.builder(arg.type.typeName(), arg.sanitizedName)
+            .apply {
+                if (arg.type.allowsNullable()) {
+                    if (arg.isNullable) {
+                        addAnnotation(androidAnnotations.NULLABLE_CLASSNAME)
+                    } else {
+                        addAnnotation(androidAnnotations.NONNULL_CLASSNAME)
+                    }
                 }
             }
-        }.build()
+            .build()
     }
 }
 
-internal fun MethodSpec.Builder.addNullCheck(
-    arg: Argument,
-    variableName: String
-) {
+internal fun MethodSpec.Builder.addNullCheck(arg: Argument, variableName: String) {
     if (arg.type.allowsNullable() && !arg.isNullable) {
         beginControlFlow("if ($N == null)", variableName).apply {
             addStatement(
-                "throw new $T($S)", IllegalArgumentException::class.java,
+                "throw new $T($S)",
+                IllegalArgumentException::class.java,
                 "Argument \"${arg.name}\" is marked as non-null but was passed a null value."
             )
         }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaTypes.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaTypes.kt
index d76fabd..f7ddcb1 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaTypes.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/java/JavaTypes.kt
@@ -77,11 +77,12 @@
     }
 
     companion object {
-        fun getInstance(useAndroidX: Boolean) = if (useAndroidX) {
-            AndroidXAnnotations
-        } else {
-            AndroidAnnotations
-        }
+        fun getInstance(useAndroidX: Boolean) =
+            if (useAndroidX) {
+                AndroidXAnnotations
+            } else {
+                AndroidAnnotations
+            }
     }
 }
 
@@ -90,199 +91,223 @@
     arg: Argument,
     lValue: String,
     bundle: String
-): MethodSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        beginControlFlow(
-            "if ($T.class.isAssignableFrom($T.class) " +
-                "|| $T.class.isAssignableFrom($T.class))",
-            PARCELABLE_CLASSNAME, arg.type.typeName(),
-            SERIALIZABLE_CLASSNAME, arg.type.typeName()
-        ).apply {
-            addStatement(
-                "$N = ($T) $N.$N($S)",
-                lValue, arg.type.typeName(), bundle, "get", arg.name
-            )
-        }.nextControlFlow("else").apply {
-            addStatement(
-                "throw new UnsupportedOperationException($T.class.getName() + " +
-                    "\" must implement Parcelable or Serializable " +
-                    "or must be an Enum.\")",
-                arg.type.typeName()
-            )
-        }.endControlFlow()
+): MethodSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                beginControlFlow(
+                        "if ($T.class.isAssignableFrom($T.class) " +
+                            "|| $T.class.isAssignableFrom($T.class))",
+                        PARCELABLE_CLASSNAME,
+                        arg.type.typeName(),
+                        SERIALIZABLE_CLASSNAME,
+                        arg.type.typeName()
+                    )
+                    .apply {
+                        addStatement(
+                            "$N = ($T) $N.$N($S)",
+                            lValue,
+                            arg.type.typeName(),
+                            bundle,
+                            "get",
+                            arg.name
+                        )
+                    }
+                    .nextControlFlow("else")
+                    .apply {
+                        addStatement(
+                            "throw new UnsupportedOperationException($T.class.getName() + " +
+                                "\" must implement Parcelable or Serializable " +
+                                "or must be an Enum.\")",
+                            arg.type.typeName()
+                        )
+                    }
+                    .endControlFlow()
+            }
+        is ObjectArrayType ->
+            builder.apply {
+                val arrayName = "__array"
+                val baseType = (arg.type.typeName() as ArrayTypeName).componentType
+                addStatement(
+                    "$T[] $N = $N.$N($S)",
+                    PARCELABLE_CLASSNAME,
+                    arrayName,
+                    bundle,
+                    bundleGetMethod(),
+                    arg.name
+                )
+                beginControlFlow("if ($N != null)", arrayName).apply {
+                    addStatement("$N = new $T[$N.length]", lValue, baseType, arrayName)
+                    addStatement(
+                        "$T.arraycopy($N, 0, $N, 0, $N.length)",
+                        SYSTEM_CLASSNAME,
+                        arrayName,
+                        lValue,
+                        arrayName
+                    )
+                }
+                nextControlFlow("else").apply { addStatement("$N = null", lValue) }
+                endControlFlow()
+            }
+        else -> builder.addStatement("$N = $N.$N($S)", lValue, bundle, bundleGetMethod(), arg.name)
     }
-    is ObjectArrayType -> builder.apply {
-        val arrayName = "__array"
-        val baseType = (arg.type.typeName() as ArrayTypeName).componentType
-        addStatement(
-            "$T[] $N = $N.$N($S)",
-            PARCELABLE_CLASSNAME, arrayName, bundle, bundleGetMethod(), arg.name
-        )
-        beginControlFlow("if ($N != null)", arrayName).apply {
-            addStatement("$N = new $T[$N.length]", lValue, baseType, arrayName)
-            addStatement(
-                "$T.arraycopy($N, 0, $N, 0, $N.length)",
-                SYSTEM_CLASSNAME, arrayName, lValue, arrayName
-            )
-        }
-        nextControlFlow("else").apply {
-            addStatement("$N = null", lValue)
-        }
-        endControlFlow()
-    }
-    else -> builder.addStatement(
-        "$N = $N.$N($S)",
-        lValue,
-        bundle,
-        bundleGetMethod(),
-        arg.name
-    )
-}
 
 internal fun NavType.addBundlePutStatement(
     builder: MethodSpec.Builder,
     arg: Argument,
     bundle: String,
     argValue: String
-): MethodSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        beginControlFlow(
-            "if ($T.class.isAssignableFrom($T.class) || $N == null)",
-            PARCELABLE_CLASSNAME, arg.type.typeName(), argValue
-        ).apply {
-            addStatement(
-                "$N.$N($S, $T.class.cast($N))",
-                bundle, "putParcelable", arg.name, PARCELABLE_CLASSNAME, argValue
-            )
-        }.nextControlFlow(
-            "else if ($T.class.isAssignableFrom($T.class))",
-            SERIALIZABLE_CLASSNAME, arg.type.typeName()
-        ).apply {
-            addStatement(
-                "$N.$N($S, $T.class.cast($N))",
-                bundle, "putSerializable", arg.name, SERIALIZABLE_CLASSNAME, argValue
-            )
-        }.nextControlFlow("else").apply {
-            addStatement(
-                "throw new UnsupportedOperationException($T.class.getName() + " +
-                    "\" must implement Parcelable or Serializable or must be an Enum.\")",
-                arg.type.typeName()
-            )
-        }.endControlFlow()
+): MethodSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                beginControlFlow(
+                        "if ($T.class.isAssignableFrom($T.class) || $N == null)",
+                        PARCELABLE_CLASSNAME,
+                        arg.type.typeName(),
+                        argValue
+                    )
+                    .apply {
+                        addStatement(
+                            "$N.$N($S, $T.class.cast($N))",
+                            bundle,
+                            "putParcelable",
+                            arg.name,
+                            PARCELABLE_CLASSNAME,
+                            argValue
+                        )
+                    }
+                    .nextControlFlow(
+                        "else if ($T.class.isAssignableFrom($T.class))",
+                        SERIALIZABLE_CLASSNAME,
+                        arg.type.typeName()
+                    )
+                    .apply {
+                        addStatement(
+                            "$N.$N($S, $T.class.cast($N))",
+                            bundle,
+                            "putSerializable",
+                            arg.name,
+                            SERIALIZABLE_CLASSNAME,
+                            argValue
+                        )
+                    }
+                    .nextControlFlow("else")
+                    .apply {
+                        addStatement(
+                            "throw new UnsupportedOperationException($T.class.getName() + " +
+                                "\" must implement Parcelable or Serializable or must be an Enum.\")",
+                            arg.type.typeName()
+                        )
+                    }
+                    .endControlFlow()
+            }
+        else -> builder.addStatement("$N.$N($S, $N)", bundle, bundlePutMethod(), arg.name, argValue)
     }
-    else -> builder.addStatement(
-        "$N.$N($S, $N)",
-        bundle,
-        bundlePutMethod(),
-        arg.name,
-        argValue
-    )
-}
 
 internal fun NavType.addBundlePutStatement(
     builder: MethodSpec.Builder,
     arg: Argument,
     bundle: String,
     argValue: CodeBlock
-): MethodSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        addStatement(
-            "$N.$N($S, $L)",
-            bundle, "putSerializable", arg.name, argValue
-        )
+): MethodSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                addStatement("$N.$N($S, $L)", bundle, "putSerializable", arg.name, argValue)
+            }
+        else -> builder.addStatement("$N.$N($S, $L)", bundle, bundlePutMethod(), arg.name, argValue)
     }
-    else -> builder.addStatement(
-        "$N.$N($S, $L)",
-        bundle,
-        bundlePutMethod(),
-        arg.name,
-        argValue
-    )
-}
 
 internal fun NavType.addSavedStateHandleSetStatement(
     builder: MethodSpec.Builder,
     arg: Argument,
     savedStateHandle: String,
     argValue: String
-): MethodSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        beginControlFlow(
-            "if ($T.class.isAssignableFrom($T.class) || $N == null)",
-            PARCELABLE_CLASSNAME, arg.type.typeName(), argValue
-        ).apply {
-            addStatement(
-                "$N.set($S, $T.class.cast($N))",
-                savedStateHandle, arg.name, PARCELABLE_CLASSNAME, argValue
-            )
-        }.nextControlFlow(
-            "else if ($T.class.isAssignableFrom($T.class))",
-            SERIALIZABLE_CLASSNAME, arg.type.typeName()
-        ).apply {
-            addStatement(
-                "$N.set($S, $T.class.cast($N))",
-                savedStateHandle, arg.name, SERIALIZABLE_CLASSNAME, argValue
-            )
-        }.nextControlFlow("else").apply {
-            addStatement(
-                "throw new UnsupportedOperationException($T.class.getName() + " +
-                    "\" must implement Parcelable or Serializable or must be an Enum.\")",
-                arg.type.typeName()
-            )
-        }.endControlFlow()
+): MethodSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                beginControlFlow(
+                        "if ($T.class.isAssignableFrom($T.class) || $N == null)",
+                        PARCELABLE_CLASSNAME,
+                        arg.type.typeName(),
+                        argValue
+                    )
+                    .apply {
+                        addStatement(
+                            "$N.set($S, $T.class.cast($N))",
+                            savedStateHandle,
+                            arg.name,
+                            PARCELABLE_CLASSNAME,
+                            argValue
+                        )
+                    }
+                    .nextControlFlow(
+                        "else if ($T.class.isAssignableFrom($T.class))",
+                        SERIALIZABLE_CLASSNAME,
+                        arg.type.typeName()
+                    )
+                    .apply {
+                        addStatement(
+                            "$N.set($S, $T.class.cast($N))",
+                            savedStateHandle,
+                            arg.name,
+                            SERIALIZABLE_CLASSNAME,
+                            argValue
+                        )
+                    }
+                    .nextControlFlow("else")
+                    .apply {
+                        addStatement(
+                            "throw new UnsupportedOperationException($T.class.getName() + " +
+                                "\" must implement Parcelable or Serializable or must be an Enum.\")",
+                            arg.type.typeName()
+                        )
+                    }
+                    .endControlFlow()
+            }
+        else -> builder.addStatement("$N.set($S, $N)", savedStateHandle, arg.name, argValue)
     }
-    else -> builder.addStatement(
-        "$N.set($S, $N)",
-        savedStateHandle,
-        arg.name,
-        argValue
-    )
-}
 
 internal fun NavType.addSavedStateHandleSetStatement(
     builder: MethodSpec.Builder,
     arg: Argument,
     savedStateHandle: String,
     argValue: CodeBlock
-): MethodSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        addStatement(
-            "$N.set($S, $L)",
-            savedStateHandle, arg.name, argValue
-        )
+): MethodSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply { addStatement("$N.set($S, $L)", savedStateHandle, arg.name, argValue) }
+        else -> builder.addStatement("$N.set($S, $L)", savedStateHandle, arg.name, argValue)
     }
-    else -> builder.addStatement(
-        "$N.set($S, $L)",
-        savedStateHandle,
-        arg.name,
-        argValue
-    )
-}
 
-internal fun NavType.typeName(): TypeName = when (this) {
-    IntType -> TypeName.INT
-    IntArrayType -> ArrayTypeName.of(TypeName.INT)
-    LongType -> TypeName.LONG
-    LongArrayType -> ArrayTypeName.of(TypeName.LONG)
-    FloatType -> TypeName.FLOAT
-    FloatArrayType -> ArrayTypeName.of(TypeName.FLOAT)
-    StringType -> ClassName.get(String::class.java)
-    StringArrayType -> ArrayTypeName.of(ClassName.get(String::class.java))
-    BoolType -> TypeName.BOOLEAN
-    BoolArrayType -> ArrayTypeName.of(TypeName.BOOLEAN)
-    ReferenceType -> TypeName.INT
-    ReferenceArrayType -> ArrayTypeName.of(TypeName.INT)
-    is ObjectType ->
-        canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
-            ClassName.get(packageName, simpleName, *innerNames)
-        }
-    is ObjectArrayType -> ArrayTypeName.of(
-        canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
-            ClassName.get(packageName, simpleName, *innerNames)
-        }
-    )
-    else -> throw IllegalStateException("Unknown type: $this")
-}
+internal fun NavType.typeName(): TypeName =
+    when (this) {
+        IntType -> TypeName.INT
+        IntArrayType -> ArrayTypeName.of(TypeName.INT)
+        LongType -> TypeName.LONG
+        LongArrayType -> ArrayTypeName.of(TypeName.LONG)
+        FloatType -> TypeName.FLOAT
+        FloatArrayType -> ArrayTypeName.of(TypeName.FLOAT)
+        StringType -> ClassName.get(String::class.java)
+        StringArrayType -> ArrayTypeName.of(ClassName.get(String::class.java))
+        BoolType -> TypeName.BOOLEAN
+        BoolArrayType -> ArrayTypeName.of(TypeName.BOOLEAN)
+        ReferenceType -> TypeName.INT
+        ReferenceArrayType -> ArrayTypeName.of(TypeName.INT)
+        is ObjectType ->
+            canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
+                ClassName.get(packageName, simpleName, *innerNames)
+            }
+        is ObjectArrayType ->
+            ArrayTypeName.of(
+                canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
+                    ClassName.get(packageName, simpleName, *innerNames)
+                }
+            )
+        else -> throw IllegalStateException("Unknown type: $this")
+    }
 
 internal fun WritableValue.write(): CodeBlock {
     return when (this) {
@@ -298,6 +323,6 @@
     }
 }
 
-internal fun ResReference?.accessor() = this?.let {
-    CodeBlock.of("$T.$N", ClassName.get(packageName, "R", resType), javaIdentifier)
-} ?: CodeBlock.of("0")
+internal fun ResReference?.accessor() =
+    this?.let { CodeBlock.of("$T.$N", ClassName.get(packageName, "R", resType), javaIdentifier) }
+        ?: CodeBlock.of("0")
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinNavWriter.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinNavWriter.kt
index b1021c3..18eebe1 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinNavWriter.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinNavWriter.kt
@@ -39,42 +39,47 @@
         destination: Destination,
         parentDirectionsFileList: List<KotlinCodeFile>
     ): KotlinCodeFile {
-        val destName = destination.name
-            ?: throw IllegalStateException("Destination with actions must have name")
+        val destName =
+            destination.name
+                ?: throw IllegalStateException("Destination with actions must have name")
         val className = ClassName(destName.packageName(), "${destName.simpleName()}Directions")
 
-        val actionTypes = destination.actions.map { action ->
-            action to generateDirectionTypeSpec(action)
-        }
+        val actionTypes =
+            destination.actions.map { action -> action to generateDirectionTypeSpec(action) }
 
-        val actionsFunSpec = actionTypes.map { (action, actionTypeSpec) ->
-            val typeName = ClassName("", actionTypeSpec.name!!)
-            val parameters = action.args.map { arg ->
-                ParameterSpec.builder(
-                    name = arg.sanitizedName,
-                    type = arg.type.typeName().copy(nullable = arg.isNullable)
-                ).apply {
-                    arg.defaultValue?.let {
-                        defaultValue(it.write())
+        val actionsFunSpec =
+            actionTypes.map { (action, actionTypeSpec) ->
+                val typeName = ClassName("", actionTypeSpec.name!!)
+                val parameters =
+                    action.args
+                        .map { arg ->
+                            ParameterSpec.builder(
+                                    name = arg.sanitizedName,
+                                    type = arg.type.typeName().copy(nullable = arg.isNullable)
+                                )
+                                .apply { arg.defaultValue?.let { defaultValue(it.write()) } }
+                                .build()
+                        }
+                        .sortedBy { it.defaultValue != null }
+                FunSpec.builder(action.id.javaIdentifier.toCamelCaseAsVar())
+                    .apply {
+                        returns(NAV_DIRECTION_CLASSNAME)
+                        addParameters(parameters)
+                        if (action.args.isEmpty()) {
+                            addStatement(
+                                "return %T(%L)",
+                                ACTION_ONLY_NAV_DIRECTION_CLASSNAME,
+                                action.id.accessor()
+                            )
+                        } else {
+                            addStatement(
+                                "return %T(${parameters.joinToString(", ") { it.name }})",
+                                typeName
+                            )
+                        }
                     }
-                }.build()
-            }.sortedBy { it.defaultValue != null }
-            FunSpec.builder(action.id.javaIdentifier.toCamelCaseAsVar()).apply {
-                returns(NAV_DIRECTION_CLASSNAME)
-                addParameters(parameters)
-                if (action.args.isEmpty()) {
-                    addStatement(
-                        "return %T(%L)",
-                        ACTION_ONLY_NAV_DIRECTION_CLASSNAME, action.id.accessor()
-                    )
-                } else {
-                    addStatement(
-                        "return %T(${parameters.joinToString(", ") { it.name }})",
-                        typeName
-                    )
-                }
-            }.build()
-        }
+                    .build()
+            }
 
         // The parent destination list is ordered from the closest to the farthest parent of the
         // processing destination in the graph hierarchy.
@@ -83,40 +88,45 @@
             val parentPackageName = it.wrapped.packageName
             val parentTypeSpec = it.wrapped.members.filterIsInstance(TypeSpec::class.java).first()
             val parentCompanionTypeSpec = parentTypeSpec.typeSpecs.first { it.isCompanion }
-            parentCompanionTypeSpec.funSpecs.filter { function ->
-                actionsFunSpec.none { it.name == function.name } && // de-dupe local actions
-                    parentActionsFunSpec.none { it.name == function.name } // de-dupe parent actions
-            }.forEach { functionSpec ->
-                val params = functionSpec.parameters.joinToString(", ") { param -> param.name }
-                val methodSpec = FunSpec.builder(functionSpec.name)
-                    .addParameters(functionSpec.parameters)
-                    .returns(NAV_DIRECTION_CLASSNAME)
-                    .addStatement(
-                        "return %T.%L($params)",
-                        ClassName(parentPackageName, parentTypeSpec.name!!), functionSpec.name
-                    )
-                    .build()
-                parentActionsFunSpec.add(methodSpec)
-            }
+            parentCompanionTypeSpec.funSpecs
+                .filter { function ->
+                    actionsFunSpec.none { it.name == function.name } && // de-dupe local actions
+                        parentActionsFunSpec.none {
+                            it.name == function.name
+                        } // de-dupe parent actions
+                }
+                .forEach { functionSpec ->
+                    val params = functionSpec.parameters.joinToString(", ") { param -> param.name }
+                    val methodSpec =
+                        FunSpec.builder(functionSpec.name)
+                            .addParameters(functionSpec.parameters)
+                            .returns(NAV_DIRECTION_CLASSNAME)
+                            .addStatement(
+                                "return %T.%L($params)",
+                                ClassName(parentPackageName, parentTypeSpec.name!!),
+                                functionSpec.name
+                            )
+                            .build()
+                    parentActionsFunSpec.add(methodSpec)
+                }
         }
 
-        val typeSpec = TypeSpec.classBuilder(className)
-            .primaryConstructor(
-                FunSpec.constructorBuilder()
-                    .addModifiers(KModifier.PRIVATE)
-                    .build()
-            )
-            .addTypes(
-                actionTypes
-                    .filter { (action, _) -> action.args.isNotEmpty() }
-                    .map { (_, type) -> type }
-            )
-            .addType(
-                TypeSpec.companionObjectBuilder()
-                    .addFunctions(actionsFunSpec + parentActionsFunSpec)
-                    .build()
-            )
-            .build()
+        val typeSpec =
+            TypeSpec.classBuilder(className)
+                .primaryConstructor(
+                    FunSpec.constructorBuilder().addModifiers(KModifier.PRIVATE).build()
+                )
+                .addTypes(
+                    actionTypes
+                        .filter { (action, _) -> action.args.isNotEmpty() }
+                        .map { (_, type) -> type }
+                )
+                .addType(
+                    TypeSpec.companionObjectBuilder()
+                        .addFunctions(actionsFunSpec + parentActionsFunSpec)
+                        .build()
+                )
+                .build()
 
         return FileSpec.builder(className.packageName, className.simpleName)
             .addType(typeSpec)
@@ -129,64 +139,72 @@
 
         val actionIdPropSpec =
             PropertySpec.builder("actionId", Int::class, KModifier.PUBLIC, KModifier.OVERRIDE)
-                .initializer("%L", action.id.accessor()).build()
+                .initializer("%L", action.id.accessor())
+                .build()
 
         val argumentsPropSpec =
             PropertySpec.builder(
-                "arguments",
-                BUNDLE_CLASSNAME,
-                KModifier.PUBLIC,
-                KModifier.OVERRIDE
-            )
+                    "arguments",
+                    BUNDLE_CLASSNAME,
+                    KModifier.PUBLIC,
+                    KModifier.OVERRIDE
+                )
                 .getter(
-                    FunSpec.getterBuilder().apply {
-                        if (action.args.any { it.type is ObjectType }) {
-                            addAnnotation(CAST_NEVER_SUCCEEDS)
+                    FunSpec.getterBuilder()
+                        .apply {
+                            if (action.args.any { it.type is ObjectType }) {
+                                addAnnotation(CAST_NEVER_SUCCEEDS)
+                            }
+                            val resultVal = "result"
+                            addStatement("val %L = %T()", resultVal, BUNDLE_CLASSNAME)
+                            action.args.forEach { arg ->
+                                arg.type.addBundlePutStatement(
+                                    this,
+                                    arg,
+                                    resultVal,
+                                    "this.${arg.sanitizedName}"
+                                )
+                            }
+                            addStatement("return %L", resultVal)
                         }
-                        val resultVal = "result"
-                        addStatement("val %L = %T()", resultVal, BUNDLE_CLASSNAME)
-                        action.args.forEach { arg ->
-                            arg.type.addBundlePutStatement(
-                                this,
-                                arg,
-                                resultVal,
-                                "this.${arg.sanitizedName}"
-                            )
-                        }
-                        addStatement("return %L", resultVal)
-                    }.build()
-                ).build()
+                        .build()
+                )
+                .build()
 
-        val constructorFunSpec = FunSpec.constructorBuilder()
-            .addParameters(
-                action.args.map { arg ->
-                    ParameterSpec.builder(
-                        name = arg.sanitizedName,
-                        type = arg.type.typeName().copy(nullable = arg.isNullable)
-                    ).apply {
-                        arg.defaultValue?.let {
-                            defaultValue(it.write())
+        val constructorFunSpec =
+            FunSpec.constructorBuilder()
+                .addParameters(
+                    action.args
+                        .map { arg ->
+                            ParameterSpec.builder(
+                                    name = arg.sanitizedName,
+                                    type = arg.type.typeName().copy(nullable = arg.isNullable)
+                                )
+                                .apply { arg.defaultValue?.let { defaultValue(it.write()) } }
+                                .build()
                         }
-                    }.build()
-                }.sortedBy { it.defaultValue != null }
-            )
-            .build()
+                        .sortedBy { it.defaultValue != null }
+                )
+                .build()
 
         return if (action.args.isEmpty()) {
-            TypeSpec.objectBuilder(className)
-        } else {
-            TypeSpec.classBuilder(className)
-                .addModifiers(KModifier.DATA)
-                .primaryConstructor(constructorFunSpec)
-                .addProperties(
-                    action.args.map { arg ->
-                        PropertySpec.builder(
-                            arg.sanitizedName,
-                            arg.type.typeName().copy(nullable = arg.isNullable)
-                        ).initializer(arg.sanitizedName).build()
-                    }
-                )
-        }.addSuperinterface(NAV_DIRECTION_CLASSNAME)
+                TypeSpec.objectBuilder(className)
+            } else {
+                TypeSpec.classBuilder(className)
+                    .addModifiers(KModifier.DATA)
+                    .primaryConstructor(constructorFunSpec)
+                    .addProperties(
+                        action.args.map { arg ->
+                            PropertySpec.builder(
+                                    arg.sanitizedName,
+                                    arg.type.typeName().copy(nullable = arg.isNullable)
+                                )
+                                .initializer(arg.sanitizedName)
+                                .build()
+                        }
+                    )
+            }
+            .addSuperinterface(NAV_DIRECTION_CLASSNAME)
             .addModifiers(KModifier.PRIVATE)
             .addProperty(actionIdPropSpec)
             .addProperty(argumentsPropSpec)
@@ -194,183 +212,232 @@
     }
 
     override fun generateArgsCodeFile(destination: Destination): KotlinCodeFile {
-        val destName = destination.name
-            ?: throw IllegalStateException("Destination with actions must have name")
+        val destName =
+            destination.name
+                ?: throw IllegalStateException("Destination with actions must have name")
         val className = ClassName(destName.packageName(), "${destName.simpleName()}Args")
 
-        val constructorFunSpec = FunSpec.constructorBuilder()
-            .addParameters(
-                destination.args.map { arg ->
-                    ParameterSpec.builder(
-                        name = arg.sanitizedName,
-                        type = arg.type.typeName().copy(nullable = arg.isNullable)
-                    ).apply { arg.defaultValue?.let { defaultValue(it.write()) } }.build()
-                }.sortedBy { it.defaultValue != null }
-            )
-            .build()
+        val constructorFunSpec =
+            FunSpec.constructorBuilder()
+                .addParameters(
+                    destination.args
+                        .map { arg ->
+                            ParameterSpec.builder(
+                                    name = arg.sanitizedName,
+                                    type = arg.type.typeName().copy(nullable = arg.isNullable)
+                                )
+                                .apply { arg.defaultValue?.let { defaultValue(it.write()) } }
+                                .build()
+                        }
+                        .sortedBy { it.defaultValue != null }
+                )
+                .build()
 
-        val toBundleFunSpec = FunSpec.builder("toBundle").apply {
-            if (destination.args.any { it.type is ObjectType }) {
-                addAnnotation(CAST_NEVER_SUCCEEDS)
-            }
-            returns(BUNDLE_CLASSNAME)
-            val resultVal = "result"
-            addStatement("val %L = %T()", resultVal, BUNDLE_CLASSNAME)
-            destination.args.forEach { arg ->
-                arg.type.addBundlePutStatement(this, arg, resultVal, "this.${arg.sanitizedName}")
-            }
-            addStatement("return %L", resultVal)
-        }.build()
-
-        val fromBundleFunSpec = FunSpec.builder("fromBundle").apply {
-            addAnnotation(JvmStatic::class)
-            if (destination.args.any { it.type is ObjectArrayType }) {
-                addAnnotation(
-                    AnnotationSpec.builder(Suppress::class)
-                        .addMember("%S,%S", "UNCHECKED_CAST", "DEPRECATION")
-                        .build()
-                )
-            } else if (destination.args.any { it.type is ObjectType }) {
-                addAnnotation(
-                    AnnotationSpec.builder(Suppress::class)
-                        .addMember("%S", "DEPRECATION")
-                        .build()
-                )
-            }
-            returns(className)
-            val bundleParamName = "bundle"
-            addParameter(bundleParamName, BUNDLE_CLASSNAME)
-            addStatement(
-                "%L.setClassLoader(%T::class.java.classLoader)",
-                bundleParamName,
-                className
-            )
-            val tempVariables = destination.args.map { arg ->
-                val tempVal = "__${arg.sanitizedName}"
-                addStatement(
-                    "val %L : %T",
-                    tempVal,
-                    arg.type.typeName().copy(nullable = arg.type.allowsNullable())
-                )
-                beginControlFlow("if (%L.containsKey(%S))", bundleParamName, arg.name)
-                arg.type.addBundleGetStatement(this, arg, tempVal, bundleParamName)
-                if (arg.type.allowsNullable() && !arg.isNullable) {
-                    beginControlFlow("if (%L == null)", tempVal).apply {
-                        addStatement(
-                            "throw·%T(%S)",
-                            IllegalArgumentException::class.asTypeName(),
-                            "Argument \"${arg.name}\" is marked as non-null but was passed a " +
-                                "null value."
+        val toBundleFunSpec =
+            FunSpec.builder("toBundle")
+                .apply {
+                    if (destination.args.any { it.type is ObjectType }) {
+                        addAnnotation(CAST_NEVER_SUCCEEDS)
+                    }
+                    returns(BUNDLE_CLASSNAME)
+                    val resultVal = "result"
+                    addStatement("val %L = %T()", resultVal, BUNDLE_CLASSNAME)
+                    destination.args.forEach { arg ->
+                        arg.type.addBundlePutStatement(
+                            this,
+                            arg,
+                            resultVal,
+                            "this.${arg.sanitizedName}"
                         )
                     }
-                    endControlFlow()
+                    addStatement("return %L", resultVal)
                 }
-                nextControlFlow("else")
-                val defaultValue = arg.defaultValue
-                if (defaultValue != null) {
-                    addStatement("%L = %L", tempVal, arg.defaultValue.write())
-                } else {
-                    addStatement(
-                        "throw·%T(%S)",
-                        IllegalArgumentException::class.asTypeName(),
-                        "Required argument \"${arg.name}\" is missing and does not have an " +
-                            "android:defaultValue"
-                    )
-                }
-                endControlFlow()
-                arg
-            }.sortedBy { it.defaultValue != null }
-            addStatement(
-                "return·%T(${tempVariables.joinToString(", ") { "__${it.sanitizedName}" }})",
-                className
-            )
-        }.build()
+                .build()
 
-        val toSavedStateHandleFunSpec = FunSpec.builder("toSavedStateHandle").apply {
-            if (destination.args.any { it.type is ObjectType }) {
-                addAnnotation(CAST_NEVER_SUCCEEDS)
-            }
-            returns(SAVED_STATE_HANDLE_CLASSNAME)
-            val resultVal = "result"
-            addStatement("val %L = %T()", resultVal, SAVED_STATE_HANDLE_CLASSNAME)
-            destination.args.forEach { arg ->
-                arg.type.addSavedStateSetStatement(
-                    this, arg, resultVal, "this.${arg.sanitizedName}"
-                )
-            }
-            addStatement("return %L", resultVal)
-        }.build()
-
-        val fromSavedStateHandleFunSpec = FunSpec.builder("fromSavedStateHandle").apply {
-            addAnnotation(JvmStatic::class)
-            returns(className)
-            val savedStateParamName = "savedStateHandle"
-            addParameter(savedStateParamName, SAVED_STATE_HANDLE_CLASSNAME)
-            val tempVariables = destination.args.map { arg ->
-                val tempVal = "__${arg.sanitizedName}"
-                addStatement(
-                    "val %L : %T",
-                    tempVal,
-                    arg.type.typeName().copy(nullable = true)
-                )
-                beginControlFlow("if (%L.contains(%S))", savedStateParamName, arg.name)
-                arg.type.addSavedStateGetStatement(this, arg, tempVal, savedStateParamName)
-                if (!arg.isNullable) {
-                    beginControlFlow("if (%L == null)", tempVal)
-                    val errorMessage = if (arg.type.allowsNullable()) {
-                        "Argument \"${arg.name}\" is marked as non-null but was passed a null value"
-                    } else {
-                        "Argument \"${arg.name}\" of type ${arg.type} does not support null values"
+        val fromBundleFunSpec =
+            FunSpec.builder("fromBundle")
+                .apply {
+                    addAnnotation(JvmStatic::class)
+                    if (destination.args.any { it.type is ObjectArrayType }) {
+                        addAnnotation(
+                            AnnotationSpec.builder(Suppress::class)
+                                .addMember("%S,%S", "UNCHECKED_CAST", "DEPRECATION")
+                                .build()
+                        )
+                    } else if (destination.args.any { it.type is ObjectType }) {
+                        addAnnotation(
+                            AnnotationSpec.builder(Suppress::class)
+                                .addMember("%S", "DEPRECATION")
+                                .build()
+                        )
                     }
+                    returns(className)
+                    val bundleParamName = "bundle"
+                    addParameter(bundleParamName, BUNDLE_CLASSNAME)
                     addStatement(
-                        "throw·%T(%S)",
-                        IllegalArgumentException::class.asTypeName(),
-                        errorMessage
+                        "%L.setClassLoader(%T::class.java.classLoader)",
+                        bundleParamName,
+                        className
                     )
-                    endControlFlow()
-                }
-                nextControlFlow("else")
-                val defaultValue = arg.defaultValue
-                if (defaultValue != null) {
-                    addStatement("%L = %L", tempVal, arg.defaultValue.write())
-                } else {
+                    val tempVariables =
+                        destination.args
+                            .map { arg ->
+                                val tempVal = "__${arg.sanitizedName}"
+                                addStatement(
+                                    "val %L : %T",
+                                    tempVal,
+                                    arg.type.typeName().copy(nullable = arg.type.allowsNullable())
+                                )
+                                beginControlFlow(
+                                    "if (%L.containsKey(%S))",
+                                    bundleParamName,
+                                    arg.name
+                                )
+                                arg.type.addBundleGetStatement(this, arg, tempVal, bundleParamName)
+                                if (arg.type.allowsNullable() && !arg.isNullable) {
+                                    beginControlFlow("if (%L == null)", tempVal).apply {
+                                        addStatement(
+                                            "throw·%T(%S)",
+                                            IllegalArgumentException::class.asTypeName(),
+                                            "Argument \"${arg.name}\" is marked as non-null but was passed a " +
+                                                "null value."
+                                        )
+                                    }
+                                    endControlFlow()
+                                }
+                                nextControlFlow("else")
+                                val defaultValue = arg.defaultValue
+                                if (defaultValue != null) {
+                                    addStatement("%L = %L", tempVal, arg.defaultValue.write())
+                                } else {
+                                    addStatement(
+                                        "throw·%T(%S)",
+                                        IllegalArgumentException::class.asTypeName(),
+                                        "Required argument \"${arg.name}\" is missing and does not have an " +
+                                            "android:defaultValue"
+                                    )
+                                }
+                                endControlFlow()
+                                arg
+                            }
+                            .sortedBy { it.defaultValue != null }
                     addStatement(
-                        "throw·%T(%S)",
-                        IllegalArgumentException::class.asTypeName(),
-                        "Required argument \"${arg.name}\" is missing and does not have an " +
-                            "android:defaultValue"
+                        "return·%T(${tempVariables.joinToString(", ") { "__${it.sanitizedName}" }})",
+                        className
                     )
                 }
-                endControlFlow()
-                arg
-            }.sortedBy { it.defaultValue != null }
-            addStatement(
-                "return·%T(${tempVariables.joinToString(", ") { "__${it.sanitizedName}" }})",
-                className
-            )
-        }.build()
+                .build()
 
-        val typeSpec = TypeSpec.classBuilder(className)
-            .addSuperinterface(NAV_ARGS_CLASSNAME)
-            .addModifiers(KModifier.DATA)
-            .primaryConstructor(constructorFunSpec)
-            .addProperties(
-                destination.args.map { arg ->
-                    PropertySpec.builder(
-                        arg.sanitizedName,
-                        arg.type.typeName().copy(nullable = arg.isNullable)
-                    ).initializer(arg.sanitizedName).build()
+        val toSavedStateHandleFunSpec =
+            FunSpec.builder("toSavedStateHandle")
+                .apply {
+                    if (destination.args.any { it.type is ObjectType }) {
+                        addAnnotation(CAST_NEVER_SUCCEEDS)
+                    }
+                    returns(SAVED_STATE_HANDLE_CLASSNAME)
+                    val resultVal = "result"
+                    addStatement("val %L = %T()", resultVal, SAVED_STATE_HANDLE_CLASSNAME)
+                    destination.args.forEach { arg ->
+                        arg.type.addSavedStateSetStatement(
+                            this,
+                            arg,
+                            resultVal,
+                            "this.${arg.sanitizedName}"
+                        )
+                    }
+                    addStatement("return %L", resultVal)
                 }
-            )
-            .addFunction(toBundleFunSpec)
-            .addFunction(toSavedStateHandleFunSpec)
-            .addType(
-                TypeSpec.companionObjectBuilder()
-                    .addFunction(fromBundleFunSpec)
-                    .addFunction(fromSavedStateHandleFunSpec)
-                    .build()
-            )
-            .build()
+                .build()
+
+        val fromSavedStateHandleFunSpec =
+            FunSpec.builder("fromSavedStateHandle")
+                .apply {
+                    addAnnotation(JvmStatic::class)
+                    returns(className)
+                    val savedStateParamName = "savedStateHandle"
+                    addParameter(savedStateParamName, SAVED_STATE_HANDLE_CLASSNAME)
+                    val tempVariables =
+                        destination.args
+                            .map { arg ->
+                                val tempVal = "__${arg.sanitizedName}"
+                                addStatement(
+                                    "val %L : %T",
+                                    tempVal,
+                                    arg.type.typeName().copy(nullable = true)
+                                )
+                                beginControlFlow(
+                                    "if (%L.contains(%S))",
+                                    savedStateParamName,
+                                    arg.name
+                                )
+                                arg.type.addSavedStateGetStatement(
+                                    this,
+                                    arg,
+                                    tempVal,
+                                    savedStateParamName
+                                )
+                                if (!arg.isNullable) {
+                                    beginControlFlow("if (%L == null)", tempVal)
+                                    val errorMessage =
+                                        if (arg.type.allowsNullable()) {
+                                            "Argument \"${arg.name}\" is marked as non-null but was passed a null value"
+                                        } else {
+                                            "Argument \"${arg.name}\" of type ${arg.type} does not support null values"
+                                        }
+                                    addStatement(
+                                        "throw·%T(%S)",
+                                        IllegalArgumentException::class.asTypeName(),
+                                        errorMessage
+                                    )
+                                    endControlFlow()
+                                }
+                                nextControlFlow("else")
+                                val defaultValue = arg.defaultValue
+                                if (defaultValue != null) {
+                                    addStatement("%L = %L", tempVal, arg.defaultValue.write())
+                                } else {
+                                    addStatement(
+                                        "throw·%T(%S)",
+                                        IllegalArgumentException::class.asTypeName(),
+                                        "Required argument \"${arg.name}\" is missing and does not have an " +
+                                            "android:defaultValue"
+                                    )
+                                }
+                                endControlFlow()
+                                arg
+                            }
+                            .sortedBy { it.defaultValue != null }
+                    addStatement(
+                        "return·%T(${tempVariables.joinToString(", ") { "__${it.sanitizedName}" }})",
+                        className
+                    )
+                }
+                .build()
+
+        val typeSpec =
+            TypeSpec.classBuilder(className)
+                .addSuperinterface(NAV_ARGS_CLASSNAME)
+                .addModifiers(KModifier.DATA)
+                .primaryConstructor(constructorFunSpec)
+                .addProperties(
+                    destination.args.map { arg ->
+                        PropertySpec.builder(
+                                arg.sanitizedName,
+                                arg.type.typeName().copy(nullable = arg.isNullable)
+                            )
+                            .initializer(arg.sanitizedName)
+                            .build()
+                    }
+                )
+                .addFunction(toBundleFunSpec)
+                .addFunction(toSavedStateHandleFunSpec)
+                .addType(
+                    TypeSpec.companionObjectBuilder()
+                        .addFunction(fromBundleFunSpec)
+                        .addFunction(fromSavedStateHandleFunSpec)
+                        .build()
+                )
+                .build()
 
         return FileSpec.builder(className.packageName, className.simpleName)
             .addType(typeSpec)
@@ -385,8 +452,7 @@
          * reason being that Safe Args is not an annotation processor and cannot inspect the class
          * hierarchy to generate the correct cast branch only.
          */
-        val CAST_NEVER_SUCCEEDS = AnnotationSpec.builder(Suppress::class)
-            .addMember("%S", "CAST_NEVER_SUCCEEDS")
-            .build()
+        val CAST_NEVER_SUCCEEDS =
+            AnnotationSpec.builder(Suppress::class).addMember("%S", "CAST_NEVER_SUCCEEDS").build()
     }
 }
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinTypes.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinTypes.kt
index 5d74183..ed65d8c 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinTypes.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinTypes.kt
@@ -73,197 +73,220 @@
     arg: Argument,
     lValue: String,
     bundle: String
-): FunSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        beginControlFlow(
-            "if (%T::class.java.isAssignableFrom(%T::class.java) " +
-                "|| %T::class.java.isAssignableFrom(%T::class.java))",
-            PARCELABLE_CLASSNAME, arg.type.typeName(),
-            SERIALIZABLE_CLASSNAME, arg.type.typeName()
-        )
-        addStatement(
-            "%L = %L.%L(%S)·as·%T",
-            lValue, bundle, "get", arg.name, arg.type.typeName().copy(nullable = true)
-        )
-        nextControlFlow("else")
-        addStatement(
-            "throw·%T(%T::class.java.name + %S)",
-            UnsupportedOperationException::class.asTypeName(),
-            arg.type.typeName(),
-            " must implement Parcelable or Serializable or must be an Enum."
-        )
-        endControlFlow()
+): FunSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                beginControlFlow(
+                    "if (%T::class.java.isAssignableFrom(%T::class.java) " +
+                        "|| %T::class.java.isAssignableFrom(%T::class.java))",
+                    PARCELABLE_CLASSNAME,
+                    arg.type.typeName(),
+                    SERIALIZABLE_CLASSNAME,
+                    arg.type.typeName()
+                )
+                addStatement(
+                    "%L = %L.%L(%S)·as·%T",
+                    lValue,
+                    bundle,
+                    "get",
+                    arg.name,
+                    arg.type.typeName().copy(nullable = true)
+                )
+                nextControlFlow("else")
+                addStatement(
+                    "throw·%T(%T::class.java.name + %S)",
+                    UnsupportedOperationException::class.asTypeName(),
+                    arg.type.typeName(),
+                    " must implement Parcelable or Serializable or must be an Enum."
+                )
+                endControlFlow()
+            }
+        is ObjectArrayType ->
+            builder.apply {
+                val baseType = (arg.type.typeName() as ParameterizedTypeName).typeArguments.first()
+                addStatement(
+                    "%L = %L.%L(%S)?.map { it as %T }?.toTypedArray()",
+                    lValue,
+                    bundle,
+                    bundleGetMethod(),
+                    arg.name,
+                    baseType
+                )
+            }
+        else -> builder.addStatement("%L = %L.%L(%S)", lValue, bundle, bundleGetMethod(), arg.name)
     }
-    is ObjectArrayType -> builder.apply {
-        val baseType = (arg.type.typeName() as ParameterizedTypeName).typeArguments.first()
-        addStatement(
-            "%L = %L.%L(%S)?.map { it as %T }?.toTypedArray()",
-            lValue, bundle, bundleGetMethod(), arg.name, baseType
-        )
-    }
-    else -> builder.addStatement(
-        "%L = %L.%L(%S)",
-        lValue,
-        bundle,
-        bundleGetMethod(),
-        arg.name
-    )
-}
 
 internal fun NavType.addBundlePutStatement(
     builder: FunSpec.Builder,
     arg: Argument,
     bundle: String,
     argValue: String
-): FunSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        beginControlFlow(
-            "if (%T::class.java.isAssignableFrom(%T::class.java))",
-            PARCELABLE_CLASSNAME, arg.type.typeName()
-        )
-        addStatement(
-            "%L.%L(%S, %L as %T)",
-            bundle, "putParcelable", arg.name, argValue,
-            PARCELABLE_CLASSNAME.copy(nullable = arg.isNullable)
-        )
-        nextControlFlow(
-            "else if (%T::class.java.isAssignableFrom(%T::class.java))",
-            SERIALIZABLE_CLASSNAME, arg.type.typeName()
-        )
-        addStatement(
-            "%L.%L(%S, %L as %T)",
-            bundle, "putSerializable", arg.name, argValue,
-            SERIALIZABLE_CLASSNAME.copy(nullable = arg.isNullable)
-        )
-        if (!arg.isOptional()) {
-            nextControlFlow("else")
-            addStatement(
-                "throw·%T(%T::class.java.name + %S)",
-                UnsupportedOperationException::class.asTypeName(),
-                arg.type.typeName(),
-                " must implement Parcelable or Serializable or must be an Enum."
-            )
-        }
-        endControlFlow()
+): FunSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                beginControlFlow(
+                    "if (%T::class.java.isAssignableFrom(%T::class.java))",
+                    PARCELABLE_CLASSNAME,
+                    arg.type.typeName()
+                )
+                addStatement(
+                    "%L.%L(%S, %L as %T)",
+                    bundle,
+                    "putParcelable",
+                    arg.name,
+                    argValue,
+                    PARCELABLE_CLASSNAME.copy(nullable = arg.isNullable)
+                )
+                nextControlFlow(
+                    "else if (%T::class.java.isAssignableFrom(%T::class.java))",
+                    SERIALIZABLE_CLASSNAME,
+                    arg.type.typeName()
+                )
+                addStatement(
+                    "%L.%L(%S, %L as %T)",
+                    bundle,
+                    "putSerializable",
+                    arg.name,
+                    argValue,
+                    SERIALIZABLE_CLASSNAME.copy(nullable = arg.isNullable)
+                )
+                if (!arg.isOptional()) {
+                    nextControlFlow("else")
+                    addStatement(
+                        "throw·%T(%T::class.java.name + %S)",
+                        UnsupportedOperationException::class.asTypeName(),
+                        arg.type.typeName(),
+                        " must implement Parcelable or Serializable or must be an Enum."
+                    )
+                }
+                endControlFlow()
+            }
+        else -> builder.addStatement("%L.%L(%S, %L)", bundle, bundlePutMethod(), arg.name, argValue)
     }
-    else -> builder.addStatement(
-        "%L.%L(%S, %L)",
-        bundle,
-        bundlePutMethod(),
-        arg.name,
-        argValue
-    )
-}
 
 internal fun NavType.addSavedStateGetStatement(
     builder: FunSpec.Builder,
     arg: Argument,
     lValue: String,
     savedStateHandle: String
-): FunSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        beginControlFlow(
-            "if (%T::class.java.isAssignableFrom(%T::class.java) " +
-                "|| %T::class.java.isAssignableFrom(%T::class.java))",
-            PARCELABLE_CLASSNAME, arg.type.typeName(),
-            SERIALIZABLE_CLASSNAME, arg.type.typeName()
-        )
-        addStatement(
-            "%L = %L.get<%T>(%S)",
-            lValue, savedStateHandle, arg.type.typeName().copy(nullable = true), arg.name
-        )
-        nextControlFlow("else")
-        addStatement(
-            "throw·%T(%T::class.java.name + %S)",
-            UnsupportedOperationException::class.asTypeName(),
-            arg.type.typeName(),
-            " must implement Parcelable or Serializable or must be an Enum."
-        )
-        endControlFlow()
+): FunSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                beginControlFlow(
+                    "if (%T::class.java.isAssignableFrom(%T::class.java) " +
+                        "|| %T::class.java.isAssignableFrom(%T::class.java))",
+                    PARCELABLE_CLASSNAME,
+                    arg.type.typeName(),
+                    SERIALIZABLE_CLASSNAME,
+                    arg.type.typeName()
+                )
+                addStatement(
+                    "%L = %L.get<%T>(%S)",
+                    lValue,
+                    savedStateHandle,
+                    arg.type.typeName().copy(nullable = true),
+                    arg.name
+                )
+                nextControlFlow("else")
+                addStatement(
+                    "throw·%T(%T::class.java.name + %S)",
+                    UnsupportedOperationException::class.asTypeName(),
+                    arg.type.typeName(),
+                    " must implement Parcelable or Serializable or must be an Enum."
+                )
+                endControlFlow()
+            }
+        is ObjectArrayType ->
+            builder.apply {
+                val baseType = (arg.type.typeName() as ParameterizedTypeName).typeArguments.first()
+                addStatement(
+                    "%L = %L.get<Array<%T>>(%S)?.map·{ it as %T }?.toTypedArray()",
+                    lValue,
+                    savedStateHandle,
+                    PARCELABLE_CLASSNAME,
+                    arg.name,
+                    baseType
+                )
+            }
+        else -> builder.addStatement("%L = %L[%S]", lValue, savedStateHandle, arg.name)
     }
-    is ObjectArrayType -> builder.apply {
-        val baseType = (arg.type.typeName() as ParameterizedTypeName).typeArguments.first()
-        addStatement(
-            "%L = %L.get<Array<%T>>(%S)?.map·{ it as %T }?.toTypedArray()",
-            lValue, savedStateHandle, PARCELABLE_CLASSNAME, arg.name, baseType
-        )
-    }
-    else -> builder.addStatement(
-        "%L = %L[%S]",
-        lValue,
-        savedStateHandle,
-        arg.name
-    )
-}
 
 internal fun NavType.addSavedStateSetStatement(
     builder: FunSpec.Builder,
     arg: Argument,
     savedStateHandle: String,
     argValue: String
-): FunSpec.Builder = when (this) {
-    is ObjectType -> builder.apply {
-        beginControlFlow(
-            "if (%T::class.java.isAssignableFrom(%T::class.java))",
-            PARCELABLE_CLASSNAME, arg.type.typeName()
-        )
-        addStatement(
-            "%L.set(%S, %L as %T)",
-            savedStateHandle, arg.name, argValue,
-            PARCELABLE_CLASSNAME.copy(nullable = arg.isNullable)
-        )
-        nextControlFlow(
-            "else if (%T::class.java.isAssignableFrom(%T::class.java))",
-            SERIALIZABLE_CLASSNAME, arg.type.typeName()
-        )
-        addStatement(
-            "%L.set(%S, %L as %T)",
-            savedStateHandle, arg.name, argValue,
-            SERIALIZABLE_CLASSNAME.copy(nullable = arg.isNullable)
-        )
-        if (!arg.isOptional()) {
-            nextControlFlow("else")
-            addStatement(
-                "throw·%T(%T::class.java.name + %S)",
-                UnsupportedOperationException::class.asTypeName(),
-                arg.type.typeName(),
-                " must implement Parcelable or Serializable or must be an Enum."
-            )
-        }
-        endControlFlow()
+): FunSpec.Builder =
+    when (this) {
+        is ObjectType ->
+            builder.apply {
+                beginControlFlow(
+                    "if (%T::class.java.isAssignableFrom(%T::class.java))",
+                    PARCELABLE_CLASSNAME,
+                    arg.type.typeName()
+                )
+                addStatement(
+                    "%L.set(%S, %L as %T)",
+                    savedStateHandle,
+                    arg.name,
+                    argValue,
+                    PARCELABLE_CLASSNAME.copy(nullable = arg.isNullable)
+                )
+                nextControlFlow(
+                    "else if (%T::class.java.isAssignableFrom(%T::class.java))",
+                    SERIALIZABLE_CLASSNAME,
+                    arg.type.typeName()
+                )
+                addStatement(
+                    "%L.set(%S, %L as %T)",
+                    savedStateHandle,
+                    arg.name,
+                    argValue,
+                    SERIALIZABLE_CLASSNAME.copy(nullable = arg.isNullable)
+                )
+                if (!arg.isOptional()) {
+                    nextControlFlow("else")
+                    addStatement(
+                        "throw·%T(%T::class.java.name + %S)",
+                        UnsupportedOperationException::class.asTypeName(),
+                        arg.type.typeName(),
+                        " must implement Parcelable or Serializable or must be an Enum."
+                    )
+                }
+                endControlFlow()
+            }
+        else -> builder.addStatement("%L.set(%S, %L)", savedStateHandle, arg.name, argValue)
     }
-    else -> builder.addStatement(
-        "%L.set(%S, %L)",
-        savedStateHandle,
-        arg.name,
-        argValue
-    )
-}
 
-internal fun NavType.typeName(): TypeName = when (this) {
-    IntType -> INT
-    IntArrayType -> IntArray::class.asTypeName()
-    LongType -> LONG
-    LongArrayType -> LongArray::class.asTypeName()
-    FloatType -> FLOAT
-    FloatArrayType -> FloatArray::class.asTypeName()
-    StringType -> String::class.asTypeName()
-    StringArrayType -> ARRAY.parameterizedBy(String::class.asTypeName())
-    BoolType -> BOOLEAN
-    BoolArrayType -> BooleanArray::class.asTypeName()
-    ReferenceType -> INT
-    ReferenceArrayType -> IntArray::class.asTypeName()
-    is ObjectType ->
-        canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
-            ClassName(packageName, simpleName, *innerNames)
-        }
-    is ObjectArrayType -> ARRAY.parameterizedBy(
-        canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
-            ClassName(packageName, simpleName, *innerNames)
-        }
-    )
-    else -> throw IllegalStateException("Unknown type: $this")
-}
+internal fun NavType.typeName(): TypeName =
+    when (this) {
+        IntType -> INT
+        IntArrayType -> IntArray::class.asTypeName()
+        LongType -> LONG
+        LongArrayType -> LongArray::class.asTypeName()
+        FloatType -> FLOAT
+        FloatArrayType -> FloatArray::class.asTypeName()
+        StringType -> String::class.asTypeName()
+        StringArrayType -> ARRAY.parameterizedBy(String::class.asTypeName())
+        BoolType -> BOOLEAN
+        BoolArrayType -> BooleanArray::class.asTypeName()
+        ReferenceType -> INT
+        ReferenceArrayType -> IntArray::class.asTypeName()
+        is ObjectType ->
+            canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
+                ClassName(packageName, simpleName, *innerNames)
+            }
+        is ObjectArrayType ->
+            ARRAY.parameterizedBy(
+                canonicalName.toClassNameParts().let { (packageName, simpleName, innerNames) ->
+                    ClassName(packageName, simpleName, *innerNames)
+                }
+            )
+        else -> throw IllegalStateException("Unknown type: $this")
+    }
 
 internal fun WritableValue.write(): CodeBlock {
     return when (this) {
@@ -279,6 +302,6 @@
     }
 }
 
-internal fun ResReference?.accessor() = this?.let {
-    CodeBlock.of("%T.%N", ClassName(packageName, "R", resType), javaIdentifier)
-} ?: CodeBlock.of("0")
+internal fun ResReference?.accessor() =
+    this?.let { CodeBlock.of("%T.%N", ClassName(packageName, "R", resType), javaIdentifier) }
+        ?: CodeBlock.of("0")
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Argument.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Argument.kt
index 5c5e129..3dea954 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Argument.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Argument.kt
@@ -30,8 +30,7 @@
     init {
         if (isNullable && !type.allowsNullable()) {
             throw IllegalArgumentException(
-                "Argument is nullable but type $type " +
-                    "cannot be nullable."
+                "Argument is nullable but type $type " + "cannot be nullable."
             )
         }
         if (!isNullable && defaultValue == NullValue) {
@@ -39,8 +38,8 @@
         }
     }
 
-    val sanitizedName = name.split("[^a-zA-Z0-9]".toRegex())
-        .map { it.trim() }.joinToCamelCaseAsVar()
+    val sanitizedName =
+        name.split("[^a-zA-Z0-9]".toRegex()).map { it.trim() }.joinToCamelCaseAsVar()
 
     fun isOptional() = defaultValue != null
 
diff --git a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Destination.kt b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Destination.kt
index 3bfb234..e6b37d9 100644
--- a/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Destination.kt
+++ b/navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/Destination.kt
@@ -30,18 +30,20 @@
 ) {
 
     companion object {
-        fun createName(id: ResReference?, name: String, applicationId: String): ClassName? = when {
-            name.isNotEmpty() -> {
-                val specifiedPackage = name.substringBeforeLast('.', "")
-                val classPackage = if (name.startsWith(".")) {
-                    "$applicationId$specifiedPackage"
-                } else {
-                    specifiedPackage
+        fun createName(id: ResReference?, name: String, applicationId: String): ClassName? =
+            when {
+                name.isNotEmpty() -> {
+                    val specifiedPackage = name.substringBeforeLast('.', "")
+                    val classPackage =
+                        if (name.startsWith(".")) {
+                            "$applicationId$specifiedPackage"
+                        } else {
+                            specifiedPackage
+                        }
+                    ClassName.get(classPackage, name.substringAfterLast('.'))
                 }
-                ClassName.get(classPackage, name.substringAfterLast('.'))
+                id != null -> ClassName.get(id.packageName, id.javaIdentifier.toCamelCase())
+                else -> null
             }
-            id != null -> ClassName.get(id.packageName, id.javaIdentifier.toCamelCase())
-            else -> null
-        }
     }
 }
diff --git a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/InvalidXmlTest.kt b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/InvalidXmlTest.kt
index 7fa16a4..0e99ec6 100644
--- a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/InvalidXmlTest.kt
+++ b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/InvalidXmlTest.kt
@@ -41,57 +41,78 @@
     companion object {
         @JvmStatic
         @Parameterized.Parameters(name = "({0})")
-        fun data() = listOf(
-            ErrorMessage("unnamed_destination_with_action.xml", 25, 5, UNNAMED_DESTINATION),
-            ErrorMessage(
-                "invalid_default_value_reference.xml", 23, 9,
-                invalidDefaultValueReference("foo/")
-            ),
-            ErrorMessage(
-                "null_default_value_reference.xml", 23, 9,
-                nullDefaultValueReference("myarg1")
-            ),
-            ErrorMessage(
-                "invalid_default_value_int.xml", 24, 9,
-                invalidDefaultValue("101034f", IntType)
-            ),
-            ErrorMessage("invalid_id_action.xml", 22, 44, invalidId("@+fppid/finish")),
-            ErrorMessage("invalid_id_destination.xml", 17, 1, invalidId("@1234234+id/foo")),
-            ErrorMessage("action_no_id.xml", 22, 5, mandatoryAttrMissingError("action", "id")),
-            ErrorMessage(
-                "same_name_args.xml", 23, 9,
-                sameSanitizedNameArguments(
-                    "myArg",
-                    listOf(
-                        Argument("my_arg", StringType), Argument("my.arg", StringType)
+        fun data() =
+            listOf(
+                ErrorMessage("unnamed_destination_with_action.xml", 25, 5, UNNAMED_DESTINATION),
+                ErrorMessage(
+                    "invalid_default_value_reference.xml",
+                    23,
+                    9,
+                    invalidDefaultValueReference("foo/")
+                ),
+                ErrorMessage(
+                    "null_default_value_reference.xml",
+                    23,
+                    9,
+                    nullDefaultValueReference("myarg1")
+                ),
+                ErrorMessage(
+                    "invalid_default_value_int.xml",
+                    24,
+                    9,
+                    invalidDefaultValue("101034f", IntType)
+                ),
+                ErrorMessage("invalid_id_action.xml", 22, 44, invalidId("@+fppid/finish")),
+                ErrorMessage("invalid_id_destination.xml", 17, 1, invalidId("@1234234+id/foo")),
+                ErrorMessage("action_no_id.xml", 22, 5, mandatoryAttrMissingError("action", "id")),
+                ErrorMessage(
+                    "same_name_args.xml",
+                    23,
+                    9,
+                    sameSanitizedNameArguments(
+                        "myArg",
+                        listOf(Argument("my_arg", StringType), Argument("my.arg", StringType))
                     )
-                )
-            ),
-            ErrorMessage(
-                "same_name_actions.xml", 22, 5,
-                sameSanitizedNameActions(
-                    "NextAction",
-                    listOf(
-                        Action(
-                            ResReference("a.b", "id", "next_action"),
-                            ResReference("a.b", "id", "first_screen")
-                        ),
-                        Action(
-                            ResReference("a.b", "id", "nextAction"),
-                            ResReference("a.b", "id", "first_screen")
+                ),
+                ErrorMessage(
+                    "same_name_actions.xml",
+                    22,
+                    5,
+                    sameSanitizedNameActions(
+                        "NextAction",
+                        listOf(
+                            Action(
+                                ResReference("a.b", "id", "next_action"),
+                                ResReference("a.b", "id", "first_screen")
+                            ),
+                            Action(
+                                ResReference("a.b", "id", "nextAction"),
+                                ResReference("a.b", "id", "first_screen")
+                            )
                         )
                     )
+                ),
+                ErrorMessage(
+                    "null_but_not_nullable.xml",
+                    24,
+                    13,
+                    defaultNullButNotNullable("myArg")
+                ),
+                ErrorMessage("type_is_not_nullable.xml", 24, 13, typeIsNotNullable("integer")),
+                ErrorMessage(
+                    "invalid_deprecated_type.xml",
+                    24,
+                    9,
+                    deprecatedTypeAttrUsed("myarg1")
+                ),
+                ErrorMessage("invalid_include_tag.xml", 30, 5, NavParserErrors.MISSING_GRAPH_ATTR),
+                ErrorMessage(
+                    "invalid_include_graph_attr.xml",
+                    30,
+                    5,
+                    invalidNavReference("to_include_login_test")
                 )
-            ),
-            ErrorMessage("null_but_not_nullable.xml", 24, 13, defaultNullButNotNullable("myArg")),
-            ErrorMessage("type_is_not_nullable.xml", 24, 13, typeIsNotNullable("integer")),
-            ErrorMessage("invalid_deprecated_type.xml", 24, 9, deprecatedTypeAttrUsed("myarg1")),
-            ErrorMessage("invalid_include_tag.xml", 30, 5, NavParserErrors.MISSING_GRAPH_ATTR),
-            ErrorMessage(
-                "invalid_include_graph_attr.xml", 30, 5,
-                invalidNavReference("to_include_login_test")
             )
-        )
     }
 
     @Test
diff --git a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/JavaNavWriterTest.kt b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/JavaNavWriterTest.kt
index 3c79024..4e69ff9 100644
--- a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/JavaNavWriterTest.kt
+++ b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/JavaNavWriterTest.kt
@@ -49,10 +49,8 @@
     private fun generateDirectionsTypeSpec(action: Action, useAndroidX: Boolean) =
         JavaNavWriter(useAndroidX).generateDirectionsTypeSpec(action)
 
-    private fun generateArgsCodeFile(
-        destination: Destination,
-        useAndroidX: Boolean
-    ) = JavaNavWriter(useAndroidX).generateArgsCodeFile(destination)
+    private fun generateArgsCodeFile(destination: Destination, useAndroidX: Boolean) =
+        JavaNavWriter(useAndroidX).generateArgsCodeFile(destination)
 
     private fun id(id: String) = ResReference("a.b", "id", id)
 
@@ -66,72 +64,73 @@
 
     private fun assertCompilesWithoutError(javaFileObject: JavaFileObject) {
         JavaSourcesSubject.assertThat(
-            loadSourceFileObject("a.b.R", "a/b"),
-            loadSourceFileObject(
-                "a.b.secondreallyreallyreallyreallyreallyreally" +
-                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                    "longpackage.R",
-                "a/b/secondreallyreallyreallyreallyreallyreally" +
-                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                    "longpackage"
-            ),
-            JavaFileObjects.forSourceString(
-                "androidx.annotation.NonNull",
-                "package androidx.annotation; public @interface NonNull {}"
-            ),
-            JavaFileObjects.forSourceString(
-                "androidx.annotation.Nullable",
-                "package androidx.annotation; public @interface Nullable {}"
-            ),
-            javaFileObject
-        ).compilesWithoutError()
+                loadSourceFileObject("a.b.R", "a/b"),
+                loadSourceFileObject(
+                    "a.b.secondreallyreallyreallyreallyreallyreally" +
+                        "reallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                        "longpackage.R",
+                    "a/b/secondreallyreallyreallyreallyreallyreally" +
+                        "reallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                        "longpackage"
+                ),
+                JavaFileObjects.forSourceString(
+                    "androidx.annotation.NonNull",
+                    "package androidx.annotation; public @interface NonNull {}"
+                ),
+                JavaFileObjects.forSourceString(
+                    "androidx.annotation.Nullable",
+                    "package androidx.annotation; public @interface Nullable {}"
+                ),
+                javaFileObject
+            )
+            .compilesWithoutError()
     }
 
     private fun JavaSourcesSubject.parsesAs(fullClassName: String) =
         this.parsesAs(fullClassName, "expected/java_nav_writer_test")
 
-    private fun compileFiles(vararg javaFileObject: JavaFileObject) = javac()
-        .compile(
-            loadSourceFileObject("a.b.R", "a/b"),
-            JavaFileObjects.forSourceString(
-                "androidx.annotation.NonNull",
-                "package androidx.annotation; public @interface NonNull {}"
-            ),
-            JavaFileObjects.forSourceString(
-                "androidx.annotation.Nullable",
-                "package androidx.annotation; public @interface Nullable {}"
-            ),
-            *javaFileObject
-        )
+    private fun compileFiles(vararg javaFileObject: JavaFileObject) =
+        javac()
+            .compile(
+                loadSourceFileObject("a.b.R", "a/b"),
+                JavaFileObjects.forSourceString(
+                    "androidx.annotation.NonNull",
+                    "package androidx.annotation; public @interface NonNull {}"
+                ),
+                JavaFileObjects.forSourceString(
+                    "androidx.annotation.Nullable",
+                    "package androidx.annotation; public @interface Nullable {}"
+                ),
+                *javaFileObject
+            )
 
     @Test
     fun testDirectionClassGeneration() {
-        val actionSpec = generateDirectionsTypeSpec(
-            Action(
-                id("next"), id("destA"),
-                listOf(
-                    Argument("main", StringType),
-                    Argument("mainInt", IntType),
-                    Argument("optional", StringType, StringValue("bla")),
-                    Argument("optionalInt", IntType, IntValue("239")),
-                    Argument(
-                        "optionalParcelable",
-                        ObjectType("android.content.pm.ActivityInfo"),
-                        NullValue,
-                        true
-                    ),
-                    Argument(
-                        "parcelable",
-                        ObjectType("android.content.pm.ActivityInfo")
-                    ),
-                    Argument(
-                        "innerData",
-                        ObjectType("android.content.pm.ActivityInfo\$WindowLayout")
+        val actionSpec =
+            generateDirectionsTypeSpec(
+                Action(
+                    id("next"),
+                    id("destA"),
+                    listOf(
+                        Argument("main", StringType),
+                        Argument("mainInt", IntType),
+                        Argument("optional", StringType, StringValue("bla")),
+                        Argument("optionalInt", IntType, IntValue("239")),
+                        Argument(
+                            "optionalParcelable",
+                            ObjectType("android.content.pm.ActivityInfo"),
+                            NullValue,
+                            true
+                        ),
+                        Argument("parcelable", ObjectType("android.content.pm.ActivityInfo")),
+                        Argument(
+                            "innerData",
+                            ObjectType("android.content.pm.ActivityInfo\$WindowLayout")
+                        )
                     )
-                )
-            ),
-            true
-        )
+                ),
+                true
+            )
         val actual = toJavaFileObject(actionSpec)
         JavaSourcesSubject.assertThat(actual).parsesAs("a.b.Next")
         // actions spec must be inner class to be compiled, because of static modifier on class
@@ -149,26 +148,31 @@
 
     @Test
     fun testDirectionsClassGeneration() {
-        val nextAction = Action(
-            id("next"), id("destA"),
-            listOf(
-                Argument("main", StringType),
-                Argument("optional", StringType, StringValue("bla"))
+        val nextAction =
+            Action(
+                id("next"),
+                id("destA"),
+                listOf(
+                    Argument("main", StringType),
+                    Argument("optional", StringType, StringValue("bla"))
+                )
             )
-        )
 
-        val prevAction = Action(
-            id("previous"), id("destB"),
-            listOf(
-                Argument("arg1", StringType),
-                Argument("arg2", StringType)
+        val prevAction =
+            Action(
+                id("previous"),
+                id("destB"),
+                listOf(Argument("arg1", StringType), Argument("arg2", StringType))
             )
-        )
 
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragment"), "fragment", listOf(),
-            listOf(prevAction, nextAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragment"),
+                "fragment",
+                listOf(),
+                listOf(prevAction, nextAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), true).toJavaFileObject()
         JavaSourcesSubject.assertThat(actual).parsesAs("a.b.MainFragmentDirections")
@@ -177,60 +181,70 @@
 
     @Test
     fun testDirectionsClassGeneration_longPackage() {
-        val funAction = Action(
-            ResReference(
-                "a.b.secondreallyreallyreallyreally" +
-                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                    "longpackage",
-                "id", "next"
-            ),
-            id("destA"),
-            listOf()
-        )
+        val funAction =
+            Action(
+                ResReference(
+                    "a.b.secondreallyreallyreallyreally" +
+                        "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                        "longpackage",
+                    "id",
+                    "next"
+                ),
+                id("destA"),
+                listOf()
+            )
 
-        val dest = Destination(
-            null,
-            ClassName.get(
-                "a.b.reallyreallyreallyreally" +
-                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                    "longpackage",
-                "LongPackageFragment"
-            ),
-            "fragment", listOf(),
-            listOf(funAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get(
+                    "a.b.reallyreallyreallyreally" +
+                        "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                        "longpackage",
+                    "LongPackageFragment"
+                ),
+                "fragment",
+                listOf(),
+                listOf(funAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), true).toJavaFileObject()
-        JavaSourcesSubject.assertThat(actual).parsesAs(
-            "a.b.reallyreallyreallyreallyreally" +
-                "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                "longpackage.LongPackageFragmentDirections"
-        )
+        JavaSourcesSubject.assertThat(actual)
+            .parsesAs(
+                "a.b.reallyreallyreallyreallyreally" +
+                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                    "longpackage.LongPackageFragmentDirections"
+            )
         assertCompilesWithoutError(actual)
     }
 
     @Test
     fun testDirectionsClassGeneration_sanitizedNames() {
-        val nextAction = Action(
-            id("next_action"), id("destA"),
-            listOf(
-                Argument("main_arg", StringType),
-                Argument("optional.arg", StringType, StringValue("bla"))
+        val nextAction =
+            Action(
+                id("next_action"),
+                id("destA"),
+                listOf(
+                    Argument("main_arg", StringType),
+                    Argument("optional.arg", StringType, StringValue("bla"))
+                )
             )
-        )
 
-        val prevAction = Action(
-            id("previous_action"), id("destB"),
-            listOf(
-                Argument("arg_1", StringType),
-                Argument("arg.2", StringType)
+        val prevAction =
+            Action(
+                id("previous_action"),
+                id("destB"),
+                listOf(Argument("arg_1", StringType), Argument("arg.2", StringType))
             )
-        )
 
-        val dest = Destination(
-            null, ClassName.get("a.b", "SanitizedMainFragment"),
-            "fragment", listOf(), listOf(prevAction, nextAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "SanitizedMainFragment"),
+                "fragment",
+                listOf(),
+                listOf(prevAction, nextAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), true).toJavaFileObject()
         JavaSourcesSubject.assertThat(actual).parsesAs("a.b.SanitizedMainFragmentDirections")
@@ -239,45 +253,39 @@
 
     @Test
     fun testArgumentsClassGeneration() {
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragment"), "fragment",
-            listOf(
-                Argument("main", StringType),
-                Argument("optional", IntType, IntValue("-1")),
-                Argument(
-                    "reference", ReferenceType,
-                    ReferenceValue(
-                        ResReference(
-                            "a.b", "drawable",
-                            "background"
-                        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragment"),
+                "fragment",
+                listOf(
+                    Argument("main", StringType),
+                    Argument("optional", IntType, IntValue("-1")),
+                    Argument(
+                        "reference",
+                        ReferenceType,
+                        ReferenceValue(ResReference("a.b", "drawable", "background"))
+                    ),
+                    Argument("referenceZeroDefaultValue", ReferenceType, IntValue("0")),
+                    Argument("floatArg", FloatType, FloatValue("1")),
+                    Argument("floatArrayArg", FloatArrayType),
+                    Argument("objectArrayArg", ObjectArrayType("android.content.pm.ActivityInfo")),
+                    Argument("boolArg", BoolType, BooleanValue("true")),
+                    Argument(
+                        "optionalParcelable",
+                        ObjectType("android.content.pm.ActivityInfo"),
+                        NullValue,
+                        true
+                    ),
+                    Argument(
+                        "enumArg",
+                        ObjectType("java.nio.file.AccessMode"),
+                        EnumValue(ObjectType("java.nio.file.AccessMode"), "READ"),
+                        false
                     )
                 ),
-                Argument("referenceZeroDefaultValue", ReferenceType, IntValue("0")),
-                Argument("floatArg", FloatType, FloatValue("1")),
-                Argument("floatArrayArg", FloatArrayType),
-                Argument(
-                    "objectArrayArg",
-                    ObjectArrayType(
-                        "android.content.pm.ActivityInfo"
-                    )
-                ),
-                Argument("boolArg", BoolType, BooleanValue("true")),
-                Argument(
-                    "optionalParcelable",
-                    ObjectType("android.content.pm.ActivityInfo"),
-                    NullValue,
-                    true
-                ),
-                Argument(
-                    "enumArg",
-                    ObjectType("java.nio.file.AccessMode"),
-                    EnumValue(ObjectType("java.nio.file.AccessMode"), "READ"),
-                    false
-                )
-            ),
-            listOf()
-        )
+                listOf()
+            )
 
         val actual = generateArgsCodeFile(dest, true).toJavaFileObject()
         JavaSourcesSubject.assertThat(actual).parsesAs("a.b.MainFragmentArgs")
@@ -286,16 +294,18 @@
 
     @Test
     fun testArgumentsClassGeneration_sanitizedNames() {
-        val dest = Destination(
-            null, ClassName.get("a.b", "SanitizedMainFragment"),
-            "fragment",
-            listOf(
-                Argument("name.with.dot", IntType),
-                Argument("name_with_underscore", IntType),
-                Argument("name with spaces", IntType)
-            ),
-            listOf()
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "SanitizedMainFragment"),
+                "fragment",
+                listOf(
+                    Argument("name.with.dot", IntType),
+                    Argument("name_with_underscore", IntType),
+                    Argument("name with spaces", IntType)
+                ),
+                listOf()
+            )
 
         val actual = generateArgsCodeFile(dest, true).toJavaFileObject()
         JavaSourcesSubject.assertThat(actual).parsesAs("a.b.SanitizedMainFragmentArgs")
@@ -304,14 +314,14 @@
 
     @Test
     fun testArgumentsClassGeneration_innerClassName() {
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragment\$InnerFragment"),
-            "fragment",
-            listOf(
-                Argument("mainArg", StringType)
-            ),
-            listOf()
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragment\$InnerFragment"),
+                "fragment",
+                listOf(Argument("mainArg", StringType)),
+                listOf()
+            )
 
         val actual = generateArgsCodeFile(dest, true).toJavaFileObject()
         JavaSourcesSubject.assertThat(actual).parsesAs("a.b.MainFragment\$InnerFragmentArgs")
@@ -321,19 +331,25 @@
     @Test
     fun testGeneratedDirectionEqualsImpl() {
         val nextAction = Action(id("next"), id("destA"), listOf(Argument("main", StringType)))
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragment"), "fragment", listOf(),
-            listOf(nextAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragment"),
+                "fragment",
+                listOf(),
+                listOf(nextAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), true).toJavaFileObject()
 
         val generatedFiles = compileFiles(actual).generatedFiles()
         val loader = InMemoryGeneratedClassLoader(generatedFiles)
 
-        fun createNextObj(mainArgValue: String) = loader.loadClass("a.b.MainFragmentDirections")
-            .getDeclaredMethod("next", String::class.java)
-            .invoke(null, mainArgValue)
+        fun createNextObj(mainArgValue: String) =
+            loader
+                .loadClass("a.b.MainFragmentDirections")
+                .getDeclaredMethod("next", String::class.java)
+                .invoke(null, mainArgValue)
 
         val nextObjectA = createNextObj("data")
         val nextObjectB = createNextObj("data")
@@ -346,22 +362,25 @@
     @Test
     fun testGeneratedDirectionHashCodeImpl() {
         val nextAction = Action(id("next"), id("destA"), listOf(Argument("main", StringType)))
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragment"), "fragment", listOf(),
-            listOf(nextAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragment"),
+                "fragment",
+                listOf(),
+                listOf(nextAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), true).toJavaFileObject()
 
         val generatedFiles = compileFiles(actual).generatedFiles()
         val loader = InMemoryGeneratedClassLoader(generatedFiles)
 
-        fun createNextObj(mainArgValue: String): Any? = loader.loadClass(
-            "a.b" +
-                ".MainFragmentDirections"
-        )
-            .getDeclaredMethod("next", String::class.java)
-            .invoke(null, mainArgValue)
+        fun createNextObj(mainArgValue: String): Any? =
+            loader
+                .loadClass("a.b" + ".MainFragmentDirections")
+                .getDeclaredMethod("next", String::class.java)
+                .invoke(null, mainArgValue)
 
         val nextObjectA = createNextObj("data")
         val nextObjectB = createNextObj("data")
@@ -371,23 +390,20 @@
         assertThat(nextObjectA.hashCode(), not(`is`(nextObjectC.hashCode())))
     }
 
-    /**
-     * Class loader that allows us to load classes from compile testing generated classes.
-     */
-    class InMemoryGeneratedClassLoader(
-        private val generatedFiles: ImmutableList<JavaFileObject>
-    ) : ClassLoader(ClassLoader.getSystemClassLoader()) {
+    /** Class loader that allows us to load classes from compile testing generated classes. */
+    class InMemoryGeneratedClassLoader(private val generatedFiles: ImmutableList<JavaFileObject>) :
+        ClassLoader(ClassLoader.getSystemClassLoader()) {
         override fun findClass(name: String): Class<*> {
             val simpleName = name.let { it.substring(it.lastIndexOf('.') + 1, it.length) }
-            val match = generatedFiles.firstOrNull {
-                it.isNameCompatible(simpleName, JavaFileObject.Kind.CLASS)
-            }
-            if (match != null) {
-                val data = match.openInputStream().use { inputStream ->
-                    ByteArray(inputStream.available()).apply {
-                        inputStream.read(this)
-                    }
+            val match =
+                generatedFiles.firstOrNull {
+                    it.isNameCompatible(simpleName, JavaFileObject.Kind.CLASS)
                 }
+            if (match != null) {
+                val data =
+                    match.openInputStream().use { inputStream ->
+                        ByteArray(inputStream.available()).apply { inputStream.read(this) }
+                    }
                 return super.defineClass(name, data, 0, data.size)
             }
             return super.findClass(name)
diff --git a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/KotlinNavWriterTest.kt b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/KotlinNavWriterTest.kt
index a434d22..1af0af4 100644
--- a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/KotlinNavWriterTest.kt
+++ b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/KotlinNavWriterTest.kt
@@ -39,78 +39,77 @@
 
 @RunWith(JUnit4::class)
 class KotlinNavWriterTest {
-    @field:Rule
-    @JvmField
-    val temporaryFolder = TemporaryFolder()
+    @field:Rule @JvmField val temporaryFolder = TemporaryFolder()
 
     private fun generateDirectionsCodeFile(
         destination: Destination,
         parentDirectionsFileList: List<KotlinCodeFile>,
         useAndroidX: Boolean
-    ) = KotlinNavWriter(useAndroidX).generateDirectionsCodeFile(
-        destination,
-        parentDirectionsFileList
-    )
+    ) =
+        KotlinNavWriter(useAndroidX)
+            .generateDirectionsCodeFile(destination, parentDirectionsFileList)
 
     private fun generateDirectionsTypeSpec(action: Action, useAndroidX: Boolean) =
         KotlinNavWriter(useAndroidX).generateDirectionTypeSpec(action)
 
-    private fun generateArgsCodeFile(
-        destination: Destination,
-        useAndroidX: Boolean
-    ) = KotlinNavWriter(useAndroidX).generateArgsCodeFile(destination)
+    private fun generateArgsCodeFile(destination: Destination, useAndroidX: Boolean) =
+        KotlinNavWriter(useAndroidX).generateArgsCodeFile(destination)
 
     private fun id(id: String) = ResReference("a.b", "id", id)
 
     private fun wrappedInnerClass(spec: TypeSpec): KotlinCodeFile =
-        FileSpec.builder("a.b", "BoringWrapper")
-            .addType(spec)
-            .build()
-            .toCodeFile()
+        FileSpec.builder("a.b", "BoringWrapper").addType(spec).build().toCodeFile()
 
     private fun StringSubject.parsesAs(fullClassName: String) =
         this.isEqualTo(loadSourceString(fullClassName, "expected/kotlin_nav_writer_test", "kt"))
 
     private fun assertCompilesWithoutError(codeFile: KotlinCodeFile, packageName: String = "a.b") {
-        val compilation = compile(temporaryFolder.root,
-            arguments = TestCompilationArguments(
-                sources = listOf(
-                    Source.java(
-                        "$packageName.R",
-                        loadSourceString("$packageName.R", packageName.replace(".", "/"), "java")
-                    ),
-                    Source.kotlin(codeFile.fileName() + ".kt", codeFile.toString())
-                )
+        val compilation =
+            compile(
+                temporaryFolder.root,
+                arguments =
+                    TestCompilationArguments(
+                        sources =
+                            listOf(
+                                Source.java(
+                                    "$packageName.R",
+                                    loadSourceString(
+                                        "$packageName.R",
+                                        packageName.replace(".", "/"),
+                                        "java"
+                                    )
+                                ),
+                                Source.kotlin(codeFile.fileName() + ".kt", codeFile.toString())
+                            )
+                    )
             )
-        )
         assertThat(compilation.success).isTrue()
     }
 
     @Test
     fun testDirectionClassGeneration() {
-        val action = Action(
-            id("next"), id("destA"),
-            listOf(
-                Argument("main", StringType),
-                Argument("mainInt", IntType),
-                Argument("optional", StringType, StringValue("bla")),
-                Argument("optionalInt", IntType, IntValue("239")),
-                Argument(
-                    "optionalParcelable",
-                    ObjectType("android.content.pm.ActivityInfo"),
-                    NullValue,
-                    true
-                ),
-                Argument(
-                    "parcelable",
-                    ObjectType("android.content.pm.ActivityInfo")
-                ),
-                Argument(
-                    "innerData",
-                    ObjectType("android.content.pm.ActivityInfo\$WindowLayout")
+        val action =
+            Action(
+                id("next"),
+                id("destA"),
+                listOf(
+                    Argument("main", StringType),
+                    Argument("mainInt", IntType),
+                    Argument("optional", StringType, StringValue("bla")),
+                    Argument("optionalInt", IntType, IntValue("239")),
+                    Argument(
+                        "optionalParcelable",
+                        ObjectType("android.content.pm.ActivityInfo"),
+                        NullValue,
+                        true
+                    ),
+                    Argument("parcelable", ObjectType("android.content.pm.ActivityInfo")),
+                    Argument(
+                        "innerData",
+                        ObjectType("android.content.pm.ActivityInfo\$WindowLayout")
+                    )
                 )
             )
-        )
         val actual = generateDirectionsTypeSpec(action, false)
         assertThat(wrappedInnerClass(actual).toString()).parsesAs("a.b.Next")
         assertCompilesWithoutError(wrappedInnerClass(actual))
@@ -118,20 +117,26 @@
 
     @Test
     fun testDirectionsClassGeneration() {
-        val nextAction = Action(
-            id("next"), id("destA"),
-            listOf(
-                Argument("main", StringType),
-                Argument("optional", StringType, StringValue("bla"))
+        val nextAction =
+            Action(
+                id("next"),
+                id("destA"),
+                listOf(
+                    Argument("main", StringType),
+                    Argument("optional", StringType, StringValue("bla"))
+                )
             )
-        )
 
         val prevAction = Action(id("previous"), id("destB"), emptyList())
 
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragment"), "fragment", listOf(),
-            listOf(prevAction, nextAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragment"),
+                "fragment",
+                listOf(),
+                listOf(prevAction, nextAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), false)
         assertThat(actual.toString()).parsesAs("a.b.MainFragmentDirections")
@@ -140,22 +145,28 @@
 
     @Test
     fun testDirectionsClassGenerationDefaultParamOrder() {
-        val nextAction = Action(
-            id("next"), id("destA"),
-            listOf(
-                Argument("optional", StringType, StringValue("bla")),
-                Argument("optionalFloat", FloatType, FloatValue("0.1")),
-                Argument("main", StringType),
-                Argument("optionalInt", IntType, IntValue("1"))
+        val nextAction =
+            Action(
+                id("next"),
+                id("destA"),
+                listOf(
+                    Argument("optional", StringType, StringValue("bla")),
+                    Argument("optionalFloat", FloatType, FloatValue("0.1")),
+                    Argument("main", StringType),
+                    Argument("optionalInt", IntType, IntValue("1"))
+                )
             )
-        )
 
         val prevAction = Action(id("previous"), id("destB"), emptyList())
 
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragmentDefaultParam"), "fragment", listOf(),
-            listOf(prevAction, nextAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragmentDefaultParam"),
+                "fragment",
+                listOf(),
+                listOf(prevAction, nextAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), false)
         assertThat(actual.toString()).parsesAs("a.b.MainFragmentDefaultParamDirections")
@@ -163,15 +174,16 @@
 
     @Test
     fun testDirectionsClassGeneration_withKeywordId() {
-        val funAction = Action(
-            ResReference("fun.is.in", "id", "next"), id("destA"),
-            listOf()
-        )
+        val funAction = Action(ResReference("fun.is.in", "id", "next"), id("destA"), listOf())
 
-        val dest = Destination(
-            null, ClassName.get("a.b", "FunFragment"), "fragment", listOf(),
-            listOf(funAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "FunFragment"),
+                "fragment",
+                listOf(),
+                listOf(funAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), false)
         assertThat(actual.toString()).parsesAs("a.b.FunFragmentDirections")
@@ -180,75 +192,85 @@
 
     @Test
     fun testDirectionsClassGeneration_longPackage() {
-        val funAction = Action(
-            ResReference(
-                "a.b.secondreallyreallyreallyreally" +
-                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                    "longpackage",
-                "id", "next"
-            ),
-            id("destA"),
-            listOf()
-        )
+        val funAction =
+            Action(
+                ResReference(
+                    "a.b.secondreallyreallyreallyreally" +
+                        "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                        "longpackage",
+                    "id",
+                    "next"
+                ),
+                id("destA"),
+                listOf()
+            )
 
-        val dest = Destination(
-            null,
-            ClassName.get(
-                "a.b.reallyreallyreallyreally" +
-                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                    "longpackage",
-                "LongPackageFragment"
-            ),
-            "fragment", listOf(),
-            listOf(funAction)
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get(
+                    "a.b.reallyreallyreallyreally" +
+                        "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                        "longpackage",
+                    "LongPackageFragment"
+                ),
+                "fragment",
+                listOf(),
+                listOf(funAction)
+            )
 
         val actual = generateDirectionsCodeFile(dest, emptyList(), false)
-        assertThat(actual.toString()).parsesAs(
-            "a.b.reallyreallyreallyreallyreally" +
-                "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
-                "longpackage.LongPackageFragmentDirections"
+        assertThat(actual.toString())
+            .parsesAs(
+                "a.b.reallyreallyreallyreallyreally" +
+                    "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreally" +
+                    "longpackage.LongPackageFragmentDirections"
+            )
+        assertCompilesWithoutError(
+            actual,
+            "a.b.secondreallyreallyreallyreallyreallyreally" +
+                "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongpackage"
         )
-        assertCompilesWithoutError(actual, "a.b.secondreallyreallyreallyreallyreallyreally" +
-            "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongpackage")
     }
 
     @Test
     fun testArgumentsClassGeneration() {
-        val dest = Destination(
-            null, ClassName.get("a.b", "MainFragment"), "fragment",
-            listOf(
-                Argument("main", StringType),
-                Argument("optional", IntType, IntValue("-1")),
-                Argument(
-                    "reference", ReferenceType,
-                    ReferenceValue(
-                        ResReference(
-                            "a.b", "drawable",
-                            "background"
-                        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get("a.b", "MainFragment"),
+                "fragment",
+                listOf(
+                    Argument("main", StringType),
+                    Argument("optional", IntType, IntValue("-1")),
+                    Argument(
+                        "reference",
+                        ReferenceType,
+                        ReferenceValue(ResReference("a.b", "drawable", "background"))
+                    ),
+                    Argument("referenceZeroDefaultValue", ReferenceType, IntValue("0")),
+                    Argument("floatArg", FloatType, FloatValue("1")),
+                    Argument("floatArrayArg", FloatArrayType),
+                    Argument(
+                        "objectArrayArgument",
+                        ObjectArrayType("android.content.pm.ActivityInfo")
+                    ),
+                    Argument("boolArg", BoolType, BooleanValue("true")),
+                    Argument(
+                        "optionalParcelable",
+                        ObjectType("android.content.pm.ActivityInfo"),
+                        NullValue,
+                        true
+                    ),
+                    Argument(
+                        "enumArg",
+                        ObjectType("java.nio.file.AccessMode"),
+                        EnumValue(ObjectType("java.nio.file.AccessMode"), "READ"),
+                        false
                     )
                 ),
-                Argument("referenceZeroDefaultValue", ReferenceType, IntValue("0")),
-                Argument("floatArg", FloatType, FloatValue("1")),
-                Argument("floatArrayArg", FloatArrayType),
-                Argument("objectArrayArgument", ObjectArrayType("android.content.pm.ActivityInfo")),
-                Argument("boolArg", BoolType, BooleanValue("true")),
-                Argument(
-                    "optionalParcelable",
-                    ObjectType("android.content.pm.ActivityInfo"),
-                    NullValue,
-                    true
-                ),
-                Argument(
-                    "enumArg",
-                    ObjectType("java.nio.file.AccessMode"),
-                    EnumValue(ObjectType("java.nio.file.AccessMode"), "READ"),
-                    false
-                )
-            ),
-            listOf()
-        )
+                listOf()
+            )
 
         val actual = generateArgsCodeFile(dest, false)
         assertThat(actual.toString()).parsesAs("a.b.MainFragmentArgs")
@@ -257,24 +279,29 @@
 
     @Test
     fun testArgumentClassGeneration_longArgumentName() {
-        val dest = Destination(
-            null,
-            ClassName.get(
-                "a.b",
-                "ReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReally" +
-                    "ReallyLongNameFragment"
-            ),
-            "fragment",
-            listOf(Argument("main", StringType)),
-            listOf()
-        )
+        val dest =
+            Destination(
+                null,
+                ClassName.get(
+                    "a.b",
+                    "ReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReally" +
+                        "ReallyLongNameFragment"
+                ),
+                "fragment",
+                listOf(Argument("main", StringType)),
+                listOf()
+            )
 
         val actual = generateArgsCodeFile(dest, false)
-        assertThat(actual.toString()).parsesAs(
-            "a.b.ReallyReallyReallyReallyReally" +
-                "ReallyReallyReallyReallyReallyReallyReallyReallyReallyLongNameMainFragmentArgs"
+        assertThat(actual.toString())
+            .parsesAs(
+                "a.b.ReallyReallyReallyReallyReally" +
+                    "ReallyReallyReallyReallyReallyReallyReallyReallyReallyLongNameMainFragmentArgs"
+            )
+        assertCompilesWithoutError(
+            actual,
+            "a.b.secondreallyreallyreallyreallyreallyreally" +
+                "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongpackage"
         )
-        assertCompilesWithoutError(actual, "a.b.secondreallyreallyreallyreallyreallyreally" +
-            "reallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongpackage")
     }
 }
diff --git a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolverTest.kt b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolverTest.kt
index a28cf39..66251ef 100644
--- a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolverTest.kt
+++ b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavArgumentResolverTest.kt
@@ -38,11 +38,10 @@
     private fun createTemplateDestination(name: String): Destination {
         val capitalizedName = name.capitalize(Locale.US)
         return Destination(
-            id(name), ClassName.get("foo", "Fragment$capitalizedName"), "test",
-            listOf(
-                Argument("arg1", StringType),
-                Argument("arg2", StringType, StringValue("foo"))
-            ),
+            id(name),
+            ClassName.get("foo", "Fragment$capitalizedName"),
+            "test",
+            listOf(Argument("arg1", StringType), Argument("arg2", StringType, StringValue("foo"))),
             emptyList()
         )
     }
@@ -51,32 +50,29 @@
     fun test() {
         val dest1Template = createTemplateDestination("first")
         val dest2Template = createTemplateDestination("second")
-        val outerScopeAction = Action(
-            id("toOuterScope"), id("outerScope"),
-            listOf(Argument("boo", StringType))
-        )
-        val dest1 = dest1Template.copy(
-            actions = listOf(
-                Action(id("action1"), dest2Template.id),
-                outerScopeAction
+        val outerScopeAction =
+            Action(id("toOuterScope"), id("outerScope"), listOf(Argument("boo", StringType)))
+        val dest1 =
+            dest1Template.copy(
+                actions = listOf(Action(id("action1"), dest2Template.id), outerScopeAction)
             )
-        )
-        val dest2 = dest2Template.copy(
-            actions = listOf(
-                Action(
-                    id("action2"), dest1Template.id,
+        val dest2 =
+            dest2Template.copy(
+                actions =
                     listOf(
-                        Argument("arg1", StringType, StringValue("actionValue")),
-                        Argument("actionArg", StringType)
+                        Action(
+                            id("action2"),
+                            dest1Template.id,
+                            listOf(
+                                Argument("arg1", StringType, StringValue("actionValue")),
+                                Argument("actionArg", StringType)
+                            )
+                        )
                     )
-                )
             )
-        )
 
-        val topLevel = Destination(
-            null, null, "test",
-            emptyList(), emptyList(), listOf(dest1, dest2)
-        )
+        val topLevel =
+            Destination(null, null, "test", emptyList(), emptyList(), listOf(dest1, dest2))
 
         val resolveArguments = resolveArguments(topLevel)
         assertThat(resolveArguments.nested.size, `is`(2))
@@ -84,40 +80,34 @@
         val resolvedAction1 = Action(id("action1"), dest2Template.id, dest2.args)
         assertThat(
             resolveArguments.nested[0].actions,
-            `is`(
-                listOf(
-                    resolvedAction1,
-                    outerScopeAction
-                )
-            )
+            `is`(listOf(resolvedAction1, outerScopeAction))
         )
 
-        val resolvedAction2 = Action(
-            id("action2"), dest1Template.id,
-            listOf(
-                Argument("arg1", StringType, StringValue("actionValue")),
-                Argument("actionArg", StringType),
-                Argument("arg2", StringType, StringValue("foo"))
+        val resolvedAction2 =
+            Action(
+                id("action2"),
+                dest1Template.id,
+                listOf(
+                    Argument("arg1", StringType, StringValue("actionValue")),
+                    Argument("actionArg", StringType),
+                    Argument("arg2", StringType, StringValue("foo"))
+                )
             )
-        )
         assertThat(resolveArguments.nested[1].actions, `is`(listOf(resolvedAction2)))
     }
 
     @Test
     fun testIncompatibleTypes() {
         val dest1 = createTemplateDestination("first")
-        val invalidAction = Action(
-            id("action"), dest1.id,
-            listOf(
-                Argument("arg2", IntType, IntValue("11")),
-                Argument("arg1", StringType)
+        val invalidAction =
+            Action(
+                id("action"),
+                dest1.id,
+                listOf(Argument("arg2", IntType, IntValue("11")), Argument("arg1", StringType))
             )
-        )
 
-        val topLevel = Destination(
-            null, null, "test", emptyList(), listOf(invalidAction),
-            listOf(dest1)
-        )
+        val topLevel =
+            Destination(null, null, "test", emptyList(), listOf(invalidAction), listOf(dest1))
 
         try {
             resolveArguments(topLevel)
diff --git a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavGeneratorTest.kt b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavGeneratorTest.kt
index 6fae4bc..c67753e 100644
--- a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavGeneratorTest.kt
+++ b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavGeneratorTest.kt
@@ -33,9 +33,7 @@
 @RunWith(Parameterized::class)
 class NavGeneratorTest(private val generateKotlin: Boolean) {
 
-    @Suppress("MemberVisibilityCanBePrivate")
-    @get:Rule
-    val workingDir = TemporaryFolder()
+    @Suppress("MemberVisibilityCanBePrivate") @get:Rule val workingDir = TemporaryFolder()
 
     val fileNameExt = if (generateKotlin) "kt" else "java"
 
@@ -44,14 +42,16 @@
         applicationId: String,
         navigationXml: File,
         outputDir: File
-    ) = SafeArgsGenerator(
-        rFilePackage = rFilePackage,
-        applicationId = applicationId,
-        navigationXml = navigationXml,
-        outputDir = outputDir,
-        useAndroidX = true,
-        generateKotlin = generateKotlin
-    ).generate()
+    ) =
+        SafeArgsGenerator(
+                rFilePackage = rFilePackage,
+                applicationId = applicationId,
+                navigationXml = navigationXml,
+                outputDir = outputDir,
+                useAndroidX = true,
+                generateKotlin = generateKotlin
+            )
+            .generate()
 
     private fun CodeFile.assertParsesAs(fullClassName: String, folder: String) {
         when (this) {
@@ -75,17 +75,16 @@
 
     @Test
     fun naive_test() {
-        val output = generateSafeArgs(
-            "foo", "foo.flavor",
-            testData("naive_test.xml"), workingDir.root
-        )
+        val output =
+            generateSafeArgs("foo", "foo.flavor", testData("naive_test.xml"), workingDir.root)
         val fileNames = output.fileNames
-        val expectedSet = setOf(
-            "androidx.navigation.testapp.MainFragmentDirections",
-            "foo.flavor.NextFragmentDirections",
-            "androidx.navigation.testapp.MainFragmentArgs",
-            "foo.flavor.NextFragmentArgs"
-        )
+        val expectedSet =
+            setOf(
+                "androidx.navigation.testapp.MainFragmentDirections",
+                "foo.flavor.NextFragmentDirections",
+                "androidx.navigation.testapp.MainFragmentArgs",
+                "foo.flavor.NextFragmentArgs"
+            )
         assertThat(output.errors.isEmpty(), `is`(true))
         assertThat(fileNames.toSet(), `is`(expectedSet))
         fileNames.forEach { name ->
@@ -97,17 +96,21 @@
 
     @Test
     fun nested_test() {
-        val output = generateSafeArgs(
-            "foo", "foo.flavor",
-            testData("nested_login_test.xml"), workingDir.root
-        )
+        val output =
+            generateSafeArgs(
+                "foo",
+                "foo.flavor",
+                testData("nested_login_test.xml"),
+                workingDir.root
+            )
         val fileNames = output.fileNames
-        val expectedSet = setOf(
-            "foo.flavor.MainFragmentDirections",
-            "foo.LoginDirections",
-            "foo.flavor.account.LoginFragmentDirections",
-            "foo.flavor.account.RegisterFragmentDirections"
-        )
+        val expectedSet =
+            setOf(
+                "foo.flavor.MainFragmentDirections",
+                "foo.LoginDirections",
+                "foo.flavor.account.LoginFragmentDirections",
+                "foo.flavor.account.RegisterFragmentDirections"
+            )
         assertThat(output.errors.isEmpty(), `is`(true))
         assertThat(fileNames.toSet(), `is`(expectedSet))
         fileNames.forEach { name ->
@@ -116,26 +119,27 @@
             assertThat(file.exists(), `is`(true))
         }
 
-        val codeFiles = fileNames
-            .mapIndexed { index, name -> name to (output.files[index]) }
-            .associate { it }
-        codeFiles.forEach { (name, file) ->
-            file.assertParsesAs(name, "nested")
-        }
+        val codeFiles =
+            fileNames.mapIndexed { index, name -> name to (output.files[index]) }.associate { it }
+        codeFiles.forEach { (name, file) -> file.assertParsesAs(name, "nested") }
     }
 
     @Test
     fun nested_same_action_test() {
-        val output = generateSafeArgs(
-            "foo", "foo.flavor",
-            testData("nested_same_action_test.xml"), workingDir.root
-        )
+        val output =
+            generateSafeArgs(
+                "foo",
+                "foo.flavor",
+                testData("nested_same_action_test.xml"),
+                workingDir.root
+            )
         val fileNames = output.fileNames
-        val expectedSet = setOf(
-            "foo.flavor.MainFragmentDirections",
-            "foo.SettingsDirections",
-            "foo.flavor.SettingsFragmentDirections"
-        )
+        val expectedSet =
+            setOf(
+                "foo.flavor.MainFragmentDirections",
+                "foo.SettingsDirections",
+                "foo.flavor.SettingsFragmentDirections"
+            )
         assertThat(output.errors.isEmpty(), `is`(true))
         assertThat(fileNames.toSet(), `is`(expectedSet))
         fileNames.forEach { name ->
@@ -144,28 +148,29 @@
             assertThat(file.exists(), `is`(true))
         }
 
-        val codeFiles = fileNames
-            .mapIndexed { index, name -> name to (output.files[index]) }
-            .associate { it }
-        codeFiles.forEach { (name, file) ->
-            file.assertParsesAs(name, "nested_same_action")
-        }
+        val codeFiles =
+            fileNames.mapIndexed { index, name -> name to (output.files[index]) }.associate { it }
+        codeFiles.forEach { (name, file) -> file.assertParsesAs(name, "nested_same_action") }
     }
 
     @Test
     fun nested_overridden_action_test() {
-        val output = generateSafeArgs(
-            "foo", "foo.flavor",
-            testData("nested_overridden_action_test.xml"), workingDir.root
-        )
+        val output =
+            generateSafeArgs(
+                "foo",
+                "foo.flavor",
+                testData("nested_overridden_action_test.xml"),
+                workingDir.root
+            )
         val fileNames = output.fileNames
-        val expectedSet = setOf(
-            "foo.flavor.MainFragmentDirections",
-            "foo.SettingsDirections",
-            "foo.flavor.SettingsFragmentDirections",
-            "foo.InnerSettingsDirections",
-            "foo.flavor.InnerSettingsFragmentDirections"
-        )
+        val expectedSet =
+            setOf(
+                "foo.flavor.MainFragmentDirections",
+                "foo.SettingsDirections",
+                "foo.flavor.SettingsFragmentDirections",
+                "foo.InnerSettingsDirections",
+                "foo.flavor.InnerSettingsFragmentDirections"
+            )
         assertThat(output.errors.isEmpty(), `is`(true))
         assertThat(fileNames.toSet(), `is`(expectedSet))
         fileNames.forEach { name ->
@@ -174,12 +179,9 @@
             assertThat(file.exists(), `is`(true))
         }
 
-        val codeFiles = fileNames
-            .mapIndexed { index, name -> name to (output.files[index]) }
-            .associate { it }
-        codeFiles.forEach { (name, file) ->
-            file.assertParsesAs(name, "nested_overridden_action")
-        }
+        val codeFiles =
+            fileNames.mapIndexed { index, name -> name to (output.files[index]) }.associate { it }
+        codeFiles.forEach { (name, file) -> file.assertParsesAs(name, "nested_overridden_action") }
     }
 
     companion object {
diff --git a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavParserTest.kt b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavParserTest.kt
index a205ddf6..9c37a93 100644
--- a/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavParserTest.kt
+++ b/navigation/navigation-safe-args-generator/src/test/kotlin/androidx/navigation/safe/args/generator/NavParserTest.kt
@@ -33,129 +33,137 @@
     @Test
     fun testNaiveGraph() {
         val id: (String) -> ResReference = { id -> ResReference("a.b", "id", id) }
-        val navGraph = NavParser.parseNavigationFile(
-            testData("naive_test.xml"),
-            "a.b", "foo.app", Context()
-        )
+        val navGraph =
+            NavParser.parseNavigationFile(testData("naive_test.xml"), "a.b", "foo.app", Context())
 
         val nameFirst = ClassName.get("androidx.navigation.testapp", "MainFragment")
         val nameNext = ClassName.get("foo.app", "NextFragment")
-        val expectedFirst = Destination(
-            id("first_screen"), nameFirst, "fragment",
-            listOf(Argument("myarg1", StringType, StringValue("one"))),
-            listOf(
-                Action(
-                    id("next"), id("next_fragment"),
-                    listOf(
-                        Argument("myarg2", StringType),
-                        Argument("randomArgument", StringType),
-                        Argument("intArgument", IntType, IntValue("261")),
-                        Argument("referenceZeroDefaultValue", ReferenceType, IntValue("0")),
-                        Argument(
-                            "activityInfo",
-                            ObjectType("android.content.pm.ActivityInfo")
-                        ),
-                        Argument(
-                            "activityInfoNull",
-                            ObjectType("android.content.pm.ActivityInfo"),
-                            NullValue,
-                            true
-                        ),
-                        Argument("intArrayArg", IntArrayType),
-                        Argument("stringArrayArg", StringArrayType),
-                        Argument(
-                            "objectArrayArg",
-                            ObjectArrayType(
-                                "android.content.pm.ActivityInfo"
-                            )
-                        ),
-                        Argument("booleanArrayArg", BoolArrayType, NullValue, true),
-                        Argument(
-                            "enumArg",
-                            ObjectType("java.nio.file.AccessMode"),
-                            EnumValue(ObjectType("java.nio.file.AccessMode"), "READ"),
-                            false
-                        ),
-                        Argument(
-                            "objectRelativeArg",
-                            ObjectType("a.b.pkg.ClassName")
-                        ),
-                        Argument(
-                            "objectRelativeArg2",
-                            ObjectType("a.b.ClassName")
-                        ),
-                        Argument(
-                            "objectRelativeArg3",
-                            ObjectType("a.b.OuterClass\$InnerClass")
-                        ),
-                        Argument("implicitNullString", StringType, NullValue, true),
-                        Argument("explicitNullString", StringType, NullValue, true)
+        val expectedFirst =
+            Destination(
+                id("first_screen"),
+                nameFirst,
+                "fragment",
+                listOf(Argument("myarg1", StringType, StringValue("one"))),
+                listOf(
+                    Action(
+                        id("next"),
+                        id("next_fragment"),
+                        listOf(
+                            Argument("myarg2", StringType),
+                            Argument("randomArgument", StringType),
+                            Argument("intArgument", IntType, IntValue("261")),
+                            Argument("referenceZeroDefaultValue", ReferenceType, IntValue("0")),
+                            Argument("activityInfo", ObjectType("android.content.pm.ActivityInfo")),
+                            Argument(
+                                "activityInfoNull",
+                                ObjectType("android.content.pm.ActivityInfo"),
+                                NullValue,
+                                true
+                            ),
+                            Argument("intArrayArg", IntArrayType),
+                            Argument("stringArrayArg", StringArrayType),
+                            Argument(
+                                "objectArrayArg",
+                                ObjectArrayType("android.content.pm.ActivityInfo")
+                            ),
+                            Argument("booleanArrayArg", BoolArrayType, NullValue, true),
+                            Argument(
+                                "enumArg",
+                                ObjectType("java.nio.file.AccessMode"),
+                                EnumValue(ObjectType("java.nio.file.AccessMode"), "READ"),
+                                false
+                            ),
+                            Argument("objectRelativeArg", ObjectType("a.b.pkg.ClassName")),
+                            Argument("objectRelativeArg2", ObjectType("a.b.ClassName")),
+                            Argument(
+                                "objectRelativeArg3",
+                                ObjectType("a.b.OuterClass\$InnerClass")
+                            ),
+                            Argument("implicitNullString", StringType, NullValue, true),
+                            Argument("explicitNullString", StringType, NullValue, true)
+                        )
                     )
                 )
             )
-        )
 
-        val expectedNext = Destination(
-            id("next_fragment"), nameNext, "fragment",
-            listOf(Argument("myarg2", StringType)),
-            listOf(
-                Action(id("next"), id("first_screen")),
-                Action(id("finish"), null)
+        val expectedNext =
+            Destination(
+                id("next_fragment"),
+                nameNext,
+                "fragment",
+                listOf(Argument("myarg2", StringType)),
+                listOf(Action(id("next"), id("first_screen")), Action(id("finish"), null))
             )
-        )
 
-        val expectedGraph = Destination(
-            null, null, "navigation", emptyList(), emptyList(),
-            listOf(expectedFirst, expectedNext)
-        )
+        val expectedGraph =
+            Destination(
+                null,
+                null,
+                "navigation",
+                emptyList(),
+                emptyList(),
+                listOf(expectedFirst, expectedNext)
+            )
         assertThat(navGraph).isEqualTo(expectedGraph)
     }
 
     @Test
     fun testNestedGraph() {
         val id: (String) -> ResReference = { id -> ResReference("a.b", "id", id) }
-        val navGraph = NavParser.parseNavigationFile(
-            testData("nested_login_test.xml"),
-            "a.b", "foo.app", Context()
-        )
+        val navGraph =
+            NavParser.parseNavigationFile(
+                testData("nested_login_test.xml"),
+                "a.b",
+                "foo.app",
+                Context()
+            )
 
-        val expectedMainFragment = Destination(
-            id = id("main_fragment"),
-            name = ClassName.get("foo.app", "MainFragment"),
-            type = "fragment",
-            args = emptyList(),
-            actions = listOf(Action(id("start_login"), id("login")))
-        )
+        val expectedMainFragment =
+            Destination(
+                id = id("main_fragment"),
+                name = ClassName.get("foo.app", "MainFragment"),
+                type = "fragment",
+                args = emptyList(),
+                actions = listOf(Action(id("start_login"), id("login")))
+            )
 
-        val expectedNestedFragment1 = Destination(
-            id = id("login_fragment"),
-            name = ClassName.get("foo.app.account", "LoginFragment"),
-            type = "fragment",
-            args = emptyList(),
-            actions = listOf(Action(id("register"), id("register_fragment")))
-        )
+        val expectedNestedFragment1 =
+            Destination(
+                id = id("login_fragment"),
+                name = ClassName.get("foo.app.account", "LoginFragment"),
+                type = "fragment",
+                args = emptyList(),
+                actions = listOf(Action(id("register"), id("register_fragment")))
+            )
 
-        val expectedNestedFragment2 = Destination(
-            id = id("register_fragment"),
-            name = ClassName.get("foo.app.account", "RegisterFragment"),
-            type = "fragment",
-            args = emptyList(),
-            actions = emptyList()
-        )
+        val expectedNestedFragment2 =
+            Destination(
+                id = id("register_fragment"),
+                name = ClassName.get("foo.app.account", "RegisterFragment"),
+                type = "fragment",
+                args = emptyList(),
+                actions = emptyList()
+            )
 
-        val expectedNestedGraph = Destination(
-            id = id("login"),
-            name = ClassName.get("a.b", "Login"),
-            type = "navigation",
-            args = emptyList(),
-            actions = listOf(Action(id("action_done"), null)),
-            nested = listOf(expectedNestedFragment1, expectedNestedFragment2)
-        )
+        val expectedNestedGraph =
+            Destination(
+                id = id("login"),
+                name = ClassName.get("a.b", "Login"),
+                type = "navigation",
+                args = emptyList(),
+                actions = listOf(Action(id("action_done"), null)),
+                nested = listOf(expectedNestedFragment1, expectedNestedFragment2)
+            )
 
-        val expectedGraph = Destination(
-            null, null, "navigation", emptyList(), emptyList(),
-            listOf(expectedMainFragment, expectedNestedGraph)
-        )
+        val expectedGraph =
+            Destination(
+                null,
+                null,
+                "navigation",
+                emptyList(),
+                emptyList(),
+                listOf(expectedMainFragment, expectedNestedGraph)
+            )
 
         assertThat(navGraph).isEqualTo(expectedGraph)
     }
@@ -163,39 +171,44 @@
     @Test
     fun testNestedIncludedGraph() {
         val id: (String) -> ResReference = { id -> ResReference("a.b", "id", id) }
-        val nestedIncludeNavGraph = NavParser.parseNavigationFile(
-            testData("nested_include_login_test.xml"), "a.b", "foo.app", Context()
-        )
-
-        val expectedMainFragment = Destination(
-            id = id("main_fragment"),
-            name = ClassName.get("foo.app", "MainFragment"),
-            type = "fragment",
-            args = emptyList(),
-            actions = listOf(Action(id("start_login"), id("login")))
-        )
-
-        val expectedIncluded = IncludedDestination(
-            ResReference(
-                "a.b", "navigation",
-                "to_include_login_test"
+        val nestedIncludeNavGraph =
+            NavParser.parseNavigationFile(
+                testData("nested_include_login_test.xml"),
+                "a.b",
+                "foo.app",
+                Context()
             )
-        )
 
-        val expectedGraph = Destination(
-            null, null, "navigation", emptyList(), emptyList(),
-            listOf(expectedMainFragment), listOf(expectedIncluded)
-        )
+        val expectedMainFragment =
+            Destination(
+                id = id("main_fragment"),
+                name = ClassName.get("foo.app", "MainFragment"),
+                type = "fragment",
+                args = emptyList(),
+                actions = listOf(Action(id("start_login"), id("login")))
+            )
+
+        val expectedIncluded =
+            IncludedDestination(ResReference("a.b", "navigation", "to_include_login_test"))
+
+        val expectedGraph =
+            Destination(
+                null,
+                null,
+                "navigation",
+                emptyList(),
+                emptyList(),
+                listOf(expectedMainFragment),
+                listOf(expectedIncluded)
+            )
 
         assertThat(nestedIncludeNavGraph).isEqualTo(expectedGraph)
     }
 
     @Test
     fun testReferenceParsing() {
-        assertThat(parseReference("@+id/next", "a.b"))
-            .isEqualTo(ResReference("a.b", "id", "next"))
-        assertThat(parseReference("@+id/next", "a.b"))
-            .isEqualTo(ResReference("a.b", "id", "next"))
+        assertThat(parseReference("@+id/next", "a.b")).isEqualTo(ResReference("a.b", "id", "next"))
+        assertThat(parseReference("@+id/next", "a.b")).isEqualTo(ResReference("a.b", "id", "next"))
         assertThat(parseReference("@android:string/text", "a.b"))
             .isEqualTo(ResReference("android", "string", "text"))
         assertThat(parseReference("@android:id/text", "a.b"))
@@ -276,10 +289,8 @@
 
     @Test
     fun testArgSanitizedName() {
-        assertThat("camelCaseName")
-            .isEqualTo(Argument("camelCaseName", IntType).sanitizedName)
-        assertThat("ALLCAPSNAME")
-            .isEqualTo(Argument("ALLCAPSNAME", IntType).sanitizedName)
+        assertThat("camelCaseName").isEqualTo(Argument("camelCaseName", IntType).sanitizedName)
+        assertThat("ALLCAPSNAME").isEqualTo(Argument("ALLCAPSNAME", IntType).sanitizedName)
         assertThat("alllowercasename")
             .isEqualTo(Argument("alllowercasename", IntType).sanitizedName)
         assertThat("nameWithUnderscore")
@@ -288,14 +299,11 @@
             .isEqualTo(Argument("Name_With_Underscore", IntType).sanitizedName)
         assertThat("NAMEWITHUNDERSCORE")
             .isEqualTo(Argument("NAME_WITH_UNDERSCORE", IntType).sanitizedName)
-        assertThat("nameWithSpaces")
-            .isEqualTo(Argument("name with spaces", IntType).sanitizedName)
-        assertThat("nameWithDot")
-            .isEqualTo(Argument("name.with.dot", IntType).sanitizedName)
+        assertThat("nameWithSpaces").isEqualTo(Argument("name with spaces", IntType).sanitizedName)
+        assertThat("nameWithDot").isEqualTo(Argument("name.with.dot", IntType).sanitizedName)
         assertThat("nameWithDollars")
             .isEqualTo(Argument("name\$with\$dollars", IntType).sanitizedName)
-        assertThat("nameWithBangs")
-            .isEqualTo(Argument("name!with!bangs", IntType).sanitizedName)
+        assertThat("nameWithBangs").isEqualTo(Argument("name!with!bangs", IntType).sanitizedName)
         assertThat("nameWithHyphens")
             .isEqualTo(Argument("name-with-hyphens", IntType).sanitizedName)
     }
diff --git a/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/ArgumentsGenerationTask.kt b/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/ArgumentsGenerationTask.kt
index b08f9fd..b64b237 100644
--- a/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/ArgumentsGenerationTask.kt
+++ b/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/ArgumentsGenerationTask.kt
@@ -42,48 +42,46 @@
 private const val MAPPING_FILE = "file_mappings.json"
 
 @CacheableTask
-abstract class ArgumentsGenerationTask @Inject constructor(
-    private val projectLayout: ProjectLayout
-) : DefaultTask() {
-    @get:Input
-    abstract val rFilePackage: Property<String>
+abstract class ArgumentsGenerationTask
+@Inject
+constructor(private val projectLayout: ProjectLayout) : DefaultTask() {
+    @get:Input abstract val rFilePackage: Property<String>
 
-    @get:Input
-    abstract val applicationId: Property<String>
+    @get:Input abstract val applicationId: Property<String>
 
-    @get:Input
-    abstract val useAndroidX: Property<Boolean>
+    @get:Input abstract val useAndroidX: Property<Boolean>
 
-    @get:Input
-    abstract val generateKotlin: Property<Boolean>
+    @get:Input abstract val generateKotlin: Property<Boolean>
 
-    @get:OutputDirectory
-    abstract val outputDir: DirectoryProperty
+    @get:OutputDirectory abstract val outputDir: DirectoryProperty
 
     @get:PathSensitive(PathSensitivity.RELATIVE)
     @get:Incremental
     @get:InputFiles
     abstract val navigationFiles: ConfigurableFileCollection
 
-    @get:OutputDirectory
-    abstract val incrementalFolder: DirectoryProperty
+    @get:OutputDirectory abstract val incrementalFolder: DirectoryProperty
 
-    private fun generateArgs(navFiles: Collection<File>, out: File) = navFiles.map { file ->
-        val output = SafeArgsGenerator(
-            rFilePackage = rFilePackage.get(),
-            applicationId = applicationId.orNull ?: "",
-            navigationXml = file,
-            outputDir = out,
-            useAndroidX = useAndroidX.get(),
-            generateKotlin = generateKotlin.get()
-        ).generate()
-        Mapping(
-            file.relativeTo(
-                projectLayout.projectDirectory.asFile
-            ).path,
-            output.fileNames
-        ) to output.errors
-    }.unzip().let { (mappings, errorLists) -> mappings to errorLists.flatten() }
+    private fun generateArgs(navFiles: Collection<File>, out: File) =
+        navFiles
+            .map { file ->
+                val output =
+                    SafeArgsGenerator(
+                            rFilePackage = rFilePackage.get(),
+                            applicationId = applicationId.orNull ?: "",
+                            navigationXml = file,
+                            outputDir = out,
+                            useAndroidX = useAndroidX.get(),
+                            generateKotlin = generateKotlin.get()
+                        )
+                        .generate()
+                Mapping(
+                    file.relativeTo(projectLayout.projectDirectory.asFile).path,
+                    output.fileNames
+                ) to output.errors
+            }
+            .unzip()
+            .let { (mappings, errorLists) -> mappings to errorLists.flatten() }
 
     private fun writeMappings(mappings: List<Mapping>) {
         File(incrementalFolder.asFile.get(), MAPPING_FILE).writer().use {
@@ -139,15 +137,21 @@
         val (newMapping, errors) = generateArgs(modifiedFiles, outputDir.asFile.get())
         val newJavaFiles = newMapping.flatMap { it.javaFiles }.toSet()
         val changedInputs = removedFiles + modifiedFiles
-        val (modified, unmodified) = oldMapping.partition {
-            File(projectLayout.projectDirectory.asFile, it.navFile) in changedInputs
-        }
-        modified.flatMap { it.javaFiles }
+        val (modified, unmodified) =
+            oldMapping.partition {
+                File(projectLayout.projectDirectory.asFile, it.navFile) in changedInputs
+            }
+        modified
+            .flatMap { it.javaFiles }
             .filter { name -> name !in newJavaFiles }
             .forEach { javaName ->
-                val fileExtension = if (generateKotlin.get()) { ".kt" } else { ".java" }
-                val fileName =
-                    "${javaName.replace('.', File.separatorChar)}$fileExtension"
+                val fileExtension =
+                    if (generateKotlin.get()) {
+                        ".kt"
+                    } else {
+                        ".java"
+                    }
+                val fileName = "${javaName.replace('.', File.separatorChar)}$fileExtension"
                 val file = File(outputDir.asFile.get(), fileName)
                 if (file.exists()) {
                     file.delete()
@@ -168,8 +172,7 @@
     }
 }
 
-private fun ErrorMessage.toClickableText() = "$path:$line:$column " +
-    "(${File(path).name}:$line): \n" +
-    "error: $message"
+private fun ErrorMessage.toClickableText() =
+    "$path:$line:$column " + "(${File(path).name}:$line): \n" + "error: $message"
 
 private data class Mapping(val navFile: String, val javaFiles: List<String>)
diff --git a/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/SafeArgsPlugin.kt b/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/SafeArgsPlugin.kt
index a13bd56..62e8d03 100644
--- a/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/SafeArgsPlugin.kt
+++ b/navigation/navigation-safe-args-gradle-plugin/src/main/kotlin/androidx/navigation/safeargs/gradle/SafeArgsPlugin.kt
@@ -38,9 +38,8 @@
 internal const val GENERATED_PATH = "generated/source/$PLUGIN_DIRNAME"
 internal const val INCREMENTAL_PATH = "intermediates/incremental"
 
-abstract class SafeArgsPlugin protected constructor(
-    val providerFactory: ProviderFactory
-) : Plugin<Project> {
+abstract class SafeArgsPlugin protected constructor(val providerFactory: ProviderFactory) :
+    Plugin<Project> {
 
     abstract val generateKotlin: Boolean
 
@@ -54,16 +53,17 @@
             extension is LibraryExtension -> {
                 extension.libraryVariants.configureEach(action)
             }
-            else -> throw GradleException(
-                "safeargs plugin must be used with android app," +
-                    "library or feature plugin"
-            )
+            else ->
+                throw GradleException(
+                    "safeargs plugin must be used with android app," + "library or feature plugin"
+                )
         }
     }
 
     override fun apply(project: Project) {
-        val extension = project.extensions.findByType(BaseExtension::class.java)
-            ?: throw GradleException("safeargs plugin must be used with android plugin")
+        val extension =
+            project.extensions.findByType(BaseExtension::class.java)
+                ?: throw GradleException("safeargs plugin must be used with android plugin")
         val isKotlinProject =
             project.extensions.findByType(KotlinProjectExtension::class.java) != null
         if (!isKotlinProject && generateKotlin) {
@@ -81,65 +81,57 @@
         variantExtension.onVariants { variant ->
             when (variant) {
                 is ApplicationVariant -> {
-                    applicationIds.getOrPut(variant.name) {
-                        variant.applicationId
-                    }
-                    namespaces.getOrPut(variant.name) {
-                        variant.namespace
-                    }
+                    applicationIds.getOrPut(variant.name) { variant.applicationId }
+                    namespaces.getOrPut(variant.name) { variant.namespace }
                 }
                 is DynamicFeatureVariant -> {
-                    applicationIds.getOrPut(variant.name) {
-                        variant.applicationId
-                    }
-                    namespaces.getOrPut(variant.name) {
-                        variant.namespace
-                    }
+                    applicationIds.getOrPut(variant.name) { variant.applicationId }
+                    namespaces.getOrPut(variant.name) { variant.namespace }
                 }
                 is LibraryVariant ->
                     // we are putting the library names space in applicationId because
                     // we want the generated class to use the namespace to determine its package
-                    applicationIds.getOrPut(variant.name) {
-                        variant.namespace
-                    }
+                    applicationIds.getOrPut(variant.name) { variant.namespace }
             }
         }
 
         forEachVariant(extension) { variant ->
-            val task = project.tasks.register(
-                "generateSafeArgs${variant.name.replaceFirstChar {
+            val task =
+                project.tasks.register(
+                    "generateSafeArgs${variant.name.replaceFirstChar {
                     if (it.isLowerCase()) it.titlecase(Locale.US) else it.toString()
                 }}",
-                ArgumentsGenerationTask::class.java
-            ) { task ->
-                task.applicationId.set(
-                    applicationIds.getOrPut(variant.name) {
-                        providerFactory.provider { variant.applicationId }
-                    }
-                )
-                // If there is a namespace available, we should always use that to reference the
-                // package of the R file, otherwise we assume the R file is in the same location as
-                // the class
-                task.rFilePackage.set(namespaces[variant.name] ?: task.applicationId)
-                task.navigationFiles.setFrom(navigationFiles(variant, project))
-                task.outputDir.set(
-                    project.layout.buildDirectory.dir("$GENERATED_PATH/${variant.dirName}")
-                )
-                task.incrementalFolder.set(
-                    project.layout.buildDirectory.dir("$INCREMENTAL_PATH/${task.name}")
-                )
-                task.useAndroidX.set(
-                    (project.findProperty("android.useAndroidX") == "true").also {
-                        if (!it) {
-                            throw GradleException(
-                                "androidx.navigation.safeargs can only be used with an androidx " +
-                                    "project"
-                            )
+                    ArgumentsGenerationTask::class.java
+                ) { task ->
+                    task.applicationId.set(
+                        applicationIds.getOrPut(variant.name) {
+                            providerFactory.provider { variant.applicationId }
                         }
-                    }
-                )
-                task.generateKotlin.set(generateKotlin)
-            }
+                    )
+                    // If there is a namespace available, we should always use that to reference the
+                    // package of the R file, otherwise we assume the R file is in the same location
+                    // as
+                    // the class
+                    task.rFilePackage.set(namespaces[variant.name] ?: task.applicationId)
+                    task.navigationFiles.setFrom(navigationFiles(variant, project))
+                    task.outputDir.set(
+                        project.layout.buildDirectory.dir("$GENERATED_PATH/${variant.dirName}")
+                    )
+                    task.incrementalFolder.set(
+                        project.layout.buildDirectory.dir("$INCREMENTAL_PATH/${task.name}")
+                    )
+                    task.useAndroidX.set(
+                        (project.findProperty("android.useAndroidX") == "true").also {
+                            if (!it) {
+                                throw GradleException(
+                                    "androidx.navigation.safeargs can only be used with an androidx " +
+                                        "project"
+                                )
+                            }
+                        }
+                    )
+                    task.generateKotlin.set(generateKotlin)
+                }
             @Suppress("DEPRECATION") // For BaseVariant should be replaced in later studio versions
             variant.registerJavaGeneratingTask(task, task.get().outputDir.asFile.get())
         }
@@ -150,35 +142,34 @@
         variant: com.android.build.gradle.api.BaseVariant,
         project: Project
     ): ConfigurableFileCollection {
-        val fileProvider = providerFactory.provider {
-            variant.sourceSets
-                .flatMap { it.resDirectories }
-                .mapNotNull {
-                    File(it, "navigation").let { navFolder ->
-                        if (navFolder.exists() && navFolder.isDirectory) navFolder else null
+        val fileProvider =
+            providerFactory.provider {
+                variant.sourceSets
+                    .flatMap { it.resDirectories }
+                    .mapNotNull {
+                        File(it, "navigation").let { navFolder ->
+                            if (navFolder.exists() && navFolder.isDirectory) navFolder else null
+                        }
                     }
-                }
-                .flatMap { navFolder -> navFolder.listFiles().asIterable() }
-                .filter { file -> file.isFile }
-                .groupBy { file -> file.name }
-                .map { entry -> entry.value.last() }
-        }
+                    .flatMap { navFolder -> navFolder.listFiles().asIterable() }
+                    .filter { file -> file.isFile }
+                    .groupBy { file -> file.name }
+                    .map { entry -> entry.value.last() }
+            }
         return project.files(fileProvider)
     }
 }
 
 @Suppress("unused")
-class SafeArgsJavaPlugin @Inject constructor(
-    providerFactory: ProviderFactory
-) : SafeArgsPlugin(providerFactory) {
+class SafeArgsJavaPlugin @Inject constructor(providerFactory: ProviderFactory) :
+    SafeArgsPlugin(providerFactory) {
 
     override val generateKotlin = false
 }
 
 @Suppress("unused")
-class SafeArgsKotlinPlugin @Inject constructor(
-    providerFactory: ProviderFactory
-) : SafeArgsPlugin(providerFactory) {
+class SafeArgsKotlinPlugin @Inject constructor(providerFactory: ProviderFactory) :
+    SafeArgsPlugin(providerFactory) {
 
     override val generateKotlin = true
 }
diff --git a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/BasePluginTest.kt b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/BasePluginTest.kt
index 187dc0e..6692da5 100644
--- a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/BasePluginTest.kt
+++ b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/BasePluginTest.kt
@@ -46,8 +46,7 @@
 internal const val SEC = 1000L
 
 abstract class BasePluginTest {
-    @get:Rule
-    val projectSetup = ProjectSetupRule()
+    @get:Rule val projectSetup = ProjectSetupRule()
 
     internal fun projectRoot(): File = projectSetup.rootDir
 
@@ -60,45 +59,45 @@
     }
 
     internal fun assertExists(name: String, ex: Boolean, prefix: String = ""): File {
-        val generatedFile = File(
-            projectRoot(),
-            "${prefix}build/$GENERATED_PATH/$name"
-        )
-        assertThat(
-            generatedFile.exists(),
-            CoreMatchers.`is`(ex)
-        )
+        val generatedFile = File(projectRoot(), "${prefix}build/$GENERATED_PATH/$name")
+        assertThat(generatedFile.exists(), CoreMatchers.`is`(ex))
         return generatedFile
     }
 
-    internal fun navResource(name: String) =
-        File(projectRoot(), "$NAV_RESOURCES/$name")
+    internal fun navResource(name: String) = File(projectRoot(), "$NAV_RESOURCES/$name")
 
-    internal fun gradleBuilder(vararg args: String) = GradleRunner.create()
-        .withProjectDir(projectRoot()).withPluginClasspath()
-        // b/175897186 set explicit metaspace size in hopes of fewer crashes
-        .withArguments("-Dorg.gradle.jvmargs=-XX:MaxMetaspaceSize=512m", *args)
+    internal fun gradleBuilder(vararg args: String) =
+        GradleRunner.create()
+            .withProjectDir(projectRoot())
+            .withPluginClasspath()
+            // b/175897186 set explicit metaspace size in hopes of fewer crashes
+            .withArguments("-Dorg.gradle.jvmargs=-XX:MaxMetaspaceSize=512m", *args)
 
     internal fun runGradle(vararg args: String) = gradleBuilder(*args).build()
+
     internal fun runAndFailGradle(vararg args: String) = gradleBuilder(*args).buildAndFail()
 
     internal fun setupSimpleBuildGradle() {
         testData("app-project").copyRecursively(projectRoot())
         projectSetup.writeDefaultBuildGradle(
-            prefix = """
+            prefix =
+                """
                 plugins {
                     id('com.android.application')
                     id('androidx.navigation.safeargs')
                 }
-            """.trimIndent(),
-            suffix = """
+            """
+                    .trimIndent(),
+            suffix =
+                """
                 android {
                     namespace 'androidx.navigation.testapp'
                 }
                 dependencies {
                     implementation "${projectSetup.props.navigationRuntime}"
                 }
-            """.trimIndent()
+            """
+                    .trimIndent()
         )
     }
 
@@ -106,9 +105,7 @@
         testData("multimodule-project").copyRecursively(projectRoot())
         val repositoriesBlock = buildString {
             appendLine("repositories {")
-            projectSetup.allRepositoryPaths.forEach {
-                appendLine("""maven { url "$it" }""")
-            }
+            projectSetup.allRepositoryPaths.forEach { appendLine("""maven { url "$it" }""") }
             appendLine("}")
         }
         val props = projectSetup.props
@@ -125,21 +122,25 @@
             allprojects {
                 $repositoriesBlock
             }
-            """.trimIndent()
+            """
+                .trimIndent()
         )
     }
 
     internal fun setupSimpleKotlinBuildGradle() {
         testData("app-project-kotlin").copyRecursively(projectRoot())
         projectSetup.writeDefaultBuildGradle(
-            prefix = """
+            prefix =
+                """
                 plugins {
                     id('com.android.application')
                     id('kotlin-android')
                     id('androidx.navigation.safeargs.kotlin')
                 }
-            """.trimIndent(),
-            suffix = """
+            """
+                    .trimIndent(),
+            suffix =
+                """
                 android {
                     namespace 'androidx.navigation.testapp'
                     compileOptions {
@@ -158,7 +159,8 @@
                         jvmTarget = "1.8"
                     }
                 }
-            """.trimIndent()
+            """
+                    .trimIndent()
         )
     }
 }
diff --git a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/IncrementalPluginTest.kt b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/IncrementalPluginTest.kt
index be2129c..075b1f4 100644
--- a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/IncrementalPluginTest.kt
+++ b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/IncrementalPluginTest.kt
@@ -26,7 +26,12 @@
 @RunWith(Parameterized::class)
 class IncrementalPluginTest(private val generateKotlin: Boolean) : BasePluginTest() {
 
-    private val extension = if (generateKotlin) { ".kt" } else { ".java" }
+    private val extension =
+        if (generateKotlin) {
+            ".kt"
+        } else {
+            ".java"
+        }
 
     private fun setupBuildGradle() {
         if (generateKotlin) {
@@ -50,10 +55,7 @@
         runGradle("assembleDebug").assertSuccessfulTask("assembleDebug")
         assertGenerated("debug/$ADDITIONAL_DIRECTIONS$extension")
         val newNextLastMod = assertGenerated("debug/$NEXT_DIRECTIONS$extension").lastModified()
-        MatcherAssert.assertThat(
-            newNextLastMod,
-            CoreMatchers.`is`(nextLastMod)
-        )
+        MatcherAssert.assertThat(newNextLastMod, CoreMatchers.`is`(nextLastMod))
     }
 
     @Test
@@ -63,14 +65,11 @@
 
         runGradle("assembleDebug").assertSuccessfulTask("assembleDebug")
         val mainLastMod = assertGenerated("debug/$MAIN_DIRECTIONS$extension").lastModified()
-        val additionalLastMod = assertGenerated("debug/$ADDITIONAL_DIRECTIONS$extension")
-            .lastModified()
+        val additionalLastMod =
+            assertGenerated("debug/$ADDITIONAL_DIRECTIONS$extension").lastModified()
         assertGenerated("debug/$NEXT_DIRECTIONS$extension")
 
-        testData("incremental-test-data/modified_nav.xml").copyTo(
-            navResource("nav_test.xml"),
-            true
-        )
+        testData("incremental-test-data/modified_nav.xml").copyTo(navResource("nav_test.xml"), true)
 
         // lastModified has one second precision on certain platforms and jdk versions
         // so sleep for a second
@@ -78,18 +77,12 @@
         runGradle("assembleDebug").assertSuccessfulTask("assembleDebug")
         val newMainLastMod = assertGenerated("debug/$MAIN_DIRECTIONS$extension").lastModified()
         // main directions were regenerated
-        MatcherAssert.assertThat(
-            newMainLastMod,
-            CoreMatchers.not(mainLastMod)
-        )
+        MatcherAssert.assertThat(newMainLastMod, CoreMatchers.not(mainLastMod))
 
         // but additional directions weren't touched
         val newAdditionalLastMod =
             assertGenerated("debug/$ADDITIONAL_DIRECTIONS$extension").lastModified()
-        MatcherAssert.assertThat(
-            newAdditionalLastMod,
-            CoreMatchers.`is`(additionalLastMod)
-        )
+        MatcherAssert.assertThat(newAdditionalLastMod, CoreMatchers.`is`(additionalLastMod))
 
         assertGenerated("debug/$MODIFIED_NEXT_DIRECTIONS$extension")
         assertNotGenerated("debug/$NEXT_DIRECTIONS$extension")
@@ -113,10 +106,7 @@
         runGradle("assembleDebug").assertSuccessfulTask("assembleDebug")
         val newMainLastMod = assertGenerated("debug/$MAIN_DIRECTIONS$extension").lastModified()
         // main directions weren't touched
-        MatcherAssert.assertThat(
-            newMainLastMod,
-            CoreMatchers.`is`(mainLastMod)
-        )
+        MatcherAssert.assertThat(newMainLastMod, CoreMatchers.`is`(mainLastMod))
 
         // but additional directions are removed
         assertNotGenerated("debug/$ADDITIONAL_DIRECTIONS$extension")
@@ -132,33 +122,23 @@
             assertGenerated("debug/$ADDITIONAL_DIRECTIONS$extension").lastModified()
         assertGenerated("debug/$NEXT_DIRECTIONS$extension")
 
-        testData("invalid/failing_nav.xml")
-            .copyTo(navResource("nav_test.xml"), true)
+        testData("invalid/failing_nav.xml").copyTo(navResource("nav_test.xml"), true)
         Thread.sleep(SEC)
         runAndFailGradle("generateSafeArgsDebug").assertFailingTask("generateSafeArgsDebug")
         val step2MainLastMod = assertGenerated("debug/$MAIN_DIRECTIONS$extension").lastModified()
         // main directions were regenerated
-        MatcherAssert.assertThat(
-            step2MainLastMod,
-            CoreMatchers.not(step1MainLastMod)
-        )
+        MatcherAssert.assertThat(step2MainLastMod, CoreMatchers.not(step1MainLastMod))
 
         // but additional directions weren't touched
         val step2AdditionalLastMod =
             assertGenerated("debug/$ADDITIONAL_DIRECTIONS$extension").lastModified()
-        MatcherAssert.assertThat(
-            step2AdditionalLastMod,
-            CoreMatchers.`is`(step1AdditionalLastMod)
-        )
+        MatcherAssert.assertThat(step2AdditionalLastMod, CoreMatchers.`is`(step1AdditionalLastMod))
 
         val step2ModifiedTime =
             assertGenerated("debug/$MODIFIED_NEXT_DIRECTIONS$extension").lastModified()
         assertNotGenerated("debug/$NEXT_DIRECTIONS$extension")
 
-        testData("incremental-test-data/modified_nav.xml").copyTo(
-            navResource("nav_test.xml"),
-            true
-        )
+        testData("incremental-test-data/modified_nav.xml").copyTo(navResource("nav_test.xml"), true)
         Thread.sleep(SEC)
         runGradle("generateSafeArgsDebug").assertSuccessfulTask("generateSafeArgsDebug")
 
@@ -166,17 +146,11 @@
         // gradle next time makes full run
         val step3AdditionalLastMod =
             assertGenerated("debug/$ADDITIONAL_DIRECTIONS$extension").lastModified()
-        MatcherAssert.assertThat(
-            step3AdditionalLastMod,
-            CoreMatchers.not(step2AdditionalLastMod)
-        )
+        MatcherAssert.assertThat(step3AdditionalLastMod, CoreMatchers.not(step2AdditionalLastMod))
 
         val step3ModifiedTime =
             assertGenerated("debug/$MODIFIED_NEXT_DIRECTIONS$extension").lastModified()
-        MatcherAssert.assertThat(
-            step2ModifiedTime,
-            CoreMatchers.not(step3ModifiedTime)
-        )
+        MatcherAssert.assertThat(step2ModifiedTime, CoreMatchers.not(step3ModifiedTime))
     }
 
     companion object {
diff --git a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/JavaPluginTest.kt b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/JavaPluginTest.kt
index ea6e2bc..9f6c56b 100644
--- a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/JavaPluginTest.kt
+++ b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/JavaPluginTest.kt
@@ -28,13 +28,16 @@
     fun runGenerateTask() {
         testData("app-project").copyRecursively(projectRoot())
         projectSetup.writeDefaultBuildGradle(
-            prefix = """
+            prefix =
+                """
                 plugins {
                     id('com.android.application')
                     id('androidx.navigation.safeargs')
                 }
-            """.trimIndent(),
-            suffix = """
+            """
+                    .trimIndent(),
+            suffix =
+                """
                 android {
                     flavorDimensions "mode"
                     productFlavors {
@@ -51,7 +54,8 @@
                 dependencies {
                     implementation "${projectSetup.props.navigationRuntime}"
                 }
-            """.trimIndent()
+            """
+                    .trimIndent()
         )
         runGradle("assembleNotfooDebug", "assembleFooDebug")
             .assertSuccessfulTask("assembleNotfooDebug")
@@ -66,10 +70,7 @@
     @Test
     fun generateForFeature() {
         setupMultiModuleBuildGradle()
-        runGradle(
-            ":feature:assembleFooDebug",
-            ":feature:assembleNotfooDebug"
-        )
+        runGradle(":feature:assembleFooDebug", ":feature:assembleNotfooDebug")
             .assertSuccessfulTask("feature:assembleNotfooDebug")
             .assertSuccessfulTask("feature:assembleFooDebug")
 
@@ -80,10 +81,7 @@
     @Test
     fun generateForLibrary() {
         setupMultiModuleBuildGradle()
-        runGradle(
-            ":library:assembleFooDebug",
-            ":library:assembleNotfooDebug"
-        )
+        runGradle(":library:assembleFooDebug", ":library:assembleNotfooDebug")
             .assertSuccessfulTask("library:assembleNotfooDebug")
             .assertSuccessfulTask("library:assembleFooDebug")
 
@@ -94,10 +92,7 @@
     @Test
     fun generateForBaseFeature() {
         setupMultiModuleBuildGradle()
-        runGradle(
-            ":base:assembleFooDebug",
-            ":base:assembleNotfooDebug"
-        )
+        runGradle(":base:assembleFooDebug", ":base:assembleNotfooDebug")
             .assertSuccessfulTask("base:assembleNotfooDebug")
             .assertSuccessfulTask("base:assembleFooDebug")
 
@@ -110,10 +105,7 @@
     @Test
     fun generateForDynamicFeature() {
         setupMultiModuleBuildGradle()
-        runGradle(
-            ":dynamic_feature:assembleFooDebug",
-            ":dynamic_feature:assembleNotfooDebug"
-        )
+        runGradle(":dynamic_feature:assembleFooDebug", ":dynamic_feature:assembleNotfooDebug")
             .assertSuccessfulTask("dynamic_feature:assembleNotfooDebug")
             .assertSuccessfulTask("dynamic_feature:assembleFooDebug")
 
diff --git a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/KotlinPluginTest.kt b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/KotlinPluginTest.kt
index 962f0e1..02cd29a 100644
--- a/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/KotlinPluginTest.kt
+++ b/navigation/navigation-safe-args-gradle-plugin/src/test/kotlin/androidx/navigation/safeargs/gradle/KotlinPluginTest.kt
@@ -38,14 +38,17 @@
     fun runGenerateTaskForKotlinWithSuffix() {
         testData("app-project-kotlin").copyRecursively(projectRoot())
         projectSetup.writeDefaultBuildGradle(
-            prefix = """
+            prefix =
+                """
                 plugins {
                     id('com.android.application')
                     id('kotlin-android')
                     id('androidx.navigation.safeargs.kotlin')
                 }
-            """.trimIndent(),
-            suffix = """
+            """
+                    .trimIndent(),
+            suffix =
+                """
                 android {
                     namespace 'androidx.navigation.testapp'
                     buildTypes {
@@ -69,7 +72,8 @@
                         jvmTarget = "1.8"
                     }
                 }
-            """.trimIndent()
+            """
+                    .trimIndent()
         )
         runGradle("assembleDebug").assertSuccessfulTask("assembleDebug")
 
diff --git a/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavHostControllerTest.kt b/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavHostControllerTest.kt
index 3d9ca21..d63087b 100644
--- a/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavHostControllerTest.kt
+++ b/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavHostControllerTest.kt
@@ -81,14 +81,13 @@
     @Test
     fun testDsl() {
         navController.navigatorProvider += NoOpActivityNavigator()
-        navController.graph = navController.createGraph(R.id.test_graph, R.id.start_test) {
-            activity(R.id.start_test) {
+        navController.graph =
+            navController.createGraph(R.id.test_graph, R.id.start_test) {
+                activity(R.id.start_test) {}
             }
-        }
         val backStack = navController.backStack
         assertThat(backStack).hasSize(2)
-        assertThat(backStack[1].destination)
-            .isInstanceOf(ActivityNavigator.Destination::class.java)
+        assertThat(backStack[1].destination).isInstanceOf(ActivityNavigator.Destination::class.java)
     }
 
     @UiThreadTest
@@ -107,9 +106,7 @@
     @Test
     fun testSetDestinationWithArgs() {
         navController.setGraph(R.navigation.test_graph)
-        val args = Bundle().apply {
-            putString("arg", "test")
-        }
+        val args = Bundle().apply { putString("arg", "test") }
         navController.setCurrentDestination(R.id.third_test, args)
         assertThat(navController.currentDestination?.id).isEqualTo(R.id.third_test)
         val actualArgs = navController.backStack.last().arguments
@@ -120,9 +117,7 @@
 }
 
 @Navigator.Name("activity")
-class NoOpActivityNavigator : ActivityNavigator(
-    ApplicationProvider.getApplicationContext()
-) {
+class NoOpActivityNavigator : ActivityNavigator(ApplicationProvider.getApplicationContext()) {
     override fun popBackStack() = true
 
     override fun navigate(
diff --git a/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavigatorStateTest.kt b/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavigatorStateTest.kt
index 8eb8877..82e6e99 100644
--- a/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavigatorStateTest.kt
+++ b/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestNavigatorStateTest.kt
@@ -50,25 +50,19 @@
         val navigator = TestNavigator()
         navigator.onAttach(state)
         val firstEntry = state.createBackStackEntry(navigator.createDestination(), null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.INITIALIZED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.INITIALIZED)
 
         navigator.navigate(listOf(firstEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         val secondEntry = state.createBackStackEntry(navigator.createDestination(), null)
         navigator.navigate(listOf(secondEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         navigator.popBackStack(secondEntry, false)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
     }
 
     @Test
@@ -76,25 +70,19 @@
         val navigator = FloatingWindowTestNavigator()
         navigator.onAttach(state)
         val firstEntry = state.createBackStackEntry(navigator.createDestination(), null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.INITIALIZED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.INITIALIZED)
 
         navigator.navigate(listOf(firstEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         val secondEntry = state.createBackStackEntry(navigator.createDestination(), null)
         navigator.navigate(listOf(secondEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         navigator.popBackStack(secondEntry, false)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
     }
 
     @Test
@@ -102,55 +90,42 @@
         val navigator = TestTransitionNavigator()
         navigator.onAttach(state)
         val firstEntry = state.createBackStackEntry(navigator.createDestination(), null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.INITIALIZED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.INITIALIZED)
 
         navigator.navigate(listOf(firstEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
         state.markTransitionComplete(firstEntry)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         val secondEntry = state.createBackStackEntry(navigator.createDestination(), null)
         navigator.navigate(listOf(secondEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isTrue()
 
         state.markTransitionComplete(firstEntry)
         state.markTransitionComplete(secondEntry)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         navigator.popBackStack(secondEntry, true)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
         state.markTransitionComplete(firstEntry)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
         state.markTransitionComplete(secondEntry)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
 
         val restoredSecondEntry = state.restoreBackStackEntry(secondEntry)
         navigator.navigate(listOf(restoredSecondEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(restoredSecondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(restoredSecondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isTrue()
 
         state.markTransitionComplete(firstEntry)
         state.markTransitionComplete(restoredSecondEntry)
-        assertThat(restoredSecondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(restoredSecondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
     }
 
     @Test
@@ -176,9 +151,8 @@
         state.markTransitionComplete(secondEntry)
         val restoredSecondEntry = state.restoreBackStackEntry(secondEntry)
         navigator.navigate(listOf(restoredSecondEntry), null, null)
-        assertThat(
-            state.transitionsInProgress.value.firstOrNull { it === restoredSecondEntry }
-        ).isNotNull()
+        assertThat(state.transitionsInProgress.value.firstOrNull { it === restoredSecondEntry })
+            .isNotNull()
 
         state.markTransitionComplete(firstEntry)
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isFalse()
@@ -186,14 +160,11 @@
         state.markTransitionComplete(restoredSecondEntry)
         assertThat(state.transitionsInProgress.value.firstOrNull { it === secondEntry }).isNull()
 
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(restoredSecondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(restoredSecondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         state.markTransitionComplete(secondEntry)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
     }
 
     @Test
@@ -208,25 +179,31 @@
 
         val secondEntry = state.createBackStackEntry(navigator.createDestination(), null)
         secondEntry.destination.route = "second"
-        navigator.navigate(listOf(secondEntry), navOptions {
-            popUpTo("first") { saveState = true }
-            launchSingleTop = true
-            restoreState = true
-        }, null)
+        navigator.navigate(
+            listOf(secondEntry),
+            navOptions {
+                popUpTo("first") { saveState = true }
+                launchSingleTop = true
+                restoreState = true
+            },
+            null
+        )
 
         val viewModel = ViewModelProvider(secondEntry).get(TestViewModel::class.java)
 
         navigator.popBackStack(secondEntry, true)
         val restoredSecondEntry = state.restoreBackStackEntry(secondEntry)
-        navigator.navigate(listOf(restoredSecondEntry), navOptions {
-            popUpTo("first") { saveState = true }
-            launchSingleTop = true
-            restoreState = true
-        }, null)
+        navigator.navigate(
+            listOf(restoredSecondEntry),
+            navOptions {
+                popUpTo("first") { saveState = true }
+                launchSingleTop = true
+                restoreState = true
+            },
+            null
+        )
 
-        state.transitionsInProgress.value.forEach {
-            state.markTransitionComplete(it)
-        }
+        state.transitionsInProgress.value.forEach { state.markTransitionComplete(it) }
 
         assertThat(viewModel.wasCleared).isFalse()
     }
@@ -244,20 +221,16 @@
         navigator.navigate(listOf(secondEntry), null, null)
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isTrue()
         assertThat(state.transitionsInProgress.value.contains(secondEntry)).isTrue()
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
         navigator.popBackStack(secondEntry, true)
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isTrue()
         assertThat(state.transitionsInProgress.value.contains(secondEntry)).isTrue()
         state.markTransitionComplete(firstEntry)
         state.markTransitionComplete(secondEntry)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
     }
 
     @Test
@@ -273,10 +246,8 @@
         navigator.navigate(listOf(secondEntry), null, null)
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isTrue()
         assertThat(state.transitionsInProgress.value.contains(secondEntry)).isTrue()
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
         state.markTransitionComplete(firstEntry)
         state.markTransitionComplete(secondEntry)
 
@@ -289,21 +260,15 @@
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isTrue()
         assertThat(state.transitionsInProgress.value.contains(secondEntry)).isTrue()
         assertThat(state.transitionsInProgress.value.contains(secondEntryReplace)).isTrue()
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntryReplace.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntryReplace.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
         state.markTransitionComplete(firstEntry)
         state.markTransitionComplete(secondEntry)
         state.markTransitionComplete(secondEntryReplace)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.DESTROYED)
-        assertThat(secondEntryReplace.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(secondEntryReplace.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
     }
 
     @Test
@@ -311,66 +276,57 @@
         val navigator = TestTransitionNavigator()
         navigator.onAttach(state)
         val firstEntry = state.createBackStackEntry(navigator.createDestination(), null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.INITIALIZED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.INITIALIZED)
 
         navigator.navigate(listOf(firstEntry), null, null)
-        navigator.testLifecycle.addObserver(object : LifecycleEventObserver {
-            override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
-                when (event) {
-                    Lifecycle.Event.ON_STOP -> {
-                        // this is okay since the first entry will not be DESTROYED in this test.
-                        state.markTransitionComplete(firstEntry)
+        navigator.testLifecycle.addObserver(
+            object : LifecycleEventObserver {
+                override fun onStateChanged(source: LifecycleOwner, event: Lifecycle.Event) {
+                    when (event) {
+                        Lifecycle.Event.ON_STOP -> {
+                            // this is okay since the first entry will not be DESTROYED in this
+                            // test.
+                            state.markTransitionComplete(firstEntry)
+                        }
+                        Lifecycle.Event.ON_PAUSE -> state.prepareForTransition(firstEntry)
+                        Lifecycle.Event.ON_START -> state.prepareForTransition(firstEntry)
+                        Lifecycle.Event.ON_RESUME -> state.markTransitionComplete(firstEntry)
+                        else -> {}
                     }
-                    Lifecycle.Event.ON_PAUSE -> state.prepareForTransition(firstEntry)
-                    Lifecycle.Event.ON_START -> state.prepareForTransition(firstEntry)
-                    Lifecycle.Event.ON_RESUME -> state.markTransitionComplete(firstEntry)
-                    else -> {}
                 }
             }
-        })
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        )
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
         navigator.testLifecycle.currentState = Lifecycle.State.RESUMED
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
 
         navigator.testLifecycle.currentState = Lifecycle.State.STARTED
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
         val secondEntry = state.createBackStackEntry(navigator.createDestination(), null)
         navigator.navigate(listOf(secondEntry), null, null)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
         assertThat(state.transitionsInProgress.value.contains(firstEntry)).isTrue()
 
         // Moving down to reflect a destination being on a back stack and only CREATED
         navigator.testLifecycle.currentState = Lifecycle.State.CREATED
 
         state.markTransitionComplete(secondEntry)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
 
         navigator.testLifecycle.currentState = Lifecycle.State.STARTED
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.STARTED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.STARTED)
 
         navigator.popBackStack(secondEntry, true)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.CREATED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.CREATED)
 
         navigator.testLifecycle.currentState = Lifecycle.State.RESUMED
-        assertThat(firstEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.RESUMED)
+        assertThat(firstEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.RESUMED)
         state.markTransitionComplete(secondEntry)
-        assertThat(secondEntry.lifecycle.currentState)
-            .isEqualTo(Lifecycle.State.DESTROYED)
+        assertThat(secondEntry.lifecycle.currentState).isEqualTo(Lifecycle.State.DESTROYED)
     }
 
     @Navigator.Name("test")
@@ -390,9 +346,7 @@
             navOptions: NavOptions?,
             navigatorExtras: Extras?
         ) {
-            entries.forEach { entry ->
-                state.pushWithTransition(entry)
-            }
+            entries.forEach { entry -> state.pushWithTransition(entry) }
         }
 
         override fun popBackStack(popUpTo: NavBackStackEntry, savedState: Boolean) {
@@ -405,9 +359,8 @@
         override fun createDestination(): FloatingTestDestination = FloatingTestDestination(this)
     }
 
-    internal class FloatingTestDestination(
-        navigator: Navigator<out NavDestination>
-    ) : NavDestination(navigator), FloatingWindow
+    internal class FloatingTestDestination(navigator: Navigator<out NavDestination>) :
+        NavDestination(navigator), FloatingWindow
 
     class TestViewModel : ViewModel() {
         var wasCleared = false
diff --git a/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestSavedStateHandleFactory.kt b/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestSavedStateHandleFactory.kt
index a030d23b..6363d5f 100644
--- a/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestSavedStateHandleFactory.kt
+++ b/navigation/navigation-testing/src/androidTest/java/androidx/navigation/testing/TestSavedStateHandleFactory.kt
@@ -36,8 +36,7 @@
 
     @Test
     fun primitiveArgument() {
-        @Serializable
-        class TestClass(val arg: Int)
+        @Serializable class TestClass(val arg: Int)
 
         val handle = SavedStateHandle(TestClass(12))
         assertThat(handle.contains("arg")).isTrue()
@@ -47,13 +46,10 @@
 
     @Test
     fun complexPathArgument() {
-        @Serializable
-        class TestClass(val arg: TestType)
+        @Serializable class TestClass(val arg: TestType)
 
         val typeMap = mapOf(typeOf<TestType>() to testNavType)
-        val handle = SavedStateHandle(
-            TestClass(TestType("test", 1)), typeMap
-        )
+        val handle = SavedStateHandle(TestClass(TestType("test", 1)), typeMap)
         assertThat(handle.contains("arg")).isTrue()
         val arg = handle.get<String>("arg")
         assertThat(arg).isEqualTo("1.test")
@@ -61,8 +57,7 @@
 
     @Test
     fun complexQueryArgument() {
-        @Serializable
-        class TestClass(val arg: List<TestType>)
+        @Serializable class TestClass(val arg: List<TestType>)
 
         val arg = listOf(TestType("test", 1), TestType("test2", 2))
         val typeMap = mapOf(typeOf<List<TestType>>() to testCollectionNavType)
@@ -74,8 +69,7 @@
 
     @Test
     fun multipleArgument() {
-        @Serializable
-        class TestClass(val arg: Boolean, val arg2: Float)
+        @Serializable class TestClass(val arg: Boolean, val arg2: Float)
 
         val handle = SavedStateHandle(TestClass(true, 1.0F))
         assertThat(handle.contains("arg")).isTrue()
@@ -90,8 +84,7 @@
 
     @Test
     fun nullArgument() {
-        @Serializable
-        class TestClass(val arg: String?)
+        @Serializable class TestClass(val arg: String?)
 
         val handle = SavedStateHandle(TestClass(null))
         assertThat(handle.contains("arg")).isTrue()
@@ -101,8 +94,7 @@
 
     @Test
     fun nullLiteralArgument() {
-        @Serializable
-        class TestClass(val arg: String)
+        @Serializable class TestClass(val arg: String)
 
         val handle = SavedStateHandle(TestClass("null"))
         assertThat(handle.contains("arg")).isTrue()
@@ -112,22 +104,19 @@
 
     @Test
     fun emptyStringArgument() {
-        @Serializable
-        class TestClass(val arg: String)
+        @Serializable class TestClass(val arg: String)
 
-        val exception = assertFailsWith<IllegalStateException> {
-            SavedStateHandle(TestClass(""))
-        }
-        assertThat(exception.message).isEqualTo(
-            "Cannot match route [androidx.navigation.testing." +
-                "TestSavedStateHandleBuilder.emptyStringArgument.TestClass/] to [TestClass]"
-        )
+        val exception = assertFailsWith<IllegalStateException> { SavedStateHandle(TestClass("")) }
+        assertThat(exception.message)
+            .isEqualTo(
+                "Cannot match route [androidx.navigation.testing." +
+                    "TestSavedStateHandleBuilder.emptyStringArgument.TestClass/] to [TestClass]"
+            )
     }
 
     @Test
     fun defaultPrimitiveArgument() {
-        @Serializable
-        class TestClass(val arg: Int = 1)
+        @Serializable class TestClass(val arg: Int = 1)
 
         val handle = SavedStateHandle(TestClass())
         assertThat(handle.contains("arg")).isTrue()
@@ -137,8 +126,7 @@
 
     @Test
     fun defaultComplexArgument() {
-        @Serializable
-        class TestClass(val arg: TestType = TestType("test", 1))
+        @Serializable class TestClass(val arg: TestType = TestType("test", 1))
 
         val typeMap = mapOf(typeOf<TestType>() to testNavType)
         val handle = SavedStateHandle(TestClass(), typeMap)
@@ -149,13 +137,10 @@
 
     @Test
     fun handleToRoutePathArg() {
-        @Serializable
-        class TestClass(val arg: TestType)
+        @Serializable class TestClass(val arg: TestType)
 
         val typeMap = mapOf(typeOf<TestType>() to testNavType)
-        val handle = SavedStateHandle(
-            TestClass(TestType("test", 1)), typeMap
-        )
+        val handle = SavedStateHandle(TestClass(TestType("test", 1)), typeMap)
 
         val route = handle.toRoute<TestClass>(typeMap)
         assertThat(route.arg.name).isEqualTo("test")
@@ -164,8 +149,7 @@
 
     @Test
     fun handleToRouteQueryArg() {
-        @Serializable
-        class TestClass(val arg: List<TestType>)
+        @Serializable class TestClass(val arg: List<TestType>)
 
         val arg = listOf(TestType("test", 1), TestType("test2", 2))
         val typeMap = mapOf(typeOf<List<TestType>>() to testCollectionNavType)
@@ -175,24 +159,25 @@
     }
 }
 
-@Serializable
-private data class TestType(val name: String, val id: Int)
+@Serializable private data class TestType(val name: String, val id: Int)
 
-private val testNavType = object : NavType<TestType>(false) {
-    override fun put(bundle: Bundle, key: String, value: TestType) {
-        bundle.putString(key, serializeAsValue(value))
+private val testNavType =
+    object : NavType<TestType>(false) {
+        override fun put(bundle: Bundle, key: String, value: TestType) {
+            bundle.putString(key, serializeAsValue(value))
+        }
+
+        override fun get(bundle: Bundle, key: String): TestType =
+            parseValue(bundle.getString(key) as String)
+
+        override fun parseValue(value: String): TestType {
+            val args = value.split(".")
+            return TestType(id = args.first().toInt(), name = args.last())
+        }
+
+        override fun serializeAsValue(value: TestType) = "${value.id}.${value.name}"
     }
 
-    override fun get(bundle: Bundle, key: String): TestType =
-        parseValue(bundle.getString(key) as String)
-
-    override fun parseValue(value: String): TestType {
-        val args = value.split(".")
-        return TestType(id = args.first().toInt(), name = args.last())
-    }
-    override fun serializeAsValue(value: TestType) = "${value.id}.${value.name}"
-}
-
 private val testCollectionNavType: NavType<List<TestType>> =
     object : CollectionNavType<List<TestType>>(false) {
         override fun serializeAsValues(value: List<TestType>): List<String> =
@@ -213,4 +198,4 @@
 
         override fun parseValue(value: String, previousValue: List<TestType>): List<TestType> =
             previousValue.plus(testNavType.parseValue(value))
-}
+    }
diff --git a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/SavedStateHandleFactory.kt b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/SavedStateHandleFactory.kt
index 8741c6e..8820ffb6 100644
--- a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/SavedStateHandleFactory.kt
+++ b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/SavedStateHandleFactory.kt
@@ -31,33 +31,29 @@
  * Returns a [SavedStateHandle] populated with arguments from [route].
  *
  * @param route The route to extract argument values from
- * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if
- * [route] does not use custom NavTypes.
+ * @param typeMap A mapping of KType to custom NavType<*> in the [route]. May be empty if [route]
+ *   does not use custom NavTypes.
  */
 @Suppress("DEPRECATION")
 public operator fun SavedStateHandle.Companion.invoke(
     route: Any,
     typeMap: Map<KType, @JvmSuppressWildcards NavType<*>> = emptyMap()
 ): SavedStateHandle {
-    val dest = NavDestinationBuilder(
-        TestNavigatorProvider().get<Navigator<NavDestination>>("test"),
-        route::class,
-        typeMap
-    ).build()
+    val dest =
+        NavDestinationBuilder(
+                TestNavigatorProvider().get<Navigator<NavDestination>>("test"),
+                route::class,
+                typeMap
+            )
+            .build()
     val map = dest.arguments.mapValues { it.value.type }
     val deeplink = generateRouteWithArgs(route, map)
     val matching = dest.matchDeepLink(deeplink)
-    checkNotNull(matching) {
-        "Cannot match route [$deeplink] to [${route::class.simpleName}]"
-    }
+    checkNotNull(matching) { "Cannot match route [$deeplink] to [${route::class.simpleName}]" }
     if (dest.arguments.isNotEmpty()) {
-        checkNotNull(matching.matchingArgs) {
-            "Missing arguments from route [$deeplink]"
-        }
+        checkNotNull(matching.matchingArgs) { "Missing arguments from route [$deeplink]" }
     }
     val finalMap: MutableMap<String, Any?> = mutableMapOf()
-    matching.matchingArgs?.keySet()?.forEach { key ->
-        finalMap[key] = matching.matchingArgs!![key]
-    }
+    matching.matchingArgs?.keySet()?.forEach { key -> finalMap[key] = matching.matchingArgs!![key] }
     return SavedStateHandle(finalMap)
 }
diff --git a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavHostController.kt b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavHostController.kt
index 568cd90..b27547d 100644
--- a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavHostController.kt
+++ b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavHostController.kt
@@ -23,15 +23,12 @@
 import androidx.navigation.NavHostController
 import java.lang.IllegalArgumentException
 
-/**
- * Subclass of [NavHostController] that offers additional APIs for testing Navigation.
- */
+/** Subclass of [NavHostController] that offers additional APIs for testing Navigation. */
 public class TestNavHostController(context: Context) : NavHostController(context) {
 
-    /**
-     * Gets an immutable copy of the [elements][NavBackStackEntry] currently on the back stack.
-     */
-    public val backStack: List<NavBackStackEntry> get() = currentBackStack.value
+    /** Gets an immutable copy of the [elements][NavBackStackEntry] currently on the back stack. */
+    public val backStack: List<NavBackStackEntry>
+        get() = currentBackStack.value
 
     init {
         navigatorProvider = TestNavigatorProvider()
@@ -39,8 +36,8 @@
 
     /**
      * Navigate directly to any destination on the current [androidx.navigation.NavGraph] via an
-     * explicit deep link. If an implicit deep link exists for this destination use
-     * [#navigate(Uri)] instead.
+     * explicit deep link. If an implicit deep link exists for this destination use [#navigate(Uri)]
+     * instead.
      *
      * @param destId The destination id to navigate to.
      * @param args The arguments to pass to the destination.
@@ -48,30 +45,26 @@
      */
     @JvmOverloads
     public fun setCurrentDestination(@IdRes destId: Int, args: Bundle = Bundle()) {
-        val taskStackBuilder = createDeepLink()
-            .setDestination(destId)
-            .setArguments(args)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            createDeepLink().setDestination(destId).setArguments(args).createTaskStackBuilder()
         val intent = taskStackBuilder.editIntentAt(0)
         require(handleDeepLink(intent)) { "Destination does not exist on the NavGraph." }
     }
 
     /**
      * Navigate directly to any destination on the current [androidx.navigation.NavGraph] via an
-     * explicit deep link. If an implicit deep link exists for this destination use
-     * [#navigate(Uri)] instead.
+     * explicit deep link. If an implicit deep link exists for this destination use [#navigate(Uri)]
+     * instead.
      *
      * @param destRoute The destination route to navigate to.
      * @param args The arguments to pass to the destination.
      * @throws IllegalArgumentException If the [destination][destRoute] does not exist on the
-     * NavGraph.
+     *   NavGraph.
      */
     @JvmOverloads
     public fun setCurrentDestination(destRoute: String, args: Bundle = Bundle()) {
-        val taskStackBuilder = createDeepLink()
-            .setDestination(destRoute)
-            .setArguments(args)
-            .createTaskStackBuilder()
+        val taskStackBuilder =
+            createDeepLink().setDestination(destRoute).setArguments(args).createTaskStackBuilder()
         val intent = taskStackBuilder.editIntentAt(0)
         require(handleDeepLink(intent)) { "Destination does not exist on the NavGraph." }
     }
diff --git a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorProvider.kt b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorProvider.kt
index 74efdb5..405ef9d 100644
--- a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorProvider.kt
+++ b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorProvider.kt
@@ -28,12 +28,11 @@
  */
 internal class TestNavigatorProvider : NavigatorProvider() {
 
-    /**
-     * A [Navigator] that only supports creating destinations.
-     */
-    private val navigator = object : Navigator<NavDestination>() {
-        override fun createDestination() = NavDestination("test")
-    }
+    /** A [Navigator] that only supports creating destinations. */
+    private val navigator =
+        object : Navigator<NavDestination>() {
+            override fun createDestination() = NavDestination("test")
+        }
 
     init {
         addNavigator(NavGraphNavigator(this))
diff --git a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorState.kt b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorState.kt
index ef738b6..beb1d0a 100644
--- a/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorState.kt
+++ b/navigation/navigation-testing/src/main/java/androidx/navigation/testing/TestNavigatorState.kt
@@ -31,31 +31,30 @@
 import kotlinx.coroutines.withContext
 
 /**
- * An implementation of [NavigatorState] that allows testing a
- * [androidx.navigation.Navigator] in isolation (i.e., without requiring a
- * [androidx.navigation.NavController]).
+ * An implementation of [NavigatorState] that allows testing a [androidx.navigation.Navigator] in
+ * isolation (i.e., without requiring a [androidx.navigation.NavController]).
  *
  * An optional [context] can be provided to allow for the usages of
- * [androidx.lifecycle.AndroidViewModel] within the created [NavBackStackEntry]
- * instances.
+ * [androidx.lifecycle.AndroidViewModel] within the created [NavBackStackEntry] instances.
  *
- * The [Lifecycle] of all [NavBackStackEntry] instances added to this TestNavigatorState
- * will be updated as they are added and removed from the state. This work is kicked off
- * on the [coroutineDispatcher].
+ * The [Lifecycle] of all [NavBackStackEntry] instances added to this TestNavigatorState will be
+ * updated as they are added and removed from the state. This work is kicked off on the
+ * [coroutineDispatcher].
  */
-public class TestNavigatorState @JvmOverloads constructor(
+public class TestNavigatorState
+@JvmOverloads
+constructor(
     private val context: Context? = null,
     private val coroutineDispatcher: CoroutineDispatcher = Dispatchers.Main.immediate
 ) : NavigatorState() {
 
-    private val viewModelStoreProvider = object : NavViewModelStoreProvider {
-        private val viewModelStores = mutableMapOf<String, ViewModelStore>()
-        override fun getViewModelStore(
-            backStackEntryId: String
-        ) = viewModelStores.getOrPut(backStackEntryId) {
-            ViewModelStore()
+    private val viewModelStoreProvider =
+        object : NavViewModelStoreProvider {
+            private val viewModelStores = mutableMapOf<String, ViewModelStore>()
+
+            override fun getViewModelStore(backStackEntryId: String) =
+                viewModelStores.getOrPut(backStackEntryId) { ViewModelStore() }
         }
-    }
 
     private val savedStates = mutableMapOf<String, Bundle>()
     private val entrySavedState = mutableMapOf<NavBackStackEntry, Boolean>()
@@ -63,24 +62,33 @@
     override fun createBackStackEntry(
         destination: NavDestination,
         arguments: Bundle?
-    ): NavBackStackEntry = NavBackStackEntry.create(
-        context, destination, arguments, Lifecycle.State.RESUMED, viewModelStoreProvider
-    )
+    ): NavBackStackEntry =
+        NavBackStackEntry.create(
+            context,
+            destination,
+            arguments,
+            Lifecycle.State.RESUMED,
+            viewModelStoreProvider
+        )
 
     /**
-     * Restore a previously saved [NavBackStackEntry]. You must have previously called
-     * [pop] with [previouslySavedEntry] and `true`.
+     * Restore a previously saved [NavBackStackEntry]. You must have previously called [pop] with
+     * [previouslySavedEntry] and `true`.
      */
     public fun restoreBackStackEntry(previouslySavedEntry: NavBackStackEntry): NavBackStackEntry {
-        val savedState = checkNotNull(savedStates[previouslySavedEntry.id]) {
-            "restoreBackStackEntry(previouslySavedEntry) must be passed a NavBackStackEntry " +
-                "that was previously popped with popBackStack(previouslySavedEntry, true)"
-        }
+        val savedState =
+            checkNotNull(savedStates[previouslySavedEntry.id]) {
+                "restoreBackStackEntry(previouslySavedEntry) must be passed a NavBackStackEntry " +
+                    "that was previously popped with popBackStack(previouslySavedEntry, true)"
+            }
         return NavBackStackEntry.create(
             context,
-            previouslySavedEntry.destination, previouslySavedEntry.arguments,
-            Lifecycle.State.RESUMED, viewModelStoreProvider,
-            previouslySavedEntry.id, savedState
+            previouslySavedEntry.destination,
+            previouslySavedEntry.arguments,
+            Lifecycle.State.RESUMED,
+            viewModelStoreProvider,
+            previouslySavedEntry.id,
+            savedState
         )
     }
 
@@ -118,9 +126,7 @@
             // NavBackStackEntry Lifecycles must be updated on the main thread
             // as per the contract within Lifecycle, so we explicitly swap to the main thread
             // no matter what CoroutineDispatcher was passed to us.
-            withContext(Dispatchers.Main.immediate) {
-                entry.maxLifecycle = Lifecycle.State.STARTED
-            }
+            withContext(Dispatchers.Main.immediate) { entry.maxLifecycle = Lifecycle.State.STARTED }
         }
     }
 
@@ -136,8 +142,7 @@
                 // Mark all removed NavBackStackEntries as DESTROYED
                 for (entry in poppedList.reversed()) {
                     if (
-                        saveState &&
-                        entry.lifecycle.currentState.isAtLeast(Lifecycle.State.STARTED)
+                        saveState && entry.lifecycle.currentState.isAtLeast(Lifecycle.State.STARTED)
                     ) {
                         // Move the NavBackStackEntry to the stopped state, then save its state
                         entry.maxLifecycle = Lifecycle.State.CREATED
@@ -161,16 +166,17 @@
                 var previousEntry: NavBackStackEntry? = null
                 for (entry in currentList.reversed()) {
                     val transitioning = transitionsInProgress.value.contains(entry)
-                    entry.maxLifecycle = when {
-                        previousEntry == null ->
-                            if (!transitioning) {
-                                Lifecycle.State.RESUMED
-                            } else {
-                                Lifecycle.State.STARTED
-                            }
-                        previousEntry.destination is FloatingWindow -> Lifecycle.State.STARTED
-                        else -> Lifecycle.State.CREATED
-                    }
+                    entry.maxLifecycle =
+                        when {
+                            previousEntry == null ->
+                                if (!transitioning) {
+                                    Lifecycle.State.RESUMED
+                                } else {
+                                    Lifecycle.State.STARTED
+                                }
+                            previousEntry.destination is FloatingWindow -> Lifecycle.State.STARTED
+                            else -> Lifecycle.State.CREATED
+                        }
                     previousEntry = entry
                 }
             }
diff --git a/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/AppBarConfigurationTest.kt b/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/AppBarConfigurationTest.kt
index d5a45dc..d5bda19 100644
--- a/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/AppBarConfigurationTest.kt
+++ b/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/AppBarConfigurationTest.kt
@@ -50,12 +50,13 @@
     @Suppress("DEPRECATION")
     @Test
     fun testTopLevelFromGraph() {
-        val navGraph = NavController(context).apply {
-            navigatorProvider += TestNavigator()
-        }.createGraph(startDestination = 1) {
-            test(1)
-            test(2)
-        }
+        val navGraph =
+            NavController(context)
+                .apply { navigatorProvider += TestNavigator() }
+                .createGraph(startDestination = 1) {
+                    test(1)
+                    test(2)
+                }
         val builder = AppBarConfiguration.Builder(navGraph)
         val appBarConfiguration = builder.build()
         assertThat(appBarConfiguration.topLevelDestinations).containsExactly(1)
@@ -87,13 +88,10 @@
     @Test
     fun testSetFallbackOnNavigateUpListener() {
         val builder = AppBarConfiguration.Builder()
-        val onNavigateUpListener = AppBarConfiguration.OnNavigateUpListener {
-            false
-        }
+        val onNavigateUpListener = AppBarConfiguration.OnNavigateUpListener { false }
         builder.setFallbackOnNavigateUpListener(onNavigateUpListener)
         val appBarConfiguration = builder.build()
-        assertThat(appBarConfiguration.fallbackOnNavigateUpListener)
-            .isEqualTo(onNavigateUpListener)
+        assertThat(appBarConfiguration.fallbackOnNavigateUpListener).isEqualTo(onNavigateUpListener)
     }
 
     @UiThreadTest
@@ -106,28 +104,21 @@
             setGraph(R.navigation.simple_graph)
         }
 
-        val toolbar = Toolbar(context).apply {
-            inflateMenu(R.menu.menu)
-        }
-        val appBarConfig = AppBarConfiguration.Builder(
-            topLevelMenu = toolbar.menu
-        ).build()
+        val toolbar = Toolbar(context).apply { inflateMenu(R.menu.menu) }
+        val appBarConfig = AppBarConfiguration.Builder(topLevelMenu = toolbar.menu).build()
         // start destination of menu_item_graph, a nested graph (and start dest) inside simple_graph
-        assertThat(navController.currentDestination?.id).isEqualTo(
-            R.id.itemHome
-        )
+        assertThat(navController.currentDestination?.id).isEqualTo(R.id.itemHome)
         // start destination of menu_item_graph which should be a topLevelDestination
-        assertThat(
-            appBarConfig.isTopLevelDestination(
-                navController.currentDestination!!
-            )
-        ).isTrue()
+        assertThat(appBarConfig.isTopLevelDestination(navController.currentDestination!!)).isTrue()
         // non-starting destination within menu_item_graph
         assertThat(
-            appBarConfig.isTopLevelDestination(
-                navController.currentDestination!!.parent!!.findNode(R.id.itemSecondDestination)!!
+                appBarConfig.isTopLevelDestination(
+                    navController.currentDestination!!
+                        .parent!!
+                        .findNode(R.id.itemSecondDestination)!!
+                )
             )
-        ).isFalse()
+            .isFalse()
     }
 
     @UiThreadTest
@@ -140,50 +131,45 @@
             setGraph(R.navigation.simple_graph)
         }
 
-        val toolbar = Toolbar(context).apply {
-            inflateMenu(R.menu.menu)
-        }
-        val appBarConfig = AppBarConfiguration.Builder(
-            topLevelMenu = toolbar.menu
-        ).build()
+        val toolbar = Toolbar(context).apply { inflateMenu(R.menu.menu) }
+        val appBarConfig = AppBarConfiguration.Builder(topLevelMenu = toolbar.menu).build()
 
         // menu_item_graph is a NavGraph. The graph id itself should not be a top level destination.
         assertThat(
-            appBarConfig.isTopLevelDestination(
-                navController.graph.findNode(R.id.menu_item_graph)!!
+                appBarConfig.isTopLevelDestination(
+                    navController.graph.findNode(R.id.menu_item_graph)!!
+                )
             )
-        ).isFalse()
+            .isFalse()
 
         // menu_item2 which is not a graph. Even though it is not the startDestination of
         // its parent (simple_graph), it should be added as a topLevelDestination
         // via AppBarConfig.Builder(menu) constructor.
         assertThat(
-            appBarConfig.isTopLevelDestination(
-                navController.graph.findNode(R.id.menu_item2)!!
+                appBarConfig.isTopLevelDestination(navController.graph.findNode(R.id.menu_item2)!!)
             )
-        ).isTrue()
+            .isTrue()
     }
 
     @UiThreadTest
     @Test
     fun testIsTopLevelDestination_simpleGraph() {
         val navController = NavController(context)
-        val navGraph = navController.apply {
-            navigatorProvider += TestNavigator()
-        }.createGraph(startDestination = "1") {
-            test("1")
-            test("2")
-        }
+        val navGraph =
+            navController
+                .apply { navigatorProvider += TestNavigator() }
+                .createGraph(startDestination = "1") {
+                    test("1")
+                    test("2")
+                }
         navController.setGraph(navGraph, null)
         val builder = AppBarConfiguration.Builder(navGraph)
         val appBarConfiguration = builder.build()
 
-        assertThat(appBarConfiguration.isTopLevelDestination(
-            navController.graph.findNode("1")!!)
-        ).isTrue()
-        assertThat(
-            appBarConfiguration.isTopLevelDestination(navController.graph.findNode("2")!!)
-        ).isFalse()
+        assertThat(appBarConfiguration.isTopLevelDestination(navController.graph.findNode("1")!!))
+            .isTrue()
+        assertThat(appBarConfiguration.isTopLevelDestination(navController.graph.findNode("2")!!))
+            .isFalse()
     }
 
     @UiThreadTest
diff --git a/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/NavigationUITest.kt b/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/NavigationUITest.kt
index 77714ce..fd38110 100644
--- a/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/NavigationUITest.kt
+++ b/navigation/navigation-ui/src/androidTest/java/androidx/navigation/ui/NavigationUITest.kt
@@ -51,20 +51,17 @@
         val startDestination = "start_destination"
         val endDestination = "end_destination"
 
-        navController.graph = navController.createGraph(startDestination = startDestination) {
-            test(startDestination)
-            test("$endDestination/{test}") {
-                label = "{test}"
-                argument(name = "test") {
-                    type = NavType.ReferenceType
+        navController.graph =
+            navController.createGraph(startDestination = startDestination) {
+                test(startDestination)
+                test("$endDestination/{test}") {
+                    label = "{test}"
+                    argument(name = "test") { type = NavType.ReferenceType }
                 }
             }
-        }
 
         val toolbar = Toolbar(context).apply { setupWithNavController(navController) }
-        navController.navigate(
-            endDestination + "/${R.string.dest_title}"
-        )
+        navController.navigate(endDestination + "/${R.string.dest_title}")
 
         val expected = "${context.resources.getString(R.string.dest_title)}"
         assertThat(toolbar.title.toString()).isEqualTo(expected)
@@ -80,20 +77,17 @@
         val startDestination = "start_destination"
         val endDestination = "end_destination"
 
-        navController.graph = navController.createGraph(startDestination = startDestination) {
-            test(startDestination)
-            test("$endDestination/{test}") {
-                label = "start/{test}/end/{test}"
-                argument(name = "test") {
-                    type = NavType.ReferenceType
+        navController.graph =
+            navController.createGraph(startDestination = startDestination) {
+                test(startDestination)
+                test("$endDestination/{test}") {
+                    label = "start/{test}/end/{test}"
+                    argument(name = "test") { type = NavType.ReferenceType }
                 }
             }
-        }
 
         val toolbar = Toolbar(context).apply { setupWithNavController(navController) }
-        navController.navigate(
-            endDestination + "/${R.string.dest_title}"
-        )
+        navController.navigate(endDestination + "/${R.string.dest_title}")
 
         val argString = context.resources.getString(R.string.dest_title)
         val expected = "start/$argString/end/$argString"
@@ -111,19 +105,22 @@
         val endDestination = "end_destination"
         val labelString = "end/{test}"
 
-        navController.graph = navController.createGraph(startDestination = startDestination) {
-            test(startDestination)
-            test(endDestination) {
-                label = labelString
+        navController.graph =
+            navController.createGraph(startDestination = startDestination) {
+                test(startDestination)
+                test(endDestination) { label = labelString }
             }
-        }
 
         val toolbar = Toolbar(context).apply { setupWithNavController(navController) }
 
         // empty bundle
-        val testListener = createToolbarOnDestinationChangedListener(
-            toolbar = toolbar, bundle = Bundle(), context = context, navController = navController
-        )
+        val testListener =
+            createToolbarOnDestinationChangedListener(
+                toolbar = toolbar,
+                bundle = Bundle(),
+                context = context,
+                navController = navController
+            )
 
         // navigate to destination. Since the argument {test} is not present in the bundle,
         // this should throw an IllegalArgumentException
@@ -144,22 +141,25 @@
         val endDestination = "end_destination"
         val labelString = "end/{test}"
 
-        navController.graph = navController.createGraph(startDestination = startDestination) {
-            test(startDestination)
-            test("$endDestination/{test}") {
-                label = labelString
-                argument(name = "test") {
-                    type = NavType.ReferenceType
+        navController.graph =
+            navController.createGraph(startDestination = startDestination) {
+                test(startDestination)
+                test("$endDestination/{test}") {
+                    label = labelString
+                    argument(name = "test") { type = NavType.ReferenceType }
                 }
             }
-        }
 
         val toolbar = Toolbar(context).apply { setupWithNavController(navController) }
 
         // null Bundle
-        val testListener = createToolbarOnDestinationChangedListener(
-            toolbar = toolbar, bundle = null, context = context, navController = navController
-        )
+        val testListener =
+            createToolbarOnDestinationChangedListener(
+                toolbar = toolbar,
+                bundle = null,
+                context = context,
+                navController = navController
+            )
 
         // navigate to destination, should throw due to template found but null bundle
         navController.apply {
@@ -179,12 +179,11 @@
         val endDestination = "end_destination"
         val labelString = "end/test"
 
-        navController.graph = navController.createGraph(startDestination = startDestination) {
-            test(startDestination)
-            test(endDestination) {
-                label = labelString
+        navController.graph =
+            navController.createGraph(startDestination = startDestination) {
+                test(startDestination)
+                test(endDestination) { label = labelString }
             }
-        }
 
         val toolbar = Toolbar(context).apply { setupWithNavController(navController) }
 
@@ -203,15 +202,14 @@
         val startDestination = "start_destination"
         val endDestination = "end_destination"
 
-        navController.graph = navController.createGraph(startDestination = startDestination) {
-            test(startDestination)
-            test("$endDestination/{test}") {
-                label = "{test}"
-                argument(name = "test") {
-                    type = NavType.LongType
+        navController.graph =
+            navController.createGraph(startDestination = startDestination) {
+                test(startDestination)
+                test("$endDestination/{test}") {
+                    label = "{test}"
+                    argument(name = "test") { type = NavType.LongType }
                 }
             }
-        }
 
         val toolbar = Toolbar(context).apply { setupWithNavController(navController) }
         navController.navigate("$endDestination/123")
@@ -226,9 +224,11 @@
         context: Context,
         navController: NavController
     ): NavController.OnDestinationChangedListener {
-       return object : AbstractAppBarOnDestinationChangedListener(
-            context, AppBarConfiguration.Builder(navController.graph).build()
-        ) {
+        return object :
+            AbstractAppBarOnDestinationChangedListener(
+                context,
+                AppBarConfiguration.Builder(navController.graph).build()
+            ) {
             override fun setTitle(title: CharSequence?) {
                 toolbar.title = title
             }
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AbstractAppBarOnDestinationChangedListener.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AbstractAppBarOnDestinationChangedListener.kt
index 3b2c798..4d8effb 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AbstractAppBarOnDestinationChangedListener.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AbstractAppBarOnDestinationChangedListener.kt
@@ -29,17 +29,16 @@
 import java.lang.ref.WeakReference
 
 /**
- * The abstract OnDestinationChangedListener for keeping any type of app bar updated.
- * This handles both updating the title and updating the Up Indicator, transitioning between
- * the drawer icon and up arrow as needed.
+ * The abstract OnDestinationChangedListener for keeping any type of app bar updated. This handles
+ * both updating the title and updating the Up Indicator, transitioning between the drawer icon and
+ * up arrow as needed.
  */
 internal abstract class AbstractAppBarOnDestinationChangedListener(
     private val context: Context,
     private val configuration: AppBarConfiguration
 ) : NavController.OnDestinationChangedListener {
-    private val openableLayoutWeakReference = configuration.openableLayout?.run {
-        WeakReference(this)
-    }
+    private val openableLayoutWeakReference =
+        configuration.openableLayout?.run { WeakReference(this) }
     private var arrowDrawable: DrawerArrowDrawable? = null
     private var animator: ValueAnimator? = null
 
@@ -76,9 +75,9 @@
 
     @SuppressLint("ObjectAnimatorBinding")
     private fun setActionBarUpIndicator(showAsDrawerIndicator: Boolean) {
-        val (arrow, animate) = arrowDrawable?.run {
-            this to true
-        } ?: DrawerArrowDrawable(context).also { arrowDrawable = it } to false
+        val (arrow, animate) =
+            arrowDrawable?.run { this to true }
+                ?: DrawerArrowDrawable(context).also { arrowDrawable = it } to false
 
         setNavigationIcon(
             arrow,
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ActionBarOnDestinationChangedListener.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ActionBarOnDestinationChangedListener.kt
index 798a51a..65e4321 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ActionBarOnDestinationChangedListener.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ActionBarOnDestinationChangedListener.kt
@@ -20,34 +20,39 @@
 import androidx.appcompat.app.AppCompatActivity
 
 /**
- * The OnDestinationChangedListener specifically for keeping the ActionBar updated.
- * This handles both updating the title and updating the Up Indicator, transitioning between
- * the drawer icon and up arrow as needed.
+ * The OnDestinationChangedListener specifically for keeping the ActionBar updated. This handles
+ * both updating the title and updating the Up Indicator, transitioning between the drawer icon and
+ * up arrow as needed.
  */
 internal class ActionBarOnDestinationChangedListener(
     private val activity: AppCompatActivity,
     configuration: AppBarConfiguration
-) : AbstractAppBarOnDestinationChangedListener(
-    checkNotNull(activity.drawerToggleDelegate) {
-        "Activity $activity does not have an DrawerToggleDelegate set"
-    }.actionBarThemedContext,
-    configuration
-) {
+) :
+    AbstractAppBarOnDestinationChangedListener(
+        checkNotNull(activity.drawerToggleDelegate) {
+                "Activity $activity does not have a DrawerToggleDelegate set"
+            }
+            .actionBarThemedContext,
+        configuration
+    ) {
     override fun setTitle(title: CharSequence?) {
-        val actionBar = checkNotNull(activity.supportActionBar) {
-            "Activity $activity does not have an ActionBar set via setSupportActionBar()"
-        }
+        val actionBar =
+            checkNotNull(activity.supportActionBar) {
+                "Activity $activity does not have an ActionBar set via setSupportActionBar()"
+            }
         actionBar.title = title
     }
 
     override fun setNavigationIcon(icon: Drawable?, @StringRes contentDescription: Int) {
-        val actionBar = checkNotNull(activity.supportActionBar) {
-            "Activity $activity does not have an ActionBar set via setSupportActionBar()"
-        }
+        val actionBar =
+            checkNotNull(activity.supportActionBar) {
+                "Activity $activity does not have an ActionBar set via setSupportActionBar()"
+            }
         actionBar.setDisplayHomeAsUpEnabled(icon != null)
-        val delegate = checkNotNull(activity.drawerToggleDelegate) {
-            "Activity $activity does not have an DrawerToggleDelegate set"
-        }
+        val delegate =
+            checkNotNull(activity.drawerToggleDelegate) {
+                "Activity $activity does not have a DrawerToggleDelegate set"
+            }
         delegate.setActionBarUpIndicator(icon, contentDescription)
     }
 }
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Activity.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Activity.kt
index 4264837..9d0fc424 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Activity.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Activity.kt
@@ -21,23 +21,23 @@
 import androidx.navigation.NavController
 
 /**
- * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use
- * with a [NavController].
+ * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use with a
+ * [NavController].
  *
- * By calling this method, the title in the action bar will automatically be updated when
- * the destination changes (assuming there is a valid
+ * By calling this method, the title in the action bar will automatically be updated when the
+ * destination changes (assuming there is a valid
  * [label][androidx.navigation.NavDestination.label]).
  *
- * The start destination of your navigation graph is considered the only top level
- * destination. On the start destination of your navigation graph, the ActionBar will show
- * the drawer icon if the given `drawerLayout` is non null. On all other destinations,
- * the ActionBar will show the Up button.
+ * The start destination of your navigation graph is considered the only top level destination. On
+ * the start destination of your navigation graph, the ActionBar will show the drawer icon if the
+ * given `drawerLayout` is non null. On all other destinations, the ActionBar will show the Up
+ * button.
  *
  * You are responsible for calling [NavController.navigateUp] to handle the Navigation button.
  * Typically this is done in [AppCompatActivity.onSupportNavigateUp].
  *
- * @param navController The NavController whose navigation actions will be reflected
- *                      in the title of the action bar.
+ * @param navController The NavController whose navigation actions will be reflected in the title of
+ *   the action bar.
  * @param drawerLayout The DrawerLayout that should be toggled from the Navigation button
  */
 public fun AppCompatActivity.setupActionBarWithNavController(
@@ -45,29 +45,29 @@
     drawerLayout: DrawerLayout?
 ) {
     NavigationUI.setupActionBarWithNavController(
-        this, navController,
+        this,
+        navController,
         AppBarConfiguration(navController.graph, drawerLayout)
     )
 }
 
 /**
- * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use
- * with a [NavController].
+ * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use with a
+ * [NavController].
  *
- * By calling this method, the title in the action bar will automatically be updated when
- * the destination changes (assuming there is a valid
+ * By calling this method, the title in the action bar will automatically be updated when the
+ * destination changes (assuming there is a valid
  * [label][androidx.navigation.NavDestination.label]).
  *
- * The [AppBarConfiguration] you provide controls how the Navigation button is
- * displayed.
+ * The [AppBarConfiguration] you provide controls how the Navigation button is displayed.
  *
  * You are responsible for calling [NavController.navigateUp] to handle the Navigation button.
  * Typically this is done in [AppCompatActivity.onSupportNavigateUp].
  *
- * @param navController The NavController whose navigation actions will be reflected
- *                      in the title of the action bar.
+ * @param navController The NavController whose navigation actions will be reflected in the title of
+ *   the action bar.
  * @param configuration Additional configuration options for customizing the behavior of the
- *                      ActionBar
+ *   ActionBar
  */
 public fun AppCompatActivity.setupActionBarWithNavController(
     navController: NavController,
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AppBarConfiguration.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AppBarConfiguration.kt
index 045acc5..b9ba94c 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AppBarConfiguration.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/AppBarConfiguration.kt
@@ -27,30 +27,32 @@
 import java.util.HashSet
 
 /**
- * Configuration options for [NavigationUI] methods that interact with implementations of the
- * app bar pattern such as [androidx.appcompat.widget.Toolbar],
+ * Configuration options for [NavigationUI] methods that interact with implementations of the app
+ * bar pattern such as [androidx.appcompat.widget.Toolbar],
  * [com.google.android.material.appbar.CollapsingToolbarLayout], and
  * [androidx.appcompat.app.ActionBar].
  */
-public class AppBarConfiguration private constructor(
+public class AppBarConfiguration
+private constructor(
     /**
-     * The set of destinations by id considered at the top level of your information hierarchy.
-     * The Up button will not be displayed when on these destinations.
+     * The set of destinations by id considered at the top level of your information hierarchy. The
+     * Up button will not be displayed when on these destinations.
      *
      * @return The set of top level destinations by id.
      */
     public val topLevelDestinations: Set<Int>,
     /**
-     * The [Openable] layout indicating that the Navigation button should be displayed as
-     * a drawer symbol when it is not being shown as an Up button.
+     * The [Openable] layout indicating that the Navigation button should be displayed as a drawer
+     * symbol when it is not being shown as an Up button.
+     *
      * @return The Openable layout that should be toggled from the Navigation button
      */
     public val openableLayout: Openable?,
     /**
      * The [OnNavigateUpListener] that should be invoked if
      * [androidx.navigation.NavController.navigateUp] returns `false`.
-     * @return a [OnNavigateUpListener] for providing custom up navigation logic,
-     * if one was set.
+     *
+     * @return a [OnNavigateUpListener] for providing custom up navigation logic, if one was set.
      */
     public val fallbackOnNavigateUpListener: OnNavigateUpListener?
 ) {
@@ -71,71 +73,71 @@
     }
 
     /**
-     * The [DrawerLayout] indicating that the Navigation button should be displayed as
-     * a drawer symbol when it is not being shown as an Up button.
+     * The [DrawerLayout] indicating that the Navigation button should be displayed as a drawer
+     * symbol when it is not being shown as an Up button.
+     *
      * @return The DrawerLayout that should be toggled from the Navigation button
      */
     @get:Deprecated("Use {@link #getOpenableLayout()}.")
     public val drawerLayout: DrawerLayout?
-        get() = if (openableLayout is DrawerLayout) {
-            openableLayout
-        } else null
+        get() =
+            if (openableLayout is DrawerLayout) {
+                openableLayout
+            } else null
 
     /**
      * Determines whether a [NavDestination] is a top level destination in [AppBarConfiguration].
      *
      * Returns true if the [NavDestination] was added directly as a top level destination via
      * [AppBarConfiguration.Builder] constructors such as
-     * `AppBarConfiguration.Builder(topLevelDestinationIds: Set<Int>)`.
-     * If destination was added with a [AppBarConfiguration.Builder] that could take in a graph,
-     * i.e. `AppBarConfiguration.Builder(NavGraph)` or`AppBarConfiguration.Builder(Menu)`, this
-     * helper will return true if the destination is the start destination of a graph
-     * (including nested graphs i.e. [MenuItem] that are also [NavGraph]), or an individual
-     * [MenuItem] within the [Menu].
+     * `AppBarConfiguration.Builder(topLevelDestinationIds: Set<Int>)`. If destination was added
+     * with a [AppBarConfiguration.Builder] that could take in a graph, i.e.
+     * `AppBarConfiguration.Builder(NavGraph)` or`AppBarConfiguration.Builder(Menu)`, this helper
+     * will return true if the destination is the start destination of a graph (including nested
+     * graphs i.e. [MenuItem] that are also [NavGraph]), or an individual [MenuItem] within the
+     * [Menu].
      *
      * @param destination the [NavDestination] to check whether it is a topLevelDestination
      */
     public fun isTopLevelDestination(destination: NavDestination): Boolean {
         return destination.hierarchy.any { parent ->
             when (parent.id in topLevelDestinations) {
-                true -> if (parent is NavGraph) {
-                            destination.id == parent.findStartDestination().id
-                        } else true
+                true ->
+                    if (parent is NavGraph) {
+                        destination.id == parent.findStartDestination().id
+                    } else true
                 else -> false
             }
         }
     }
 
-    /**
-     * The Builder class for constructing new [AppBarConfiguration] instances.
-     */
+    /** The Builder class for constructing new [AppBarConfiguration] instances. */
     public class Builder {
         private val topLevelDestinations: MutableSet<Int> = HashSet()
         private var openableLayout: Openable? = null
         private var fallbackOnNavigateUpListener: OnNavigateUpListener? = null
 
         /**
-         * Create a new Builder whose only top level destination is the start destination
-         * of the given [NavGraph]. The Up button will not be displayed when on the
-         * start destination of the graph.
+         * Create a new Builder whose only top level destination is the start destination of the
+         * given [NavGraph]. The Up button will not be displayed when on the start destination of
+         * the graph.
          *
-         * @param navGraph The NavGraph whose start destination should be considered the only
-         * top level destination. The Up button will not be displayed when on the
-         * start destination of the graph.
+         * @param navGraph The NavGraph whose start destination should be considered the only top
+         *   level destination. The Up button will not be displayed when on the start destination of
+         *   the graph.
          */
         public constructor(navGraph: NavGraph) {
             topLevelDestinations.add(navGraph.findStartDestination().id)
         }
 
         /**
-         * Create a new Builder using a [Menu] containing all top level destinations. It is
-         * expected that the [menu item id][MenuItem.getItemId] of each item corresponds
-         * with a destination in your navigation graph. The Up button will not be displayed when
-         * on these destinations.
+         * Create a new Builder using a [Menu] containing all top level destinations. It is expected
+         * that the [menu item id][MenuItem.getItemId] of each item corresponds with a destination
+         * in your navigation graph. The Up button will not be displayed when on these destinations.
          *
          * @param topLevelMenu A Menu containing MenuItems corresponding with the destinations
-         * considered at the top level of your information hierarchy.
-         * The Up button will not be displayed when on these destinations.
+         *   considered at the top level of your information hierarchy. The Up button will not be
+         *   displayed when on these destinations.
          */
         public constructor(topLevelMenu: Menu) {
             val size = topLevelMenu.size()
@@ -150,8 +152,8 @@
          * not be displayed when on these destinations.
          *
          * @param topLevelDestinationIds The set of destinations by id considered at the top level
-         * of your information hierarchy. The Up button will not be
-         * displayed when on these destinations.
+         *   of your information hierarchy. The Up button will not be displayed when on these
+         *   destinations.
          */
         public constructor(vararg topLevelDestinationIds: Int) {
             for (destinationId in topLevelDestinationIds) {
@@ -164,16 +166,17 @@
          * not be displayed when on these destinations.
          *
          * @param topLevelDestinationIds The set of destinations by id considered at the top level
-         * of your information hierarchy. The Up button will not be
-         * displayed when on these destinations.
+         *   of your information hierarchy. The Up button will not be displayed when on these
+         *   destinations.
          */
         public constructor(topLevelDestinationIds: Set<Int>) {
             topLevelDestinations.addAll(topLevelDestinationIds)
         }
 
         /**
-         * Display the Navigation button as a drawer symbol when it is not being shown as an
-         * Up button.
+         * Display the Navigation button as a drawer symbol when it is not being shown as an Up
+         * button.
+         *
          * @param drawerLayout The DrawerLayout that should be toggled from the Navigation button
          * @return this [Builder]
          */
@@ -184,10 +187,11 @@
         }
 
         /**
-         * Display the Navigation button as a drawer symbol when it is not being shown as an
-         * Up button.
+         * Display the Navigation button as a drawer symbol when it is not being shown as an Up
+         * button.
+         *
          * @param openableLayout The Openable layout that should be toggled from the Navigation
-         * button
+         *   button
          * @return this [Builder]
          */
         public fun setOpenableLayout(openableLayout: Openable?): Builder {
@@ -196,13 +200,11 @@
         }
 
         /**
-         * Adds a [OnNavigateUpListener] that will be called as a fallback if the default
-         * behavior of [androidx.navigation.NavController.navigateUp]
-         * returns `false`.
+         * Adds a [OnNavigateUpListener] that will be called as a fallback if the default behavior
+         * of [androidx.navigation.NavController.navigateUp] returns `false`.
          *
          * @param fallbackOnNavigateUpListener Listener that will be invoked if
-         * [androidx.navigation.NavController.navigateUp]
-         * returns `false`.
+         *   [androidx.navigation.NavController.navigateUp] returns `false`.
          * @return this [Builder]
          */
         public fun setFallbackOnNavigateUpListener(
@@ -218,7 +220,7 @@
          * @return a valid [AppBarConfiguration]
          */
         /* new AppBarConfiguration() must be private to avoid
-                                              conflicting with the public AppBarConfiguration.kt */
+        conflicting with the public AppBarConfiguration.kt */
         public fun build(): AppBarConfiguration {
             return AppBarConfiguration(
                 topLevelDestinations,
@@ -230,76 +232,74 @@
 }
 
 /**
- * Configuration options for [NavigationUI] methods that interact with implementations of the
- * app bar pattern such as [androidx.appcompat.widget.Toolbar],
+ * Configuration options for [NavigationUI] methods that interact with implementations of the app
+ * bar pattern such as [androidx.appcompat.widget.Toolbar],
  * [com.google.android.material.appbar.CollapsingToolbarLayout], and
  * [androidx.appcompat.app.ActionBar].
  *
- * @param navGraph The [NavGraph] whose start destination should be considered the only
- *                 top level destination. The Up button will not be displayed when on the
- *                 start destination of the graph.
+ * @param navGraph The [NavGraph] whose start destination should be considered the only top level
+ *   destination. The Up button will not be displayed when on the start destination of the graph.
  * @param drawerLayout The Openable layout that should be toggled from the Navigation button. The
- *                     the Navigation button will show a drawer symbol when it is not being shown
- *                     as an Up button.
+ *   the Navigation button will show a drawer symbol when it is not being shown as an Up button.
  * @param fallbackOnNavigateUpListener Lambda that will be invoked if
- * [androidx.navigation.NavController.navigateUp] returns `false`
+ *   [androidx.navigation.NavController.navigateUp] returns `false`
  */
 @Suppress("FunctionName", "NOTHING_TO_INLINE") /* Acts like a constructor */
 public inline fun AppBarConfiguration(
     navGraph: NavGraph,
     drawerLayout: Openable? = null,
     noinline fallbackOnNavigateUpListener: () -> Boolean = { false }
-): AppBarConfiguration = AppBarConfiguration.Builder(navGraph)
-    .setOpenableLayout(drawerLayout)
-    .setFallbackOnNavigateUpListener(fallbackOnNavigateUpListener)
-    .build()
+): AppBarConfiguration =
+    AppBarConfiguration.Builder(navGraph)
+        .setOpenableLayout(drawerLayout)
+        .setFallbackOnNavigateUpListener(fallbackOnNavigateUpListener)
+        .build()
 
 /**
- * Configuration options for [NavigationUI] methods that interact with implementations of the
- * app bar pattern such as [androidx.appcompat.widget.Toolbar],
+ * Configuration options for [NavigationUI] methods that interact with implementations of the app
+ * bar pattern such as [androidx.appcompat.widget.Toolbar],
  * [com.google.android.material.appbar.CollapsingToolbarLayout], and
  * [androidx.appcompat.app.ActionBar].
  *
- * @param topLevelMenu A Menu containing MenuItems corresponding with the destinations
- *                     considered at the top level of your information hierarchy.
- *                     The Up button will not be displayed when on these destinations.
+ * @param topLevelMenu A Menu containing MenuItems corresponding with the destinations considered at
+ *   the top level of your information hierarchy. The Up button will not be displayed when on these
+ *   destinations.
  * @param drawerLayout The Openable layout that should be toggled from the Navigation button. The
- *                     the Navigation button will show a drawer symbol when it is not being shown
- *                     as an Up button.
+ *   the Navigation button will show a drawer symbol when it is not being shown as an Up button.
  * @param fallbackOnNavigateUpListener Lambda that will be invoked if
- * [androidx.navigation.NavController.navigateUp] returns `false`
+ *   [androidx.navigation.NavController.navigateUp] returns `false`
  */
 @Suppress("FunctionName", "NOTHING_TO_INLINE") /* Acts like a constructor */
 public inline fun AppBarConfiguration(
     topLevelMenu: Menu,
     drawerLayout: Openable? = null,
     noinline fallbackOnNavigateUpListener: () -> Boolean = { false }
-): AppBarConfiguration = AppBarConfiguration.Builder(topLevelMenu)
-    .setOpenableLayout(drawerLayout)
-    .setFallbackOnNavigateUpListener(fallbackOnNavigateUpListener)
-    .build()
+): AppBarConfiguration =
+    AppBarConfiguration.Builder(topLevelMenu)
+        .setOpenableLayout(drawerLayout)
+        .setFallbackOnNavigateUpListener(fallbackOnNavigateUpListener)
+        .build()
 
 /**
- * Configuration options for [NavigationUI] methods that interact with implementations of the
- * app bar pattern such as [androidx.appcompat.widget.Toolbar],
+ * Configuration options for [NavigationUI] methods that interact with implementations of the app
+ * bar pattern such as [androidx.appcompat.widget.Toolbar],
  * [com.google.android.material.appbar.CollapsingToolbarLayout], and
  * [androidx.appcompat.app.ActionBar].
  *
- * @param topLevelDestinationIds The set of destinations by id considered at the top level
- *                               of your information hierarchy. The Up button will not be
- *                               displayed when on these destinations.
+ * @param topLevelDestinationIds The set of destinations by id considered at the top level of your
+ *   information hierarchy. The Up button will not be displayed when on these destinations.
  * @param drawerLayout The Openable layout that should be toggled from the Navigation button. The
- *                     the Navigation button will show a drawer symbol when it is not being shown
- *                     as an Up button.
+ *   the Navigation button will show a drawer symbol when it is not being shown as an Up button.
  * @param fallbackOnNavigateUpListener Lambda that will be invoked if
- * [androidx.navigation.NavController.navigateUp] returns `false`
+ *   [androidx.navigation.NavController.navigateUp] returns `false`
  */
 @Suppress("FunctionName", "NOTHING_TO_INLINE") /* Acts like a constructor */
 public inline fun AppBarConfiguration(
     topLevelDestinationIds: Set<Int>,
     drawerLayout: Openable? = null,
     noinline fallbackOnNavigateUpListener: () -> Boolean = { false }
-): AppBarConfiguration = AppBarConfiguration.Builder(topLevelDestinationIds)
-    .setOpenableLayout(drawerLayout)
-    .setFallbackOnNavigateUpListener(fallbackOnNavigateUpListener)
-    .build()
+): AppBarConfiguration =
+    AppBarConfiguration.Builder(topLevelDestinationIds)
+        .setOpenableLayout(drawerLayout)
+        .setFallbackOnNavigateUpListener(fallbackOnNavigateUpListener)
+        .build()
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarLayout.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarLayout.kt
index 8477892..c7e1619 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarLayout.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarLayout.kt
@@ -24,20 +24,19 @@
 /**
  * Sets up a [CollapsingToolbarLayout] and [Toolbar] for use with a [NavController].
  *
- * By calling this method, the title in the Toolbar will automatically be updated when
- * the destination changes (assuming there is a valid
+ * By calling this method, the title in the Toolbar will automatically be updated when the
+ * destination changes (assuming there is a valid
  * [label][androidx.navigation.NavDestination.label]).
  *
- * The start destination of your navigation graph is considered the only top level
- * destination. On the start destination of your navigation graph, the Toolbar will show
- * the drawer icon if the given `drawerLayout` is non null. On all other destinations,
- * the Toolbar will show the Up button.
+ * The start destination of your navigation graph is considered the only top level destination. On
+ * the start destination of your navigation graph, the Toolbar will show the drawer icon if the
+ * given `drawerLayout` is non null. On all other destinations, the Toolbar will show the Up button.
  *
  * This method will call [NavController.navigateUp] when the Navigation button is clicked.
  *
  * @param toolbar The Toolbar that should be kept in sync with changes to the NavController.
- * @param navController The NavController whose navigation actions will be reflected
- *                      in the title of the Toolbar.
+ * @param navController The NavController whose navigation actions will be reflected in the title of
+ *   the Toolbar.
  * @param drawerLayout The DrawerLayout that should be toggled from the Navigation button
  */
 public fun CollapsingToolbarLayout.setupWithNavController(
@@ -46,7 +45,9 @@
     drawerLayout: DrawerLayout?
 ) {
     NavigationUI.setupWithNavController(
-        this, toolbar, navController,
+        this,
+        toolbar,
+        navController,
         AppBarConfiguration(navController.graph, drawerLayout)
     )
 }
@@ -54,20 +55,19 @@
 /**
  * Sets up a [CollapsingToolbarLayout] and [Toolbar] for use with a [NavController].
  *
- * By calling this method, the title in the Toolbar will automatically be updated when
- * the destination changes (assuming there is a valid
+ * By calling this method, the title in the Toolbar will automatically be updated when the
+ * destination changes (assuming there is a valid
  * [label][androidx.navigation.NavDestination.label]).
  *
- * The [AppBarConfiguration] you provide controls how the Navigation button is
- * displayed and what action is triggered when the Navigation button is tapped.
+ * The [AppBarConfiguration] you provide controls how the Navigation button is displayed and what
+ * action is triggered when the Navigation button is tapped.
  *
  * This method will call [NavController.navigateUp] when the navigation icon is clicked.
  *
  * @param toolbar The Toolbar that should be kept in sync with changes to the NavController.
- * @param navController The NavController whose navigation actions will be reflected
- *                      in the title of the Toolbar.
- * @param configuration Additional configuration options for customizing the behavior of the
- *                      Toolbar
+ * @param navController The NavController whose navigation actions will be reflected in the title of
+ *   the Toolbar.
+ * @param configuration Additional configuration options for customizing the behavior of the Toolbar
  */
 public fun CollapsingToolbarLayout.setupWithNavController(
     toolbar: Toolbar,
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarOnDestinationChangedListener.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarOnDestinationChangedListener.kt
index cb22fe0..5b620fe 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarOnDestinationChangedListener.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/CollapsingToolbarOnDestinationChangedListener.kt
@@ -26,10 +26,9 @@
 import java.lang.ref.WeakReference
 
 /**
- * The OnDestinationChangedListener specifically for keeping a
- * CollapsingToolbarLayout+Toolbar updated.
- * This handles both updating the title and updating the Up Indicator, transitioning between
- * the drawer icon and up arrow as needed.
+ * The OnDestinationChangedListener specifically for keeping a CollapsingToolbarLayout+Toolbar
+ * updated. This handles both updating the title and updating the Up Indicator, transitioning
+ * between the drawer icon and up arrow as needed.
  */
 internal class CollapsingToolbarOnDestinationChangedListener(
     collapsingToolbarLayout: CollapsingToolbarLayout,
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/MenuItem.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/MenuItem.kt
index 079cc95..64a51a5 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/MenuItem.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/MenuItem.kt
@@ -26,9 +26,8 @@
  * [action id][androidx.navigation.NavDestination.getAction] or
  * [destination id][androidx.navigation.NavDestination.id] to be navigated to.
  *
- * By default, the back stack will be popped back to the navigation graph's start destination.
- * Menu items that have `android:menuCategory="secondary"` will not pop the back
- * stack.
+ * By default, the back stack will be popped back to the navigation graph's start destination. Menu
+ * items that have `android:menuCategory="secondary"` will not pop the back stack.
  *
  * @return True if the [NavController] was able to navigate to the destination.
  */
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavController.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavController.kt
index d768fdf..3f2d5e9 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavController.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavController.kt
@@ -27,10 +27,7 @@
  * @return True if the [NavController] was able to navigate up.
  */
 public fun NavController.navigateUp(drawerLayout: Openable?): Boolean =
-    NavigationUI.navigateUp(
-        this,
-        AppBarConfiguration(graph, drawerLayout)
-    )
+    NavigationUI.navigateUp(this, AppBarConfiguration(graph, drawerLayout))
 
 /**
  * Handles the Up button by delegating its behavior to the given [NavController].
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUI.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUI.kt
index 3881c55..d205cd3 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUI.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUI.kt
@@ -50,35 +50,36 @@
     private const val TAG = "NavigationUI"
 
     /**
-     * Attempt to navigate to the [NavDestination] associated with the given MenuItem. This
-     * MenuItem should have been added via one of the helper methods in this class.
+     * Attempt to navigate to the [NavDestination] associated with the given MenuItem. This MenuItem
+     * should have been added via one of the helper methods in this class.
      *
      * Importantly, it assumes the [menu item id][MenuItem.getItemId] matches a valid
-     * [action id][NavDestination.getAction] or [destination id][NavDestination.id] to be
-     * navigated to.
+     * [action id][NavDestination.getAction] or [destination id][NavDestination.id] to be navigated
+     * to.
      *
      * By default, the back stack will be popped back to the navigation graph's start destination.
-     * Menu items that have `android:menuCategory="secondary"` will not pop the back
-     * stack.
+     * Menu items that have `android:menuCategory="secondary"` will not pop the back stack.
      *
      * @param item The selected MenuItem.
      * @param navController The NavController that hosts the destination.
-     * @return True if the [NavController] was able to navigate to the destination
-     * associated with the given MenuItem.
+     * @return True if the [NavController] was able to navigate to the destination associated with
+     *   the given MenuItem.
      */
     @JvmStatic
     public fun onNavDestinationSelected(item: MenuItem, navController: NavController): Boolean {
         val builder = NavOptions.Builder().setLaunchSingleTop(true).setRestoreState(true)
         if (
             navController.currentDestination!!.parent!!.findNode(item.itemId)
-            is ActivityNavigator.Destination
+                is ActivityNavigator.Destination
         ) {
-            builder.setEnterAnim(R.anim.nav_default_enter_anim)
+            builder
+                .setEnterAnim(R.anim.nav_default_enter_anim)
                 .setExitAnim(R.anim.nav_default_exit_anim)
                 .setPopEnterAnim(R.anim.nav_default_pop_enter_anim)
                 .setPopExitAnim(R.anim.nav_default_pop_exit_anim)
         } else {
-            builder.setEnterAnim(R.animator.nav_default_enter_anim)
+            builder
+                .setEnterAnim(R.animator.nav_default_enter_anim)
                 .setExitAnim(R.animator.nav_default_exit_anim)
                 .setPopEnterAnim(R.animator.nav_default_pop_enter_anim)
                 .setPopExitAnim(R.animator.nav_default_pop_exit_anim)
@@ -109,25 +110,23 @@
     }
 
     /**
-     * Attempt to navigate to the [NavDestination] associated with the given MenuItem. This
-     * MenuItem should have been added via one of the helper methods in this class.
+     * Attempt to navigate to the [NavDestination] associated with the given MenuItem. This MenuItem
+     * should have been added via one of the helper methods in this class.
      *
      * Importantly, it assumes the [menu item id][MenuItem.getItemId] matches a valid
-     * [action id][NavDestination.getAction] or [destination id][NavDestination.id] to be
-     * navigated to.
+     * [action id][NavDestination.getAction] or [destination id][NavDestination.id] to be navigated
+     * to.
      *
      * By default, the back stack will be popped back to the navigation graph's start destination.
-     * Menu items that have `android:menuCategory="secondary"` will not pop the back
-     * stack.
+     * Menu items that have `android:menuCategory="secondary"` will not pop the back stack.
      *
      * @param item The selected MenuItem.
      * @param navController The NavController that hosts the destination.
-     * @param saveState Whether the NavController should save the back stack state. This must
-     * always be `false`: leave this parameter off entirely to use the non-experimental version
-     * of this API, which saves the state by default.
-     *
-     * @return True if the [NavController] was able to navigate to the destination
-     * associated with the given MenuItem.
+     * @param saveState Whether the NavController should save the back stack state. This must always
+     *   be `false`: leave this parameter off entirely to use the non-experimental version of this
+     *   API, which saves the state by default.
+     * @return True if the [NavController] was able to navigate to the destination associated with
+     *   the given MenuItem.
      */
     @NavigationUiSaveStateControl
     @JvmStatic
@@ -143,23 +142,22 @@
         val builder = NavOptions.Builder().setLaunchSingleTop(true)
         if (
             navController.currentDestination!!.parent!!.findNode(item.itemId)
-            is ActivityNavigator.Destination
+                is ActivityNavigator.Destination
         ) {
-            builder.setEnterAnim(R.anim.nav_default_enter_anim)
+            builder
+                .setEnterAnim(R.anim.nav_default_enter_anim)
                 .setExitAnim(R.anim.nav_default_exit_anim)
                 .setPopEnterAnim(R.anim.nav_default_pop_enter_anim)
                 .setPopExitAnim(R.anim.nav_default_pop_exit_anim)
         } else {
-            builder.setEnterAnim(R.animator.nav_default_enter_anim)
+            builder
+                .setEnterAnim(R.animator.nav_default_enter_anim)
                 .setExitAnim(R.animator.nav_default_exit_anim)
                 .setPopEnterAnim(R.animator.nav_default_pop_enter_anim)
                 .setPopExitAnim(R.animator.nav_default_pop_exit_anim)
         }
         if (item.order and Menu.CATEGORY_SECONDARY == 0) {
-            builder.setPopUpTo(
-                navController.graph.findStartDestination().id,
-                inclusive = false
-            )
+            builder.setPopUpTo(navController.graph.findStartDestination().id, inclusive = false)
         }
         val options = builder.build()
         return try {
@@ -183,12 +181,11 @@
      * Handles the Up button by delegating its behavior to the given NavController. This should
      * generally be called from [AppCompatActivity.onSupportNavigateUp].
      *
-     * If you do not have a [Openable] layout, you should call
-     * [NavController.navigateUp] directly.
+     * If you do not have a [Openable] layout, you should call [NavController.navigateUp] directly.
      *
      * @param navController The NavController that hosts your content.
      * @param openableLayout The Openable layout that should be opened if you are on the topmost
-     * level of the app.
+     *   level of the app.
      * @return True if the [NavController] was able to navigate up.
      */
     @JvmStatic
@@ -201,18 +198,17 @@
         )
 
     /**
-     * Handles the Up button by delegating its behavior to the given NavController. This is
-     * an alternative to using [NavController.navigateUp] directly when the given
-     * [AppBarConfiguration] needs to be considered when determining what should happen
-     * when the Up button is pressed.
+     * Handles the Up button by delegating its behavior to the given NavController. This is an
+     * alternative to using [NavController.navigateUp] directly when the given [AppBarConfiguration]
+     * needs to be considered when determining what should happen when the Up button is pressed.
      *
      * In cases where no Up action is available, the
-     * [AppBarConfiguration.fallbackOnNavigateUpListener] will be called to provide
-     * additional control.
+     * [AppBarConfiguration.fallbackOnNavigateUpListener] will be called to provide additional
+     * control.
      *
      * @param navController The NavController that hosts your content.
-     * @param configuration Additional configuration options for determining what should happen
-     * when the Up button is pressed.
+     * @param configuration Additional configuration options for determining what should happen when
+     *   the Up button is pressed.
      * @return True if the [NavController] was able to navigate up.
      */
     @JvmStatic
@@ -222,8 +218,10 @@
     ): Boolean {
         val openableLayout = configuration.openableLayout
         val currentDestination = navController.currentDestination
-        return if (openableLayout != null && currentDestination != null &&
-            configuration.isTopLevelDestination(currentDestination)
+        return if (
+            openableLayout != null &&
+                currentDestination != null &&
+                configuration.isTopLevelDestination(currentDestination)
         ) {
             openableLayout.open()
             true
@@ -235,24 +233,23 @@
     }
 
     /**
-     * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use
-     * with a [NavController].
+     * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use with a
+     * [NavController].
      *
-     * By calling this method, the title in the action bar will automatically be updated when
-     * the destination changes (assuming there is a valid [label][NavDestination.label]).
+     * By calling this method, the title in the action bar will automatically be updated when the
+     * destination changes (assuming there is a valid [label][NavDestination.label]).
      *
-     * The start destination of your navigation graph is considered the only top level
-     * destination. On the start destination of your navigation graph, the ActionBar will show
-     * the drawer icon if the given Openable layout is non null. On all other destinations,
-     * the ActionBar will show the Up button.
-     * Call [navigateUp] to handle the Up button.
+     * The start destination of your navigation graph is considered the only top level destination.
+     * On the start destination of your navigation graph, the ActionBar will show the drawer icon if
+     * the given Openable layout is non null. On all other destinations, the ActionBar will show the
+     * Up button. Call [navigateUp] to handle the Up button.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param activity The activity hosting the action bar that should be kept in sync with changes
-     * to the NavController.
-     * @param navController The NavController whose navigation actions will be reflected
-     * in the title of the action bar.
+     *   to the NavController.
+     * @param navController The NavController whose navigation actions will be reflected in the
+     *   title of the action bar.
      * @param openableLayout The Openable layout that should be toggled from the home button
      * @see NavigationUI.setupActionBarWithNavController
      */
@@ -271,24 +268,23 @@
         )
 
     /**
-     * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use
-     * with a [NavController].
+     * Sets up the ActionBar returned by [AppCompatActivity.getSupportActionBar] for use with a
+     * [NavController].
      *
-     * By calling this method, the title in the action bar will automatically be updated when
-     * the destination changes (assuming there is a valid [label][NavDestination.label]).
+     * By calling this method, the title in the action bar will automatically be updated when the
+     * destination changes (assuming there is a valid [label][NavDestination.label]).
      *
-     * The [AppBarConfiguration] you provide controls how the Navigation button is
-     * displayed.
-     * Call [navigateUp] to handle the Up button.
+     * The [AppBarConfiguration] you provide controls how the Navigation button is displayed. Call
+     * [navigateUp] to handle the Up button.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param activity The activity hosting the action bar that should be kept in sync with changes
-     * to the NavController.
-     * @param navController The NavController whose navigation actions will be reflected
-     * in the title of the action bar.
+     *   to the NavController.
+     * @param navController The NavController whose navigation actions will be reflected in the
+     *   title of the action bar.
      * @param configuration Additional configuration options for customizing the behavior of the
-     * ActionBar
+     *   ActionBar
      */
     @JvmStatic
     @JvmOverloads
@@ -305,20 +301,19 @@
     /**
      * Sets up a [Toolbar] for use with a [NavController].
      *
-     * By calling this method, the title in the Toolbar will automatically be updated when
-     * the destination changes (assuming there is a valid [label][NavDestination.label]).
+     * By calling this method, the title in the Toolbar will automatically be updated when the
+     * destination changes (assuming there is a valid [label][NavDestination.label]).
      *
-     * The start destination of your navigation graph is considered the only top level
-     * destination. On the start destination of your navigation graph, the Toolbar will show
-     * the drawer icon if the given Openable layout is non null. On all other destinations,
-     * the Toolbar will show the Up button. This method will call
-     * [navigateUp] when the Navigation button is clicked.
+     * The start destination of your navigation graph is considered the only top level destination.
+     * On the start destination of your navigation graph, the Toolbar will show the drawer icon if
+     * the given Openable layout is non null. On all other destinations, the Toolbar will show the
+     * Up button. This method will call [navigateUp] when the Navigation button is clicked.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param toolbar The Toolbar that should be kept in sync with changes to the NavController.
-     * @param navController The NavController whose navigation actions will be reflected
-     * in the title of the Toolbar.
+     * @param navController The NavController whose navigation actions will be reflected in the
+     *   title of the Toolbar.
      * @param openableLayout The Openable layout that should be toggled from the Navigation button
      * @see setupWithNavController
      */
@@ -339,21 +334,20 @@
     /**
      * Sets up a [Toolbar] for use with a [NavController].
      *
-     * By calling this method, the title in the Toolbar will automatically be updated when
-     * the destination changes (assuming there is a valid [label][NavDestination.label]).
+     * By calling this method, the title in the Toolbar will automatically be updated when the
+     * destination changes (assuming there is a valid [label][NavDestination.label]).
      *
-     * The [AppBarConfiguration] you provide controls how the Navigation button is
-     * displayed and what action is triggered when the Navigation button is tapped. This method
-     * will call [navigateUp] when the Navigation button
-     * is clicked.
+     * The [AppBarConfiguration] you provide controls how the Navigation button is displayed and
+     * what action is triggered when the Navigation button is tapped. This method will call
+     * [navigateUp] when the Navigation button is clicked.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param toolbar The Toolbar that should be kept in sync with changes to the NavController.
-     * @param navController The NavController whose navigation actions will be reflected
-     * in the title of the Toolbar.
+     * @param navController The NavController whose navigation actions will be reflected in the
+     *   title of the Toolbar.
      * @param configuration Additional configuration options for customizing the behavior of the
-     * Toolbar
+     *   Toolbar
      */
     @JvmStatic
     @JvmOverloads
@@ -370,26 +364,24 @@
     }
 
     /**
-     * Sets up a [CollapsingToolbarLayout] and [Toolbar] for use with a
-     * [NavController].
+     * Sets up a [CollapsingToolbarLayout] and [Toolbar] for use with a [NavController].
      *
      * By calling this method, the title in the CollapsingToolbarLayout will automatically be
      * updated when the destination changes (assuming there is a valid
      * [label][NavDestination.label]).
      *
-     * The start destination of your navigation graph is considered the only top level
-     * destination. On the start destination of your navigation graph, the Toolbar will show
-     * the drawer icon if the given Openable layout is non null. On all other destinations,
-     * the Toolbar will show the Up button. This method will call
-     * [navigateUp] when the Navigation button is clicked.
+     * The start destination of your navigation graph is considered the only top level destination.
+     * On the start destination of your navigation graph, the Toolbar will show the drawer icon if
+     * the given Openable layout is non null. On all other destinations, the Toolbar will show the
+     * Up button. This method will call [navigateUp] when the Navigation button is clicked.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param collapsingToolbarLayout The CollapsingToolbarLayout that should be kept in sync with
-     * changes to the NavController.
+     *   changes to the NavController.
      * @param toolbar The Toolbar that should be kept in sync with changes to the NavController.
-     * @param navController The NavController whose navigation actions will be reflected
-     * in the title of the Toolbar.
+     * @param navController The NavController whose navigation actions will be reflected in the
+     *   title of the Toolbar.
      * @param openableLayout The Openable layout that should be toggled from the Navigation button
      */
     @JvmStatic
@@ -400,34 +392,34 @@
         openableLayout: Openable?
     ): Unit =
         setupWithNavController(
-            collapsingToolbarLayout, toolbar, navController,
+            collapsingToolbarLayout,
+            toolbar,
+            navController,
             AppBarConfiguration.Builder(navController.graph)
                 .setOpenableLayout(openableLayout)
                 .build()
         )
 
     /**
-     * Sets up a [CollapsingToolbarLayout] and [Toolbar] for use with a
-     * [NavController].
+     * Sets up a [CollapsingToolbarLayout] and [Toolbar] for use with a [NavController].
      *
      * By calling this method, the title in the CollapsingToolbarLayout will automatically be
      * updated when the destination changes (assuming there is a valid
      * [label][NavDestination.label]).
      *
-     * The [AppBarConfiguration] you provide controls how the Navigation button is
-     * displayed and what action is triggered when the Navigation button is tapped. This method
-     * will call [navigateUp] when the Navigation button
-     * is clicked.
+     * The [AppBarConfiguration] you provide controls how the Navigation button is displayed and
+     * what action is triggered when the Navigation button is tapped. This method will call
+     * [navigateUp] when the Navigation button is clicked.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param collapsingToolbarLayout The CollapsingToolbarLayout that should be kept in sync with
-     * changes to the NavController.
+     *   changes to the NavController.
      * @param toolbar The Toolbar that should be kept in sync with changes to the NavController.
-     * @param navController The NavController whose navigation actions will be reflected
-     * in the title of the Toolbar.
+     * @param navController The NavController whose navigation actions will be reflected in the
+     *   title of the Toolbar.
      * @param configuration Additional configuration options for customizing the behavior of the
-     * Toolbar
+     *   Toolbar
      */
     @JvmStatic
     @JvmOverloads
@@ -440,7 +432,9 @@
     ) {
         navController.addOnDestinationChangedListener(
             CollapsingToolbarOnDestinationChangedListener(
-                collapsingToolbarLayout, toolbar, configuration
+                collapsingToolbarLayout,
+                toolbar,
+                configuration
             )
         )
         toolbar.setNavigationOnClickListener { navigateUp(navController, configuration) }
@@ -448,24 +442,23 @@
 
     /**
      * Sets up a [NavigationView] for use with a [NavController]. This will call
-     * [onNavDestinationSelected] when a menu item is selected.
-     * The selected item in the NavigationView will automatically be updated when the destination
-     * changes.
+     * [onNavDestinationSelected] when a menu item is selected. The selected item in the
+     * NavigationView will automatically be updated when the destination changes.
      *
-     * If the [NavigationView] is directly contained with an [Openable] layout,
-     * it will be closed when a menu item is selected.
+     * If the [NavigationView] is directly contained with an [Openable] layout, it will be closed
+     * when a menu item is selected.
      *
-     * Similarly, if the [NavigationView] has a [BottomSheetBehavior] associated with
-     * it (as is the case when using a [com.google.android.material.bottomsheet.BottomSheetDialog]),
-     * the bottom sheet will be hidden when a menu item is selected.
+     * Similarly, if the [NavigationView] has a [BottomSheetBehavior] associated with it (as is the
+     * case when using a [com.google.android.material.bottomsheet.BottomSheetDialog]), the bottom
+     * sheet will be hidden when a menu item is selected.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param navigationView The NavigationView that should be kept in sync with changes to the
-     * NavController.
+     *   NavController.
      * @param navController The NavController that supplies the primary and secondary menu.
-     * Navigation actions on this NavController will be reflected in the
-     * selected item in the NavigationView.
+     *   Navigation actions on this NavController will be reflected in the selected item in the
+     *   NavigationView.
      */
     @JvmStatic
     public fun setupWithNavController(
@@ -507,33 +500,33 @@
                         item.isChecked = destination.matchDestination(item.itemId)
                     }
                 }
-            })
+            }
+        )
     }
 
     /**
      * Sets up a [NavigationView] for use with a [NavController]. This will call
-     * [onNavDestinationSelected] when a menu item is selected.
-     * The selected item in the NavigationView will automatically be updated when the destination
-     * changes.
+     * [onNavDestinationSelected] when a menu item is selected. The selected item in the
+     * NavigationView will automatically be updated when the destination changes.
      *
-     * If the [NavigationView] is directly contained with an [Openable] layout,
-     * it will be closed when a menu item is selected.
+     * If the [NavigationView] is directly contained with an [Openable] layout, it will be closed
+     * when a menu item is selected.
      *
-     * Similarly, if the [NavigationView] has a [BottomSheetBehavior] associated with
-     * it (as is the case when using a [com.google.android.material.bottomsheet.BottomSheetDialog]),
-     * the bottom sheet will be hidden when a menu item is selected.
+     * Similarly, if the [NavigationView] has a [BottomSheetBehavior] associated with it (as is the
+     * case when using a [com.google.android.material.bottomsheet.BottomSheetDialog]), the bottom
+     * sheet will be hidden when a menu item is selected.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param navigationView The NavigationView that should be kept in sync with changes to the
-     * NavController.
+     *   NavController.
      * @param navController The NavController that supplies the primary and secondary menu.
-     * @param saveState Whether the NavController should save the back stack state. This must
-     * always be `false`: leave this parameter off entirely to use the non-experimental version
-     * of this API, which saves the state by default.
+     * @param saveState Whether the NavController should save the back stack state. This must always
+     *   be `false`: leave this parameter off entirely to use the non-experimental version of this
+     *   API, which saves the state by default.
      *
-     * Navigation actions on this NavController will be reflected in the
-     * selected item in the NavigationView.
+     * Navigation actions on this NavController will be reflected in the selected item in the
+     * NavigationView.
      */
     @NavigationUiSaveStateControl
     @JvmStatic
@@ -581,12 +574,13 @@
                         item.isChecked = destination.matchDestination(item.itemId)
                     }
                 }
-            })
+            }
+        )
     }
 
     /**
-     * Walks up the view hierarchy, trying to determine if the given View is contained within
-     * a bottom sheet.
+     * Walks up the view hierarchy, trying to determine if the given View is contained within a
+     * bottom sheet.
      */
     @JvmStatic
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -598,8 +592,7 @@
                 findBottomSheetBehavior(parent as View)
             } else null
         }
-        val behavior = params
-            .behavior
+        val behavior = params.behavior
         return if (behavior !is BottomSheetBehavior<*>) {
             // We hit a CoordinatorLayout, but the View doesn't have the BottomSheetBehavior
             null
@@ -608,18 +601,15 @@
 
     /**
      * Sets up a [NavigationBarView] for use with a [NavController]. This will call
-     * [onNavDestinationSelected] when a menu item is selected. The
-     * selected item in the NavigationBarView will automatically be updated when the destination
-     * changes.
+     * [onNavDestinationSelected] when a menu item is selected. The selected item in the
+     * NavigationBarView will automatically be updated when the destination changes.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param navigationBarView The NavigationBarView ([BottomNavigationView] or
-     * [NavigationRailView])
-     * that should be kept in sync with changes to the NavController.
-     * @param navController The NavController that supplies the primary menu.
-     * Navigation actions on this NavController will be reflected in the
-     * selected item in the NavigationBarView.
+     *   [NavigationRailView]) that should be kept in sync with changes to the NavController.
+     * @param navController The NavController that supplies the primary menu. Navigation actions on
+     *   this NavController will be reflected in the selected item in the NavigationBarView.
      */
     @JvmStatic
     public fun setupWithNavController(
@@ -627,10 +617,7 @@
         navController: NavController
     ) {
         navigationBarView.setOnItemSelectedListener { item ->
-            onNavDestinationSelected(
-                item,
-                navController
-            )
+            onNavDestinationSelected(item, navController)
         }
         val weakReference = WeakReference(navigationBarView)
         navController.addOnDestinationChangedListener(
@@ -654,27 +641,26 @@
                         }
                     }
                 }
-            })
+            }
+        )
     }
 
     /**
      * Sets up a [NavigationBarView] for use with a [NavController]. This will call
-     * [onNavDestinationSelected] when a menu item is selected. The
-     * selected item in the NavigationBarView will automatically be updated when the destination
-     * changes.
+     * [onNavDestinationSelected] when a menu item is selected. The selected item in the
+     * NavigationBarView will automatically be updated when the destination changes.
      *
      * Destinations that implement [androidx.navigation.FloatingWindow] will be ignored.
      *
      * @param navigationBarView The NavigationBarView ([BottomNavigationView] or
-     * [NavigationRailView])
-     * that should be kept in sync with changes to the NavController.
+     *   [NavigationRailView]) that should be kept in sync with changes to the NavController.
      * @param navController The NavController that supplies the primary menu.
-     * @param saveState Whether the NavController should save the back stack state. This must
-     * always be `false`: leave this parameter off entirely to use the non-experimental version
-     * of this API, which saves the state by default.
+     * @param saveState Whether the NavController should save the back stack state. This must always
+     *   be `false`: leave this parameter off entirely to use the non-experimental version of this
+     *   API, which saves the state by default.
      *
-     * Navigation actions on this NavController will be reflected in the
-     * selected item in the NavigationBarView.
+     * Navigation actions on this NavController will be reflected in the selected item in the
+     * NavigationBarView.
      */
     @NavigationUiSaveStateControl
     @JvmStatic
@@ -712,13 +698,14 @@
                         }
                     }
                 }
-            })
+            }
+        )
     }
 
     /**
-     * Determines whether the given `destId` matches the NavDestination. This handles
-     * both the default case (the destination's id matches the given id) and the nested case where
-     * the given id is a parent/grandparent/etc of the destination.
+     * Determines whether the given `destId` matches the NavDestination. This handles both the
+     * default case (the destination's id matches the given id) and the nested case where the given
+     * id is a parent/grandparent/etc of the destination.
      */
     @JvmStatic
     internal fun NavDestination.matchDestination(@IdRes destId: Int): Boolean =
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUiSaveStateControl.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUiSaveStateControl.kt
index adb462e..a51dfe6 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUiSaveStateControl.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/NavigationUiSaveStateControl.kt
@@ -16,9 +16,7 @@
 
 package androidx.navigation.ui
 
-/**
- * @see NavigationUI
- */
+/** @see NavigationUI */
 @Retention(AnnotationRetention.BINARY)
 @Target(AnnotationTarget.FUNCTION)
 @RequiresOptIn(level = RequiresOptIn.Level.WARNING)
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Toolbar.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Toolbar.kt
index 2b5b345..20695e6 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Toolbar.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/Toolbar.kt
@@ -23,19 +23,18 @@
 /**
  * Sets up a [Toolbar] for use with a [NavController].
  *
- * By calling this method, the title in the Toolbar will automatically be updated when
- * the destination changes (assuming there is a valid
+ * By calling this method, the title in the Toolbar will automatically be updated when the
+ * destination changes (assuming there is a valid
  * [label][androidx.navigation.NavDestination.label]).
  *
- * The start destination of your navigation graph is considered the only top level
- * destination. On the start destination of your navigation graph, the Toolbar will show
- * the drawer icon if the given `drawerLayout` is non null. On all other destinations,
- * the Toolbar will show the Up button.
+ * The start destination of your navigation graph is considered the only top level destination. On
+ * the start destination of your navigation graph, the Toolbar will show the drawer icon if the
+ * given `drawerLayout` is non null. On all other destinations, the Toolbar will show the Up button.
  *
  * This method will call [NavController.navigateUp] when the navigation icon is clicked.
  *
- * @param navController The NavController whose navigation actions will be reflected
- *                      in the title of the Toolbar.
+ * @param navController The NavController whose navigation actions will be reflected in the title of
+ *   the Toolbar.
  * @param drawerLayout The DrawerLayout that should be toggled from the Navigation button
  */
 public fun Toolbar.setupWithNavController(
@@ -43,7 +42,8 @@
     drawerLayout: DrawerLayout?
 ) {
     NavigationUI.setupWithNavController(
-        this, navController,
+        this,
+        navController,
         AppBarConfiguration(navController.graph, drawerLayout)
     )
 }
@@ -51,19 +51,18 @@
 /**
  * Sets up a [Toolbar] for use with a [NavController].
  *
- * By calling this method, the title in the Toolbar will automatically be updated when
- * the destination changes (assuming there is a valid
+ * By calling this method, the title in the Toolbar will automatically be updated when the
+ * destination changes (assuming there is a valid
  * [label][androidx.navigation.NavDestination.label]).
  *
- * The [AppBarConfiguration] you provide controls how the Navigation button is
- * displayed and what action is triggered when the Navigation button is tapped.
+ * The [AppBarConfiguration] you provide controls how the Navigation button is displayed and what
+ * action is triggered when the Navigation button is tapped.
  *
  * This method will call [NavController.navigateUp] when the navigation icon is clicked.
  *
- * @param navController The NavController whose navigation actions will be reflected
- *                      in the title of the Toolbar.
- * @param configuration Additional configuration options for customizing the behavior of the
- *                      Toolbar
+ * @param navController The NavController whose navigation actions will be reflected in the title of
+ *   the Toolbar.
+ * @param configuration Additional configuration options for customizing the behavior of the Toolbar
  */
 public fun Toolbar.setupWithNavController(
     navController: NavController,
diff --git a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ToolbarOnDestinationChangedListener.kt b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ToolbarOnDestinationChangedListener.kt
index 94b34a2..8981b87 100644
--- a/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ToolbarOnDestinationChangedListener.kt
+++ b/navigation/navigation-ui/src/main/java/androidx/navigation/ui/ToolbarOnDestinationChangedListener.kt
@@ -25,9 +25,9 @@
 import java.lang.ref.WeakReference
 
 /**
- * The OnDestinationChangedListener specifically for keeping a Toolbar updated.
- * This handles both updating the title and updating the Up Indicator, transitioning between
- * the drawer icon and up arrow as needed.
+ * The OnDestinationChangedListener specifically for keeping a Toolbar updated. This handles both
+ * updating the title and updating the Up Indicator, transitioning between the drawer icon and up
+ * arrow as needed.
  */
 internal class ToolbarOnDestinationChangedListener(
     toolbar: Toolbar,
@@ -49,9 +49,7 @@
     }
 
     override fun setTitle(title: CharSequence?) {
-        toolbarWeakReference.get()?.let { toolbar ->
-            toolbar.title = title
-        }
+        toolbarWeakReference.get()?.let { toolbar -> toolbar.title = title }
     }
 
     override fun setNavigationIcon(icon: Drawable?, @StringRes contentDescription: Int) {
diff --git a/paging/integration-tests/testapp/src/androidTest/kotlin/androidx/paging/integration/testapp/v3/OnPagesUpdatedTest.kt b/paging/integration-tests/testapp/src/androidTest/kotlin/androidx/paging/integration/testapp/v3/OnPagesUpdatedTest.kt
index 68a89b0..df0b938 100644
--- a/paging/integration-tests/testapp/src/androidTest/kotlin/androidx/paging/integration/testapp/v3/OnPagesUpdatedTest.kt
+++ b/paging/integration-tests/testapp/src/androidTest/kotlin/androidx/paging/integration/testapp/v3/OnPagesUpdatedTest.kt
@@ -46,8 +46,7 @@
 @LargeTest
 @RunWith(AndroidJUnit4::class)
 class OnPagesUpdatedTest {
-    @get:Rule
-    val scenarioRule = ActivityScenarioRule(V3Activity::class.java)
+    @get:Rule val scenarioRule = ActivityScenarioRule(V3Activity::class.java)
 
     @OptIn(ExperimentalCoroutinesApi::class)
     @Test
@@ -57,9 +56,7 @@
 
         lateinit var job: Job
         lateinit var adapter: V3Adapter
-        scenario.onActivity { activity ->
-            adapter = activity.pagingAdapter
-        }
+        scenario.onActivity { activity -> adapter = activity.pagingAdapter }
 
         // Wait for initial load to complete.
         adapter.onPagesUpdatedFlow.first { adapter.itemCount > 0 }
@@ -70,12 +67,13 @@
             // Items are loaded before we start observing.
             assertThat(activity.pagingAdapter.itemCount).isGreaterThan(0)
 
-            job = activity.lifecycleScope.launch {
-                activity.pagingAdapter.onPagesUpdatedFlow.collect {
-                    onPagesUpdatedEventsCh.send(it)
-                    processNextPageUpdateCh.receive()
+            job =
+                activity.lifecycleScope.launch {
+                    activity.pagingAdapter.onPagesUpdatedFlow.collect {
+                        onPagesUpdatedEventsCh.send(it)
+                        processNextPageUpdateCh.receive()
+                    }
                 }
-            }
 
             // Page update from before we started listening should not be buffered.
             assertTrue { onPagesUpdatedEventsCh.isEmpty }
@@ -96,9 +94,7 @@
         processNextPageUpdateCh.send(Unit)
 
         // Trigger a bunch of updates without unblocking page update collector.
-        repeat(66) {
-            adapter.refreshAndAwaitIdle()
-        }
+        repeat(66) { adapter.refreshAndAwaitIdle() }
 
         // Fully unblock collector.
         var pageUpdates = 0
@@ -128,30 +124,31 @@
     private suspend fun V3Adapter.refreshAndAwaitIdle() {
         val scenario = scenarioRule.scenario
         val loadStateCollectorStarted = CompletableDeferred<Unit>()
-        val result = CoroutineScope(EmptyCoroutineContext).async {
-            loadStateFlow
-                .onStart { loadStateCollectorStarted.complete(Unit) }
-                .scan(RefreshState.INITIAL) { acc, next ->
-                    when (acc) {
-                        RefreshState.INITIAL -> {
-                            if (next.source.refresh is LoadState.Loading) {
-                                RefreshState.LOADING
-                            } else {
-                                RefreshState.INITIAL
+        val result =
+            CoroutineScope(EmptyCoroutineContext).async {
+                loadStateFlow
+                    .onStart { loadStateCollectorStarted.complete(Unit) }
+                    .scan(RefreshState.INITIAL) { acc, next ->
+                        when (acc) {
+                            RefreshState.INITIAL -> {
+                                if (next.source.refresh is LoadState.Loading) {
+                                    RefreshState.LOADING
+                                } else {
+                                    RefreshState.INITIAL
+                                }
                             }
-                        }
-                        RefreshState.LOADING -> {
-                            if (next.source.refresh !is LoadState.Loading) {
-                                RefreshState.DONE
-                            } else {
-                                RefreshState.LOADING
+                            RefreshState.LOADING -> {
+                                if (next.source.refresh !is LoadState.Loading) {
+                                    RefreshState.DONE
+                                } else {
+                                    RefreshState.LOADING
+                                }
                             }
+                            else -> acc
                         }
-                        else -> acc
                     }
-                }
-                .first { it == RefreshState.DONE }
-        }
+                    .first { it == RefreshState.DONE }
+            }
 
         loadStateCollectorStarted.await()
         scenario.onActivity { refresh() }
@@ -159,6 +156,8 @@
     }
 
     private enum class RefreshState {
-        INITIAL, LOADING, DONE
+        INITIAL,
+        LOADING,
+        DONE
     }
 }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/ItemDataSource.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/ItemDataSource.kt
index cbefb66..9725eb3 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/ItemDataSource.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/ItemDataSource.kt
@@ -25,9 +25,7 @@
 
 val dataSourceError = AtomicBoolean(false)
 
-/**
- * Sample position-based PagingSource with artificial data.
- */
+/** Sample position-based PagingSource with artificial data. */
 internal class ItemDataSource : PagingSource<Int, Item>() {
     class RetryableItemError : Exception()
 
@@ -44,31 +42,19 @@
                 )
             is LoadParams.Prepend -> {
                 val loadSize = minOf(params.key, params.loadSize)
-                loadInternal(
-                    position = params.key - loadSize,
-                    loadSize = loadSize
-                )
+                loadInternal(position = params.key - loadSize, loadSize = loadSize)
             }
-            is LoadParams.Append ->
-                loadInternal(
-                    position = params.key,
-                    loadSize = params.loadSize
-                )
+            is LoadParams.Append -> loadInternal(position = params.key, loadSize = params.loadSize)
         }
 
-    private suspend fun loadInternal(
-        position: Int,
-        loadSize: Int
-    ): LoadResult<Int, Item> {
+    private suspend fun loadInternal(position: Int, loadSize: Int): LoadResult<Int, Item> {
         delay(1000)
         if (dataSourceError.compareAndSet(true, false)) {
             return LoadResult.Error(RetryableItemError())
         } else {
             val bgColor = COLORS[generationId % COLORS.size]
             val endExclusive = (position + loadSize).coerceAtMost(COUNT)
-            val data = (position until endExclusive).map {
-                Item(it, "item $it", bgColor)
-            }
+            val data = (position until endExclusive).map { Item(it, "item $it", bgColor) }
 
             return LoadResult.Page(
                 data = data,
@@ -83,8 +69,7 @@
     companion object {
         private const val COUNT = 60
 
-        @ColorInt
-        private val COLORS = intArrayOf(Color.RED, Color.BLUE, Color.BLACK)
+        @ColorInt private val COLORS = intArrayOf(Color.RED, Color.BLUE, Color.BLACK)
         private var sGenerationId: Int = 0
     }
 }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/PagedListSampleActivity.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/PagedListSampleActivity.kt
index 775f65b..716d226 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/PagedListSampleActivity.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/custom/PagedListSampleActivity.kt
@@ -29,9 +29,7 @@
 import androidx.paging.integration.testapp.v3.StateItemAdapter
 import androidx.recyclerview.widget.RecyclerView
 
-/**
- * Sample PagedList activity with artificial data source.
- */
+/** Sample PagedList activity with artificial data source. */
 class PagedListSampleActivity : AppCompatActivity() {
     override fun onCreate(savedInstanceState: Bundle?) {
         super.onCreate(savedInstanceState)
@@ -40,21 +38,18 @@
 
         val pagingAdapter = PagedListItemAdapter()
         val recyclerView = findViewById<RecyclerView>(R.id.recyclerview)
-        recyclerView.adapter = pagingAdapter.withLoadStateHeaderAndFooter(
-            header = StateItemAdapter { pagingAdapter.currentList?.retry() },
-            footer = StateItemAdapter { pagingAdapter.currentList?.retry() }
-        )
+        recyclerView.adapter =
+            pagingAdapter.withLoadStateHeaderAndFooter(
+                header = StateItemAdapter { pagingAdapter.currentList?.retry() },
+                footer = StateItemAdapter { pagingAdapter.currentList?.retry() }
+            )
 
         @Suppress("DEPRECATION")
-        viewModel.livePagedList.observe(this) { pagedList ->
-            pagingAdapter.submitList(pagedList)
-        }
+        viewModel.livePagedList.observe(this) { pagedList -> pagingAdapter.submitList(pagedList) }
 
         setupLoadStateButtons(viewModel, pagingAdapter)
 
-        findViewById<Button>(R.id.button_error).setOnClickListener {
-            dataSourceError.set(true)
-        }
+        findViewById<Button>(R.id.button_error).setOnClickListener { dataSourceError.set(true) }
     }
 
     private fun setupLoadStateButtons(
@@ -64,9 +59,7 @@
     ) {
         val button = findViewById<Button>(R.id.button_refresh)
 
-        button.setOnClickListener {
-            viewModel.invalidateList()
-        }
+        button.setOnClickListener { viewModel.invalidateList() }
 
         adapter.addLoadStateListener { type: LoadType, state: LoadState ->
             if (type != LoadType.REFRESH) return@addLoadStateListener
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKey.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKey.kt
index e593fab..a21d318 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKey.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKey.kt
@@ -18,11 +18,8 @@
 import androidx.room.Entity
 import androidx.room.PrimaryKey
 
-/**
- * Sample entity to persist remote key for use in RemoteMediator.
- */
+/** Sample entity to persist remote key for use in RemoteMediator. */
 @Entity(tableName = "remote_key")
 class RemoteKey(val prevKey: Int, val nextKey: Int) {
-    @PrimaryKey
-    var id = 0
+    @PrimaryKey var id = 0
 }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKeyDao.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKeyDao.kt
index 1b46925..b7aad82 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKeyDao.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/room/RemoteKeyDao.kt
@@ -20,9 +20,7 @@
 import androidx.room.OnConflictStrategy.Companion.REPLACE
 import androidx.room.Query
 
-/**
- * Simple Customer DAO for Room Customer list sample.
- */
+/** Simple Customer DAO for Room Customer list sample. */
 @Dao
 interface RemoteKeyDao {
     /**
@@ -30,18 +28,11 @@
      *
      * @param remoteKey
      */
-    @Insert(onConflict = REPLACE)
-    suspend fun insert(remoteKey: RemoteKey)
+    @Insert(onConflict = REPLACE) suspend fun insert(remoteKey: RemoteKey)
 
-    /**
-     * Clears the RemoteKey
-     */
-    @Query("DELETE FROM remote_key")
-    fun delete()
+    /** Clears the RemoteKey */
+    @Query("DELETE FROM remote_key") fun delete()
 
-    /**
-     * @return Latest persisted RemoteKey
-     */
-    @Query("SELECT * FROM remote_key LIMIT 1")
-    suspend fun queryRemoteKey(): RemoteKey?
+    /** @return Latest persisted RemoteKey */
+    @Query("SELECT * FROM remote_key LIMIT 1") suspend fun queryRemoteKey(): RemoteKey?
 }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/Item.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/Item.kt
index 925e550..4e8fb7e 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/Item.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/Item.kt
@@ -20,14 +20,15 @@
 
 data class Item(val id: Int, val text: String, val bgColor: Int) {
     companion object {
-        val DIFF_CALLBACK: DiffUtil.ItemCallback<Item> = object : DiffUtil.ItemCallback<Item>() {
-            override fun areContentsTheSame(oldItem: Item, newItem: Item): Boolean {
-                return oldItem == newItem
-            }
+        val DIFF_CALLBACK: DiffUtil.ItemCallback<Item> =
+            object : DiffUtil.ItemCallback<Item>() {
+                override fun areContentsTheSame(oldItem: Item, newItem: Item): Boolean {
+                    return oldItem == newItem
+                }
 
-            override fun areItemsTheSame(oldItem: Item, newItem: Item): Boolean {
-                return oldItem.id == newItem.id
+                override fun areItemsTheSame(oldItem: Item, newItem: Item): Boolean {
+                    return oldItem.id == newItem.id
+                }
             }
-        }
     }
 }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/ItemPagingSource.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/ItemPagingSource.kt
index fd4b1bf..36e905f 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/ItemPagingSource.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/ItemPagingSource.kt
@@ -25,9 +25,7 @@
 
 val dataSourceError = AtomicBoolean(false)
 
-/**
- * Sample position-based PagingSource with artificial data.
- */
+/** Sample position-based PagingSource with artificial data. */
 internal class ItemPagingSource : PagingSource<Int, Item>() {
     class RetryableItemError : Exception()
 
@@ -44,31 +42,19 @@
                 )
             is LoadParams.Prepend -> {
                 val loadSize = minOf(params.key, params.loadSize)
-                loadInternal(
-                    position = params.key - loadSize,
-                    loadSize = loadSize
-                )
+                loadInternal(position = params.key - loadSize, loadSize = loadSize)
             }
-            is LoadParams.Append ->
-                loadInternal(
-                    position = params.key,
-                    loadSize = params.loadSize
-                )
+            is LoadParams.Append -> loadInternal(position = params.key, loadSize = params.loadSize)
         }
 
-    private suspend fun loadInternal(
-        position: Int,
-        loadSize: Int
-    ): LoadResult<Int, Item> {
+    private suspend fun loadInternal(position: Int, loadSize: Int): LoadResult<Int, Item> {
         delay(1000)
         if (dataSourceError.compareAndSet(true, false)) {
             return LoadResult.Error(RetryableItemError())
         } else {
             val bgColor = COLORS[generationId % COLORS.size]
             val endExclusive = (position + loadSize).coerceAtMost(COUNT)
-            val data = (position until endExclusive).map {
-                Item(it, "item $it", bgColor)
-            }
+            val data = (position until endExclusive).map { Item(it, "item $it", bgColor) }
 
             return LoadResult.Page(
                 data = data,
@@ -89,8 +75,7 @@
 
         private const val COUNT = 60
 
-        @ColorInt
-        private val COLORS = intArrayOf(Color.RED, Color.BLUE, Color.BLACK)
+        @ColorInt private val COLORS = intArrayOf(Color.RED, Color.BLUE, Color.BLACK)
         private var sGenerationId: Int = 0
     }
 }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/StateItemAdapter.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/StateItemAdapter.kt
index 3b921a8..81ce633 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/StateItemAdapter.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/StateItemAdapter.kt
@@ -27,14 +27,14 @@
 import androidx.paging.integration.testapp.R
 import androidx.recyclerview.widget.RecyclerView
 
-class LoadStateViewHolder(
-    parent: ViewGroup,
-    retry: () -> Unit
-) : RecyclerView.ViewHolder(inflate(parent)) {
+class LoadStateViewHolder(parent: ViewGroup, retry: () -> Unit) :
+    RecyclerView.ViewHolder(inflate(parent)) {
     private val progressBar: ProgressBar = itemView.findViewById(R.id.progress_bar)
     private val errorMsg: TextView = itemView.findViewById(R.id.error_msg)
-    private val retry: Button = itemView.findViewById<Button>(R.id.retry_button)
-        .also { it.setOnClickListener { retry.invoke() } }
+    private val retry: Button =
+        itemView.findViewById<Button>(R.id.retry_button).also {
+            it.setOnClickListener { retry.invoke() }
+        }
 
     fun bind(loadState: LoadState) {
         if (loadState is LoadState.Error) {
@@ -45,22 +45,20 @@
         errorMsg.visibility = toVisibility(loadState !is LoadState.Loading)
     }
 
-    private fun toVisibility(constraint: Boolean): Int = if (constraint) {
-        View.VISIBLE
-    } else {
-        View.GONE
-    }
+    private fun toVisibility(constraint: Boolean): Int =
+        if (constraint) {
+            View.VISIBLE
+        } else {
+            View.GONE
+        }
 
     companion object {
         fun inflate(parent: ViewGroup): View =
-            LayoutInflater.from(parent.context)
-                .inflate(R.layout.load_state_item, parent, false)
+            LayoutInflater.from(parent.context).inflate(R.layout.load_state_item, parent, false)
     }
 }
 
-class StateItemAdapter(
-    private val retry: () -> Unit
-) : LoadStateAdapter<LoadStateViewHolder>() {
+class StateItemAdapter(private val retry: () -> Unit) : LoadStateAdapter<LoadStateViewHolder>() {
 
     override fun onCreateViewHolder(parent: ViewGroup, loadState: LoadState) =
         LoadStateViewHolder(parent, retry)
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Activity.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Activity.kt
index c85f3f3..051fa2b 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Activity.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Activity.kt
@@ -43,11 +43,12 @@
         setContentView(R.layout.activity_recycler_view)
         val viewModel by viewModels<V3ViewModel>()
 
-        val orientationText = when (resources.configuration.orientation) {
-            Configuration.ORIENTATION_LANDSCAPE -> "land"
-            Configuration.ORIENTATION_PORTRAIT -> "port"
-            else -> "unknown"
-        }
+        val orientationText =
+            when (resources.configuration.orientation) {
+                Configuration.ORIENTATION_LANDSCAPE -> "land"
+                Configuration.ORIENTATION_PORTRAIT -> "port"
+                else -> "unknown"
+            }
         // NOTE: lifecycleScope means we don't respect paused state here
         lifecycleScope.launch {
             viewModel.flow
@@ -58,26 +59,26 @@
         }
 
         val recyclerView = findViewById<RecyclerView>(R.id.recyclerview)
-        recyclerView.adapter = pagingAdapter.withLoadStateHeaderAndFooter(
-            header = StateItemAdapter { pagingAdapter.retry() },
-            footer = StateItemAdapter { pagingAdapter.retry() }
-        )
+        recyclerView.adapter =
+            pagingAdapter.withLoadStateHeaderAndFooter(
+                header = StateItemAdapter { pagingAdapter.retry() },
+                footer = StateItemAdapter { pagingAdapter.retry() }
+            )
 
         setupLoadStateButtons(pagingAdapter)
 
-        findViewById<Button>(R.id.button_error).setOnClickListener {
-            dataSourceError.set(true)
-        }
+        findViewById<Button>(R.id.button_error).setOnClickListener { dataSourceError.set(true) }
     }
 
     private fun setupLoadStateButtons(adapter: PagingDataAdapter<Item, RecyclerView.ViewHolder>) {
         val button = findViewById<Button>(R.id.button_refresh)
         adapter.addLoadStateListener { loadStates: CombinedLoadStates ->
-            button.text = when (loadStates.refresh) {
-                is NotLoading -> "Refresh"
-                is Loading -> "Loading"
-                is Error -> "Error"
-            }
+            button.text =
+                when (loadStates.refresh) {
+                    is NotLoading -> "Refresh"
+                    is Loading -> "Loading"
+                    is Error -> "Error"
+                }
 
             if (loadStates.refresh is NotLoading) {
                 button.setOnClickListener { adapter.refresh() }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Adapter.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Adapter.kt
index 4eff329..71568b7 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Adapter.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3Adapter.kt
@@ -23,16 +23,16 @@
 import androidx.paging.integration.testapp.R
 import androidx.recyclerview.widget.RecyclerView
 
-class V3Adapter : PagingDataAdapter<Item, RecyclerView.ViewHolder>(
-    diffCallback = Item.DIFF_CALLBACK
-) {
+class V3Adapter :
+    PagingDataAdapter<Item, RecyclerView.ViewHolder>(diffCallback = Item.DIFF_CALLBACK) {
     override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder {
         val holder = object : RecyclerView.ViewHolder(TextView(parent.context)) {}
         holder.itemView.minimumHeight = 150
-        holder.itemView.layoutParams = ViewGroup.LayoutParams(
-            ViewGroup.LayoutParams.MATCH_PARENT,
-            ViewGroup.LayoutParams.WRAP_CONTENT
-        )
+        holder.itemView.layoutParams =
+            ViewGroup.LayoutParams(
+                ViewGroup.LayoutParams.MATCH_PARENT,
+                ViewGroup.LayoutParams.WRAP_CONTENT
+            )
         return holder
     }
 
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3ViewModel.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3ViewModel.kt
index 943e2d0..4a439b6 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3ViewModel.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3/V3ViewModel.kt
@@ -28,33 +28,26 @@
 import kotlinx.coroutines.flow.map
 
 class V3ViewModel : ViewModel() {
-    val flow = Pager(PagingConfig(10), pagingSourceFactory = ItemPagingSource.Factory)
-        .flow
-        .map { pagingData ->
-            pagingData
-                .insertSeparators { before: Item?, after: Item? ->
-                    if (after == null || (after.id / 3) == (before?.id ?: 0) / 3) {
-                        // no separator, because at bottom or not needed yet
-                        null
-                    } else {
-                        Item(
-                            id = -1,
-                            text = "DIVIDER" + after.id / 3,
-                            bgColor = Color.DKGRAY
-                        )
+    val flow =
+        Pager(PagingConfig(10), pagingSourceFactory = ItemPagingSource.Factory)
+            .flow
+            .map { pagingData ->
+                pagingData
+                    .insertSeparators { before: Item?, after: Item? ->
+                        if (after == null || (after.id / 3) == (before?.id ?: 0) / 3) {
+                            // no separator, because at bottom or not needed yet
+                            null
+                        } else {
+                            Item(id = -1, text = "DIVIDER" + after.id / 3, bgColor = Color.DKGRAY)
+                        }
                     }
-                }
-                .insertSeparators { before: Item?, _: Item? ->
-                    if (before != null && before.id == -1) {
-                        Item(
-                            id = -2,
-                            text = "RIGHT BELOW DIVIDER",
-                            bgColor = Color.BLACK
-                        )
-                    } else null
-                }
-                .insertHeaderItem(item = Item(Int.MIN_VALUE, "HEADER", Color.MAGENTA))
-                .insertFooterItem(item = Item(Int.MAX_VALUE, "FOOTER", Color.MAGENTA))
-        }
-        .cachedIn(viewModelScope)
+                    .insertSeparators { before: Item?, _: Item? ->
+                        if (before != null && before.id == -1) {
+                            Item(id = -2, text = "RIGHT BELOW DIVIDER", bgColor = Color.BLACK)
+                        } else null
+                    }
+                    .insertHeaderItem(item = Item(Int.MIN_VALUE, "HEADER", Color.MAGENTA))
+                    .insertFooterItem(item = Item(Int.MAX_VALUE, "FOOTER", Color.MAGENTA))
+            }
+            .cachedIn(viewModelScope)
 }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/NetworkCustomerPagingSource.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/NetworkCustomerPagingSource.kt
index 13709de..828b63e 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/NetworkCustomerPagingSource.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/NetworkCustomerPagingSource.kt
@@ -21,9 +21,7 @@
 import androidx.paging.integration.testapp.room.Customer
 import java.util.UUID
 
-/**
- * Sample position-based PagingSource with artificial data.
- */
+/** Sample position-based PagingSource with artificial data. */
 internal class NetworkCustomerPagingSource : PagingSource<Int, Customer>() {
     private fun createCustomer(i: Int): Customer {
         val customer = Customer()
@@ -32,19 +30,17 @@
         return customer
     }
 
-    override fun getRefreshKey(
-        state: PagingState<Int, Customer>
-    ): Int? = state.anchorPosition?.let {
-        maxOf(0, it - 5)
-    }
+    override fun getRefreshKey(state: PagingState<Int, Customer>): Int? =
+        state.anchorPosition?.let { maxOf(0, it - 5) }
 
     override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Customer> {
         val key = params.key ?: 0
-        val data = if (params is LoadParams.Prepend) {
-            List(params.loadSize) { createCustomer(it + key - params.loadSize) }
-        } else {
-            List(params.loadSize) { createCustomer(it + key) }
-        }
+        val data =
+            if (params is LoadParams.Prepend) {
+                List(params.loadSize) { createCustomer(it + key - params.loadSize) }
+            } else {
+                List(params.loadSize) { createCustomer(it + key) }
+            }
         return LoadResult.Page(
             data = data,
             prevKey = if (key > 0) key else null,
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RemoteMediator.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RemoteMediator.kt
index 1f3dac2..34e2dbd 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RemoteMediator.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RemoteMediator.kt
@@ -53,25 +53,29 @@
         // Fetch latest remote key from db. We cannot rely on PagingState because the
         // invalidate + load loop in paging may race with the actual load + insert happening in
         // RemoteMediator.
-        val remoteKey = withContext(Dispatchers.IO) {
-            database.remoteKeyDao.queryRemoteKey() ?: RemoteKey(-1, 0)
-        }
+        val remoteKey =
+            withContext(Dispatchers.IO) {
+                database.remoteKeyDao.queryRemoteKey() ?: RemoteKey(-1, 0)
+            }
 
         // TODO: Move this to be a more fully featured sample which demonstrated key translation
         //  between two types of PagingSources where the keys do not map 1:1.
-        val loadParams = when (loadType) {
-            LoadType.REFRESH -> PagingSource.LoadParams.Refresh(
-                key = 0,
-                loadSize = 10,
-                placeholdersEnabled = false
-            )
-            LoadType.PREPEND -> throw IllegalStateException()
-            LoadType.APPEND -> PagingSource.LoadParams.Append(
-                key = remoteKey.nextKey,
-                loadSize = 10,
-                placeholdersEnabled = false
-            )
-        }
+        val loadParams =
+            when (loadType) {
+                LoadType.REFRESH ->
+                    PagingSource.LoadParams.Refresh(
+                        key = 0,
+                        loadSize = 10,
+                        placeholdersEnabled = false
+                    )
+                LoadType.PREPEND -> throw IllegalStateException()
+                LoadType.APPEND ->
+                    PagingSource.LoadParams.Append(
+                        key = remoteKey.nextKey,
+                        loadSize = 10,
+                        placeholdersEnabled = false
+                    )
+            }
 
         return when (val result = networkSource.load(loadParams)) {
             is PagingSource.LoadResult.Page -> {
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomActivity.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomActivity.kt
index d248ea5..18d2385 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomActivity.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomActivity.kt
@@ -37,11 +37,7 @@
         val recyclerView = findViewById<RecyclerView>(R.id.recyclerview)
         recyclerView.adapter = adapter
 
-        lifecycleScope.launch {
-            viewModel.flow.collectLatest {
-                adapter.submitData(it)
-            }
-        }
+        lifecycleScope.launch { viewModel.flow.collectLatest { adapter.submitData(it) } }
 
         val addButton = findViewById<Button>(R.id.addButton)
         addButton.setOnClickListener { viewModel.insertCustomer() }
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomAdapter.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomAdapter.kt
index 56ef134..5c96dd8 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomAdapter.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomAdapter.kt
@@ -26,15 +26,15 @@
 import androidx.paging.integration.testapp.room.Customer
 import androidx.recyclerview.widget.RecyclerView
 
-class V3RoomAdapter : PagingDataAdapter<Customer, RecyclerView.ViewHolder>(
-    diffCallback = Customer.DIFF_CALLBACK
-) {
+class V3RoomAdapter :
+    PagingDataAdapter<Customer, RecyclerView.ViewHolder>(diffCallback = Customer.DIFF_CALLBACK) {
     override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder {
-        return object : RecyclerView.ViewHolder(TextView(parent.context)) {}
-            .apply<RecyclerView.ViewHolder> {
-                itemView.minimumHeight = 150
-                itemView.layoutParams = ViewGroup.LayoutParams(MATCH_PARENT, WRAP_CONTENT)
-            }
+        return object : RecyclerView.ViewHolder(TextView(parent.context)) {}.apply<
+            RecyclerView.ViewHolder
+        > {
+            itemView.minimumHeight = 150
+            itemView.layoutParams = ViewGroup.LayoutParams(MATCH_PARENT, WRAP_CONTENT)
+        }
     }
 
     override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
diff --git a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomViewModel.kt b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomViewModel.kt
index 32ffe30..5de62da 100644
--- a/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomViewModel.kt
+++ b/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/v3room/V3RoomViewModel.kt
@@ -34,11 +34,9 @@
 import kotlinx.coroutines.flow.map
 
 class V3RoomViewModel(application: Application) : AndroidViewModel(application) {
-    val database = Room.databaseBuilder(
-        getApplication(),
-        SampleDatabase::class.java,
-        "customerDatabaseV3"
-    ).build()
+    val database =
+        Room.databaseBuilder(getApplication(), SampleDatabase::class.java, "customerDatabaseV3")
+            .build()
 
     private fun createCustomer(): Customer {
         val customer = Customer()
@@ -48,8 +46,9 @@
     }
 
     internal fun insertCustomer() {
-        ArchTaskExecutor.getInstance()
-            .executeOnDiskIO { database.customerDao.insert(createCustomer()) }
+        ArchTaskExecutor.getInstance().executeOnDiskIO {
+            database.customerDao.insert(createCustomer())
+        }
     }
 
     internal fun clearAllCustomers() {
@@ -62,52 +61,53 @@
     }
 
     @OptIn(ExperimentalPagingApi::class)
-    val flow = Pager(
-        PagingConfig(10),
-        remoteMediator = V3RemoteMediator(
-            database,
-            NetworkCustomerPagingSource.FACTORY
-        )
-    ) {
-        database.customerDao.loadPagedAgeOrderPagingSource()
-    }.flow
-        .map { pagingData ->
-            pagingData
-                .insertSeparators { before: Customer?, after: Customer? ->
-                    if (after == null || (after.id / 3) == (before?.id ?: 0) / 3) {
-                        // no separator, because at bottom or not needed yet
-                        null
-                    } else {
-                        Customer().apply {
-                            id = -1
-                            name = "RIGHT ABOVE DIVIDER"
-                            lastName = "RIGHT ABOVE DIVIDER"
+    val flow =
+        Pager(
+                PagingConfig(10),
+                remoteMediator = V3RemoteMediator(database, NetworkCustomerPagingSource.FACTORY)
+            ) {
+                database.customerDao.loadPagedAgeOrderPagingSource()
+            }
+            .flow
+            .map { pagingData ->
+                pagingData
+                    .insertSeparators { before: Customer?, after: Customer? ->
+                        if (after == null || (after.id / 3) == (before?.id ?: 0) / 3) {
+                            // no separator, because at bottom or not needed yet
+                            null
+                        } else {
+                            Customer().apply {
+                                id = -1
+                                name = "RIGHT ABOVE DIVIDER"
+                                lastName = "RIGHT ABOVE DIVIDER"
+                            }
                         }
                     }
-                }
-                .insertSeparators { before: Customer?, _: Customer? ->
-                    if (before != null && before.id == -1) {
-                        Customer().apply {
-                            id = -2
-                            name = "RIGHT BELOW DIVIDER"
-                            lastName = "RIGHT BELOW DIVIDER"
-                        }
-                    } else null
-                }
-                .insertHeaderItem(
-                    item = Customer().apply {
-                        id = Int.MIN_VALUE
-                        name = "HEADER"
-                        lastName = "HEADER"
+                    .insertSeparators { before: Customer?, _: Customer? ->
+                        if (before != null && before.id == -1) {
+                            Customer().apply {
+                                id = -2
+                                name = "RIGHT BELOW DIVIDER"
+                                lastName = "RIGHT BELOW DIVIDER"
+                            }
+                        } else null
                     }
-                )
-                .insertFooterItem(
-                    item = Customer().apply {
-                        id = Int.MAX_VALUE
-                        name = "FOOTER"
-                        lastName = "FOOTER"
-                    }
-                )
-        }
-        .cachedIn(viewModelScope)
+                    .insertHeaderItem(
+                        item =
+                            Customer().apply {
+                                id = Int.MIN_VALUE
+                                name = "HEADER"
+                                lastName = "HEADER"
+                            }
+                    )
+                    .insertFooterItem(
+                        item =
+                            Customer().apply {
+                                id = Int.MAX_VALUE
+                                name = "FOOTER"
+                                lastName = "FOOTER"
+                            }
+                    )
+            }
+            .cachedIn(viewModelScope)
 }
diff --git a/paging/paging-common/src/androidMain/kotlin/androidx/paging/PagingLogger.android.kt b/paging/paging-common/src/androidMain/kotlin/androidx/paging/PagingLogger.android.kt
index 1d5c6fc..13f6bae 100644
--- a/paging/paging-common/src/androidMain/kotlin/androidx/paging/PagingLogger.android.kt
+++ b/paging/paging-common/src/androidMain/kotlin/androidx/paging/PagingLogger.android.kt
@@ -22,8 +22,8 @@
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 public actual object PagingLogger {
     /**
-     * isLoggable returns true if Logging is enabled via adb shell  command i.e.
-     * "adb shell setprop log.tag.Paging VERBOSE"
+     * isLoggable returns true if Logging is enabled via adb shell command i.e. "adb shell setprop
+     * log.tag.Paging VERBOSE"
      */
     public actual fun isLoggable(level: Int): Boolean {
         return Log.isLoggable(LOG_TAG, level)
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ContiguousPagedList.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ContiguousPagedList.jvm.kt
index 02b8230..3ee6114 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ContiguousPagedList.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ContiguousPagedList.jvm.kt
@@ -40,13 +40,14 @@
     config: Config,
     initialPage: PagingSource.LoadResult.Page<K, V>,
     private val initialLastKey: K?
-) : PagedList<V>(
-    pagingSource,
-    coroutineScope,
-    notifyDispatcher,
-    PagedStorage<V>(),
-    config,
-),
+) :
+    PagedList<V>(
+        pagingSource,
+        coroutineScope,
+        notifyDispatcher,
+        PagedStorage<V>(),
+        config,
+    ),
     PagedStorage.Callback,
     LegacyPageFetcher.PageConsumer<V> {
 
@@ -82,34 +83,30 @@
     private val shouldTrim = config.maxSize != Config.MAX_SIZE_UNBOUNDED
 
     @Suppress("UNCHECKED_CAST")
-    private val pager = LegacyPageFetcher(
-        coroutineScope,
-        config,
-        pagingSource,
-        notifyDispatcher,
-        backgroundDispatcher,
-        this,
-        storage as LegacyPageFetcher.KeyProvider<K>
-    )
+    private val pager =
+        LegacyPageFetcher(
+            coroutineScope,
+            config,
+            pagingSource,
+            notifyDispatcher,
+            backgroundDispatcher,
+            this,
+            storage as LegacyPageFetcher.KeyProvider<K>
+        )
 
     @Suppress("UNCHECKED_CAST")
     override val lastKey: K?
         get() {
-            return (storage.getRefreshKeyInfo(config) as PagingState<K, V>?)
-                ?.let { pagingSource.getRefreshKey(it) }
-                ?: initialLastKey
+            return (storage.getRefreshKeyInfo(config) as PagingState<K, V>?)?.let {
+                pagingSource.getRefreshKey(it)
+            } ?: initialLastKey
         }
 
     override val isDetached: Boolean
         get() = pager.isDetached
 
-    /**
-     * Given a page result, apply or drop it, and return whether more loading is needed.
-     */
-    override fun onPageResult(
-        type: LoadType,
-        page: PagingSource.LoadResult.Page<*, V>
-    ): Boolean {
+    /** Given a page result, apply or drop it, and return whether more loading is needed. */
+    override fun onPageResult(type: LoadType, page: PagingSource.LoadResult.Page<*, V>): Boolean {
         var continueLoading = false
         val list = page.data
 
@@ -117,11 +114,8 @@
         val trimFromFront = lastLoad() > storage.middleOfLoadedRange
 
         // is the new page big enough to warrant pre-trimming (i.e. dropping) it?
-        val skipNewPage = shouldTrim && storage.shouldPreTrimNewPage(
-            config.maxSize,
-            requiredRemainder,
-            list.size
-        )
+        val skipNewPage =
+            shouldTrim && storage.shouldPreTrimNewPage(config.maxSize, requiredRemainder, list.size)
 
         if (type == APPEND) {
             if (skipNewPage && !trimFromFront) {
@@ -155,7 +149,8 @@
             // allow fetches in same direction - this means reading the load state is safe.
             if (trimFromFront) {
                 if (pager.loadStateManager.startState !is Loading) {
-                    if (storage.trimFromFront(
+                    if (
+                        storage.trimFromFront(
                             replacePagesWithNulls,
                             config.maxSize,
                             requiredRemainder,
@@ -168,7 +163,8 @@
                 }
             } else {
                 if (pager.loadStateManager.endState !is Loading) {
-                    if (storage.trimFromEnd(
+                    if (
+                        storage.trimFromEnd(
                             replacePagesWithNulls,
                             config.maxSize,
                             requiredRemainder,
@@ -252,10 +248,11 @@
      * is set.
      */
     private fun tryDispatchBoundaryCallbacks(post: Boolean) {
-        val dispatchBegin = boundaryCallbackBeginDeferred &&
-            lowestIndexAccessed <= config.prefetchDistance
-        val dispatchEnd = boundaryCallbackEndDeferred &&
-            highestIndexAccessed >= size - 1 - config.prefetchDistance
+        val dispatchBegin =
+            boundaryCallbackBeginDeferred && lowestIndexAccessed <= config.prefetchDistance
+        val dispatchEnd =
+            boundaryCallbackEndDeferred &&
+                highestIndexAccessed >= size - 1 - config.prefetchDistance
 
         if (!dispatchBegin && !dispatchEnd) return
 
@@ -336,11 +333,12 @@
     override fun loadAroundInternal(index: Int) {
         val prependItems =
             getPrependItemsRequested(config.prefetchDistance, index, storage.placeholdersBefore)
-        val appendItems = getAppendItemsRequested(
-            config.prefetchDistance,
-            index,
-            storage.placeholdersBefore + storage.dataCount
-        )
+        val appendItems =
+            getAppendItemsRequested(
+                config.prefetchDistance,
+                index,
+                storage.placeholdersBefore + storage.dataCount
+            )
 
         prependItemsRequested = maxOf(prependItems, prependItemsRequested)
         if (prependItemsRequested > 0) {
@@ -375,8 +373,7 @@
         // If we're not presenting placeholders at initialization time, we won't add them when
         // we drop a page. Note that we don't use config.enablePlaceholders, since the
         // PagingSource may have opted not to load any.
-        replacePagesWithNulls = storage.placeholdersBefore > 0 ||
-            storage.placeholdersAfter > 0
+        replacePagesWithNulls = storage.placeholdersBefore > 0 || storage.placeholdersAfter > 0
     }
 
     @MainThread
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/DataSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/DataSource.jvm.kt
index 35bbc92..52250d2 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/DataSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/DataSource.jvm.kt
@@ -27,26 +27,26 @@
 /**
  * Base class for loading pages of snapshot data into a [PagedList].
  *
- * DataSource is queried to load pages of content into a [PagedList]. A PagedList can grow as
- * it loads more data, but the data loaded cannot be updated. If the underlying data set is
- * modified, a new PagedList / DataSource pair must be created to represent the new data.
+ * DataSource is queried to load pages of content into a [PagedList]. A PagedList can grow as it
+ * loads more data, but the data loaded cannot be updated. If the underlying data set is modified, a
+ * new PagedList / DataSource pair must be created to represent the new data.
  *
  * ### Loading Pages
  *
- * PagedList queries data from its DataSource in response to loading hints. PagedListAdapter
- * calls [PagedList.loadAround] to load content as the user scrolls in a RecyclerView.
+ * PagedList queries data from its DataSource in response to loading hints. PagedListAdapter calls
+ * [PagedList.loadAround] to load content as the user scrolls in a RecyclerView.
  *
- * To control how and when a PagedList queries data from its DataSource, see
- * [PagedList.Config]. The Config object defines things like load sizes and prefetch distance.
+ * To control how and when a PagedList queries data from its DataSource, see [PagedList.Config]. The
+ * Config object defines things like load sizes and prefetch distance.
  *
  * ### Updating Paged Data
  *
- * A PagedList / DataSource pair are a snapshot of the data set. A new pair of
- * PagedList / DataSource must be created if an update occurs, such as a reorder, insert, delete, or
- * content update occurs. A DataSource must detect that it cannot continue loading its
- * snapshot (for instance, when Database query notices a table being invalidated), and call
- * [invalidate]. Then a new PagedList / DataSource pair would be created to load data from the new
- * state of the Database query.
+ * A PagedList / DataSource pair are a snapshot of the data set. A new pair of PagedList /
+ * DataSource must be created if an update occurs, such as a reorder, insert, delete, or content
+ * update occurs. A DataSource must detect that it cannot continue loading its snapshot (for
+ * instance, when Database query notices a table being invalidated), and call [invalidate]. Then a
+ * new PagedList / DataSource pair would be created to load data from the new state of the Database
+ * query.
  *
  * To page in data that doesn't update, you can create a single DataSource, and pass it to a single
  * PagedList. For example, loading from network when the network's paging API doesn't provide
@@ -61,10 +61,10 @@
  * signal to call [invalidate] on the current [DataSource].
  *
  * If you have more granular update signals, such as a network API signaling an update to a single
- * item in the list, it's recommended to load data from network into memory. Then present that
- * data to the PagedList via a DataSource that wraps an in-memory snapshot. Each time the in-memory
- * copy changes, invalidate the previous DataSource, and a new one wrapping the new state of the
- * snapshot can be created.
+ * item in the list, it's recommended to load data from network into memory. Then present that data
+ * to the PagedList via a DataSource that wraps an in-memory snapshot. Each time the in-memory copy
+ * changes, invalidate the previous DataSource, and a new one wrapping the new state of the snapshot
+ * can be created.
  *
  * ### Implementing a DataSource
  *
@@ -74,54 +74,49 @@
  * Use [PageKeyedDataSource] if pages you load embed keys for loading adjacent pages. For example a
  * network response that returns some items, and a next/previous page links.
  *
- * Use [ItemKeyedDataSource] if you need to use data from item `N-1` to load item
- * `N`. For example, if requesting the backend for the next comments in the list
- * requires the ID or timestamp of the most recent loaded comment, or if querying the next users
- * from a name-sorted database query requires the name and unique ID of the previous.
+ * Use [ItemKeyedDataSource] if you need to use data from item `N-1` to load item `N`. For example,
+ * if requesting the backend for the next comments in the list requires the ID or timestamp of the
+ * most recent loaded comment, or if querying the next users from a name-sorted database query
+ * requires the name and unique ID of the previous.
  *
- * Use [PositionalDataSource] if you can load pages of a requested size at arbitrary
- * positions, and provide a fixed item count. PositionalDataSource supports querying pages at
- * arbitrary positions, so can provide data to PagedLists in arbitrary order. Note that
- * PositionalDataSource is required to respect page size for efficient tiling. If you want to
- * override page size (e.g. when network page size constraints are only known at runtime), use one
- * of the other DataSource classes.
+ * Use [PositionalDataSource] if you can load pages of a requested size at arbitrary positions, and
+ * provide a fixed item count. PositionalDataSource supports querying pages at arbitrary positions,
+ * so can provide data to PagedLists in arbitrary order. Note that PositionalDataSource is required
+ * to respect page size for efficient tiling. If you want to override page size (e.g. when network
+ * page size constraints are only known at runtime), use one of the other DataSource classes.
  *
- * Because a `null` item indicates a placeholder in [PagedList], DataSource may not
- * return `null` items in lists that it loads. This is so that users of the PagedList
- * can differentiate unloaded placeholder items from content that has been paged in.
+ * Because a `null` item indicates a placeholder in [PagedList], DataSource may not return `null`
+ * items in lists that it loads. This is so that users of the PagedList can differentiate unloaded
+ * placeholder items from content that has been paged in.
  *
  * @param Key Unique identifier for item loaded from DataSource. Often an integer to represent
- * position in data set. Note - this is distinct from e.g. Room's `<Value>` Value type
- * loaded by the DataSource.
+ *   position in data set. Note - this is distinct from e.g. Room's `<Value>` Value type loaded by
+ *   the DataSource.
  */
 public abstract class DataSource<Key : Any, Value : Any>
 // Since we currently rely on implementation details of two implementations, prevent external
 // subclassing, except through exposed subclasses.
 internal constructor(internal val type: KeyType) {
 
-    private val invalidateCallbackTracker = InvalidateCallbackTracker<InvalidatedCallback>(
-        callbackInvoker = { it.onInvalidated() },
-        invalidGetter = { isInvalid },
-    )
+    private val invalidateCallbackTracker =
+        InvalidateCallbackTracker<InvalidatedCallback>(
+            callbackInvoker = { it.onInvalidated() },
+            invalidGetter = { isInvalid },
+        )
 
     internal val invalidateCallbackCount: Int
-        @VisibleForTesting
-        get() = invalidateCallbackTracker.callbackCount()
+        @VisibleForTesting get() = invalidateCallbackTracker.callbackCount()
 
-    /**
-     * @return `true` if the data source is invalid, and can no longer be queried for data.
-     */
+    /** @return `true` if the data source is invalid, and can no longer be queried for data. */
     public open val isInvalid: Boolean
-        @WorkerThread
-        get() = invalidateCallbackTracker.invalid
+        @WorkerThread get() = invalidateCallbackTracker.invalid
 
     /**
      * Factory for DataSources.
      *
      * Data-loading systems of an application or library can implement this interface to allow
-     * `LiveData<PagedList>`s to be created. For example, Room can provide a
-     * [DataSource.Factory] for a given SQL query:
-     *
+     * `LiveData<PagedList>`s to be created. For example, Room can provide a [DataSource.Factory]
+     * for a given SQL query:
      * ```
      * @Dao
      * interface UserDao {
@@ -130,9 +125,9 @@
      * }
      * ```
      *
-     * In the above sample, `Integer` is used because it is the `Key` type of
-     * PositionalDataSource. Currently, Room uses the `LIMIT`/`OFFSET` SQL keywords to
-     * page a large query with a PositionalDataSource.
+     * In the above sample, `Integer` is used because it is the `Key` type of PositionalDataSource.
+     * Currently, Room uses the `LIMIT`/`OFFSET` SQL keywords to page a large query with a
+     * PositionalDataSource.
      *
      * @param Key Key identifying items in DataSource.
      * @param Value Type of items in the list loaded by the DataSources.
@@ -159,10 +154,9 @@
          * Same as [mapByPage], but operates on individual items.
          *
          * @param function Function that runs on each loaded item, returning items of a potentially
-         * new type.
+         *   new type.
          * @param ToValue Type of items produced by the new [DataSource], from the passed function.
          * @return A new [DataSource.Factory], which transforms items using the given function.
-         *
          * @see mapByPage
          * @see DataSource.map
          * @see DataSource.mapByPage
@@ -181,10 +175,9 @@
          * Same as [mapByPage], but operates on individual items.
          *
          * @param function Function that runs on each loaded item, returning items of a potentially
-         * new type.
+         *   new type.
          * @param ToValue Type of items produced by the new [DataSource], from the passed function.
          * @return A new [DataSource.Factory], which transforms items using the given function.
-         *
          * @see mapByPage
          * @see DataSource.map
          * @see DataSource.mapByPage
@@ -200,20 +193,20 @@
          * Same as [map], but allows for batch conversions.
          *
          * @param function Function that runs on each loaded page, returning items of a potentially
-         * new type.
+         *   new type.
          * @param ToValue Type of items produced by the new [DataSource], from the passed function.
          * @return A new [DataSource.Factory], which transforms items using the given function.
-         *
          * @see map
          * @see DataSource.map
          * @see DataSource.mapByPage
          */
         public open fun <ToValue : Any> mapByPage(
             function: Function<List<Value>, List<ToValue>>
-        ): Factory<Key, ToValue> = object : Factory<Key, ToValue>() {
-            override fun create(): DataSource<Key, ToValue> =
-                this@Factory.create().mapByPage(function)
-        }
+        ): Factory<Key, ToValue> =
+            object : Factory<Key, ToValue>() {
+                override fun create(): DataSource<Key, ToValue> =
+                    this@Factory.create().mapByPage(function)
+            }
 
         /**
          * Applies the given function to each value emitted by DataSources produced by this Factory.
@@ -223,10 +216,9 @@
          * Same as [map], but allows for batch conversions.
          *
          * @param function Function that runs on each loaded page, returning items of a potentially
-         * new type.
+         *   new type.
          * @param ToValue Type of items produced by the new [DataSource], from the passed function.
          * @return A new [DataSource.Factory], which transforms items using the given function.
-         *
          * @see map
          * @see DataSource.map
          * @see DataSource.mapByPage
@@ -239,12 +231,11 @@
         @JvmOverloads
         public fun asPagingSourceFactory(
             fetchDispatcher: CoroutineDispatcher = Dispatchers.IO
-        ): () -> PagingSource<Key, Value> = SuspendingPagingSourceFactory(
-            delegate = {
-                LegacyPagingSource(fetchDispatcher, create())
-            },
-            dispatcher = fetchDispatcher
-        )
+        ): () -> PagingSource<Key, Value> =
+            SuspendingPagingSourceFactory(
+                delegate = { LegacyPagingSource(fetchDispatcher, create()) },
+                dispatcher = fetchDispatcher
+            )
     }
 
     /**
@@ -252,11 +243,10 @@
      *
      * Same as [map], but allows for batch conversions.
      *
-     * @param function Function that runs on each loaded page, returning items of a potentially
-     * new type.
+     * @param function Function that runs on each loaded page, returning items of a potentially new
+     *   type.
      * @param ToValue Type of items produced by the new DataSource, from the passed function.
      * @return A new DataSource, which transforms items using the given function.
-     *
      * @see map
      * @see DataSource.Factory.map
      * @see DataSource.Factory.mapByPage
@@ -272,11 +262,10 @@
      *
      * Same as [map], but allows for batch conversions.
      *
-     * @param function Function that runs on each loaded page, returning items of a potentially
-     * new type.
+     * @param function Function that runs on each loaded page, returning items of a potentially new
+     *   type.
      * @param ToValue Type of items produced by the new DataSource, from the passed function.
      * @return A new [DataSource], which transforms items using the given function.
-     *
      * @see map
      * @see DataSource.Factory.map
      * @see DataSource.Factory.mapByPage
@@ -291,11 +280,10 @@
      *
      * Same as [mapByPage], but operates on individual items.
      *
-     * @param function Function that runs on each loaded item, returning items of a potentially
-     * new type.
+     * @param function Function that runs on each loaded item, returning items of a potentially new
+     *   type.
      * @param ToValue Type of items produced by the new DataSource, from the passed function.
      * @return A new DataSource, which transforms items using the given function.
-     *
      * @see mapByPage
      * @see DataSource.Factory.map
      * @see DataSource.Factory.mapByPage
@@ -313,19 +301,16 @@
      *
      * Same as [mapByPage], but operates on individual items.
      *
-     * @param function Function that runs on each loaded item, returning items of a potentially
-     * new type.
+     * @param function Function that runs on each loaded item, returning items of a potentially new
+     *   type.
      * @param ToValue Type of items produced by the new DataSource, from the passed function.
      * @return A new DataSource, which transforms items using the given function.
-     *
      * @see mapByPage
      * @see DataSource.Factory.map
-     *
      */
     @JvmSynthetic // hidden to preserve Java source compat with arch.core.util.Function variant
-    public open fun <ToValue : Any> map(
-        function: (Value) -> ToValue
-    ): DataSource<Key, ToValue> = map(Function { function(it) })
+    public open fun <ToValue : Any> map(function: (Value) -> ToValue): DataSource<Key, ToValue> =
+        map(Function { function(it) })
 
     /**
      * Returns true if the data source guaranteed to produce a contiguous set of items, never
@@ -350,8 +335,7 @@
          * data source to invalidate itself during its load methods, or for an outside source to
          * invalidate it.
          */
-        @AnyThread
-        public fun onInvalidated()
+        @AnyThread public fun onInvalidated()
     }
 
     /**
@@ -366,7 +350,7 @@
      * triggered immediately.
      *
      * @param onInvalidatedCallback The callback, will be invoked on thread that invalidates the
-     * [DataSource].
+     *   [DataSource].
      */
     @AnyThread
     @Suppress("RegistrationName")
@@ -399,7 +383,8 @@
      * @param K Type of the key used to query the [DataSource].
      * @property key Can be `null` for init, otherwise non-null
      */
-    internal class Params<K : Any> internal constructor(
+    internal class Params<K : Any>
+    internal constructor(
         internal val type: LoadType,
         val key: K?,
         val initialLoadSize: Int,
@@ -413,12 +398,10 @@
         }
     }
 
-    /**
-     * @param Value Type of the data produced by a [DataSource].
-     */
-    internal class BaseResult<Value : Any> internal constructor(
-        @JvmField
-        val data: List<Value>,
+    /** @param Value Type of the data produced by a [DataSource]. */
+    internal class BaseResult<Value : Any>
+    internal constructor(
+        @JvmField val data: List<Value>,
         val prevKey: Any?,
         val nextKey: Any?,
         val itemsBefore: Int = COUNT_UNDEFINED,
@@ -442,9 +425,8 @@
         }
 
         /**
-         * While it may seem unnecessary to do this validation now that tiling is gone, we do
-         * this to ensure consistency with 2.1, and to ensure all loadRanges have the same page
-         * size.
+         * While it may seem unnecessary to do this validation now that tiling is gone, we do this
+         * to ensure consistency with 2.1, and to ensure all loadRanges have the same page size.
          */
         internal fun validateForInitialTiling(pageSize: Int) {
             if (itemsBefore == COUNT_UNDEFINED || itemsAfter == COUNT_UNDEFINED) {
@@ -471,15 +453,16 @@
             }
         }
 
-        override fun equals(other: Any?) = when (other) {
-            is BaseResult<*> ->
-                data == other.data &&
-                    prevKey == other.prevKey &&
-                    nextKey == other.nextKey &&
-                    itemsBefore == other.itemsBefore &&
-                    itemsAfter == other.itemsAfter
-            else -> false
-        }
+        override fun equals(other: Any?) =
+            when (other) {
+                is BaseResult<*> ->
+                    data == other.data &&
+                        prevKey == other.prevKey &&
+                        nextKey == other.nextKey &&
+                        itemsBefore == other.itemsBefore &&
+                        itemsAfter == other.itemsAfter
+                else -> false
+            }
 
         internal companion object {
             internal fun <T : Any> empty() = BaseResult(emptyList<T>(), null, null, 0, 0)
@@ -487,13 +470,14 @@
             internal fun <ToValue : Any, Value : Any> convert(
                 result: BaseResult<ToValue>,
                 function: Function<List<ToValue>, List<Value>>
-            ) = BaseResult(
-                data = convert(function, result.data),
-                prevKey = result.prevKey,
-                nextKey = result.nextKey,
-                itemsBefore = result.itemsBefore,
-                itemsAfter = result.itemsAfter
-            )
+            ) =
+                BaseResult(
+                    data = convert(function, result.data),
+                    prevKey = result.prevKey,
+                    nextKey = result.nextKey,
+                    itemsBefore = result.itemsBefore,
+                    itemsAfter = result.itemsAfter
+                )
         }
     }
 
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialDataSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialDataSource.jvm.kt
index 624db53..3103fb6 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialDataSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialDataSource.jvm.kt
@@ -17,8 +17,8 @@
 package androidx.paging
 
 /**
- * [InitialDataSource] is a placeholder [DataSource] implementation that only returns empty
- * pages and `null` keys.
+ * [InitialDataSource] is a placeholder [DataSource] implementation that only returns empty pages
+ * and `null` keys.
  *
  * It should be used exclusively in [InitialPagedList] since it is required to be supplied
  * synchronously, but [DataSource.Factory] should run on background thread.
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialPagedList.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialPagedList.jvm.kt
index fc00fa4..f6b6c6b 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialPagedList.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/InitialPagedList.jvm.kt
@@ -23,9 +23,8 @@
 /**
  * [InitialPagedList] is an empty placeholder that's sent at the front of a stream of [PagedList].
  *
- * It's used solely for listening to [LoadType.REFRESH] loading events, and retrying
- * any errors that occur during initial load.
- *
+ * It's used solely for listening to [LoadType.REFRESH] loading events, and retrying any errors that
+ * occur during initial load.
  */
 @RestrictTo(RestrictTo.Scope.LIBRARY)
 public class InitialPagedList<K : Any, V : Any>(
@@ -34,13 +33,14 @@
     backgroundDispatcher: CoroutineDispatcher,
     config: Config,
     initialLastKey: K?
-) : ContiguousPagedList<K, V>(
-    pagingSource = LegacyPagingSource(notifyDispatcher, InitialDataSource()),
-    coroutineScope = coroutineScope,
-    notifyDispatcher = notifyDispatcher,
-    backgroundDispatcher = backgroundDispatcher,
-    boundaryCallback = null,
-    config = config,
-    initialPage = PagingSource.LoadResult.Page.empty(),
-    initialLastKey = initialLastKey
-)
+) :
+    ContiguousPagedList<K, V>(
+        pagingSource = LegacyPagingSource(notifyDispatcher, InitialDataSource()),
+        coroutineScope = coroutineScope,
+        notifyDispatcher = notifyDispatcher,
+        backgroundDispatcher = backgroundDispatcher,
+        boundaryCallback = null,
+        config = config,
+        initialPage = PagingSource.LoadResult.Page.empty(),
+        initialLastKey = initialLastKey
+    )
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ItemKeyedDataSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ItemKeyedDataSource.jvm.kt
index abc5785..d2f1944 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ItemKeyedDataSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/ItemKeyedDataSource.jvm.kt
@@ -27,9 +27,9 @@
  * Incremental data loader for paging keyed content, where loaded content uses previously loaded
  * items as input to future loads.
  *
- * Implement a DataSource using ItemKeyedDataSource if you need to use data from item `N - 1`
- * to load item `N`. This is common, for example, in uniquely sorted database queries where
- * attributes of the item such just before the next query define how to execute it.
+ * Implement a DataSource using ItemKeyedDataSource if you need to use data from item `N - 1` to
+ * load item `N`. This is common, for example, in uniquely sorted database queries where attributes
+ * of the item such just before the next query define how to execute it.
  *
  * The `InMemoryByItemRepository` in the
  * [PagingWithNetworkSample](https://github.com/googlesamples/android-architecture-components/blob/master/PagingWithNetworkSample/README.md)
@@ -42,37 +42,32 @@
  */
 @Deprecated(
     message = "ItemKeyedDataSource is deprecated and has been replaced by PagingSource",
-    replaceWith = ReplaceWith(
-        "PagingSource<Key, Value>",
-        "androidx.paging.PagingSource"
-    )
+    replaceWith = ReplaceWith("PagingSource<Key, Value>", "androidx.paging.PagingSource")
 )
-public abstract class ItemKeyedDataSource<Key : Any, Value : Any> : DataSource<Key, Value>(
-    ITEM_KEYED
-) {
+public abstract class ItemKeyedDataSource<Key : Any, Value : Any> :
+    DataSource<Key, Value>(ITEM_KEYED) {
 
     /**
      * Holder object for inputs to [loadInitial].
      *
      * @param Key Type of data used to query [Value] types out of the [DataSource].
-     * @param requestedInitialKey Load items around this key, or at the beginning of the data set
-     * if `null` is passed.
+     * @param requestedInitialKey Load items around this key, or at the beginning of the data set if
+     *   `null` is passed.
      *
      * Note that this key is generally a hint, and may be ignored if you want to always load from
      * the beginning.
+     *
      * @param requestedLoadSize Requested number of items to load.
      *
      * Note that this may be larger than available data.
-     * @param placeholdersEnabled Defines whether placeholders are enabled, and whether the
-     * loaded total count will be ignored.
+     *
+     * @param placeholdersEnabled Defines whether placeholders are enabled, and whether the loaded
+     *   total count will be ignored.
      */
     public open class LoadInitialParams<Key : Any>(
-        @JvmField
-        public val requestedInitialKey: Key?,
-        @JvmField
-        public val requestedLoadSize: Int,
-        @JvmField
-        public val placeholdersEnabled: Boolean
+        @JvmField public val requestedInitialKey: Key?,
+        @JvmField public val requestedLoadSize: Int,
+        @JvmField public val placeholdersEnabled: Boolean
     )
 
     /**
@@ -82,21 +77,19 @@
      * @param key Load items before/after this key.
      *
      * Returned data must begin directly adjacent to this position.
+     *
      * @param requestedLoadSize Requested number of items to load.
      *
      * Returned page can be of this size, but it may be altered if that is easier, e.g. a network
      * data source where the backend defines page size.
      */
     public open class LoadParams<Key : Any>(
-        @JvmField
-        public val key: Key,
-        @JvmField
-        public val requestedLoadSize: Int
+        @JvmField public val key: Key,
+        @JvmField public val requestedLoadSize: Int
     )
 
     /**
-     * Callback for [loadInitial]
-     * to return data and, optionally, position/count information.
+     * Callback for [loadInitial] to return data and, optionally, position/count information.
      *
      * A callback can be called only once, and will throw if called again.
      *
@@ -116,21 +109,21 @@
         /**
          * Called to pass initial load state from a DataSource.
          *
-         * Call this method from your DataSource's `loadInitial` function to return data,
-         * and inform how many placeholders should be shown before and after. If counting is cheap
-         * to compute (for example, if a network load returns the information regardless), it's
-         * recommended to pass data back through this method.
+         * Call this method from your DataSource's `loadInitial` function to return data, and inform
+         * how many placeholders should be shown before and after. If counting is cheap to compute
+         * (for example, if a network load returns the information regardless), it's recommended to
+         * pass data back through this method.
          *
          * It is always valid to pass a different amount of data than what is requested. Pass an
          * empty list if there is no more data to load.
          *
-         * @param data List of items loaded from the DataSource. If this is empty, the DataSource
-         * is treated as empty, and no further loads will occur.
-         * @param position Position of the item at the front of the list. If there are `N`
-         * items before the items in data that can be loaded from this DataSource, pass `N`.
+         * @param data List of items loaded from the DataSource. If this is empty, the DataSource is
+         *   treated as empty, and no further loads will occur.
+         * @param position Position of the item at the front of the list. If there are `N` items
+         *   before the items in data that can be loaded from this DataSource, pass `N`.
          * @param totalCount Total number of items that may be returned from this [DataSource].
-         * Includes the number in the initial `data` parameter as well as any items that can be
-         * loaded in front or behind of `data`.
+         *   Includes the number in the initial `data` parameter as well as any items that can be
+         *   loaded in front or behind of `data`.
          */
         public abstract fun onResult(data: List<Value>, position: Int, totalCount: Int)
     }
@@ -167,19 +160,21 @@
     @Suppress("RedundantVisibilityModifier") // Metalava doesn't inherit visibility properly.
     internal final override suspend fun load(params: Params<Key>): BaseResult<Value> {
         return when (params.type) {
-            LoadType.REFRESH -> loadInitial(
-                LoadInitialParams(
-                    params.key,
-                    params.initialLoadSize,
-                    params.placeholdersEnabled
+            LoadType.REFRESH ->
+                loadInitial(
+                    LoadInitialParams(
+                        params.key,
+                        params.initialLoadSize,
+                        params.placeholdersEnabled
+                    )
                 )
-            )
             LoadType.PREPEND -> loadBefore(LoadParams(params.key!!, params.pageSize))
             LoadType.APPEND -> loadAfter(LoadParams(params.key!!, params.pageSize))
         }
     }
 
     internal fun List<Value>.getPrevKey() = firstOrNull()?.let { getKey(it) }
+
     internal fun List<Value>.getNextKey() = lastOrNull()?.let { getKey(it) }
 
     @VisibleForTesting
@@ -217,13 +212,7 @@
     private fun CancellableContinuation<BaseResult<Value>>.asCallback() =
         object : ItemKeyedDataSource.LoadCallback<Value>() {
             override fun onResult(data: List<Value>) {
-                resume(
-                    BaseResult(
-                        data,
-                        data.getPrevKey(),
-                        data.getNextKey()
-                    )
-                )
+                resume(BaseResult(data, data.getPrevKey(), data.getNextKey()))
             }
         }
 
@@ -235,9 +224,7 @@
 
     @VisibleForTesting
     internal suspend fun loadAfter(params: LoadParams<Key>): BaseResult<Value> {
-        return suspendCancellableCoroutine { cont ->
-            loadAfter(params, cont.asCallback())
-        }
+        return suspendCancellableCoroutine { cont -> loadAfter(params, cont.asCallback()) }
     }
 
     /**
@@ -248,13 +235,12 @@
      * the callback via the three-parameter [LoadInitialCallback.onResult]. This enables PagedLists
      * presenting data from this source to display placeholders to represent unloaded items.
      *
-     * [LoadInitialParams.requestedInitialKey] and [LoadInitialParams.requestedLoadSize]
-     * are hints, not requirements, so they may be altered or ignored. Note that ignoring the
-     * `requestedInitialKey` can prevent subsequent PagedList/DataSource pairs from
-     * initializing at the same location. If your DataSource never invalidates (for example,
-     * loading from the network without the network ever signalling that old data must be reloaded),
-     * it's fine to ignore the `initialLoadKey` and always start from the beginning of the
-     * data set.
+     * [LoadInitialParams.requestedInitialKey] and [LoadInitialParams.requestedLoadSize] are hints,
+     * not requirements, so they may be altered or ignored. Note that ignoring the
+     * `requestedInitialKey` can prevent subsequent PagedList/DataSource pairs from initializing at
+     * the same location. If your DataSource never invalidates (for example, loading from the
+     * network without the network ever signalling that old data must be reloaded), it's fine to
+     * ignore the `initialLoadKey` and always start from the beginning of the data set.
      *
      * @param params Parameters for initial load, including initial key and requested size.
      * @param callback Callback that receives initial load data.
@@ -309,14 +295,13 @@
      * Return a key associated with the given item.
      *
      * If your ItemKeyedDataSource is loading from a source that is sorted and loaded by a unique
-     * integer ID, you would return `item.getID()` here. This key can then be passed to
-     * [loadBefore] or [loadAfter] to load additional items adjacent to the item passed to this
-     * function.
+     * integer ID, you would return `item.getID()` here. This key can then be passed to [loadBefore]
+     * or [loadAfter] to load additional items adjacent to the item passed to this function.
      *
      * If your key is more complex, such as when you're sorting by name, then resolving collisions
      * with integer ID, you'll need to return both. In such a case you would use a wrapper class,
-     * such as `Pair<String, Integer>` or, in Kotlin,
-     * `data class Key(val name: String, val id: Int)`
+     * such as `Pair<String, Integer>` or, in Kotlin, `data class Key(val name: String, val id:
+     * Int)`
      *
      * @param item Item to get the key from.
      * @return Key associated with given item.
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPageFetcher.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPageFetcher.jvm.kt
index cc919f4..50e3ea5 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPageFetcher.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPageFetcher.jvm.kt
@@ -26,8 +26,7 @@
 
 internal class LegacyPageFetcher<K : Any, V : Any>(
     private val pagedListScope: CoroutineScope,
-    @Suppress("DEPRECATION")
-    val config: PagedList.Config,
+    @Suppress("DEPRECATION") val config: PagedList.Config,
     val source: PagingSource<K, V>,
     private val notifyDispatcher: CoroutineDispatcher,
     private val fetchDispatcher: CoroutineDispatcher,
@@ -37,12 +36,13 @@
     private val detached = AtomicBoolean(false)
 
     @Suppress("DEPRECATION")
-    var loadStateManager = object : PagedList.LoadStateManager() {
-        override fun onStateChanged(type: LoadType, state: LoadState) {
-            // Don't need to post - PagedList will already have done that
-            pageConsumer.onStateChanged(type, state)
+    var loadStateManager =
+        object : PagedList.LoadStateManager() {
+            override fun onStateChanged(type: LoadType, state: LoadState) {
+                // Don't need to post - PagedList will already have done that
+                pageConsumer.onStateChanged(type, state)
+            }
         }
-    }
 
     val isDetached
         get() = detached.get()
@@ -121,11 +121,12 @@
 
         loadStateManager.setState(LoadType.PREPEND, Loading)
 
-        val loadParams = LoadParams.Prepend(
-            key,
-            config.pageSize,
-            config.enablePlaceholders,
-        )
+        val loadParams =
+            LoadParams.Prepend(
+                key,
+                config.pageSize,
+                config.enablePlaceholders,
+            )
         scheduleLoad(LoadType.PREPEND, loadParams)
     }
 
@@ -137,21 +138,18 @@
         }
 
         loadStateManager.setState(LoadType.APPEND, Loading)
-        val loadParams = LoadParams.Append(
-            key,
-            config.pageSize,
-            config.enablePlaceholders,
-        )
+        val loadParams =
+            LoadParams.Append(
+                key,
+                config.pageSize,
+                config.enablePlaceholders,
+            )
         scheduleLoad(LoadType.APPEND, loadParams)
     }
 
     fun retry() {
-        loadStateManager.startState.run {
-            if (this is LoadState.Error) schedulePrepend()
-        }
-        loadStateManager.endState.run {
-            if (this is LoadState.Error) scheduleAppend()
-        }
+        loadStateManager.startState.run { if (this is LoadState.Error) schedulePrepend() }
+        loadStateManager.endState.run { if (this is LoadState.Error) scheduleAppend() }
     }
 
     fun detach() {
@@ -159,9 +157,7 @@
     }
 
     internal interface PageConsumer<V : Any> {
-        /**
-         * @return `true` if we need to fetch more
-         */
+        /** @return `true` if we need to fetch more */
         fun onPageResult(type: LoadType, page: PagingSource.LoadResult.Page<*, V>): Boolean
 
         fun onStateChanged(type: LoadType, state: LoadState)
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPagingSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPagingSource.jvm.kt
index a3d9b27..2a6c4ce 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPagingSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/LegacyPagingSource.jvm.kt
@@ -29,10 +29,7 @@
 import kotlinx.coroutines.DelicateCoroutinesApi
 import kotlinx.coroutines.withContext
 
-/**
- * A wrapper around [DataSource] which adapts it to the [PagingSource] API.
- *
- */
+/** A wrapper around [DataSource] which adapts it to the [PagingSource] API. */
 @OptIn(DelicateCoroutinesApi::class)
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 public class LegacyPagingSource<Key : Any, Value : Any>(
@@ -51,8 +48,7 @@
         }
     }
 
-    /**
-     */
+    /**  */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public override fun setPageSize(pageSize: Int) {
         check(this.pageSize == PAGE_SIZE_NOT_SET || pageSize == this.pageSize) {
@@ -75,11 +71,12 @@
     }
 
     override suspend fun load(params: LoadParams<Key>): LoadResult<Key, Value> {
-        val type = when (params) {
-            is LoadParams.Refresh -> REFRESH
-            is LoadParams.Append -> APPEND
-            is LoadParams.Prepend -> PREPEND
-        }
+        val type =
+            when (params) {
+                is LoadParams.Refresh -> REFRESH
+                is LoadParams.Append -> APPEND
+                is LoadParams.Prepend -> PREPEND
+            }
         if (pageSize == PAGE_SIZE_NOT_SET) {
             // println because we don't have android logger here
             println(
@@ -94,17 +91,13 @@
 
                 If you are seeing this message despite using a Pager, please file a bug:
                 $BUGANIZER_URL
-                """.trimIndent()
+                """
+                    .trimIndent()
             )
             pageSize = guessPageSize(params)
         }
-        val dataSourceParams = Params(
-            type,
-            params.key,
-            params.loadSize,
-            params.placeholdersEnabled,
-            pageSize
-        )
+        val dataSourceParams =
+            Params(type, params.key, params.loadSize, params.placeholdersEnabled, pageSize)
 
         return withContext(fetchContext) {
             dataSource.load(dataSourceParams).run {
@@ -124,12 +117,13 @@
     @Suppress("UNCHECKED_CAST")
     override fun getRefreshKey(state: PagingState<Key, Value>): Key? {
         return when (dataSource.type) {
-            POSITIONAL -> state.anchorPosition?.let { anchorPosition ->
-                state.anchorPositionToPagedIndices(anchorPosition) { _, indexInPage ->
-                    val offset = state.closestPageToPosition(anchorPosition)?.prevKey ?: 0
-                    (offset as Int).plus(indexInPage) as Key?
+            POSITIONAL ->
+                state.anchorPosition?.let { anchorPosition ->
+                    state.anchorPositionToPagedIndices(anchorPosition) { _, indexInPage ->
+                        val offset = state.closestPageToPosition(anchorPosition)?.prevKey ?: 0
+                        (offset as Int).plus(indexInPage) as Key?
+                    }
                 }
-            }
             PAGE_KEYED -> null
             ITEM_KEYED ->
                 state.anchorPosition
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/Logger.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/Logger.kt
index 0e8f6b6..46147a8 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/Logger.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/Logger.kt
@@ -22,5 +22,6 @@
 @Deprecated("Logger interface is no longer supported.")
 public interface Logger {
     public fun isLoggable(level: Int): Boolean
+
     public fun log(level: Int, message: String, tr: Throwable? = null)
 }
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PageKeyedDataSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PageKeyedDataSource.jvm.kt
index 7cf9aad..2eda80c 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PageKeyedDataSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PageKeyedDataSource.jvm.kt
@@ -33,22 +33,18 @@
  * The `InMemoryByPageRepository` in the
  * [PagingWithNetworkSample](https://github.com/googlesamples/android-architecture-components/blob/master/PagingWithNetworkSample/README.md)
  * shows how to implement a network PageKeyedDataSource using
- * [Retrofit](https://square.github.io/retrofit/), while
- * handling swipe-to-refresh, network errors, and retry.
+ * [Retrofit](https://square.github.io/retrofit/), while handling swipe-to-refresh, network errors,
+ * and retry.
  *
  * @param Key Type of data used to query Value types out of the [DataSource].
  * @param Value Type of items being loaded by the [DataSource].
  */
 @Deprecated(
     message = "PageKeyedDataSource is deprecated and has been replaced by PagingSource",
-    replaceWith = ReplaceWith(
-        "PagingSource<Key, Value>",
-        "androidx.paging.PagingSource"
-    )
+    replaceWith = ReplaceWith("PagingSource<Key, Value>", "androidx.paging.PagingSource")
 )
-public abstract class PageKeyedDataSource<Key : Any, Value : Any> : DataSource<Key, Value>(
-    PAGE_KEYED
-) {
+public abstract class PageKeyedDataSource<Key : Any, Value : Any> :
+    DataSource<Key, Value>(PAGE_KEYED) {
 
     /**
      * Holder object for inputs to [loadInitial].
@@ -57,8 +53,9 @@
      * @param requestedLoadSize Requested number of items to load.
      *
      * Note that this may be larger than available data.
-     * @param placeholdersEnabled Defines whether placeholders are enabled, and whether the
-     * loaded total count will be ignored.
+     *
+     * @param placeholdersEnabled Defines whether placeholders are enabled, and whether the loaded
+     *   total count will be ignored.
      */
     public open class LoadInitialParams<Key : Any>(
         @JvmField public val requestedLoadSize: Int,
@@ -72,6 +69,7 @@
      * @param key Load items before/after this key.
      *
      * Returned data must begin directly adjacent to this position.
+     *
      * @param requestedLoadSize Requested number of items to load.
      *
      * Returned page can be of this size, but it may be altered if that is easier, e.g. a network
@@ -104,25 +102,25 @@
         /**
          * Called to pass initial load state from a DataSource.
          *
-         * Call this method from your DataSource's `loadInitial` function to return data,
-         * and inform how many placeholders should be shown before and after. If counting is cheap
-         * to compute (for example, if a network load returns the information regardless), it's
-         * recommended to pass data back through this method.
+         * Call this method from your DataSource's `loadInitial` function to return data, and inform
+         * how many placeholders should be shown before and after. If counting is cheap to compute
+         * (for example, if a network load returns the information regardless), it's recommended to
+         * pass data back through this method.
          *
          * It is always valid to pass a different amount of data than what is requested. Pass an
          * empty list if there is no more data to load.
          *
          * @param data List of items loaded from the [DataSource]. If this is empty, the
-         * [DataSource] is treated as empty, and no further loads will occur.
-         * @param position Position of the item at the front of the list. If there are `N`
-         * items before the items in data that can be loaded from this DataSource, pass `N`.
+         *   [DataSource] is treated as empty, and no further loads will occur.
+         * @param position Position of the item at the front of the list. If there are `N` items
+         *   before the items in data that can be loaded from this DataSource, pass `N`.
          * @param totalCount Total number of items that may be returned from this DataSource.
-         * Includes the number in the initial `data` parameter as well as any items that can be
-         * loaded in front or behind of `data`.
+         *   Includes the number in the initial `data` parameter as well as any items that can be
+         *   loaded in front or behind of `data`.
          * @param previousPageKey Key for page before the initial load result, or `null` if no more
-         * data can be loaded before.
+         *   data can be loaded before.
          * @param nextPageKey Key for page after the initial load result, or `null` if no more data
-         * can be loaded after.
+         *   can be loaded after.
          */
         public abstract fun onResult(
             data: List<Value>,
@@ -143,9 +141,9 @@
          *
          * @param data List of items loaded from the [PageKeyedDataSource].
          * @param previousPageKey Key for page before the initial load result, or `null` if no more
-         * data can be loaded before.
+         *   data can be loaded before.
          * @param nextPageKey Key for page after the initial load result, or `null` if no more data
-         * can be loaded after.
+         *   can be loaded after.
          */
         public abstract fun onResult(data: List<Value>, previousPageKey: Key?, nextPageKey: Key?)
     }
@@ -174,33 +172,28 @@
          *
          * Pass the key for the subsequent page to load to adjacentPageKey. For example, if you've
          * loaded a page in [loadBefore], pass the key for the previous page, or `null` if the
-         * loaded page is the first. If in [loadAfter], pass the key for the next page, or `null`
-         * if the loaded page is the last.
+         * loaded page is the first. If in [loadAfter], pass the key for the next page, or `null` if
+         * the loaded page is the last.
          *
          * @param data List of items loaded from the PageKeyedDataSource.
          * @param adjacentPageKey Key for subsequent page load (previous page in [loadBefore] / next
-         * page in [loadAfter]), or `null` if there are no more pages to load in the current load
-         * direction.
+         *   page in [loadAfter]), or `null` if there are no more pages to load in the current load
+         *   direction.
          */
         public abstract fun onResult(data: List<Value>, adjacentPageKey: Key?)
     }
 
-    /**
-     * @throws [IllegalArgumentException] when passed an unsupported load type.
-     */
+    /** @throws [IllegalArgumentException] when passed an unsupported load type. */
     @Suppress("RedundantVisibilityModifier") // Metalava doesn't inherit visibility properly.
-    internal final override suspend fun load(params: Params<Key>): BaseResult<Value> = when {
-        params.type == LoadType.REFRESH -> loadInitial(
-            LoadInitialParams(
-                params.initialLoadSize,
-                params.placeholdersEnabled
-            )
-        )
-        params.key == null -> BaseResult.empty()
-        params.type == LoadType.PREPEND -> loadBefore(LoadParams(params.key, params.pageSize))
-        params.type == LoadType.APPEND -> loadAfter(LoadParams(params.key, params.pageSize))
-        else -> throw IllegalArgumentException("Unsupported type " + params.type.toString())
-    }
+    internal final override suspend fun load(params: Params<Key>): BaseResult<Value> =
+        when {
+            params.type == LoadType.REFRESH ->
+                loadInitial(LoadInitialParams(params.initialLoadSize, params.placeholdersEnabled))
+            params.key == null -> BaseResult.empty()
+            params.type == LoadType.PREPEND -> loadBefore(LoadParams(params.key, params.pageSize))
+            params.type == LoadType.APPEND -> loadAfter(LoadParams(params.key, params.pageSize))
+            else -> throw IllegalArgumentException("Unsupported type " + params.type.toString())
+        }
 
     private suspend fun loadInitial(params: LoadInitialParams<Key>) =
         suspendCancellableCoroutine<BaseResult<Value>> { cont ->
@@ -299,7 +292,7 @@
      * prevent further loading.
      *
      * @param params Parameters for the load, including the key for the new page, and requested load
-     * size.
+     *   size.
      * @param callback Callback that receives loaded data.
      */
     public abstract fun loadBefore(params: LoadParams<Key>, callback: LoadCallback<Key, Value>)
@@ -319,7 +312,7 @@
      * prevent further loading.
      *
      * @param params Parameters for the load, including the key for the new page, and requested load
-     * size.
+     *   size.
      * @param callback Callback that receives loaded data.
      */
     public abstract fun loadAfter(params: LoadParams<Key>, callback: LoadCallback<Key, Value>)
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedList.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedList.kt
index a9b5655..ab554bf 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedList.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedList.kt
@@ -48,10 +48,9 @@
  * generally not be presented to the user.
  *
  * A [PagedList] initially presents this first partial load as its content, and expands over time as
- * content is loaded in. When [loadAround] is called, items will be loaded in near the passed
- * list index. If placeholder `null`s are present in the list, they will be replaced as
- * content is loaded. If not, newly loaded items will be inserted at the beginning or end of the
- * list.
+ * content is loaded in. When [loadAround] is called, items will be loaded in near the passed list
+ * index. If placeholder `null`s are present in the list, they will be replaced as content is
+ * loaded. If not, newly loaded items will be inserted at the beginning or end of the list.
  *
  * [PagedList] can present data for an unbounded, infinite scrolling list, or a very large but
  * countable list. Use [PagedList.Config] to control how many items a [PagedList] loads, and when.
@@ -64,41 +63,37 @@
  * There are two ways that [PagedList] can represent its not-yet-loaded data - with or without
  * `null` placeholders.
  *
- * With placeholders, the [PagedList] is always the full size of the data set. `get(N)` returns
- * the `N`th item in the data set, or `null` if its not yet loaded.
+ * With placeholders, the [PagedList] is always the full size of the data set. `get(N)` returns the
+ * `N`th item in the data set, or `null` if it's not yet loaded.
  *
- * Without `null` placeholders, the [PagedList] is the sublist of data that has already been
- * loaded. The size of the [PagedList] is the number of currently loaded items, and `get(N)`
- * returns the `N`th *loaded* item. This is not necessarily the `N`th item in the
- * data set.
+ * Without `null` placeholders, the [PagedList] is the sublist of data that has already been loaded.
+ * The size of the [PagedList] is the number of currently loaded items, and `get(N)` returns the
+ * `N`th *loaded* item. This is not necessarily the `N`th item in the data set.
  *
  * Placeholders have several benefits:
- *
- *  * They express the full sized list to the presentation layer (often a
- * [androidx.paging.PagedListAdapter]), and so can support scrollbars (without jumping as pages are
- * loaded or dropped) and fast-scrolling to any position, loaded or not.
- *  * They avoid the need for a loading spinner at the end of the loaded list, since the list
- * is always full sized.
+ * * They express the full sized list to the presentation layer (often a
+ *   [androidx.paging.PagedListAdapter]), and so can support scrollbars (without jumping as pages
+ *   are loaded or dropped) and fast-scrolling to any position, loaded or not.
+ * * They avoid the need for a loading spinner at the end of the loaded list, since the list is
+ *   always full sized.
  *
  * They also have drawbacks:
- *
- *  * Your Adapter needs to account for `null` items. This often means providing default
- * values in data you bind to a [androidx.recyclerview.widget.RecyclerView.ViewHolder].
- *  * They don't work well if your item views are of different sizes, as this will prevent
- * loading items from cross-fading nicely.
- *  * They require you to count your data set, which can be expensive or impossible, depending
- * on your [PagingSource].
+ * * Your Adapter needs to account for `null` items. This often means providing default values in
+ *   data you bind to a [androidx.recyclerview.widget.RecyclerView.ViewHolder].
+ * * They don't work well if your item views are of different sizes, as this will prevent loading
+ *   items from cross-fading nicely.
+ * * They require you to count your data set, which can be expensive or impossible, depending on
+ *   your [PagingSource].
  *
  * Placeholders are enabled by default, but can be disabled in two ways. They are disabled if the
- * [PagingSource] does not count its data set in its initial load, or if  `false` is passed to
+ * [PagingSource] does not count its data set in its initial load, or if `false` is passed to
  * [PagedList.Config.Builder.setEnablePlaceholders] when building a [PagedList.Config].
  *
  * ### Mutability and Snapshots
  *
- * A [PagedList] is *mutable* while loading, or ready to load from its [PagingSource].
- * As loads succeed, a mutable [PagedList] will be updated via Runnables on the main thread. You can
- * listen to these updates with a [PagedList.Callback]. (Note that [androidx.paging
- * .PagedListAdapter] will
+ * A [PagedList] is *mutable* while loading, or ready to load from its [PagingSource]. As loads
+ * succeed, a mutable [PagedList] will be updated via Runnables on the main thread. You can listen
+ * to these updates with a [PagedList.Callback]. (Note that [androidx.paging .PagedListAdapter] will
  * listen to these to signal RecyclerView about the updates/changes).
  *
  * If a [PagedList] attempts to load from an invalid [PagingSource], it will [detach] from the
@@ -116,11 +111,9 @@
  */
 @Suppress("DEPRECATION")
 @Deprecated("PagedList is deprecated and has been replaced by PagingData")
-public abstract class PagedList<T : Any> internal constructor(
-    /**
-     * The [PagingSource] that provides data to this [PagedList].
-     *
-     */
+public abstract class PagedList<T : Any>
+internal constructor(
+    /** The [PagingSource] that provides data to this [PagedList]. */
     @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public open val pagingSource: PagingSource<*, T>,
     internal val coroutineScope: CoroutineScope,
@@ -141,17 +134,15 @@
          *
          * @param pagingSource [PagingSource] providing data to the [PagedList]
          * @param notifyDispatcher [CoroutineDispatcher] that will use and consume data from the
-         * [PagedList]. Generally, this is the UI/main thread.
+         *   [PagedList]. Generally, this is the UI/main thread.
          * @param fetchDispatcher Data loading jobs will be dispatched to this
-         * [CoroutineDispatcher] - should be a background thread.
+         *   [CoroutineDispatcher] - should be a background thread.
          * @param boundaryCallback Optional boundary callback to attach to the list.
          * @param config [PagedList.Config], which defines how the [PagedList] will load data.
          * @param K Key type that indicates to the [PagingSource] what data to load.
          * @param T Type of items to be held and loaded by the [PagedList].
-         *
          * @return The newly created [PagedList], which will page in data from the [PagingSource] as
-         * needed.
-         *
+         *   needed.
          */
         @JvmStatic
         @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@@ -165,34 +156,38 @@
             config: Config,
             key: K?
         ): PagedList<T> {
-            val resolvedInitialPage = when (initialPage) {
-                null -> {
-                    // Compatibility codepath - perform the initial load immediately, since caller
-                    // hasn't done it. We block in this case, but it's only used in the legacy path.
-                    val params = PagingSource.LoadParams.Refresh(
-                        key,
-                        config.initialLoadSizeHint,
-                        config.enablePlaceholders,
-                    )
-                    runBlocking {
-                        val initialResult = pagingSource.load(params)
-                        when (initialResult) {
-                            is PagingSource.LoadResult.Page -> initialResult
-                            is PagingSource.LoadResult.Error -> throw initialResult.throwable
-                            is PagingSource.LoadResult.Invalid ->
-                                throw IllegalStateException(
-                                    "Failed to create PagedList. The provided PagingSource " +
-                                        "returned LoadResult.Invalid, but a LoadResult.Page was " +
-                                        "expected. To use a PagingSource which supports " +
-                                        "invalidation, use a PagedList builder that accepts a " +
-                                        "factory method for PagingSource or DataSource.Factory, " +
-                                        "such as LivePagedList."
-                                )
+            val resolvedInitialPage =
+                when (initialPage) {
+                    null -> {
+                        // Compatibility codepath - perform the initial load immediately, since
+                        // caller
+                        // hasn't done it. We block in this case, but it's only used in the legacy
+                        // path.
+                        val params =
+                            PagingSource.LoadParams.Refresh(
+                                key,
+                                config.initialLoadSizeHint,
+                                config.enablePlaceholders,
+                            )
+                        runBlocking {
+                            val initialResult = pagingSource.load(params)
+                            when (initialResult) {
+                                is PagingSource.LoadResult.Page -> initialResult
+                                is PagingSource.LoadResult.Error -> throw initialResult.throwable
+                                is PagingSource.LoadResult.Invalid ->
+                                    throw IllegalStateException(
+                                        "Failed to create PagedList. The provided PagingSource " +
+                                            "returned LoadResult.Invalid, but a LoadResult.Page was " +
+                                            "expected. To use a PagingSource which supports " +
+                                            "invalidation, use a PagedList builder that accepts a " +
+                                            "factory method for PagingSource or DataSource.Factory, " +
+                                            "such as LivePagedList."
+                                    )
+                            }
                         }
                     }
+                    else -> initialPage
                 }
-                else -> initialPage
-            }
             return ContiguousPagedList(
                 pagingSource,
                 coroutineScope,
@@ -242,9 +237,9 @@
      * [pagingSource], [config], [notifyDispatcher] and [fetchDispatcher] must all be provided.
      *
      * A [PagedList] queries initial data from its [PagingSource] during construction, to avoid
-     * empty [PagedList]s being presented to the UI when possible. It's preferred to present
-     * initial data, so that the UI doesn't show an empty list, or placeholders for a few frames,
-     * just before showing initial content.
+     * empty [PagedList]s being presented to the UI when possible. It's preferred to present initial
+     * data, so that the UI doesn't show an empty list, or placeholders for a few frames, just
+     * before showing initial content.
      *
      * [LivePagedListBuilder][androidx.paging.LivePagedListBuilder] does this creation on a
      * background thread automatically, if you want to receive a `LiveData<PagedList<...>>`.
@@ -253,8 +248,9 @@
      * @param Value Type of items held and loaded by the [PagedList].
      */
     @Deprecated(
-        message = "PagedList is deprecated and has been replaced by PagingData, which no " +
-            "longer supports constructing snapshots of loaded data manually.",
+        message =
+            "PagedList is deprecated and has been replaced by PagingData, which no " +
+                "longer supports constructing snapshots of loaded data manually.",
         replaceWith = ReplaceWith("Pager.flow", "androidx.paging.Pager")
     )
     public class Builder<Key : Any, Value : Any> {
@@ -275,7 +271,7 @@
          *
          * @param dataSource [DataSource] the [PagedList] will load from.
          * @param config [PagedList.Config] that defines how the [PagedList] loads data from its
-         * [DataSource].
+         *   [DataSource].
          */
         public constructor(dataSource: DataSource<Key, Value>, config: Config) {
             this.pagingSource = null
@@ -295,12 +291,12 @@
          *
          * @param dataSource [DataSource] the [PagedList] will load from.
          * @param pageSize Size of loaded pages when the [PagedList] loads data from its
-         * [DataSource].
+         *   [DataSource].
          */
-        public constructor(dataSource: DataSource<Key, Value>, pageSize: Int) : this(
-            dataSource = dataSource,
-            config = Config(pageSize)
-        )
+        public constructor(
+            dataSource: DataSource<Key, Value>,
+            pageSize: Int
+        ) : this(dataSource = dataSource, config = Config(pageSize))
 
         /**
          * Create a [PagedList.Builder] with the provided [PagingSource], initial
@@ -309,7 +305,7 @@
          * @param pagingSource [PagingSource] the [PagedList] will load from.
          * @param initialPage Initial page loaded from the [PagingSource].
          * @param config [PagedList.Config] that defines how the [PagedList] loads data from its
-         * [PagingSource].
+         *   [PagingSource].
          */
         public constructor(
             pagingSource: PagingSource<Key, Value>,
@@ -338,17 +334,13 @@
          * @param pagingSource [PagingSource] the [PagedList] will load from.
          * @param initialPage Initial page loaded from the [PagingSource].
          * @param pageSize Size of loaded pages when the [PagedList] loads data from its
-         * [PagingSource].
+         *   [PagingSource].
          */
         public constructor(
             pagingSource: PagingSource<Key, Value>,
             initialPage: PagingSource.LoadResult.Page<Key, Value>,
             pageSize: Int
-        ) : this(
-            pagingSource = pagingSource,
-            initialPage = initialPage,
-            config = Config(pageSize)
-        )
+        ) : this(pagingSource = pagingSource, initialPage = initialPage, config = Config(pageSize))
 
         /**
          * Set the [CoroutineScope] that page loads should be launched within.
@@ -362,9 +354,7 @@
          * @param coroutineScope
          * @return this
          */
-        public fun setCoroutineScope(
-            coroutineScope: CoroutineScope
-        ): Builder<Key, Value> = apply {
+        public fun setCoroutineScope(coroutineScope: CoroutineScope): Builder<Key, Value> = apply {
             this.coroutineScope = coroutineScope
         }
 
@@ -372,20 +362,20 @@
          * The [Executor] defining where page loading updates are dispatched.
          *
          * @param notifyExecutor [Executor] that receives [PagedList] updates, and where
-         * [PagedList.Callback] calls are dispatched. Generally, this is the ui/main thread.
+         *   [PagedList.Callback] calls are dispatched. Generally, this is the ui/main thread.
          * @return this
          */
         @Deprecated(
-            message = "Passing an executor will cause it get wrapped as a CoroutineDispatcher, " +
-                "consider passing a CoroutineDispatcher directly",
-            replaceWith = ReplaceWith(
-                "setNotifyDispatcher(fetchExecutor.asCoroutineDispatcher())",
-                "kotlinx.coroutines.asCoroutineDispatcher"
-            )
+            message =
+                "Passing an executor will cause it get wrapped as a CoroutineDispatcher, " +
+                    "consider passing a CoroutineDispatcher directly",
+            replaceWith =
+                ReplaceWith(
+                    "setNotifyDispatcher(fetchExecutor.asCoroutineDispatcher())",
+                    "kotlinx.coroutines.asCoroutineDispatcher"
+                )
         )
-        public fun setNotifyExecutor(
-            notifyExecutor: Executor
-        ): Builder<Key, Value> = apply {
+        public fun setNotifyExecutor(notifyExecutor: Executor): Builder<Key, Value> = apply {
             this.notifyDispatcher = notifyExecutor.asCoroutineDispatcher()
         }
 
@@ -393,14 +383,13 @@
          * The [CoroutineDispatcher] defining where page loading updates are dispatched.
          *
          * @param notifyDispatcher [CoroutineDispatcher] that receives [PagedList] updates, and
-         * where [PagedList.Callback] calls are dispatched. Generally, this is the ui/main thread.
+         *   where [PagedList.Callback] calls are dispatched. Generally, this is the ui/main thread.
          * @return this
          */
-        public fun setNotifyDispatcher(
-            notifyDispatcher: CoroutineDispatcher
-        ): Builder<Key, Value> = apply {
-            this.notifyDispatcher = notifyDispatcher
-        }
+        public fun setNotifyDispatcher(notifyDispatcher: CoroutineDispatcher): Builder<Key, Value> =
+            apply {
+                this.notifyDispatcher = notifyDispatcher
+            }
 
         /**
          * The [Executor] used to fetch additional pages from the [PagingSource].
@@ -409,20 +398,20 @@
          * [PagedList] is created on.
          *
          * @param fetchExecutor [Executor] used to fetch from [PagingSource]s, generally a
-         * background thread pool for e.g. I/O or network loading.
+         *   background thread pool for e.g. I/O or network loading.
          * @return this
          */
         @Deprecated(
-            message = "Passing an executor will cause it get wrapped as a CoroutineDispatcher, " +
-                "consider passing a CoroutineDispatcher directly",
-            replaceWith = ReplaceWith(
-                "setFetchDispatcher(fetchExecutor.asCoroutineDispatcher())",
-                "kotlinx.coroutines.asCoroutineDispatcher"
-            )
+            message =
+                "Passing an executor will cause it get wrapped as a CoroutineDispatcher, " +
+                    "consider passing a CoroutineDispatcher directly",
+            replaceWith =
+                ReplaceWith(
+                    "setFetchDispatcher(fetchExecutor.asCoroutineDispatcher())",
+                    "kotlinx.coroutines.asCoroutineDispatcher"
+                )
         )
-        public fun setFetchExecutor(
-            fetchExecutor: Executor
-        ): Builder<Key, Value> = apply {
+        public fun setFetchExecutor(fetchExecutor: Executor): Builder<Key, Value> = apply {
             this.fetchDispatcher = fetchExecutor.asCoroutineDispatcher()
         }
 
@@ -433,14 +422,13 @@
          * [PagedList] is created on.
          *
          * @param fetchDispatcher [CoroutineDispatcher] used to fetch from [PagingSource]s,
-         * generally a background thread pool for e.g. I/O or network loading.
+         *   generally a background thread pool for e.g. I/O or network loading.
          * @return this
          */
-        public fun setFetchDispatcher(
-            fetchDispatcher: CoroutineDispatcher
-        ): Builder<Key, Value> = apply {
-            this.fetchDispatcher = fetchDispatcher
-        }
+        public fun setFetchDispatcher(fetchDispatcher: CoroutineDispatcher): Builder<Key, Value> =
+            apply {
+                this.fetchDispatcher = fetchDispatcher
+            }
 
         /**
          * The [BoundaryCallback] for out of data events.
@@ -452,9 +440,7 @@
          */
         public fun setBoundaryCallback(
             boundaryCallback: BoundaryCallback<Value>?
-        ): Builder<Key, Value> = apply {
-            this.boundaryCallback = boundaryCallback
-        }
+        ): Builder<Key, Value> = apply { this.boundaryCallback = boundaryCallback }
 
         /**
          * Sets the initial key the [PagingSource] should load around as part of initialization.
@@ -462,9 +448,7 @@
          * @param initialKey Key the [PagingSource] should load around as part of initialization.
          * @return this
          */
-        public fun setInitialKey(
-            initialKey: Key?
-        ): Builder<Key, Value> = apply {
+        public fun setInitialKey(initialKey: Key?): Builder<Key, Value> = apply {
             this.initialKey = initialKey
         }
 
@@ -488,18 +472,16 @@
          * happens, the [PagedList] will be immediately [detached][PagedList.isDetached], and you
          * can retry construction (including setting a new [PagingSource]).
          *
-         * @throws IllegalArgumentException if [notifyDispatcher] or [fetchDispatcher] are not set.
-         *
          * @return The newly constructed [PagedList]
+         * @throws IllegalArgumentException if [notifyDispatcher] or [fetchDispatcher] are not set.
          */
         public fun build(): PagedList<Value> {
             val fetchDispatcher = fetchDispatcher ?: Dispatchers.IO
-            val pagingSource = pagingSource ?: dataSource?.let { dataSource ->
-                LegacyPagingSource(
-                    fetchContext = fetchDispatcher,
-                    dataSource = dataSource
-                )
-            }
+            val pagingSource =
+                pagingSource
+                    ?: dataSource?.let { dataSource ->
+                        LegacyPagingSource(fetchContext = fetchDispatcher, dataSource = dataSource)
+                    }
 
             if (pagingSource is LegacyPagingSource) {
                 pagingSource.setPageSize(config.pageSize)
@@ -525,9 +507,9 @@
     /**
      * Callback signaling when content is loaded into the list.
      *
-     * Can be used to listen to items being paged in and out. These calls will be dispatched on
-     * the dispatcher defined by [PagedList.Builder.setNotifyDispatcher], which is generally the
-     * main/UI thread.
+     * Can be used to listen to items being paged in and out. These calls will be dispatched on the
+     * dispatcher defined by [PagedList.Builder.setNotifyDispatcher], which is generally the main/UI
+     * thread.
      */
     public abstract class Callback {
         /**
@@ -535,7 +517,7 @@
          * data that hasn't been used in a while has been dropped, and swapped back to null.
          *
          * @param position Position of first newly loaded items, out of total number of items
-         * (including padded nulls).
+         *   (including padded nulls).
          * @param count Number of items loaded.
          */
         public abstract fun onChanged(position: Int, count: Int)
@@ -544,7 +526,7 @@
          * Called when new items have been loaded at the end or beginning of the list.
          *
          * @param position Position of the first newly loaded item (in practice, either `0` or
-         * `size - 1`.
+         *   `size - 1`.
          * @param count Number of items loaded.
          */
         public abstract fun onInserted(position: Int, count: Int)
@@ -554,7 +536,7 @@
          * been replaced by padded nulls.
          *
          * @param position Position of the first newly loaded item (in practice, either `0` or
-         * `size - 1`.
+         *   `size - 1`.
          * @param count Number of items loaded.
          */
         public abstract fun onRemoved(position: Int, count: Int)
@@ -567,12 +549,10 @@
      * [setPageSize][PagedList.Config.Builder.setPageSize], which defines number of items loaded at
      * a time.
      */
-    public class Config internal constructor(
-        /**
-         * Size of each page loaded by the PagedList.
-         */
-        @JvmField
-        public val pageSize: Int,
+    public class Config
+    internal constructor(
+        /** Size of each page loaded by the PagedList. */
+        @JvmField public val pageSize: Int,
         /**
          * Prefetch distance which defines how far ahead to load.
          *
@@ -581,19 +561,14 @@
          *
          * @see PagedList.loadAround
          */
-        @JvmField
-        public val prefetchDistance: Int,
+        @JvmField public val prefetchDistance: Int,
         /**
          * Defines whether the [PagedList] may display null placeholders, if the [PagingSource]
          * provides them.
          */
-        @JvmField
-        public val enablePlaceholders: Boolean,
-        /**
-         * Size hint for initial load of PagedList, often larger than a regular page.
-         */
-        @JvmField
-        public val initialLoadSizeHint: Int,
+        @JvmField public val enablePlaceholders: Boolean,
+        /** Size hint for initial load of PagedList, often larger than a regular page. */
+        @JvmField public val initialLoadSizeHint: Int,
         /**
          * Defines the maximum number of items that may be loaded into this pagedList before pages
          * should be dropped.
@@ -603,8 +578,7 @@
          * @see PagedList.Config.Companion.MAX_SIZE_UNBOUNDED
          * @see PagedList.Config.Builder.setMaxSize
          */
-        @JvmField
-        public val maxSize: Int
+        @JvmField public val maxSize: Int
     ) {
         /**
          * Builder class for [PagedList.Config].
@@ -635,12 +609,9 @@
              *
              * @param pageSize Number of items loaded at once from the [PagingSource].
              * @return this
-             *
              * @throws IllegalArgumentException if pageSize is < `1`.
              */
-            public fun setPageSize(
-                @IntRange(from = 1) pageSize: Int
-            ): Builder = apply {
+            public fun setPageSize(@IntRange(from = 1) pageSize: Int): Builder = apply {
                 if (pageSize < 1) {
                     throw IllegalArgumentException("Page size must be a positive number")
                 }
@@ -662,31 +633,29 @@
              * @param prefetchDistance Distance the [PagedList] should prefetch.
              * @return this
              */
-            public fun setPrefetchDistance(
-                @IntRange(from = 0) prefetchDistance: Int
-            ): Builder = apply {
-                this.prefetchDistance = prefetchDistance
-            }
+            public fun setPrefetchDistance(@IntRange(from = 0) prefetchDistance: Int): Builder =
+                apply {
+                    this.prefetchDistance = prefetchDistance
+                }
 
             /**
-             * Pass false to disable null placeholders in [PagedList]s using this [PagedList.Config].
+             * Pass false to disable null placeholders in [PagedList]s using this
+             * [PagedList.Config].
              *
              * If not set, defaults to true.
              *
              * A [PagedList] will present null placeholders for not-yet-loaded content if two
              * conditions are met:
-             *
              * 1) Its [PagingSource] can count all unloaded items (so that the number of nulls to
-             * present is known).
-             *
+             *    present is known).
              * 2) placeholders are not disabled on the [PagedList.Config].
              *
-             * Call `setEnablePlaceholders(false)` to ensure the receiver of the PagedList
-             * (often a [androidx.paging.PagedListAdapter]) doesn't need to account for null items.
+             * Call `setEnablePlaceholders(false)` to ensure the receiver of the PagedList (often a
+             * [androidx.paging.PagedListAdapter]) doesn't need to account for null items.
              *
              * If placeholders are disabled, not-yet-loaded content will not be present in the list.
-             * Paging will still occur, but as items are loaded or removed, they will be signaled
-             * as inserts to the [PagedList.Callback].
+             * Paging will still occur, but as items are loaded or removed, they will be signaled as
+             * inserts to the [PagedList.Callback].
              *
              * [PagedList.Callback.onChanged] will not be issued as part of loading, though a
              * [androidx.paging.PagedListAdapter] may still receive change events as a result of
@@ -695,9 +664,7 @@
              * @param enablePlaceholders `false` if null placeholders should be disabled.
              * @return this
              */
-            public fun setEnablePlaceholders(
-                enablePlaceholders: Boolean
-            ): Builder = apply {
+            public fun setEnablePlaceholders(enablePlaceholders: Boolean): Builder = apply {
                 this.enablePlaceholders = enablePlaceholders
             }
 
@@ -714,9 +681,7 @@
              */
             public fun setInitialLoadSizeHint(
                 @IntRange(from = 1) initialLoadSizeHint: Int
-            ): Builder = apply {
-                this.initialLoadSizeHint = initialLoadSizeHint
-            }
+            ): Builder = apply { this.initialLoadSizeHint = initialLoadSizeHint }
 
             /**
              * Defines how many items to keep loaded at once.
@@ -731,20 +696,19 @@
              * The max size specified here best effort, not a guarantee. In practice, if [maxSize]
              * is many times the page size, the number of items held by the [PagedList] will not
              * grow above this number. Exceptions are made as necessary to guarantee:
-             *  * Pages are never dropped until there are more than two pages loaded. Note that
-             * a [PagingSource] may not be held strictly to
-             * [requested pageSize][PagedList.Config.pageSize], so two pages may be larger than
-             * expected.
-             *  * Pages are never dropped if they are within a prefetch window (defined to be
-             * `pageSize + (2 * prefetchDistance)`) of the most recent load.
+             * * Pages are never dropped until there are more than two pages loaded. Note that a
+             *   [PagingSource] may not be held strictly to
+             *   [requested pageSize][PagedList.Config.pageSize], so two pages may be larger than
+             *   expected.
+             * * Pages are never dropped if they are within a prefetch window (defined to be
+             *   `pageSize + (2 * prefetchDistance)`) of the most recent load.
              *
              * If not set, defaults to [PagedList.Config.Companion.MAX_SIZE_UNBOUNDED], which
              * disables page dropping.
              *
              * @param maxSize Maximum number of items to keep in memory, or
-             * [PagedList.Config.Companion.MAX_SIZE_UNBOUNDED] to disable page dropping.
+             *   [PagedList.Config.Companion.MAX_SIZE_UNBOUNDED] to disable page dropping.
              * @return this
-             *
              * @see Config.MAX_SIZE_UNBOUNDED
              * @see Config.maxSize
              */
@@ -756,11 +720,10 @@
              * Creates a [PagedList.Config] with the given parameters.
              *
              * @return A new [PagedList.Config].
-             *
-             * @throws IllegalArgumentException if placeholders are disabled and prefetchDistance
-             * is set to 0
+             * @throws IllegalArgumentException if placeholders are disabled and prefetchDistance is
+             *   set to 0
              * @throws IllegalArgumentException if maximum size is less than pageSize +
-             * 2*prefetchDistance
+             *   2*prefetchDistance
              */
             public fun build(): Config {
                 if (prefetchDistance < 0) {
@@ -803,8 +766,7 @@
              * When [maxSize] is set to [MAX_SIZE_UNBOUNDED], the maximum number of items loaded is
              * unbounded, and pages will never be dropped.
              */
-            @Suppress("MinMaxConstant")
-            const val MAX_SIZE_UNBOUNDED = Int.MAX_VALUE
+            @Suppress("MinMaxConstant") const val MAX_SIZE_UNBOUNDED = Int.MAX_VALUE
         }
     }
 
@@ -829,8 +791,8 @@
      * The database + network Repository in the
      * [PagingWithNetworkSample](https://github.com/googlesamples/android-architecture-components/blob/master/PagingWithNetworkSample/README.md)
      * shows how to implement a network BoundaryCallback using
-     * [Retrofit](https://square.github.io/retrofit/), while handling swipe-to-refresh,
-     * network errors, and retry.
+     * [Retrofit](https://square.github.io/retrofit/), while handling swipe-to-refresh, network
+     * errors, and retry.
      *
      * ### Requesting Network Data
      * [BoundaryCallback] only passes the item at front or end of the list when out of data. This
@@ -842,26 +804,24 @@
      * If this is the case, the paging library doesn't know about the page key or index used in the
      * [BoundaryCallback], so you need to track it yourself. You can do this in one of two ways:
      *
-     * <h5>Local storage Page key</h5>
-     * If you want to perfectly resume your query, even if the app is killed and resumed, you can
-     * store the key on disk. Note that with a positional/page index network API, there's a simple
-     * way to do this, by using the `listSize` as an input to the next load (or
-     * `listSize / NETWORK_PAGE_SIZE`, for page indexing).
+     * <h5>Local storage Page key</h5> If you want to perfectly resume your query, even if the app
+     * is killed and resumed, you can store the key on disk. Note that with a positional/page index
+     * network API, there's a simple way to do this, by using the `listSize` as an input to the next
+     * load (or `listSize / NETWORK_PAGE_SIZE`, for page indexing).
      *
      * The current list size isn't passed to the BoundaryCallback though. This is because the
      * PagedList doesn't necessarily know the number of items in local storage. Placeholders may be
      * disabled, or the [PagingSource] may not count total number of items.
      *
      * Instead, for these positional cases, you can query the database for the number of items, and
-     * pass that to the network.
-     * <h5>In-Memory Page key</h5>
-     * Often it doesn't make sense to query the next page from network if the last page you fetched
-     * was loaded many hours or days before. If you keep the key in memory, you can refresh any time
-     * you start paging from a network source.
+     * pass that to the network. <h5>In-Memory Page key</h5> Often it doesn't make sense to query
+     * the next page from network if the last page you fetched was loaded many hours or days before.
+     * If you keep the key in memory, you can refresh any time you start paging from a network
+     * source.
      *
      * Store the next key in memory, inside your BoundaryCallback. When you create a new
-     * BoundaryCallback when creating a new `LiveData`/`Observable` of
-     * `PagedList`, refresh data. For example,
+     * BoundaryCallback when creating a new `LiveData`/`Observable` of `PagedList`, refresh data.
+     * For example,
      * [in the Paging Codelab](https://codelabs.developers.google.com/codelabs/android-paging/index.html#8),
      * the GitHub network page index is stored in memory.
      *
@@ -885,8 +845,8 @@
         public open fun onItemAtFrontLoaded(itemAtFront: T) {}
 
         /**
-         * Called when the item at the end of the PagedList has been loaded, and access has
-         * occurred within [PagedList.Config.prefetchDistance] of it.
+         * Called when the item at the end of the PagedList has been loaded, and access has occurred
+         * within [PagedList.Config.prefetchDistance] of it.
          *
          * No more data will be appended to the [PagedList] after this item.
          *
@@ -940,7 +900,6 @@
      * Last access location in list.
      *
      * Used by list diffing to re-initialize loading near viewport.
-     *
      */
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
     public fun lastLoad(): Int = storage.lastLoadAroundIndex
@@ -962,13 +921,14 @@
         get() = storage.size
 
     /**
-     * @throws IllegalStateException if this [PagedList] was instantiated without a
-     * wrapping a backing [DataSource]
+     * @throws IllegalStateException if this [PagedList] was instantiated without a wrapping a
+     *   backing [DataSource]
      */
     @Deprecated(
-        message = "DataSource is deprecated and has been replaced by PagingSource. PagedList " +
-            "offers indirect ways of controlling fetch ('loadAround()', 'retry()') so that " +
-            "you should not need to access the DataSource/PagingSource."
+        message =
+            "DataSource is deprecated and has been replaced by PagingSource. PagedList " +
+                "offers indirect ways of controlling fetch ('loadAround()', 'retry()') so that " +
+                "you should not need to access the DataSource/PagingSource."
     )
     public val dataSource: DataSource<*, T>
         @Suppress("DocumentExceptions")
@@ -1009,8 +969,7 @@
     @RestrictTo(RestrictTo.Scope.LIBRARY)
     public abstract fun dispatchCurrentLoadState(callback: (LoadType, LoadState) -> Unit)
 
-    @RestrictTo(RestrictTo.Scope.LIBRARY)
-    public abstract fun loadAroundInternal(index: Int)
+    @RestrictTo(RestrictTo.Scope.LIBRARY) public abstract fun loadAroundInternal(index: Int)
 
     /**
      * Detach the [PagedList] from its [PagingSource], and attempt to load no more data.
@@ -1030,7 +989,6 @@
      * equivalent to [size].
      *
      * @return Number of items currently loaded, not counting placeholders.
-     *
      * @see size
      */
     public val loadedCount: Int
@@ -1052,18 +1010,17 @@
     /**
      * Position offset of the data in the list.
      *
-     * If the PagingSource backing this PagedList is counted, the item returned from `get(i)` has
-     * a position in the original data set of `i + getPositionOffset()`.
+     * If the PagingSource backing this PagedList is counted, the item returned from `get(i)` has a
+     * position in the original data set of `i + getPositionOffset()`.
      *
-     * If placeholders are enabled, this value is always `0`, since `get(i)` will return either
-     * the data in its original index, or null if it is not loaded.
+     * If placeholders are enabled, this value is always `0`, since `get(i)` will return either the
+     * data in its original index, or null if it is not loaded.
      */
     public val positionOffset: Int
         get() = storage.positionOffset
 
     @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    public open fun setInitialLoadState(loadType: LoadType, loadState: LoadState) {
-    }
+    public open fun setInitialLoadState(loadType: LoadType, loadState: LoadState) {}
 
     /**
      * Retry any errors associated with this [PagedList].
@@ -1097,8 +1054,7 @@
      *
      * @param index Index in the loaded item list. Must be >= 0, and < [size]
      * @return The item at the passed index, or `null` if a `null` placeholder is at the specified
-     * position.
-     *
+     *   position.
      * @see size
      */
     public override fun get(index: Int): T? = storage[index]
@@ -1107,7 +1063,6 @@
      * Load adjacent items to passed index.
      *
      * @param index Index at which to load.
-     *
      * @throws IndexOutOfBoundsException if index is not within bounds.
      */
     public fun loadAround(index: Int) {
@@ -1126,16 +1081,16 @@
      *
      * @return Immutable snapshot of [PagedList] data.
      */
-    public fun snapshot(): List<T> = when {
-        isImmutable -> this
-        else -> SnapshotPagedList(this)
-    }
+    public fun snapshot(): List<T> =
+        when {
+            isImmutable -> this
+            else -> SnapshotPagedList(this)
+        }
 
     /**
      * Add a listener to observe the loading state of the [PagedList].
      *
      * @param listener Listener to receive updates.
-     *
      * @see removeWeakLoadStateListener
      */
     public fun addWeakLoadStateListener(listener: (LoadType, LoadState) -> Unit) {
@@ -1151,7 +1106,6 @@
      * Remove a previously registered load state listener.
      *
      * @param listener Previously registered listener.
-     *
      * @see addWeakLoadStateListener
      */
     public fun removeWeakLoadStateListener(listener: (LoadType, LoadState) -> Unit) {
@@ -1163,20 +1117,19 @@
      *
      * If [previousSnapshot] is passed, the [callback] will also immediately be dispatched any
      * differences between the previous snapshot, and the current state. For example, if the
-     * previousSnapshot was of 5 nulls, 10 items, 5 nulls, and the current state was 5 nulls,
-     * 12 items, 3 nulls, the callback would immediately receive a call of`onChanged(14, 2)`.
+     * previousSnapshot was of 5 nulls, 10 items, 5 nulls, and the current state was 5 nulls, 12
+     * items, 3 nulls, the callback would immediately receive a call of`onChanged(14, 2)`.
      *
      * This allows an observer that's currently presenting a snapshot to catch up to the most recent
      * version, including any changes that may have been made.
      *
      * The callback is internally held as weak reference, so [PagedList] doesn't hold a strong
-     * reference to its observer, such as a [PagedListAdapter][androidx.paging.PagedListAdapter].
-     * If an adapter were held with a strong reference, it would be necessary to clear its
-     * [PagedList] observer before it could be GC'd.
+     * reference to its observer, such as a [PagedListAdapter][androidx.paging.PagedListAdapter]. If
+     * an adapter were held with a strong reference, it would be necessary to clear its [PagedList]
+     * observer before it could be GC'd.
      *
      * @param previousSnapshot Snapshot previously captured from this List, or `null`.
      * @param callback [PagedList.Callback] to dispatch to.
-     *
      * @see removeWeakCallback
      */
     @Deprecated(
@@ -1200,7 +1153,6 @@
      * it could be GC'd.
      *
      * @param callback Callback to dispatch to.
-     *
      * @see removeWeakCallback
      */
     @Suppress("RegistrationName")
@@ -1216,7 +1168,6 @@
      * Removes a previously added callback.
      *
      * @param callback Callback, previously added.
-     *
      * @see addWeakCallback
      */
     @Suppress("RegistrationName")
@@ -1250,16 +1201,13 @@
  * @param dataSource [DataSource] the [PagedList] will load from.
  * @param config Config that defines how the [PagedList] loads data from its [DataSource].
  * @param notifyExecutor [Executor] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI/main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI/main thread.
  * @param fetchExecutor [Executor] used to fetch from [DataSource]s, generally a background thread
- * pool for e.g. I/O or network loading.
+ *   pool for e.g. I/O or network loading.
  * @param boundaryCallback [PagedList.BoundaryCallback] for listening to out-of-data events.
  * @param initialKey [Key] the [DataSource] should load around as part of initialization.
  */
-@Suppress(
-    "FunctionName",
-    "DEPRECATION"
-)
+@Suppress("FunctionName", "DEPRECATION")
 @JvmSynthetic
 @Deprecated("DataSource is deprecated and has been replaced by PagingSource")
 public fun <Key : Any, Value : Any> PagedList(
@@ -1282,8 +1230,9 @@
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 public fun <Key : Any> PagedList.Config.toRefreshLoadParams(
     key: Key?
-): PagingSource.LoadParams<Key> = PagingSource.LoadParams.Refresh(
-    key,
-    initialLoadSizeHint,
-    enablePlaceholders,
-)
+): PagingSource.LoadParams<Key> =
+    PagingSource.LoadParams.Refresh(
+        key,
+        initialLoadSizeHint,
+        enablePlaceholders,
+    )
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedListConfig.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedListConfig.kt
index a1e4299..c35fd13 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedListConfig.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedListConfig.kt
@@ -24,13 +24,9 @@
  * @param enablePlaceholders False if null placeholders should be disabled.
  * @param initialLoadSizeHint Number of items to load while initializing the PagedList.
  * @param maxSize Maximum number of items to keep in memory, or
- * [PagedList.Config.MAX_SIZE_UNBOUNDED] to disable page dropping.
+ *   [PagedList.Config.MAX_SIZE_UNBOUNDED] to disable page dropping.
  */
-@Suppress(
-    "FunctionName",
-    "DEPRECATION",
-    "ReferencesDeprecated"
-)
+@Suppress("FunctionName", "DEPRECATION", "ReferencesDeprecated")
 @JvmSynthetic
 public fun Config(
     pageSize: Int,
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedStorage.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedStorage.jvm.kt
index c6d537b..c624460 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedStorage.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagedStorage.jvm.kt
@@ -27,13 +27,12 @@
  * prefetching.
  */
 internal class PagedStorage<T : Any> :
-    AbstractList<T>,
-    LegacyPageFetcher.KeyProvider<Any>,
-    PlaceholderPaddedList<T> {
+    AbstractList<T>, LegacyPageFetcher.KeyProvider<Any>, PlaceholderPaddedList<T> {
     private val pages = mutableListOf<Page<*, T>>()
 
     internal val firstLoadedItem: T
         get() = pages.first().data.first()
+
     internal val lastLoadedItem: T
         get() = pages.last().data.last()
 
@@ -48,15 +47,11 @@
 
     private var counted = true
 
-    /**
-     * Number of loaded items held by [pages].
-     */
+    /** Number of loaded items held by [pages]. */
     override var dataCount: Int = 0
         private set
 
-    /**
-     * Last accessed index for loadAround in storage space
-     */
+    /** Last accessed index for loadAround in storage space */
     private var lastLoadAroundLocalIndex: Int = 0
     var lastLoadAroundIndex: Int
         get() = placeholdersBefore + lastLoadAroundLocalIndex
@@ -69,11 +64,7 @@
 
     constructor()
 
-    constructor(
-        leadingNulls: Int,
-        page: Page<*, T>,
-        trailingNulls: Int
-    ) : this() {
+    constructor(leadingNulls: Int, page: Page<*, T>, trailingNulls: Int) : this() {
         init(leadingNulls, page, trailingNulls, 0, true)
     }
 
@@ -124,23 +115,25 @@
     // ------------- Adjacent Provider interface ------------------
 
     override val prevKey: Any?
-        get() = if (!counted || placeholdersBefore + positionOffset > 0) {
-            pages.first().prevKey
-        } else {
-            null
-        }
+        get() =
+            if (!counted || placeholdersBefore + positionOffset > 0) {
+                pages.first().prevKey
+            } else {
+                null
+            }
 
     override val nextKey: Any?
-        get() = if (!counted || placeholdersAfter > 0) {
-            pages.last().nextKey
-        } else {
-            null
-        }
+        get() =
+            if (!counted || placeholdersAfter > 0) {
+                pages.last().nextKey
+            } else {
+                null
+            }
 
     /**
      * Traverse to the page and pageInternalIndex of localIndex.
      *
-     * Bounds check (between 0 and storageCount) must be performed  before calling this function.
+     * Bounds check (between 0 and storageCount) must be performed before calling this function.
      */
     private inline fun <V> traversePages(
         localIndex: Int,
@@ -163,13 +156,9 @@
         return onLastPage(pages[localPageIndex], pageInternalIndex)
     }
 
-    /**
-     * Walk through the list of pages to find the data at local index
-     */
+    /** Walk through the list of pages to find the data at local index */
     override fun getItem(index: Int): T =
-        traversePages(index) { page, pageInternalIndex ->
-            page.data[pageInternalIndex]
-        }
+        traversePages(index) { page, pageInternalIndex -> page.data[pageInternalIndex] }
 
     fun getRefreshKeyInfo(@Suppress("DEPRECATION") config: PagedList.Config): PagingState<*, T>? {
         if (pages.isEmpty()) {
@@ -180,13 +169,14 @@
         return PagingState(
             pages = pages.toList() as List<Page<Any, T>>,
             anchorPosition = lastLoadAroundIndex,
-            config = PagingConfig(
-                config.pageSize,
-                config.prefetchDistance,
-                config.enablePlaceholders,
-                config.initialLoadSizeHint,
-                config.maxSize
-            ),
+            config =
+                PagingConfig(
+                    config.pageSize,
+                    config.prefetchDistance,
+                    config.enablePlaceholders,
+                    config.initialLoadSizeHint,
+                    config.maxSize
+                ),
             leadingPlaceholderCount = placeholdersBefore
         )
     }
@@ -206,9 +196,13 @@
     @RestrictTo(RestrictTo.Scope.LIBRARY)
     interface Callback {
         fun onInitialized(count: Int)
+
         fun onPagePrepended(leadingNulls: Int, changed: Int, added: Int)
+
         fun onPageAppended(endPosition: Int, changed: Int, added: Int)
+
         fun onPagesRemoved(startOfDrops: Int, count: Int)
+
         fun onPagesSwappedToPlaceholder(startOfDrops: Int, count: Int)
     }
 
@@ -239,9 +233,7 @@
         needsTrim(maxSize, requiredRemaining, pages.size - 1)
 
     fun shouldPreTrimNewPage(maxSize: Int, requiredRemaining: Int, countToBeAdded: Int) =
-        dataCount + countToBeAdded > maxSize &&
-            pages.size > 1 &&
-            dataCount >= requiredRemaining
+        dataCount + countToBeAdded > maxSize && pages.size > 1 && dataCount >= requiredRemaining
 
     internal fun trimFromFront(
         insertNulls: Boolean,
@@ -341,10 +333,7 @@
             placeholdersAfter -= changedCount
         }
 
-        callback?.onPageAppended(
-            placeholdersBefore + dataCount - count,
-            changedCount, addedCount
-        )
+        callback?.onPageAppended(placeholdersBefore + dataCount - count, changedCount, addedCount)
     }
 
     override fun toString(): String =
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagingDataTransforms.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagingDataTransforms.jvm.kt
index 5184f3f..eed8965 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagingDataTransforms.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PagingDataTransforms.jvm.kt
@@ -25,8 +25,8 @@
 import kotlinx.coroutines.withContext
 
 /**
- * Returns a [PagingData] containing the result of applying the given [transform] to each
- * element, as it is loaded.
+ * Returns a [PagingData] containing the result of applying the given [transform] to each element,
+ * as it is loaded.
  *
  * @see PagingData.map
  */
@@ -35,14 +35,12 @@
     executor: Executor,
     transform: (T) -> R,
 ): PagingData<R> = transform { event ->
-    withContext(executor.asCoroutineDispatcher()) {
-        event.map { transform(it) }
-    }
+    withContext(executor.asCoroutineDispatcher()) { event.map { transform(it) } }
 }
 
 /**
- * Returns a [PagingData] of all elements returned from applying the given [transform]
- * to each element, as it is loaded.
+ * Returns a [PagingData] of all elements returned from applying the given [transform] to each
+ * element, as it is loaded.
  *
  * @see flatMap
  */
@@ -51,9 +49,7 @@
     executor: Executor,
     transform: (T) -> Iterable<R>
 ): PagingData<R> = transform { event ->
-    withContext(executor.asCoroutineDispatcher()) {
-        event.flatMap { transform(it) }
-    }
+    withContext(executor.asCoroutineDispatcher()) { event.flatMap { transform(it) } }
 }
 
 /**
@@ -67,22 +63,18 @@
     executor: Executor,
     predicate: (T) -> Boolean
 ): PagingData<T> = transform { event ->
-    withContext(executor.asCoroutineDispatcher()) {
-        event.filter { predicate(it) }
-    }
+    withContext(executor.asCoroutineDispatcher()) { event.filter { predicate(it) } }
 }
 
 // NOTE: samples in the doc below are manually imported from Java code in the samples
 // project, since Java cannot be linked with @sample.
 // DO NOT CHANGE THE BELOW COMMENT WITHOUT MAKING THE CORRESPONDING CHANGE IN `samples/`
 /**
+ * Returns a [PagingData] containing each original element, with an optional separator generated by
+ * [generator], given the elements before and after (or null, in boundary conditions).
  *
- * Returns a [PagingData] containing each original element, with an optional separator
- * generated by [generator], given the elements before and after (or null, in boundary
- * conditions).
- *
- * Note that this transform is applied asynchronously, as pages are loaded. Potential
- * separators between pages are only computed once both pages are loaded.
+ * Note that this transform is applied asynchronously, as pages are loaded. Potential separators
+ * between pages are only computed once both pages are loaded.
  *
  * **Kotlin callers should instead use the suspending extension function variant of
  * insertSeparators**
@@ -164,16 +156,14 @@
  * }
  * ```
  *
- * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and
- * footer are added.
- *
+ * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and footer
+ *   are added.
  * @param executor [Executor] to run the [generator] function in.
- *
- * @param generator Generator function used to construct a separator item given the item before
- * and the item after. For terminal separators (header and footer), the arguments passed to the
- * generator, `before` and `after`, will be `null` respectively. In cases where the fully paginated
- * list is empty, a single separator will be added where both `before` and `after` items are `null`.
- *
+ * @param generator Generator function used to construct a separator item given the item before and
+ *   the item after. For terminal separators (header and footer), the arguments passed to the
+ *   generator, `before` and `after`, will be `null` respectively. In cases where the fully
+ *   paginated list is empty, a single separator will be added where both `before` and `after` items
+ *   are `null`.
  */
 @CheckResult
 @JvmOverloads
@@ -183,8 +173,6 @@
     generator: (T?, T?) -> R?,
 ): PagingData<R> {
     return insertSeparators(terminalSeparatorType) { before, after ->
-        withContext(executor.asCoroutineDispatcher()) {
-            generator(before, after)
-        }
+        withContext(executor.asCoroutineDispatcher()) { generator(before, after) }
     }
 }
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PositionalDataSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PositionalDataSource.jvm.kt
index 3ef7545..74e7e2b 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PositionalDataSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/PositionalDataSource.jvm.kt
@@ -28,9 +28,9 @@
  * Position-based data loader for a fixed-size, countable data set, supporting fixed-size loads at
  * arbitrary page positions.
  *
- * Extend PositionalDataSource if you can load pages of a requested size at arbitrary positions,
- * and provide a fixed item count. If your data source can't support loading arbitrary requested
- * page sizes (e.g. when network page size constraints are only known at runtime), either use
+ * Extend PositionalDataSource if you can load pages of a requested size at arbitrary positions, and
+ * provide a fixed item count. If your data source can't support loading arbitrary requested page
+ * sizes (e.g. when network page size constraints are only known at runtime), either use
  * [PageKeyedDataSource] or [ItemKeyedDataSource], or pass the initial result with the two parameter
  * [LoadInitialCallback.onResult].
  *
@@ -47,16 +47,11 @@
  */
 @Deprecated(
     message = "PositionalDataSource is deprecated and has been replaced by PagingSource",
-    replaceWith = ReplaceWith(
-        "PagingSource<Int, T>",
-        "androidx.paging.PagingSource"
-    )
+    replaceWith = ReplaceWith("PagingSource<Int, T>", "androidx.paging.PagingSource")
 )
 public abstract class PositionalDataSource<T : Any> : DataSource<Int, T>(POSITIONAL) {
 
-    /**
-     * Holder object for inputs to [loadInitial].
-     */
+    /** Holder object for inputs to [loadInitial]. */
     public open class LoadInitialParams(
         /**
          * Initial load position requested.
@@ -64,60 +59,46 @@
          * Note that this may not be within the bounds of your data set, it may need to be adjusted
          * before you execute your load.
          */
-        @JvmField
-        public val requestedStartPosition: Int,
+        @JvmField public val requestedStartPosition: Int,
         /**
          * Requested number of items to load.
          *
          * Note that this may be larger than available data.
          */
-        @JvmField
-        public val requestedLoadSize: Int,
+        @JvmField public val requestedLoadSize: Int,
         /**
          * Defines page size acceptable for return values.
          *
          * List of items passed to the callback must be an integer multiple of page size.
          */
-        @JvmField
-        public val pageSize: Int,
+        @JvmField public val pageSize: Int,
         /**
          * Defines whether placeholders are enabled, and whether the loaded total count will be
          * ignored.
          */
-        @JvmField
-        public val placeholdersEnabled: Boolean
+        @JvmField public val placeholdersEnabled: Boolean
     ) {
         init {
-            check(requestedStartPosition >= 0) {
-                "invalid start position: $requestedStartPosition"
-            }
-            check(requestedLoadSize >= 0) {
-                "invalid load size: $requestedLoadSize"
-            }
-            check(pageSize >= 0) {
-                "invalid page size: $pageSize"
-            }
+            check(requestedStartPosition >= 0) { "invalid start position: $requestedStartPosition" }
+            check(requestedLoadSize >= 0) { "invalid load size: $requestedLoadSize" }
+            check(pageSize >= 0) { "invalid page size: $pageSize" }
         }
     }
 
-    /**
-     * Holder object for inputs to [loadRange].
-     */
+    /** Holder object for inputs to [loadRange]. */
     public open class LoadRangeParams(
         /**
          * START position of data to load.
          *
          * Returned data must start at this position.
          */
-        @JvmField
-        public val startPosition: Int,
+        @JvmField public val startPosition: Int,
         /**
          * Number of items to load.
          *
          * Returned data must be of this size, unless at end of the list.
          */
-        @JvmField
-        public val loadSize: Int
+        @JvmField public val loadSize: Int
     )
 
     /**
@@ -142,12 +123,12 @@
          * [LoadInitialParams.placeholdersEnabled] is false), you can instead call [onResult].
          *
          * @param data List of items loaded from the [DataSource]. If this is empty, the
-         * [DataSource] is treated as empty, and no further loads will occur.
+         *   [DataSource] is treated as empty, and no further loads will occur.
          * @param position Position of the item at the front of the list. If there are N items
-         * before the items in data that can be loaded from this DataSource, pass N.
+         *   before the items in data that can be loaded from this DataSource, pass N.
          * @param totalCount Total number of items that may be returned from this DataSource.
-         * Includes the number in the initial [data] parameter as well as any items that can be
-         * loaded in front or behind of [data].
+         *   Includes the number in the initial [data] parameter as well as any items that can be
+         *   loaded in front or behind of [data].
          */
         public abstract fun onResult(data: List<T>, position: Int, totalCount: Int)
 
@@ -163,9 +144,9 @@
          * [onResult].
          *
          * @param data List of items loaded from the [DataSource]. If this is empty, the
-         * [DataSource] is treated as empty, and no further loads will occur.
+         *   [DataSource] is treated as empty, and no further loads will occur.
          * @param position Position of the item at the front of the list. If there are N items
-         * before the items in data that can be provided by this [DataSource], pass N.
+         *   before the items in data that can be provided by this [DataSource], pass N.
          */
         public abstract fun onResult(data: List<T>, position: Int)
     }
@@ -186,7 +167,7 @@
          * Called to pass loaded data from [loadRange].
          *
          * @param data List of items loaded from the [DataSource]. Must be same size as requested,
-         * unless at end of list.
+         *   unless at end of list.
          */
         public abstract fun onResult(data: List<T>)
     }
@@ -228,10 +209,9 @@
          * ```
          *
          * @param params Params passed to [loadInitial], including page size, and requested start /
-         * loadSize.
+         *   loadSize.
          * @param totalCount Total size of the data set.
          * @return Position to start loading at.
-         *
          * @see [computeInitialLoadSize]
          */
         @JvmStatic
@@ -289,11 +269,10 @@
          * ```
          *
          * @param params Params passed to [loadInitial], including page size, and requested start /
-         * loadSize.
+         *   loadSize.
          * @param initialLoadPosition Value returned by [computeInitialLoadPosition]
          * @param totalCount Total size of the data set.
          * @return Number of items to load.
-         *
          * @see [computeInitialLoadPosition]
          */
         @JvmStatic
@@ -313,8 +292,7 @@
 
                 if (params.placeholdersEnabled) {
                     // snap load size to page multiple (minimum two)
-                    initialLoadSize =
-                        maxOf(initialLoadSize / params.pageSize, 2) * params.pageSize
+                    initialLoadSize = maxOf(initialLoadSize / params.pageSize, 2) * params.pageSize
 
                     // move start so the load is centered around the key, not starting at it
                     val idealStart = initialPosition - initialLoadSize / 2
@@ -324,12 +302,13 @@
                     initialPosition = maxOf(0, initialPosition - initialLoadSize / 2)
                 }
             }
-            val initParams = LoadInitialParams(
-                initialPosition,
-                initialLoadSize,
-                params.pageSize,
-                params.placeholdersEnabled
-            )
+            val initParams =
+                LoadInitialParams(
+                    initialPosition,
+                    initialLoadSize,
+                    params.pageSize,
+                    params.placeholdersEnabled
+                )
             return loadInitial(initParams)
         } else {
             var startIndex = params.key!!
@@ -390,7 +369,8 @@
                                     data = data,
                                     // skip passing prevKey if nothing else to load
                                     prevKey = if (position == 0) null else position,
-                                    // can't do same for nextKey, since we don't know if load is terminal
+                                    // can't do same for nextKey, since we don't know if load is
+                                    // terminal
                                     nextKey = position + data.size,
                                     itemsBefore = position,
                                     itemsAfter = COUNT_UNDEFINED
@@ -426,17 +406,19 @@
                 object : LoadRangeCallback<T>() {
                     override fun onResult(data: List<T>) {
                         // skip passing prevKey if nothing else to load. We only do this for prepend
-                        // direction, since 0 as first index is well defined, but max index may not be
+                        // direction, since 0 as first index is well defined, but max index may not
+                        // be
                         val prevKey = if (params.startPosition == 0) null else params.startPosition
                         when {
                             isInvalid -> cont.resume(BaseResult.empty())
-                            else -> cont.resume(
-                                BaseResult(
-                                    data = data,
-                                    prevKey = prevKey,
-                                    nextKey = params.startPosition + data.size
+                            else ->
+                                cont.resume(
+                                    BaseResult(
+                                        data = data,
+                                        prevKey = prevKey,
+                                        nextKey = params.startPosition + data.size
+                                    )
                                 )
-                            )
                         }
                     }
                 }
@@ -451,9 +433,9 @@
      * LoadResult list must be a multiple of pageSize to enable efficient tiling.
      *
      * @param params Parameters for initial load, including requested start position, load size, and
-     * page size.
+     *   page size.
      * @param callback Callback that receives initial load data, including position and total data
-     * set size.
+     *   set size.
      */
     @WorkerThread
     public abstract fun loadInitial(params: LoadInitialParams, callback: LoadInitialCallback<T>)
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/SnapshotPagedList.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/SnapshotPagedList.jvm.kt
index b70ff11..0a98586 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/SnapshotPagedList.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/SnapshotPagedList.jvm.kt
@@ -17,13 +17,14 @@
 package androidx.paging
 
 @Suppress("DEPRECATION")
-internal class SnapshotPagedList<T : Any>(private val pagedList: PagedList<T>) : PagedList<T>(
-    pagedList.pagingSource,
-    pagedList.coroutineScope,
-    pagedList.notifyDispatcher,
-    pagedList.storage.snapshot(),
-    pagedList.config
-) {
+internal class SnapshotPagedList<T : Any>(private val pagedList: PagedList<T>) :
+    PagedList<T>(
+        pagedList.pagingSource,
+        pagedList.coroutineScope,
+        pagedList.notifyDispatcher,
+        pagedList.storage.snapshot(),
+        pagedList.config
+    ) {
     override val isImmutable = true
 
     override val lastKey
@@ -32,6 +33,8 @@
     override val isDetached = true
 
     override fun detach() {}
+
     override fun dispatchCurrentLoadState(callback: (LoadType, LoadState) -> Unit) {}
+
     override fun loadAroundInternal(index: Int) {}
 }
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperDataSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperDataSource.jvm.kt
index 5889c63..f0d29a0 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperDataSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperDataSource.jvm.kt
@@ -28,10 +28,11 @@
     private val source: DataSource<Key, ValueFrom>,
     private val listFunction: Function<List<ValueFrom>, List<ValueTo>>
 ) : DataSource<Key, ValueTo>(source.type) {
-    private val keyMap = when (source.type) {
-        KeyType.ITEM_KEYED -> IdentityHashMap<ValueTo, Key>()
-        else -> null
-    }
+    private val keyMap =
+        when (source.type) {
+            KeyType.ITEM_KEYED -> IdentityHashMap<ValueTo, Key>()
+            else -> null
+        }
 
     override fun addInvalidatedCallback(onInvalidatedCallback: InvalidatedCallback) =
         source.addInvalidatedCallback(onInvalidatedCallback)
@@ -44,13 +45,16 @@
     override val isInvalid
         get() = source.isInvalid
 
-    override fun getKeyInternal(item: ValueTo): Key = when {
-        keyMap != null -> synchronized(keyMap) {
-            return keyMap[item]!!
+    override fun getKeyInternal(item: ValueTo): Key =
+        when {
+            keyMap != null ->
+                synchronized(keyMap) {
+                    return keyMap[item]!!
+                }
+            // positional / page-keyed
+            else ->
+                throw IllegalStateException("Cannot get key by item in non-item keyed DataSource")
         }
-        // positional / page-keyed
-        else -> throw IllegalStateException("Cannot get key by item in non-item keyed DataSource")
-    }
 
     @SuppressWarnings("WeakerAccess") /* synthetic access */
     fun stashKeysIfNeeded(source: List<ValueFrom>, dest: List<ValueTo>) {
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperItemKeyedDataSource.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperItemKeyedDataSource.jvm.kt
index a4eb776..e4c9d3e 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperItemKeyedDataSource.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/WrapperItemKeyedDataSource.jvm.kt
@@ -91,7 +91,8 @@
         )
     }
 
-    override fun getKey(item: B): K = synchronized(keyMap) {
-        return keyMap[item]!!
-    }
+    override fun getKey(item: B): K =
+        synchronized(keyMap) {
+            return keyMap[item]!!
+        }
 }
diff --git a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/internal/Atomics.jvm.kt b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/internal/Atomics.jvm.kt
index 58b53e9..62d7602 100644
--- a/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/internal/Atomics.jvm.kt
+++ b/paging/paging-common/src/commonJvmAndroidMain/kotlin/androidx/paging/internal/Atomics.jvm.kt
@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 @file:Suppress("ACTUAL_WITHOUT_EXPECT") // https://youtrack.jetbrains.com/issue/KT-37316
+
 package androidx.paging.internal
 
 internal actual typealias ReentrantLock = java.util.concurrent.locks.ReentrantLock
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/CachedPageEventFlowLeakTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/CachedPageEventFlowLeakTest.kt
index b9c6182..1f22026 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/CachedPageEventFlowLeakTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/CachedPageEventFlowLeakTest.kt
@@ -29,57 +29,47 @@
 import kotlinx.coroutines.launch
 import kotlinx.coroutines.test.runTest
 
-/**
- * reproduces b/203594733
- */
+/** reproduces b/203594733 */
 public class CachedPageEventFlowLeakTest {
     private val gcHelper = GarbageCollectionTestHelper()
 
-    private data class Item(
-        val generation: Int,
-        val pagePos: Int
-    )
+    private data class Item(val generation: Int, val pagePos: Int)
 
     private var sourceGeneration = 0
-    private val pager = Pager(
-        config = PagingConfig(
-            pageSize = 10,
-            initialLoadSize = 20
-        ),
-        pagingSourceFactory = {
-            val generation = sourceGeneration++
-            object : PagingSource<Int, Item>() {
-                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Item> {
-                    return LoadResult.Page(
-                        data = (0 until params.loadSize).map {
-                            Item(
-                                generation = generation,
-                                pagePos = it
-                            )
-                        },
-                        prevKey = (params.key ?: 0) - 1,
-                        nextKey = (params.key ?: 0) + 1
-                    )
-                }
+    private val pager =
+        Pager(
+            config = PagingConfig(pageSize = 10, initialLoadSize = 20),
+            pagingSourceFactory = {
+                val generation = sourceGeneration++
+                object : PagingSource<Int, Item>() {
+                    override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Item> {
+                        return LoadResult.Page(
+                            data =
+                                (0 until params.loadSize).map {
+                                    Item(generation = generation, pagePos = it)
+                                },
+                            prevKey = (params.key ?: 0) - 1,
+                            nextKey = (params.key ?: 0) + 1
+                        )
+                    }
 
-                override fun getRefreshKey(state: PagingState<Int, Item>): Int? {
-                    return null
+                    override fun getRefreshKey(state: PagingState<Int, Item>): Int? {
+                        return null
+                    }
                 }
             }
-        }
-    )
+        )
 
-    private val tracker = object : ActiveFlowTracker {
-        override fun onNewCachedEventFlow(cachedPageEventFlow: CachedPageEventFlow<*>) {
-            gcHelper.track(cachedPageEventFlow)
-        }
+    private val tracker =
+        object : ActiveFlowTracker {
+            override fun onNewCachedEventFlow(cachedPageEventFlow: CachedPageEventFlow<*>) {
+                gcHelper.track(cachedPageEventFlow)
+            }
 
-        override suspend fun onStart(flowType: ActiveFlowTracker.FlowType) {
-        }
+            override suspend fun onStart(flowType: ActiveFlowTracker.FlowType) {}
 
-        override suspend fun onComplete(flowType: ActiveFlowTracker.FlowType) {
+            override suspend fun onComplete(flowType: ActiveFlowTracker.FlowType) {}
         }
-    }
 
     private suspend fun <T : Any> collectPages(
         flow: Flow<PagingData<T>>,
@@ -97,9 +87,7 @@
         // collect expected generations to generate garbage
         var remaining = generationCount
         flow
-            .takeWhile {
-                !finishCollecting || remaining > 0
-            }
+            .takeWhile { !finishCollecting || remaining > 0 }
             .collectLatest { pagingData ->
                 val willInvalidate = remaining-- > 0
                 if (willInvalidate) {
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/GarbageCollectionTestHelper.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/GarbageCollectionTestHelper.kt
index 4713d4f..294c0ae 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/GarbageCollectionTestHelper.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/GarbageCollectionTestHelper.kt
@@ -35,9 +35,7 @@
         size++
     }
 
-    fun assertLiveObjects(
-        vararg expected: Pair<KClass<*>, Int>
-    ) {
+    fun assertLiveObjects(vararg expected: Pair<KClass<*>, Int>) {
         val continueTriggeringGc = AtomicBoolean(true)
         thread {
             val leak: ArrayList<ByteArray> = ArrayList()
@@ -49,41 +47,38 @@
         }
         var collectedItemCount = 0
         val expectedItemCount = size - expected.sumOf { it.second }
-        while (collectedItemCount < expectedItemCount &&
-            queue.remove(5.seconds.inWholeMilliseconds) != null
+        while (
+            collectedItemCount < expectedItemCount &&
+                queue.remove(5.seconds.inWholeMilliseconds) != null
         ) {
             collectedItemCount++
         }
         continueTriggeringGc.set(false)
         val leakedObjects = countLiveObjects()
-        val leakedObjectToStrings = references.mapNotNull {
-            it.get()
-        }.joinToString("\n")
+        val leakedObjectToStrings = references.mapNotNull { it.get() }.joinToString("\n")
+        assertWithMessage("expected to collect $expectedItemCount, collected $collectedItemCount")
+            .that(collectedItemCount)
+            .isEqualTo(expectedItemCount)
         assertWithMessage(
-            "expected to collect $expectedItemCount, collected $collectedItemCount"
-        ).that(collectedItemCount).isEqualTo(expectedItemCount)
-        assertWithMessage(
-            """
+                """
             expected to collect $expectedItemCount, collected $collectedItemCount.
             live objects: $leakedObjectToStrings
-            """.trimIndent()
-        ).that(leakedObjects).containsExactlyElementsIn(expected)
+            """
+                    .trimIndent()
+            )
+            .that(leakedObjects)
+            .containsExactlyElementsIn(expected)
     }
 
-    /**
-     * Tries to trigger garbage collection until an element is available in the given queue.
-     */
+    /** Tries to trigger garbage collection until an element is available in the given queue. */
     fun assertEverythingIsCollected() {
         assertLiveObjects()
     }
 
     private fun countLiveObjects(): List<Pair<KClass<*>, Int>> {
-        return references.mapNotNull {
-            it.get()
-        }.groupBy {
-            it::class
-        }.map { entry ->
-            entry.key to entry.value.size
-        }
+        return references
+            .mapNotNull { it.get() }
+            .groupBy { it::class }
+            .map { entry -> entry.key to entry.value.size }
     }
 }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPageFetcherTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPageFetcherTest.kt
index cfed11e..f7a4151 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPageFetcherTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPageFetcherTest.kt
@@ -49,13 +49,12 @@
         override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> {
             val key = params.key ?: 0
 
-            val (start, end) = when (params) {
-                is Refresh -> key to key + params.loadSize
-                is LoadParams.Prepend -> key - params.loadSize to key
-                is LoadParams.Append -> key to key + params.loadSize
-            }.let { (start, end) ->
-                start.coerceAtLeast(0) to end.coerceAtMost(data.size)
-            }
+            val (start, end) =
+                when (params) {
+                    is Refresh -> key to key + params.loadSize
+                    is LoadParams.Prepend -> key - params.loadSize to key
+                    is LoadParams.Append -> key to key + params.loadSize
+                }.let { (start, end) -> start.coerceAtLeast(0) to end.coerceAtMost(data.size) }
 
             if (invalidData) {
                 invalidData = false
@@ -73,18 +72,16 @@
         override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
     }
 
-    private fun rangeResult(start: Int, end: Int) = Page(
-        data = data.subList(start, end),
-        prevKey = if (start > 0) start else null,
-        nextKey = if (end < data.size) end else null,
-        itemsBefore = start,
-        itemsAfter = data.size - end
-    )
+    private fun rangeResult(start: Int, end: Int) =
+        Page(
+            data = data.subList(start, end),
+            prevKey = if (start > 0) start else null,
+            nextKey = if (end < data.size) end else null,
+            itemsBefore = start,
+            itemsAfter = data.size - end
+        )
 
-    private data class Result(
-        val type: LoadType,
-        val pageResult: LoadResult<*, String>
-    )
+    private data class Result(val type: LoadType, val pageResult: LoadResult<*, String>)
 
     private class MockConsumer : LegacyPageFetcher.PageConsumer<String> {
         private val results: MutableList<Result> = arrayListOf()
@@ -131,20 +128,17 @@
         val config = Config(2, 2, true, 10, Config.MAX_SIZE_UNBOUNDED)
         val pagingSource = ImmediateListDataSource(data)
 
-        val initialResult = pagingSource.load(
-            Refresh(
-                key = start,
-                loadSize = end - start,
-                placeholdersEnabled = config.enablePlaceholders,
+        val initialResult =
+            pagingSource.load(
+                Refresh(
+                    key = start,
+                    loadSize = end - start,
+                    placeholdersEnabled = config.enablePlaceholders,
+                )
             )
-        )
 
         val initialData = (initialResult as Page).data
-        val storage = PagedStorage(
-            start,
-            initialResult,
-            data.size - initialData.size - start
-        )
+        val storage = PagedStorage(start, initialResult, data.size - initialData.size - start)
         consumer.storage = storage
 
         @Suppress("UNCHECKED_CAST")
@@ -160,270 +154,218 @@
     }
 
     @Test
-    fun simplePagerAppend() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 2, 6)
+    fun simplePagerAppend() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 2, 6)
 
-        assertTrue(consumer.takeResults().isEmpty())
-        assertTrue(consumer.takeStateChanges().isEmpty())
+            assertTrue(consumer.takeResults().isEmpty())
+            assertTrue(consumer.takeStateChanges().isEmpty())
 
-        pager.tryScheduleAppend()
+            pager.tryScheduleAppend()
 
-        assertTrue(consumer.takeResults().isEmpty())
-        assertEquals(
-            listOf(StateChange(APPEND, Loading)),
-            consumer.takeStateChanges()
-        )
+            assertTrue(consumer.takeResults().isEmpty())
+            assertEquals(listOf(StateChange(APPEND, Loading)), consumer.takeStateChanges())
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertEquals(listOf(Result(APPEND, rangeResult(6, 8))), consumer.takeResults())
-        assertEquals(
-            listOf(
-                StateChange(
-                    APPEND,
-                    NotLoading(endOfPaginationReached = false)
-                )
-            ),
-            consumer.takeStateChanges()
-        )
-    }
+            assertEquals(listOf(Result(APPEND, rangeResult(6, 8))), consumer.takeResults())
+            assertEquals(
+                listOf(StateChange(APPEND, NotLoading(endOfPaginationReached = false))),
+                consumer.takeStateChanges()
+            )
+        }
 
     @Test
-    fun simplePagerPrepend() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 4, 8)
+    fun simplePagerPrepend() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 4, 8)
 
-        pager.trySchedulePrepend()
+            pager.trySchedulePrepend()
 
-        assertTrue(consumer.takeResults().isEmpty())
-        assertEquals(
-            listOf(StateChange(PREPEND, Loading)),
-            consumer.takeStateChanges()
-        )
+            assertTrue(consumer.takeResults().isEmpty())
+            assertEquals(listOf(StateChange(PREPEND, Loading)), consumer.takeStateChanges())
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertEquals(
-            listOf(Result(PREPEND, rangeResult(2, 4))),
-            consumer.takeResults()
-        )
-        assertEquals(
-            listOf(
-                StateChange(
-                    PREPEND,
-                    NotLoading(endOfPaginationReached = false)
-                )
-            ),
-            consumer.takeStateChanges()
-        )
-    }
+            assertEquals(listOf(Result(PREPEND, rangeResult(2, 4))), consumer.takeResults())
+            assertEquals(
+                listOf(StateChange(PREPEND, NotLoading(endOfPaginationReached = false))),
+                consumer.takeStateChanges()
+            )
+        }
 
     @Test
-    fun doubleAppend() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 2, 6)
+    fun doubleAppend() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 2, 6)
 
-        pager.tryScheduleAppend()
-        advanceUntilIdle()
+            pager.tryScheduleAppend()
+            advanceUntilIdle()
 
-        assertEquals(
-            listOf(
-                Result(APPEND, rangeResult(6, 8))
-            ),
-            consumer.takeResults()
-        )
+            assertEquals(listOf(Result(APPEND, rangeResult(6, 8))), consumer.takeResults())
 
-        assertEquals(
-            listOf(
-                StateChange(APPEND, Loading),
-                StateChange(
-                    APPEND,
-                    NotLoading(endOfPaginationReached = false)
-                )
-            ),
-            consumer.takeStateChanges()
-        )
+            assertEquals(
+                listOf(
+                    StateChange(APPEND, Loading),
+                    StateChange(APPEND, NotLoading(endOfPaginationReached = false))
+                ),
+                consumer.takeStateChanges()
+            )
 
-        pager.tryScheduleAppend()
-        advanceUntilIdle()
+            pager.tryScheduleAppend()
+            advanceUntilIdle()
 
-        assertEquals(
-            listOf(
-                Result(APPEND, rangeResult(8, 9))
-            ),
-            consumer.takeResults()
-        )
+            assertEquals(listOf(Result(APPEND, rangeResult(8, 9))), consumer.takeResults())
 
-        assertEquals(
-            listOf(
-                StateChange(APPEND, Loading),
-                StateChange(
-                    APPEND,
-                    NotLoading(endOfPaginationReached = false)
-                )
-            ),
-            consumer.takeStateChanges()
-        )
-    }
+            assertEquals(
+                listOf(
+                    StateChange(APPEND, Loading),
+                    StateChange(APPEND, NotLoading(endOfPaginationReached = false))
+                ),
+                consumer.takeStateChanges()
+            )
+        }
 
     @Test
-    fun doublePrepend() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 4, 8)
+    fun doublePrepend() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 4, 8)
 
-        pager.trySchedulePrepend()
-        advanceUntilIdle()
+            pager.trySchedulePrepend()
+            advanceUntilIdle()
 
-        assertEquals(
-            listOf(
-                Result(PREPEND, rangeResult(2, 4))
-            ),
-            consumer.takeResults()
-        )
+            assertEquals(listOf(Result(PREPEND, rangeResult(2, 4))), consumer.takeResults())
 
-        assertEquals(
-            listOf(
-                StateChange(PREPEND, Loading),
-                StateChange(
-                    PREPEND, NotLoading(endOfPaginationReached = false)
+            assertEquals(
+                listOf(
+                    StateChange(PREPEND, Loading),
+                    StateChange(PREPEND, NotLoading(endOfPaginationReached = false))
+                ),
+                consumer.takeStateChanges()
+            )
+
+            pager.trySchedulePrepend()
+            advanceUntilIdle()
+
+            assertEquals(listOf(Result(PREPEND, rangeResult(0, 2))), consumer.takeResults())
+            assertEquals(
+                listOf(
+                    StateChange(PREPEND, Loading),
+                    StateChange(PREPEND, NotLoading(endOfPaginationReached = false))
+                ),
+                consumer.takeStateChanges()
+            )
+        }
+
+    @Test
+    fun emptyAppend() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 0, 9)
+
+            pager.tryScheduleAppend()
+
+            // Pager triggers an immediate empty response here, so we don't need to flush the
+            // executor
+            assertEquals(listOf(Result(APPEND, Page.empty<Int, String>())), consumer.takeResults())
+            assertEquals(
+                listOf(StateChange(APPEND, NotLoading(endOfPaginationReached = true))),
+                consumer.takeStateChanges()
+            )
+        }
+
+    @Test
+    fun emptyPrepend() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 0, 9)
+
+            pager.trySchedulePrepend()
+
+            // Pager triggers an immediate empty response here, so we don't need to flush the
+            // executor
+            assertEquals(listOf(Result(PREPEND, Page.empty<Int, String>())), consumer.takeResults())
+            assertEquals(
+                listOf(StateChange(PREPEND, NotLoading(endOfPaginationReached = true))),
+                consumer.takeStateChanges()
+            )
+        }
+
+    @Test
+    fun append_invalidData() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 0, 3)
+
+            // try a normal append first
+            pager.tryScheduleAppend()
+            advanceUntilIdle()
+
+            assertThat(consumer.takeResults()).containsExactly(Result(APPEND, rangeResult(3, 5)))
+            assertThat(consumer.takeStateChanges())
+                .containsExactly(
+                    StateChange(APPEND, Loading),
+                    StateChange(APPEND, NotLoading.Incomplete)
                 )
-            ),
-            consumer.takeStateChanges()
-        )
 
-        pager.trySchedulePrepend()
-        advanceUntilIdle()
+            // now make next append return LoadResult.Invalid
+            val pagingSource = pager.source as ImmediateListDataSource
+            pagingSource.invalidData = true
 
-        assertEquals(
-            listOf(
-                Result(PREPEND, rangeResult(0, 2))
-            ),
-            consumer.takeResults()
-        )
-        assertEquals(
-            listOf(
-                StateChange(PREPEND, Loading),
-                StateChange(
-                    PREPEND, NotLoading(endOfPaginationReached = false)
+            pager.tryScheduleAppend()
+            advanceUntilIdle()
+
+            // the load should return before returning any data
+            assertThat(consumer.takeResults()).isEmpty()
+            assertThat(consumer.takeStateChanges())
+                .containsExactly(
+                    StateChange(APPEND, Loading),
                 )
-            ),
-            consumer.takeStateChanges()
-        )
-    }
+
+            // exception handler should invalidate the paging source and result in fetcher to be
+            // detached
+            assertTrue(pagingSource.invalid)
+            assertTrue(pager.isDetached)
+        }
 
     @Test
-    fun emptyAppend() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 0, 9)
+    fun prepend_invalidData() =
+        runTest(testDispatcher) {
+            val consumer = MockConsumer()
+            val pager = createPager(consumer, 6, 9)
 
-        pager.tryScheduleAppend()
+            // try a normal prepend first
+            pager.trySchedulePrepend()
+            advanceUntilIdle()
 
-        // Pager triggers an immediate empty response here, so we don't need to flush the executor
-        assertEquals(
-            listOf(Result(APPEND, Page.empty<Int, String>())),
-            consumer.takeResults()
-        )
-        assertEquals(
-            listOf(
-                StateChange(APPEND, NotLoading(endOfPaginationReached = true))
-            ),
-            consumer.takeStateChanges()
-        )
-    }
-
-    @Test
-    fun emptyPrepend() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 0, 9)
-
-        pager.trySchedulePrepend()
-
-        // Pager triggers an immediate empty response here, so we don't need to flush the executor
-        assertEquals(
-            listOf(Result(PREPEND, Page.empty<Int, String>())),
-            consumer.takeResults()
-        )
-        assertEquals(
-            listOf(
-                StateChange(
-                    PREPEND,
-                    NotLoading(endOfPaginationReached = true)
+            assertThat(consumer.takeResults()).containsExactly(Result(PREPEND, rangeResult(4, 6)))
+            assertThat(consumer.takeStateChanges())
+                .containsExactly(
+                    StateChange(PREPEND, Loading),
+                    StateChange(PREPEND, NotLoading.Incomplete)
                 )
-            ),
-            consumer.takeStateChanges()
-        )
-    }
 
-    @Test
-    fun append_invalidData() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 0, 3)
+            // now make next prepend throw error
+            val pagingSource = pager.source as ImmediateListDataSource
+            pagingSource.invalidData = true
 
-        // try a normal append first
-        pager.tryScheduleAppend()
-        advanceUntilIdle()
+            pager.trySchedulePrepend()
+            advanceUntilIdle()
 
-        assertThat(consumer.takeResults()).containsExactly(
-            Result(APPEND, rangeResult(3, 5))
-        )
-        assertThat(consumer.takeStateChanges()).containsExactly(
-            StateChange(APPEND, Loading),
-            StateChange(APPEND, NotLoading.Incomplete)
-        )
+            // the load should return before returning any data
+            assertThat(consumer.takeResults()).isEmpty()
+            assertThat(consumer.takeStateChanges())
+                .containsExactly(
+                    StateChange(PREPEND, Loading),
+                )
 
-        // now make next append return LoadResult.Invalid
-        val pagingSource = pager.source as ImmediateListDataSource
-        pagingSource.invalidData = true
-
-        pager.tryScheduleAppend()
-        advanceUntilIdle()
-
-        // the load should return before returning any data
-        assertThat(consumer.takeResults()).isEmpty()
-        assertThat(consumer.takeStateChanges()).containsExactly(
-            StateChange(APPEND, Loading),
-        )
-
-        // exception handler should invalidate the paging source and result in fetcher to be
-        // detached
-        assertTrue(pagingSource.invalid)
-        assertTrue(pager.isDetached)
-    }
-
-    @Test
-    fun prepend_invalidData() = runTest(testDispatcher) {
-        val consumer = MockConsumer()
-        val pager = createPager(consumer, 6, 9)
-
-        // try a normal prepend first
-        pager.trySchedulePrepend()
-        advanceUntilIdle()
-
-        assertThat(consumer.takeResults()).containsExactly(
-            Result(PREPEND, rangeResult(4, 6))
-        )
-        assertThat(consumer.takeStateChanges()).containsExactly(
-            StateChange(PREPEND, Loading),
-            StateChange(PREPEND, NotLoading.Incomplete)
-        )
-
-        // now make next prepend throw error
-        val pagingSource = pager.source as ImmediateListDataSource
-        pagingSource.invalidData = true
-
-        pager.trySchedulePrepend()
-        advanceUntilIdle()
-
-        // the load should return before returning any data
-        assertThat(consumer.takeResults()).isEmpty()
-        assertThat(consumer.takeStateChanges()).containsExactly(
-            StateChange(PREPEND, Loading),
-        )
-
-        // exception handler should invalidate the paging source and result in fetcher to be
-        // detached
-        assertTrue(pagingSource.invalid)
-        assertTrue(pager.isDetached)
-    }
+            // exception handler should invalidate the paging source and result in fetcher to be
+            // detached
+            assertTrue(pagingSource.invalid)
+            assertTrue(pager.isDetached)
+        }
 }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPagingSourceTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPagingSourceTest.kt
index e359ca2..2a822a0 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPagingSourceTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/LegacyPagingSourceTest.kt
@@ -37,45 +37,42 @@
 
 @OptIn(ExperimentalCoroutinesApi::class)
 class LegacyPagingSourceTest {
-    private val fakePagingState = PagingState(
-        pages = listOf(
-            Page<Int, String>(
-                data = listOf("fakeData"),
-                prevKey = null,
-                nextKey = null
-            )
-        ),
-        anchorPosition = 0,
-        config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1
-        ),
-        leadingPlaceholderCount = 0
-    )
+    private val fakePagingState =
+        PagingState(
+            pages =
+                listOf(
+                    Page<Int, String>(data = listOf("fakeData"), prevKey = null, nextKey = null)
+                ),
+            anchorPosition = 0,
+            config = PagingConfig(pageSize = 1, prefetchDistance = 1),
+            leadingPlaceholderCount = 0
+        )
 
     @Test
     fun init_invalidDataSource() {
         val testContext = EmptyCoroutineContext
-        val dataSource = object : DataSource<Int, Int>(KeyType.ITEM_KEYED) {
-            var isInvalidCalls = 0
+        val dataSource =
+            object : DataSource<Int, Int>(KeyType.ITEM_KEYED) {
+                var isInvalidCalls = 0
 
-            override val isInvalid: Boolean
-                get() {
-                    isInvalidCalls++
-                    return true
+                override val isInvalid: Boolean
+                    get() {
+                        isInvalidCalls++
+                        return true
+                    }
+
+                override suspend fun load(params: Params<Int>): BaseResult<Int> {
+                    return BaseResult(listOf(), null, null)
                 }
 
-            override suspend fun load(params: Params<Int>): BaseResult<Int> {
-                return BaseResult(listOf(), null, null)
+                override fun getKeyInternal(item: Int): Int = 0
             }
 
-            override fun getKeyInternal(item: Int): Int = 0
-        }
-
-        val pagingSource = LegacyPagingSource(
-            fetchContext = testContext,
-            dataSource = dataSource,
-        )
+        val pagingSource =
+            LegacyPagingSource(
+                fetchContext = testContext,
+                dataSource = dataSource,
+            )
 
         assertEquals(1, dataSource.isInvalidCalls)
         assertThat(pagingSource.invalid).isTrue()
@@ -85,34 +82,26 @@
     @Test
     fun item() {
         @Suppress("DEPRECATION")
-        val dataSource = object : ItemKeyedDataSource<Int, String>() {
-            override fun loadInitial(
-                params: LoadInitialParams<Int>,
-                callback: LoadInitialCallback<String>
-            ) {
-                fail("loadInitial not expected")
-            }
+        val dataSource =
+            object : ItemKeyedDataSource<Int, String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams<Int>,
+                    callback: LoadInitialCallback<String>
+                ) {
+                    fail("loadInitial not expected")
+                }
 
-            override fun loadAfter(
-                params: LoadParams<Int>,
-                callback: LoadCallback<String>
-            ) {
-                fail("loadAfter not expected")
-            }
+                override fun loadAfter(params: LoadParams<Int>, callback: LoadCallback<String>) {
+                    fail("loadAfter not expected")
+                }
 
-            override fun loadBefore(
-                params: LoadParams<Int>,
-                callback: LoadCallback<String>
-            ) {
-                fail("loadBefore not expected")
-            }
+                override fun loadBefore(params: LoadParams<Int>, callback: LoadCallback<String>) {
+                    fail("loadBefore not expected")
+                }
 
-            override fun getKey(item: String) = item.hashCode()
-        }
-        val pagingSource = LegacyPagingSource(
-            fetchContext = Dispatchers.Unconfined,
-            dataSource
-        )
+                override fun getKey(item: String) = item.hashCode()
+            }
+        val pagingSource = LegacyPagingSource(fetchContext = Dispatchers.Unconfined, dataSource)
 
         // Check that jumpingSupported is disabled.
         assertFalse { pagingSource.jumpingSupported }
@@ -133,32 +122,31 @@
     @Test
     fun page() {
         @Suppress("DEPRECATION")
-        val dataSource = object : PageKeyedDataSource<Int, String>() {
-            override fun loadInitial(
-                params: LoadInitialParams<Int>,
-                callback: LoadInitialCallback<Int, String>
-            ) {
-                fail("loadInitial not expected")
-            }
+        val dataSource =
+            object : PageKeyedDataSource<Int, String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams<Int>,
+                    callback: LoadInitialCallback<Int, String>
+                ) {
+                    fail("loadInitial not expected")
+                }
 
-            override fun loadBefore(
-                params: LoadParams<Int>,
-                callback: LoadCallback<Int, String>
-            ) {
-                fail("loadBefore not expected")
-            }
+                override fun loadBefore(
+                    params: LoadParams<Int>,
+                    callback: LoadCallback<Int, String>
+                ) {
+                    fail("loadBefore not expected")
+                }
 
-            override fun loadAfter(
-                params: LoadParams<Int>,
-                callback: LoadCallback<Int, String>
-            ) {
-                fail("loadAfter not expected")
+                override fun loadAfter(
+                    params: LoadParams<Int>,
+                    callback: LoadCallback<Int, String>
+                ) {
+                    fail("loadAfter not expected")
+                }
             }
-        }
-        val pagingSource = LegacyPagingSource(
-            fetchContext = Dispatchers.Unconfined,
-            dataSource = dataSource
-        )
+        val pagingSource =
+            LegacyPagingSource(fetchContext = Dispatchers.Unconfined, dataSource = dataSource)
 
         // Check that jumpingSupported is disabled.
         assertFalse { pagingSource.jumpingSupported }
@@ -178,10 +166,11 @@
 
     @Test
     fun positional() {
-        val pagingSource = LegacyPagingSource(
-            fetchContext = Dispatchers.Unconfined,
-            dataSource = createTestPositionalDataSource()
-        )
+        val pagingSource =
+            LegacyPagingSource(
+                fetchContext = Dispatchers.Unconfined,
+                dataSource = createTestPositionalDataSource()
+            )
 
         // Check that jumpingSupported is enabled.
         assertTrue { pagingSource.jumpingSupported }
@@ -190,18 +179,9 @@
             4,
             pagingSource.getRefreshKey(
                 PagingState(
-                    pages = listOf(
-                        Page(
-                            data = listOf("fakeData"),
-                            prevKey = 4,
-                            nextKey = 5
-                        )
-                    ),
+                    pages = listOf(Page(data = listOf("fakeData"), prevKey = 4, nextKey = 5)),
                     anchorPosition = 0,
-                    config = PagingConfig(
-                        pageSize = 1,
-                        prefetchDistance = 1
-                    ),
+                    config = PagingConfig(pageSize = 1, prefetchDistance = 1),
                     leadingPlaceholderCount = 0
                 )
             )
@@ -211,18 +191,9 @@
             6,
             pagingSource.getRefreshKey(
                 PagingState(
-                    pages = listOf(
-                        Page(
-                            data = listOf("fakeData"),
-                            prevKey = 4,
-                            nextKey = 5
-                        )
-                    ),
+                    pages = listOf(Page(data = listOf("fakeData"), prevKey = 4, nextKey = 5)),
                     anchorPosition = 2,
-                    config = PagingConfig(
-                        pageSize = 1,
-                        prefetchDistance = 1
-                    ),
+                    config = PagingConfig(pageSize = 1, prefetchDistance = 1),
                     leadingPlaceholderCount = 0
                 )
             )
@@ -231,16 +202,15 @@
 
     @Test
     fun invalidateFromPagingSource() {
-        val pagingSource = LegacyPagingSource(
-            fetchContext = Dispatchers.Unconfined,
-            dataSource = createTestPositionalDataSource()
-        )
+        val pagingSource =
+            LegacyPagingSource(
+                fetchContext = Dispatchers.Unconfined,
+                dataSource = createTestPositionalDataSource()
+            )
         val dataSource = pagingSource.dataSource
 
         var kotlinInvalidated = false
-        dataSource.addInvalidatedCallback {
-            kotlinInvalidated = true
-        }
+        dataSource.addInvalidatedCallback { kotlinInvalidated = true }
         var javaInvalidated = false
         dataSource.addInvalidatedCallback { javaInvalidated = true }
 
@@ -257,22 +227,23 @@
 
     @Test
     fun invalidateFromDataSource() {
-        val pagingSource = LegacyPagingSource(
-            fetchContext = Dispatchers.Unconfined,
-            dataSource = createTestPositionalDataSource()
-        )
+        val pagingSource =
+            LegacyPagingSource(
+                fetchContext = Dispatchers.Unconfined,
+                dataSource = createTestPositionalDataSource()
+            )
         val dataSource = pagingSource.dataSource
 
         var kotlinInvalidated = false
-        dataSource.addInvalidatedCallback {
-            kotlinInvalidated = true
-        }
+        dataSource.addInvalidatedCallback { kotlinInvalidated = true }
         var javaInvalidated = false
-        dataSource.addInvalidatedCallback(object : DataSource.InvalidatedCallback {
-            override fun onInvalidated() {
-                javaInvalidated = true
+        dataSource.addInvalidatedCallback(
+            object : DataSource.InvalidatedCallback {
+                override fun onInvalidated() {
+                    javaInvalidated = true
+                }
             }
-        })
+        )
 
         assertFalse { pagingSource.invalid }
         assertFalse { dataSource.isInvalid }
@@ -290,38 +261,35 @@
     fun createDataSourceOnFetchDispatcher() = runTest {
         val methodCalls = mutableMapOf<String, MutableList<Thread>>()
 
-        val dataSourceFactory = object : DataSource.Factory<Int, String>() {
-            override fun create(): DataSource<Int, String> {
-                return ThreadCapturingDataSource { methodName ->
-                    methodCalls.getOrPut(methodName) {
-                        mutableListOf()
-                    }.add(Thread.currentThread())
+        val dataSourceFactory =
+            object : DataSource.Factory<Int, String>() {
+                override fun create(): DataSource<Int, String> {
+                    return ThreadCapturingDataSource { methodName ->
+                        methodCalls
+                            .getOrPut(methodName) { mutableListOf() }
+                            .add(Thread.currentThread())
+                    }
                 }
             }
-        }
 
         // create an executor special to the legacy data source
         val executor = Executors.newSingleThreadExecutor()
 
         // extract the thread instance from the executor. we'll use it to assert calls later
         var dataSourceThread: Thread? = null
-        executor.submit {
-            dataSourceThread = Thread.currentThread()
-        }.get()
+        executor.submit { dataSourceThread = Thread.currentThread() }.get()
 
-        val pager = Pager(
-            config = PagingConfig(10, enablePlaceholders = false),
-            pagingSourceFactory = dataSourceFactory.asPagingSourceFactory(
-                executor.asCoroutineDispatcher()
+        val pager =
+            Pager(
+                config = PagingConfig(10, enablePlaceholders = false),
+                pagingSourceFactory =
+                    dataSourceFactory.asPagingSourceFactory(executor.asCoroutineDispatcher())
             )
-        )
         // collect from pager. we take only 2 paging data generations and only take 1 PageEvent
         // from them
         pager.flow.take(2).collectLatest { pagingData ->
             // wait until first insert happens
-            pagingData.flow.filter {
-                it is PageEvent.Insert
-            }.first()
+            pagingData.flow.filter { it is PageEvent.Insert }.first()
             pagingData.uiReceiver.refresh()
         }
         // validate method calls (to ensure test did run as expected) and their threads.
@@ -338,28 +306,29 @@
 
     @Test
     fun dataSourceInvalidateBeforePagingSourceInvalidateCallbackAdded() {
-        val dataSourceFactory = object : DataSource.Factory<Int, String>() {
-            val dataSources = mutableListOf<DataSource<Int, String>>()
-            var i = 0
+        val dataSourceFactory =
+            object : DataSource.Factory<Int, String>() {
+                val dataSources = mutableListOf<DataSource<Int, String>>()
+                var i = 0
 
-            override fun create(): DataSource<Int, String> {
-                return when (i++) {
-                    0 -> createTestPositionalDataSource().apply {
-                        // Invalidate before we give LegacyPagingSource a chance to register
-                        // invalidate callback.
-                        invalidate()
-                    }
-                    else -> createTestPositionalDataSource()
-                }.also { dataSources.add(it) }
+                override fun create(): DataSource<Int, String> {
+                    return when (i++) {
+                        0 ->
+                            createTestPositionalDataSource().apply {
+                                // Invalidate before we give LegacyPagingSource a chance to register
+                                // invalidate callback.
+                                invalidate()
+                            }
+                        else -> createTestPositionalDataSource()
+                    }.also { dataSources.add(it) }
+                }
             }
-        }
 
         val testDispatcher = StandardTestDispatcher()
-        val pagingSourceFactory = dataSourceFactory.asPagingSourceFactory(
-            fetchDispatcher = testDispatcher
-        ).let {
-            { it() as LegacyPagingSource }
-        }
+        val pagingSourceFactory =
+            dataSourceFactory.asPagingSourceFactory(fetchDispatcher = testDispatcher).let {
+                { it() as LegacyPagingSource }
+            }
 
         val pagingSource0 = pagingSourceFactory()
         testDispatcher.scheduler.advanceUntilIdle()
@@ -397,21 +366,15 @@
             }
         }
 
-    /**
-     * A data source implementation which tracks method calls and their threads.
-     */
+    /** A data source implementation which tracks method calls and their threads. */
     @Suppress("DEPRECATION")
-    class ThreadCapturingDataSource(
-        private val recordMethodCall: (methodName: String) -> Unit
-    ) : PositionalDataSource<String>() {
+    class ThreadCapturingDataSource(private val recordMethodCall: (methodName: String) -> Unit) :
+        PositionalDataSource<String>() {
         init {
             recordMethodCall("<init>")
         }
 
-        override fun loadInitial(
-            params: LoadInitialParams,
-            callback: LoadInitialCallback<String>
-        ) {
+        override fun loadInitial(params: LoadInitialParams, callback: LoadInitialCallback<String>) {
             recordMethodCall("loadInitial")
             callback.onResult(
                 data = emptyList(),
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherSnapshotTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherSnapshotTest.kt
index 3988d0c..7a820eb 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherSnapshotTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherSnapshotTest.kt
@@ -71,1301 +71,37 @@
     private val testScope = TestScope(UnconfinedTestDispatcher())
     private val retryBus = ConflatedEventBus<Unit>()
     private val pagingSourceFactory = suspend {
-        TestPagingSource(loadDelay = 1000).also {
-            currentPagingSource = it
-        }
+        TestPagingSource(loadDelay = 1000).also { currentPagingSource = it }
     }
 
     private var currentPagingSource: TestPagingSource? = null
-    private val config = PagingConfig(
-        pageSize = 1,
-        prefetchDistance = 1,
-        enablePlaceholders = true,
-        initialLoadSize = 2,
-        maxSize = 3
-    )
+    private val config =
+        PagingConfig(
+            pageSize = 1,
+            prefetchDistance = 1,
+            enablePlaceholders = true,
+            initialLoadSize = 2,
+            maxSize = 3
+        )
 
     private val EXCEPTION = Exception()
 
     @Test
-    fun loadStates_prependDone() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 1, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(1..2)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            createPrepend(
-                pageOffset = -1,
-                range = 0..0,
-                startState = NotLoading.Complete
-            )
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun loadStates_prependDoneThenDrop() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 1, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(1..2)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            createPrepend(
-                pageOffset = -1,
-                range = 0..0,
-                startState = NotLoading.Complete
-            )
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 2,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = -1,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(
-                appendLocal = Loading,
-                prependLocal = NotLoading.Complete
-            ),
-            Drop<Int>(
-                loadType = PREPEND,
-                minPageOffset = -1,
-                maxPageOffset = -1,
-                placeholdersRemaining = 1
-            ),
-            createAppend(
-                pageOffset = 1,
-                range = 3..3,
-                startState = NotLoading.Incomplete,
-                endState = NotLoading.Incomplete
-            )
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun loadStates_appendDone() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 97, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 97..98)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 1,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(pageOffset = 1, range = 99..99, endState = NotLoading.Complete)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun loadStates_appendDoneThenDrop() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 97, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 97..98)
-
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 1,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(
-                pageOffset = 1,
-                range = 99..99,
-                startState = NotLoading.Incomplete,
-                endState = NotLoading.Complete
-            )
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 2,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 1
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(
-                prependLocal = Loading,
-                appendLocal = NotLoading.Complete
-            ),
-            Drop<Int>(
-                loadType = APPEND,
-                minPageOffset = 1,
-                maxPageOffset = 1,
-                placeholdersRemaining = 1
-            ),
-            createPrepend(
-                pageOffset = -1,
-                range = 96..96,
-                startState = NotLoading.Incomplete,
-                endState = NotLoading.Incomplete
-            )
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun loadStates_refreshStart() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 0, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(
-                range = 0..1,
-                startState = NotLoading.Complete,
-                endState = NotLoading.Incomplete
-            )
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun loadStates_refreshEnd() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 98, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(
-                range = 98..99,
-                startState = NotLoading.Incomplete,
-                endState = NotLoading.Complete
-            )
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun initialize() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 50..51)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun initialize_bufferedHint() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 50..51),
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            createPrepend(pageOffset = -1, range = 49..49)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun prepend() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 50..51)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            createPrepend(pageOffset = -1, range = 49..49)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun prependAndDrop() = testScope.runTest {
-        withContext(coroutineContext) {
-            val config = PagingConfig(
-                pageSize = 2,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2,
-                maxSize = 4
-            )
-            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+    fun loadStates_prependDone() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 1, config)
             val fetcherState = collectFetcherState(pageFetcher)
 
             advanceUntilIdle()
-            // Make sure the job didn't complete exceptionally
-            assertFalse { fetcherState.job.isCancelled }
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(range = 50..51)
-            )
-
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 1,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertFalse { fetcherState.job.isCancelled }
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-                createPrepend(pageOffset = -1, range = 48..49)
-            )
-
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = -1,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 3,
-                    originalPageOffsetFirst = -1,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertFalse { fetcherState.job.isCancelled }
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-                Drop<Int>(
-                    loadType = APPEND,
-                    minPageOffset = 0,
-                    maxPageOffset = 0,
-                    placeholdersRemaining = 50
-                ),
-                createPrepend(pageOffset = -2, range = 46..47)
-            )
-
-            fetcherState.job.cancel()
-        }
-    }
-
-    @Test
-    fun prependAndSkipDrop_prefetchWindow() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pageFetcher = PageFetcher(
-                pagingSourceFactory = pagingSourceFactory,
-                initialKey = 50,
-                config = PagingConfig(
-                    pageSize = 1,
-                    prefetchDistance = 2,
-                    enablePlaceholders = true,
-                    initialLoadSize = 5,
-                    maxSize = 5
-                )
-            )
-            val fetcherState = collectFetcherState(pageFetcher)
-
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(range = 50..54)
-            )
-
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 4,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-                createPrepend(
-                    pageOffset = -1,
-                    range = 49..49,
-                    startState = Loading
-                ),
-                createPrepend(pageOffset = -2, range = 48..48)
-            )
-
-            // Make sure the job didn't complete exceptionally
-            assertFalse { fetcherState.job.isCancelled }
-
-            fetcherState.job.cancel()
-        }
-    }
-
-    @Test
-    fun prependAndDropWithCancellation() = testScope.runTest {
-        withContext(coroutineContext) {
-            val config = PagingConfig(
-                pageSize = 2,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2,
-                maxSize = 4
-            )
-            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-            val fetcherState = collectFetcherState(pageFetcher)
-
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(range = 50..51)
-            )
-
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 1,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-                createPrepend(pageOffset = -1, range = 48..49)
-            )
-
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = -1,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 3,
-                    originalPageOffsetFirst = -1,
-                    originalPageOffsetLast = 0
-                )
-            )
-            // Start hint processing until load starts, but hasn't finished.
-            advanceTimeBy(500)
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 1,
-                    presentedItemsBefore = 3,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = -1,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-                localLoadStateUpdate<Int>(
-                    prependLocal = Loading,
-                    appendLocal = Loading
-                ),
-                Drop<Int>(
-                    loadType = APPEND,
-                    minPageOffset = 0,
-                    maxPageOffset = 0,
-                    placeholdersRemaining = 50
-                ),
-                createPrepend(pageOffset = -2, range = 46..47)
-            )
-
-            fetcherState.job.cancel()
-        }
-    }
-
-    @Test
-    fun prependMultiplePages() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-            maxSize = 5
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(50..52)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 2,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
-            createPrepend(pageOffset = -2, range = 48..48)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun prepend_viewportHintPrioritizesGenerationId() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-            maxSize = 5
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 50..52)
-        )
-
-        // PREPEND a few pages.
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 2,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
-            createPrepend(pageOffset = -2, range = 48..48)
-        )
-
-        // APPEND a few pages causing PREPEND pages to drop
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 2,
-                presentedItemsBefore = 4,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = -2,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            Drop<Int>(
-                loadType = PREPEND,
-                minPageOffset = -2,
-                maxPageOffset = -2,
-                placeholdersRemaining = 49
-            ),
-            createAppend(pageOffset = 1, range = 53..53, endState = Loading),
-            Drop<Int>(
-                loadType = PREPEND,
-                minPageOffset = -1,
-                maxPageOffset = -1,
-                placeholdersRemaining = 50
-            ),
-            createAppend(pageOffset = 2, range = 54..54)
-        )
-
-        // PREPEND a page, this hint would normally be ignored, but has a newer generationId.
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 1,
-                presentedItemsAfter = 3,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 2
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            Drop<Int>(
-                loadType = APPEND,
-                minPageOffset = 2,
-                maxPageOffset = 2,
-                placeholdersRemaining = 46
-            ),
-            createPrepend(pageOffset = -1, range = 49..49)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun rapidViewportHints() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 10,
-            prefetchDistance = 5,
-            enablePlaceholders = true,
-            initialLoadSize = 10,
-            maxSize = 100
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 0, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(0..9, startState = NotLoading.Complete)
-        )
-        withContext(coroutineContext) {
-            val receiver = fetcherState.pagingDataList[0].hintReceiver
-            // send a bunch of access hints while collection is paused
-            (0..9).forEach { pos ->
-                receiver.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = pos,
-                        presentedItemsBefore = pos,
-                        presentedItemsAfter = 9 - pos,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
-                    )
-                )
-            }
-        }
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(
-                appendLocal = Loading,
-                prependLocal = NotLoading.Complete
-            ),
-            createAppend(
-                pageOffset = 1,
-                range = 10..19,
-                startState = NotLoading.Complete,
-                endState = NotLoading.Incomplete
-            ),
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun append() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(50..51)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 1,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(1, 52..52)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun appendMultiplePages() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-            maxSize = 5
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(50..52)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 2,
-                presentedItemsBefore = 2,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(
-                pageOffset = 1,
-                range = 53..53,
-                startState = NotLoading.Incomplete,
-                endState = Loading
-            ),
-            createAppend(2, 54..54)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun appendAndDrop() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 2,
-            prefetchDistance = 1,
-            enablePlaceholders = true,
-            initialLoadSize = 2,
-            maxSize = 4
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 50..51)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 1,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(pageOffset = 1, range = 52..53)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 1,
-                indexInPage = 1,
-                presentedItemsBefore = 3,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 1
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            Drop<Int>(
-                loadType = PREPEND,
-                minPageOffset = 0,
-                maxPageOffset = 0,
-                placeholdersRemaining = 52
-            ),
-            createAppend(pageOffset = 2, range = 54..55)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun appendAndSkipDrop_prefetchWindow() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pageFetcher = PageFetcher(
-                pagingSourceFactory = pagingSourceFactory,
-                initialKey = 50,
-                config = PagingConfig(
-                    pageSize = 1,
-                    prefetchDistance = 2,
-                    enablePlaceholders = true,
-                    initialLoadSize = 5,
-                    maxSize = 5
-                )
-            )
-            val fetcherState = collectFetcherState(pageFetcher)
-
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(range = 50..54)
-            )
-
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 4,
-                    presentedItemsBefore = 4,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(appendLocal = Loading),
-                createAppend(
-                    pageOffset = 1,
-                    range = 55..55,
-                    endState = Loading
-                ),
-                createAppend(pageOffset = 2, range = 56..56)
-            )
-
-            fetcherState.job.cancel()
-        }
-    }
-
-    @Test
-    fun appendAndDropWithCancellation() = testScope.runTest {
-        withContext(coroutineContext) {
-            val config = PagingConfig(
-                pageSize = 2,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2,
-                maxSize = 4
-            )
-            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-            val fetcherState = collectFetcherState(pageFetcher)
-
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(range = 50..51)
-            )
-
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 1,
-                    presentedItemsBefore = 1,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(appendLocal = Loading),
-                createAppend(pageOffset = 1, range = 52..53)
-            )
-
-            // Start hint processing until load starts, but hasn't finished.
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 1,
-                    indexInPage = 1,
-                    presentedItemsBefore = 3,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 1
-                )
-            )
-            advanceTimeBy(500)
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 3,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 1
-                )
-            )
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(appendLocal = Loading),
-                localLoadStateUpdate<Int>(
-                    appendLocal = Loading,
-                    prependLocal = Loading
-                ),
-                Drop<Int>(
-                    loadType = PREPEND,
-                    minPageOffset = 0,
-                    maxPageOffset = 0,
-                    placeholdersRemaining = 52
-                ),
-                createAppend(
-                    pageOffset = 2,
-                    range = 54..55,
-                    startState = NotLoading.Incomplete,
-                    endState = NotLoading.Incomplete
-                )
-            )
-
-            fetcherState.job.cancel()
-        }
-    }
-
-    @Test
-    fun append_viewportHintPrioritizesGenerationId() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-            maxSize = 5
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 50..52)
-        )
-
-        // APPEND a few pages.
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 2,
-                presentedItemsBefore = 2,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(pageOffset = 1, range = 53..53, endState = Loading),
-            createAppend(pageOffset = 2, range = 54..54)
-        )
-
-        // PREPEND a few pages causing APPEND pages to drop
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 4,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 2
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            Drop<Int>(
-                loadType = APPEND,
-                minPageOffset = 2,
-                maxPageOffset = 2,
-                placeholdersRemaining = 46
-            ),
-            createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
-            Drop<Int>(
-                loadType = APPEND,
-                minPageOffset = 1,
-                maxPageOffset = 1,
-                placeholdersRemaining = 47
-            ),
-            createPrepend(pageOffset = -2, range = 48..48)
-        )
-
-        // APPEND a page, this hint would normally be ignored, but has a newer generationId.
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 3,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = -2,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            Drop<Int>(
-                loadType = PREPEND,
-                minPageOffset = -2,
-                maxPageOffset = -2,
-                placeholdersRemaining = 49
-            ),
-            createAppend(pageOffset = 1, range = 53..53)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun invalidateNoScroll() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(50..51)
-        )
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(
-                range = 0..1,
-                startState = NotLoading.Complete,
-            )
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun invalidateAfterScroll() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(50..51)
-        )
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 1,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(1, 52..52)
-        )
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(51..52)
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun close_cancelsCollectionBeforeInitialLoad() = testScope.runTest {
-        // Infinitely suspending PagingSource which never finishes loading anything.
-        val pagingSource = object : PagingSource<Int, Int>() {
-            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-                delay(2000)
-                fail("Should never get here")
-            }
-
-            override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-        }
-        val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
-
-        collectSnapshotData(pager) { _, job ->
-
-            // Start the initial load, but do not let it finish.
-            advanceTimeBy(500)
-
-            // Close pager, then advance time by enough to allow initial load to finish.
-            pager.close()
-            advanceTimeBy(1500)
-
-            assertTrue { !job.isActive }
-        }
-    }
-
-    @Test
-    fun retry() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pageSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
-
-            collectSnapshotData(pager) { state, _ ->
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
                     localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    createRefresh(range = 50..51)
+                    createRefresh(1..2)
                 )
 
-                pageSource.errorNextLoad = true
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = 1,
-                        presentedItemsBefore = 1,
-                        presentedItemsAfter = 0,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
-                    )
-                )
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
-                )
-
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    createAppend(pageOffset = 1, range = 52..52)
-                )
-            }
-        }
-    }
-
-    @Test
-    fun retryNothing() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pageSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
-
-            collectSnapshotData(pager) { state, _ ->
-
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    createRefresh(range = 50..51)
-                )
-
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = 1,
-                        presentedItemsBefore = 1,
-                        presentedItemsAfter = 0,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
-                    )
-                )
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    createAppend(pageOffset = 1, range = 52..52)
-                )
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertTrue { state.newEvents().isEmpty() }
-            }
-        }
-    }
-
-    @Test
-    fun retryTwice() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pageSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
-
-            collectSnapshotData(pager) { state, _ ->
-
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    createRefresh(range = 50..51)
-                )
-                pageSource.errorNextLoad = true
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = 1,
-                        presentedItemsBefore = 1,
-                        presentedItemsAfter = 0,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
-                    )
-                )
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
-                )
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    createAppend(pageOffset = 1, range = 52..52)
-                )
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertTrue { state.newEvents().isEmpty() }
-            }
-        }
-    }
-
-    @Test
-    fun retryBothDirections() = testScope.runTest {
-        withContext(coroutineContext) {
-            val config = PagingConfig(
-                pageSize = 1,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2,
-                maxSize = 4
-            )
-            val pageSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
-
-            collectSnapshotData(pager) { state, _ ->
-                // Initial REFRESH
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    createRefresh(range = 50..51)
-                )
-
-                // Failed APPEND
-                pageSource.errorNextLoad = true
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = 1,
-                        presentedItemsBefore = 1,
-                        presentedItemsAfter = 0,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
-                    )
-                )
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
-                )
-
-                // Failed PREPEND
-                pageSource.errorNextLoad = true
-                pager.accessHint(
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
                     ViewportHint.Access(
                         pageOffset = 0,
                         indexInPage = 0,
@@ -1375,118 +111,260 @@
                         originalPageOffsetLast = 0
                     )
                 )
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Loading,
-                        appendLocal = Error(LOAD_ERROR)
-                    ),
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Error(LOAD_ERROR),
-                        appendLocal = Error(LOAD_ERROR)
-                    ),
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    createPrepend(pageOffset = -1, range = 0..0, startState = NotLoading.Complete)
                 )
 
-                // Retry should trigger in both directions.
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun loadStates_prependDoneThenDrop() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 1, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(1..2)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    createPrepend(pageOffset = -1, range = 0..0, startState = NotLoading.Complete)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 2,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = -1,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
                     localLoadStateUpdate<Int>(
-                        prependLocal = Loading,
-                        appendLocal = Error(LOAD_ERROR),
-                    ),
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Loading,
                         appendLocal = Loading,
+                        prependLocal = NotLoading.Complete
+                    ),
+                    Drop<Int>(
+                        loadType = PREPEND,
+                        minPageOffset = -1,
+                        maxPageOffset = -1,
+                        placeholdersRemaining = 1
+                    ),
+                    createAppend(
+                        pageOffset = 1,
+                        range = 3..3,
+                        startState = NotLoading.Incomplete,
+                        endState = NotLoading.Incomplete
+                    )
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun loadStates_appendDone() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 97, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 97..98)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(pageOffset = 1, range = 99..99, endState = NotLoading.Complete)
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun loadStates_appendDoneThenDrop() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 97, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 97..98)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(
+                        pageOffset = 1,
+                        range = 99..99,
+                        startState = NotLoading.Incomplete,
+                        endState = NotLoading.Complete
+                    )
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 2,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 1
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(
+                        prependLocal = Loading,
+                        appendLocal = NotLoading.Complete
+                    ),
+                    Drop<Int>(
+                        loadType = APPEND,
+                        minPageOffset = 1,
+                        maxPageOffset = 1,
+                        placeholdersRemaining = 1
                     ),
                     createPrepend(
                         pageOffset = -1,
-                        range = 49..49,
+                        range = 96..96,
                         startState = NotLoading.Incomplete,
-                        endState = Loading
-                    ),
-                    createAppend(pageOffset = 1, range = 52..52)
+                        endState = NotLoading.Incomplete
+                    )
                 )
-            }
+
+            fetcherState.job.cancel()
         }
-    }
 
     @Test
-    fun retry_errorDoesNotEnableHints() = testScope.runTest {
-        withContext(StandardTestDispatcher(testScheduler)) {
-            val pageSource = object : PagingSource<Int, Int>() {
-                var nextResult: LoadResult<Int, Int>? = null
-                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-                    val result = nextResult
-                    nextResult = null
-                    return result ?: LoadResult.Error(LOAD_ERROR)
-                }
+    fun loadStates_refreshStart() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 0, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-                override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-            }
-            val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+            advanceUntilIdle()
 
-            collectSnapshotData(pager) { pageEvents, _ ->
-                // Successful REFRESH
-                pageSource.nextResult = Page(
-                    data = listOf(0, 1),
-                    prevKey = -1,
-                    nextKey = 1,
-                    itemsBefore = 50,
-                    itemsAfter = 48
-                )
-                advanceUntilIdle()
-                assertThat(pageEvents.newEvents()).containsExactly(
+            assertThat(fetcherState.pageEventLists[0])
+                .containsExactly(
                     localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    localRefresh(
-                        pages = listOf(TransformablePage(listOf(0, 1))),
-                        placeholdersBefore = 50,
-                        placeholdersAfter = 48,
+                    createRefresh(
+                        range = 0..1,
+                        startState = NotLoading.Complete,
+                        endState = NotLoading.Incomplete
                     )
                 )
 
-                // Hint to trigger APPEND
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = 1,
-                        presentedItemsBefore = 1,
-                        presentedItemsAfter = 0,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun loadStates_refreshEnd() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 98, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertThat(fetcherState.pageEventLists[0])
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(
+                        range = 98..99,
+                        startState = NotLoading.Incomplete,
+                        endState = NotLoading.Complete
                     )
                 )
-                advanceUntilIdle()
-                assertThat(pageEvents.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun initialize() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertThat(fetcherState.pageEventLists[0])
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 50..51)
                 )
 
-                // Retry failed APPEND
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertThat(pageEvents.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(appendLocal = Loading),
-                    localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
-                )
+            fetcherState.job.cancel()
+        }
 
-                // This hint should be ignored even though in the non-error state it would
-                // re-emit for APPEND due to greater presenterIndex value.
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = 2,
-                        presentedItemsBefore = 2,
-                        presentedItemsAfter = -1,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
-                    )
-                )
-                advanceUntilIdle()
-                assertThat(pageEvents.newEvents()).isEmpty()
+    @Test
+    fun initialize_bufferedHint() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-                // Hint to trigger PREPEND
-                pager.accessHint(
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
                     ViewportHint.Access(
                         pageOffset = 0,
                         indexInPage = 0,
@@ -1496,151 +374,1431 @@
                         originalPageOffsetLast = 0
                     )
                 )
-                advanceUntilIdle()
-                assertThat(pageEvents.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Loading,
-                        appendLocal = Error(LOAD_ERROR),
-                    ),
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Error(LOAD_ERROR),
-                        appendLocal = Error(LOAD_ERROR),
-                    ),
+            advanceUntilIdle()
+
+            assertThat(fetcherState.pageEventLists[0])
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 50..51),
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    createPrepend(pageOffset = -1, range = 49..49)
                 )
 
-                // Retry failed hints, both PREPEND and APPEND should trigger.
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertThat(pageEvents.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Loading,
-                        appendLocal = Error(LOAD_ERROR),
-                    ),
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Loading,
-                        appendLocal = Loading
-                    ),
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Error(LOAD_ERROR),
-                        appendLocal = Loading,
-                    ),
-                    localLoadStateUpdate<Int>(
-                        prependLocal = Error(LOAD_ERROR),
-                        appendLocal = Error(LOAD_ERROR),
-                    ),
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun prepend() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 50..51)
                 )
 
-                // This hint should be ignored even though in the non-error state it would
-                // re-emit for PREPEND due to smaller presenterIndex value.
-                pager.accessHint(
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
                     ViewportHint.Access(
                         pageOffset = 0,
-                        indexInPage = -1,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    createPrepend(pageOffset = -1, range = 49..49)
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun prependAndDrop() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val config =
+                    PagingConfig(
+                        pageSize = 2,
+                        prefetchDistance = 1,
+                        enablePlaceholders = true,
+                        initialLoadSize = 2,
+                        maxSize = 4
+                    )
+                val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+                val fetcherState = collectFetcherState(pageFetcher)
+
+                advanceUntilIdle()
+                // Make sure the job didn't complete exceptionally
+                assertFalse { fetcherState.job.isCancelled }
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(range = 50..51)
+                    )
+
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 1,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertFalse { fetcherState.job.isCancelled }
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(prependLocal = Loading),
+                        createPrepend(pageOffset = -1, range = 48..49)
+                    )
+
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = -1,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 3,
+                            originalPageOffsetFirst = -1,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertFalse { fetcherState.job.isCancelled }
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(prependLocal = Loading),
+                        Drop<Int>(
+                            loadType = APPEND,
+                            minPageOffset = 0,
+                            maxPageOffset = 0,
+                            placeholdersRemaining = 50
+                        ),
+                        createPrepend(pageOffset = -2, range = 46..47)
+                    )
+
+                fetcherState.job.cancel()
+            }
+        }
+
+    @Test
+    fun prependAndSkipDrop_prefetchWindow() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pageFetcher =
+                    PageFetcher(
+                        pagingSourceFactory = pagingSourceFactory,
+                        initialKey = 50,
+                        config =
+                            PagingConfig(
+                                pageSize = 1,
+                                prefetchDistance = 2,
+                                enablePlaceholders = true,
+                                initialLoadSize = 5,
+                                maxSize = 5
+                            )
+                    )
+                val fetcherState = collectFetcherState(pageFetcher)
+
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(range = 50..54)
+                    )
+
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 4,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(prependLocal = Loading),
+                        createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
+                        createPrepend(pageOffset = -2, range = 48..48)
+                    )
+
+                // Make sure the job didn't complete exceptionally
+                assertFalse { fetcherState.job.isCancelled }
+
+                fetcherState.job.cancel()
+            }
+        }
+
+    @Test
+    fun prependAndDropWithCancellation() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val config =
+                    PagingConfig(
+                        pageSize = 2,
+                        prefetchDistance = 1,
+                        enablePlaceholders = true,
+                        initialLoadSize = 2,
+                        maxSize = 4
+                    )
+                val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+                val fetcherState = collectFetcherState(pageFetcher)
+
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(range = 50..51)
+                    )
+
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 1,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(prependLocal = Loading),
+                        createPrepend(pageOffset = -1, range = 48..49)
+                    )
+
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = -1,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 3,
+                            originalPageOffsetFirst = -1,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                // Start hint processing until load starts, but hasn't finished.
+                advanceTimeBy(500)
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 3,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = -1,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(prependLocal = Loading),
+                        localLoadStateUpdate<Int>(prependLocal = Loading, appendLocal = Loading),
+                        Drop<Int>(
+                            loadType = APPEND,
+                            minPageOffset = 0,
+                            maxPageOffset = 0,
+                            placeholdersRemaining = 50
+                        ),
+                        createPrepend(pageOffset = -2, range = 46..47)
+                    )
+
+                fetcherState.job.cancel()
+            }
+        }
+
+    @Test
+    fun prependMultiplePages() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                    maxSize = 5
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..52)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
                         presentedItemsBefore = 0,
                         presentedItemsAfter = 2,
                         originalPageOffsetFirst = 0,
                         originalPageOffsetLast = 0
                     )
                 )
-                advanceUntilIdle()
-                assertThat(pageEvents.newEvents()).isEmpty()
-            }
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
+                    createPrepend(pageOffset = -2, range = 48..48)
+                )
 
-            testScope.advanceUntilIdle()
+            fetcherState.job.cancel()
         }
-    }
 
     @Test
-    fun retryRefresh() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pageSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+    fun prepend_viewportHintPrioritizesGenerationId() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                    maxSize = 5
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-            collectSnapshotData(pager) { state, _ ->
-
-                pageSource.errorNextLoad = true
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
                     localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
+                    createRefresh(range = 50..52)
                 )
 
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    createRefresh(50..51)
-                )
-            }
-        }
-    }
-
-    @Test
-    fun retryRefreshWithBufferedHint() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pageSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
-            collectSnapshotData(pager) { state, _ ->
-                pageSource.errorNextLoad = true
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
-                )
-                pager.accessHint(
+            // PREPEND a few pages.
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
                     ViewportHint.Access(
                         pageOffset = 0,
                         indexInPage = 0,
                         presentedItemsBefore = 0,
-                        presentedItemsAfter = 1,
+                        presentedItemsAfter = 2,
                         originalPageOffsetFirst = 0,
                         originalPageOffsetLast = 0
                     )
                 )
-                advanceUntilIdle()
-                assertTrue { state.newEvents().isEmpty() }
-
-                retryBus.send(Unit)
-                advanceUntilIdle()
-                assertThat(state.newEvents()).containsExactly(
-                    localLoadStateUpdate<Int>(refreshLocal = Loading),
-                    createRefresh(range = 50..51),
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
                     localLoadStateUpdate<Int>(prependLocal = Loading),
+                    createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
+                    createPrepend(pageOffset = -2, range = 48..48)
+                )
+
+            // APPEND a few pages causing PREPEND pages to drop
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 2,
+                        presentedItemsBefore = 4,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = -2,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    Drop<Int>(
+                        loadType = PREPEND,
+                        minPageOffset = -2,
+                        maxPageOffset = -2,
+                        placeholdersRemaining = 49
+                    ),
+                    createAppend(pageOffset = 1, range = 53..53, endState = Loading),
+                    Drop<Int>(
+                        loadType = PREPEND,
+                        minPageOffset = -1,
+                        maxPageOffset = -1,
+                        placeholdersRemaining = 50
+                    ),
+                    createAppend(pageOffset = 2, range = 54..54)
+                )
+
+            // PREPEND a page, this hint would normally be ignored, but has a newer generationId.
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 3,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 2
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    Drop<Int>(
+                        loadType = APPEND,
+                        minPageOffset = 2,
+                        maxPageOffset = 2,
+                        placeholdersRemaining = 46
+                    ),
                     createPrepend(pageOffset = -1, range = 49..49)
                 )
-            }
+
+            fetcherState.job.cancel()
         }
-    }
 
     @Test
-    fun retry_remotePrepend() = runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
+    fun rapidViewportHints() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 10,
+                    prefetchDistance = 5,
+                    enablePlaceholders = true,
+                    initialLoadSize = 10,
+                    maxSize = 100
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 0, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-                return if (loadType == PREPEND) {
-                    MediatorResult.Error(EXCEPTION)
-                } else {
-                    MediatorResult.Success(endOfPaginationReached = true)
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(0..9, startState = NotLoading.Complete)
+                )
+            withContext(coroutineContext) {
+                val receiver = fetcherState.pagingDataList[0].hintReceiver
+                // send a bunch of access hints while collection is paused
+                (0..9).forEach { pos ->
+                    receiver.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = pos,
+                            presentedItemsBefore = pos,
+                            presentedItemsAfter = 9 - pos,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                }
+            }
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(
+                        appendLocal = Loading,
+                        prependLocal = NotLoading.Complete
+                    ),
+                    createAppend(
+                        pageOffset = 1,
+                        range = 10..19,
+                        startState = NotLoading.Complete,
+                        endState = NotLoading.Incomplete
+                    ),
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun append() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..51)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(1, 52..52)
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun appendMultiplePages() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                    maxSize = 5
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..52)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 2,
+                        presentedItemsBefore = 2,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(
+                        pageOffset = 1,
+                        range = 53..53,
+                        startState = NotLoading.Incomplete,
+                        endState = Loading
+                    ),
+                    createAppend(2, 54..54)
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun appendAndDrop() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 2,
+                    prefetchDistance = 1,
+                    enablePlaceholders = true,
+                    initialLoadSize = 2,
+                    maxSize = 4
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 50..51)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(pageOffset = 1, range = 52..53)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 1,
+                        indexInPage = 1,
+                        presentedItemsBefore = 3,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 1
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    Drop<Int>(
+                        loadType = PREPEND,
+                        minPageOffset = 0,
+                        maxPageOffset = 0,
+                        placeholdersRemaining = 52
+                    ),
+                    createAppend(pageOffset = 2, range = 54..55)
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun appendAndSkipDrop_prefetchWindow() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pageFetcher =
+                    PageFetcher(
+                        pagingSourceFactory = pagingSourceFactory,
+                        initialKey = 50,
+                        config =
+                            PagingConfig(
+                                pageSize = 1,
+                                prefetchDistance = 2,
+                                enablePlaceholders = true,
+                                initialLoadSize = 5,
+                                maxSize = 5
+                            )
+                    )
+                val fetcherState = collectFetcherState(pageFetcher)
+
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(range = 50..54)
+                    )
+
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 4,
+                            presentedItemsBefore = 4,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(appendLocal = Loading),
+                        createAppend(pageOffset = 1, range = 55..55, endState = Loading),
+                        createAppend(pageOffset = 2, range = 56..56)
+                    )
+
+                fetcherState.job.cancel()
+            }
+        }
+
+    @Test
+    fun appendAndDropWithCancellation() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val config =
+                    PagingConfig(
+                        pageSize = 2,
+                        prefetchDistance = 1,
+                        enablePlaceholders = true,
+                        initialLoadSize = 2,
+                        maxSize = 4
+                    )
+                val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+                val fetcherState = collectFetcherState(pageFetcher)
+
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(range = 50..51)
+                    )
+
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 1,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(appendLocal = Loading),
+                        createAppend(pageOffset = 1, range = 52..53)
+                    )
+
+                // Start hint processing until load starts, but hasn't finished.
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 1,
+                            indexInPage = 1,
+                            presentedItemsBefore = 3,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 1
+                        )
+                    )
+                advanceTimeBy(500)
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 3,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 1
+                        )
+                    )
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(appendLocal = Loading),
+                        localLoadStateUpdate<Int>(appendLocal = Loading, prependLocal = Loading),
+                        Drop<Int>(
+                            loadType = PREPEND,
+                            minPageOffset = 0,
+                            maxPageOffset = 0,
+                            placeholdersRemaining = 52
+                        ),
+                        createAppend(
+                            pageOffset = 2,
+                            range = 54..55,
+                            startState = NotLoading.Incomplete,
+                            endState = NotLoading.Incomplete
+                        )
+                    )
+
+                fetcherState.job.cancel()
+            }
+        }
+
+    @Test
+    fun append_viewportHintPrioritizesGenerationId() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                    maxSize = 5
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 50..52)
+                )
+
+            // APPEND a few pages.
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 2,
+                        presentedItemsBefore = 2,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(pageOffset = 1, range = 53..53, endState = Loading),
+                    createAppend(pageOffset = 2, range = 54..54)
+                )
+
+            // PREPEND a few pages causing APPEND pages to drop
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 4,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 2
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    Drop<Int>(
+                        loadType = APPEND,
+                        minPageOffset = 2,
+                        maxPageOffset = 2,
+                        placeholdersRemaining = 46
+                    ),
+                    createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
+                    Drop<Int>(
+                        loadType = APPEND,
+                        minPageOffset = 1,
+                        maxPageOffset = 1,
+                        placeholdersRemaining = 47
+                    ),
+                    createPrepend(pageOffset = -2, range = 48..48)
+                )
+
+            // APPEND a page, this hint would normally be ignored, but has a newer generationId.
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 3,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = -2,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    Drop<Int>(
+                        loadType = PREPEND,
+                        minPageOffset = -2,
+                        maxPageOffset = -2,
+                        placeholdersRemaining = 49
+                    ),
+                    createAppend(pageOffset = 1, range = 53..53)
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun invalidateNoScroll() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..51)
+                )
+
+            pageFetcher.refresh()
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(
+                        range = 0..1,
+                        startState = NotLoading.Complete,
+                    )
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun invalidateAfterScroll() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..51)
+                )
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(1, 52..52)
+                )
+
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(51..52)
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun close_cancelsCollectionBeforeInitialLoad() =
+        testScope.runTest {
+            // Infinitely suspending PagingSource which never finishes loading anything.
+            val pagingSource =
+                object : PagingSource<Int, Int>() {
+                    override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                        delay(2000)
+                        fail("Should never get here")
+                    }
+
+                    override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
+                }
+            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+
+            collectSnapshotData(pager) { _, job ->
+
+                // Start the initial load, but do not let it finish.
+                advanceTimeBy(500)
+
+                // Close pager, then advance time by enough to allow initial load to finish.
+                pager.close()
+                advanceTimeBy(1500)
+
+                assertTrue { !job.isActive }
+            }
+        }
+
+    @Test
+    fun retry() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pageSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+
+                collectSnapshotData(pager) { state, _ ->
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            createRefresh(range = 50..51)
+                        )
+
+                    pageSource.errorNextLoad = true
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 1,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
+                        )
+
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            createAppend(pageOffset = 1, range = 52..52)
+                        )
                 }
             }
         }
 
+    @Test
+    fun retryNothing() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pageSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+
+                collectSnapshotData(pager) { state, _ ->
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            createRefresh(range = 50..51)
+                        )
+
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 1,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            createAppend(pageOffset = 1, range = 52..52)
+                        )
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertTrue { state.newEvents().isEmpty() }
+                }
+            }
+        }
+
+    @Test
+    fun retryTwice() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pageSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+
+                collectSnapshotData(pager) { state, _ ->
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            createRefresh(range = 50..51)
+                        )
+                    pageSource.errorNextLoad = true
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 1,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
+                        )
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            createAppend(pageOffset = 1, range = 52..52)
+                        )
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertTrue { state.newEvents().isEmpty() }
+                }
+            }
+        }
+
+    @Test
+    fun retryBothDirections() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val config =
+                    PagingConfig(
+                        pageSize = 1,
+                        prefetchDistance = 1,
+                        enablePlaceholders = true,
+                        initialLoadSize = 2,
+                        maxSize = 4
+                    )
+                val pageSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+
+                collectSnapshotData(pager) { state, _ ->
+                    // Initial REFRESH
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            createRefresh(range = 50..51)
+                        )
+
+                    // Failed APPEND
+                    pageSource.errorNextLoad = true
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 1,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
+                        )
+
+                    // Failed PREPEND
+                    pageSource.errorNextLoad = true
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 1,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Loading,
+                                appendLocal = Error(LOAD_ERROR)
+                            ),
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Error(LOAD_ERROR),
+                                appendLocal = Error(LOAD_ERROR)
+                            ),
+                        )
+
+                    // Retry should trigger in both directions.
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Loading,
+                                appendLocal = Error(LOAD_ERROR),
+                            ),
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Loading,
+                                appendLocal = Loading,
+                            ),
+                            createPrepend(
+                                pageOffset = -1,
+                                range = 49..49,
+                                startState = NotLoading.Incomplete,
+                                endState = Loading
+                            ),
+                            createAppend(pageOffset = 1, range = 52..52)
+                        )
+                }
+            }
+        }
+
+    @Test
+    fun retry_errorDoesNotEnableHints() =
+        testScope.runTest {
+            withContext(StandardTestDispatcher(testScheduler)) {
+                val pageSource =
+                    object : PagingSource<Int, Int>() {
+                        var nextResult: LoadResult<Int, Int>? = null
+
+                        override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                            val result = nextResult
+                            nextResult = null
+                            return result ?: LoadResult.Error(LOAD_ERROR)
+                        }
+
+                        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
+                    }
+                val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+
+                collectSnapshotData(pager) { pageEvents, _ ->
+                    // Successful REFRESH
+                    pageSource.nextResult =
+                        Page(
+                            data = listOf(0, 1),
+                            prevKey = -1,
+                            nextKey = 1,
+                            itemsBefore = 50,
+                            itemsAfter = 48
+                        )
+                    advanceUntilIdle()
+                    assertThat(pageEvents.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            localRefresh(
+                                pages = listOf(TransformablePage(listOf(0, 1))),
+                                placeholdersBefore = 50,
+                                placeholdersAfter = 48,
+                            )
+                        )
+
+                    // Hint to trigger APPEND
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 1,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(pageEvents.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
+                        )
+
+                    // Retry failed APPEND
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertThat(pageEvents.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(appendLocal = Loading),
+                            localLoadStateUpdate<Int>(appendLocal = Error(LOAD_ERROR)),
+                        )
+
+                    // This hint should be ignored even though in the non-error state it would
+                    // re-emit for APPEND due to greater presenterIndex value.
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 2,
+                            presentedItemsBefore = 2,
+                            presentedItemsAfter = -1,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(pageEvents.newEvents()).isEmpty()
+
+                    // Hint to trigger PREPEND
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 1,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(pageEvents.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Loading,
+                                appendLocal = Error(LOAD_ERROR),
+                            ),
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Error(LOAD_ERROR),
+                                appendLocal = Error(LOAD_ERROR),
+                            ),
+                        )
+
+                    // Retry failed hints, both PREPEND and APPEND should trigger.
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertThat(pageEvents.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Loading,
+                                appendLocal = Error(LOAD_ERROR),
+                            ),
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Loading,
+                                appendLocal = Loading
+                            ),
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Error(LOAD_ERROR),
+                                appendLocal = Loading,
+                            ),
+                            localLoadStateUpdate<Int>(
+                                prependLocal = Error(LOAD_ERROR),
+                                appendLocal = Error(LOAD_ERROR),
+                            ),
+                        )
+
+                    // This hint should be ignored even though in the non-error state it would
+                    // re-emit for PREPEND due to smaller presenterIndex value.
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = -1,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 2,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertThat(pageEvents.newEvents()).isEmpty()
+                }
+
+                testScope.advanceUntilIdle()
+            }
+        }
+
+    @Test
+    fun retryRefresh() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pageSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+
+                collectSnapshotData(pager) { state, _ ->
+                    pageSource.errorNextLoad = true
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
+                        )
+
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            createRefresh(50..51)
+                        )
+                }
+            }
+        }
+
+    @Test
+    fun retryRefreshWithBufferedHint() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pageSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pageSource, config, retryFlow = retryBus.flow)
+                collectSnapshotData(pager) { state, _ ->
+                    pageSource.errorNextLoad = true
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
+                        )
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = 1,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                    advanceUntilIdle()
+                    assertTrue { state.newEvents().isEmpty() }
+
+                    retryBus.send(Unit)
+                    advanceUntilIdle()
+                    assertThat(state.newEvents())
+                        .containsExactly(
+                            localLoadStateUpdate<Int>(refreshLocal = Loading),
+                            createRefresh(range = 50..51),
+                            localLoadStateUpdate<Int>(prependLocal = Loading),
+                            createPrepend(pageOffset = -1, range = 49..49)
+                        )
+                }
+            }
+        }
+
+    @Test
+    fun retry_remotePrepend() = runTest {
+        val remoteMediator =
+            object : RemoteMediatorMock() {
+                override suspend fun load(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): MediatorResult {
+                    super.load(loadType, state)
+
+                    return if (loadType == PREPEND) {
+                        MediatorResult.Error(EXCEPTION)
+                    } else {
+                        MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+            }
+
         var createdPagingSource = false
         val factory = suspend {
             check(!createdPagingSource)
             createdPagingSource = true
             TestPagingSource(items = List(2) { it })
         }
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = factory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
+        val pager =
+            PageFetcher(
+                initialKey = 0,
+                pagingSourceFactory = factory,
+                config = config,
+                remoteMediator = remoteMediator
+            )
 
         pager.collectEvents {
             awaitIdle()
@@ -1648,34 +1806,28 @@
             awaitIdle()
             retry()
             awaitIdle()
-            assertThat(
-                remoteMediator.loadEventCounts()
-            ).containsExactlyEntriesIn(
-                mapOf(
-                    PREPEND to 3,
-                    APPEND to 1,
-                    REFRESH to 0
-                )
-            )
+            assertThat(remoteMediator.loadEventCounts())
+                .containsExactlyEntriesIn(mapOf(PREPEND to 3, APPEND to 1, REFRESH to 0))
         }
     }
 
     @Test
     fun retry_remoteAppend() = runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
+        val remoteMediator =
+            object : RemoteMediatorMock() {
+                override suspend fun load(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): MediatorResult {
+                    super.load(loadType, state)
 
-                return if (loadType == APPEND) {
-                    MediatorResult.Error(EXCEPTION)
-                } else {
-                    MediatorResult.Success(endOfPaginationReached = true)
+                    return if (loadType == APPEND) {
+                        MediatorResult.Error(EXCEPTION)
+                    } else {
+                        MediatorResult.Success(endOfPaginationReached = true)
+                    }
                 }
             }
-        }
 
         var createdPagingSource = false
         val factory = suspend {
@@ -1683,12 +1835,13 @@
             createdPagingSource = true
             TestPagingSource(items = List(2) { it })
         }
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = factory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
+        val pager =
+            PageFetcher(
+                initialKey = 0,
+                pagingSourceFactory = factory,
+                config = config,
+                remoteMediator = remoteMediator
+            )
 
         pager.collectEvents {
             // Resolve initial load.
@@ -1697,154 +1850,205 @@
             awaitIdle()
             retry()
             awaitIdle()
-            assertThat(
-                remoteMediator.loadEventCounts()
-            ).containsExactlyEntriesIn(
-                mapOf(
-                    PREPEND to 1,
-                    APPEND to 3,
-                    REFRESH to 0
-                )
-            )
+            assertThat(remoteMediator.loadEventCounts())
+                .containsExactlyEntriesIn(mapOf(PREPEND to 1, APPEND to 3, REFRESH to 0))
         }
     }
 
     @Test
-    fun disablePlaceholders_refresh() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = false,
-            initialLoadSize = 2,
-            maxSize = 3
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
+    fun disablePlaceholders_refresh() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = false,
+                    initialLoadSize = 2,
+                    maxSize = 3
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            localRefresh(createRefresh(range = 50..51).pages)
-        )
+            assertThat(fetcherState.pageEventLists[0])
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    localRefresh(createRefresh(range = 50..51).pages)
+                )
 
-        fetcherState.job.cancel()
-    }
+            fetcherState.job.cancel()
+        }
 
     @Test
-    fun disablePlaceholders_prepend() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = false,
-            initialLoadSize = 2,
-            maxSize = 3
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
+    fun disablePlaceholders_prepend() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = false,
+                    initialLoadSize = 2,
+                    maxSize = 3
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            localRefresh(createRefresh(range = 50..51).pages)
-        )
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            localPrepend(createPrepend(-1, 49..49).pages)
-        )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    localRefresh(createRefresh(range = 50..51).pages)
+                )
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    localPrepend(createPrepend(-1, 49..49).pages)
+                )
 
-        fetcherState.job.cancel()
-    }
+            fetcherState.job.cancel()
+        }
 
     @Test
-    fun disablePlaceholders_append() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = false,
-            initialLoadSize = 2,
-            maxSize = 3
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
+    fun disablePlaceholders_append() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = false,
+                    initialLoadSize = 2,
+                    maxSize = 3
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            localRefresh(createRefresh(range = 50..51).pages)
-        )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    localRefresh(createRefresh(range = 50..51).pages)
+                )
 
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 1,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            localAppend(createAppend(1, 52..52).pages)
-        )
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    localAppend(createAppend(1, 52..52).pages)
+                )
 
-        fetcherState.job.cancel()
-    }
+            fetcherState.job.cancel()
+        }
 
     @Test
-    fun neverDropBelowTwoPages() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-            maxSize = 3
-        )
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
+    fun neverDropBelowTwoPages() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                    maxSize = 3
+                )
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
 
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(range = 50..52)
-        )
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 2,
-                presentedItemsBefore = 2,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(pageOffset = 1, range = 53..53)
-        )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(range = 50..52)
+                )
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 2,
+                        presentedItemsBefore = 2,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(pageOffset = 1, range = 53..53)
+                )
 
-        fetcherState.job.cancel()
-    }
+            fetcherState.job.cancel()
+        }
 
     @Test
-    fun currentPagingState_pagesEmptyWithHint() = testScope.runTest {
-        withContext(coroutineContext) {
+    fun currentPagingState_pagesEmptyWithHint() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pagingSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                assertThat(pager.currentPagingState())
+                    .isEqualTo(
+                        PagingState<Int, Int>(
+                            pages = listOf(),
+                            anchorPosition = 0,
+                            config = config,
+                            leadingPlaceholderCount = 0
+                        )
+                    )
+            }
+        }
+
+    /** Verify we re-use previous PagingState for remote refresh if there are no pages loaded. */
+    @Test
+    fun currentPagingState_ignoredOnEmptyPages() =
+        testScope.runTest {
+            val remoteMediator = RemoteMediatorMock()
             val pagingSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+            val pager =
+                PageFetcherSnapshot(
+                    initialKey = 50,
+                    pagingSource = pagingSource,
+                    config = config,
+                    retryFlow = retryBus.flow,
+                    remoteMediatorConnection = RemoteMediatorAccessor(testScope, remoteMediator)
+                )
             pager.accessHint(
                 ViewportHint.Access(
                     pageOffset = 0,
@@ -1855,127 +2059,51 @@
                     originalPageOffsetLast = 0
                 )
             )
-            assertThat(pager.currentPagingState()).isEqualTo(
-                PagingState<Int, Int>(
-                    pages = listOf(),
-                    anchorPosition = 0,
-                    config = config,
-                    leadingPlaceholderCount = 0
-                )
-            )
-        }
-    }
-
-    /**
-     * Verify we re-use previous PagingState for remote refresh if there are no pages loaded.
-     */
-    @Test
-    fun currentPagingState_ignoredOnEmptyPages() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock()
-        val pagingSource = pagingSourceFactory()
-        val pager = PageFetcherSnapshot(
-            initialKey = 50,
-            pagingSource = pagingSource,
-            config = config,
-            retryFlow = retryBus.flow,
-            remoteMediatorConnection = RemoteMediatorAccessor(testScope, remoteMediator)
-        )
-        pager.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        assertThat(pager.currentPagingState()).isEqualTo(
-            PagingState<Int, Int>(
-                pages = listOf(),
-                anchorPosition = 0,
-                config = config,
-                leadingPlaceholderCount = 0
-            )
-        )
-    }
-
-    @Test
-    fun currentPagingState_loadedIndex() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pagingSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
-
-            collectSnapshotData(pager) { _, _ ->
-                advanceUntilIdle()
-
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = 1,
-                        presentedItemsBefore = 1,
-                        presentedItemsAfter = 0,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
+            assertThat(pager.currentPagingState())
+                .isEqualTo(
+                    PagingState<Int, Int>(
+                        pages = listOf(),
+                        anchorPosition = 0,
+                        config = config,
+                        leadingPlaceholderCount = 0
                     )
                 )
-
-                val pagingState = pager.currentPagingState()
-                assertNotNull(pagingState)
-                assertEquals(51, pagingState.anchorPosition)
-
-                // Assert from anchorPosition in placeholdersBefore
-                assertEquals(50, pagingState.closestItemToPosition(10))
-                // Assert from anchorPosition in loaded indices
-                assertEquals(50, pagingState.closestItemToPosition(50))
-                assertEquals(51, pagingState.closestItemToPosition(51))
-                // Assert from anchorPosition in placeholdersAfter
-                assertEquals(51, pagingState.closestItemToPosition(90))
-
-                val loadedPage = Page(
-                    data = listOf(50, 51),
-                    prevKey = 49,
-                    nextKey = 52,
-                    itemsBefore = 50,
-                    itemsAfter = 48
-                )
-                assertEquals(listOf(loadedPage), pagingState.pages)
-                // Assert from anchorPosition in placeholdersBefore
-                assertEquals(loadedPage, pagingState.closestPageToPosition(10))
-                // Assert from anchorPosition in loaded indices
-                assertEquals(loadedPage, pagingState.closestPageToPosition(50))
-                assertEquals(loadedPage, pagingState.closestPageToPosition(51))
-                // Assert from anchorPosition in placeholdersAfter
-                assertEquals(loadedPage, pagingState.closestPageToPosition(90))
-            }
         }
-    }
 
     @Test
-    fun currentPagingState_placeholdersBefore() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pagingSource = pagingSourceFactory()
-            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+    fun currentPagingState_loadedIndex() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pagingSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
 
-            collectSnapshotData(pager) { _, _ ->
-                advanceUntilIdle()
+                collectSnapshotData(pager) { _, _ ->
+                    advanceUntilIdle()
 
-                pager.accessHint(
-                    ViewportHint.Access(
-                        pageOffset = 0,
-                        indexInPage = -40,
-                        presentedItemsBefore = -40,
-                        presentedItemsAfter = 0,
-                        originalPageOffsetFirst = 0,
-                        originalPageOffsetLast = 0
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 1,
+                            presentedItemsBefore = 1,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
                     )
-                )
 
-                val pagingState = pager.currentPagingState()
-                assertNotNull(pagingState)
-                assertEquals(10, pagingState.anchorPosition)
-                assertEquals(
-                    listOf(
+                    val pagingState = pager.currentPagingState()
+                    assertNotNull(pagingState)
+                    assertEquals(51, pagingState.anchorPosition)
+
+                    // Assert from anchorPosition in placeholdersBefore
+                    assertEquals(50, pagingState.closestItemToPosition(10))
+                    // Assert from anchorPosition in loaded indices
+                    assertEquals(50, pagingState.closestItemToPosition(50))
+                    assertEquals(51, pagingState.closestItemToPosition(51))
+                    // Assert from anchorPosition in placeholdersAfter
+                    assertEquals(51, pagingState.closestItemToPosition(90))
+
+                    val loadedPage =
                         Page(
                             data = listOf(50, 51),
                             prevKey = 49,
@@ -1983,1257 +2111,1371 @@
                             itemsBefore = 50,
                             itemsAfter = 48
                         )
-                    ),
-                    pagingState.pages
-                )
-
-                // Assert from anchorPosition in placeholdersBefore
-                assertEquals(50, pagingState.closestItemToPosition(10))
-                // Assert from anchorPosition in loaded indices
-                assertEquals(50, pagingState.closestItemToPosition(50))
-                assertEquals(51, pagingState.closestItemToPosition(51))
-                // Assert from anchorPosition in placeholdersAfter
-                assertEquals(51, pagingState.closestItemToPosition(90))
-
-                val loadedPage = Page(
-                    data = listOf(50, 51),
-                    prevKey = 49,
-                    nextKey = 52,
-                    itemsBefore = 50,
-                    itemsAfter = 48
-                )
-                // Assert from anchorPosition in placeholdersBefore
-                assertEquals(loadedPage, pagingState.closestPageToPosition(10))
-                // Assert from anchorPosition in loaded indices
-                assertEquals(loadedPage, pagingState.closestPageToPosition(50))
-                assertEquals(loadedPage, pagingState.closestPageToPosition(51))
-                // Assert from anchorPosition in placeholdersAfter
-                assertEquals(loadedPage, pagingState.closestPageToPosition(90))
-            }
-        }
-    }
-
-    @Test
-    fun currentPagingState_noHint() = testScope.runTest {
-        val pager = PageFetcherSnapshot(
-            initialKey = 50,
-            pagingSource = TestPagingSource(loadDelay = 100),
-            config = config,
-            retryFlow = retryBus.flow
-        )
-
-        assertThat(pager.currentPagingState()).isEqualTo(
-            PagingState<Int, Int>(
-                pages = listOf(),
-                anchorPosition = null,
-                config = config,
-                leadingPlaceholderCount = 0,
-            )
-        )
-    }
-
-    @Test
-    fun retry_ignoresNewSignalsWhileProcessing() = testScope.runTest {
-        val pagingSource = pagingSourceFactory()
-        val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
-        collectSnapshotData(pager) { state, _ ->
-            pagingSource.errorNextLoad = true
-            advanceUntilIdle()
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
-            )
-
-            pagingSource.errorNextLoad = true
-            retryBus.send(Unit)
-            // Should be ignored by pager as it's still processing previous retry.
-            retryBus.send(Unit)
-            advanceUntilIdle()
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
-            )
-        }
-    }
-
-    /**
-     * The case where all pages from presenter have been dropped in fetcher, so instead of
-     * counting dropped pages against prefetchDistance, we should clamp that logic to only count
-     * pages that have been loaded.
-     */
-    @Test
-    fun doLoad_prependPresenterPagesDropped() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(50..51)
-        )
-
-        // Send a hint from a presenter state that only sees pages well after the pages loaded in
-        // fetcher state:
-        // [hint], [50, 51], [52], [53], [54], [55]
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 4,
-                indexInPage = -6,
-                presentedItemsBefore = -6,
-                presentedItemsAfter = 2,
-                originalPageOffsetFirst = 4,
-                originalPageOffsetLast = 6
-            )
-        )
-        advanceUntilIdle()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(prependLocal = Loading),
-            createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
-            createPrepend(pageOffset = -2, range = 48..48, startState = NotLoading.Incomplete),
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    /**
-     * The case where all pages from presenter have been dropped in fetcher, so instead of
-     * counting dropped pages against prefetchDistance, we should clamp that logic to only count
-     * pages that have been loaded.
-     */
-    @Test
-    fun doLoad_appendPresenterPagesDropped() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(50..51)
-        )
-
-        // Send a hint from a presenter state that only sees pages well before the pages loaded in
-        // fetcher state:
-        // [46], [47], [48], [49], [50, 51], [hint]
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = -4,
-                indexInPage = 6,
-                presentedItemsBefore = 2,
-                presentedItemsAfter = -6,
-                originalPageOffsetFirst = -6,
-                originalPageOffsetLast = -4
-            )
-        )
-        advanceUntilIdle()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(appendLocal = Loading),
-            createAppend(pageOffset = 1, range = 52..52, endState = Loading),
-            createAppend(pageOffset = 2, range = 53..53, endState = NotLoading.Incomplete),
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun remoteMediator_initialLoadErrorTriggersLocal() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun initialize(): InitializeAction {
-                return InitializeAction.LAUNCH_INITIAL_REFRESH
-            }
-
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                return MediatorResult.Error(EXCEPTION)
+                    assertEquals(listOf(loadedPage), pagingState.pages)
+                    // Assert from anchorPosition in placeholdersBefore
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(10))
+                    // Assert from anchorPosition in loaded indices
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(50))
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(51))
+                    // Assert from anchorPosition in placeholdersAfter
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(90))
+                }
             }
         }
 
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = pagingSourceFactory,
-            config = PagingConfig(1),
-            remoteMediator = remoteMediator
-        )
-
-        val expected = listOf(
-            listOf(
-                remoteLoadStateUpdate(
-                    refreshLocal = Loading,
-                ),
-                remoteLoadStateUpdate(
-                    refreshLocal = Loading,
-                    refreshRemote = Loading,
-                ),
-                remoteLoadStateUpdate(
-                    refreshLocal = Loading,
-                    refreshRemote = Error(EXCEPTION),
-                ),
-                createRefresh(
-                    range = 0..2,
-                    remoteLoadStatesOf(
-                        refresh = Error(EXCEPTION),
-                        prependLocal = NotLoading.Complete,
-                        refreshRemote = Error(EXCEPTION),
-                    ),
-                ),
-                // since remote refresh failed and launch initial refresh is requested,
-                // we won't receive any append/prepend events
-            )
-        )
-
-        pager.assertEventByGeneration(expected)
-    }
-
     @Test
-    fun remoteMediator_initialLoadTriggersPrepend() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-                currentPagingSource!!.invalidate()
-                return MediatorResult.Success(endOfPaginationReached = false)
-            }
-        }
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = pagingSourceFactory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
+    fun currentPagingState_placeholdersBefore() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pagingSource = pagingSourceFactory()
+                val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
 
-        pager.pageEvents().take(4).toList()
-        assertEquals(1, remoteMediator.loadEvents.size)
-        assertEquals(PREPEND, remoteMediator.loadEvents[0].loadType)
-        assertNotNull(remoteMediator.loadEvents[0].state)
-    }
+                collectSnapshotData(pager) { _, _ ->
+                    advanceUntilIdle()
 
-    @Test
-    fun remoteMediator_initialLoadTriggersAppend() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-                currentPagingSource!!.invalidate()
-                return MediatorResult.Success(endOfPaginationReached = false)
-            }
-        }
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val fetcher = PageFetcher(
-            initialKey = 99,
-            pagingSourceFactory = pagingSourceFactory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        // taking 4 events:
-        // local load, local insert, append state change to loading, local load w/ new append result
-        // 4th one is necessary as the Loading state change is done optimistically before the
-        // remote mediator is invoked
-        fetcher.pageEvents().take(4).toList()
-        assertEquals(1, remoteMediator.loadEvents.size)
-        assertEquals(APPEND, remoteMediator.loadEvents[0].loadType)
-        assertNotNull(remoteMediator.loadEvents[0].state)
-    }
+                    pager.accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = -40,
+                            presentedItemsBefore = -40,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
 
-    @Test
-    fun remoteMediator_remoteRefreshCachesPreviousPagingState() = testScope.runTest {
-        @OptIn(ExperimentalPagingApi::class)
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ -> RemoteMediator.MediatorResult.Success(true) }
-        }
-
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = { TestPagingSource(items = listOf(0)) },
-            config = config,
-            remoteMediator = remoteMediator
-        )
-
-        val state = collectFetcherState(pager)
-
-        // Let the initial page load; loaded data should be [0]
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent<Int, Int>(
-                loadType = REFRESH,
-                state = PagingState(
-                    pages = listOf(),
-                    anchorPosition = null,
-                    config = config,
-                    leadingPlaceholderCount = 0,
-                ),
-            )
-        )
-
-        // Explicit call to refresh, which should trigger remote refresh with cached PagingState.
-        pager.refresh()
-        advanceUntilIdle()
-
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(
-                loadType = REFRESH,
-                state = PagingState(
-                    pages = listOf(
-                        Page(
-                            data = listOf(0),
-                            prevKey = null,
-                            nextKey = null,
-                            itemsBefore = 0,
-                            itemsAfter = 0,
+                    val pagingState = pager.currentPagingState()
+                    assertNotNull(pagingState)
+                    assertEquals(10, pagingState.anchorPosition)
+                    assertEquals(
+                        listOf(
+                            Page(
+                                data = listOf(50, 51),
+                                prevKey = 49,
+                                nextKey = 52,
+                                itemsBefore = 50,
+                                itemsAfter = 48
+                            )
                         ),
-                    ),
-                    anchorPosition = null,
+                        pagingState.pages
+                    )
+
+                    // Assert from anchorPosition in placeholdersBefore
+                    assertEquals(50, pagingState.closestItemToPosition(10))
+                    // Assert from anchorPosition in loaded indices
+                    assertEquals(50, pagingState.closestItemToPosition(50))
+                    assertEquals(51, pagingState.closestItemToPosition(51))
+                    // Assert from anchorPosition in placeholdersAfter
+                    assertEquals(51, pagingState.closestItemToPosition(90))
+
+                    val loadedPage =
+                        Page(
+                            data = listOf(50, 51),
+                            prevKey = 49,
+                            nextKey = 52,
+                            itemsBefore = 50,
+                            itemsAfter = 48
+                        )
+                    // Assert from anchorPosition in placeholdersBefore
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(10))
+                    // Assert from anchorPosition in loaded indices
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(50))
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(51))
+                    // Assert from anchorPosition in placeholdersAfter
+                    assertEquals(loadedPage, pagingState.closestPageToPosition(90))
+                }
+            }
+        }
+
+    @Test
+    fun currentPagingState_noHint() =
+        testScope.runTest {
+            val pager =
+                PageFetcherSnapshot(
+                    initialKey = 50,
+                    pagingSource = TestPagingSource(loadDelay = 100),
                     config = config,
-                    leadingPlaceholderCount = 0,
-                ),
-            )
-        )
-
-        state.job.cancel()
-    }
-
-    @Test
-    fun sourceOnlyInitialLoadState() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = { TestPagingSource(items = listOf(0)) },
-            config = config,
-        )
-
-        val state = collectFetcherState(pager)
-        assertThat(state.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(
-                refreshLocal = Loading
-            ),
-        )
-
-        advanceUntilIdle()
-
-        assertThat(state.newEvents()).containsExactly(
-            localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf(0)),
-                ),
-                source = loadStates(
-                    refresh = NotLoading.Incomplete,
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
-                ),
-            ),
-        )
-
-        state.job.cancel()
-    }
-
-    @Test
-    fun remoteInitialLoadState() = testScope.runTest {
-        @OptIn(ExperimentalPagingApi::class)
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
-                withContext(coroutineContext) {
-                    delay(50)
-                    RemoteMediator.MediatorResult.Success(true)
-                }
-            }
-        }
-
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = { TestPagingSource(items = listOf(0), loadDelay = 100) },
-            config = config,
-            remoteMediator = remoteMediator,
-        )
-
-        val state = collectFetcherState(pager)
-        advanceTimeBy(1)
-
-        assertThat(state.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshRemote = Loading,
-                refreshLocal = Loading,
-            ),
-        )
-
-        advanceUntilIdle()
-
-        assertThat(state.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshRemote = NotLoading.Incomplete,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-                refreshLocal = Loading,
-            ),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf(0))
-                ),
-                source = loadStates(
-                    refresh = NotLoading.Incomplete,
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
-                ),
-                mediator = loadStates(
-                    refresh = NotLoading.Incomplete,
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
+                    retryFlow = retryBus.flow
                 )
-            ),
-        )
 
-        state.job.cancel()
-    }
-
-    @Test
-    fun remoteMediator_remoteRefreshEndOfPaginationReached() = testScope.runTest {
-        @OptIn(ExperimentalPagingApi::class)
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
-                RemoteMediator.MediatorResult.Success(true)
-            }
-        }
-
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = { TestPagingSource(items = listOf(0)) },
-            config = config,
-            remoteMediator = remoteMediator
-        )
-
-        val state = collectFetcherState(pager)
-
-        advanceUntilIdle()
-
-        assertThat(state.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-            ),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf(0),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = null
+            assertThat(pager.currentPagingState())
+                .isEqualTo(
+                    PagingState<Int, Int>(
+                        pages = listOf(),
+                        anchorPosition = null,
+                        config = config,
+                        leadingPlaceholderCount = 0,
                     )
-                ),
-                source = loadStates(
-                    append = NotLoading.Complete,
-                    prepend = NotLoading.Complete,
-                ),
-                mediator = loadStates(
-                    refresh = NotLoading.Incomplete,
-                    append = NotLoading.Complete,
-                    prepend = NotLoading.Complete,
-                ),
-            )
-        )
-        state.job.cancel()
-    }
+                )
+        }
 
     @Test
-    fun remoteMediator_endOfPaginationNotReachedLoadStatePrepend() = testScope.runTest {
-        val pagingSources = mutableListOf<TestPagingSource>()
-        var remotePrependStarted = false
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                // on first advance, we let local refresh complete first before
-                // triggering remote prepend load
-                delay(300)
-                super.load(loadType, state)
-                remotePrependStarted = true
-                // on second advance, we let super.load() start but don't return result yet
-                delay(500)
-                return MediatorResult.Success(endOfPaginationReached = false)
+    fun retry_ignoresNewSignalsWhileProcessing() =
+        testScope.runTest {
+            val pagingSource = pagingSourceFactory()
+            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+            collectSnapshotData(pager) { state, _ ->
+                pagingSource.errorNextLoad = true
+                advanceUntilIdle()
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
+                    )
+
+                pagingSource.errorNextLoad = true
+                retryBus.send(Unit)
+                // Should be ignored by pager as it's still processing previous retry.
+                retryBus.send(Unit)
+                advanceUntilIdle()
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        localLoadStateUpdate<Int>(refreshLocal = Error(LOAD_ERROR)),
+                    )
             }
         }
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val fetcher = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = {
-                pagingSourceFactory().also {
-                    pagingSources.add(it)
+
+    /**
+     * The case where all pages from presenter have been dropped in fetcher, so instead of counting
+     * dropped pages against prefetchDistance, we should clamp that logic to only count pages that
+     * have been loaded.
+     */
+    @Test
+    fun doLoad_prependPresenterPagesDropped() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..51)
+                )
+
+            // Send a hint from a presenter state that only sees pages well after the pages loaded
+            // in
+            // fetcher state:
+            // [hint], [50, 51], [52], [53], [54], [55]
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 4,
+                        indexInPage = -6,
+                        presentedItemsBefore = -6,
+                        presentedItemsAfter = 2,
+                        originalPageOffsetFirst = 4,
+                        originalPageOffsetLast = 6
+                    )
+                )
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                    createPrepend(pageOffset = -1, range = 49..49, startState = Loading),
+                    createPrepend(
+                        pageOffset = -2,
+                        range = 48..48,
+                        startState = NotLoading.Incomplete
+                    ),
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    /**
+     * The case where all pages from presenter have been dropped in fetcher, so instead of counting
+     * dropped pages against prefetchDistance, we should clamp that logic to only count pages that
+     * have been loaded.
+     */
+    @Test
+    fun doLoad_appendPresenterPagesDropped() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..51)
+                )
+
+            // Send a hint from a presenter state that only sees pages well before the pages loaded
+            // in
+            // fetcher state:
+            // [46], [47], [48], [49], [50, 51], [hint]
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = -4,
+                        indexInPage = 6,
+                        presentedItemsBefore = 2,
+                        presentedItemsAfter = -6,
+                        originalPageOffsetFirst = -6,
+                        originalPageOffsetLast = -4
+                    )
+                )
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                    createAppend(pageOffset = 1, range = 52..52, endState = Loading),
+                    createAppend(pageOffset = 2, range = 53..53, endState = NotLoading.Incomplete),
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun remoteMediator_initialLoadErrorTriggersLocal() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun initialize(): InitializeAction {
+                        return InitializeAction.LAUNCH_INITIAL_REFRESH
+                    }
+
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        return MediatorResult.Error(EXCEPTION)
+                    }
                 }
-            },
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        val fetcherState = collectFetcherState(fetcher)
-        advanceTimeBy(1200) // let local refresh complete
 
-        // assert first gen events
-        val expectedFirstGen = listOf(
-            remoteLoadStateUpdate(refreshLocal = Loading),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffset = 0,
-                        data = listOf(0)
+            val pager =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = pagingSourceFactory,
+                    config = PagingConfig(1),
+                    remoteMediator = remoteMediator
+                )
+
+            val expected =
+                listOf(
+                    listOf(
+                        remoteLoadStateUpdate(
+                            refreshLocal = Loading,
+                        ),
+                        remoteLoadStateUpdate(
+                            refreshLocal = Loading,
+                            refreshRemote = Loading,
+                        ),
+                        remoteLoadStateUpdate(
+                            refreshLocal = Loading,
+                            refreshRemote = Error(EXCEPTION),
+                        ),
+                        createRefresh(
+                            range = 0..2,
+                            remoteLoadStatesOf(
+                                refresh = Error(EXCEPTION),
+                                prependLocal = NotLoading.Complete,
+                                refreshRemote = Error(EXCEPTION),
+                            ),
+                        ),
+                        // since remote refresh failed and launch initial refresh is requested,
+                        // we won't receive any append/prepend events
                     )
-                ),
-                placeholdersAfter = 99,
-                source = loadStates(prepend = NotLoading.Complete)
-            ),
-            remoteLoadStateUpdate(
-                prependLocal = NotLoading.Complete,
-                prependRemote = Loading,
-            ),
-        )
-        assertThat(fetcherState.newEvents()).containsExactlyElementsIn(expectedFirstGen).inOrder()
+                )
 
-        // let remote prepend start loading but don't let it complete
-        advanceTimeBy(300)
-        assertTrue(remotePrependStarted)
-
-        // invalidate first PagingSource while remote is prepending
-        pagingSources[0].invalidate()
-        assertTrue(pagingSources[0].invalid)
-
-        // allow Mediator prepend and second gen local Refresh to complete
-        // due to TestPagingSource loadDay(1000ms), the remote load will complete first
-        advanceTimeBy(1300)
-
-        val expectedSecondGen = listOf(
-            remoteLoadStateUpdate(
-                refreshLocal = Loading,
-                prependRemote = Loading,
-            ),
-            remoteLoadStateUpdate(
-                refreshLocal = Loading,
-                prependRemote = NotLoading.Incomplete,
-            ),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffset = 0,
-                        data = listOf(0)
-                    )
-                ),
-                placeholdersAfter = 99,
-                source = loadStates(prepend = NotLoading.Complete)
-            )
-        )
-        assertThat(fetcherState.newEvents().take(3))
-            .containsExactlyElementsIn(expectedSecondGen).inOrder()
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun remoteMediator_endOfPaginationReachedLoadStatePrepend() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                return MediatorResult.Success(endOfPaginationReached = true)
-            }
+            pager.assertEventByGeneration(expected)
         }
 
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val fetcher = PageFetcher(
-            initialKey = 0,
-            pagingSourceFactory = pagingSourceFactory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
+    @Test
+    fun remoteMediator_initialLoadTriggersPrepend() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        super.load(loadType, state)
+                        currentPagingSource!!.invalidate()
+                        return MediatorResult.Success(endOfPaginationReached = false)
+                    }
+                }
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val pager =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = pagingSourceFactory,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
 
-        fetcher.assertEventByGeneration(
-            listOf(
+            pager.pageEvents().take(4).toList()
+            assertEquals(1, remoteMediator.loadEvents.size)
+            assertEquals(PREPEND, remoteMediator.loadEvents[0].loadType)
+            assertNotNull(remoteMediator.loadEvents[0].state)
+        }
+
+    @Test
+    fun remoteMediator_initialLoadTriggersAppend() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        super.load(loadType, state)
+                        currentPagingSource!!.invalidate()
+                        return MediatorResult.Success(endOfPaginationReached = false)
+                    }
+                }
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val fetcher =
+                PageFetcher(
+                    initialKey = 99,
+                    pagingSourceFactory = pagingSourceFactory,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            // taking 4 events:
+            // local load, local insert, append state change to loading, local load w/ new append
+            // result
+            // 4th one is necessary as the Loading state change is done optimistically before the
+            // remote mediator is invoked
+            fetcher.pageEvents().take(4).toList()
+            assertEquals(1, remoteMediator.loadEvents.size)
+            assertEquals(APPEND, remoteMediator.loadEvents[0].loadType)
+            assertNotNull(remoteMediator.loadEvents[0].state)
+        }
+
+    @Test
+    fun remoteMediator_remoteRefreshCachesPreviousPagingState() =
+        testScope.runTest {
+            @OptIn(ExperimentalPagingApi::class)
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ -> RemoteMediator.MediatorResult.Success(true) }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val pager =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = { TestPagingSource(items = listOf(0)) },
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+
+            val state = collectFetcherState(pager)
+
+            // Let the initial page load; loaded data should be [0]
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent<Int, Int>(
+                        loadType = REFRESH,
+                        state =
+                            PagingState(
+                                pages = listOf(),
+                                anchorPosition = null,
+                                config = config,
+                                leadingPlaceholderCount = 0,
+                            ),
+                    )
+                )
+
+            // Explicit call to refresh, which should trigger remote refresh with cached
+            // PagingState.
+            pager.refresh()
+            advanceUntilIdle()
+
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent(
+                        loadType = REFRESH,
+                        state =
+                            PagingState(
+                                pages =
+                                    listOf(
+                                        Page(
+                                            data = listOf(0),
+                                            prevKey = null,
+                                            nextKey = null,
+                                            itemsBefore = 0,
+                                            itemsAfter = 0,
+                                        ),
+                                    ),
+                                anchorPosition = null,
+                                config = config,
+                                leadingPlaceholderCount = 0,
+                            ),
+                    )
+                )
+
+            state.job.cancel()
+        }
+
+    @Test
+    fun sourceOnlyInitialLoadState() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val pager =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = { TestPagingSource(items = listOf(0)) },
+                    config = config,
+                )
+
+            val state = collectFetcherState(pager)
+            assertThat(state.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                )
+
+            advanceUntilIdle()
+
+            assertThat(state.newEvents())
+                .containsExactly(
+                    localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(data = listOf(0)),
+                            ),
+                        source =
+                            loadStates(
+                                refresh = NotLoading.Incomplete,
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                )
+
+            state.job.cancel()
+        }
+
+    @Test
+    fun remoteInitialLoadState() =
+        testScope.runTest {
+            @OptIn(ExperimentalPagingApi::class)
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ ->
+                        withContext(coroutineContext) {
+                            delay(50)
+                            RemoteMediator.MediatorResult.Success(true)
+                        }
+                    }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val pager =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = { TestPagingSource(items = listOf(0), loadDelay = 100) },
+                    config = config,
+                    remoteMediator = remoteMediator,
+                )
+
+            val state = collectFetcherState(pager)
+            advanceTimeBy(1)
+
+            assertThat(state.newEvents())
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(refreshLocal = Loading),
+                    remoteLoadStateUpdate<Int>(
+                        refreshRemote = Loading,
+                        refreshLocal = Loading,
+                    ),
+                )
+
+            advanceUntilIdle()
+
+            assertThat(state.newEvents())
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(
+                        refreshRemote = NotLoading.Incomplete,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                        refreshLocal = Loading,
+                    ),
+                    remoteRefresh(
+                        pages = listOf(TransformablePage(data = listOf(0))),
+                        source =
+                            loadStates(
+                                refresh = NotLoading.Incomplete,
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                refresh = NotLoading.Incomplete,
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            )
+                    ),
+                )
+
+            state.job.cancel()
+        }
+
+    @Test
+    fun remoteMediator_remoteRefreshEndOfPaginationReached() =
+        testScope.runTest {
+            @OptIn(ExperimentalPagingApi::class)
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ -> RemoteMediator.MediatorResult.Success(true) }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val pager =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = { TestPagingSource(items = listOf(0)) },
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+
+            val state = collectFetcherState(pager)
+
+            advanceUntilIdle()
+
+            assertThat(state.newEvents())
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                    ),
+                    remoteRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                    hintOriginalIndices = null
+                                )
+                            ),
+                        source =
+                            loadStates(
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                refresh = NotLoading.Incomplete,
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                    )
+                )
+            state.job.cancel()
+        }
+
+    @Test
+    fun remoteMediator_endOfPaginationNotReachedLoadStatePrepend() =
+        testScope.runTest {
+            val pagingSources = mutableListOf<TestPagingSource>()
+            var remotePrependStarted = false
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        // on first advance, we let local refresh complete first before
+                        // triggering remote prepend load
+                        delay(300)
+                        super.load(loadType, state)
+                        remotePrependStarted = true
+                        // on second advance, we let super.load() start but don't return result yet
+                        delay(500)
+                        return MediatorResult.Success(endOfPaginationReached = false)
+                    }
+                }
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val fetcher =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = { pagingSourceFactory().also { pagingSources.add(it) } },
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            val fetcherState = collectFetcherState(fetcher)
+            advanceTimeBy(1200) // let local refresh complete
+
+            // assert first gen events
+            val expectedFirstGen =
                 listOf(
                     remoteLoadStateUpdate(refreshLocal = Loading),
                     remoteRefresh(
-                        pages = listOf(
-                            TransformablePage(
-                                originalPageOffset = 0,
-                                data = listOf(0)
-                            )
-                        ),
-                        placeholdersBefore = 0,
+                        pages = listOf(TransformablePage(originalPageOffset = 0, data = listOf(0))),
                         placeholdersAfter = 99,
                         source = loadStates(prepend = NotLoading.Complete)
                     ),
                     remoteLoadStateUpdate(
                         prependLocal = NotLoading.Complete,
-                        prependRemote = Loading
+                        prependRemote = Loading,
+                    ),
+                )
+            assertThat(fetcherState.newEvents())
+                .containsExactlyElementsIn(expectedFirstGen)
+                .inOrder()
+
+            // let remote prepend start loading but don't let it complete
+            advanceTimeBy(300)
+            assertTrue(remotePrependStarted)
+
+            // invalidate first PagingSource while remote is prepending
+            pagingSources[0].invalidate()
+            assertTrue(pagingSources[0].invalid)
+
+            // allow Mediator prepend and second gen local Refresh to complete
+            // due to TestPagingSource loadDay(1000ms), the remote load will complete first
+            advanceTimeBy(1300)
+
+            val expectedSecondGen =
+                listOf(
+                    remoteLoadStateUpdate(
+                        refreshLocal = Loading,
+                        prependRemote = Loading,
                     ),
                     remoteLoadStateUpdate(
-                        prependLocal = NotLoading.Complete,
-                        prependRemote = NotLoading.Complete
+                        refreshLocal = Loading,
+                        prependRemote = NotLoading.Incomplete,
                     ),
+                    remoteRefresh(
+                        pages = listOf(TransformablePage(originalPageOffset = 0, data = listOf(0))),
+                        placeholdersAfter = 99,
+                        source = loadStates(prepend = NotLoading.Complete)
+                    )
                 )
-            )
-        )
-    }
+            assertThat(fetcherState.newEvents().take(3))
+                .containsExactlyElementsIn(expectedSecondGen)
+                .inOrder()
+            fetcherState.job.cancel()
+        }
 
     @Test
-    fun remoteMediator_prependEndOfPaginationReachedLocalThenRemote() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-                return MediatorResult.Success(endOfPaginationReached = true)
-            }
-        }
-
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-            maxSize = 5
-        )
-        val fetcher = PageFetcher(
-            initialKey = 1,
-            pagingSourceFactory = pagingSourceFactory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
-
-        fetcher.collectEvents {
-            awaitEventCount(2)
-            val refreshEvents = listOf(
-                remoteLoadStateUpdate(refreshLocal = Loading),
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf(1, 2, 3)
-                        )
-                    ),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 96,
-                )
-            )
-            assertThat(eventsByGeneration[0]).isEqualTo(refreshEvents)
-            accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 2,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            val postHintEvents = listOf(
-                remoteLoadStateUpdate(prependLocal = Loading),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf(0)
-                        )
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(prepend = NotLoading.Complete)
-                ),
-                remoteLoadStateUpdate(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = Loading
-                ),
-                remoteLoadStateUpdate(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                ),
-            )
-            awaitEventCount(refreshEvents.size + postHintEvents.size)
-            assertEquals(
-                eventsByGeneration[0],
-                refreshEvents + postHintEvents
-            )
-        }
-    }
-
-    @Test
-    fun remoteMediator_endOfPaginationNotReachedLoadStateAppend() = testScope.runTest {
-        val pagingSources = mutableListOf<TestPagingSource>()
-        var remoteAppendStarted = false
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                // on first advance, we let local refresh complete first before
-                // triggering remote append load
-                delay(300)
-                super.load(loadType, state)
-                remoteAppendStarted = true
-                // on second advance, we let super.load() start but don't return result yet
-                delay(500)
-                return MediatorResult.Success(endOfPaginationReached = false)
-            }
-        }
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val fetcher = PageFetcher(
-            initialKey = 99,
-            pagingSourceFactory = {
-                pagingSourceFactory().also {
-                    it.getRefreshKeyResult = 99
-                    pagingSources.add(it)
+    fun remoteMediator_endOfPaginationReachedLoadStatePrepend() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        return MediatorResult.Success(endOfPaginationReached = true)
+                    }
                 }
-            },
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        val fetcherState = collectFetcherState(fetcher)
-        advanceTimeBy(1200) // let local refresh complete
 
-        // assert first gen events
-        val expectedFirstGen = listOf(
-            remoteLoadStateUpdate(refreshLocal = Loading),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffset = 0,
-                        data = listOf(99)
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val fetcher =
+                PageFetcher(
+                    initialKey = 0,
+                    pagingSourceFactory = pagingSourceFactory,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+
+            fetcher.assertEventByGeneration(
+                listOf(
+                    listOf(
+                        remoteLoadStateUpdate(refreshLocal = Loading),
+                        remoteRefresh(
+                            pages =
+                                listOf(TransformablePage(originalPageOffset = 0, data = listOf(0))),
+                            placeholdersBefore = 0,
+                            placeholdersAfter = 99,
+                            source = loadStates(prepend = NotLoading.Complete)
+                        ),
+                        remoteLoadStateUpdate(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = Loading
+                        ),
+                        remoteLoadStateUpdate(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete
+                        ),
                     )
-                ),
-                placeholdersBefore = 99,
-                source = loadStates(append = NotLoading.Complete)
-            ),
-            remoteLoadStateUpdate(
-                appendLocal = NotLoading.Complete,
-                appendRemote = Loading
-            ),
-        )
-        assertThat(fetcherState.newEvents()).containsExactlyElementsIn(expectedFirstGen).inOrder()
-
-        // let remote append start loading but don't let it complete
-        advanceTimeBy(300)
-        assertTrue(remoteAppendStarted)
-
-        // invalidate first PagingSource while remote is loading an append
-        pagingSources[0].invalidate()
-        assertTrue(pagingSources[0].invalid)
-
-        // allow Mediator append and second gen local Refresh to complete
-        // due to TestPagingSource loadDay(1000ms), the remote load will complete first
-        advanceTimeBy(1300)
-
-        val expectedSecondGen = listOf(
-            remoteLoadStateUpdate(
-                refreshLocal = Loading,
-                appendRemote = Loading,
-            ),
-            remoteLoadStateUpdate(
-                refreshLocal = Loading,
-                appendRemote = NotLoading.Incomplete,
-            ),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffset = 0,
-                        data = listOf(99)
-                    )
-                ),
-                placeholdersBefore = 99,
-                source = loadStates(append = NotLoading.Complete)
-            ),
-        )
-        assertThat(fetcherState.newEvents().take(3))
-            .containsExactlyElementsIn(expectedSecondGen).inOrder()
-        fetcherState.job.cancel()
-    }
+                )
+            )
+        }
 
     @Test
-    fun remoteMediator_endOfPaginationReachedLoadStateAppend() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-                return MediatorResult.Success(endOfPaginationReached = true)
+    fun remoteMediator_prependEndOfPaginationReachedLocalThenRemote() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        super.load(loadType, state)
+                        return MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                    maxSize = 5
+                )
+            val fetcher =
+                PageFetcher(
+                    initialKey = 1,
+                    pagingSourceFactory = pagingSourceFactory,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+
+            fetcher.collectEvents {
+                awaitEventCount(2)
+                val refreshEvents =
+                    listOf(
+                        remoteLoadStateUpdate(refreshLocal = Loading),
+                        remoteRefresh(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = 0,
+                                        data = listOf(1, 2, 3)
+                                    )
+                                ),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 96,
+                        )
+                    )
+                assertThat(eventsByGeneration[0]).isEqualTo(refreshEvents)
+                accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 2,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                val postHintEvents =
+                    listOf(
+                        remoteLoadStateUpdate(prependLocal = Loading),
+                        remotePrepend(
+                            pages =
+                                listOf(
+                                    TransformablePage(originalPageOffset = -1, data = listOf(0))
+                                ),
+                            placeholdersBefore = 0,
+                            source = loadStates(prepend = NotLoading.Complete)
+                        ),
+                        remoteLoadStateUpdate(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = Loading
+                        ),
+                        remoteLoadStateUpdate(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        ),
+                    )
+                awaitEventCount(refreshEvents.size + postHintEvents.size)
+                assertEquals(eventsByGeneration[0], refreshEvents + postHintEvents)
             }
         }
 
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 99,
-            pagingSourceFactory = pagingSourceFactory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
+    @Test
+    fun remoteMediator_endOfPaginationNotReachedLoadStateAppend() =
+        testScope.runTest {
+            val pagingSources = mutableListOf<TestPagingSource>()
+            var remoteAppendStarted = false
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        // on first advance, we let local refresh complete first before
+                        // triggering remote append load
+                        delay(300)
+                        super.load(loadType, state)
+                        remoteAppendStarted = true
+                        // on second advance, we let super.load() start but don't return result yet
+                        delay(500)
+                        return MediatorResult.Success(endOfPaginationReached = false)
+                    }
+                }
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val fetcher =
+                PageFetcher(
+                    initialKey = 99,
+                    pagingSourceFactory = {
+                        pagingSourceFactory().also {
+                            it.getRefreshKeyResult = 99
+                            pagingSources.add(it)
+                        }
+                    },
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            val fetcherState = collectFetcherState(fetcher)
+            advanceTimeBy(1200) // let local refresh complete
 
-        val expected: List<List<PageEvent<Int>>> = listOf(
-            listOf(
-                remoteLoadStateUpdate(refreshLocal = Loading),
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf(99)
-                        )
+            // assert first gen events
+            val expectedFirstGen =
+                listOf(
+                    remoteLoadStateUpdate(refreshLocal = Loading),
+                    remoteRefresh(
+                        pages =
+                            listOf(TransformablePage(originalPageOffset = 0, data = listOf(99))),
+                        placeholdersBefore = 99,
+                        source = loadStates(append = NotLoading.Complete)
                     ),
-                    placeholdersBefore = 99,
-                    placeholdersAfter = 0,
-                    source = loadStates(append = NotLoading.Complete)
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = Loading,
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete
-                ),
-            )
-        )
-        pager.assertEventByGeneration(expected)
-    }
+                    remoteLoadStateUpdate(
+                        appendLocal = NotLoading.Complete,
+                        appendRemote = Loading
+                    ),
+                )
+            assertThat(fetcherState.newEvents())
+                .containsExactlyElementsIn(expectedFirstGen)
+                .inOrder()
+
+            // let remote append start loading but don't let it complete
+            advanceTimeBy(300)
+            assertTrue(remoteAppendStarted)
+
+            // invalidate first PagingSource while remote is loading an append
+            pagingSources[0].invalidate()
+            assertTrue(pagingSources[0].invalid)
+
+            // allow Mediator append and second gen local Refresh to complete
+            // due to TestPagingSource loadDay(1000ms), the remote load will complete first
+            advanceTimeBy(1300)
+
+            val expectedSecondGen =
+                listOf(
+                    remoteLoadStateUpdate(
+                        refreshLocal = Loading,
+                        appendRemote = Loading,
+                    ),
+                    remoteLoadStateUpdate(
+                        refreshLocal = Loading,
+                        appendRemote = NotLoading.Incomplete,
+                    ),
+                    remoteRefresh(
+                        pages =
+                            listOf(TransformablePage(originalPageOffset = 0, data = listOf(99))),
+                        placeholdersBefore = 99,
+                        source = loadStates(append = NotLoading.Complete)
+                    ),
+                )
+            assertThat(fetcherState.newEvents().take(3))
+                .containsExactlyElementsIn(expectedSecondGen)
+                .inOrder()
+            fetcherState.job.cancel()
+        }
 
     @Test
-    fun remoteMediator_appendEndOfPaginationReachedLocalThenRemote() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-                return MediatorResult.Success(endOfPaginationReached = true)
-            }
+    fun remoteMediator_endOfPaginationReachedLoadStateAppend() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        super.load(loadType, state)
+                        return MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val pager =
+                PageFetcher(
+                    initialKey = 99,
+                    pagingSourceFactory = pagingSourceFactory,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+
+            val expected: List<List<PageEvent<Int>>> =
+                listOf(
+                    listOf(
+                        remoteLoadStateUpdate(refreshLocal = Loading),
+                        remoteRefresh(
+                            pages =
+                                listOf(
+                                    TransformablePage(originalPageOffset = 0, data = listOf(99))
+                                ),
+                            placeholdersBefore = 99,
+                            placeholdersAfter = 0,
+                            source = loadStates(append = NotLoading.Complete)
+                        ),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = Loading,
+                        ),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete
+                        ),
+                    )
+                )
+            pager.assertEventByGeneration(expected)
         }
 
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 96,
-            pagingSourceFactory = pagingSourceFactory,
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        pager.collectEvents {
-            val initialEvents = listOf(
-                remoteLoadStateUpdate(refreshLocal = Loading),
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf(96, 97, 98)
-                        )
-                    ),
-                    placeholdersBefore = 96,
-                    placeholdersAfter = 1,
+    @Test
+    fun remoteMediator_appendEndOfPaginationReachedLocalThenRemote() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        super.load(loadType, state)
+                        return MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                    maxSize = 5
                 )
-            )
-            awaitEventCount(initialEvents.size)
-            assertEvents(initialEvents, eventsByGeneration[0])
-            accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 48,
-                    presentedItemsBefore = 48,
-                    presentedItemsAfter = -46,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
+            val pager =
+                PageFetcher(
+                    initialKey = 96,
+                    pagingSourceFactory = pagingSourceFactory,
+                    config = config,
+                    remoteMediator = remoteMediator
                 )
-            )
-            val postHintEvents = listOf(
-                remoteLoadStateUpdate(appendLocal = Loading),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf(99)
+            pager.collectEvents {
+                val initialEvents =
+                    listOf(
+                        remoteLoadStateUpdate(refreshLocal = Loading),
+                        remoteRefresh(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = 0,
+                                        data = listOf(96, 97, 98)
+                                    )
+                                ),
+                            placeholdersBefore = 96,
+                            placeholdersAfter = 1,
                         )
-                    ),
-                    source = loadStates(append = NotLoading.Complete)
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = Loading
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete
-                ),
-            )
-            awaitEventCount(initialEvents.size + postHintEvents.size)
-            assertThat(eventsByGeneration[0]).isEqualTo(initialEvents + postHintEvents)
+                    )
+                awaitEventCount(initialEvents.size)
+                assertEvents(initialEvents, eventsByGeneration[0])
+                accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 48,
+                        presentedItemsBefore = 48,
+                        presentedItemsAfter = -46,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                val postHintEvents =
+                    listOf(
+                        remoteLoadStateUpdate(appendLocal = Loading),
+                        remoteAppend(
+                            pages =
+                                listOf(
+                                    TransformablePage(originalPageOffset = 1, data = listOf(99))
+                                ),
+                            source = loadStates(append = NotLoading.Complete)
+                        ),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = Loading
+                        ),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete
+                        ),
+                    )
+                awaitEventCount(initialEvents.size + postHintEvents.size)
+                assertThat(eventsByGeneration[0]).isEqualTo(initialEvents + postHintEvents)
+            }
         }
-    }
 
     @Test
     fun remoteMediator_immediateInvalidation() = runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun initialize(): InitializeAction {
-                super.initialize()
-                return InitializeAction.LAUNCH_INITIAL_REFRESH
-            }
-
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-                // Wait for remote events to get sent and observed by PageFetcher, but don't let
-                // source REFRESH complete yet until we invalidate.
-                advanceTimeBy(500)
-                currentPagingSource!!.invalidate()
-                // Wait for second generation to start before letting remote REFRESH finish, but
-                // ensure that remote REFRESH finishes before source REFRESH does.
-                delay(100)
-                return MediatorResult.Success(endOfPaginationReached = false)
-            }
-        }
-
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 50,
-            pagingSourceFactory = {
-                pagingSourceFactory().also {
-                    it.getRefreshKeyResult = 30
+        val remoteMediator =
+            object : RemoteMediatorMock() {
+                override suspend fun initialize(): InitializeAction {
+                    super.initialize()
+                    return InitializeAction.LAUNCH_INITIAL_REFRESH
                 }
-            },
-            config = config,
-            remoteMediator = remoteMediator
-        )
+
+                override suspend fun load(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): MediatorResult {
+                    super.load(loadType, state)
+                    // Wait for remote events to get sent and observed by PageFetcher, but don't let
+                    // source REFRESH complete yet until we invalidate.
+                    advanceTimeBy(500)
+                    currentPagingSource!!.invalidate()
+                    // Wait for second generation to start before letting remote REFRESH finish, but
+                    // ensure that remote REFRESH finishes before source REFRESH does.
+                    delay(100)
+                    return MediatorResult.Success(endOfPaginationReached = false)
+                }
+            }
+
+        val config =
+            PagingConfig(
+                pageSize = 1,
+                prefetchDistance = 2,
+                enablePlaceholders = true,
+                initialLoadSize = 1,
+                maxSize = 5
+            )
+        val pager =
+            PageFetcher(
+                initialKey = 50,
+                pagingSourceFactory = {
+                    pagingSourceFactory().also { it.getRefreshKeyResult = 30 }
+                },
+                config = config,
+                remoteMediator = remoteMediator
+            )
         val fetcherState = collectFetcherState(pager)
         advanceUntilIdle()
         assertThat(fetcherState.pageEventLists).hasSize(2)
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-        )
-        assertThat(fetcherState.pageEventLists[1]).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-            ),
-            // getRefreshKey() = null is used over initialKey due to invalidation.
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffset = 0,
-                        data = listOf(30)
-                    )
+        assertThat(fetcherState.pageEventLists[0])
+            .containsExactly(
+                remoteLoadStateUpdate<Int>(
+                    refreshLocal = Loading,
                 ),
-                placeholdersBefore = 30,
-                placeholdersAfter = 69,
-            ),
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun remoteMediator_initialRefreshSuccess() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock() {
-            override suspend fun initialize(): InitializeAction {
-                super.initialize()
-                return InitializeAction.LAUNCH_INITIAL_REFRESH
-            }
-
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-
-                // Wait for advanceUntilIdle()
-                delay(1)
-
-                currentPagingSource!!.invalidate()
-                return MediatorResult.Success(endOfPaginationReached = false)
-            }
-        }
-
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 50,
-            pagingSourceFactory = {
-                pagingSourceFactory().also {
-                    it.getRefreshKeyResult = 30
-                }
-            },
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        val fetcherState = collectFetcherState(pager)
-        advanceUntilIdle()
-
-        assertThat(fetcherState.pageEventLists.size).isEqualTo(2)
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-            ),
-        )
-        assertThat(fetcherState.pageEventLists[1]).containsExactly(
-            // Invalidate happens before RemoteMediator returns.
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-            ),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffset = 0,
-                        data = listOf(30)
-                    )
+                remoteLoadStateUpdate<Int>(
+                    refreshLocal = Loading,
+                    refreshRemote = Loading,
                 ),
-                placeholdersBefore = 30,
-                placeholdersAfter = 69,
-            ),
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun remoteMediator_initialRefreshSuccessEndOfPagination() = testScope.runTest {
-        val remoteMediator = object : RemoteMediatorMock(loadDelay = 2000) {
-            override suspend fun initialize(): InitializeAction {
-                super.initialize()
-                return InitializeAction.LAUNCH_INITIAL_REFRESH
-            }
-
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                super.load(loadType, state)
-                return MediatorResult.Success(endOfPaginationReached = true)
-            }
-        }
-
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 2,
-            enablePlaceholders = true,
-            initialLoadSize = 1,
-            maxSize = 5
-        )
-        val pager = PageFetcher(
-            initialKey = 50,
-            pagingSourceFactory = {
-                TestPagingSource().apply {
-                    nextLoadResult = Page(
-                        data = listOf(50),
-                        prevKey = null,
-                        nextKey = null,
-                        itemsBefore = 50,
-                        itemsAfter = 49
-                    )
-                }
-            },
-            config = config,
-            remoteMediator = remoteMediator
-        )
-
-        val fetcherState = collectFetcherState(pager)
-
-        advanceTimeBy(1000)
-        runCurrent()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading
-            ),
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffset = 0,
-                        data = listOf(50)
-                    )
-                ),
-                placeholdersBefore = 50,
-                placeholdersAfter = 49,
-                source = loadStates(
-                    append = NotLoading.Complete,
-                    prepend = NotLoading.Complete,
-                ),
-                mediator = loadStates(refresh = Loading),
-            ),
-        )
-
-        advanceUntilIdle()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-                refreshRemote = NotLoading.Incomplete,
-            ),
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun jump() = testScope.runTest {
-        withContext(coroutineContext) {
-            val config = PagingConfig(
-                pageSize = 1,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2,
-                maxSize = 3,
-                jumpThreshold = 10
             )
-            var didJump = false
-            val pager = PageFetcherSnapshot(
-                initialKey = 50,
-                pagingSource = pagingSourceFactory(),
-                config = config,
-                retryFlow = retryBus.flow,
-                previousPagingState = null,
-            ) {
-                didJump = true
-            }
-            // Trigger collection on flow to init jump detection job.
-            val job = launch { pager.pageEventFlow.collect { } }
+        assertThat(fetcherState.pageEventLists[1])
+            .containsExactly(
+                remoteLoadStateUpdate<Int>(
+                    refreshLocal = Loading,
+                    refreshRemote = Loading,
+                ),
+                remoteLoadStateUpdate<Int>(
+                    refreshLocal = Loading,
+                    refreshRemote = NotLoading.Incomplete,
+                ),
+                // getRefreshKey() = null is used over initialKey due to invalidation.
+                remoteRefresh(
+                    pages = listOf(TransformablePage(originalPageOffset = 0, data = listOf(30))),
+                    placeholdersBefore = 30,
+                    placeholdersAfter = 69,
+                ),
+            )
 
-            advanceUntilIdle()
+        fetcherState.job.cancel()
+    }
 
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = -50,
-                    presentedItemsBefore = -50,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
+    @Test
+    fun remoteMediator_initialRefreshSuccess() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock() {
+                    override suspend fun initialize(): InitializeAction {
+                        super.initialize()
+                        return InitializeAction.LAUNCH_INITIAL_REFRESH
+                    }
+
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        super.load(loadType, state)
+
+                        // Wait for advanceUntilIdle()
+                        delay(1)
+
+                        currentPagingSource!!.invalidate()
+                        return MediatorResult.Success(endOfPaginationReached = false)
+                    }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
                 )
-            )
+            val pager =
+                PageFetcher(
+                    initialKey = 50,
+                    pagingSourceFactory = {
+                        pagingSourceFactory().also { it.getRefreshKeyResult = 30 }
+                    },
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            val fetcherState = collectFetcherState(pager)
             advanceUntilIdle()
 
-            assertTrue { didJump }
+            assertThat(fetcherState.pageEventLists.size).isEqualTo(2)
+            assertThat(fetcherState.pageEventLists[0])
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                    ),
+                )
+            assertThat(fetcherState.pageEventLists[1])
+                .containsExactly(
+                    // Invalidate happens before RemoteMediator returns.
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                    ),
+                    remoteRefresh(
+                        pages =
+                            listOf(TransformablePage(originalPageOffset = 0, data = listOf(30))),
+                        placeholdersBefore = 30,
+                        placeholdersAfter = 69,
+                    ),
+                )
 
-            job.cancel()
+            fetcherState.job.cancel()
         }
-    }
+
+    @Test
+    fun remoteMediator_initialRefreshSuccessEndOfPagination() =
+        testScope.runTest {
+            val remoteMediator =
+                object : RemoteMediatorMock(loadDelay = 2000) {
+                    override suspend fun initialize(): InitializeAction {
+                        super.initialize()
+                        return InitializeAction.LAUNCH_INITIAL_REFRESH
+                    }
+
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        super.load(loadType, state)
+                        return MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 2,
+                    enablePlaceholders = true,
+                    initialLoadSize = 1,
+                    maxSize = 5
+                )
+            val pager =
+                PageFetcher(
+                    initialKey = 50,
+                    pagingSourceFactory = {
+                        TestPagingSource().apply {
+                            nextLoadResult =
+                                Page(
+                                    data = listOf(50),
+                                    prevKey = null,
+                                    nextKey = null,
+                                    itemsBefore = 50,
+                                    itemsAfter = 49
+                                )
+                        }
+                    },
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+
+            val fetcherState = collectFetcherState(pager)
+
+            advanceTimeBy(1000)
+            runCurrent()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                    ),
+                    remoteLoadStateUpdate<Int>(refreshLocal = Loading, refreshRemote = Loading),
+                    remoteRefresh(
+                        pages =
+                            listOf(TransformablePage(originalPageOffset = 0, data = listOf(50))),
+                        placeholdersBefore = 50,
+                        placeholdersAfter = 49,
+                        source =
+                            loadStates(
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                        mediator = loadStates(refresh = Loading),
+                    ),
+                )
+
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                        refreshRemote = NotLoading.Incomplete,
+                    ),
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun jump() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val config =
+                    PagingConfig(
+                        pageSize = 1,
+                        prefetchDistance = 1,
+                        enablePlaceholders = true,
+                        initialLoadSize = 2,
+                        maxSize = 3,
+                        jumpThreshold = 10
+                    )
+                var didJump = false
+                val pager =
+                    PageFetcherSnapshot(
+                        initialKey = 50,
+                        pagingSource = pagingSourceFactory(),
+                        config = config,
+                        retryFlow = retryBus.flow,
+                        previousPagingState = null,
+                    ) {
+                        didJump = true
+                    }
+                // Trigger collection on flow to init jump detection job.
+                val job = launch { pager.pageEventFlow.collect {} }
+
+                advanceUntilIdle()
+
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = -50,
+                        presentedItemsBefore = -50,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                advanceUntilIdle()
+
+                assertTrue { didJump }
+
+                job.cancel()
+            }
+        }
 
     @Test
     fun jump_requiresPagingSourceOptIn() {
@@ -3248,208 +3490,39 @@
     }
 
     @Test
-    fun jump_idempotent_prependOrAppend() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = true,
-            initialLoadSize = 2,
-            maxSize = 3,
-            jumpThreshold = 10
-        )
-        var didJump = 0
-        val pager = PageFetcherSnapshot(
-            initialKey = 50,
-            pagingSource = pagingSourceFactory(),
-            config = config,
-            retryFlow = retryBus.flow,
-            previousPagingState = null,
-        ) {
-            didJump++
-        }
-        // Trigger collection on flow to init jump detection job.
-        val job = launch { pager.pageEventFlow.collect { } }
-
-        advanceUntilIdle()
-
-        // This would trigger both append and prepend because of processHint logic
-        pager.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = -50,
-                presentedItemsBefore = -50,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-        advanceUntilIdle()
-
-        // even though both append / prepend flows sent jumping hint, should only trigger
-        // jump once
-        assertThat(didJump).isEqualTo(1)
-
-        job.cancel()
-    }
-
-    @Test
-    fun jump_idempotent_multipleJumpHints() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = true,
-            initialLoadSize = 2,
-            maxSize = 3,
-            jumpThreshold = 10
-        )
-        var didJump = 0
-        val pager = PageFetcherSnapshot(
-            initialKey = 50,
-            pagingSource = pagingSourceFactory(),
-            config = config,
-            retryFlow = retryBus.flow,
-            previousPagingState = null,
-        ) {
-            didJump++
-        }
-        // Trigger collection on flow to init jump detection job.
-        val job = launch { pager.pageEventFlow.collect { } }
-
-        advanceUntilIdle()
-
-        // This would trigger both append and prepend because of processHint logic
-        pager.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = -50,
-                presentedItemsBefore = -50,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-
-        // send second jump hint as well
-        pager.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = -50,
-                presentedItemsBefore = -50,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-
-        advanceUntilIdle()
-
-        // even though both append / prepend flows sent jumping hint, and a second jump hint
-        // was sent, they should only trigger jump once
-        assertThat(didJump).isEqualTo(1)
-
-        job.cancel()
-    }
-
-    @Test
-    fun keyReuse_unsupported_success() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pager = PageFetcherSnapshot(
-                initialKey = 50,
-                pagingSource = object : PagingSource<Int, Int>() {
-                    var loads = 0
-
-                    override val keyReuseSupported: Boolean
-                        get() = true
-
-                    override suspend fun load(params: LoadParams<Int>) = when (params) {
-                        is LoadParams.Refresh -> Page(listOf(0), 0, 0)
-                        else -> Page<Int, Int>(
-                            listOf(),
-                            if (loads < 3) loads else null,
-                            if (loads < 3) loads else null
-                        )
-                    }.also {
-                        loads++
-                    }
-
-                    override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-                },
-                config = config,
-                retryFlow = retryBus.flow
-            )
-
-            // Trigger collection on flow.
-            val job = launch {
-                pager.pageEventFlow.collect { }
-            }
-
-            advanceUntilIdle()
-
-            // Trigger first prepend with key = 0
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
+    fun jump_idempotent_prependOrAppend() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = true,
+                    initialLoadSize = 2,
+                    maxSize = 3,
+                    jumpThreshold = 10
                 )
-            )
-            advanceUntilIdle()
-
-            // Trigger second prepend with key = 0
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = -1,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-
-            job.cancel()
-        }
-    }
-
-    @Test
-    fun keyReuse_unsupported_failure() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pager = PageFetcherSnapshot(
-                initialKey = 50,
-                pagingSource = object : PagingSource<Int, Int>() {
-                    override val keyReuseSupported = false
-
-                    override suspend fun load(params: LoadParams<Int>) = when (params) {
-                        is LoadParams.Refresh -> Page(listOf(0, 0), 0, 0)
-                        else -> Page(listOf(0), 0, 0)
-                    }
-
-                    override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-                },
-                config = config,
-                retryFlow = retryBus.flow
-            )
-
-            // Trigger collection on flow.
-            launch {
-                // Assert second prepend re-using key = 0 leads to IllegalStateException
-                assertFailsWith<IllegalStateException> {
-                    pager.pageEventFlow.collect { }
+            var didJump = 0
+            val pager =
+                PageFetcherSnapshot(
+                    initialKey = 50,
+                    pagingSource = pagingSourceFactory(),
+                    config = config,
+                    retryFlow = retryBus.flow,
+                    previousPagingState = null,
+                ) {
+                    didJump++
                 }
-            }
+            // Trigger collection on flow to init jump detection job.
+            val job = launch { pager.pageEventFlow.collect {} }
 
             advanceUntilIdle()
 
-            // Trigger first prepend with key = 0
+            // This would trigger both append and prepend because of processHint logic
             pager.accessHint(
                 ViewportHint.Access(
                     pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
+                    indexInPage = -50,
+                    presentedItemsBefore = -50,
                     presentedItemsAfter = 0,
                     originalPageOffsetFirst = 0,
                     originalPageOffsetLast = 0
@@ -3457,128 +3530,310 @@
             )
             advanceUntilIdle()
 
-            // Trigger second prepend with key = 0
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = -1,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-        }
-    }
-
-    @Test
-    fun keyReuse_supported() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pager = PageFetcherSnapshot(
-                initialKey = 50,
-                pagingSource = object : PagingSource<Int, Int>() {
-                    var loads = 0
-
-                    override val keyReuseSupported: Boolean
-                        get() = true
-
-                    override suspend fun load(params: LoadParams<Int>) = when (params) {
-                        is LoadParams.Refresh -> Page(listOf(0), 0, 0)
-                        else -> Page<Int, Int>(
-                            listOf(),
-                            if (loads < 3) 0 else null,
-                            if (loads < 3) 0 else null
-                        )
-                    }.also {
-                        loads++
-                    }
-
-                    override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-                },
-                config = config,
-                retryFlow = retryBus.flow
-            )
-
-            // Trigger collection on flow.
-            val job = launch {
-                pager.pageEventFlow.collect { }
-            }
-
-            advanceUntilIdle()
-
-            // Trigger first prepend with key = 0
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-
-            // Trigger second prepend with key = 0
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = -1,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
+            // even though both append / prepend flows sent jumping hint, should only trigger
+            // jump once
+            assertThat(didJump).isEqualTo(1)
 
             job.cancel()
         }
-    }
 
     @Test
-    fun initializeHintAfterEmpty() = testScope.runTest {
-        val pageFetcherSnapshot = PageFetcherSnapshot(
-            initialKey = 50,
-            pagingSource = TestPagingSource(),
-            config = config,
-            retryFlow = emptyFlow(),
-        )
-        collectSnapshotData(pageFetcherSnapshot) { state, _ ->
+    fun jump_idempotent_multipleJumpHints() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = true,
+                    initialLoadSize = 2,
+                    maxSize = 3,
+                    jumpThreshold = 10
+                )
+            var didJump = 0
+            val pager =
+                PageFetcherSnapshot(
+                    initialKey = 50,
+                    pagingSource = pagingSourceFactory(),
+                    config = config,
+                    retryFlow = retryBus.flow,
+                    previousPagingState = null,
+                ) {
+                    didJump++
+                }
+            // Trigger collection on flow to init jump detection job.
+            val job = launch { pager.pageEventFlow.collect {} }
+
             advanceUntilIdle()
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(range = 50..51),
+
+            // This would trigger both append and prepend because of processHint logic
+            pager.accessHint(
+                ViewportHint.Access(
+                    pageOffset = 0,
+                    indexInPage = -50,
+                    presentedItemsBefore = -50,
+                    presentedItemsAfter = 0,
+                    originalPageOffsetFirst = 0,
+                    originalPageOffsetLast = 0
+                )
             )
 
-            pageFetcherSnapshot.accessHint(ViewportHint.Initial(0, 0, 0, 0))
-            advanceUntilIdle()
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-                localLoadStateUpdate<Int>(
-                    appendLocal = Loading,
-                    prependLocal = Loading
-                ),
-                createPrepend(pageOffset = -1, range = 49..49, endState = Loading),
-                createAppend(pageOffset = 1, range = 52..52),
+            // send second jump hint as well
+            pager.accessHint(
+                ViewportHint.Access(
+                    pageOffset = 0,
+                    indexInPage = -50,
+                    presentedItemsBefore = -50,
+                    presentedItemsAfter = 0,
+                    originalPageOffsetFirst = 0,
+                    originalPageOffsetLast = 0
+                )
             )
+
+            advanceUntilIdle()
+
+            // even though both append / prepend flows sent jumping hint, and a second jump hint
+            // was sent, they should only trigger jump once
+            assertThat(didJump).isEqualTo(1)
+
+            job.cancel()
         }
-    }
+
+    @Test
+    fun keyReuse_unsupported_success() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pager =
+                    PageFetcherSnapshot(
+                        initialKey = 50,
+                        pagingSource =
+                            object : PagingSource<Int, Int>() {
+                                var loads = 0
+
+                                override val keyReuseSupported: Boolean
+                                    get() = true
+
+                                override suspend fun load(params: LoadParams<Int>) =
+                                    when (params) {
+                                        is LoadParams.Refresh -> Page(listOf(0), 0, 0)
+                                        else ->
+                                            Page<Int, Int>(
+                                                listOf(),
+                                                if (loads < 3) loads else null,
+                                                if (loads < 3) loads else null
+                                            )
+                                    }.also { loads++ }
+
+                                override fun getRefreshKey(state: PagingState<Int, Int>): Int? =
+                                    null
+                            },
+                        config = config,
+                        retryFlow = retryBus.flow
+                    )
+
+                // Trigger collection on flow.
+                val job = launch { pager.pageEventFlow.collect {} }
+
+                advanceUntilIdle()
+
+                // Trigger first prepend with key = 0
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                advanceUntilIdle()
+
+                // Trigger second prepend with key = 0
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = -1,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                advanceUntilIdle()
+
+                job.cancel()
+            }
+        }
+
+    @Test
+    fun keyReuse_unsupported_failure() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pager =
+                    PageFetcherSnapshot(
+                        initialKey = 50,
+                        pagingSource =
+                            object : PagingSource<Int, Int>() {
+                                override val keyReuseSupported = false
+
+                                override suspend fun load(params: LoadParams<Int>) =
+                                    when (params) {
+                                        is LoadParams.Refresh -> Page(listOf(0, 0), 0, 0)
+                                        else -> Page(listOf(0), 0, 0)
+                                    }
+
+                                override fun getRefreshKey(state: PagingState<Int, Int>): Int? =
+                                    null
+                            },
+                        config = config,
+                        retryFlow = retryBus.flow
+                    )
+
+                // Trigger collection on flow.
+                launch {
+                    // Assert second prepend re-using key = 0 leads to IllegalStateException
+                    assertFailsWith<IllegalStateException> { pager.pageEventFlow.collect {} }
+                }
+
+                advanceUntilIdle()
+
+                // Trigger first prepend with key = 0
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                advanceUntilIdle()
+
+                // Trigger second prepend with key = 0
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = -1,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                advanceUntilIdle()
+            }
+        }
+
+    @Test
+    fun keyReuse_supported() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pager =
+                    PageFetcherSnapshot(
+                        initialKey = 50,
+                        pagingSource =
+                            object : PagingSource<Int, Int>() {
+                                var loads = 0
+
+                                override val keyReuseSupported: Boolean
+                                    get() = true
+
+                                override suspend fun load(params: LoadParams<Int>) =
+                                    when (params) {
+                                        is LoadParams.Refresh -> Page(listOf(0), 0, 0)
+                                        else ->
+                                            Page<Int, Int>(
+                                                listOf(),
+                                                if (loads < 3) 0 else null,
+                                                if (loads < 3) 0 else null
+                                            )
+                                    }.also { loads++ }
+
+                                override fun getRefreshKey(state: PagingState<Int, Int>): Int? =
+                                    null
+                            },
+                        config = config,
+                        retryFlow = retryBus.flow
+                    )
+
+                // Trigger collection on flow.
+                val job = launch { pager.pageEventFlow.collect {} }
+
+                advanceUntilIdle()
+
+                // Trigger first prepend with key = 0
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                advanceUntilIdle()
+
+                // Trigger second prepend with key = 0
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = -1,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                advanceUntilIdle()
+
+                job.cancel()
+            }
+        }
+
+    @Test
+    fun initializeHintAfterEmpty() =
+        testScope.runTest {
+            val pageFetcherSnapshot =
+                PageFetcherSnapshot(
+                    initialKey = 50,
+                    pagingSource = TestPagingSource(),
+                    config = config,
+                    retryFlow = emptyFlow(),
+                )
+            collectSnapshotData(pageFetcherSnapshot) { state, _ ->
+                advanceUntilIdle()
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(range = 50..51),
+                    )
+
+                pageFetcherSnapshot.accessHint(ViewportHint.Initial(0, 0, 0, 0))
+                advanceUntilIdle()
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(prependLocal = Loading),
+                        localLoadStateUpdate<Int>(appendLocal = Loading, prependLocal = Loading),
+                        createPrepend(pageOffset = -1, range = 49..49, endState = Loading),
+                        createAppend(pageOffset = 1, range = 52..52),
+                    )
+            }
+        }
 
     @OptIn(DelicateCoroutinesApi::class)
     @Test
     fun pageEventSentAfterChannelClosed() = runTest {
-        val pager = PageFetcherSnapshot(
-            initialKey = 50,
-            pagingSource = TestPagingSource(loadDelay = 100),
-            config = config,
-            retryFlow = retryBus.flow
-        )
+        val pager =
+            PageFetcherSnapshot(
+                initialKey = 50,
+                pagingSource = TestPagingSource(loadDelay = 100),
+                config = config,
+                retryFlow = retryBus.flow
+            )
 
-        val deferred = GlobalScope.async {
-            pager.pageEventFlow.collect { }
-        }
+        val deferred = GlobalScope.async { pager.pageEventFlow.collect {} }
         pager.close()
 
         deferred.await()
@@ -3586,77 +3841,89 @@
 
     @Test
     fun generationalViewportHint_shouldPrioritizeOver_presenterUpdates() {
-        val prependHint = GenerationalViewportHint(
-            generationId = 0,
-            hint = ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = -10,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
+        val prependHint =
+            GenerationalViewportHint(
+                generationId = 0,
+                hint =
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = -10,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
             )
-        )
-        val prependHintWithPresenterUpdate = GenerationalViewportHint(
-            generationId = 0,
-            hint = ViewportHint.Access(
-                pageOffset = -10,
-                indexInPage = 0,
-                presentedItemsBefore = -5,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = -10,
-                originalPageOffsetLast = 0
+        val prependHintWithPresenterUpdate =
+            GenerationalViewportHint(
+                generationId = 0,
+                hint =
+                    ViewportHint.Access(
+                        pageOffset = -10,
+                        indexInPage = 0,
+                        presentedItemsBefore = -5,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = -10,
+                        originalPageOffsetLast = 0
+                    )
             )
-        )
         assertTrue { prependHintWithPresenterUpdate.shouldPrioritizeOver(prependHint, PREPEND) }
 
-        val appendHint = GenerationalViewportHint(
-            generationId = 0,
-            hint = ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = -10,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
+        val appendHint =
+            GenerationalViewportHint(
+                generationId = 0,
+                hint =
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = -10,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
             )
-        )
-        val appendHintWithPresenterUpdate = GenerationalViewportHint(
-            generationId = 0,
-            hint = ViewportHint.Access(
-                pageOffset = 10,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = -5,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 10
+        val appendHintWithPresenterUpdate =
+            GenerationalViewportHint(
+                generationId = 0,
+                hint =
+                    ViewportHint.Access(
+                        pageOffset = 10,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = -5,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 10
+                    )
             )
-        )
         assertTrue { appendHintWithPresenterUpdate.shouldPrioritizeOver(appendHint, APPEND) }
     }
 
     @Test
     fun generationalViewportHint_shouldPrioritizeAccessOverInitial() {
-        val accessHint = GenerationalViewportHint(
-            generationId = 0,
-            hint = ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
+        val accessHint =
+            GenerationalViewportHint(
+                generationId = 0,
+                hint =
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
             )
-        )
-        val initialHint = GenerationalViewportHint(
-            generationId = 0,
-            hint = ViewportHint.Initial(
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
+        val initialHint =
+            GenerationalViewportHint(
+                generationId = 0,
+                hint =
+                    ViewportHint.Initial(
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
             )
-        )
 
         assertTrue { accessHint.shouldPrioritizeOver(initialHint, PREPEND) }
         assertFalse { initialHint.shouldPrioritizeOver(accessHint, PREPEND) }
@@ -3665,142 +3932,153 @@
     }
 
     @Test
-    fun close_cancelsCollectionFromLoadResultInvalid() = testScope.runTest {
-        val pagingSource = object : PagingSource<Int, Int>() {
-            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-                return LoadResult.Invalid()
-            }
+    fun close_cancelsCollectionFromLoadResultInvalid() =
+        testScope.runTest {
+            val pagingSource =
+                object : PagingSource<Int, Int>() {
+                    override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                        return LoadResult.Invalid()
+                    }
 
-            override fun getRefreshKey(state: PagingState<Int, Int>): Int? {
-                fail("should not reach here")
+                    override fun getRefreshKey(state: PagingState<Int, Int>): Int? {
+                        fail("should not reach here")
+                    }
+                }
+            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+
+            collectSnapshotData(pager) { _, job ->
+
+                // Start initial load but this load should return LoadResult.Invalid
+                // wait some time for the invalid result handler to close the page event flow
+                advanceTimeBy(1000)
+
+                assertTrue { !job.isActive }
             }
         }
-        val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
-
-        collectSnapshotData(pager) { _, job ->
-
-            // Start initial load but this load should return LoadResult.Invalid
-            // wait some time for the invalid result handler to close the page event flow
-            advanceTimeBy(1000)
-
-            assertTrue { !job.isActive }
-        }
-    }
 
     @Test
-    fun refresh_cancelsCollectionFromLoadResultInvalid() = testScope.runTest {
-        val pagingSource = TestPagingSource()
-        pagingSource.nextLoadResult = LoadResult.Invalid()
-
-        val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
-
-        collectSnapshotData(pager) { state, job ->
-
-            // Start initial load but this load should return LoadResult.Invalid
-            // Wait some time for the result handler to close the page event flow
-            advanceUntilIdle()
-
-            // The flow's last page event should be the original Loading event before it
-            // was closed by the invalid result handler
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-            )
-            // make sure no more new events are sent to UI
-            assertThat(state.newEvents()).isEmpty()
-            assertTrue(pagingSource.invalid)
-            assertTrue { !job.isActive }
-        }
-    }
-
-    @Test
-    fun append_cancelsCollectionFromLoadResultInvalid() = testScope.runTest {
-        val pagingSource = TestPagingSource()
-        val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
-
-        collectSnapshotData(pager) { state, job ->
-
-            advanceUntilIdle()
-
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(50..51)
-            )
-            // append a page
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 1,
-                    presentedItemsBefore = 1,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            // now return LoadResult.Invalid
+    fun refresh_cancelsCollectionFromLoadResultInvalid() =
+        testScope.runTest {
+            val pagingSource = TestPagingSource()
             pagingSource.nextLoadResult = LoadResult.Invalid()
 
-            advanceUntilIdle()
+            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
 
-            // Only a Loading update for Append should be sent and it should not complete
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(appendLocal = Loading),
-            )
-            assertTrue(pagingSource.invalid)
-            assertThat(state.newEvents()).isEmpty()
-            assertThat(!job.isActive)
+            collectSnapshotData(pager) { state, job ->
+
+                // Start initial load but this load should return LoadResult.Invalid
+                // Wait some time for the result handler to close the page event flow
+                advanceUntilIdle()
+
+                // The flow's last page event should be the original Loading event before it
+                // was closed by the invalid result handler
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    )
+                // make sure no more new events are sent to UI
+                assertThat(state.newEvents()).isEmpty()
+                assertTrue(pagingSource.invalid)
+                assertTrue { !job.isActive }
+            }
         }
-    }
 
     @Test
-    fun prepend_cancelsCollectionFromLoadResultInvalid() = testScope.runTest {
-        val pagingSource = TestPagingSource()
-        val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+    fun append_cancelsCollectionFromLoadResultInvalid() =
+        testScope.runTest {
+            val pagingSource = TestPagingSource()
+            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
 
-        collectSnapshotData(pager) { state, job ->
+            collectSnapshotData(pager) { state, job ->
+                advanceUntilIdle()
 
-            advanceUntilIdle()
-
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(50..51)
-            )
-            // now prepend
-            pager.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = -1,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 1,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(50..51)
+                    )
+                // append a page
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
                 )
-            )
-            // now return LoadResult.Invalid.
-            pagingSource.nextLoadResult = LoadResult.Invalid()
+                // now return LoadResult.Invalid
+                pagingSource.nextLoadResult = LoadResult.Invalid()
 
-            advanceUntilIdle()
+                advanceUntilIdle()
 
-            // Only a Loading update for Prepend should be sent and it should not complete
-            assertThat(state.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-            )
-            assertTrue(pagingSource.invalid)
-            assertThat(state.newEvents()).isEmpty()
-            assertThat(!job.isActive)
+                // Only a Loading update for Append should be sent and it should not complete
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(appendLocal = Loading),
+                    )
+                assertTrue(pagingSource.invalid)
+                assertThat(state.newEvents()).isEmpty()
+                assertThat(!job.isActive)
+            }
         }
-    }
+
+    @Test
+    fun prepend_cancelsCollectionFromLoadResultInvalid() =
+        testScope.runTest {
+            val pagingSource = TestPagingSource()
+            val pager = PageFetcherSnapshot(50, pagingSource, config, retryFlow = retryBus.flow)
+
+            collectSnapshotData(pager) { state, job ->
+                advanceUntilIdle()
+
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(refreshLocal = Loading),
+                        createRefresh(50..51)
+                    )
+                // now prepend
+                pager.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = -1,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+                // now return LoadResult.Invalid.
+                pagingSource.nextLoadResult = LoadResult.Invalid()
+
+                advanceUntilIdle()
+
+                // Only a Loading update for Prepend should be sent and it should not complete
+                assertThat(state.newEvents())
+                    .containsExactly(
+                        localLoadStateUpdate<Int>(prependLocal = Loading),
+                    )
+                assertTrue(pagingSource.invalid)
+                assertThat(state.newEvents()).isEmpty()
+                assertThat(!job.isActive)
+            }
+        }
 
     internal class CollectedPageEvents<T : Any>(val pageEvents: ArrayList<PageEvent<T>>) {
         var lastIndex = 0
-        fun newEvents(): List<PageEvent<T>> = when {
-            pageEvents.isEmpty() -> pageEvents.toList()
-            lastIndex > pageEvents.lastIndex -> listOf()
-            else -> pageEvents.lastIndex.let {
-                val result = pageEvents.slice(lastIndex..it)
-                lastIndex = it + 1
-                result
+
+        fun newEvents(): List<PageEvent<T>> =
+            when {
+                pageEvents.isEmpty() -> pageEvents.toList()
+                lastIndex > pageEvents.lastIndex -> listOf()
+                else ->
+                    pageEvents.lastIndex.let {
+                        val result = pageEvents.slice(lastIndex..it)
+                        lastIndex = it + 1
+                        result
+                    }
             }
-        }
     }
 
     @Suppress("SuspendFunctionOnCoroutineScope")
@@ -3818,9 +4096,7 @@
     }
 
     internal fun <T : Any> PageFetcher<*, T>.pageEvents(): Flow<PageEvent<T>> {
-        return flow.flatMapLatest {
-            it.flow
-        }
+        return flow.flatMapLatest { it.flow }
     }
 
     internal suspend fun <T : Any> PageFetcher<*, T>.collectEvents(
@@ -3829,20 +4105,22 @@
         val collectionScope = MultiGenerationCollectionScopeImpl<T>()
         val eventsByGeneration = collectionScope.eventsByGeneration
         coroutineScope {
-            val collectionJob = launch(start = CoroutineStart.LAZY) {
-                flow.flatMapLatest { data ->
-                    collectionScope.uiReceiver = data.uiReceiver
-                    collectionScope.hintReceiver = data.hintReceiver
-                    val generationEvents = mutableListOf<PageEvent<T>>().also {
-                        eventsByGeneration.add(it)
-                    }
-                    collectionScope.generationCount.value = eventsByGeneration.size
-                    data.flow.onEach {
-                        generationEvents.add(it)
-                        collectionScope.eventCount.value += 1
-                    }
-                }.collect() // just keep collecting, block will cancel eventually
-            }
+            val collectionJob =
+                launch(start = CoroutineStart.LAZY) {
+                    flow
+                        .flatMapLatest { data ->
+                            collectionScope.uiReceiver = data.uiReceiver
+                            collectionScope.hintReceiver = data.hintReceiver
+                            val generationEvents =
+                                mutableListOf<PageEvent<T>>().also { eventsByGeneration.add(it) }
+                            collectionScope.generationCount.value = eventsByGeneration.size
+                            data.flow.onEach {
+                                generationEvents.add(it)
+                                collectionScope.eventCount.value += 1
+                            }
+                        }
+                        .collect() // just keep collecting, block will cancel eventually
+                }
             launch {
                 collectionScope.stopped.await()
                 collectionJob.cancel()
@@ -3867,8 +4145,9 @@
         }
         testScope.runCurrent()
         expected.forEachIndexed { index, list ->
-            assertThat(actual.getOrNull(index)
-            ?: emptyList<PageEvent<T>>()).containsExactlyElementsIn(list).inOrder()
+            assertThat(actual.getOrNull(index) ?: emptyList<PageEvent<T>>())
+                .containsExactlyElementsIn(list)
+                .inOrder()
         }
         assertThat(actual.size).isEqualTo(expected.size)
     }
@@ -3879,7 +4158,9 @@
         val eventsByGeneration: List<List<PageEvent<T>>>
         val uiReceiver: UiReceiver?
         val hintReceiver: HintReceiver?
+
         suspend fun stop()
+
         fun accessHint(viewportHint: ViewportHint) {
             hintReceiver!!.accessHint(viewportHint)
         }
@@ -3894,9 +4175,7 @@
         }
 
         suspend fun awaitEventCount(limit: Int) {
-            eventCount.takeWhile {
-                it < limit
-            }.collect()
+            eventCount.takeWhile { it < limit }.collect()
         }
     }
 
@@ -3908,6 +4187,7 @@
         override var hintReceiver: HintReceiver? = null,
     ) : MultiGenerationCollectionScope<T> {
         val stopped = CompletableDeferred<Unit>()
+
         override suspend fun stop() {
             stopped.complete(Unit)
         }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherTest.kt
index 88e7a2f..9e7c825 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PageFetcherTest.kt
@@ -57,228 +57,241 @@
 class PageFetcherTest {
     private val testScope = TestScope(UnconfinedTestDispatcher())
     private val pagingSourceFactory = suspend { TestPagingSource() }
-    private val config = PagingConfig(
-        pageSize = 1,
-        prefetchDistance = 1,
-        enablePlaceholders = true,
-        initialLoadSize = 2,
-        maxSize = 3
-    )
-
-    @Test
-    fun initialize() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertEquals(1, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun refresh() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertEquals(1, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertEquals(2, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun refresh_sourceEndOfPaginationReached() = testScope.runTest {
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = { TestPagingSource(items = emptyList()) },
-            initialKey = 0,
-            config = config,
+    private val config =
+        PagingConfig(
+            pageSize = 1,
+            prefetchDistance = 1,
+            enablePlaceholders = true,
+            initialLoadSize = 2,
+            maxSize = 3
         )
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertEquals(1, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertEquals(2, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
-        fetcherState.job.cancel()
-    }
 
     @Test
-    fun refresh_remoteEndOfPaginationReached() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
-                RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
-            }
+    fun initialize() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertEquals(1, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
+            fetcherState.job.cancel()
         }
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = { TestPagingSource(items = emptyList()) },
-            initialKey = 0,
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertEquals(1, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
-        assertEquals(1, remoteMediator.loadEvents.size)
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertEquals(2, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
-        assertEquals(2, remoteMediator.loadEvents.size)
-        fetcherState.job.cancel()
-    }
 
     @Test
-    fun refresh_fromPagingSource() = testScope.runTest {
-        var pagingSource: PagingSource<Int, Int>? = null
-        val pagingSourceFactory = suspend {
-            TestPagingSource().also { pagingSource = it }
+    fun refresh() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertEquals(1, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
+
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertEquals(2, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
+            fetcherState.job.cancel()
         }
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertEquals(1, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
-
-        val oldPagingSource = pagingSource
-        oldPagingSource?.invalidate()
-        advanceUntilIdle()
-
-        assertEquals(2, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
-        assertNotEquals(oldPagingSource, pagingSource)
-        assertTrue { oldPagingSource!!.invalid }
-        fetcherState.job.cancel()
-    }
 
     @Test
-    fun refresh_callsInvalidate() = testScope.runTest {
-        var pagingSource: PagingSource<Int, Int>? = null
-        val pagingSourceFactory = suspend {
-            TestPagingSource().also { pagingSource = it }
+    fun refresh_sourceEndOfPaginationReached() =
+        testScope.runTest {
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource(items = emptyList()) },
+                    initialKey = 0,
+                    config = config,
+                )
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertEquals(1, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
+
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertEquals(2, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
+            fetcherState.job.cancel()
         }
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        var didCallInvalidate = false
-        pagingSource?.registerInvalidatedCallback { didCallInvalidate = true }
-
-        advanceUntilIdle()
-
-        assertEquals(1, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertEquals(2, fetcherState.pagingDataList.size)
-        assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
-        assertTrue { didCallInvalidate }
-        fetcherState.job.cancel()
-    }
 
     @Test
-    fun refresh_invalidatePropagatesThroughLoadResultInvalid() = testScope.runTest {
-        val pagingSources = mutableListOf<TestPagingSource>()
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = {
-                TestPagingSource().also {
-                    // make this initial load return LoadResult.Invalid to see if new paging
-                    // source is generated
-                    if (pagingSources.size == 0) it.nextLoadResult = LoadResult.Invalid()
-                    it.getRefreshKeyResult = 30
-                    pagingSources.add(it)
+    fun refresh_remoteEndOfPaginationReached() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ ->
+                        RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+                    }
                 }
-            },
-            initialKey = 50,
-            config = config,
-        )
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource(items = emptyList()) },
+                    initialKey = 0,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            val fetcherState = collectFetcherState(pageFetcher)
 
-        val fetcherState = collectFetcherState(pageFetcher)
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        // should have two PagingData returned, one for each paging source
-        assertThat(fetcherState.pagingDataList.size).isEqualTo(2)
+            assertEquals(1, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
+            assertEquals(1, remoteMediator.loadEvents.size)
 
-        // First PagingData only returns a loading state because invalidation prevents load
-        // completion
-        assertTrue(pagingSources[0].invalid)
-        assertThat(fetcherState.pageEventLists[0]).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading)
-        )
-        // previous load() returning LoadResult.Invalid should trigger a new paging source
-        // retrying with the same load params, this should return a refresh starting
-        // from getRefreshKey() = 30
-        assertTrue(!pagingSources[1].invalid)
-        assertThat(fetcherState.pageEventLists[1]).containsExactly(
-            localLoadStateUpdate<Int>(refreshLocal = Loading),
-            createRefresh(30..31)
-        )
+            pageFetcher.refresh()
+            advanceUntilIdle()
 
-        assertThat(pagingSources[0]).isNotEqualTo(pagingSources[1])
-        fetcherState.job.cancel()
-    }
+            assertEquals(2, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
+            assertEquals(2, remoteMediator.loadEvents.size)
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun refresh_fromPagingSource() =
+        testScope.runTest {
+            var pagingSource: PagingSource<Int, Int>? = null
+            val pagingSourceFactory = suspend { TestPagingSource().also { pagingSource = it } }
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertEquals(1, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
+
+            val oldPagingSource = pagingSource
+            oldPagingSource?.invalidate()
+            advanceUntilIdle()
+
+            assertEquals(2, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
+            assertNotEquals(oldPagingSource, pagingSource)
+            assertTrue { oldPagingSource!!.invalid }
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun refresh_callsInvalidate() =
+        testScope.runTest {
+            var pagingSource: PagingSource<Int, Int>? = null
+            val pagingSourceFactory = suspend { TestPagingSource().also { pagingSource = it } }
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            var didCallInvalidate = false
+            pagingSource?.registerInvalidatedCallback { didCallInvalidate = true }
+
+            advanceUntilIdle()
+
+            assertEquals(1, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[0].isNotEmpty() }
+
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertEquals(2, fetcherState.pagingDataList.size)
+            assertTrue { fetcherState.pageEventLists[1].isNotEmpty() }
+            assertTrue { didCallInvalidate }
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun refresh_invalidatePropagatesThroughLoadResultInvalid() =
+        testScope.runTest {
+            val pagingSources = mutableListOf<TestPagingSource>()
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = {
+                        TestPagingSource().also {
+                            // make this initial load return LoadResult.Invalid to see if new paging
+                            // source is generated
+                            if (pagingSources.size == 0) it.nextLoadResult = LoadResult.Invalid()
+                            it.getRefreshKeyResult = 30
+                            pagingSources.add(it)
+                        }
+                    },
+                    initialKey = 50,
+                    config = config,
+                )
+
+            val fetcherState = collectFetcherState(pageFetcher)
+            advanceUntilIdle()
+
+            // should have two PagingData returned, one for each paging source
+            assertThat(fetcherState.pagingDataList.size).isEqualTo(2)
+
+            // First PagingData only returns a loading state because invalidation prevents load
+            // completion
+            assertTrue(pagingSources[0].invalid)
+            assertThat(fetcherState.pageEventLists[0])
+                .containsExactly(localLoadStateUpdate<Int>(refreshLocal = Loading))
+            // previous load() returning LoadResult.Invalid should trigger a new paging source
+            // retrying with the same load params, this should return a refresh starting
+            // from getRefreshKey() = 30
+            assertTrue(!pagingSources[1].invalid)
+            assertThat(fetcherState.pageEventLists[1])
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(30..31)
+                )
+
+            assertThat(pagingSources[0]).isNotEqualTo(pagingSources[1])
+            fetcherState.job.cancel()
+        }
 
     @Test
     fun append_invalidatePropagatesThroughLoadResultInvalid() =
         testScope.runTest {
             val pagingSources = mutableListOf<TestPagingSource>()
-            val pageFetcher = PageFetcher(
-                pagingSourceFactory = { TestPagingSource().also { pagingSources.add(it) } },
-                initialKey = 50,
-                config = config,
-            )
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource().also { pagingSources.add(it) } },
+                    initialKey = 50,
+                    config = config,
+                )
             val fetcherState = collectFetcherState(pageFetcher)
             advanceUntilIdle()
 
             assertThat(fetcherState.pageEventLists.size).isEqualTo(1)
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(50..51),
-            )
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..51),
+                )
 
             // append a page
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 1,
-                    presentedItemsBefore = 1,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
                 )
-            )
             // now return LoadResult.Invalid
             pagingSources[0].nextLoadResult = LoadResult.Invalid()
 
             advanceUntilIdle()
 
             // make sure the append load never completes
-            assertThat(fetcherState.pageEventLists[0].last()).isEqualTo(
-                localLoadStateUpdate<Int>(appendLocal = Loading),
-            )
+            assertThat(fetcherState.pageEventLists[0].last())
+                .isEqualTo(
+                    localLoadStateUpdate<Int>(appendLocal = Loading),
+                )
 
             // the invalid result handler should exit the append load loop gracefully and allow
             // fetcher to generate a new paging source
@@ -286,10 +299,11 @@
             assertTrue(pagingSources[0].invalid)
 
             // second generation should load refresh with cached append load params
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(51..52)
-            )
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(51..52)
+                )
 
             fetcherState.job.cancel()
         }
@@ -298,39 +312,44 @@
     fun prepend_invalidatePropagatesThroughLoadResultInvalid() =
         testScope.runTest {
             val pagingSources = mutableListOf<TestPagingSource>()
-            val pageFetcher = PageFetcher(
-                pagingSourceFactory = { TestPagingSource().also { pagingSources.add(it) } },
-                initialKey = 50,
-                config = config,
-            )
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource().also { pagingSources.add(it) } },
+                    initialKey = 50,
+                    config = config,
+                )
             val fetcherState = collectFetcherState(pageFetcher)
             advanceUntilIdle()
 
             assertThat(fetcherState.pageEventLists.size).isEqualTo(1)
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(50..51),
-            )
-            // prepend a page
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = -1,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = 1,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(50..51),
                 )
-            )
+            // prepend a page
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = -1,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
             // now return LoadResult.Invalid
             pagingSources[0].nextLoadResult = LoadResult.Invalid()
 
             advanceUntilIdle()
 
             // make sure the prepend load never completes
-            assertThat(fetcherState.pageEventLists[0].last()).isEqualTo(
-                localLoadStateUpdate<Int>(prependLocal = Loading),
-            )
+            assertThat(fetcherState.pageEventLists[0].last())
+                .isEqualTo(
+                    localLoadStateUpdate<Int>(prependLocal = Loading),
+                )
 
             // the invalid result should exit the prepend load loop gracefully and allow fetcher to
             // generate a new paging source
@@ -338,314 +357,31 @@
             assertTrue(pagingSources[0].invalid)
 
             // second generation should load refresh with cached prepend load params
-            assertThat(fetcherState.newEvents()).containsExactly(
-                localLoadStateUpdate<Int>(refreshLocal = Loading),
-                createRefresh(49..50)
-            )
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(refreshLocal = Loading),
+                    createRefresh(49..50)
+                )
 
             fetcherState.job.cancel()
         }
 
     @Test
-    fun refresh_closesCollection() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+    fun refresh_closesCollection() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
 
-        var pagingDataCount = 0
-        var didFinish = false
-        val job = launch {
-            pageFetcher.flow.collect { pagedData ->
-                pagingDataCount++
-                pagedData.flow
-                    .onCompletion {
-                        didFinish = true
-                    }
-                    // Return immediately to avoid blocking cancellation. This is analogous to
-                    // logic which would process a single PageEvent and doesn't suspend
-                    // indefinitely, which is what we expect to happen.
-                    .collect { }
-            }
-        }
-
-        advanceUntilIdle()
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertEquals(2, pagingDataCount)
-        assertTrue { didFinish }
-        job.cancel()
-    }
-
-    @Test
-    fun refresh_closesUncollectedPageEventCh() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-
-        val pagingDatas = mutableListOf<PagingData<Int>>()
-        val didFinish = mutableListOf<Boolean>()
-        val job = launch {
-            pageFetcher.flow.collectIndexed { index, pagingData ->
-                pagingDatas.add(pagingData)
-                if (index != 1) {
-                    pagingData.flow
-                        .onStart {
-                            didFinish.add(false)
-                        }
-                        .onCompletion {
-                            if (index < 2) didFinish[index] = true
-                        }
+            var pagingDataCount = 0
+            var didFinish = false
+            val job = launch {
+                pageFetcher.flow.collect { pagedData ->
+                    pagingDataCount++
+                    pagedData.flow
+                        .onCompletion { didFinish = true }
                         // Return immediately to avoid blocking cancellation. This is analogous to
                         // logic which would process a single PageEvent and doesn't suspend
                         // indefinitely, which is what we expect to happen.
-                        .collect { }
-                }
-            }
-        }
-
-        advanceUntilIdle()
-
-        pageFetcher.refresh()
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertEquals(3, pagingDatas.size)
-        withContext(coroutineContext) {
-            // This should complete immediately without advanceUntilIdle().
-            val deferred = async { pagingDatas[1].flow.collect { } }
-            deferred.await()
-        }
-
-        assertEquals(listOf(true, false), didFinish)
-        job.cancel()
-    }
-
-    @Test
-    fun invalidate_unregistersListener() = testScope.runTest {
-        var i = 0
-        val pagingSources = mutableListOf<PagingSource<Int, Int>>()
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = {
-                TestPagingSource().also {
-                    pagingSources.add(it)
-
-                    if (i == 0) {
-                        // Force PageFetcher to create a second PagingSource before finding a
-                        // valid one when instantiating first generation.
-                        it.invalidate()
-                    }
-                    i++
-                }
-            },
-            initialKey = 50,
-            config = config
-        )
-
-        val state = collectFetcherState(pageFetcher)
-
-        // Wait for first generation to instantiate.
-        advanceUntilIdle()
-
-        // Providing an invalid PagingSource should automatically trigger invalidation
-        // regardless of when the invalidation callback is registered.
-        assertThat(pagingSources).hasSize(2)
-
-        // The first PagingSource is immediately invalid, so we shouldn't keep an invalidate
-        // listener registered on it.
-        assertThat(pagingSources[0].invalidateCallbackCount).isEqualTo(0)
-        assertThat(pagingSources[1].invalidateCallbackCount).isEqualTo(1)
-
-        // Trigger new generation, should unregister from older PagingSource.
-        pageFetcher.refresh()
-        advanceUntilIdle()
-        assertThat(pagingSources).hasSize(3)
-        assertThat(pagingSources[1].invalidateCallbackCount).isEqualTo(0)
-        assertThat(pagingSources[2].invalidateCallbackCount).isEqualTo(1)
-
-        state.job.cancel()
-    }
-
-    @Test
-    fun collectTwice() = testScope.runTest {
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-        val fetcherState = collectFetcherState(pageFetcher)
-        val fetcherState2 = collectFetcherState(pageFetcher)
-        advanceUntilIdle()
-        fetcherState.job.cancel()
-        fetcherState2.job.cancel()
-        advanceUntilIdle()
-        assertThat(fetcherState.pagingDataList.size).isEqualTo(1)
-        assertThat(fetcherState2.pagingDataList.size).isEqualTo(1)
-        assertThat(fetcherState.pageEventLists.first()).isNotEmpty()
-        assertThat(fetcherState2.pageEventLists.first()).isNotEmpty()
-    }
-
-    @Test
-    fun remoteMediator_initializeSkip() = testScope.runTest {
-        val remoteMediatorMock = RemoteMediatorMock().apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config, remoteMediatorMock)
-
-        advanceUntilIdle()
-
-        // Assert onInitialize is not called until collection.
-        assertTrue { remoteMediatorMock.initializeEvents.isEmpty() }
-
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertEquals(1, remoteMediatorMock.initializeEvents.size)
-        assertEquals(0, remoteMediatorMock.loadEvents.size)
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun remoteMediator_initializeLaunch() = testScope.runTest {
-        val remoteMediatorMock = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-        }
-        val pageFetcher = PageFetcher(pagingSourceFactory, 50, config, remoteMediatorMock)
-
-        advanceUntilIdle()
-
-        // Assert onInitialize is not called until collection.
-        assertTrue { remoteMediatorMock.initializeEvents.isEmpty() }
-
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        assertEquals(1, remoteMediatorMock.initializeEvents.size)
-        assertEquals(1, remoteMediatorMock.loadEvents.size)
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun remoteMediator_load() = testScope.runTest {
-        val remoteMediatorMock = RemoteMediatorMock()
-        val pageFetcher = PageFetcher(pagingSourceFactory, 97, config, remoteMediatorMock)
-        val fetcherState = collectFetcherState(pageFetcher)
-
-        advanceUntilIdle()
-
-        // Assert onBoundary is not called for non-terminal page load.
-        assertTrue { remoteMediatorMock.loadEvents.isEmpty() }
-
-        fetcherState.pagingDataList[0].hintReceiver.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 1,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 0,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0
-            )
-        )
-
-        advanceUntilIdle()
-
-        // Assert onBoundary is called for terminal page load.
-        assertEquals(1, remoteMediatorMock.loadEvents.size)
-        assertEquals(APPEND, remoteMediatorMock.loadEvents[0].loadType)
-
-        fetcherState.job.cancel()
-    }
-
-    @Test
-    fun jump() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pagingSources = mutableListOf<PagingSource<Int, Int>>()
-            val pagingSourceFactory = suspend {
-                TestPagingSource().also { pagingSources.add(it) }
-            }
-            val config = PagingConfig(
-                pageSize = 1,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2,
-                maxSize = 3,
-                jumpThreshold = 10
-            )
-            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
-            val fetcherState = collectFetcherState(pageFetcher)
-
-            advanceUntilIdle()
-            assertThat(fetcherState.newEvents()).isEqualTo(
-                listOf(
-                    localLoadStateUpdate(refreshLocal = Loading),
-                    createRefresh(range = 50..51)
-                )
-            )
-
-            // Jump due to sufficiently large presentedItemsBefore
-            fetcherState.pagingDataList[0].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    // indexInPage value is incorrect, but should not be considered for jumps
-                    indexInPage = 0,
-                    presentedItemsBefore = -20,
-                    presentedItemsAfter = 0,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertTrue { pagingSources[0].invalid }
-            // Assert no new events added to current generation
-            assertEquals(2, fetcherState.pageEventLists[0].size)
-            assertThat(fetcherState.newEvents()).isEqualTo(
-                listOf(
-                    localLoadStateUpdate(refreshLocal = Loading),
-                    createRefresh(range = 50..51)
-                )
-            )
-
-            // Jump due to sufficiently large presentedItemsAfter
-            fetcherState.pagingDataList[1].hintReceiver.accessHint(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    // indexInPage value is incorrect, but should not be considered for jumps
-                    indexInPage = 0,
-                    presentedItemsBefore = 0,
-                    presentedItemsAfter = -20,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0
-                )
-            )
-            advanceUntilIdle()
-            assertTrue { pagingSources[1].invalid }
-            // Assert no new events added to current generation
-            assertEquals(2, fetcherState.pageEventLists[1].size)
-            assertThat(fetcherState.newEvents()).isEqualTo(
-                listOf(
-                    localLoadStateUpdate(refreshLocal = Loading),
-                    createRefresh(range = 50..51)
-                )
-            )
-
-            fetcherState.job.cancel()
-        }
-    }
-
-    @Test
-    fun checksFactoryForNewInstance() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pagingSource = TestPagingSource()
-            val config = PagingConfig(
-                pageSize = 1,
-                prefetchDistance = 1,
-                initialLoadSize = 2
-            )
-            val pageFetcher = PageFetcher(
-                pagingSourceFactory = suspend { pagingSource },
-                initialKey = 50,
-                config = config
-            )
-            val job = testScope.launch {
-                assertFailsWith<IllegalStateException> {
-                    pageFetcher.flow.collect { }
+                        .collect {}
                 }
             }
 
@@ -654,611 +390,952 @@
             pageFetcher.refresh()
             advanceUntilIdle()
 
-            assertTrue { job.isCompleted }
+            assertEquals(2, pagingDataCount)
+            assertTrue { didFinish }
+            job.cancel()
         }
-    }
 
     @Test
-    fun pagingSourceInvalidBeforeCallbackAdded() = testScope.runTest {
-        var invalidatesFromAdapter = 0
-        var i = 0
-        var pagingSource: TestPagingSource? = null
-        val pager = Pager(PagingConfig(10)) {
-            i++
-            TestPagingSource().also {
-                if (i == 1) {
-                    it.invalidate()
-                }
+    fun refresh_closesUncollectedPageEventCh() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
 
-                advanceUntilIdle()
-                it.registerInvalidatedCallback { invalidatesFromAdapter++ }
-                pagingSource = it
-            }
-        }
-
-        @OptIn(ExperimentalStdlibApi::class)
-        val job = launch {
-            pager.flow.collectLatest { pagingData ->
-                TestPagingDataPresenter<Int>(testScope.coroutineContext[CoroutineDispatcher]!!)
-                    .collectFrom(pagingData)
-            }
-        }
-
-        advanceUntilIdle()
-        pagingSource!!.invalidate()
-        advanceUntilIdle()
-
-        // InvalidatedCallbacks added after a PagingSource is already invalid should be
-        // immediately triggered, so both listeners we add should be triggered.
-        assertEquals(2, invalidatesFromAdapter)
-        job.cancel()
-    }
-
-    @Test
-    fun pagingSourceInvalidBeforeCallbackAddedCancelsInitialLoad() = testScope.runTest {
-        val pagingSources = mutableListOf<PagingSource<Int, Int>>()
-        val loadedPages = mutableListOf<Page<Int, Int>>()
-
-        var i = 0
-        val pager = Pager(PagingConfig(10)) {
-            object : PagingSource<Int, Int>() {
-                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-                    // Suspend and await advanceUntilIdle() before allowing load to complete.
-                    delay(1000)
-                    return Page.empty<Int, Int>().also {
-                        loadedPages.add(it)
-                    }
-                }
-
-                override fun getRefreshKey(state: PagingState<Int, Int>) = null
-            }.also {
-                pagingSources.add(it)
-
-                if (i++ == 0) {
-                    it.invalidate()
-                }
-            }
-        }
-
-        @OptIn(ExperimentalStdlibApi::class)
-        val job = launch {
-            pager.flow.collectLatest { pagingData ->
-                TestPagingDataPresenter<Int>(testScope.coroutineContext[CoroutineDispatcher]!!)
-                    .collectFrom(pagingData)
-            }
-        }
-
-        // First PagingSource starts immediately invalid and creates a new PagingSource, but does
-        // not finish initial page load.
-        runCurrent()
-        assertThat(pagingSources).hasSize(2)
-        assertThat(pagingSources[0].invalid).isTrue()
-        assertThat(loadedPages).hasSize(0)
-
-        advanceUntilIdle()
-
-        // After draining tasks, we should immediately get a second generation which triggers
-        // page load, skipping the initial load from first generation due to cancellation.
-        assertThat(pagingSources[1].invalid).isFalse()
-        assertThat(loadedPages).hasSize(1)
-
-        job.cancel()
-    }
-
-    @Test
-    fun cachesPreviousPagingStateOnEmptyPages() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-        )
-
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-        }
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = suspend {
-                TestPagingSource(loadDelay = 1000).also {
-                    it.getRefreshKeyResult = 30
-                }
-            },
-            initialKey = 50,
-            config = config,
-            remoteMediator = remoteMediator,
-        )
-
-        var receiver: HintReceiver? = null
-        val job = launch {
-            pageFetcher.flow.collectLatest {
-                receiver = it.hintReceiver
-                it.flow.collect { }
-            }
-        }
-
-        // Allow initial load to finish, so PagingState has non-zero pages.
-        advanceUntilIdle()
-
-        // Verify remote refresh is called with initial empty case.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            RemoteMediatorMock.LoadEvent(
-                loadType = REFRESH,
-                state = PagingState(
-                    pages = listOf(),
-                    anchorPosition = null,
-                    config = config,
-                    leadingPlaceholderCount = 0,
-                ),
-            )
-        )
-
-        // Trigger refresh, instantiating second generation.
-        pageFetcher.refresh()
-
-        // Allow remote refresh to get triggered, but do not let paging source complete initial load
-        // for second generation.
-        advanceTimeBy(500)
-
-        // Verify remote refresh is called with PagingState from first generation.
-        val pagingState = PagingState(
-            pages = listOf(
-                Page(
-                    data = listOf(50, 51, 52),
-                    prevKey = 49,
-                    nextKey = 53,
-                    itemsBefore = 50,
-                    itemsAfter = 47,
-                )
-            ),
-            anchorPosition = null,
-            config = config,
-            leadingPlaceholderCount = 50,
-        )
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
-        )
-
-        // Trigger a hint, which would normally populate anchorPosition. In real world scenario,
-        // this would happen as a result of UI still presenting first generation since second
-        // generation never finished loading yet.
-        receiver?.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 2,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
-            )
-        )
-
-        // Trigger refresh instantiating third generation before second has a chance to complete
-        // initial load.
-        pageFetcher.refresh()
-
-        // Wait for all non-canceled loads to complete.
-        advanceUntilIdle()
-
-        // Verify remote refresh is called with PagingState from first generation, since second
-        // generation never loaded any pages.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
-        )
-
-        job.cancel()
-    }
-
-    @Test
-    fun cachesPreviousPagingStateOnNullHint() = testScope.runTest {
-        val config = PagingConfig(
-            pageSize = 1,
-            prefetchDistance = 1,
-            enablePlaceholders = true,
-            initialLoadSize = 3,
-        )
-
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-        }
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = suspend {
-                TestPagingSource(loadDelay = 1000).also {
-                    it.getRefreshKeyResult = 30
-                }
-            },
-            initialKey = 50,
-            config = config,
-            remoteMediator = remoteMediator,
-        )
-
-        var receiver: HintReceiver? = null
-        val job = launch {
-            pageFetcher.flow.collectLatest {
-                receiver = it.hintReceiver
-                it.flow.collect { }
-            }
-        }
-
-        // Allow initial load to finish, so PagingState has non-zero pages.
-        advanceUntilIdle()
-
-        // Trigger a hint to populate anchorPosition, this should cause PageFetcher to cache this
-        // PagingState and use it in next remoteRefresh
-        receiver?.accessHint(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 2,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
-            )
-        )
-
-        // Verify remote refresh is called with initial empty case.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            RemoteMediatorMock.LoadEvent(
-                loadType = REFRESH,
-                state = PagingState(
-                    pages = listOf(),
-                    anchorPosition = null,
-                    config = config,
-                    leadingPlaceholderCount = 0,
-                ),
-            )
-        )
-
-        // Trigger refresh, instantiating second generation.
-        pageFetcher.refresh()
-
-        // Allow remote refresh to get triggered, and let paging source load finish.
-        advanceUntilIdle()
-
-        // Verify remote refresh is called with PagingState from first generation.
-        val pagingState = PagingState(
-            pages = listOf(
-                Page(
-                    data = listOf(50, 51, 52),
-                    prevKey = 49,
-                    nextKey = 53,
-                    itemsBefore = 50,
-                    itemsAfter = 47,
-                )
-            ),
-            anchorPosition = 50,
-            config = config,
-            leadingPlaceholderCount = 50,
-        )
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
-        )
-
-        // Trigger refresh instantiating third generation before second has a chance to complete
-        // initial load.
-        pageFetcher.refresh()
-
-        // Wait for all non-canceled loads to complete.
-        advanceUntilIdle()
-
-        // Verify remote refresh is called with PagingState from first generation, since second
-        // generation never loaded any pages.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
-        )
-
-        job.cancel()
-    }
-
-    @Test
-    fun invalidate_prioritizesGetRefreshKeyReturningNull() = testScope.runTest {
-        val loadRequests = mutableListOf<LoadParams<Int>>()
-        val pageFetcher = PageFetcher(
-            config = PagingConfig(pageSize = 1),
-            initialKey = 0,
-            pagingSourceFactory = {
-                object : PagingSource<Int, Int>() {
-                    override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-                        loadRequests.add(params)
-                        return LoadResult.Error(Exception("ignored"))
-                    }
-
-                    override fun getRefreshKey(state: PagingState<Int, Int>): Int? {
-                        // Should prioritize `null` returned here on invalidation.
-                        return null
-                    }
-                }
-            }
-        )
-
-        val job = launch {
-            pageFetcher.flow.collectLatest {
-                it.flow.collect { }
-            }
-        }
-
-        advanceUntilIdle()
-        assertThat(loadRequests).hasSize(1)
-        assertThat(loadRequests[0].key).isEqualTo(0)
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-        assertThat(loadRequests).hasSize(2)
-        assertThat(loadRequests[1].key).isEqualTo(null)
-
-        job.cancel()
-    }
-
-    @Test
-    fun invalidateBeforeAccessPreservesPagingState() = testScope.runTest {
-        withContext(coroutineContext) {
-            val config = PagingConfig(
-                pageSize = 1,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 3,
-            )
-            val pagingSources = mutableListOf<TestPagingSource>()
-            val pageFetcher = PageFetcher(
-                pagingSourceFactory = suspend {
-                    TestPagingSource(loadDelay = 1000).also {
-                        pagingSources.add(it)
-                    }
-                },
-                initialKey = 50,
-                config = config,
-            )
-
-            lateinit var pagingData: PagingData<Int>
+            val pagingDatas = mutableListOf<PagingData<Int>>()
+            val didFinish = mutableListOf<Boolean>()
             val job = launch {
-                pageFetcher.flow.collectLatest {
-                    pagingData = it
-                    it.flow.collect { }
+                pageFetcher.flow.collectIndexed { index, pagingData ->
+                    pagingDatas.add(pagingData)
+                    if (index != 1) {
+                        pagingData.flow
+                            .onStart { didFinish.add(false) }
+                            .onCompletion { if (index < 2) didFinish[index] = true }
+                            // Return immediately to avoid blocking cancellation. This is analogous
+                            // to
+                            // logic which would process a single PageEvent and doesn't suspend
+                            // indefinitely, which is what we expect to happen.
+                            .collect {}
+                    }
                 }
             }
 
             advanceUntilIdle()
 
-            // Trigger access to allow PagingState to get populated for next generation.
-            pagingData.hintReceiver.accessHint(
+            pageFetcher.refresh()
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertEquals(3, pagingDatas.size)
+            withContext(coroutineContext) {
+                // This should complete immediately without advanceUntilIdle().
+                val deferred = async { pagingDatas[1].flow.collect {} }
+                deferred.await()
+            }
+
+            assertEquals(listOf(true, false), didFinish)
+            job.cancel()
+        }
+
+    @Test
+    fun invalidate_unregistersListener() =
+        testScope.runTest {
+            var i = 0
+            val pagingSources = mutableListOf<PagingSource<Int, Int>>()
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = {
+                        TestPagingSource().also {
+                            pagingSources.add(it)
+
+                            if (i == 0) {
+                                // Force PageFetcher to create a second PagingSource before finding
+                                // a
+                                // valid one when instantiating first generation.
+                                it.invalidate()
+                            }
+                            i++
+                        }
+                    },
+                    initialKey = 50,
+                    config = config
+                )
+
+            val state = collectFetcherState(pageFetcher)
+
+            // Wait for first generation to instantiate.
+            advanceUntilIdle()
+
+            // Providing an invalid PagingSource should automatically trigger invalidation
+            // regardless of when the invalidation callback is registered.
+            assertThat(pagingSources).hasSize(2)
+
+            // The first PagingSource is immediately invalid, so we shouldn't keep an invalidate
+            // listener registered on it.
+            assertThat(pagingSources[0].invalidateCallbackCount).isEqualTo(0)
+            assertThat(pagingSources[1].invalidateCallbackCount).isEqualTo(1)
+
+            // Trigger new generation, should unregister from older PagingSource.
+            pageFetcher.refresh()
+            advanceUntilIdle()
+            assertThat(pagingSources).hasSize(3)
+            assertThat(pagingSources[1].invalidateCallbackCount).isEqualTo(0)
+            assertThat(pagingSources[2].invalidateCallbackCount).isEqualTo(1)
+
+            state.job.cancel()
+        }
+
+    @Test
+    fun collectTwice() =
+        testScope.runTest {
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+            val fetcherState = collectFetcherState(pageFetcher)
+            val fetcherState2 = collectFetcherState(pageFetcher)
+            advanceUntilIdle()
+            fetcherState.job.cancel()
+            fetcherState2.job.cancel()
+            advanceUntilIdle()
+            assertThat(fetcherState.pagingDataList.size).isEqualTo(1)
+            assertThat(fetcherState2.pagingDataList.size).isEqualTo(1)
+            assertThat(fetcherState.pageEventLists.first()).isNotEmpty()
+            assertThat(fetcherState2.pageEventLists.first()).isNotEmpty()
+        }
+
+    @Test
+    fun remoteMediator_initializeSkip() =
+        testScope.runTest {
+            val remoteMediatorMock =
+                RemoteMediatorMock().apply { initializeResult = SKIP_INITIAL_REFRESH }
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config, remoteMediatorMock)
+
+            advanceUntilIdle()
+
+            // Assert onInitialize is not called until collection.
+            assertTrue { remoteMediatorMock.initializeEvents.isEmpty() }
+
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertEquals(1, remoteMediatorMock.initializeEvents.size)
+            assertEquals(0, remoteMediatorMock.loadEvents.size)
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun remoteMediator_initializeLaunch() =
+        testScope.runTest {
+            val remoteMediatorMock =
+                RemoteMediatorMock().apply { initializeResult = LAUNCH_INITIAL_REFRESH }
+            val pageFetcher = PageFetcher(pagingSourceFactory, 50, config, remoteMediatorMock)
+
+            advanceUntilIdle()
+
+            // Assert onInitialize is not called until collection.
+            assertTrue { remoteMediatorMock.initializeEvents.isEmpty() }
+
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertEquals(1, remoteMediatorMock.initializeEvents.size)
+            assertEquals(1, remoteMediatorMock.loadEvents.size)
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun remoteMediator_load() =
+        testScope.runTest {
+            val remoteMediatorMock = RemoteMediatorMock()
+            val pageFetcher = PageFetcher(pagingSourceFactory, 97, config, remoteMediatorMock)
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            // Assert onBoundary is not called for non-terminal page load.
+            assertTrue { remoteMediatorMock.loadEvents.isEmpty() }
+
+            fetcherState.pagingDataList[0]
+                .hintReceiver
+                .accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0
+                    )
+                )
+
+            advanceUntilIdle()
+
+            // Assert onBoundary is called for terminal page load.
+            assertEquals(1, remoteMediatorMock.loadEvents.size)
+            assertEquals(APPEND, remoteMediatorMock.loadEvents[0].loadType)
+
+            fetcherState.job.cancel()
+        }
+
+    @Test
+    fun jump() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pagingSources = mutableListOf<PagingSource<Int, Int>>()
+                val pagingSourceFactory = suspend {
+                    TestPagingSource().also { pagingSources.add(it) }
+                }
+                val config =
+                    PagingConfig(
+                        pageSize = 1,
+                        prefetchDistance = 1,
+                        enablePlaceholders = true,
+                        initialLoadSize = 2,
+                        maxSize = 3,
+                        jumpThreshold = 10
+                    )
+                val pageFetcher = PageFetcher(pagingSourceFactory, 50, config)
+                val fetcherState = collectFetcherState(pageFetcher)
+
+                advanceUntilIdle()
+                assertThat(fetcherState.newEvents())
+                    .isEqualTo(
+                        listOf(
+                            localLoadStateUpdate(refreshLocal = Loading),
+                            createRefresh(range = 50..51)
+                        )
+                    )
+
+                // Jump due to sufficiently large presentedItemsBefore
+                fetcherState.pagingDataList[0]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            // indexInPage value is incorrect, but should not be considered for
+                            // jumps
+                            indexInPage = 0,
+                            presentedItemsBefore = -20,
+                            presentedItemsAfter = 0,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertTrue { pagingSources[0].invalid }
+                // Assert no new events added to current generation
+                assertEquals(2, fetcherState.pageEventLists[0].size)
+                assertThat(fetcherState.newEvents())
+                    .isEqualTo(
+                        listOf(
+                            localLoadStateUpdate(refreshLocal = Loading),
+                            createRefresh(range = 50..51)
+                        )
+                    )
+
+                // Jump due to sufficiently large presentedItemsAfter
+                fetcherState.pagingDataList[1]
+                    .hintReceiver
+                    .accessHint(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            // indexInPage value is incorrect, but should not be considered for
+                            // jumps
+                            indexInPage = 0,
+                            presentedItemsBefore = 0,
+                            presentedItemsAfter = -20,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0
+                        )
+                    )
+                advanceUntilIdle()
+                assertTrue { pagingSources[1].invalid }
+                // Assert no new events added to current generation
+                assertEquals(2, fetcherState.pageEventLists[1].size)
+                assertThat(fetcherState.newEvents())
+                    .isEqualTo(
+                        listOf(
+                            localLoadStateUpdate(refreshLocal = Loading),
+                            createRefresh(range = 50..51)
+                        )
+                    )
+
+                fetcherState.job.cancel()
+            }
+        }
+
+    @Test
+    fun checksFactoryForNewInstance() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pagingSource = TestPagingSource()
+                val config = PagingConfig(pageSize = 1, prefetchDistance = 1, initialLoadSize = 2)
+                val pageFetcher =
+                    PageFetcher(
+                        pagingSourceFactory = suspend { pagingSource },
+                        initialKey = 50,
+                        config = config
+                    )
+                val job =
+                    testScope.launch {
+                        assertFailsWith<IllegalStateException> { pageFetcher.flow.collect {} }
+                    }
+
+                advanceUntilIdle()
+
+                pageFetcher.refresh()
+                advanceUntilIdle()
+
+                assertTrue { job.isCompleted }
+            }
+        }
+
+    @Test
+    fun pagingSourceInvalidBeforeCallbackAdded() =
+        testScope.runTest {
+            var invalidatesFromAdapter = 0
+            var i = 0
+            var pagingSource: TestPagingSource? = null
+            val pager =
+                Pager(PagingConfig(10)) {
+                    i++
+                    TestPagingSource().also {
+                        if (i == 1) {
+                            it.invalidate()
+                        }
+
+                        advanceUntilIdle()
+                        it.registerInvalidatedCallback { invalidatesFromAdapter++ }
+                        pagingSource = it
+                    }
+                }
+
+            @OptIn(ExperimentalStdlibApi::class)
+            val job = launch {
+                pager.flow.collectLatest { pagingData ->
+                    TestPagingDataPresenter<Int>(testScope.coroutineContext[CoroutineDispatcher]!!)
+                        .collectFrom(pagingData)
+                }
+            }
+
+            advanceUntilIdle()
+            pagingSource!!.invalidate()
+            advanceUntilIdle()
+
+            // InvalidatedCallbacks added after a PagingSource is already invalid should be
+            // immediately triggered, so both listeners we add should be triggered.
+            assertEquals(2, invalidatesFromAdapter)
+            job.cancel()
+        }
+
+    @Test
+    fun pagingSourceInvalidBeforeCallbackAddedCancelsInitialLoad() =
+        testScope.runTest {
+            val pagingSources = mutableListOf<PagingSource<Int, Int>>()
+            val loadedPages = mutableListOf<Page<Int, Int>>()
+
+            var i = 0
+            val pager =
+                Pager(PagingConfig(10)) {
+                    object : PagingSource<Int, Int>() {
+                            override suspend fun load(
+                                params: LoadParams<Int>
+                            ): LoadResult<Int, Int> {
+                                // Suspend and await advanceUntilIdle() before allowing load to
+                                // complete.
+                                delay(1000)
+                                return Page.empty<Int, Int>().also { loadedPages.add(it) }
+                            }
+
+                            override fun getRefreshKey(state: PagingState<Int, Int>) = null
+                        }
+                        .also {
+                            pagingSources.add(it)
+
+                            if (i++ == 0) {
+                                it.invalidate()
+                            }
+                        }
+                }
+
+            @OptIn(ExperimentalStdlibApi::class)
+            val job = launch {
+                pager.flow.collectLatest { pagingData ->
+                    TestPagingDataPresenter<Int>(testScope.coroutineContext[CoroutineDispatcher]!!)
+                        .collectFrom(pagingData)
+                }
+            }
+
+            // First PagingSource starts immediately invalid and creates a new PagingSource, but
+            // does
+            // not finish initial page load.
+            runCurrent()
+            assertThat(pagingSources).hasSize(2)
+            assertThat(pagingSources[0].invalid).isTrue()
+            assertThat(loadedPages).hasSize(0)
+
+            advanceUntilIdle()
+
+            // After draining tasks, we should immediately get a second generation which triggers
+            // page load, skipping the initial load from first generation due to cancellation.
+            assertThat(pagingSources[1].invalid).isFalse()
+            assertThat(loadedPages).hasSize(1)
+
+            job.cancel()
+        }
+
+    @Test
+    fun cachesPreviousPagingStateOnEmptyPages() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
+                )
+
+            val remoteMediator =
+                RemoteMediatorMock().apply { initializeResult = LAUNCH_INITIAL_REFRESH }
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory =
+                        suspend {
+                            TestPagingSource(loadDelay = 1000).also { it.getRefreshKeyResult = 30 }
+                        },
+                    initialKey = 50,
+                    config = config,
+                    remoteMediator = remoteMediator,
+                )
+
+            var receiver: HintReceiver? = null
+            val job = launch {
+                pageFetcher.flow.collectLatest {
+                    receiver = it.hintReceiver
+                    it.flow.collect {}
+                }
+            }
+
+            // Allow initial load to finish, so PagingState has non-zero pages.
+            advanceUntilIdle()
+
+            // Verify remote refresh is called with initial empty case.
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    RemoteMediatorMock.LoadEvent(
+                        loadType = REFRESH,
+                        state =
+                            PagingState(
+                                pages = listOf(),
+                                anchorPosition = null,
+                                config = config,
+                                leadingPlaceholderCount = 0,
+                            ),
+                    )
+                )
+
+            // Trigger refresh, instantiating second generation.
+            pageFetcher.refresh()
+
+            // Allow remote refresh to get triggered, but do not let paging source complete initial
+            // load
+            // for second generation.
+            advanceTimeBy(500)
+
+            // Verify remote refresh is called with PagingState from first generation.
+            val pagingState =
+                PagingState(
+                    pages =
+                        listOf(
+                            Page(
+                                data = listOf(50, 51, 52),
+                                prevKey = 49,
+                                nextKey = 53,
+                                itemsBefore = 50,
+                                itemsAfter = 47,
+                            )
+                        ),
+                    anchorPosition = null,
+                    config = config,
+                    leadingPlaceholderCount = 50,
+                )
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
+                )
+
+            // Trigger a hint, which would normally populate anchorPosition. In real world scenario,
+            // this would happen as a result of UI still presenting first generation since second
+            // generation never finished loading yet.
+            receiver?.accessHint(
                 ViewportHint.Access(
                     pageOffset = 0,
-                    indexInPage = 1,
-                    presentedItemsBefore = 1,
-                    presentedItemsAfter = 1,
+                    indexInPage = 0,
+                    presentedItemsBefore = 0,
+                    presentedItemsAfter = 2,
                     originalPageOffsetFirst = 0,
                     originalPageOffsetLast = 0,
                 )
             )
-            advanceUntilIdle()
 
-            // Invalidate first generation, instantiating second generation.
-            pagingSources[0].invalidate()
-
-            // Invalidate second generation before it has a chance to complete initial load.
-            advanceTimeBy(500)
-            pagingSources[1].invalidate()
+            // Trigger refresh instantiating third generation before second has a chance to complete
+            // initial load.
+            pageFetcher.refresh()
 
             // Wait for all non-canceled loads to complete.
             advanceUntilIdle()
 
-            // Verify 3 generations were instantiated.
-            assertThat(pagingSources.size).isEqualTo(3)
-
-            // First generation should use initialKey.
-            assertThat(pagingSources[0].getRefreshKeyCalls).isEmpty()
-
-            // Second generation should receive getRefreshKey call with state from first generation.
-            assertThat(pagingSources[1].getRefreshKeyCalls).isEqualTo(
-                listOf(
-                    PagingState(
-                        pages = pagingSources[0].loadedPages,
-                        anchorPosition = 51,
-                        config = config,
-                        leadingPlaceholderCount = 50,
-                    )
+            // Verify remote refresh is called with PagingState from first generation, since second
+            // generation never loaded any pages.
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
                 )
-            )
 
-            // Verify second generation was invalidated before any pages loaded.
-            assertThat(pagingSources[1].loadedPages).isEmpty()
+            job.cancel()
+        }
 
-            // Third generation should receive getRefreshKey call with state from first generation.
-            assertThat(pagingSources[0].loadedPages.size).isEqualTo(1)
-            assertThat(pagingSources[2].getRefreshKeyCalls).isEqualTo(
-                listOf(
-                    PagingState(
-                        pages = pagingSources[0].loadedPages,
-                        anchorPosition = 51,
-                        config = config,
-                        leadingPlaceholderCount = 50,
-                    )
+    @Test
+    fun cachesPreviousPagingStateOnNullHint() =
+        testScope.runTest {
+            val config =
+                PagingConfig(
+                    pageSize = 1,
+                    prefetchDistance = 1,
+                    enablePlaceholders = true,
+                    initialLoadSize = 3,
                 )
-            )
 
+            val remoteMediator =
+                RemoteMediatorMock().apply { initializeResult = LAUNCH_INITIAL_REFRESH }
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory =
+                        suspend {
+                            TestPagingSource(loadDelay = 1000).also { it.getRefreshKeyResult = 30 }
+                        },
+                    initialKey = 50,
+                    config = config,
+                    remoteMediator = remoteMediator,
+                )
+
+            var receiver: HintReceiver? = null
+            val job = launch {
+                pageFetcher.flow.collectLatest {
+                    receiver = it.hintReceiver
+                    it.flow.collect {}
+                }
+            }
+
+            // Allow initial load to finish, so PagingState has non-zero pages.
             advanceUntilIdle()
-            // Trigger APPEND in third generation.
-            pagingData.hintReceiver.accessHint(
+
+            // Trigger a hint to populate anchorPosition, this should cause PageFetcher to cache
+            // this
+            // PagingState and use it in next remoteRefresh
+            receiver?.accessHint(
                 ViewportHint.Access(
                     pageOffset = 0,
-                    indexInPage = 2,
-                    presentedItemsBefore = 2,
-                    presentedItemsAfter = 0,
+                    indexInPage = 0,
+                    presentedItemsBefore = 0,
+                    presentedItemsAfter = 2,
                     originalPageOffsetFirst = 0,
                     originalPageOffsetLast = 0,
                 )
             )
-            advanceUntilIdle()
 
-            // Invalidate third generation, instantiating fourth generation with new PagingState.
-            pagingSources[2].invalidate()
-            advanceUntilIdle()
-
-            // Fourth generation should receive getRefreshKey call with state from third generation.
-            assertThat(pagingSources[2].loadedPages.size).isEqualTo(2)
-            assertThat(pagingSources[3].getRefreshKeyCalls).isEqualTo(
-                listOf(
-                    PagingState(
-                        pages = pagingSources[2].loadedPages,
-                        anchorPosition = 53,
-                        config = config,
-                        leadingPlaceholderCount = 51,
+            // Verify remote refresh is called with initial empty case.
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    RemoteMediatorMock.LoadEvent(
+                        loadType = REFRESH,
+                        state =
+                            PagingState(
+                                pages = listOf(),
+                                anchorPosition = null,
+                                config = config,
+                                leadingPlaceholderCount = 0,
+                            ),
                     )
                 )
-            )
+
+            // Trigger refresh, instantiating second generation.
+            pageFetcher.refresh()
+
+            // Allow remote refresh to get triggered, and let paging source load finish.
+            advanceUntilIdle()
+
+            // Verify remote refresh is called with PagingState from first generation.
+            val pagingState =
+                PagingState(
+                    pages =
+                        listOf(
+                            Page(
+                                data = listOf(50, 51, 52),
+                                prevKey = 49,
+                                nextKey = 53,
+                                itemsBefore = 50,
+                                itemsAfter = 47,
+                            )
+                        ),
+                    anchorPosition = 50,
+                    config = config,
+                    leadingPlaceholderCount = 50,
+                )
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
+                )
+
+            // Trigger refresh instantiating third generation before second has a chance to complete
+            // initial load.
+            pageFetcher.refresh()
+
+            // Wait for all non-canceled loads to complete.
+            advanceUntilIdle()
+
+            // Verify remote refresh is called with PagingState from first generation, since second
+            // generation never loaded any pages.
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    RemoteMediatorMock.LoadEvent(loadType = REFRESH, state = pagingState)
+                )
 
             job.cancel()
         }
-    }
 
     @Test
-    fun refresh_sourceEndOfPaginationReached_loadStates() = testScope.runTest {
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = { TestPagingSource(items = emptyList()) },
-            initialKey = 0,
-            config = config,
-        )
-        val fetcherState = collectFetcherState(pageFetcher)
+    fun invalidate_prioritizesGetRefreshKeyReturningNull() =
+        testScope.runTest {
+            val loadRequests = mutableListOf<LoadParams<Int>>()
+            val pageFetcher =
+                PageFetcher(
+                    config = PagingConfig(pageSize = 1),
+                    initialKey = 0,
+                    pagingSourceFactory = {
+                        object : PagingSource<Int, Int>() {
+                            override suspend fun load(
+                                params: LoadParams<Int>
+                            ): LoadResult<Int, Int> {
+                                loadRequests.add(params)
+                                return LoadResult.Error(Exception("ignored"))
+                            }
 
-        advanceUntilIdle()
+                            override fun getRefreshKey(state: PagingState<Int, Int>): Int? {
+                                // Should prioritize `null` returned here on invalidation.
+                                return null
+                            }
+                        }
+                    }
+                )
 
-        assertEquals(1, fetcherState.pagingDataList.size)
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-            ),
-            EMPTY_SOURCE_REFRESH,
-        )
+            val job = launch { pageFetcher.flow.collectLatest { it.flow.collect {} } }
 
-        pageFetcher.refresh()
-        advanceUntilIdle()
+            advanceUntilIdle()
+            assertThat(loadRequests).hasSize(1)
+            assertThat(loadRequests[0].key).isEqualTo(0)
 
-        assertEquals(2, fetcherState.pagingDataList.size)
-        assertThat(fetcherState.newEvents()).containsExactly(
-            localLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-            ),
-            EMPTY_SOURCE_REFRESH,
-        )
-        fetcherState.job.cancel()
-    }
+            pageFetcher.refresh()
+            advanceUntilIdle()
+            assertThat(loadRequests).hasSize(2)
+            assertThat(loadRequests[1].key).isEqualTo(null)
+
+            job.cancel()
+        }
 
     @Test
-    fun refresh_remoteEndOfPaginationReached_loadStates() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
-                // Wait for advanceUntilIdle()
-                delay(1)
-                RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+    fun invalidateBeforeAccessPreservesPagingState() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val config =
+                    PagingConfig(
+                        pageSize = 1,
+                        prefetchDistance = 1,
+                        enablePlaceholders = true,
+                        initialLoadSize = 3,
+                    )
+                val pagingSources = mutableListOf<TestPagingSource>()
+                val pageFetcher =
+                    PageFetcher(
+                        pagingSourceFactory =
+                            suspend {
+                                TestPagingSource(loadDelay = 1000).also { pagingSources.add(it) }
+                            },
+                        initialKey = 50,
+                        config = config,
+                    )
+
+                lateinit var pagingData: PagingData<Int>
+                val job = launch {
+                    pageFetcher.flow.collectLatest {
+                        pagingData = it
+                        it.flow.collect {}
+                    }
+                }
+
+                advanceUntilIdle()
+
+                // Trigger access to allow PagingState to get populated for next generation.
+                pagingData.hintReceiver.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 1,
+                        presentedItemsBefore = 1,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
+                advanceUntilIdle()
+
+                // Invalidate first generation, instantiating second generation.
+                pagingSources[0].invalidate()
+
+                // Invalidate second generation before it has a chance to complete initial load.
+                advanceTimeBy(500)
+                pagingSources[1].invalidate()
+
+                // Wait for all non-canceled loads to complete.
+                advanceUntilIdle()
+
+                // Verify 3 generations were instantiated.
+                assertThat(pagingSources.size).isEqualTo(3)
+
+                // First generation should use initialKey.
+                assertThat(pagingSources[0].getRefreshKeyCalls).isEmpty()
+
+                // Second generation should receive getRefreshKey call with state from first
+                // generation.
+                assertThat(pagingSources[1].getRefreshKeyCalls)
+                    .isEqualTo(
+                        listOf(
+                            PagingState(
+                                pages = pagingSources[0].loadedPages,
+                                anchorPosition = 51,
+                                config = config,
+                                leadingPlaceholderCount = 50,
+                            )
+                        )
+                    )
+
+                // Verify second generation was invalidated before any pages loaded.
+                assertThat(pagingSources[1].loadedPages).isEmpty()
+
+                // Third generation should receive getRefreshKey call with state from first
+                // generation.
+                assertThat(pagingSources[0].loadedPages.size).isEqualTo(1)
+                assertThat(pagingSources[2].getRefreshKeyCalls)
+                    .isEqualTo(
+                        listOf(
+                            PagingState(
+                                pages = pagingSources[0].loadedPages,
+                                anchorPosition = 51,
+                                config = config,
+                                leadingPlaceholderCount = 50,
+                            )
+                        )
+                    )
+
+                advanceUntilIdle()
+                // Trigger APPEND in third generation.
+                pagingData.hintReceiver.accessHint(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 2,
+                        presentedItemsBefore = 2,
+                        presentedItemsAfter = 0,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
+                advanceUntilIdle()
+
+                // Invalidate third generation, instantiating fourth generation with new
+                // PagingState.
+                pagingSources[2].invalidate()
+                advanceUntilIdle()
+
+                // Fourth generation should receive getRefreshKey call with state from third
+                // generation.
+                assertThat(pagingSources[2].loadedPages.size).isEqualTo(2)
+                assertThat(pagingSources[3].getRefreshKeyCalls)
+                    .isEqualTo(
+                        listOf(
+                            PagingState(
+                                pages = pagingSources[2].loadedPages,
+                                anchorPosition = 53,
+                                config = config,
+                                leadingPlaceholderCount = 51,
+                            )
+                        )
+                    )
+
+                job.cancel()
             }
         }
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = { TestPagingSource(items = emptyList()) },
-            initialKey = 0,
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        val fetcherState = collectFetcherState(pageFetcher)
 
-        advanceUntilIdle()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            // all remote States should be updated within single LoadStateUpdate
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-            ),
-            EMPTY_REMOTE_REFRESH,
-        )
-
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertThat(fetcherState.newEvents()).containsExactly(
-            // Remote state carried over from previous generation.
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-            ),
-            EMPTY_REMOTE_REFRESH,
-        )
-
-        fetcherState.job.cancel()
-    }
-
-    /**
-     * Check that rapid remote events are not dropped and don't cause redundant events.
-     */
     @Test
-    fun injectRemoteEvents_fastRemoteEvents() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
-                RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
-            }
+    fun refresh_sourceEndOfPaginationReached_loadStates() =
+        testScope.runTest {
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource(items = emptyList()) },
+                    initialKey = 0,
+                    config = config,
+                )
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertEquals(1, fetcherState.pagingDataList.size)
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                    ),
+                    EMPTY_SOURCE_REFRESH,
+                )
+
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertEquals(2, fetcherState.pagingDataList.size)
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    localLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                    ),
+                    EMPTY_SOURCE_REFRESH,
+                )
+            fetcherState.job.cancel()
         }
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = { TestPagingSource(items = emptyList()) },
-            initialKey = 0,
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        val fetcherState = collectFetcherState(pageFetcher)
 
-        advanceUntilIdle()
+    @Test
+    fun refresh_remoteEndOfPaginationReached_loadStates() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ ->
+                        // Wait for advanceUntilIdle()
+                        delay(1)
+                        RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource(items = emptyList()) },
+                    initialKey = 0,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            val fetcherState = collectFetcherState(pageFetcher)
 
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            remoteLoadStateUpdate<Int>(
-                refreshLocal = Loading,
-                refreshRemote = NotLoading.Incomplete,
-                prependRemote = NotLoading.Complete,
-                appendRemote = NotLoading.Complete,
-            ),
-            remoteRefresh<Int>(
-                source = loadStates(
-                    append = NotLoading.Complete,
-                    prepend = NotLoading.Complete,
-                ),
-                mediator = loadStates(
-                    refresh = NotLoading.Incomplete,
-                    append = NotLoading.Complete,
-                    prepend = NotLoading.Complete,
-                ),
-            ),
-        )
-        fetcherState.job.cancel()
-    }
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                    ),
+                    // all remote States should be updated within single LoadStateUpdate
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                    ),
+                    EMPTY_REMOTE_REFRESH,
+                )
+
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    // Remote state carried over from previous generation.
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                    ),
+                    EMPTY_REMOTE_REFRESH,
+                )
+
+            fetcherState.job.cancel()
+        }
+
+    /** Check that rapid remote events are not dropped and don't cause redundant events. */
+    @Test
+    fun injectRemoteEvents_fastRemoteEvents() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ ->
+                        RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource(items = emptyList()) },
+                    initialKey = 0,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            val fetcherState = collectFetcherState(pageFetcher)
+
+            advanceUntilIdle()
+
+            assertThat(fetcherState.newEvents())
+                .containsExactly(
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                    ),
+                    remoteLoadStateUpdate<Int>(
+                        refreshLocal = Loading,
+                        refreshRemote = NotLoading.Incomplete,
+                        prependRemote = NotLoading.Complete,
+                        appendRemote = NotLoading.Complete,
+                    ),
+                    remoteRefresh<Int>(
+                        source =
+                            loadStates(
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                refresh = NotLoading.Incomplete,
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            fetcherState.job.cancel()
+        }
 
     @Suppress("DEPRECATION")
     // b/220884819
@@ -1267,265 +1344,284 @@
         val neverEmitCh = Channel<Int>()
         var generation = 0
 
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = {
-                generation++
-                object : PagingSource<Int, Int>() {
-                    override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-                        // Wait for advanceUntilIdle()
-                        delay(1)
+        val pageFetcher =
+            PageFetcher(
+                pagingSourceFactory = {
+                    generation++
+                    object : PagingSource<Int, Int>() {
+                        override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                            // Wait for advanceUntilIdle()
+                            delay(1)
 
-                        return when (generation) {
-                            1 -> Page(
-                                data = listOf(),
-                                prevKey = null,
-                                nextKey = null
-                            )
-                            else -> Page(
-                                data = listOf(3, 4, 5),
-                                prevKey = 2,
-                                nextKey = 6
-                            )
+                            return when (generation) {
+                                1 -> Page(data = listOf(), prevKey = null, nextKey = null)
+                                else -> Page(data = listOf(3, 4, 5), prevKey = 2, nextKey = 6)
+                            }
+                        }
+
+                        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
+                    }
+                },
+                initialKey = 0,
+                config = config,
+                remoteMediator =
+                    object : RemoteMediator<Int, Int>() {
+                        override suspend fun initialize(): InitializeAction = SKIP_INITIAL_REFRESH
+
+                        override suspend fun load(
+                            loadType: LoadType,
+                            state: PagingState<Int, Int>
+                        ): MediatorResult {
+                            // Wait for advanceUntilIdle()
+                            delay(1)
+
+                            if (loadType == REFRESH) {
+                                return MediatorResult.Success(endOfPaginationReached = false)
+                            }
+
+                            neverEmitCh.receiveCatching()
+                            return MediatorResult.Error(Exception("Unexpected"))
                         }
                     }
-
-                    override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-                }
-            },
-            initialKey = 0,
-            config = config,
-            remoteMediator = object : RemoteMediator<Int, Int>() {
-                override suspend fun initialize(): InitializeAction = SKIP_INITIAL_REFRESH
-
-                override suspend fun load(
-                    loadType: LoadType,
-                    state: PagingState<Int, Int>
-                ): MediatorResult {
-                    // Wait for advanceUntilIdle()
-                    delay(1)
-
-                    if (loadType == REFRESH) {
-                        return MediatorResult.Success(endOfPaginationReached = false)
-                    }
-
-                    neverEmitCh.receiveCatching()
-                    return MediatorResult.Error(Exception("Unexpected"))
-                }
-            }
-        )
+            )
         val fetcherState = collectFetcherState(pageFetcher)
 
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(
-                    refresh = Loading,
+        assertThat(fetcherState.newEvents())
+            .containsExactly(
+                remoteLoadStateUpdate<Int>(
+                    source =
+                        loadStates(
+                            refresh = Loading,
+                        ),
                 ),
-            ),
-        )
+            )
 
         // Let initial source refresh complete and kick off remote prepend / append.
         advanceUntilIdle()
 
         // First generation loads empty list and triggers remote loads.
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf())
+        assertThat(fetcherState.newEvents())
+            .containsExactly(
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf())),
+                    source =
+                        loadStates(
+                            prepend = NotLoading.Complete,
+                            append = NotLoading.Complete,
+                        ),
                 ),
-                source = loadStates(
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
+                remoteLoadStateUpdate<Int>(
+                    source =
+                        loadStates(
+                            prepend = NotLoading.Complete,
+                            append = NotLoading.Complete,
+                        ),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                        ),
                 ),
-            ),
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
+                remoteLoadStateUpdate<Int>(
+                    source =
+                        loadStates(
+                            prepend = NotLoading.Complete,
+                            append = NotLoading.Complete,
+                        ),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                            append = Loading,
+                        ),
                 ),
-                mediator = loadStates(
-                    prepend = Loading,
-                ),
-            ),
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
-                ),
-                mediator = loadStates(
-                    prepend = Loading,
-                    append = Loading,
-                ),
-            ),
-        )
+            )
 
         // Trigger remote + source refresh in a new generation.
         pageFetcher.refresh()
 
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(refresh = Loading),
-                mediator = loadStates(
-                    prepend = Loading,
-                    append = Loading,
+        assertThat(fetcherState.newEvents())
+            .containsExactly(
+                remoteLoadStateUpdate<Int>(
+                    source = loadStates(refresh = Loading),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                            append = Loading,
+                        ),
                 ),
-            ),
-        )
+            )
 
         // Let remote and source refresh finish.
         advanceUntilIdle()
 
         // Second generation loads some data and has more to load from source.
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(refresh = Loading),
-                mediator = loadStates(
-                    refresh = Loading,
-                    prepend = Loading,
-                    append = Loading,
+        assertThat(fetcherState.newEvents())
+            .containsExactly(
+                remoteLoadStateUpdate<Int>(
+                    source = loadStates(refresh = Loading),
+                    mediator =
+                        loadStates(
+                            refresh = Loading,
+                            prepend = Loading,
+                            append = Loading,
+                        ),
                 ),
-            ),
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(refresh = Loading),
-                mediator = loadStates(
-                    prepend = Loading,
-                    append = Loading,
-                )
-            ),
-            remoteRefresh(
-                pages = listOf(TransformablePage(data = listOf(3, 4, 5))),
-                mediator = loadStates(
-                    prepend = Loading,
-                    append = Loading,
+                remoteLoadStateUpdate<Int>(
+                    source = loadStates(refresh = Loading),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                            append = Loading,
+                        )
                 ),
-            ),
-        )
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf(3, 4, 5))),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                            append = Loading,
+                        ),
+                ),
+            )
 
         // Trigger remote + source refresh in a third generation.
         pageFetcher.refresh()
 
         // Start of third generation should have the exact same load states as before, so we
         // should only get new events for kicking off new loads.
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(refresh = Loading),
-                mediator = loadStates(
-                    prepend = Loading,
-                    append = Loading,
+        assertThat(fetcherState.newEvents())
+            .containsExactly(
+                remoteLoadStateUpdate<Int>(
+                    source = loadStates(refresh = Loading),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                            append = Loading,
+                        ),
                 ),
-            ),
-        )
+            )
 
         // Let remote and source refresh finish.
         advanceUntilIdle()
 
-        assertThat(fetcherState.newEvents()).containsExactly(
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(refresh = Loading),
-                mediator = loadStates(
-                    refresh = Loading,
-                    prepend = Loading,
-                    append = Loading,
+        assertThat(fetcherState.newEvents())
+            .containsExactly(
+                remoteLoadStateUpdate<Int>(
+                    source = loadStates(refresh = Loading),
+                    mediator =
+                        loadStates(
+                            refresh = Loading,
+                            prepend = Loading,
+                            append = Loading,
+                        ),
                 ),
-            ),
-            remoteLoadStateUpdate<Int>(
-                source = loadStates(refresh = Loading),
-                mediator = loadStates(
-                    prepend = Loading,
-                    append = Loading,
-                )
-            ),
-            remoteRefresh(
-                pages = listOf(TransformablePage(data = listOf(3, 4, 5))),
-                mediator = loadStates(
-                    prepend = Loading,
-                    append = Loading,
+                remoteLoadStateUpdate<Int>(
+                    source = loadStates(refresh = Loading),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                            append = Loading,
+                        )
                 ),
-            ),
-        )
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf(3, 4, 5))),
+                    mediator =
+                        loadStates(
+                            prepend = Loading,
+                            append = Loading,
+                        ),
+                ),
+            )
 
         neverEmitCh.close()
         fetcherState.job.cancel()
     }
 
     @Test
-    fun injectRemoteEvents_doesNotKeepOldGenerationActive() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
-                RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
-            }
-        }
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = { TestPagingSource(items = emptyList()) },
-            initialKey = 0,
-            config = config,
-            remoteMediator = remoteMediator
-        )
-        val fetcherState = collectFetcherState(pageFetcher)
-        advanceUntilIdle()
-
-        // Clear out all events.
-        val firstGenerationEventCount = fetcherState.pageEventLists[0].size
-
-        // Let new generation and some new remote events emit.
-        pageFetcher.refresh()
-        advanceUntilIdle()
-
-        assertThat(firstGenerationEventCount).isEqualTo(fetcherState.pageEventLists[0].size)
-
-        fetcherState.job.cancel()
-    }
-
-    /**
-     * See b/183345509
-     */
-    @Test
-    fun remoteRefreshTriggeredDespiteImmediateInvalidation() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock().apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
-                RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
-            }
-        }
-        var generation = 0
-        val pageFetcher = PageFetcher(
-            pagingSourceFactory = {
-                TestPagingSource(items = emptyList()).also {
-                    if (generation++ == 0) it.invalidate()
+    fun injectRemoteEvents_doesNotKeepOldGenerationActive() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ ->
+                        RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+                    }
                 }
-            },
-            initialKey = 0,
-            config = config,
-            remoteMediator = remoteMediator
-        )
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = { TestPagingSource(items = emptyList()) },
+                    initialKey = 0,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+            val fetcherState = collectFetcherState(pageFetcher)
+            advanceUntilIdle()
 
-        val fetcherState = collectFetcherState(pageFetcher)
-        advanceUntilIdle()
+            // Clear out all events.
+            val firstGenerationEventCount = fetcherState.pageEventLists[0].size
 
-        assertThat(remoteMediator.newLoadEvents).isNotEmpty()
-        fetcherState.job.cancel()
-    }
+            // Let new generation and some new remote events emit.
+            pageFetcher.refresh()
+            advanceUntilIdle()
+
+            assertThat(firstGenerationEventCount).isEqualTo(fetcherState.pageEventLists[0].size)
+
+            fetcherState.job.cancel()
+        }
+
+    /** See b/183345509 */
+    @Test
+    fun remoteRefreshTriggeredDespiteImmediateInvalidation() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock().apply {
+                    initializeResult = LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ ->
+                        RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+            var generation = 0
+            val pageFetcher =
+                PageFetcher(
+                    pagingSourceFactory = {
+                        TestPagingSource(items = emptyList()).also {
+                            if (generation++ == 0) it.invalidate()
+                        }
+                    },
+                    initialKey = 0,
+                    config = config,
+                    remoteMediator = remoteMediator
+                )
+
+            val fetcherState = collectFetcherState(pageFetcher)
+            advanceUntilIdle()
+
+            assertThat(remoteMediator.newLoadEvents).isNotEmpty()
+            fetcherState.job.cancel()
+        }
 
     companion object {
         internal val EMPTY_SOURCE_REFRESH =
             localRefresh<Int>(
-                source = loadStates(
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
-                )
+                source =
+                    loadStates(
+                        prepend = NotLoading.Complete,
+                        append = NotLoading.Complete,
+                    )
             )
 
         internal val EMPTY_REMOTE_REFRESH =
             remoteRefresh<Int>(
-                source = loadStates(
-                    append = NotLoading.Complete,
-                    prepend = NotLoading.Complete,
-                ),
-                mediator = loadStates(
-                    refresh = NotLoading.Incomplete,
-                    append = NotLoading.Complete,
-                    prepend = NotLoading.Complete,
-                ),
+                source =
+                    loadStates(
+                        append = NotLoading.Complete,
+                        prepend = NotLoading.Complete,
+                    ),
+                mediator =
+                    loadStates(
+                        refresh = NotLoading.Incomplete,
+                        append = NotLoading.Complete,
+                        prepend = NotLoading.Complete,
+                    ),
             )
     }
 }
@@ -1545,9 +1641,7 @@
         }
 
         val pageEvents = pageEventLists.lastOrNull()?.toMutableList() ?: listOf()
-        return pageEvents.drop(lastIndex + 1).also {
-            lastIndex = pageEvents.lastIndex
-        }
+        return pageEvents.drop(lastIndex + 1).also { lastIndex = pageEvents.lastIndex }
     }
 }
 
@@ -1559,9 +1653,7 @@
         fetcher.flow.collectIndexed { index, pagingData ->
             pagingDataList.add(index, pagingData)
             pageEventLists.add(index, ArrayList())
-            launch {
-                pagingData.flow.toList(pageEventLists[index])
-            }
+            launch { pagingData.flow.toList(pageEventLists[index]) }
         }
     }
 
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigBuilderTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigBuilderTest.kt
index 7dab52b..0a35dc9 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigBuilderTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigBuilderTest.kt
@@ -22,35 +22,23 @@
 class PagedListConfigBuilderTest {
     @Test
     fun defaults() {
-        @Suppress("DEPRECATION")
-        val config = PagedList.Config.Builder()
-            .setPageSize(10)
-            .build()
+        @Suppress("DEPRECATION") val config = PagedList.Config.Builder().setPageSize(10).build()
         assertEquals(10, config.pageSize)
         assertEquals(30, config.initialLoadSizeHint)
         assertEquals(true, config.enablePlaceholders)
         assertEquals(10, config.prefetchDistance)
-        @Suppress("DEPRECATION")
-        assertEquals(PagedList.Config.MAX_SIZE_UNBOUNDED, config.maxSize)
+        @Suppress("DEPRECATION") assertEquals(PagedList.Config.MAX_SIZE_UNBOUNDED, config.maxSize)
     }
 
     @Test(expected = IllegalArgumentException::class)
     fun maxSizeTooSmall() {
         @Suppress("DEPRECATION")
-        PagedList.Config.Builder()
-            .setPageSize(20)
-            .setPrefetchDistance(15)
-            .setMaxSize(49)
-            .build()
+        PagedList.Config.Builder().setPageSize(20).setPrefetchDistance(15).setMaxSize(49).build()
     }
 
     @Test
     fun maxSizeAccepted() {
         @Suppress("DEPRECATION")
-        PagedList.Config.Builder()
-            .setPageSize(20)
-            .setPrefetchDistance(15)
-            .setMaxSize(50)
-            .build()
+        PagedList.Config.Builder().setPageSize(20).setPrefetchDistance(15).setMaxSize(50).build()
     }
 }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigTest.kt
index 976a9a0..8aeee64 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListConfigTest.kt
@@ -27,7 +27,6 @@
         assertEquals(30, config.initialLoadSizeHint)
         assertEquals(true, config.enablePlaceholders)
         assertEquals(10, config.prefetchDistance)
-        @Suppress("DEPRECATION")
-        assertEquals(PagedList.Config.MAX_SIZE_UNBOUNDED, config.maxSize)
+        @Suppress("DEPRECATION") assertEquals(PagedList.Config.MAX_SIZE_UNBOUNDED, config.maxSize)
     }
 }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListTest.kt
index 3a92d47..5649b9a 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/PagedListTest.kt
@@ -39,19 +39,17 @@
         private val ITEMS = List(100) { "$it" }
         private val config = Config(10)
 
-        private val pagingSource = object : PagingSource<Int, String>() {
-            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> =
-                when (params) {
-                    is LoadParams.Refresh -> LoadResult.Page(
-                        data = listOf("a"),
-                        prevKey = null,
-                        nextKey = null
-                    )
-                    else -> throw NotImplementedError("Test should fail if we get here")
-                }
+        private val pagingSource =
+            object : PagingSource<Int, String>() {
+                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> =
+                    when (params) {
+                        is LoadParams.Refresh ->
+                            LoadResult.Page(data = listOf("a"), prevKey = null, nextKey = null)
+                        else -> throw NotImplementedError("Test should fail if we get here")
+                    }
 
-            override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
-        }
+                override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
+            }
     }
 
     private val testCoroutineScope = CoroutineScope(EmptyCoroutineContext)
@@ -67,23 +65,25 @@
             }
         }
         @Suppress("DEPRECATION")
-        val pagedList = PagedList.Builder(TestPositionalDataSource(ITEMS), 100)
-            .setNotifyExecutor(TestExecutor())
-            .setFetchExecutor(slowFetchExecutor)
-            .build()
+        val pagedList =
+            PagedList.Builder(TestPositionalDataSource(ITEMS), 100)
+                .setNotifyExecutor(TestExecutor())
+                .setFetchExecutor(slowFetchExecutor)
+                .build()
         // if build succeeds without flushing an executor, success!
         assertEquals(ITEMS, pagedList)
     }
 
     @Test
     fun createNoInitialPageThrow() = runTest {
-        val pagingSource = object : PagingSource<Int, String>() {
-            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> {
-                throw IllegalStateException()
-            }
+        val pagingSource =
+            object : PagingSource<Int, String>() {
+                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> {
+                    throw IllegalStateException()
+                }
 
-            override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
-        }
+                override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
+            }
         assertFailsWith<IllegalStateException> {
             @Suppress("DEPRECATION")
             PagedList.create(
@@ -102,13 +102,14 @@
     @Test
     fun createNoInitialPageError() = runTest {
         val exception = IllegalStateException()
-        val pagingSource = object : PagingSource<Int, String>() {
-            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> {
-                return LoadResult.Error(exception)
-            }
+        val pagingSource =
+            object : PagingSource<Int, String>() {
+                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> {
+                    return LoadResult.Error(exception)
+                }
 
-            override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
-        }
+                override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
+            }
 
         // create doesn't differentiate between throw vs error runnable, which is why
         // PagedList.Builder without the initial page is deprecated
@@ -129,53 +130,58 @@
 
     @Test
     fun createNoInitialPageInvalidResult() = runTest {
-        val pagingSource = object : PagingSource<Int, String>() {
-            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> {
-                return LoadResult.Invalid()
+        val pagingSource =
+            object : PagingSource<Int, String>() {
+                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, String> {
+                    return LoadResult.Invalid()
+                }
+
+                override fun getRefreshKey(state: PagingState<Int, String>): Int? {
+                    fail("should not reach here")
+                }
             }
 
-            override fun getRefreshKey(state: PagingState<Int, String>): Int? {
-                fail("should not reach here")
+        val expectedException =
+            assertFailsWith<IllegalStateException> {
+                @Suppress("DEPRECATION")
+                PagedList.create(
+                    pagingSource,
+                    initialPage = null,
+                    testCoroutineScope,
+                    Dispatchers.Default,
+                    Dispatchers.IO,
+                    boundaryCallback = null,
+                    Config(10),
+                    key = 0
+                )
             }
-        }
-
-        val expectedException = assertFailsWith<IllegalStateException> {
-            @Suppress("DEPRECATION")
-            PagedList.create(
-                pagingSource,
-                initialPage = null,
-                testCoroutineScope,
-                Dispatchers.Default,
-                Dispatchers.IO,
-                boundaryCallback = null,
-                Config(10),
-                key = 0
+        assertThat(expectedException.message)
+            .isEqualTo(
+                "Failed to create PagedList. The provided PagingSource returned " +
+                    "LoadResult.Invalid, but a LoadResult.Page was expected. To use a " +
+                    "PagingSource which supports invalidation, use a PagedList builder that " +
+                    "accepts a factory method for PagingSource or DataSource.Factory, such as " +
+                    "LivePagedList."
             )
-        }
-        assertThat(expectedException.message).isEqualTo(
-            "Failed to create PagedList. The provided PagingSource returned " +
-                "LoadResult.Invalid, but a LoadResult.Page was expected. To use a " +
-                "PagingSource which supports invalidation, use a PagedList builder that " +
-                "accepts a factory method for PagingSource or DataSource.Factory, such as " +
-                "LivePagedList."
-        )
     }
 
     @Test
     fun defaults() = runTest {
-        val initialPage = pagingSource.load(
-            PagingSource.LoadParams.Refresh(
-                key = null,
-                loadSize = 10,
-                placeholdersEnabled = false,
-            )
-        ) as PagingSource.LoadResult.Page
+        val initialPage =
+            pagingSource.load(
+                PagingSource.LoadParams.Refresh(
+                    key = null,
+                    loadSize = 10,
+                    placeholdersEnabled = false,
+                )
+            ) as PagingSource.LoadResult.Page
 
         @Suppress("DEPRECATION")
-        val pagedList = PagedList.Builder(pagingSource, initialPage, config)
-            .setNotifyDispatcher(Dispatchers.Default)
-            .setFetchDispatcher(Dispatchers.IO)
-            .build()
+        val pagedList =
+            PagedList.Builder(pagingSource, initialPage, config)
+                .setNotifyDispatcher(Dispatchers.Default)
+                .setFetchDispatcher(Dispatchers.IO)
+                .build()
 
         assertEquals(pagingSource, pagedList.pagingSource)
         assertEquals(config, pagedList.config)
@@ -187,11 +193,12 @@
 
         val exception = Exception()
         @Suppress("DEPRECATION")
-        val loadStateManager = object : PagedList.LoadStateManager() {
-            override fun onStateChanged(type: LoadType, state: LoadState) {
-                onStateChangeCalls++
+        val loadStateManager =
+            object : PagedList.LoadStateManager() {
+                override fun onStateChanged(type: LoadType, state: LoadState) {
+                    onStateChangeCalls++
+                }
             }
-        }
 
         loadStateManager.setState(REFRESH, LoadState.Error(exception))
         loadStateManager.setState(REFRESH, LoadState.Error(exception))
@@ -204,23 +211,25 @@
         val notifyDispatcher = TestDispatcher()
 
         @Suppress("DEPRECATION")
-        val pagedList = object : PagedList<String>(
-            pagingSource,
-            testCoroutineScope,
-            notifyDispatcher,
-            PagedStorage(),
-            config
-        ) {
-            override val lastKey: Any? = null
+        val pagedList =
+            object :
+                PagedList<String>(
+                    pagingSource,
+                    testCoroutineScope,
+                    notifyDispatcher,
+                    PagedStorage(),
+                    config
+                ) {
+                override val lastKey: Any? = null
 
-            override val isDetached: Boolean = true
+                override val isDetached: Boolean = true
 
-            override fun dispatchCurrentLoadState(callback: (LoadType, LoadState) -> Unit) {}
+                override fun dispatchCurrentLoadState(callback: (LoadType, LoadState) -> Unit) {}
 
-            override fun loadAroundInternal(index: Int) {}
+                override fun loadAroundInternal(index: Int) {}
 
-            override fun detach() {}
-        }
+                override fun detach() {}
+            }
 
         assertTrue { notifyDispatcher.queue.isEmpty() }
 
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/SingleRunnerTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/SingleRunnerTest.kt
index 5c7dc6f..7218958 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/SingleRunnerTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/SingleRunnerTest.kt
@@ -45,105 +45,102 @@
     private val testScope = TestScope()
 
     @Test
-    fun cancelsPreviousRun() = testScope.runTest {
-        val runner = SingleRunner()
-        val job = launch(Dispatchers.Unconfined) {
+    fun cancelsPreviousRun() =
+        testScope.runTest {
+            val runner = SingleRunner()
+            val job =
+                launch(Dispatchers.Unconfined) { runner.runInIsolation { delay(Long.MAX_VALUE) } }
+
             runner.runInIsolation {
-                delay(Long.MAX_VALUE)
+                // Immediately return.
             }
-        }
 
-        runner.runInIsolation {
-            // Immediately return.
+            assertFalse { job.isCancelled }
+            assertTrue { job.isCompleted }
         }
 
-        assertFalse { job.isCancelled }
-        assertTrue { job.isCompleted }
-    }
-
     @Test
-    fun previousRunCanCancelItself() = testScope.runTest {
-        val runner = SingleRunner()
-        val job = launch(Dispatchers.Unconfined) {
-            runner.runInIsolation {
-                throw CancellationException()
-            }
-        }
-        assertTrue { job.isCancelled }
-        assertTrue { job.isCompleted }
-    }
-
-    @Test
-    fun preventsCompletionUntilBlockCompletes() = testScope.runTest {
-        val runner = SingleRunner()
-        val job = testScope.launch {
-            runner.runInIsolation {
-                delay(1000)
-            }
-        }
-
-        advanceTimeBy(500)
-        runCurrent()
-        assertFalse { job.isCompleted }
-
-        advanceTimeBy(500)
-        runCurrent()
-        assertTrue { job.isCompleted }
-    }
-
-    @Test
-    fun orderedExecution() = testScope.runTest {
-        val jobStartList = mutableListOf<Int>()
-
-        val runner = SingleRunner()
-        for (index in 0..9) {
-            launch {
-                runner.runInIsolation {
-                    jobStartList.add(index)
-                    delay(Long.MAX_VALUE)
+    fun previousRunCanCancelItself() =
+        testScope.runTest {
+            val runner = SingleRunner()
+            val job =
+                launch(Dispatchers.Unconfined) {
+                    runner.runInIsolation { throw CancellationException() }
                 }
-            }
+            assertTrue { job.isCancelled }
+            assertTrue { job.isCompleted }
         }
-        runCurrent()
-
-        // Cancel previous job.
-        runner.runInIsolation {
-            // Immediately return.
-        }
-
-        assertEquals(List(10) { it }, jobStartList)
-    }
 
     @Test
-    fun racingCoroutines() = testScope.runTest {
-        val runner = SingleRunner()
-        val output = mutableListOf<Char>()
-        withContext(coroutineContext) {
-            launch {
-                ('0' until '4').forEach {
+    fun preventsCompletionUntilBlockCompletes() =
+        testScope.runTest {
+            val runner = SingleRunner()
+            val job = testScope.launch { runner.runInIsolation { delay(1000) } }
+
+            advanceTimeBy(500)
+            runCurrent()
+            assertFalse { job.isCompleted }
+
+            advanceTimeBy(500)
+            runCurrent()
+            assertTrue { job.isCompleted }
+        }
+
+    @Test
+    fun orderedExecution() =
+        testScope.runTest {
+            val jobStartList = mutableListOf<Int>()
+
+            val runner = SingleRunner()
+            for (index in 0..9) {
+                launch {
                     runner.runInIsolation {
-                        output.add(it)
-                        delay(100)
+                        jobStartList.add(index)
+                        delay(Long.MAX_VALUE)
                     }
                 }
             }
+            runCurrent()
 
-            launch {
-                ('a' until 'e').forEach {
-                    runner.runInIsolation {
-                        output.add(it)
-                        delay(40)
+            // Cancel previous job.
+            runner.runInIsolation {
+                // Immediately return.
+            }
+
+            assertEquals(List(10) { it }, jobStartList)
+        }
+
+    @Test
+    fun racingCoroutines() =
+        testScope.runTest {
+            val runner = SingleRunner()
+            val output = mutableListOf<Char>()
+            withContext(coroutineContext) {
+                launch {
+                    ('0' until '4').forEach {
+                        runner.runInIsolation {
+                            output.add(it)
+                            delay(100)
+                        }
                     }
                 }
+
+                launch {
+                    ('a' until 'e').forEach {
+                        runner.runInIsolation {
+                            output.add(it)
+                            delay(40)
+                        }
+                    }
+                }
+                // don't let delays finish to ensure they are really cancelled
+                advanceTimeBy(1)
             }
-            // don't let delays finish to ensure they are really cancelled
-            advanceTimeBy(1)
+            // Despite launching separately, with different delays, we should see these always
+            // interleave in the same order, since the delays aren't allowed to run in parallel and
+            // each launch will cancel the other one's delay.
+            assertThat(output.joinToString("")).isEqualTo("0a1b2c3d")
         }
-        // Despite launching separately, with different delays, we should see these always
-        // interleave in the same order, since the delays aren't allowed to run in parallel and
-        // each launch will cancel the other one's delay.
-        assertThat(output.joinToString("")).isEqualTo("0a1b2c3d")
-    }
 
     @OptIn(DelicateCoroutinesApi::class)
     @Test
@@ -159,70 +156,48 @@
                 // a code path which ignores coroutine cancellation
                 firstStarted.countDown()
                 repeat(10) {
-                    @Suppress("BlockingMethodInNonBlockingContext")
-                    Thread.sleep(100)
+                    @Suppress("BlockingMethodInNonBlockingContext") Thread.sleep(100)
                     output.add(it)
                 }
             }
         }
 
-        val job2 = GlobalScope.launch {
-            @Suppress("BlockingMethodInNonBlockingContext")
-            firstStarted.await()
-            singleRunner.runInIsolation {
-                repeat(10) {
-                    output.add(it + 10)
-                }
+        val job2 =
+            GlobalScope.launch {
+                @Suppress("BlockingMethodInNonBlockingContext") firstStarted.await()
+                singleRunner.runInIsolation { repeat(10) { output.add(it + 10) } }
             }
-        }
-        runBlocking {
-            withTimeout(10.seconds) {
-                job2.join()
-            }
-        }
-        assertThat(output).isEqualTo(
-            // if cancellation is ignored, make sure we wait for it to finish.
-            (0 until 20).toList()
-        )
+        runBlocking { withTimeout(10.seconds) { job2.join() } }
+        assertThat(output)
+            .isEqualTo(
+                // if cancellation is ignored, make sure we wait for it to finish.
+                (0 until 20).toList()
+            )
     }
 
     @Test
-    fun priority() = testScope.runTest {
-        val runner = SingleRunner()
-        val output = mutableListOf<String>()
-        launch {
-            runner.runInIsolation(
-                priority = 2
-            ) {
-                output.add("a")
-                delay(10)
-                output.add("b")
-                delay(100)
-                output.add("unexpected")
+    fun priority() =
+        testScope.runTest {
+            val runner = SingleRunner()
+            val output = mutableListOf<String>()
+            launch {
+                runner.runInIsolation(priority = 2) {
+                    output.add("a")
+                    delay(10)
+                    output.add("b")
+                    delay(100)
+                    output.add("unexpected")
+                }
             }
-        }
-        runCurrent()
+            runCurrent()
 
-        // should not run
-        runner.runInIsolation(
-            priority = 1
-        ) {
-            output.add("unexpected - 2")
+            // should not run
+            runner.runInIsolation(priority = 1) { output.add("unexpected - 2") }
+            advanceTimeBy(20)
+            runner.runInIsolation(priority = 3) { output.add("c") }
+            advanceUntilIdle()
+            // now lower priority can run since higher priority is complete
+            runner.runInIsolation(priority = 1) { output.add("d") }
+            assertThat(output).containsExactly("a", "b", "c", "d")
         }
-        advanceTimeBy(20)
-        runner.runInIsolation(
-            priority = 3
-        ) {
-            output.add("c")
-        }
-        advanceUntilIdle()
-        // now lower priority can run since higher priority is complete
-        runner.runInIsolation(
-            priority = 1
-        ) {
-            output.add("d")
-        }
-        assertThat(output)
-            .containsExactly("a", "b", "c", "d")
-    }
 }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedItemKeyedDataSourceTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedItemKeyedDataSourceTest.kt
index 64d059c4..d158788 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedItemKeyedDataSourceTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedItemKeyedDataSourceTest.kt
@@ -26,15 +26,15 @@
         val dataSource = WrapperItemKeyedDataSource(TestItemKeyedDataSource(listOf(0))) { it }
 
         var kotlinInvalidated = false
-        dataSource.addInvalidatedCallback {
-            kotlinInvalidated = true
-        }
+        dataSource.addInvalidatedCallback { kotlinInvalidated = true }
         var javaInvalidated = false
-        dataSource.addInvalidatedCallback(object : DataSource.InvalidatedCallback {
-            override fun onInvalidated() {
-                javaInvalidated = true
+        dataSource.addInvalidatedCallback(
+            object : DataSource.InvalidatedCallback {
+                override fun onInvalidated() {
+                    javaInvalidated = true
+                }
             }
-        })
+        )
 
         dataSource.invalidate()
         assertTrue { dataSource.isInvalid }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPageKeyedDataSourceTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPageKeyedDataSourceTest.kt
index 7a4d7d1..87a2460 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPageKeyedDataSourceTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPageKeyedDataSourceTest.kt
@@ -26,15 +26,15 @@
         val dataSource = WrapperPageKeyedDataSource(TestPageKeyedDataSource(listOf(0))) { it }
 
         var kotlinInvalidated = false
-        dataSource.addInvalidatedCallback {
-            kotlinInvalidated = true
-        }
+        dataSource.addInvalidatedCallback { kotlinInvalidated = true }
         var javaInvalidated = false
-        dataSource.addInvalidatedCallback(object : DataSource.InvalidatedCallback {
-            override fun onInvalidated() {
-                javaInvalidated = true
+        dataSource.addInvalidatedCallback(
+            object : DataSource.InvalidatedCallback {
+                override fun onInvalidated() {
+                    javaInvalidated = true
+                }
             }
-        })
+        )
 
         dataSource.invalidate()
         assertTrue { dataSource.isInvalid }
diff --git a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPositionalDataSourceTest.kt b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPositionalDataSourceTest.kt
index 9bdfb70..e64d8d1 100644
--- a/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPositionalDataSourceTest.kt
+++ b/paging/paging-common/src/commonJvmAndroidTest/kotlin/androidx/paging/WrappedPositionalDataSourceTest.kt
@@ -26,15 +26,15 @@
         val dataSource = WrapperPositionalDataSource(TestPositionalDataSource(listOf(0))) { it }
 
         var kotlinInvalidated = false
-        dataSource.addInvalidatedCallback {
-            kotlinInvalidated = true
-        }
+        dataSource.addInvalidatedCallback { kotlinInvalidated = true }
         var javaInvalidated = false
-        dataSource.addInvalidatedCallback(object : DataSource.InvalidatedCallback {
-            override fun onInvalidated() {
-                javaInvalidated = true
+        dataSource.addInvalidatedCallback(
+            object : DataSource.InvalidatedCallback {
+                override fun onInvalidated() {
+                    javaInvalidated = true
+                }
             }
-        })
+        )
 
         dataSource.invalidate()
         assertTrue { dataSource.isInvalid }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPageEventFlow.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPageEventFlow.kt
index c9b5d84..c910754 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPageEventFlow.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPageEventFlow.kt
@@ -35,56 +35,55 @@
  * An intermediate flow producer that flattens previous page events and gives any new downstream
  * just those events instead of the full history.
  */
-internal class CachedPageEventFlow<T : Any>(
-    src: Flow<PageEvent<T>>,
-    scope: CoroutineScope
-) {
+internal class CachedPageEventFlow<T : Any>(src: Flow<PageEvent<T>>, scope: CoroutineScope) {
     private val pageController = FlattenedPageController<T>()
 
     /**
-     * Shared flow for downstreams where we dispatch each event coming from upstream.
-     * This only has reply = 1 so it does not keep the previous events. Meanwhile, it still buffers
-     * them for active subscribers.
-     * A final `null` value is emitted as the end of stream message once the job is complete.
+     * Shared flow for downstreams where we dispatch each event coming from upstream. This only has
+     * reply = 1 so it does not keep the previous events. Meanwhile, it still buffers them for
+     * active subscribers. A final `null` value is emitted as the end of stream message once the job
+     * is complete.
      */
-    private val mutableSharedSrc = MutableSharedFlow<IndexedValue<PageEvent<T>>?>(
-        replay = 1,
-        extraBufferCapacity = Channel.UNLIMITED,
-        onBufferOverflow = BufferOverflow.SUSPEND
-    )
+    private val mutableSharedSrc =
+        MutableSharedFlow<IndexedValue<PageEvent<T>>?>(
+            replay = 1,
+            extraBufferCapacity = Channel.UNLIMITED,
+            onBufferOverflow = BufferOverflow.SUSPEND
+        )
 
     /**
      * Shared flow used for downstream which also sends the history. Each downstream connects to
-     * this where it first receives a history event and then any other event that was emitted by
-     * the upstream.
+     * this where it first receives a history event and then any other event that was emitted by the
+     * upstream.
      */
-    private val sharedForDownstream = mutableSharedSrc.onSubscription {
-        val history = pageController.getStateAsEvents()
-        // start the job if it has not started yet. We do this after capturing the history so that
-        // the first subscriber does not receive any history.
-        job.start()
-        history.forEach {
-            emit(it)
+    private val sharedForDownstream =
+        mutableSharedSrc.onSubscription {
+            val history = pageController.getStateAsEvents()
+            // start the job if it has not started yet. We do this after capturing the history so
+            // that
+            // the first subscriber does not receive any history.
+            job.start()
+            history.forEach { emit(it) }
         }
-    }
 
-    /**
-     * The actual job that collects the upstream.
-     */
-    private val job = scope.launch(start = CoroutineStart.LAZY) {
-        src.withIndex()
-            .collect {
-                mutableSharedSrc.emit(it)
-                pageController.record(it)
+    /** The actual job that collects the upstream. */
+    private val job =
+        scope
+            .launch(start = CoroutineStart.LAZY) {
+                src.withIndex().collect {
+                    mutableSharedSrc.emit(it)
+                    pageController.record(it)
+                }
             }
-    }.also {
-        it.invokeOnCompletion {
-            // Emit a final `null` message to the mutable shared flow.
-            // Even though, this tryEmit might technically fail, it shouldn't because we have
-            // unlimited buffer in the shared flow.
-            mutableSharedSrc.tryEmit(null)
-        }
-    }
+            .also {
+                it.invokeOnCompletion {
+                    // Emit a final `null` message to the mutable shared flow.
+                    // Even though, this tryEmit might technically fail, it shouldn't because we
+                    // have
+                    // unlimited buffer in the shared flow.
+                    mutableSharedSrc.tryEmit(null)
+                }
+            }
 
     fun close() {
         job.cancel()
@@ -109,8 +108,8 @@
     }
 
     /**
-     * Returns cached data as PageEvent.Insert. Null if cached data is empty (for example on
-     * initial refresh).
+     * Returns cached data as PageEvent.Insert. Null if cached data is empty (for example on initial
+     * refresh).
      */
     internal fun getCachedEvent(): PageEvent.Insert<T>? = pageController.getCachedEvent()
 }
@@ -120,9 +119,7 @@
     private val lock = Mutex()
     private var maxEventIndex = -1
 
-    /**
-     * Record the event.
-     */
+    /** Record the event. */
     suspend fun record(event: IndexedValue<PageEvent<T>>) {
         lock.withLock {
             maxEventIndex = event.index
@@ -130,26 +127,22 @@
         }
     }
 
-    /**
-     * Create a list of events that represents the current state of the list.
-     */
+    /** Create a list of events that represents the current state of the list. */
     suspend fun getStateAsEvents(): List<IndexedValue<PageEvent<T>>> {
         return lock.withLock {
             // condensed events to bring downstream up to the current state
             val catchupEvents = list.getAsEvents()
             val startEventIndex = maxEventIndex - catchupEvents.size + 1
             catchupEvents.mapIndexed { index, pageEvent ->
-                IndexedValue(
-                    index = startEventIndex + index,
-                    value = pageEvent
-                )
+                IndexedValue(index = startEventIndex + index, value = pageEvent)
             }
         }
     }
 
-    fun getCachedEvent(): PageEvent.Insert<T>? = list.getAsEvents().firstOrNull()?.let {
-        if (it is PageEvent.Insert && it.loadType == LoadType.REFRESH) it else null
-    }
+    fun getCachedEvent(): PageEvent.Insert<T>? =
+        list.getAsEvents().firstOrNull()?.let {
+            if (it is PageEvent.Insert && it.loadType == LoadType.REFRESH) it else null
+        }
 }
 
 /**
@@ -165,9 +158,9 @@
     private val pages = ArrayDeque<TransformablePage<T>>()
 
     /**
-     * Note - this is initialized without remote state, since we don't know if we have remote
-     * data once we start getting events. This is fine, since downstream needs to handle this
-     * anyway - remote state being added after initial, empty, PagingData.
+     * Note - this is initialized without remote state, since we don't know if we have remote data
+     * once we start getting events. This is fine, since downstream needs to handle this anyway -
+     * remote state being added after initial, empty, PagingData.
      */
     private val sourceStates = MutableLoadStateCollection()
     private var mediatorStates: LoadStates? = null
@@ -177,6 +170,7 @@
      * to new downstream subscribers.
      */
     private var receivedFirstEvent: Boolean = false
+
     fun add(event: PageEvent<T>) {
         receivedFirstEvent = true
         when (event) {
@@ -219,9 +213,7 @@
             }
             LoadType.PREPEND -> {
                 placeholdersBefore = event.placeholdersBefore
-                (event.pages.size - 1 downTo 0).forEach {
-                    pages.addFirst(event.pages[it])
-                }
+                (event.pages.size - 1 downTo 0).forEach { pages.addFirst(event.pages[it]) }
             }
             LoadType.APPEND -> {
                 placeholdersAfter = event.placeholdersAfter
@@ -267,12 +259,7 @@
                 )
             )
         } else {
-            events.add(
-                PageEvent.LoadStateUpdate(
-                    source = source,
-                    mediator = mediatorStates
-                )
-            )
+            events.add(PageEvent.LoadStateUpdate(source = source, mediator = mediatorStates))
         }
 
         return events
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPagingData.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPagingData.kt
index 35e6aed..3ec9188 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPagingData.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CachedPagingData.kt
@@ -29,9 +29,9 @@
 import kotlinx.coroutines.flow.shareIn
 
 /**
- * A PagingData wrapper that makes it "efficiently" share-able between multiple downstreams.
- * It flattens all previous pages such that a new subscriber will get all of them at once (and
- * also not deal with dropped pages, intermediate loading state changes etc).
+ * A PagingData wrapper that makes it "efficiently" share-able between multiple downstreams. It
+ * flattens all previous pages such that a new subscriber will get all of them at once (and also not
+ * deal with dropped pages, intermediate loading state changes etc).
  */
 private class MulticastedPagingData<T : Any>(
     val scope: CoroutineScope,
@@ -39,23 +39,21 @@
     // used in tests
     val tracker: ActiveFlowTracker? = null
 ) {
-    private val accumulated = CachedPageEventFlow(
-        src = parent.flow,
-        scope = scope
-    ).also {
-        tracker?.onNewCachedEventFlow(it)
-    }
+    private val accumulated =
+        CachedPageEventFlow(src = parent.flow, scope = scope).also {
+            tracker?.onNewCachedEventFlow(it)
+        }
 
-    fun asPagingData() = PagingData(
-        flow = accumulated.downstreamFlow.onStart {
-            tracker?.onStart(PAGE_EVENT_FLOW)
-        }.onCompletion {
-            tracker?.onComplete(PAGE_EVENT_FLOW)
-        },
-        uiReceiver = parent.uiReceiver,
-        hintReceiver = parent.hintReceiver,
-        cachedPageEvent = { accumulated.getCachedEvent() }
-    )
+    fun asPagingData() =
+        PagingData(
+            flow =
+                accumulated.downstreamFlow
+                    .onStart { tracker?.onStart(PAGE_EVENT_FLOW) }
+                    .onCompletion { tracker?.onComplete(PAGE_EVENT_FLOW) },
+            uiReceiver = parent.uiReceiver,
+            hintReceiver = parent.hintReceiver,
+            cachedPageEvent = { accumulated.getCachedEvent() }
+        )
 
     suspend fun close() = accumulated.close()
 }
@@ -64,18 +62,18 @@
  * Caches the [PagingData] such that any downstream collection from this flow will share the same
  * [PagingData].
  *
- * The flow is kept active as long as the given [scope] is active. To avoid leaks, make sure to
- * use a [scope] that is already managed (like a ViewModel scope) or manually cancel it when you
- * don't need paging anymore.
+ * The flow is kept active as long as the given [scope] is active. To avoid leaks, make sure to use
+ * a [scope] that is already managed (like a ViewModel scope) or manually cancel it when you don't
+ * need paging anymore.
  *
  * A common use case for this caching is to cache [PagingData] in a ViewModel. This can ensure that,
  * upon configuration change (e.g. rotation), then new Activity will receive the existing data
  * immediately rather than fetching it from scratch.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
  * Note that this does not turn the `Flow<PagingData>` into a hot stream. It won't execute any
  * unnecessary code unless it is being collected.
@@ -85,9 +83,8 @@
  * @param scope The coroutine scope where this page cache will be kept alive.
  */
 @CheckResult
-public fun <T : Any> Flow<PagingData<T>>.cachedIn(
-    scope: CoroutineScope
-): Flow<PagingData<T>> = cachedIn(scope, null)
+public fun <T : Any> Flow<PagingData<T>>.cachedIn(scope: CoroutineScope): Flow<PagingData<T>> =
+    cachedIn(scope, null)
 
 internal fun <T : Any> Flow<PagingData<T>>.cachedIn(
     scope: CoroutineScope,
@@ -95,35 +92,30 @@
     tracker: ActiveFlowTracker? = null
 ): Flow<PagingData<T>> {
     return this.simpleMapLatest {
-        MulticastedPagingData(
+            MulticastedPagingData(scope = scope, parent = it, tracker = tracker)
+        }
+        .simpleRunningReduce { prev, next ->
+            prev.close()
+            next
+        }
+        .map { it.asPagingData() }
+        .onStart { tracker?.onStart(PAGED_DATA_FLOW) }
+        .onCompletion { tracker?.onComplete(PAGED_DATA_FLOW) }
+        .shareIn(
             scope = scope,
-            parent = it,
-            tracker = tracker
+            started = SharingStarted.Lazily,
+            // replay latest multicasted paging data since it is re-connectable.
+            replay = 1
         )
-    }.simpleRunningReduce { prev, next ->
-        prev.close()
-        next
-    }.map {
-        it.asPagingData()
-    }.onStart {
-        tracker?.onStart(PAGED_DATA_FLOW)
-    }.onCompletion {
-        tracker?.onComplete(PAGED_DATA_FLOW)
-    }.shareIn(
-        scope = scope,
-        started = SharingStarted.Lazily,
-        // replay latest multicasted paging data since it is re-connectable.
-        replay = 1
-    )
 }
 
-/**
- * This is only used for testing to ensure we don't leak resources
- */
+/** This is only used for testing to ensure we don't leak resources */
 @VisibleForTesting
 internal interface ActiveFlowTracker {
     fun onNewCachedEventFlow(cachedPageEventFlow: CachedPageEventFlow<*>)
+
     suspend fun onStart(flowType: FlowType)
+
     suspend fun onComplete(flowType: FlowType)
 
     enum class FlowType {
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CancelableChannelFlow.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CancelableChannelFlow.kt
index d84eea1..7e7e4a1 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CancelableChannelFlow.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CancelableChannelFlow.kt
@@ -27,9 +27,7 @@
     block: suspend SimpleProducerScope<T>.() -> Unit
 ): Flow<T> {
     return simpleChannelFlow<T> {
-        controller.invokeOnCompletion {
-            close()
-        }
+        controller.invokeOnCompletion { close() }
         this.block()
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CombinedLoadStates.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CombinedLoadStates.kt
index 7cb35cd..bd608cd 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CombinedLoadStates.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CombinedLoadStates.kt
@@ -33,41 +33,39 @@
  */
 public class CombinedLoadStates(
     /**
-     * Convenience for combined behavior of [REFRESH][LoadType.REFRESH] [LoadState], which
-     * generally defers to [mediator] if it exists, but if previously was [LoadState.Loading],
-     * awaits for both [source] and [mediator] to become [LoadState.NotLoading] to ensure the
-     * remote load was applied.
+     * Convenience for combined behavior of [REFRESH][LoadType.REFRESH] [LoadState], which generally
+     * defers to [mediator] if it exists, but if previously was [LoadState.Loading], awaits for both
+     * [source] and [mediator] to become [LoadState.NotLoading] to ensure the remote load was
+     * applied.
      *
-     * For use cases that require reacting to [LoadState] of [source] and [mediator]
-     * specifically, e.g., showing cached data when network loads via [mediator] fail,
-     * [LoadStates] exposed via [source] and [mediator] should be used directly.
+     * For use cases that require reacting to [LoadState] of [source] and [mediator] specifically,
+     * e.g., showing cached data when network loads via [mediator] fail, [LoadStates] exposed via
+     * [source] and [mediator] should be used directly.
      */
     public val refresh: LoadState,
     /**
-     * Convenience for combined behavior of [PREPEND][LoadType.REFRESH] [LoadState], which
-     * generally defers to [mediator] if it exists, but if previously was [LoadState.Loading],
-     * awaits for both [source] and [mediator] to become [LoadState.NotLoading] to ensure the
-     * remote load was applied.
+     * Convenience for combined behavior of [PREPEND][LoadType.REFRESH] [LoadState], which generally
+     * defers to [mediator] if it exists, but if previously was [LoadState.Loading], awaits for both
+     * [source] and [mediator] to become [LoadState.NotLoading] to ensure the remote load was
+     * applied.
      *
-     * For use cases that require reacting to [LoadState] of [source] and [mediator]
-     * specifically, e.g., showing cached data when network loads via [mediator] fail,
-     * [LoadStates] exposed via [source] and [mediator] should be used directly.
+     * For use cases that require reacting to [LoadState] of [source] and [mediator] specifically,
+     * e.g., showing cached data when network loads via [mediator] fail, [LoadStates] exposed via
+     * [source] and [mediator] should be used directly.
      */
     public val prepend: LoadState,
     /**
-     * Convenience for combined behavior of [APPEND][LoadType.REFRESH] [LoadState], which
-     * generally defers to [mediator] if it exists, but if previously was [LoadState.Loading],
-     * awaits for both [source] and [mediator] to become [LoadState.NotLoading] to ensure the
-     * remote load was applied.
+     * Convenience for combined behavior of [APPEND][LoadType.REFRESH] [LoadState], which generally
+     * defers to [mediator] if it exists, but if previously was [LoadState.Loading], awaits for both
+     * [source] and [mediator] to become [LoadState.NotLoading] to ensure the remote load was
+     * applied.
      *
-     * For use cases that require reacting to [LoadState] of [source] and [mediator]
-     * specifically, e.g., showing cached data when network loads via [mediator] fail,
-     * [LoadStates] exposed via [source] and [mediator] should be used directly.
+     * For use cases that require reacting to [LoadState] of [source] and [mediator] specifically,
+     * e.g., showing cached data when network loads via [mediator] fail, [LoadStates] exposed via
+     * [source] and [mediator] should be used directly.
      */
     public val append: LoadState,
-    /**
-     * [LoadStates] corresponding to loads from a [PagingSource].
-     */
+    /** [LoadStates] corresponding to loads from a [PagingSource]. */
     public val source: LoadStates,
 
     /**
@@ -107,24 +105,17 @@
     }
 
     internal fun forEach(op: (LoadType, Boolean, LoadState) -> Unit) {
-        source.forEach { type, state ->
-            op(type, false, state)
-        }
-        mediator?.forEach { type, state ->
-            op(type, true, state)
-        }
+        source.forEach { type, state -> op(type, false, state) }
+        mediator?.forEach { type, state -> op(type, true, state) }
     }
 
-    /**
-     * Returns true when [source] and [mediator] is in [NotLoading] for all [LoadType]
-     */
+    /** Returns true when [source] and [mediator] is in [NotLoading] for all [LoadType] */
     public val isIdle = source.isIdle && mediator?.isIdle ?: true
 
     /**
      * Returns true if either [source] or [mediator] has a [LoadType] that is in [LoadState.Error]
      */
-    @get:JvmName("hasError")
-    public val hasError = source.hasError || mediator?.hasError ?: false
+    @get:JvmName("hasError") public val hasError = source.hasError || mediator?.hasError ?: false
 }
 
 /**
@@ -154,7 +145,5 @@
 public suspend fun Flow<CombinedLoadStates>.awaitNotLoading():
     @JvmSuppressWildcards CombinedLoadStates? {
 
-    return debounce(1).filter {
-        it.isIdle || it.hasError
-    }.firstOrNull()
+    return debounce(1).filter { it.isIdle || it.hasError }.firstOrNull()
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CompatLegacyPagingSource.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CompatLegacyPagingSource.kt
index a655684..2d1eb95 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/CompatLegacyPagingSource.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/CompatLegacyPagingSource.kt
@@ -25,6 +25,5 @@
  */
 internal interface CompatLegacyPagingSource {
 
-    @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
-    public fun setPageSize(pageSize: Int)
+    @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public fun setPageSize(pageSize: Int)
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/ExperimentalPagingApi.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/ExperimentalPagingApi.kt
index 9f2c625..c67adae 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/ExperimentalPagingApi.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/ExperimentalPagingApi.kt
@@ -20,6 +20,4 @@
  * Marks experimental Paging APIs, which may have known issues that would likely be solved by a
  * source-incompatible change in newer versions of the artifact that supplies it.
  */
-@RequiresOptIn
-@Retention(AnnotationRetention.BINARY)
-public annotation class ExperimentalPagingApi
+@RequiresOptIn @Retention(AnnotationRetention.BINARY) public annotation class ExperimentalPagingApi
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/FlowExt.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/FlowExt.kt
index a1e281c..e4a1184 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/FlowExt.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/FlowExt.kt
@@ -37,15 +37,12 @@
 import kotlinx.coroutines.yield
 
 /**
- * This File includes custom flow operators that we implement to avoid using experimental APIs
- * from coroutines. Eventually, this file should be deleted once those APIs become stable.
+ * This File includes custom flow operators that we implement to avoid using experimental APIs from
+ * coroutines. Eventually, this file should be deleted once those APIs become stable.
  */
-
 private val NULL = Any()
 
-/**
- * Temporary `scan` operator on Flow without experimental APIs.
- */
+/** Temporary `scan` operator on Flow without experimental APIs. */
 internal fun <T, R> Flow<T>.simpleScan(
     initial: R,
     operation: suspend (accumulator: R, value: T) -> R
@@ -58,55 +55,42 @@
     }
 }
 
-/**
- * Temporary `runningReduce` operator on Flow without experimental APIs.
- */
+/** Temporary `runningReduce` operator on Flow without experimental APIs. */
 internal fun <T> Flow<T>.simpleRunningReduce(
     operation: suspend (accumulator: T, value: T) -> T
 ): Flow<T> = flow {
     var accumulator: Any? = NULL
     collect { value ->
-        accumulator = if (accumulator === NULL) {
-            value
-        } else {
-            @Suppress("UNCHECKED_CAST")
-            operation(accumulator as T, value)
-        }
-        @Suppress("UNCHECKED_CAST")
-        emit(accumulator as T)
+        accumulator =
+            if (accumulator === NULL) {
+                value
+            } else {
+                @Suppress("UNCHECKED_CAST") operation(accumulator as T, value)
+            }
+        @Suppress("UNCHECKED_CAST") emit(accumulator as T)
     }
 }
 
-/**
- * This is a similar implementation to transformLatest using a channel Flow.
- */
+/** This is a similar implementation to transformLatest using a channel Flow. */
 internal fun <T, R> Flow<T>.simpleTransformLatest(
     transform: suspend FlowCollector<R>.(value: T) -> Unit
 ): Flow<R> = simpleChannelFlow {
     val origin = this@simpleTransformLatest
     val collector = ChannelFlowCollector(this@simpleChannelFlow)
-    origin.collectLatest { value ->
-        collector.transform(value)
-    }
+    origin.collectLatest { value -> collector.transform(value) }
 }
 
-/**
- * flatMapLatest without experimental APIs
- */
+/** flatMapLatest without experimental APIs */
 internal inline fun <T, R> Flow<T>.simpleFlatMapLatest(
     crossinline transform: suspend (value: T) -> Flow<R>
 ): Flow<R> = simpleTransformLatest { emitAll(transform(it)) }
 
-/**
- * mapLatest without experimental APIs
- */
+/** mapLatest without experimental APIs */
 internal inline fun <T, R> Flow<T>.simpleMapLatest(
     crossinline transform: suspend (value: T) -> R
 ): Flow<R> = simpleTransformLatest { emit(transform(it)) }
 
-internal class ChannelFlowCollector<T>(
-    val channel: SendChannel<T>
-) : FlowCollector<T> {
+internal class ChannelFlowCollector<T>(val channel: SendChannel<T>) : FlowCollector<T> {
     override suspend fun emit(value: T) {
         channel.send(value)
     }
@@ -117,19 +101,19 @@
  * [transform] is always guaranteed to get called for every emission from either Flow after the
  * initial call (which waits for the first emission from both Flows).
  *
- * The emissions for both Flows are also guaranteed to get buffered, so if one Flow emits
- * multiple times before the other does, [transform] will get called for each emission from the
- * first Flow instead of just once with the latest values.
+ * The emissions for both Flows are also guaranteed to get buffered, so if one Flow emits multiple
+ * times before the other does, [transform] will get called for each emission from the first Flow
+ * instead of just once with the latest values.
  *
  * @param transform The transform to apply on each update. This is first called after awaiting an
- * initial emission from both Flows, and then is guaranteed to be called for every emission from
- * either Flow.
+ *   initial emission from both Flows, and then is guaranteed to be called for every emission from
+ *   either Flow.
  *
- * For convenience, [CombineSource] is also passed to the transform, which indicates the
- * origin of the update with the following possible values:
- *   * [INITIAL]: Initial emission from both Flows
- *   * [RECEIVER]: Triggered by new emission from receiver
- *   * [OTHER]: Triggered by new emission from [otherFlow]
+ * For convenience, [CombineSource] is also passed to the transform, which indicates the origin of
+ * the update with the following possible values:
+ * * [INITIAL]: Initial emission from both Flows
+ * * [RECEIVER]: Triggered by new emission from receiver
+ * * [OTHER]: Triggered by new emission from [otherFlow]
  */
 internal suspend inline fun <T1, T2, R> Flow<T1>.combineWithoutBatching(
     otherFlow: Flow<T2>,
@@ -137,9 +121,10 @@
 ): Flow<R> {
     return simpleChannelFlow {
         val incompleteFlows = AtomicInt(2)
-        val unbatchedFlowCombiner = UnbatchedFlowCombiner<T1, T2> { t1, t2, updateFrom ->
-            send(transform(t1, t2, updateFrom))
-        }
+        val unbatchedFlowCombiner =
+            UnbatchedFlowCombiner<T1, T2> { t1, t2, updateFrom ->
+                send(transform(t1, t2, updateFrom))
+            }
         val parentJob = Job()
         arrayOf(this@combineWithoutBatching, otherFlow).forEachIndexed { index, flow ->
             launch(parentJob) {
@@ -166,9 +151,8 @@
  * Helper class for [UnbatchedFlowCombiner], which handles dispatching the combined values in the
  * correct order, and with [CombineSource].
  *
- * NOTE: This implementation relies on the fact that [onNext] is called in-order for emissions
- * from the same Flow. This means that concurrently calling [onNext] with the same index will not
- * work.
+ * NOTE: This implementation relies on the fact that [onNext] is called in-order for emissions from
+ * the same Flow. This means that concurrently calling [onNext] with the same index will not work.
  *
  * @see combineWithoutBatching
  */
@@ -197,14 +181,14 @@
             values[index] = value
 
             if (values.none { it === NULL }) {
-                val updateFrom = when {
-                    isInitial -> INITIAL
-                    index == 0 -> RECEIVER
-                    else -> OTHER
-                }
+                val updateFrom =
+                    when {
+                        isInitial -> INITIAL
+                        index == 0 -> RECEIVER
+                        else -> OTHER
+                    }
 
-                @Suppress("UNCHECKED_CAST")
-                send(values[0] as T1, values[1] as T2, updateFrom)
+                @Suppress("UNCHECKED_CAST") send(values[0] as T1, values[1] as T2, updateFrom)
                 initialDispatched.complete(Unit)
             }
         }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintHandler.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintHandler.kt
index 8f48b22..5efd6be 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintHandler.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintHandler.kt
@@ -28,9 +28,8 @@
 import kotlinx.coroutines.flow.MutableSharedFlow
 
 /**
- * Helper class to handle UI hints.
- * It processes incoming hints and keeps a min/max (prepend/append) values and provides them as a
- * flow to [PageFetcherSnapshot].
+ * Helper class to handle UI hints. It processes incoming hints and keeps a min/max (prepend/append)
+ * values and provides them as a flow to [PageFetcherSnapshot].
  */
 internal class HintHandler {
     private val state = State()
@@ -42,31 +41,23 @@
     val lastAccessHint: ViewportHint.Access?
         get() = state.lastAccessHint
 
-    /**
-     * Returns a flow of hints for the given [loadType].
-     */
-    fun hintFor(loadType: LoadType): Flow<ViewportHint> = when (loadType) {
-        PREPEND -> state.prependFlow
-        APPEND -> state.appendFlow
-        else -> throw IllegalArgumentException("invalid load type for hints")
-    }
+    /** Returns a flow of hints for the given [loadType]. */
+    fun hintFor(loadType: LoadType): Flow<ViewportHint> =
+        when (loadType) {
+            PREPEND -> state.prependFlow
+            APPEND -> state.appendFlow
+            else -> throw IllegalArgumentException("invalid load type for hints")
+        }
 
     /**
-     * Resets the hint for the given [loadType].
-     * Note that this won't update [lastAccessHint] or the other load type.
+     * Resets the hint for the given [loadType]. Note that this won't update [lastAccessHint] or the
+     * other load type.
      */
-    fun forceSetHint(
-        loadType: LoadType,
-        viewportHint: ViewportHint
-    ) {
-        require(
-            loadType == PREPEND || loadType == APPEND
-        ) {
+    fun forceSetHint(loadType: LoadType, viewportHint: ViewportHint) {
+        require(loadType == PREPEND || loadType == APPEND) {
             "invalid load type for reset: $loadType"
         }
-        state.modify(
-            accessHint = null
-        ) { prependHint, appendHint ->
+        state.modify(accessHint = null) { prependHint, appendHint ->
             if (loadType == PREPEND) {
                 prependHint.value = viewportHint
             } else {
@@ -75,23 +66,15 @@
         }
     }
 
-    /**
-     * Processes the hint coming from UI.
-     */
+    /** Processes the hint coming from UI. */
     fun processHint(viewportHint: ViewportHint) {
         state.modify(viewportHint as? ViewportHint.Access) { prependHint, appendHint ->
-            if (viewportHint.shouldPrioritizeOver(
-                    previous = prependHint.value,
-                    loadType = PREPEND
-                )
+            if (
+                viewportHint.shouldPrioritizeOver(previous = prependHint.value, loadType = PREPEND)
             ) {
                 prependHint.value = viewportHint
             }
-            if (viewportHint.shouldPrioritizeOver(
-                    previous = appendHint.value,
-                    loadType = APPEND
-                )
-            ) {
+            if (viewportHint.shouldPrioritizeOver(previous = appendHint.value, loadType = APPEND)) {
                 appendHint.value = viewportHint
             }
         }
@@ -102,15 +85,16 @@
         private val append = HintFlow()
         var lastAccessHint: ViewportHint.Access? = null
             private set
+
         val prependFlow
             get() = prepend.flow
+
         val appendFlow
             get() = append.flow
+
         private val lock = ReentrantLock()
 
-        /**
-         * Modifies the state inside a lock where it gets access to the mutable values.
-         */
+        /** Modifies the state inside a lock where it gets access to the mutable values. */
         fun modify(
             accessHint: ViewportHint.Access?,
             block: (prepend: HintFlow, append: HintFlow) -> Unit
@@ -125,8 +109,8 @@
     }
 
     /**
-     * Like a StateFlow that holds the value but does not do de-duping.
-     * Note that, this class is not thread safe.
+     * Like a StateFlow that holds the value but does not do de-duping. Note that, this class is not
+     * thread safe.
      */
     private inner class HintFlow {
         var value: ViewportHint? = null
@@ -136,10 +120,12 @@
                     _flow.tryEmit(value)
                 }
             }
-        private val _flow = MutableSharedFlow<ViewportHint>(
-            replay = 1,
-            onBufferOverflow = BufferOverflow.DROP_OLDEST
-        )
+
+        private val _flow =
+            MutableSharedFlow<ViewportHint>(
+                replay = 1,
+                onBufferOverflow = BufferOverflow.DROP_OLDEST
+            )
         val flow: Flow<ViewportHint>
             get() = _flow
     }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintReceiver.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintReceiver.kt
index 22dabae..e15866d 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintReceiver.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/HintReceiver.kt
@@ -16,9 +16,7 @@
 
 package androidx.paging
 
-/**
- * Fetcher-side callbacks for presenter-side access events communicated through [PagingData].
- */
+/** Fetcher-side callbacks for presenter-side access events communicated through [PagingData]. */
 internal interface HintReceiver {
     fun accessHint(viewportHint: ViewportHint)
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidateCallbackTracker.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidateCallbackTracker.kt
index 7c83d58..304bcc6 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidateCallbackTracker.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidateCallbackTracker.kt
@@ -20,14 +20,10 @@
 import androidx.paging.internal.ReentrantLock
 import androidx.paging.internal.withLock
 
-/**
- * Helper class for thread-safe invalidation callback tracking + triggering on registration.
- */
+/** Helper class for thread-safe invalidation callback tracking + triggering on registration. */
 internal class InvalidateCallbackTracker<T>(
     private val callbackInvoker: (T) -> Unit,
-    /**
-     * User-provided override of DataSource.isInvalid
-     */
+    /** User-provided override of DataSource.isInvalid */
     private val invalidGetter: (() -> Boolean)? = null,
 ) {
     private val lock = ReentrantLock()
@@ -35,8 +31,7 @@
     internal var invalid = false
         private set
 
-    @VisibleForTesting
-    internal fun callbackCount() = callbacks.size
+    @VisibleForTesting internal fun callbackCount() = callbacks.size
 
     internal fun registerInvalidatedCallback(callback: T) {
         // This isn't sufficient, but is the best we can do in cases where DataSource.isInvalid
@@ -51,14 +46,15 @@
             return
         }
 
-        val callImmediately = lock.withLock {
-            if (invalid) {
-                true // call immediately
-            } else {
-                callbacks.add(callback)
-                false // don't call, not invalid yet.
+        val callImmediately =
+            lock.withLock {
+                if (invalid) {
+                    true // call immediately
+                } else {
+                    callbacks.add(callback)
+                    false // don't call, not invalid yet.
+                }
             }
-        }
 
         if (callImmediately) {
             callbackInvoker(callback)
@@ -66,22 +62,19 @@
     }
 
     internal fun unregisterInvalidatedCallback(callback: T) {
-        lock.withLock {
-            callbacks.remove(callback)
-        }
+        lock.withLock { callbacks.remove(callback) }
     }
 
     internal fun invalidate(): Boolean {
         if (invalid) return false
 
-        val callbacksToInvoke = lock.withLock {
-            if (invalid) return false
+        val callbacksToInvoke =
+            lock.withLock {
+                if (invalid) return false
 
-            invalid = true
-            callbacks.toList().also {
-                callbacks.clear()
+                invalid = true
+                callbacks.toList().also { callbacks.clear() }
             }
-        }
 
         callbacksToInvoke.forEach(callbackInvoker)
         return true
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidatingPagingSourceFactory.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidatingPagingSourceFactory.kt
index 21f520e..94e85135 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidatingPagingSourceFactory.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/InvalidatingPagingSourceFactory.kt
@@ -23,11 +23,11 @@
 /**
  * Wrapper class for a [PagingSource] factory intended for usage in [Pager] construction.
  *
- * Calling [invalidate] on this [InvalidatingPagingSourceFactory] will forward invalidate signals
- * to all active [PagingSource]s that were produced by calling [invoke].
+ * Calling [invalidate] on this [InvalidatingPagingSourceFactory] will forward invalidate signals to
+ * all active [PagingSource]s that were produced by calling [invoke].
  *
- * This class is thread-safe for concurrent calls to any mutative operations including both
- * [invoke] and [invalidate].
+ * This class is thread-safe for concurrent calls to any mutative operations including both [invoke]
+ * and [invalidate].
  *
  * @param pagingSourceFactory The [PagingSource] factory that returns a PagingSource when called
  */
@@ -38,19 +38,14 @@
 
     private var pagingSources: List<PagingSource<Key, Value>> = emptyList()
 
-    @VisibleForTesting
-    internal fun pagingSources() = pagingSources
+    @VisibleForTesting internal fun pagingSources() = pagingSources
 
     /**
-     * @return [PagingSource] which will be invalidated when this factory's [invalidate] method
-     * is called
+     * @return [PagingSource] which will be invalidated when this factory's [invalidate] method is
+     *   called
      */
     override fun invoke(): PagingSource<Key, Value> {
-        return pagingSourceFactory().also {
-            lock.withLock {
-                pagingSources = pagingSources + it
-            }
-        }
+        return pagingSourceFactory().also { lock.withLock { pagingSources = pagingSources + it } }
     }
 
     /**
@@ -58,11 +53,7 @@
      * [InvalidatingPagingSourceFactory]
      */
     public fun invalidate() {
-        val previousList = lock.withLock {
-            pagingSources.also {
-                pagingSources = emptyList()
-            }
-        }
+        val previousList = lock.withLock { pagingSources.also { pagingSources = emptyList() } }
         for (pagingSource in previousList) {
             if (!pagingSource.invalid) {
                 pagingSource.invalidate()
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/ItemSnapshotList.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/ItemSnapshotList.kt
index 1512288..ca94d29 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/ItemSnapshotList.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/ItemSnapshotList.kt
@@ -28,17 +28,13 @@
      * Number of placeholders before the presented [items], 0 if
      * [enablePlaceholders][androidx.paging.PagingConfig.enablePlaceholders] is `false`.
      */
-    @IntRange(from = 0)
-    public val placeholdersBefore: Int,
+    @IntRange(from = 0) public val placeholdersBefore: Int,
     /**
      * Number of placeholders after the presented [items], 0 if
      * [enablePlaceholders][androidx.paging.PagingConfig.enablePlaceholders] is `false`.
      */
-    @IntRange(from = 0)
-    public val placeholdersAfter: Int,
-    /**
-     * The presented data, excluding placeholders.
-     */
+    @IntRange(from = 0) public val placeholdersAfter: Int,
+    /** The presented data, excluding placeholders. */
     public val items: List<T>
 ) : AbstractList<T?>() {
 
@@ -67,9 +63,10 @@
                 items[index - placeholdersBefore]
             }
             in (placeholdersBefore + items.size) until size -> null
-            else -> throw IndexOutOfBoundsException(
-                "Illegal attempt to access index $index in ItemSnapshotList of size $size"
-            )
+            else ->
+                throw IndexOutOfBoundsException(
+                    "Illegal attempt to access index $index in ItemSnapshotList of size $size"
+                )
         }
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadState.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadState.kt
index 2841b9f..b00e5cd 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadState.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadState.kt
@@ -24,36 +24,31 @@
  * [androidx.paging.AsyncPagingDataDiffer.addLoadStateListener]
  *
  * @param endOfPaginationReached `false` if there is more data to load in the [LoadType] this
- * [LoadState] is associated with, `true` otherwise. This parameter informs [Pager] if it
- * should continue to make requests for additional data in this direction or if it should
- * halt as the end of the dataset has been reached.
+ *   [LoadState] is associated with, `true` otherwise. This parameter informs [Pager] if it should
+ *   continue to make requests for additional data in this direction or if it should halt as the end
+ *   of the dataset has been reached.
  *
  * Note: The [LoadType] [REFRESH][LoadType.REFRESH] always has [LoadState.endOfPaginationReached]
  * set to `false`.
  *
  * @see LoadType
  */
-public sealed class LoadState(
-    public val endOfPaginationReached: Boolean
-) {
+public sealed class LoadState(public val endOfPaginationReached: Boolean) {
     /**
      * Indicates the [PagingData] is not currently loading, and no error currently observed.
      *
      * @param endOfPaginationReached `false` if there is more data to load in the [LoadType] this
-     * [LoadState] is associated with, `true` otherwise. This parameter informs [Pager] if it
-     * should continue to make requests for additional data in this direction or if it should
-     * halt as the end of the dataset has been reached.
+     *   [LoadState] is associated with, `true` otherwise. This parameter informs [Pager] if it
+     *   should continue to make requests for additional data in this direction or if it should halt
+     *   as the end of the dataset has been reached.
      */
-    public class NotLoading(
-        endOfPaginationReached: Boolean
-    ) : LoadState(endOfPaginationReached) {
+    public class NotLoading(endOfPaginationReached: Boolean) : LoadState(endOfPaginationReached) {
         override fun toString(): String {
             return "NotLoading(endOfPaginationReached=$endOfPaginationReached)"
         }
 
         override fun equals(other: Any?): Boolean {
-            return other is NotLoading &&
-                endOfPaginationReached == other.endOfPaginationReached
+            return other is NotLoading && endOfPaginationReached == other.endOfPaginationReached
         }
 
         override fun hashCode(): Int {
@@ -66,17 +61,14 @@
         }
     }
 
-    /**
-     * Loading is in progress.
-     */
+    /** Loading is in progress. */
     public object Loading : LoadState(false) {
         override fun toString(): String {
             return "Loading(endOfPaginationReached=$endOfPaginationReached)"
         }
 
         override fun equals(other: Any?): Boolean {
-            return other is Loading &&
-                endOfPaginationReached == other.endOfPaginationReached
+            return other is Loading && endOfPaginationReached == other.endOfPaginationReached
         }
 
         override fun hashCode(): Int {
@@ -88,12 +80,9 @@
      * Loading hit an error.
      *
      * @param error [Throwable] that caused the load operation to generate this error state.
-     *
      * @see androidx.paging.PagedList#retry
      */
-    public class Error(
-        public val error: Throwable
-    ) : LoadState(false) {
+    public class Error(public val error: Throwable) : LoadState(false) {
         override fun equals(other: Any?): Boolean {
             return other is Error &&
                 endOfPaginationReached == other.endOfPaginationReached &&
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadStates.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadStates.kt
index c0626db..f8267cae 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadStates.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadStates.kt
@@ -20,9 +20,7 @@
 import androidx.paging.LoadState.NotLoading
 import kotlin.jvm.JvmName
 
-/**
- * Collection of pagination [LoadState]s - refresh, prepend, and append.
- */
+/** Collection of pagination [LoadState]s - refresh, prepend, and append. */
 public data class LoadStates(
     /** [LoadState] corresponding to [LoadType.REFRESH] loads. */
     public val refresh: LoadState,
@@ -40,43 +38,36 @@
 
     internal fun modifyState(loadType: LoadType, newState: LoadState): LoadStates {
         return when (loadType) {
-            LoadType.APPEND -> copy(
-                append = newState
-            )
-            LoadType.PREPEND -> copy(
-                prepend = newState
-            )
-            LoadType.REFRESH -> copy(
-                refresh = newState
-            )
+            LoadType.APPEND -> copy(append = newState)
+            LoadType.PREPEND -> copy(prepend = newState)
+            LoadType.REFRESH -> copy(refresh = newState)
         }
     }
 
-    internal fun get(loadType: LoadType) = when (loadType) {
-        LoadType.REFRESH -> refresh
-        LoadType.APPEND -> append
-        LoadType.PREPEND -> prepend
-    }
+    internal fun get(loadType: LoadType) =
+        when (loadType) {
+            LoadType.REFRESH -> refresh
+            LoadType.APPEND -> append
+            LoadType.PREPEND -> prepend
+        }
 
-    /**
-     * Returns true if either one of [refresh], [append], or [prepend] is in [Error] state.
-     */
+    /** Returns true if either one of [refresh], [append], or [prepend] is in [Error] state. */
     @get:JvmName("hasError")
-    public val hasError = refresh is LoadState.Error || append is LoadState.Error ||
-        prepend is LoadState.Error
+    public val hasError =
+        refresh is LoadState.Error || append is LoadState.Error || prepend is LoadState.Error
 
     /**
-     * Returns true if all three LoadState [refresh], [append], and [prepend] are
-     * in [NotLoading] state.
+     * Returns true if all three LoadState [refresh], [append], and [prepend] are in [NotLoading]
+     * state.
      */
-    public val isIdle = refresh is NotLoading && append is NotLoading &&
-        prepend is NotLoading
+    public val isIdle = refresh is NotLoading && append is NotLoading && prepend is NotLoading
 
     internal companion object {
-        val IDLE = LoadStates(
-            refresh = NotLoading.Incomplete,
-            prepend = NotLoading.Incomplete,
-            append = NotLoading.Incomplete
-        )
+        val IDLE =
+            LoadStates(
+                refresh = NotLoading.Incomplete,
+                prepend = NotLoading.Incomplete,
+                append = NotLoading.Incomplete
+            )
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadType.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadType.kt
index a1fc9e6..5a5da6f 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadType.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/LoadType.kt
@@ -27,18 +27,14 @@
  */
 public enum class LoadType {
     /**
-     * [PagingData] content being refreshed, which can be a result of [PagingSource]
-     * invalidation, refresh that may contain content updates, or the initial load.
+     * [PagingData] content being refreshed, which can be a result of [PagingSource] invalidation,
+     * refresh that may contain content updates, or the initial load.
      */
     REFRESH,
 
-    /**
-     * Load at the start of a [PagingData].
-     */
+    /** Load at the start of a [PagingData]. */
     PREPEND,
 
-    /**
-     * Load at the end of a [PagingData].
-     */
+    /** Load at the end of a [PagingData]. */
     APPEND
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableCombinedLoadStateCollection.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableCombinedLoadStateCollection.kt
index 9bd6f0f..51ba4a0 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableCombinedLoadStateCollection.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableCombinedLoadStateCollection.kt
@@ -46,18 +46,17 @@
         }
 
     // load states are de-duplicated
-    fun set(type: LoadType, remote: Boolean, state: LoadState) =
-        dispatchNewState { currState ->
-            var source = currState?.source ?: LoadStates.IDLE
-            var mediator = currState?.mediator
+    fun set(type: LoadType, remote: Boolean, state: LoadState) = dispatchNewState { currState ->
+        var source = currState?.source ?: LoadStates.IDLE
+        var mediator = currState?.mediator
 
-            if (remote) {
-                mediator = LoadStates.IDLE.modifyState(type, state)
-            } else {
-                source = source.modifyState(type, state)
-            }
-            computeNewState(currState, source, mediator)
+        if (remote) {
+            mediator = LoadStates.IDLE.modifyState(type, state)
+        } else {
+            source = source.modifyState(type, state)
         }
+        computeNewState(currState, source, mediator)
+    }
 
     fun get(type: LoadType, remote: Boolean): LoadState? {
         val state = _stateFlow.value
@@ -81,15 +80,15 @@
     }
 
     /**
-     * Computes and dispatches the new CombinedLoadStates. No-op if new value is same as
-     * previous value.
+     * Computes and dispatches the new CombinedLoadStates. No-op if new value is same as previous
+     * value.
      *
      * We manually de-duplicate emissions to StateFlow and to listeners even though
      * [MutableStateFlow.update] de-duplicates automatically in that duplicated values are set but
      * not sent to collectors. However it doesn't indicate whether the new value is indeed a
-     * duplicate or not, so we still need to manually compare previous/updated values before
-     * sending to listeners. Because of that, we manually de-dupe both stateFlow and listener
-     * emissions to ensure they are in sync.
+     * duplicate or not, so we still need to manually compare previous/updated values before sending
+     * to listeners. Because of that, we manually de-dupe both stateFlow and listener emissions to
+     * ensure they are in sync.
      */
     private fun dispatchNewState(
         computeNewState: (currState: CombinedLoadStates?) -> CombinedLoadStates
@@ -113,25 +112,27 @@
         newSource: LoadStates,
         newRemote: LoadStates?
     ): CombinedLoadStates {
-        val refresh = computeHelperState(
-            previousState = previousState?.refresh ?: NotLoading.Incomplete,
-            sourceRefreshState = newSource.refresh,
-            sourceState = newSource.refresh,
-            remoteState = newRemote?.refresh
-
-        )
-        val prepend = computeHelperState(
-            previousState = previousState?.prepend ?: NotLoading.Incomplete,
-            sourceRefreshState = newSource.refresh,
-            sourceState = newSource.prepend,
-            remoteState = newRemote?.prepend
-        )
-        val append = computeHelperState(
-            previousState = previousState?.append ?: NotLoading.Incomplete,
-            sourceRefreshState = newSource.refresh,
-            sourceState = newSource.append,
-            remoteState = newRemote?.append
-        )
+        val refresh =
+            computeHelperState(
+                previousState = previousState?.refresh ?: NotLoading.Incomplete,
+                sourceRefreshState = newSource.refresh,
+                sourceState = newSource.refresh,
+                remoteState = newRemote?.refresh
+            )
+        val prepend =
+            computeHelperState(
+                previousState = previousState?.prepend ?: NotLoading.Incomplete,
+                sourceRefreshState = newSource.refresh,
+                sourceState = newSource.prepend,
+                remoteState = newRemote?.prepend
+            )
+        val append =
+            computeHelperState(
+                previousState = previousState?.append ?: NotLoading.Incomplete,
+                sourceRefreshState = newSource.refresh,
+                sourceState = newSource.append,
+                remoteState = newRemote?.append
+            )
 
         return CombinedLoadStates(
             refresh = refresh,
@@ -143,11 +144,11 @@
     }
 
     /**
-     * Computes the next value for the convenience helpers in [CombinedLoadStates], which
-     * generally defers to remote state, but waits for both source and remote states to become
-     * [NotLoading] before moving to that state. This provides a reasonable default for the common
-     * use-case where you generally want to wait for both RemoteMediator to return and for the
-     * update to get applied before signaling to UI that a network fetch has "finished".
+     * Computes the next value for the convenience helpers in [CombinedLoadStates], which generally
+     * defers to remote state, but waits for both source and remote states to become [NotLoading]
+     * before moving to that state. This provides a reasonable default for the common use-case where
+     * you generally want to wait for both RemoteMediator to return and for the update to get
+     * applied before signaling to UI that a network fetch has "finished".
      */
     private fun computeHelperState(
         previousState: LoadState,
@@ -158,11 +159,12 @@
         if (remoteState == null) return sourceState
 
         return when (previousState) {
-            is Loading -> when {
-                sourceRefreshState is NotLoading && remoteState is NotLoading -> remoteState
-                remoteState is Error -> remoteState
-                else -> previousState
-            }
+            is Loading ->
+                when {
+                    sourceRefreshState is NotLoading && remoteState is NotLoading -> remoteState
+                    remoteState is Error -> remoteState
+                    else -> previousState
+                }
             else -> remoteState
         }
     }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableLoadStateCollection.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableLoadStateCollection.kt
index f9884e4..dbf8a92 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableLoadStateCollection.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/MutableLoadStateCollection.kt
@@ -23,23 +23,26 @@
     var prepend: LoadState = NotLoading.Incomplete
     var append: LoadState = NotLoading.Incomplete
 
-    fun snapshot() = LoadStates(
-        refresh = refresh,
-        prepend = prepend,
-        append = append,
-    )
+    fun snapshot() =
+        LoadStates(
+            refresh = refresh,
+            prepend = prepend,
+            append = append,
+        )
 
-    fun get(loadType: LoadType) = when (loadType) {
-        LoadType.REFRESH -> refresh
-        LoadType.APPEND -> append
-        LoadType.PREPEND -> prepend
-    }
+    fun get(loadType: LoadType) =
+        when (loadType) {
+            LoadType.REFRESH -> refresh
+            LoadType.APPEND -> append
+            LoadType.PREPEND -> prepend
+        }
 
-    fun set(type: LoadType, state: LoadState) = when (type) {
-        LoadType.REFRESH -> refresh = state
-        LoadType.APPEND -> append = state
-        LoadType.PREPEND -> prepend = state
-    }
+    fun set(type: LoadType, state: LoadState) =
+        when (type) {
+            LoadType.REFRESH -> refresh = state
+            LoadType.APPEND -> append = state
+            LoadType.PREPEND -> prepend = state
+        }
 
     fun set(states: LoadStates) {
         refresh = states.refresh
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageEvent.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageEvent.kt
index 3522681..4220801 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageEvent.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageEvent.kt
@@ -34,9 +34,9 @@
      * generation.
      *
      * @param sourceLoadStates source [LoadStates] to emit if non-null, ignored otherwise, allowing
-     * the presenter receiving this event to maintain the previous state.
+     *   the presenter receiving this event to maintain the previous state.
      * @param mediatorLoadStates mediator [LoadStates] to emit if non-null, ignored otherwise,
-     * allowing the presenter receiving this event to maintain its previous state.
+     *   allowing the presenter receiving this event to maintain its previous state.
      */
     data class StaticList<T : Any>(
         val data: List<T>,
@@ -82,7 +82,8 @@
 
     // Intentional to prefer Refresh, Prepend, Append constructors from Companion.
     @Suppress("DataClassPrivateConstructor")
-    data class Insert<T : Any> private constructor(
+    data class Insert<T : Any>
+    private constructor(
         val loadType: LoadType,
         val pages: List<TransformablePage<T>>,
         val placeholdersBefore: Int,
@@ -113,14 +114,15 @@
 
         internal inline fun <R : Any> transformPages(
             transform: (List<TransformablePage<T>>) -> List<TransformablePage<R>>
-        ): Insert<R> = Insert(
-            loadType = loadType,
-            pages = transform(pages),
-            placeholdersBefore = placeholdersBefore,
-            placeholdersAfter = placeholdersAfter,
-            sourceLoadStates = sourceLoadStates,
-            mediatorLoadStates = mediatorLoadStates,
-        )
+        ): Insert<R> =
+            Insert(
+                loadType = loadType,
+                pages = transform(pages),
+                placeholdersBefore = placeholdersBefore,
+                placeholdersAfter = placeholdersAfter,
+                sourceLoadStates = sourceLoadStates,
+                mediatorLoadStates = mediatorLoadStates,
+            )
 
         override suspend fun <R : Any> map(transform: suspend (T) -> R): PageEvent<R> = mapPages {
             TransformablePage(
@@ -175,58 +177,63 @@
                 placeholdersAfter: Int,
                 sourceLoadStates: LoadStates,
                 mediatorLoadStates: LoadStates? = null
-            ) = Insert(
-                REFRESH,
-                pages,
-                placeholdersBefore,
-                placeholdersAfter,
-                sourceLoadStates,
-                mediatorLoadStates,
-            )
+            ) =
+                Insert(
+                    REFRESH,
+                    pages,
+                    placeholdersBefore,
+                    placeholdersAfter,
+                    sourceLoadStates,
+                    mediatorLoadStates,
+                )
 
             fun <T : Any> Prepend(
                 pages: List<TransformablePage<T>>,
                 placeholdersBefore: Int,
                 sourceLoadStates: LoadStates,
                 mediatorLoadStates: LoadStates? = null
-            ) = Insert(
-                PREPEND,
-                pages,
-                placeholdersBefore,
-                -1,
-                sourceLoadStates,
-                mediatorLoadStates,
-            )
+            ) =
+                Insert(
+                    PREPEND,
+                    pages,
+                    placeholdersBefore,
+                    -1,
+                    sourceLoadStates,
+                    mediatorLoadStates,
+                )
 
             fun <T : Any> Append(
                 pages: List<TransformablePage<T>>,
                 placeholdersAfter: Int,
                 sourceLoadStates: LoadStates,
                 mediatorLoadStates: LoadStates? = null
-            ) = Insert(
-                APPEND,
-                pages,
-                -1,
-                placeholdersAfter,
-                sourceLoadStates,
-                mediatorLoadStates,
-            )
+            ) =
+                Insert(
+                    APPEND,
+                    pages,
+                    -1,
+                    placeholdersAfter,
+                    sourceLoadStates,
+                    mediatorLoadStates,
+                )
 
             /**
              * Empty refresh, used to convey initial state.
              *
              * Note - has no remote state, so remote state may be added over time
              */
-            val EMPTY_REFRESH_LOCAL: Insert<Any> = Refresh(
-                pages = listOf(TransformablePage.EMPTY_INITIAL_PAGE),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                sourceLoadStates = LoadStates(
-                    refresh = LoadState.NotLoading.Incomplete,
-                    prepend = LoadState.NotLoading.Complete,
-                    append = LoadState.NotLoading.Complete,
-                ),
-            )
+            val EMPTY_REFRESH_LOCAL: Insert<Any> =
+                Refresh(
+                    pages = listOf(TransformablePage.EMPTY_INITIAL_PAGE),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    sourceLoadStates =
+                        LoadStates(
+                            refresh = LoadState.NotLoading.Incomplete,
+                            prepend = LoadState.NotLoading.Complete,
+                            append = LoadState.NotLoading.Complete,
+                        ),
+                )
         }
 
         override fun toString(): String {
@@ -248,13 +255,9 @@
     // TODO: b/195658070 consider refactoring Drop events to carry full source/mediator states.
     data class Drop<T : Any>(
         val loadType: LoadType,
-        /**
-         * Smallest [TransformablePage.originalPageOffsets] to drop; inclusive.
-         */
+        /** Smallest [TransformablePage.originalPageOffsets] to drop; inclusive. */
         val minPageOffset: Int,
-        /**
-         * Largest [TransformablePage.originalPageOffsets] to drop; inclusive
-         */
+        /** Largest [TransformablePage.originalPageOffsets] to drop; inclusive */
         val maxPageOffset: Int,
         val placeholdersRemaining: Int
     ) : PageEvent<T>() {
@@ -267,21 +270,23 @@
             }
         }
 
-        val pageCount get() = maxPageOffset - minPageOffset + 1
+        val pageCount
+            get() = maxPageOffset - minPageOffset + 1
 
         override fun toString(): String {
-            val direction = when (loadType) {
-                APPEND -> "end"
-                PREPEND -> "front"
-                else -> throw IllegalArgumentException(
-                    "Drop load type must be PREPEND or APPEND"
-                )
-            }
+            val direction =
+                when (loadType) {
+                    APPEND -> "end"
+                    PREPEND -> "front"
+                    else ->
+                        throw IllegalArgumentException("Drop load type must be PREPEND or APPEND")
+                }
             return """PageEvent.Drop from the $direction (
                     |   minPageOffset: $minPageOffset
                     |   maxPageOffset: $maxPageOffset
                     |   placeholdersRemaining: $placeholdersRemaining
-                    |)""".trimMargin()
+                    |)"""
+                .trimMargin()
         }
     }
 
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcher.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcher.kt
index 88e80cc..409cfdd 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcher.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcher.kt
@@ -33,8 +33,7 @@
     private val pagingSourceFactory: suspend () -> PagingSource<Key, Value>,
     private val initialKey: Key?,
     private val config: PagingConfig,
-    @OptIn(ExperimentalPagingApi::class)
-    remoteMediator: RemoteMediator<Key, Value>? = null
+    @OptIn(ExperimentalPagingApi::class) remoteMediator: RemoteMediator<Key, Value>? = null
 ) {
     /**
      * Channel of refresh signals that would trigger a new instance of [PageFetcherSnapshot].
@@ -42,7 +41,7 @@
      * `false` otherwise.
      *
      * NOTE: This channel is conflated, which means it has a buffer size of 1, and will always
-     *  broadcast the latest value received.
+     * broadcast the latest value received.
      */
     private val refreshEvents = ConflatedEventBus<Boolean>()
 
@@ -52,17 +51,15 @@
     // the paging.
     val flow: Flow<PagingData<Value>> = simpleChannelFlow {
         @OptIn(ExperimentalPagingApi::class)
-        val remoteMediatorAccessor = remoteMediator?.let {
-            RemoteMediatorAccessor(this, it)
-        }
+        val remoteMediatorAccessor = remoteMediator?.let { RemoteMediatorAccessor(this, it) }
 
-        refreshEvents
-            .flow
+        refreshEvents.flow
             .onStart {
                 @OptIn(ExperimentalPagingApi::class)
                 emit(remoteMediatorAccessor?.initialize() == LAUNCH_INITIAL_REFRESH)
             }
-            .simpleScan(null) { previousGeneration: GenerationInfo<Key, Value>?,
+            .simpleScan(null) {
+                previousGeneration: GenerationInfo<Key, Value>?,
                 triggerRemoteRefresh: Boolean ->
                 // Enable refresh if this is the first generation and we have LAUNCH_INITIAL_REFRESH
                 // or if this generation was started due to [refresh] being invoked.
@@ -70,17 +67,19 @@
                     remoteMediatorAccessor?.allowRefresh()
                 }
 
-                val pagingSource = generateNewPagingSource(
-                    previousPagingSource = previousGeneration?.snapshot?.pagingSource
-                )
+                val pagingSource =
+                    generateNewPagingSource(
+                        previousPagingSource = previousGeneration?.snapshot?.pagingSource
+                    )
 
                 var previousPagingState = previousGeneration?.snapshot?.currentPagingState()
 
                 // If cached PagingState had pages loaded, but previous generation didn't, use
                 // the cached PagingState to handle cases where invalidation happens too quickly,
                 // so that getRefreshKey and remote refresh at least have some data to work with.
-                if (previousPagingState?.pages.isNullOrEmpty() &&
-                    previousGeneration?.state?.pages?.isNotEmpty() == true
+                if (
+                    previousPagingState?.pages.isNullOrEmpty() &&
+                        previousGeneration?.state?.pages?.isNotEmpty() == true
                 ) {
                     previousPagingState = previousGeneration.state
                 }
@@ -89,43 +88,51 @@
                 // re-use last PagingState that successfully loaded pages and has an anchorPosition.
                 // This prevents rapid invalidation from deleting the anchorPosition if the
                 // previous generation didn't have time to load before getting invalidated.
-                if (previousPagingState?.anchorPosition == null &&
-                    previousGeneration?.state?.anchorPosition != null
+                if (
+                    previousPagingState?.anchorPosition == null &&
+                        previousGeneration?.state?.anchorPosition != null
                 ) {
                     previousPagingState = previousGeneration.state
                 }
 
-                val initialKey: Key? = when (previousPagingState) {
-                    null -> initialKey
-                    else -> pagingSource.getRefreshKey(previousPagingState).also {
-                        log(DEBUG) { "Refresh key $it returned from PagingSource $pagingSource" }
+                val initialKey: Key? =
+                    when (previousPagingState) {
+                        null -> initialKey
+                        else ->
+                            pagingSource.getRefreshKey(previousPagingState).also {
+                                log(DEBUG) {
+                                    "Refresh key $it returned from PagingSource $pagingSource"
+                                }
+                            }
                     }
-                }
 
                 previousGeneration?.snapshot?.close()
                 previousGeneration?.job?.cancel()
 
                 GenerationInfo(
-                    snapshot = PageFetcherSnapshot(
-                        initialKey = initialKey,
-                        pagingSource = pagingSource,
-                        config = config,
-                        retryFlow = retryEvents.flow,
-                        // Only trigger remote refresh on refresh signals that do not originate from
-                        // initialization or PagingSource invalidation.
-                        remoteMediatorConnection = remoteMediatorAccessor,
-                        jumpCallback = this@PageFetcher::refresh,
-                        previousPagingState = previousPagingState,
-                    ),
+                    snapshot =
+                        PageFetcherSnapshot(
+                            initialKey = initialKey,
+                            pagingSource = pagingSource,
+                            config = config,
+                            retryFlow = retryEvents.flow,
+                            // Only trigger remote refresh on refresh signals that do not originate
+                            // from
+                            // initialization or PagingSource invalidation.
+                            remoteMediatorConnection = remoteMediatorAccessor,
+                            jumpCallback = this@PageFetcher::refresh,
+                            previousPagingState = previousPagingState,
+                        ),
                     state = previousPagingState,
                     job = Job(),
                 )
             }
             .filterNotNull()
             .simpleMapLatest { generation ->
-                val downstreamFlow = generation.snapshot
-                    .injectRemoteEvents(generation.job, remoteMediatorAccessor)
-                    .onEach { log(VERBOSE) { "Sent $it" } }
+                val downstreamFlow =
+                    generation.snapshot
+                        .injectRemoteEvents(generation.job, remoteMediatorAccessor)
+                        .onEach { log(VERBOSE) { "Sent $it" } }
 
                 PagingData(
                     flow = downstreamFlow,
@@ -217,7 +224,8 @@
             An instance of PagingSource was re-used when Pager expected to create a new
             instance. Ensure that the pagingSourceFactory passed to Pager always returns a
             new instance of PagingSource.
-            """.trimIndent()
+            """
+                .trimIndent()
         }
 
         // Hook up refresh signals from PagingSource.
@@ -237,9 +245,9 @@
         override fun refresh() = this@PageFetcher.refresh()
     }
 
-    inner class PagerHintReceiver<Key : Any, Value : Any> constructor(
-        @get:VisibleForTesting
-        internal val pageFetcherSnapshot: PageFetcherSnapshot<Key, Value>,
+    inner class PagerHintReceiver<Key : Any, Value : Any>
+    constructor(
+        @get:VisibleForTesting internal val pageFetcherSnapshot: PageFetcherSnapshot<Key, Value>,
     ) : HintReceiver {
 
         override fun accessHint(viewportHint: ViewportHint) {
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshot.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshot.kt
index 2ca05b6..858e532 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshot.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshot.kt
@@ -49,9 +49,9 @@
 import kotlinx.coroutines.launch
 
 /**
- * Holds a generation of pageable data, a snapshot of data loaded by [PagingSource]. An instance
- * of [PageFetcherSnapshot] and its corresponding [PageFetcherSnapshotState] should be launched
- * within a scope that is cancelled when [PagingSource.invalidate] is called.
+ * Holds a generation of pageable data, a snapshot of data loaded by [PagingSource]. An instance of
+ * [PageFetcherSnapshot] and its corresponding [PageFetcherSnapshotState] should be launched within
+ * a scope that is cancelled when [PagingSource.invalidate] is called.
  */
 internal class PageFetcherSnapshot<Key : Any, Value : Any>(
     internal val initialKey: Key?,
@@ -77,113 +77,124 @@
 
     private val pageEventChannelFlowJob = Job()
 
-    val pageEventFlow: Flow<PageEvent<Value>> = cancelableChannelFlow<PageEvent<Value>>(
-        pageEventChannelFlowJob
-    ) {
-        check(pageEventChCollected.compareAndSet(false, true)) {
-            "Attempt to collect twice from pageEventFlow, which is an illegal operation. Did you " +
-                "forget to call Flow<PagingData<*>>.cachedIn(coroutineScope)?"
-        }
-
-        // Start collection on pageEventCh, which the rest of this class uses to send PageEvents
-        // to this flow.
-        launch {
-            pageEventCh.consumeAsFlow().collect {
-                // Protect against races where a subsequent call to submitData invoked close(),
-                // but a pageEvent arrives after closing causing ClosedSendChannelException.
-                try {
-                    send(it)
-                } catch (e: ClosedSendChannelException) {
-                    // Safe to drop PageEvent here, since collection has been cancelled.
+    val pageEventFlow: Flow<PageEvent<Value>> =
+        cancelableChannelFlow<PageEvent<Value>>(pageEventChannelFlowJob) {
+                check(pageEventChCollected.compareAndSet(false, true)) {
+                    "Attempt to collect twice from pageEventFlow, which is an illegal operation. Did you " +
+                        "forget to call Flow<PagingData<*>>.cachedIn(coroutineScope)?"
                 }
-            }
-        }
 
-        // Wrap collection behind a RendezvousChannel to prevent the RetryChannel from buffering
-        // retry signals.
-        val retryChannel = Channel<Unit>(Channel.RENDEZVOUS)
-        launch { retryFlow.collect { retryChannel.trySend(it) } }
-
-        // Start collection on retry signals.
-        launch {
-            retryChannel.consumeAsFlow()
-                .collect {
-                    val (sourceLoadStates, remotePagingState) = stateHolder.withLock { state ->
-                        state.sourceLoadStates.snapshot() to state.currentPagingState(
-                            hintHandler.lastAccessHint
-                        )
-                    }
-                    // tell remote mediator to retry and it will trigger necessary work / change
-                    // its state as necessary.
-                    remoteMediatorConnection?.retryFailed(remotePagingState)
-                    // change source (local) states
-                    sourceLoadStates.forEach { loadType, loadState ->
-                        if (loadState !is Error) return@forEach
-
-                        // Reset error state before sending hint.
-                        if (loadType != REFRESH) {
-                            stateHolder.withLock { state -> state.setLoading(loadType) }
+                // Start collection on pageEventCh, which the rest of this class uses to send
+                // PageEvents
+                // to this flow.
+                launch {
+                    pageEventCh.consumeAsFlow().collect {
+                        // Protect against races where a subsequent call to submitData invoked
+                        // close(),
+                        // but a pageEvent arrives after closing causing ClosedSendChannelException.
+                        try {
+                            send(it)
+                        } catch (e: ClosedSendChannelException) {
+                            // Safe to drop PageEvent here, since collection has been cancelled.
                         }
+                    }
+                }
 
-                        retryLoadError(
-                            loadType = loadType,
-                            viewportHint = when (loadType) {
-                                // ViewportHint is only used when retrying source PREPEND / APPEND.
-                                REFRESH -> null
-                                else -> stateHolder.withLock { state ->
-                                    state.failedHintsByLoadType[loadType]
+                // Wrap collection behind a RendezvousChannel to prevent the RetryChannel from
+                // buffering
+                // retry signals.
+                val retryChannel = Channel<Unit>(Channel.RENDEZVOUS)
+                launch { retryFlow.collect { retryChannel.trySend(it) } }
+
+                // Start collection on retry signals.
+                launch {
+                    retryChannel.consumeAsFlow().collect {
+                        val (sourceLoadStates, remotePagingState) =
+                            stateHolder.withLock { state ->
+                                state.sourceLoadStates.snapshot() to
+                                    state.currentPagingState(hintHandler.lastAccessHint)
+                            }
+                        // tell remote mediator to retry and it will trigger necessary work / change
+                        // its state as necessary.
+                        remoteMediatorConnection?.retryFailed(remotePagingState)
+                        // change source (local) states
+                        sourceLoadStates.forEach { loadType, loadState ->
+                            if (loadState !is Error) return@forEach
+
+                            // Reset error state before sending hint.
+                            if (loadType != REFRESH) {
+                                stateHolder.withLock { state -> state.setLoading(loadType) }
+                            }
+
+                            retryLoadError(
+                                loadType = loadType,
+                                viewportHint =
+                                    when (loadType) {
+                                        // ViewportHint is only used when retrying source PREPEND /
+                                        // APPEND.
+                                        REFRESH -> null
+                                        else ->
+                                            stateHolder.withLock { state ->
+                                                state.failedHintsByLoadType[loadType]
+                                            }
+                                    }
+                            )
+
+                            // If retrying REFRESH from PagingSource succeeds, start collection on
+                            // ViewportHints for PREPEND / APPEND loads.
+                            if (loadType == REFRESH) {
+                                val newRefreshState =
+                                    stateHolder.withLock { state ->
+                                        state.sourceLoadStates.get(REFRESH)
+                                    }
+
+                                if (newRefreshState !is Error) {
+                                    startConsumingHints()
                                 }
                             }
-                        )
-
-                        // If retrying REFRESH from PagingSource succeeds, start collection on
-                        // ViewportHints for PREPEND / APPEND loads.
-                        if (loadType == REFRESH) {
-                            val newRefreshState = stateHolder.withLock { state ->
-                                state.sourceLoadStates.get(REFRESH)
-                            }
-
-                            if (newRefreshState !is Error) {
-                                startConsumingHints()
-                            }
                         }
                     }
                 }
-        }
 
-        // NOTE: We always try to enqueue on init, but this request will only go through if
-        // [RemoteMediatorConnection.refreshEnabled] is `true`. It is important for it to be done
-        // this way to ensure that we always have a valid [LoadStates] for [PagingSource] before we
-        // trigger remote load, in case remote emits multiple [LoadStates] before [PagingSource]
-        // starts, which would cause us to drop remote [LoadStates] emissions since we wait for
-        // valid events from both.
-        remoteMediatorConnection?.let {
-            val pagingState = previousPagingState ?: stateHolder.withLock { state ->
-                state.currentPagingState(null)
+                // NOTE: We always try to enqueue on init, but this request will only go through if
+                // [RemoteMediatorConnection.refreshEnabled] is `true`. It is important for it to be
+                // done
+                // this way to ensure that we always have a valid [LoadStates] for [PagingSource]
+                // before we
+                // trigger remote load, in case remote emits multiple [LoadStates] before
+                // [PagingSource]
+                // starts, which would cause us to drop remote [LoadStates] emissions since we wait
+                // for
+                // valid events from both.
+                remoteMediatorConnection?.let {
+                    val pagingState =
+                        previousPagingState
+                            ?: stateHolder.withLock { state -> state.currentPagingState(null) }
+                    it.requestRefreshIfAllowed(pagingState)
+                }
+
+                // Setup finished, start the initial load even if RemoteMediator throws an error.
+                doInitialLoad()
+
+                // Only start collection on ViewportHints if the initial load succeeded.
+                if (
+                    stateHolder.withLock { state -> state.sourceLoadStates.get(REFRESH) } !is Error
+                ) {
+                    startConsumingHints()
+                }
             }
-            it.requestRefreshIfAllowed(pagingState)
-        }
-
-        // Setup finished, start the initial load even if RemoteMediator throws an error.
-        doInitialLoad()
-
-        // Only start collection on ViewportHints if the initial load succeeded.
-        if (stateHolder.withLock { state -> state.sourceLoadStates.get(REFRESH) } !is Error) {
-            startConsumingHints()
-        }
-    }.onStart {
-        // Immediately emit the initial load state when creating a new generation to give
-        // PageFetcher a real event from source side as soon as possible. This allows PageFetcher
-        // to operate on this stream in a way that waits for a real event (for example, by using
-        // Flow.combine) without the consequence of getting "stuck".
-        emit(LoadStateUpdate(stateHolder.withLock { it.sourceLoadStates.snapshot() }))
-    }
+            .onStart {
+                // Immediately emit the initial load state when creating a new generation to give
+                // PageFetcher a real event from source side as soon as possible. This allows
+                // PageFetcher
+                // to operate on this stream in a way that waits for a real event (for example, by
+                // using
+                // Flow.combine) without the consequence of getting "stuck".
+                emit(LoadStateUpdate(stateHolder.withLock { it.sourceLoadStates.snapshot() }))
+            }
 
     @Suppress("SuspendFunctionOnCoroutineScope")
-    private suspend fun retryLoadError(
-        loadType: LoadType,
-        viewportHint: ViewportHint?
-    ) {
+    private suspend fun retryLoadError(loadType: LoadType, viewportHint: ViewportHint?) {
         when (loadType) {
             REFRESH -> {
                 doInitialLoad()
@@ -216,8 +227,9 @@
         // Pseudo-tiling via invalidation on jumps.
         if (config.jumpThreshold != COUNT_UNDEFINED) {
             launch {
-                val jumpHint = merge(hintHandler.hintFor(APPEND), hintHandler.hintFor(PREPEND))
-                    .firstOrNull { hint ->
+                val jumpHint =
+                    merge(hintHandler.hintFor(APPEND), hintHandler.hintFor(PREPEND)).firstOrNull {
+                        hint ->
                         hint.presentedItemsBefore * -1 > config.jumpThreshold ||
                             hint.presentedItemsAfter * -1 > config.jumpThreshold
                     }
@@ -229,56 +241,60 @@
         }
 
         launch {
-            stateHolder.withLock { state -> state.consumePrependGenerationIdAsFlow() }
+            stateHolder
+                .withLock { state -> state.consumePrependGenerationIdAsFlow() }
                 .collectAsGenerationalViewportHints(PREPEND)
         }
 
         launch {
-            stateHolder.withLock { state -> state.consumeAppendGenerationIdAsFlow() }
+            stateHolder
+                .withLock { state -> state.consumeAppendGenerationIdAsFlow() }
                 .collectAsGenerationalViewportHints(APPEND)
         }
     }
 
     /**
      * Maps a [Flow] of generation ids from [PageFetcherSnapshotState] to [ViewportHint]s from
-     * [hintHandler] with back-pressure handling via conflation by prioritizing hints which
-     * either update presenter state or those that would load the most items.
+     * [hintHandler] with back-pressure handling via conflation by prioritizing hints which either
+     * update presenter state or those that would load the most items.
      *
      * @param loadType [PREPEND] or [APPEND]
      */
-    private suspend fun Flow<Int>.collectAsGenerationalViewportHints(
-        loadType: LoadType
-    ) = simpleFlatMapLatest { generationId ->
-        // Reset state to Idle and setup a new flow for consuming incoming load hints.
-        // Subsequent generationIds are normally triggered by cancellation.
-        stateHolder.withLock { state ->
-            // Skip this generationId of loads if there is no more to load in this
-            // direction. In the case of the terminal page getting dropped, a new
-            // generationId will be sent after load state is updated to Idle.
-            if (state.sourceLoadStates.get(loadType) == NotLoading.Complete) {
-                return@simpleFlatMapLatest flowOf()
-            } else if (state.sourceLoadStates.get(loadType) !is Error) {
-                state.sourceLoadStates.set(loadType, NotLoading.Incomplete)
+    private suspend fun Flow<Int>.collectAsGenerationalViewportHints(loadType: LoadType) =
+        simpleFlatMapLatest { generationId ->
+                // Reset state to Idle and setup a new flow for consuming incoming load hints.
+                // Subsequent generationIds are normally triggered by cancellation.
+                stateHolder.withLock { state ->
+                    // Skip this generationId of loads if there is no more to load in this
+                    // direction. In the case of the terminal page getting dropped, a new
+                    // generationId will be sent after load state is updated to Idle.
+                    if (state.sourceLoadStates.get(loadType) == NotLoading.Complete) {
+                        return@simpleFlatMapLatest flowOf()
+                    } else if (state.sourceLoadStates.get(loadType) !is Error) {
+                        state.sourceLoadStates.set(loadType, NotLoading.Incomplete)
+                    }
+                }
+
+                hintHandler
+                    .hintFor(loadType)
+                    // Prevent infinite loop when competing PREPEND / APPEND cancel each other
+                    .drop(if (generationId == 0) 0 else 1)
+                    .map { hint -> GenerationalViewportHint(generationId, hint) }
             }
-        }
+            .simpleRunningReduce { previous, next ->
+                // Prioritize new hints that would load the maximum number of items.
+                if (next.shouldPrioritizeOver(previous, loadType)) next else previous
+            }
+            .conflate()
+            .collect { generationalHint -> doLoad(loadType, generationalHint) }
 
-        hintHandler.hintFor(loadType)
-            // Prevent infinite loop when competing PREPEND / APPEND cancel each other
-            .drop(if (generationId == 0) 0 else 1)
-            .map { hint -> GenerationalViewportHint(generationId, hint) }
-    }.simpleRunningReduce { previous, next ->
-        // Prioritize new hints that would load the maximum number of items.
-        if (next.shouldPrioritizeOver(previous, loadType)) next else previous
-    }.conflate().collect { generationalHint ->
-        doLoad(loadType, generationalHint)
-    }
-
-    private fun loadParams(loadType: LoadType, key: Key?) = LoadParams.create(
-        loadType = loadType,
-        key = key,
-        loadSize = if (loadType == REFRESH) config.initialLoadSize else config.pageSize,
-        placeholdersEnabled = config.enablePlaceholders,
-    )
+    private fun loadParams(loadType: LoadType, key: Key?) =
+        LoadParams.create(
+            loadType = loadType,
+            key = key,
+            loadSize = if (loadType == REFRESH) config.initialLoadSize else config.pageSize,
+            placeholdersEnabled = config.enablePlaceholders,
+        )
 
     private suspend fun doInitialLoad() {
         stateHolder.withLock { state -> state.setLoading(REFRESH) }
@@ -291,29 +307,21 @@
             is Page<Key, Value> -> {
                 // Atomically update load states + pages while still holding the mutex, otherwise
                 // remote state can race here and lead to confusing load states.
-                val insertApplied = stateHolder.withLock { state ->
-                    val insertApplied = state.insert(0, REFRESH, result)
+                val insertApplied =
+                    stateHolder.withLock { state ->
+                        val insertApplied = state.insert(0, REFRESH, result)
 
-                    // Update loadStates which are sent along with this load's Insert PageEvent.
-                    state.sourceLoadStates.set(
-                        type = REFRESH,
-                        state = NotLoading.Incomplete
-                    )
-                    if (result.prevKey == null) {
-                        state.sourceLoadStates.set(
-                            type = PREPEND,
-                            state = NotLoading.Complete
-                        )
-                    }
-                    if (result.nextKey == null) {
-                        state.sourceLoadStates.set(
-                            type = APPEND,
-                            state = NotLoading.Complete
-                        )
-                    }
+                        // Update loadStates which are sent along with this load's Insert PageEvent.
+                        state.sourceLoadStates.set(type = REFRESH, state = NotLoading.Incomplete)
+                        if (result.prevKey == null) {
+                            state.sourceLoadStates.set(type = PREPEND, state = NotLoading.Complete)
+                        }
+                        if (result.nextKey == null) {
+                            state.sourceLoadStates.set(type = APPEND, state = NotLoading.Complete)
+                        }
 
-                    insertApplied
-                }
+                        insertApplied
+                    }
 
                 // Send insert event after load state updates, so that endOfPaginationReached is
                 // correctly reflected in the insert event. Note that we only send the event if the
@@ -322,9 +330,7 @@
                     log(DEBUG) { loadResultLog(REFRESH, initialKey, result) }
 
                     stateHolder.withLock { state ->
-                        with(state) {
-                            pageEventCh.send(result.toPageEvent(REFRESH))
-                        }
+                        with(state) { pageEventCh.send(result.toPageEvent(REFRESH)) }
                     }
                 } else {
                     log(VERBOSE) { loadResultLog(REFRESH, initialKey, null) }
@@ -333,9 +339,10 @@
                 // Launch any RemoteMediator boundary calls after applying initial insert.
                 if (remoteMediatorConnection != null) {
                     if (result.prevKey == null || result.nextKey == null) {
-                        val pagingState = stateHolder.withLock { state ->
-                            state.currentPagingState(hintHandler.lastAccessHint)
-                        }
+                        val pagingState =
+                            stateHolder.withLock { state ->
+                                state.currentPagingState(hintHandler.lastAccessHint)
+                            }
 
                         if (result.prevKey == null) {
                             remoteMediatorConnection.requestLoad(PREPEND, pagingState)
@@ -362,10 +369,7 @@
     }
 
     // TODO: Consider making this a transform operation which emits PageEvents
-    private suspend fun doLoad(
-        loadType: LoadType,
-        generationalHint: GenerationalViewportHint
-    ) {
+    private suspend fun doLoad(loadType: LoadType, generationalHint: GenerationalViewportHint) {
         require(loadType != REFRESH) { "Use doInitialLoad for LoadType == REFRESH" }
 
         // If placeholder counts differ between the hint and PageFetcherSnapshotState, then
@@ -407,13 +411,16 @@
             }
         }
 
-        var loadKey: Key? = stateHolder.withLock { state ->
-            state.nextLoadKeyOrNull(
-                loadType,
-                generationalHint.generationId,
-                generationalHint.hint.presentedItemsBeyondAnchor(loadType) + itemsLoaded,
-            )?.also { state.setLoading(loadType) }
-        }
+        var loadKey: Key? =
+            stateHolder.withLock { state ->
+                state
+                    .nextLoadKeyOrNull(
+                        loadType,
+                        generationalHint.generationId,
+                        generationalHint.hint.presentedItemsBeyondAnchor(loadType) + itemsLoaded,
+                    )
+                    ?.also { state.setLoading(loadType) }
+            }
 
         // Keep track of whether endOfPaginationReached so we can update LoadState accordingly when
         // this load loop terminates due to fulfilling prefetchDistance.
@@ -426,13 +433,15 @@
                 is Page<Key, Value> -> {
                     // First, check for common error case where the same key is re-used to load
                     // new pages, often resulting in infinite loops.
-                    val nextKey = when (loadType) {
-                        PREPEND -> result.prevKey
-                        APPEND -> result.nextKey
-                        else -> throw IllegalArgumentException(
-                            "Use doInitialLoad for LoadType == REFRESH"
-                        )
-                    }
+                    val nextKey =
+                        when (loadType) {
+                            PREPEND -> result.prevKey
+                            APPEND -> result.nextKey
+                            else ->
+                                throw IllegalArgumentException(
+                                    "Use doInitialLoad for LoadType == REFRESH"
+                                )
+                        }
 
                     check(pagingSource.keyReuseSupported || nextKey != loadKey) {
                         val keyFieldName = if (loadType == PREPEND) "prevKey" else "nextKey"
@@ -440,12 +449,14 @@
                             | sequential Pages loaded from a PagingSource. Re-using load keys in
                             | PagingSource is often an error, and must be explicitly enabled by
                             | overriding PagingSource.keyReuseSupported.
-                            """.trimMargin()
+                            """
+                            .trimMargin()
                     }
 
-                    val insertApplied = stateHolder.withLock { state ->
-                        state.insert(generationalHint.generationId, loadType, result)
-                    }
+                    val insertApplied =
+                        stateHolder.withLock { state ->
+                            state.insert(generationalHint.generationId, loadType, result)
+                        }
 
                     // Break if insert was skipped due to cancellation
                     if (!insertApplied) {
@@ -459,8 +470,9 @@
 
                     // Set endOfPaginationReached to false if no more data to load in current
                     // direction.
-                    if ((loadType == PREPEND && result.prevKey == null) ||
-                        (loadType == APPEND && result.nextKey == null)
+                    if (
+                        (loadType == PREPEND && result.prevKey == null) ||
+                            (loadType == APPEND && result.nextKey == null)
                     ) {
                         endOfPaginationReached = true
                     }
@@ -484,10 +496,11 @@
                 }
             }
 
-            val dropType = when (loadType) {
-                PREPEND -> APPEND
-                else -> PREPEND
-            }
+            val dropType =
+                when (loadType) {
+                    PREPEND -> APPEND
+                    else -> PREPEND
+                }
 
             stateHolder.withLock { state ->
                 state.dropEventOrNull(dropType, generationalHint.hint)?.let { event ->
@@ -495,28 +508,28 @@
                     pageEventCh.send(event)
                 }
 
-                loadKey = state.nextLoadKeyOrNull(
-                    loadType,
-                    generationalHint.generationId,
-                    generationalHint.hint.presentedItemsBeyondAnchor(loadType) + itemsLoaded,
-                )
+                loadKey =
+                    state.nextLoadKeyOrNull(
+                        loadType,
+                        generationalHint.generationId,
+                        generationalHint.hint.presentedItemsBeyondAnchor(loadType) + itemsLoaded,
+                    )
 
                 // Update load state to success if this is the final load result for this
                 // load hint, and only if we didn't error out.
                 if (loadKey == null && state.sourceLoadStates.get(loadType) !is Error) {
                     state.sourceLoadStates.set(
                         type = loadType,
-                        state = when {
-                            endOfPaginationReached -> NotLoading.Complete
-                            else -> NotLoading.Incomplete
-                        }
+                        state =
+                            when {
+                                endOfPaginationReached -> NotLoading.Complete
+                                else -> NotLoading.Incomplete
+                            }
                     )
                 }
 
                 // Send page event for successful insert, now that PagerState has been updated.
-                val pageEvent = with(state) {
-                    result.toPageEvent(loadType)
-                }
+                val pageEvent = with(state) { result.toPageEvent(loadType) }
 
                 pageEventCh.send(pageEvent)
             }
@@ -524,9 +537,10 @@
             val endsPrepend = params is LoadParams.Prepend && result.prevKey == null
             val endsAppend = params is LoadParams.Append && result.nextKey == null
             if (remoteMediatorConnection != null && (endsPrepend || endsAppend)) {
-                val pagingState = stateHolder.withLock { state ->
-                    state.currentPagingState(hintHandler.lastAccessHint)
-                }
+                val pagingState =
+                    stateHolder.withLock { state ->
+                        state.currentPagingState(hintHandler.lastAccessHint)
+                    }
 
                 if (endsPrepend) {
                     remoteMediatorConnection.requestLoad(PREPEND, pagingState)
@@ -578,9 +592,7 @@
         }
     }
 
-    /**
-     * The next load key for a [loadType] or `null` if we should stop loading in that direction.
-     */
+    /** The next load key for a [loadType] or `null` if we should stop loading in that direction. */
     private fun PageFetcherSnapshotState<Key, Value>.nextLoadKeyOrNull(
         loadType: LoadType,
         generationId: Int,
@@ -621,8 +633,7 @@
  * [PageFetcherSnapshot] to load more items.
  *
  * @param previous [GenerationalViewportHint] that would normally be processed next if [this]
- * [GenerationalViewportHint] was not sent.
- *
+ *   [GenerationalViewportHint] was not sent.
  * @return `true` if [this] [GenerationalViewportHint] should be prioritized over [previous].
  */
 internal fun GenerationalViewportHint.shouldPrioritizeOver(
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshotState.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshotState.kt
index a7a7f16..c501168 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshotState.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageFetcherSnapshotState.kt
@@ -40,9 +40,8 @@
  *
  * Note: This class is not thread-safe and must be guarded by a lock!
  */
-internal class PageFetcherSnapshotState<Key : Any, Value : Any> private constructor(
-    private val config: PagingConfig
-) {
+internal class PageFetcherSnapshotState<Key : Any, Value : Any>
+private constructor(private val config: PagingConfig) {
     private val _pages = mutableListOf<Page<Key, Value>>()
     internal val pages: List<Page<Key, Value>> = _pages
     internal var initialPageIndex = 0
@@ -53,36 +52,36 @@
 
     private var _placeholdersBefore = 0
 
-    /**
-     * Always greater than or equal to 0.
-     */
+    /** Always greater than or equal to 0. */
     internal var placeholdersBefore
-        get() = when {
-            config.enablePlaceholders -> _placeholdersBefore
-            else -> 0
-        }
-        set(value) {
-            _placeholdersBefore = when (value) {
-                COUNT_UNDEFINED -> 0
-                else -> value
+        get() =
+            when {
+                config.enablePlaceholders -> _placeholdersBefore
+                else -> 0
             }
+        set(value) {
+            _placeholdersBefore =
+                when (value) {
+                    COUNT_UNDEFINED -> 0
+                    else -> value
+                }
         }
 
     private var _placeholdersAfter = 0
 
-    /**
-     * Always greater than or equal to 0.
-     */
+    /** Always greater than or equal to 0. */
     internal var placeholdersAfter
-        get() = when {
-            config.enablePlaceholders -> _placeholdersAfter
-            else -> 0
-        }
-        set(value) {
-            _placeholdersAfter = when (value) {
-                COUNT_UNDEFINED -> 0
-                else -> value
+        get() =
+            when {
+                config.enablePlaceholders -> _placeholdersAfter
+                else -> 0
             }
+        set(value) {
+            _placeholdersAfter =
+                when (value) {
+                    COUNT_UNDEFINED -> 0
+                    else -> value
+                }
         }
 
     // Load generation ids used to respect cancellation in cases where suspending code continues to
@@ -92,40 +91,45 @@
     private val prependGenerationIdCh = Channel<Int>(Channel.CONFLATED)
     private val appendGenerationIdCh = Channel<Int>(Channel.CONFLATED)
 
-    internal fun generationId(loadType: LoadType): Int = when (loadType) {
-        REFRESH -> throw IllegalArgumentException("Cannot get loadId for loadType: REFRESH")
-        PREPEND -> prependGenerationId
-        APPEND -> appendGenerationId
-    }
+    internal fun generationId(loadType: LoadType): Int =
+        when (loadType) {
+            REFRESH -> throw IllegalArgumentException("Cannot get loadId for loadType: REFRESH")
+            PREPEND -> prependGenerationId
+            APPEND -> appendGenerationId
+        }
 
     /**
-     * Cache previous ViewportHint which triggered any failed PagingSource APPEND / PREPEND that
-     * we can later retry. This is so we always trigger loads based on hints, instead of having
-     * two different ways to trigger.
+     * Cache previous ViewportHint which triggered any failed PagingSource APPEND / PREPEND that we
+     * can later retry. This is so we always trigger loads based on hints, instead of having two
+     * different ways to trigger.
      */
     internal val failedHintsByLoadType = mutableMapOf<LoadType, ViewportHint>()
 
     // Only track the local load states, remote states are injected from PageFetcher. This class
     // only tracks state within a single generation from source side.
-    internal var sourceLoadStates = MutableLoadStateCollection().apply {
-        // Synchronously initialize REFRESH with Loading.
-        // NOTE: It is important that we do this synchronously on init, since PageFetcherSnapshot
-        // expects to send this initial state immediately. It is always correct for a new
-        // generation to immediately begin loading refresh, so rather than start with NotLoading
-        // then updating to Loading, we simply start with Loading immediately to create less
-        // churn downstream.
-        set(REFRESH, Loading)
-    }
+    internal var sourceLoadStates =
+        MutableLoadStateCollection().apply {
+            // Synchronously initialize REFRESH with Loading.
+            // NOTE: It is important that we do this synchronously on init, since
+            // PageFetcherSnapshot
+            // expects to send this initial state immediately. It is always correct for a new
+            // generation to immediately begin loading refresh, so rather than start with NotLoading
+            // then updating to Loading, we simply start with Loading immediately to create less
+            // churn downstream.
+            set(REFRESH, Loading)
+        }
         private set
 
     fun consumePrependGenerationIdAsFlow(): Flow<Int> {
-        return prependGenerationIdCh.consumeAsFlow()
-            .onStart { prependGenerationIdCh.trySend(prependGenerationId) }
+        return prependGenerationIdCh.consumeAsFlow().onStart {
+            prependGenerationIdCh.trySend(prependGenerationId)
+        }
     }
 
     fun consumeAppendGenerationIdAsFlow(): Flow<Int> {
-        return appendGenerationIdCh.consumeAsFlow()
-            .onStart { appendGenerationIdCh.trySend(appendGenerationId) }
+        return appendGenerationIdCh.consumeAsFlow().onStart {
+            appendGenerationIdCh.trySend(appendGenerationId)
+        }
     }
 
     /**
@@ -134,43 +138,45 @@
      * Note: This method should be called after state updated by [insert]
      *
      * TODO: Move this into Pager, which owns pageEventCh, since this logic is sensitive to its
-     *  implementation.
+     *   implementation.
      */
     internal fun Page<Key, Value>.toPageEvent(loadType: LoadType): PageEvent<Value> {
-        val sourcePageIndex = when (loadType) {
-            REFRESH -> 0
-            PREPEND -> 0 - initialPageIndex
-            APPEND -> pages.size - initialPageIndex - 1
-        }
+        val sourcePageIndex =
+            when (loadType) {
+                REFRESH -> 0
+                PREPEND -> 0 - initialPageIndex
+                APPEND -> pages.size - initialPageIndex - 1
+            }
         val pages = listOf(TransformablePage(sourcePageIndex, data))
         // Mediator state is always set to null here because PageFetcherSnapshot is not responsible
         // for Mediator state. Instead, PageFetcher will inject it if there is a remote mediator.
         return when (loadType) {
-            REFRESH -> Refresh(
-                pages = pages,
-                placeholdersBefore = placeholdersBefore,
-                placeholdersAfter = placeholdersAfter,
-                sourceLoadStates = sourceLoadStates.snapshot(),
-                mediatorLoadStates = null,
-            )
-            PREPEND -> Prepend(
-                pages = pages,
-                placeholdersBefore = placeholdersBefore,
-                sourceLoadStates = sourceLoadStates.snapshot(),
-                mediatorLoadStates = null,
-            )
-            APPEND -> Append(
-                pages = pages,
-                placeholdersAfter = placeholdersAfter,
-                sourceLoadStates = sourceLoadStates.snapshot(),
-                mediatorLoadStates = null,
-            )
+            REFRESH ->
+                Refresh(
+                    pages = pages,
+                    placeholdersBefore = placeholdersBefore,
+                    placeholdersAfter = placeholdersAfter,
+                    sourceLoadStates = sourceLoadStates.snapshot(),
+                    mediatorLoadStates = null,
+                )
+            PREPEND ->
+                Prepend(
+                    pages = pages,
+                    placeholdersBefore = placeholdersBefore,
+                    sourceLoadStates = sourceLoadStates.snapshot(),
+                    mediatorLoadStates = null,
+                )
+            APPEND ->
+                Append(
+                    pages = pages,
+                    placeholdersAfter = placeholdersAfter,
+                    sourceLoadStates = sourceLoadStates.snapshot(),
+                    mediatorLoadStates = null,
+                )
         }
     }
 
-    /**
-     * @return true if insert was applied, false otherwise.
-     */
+    /** @return true if insert was applied, false otherwise. */
     @CheckResult
     fun insert(loadId: Int, loadType: LoadType, page: Page<Key, Value>): Boolean {
         when (loadType) {
@@ -191,11 +197,12 @@
 
                 _pages.add(0, page)
                 initialPageIndex++
-                placeholdersBefore = if (page.itemsBefore == COUNT_UNDEFINED) {
-                    (placeholdersBefore - page.data.size).coerceAtLeast(0)
-                } else {
-                    page.itemsBefore
-                }
+                placeholdersBefore =
+                    if (page.itemsBefore == COUNT_UNDEFINED) {
+                        (placeholdersBefore - page.data.size).coerceAtLeast(0)
+                    } else {
+                        page.itemsBefore
+                    }
 
                 // Clear error on successful insert
                 failedHintsByLoadType.remove(PREPEND)
@@ -207,11 +214,12 @@
                 if (loadId != appendGenerationId) return false
 
                 _pages.add(page)
-                placeholdersAfter = if (page.itemsAfter == COUNT_UNDEFINED) {
-                    (placeholdersAfter - page.data.size).coerceAtLeast(0)
-                } else {
-                    page.itemsAfter
-                }
+                placeholdersAfter =
+                    if (page.itemsAfter == COUNT_UNDEFINED) {
+                        (placeholdersAfter - page.data.size).coerceAtLeast(0)
+                    } else {
+                        page.itemsAfter
+                    }
 
                 // Clear error on successful insert
                 failedHintsByLoadType.remove(APPEND)
@@ -254,8 +262,8 @@
 
     /**
      * @return [PageEvent.Drop] for [loadType] that would allow this [PageFetcherSnapshotState] to
-     * respect [PagingConfig.maxSize], `null` if no pages should be dropped for the provided
-     * [loadType].
+     *   respect [PagingConfig.maxSize], `null` if no pages should be dropped for the provided
+     *   [loadType].
      */
     fun dropEventOrNull(loadType: LoadType, hint: ViewportHint): PageEvent.Drop<Value>? {
         if (config.maxSize == MAX_SIZE_UNBOUNDED) return null
@@ -274,14 +282,16 @@
         var pagesToDrop = 0
         var itemsToDrop = 0
         while (pagesToDrop < pages.size && storageCount - itemsToDrop > config.maxSize) {
-            val pageSize = when (loadType) {
-                PREPEND -> pages[pagesToDrop].data.size
-                else -> pages[pages.lastIndex - pagesToDrop].data.size
-            }
-            val itemsAfterDrop = when (loadType) {
-                PREPEND -> hint.presentedItemsBefore - itemsToDrop - pageSize
-                else -> hint.presentedItemsAfter - itemsToDrop - pageSize
-            }
+            val pageSize =
+                when (loadType) {
+                    PREPEND -> pages[pagesToDrop].data.size
+                    else -> pages[pages.lastIndex - pagesToDrop].data.size
+                }
+            val itemsAfterDrop =
+                when (loadType) {
+                    PREPEND -> hint.presentedItemsBefore - itemsToDrop - pageSize
+                    else -> hint.presentedItemsAfter - itemsToDrop - pageSize
+                }
             // Do not drop pages that would fulfill prefetchDistance.
             if (itemsAfterDrop < config.prefetchDistance) break
 
@@ -291,105 +301,124 @@
 
         return when (pagesToDrop) {
             0 -> null
-            else -> PageEvent.Drop(
-                loadType = loadType,
-                minPageOffset = when (loadType) {
-                    // originalPageOffset of the first page.
-                    PREPEND -> -initialPageIndex
-                    // maxPageOffset - pagesToDrop; We subtract one from pagesToDrop, since this
-                    // value is inclusive.
-                    else -> pages.lastIndex - initialPageIndex - (pagesToDrop - 1)
-                },
-                maxPageOffset = when (loadType) {
-                    // minPageOffset + pagesToDrop; We subtract on from pagesToDrop, since this
-                    // value is inclusive.
-                    PREPEND -> (pagesToDrop - 1) - initialPageIndex
-                    // originalPageOffset of the last page.
-                    else -> pages.lastIndex - initialPageIndex
-                },
-                placeholdersRemaining = when {
-                    !config.enablePlaceholders -> 0
-                    loadType == PREPEND -> placeholdersBefore + itemsToDrop
-                    else -> placeholdersAfter + itemsToDrop
-                }
-            )
+            else ->
+                PageEvent.Drop(
+                    loadType = loadType,
+                    minPageOffset =
+                        when (loadType) {
+                            // originalPageOffset of the first page.
+                            PREPEND -> -initialPageIndex
+                            // maxPageOffset - pagesToDrop; We subtract one from pagesToDrop, since
+                            // this
+                            // value is inclusive.
+                            else -> pages.lastIndex - initialPageIndex - (pagesToDrop - 1)
+                        },
+                    maxPageOffset =
+                        when (loadType) {
+                            // minPageOffset + pagesToDrop; We subtract on from pagesToDrop, since
+                            // this
+                            // value is inclusive.
+                            PREPEND -> (pagesToDrop - 1) - initialPageIndex
+                            // originalPageOffset of the last page.
+                            else -> pages.lastIndex - initialPageIndex
+                        },
+                    placeholdersRemaining =
+                        when {
+                            !config.enablePlaceholders -> 0
+                            loadType == PREPEND -> placeholdersBefore + itemsToDrop
+                            else -> placeholdersAfter + itemsToDrop
+                        }
+                )
         }
     }
 
-    internal fun currentPagingState(viewportHint: ViewportHint.Access?) = PagingState<Key, Value>(
-        pages = pages.toList(),
-        anchorPosition = viewportHint?.let { hint ->
-            // Translate viewportHint to anchorPosition based on fetcher state (pre-transformation),
-            // so start with fetcher count of placeholdersBefore.
-            var anchorPosition = placeholdersBefore
+    internal fun currentPagingState(viewportHint: ViewportHint.Access?) =
+        PagingState<Key, Value>(
+            pages = pages.toList(),
+            anchorPosition =
+                viewportHint?.let { hint ->
+                    // Translate viewportHint to anchorPosition based on fetcher state
+                    // (pre-transformation),
+                    // so start with fetcher count of placeholdersBefore.
+                    var anchorPosition = placeholdersBefore
 
-            // Compute fetcher state pageOffsets.
-            val fetcherPageOffsetFirst = -initialPageIndex
-            val fetcherPageOffsetLast = pages.lastIndex - initialPageIndex
+                    // Compute fetcher state pageOffsets.
+                    val fetcherPageOffsetFirst = -initialPageIndex
+                    val fetcherPageOffsetLast = pages.lastIndex - initialPageIndex
 
-            // ViewportHint is based off of presenter state, which may race with fetcher state.
-            // Since computing anchorPosition relies on hint.indexInPage, which accounts for
-            // placeholders in presenter state, we need iterate through pages to incrementally
-            // build anchorPosition and adjust the value we use for placeholdersBefore accordingly.
-            for (pageOffset in fetcherPageOffsetFirst until hint.pageOffset) {
-                // Aside from incrementing anchorPosition normally using the loaded page's
-                // size, there are 4 race-cases to consider:
-                //   - Fetcher has extra PREPEND pages
-                //     - Simply add the size of the loaded page to anchorPosition to sync with
-                //       presenter; don't need to do anything special to handle this.
-                //   - Fetcher is missing PREPEND pages
-                //     - Already accounted for in placeholdersBefore; so don't need to do anything.
-                //   - Fetcher has extra APPEND pages
-                //     - Already accounted for in hint.indexInPage (value can be greater than
-                //     page size to denote placeholders access).
-                //   - Fetcher is missing APPEND pages
-                //     - Increment anchorPosition using config.pageSize to estimate size of the
-                //     missing page.
-                anchorPosition += when {
-                    // Fetcher is missing APPEND pages, i.e., viewportHint points to an item
-                    // after a page that was dropped. Estimate how much to increment anchorPosition
-                    // by using PagingConfig.pageSize.
-                    pageOffset > fetcherPageOffsetLast -> config.pageSize
-                    // pageOffset refers to a loaded page; increment anchorPosition with data.size.
-                    else -> pages[pageOffset + initialPageIndex].data.size
-                }
-            }
+                    // ViewportHint is based off of presenter state, which may race with fetcher
+                    // state.
+                    // Since computing anchorPosition relies on hint.indexInPage, which accounts for
+                    // placeholders in presenter state, we need iterate through pages to
+                    // incrementally
+                    // build anchorPosition and adjust the value we use for placeholdersBefore
+                    // accordingly.
+                    for (pageOffset in fetcherPageOffsetFirst until hint.pageOffset) {
+                        // Aside from incrementing anchorPosition normally using the loaded page's
+                        // size, there are 4 race-cases to consider:
+                        //   - Fetcher has extra PREPEND pages
+                        //     - Simply add the size of the loaded page to anchorPosition to sync
+                        // with
+                        //       presenter; don't need to do anything special to handle this.
+                        //   - Fetcher is missing PREPEND pages
+                        //     - Already accounted for in placeholdersBefore; so don't need to do
+                        // anything.
+                        //   - Fetcher has extra APPEND pages
+                        //     - Already accounted for in hint.indexInPage (value can be greater
+                        // than
+                        //     page size to denote placeholders access).
+                        //   - Fetcher is missing APPEND pages
+                        //     - Increment anchorPosition using config.pageSize to estimate size of
+                        // the
+                        //     missing page.
+                        anchorPosition +=
+                            when {
+                                // Fetcher is missing APPEND pages, i.e., viewportHint points to an
+                                // item
+                                // after a page that was dropped. Estimate how much to increment
+                                // anchorPosition
+                                // by using PagingConfig.pageSize.
+                                pageOffset > fetcherPageOffsetLast -> config.pageSize
+                                // pageOffset refers to a loaded page; increment anchorPosition with
+                                // data.size.
+                                else -> pages[pageOffset + initialPageIndex].data.size
+                            }
+                    }
 
-            // Handle the page referenced by hint.pageOffset. Increment anchorPosition by
-            // hint.indexInPage, which accounts for placeholders and may not be within the bounds
-            // of page.data.indices.
-            anchorPosition += hint.indexInPage
+                    // Handle the page referenced by hint.pageOffset. Increment anchorPosition by
+                    // hint.indexInPage, which accounts for placeholders and may not be within the
+                    // bounds
+                    // of page.data.indices.
+                    anchorPosition += hint.indexInPage
 
-            // In the special case where viewportHint references a missing PREPEND page, we need
-            // to decrement anchorPosition using config.pageSize as an estimate, otherwise we
-            // would be double counting it since it's accounted for in both indexInPage and
-            // placeholdersBefore.
-            if (hint.pageOffset < fetcherPageOffsetFirst) {
-                anchorPosition -= config.pageSize
-            }
+                    // In the special case where viewportHint references a missing PREPEND page, we
+                    // need
+                    // to decrement anchorPosition using config.pageSize as an estimate, otherwise
+                    // we
+                    // would be double counting it since it's accounted for in both indexInPage and
+                    // placeholdersBefore.
+                    if (hint.pageOffset < fetcherPageOffsetFirst) {
+                        anchorPosition -= config.pageSize
+                    }
 
-            return@let anchorPosition
-        },
-        config = config,
-        leadingPlaceholderCount = placeholdersBefore
-    )
+                    return@let anchorPosition
+                },
+            config = config,
+            leadingPlaceholderCount = placeholdersBefore
+        )
 
     /**
      * Wrapper for [PageFetcherSnapshotState], which protects access behind a [Mutex] to prevent
      * race scenarios.
      */
-    internal class Holder<Key : Any, Value : Any>(
-        private val config: PagingConfig
-    ) {
+    internal class Holder<Key : Any, Value : Any>(private val config: PagingConfig) {
         private val lock = Mutex()
         private val state = PageFetcherSnapshotState<Key, Value>(config)
 
         suspend inline fun <T> withLock(
             block: (state: PageFetcherSnapshotState<Key, Value>) -> T
         ): T {
-            return lock.withLock {
-                block(state)
-            }
+            return lock.withLock { block(state) }
         }
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageStore.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageStore.kt
index 500e6e5..fafecac 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageStore.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PageStore.kt
@@ -23,8 +23,8 @@
 import androidx.paging.internal.BUGANIZER_URL
 
 /**
- * Presents post-transform paging data as a list, with list update notifications when
- * PageEvents are dispatched.
+ * Presents post-transform paging data as a list, with list update notifications when PageEvents are
+ * dispatched.
  */
 internal class PageStore<T : Any>(
     pages: List<TransformablePage<T>>,
@@ -42,12 +42,16 @@
     private val pages: MutableList<TransformablePage<T>> = pages.toMutableList()
     override var dataCount: Int = pages.fullCount()
         private set
+
     private val originalPageOffsetFirst: Int
         get() = pages.first().originalPageOffsets.minOrNull()!!
+
     private val originalPageOffsetLast: Int
         get() = pages.last().originalPageOffsets.maxOrNull()!!
+
     override var placeholdersBefore: Int = placeholdersBefore
         private set
+
     override var placeholdersAfter: Int = placeholdersAfter
         private set
 
@@ -73,11 +77,7 @@
     }
 
     fun snapshot(): ItemSnapshotList<T> {
-        return ItemSnapshotList(
-            placeholdersBefore,
-            placeholdersAfter,
-            pages.flatMap { it.data }
-        )
+        return ItemSnapshotList(placeholdersBefore, placeholdersAfter, pages.flatMap { it.data })
     }
 
     override fun getItem(index: Int): T {
@@ -107,12 +107,14 @@
         return when (pageEvent) {
             is PageEvent.Insert -> insertPage(pageEvent)
             is PageEvent.Drop -> dropPages(pageEvent)
-            else -> throw IllegalStateException(
-                """Paging received an event to process StaticList or LoadStateUpdate while
+            else ->
+                throw IllegalStateException(
+                    """Paging received an event to process StaticList or LoadStateUpdate while
                 |processing Inserts and Drops. If you see this exception, it is most
                 |likely a bug in the library. Please file a bug so we can fix it at:
-                |$BUGANIZER_URL""".trimMargin()
-            )
+                |$BUGANIZER_URL"""
+                        .trimMargin()
+                )
         }
     }
 
@@ -151,12 +153,14 @@
     private fun insertPage(insert: PageEvent.Insert<T>): PagingDataEvent<T> {
         val insertSize = insert.pages.fullCount()
         return when (insert.loadType) {
-            REFRESH -> throw IllegalStateException(
-                """Paging received a refresh event in the middle of an actively loading generation
+            REFRESH ->
+                throw IllegalStateException(
+                    """Paging received a refresh event in the middle of an actively loading generation
                 |of PagingData. If you see this exception, it is most likely a bug in the library.
                 |Please file a bug so we can fix it at:
-                |$BUGANIZER_URL""".trimMargin()
-            )
+                |$BUGANIZER_URL"""
+                        .trimMargin()
+                )
             PREPEND -> {
                 val oldPlaceholdersBefore = placeholdersBefore
                 // update all states
@@ -207,14 +211,12 @@
     }
 
     /**
-     * Helper which converts a [PageEvent.Drop] to a [PagingDataEvent] by
-     * dropping all pages that depend on the n-lowest or n-highest originalPageOffsets.
+     * Helper which converts a [PageEvent.Drop] to a [PagingDataEvent] by dropping all pages that
+     * depend on the n-lowest or n-highest originalPageOffsets.
      */
     private fun dropPages(drop: PageEvent.Drop<T>): PagingDataEvent<T> {
         // update states
-        val itemDropCount = dropPagesWithOffsets(
-            drop.minPageOffset..drop.maxPageOffset
-        )
+        val itemDropCount = dropPagesWithOffsets(drop.minPageOffset..drop.maxPageOffset)
         dataCount -= itemDropCount
 
         return if (drop.loadType == PREPEND) {
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/Pager.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/Pager.kt
index af068a4..482cf53 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/Pager.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/Pager.kt
@@ -22,7 +22,6 @@
 /**
  * Primary entry point into Paging; constructor for a reactive stream of [PagingData]. The same
  * Pager instance should be reused within an instance of ViewModel. For example in your ViewModel:
- *
  * ```
  * // create a Pager instance and store to a variable
  * val pager = Pager(
@@ -50,7 +49,8 @@
  */
 public class Pager<Key : Any, Value : Any>
 // Experimental usage is propagated to public API via constructor argument.
-@ExperimentalPagingApi constructor(
+@ExperimentalPagingApi
+constructor(
     config: PagingConfig,
     initialKey: Key? = null,
     remoteMediator: RemoteMediator<Key, Value>?,
@@ -81,20 +81,20 @@
      * new instance of [PagingData] with cached data pre-loaded.
      */
     @OptIn(androidx.paging.ExperimentalPagingApi::class)
-    public val flow: Flow<PagingData<Value>> = PageFetcher(
-        pagingSourceFactory = if (
-            pagingSourceFactory is SuspendingPagingSourceFactory<Key, Value>
-        ) {
-            pagingSourceFactory::create
-        } else {
-            // cannot pass it as is since it is not a suspend function. Hence, we wrap it in {}
-            // which means we are calling the original factory inside a suspend function
-            {
-                pagingSourceFactory()
-            }
-        },
-        initialKey = initialKey,
-        config = config,
-        remoteMediator = remoteMediator
-    ).flow
+    public val flow: Flow<PagingData<Value>> =
+        PageFetcher(
+                pagingSourceFactory =
+                    if (pagingSourceFactory is SuspendingPagingSourceFactory<Key, Value>) {
+                        pagingSourceFactory::create
+                    } else {
+                        // cannot pass it as is since it is not a suspend function. Hence, we wrap
+                        // it in {}
+                        // which means we are calling the original factory inside a suspend function
+                        { pagingSourceFactory() }
+                    },
+                initialKey = initialKey,
+                config = config,
+                remoteMediator = remoteMediator
+            )
+            .flow
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingConfig.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingConfig.kt
index 6dcf0fe..df6e7d6 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingConfig.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingConfig.kt
@@ -26,28 +26,29 @@
  * An object used to configure loading behavior within a [Pager], as it loads content from a
  * [PagingSource].
  */
-public class PagingConfig @JvmOverloads public constructor(
+public class PagingConfig
+@JvmOverloads
+public constructor(
     /**
      * Defines the number of items loaded at once from the [PagingSource].
      *
      * Should be several times the number of visible items onscreen.
      *
-     * Configuring your page size depends on how your data is being loaded and used. Smaller
-     * page sizes improve memory usage, latency, and avoid GC churn. Larger pages generally
-     * improve loading throughput, to a point (avoid loading more than 2MB from SQLite at
-     * once, since it incurs extra cost).
+     * Configuring your page size depends on how your data is being loaded and used. Smaller page
+     * sizes improve memory usage, latency, and avoid GC churn. Larger pages generally improve
+     * loading throughput, to a point (avoid loading more than 2MB from SQLite at once, since it
+     * incurs extra cost).
      *
-     * If you're loading data for very large, social-media style cards that take up most of
-     * a screen, and your database isn't a bottleneck, 10-20 may make sense. If you're
-     * displaying dozens of items in a tiled grid, which can present items during a scroll
-     * much more quickly, consider closer to 100.
+     * If you're loading data for very large, social-media style cards that take up most of a
+     * screen, and your database isn't a bottleneck, 10-20 may make sense. If you're displaying
+     * dozens of items in a tiled grid, which can present items during a scroll much more quickly,
+     * consider closer to 100.
      *
-     * Note: [pageSize] is used to inform [PagingSource.LoadParams.loadSize], but is not enforced.
-     * A [PagingSource] may completely ignore this value and still return a valid
+     * Note: [pageSize] is used to inform [PagingSource.LoadParams.loadSize], but is not enforced. A
+     * [PagingSource] may completely ignore this value and still return a valid
      * [Page][PagingSource.LoadResult.Page].
      */
-    @JvmField
-    public val pageSize: Int,
+    @JvmField public val pageSize: Int,
 
     /**
      * Prefetch distance which defines how far from the edge of loaded content an access must be to
@@ -58,27 +59,22 @@
      * data that's already been accessed.
      *
      * A value of 0 indicates that no list items will be loaded until they are specifically
-     * requested. This is generally not recommended, so that users don't observe a
-     * placeholder item (with placeholders) or end of list (without) while scrolling.
+     * requested. This is generally not recommended, so that users don't observe a placeholder item
+     * (with placeholders) or end of list (without) while scrolling.
      */
-    @JvmField
-    @IntRange(from = 0)
-    public val prefetchDistance: Int = pageSize,
+    @JvmField @IntRange(from = 0) public val prefetchDistance: Int = pageSize,
 
     /**
-     * Defines whether [PagingData] may display `null` placeholders, if the [PagingSource]
-     * provides them.
+     * Defines whether [PagingData] may display `null` placeholders, if the [PagingSource] provides
+     * them.
      *
-     * [PagingData] will present `null` placeholders for not-yet-loaded content if two
-     * conditions are met:
-     *
-     * 1) Its [PagingSource] can count all unloaded items (so that the number of nulls to
-     * present is known).
-     *
+     * [PagingData] will present `null` placeholders for not-yet-loaded content if two conditions
+     * are met:
+     * 1) Its [PagingSource] can count all unloaded items (so that the number of nulls to present is
+     *    known).
      * 2) [enablePlaceholders] is set to `true`
      */
-    @JvmField
-    public val enablePlaceholders: Boolean = true,
+    @JvmField public val enablePlaceholders: Boolean = true,
 
     /**
      * Defines requested load size for initial load from [PagingSource], typically larger than
@@ -107,22 +103,20 @@
      * [maxSize] is best effort, not a guarantee. In practice, if [maxSize] is many times
      * [pageSize], the number of items held by [PagingData] will not grow above this number.
      * Exceptions are made as necessary to guarantee:
-     *  * Pages are never dropped until there are more than two pages loaded. Note that
-     * a [PagingSource] may not be held strictly to [requested pageSize][PagingConfig.pageSize], so
-     * two pages may be larger than expected.
-     *  * Pages are never dropped if they are within a prefetch window (defined to be
-     * `pageSize + (2 * prefetchDistance)`) of the most recent load.
+     * * Pages are never dropped until there are more than two pages loaded. Note that a
+     *   [PagingSource] may not be held strictly to [requested pageSize][PagingConfig.pageSize], so
+     *   two pages may be larger than expected.
+     * * Pages are never dropped if they are within a prefetch window (defined to be `pageSize +
+     *   (2 * prefetchDistance)`) of the most recent load.
      *
      * @see PagingConfig.MAX_SIZE_UNBOUNDED
      */
-    @JvmField
-    @IntRange(from = 2)
-    public val maxSize: Int = MAX_SIZE_UNBOUNDED,
+    @JvmField @IntRange(from = 2) public val maxSize: Int = MAX_SIZE_UNBOUNDED,
 
     /**
      * Defines a threshold for the number of items scrolled outside the bounds of loaded items
-     * before Paging should give up on loading pages incrementally, and instead jump to the
-     * user's position by triggering REFRESH via invalidate.
+     * before Paging should give up on loading pages incrementally, and instead jump to the user's
+     * position by triggering REFRESH via invalidate.
      *
      * Defaults to [COUNT_UNDEFINED], which disables invalidation due to scrolling large distances.
      *
@@ -132,8 +126,7 @@
      * @see PagingSource.getRefreshKey
      * @see PagingSource.jumpingSupported
      */
-    @JvmField
-    public val jumpThreshold: Int = COUNT_UNDEFINED
+    @JvmField public val jumpThreshold: Int = COUNT_UNDEFINED
 ) {
     init {
         if (!enablePlaceholders && prefetchDistance == 0) {
@@ -161,8 +154,7 @@
          * When [maxSize] is set to [MAX_SIZE_UNBOUNDED], the maximum number of items loaded is
          * unbounded, and pages will never be dropped.
          */
-        @Suppress("MinMaxConstant")
-        public const val MAX_SIZE_UNBOUNDED: Int = Int.MAX_VALUE
+        @Suppress("MinMaxConstant") public const val MAX_SIZE_UNBOUNDED: Int = Int.MAX_VALUE
         internal const val DEFAULT_INITIAL_PAGE_MULTIPLIER = 3
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingData.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingData.kt
index edb541f..3876125 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingData.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingData.kt
@@ -24,32 +24,35 @@
 /**
  * Container for Paged data from a single generation of loads.
  *
- * Each refresh of data (generally either pushed by local storage, or pulled from the network)
- * will have a separate corresponding [PagingData].
+ * Each refresh of data (generally either pushed by local storage, or pulled from the network) will
+ * have a separate corresponding [PagingData].
  */
-public class PagingData<T : Any> internal constructor(
+public class PagingData<T : Any>
+internal constructor(
     internal val flow: Flow<PageEvent<T>>,
     internal val uiReceiver: UiReceiver,
     internal val hintReceiver: HintReceiver,
 
     /**
-     * A lambda returning a nullable PageEvent.Insert containing data which can be accessed
-     * and displayed synchronously without requiring collection.
+     * A lambda returning a nullable PageEvent.Insert containing data which can be accessed and
+     * displayed synchronously without requiring collection.
      *
      * For example, the data may be real loaded data that has been cached via [cachedIn].
      */
     private val cachedPageEvent: () -> PageEvent.Insert<T>? = { null }
 ) {
     public companion object {
-        internal val NOOP_UI_RECEIVER = object : UiReceiver {
-            override fun retry() {}
+        internal val NOOP_UI_RECEIVER =
+            object : UiReceiver {
+                override fun retry() {}
 
-            override fun refresh() {}
-        }
+                override fun refresh() {}
+            }
 
-        internal val NOOP_HINT_RECEIVER = object : HintReceiver {
-            override fun accessHint(viewportHint: ViewportHint) {}
-        }
+        internal val NOOP_HINT_RECEIVER =
+            object : HintReceiver {
+                override fun accessHint(viewportHint: ViewportHint) {}
+            }
 
         /**
          * Create a [PagingData] that immediately displays an empty list of items when submitted to
@@ -58,40 +61,43 @@
          */
         @Suppress("UNCHECKED_CAST")
         @JvmStatic // Convenience for Java developers.
-        public fun <T : Any> empty(): PagingData<T> = PagingData(
-            flow = flowOf(
-                PageEvent.StaticList(
-                    data = listOf(),
-                    sourceLoadStates = null,
-                    mediatorLoadStates = null,
-                )
-            ),
-            uiReceiver = NOOP_UI_RECEIVER,
-            hintReceiver = NOOP_HINT_RECEIVER,
-            cachedPageEvent = {
-                PageEvent.Insert.Refresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
+        public fun <T : Any> empty(): PagingData<T> =
+            PagingData(
+                flow =
+                    flowOf(
+                        PageEvent.StaticList(
                             data = listOf(),
+                            sourceLoadStates = null,
+                            mediatorLoadStates = null,
                         )
                     ),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 0,
-                    sourceLoadStates = LoadStates.IDLE,
-                    mediatorLoadStates = null
-                )
-            }
-        )
+                uiReceiver = NOOP_UI_RECEIVER,
+                hintReceiver = NOOP_HINT_RECEIVER,
+                cachedPageEvent = {
+                    PageEvent.Insert.Refresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffset = 0,
+                                    data = listOf(),
+                                )
+                            ),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 0,
+                        sourceLoadStates = LoadStates.IDLE,
+                        mediatorLoadStates = null
+                    )
+                }
+            )
 
         /**
          * Create a [PagingData] that immediately displays an empty list of items when submitted to
          * a presenter. E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
          *
          * @param sourceLoadStates [LoadStates] of [PagingSource] to pass forward to a presenter.
-         * E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
+         *   E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
          * @param mediatorLoadStates [LoadStates] of [RemoteMediator] to pass forward to a
-         * presenter. E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
+         *   presenter. E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
          */
         @Suppress("UNCHECKED_CAST")
         @JvmOverloads
@@ -99,62 +105,67 @@
         public fun <T : Any> empty(
             sourceLoadStates: LoadStates,
             mediatorLoadStates: LoadStates? = null,
-        ): PagingData<T> = PagingData(
-            flow = flowOf(
-                PageEvent.StaticList(
-                    data = listOf(),
-                    sourceLoadStates = sourceLoadStates,
-                    mediatorLoadStates = mediatorLoadStates,
-                )
-            ),
-            uiReceiver = NOOP_UI_RECEIVER,
-            hintReceiver = NOOP_HINT_RECEIVER,
-            cachedPageEvent = {
-                PageEvent.Insert.Refresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
+        ): PagingData<T> =
+            PagingData(
+                flow =
+                    flowOf(
+                        PageEvent.StaticList(
                             data = listOf(),
+                            sourceLoadStates = sourceLoadStates,
+                            mediatorLoadStates = mediatorLoadStates,
                         )
                     ),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 0,
-                    sourceLoadStates = sourceLoadStates,
-                    mediatorLoadStates = mediatorLoadStates
-                )
-            }
-        )
+                uiReceiver = NOOP_UI_RECEIVER,
+                hintReceiver = NOOP_HINT_RECEIVER,
+                cachedPageEvent = {
+                    PageEvent.Insert.Refresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffset = 0,
+                                    data = listOf(),
+                                )
+                            ),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 0,
+                        sourceLoadStates = sourceLoadStates,
+                        mediatorLoadStates = mediatorLoadStates
+                    )
+                }
+            )
 
         /**
-         * Create a [PagingData] that immediately displays a static list of items when submitted
-         * to a presenter. E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter]
-         * and dispatches [LoadState.NotLoading] on all LoadStates to the presenter.
+         * Create a [PagingData] that immediately displays a static list of items when submitted to
+         * a presenter. E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter] and
+         * dispatches [LoadState.NotLoading] on all LoadStates to the presenter.
          *
          * @param data Static list of [T] to display.
          */
         @JvmStatic // Convenience for Java developers.
         public fun <T : Any> from(
             data: List<T>,
-        ): PagingData<T> = PagingData(
-            flow = flowOf(
-                PageEvent.StaticList(
-                    data = data,
-                    sourceLoadStates = null,
-                    mediatorLoadStates = null,
-                )
-            ),
-            uiReceiver = NOOP_UI_RECEIVER,
-            hintReceiver = NOOP_HINT_RECEIVER,
-            cachedPageEvent = {
-                PageEvent.Insert.Refresh(
-                    pages = listOf(TransformablePage(0, data)),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 0,
-                    sourceLoadStates = LoadStates.IDLE,
-                    mediatorLoadStates = null
-                )
-            }
-        )
+        ): PagingData<T> =
+            PagingData(
+                flow =
+                    flowOf(
+                        PageEvent.StaticList(
+                            data = data,
+                            sourceLoadStates = null,
+                            mediatorLoadStates = null,
+                        )
+                    ),
+                uiReceiver = NOOP_UI_RECEIVER,
+                hintReceiver = NOOP_HINT_RECEIVER,
+                cachedPageEvent = {
+                    PageEvent.Insert.Refresh(
+                        pages = listOf(TransformablePage(0, data)),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 0,
+                        sourceLoadStates = LoadStates.IDLE,
+                        mediatorLoadStates = null
+                    )
+                }
+            )
 
         /**
          * Create a [PagingData] that immediately displays a static list of items when submitted to
@@ -162,9 +173,9 @@
          *
          * @param data Static list of [T] to display.
          * @param sourceLoadStates [LoadStates] of [PagingSource] to pass forward to a presenter.
-         * E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
+         *   E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
          * @param mediatorLoadStates [LoadStates] of [RemoteMediator] to pass forward to a
-         * presenter. E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
+         *   presenter. E.g., [AsyncPagingDataAdapter][androidx.paging.AsyncPagingDataAdapter].
          */
         @JvmOverloads
         @JvmStatic // Convenience for Java developers.
@@ -172,26 +183,28 @@
             data: List<T>,
             sourceLoadStates: LoadStates,
             mediatorLoadStates: LoadStates? = null,
-        ): PagingData<T> = PagingData(
-            flow = flowOf(
-                PageEvent.StaticList(
-                    data = data,
-                    sourceLoadStates = sourceLoadStates,
-                    mediatorLoadStates = mediatorLoadStates,
-                )
-            ),
-            uiReceiver = NOOP_UI_RECEIVER,
-            hintReceiver = NOOP_HINT_RECEIVER,
-            cachedPageEvent = {
-                PageEvent.Insert.Refresh(
-                    pages = listOf(TransformablePage(0, data)),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 0,
-                    sourceLoadStates = sourceLoadStates,
-                    mediatorLoadStates = mediatorLoadStates
-                )
-            }
-        )
+        ): PagingData<T> =
+            PagingData(
+                flow =
+                    flowOf(
+                        PageEvent.StaticList(
+                            data = data,
+                            sourceLoadStates = sourceLoadStates,
+                            mediatorLoadStates = mediatorLoadStates,
+                        )
+                    ),
+                uiReceiver = NOOP_UI_RECEIVER,
+                hintReceiver = NOOP_HINT_RECEIVER,
+                cachedPageEvent = {
+                    PageEvent.Insert.Refresh(
+                        pages = listOf(TransformablePage(0, data)),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 0,
+                        sourceLoadStates = sourceLoadStates,
+                        mediatorLoadStates = mediatorLoadStates
+                    )
+                }
+            )
     }
 
     internal fun cachedEvent(): PageEvent.Insert<T>? = cachedPageEvent()
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataEvent.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataEvent.kt
index 1cf0858..4f18bcb 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataEvent.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataEvent.kt
@@ -19,20 +19,20 @@
 import androidx.annotation.RestrictTo
 import androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP
 
-/**
- * Events captured from a [PagingData] that was submitted to the [PagingDataPresenter]
- */
+/** Events captured from a [PagingData] that was submitted to the [PagingDataPresenter] */
 public sealed class PagingDataEvent<T : Any> {
     /**
      * A prepend load event
      *
      * @param [inserted] The list of newly prepended items.
      * @param [newPlaceholdersBefore] The count of null items leading the list of loaded data when
-     * new data has been prepended.
+     *   new data has been prepended.
      * @param [oldPlaceholdersBefore] The count of null items leading the list of loaded data prior
-     * to new data being prepended
+     *   to new data being prepended
      */
-    public class Prepend<T : Any> @RestrictTo(LIBRARY_GROUP) constructor(
+    public class Prepend<T : Any>
+    @RestrictTo(LIBRARY_GROUP)
+    constructor(
         val inserted: List<T>,
         val newPlaceholdersBefore: Int,
         val oldPlaceholdersBefore: Int,
@@ -46,7 +46,8 @@
         }
 
         override fun hashCode(): Int {
-            return inserted.hashCode() + newPlaceholdersBefore.hashCode() +
+            return inserted.hashCode() +
+                newPlaceholdersBefore.hashCode() +
                 oldPlaceholdersBefore.hashCode()
         }
 
@@ -57,7 +58,8 @@
                     |   newPlaceholdersBefore: $newPlaceholdersBefore
                     |   oldPlaceholdersBefore: $oldPlaceholdersBefore
                     |)
-                    |""".trimMargin()
+                    |"""
+                .trimMargin()
         }
     }
 
@@ -65,15 +67,17 @@
      * An append load event
      *
      * @param [startIndex] The first index where this append is applied. If placeholders are
-     * enabled, represents the index of the first placeholder replaced with a real item.
-     * Otherwise, it represents the index of where the first new item is inserted.
+     *   enabled, represents the index of the first placeholder replaced with a real item.
+     *   Otherwise, it represents the index of where the first new item is inserted.
      * @param [inserted] The list of newly appended items.
      * @param [newPlaceholdersAfter] The count of null items trailing the list of loaded data when
-     * new data has been appended.
+     *   new data has been appended.
      * @param [oldPlaceholdersAfter] The count of null items trailing the list of loaded data prior
-     * to new data being appended.
+     *   to new data being appended.
      */
-    public class Append<T : Any> @RestrictTo(LIBRARY_GROUP) constructor(
+    public class Append<T : Any>
+    @RestrictTo(LIBRARY_GROUP)
+    constructor(
         val startIndex: Int,
         val inserted: List<T>,
         val newPlaceholdersAfter: Int,
@@ -88,7 +92,9 @@
         }
 
         override fun hashCode(): Int {
-            return startIndex.hashCode() + inserted.hashCode() + newPlaceholdersAfter.hashCode() +
+            return startIndex.hashCode() +
+                inserted.hashCode() +
+                newPlaceholdersAfter.hashCode() +
                 oldPlaceholdersAfter.hashCode()
         }
 
@@ -100,19 +106,22 @@
                     |   newPlaceholdersBefore: $newPlaceholdersAfter
                     |   oldPlaceholdersBefore: $oldPlaceholdersAfter
                     |)
-                    |""".trimMargin()
+                    |"""
+                .trimMargin()
         }
     }
 
     /**
      * A refresh load event
      *
-     * @param [newList] A [PlaceholderPaddedList] that contains the metadata of the new list
-     * that is presented upon this refresh event
+     * @param [newList] A [PlaceholderPaddedList] that contains the metadata of the new list that is
+     *   presented upon this refresh event
      * @param [previousList] A [PlaceholderPaddedList] that contains the metadata of the list
-     * presented prior to this refresh load event
+     *   presented prior to this refresh load event
      */
-    public class Refresh<T : Any> @RestrictTo(LIBRARY_GROUP) constructor(
+    public class Refresh<T : Any>
+    @RestrictTo(LIBRARY_GROUP)
+    constructor(
         val newList: PlaceholderPaddedList<T>,
         val previousList: PlaceholderPaddedList<T>,
     ) : PagingDataEvent<T>() {
@@ -146,7 +155,8 @@
                     |       size: ${previousList.size}
                     |       dataCount: ${previousList.dataCount}
                     |   )
-                    |""".trimMargin()
+                    |"""
+                .trimMargin()
         }
     }
 
@@ -155,11 +165,13 @@
      *
      * @param [dropCount] A count of items dropped from loaded items
      * @param [newPlaceholdersBefore] The count of null items leading the list of loaded data after
-     * items were dropped.
+     *   items were dropped.
      * @param [oldPlaceholdersBefore] The count of null items leading the list of loaded data prior
-     * to items being dropped.
+     *   to items being dropped.
      */
-    public class DropPrepend<T : Any> @RestrictTo(LIBRARY_GROUP) constructor(
+    public class DropPrepend<T : Any>
+    @RestrictTo(LIBRARY_GROUP)
+    constructor(
         val dropCount: Int,
         val newPlaceholdersBefore: Int,
         val oldPlaceholdersBefore: Int,
@@ -173,7 +185,8 @@
         }
 
         override fun hashCode(): Int {
-            return dropCount.hashCode() + newPlaceholdersBefore.hashCode() +
+            return dropCount.hashCode() +
+                newPlaceholdersBefore.hashCode() +
                 oldPlaceholdersBefore.hashCode()
         }
 
@@ -183,23 +196,26 @@
                     |   newPlaceholdersBefore: $newPlaceholdersBefore
                     |   oldPlaceholdersBefore: $oldPlaceholdersBefore
                     |)
-                    |""".trimMargin()
+                    |"""
+                .trimMargin()
         }
     }
 
     /**
      * A drop event from the end of the list
      *
-     * @param [startIndex] The first index where this drop is applied. If placeholders are
-     * enabled, represents the index of the first dropped item that was replaced with a placeholder.
-     * Otherwise, it represents the index of where the first real item was dropped.
+     * @param [startIndex] The first index where this drop is applied. If placeholders are enabled,
+     *   represents the index of the first dropped item that was replaced with a placeholder.
+     *   Otherwise, it represents the index of where the first real item was dropped.
      * @param [dropCount] A count of items dropped from loaded items
      * @param [newPlaceholdersAfter] The count of null items trailing the list of loaded data after
-     * items were dropped.
+     *   items were dropped.
      * @param [oldPlaceholdersAfter] The count of null items trailing the list of loaded data prior
-     * to items being dropped.
+     *   to items being dropped.
      */
-    public class DropAppend<T : Any> @RestrictTo(LIBRARY_GROUP) constructor(
+    public class DropAppend<T : Any>
+    @RestrictTo(LIBRARY_GROUP)
+    constructor(
         val startIndex: Int,
         val dropCount: Int,
         val newPlaceholdersAfter: Int,
@@ -215,7 +231,9 @@
         }
 
         override fun hashCode(): Int {
-            return startIndex.hashCode() + dropCount.hashCode() + newPlaceholdersAfter.hashCode() +
+            return startIndex.hashCode() +
+                dropCount.hashCode() +
+                newPlaceholdersAfter.hashCode() +
                 oldPlaceholdersAfter.hashCode()
         }
 
@@ -226,7 +244,8 @@
                     |   newPlaceholdersBefore: $newPlaceholdersAfter
                     |   oldPlaceholdersBefore: $oldPlaceholdersAfter
                     |)
-                    |""".trimMargin()
+                    |"""
+                .trimMargin()
         }
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataPresenter.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataPresenter.kt
index 18032f5..97d46f9 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataPresenter.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataPresenter.kt
@@ -39,74 +39,71 @@
 import kotlinx.coroutines.withContext
 
 /**
- * The class that connects the UI layer to the underlying Paging operations. Takes input from
- * UI presenters and outputs Paging events (Loads, LoadStateUpdate) in response.
+ * The class that connects the UI layer to the underlying Paging operations. Takes input from UI
+ * presenters and outputs Paging events (Loads, LoadStateUpdate) in response.
  *
- * Paging front ends that implement this class will be able to access loaded data, LoadStates,
- * and callbacks from LoadState or Page updates. This class also exposes the
- * [PagingDataEvent] from a [PagingData] for custom logic on how to present Loads, Drops, and
- * other Paging events.
+ * Paging front ends that implement this class will be able to access loaded data, LoadStates, and
+ * callbacks from LoadState or Page updates. This class also exposes the [PagingDataEvent] from a
+ * [PagingData] for custom logic on how to present Loads, Drops, and other Paging events.
  *
- * For implementation examples, refer to [AsyncPagingDataDiffer] for RecyclerView,
- * or [LazyPagingItems] for Compose.
+ * For implementation examples, refer to [AsyncPagingDataDiffer] for RecyclerView, or
+ * [LazyPagingItems] for Compose.
  *
- * @param [mainContext] The coroutine context that core Paging operations will run on.
- * Defaults to [Dispatchers.Main]. Main operations executed within this context include
- * but are not limited to:
+ * @param [mainContext] The coroutine context that core Paging operations will run on. Defaults to
+ *   [Dispatchers.Main]. Main operations executed within this context include but are not limited
+ *   to:
  * 1. flow collection on a [PagingData] for Loads, LoadStateUpdate etc.
  * 2. emitting [CombinedLoadStates] to the [loadStateFlow]
  * 3. invoking LoadState and PageUpdate listeners
  * 4. invoking [presentPagingDataEvent]
  *
- * @param [cachedPagingData] a [PagingData] that will initialize this PagingDataPresenter with
- * any LoadStates or loaded data contained within it.
+ * @param [cachedPagingData] a [PagingData] that will initialize this PagingDataPresenter with any
+ *   LoadStates or loaded data contained within it.
  */
-public abstract class PagingDataPresenter<T : Any> (
+public abstract class PagingDataPresenter<T : Any>(
     private val mainContext: CoroutineContext = Dispatchers.Main,
     cachedPagingData: PagingData<T>? = null,
 ) {
     private var hintReceiver: HintReceiver? = null
     private var uiReceiver: UiReceiver? = null
     private var pageStore: PageStore<T> = PageStore.initial(cachedPagingData?.cachedEvent())
-    private val combinedLoadStatesCollection = MutableCombinedLoadStateCollection().apply {
-        cachedPagingData?.cachedEvent()?.let { set(it.sourceLoadStates, it.mediatorLoadStates) }
-    }
+    private val combinedLoadStatesCollection =
+        MutableCombinedLoadStateCollection().apply {
+            cachedPagingData?.cachedEvent()?.let { set(it.sourceLoadStates, it.mediatorLoadStates) }
+        }
     private val onPagesUpdatedListeners = CopyOnWriteArrayList<() -> Unit>()
 
     private val collectFromRunner = SingleRunner()
 
     /**
-     * Track whether [lastAccessedIndex] points to a loaded item in the list or a placeholder
-     * after applying transformations to loaded pages. `true` if [lastAccessedIndex] points to a
+     * Track whether [lastAccessedIndex] points to a loaded item in the list or a placeholder after
+     * applying transformations to loaded pages. `true` if [lastAccessedIndex] points to a
      * placeholder, `false` if [lastAccessedIndex] points to a loaded item after transformations.
      *
      * [lastAccessedIndexUnfulfilled] is used to track whether resending [lastAccessedIndex] as a
-     * hint is necessary, since in cases of aggressive filtering, an index may be unfulfilled
-     * after being sent to [PageFetcher], which is only capable of handling prefetchDistance
-     * before transformations.
+     * hint is necessary, since in cases of aggressive filtering, an index may be unfulfilled after
+     * being sent to [PageFetcher], which is only capable of handling prefetchDistance before
+     * transformations.
      */
-    @Volatile
-    private var lastAccessedIndexUnfulfilled: Boolean = false
+    @Volatile private var lastAccessedIndexUnfulfilled: Boolean = false
 
     /**
-     * Track last index access so it can be forwarded to new generations after DiffUtil runs and
-     * it is transformed to an index in the new list.
+     * Track last index access so it can be forwarded to new generations after DiffUtil runs and it
+     * is transformed to an index in the new list.
      */
-    @Volatile
-    private var lastAccessedIndex: Int = 0
+    @Volatile private var lastAccessedIndex: Int = 0
 
     /**
      * Handler for [PagingDataEvent] emitted by [PagingData].
      *
-     * When a [PagingData] is submitted to this PagingDataPresenter through [collectFrom],
-     * page loads, drops, or LoadStateUpdates will be emitted to presenters as [PagingDataEvent]
-     * through this method.
+     * When a [PagingData] is submitted to this PagingDataPresenter through [collectFrom], page
+     * loads, drops, or LoadStateUpdates will be emitted to presenters as [PagingDataEvent] through
+     * this method.
      *
-     * Presenter layers that communicate directly with [PagingDataPresenter] should override
-     * this method to handle the [PagingDataEvent] accordingly. For example by diffing two
+     * Presenter layers that communicate directly with [PagingDataPresenter] should override this
+     * method to handle the [PagingDataEvent] accordingly. For example by diffing two
      * [PagingDataEvent.Refresh] lists, or appending the inserted list of data from
      * [PagingDataEvent.Prepend] or [PagingDataEvent.Append].
-     *
      */
     public abstract suspend fun presentPagingDataEvent(
         event: PagingDataEvent<T>,
@@ -121,31 +118,31 @@
                     /**
                      * The hint receiver of a new generation is set only after it has been
                      * presented. This ensures that:
-                     *
                      * 1. while new generation is still loading, access hints (and jump hints) will
-                     * be sent to current generation.
-                     *
+                     *    be sent to current generation.
                      * 2. the access hint sent from presentNewList will have the correct
-                     * placeholders and indexInPage adjusted according to new pageStore's most
-                     * recent state
+                     *    placeholders and indexInPage adjusted according to new pageStore's most
+                     *    recent state
                      *
                      * Ensuring that viewport hints are sent to the correct generation helps
-                     * synchronize fetcher/pageStore in the correct calculation of the
-                     * next anchorPosition.
+                     * synchronize fetcher/pageStore in the correct calculation of the next
+                     * anchorPosition.
                      */
                     when {
                         event is StaticList -> {
                             presentNewList(
-                                pages = listOf(
-                                    TransformablePage(
-                                        originalPageOffset = 0,
-                                        data = event.data,
-                                    )
-                                ),
+                                pages =
+                                    listOf(
+                                        TransformablePage(
+                                            originalPageOffset = 0,
+                                            data = event.data,
+                                        )
+                                    ),
                                 placeholdersBefore = 0,
                                 placeholdersAfter = 0,
-                                dispatchLoadStates = event.sourceLoadStates != null ||
-                                    event.mediatorLoadStates != null,
+                                dispatchLoadStates =
+                                    event.sourceLoadStates != null ||
+                                        event.mediatorLoadStates != null,
                                 sourceLoadStates = event.sourceLoadStates,
                                 mediatorLoadStates = event.mediatorLoadStates,
                                 newHintReceiver = pagingData.hintReceiver
@@ -172,7 +169,8 @@
                                 remoteLoadStates = event.mediatorLoadStates,
                             )
 
-                            // If index points to a placeholder after transformations, resend it unless
+                            // If index points to a placeholder after transformations, resend it
+                            // unless
                             // there are no more items to load.
                             val source = combinedLoadStatesCollection.stateFlow.value?.source
                             checkNotNull(source) {
@@ -181,16 +179,17 @@
                             }
                             val prependDone = source.prepend.endOfPaginationReached
                             val appendDone = source.append.endOfPaginationReached
-                            val canContinueLoading = !(event.loadType == PREPEND && prependDone) &&
-                                !(event.loadType == APPEND && appendDone)
+                            val canContinueLoading =
+                                !(event.loadType == PREPEND && prependDone) &&
+                                    !(event.loadType == APPEND && appendDone)
 
                             /**
-                             *  If the insert is empty due to aggressive filtering, another hint
-                             *  must be sent to fetcher-side to notify that PagingDataPresenter
-                             *  received the page, since fetcher estimates prefetchDistance based on
-                             *  page indices presented by PagingDataPresenter and we cannot rely on a
-                             *  new item being bound to trigger another hint since the presented
-                             *  page is empty.
+                             * If the insert is empty due to aggressive filtering, another hint must
+                             * be sent to fetcher-side to notify that PagingDataPresenter received
+                             * the page, since fetcher estimates prefetchDistance based on page
+                             * indices presented by PagingDataPresenter and we cannot rely on a new
+                             * item being bound to trigger another hint since the presented page is
+                             * empty.
                              */
                             val emptyInsert = event.pages.all { it.data.isEmpty() }
                             if (!canContinueLoading) {
@@ -199,10 +198,11 @@
                                 // index.
                                 lastAccessedIndexUnfulfilled = false
                             } else if (lastAccessedIndexUnfulfilled || emptyInsert) {
-                                val shouldResendHint = emptyInsert ||
-                                    lastAccessedIndex < pageStore.placeholdersBefore ||
-                                    lastAccessedIndex > pageStore.placeholdersBefore +
-                                        pageStore.dataCount
+                                val shouldResendHint =
+                                    emptyInsert ||
+                                        lastAccessedIndex < pageStore.placeholdersBefore ||
+                                        lastAccessedIndex >
+                                            pageStore.placeholdersBefore + pageStore.dataCount
 
                                 if (shouldResendHint) {
                                     hintReceiver?.accessHint(
@@ -292,8 +292,8 @@
      * within the same generation of [PagingData].
      *
      * [LoadState.Error] can be generated from two types of load requests:
-     *  * [PagingSource.load] returning [PagingSource.LoadResult.Error]
-     *  * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
+     * * [PagingSource.load] returning [PagingSource.LoadResult.Error]
+     * * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
      */
     public fun retry() {
         log(DEBUG) { "Retry signal received" }
@@ -321,9 +321,7 @@
         uiReceiver?.refresh()
     }
 
-    /**
-     * @return Total number of presented items, including placeholders.
-     */
+    /** @return Total number of presented items, including placeholders. */
     public val size: Int
         get() = pageStore.size
 
@@ -332,45 +330,43 @@
      * current [PagingData] changes.
      *
      * This flow is conflated. It buffers the last update to [CombinedLoadStates] and immediately
-     * delivers the current load states on collection, unless this [PagingDataPresenter] has not been
-     * hooked up to a [PagingData] yet, and thus has no state to emit.
+     * delivers the current load states on collection, unless this [PagingDataPresenter] has not
+     * been hooked up to a [PagingData] yet, and thus has no state to emit.
      *
      * @sample androidx.paging.samples.loadStateFlowSample
      */
     public val loadStateFlow: StateFlow<CombinedLoadStates?> =
         combinedLoadStatesCollection.stateFlow
 
-    private val _onPagesUpdatedFlow: MutableSharedFlow<Unit> = MutableSharedFlow(
-        replay = 0,
-        extraBufferCapacity = 64,
-        onBufferOverflow = DROP_OLDEST,
-    )
+    private val _onPagesUpdatedFlow: MutableSharedFlow<Unit> =
+        MutableSharedFlow(
+            replay = 0,
+            extraBufferCapacity = 64,
+            onBufferOverflow = DROP_OLDEST,
+        )
 
     /**
-     * A hot [Flow] that emits after the pages presented to the UI are updated, even if the
-     * actual items presented don't change.
+     * A hot [Flow] that emits after the pages presented to the UI are updated, even if the actual
+     * items presented don't change.
      *
      * An update is triggered from one of the following:
-     *   * [collectFrom] is called and initial load completes, regardless of any differences in
-     *     the loaded data
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
+     * * [collectFrom] is called and initial load completes, regardless of any differences in the
+     *   loaded data
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
      *
-     * Note: This is a [SharedFlow][kotlinx.coroutines.flow.SharedFlow] configured to replay
-     * 0 items with a buffer of size 64. If a collector lags behind page updates, it may
-     * trigger multiple times for each intermediate update that was presented while your collector
-     * was still working. To avoid this behavior, you can
-     * [conflate][kotlinx.coroutines.flow.conflate] this [Flow] so that you only receive the latest
-     * update, which is useful in cases where you are simply updating UI and don't care about
-     * tracking the exact number of page updates.
+     * Note: This is a [SharedFlow][kotlinx.coroutines.flow.SharedFlow] configured to replay 0 items
+     * with a buffer of size 64. If a collector lags behind page updates, it may trigger multiple
+     * times for each intermediate update that was presented while your collector was still working.
+     * To avoid this behavior, you can [conflate][kotlinx.coroutines.flow.conflate] this [Flow] so
+     * that you only receive the latest update, which is useful in cases where you are simply
+     * updating UI and don't care about tracking the exact number of page updates.
      */
     public val onPagesUpdatedFlow: Flow<Unit>
         get() = _onPagesUpdatedFlow.asSharedFlow()
 
     init {
-        addOnPagesUpdatedListener {
-            _onPagesUpdatedFlow.tryEmit(Unit)
-        }
+        addOnPagesUpdatedListener { _onPagesUpdatedFlow.tryEmit(Unit) }
     }
 
     /**
@@ -378,13 +374,12 @@
      * actual items presented don't change.
      *
      * An update is triggered from one of the following:
-     *   * [collectFrom] is called and initial load completes, regardless of any differences in
-     *     the loaded data
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
+     * * [collectFrom] is called and initial load completes, regardless of any differences in the
+     *   loaded data
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
      *
      * @param listener called after pages presented are updated.
-     *
      * @see removeOnPagesUpdatedListener
      */
     public fun addOnPagesUpdatedListener(listener: () -> Unit) {
@@ -395,7 +390,6 @@
      * Remove a previously registered listener for updates to presented pages.
      *
      * @param listener Previously registered listener.
-     *
      * @see addOnPagesUpdatedListener
      */
     public fun removeOnPagesUpdatedListener(listener: () -> Unit) {
@@ -409,11 +403,10 @@
      * reflect the current [CombinedLoadStates].
      *
      * When a new listener is added, it will be immediately called with the current
-     * [CombinedLoadStates], unless this [PagingDataPresenter] has not been hooked up to a [PagingData]
-     * yet, and thus has no state to emit.
+     * [CombinedLoadStates], unless this [PagingDataPresenter] has not been hooked up to a
+     * [PagingData] yet, and thus has no state to emit.
      *
      * @param listener [LoadStates] listener to receive updates.
-     *
      * @see removeLoadStateListener
      *
      * @sample androidx.paging.samples.addLoadStateListenerSample
@@ -449,11 +442,12 @@
 
         lastAccessedIndexUnfulfilled = false
 
-        val newPageStore = PageStore(
-            pages = pages,
-            placeholdersBefore = placeholdersBefore,
-            placeholdersAfter = placeholdersAfter,
-        )
+        val newPageStore =
+            PageStore(
+                pages = pages,
+                placeholdersBefore = placeholdersBefore,
+                placeholdersAfter = placeholdersAfter,
+            )
         // must capture previousList states here before we update pageStore
         val previousList = pageStore as PlaceholderPaddedList<T>
 
@@ -499,8 +493,8 @@
 }
 
 /**
- * Payloads used to dispatch change events.
- * Could become a public API post 3.0 in case developers want to handle it more effectively.
+ * Payloads used to dispatch change events. Could become a public API post 3.0 in case developers
+ * want to handle it more effectively.
  *
  * Sending these change payloads is critical for the common case where DefaultItemAnimator won't
  * animate them and re-use the same view holder if possible.
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataTransforms.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataTransforms.kt
index 9f2c851..ea03c2f 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataTransforms.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingDataTransforms.kt
@@ -29,25 +29,27 @@
 
 internal inline fun <T : Any, R : Any> PagingData<T>.transform(
     crossinline transform: suspend (PageEvent<T>) -> PageEvent<R>
-) = PagingData(
-    flow = flow.map { transform(it) },
-    uiReceiver = uiReceiver,
-    hintReceiver = hintReceiver,
-)
+) =
+    PagingData(
+        flow = flow.map { transform(it) },
+        uiReceiver = uiReceiver,
+        hintReceiver = hintReceiver,
+    )
 
 /**
- * Returns a [PagingData] containing the result of applying the given [transform] to each
- * element, as it is loaded.
+ * Returns a [PagingData] containing the result of applying the given [transform] to each element,
+ * as it is loaded.
  */
 @CheckResult
 @JvmSynthetic
-public fun <T : Any, R : Any> PagingData<T>.map(
-    transform: suspend (T) -> R
-): PagingData<R> = transform { it.map(transform) }
+public fun <T : Any, R : Any> PagingData<T>.map(transform: suspend (T) -> R): PagingData<R> =
+    transform {
+        it.map(transform)
+    }
 
 /**
- * Returns a [PagingData] of all elements returned from applying the given [transform]
- * to each element, as it is loaded.
+ * Returns a [PagingData] of all elements returned from applying the given [transform] to each
+ * element, as it is loaded.
  */
 @CheckResult
 @JvmSynthetic
@@ -55,32 +57,31 @@
     transform: suspend (T) -> Iterable<R>
 ): PagingData<R> = transform { it.flatMap(transform) }
 
-/**
- * Returns a [PagingData] containing only elements matching the given [predicate]
- */
+/** Returns a [PagingData] containing only elements matching the given [predicate] */
 @CheckResult
 @JvmSynthetic
-public fun <T : Any> PagingData<T>.filter(
-    predicate: suspend (T) -> Boolean
-): PagingData<T> = transform { it.filter(predicate) }
+public fun <T : Any> PagingData<T>.filter(predicate: suspend (T) -> Boolean): PagingData<T> =
+    transform {
+        it.filter(predicate)
+    }
 
 /**
- * Returns a [PagingData] containing each original element, with an optional separator
- * generated by [generator], given the elements before and after (or null, in boundary
- * conditions).
+ * Returns a [PagingData] containing each original element, with an optional separator generated by
+ * [generator], given the elements before and after (or null, in boundary conditions).
  *
- * Note that this transform is applied asynchronously, as pages are loaded. Potential
- * separators between pages are only computed once both pages are loaded.
+ * Note that this transform is applied asynchronously, as pages are loaded. Potential separators
+ * between pages are only computed once both pages are loaded.
  *
- * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and
- * footer are added.
- *
- * @param generator Generator function used to construct a separator item given the item before
- * and the item after. For terminal separators (header and footer), the arguments passed to the
- * generator, `before` and `after`, will be `null` respectively. In cases where the fully paginated
- * list is empty, a single separator will be added where both `before` and `after` items are `null`.
+ * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and footer
+ *   are added.
+ * @param generator Generator function used to construct a separator item given the item before and
+ *   the item after. For terminal separators (header and footer), the arguments passed to the
+ *   generator, `before` and `after`, will be `null` respectively. In cases where the fully
+ *   paginated list is empty, a single separator will be added where both `before` and `after` items
+ *   are `null`.
  *
  * @sample androidx.paging.samples.insertSeparatorsSample
+ *
  * @sample androidx.paging.samples.insertSeparatorsUiModelSample
  */
 @CheckResult
@@ -104,24 +105,21 @@
 }
 
 /**
- * Returns a [PagingData] containing each original element, with the passed header [item] added
- * to the start of the list.
+ * Returns a [PagingData] containing each original element, with the passed header [item] added to
+ * the start of the list.
  *
  * The header [item] is added to a loaded page which marks the end of the data stream in the
- * [LoadType.PREPEND] direction by returning null in [PagingSource.LoadResult.Page.prevKey]. It
- * will be removed if the first page in the list is dropped, which can happen in the case of loaded
- * pages exceeding [PagingConfig.maxSize].
+ * [LoadType.PREPEND] direction by returning null in [PagingSource.LoadResult.Page.prevKey]. It will
+ * be removed if the first page in the list is dropped, which can happen in the case of loaded pages
+ * exceeding [PagingConfig.maxSize].
  *
- * Note: This operation is not idempotent, calling it multiple times will continually add
- * more headers to the start of the list, which can be useful if multiple header items are
- * required.
+ * Note: This operation is not idempotent, calling it multiple times will continually add more
+ * headers to the start of the list, which can be useful if multiple header items are required.
  *
- * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and
- * footer are added.
- *
+ * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and footer
+ *   are added.
  * @param item The header to add to the front of the list once it is fully loaded in the
- * [LoadType.PREPEND] direction.
- *
+ *   [LoadType.PREPEND] direction.
  * @see [insertFooterItem]
  */
 @CheckResult
@@ -129,29 +127,25 @@
 public fun <T : Any> PagingData<T>.insertHeaderItem(
     terminalSeparatorType: TerminalSeparatorType = FULLY_COMPLETE,
     item: T,
-): PagingData<T> = insertSeparators(terminalSeparatorType) { before, _ ->
-    if (before == null) item else null
-}
+): PagingData<T> =
+    insertSeparators(terminalSeparatorType) { before, _ -> if (before == null) item else null }
 
 /**
- * Returns a [PagingData] containing each original element, with the passed footer [item] added
- * to the end of the list.
+ * Returns a [PagingData] containing each original element, with the passed footer [item] added to
+ * the end of the list.
  *
  * The footer [item] is added to a loaded page which marks the end of the data stream in the
  * [LoadType.APPEND] direction, either by returning null in [PagingSource.LoadResult.Page.nextKey].
  * It will be removed if the last page in the list is dropped, which can happen in the case of
  * loaded pages exceeding [PagingConfig.maxSize].
  *
- * Note: This operation is not idempotent, calling it multiple times will continually add
- * more footers to the end of the list, which can be useful if multiple footer items are
- * required.
+ * Note: This operation is not idempotent, calling it multiple times will continually add more
+ * footers to the end of the list, which can be useful if multiple footer items are required.
  *
- * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and
- * footer are added.
- *
+ * @param terminalSeparatorType [TerminalSeparatorType] used to configure when the header and footer
+ *   are added.
  * @param item The footer to add to the end of the list once it is fully loaded in the
- * [LoadType.APPEND] direction.
- *
+ *   [LoadType.APPEND] direction.
  * @see [insertHeaderItem]
  */
 @CheckResult
@@ -159,6 +153,5 @@
 public fun <T : Any> PagingData<T>.insertFooterItem(
     terminalSeparatorType: TerminalSeparatorType = FULLY_COMPLETE,
     item: T,
-): PagingData<T> = insertSeparators(terminalSeparatorType) { _, after ->
-    if (after == null) item else null
-}
+): PagingData<T> =
+    insertSeparators(terminalSeparatorType) { _, after -> if (after == null) item else null }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingLogger.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingLogger.kt
index 8a2a59e..66b8d8c 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingLogger.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingLogger.kt
@@ -26,6 +26,7 @@
 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
 public expect object PagingLogger {
     public fun isLoggable(level: Int): Boolean
+
     public fun log(level: Int, message: String, tr: Throwable? = null)
 }
 
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingSource.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingSource.kt
index 1a95da2..d2c272f 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingSource.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingSource.kt
@@ -21,9 +21,9 @@
 import androidx.paging.LoadType.REFRESH
 
 /**
- * Base class for an abstraction of pageable static data from some source, where loading pages
- * of data is typically an expensive operation. Some examples of common [PagingSource]s might be
- * from network or from a database.
+ * Base class for an abstraction of pageable static data from some source, where loading pages of
+ * data is typically an expensive operation. Some examples of common [PagingSource]s might be from
+ * network or from a database.
  *
  * An instance of a [PagingSource] is used to load pages of data for an instance of [PagingData].
  *
@@ -33,8 +33,8 @@
  *
  * ### Loading Pages
  *
- * [PagingData] queries data from its [PagingSource] in response to loading hints generated as
- * the user scrolls in a `RecyclerView`.
+ * [PagingData] queries data from its [PagingSource] in response to loading hints generated as the
+ * user scrolls in a `RecyclerView`.
  *
  * To control how and when a [PagingData] queries data from its [PagingSource], see [PagingConfig],
  * which defines behavior such as [PagingConfig.pageSize] and [PagingConfig.prefetchDistance].
@@ -43,10 +43,10 @@
  *
  * A [PagingSource] / [PagingData] pair is a snapshot of the data set. A new [PagingData] /
  * [PagingData] must be created if an update occurs, such as a reorder, insert, delete, or content
- * update occurs. A [PagingSource] must detect that it cannot continue loading its snapshot
- * (for instance, when Database query notices a table being invalidated), and call [invalidate].
- * Then a new [PagingSource] / [PagingData] pair would be created to represent data from the new
- * state of the database query.
+ * update occurs. A [PagingSource] must detect that it cannot continue loading its snapshot (for
+ * instance, when Database query notices a table being invalidated), and call [invalidate]. Then a
+ * new [PagingSource] / [PagingData] pair would be created to represent data from the new state of
+ * the database query.
  *
  * ### Presenting Data to UI
  *
@@ -55,31 +55,29 @@
  * [PagingDataAdapter][androidx.paging.PagingDataAdapter].
  *
  * @param Key Type of key which define what data to load. E.g. [Int] to represent either a page
- * number or item position, or [String] if your network uses Strings as next tokens returned with
- * each response.
+ *   number or item position, or [String] if your network uses Strings as next tokens returned with
+ *   each response.
  * @param Value Type of data loaded in by this [PagingSource]. E.g., the type of data that will be
- * passed to a [PagingDataAdapter][androidx.paging.PagingDataAdapter] to be displayed in a
- * `RecyclerView`.
+ *   passed to a [PagingDataAdapter][androidx.paging.PagingDataAdapter] to be displayed in a
+ *   `RecyclerView`.
  *
  * @sample androidx.paging.samples.pageKeyedPagingSourceSample
+ *
  * @sample androidx.paging.samples.itemKeyedPagingSourceSample
  *
  * @see Pager
  */
 public abstract class PagingSource<Key : Any, Value : Any> {
 
-    private val invalidateCallbackTracker = InvalidateCallbackTracker<() -> Unit>(
-        callbackInvoker = { it() }
-    )
+    private val invalidateCallbackTracker =
+        InvalidateCallbackTracker<() -> Unit>(callbackInvoker = { it() })
 
     internal val invalidateCallbackCount: Int
-        @VisibleForTesting
-        get() = invalidateCallbackTracker.callbackCount()
+        @VisibleForTesting get() = invalidateCallbackTracker.callbackCount()
 
-    /**
-     * Params for a load request on a [PagingSource] from [PagingSource.load].
-     */
-    public sealed class LoadParams<Key : Any> constructor(
+    /** Params for a load request on a [PagingSource] from [PagingSource.load]. */
+    public sealed class LoadParams<Key : Any>
+    constructor(
         /**
          * Requested number of items to load.
          *
@@ -97,17 +95,17 @@
         /**
          * Key for the page to be loaded.
          *
-         * [key] can be `null` only if this [LoadParams] is [Refresh], and either no `initialKey`
-         * is provided to the [Pager] or [PagingSource.getRefreshKey] from the previous
-         * [PagingSource] returns `null`.
+         * [key] can be `null` only if this [LoadParams] is [Refresh], and either no `initialKey` is
+         * provided to the [Pager] or [PagingSource.getRefreshKey] from the previous [PagingSource]
+         * returns `null`.
          *
          * The value of [key] is dependent on the type of [LoadParams]:
-         *  * [Refresh]
-         *      * On initial load, the nullable `initialKey` passed to the [Pager].
-         *      * On subsequent loads due to invalidation or refresh, the result of
-         *      [PagingSource.getRefreshKey].
-         *  * [Prepend] - [LoadResult.Page.prevKey] of the loaded page at the front of the list.
-         *  * [Append] - [LoadResult.Page.nextKey] of the loaded page at the end of the list.
+         * * [Refresh]
+         *     * On initial load, the nullable `initialKey` passed to the [Pager].
+         *     * On subsequent loads due to invalidation or refresh, the result of
+         *       [PagingSource.getRefreshKey].
+         * * [Prepend] - [LoadResult.Page.prevKey] of the loaded page at the front of the list.
+         * * [Append] - [LoadResult.Page.nextKey] of the loaded page at the end of the list.
          */
         public abstract val key: Key?
 
@@ -115,40 +113,46 @@
          * Params for an initial load request on a [PagingSource] from [PagingSource.load] or a
          * refresh triggered by [invalidate].
          */
-        public class Refresh<Key : Any> constructor(
+        public class Refresh<Key : Any>
+        constructor(
             override val key: Key?,
             loadSize: Int,
             placeholdersEnabled: Boolean,
-        ) : LoadParams<Key>(
-            loadSize = loadSize,
-            placeholdersEnabled = placeholdersEnabled,
-        )
+        ) :
+            LoadParams<Key>(
+                loadSize = loadSize,
+                placeholdersEnabled = placeholdersEnabled,
+            )
 
         /**
          * Params to load a page of data from a [PagingSource] via [PagingSource.load] to be
          * appended to the end of the list.
          */
-        public class Append<Key : Any> constructor(
+        public class Append<Key : Any>
+        constructor(
             override val key: Key,
             loadSize: Int,
             placeholdersEnabled: Boolean,
-        ) : LoadParams<Key>(
-            loadSize = loadSize,
-            placeholdersEnabled = placeholdersEnabled,
-        )
+        ) :
+            LoadParams<Key>(
+                loadSize = loadSize,
+                placeholdersEnabled = placeholdersEnabled,
+            )
 
         /**
          * Params to load a page of data from a [PagingSource] via [PagingSource.load] to be
          * prepended to the start of the list.
          */
-        public class Prepend<Key : Any> constructor(
+        public class Prepend<Key : Any>
+        constructor(
             override val key: Key,
             loadSize: Int,
             placeholdersEnabled: Boolean,
-        ) : LoadParams<Key>(
-            loadSize = loadSize,
-            placeholdersEnabled = placeholdersEnabled,
-        )
+        ) :
+            LoadParams<Key>(
+                loadSize = loadSize,
+                placeholdersEnabled = placeholdersEnabled,
+            )
 
         internal companion object {
             fun <Key : Any> create(
@@ -156,33 +160,31 @@
                 key: Key?,
                 loadSize: Int,
                 placeholdersEnabled: Boolean,
-            ): LoadParams<Key> = when (loadType) {
-                LoadType.REFRESH -> Refresh(
-                    key = key,
-                    loadSize = loadSize,
-                    placeholdersEnabled = placeholdersEnabled,
-                )
-                LoadType.PREPEND -> Prepend(
-                    loadSize = loadSize,
-                    key = requireNotNull(key) {
-                        "key cannot be null for prepend"
-                    },
-                    placeholdersEnabled = placeholdersEnabled,
-                )
-                LoadType.APPEND -> Append(
-                    loadSize = loadSize,
-                    key = requireNotNull(key) {
-                        "key cannot be null for append"
-                    },
-                    placeholdersEnabled = placeholdersEnabled,
-                )
-            }
+            ): LoadParams<Key> =
+                when (loadType) {
+                    LoadType.REFRESH ->
+                        Refresh(
+                            key = key,
+                            loadSize = loadSize,
+                            placeholdersEnabled = placeholdersEnabled,
+                        )
+                    LoadType.PREPEND ->
+                        Prepend(
+                            loadSize = loadSize,
+                            key = requireNotNull(key) { "key cannot be null for prepend" },
+                            placeholdersEnabled = placeholdersEnabled,
+                        )
+                    LoadType.APPEND ->
+                        Append(
+                            loadSize = loadSize,
+                            key = requireNotNull(key) { "key cannot be null for append" },
+                            placeholdersEnabled = placeholdersEnabled,
+                        )
+                }
         }
     }
 
-    /**
-     * Result of a load request from [PagingSource.load].
-     */
+    /** Result of a load request from [PagingSource.load]. */
     public sealed class LoadResult<Key : Any, Value : Any> {
         /**
          * Error result object for [PagingSource.load].
@@ -193,13 +195,13 @@
          *
          * @sample androidx.paging.samples.pageKeyedPagingSourceSample
          */
-        public data class Error<Key : Any, Value : Any>(
-            val throwable: Throwable
-        ) : LoadResult<Key, Value>() {
+        public data class Error<Key : Any, Value : Any>(val throwable: Throwable) :
+            LoadResult<Key, Value>() {
             override fun toString(): String {
                 return """LoadResult.Error(
                     |   throwable: $throwable
-                    |) """.trimMargin()
+                    |) """
+                    .trimMargin()
             }
         }
 
@@ -209,15 +211,15 @@
          * This return type can be used to terminate future load requests on this [PagingSource]
          * when the [PagingSource] is not longer valid due to changes in the underlying dataset.
          *
-         * For example, if the underlying database gets written into but the [PagingSource] does
-         * not invalidate in time, it may return inconsistent results if its implementation depends
-         * on the immutability of the backing dataset it loads from (e.g., LIMIT OFFSET style db
+         * For example, if the underlying database gets written into but the [PagingSource] does not
+         * invalidate in time, it may return inconsistent results if its implementation depends on
+         * the immutability of the backing dataset it loads from (e.g., LIMIT OFFSET style db
          * implementations). In this scenario, it is recommended to check for invalidation after
-         * loading and to return LoadResult.Invalid, which causes Paging to discard any
-         * pending or future load requests to this PagingSource and invalidate it.
+         * loading and to return LoadResult.Invalid, which causes Paging to discard any pending or
+         * future load requests to this PagingSource and invalidate it.
          *
-         * Returning [Invalid] will trigger Paging to [invalidate] this [PagingSource] and
-         * terminate any future attempts to [load] from this [PagingSource]
+         * Returning [Invalid] will trigger Paging to [invalidate] this [PagingSource] and terminate
+         * any future attempts to [load] from this [PagingSource]
          */
         public class Invalid<Key : Any, Value : Any> : LoadResult<Key, Value>() {
             override fun toString(): String {
@@ -231,12 +233,12 @@
          * As a convenience, iterating on this object will iterate through its loaded [data].
          *
          * @sample androidx.paging.samples.pageKeyedPage
+         *
          * @sample androidx.paging.samples.pageIndexedPage
          */
-        public data class Page<Key : Any, Value : Any> constructor(
-            /**
-             * Loaded data
-             */
+        public data class Page<Key : Any, Value : Any>
+        constructor(
+            /** Loaded data */
             val data: List<Value>,
             /**
              * [Key] for previous page if more data can be loaded in that direction, `null`
@@ -251,14 +253,12 @@
              * Count of items before the loaded data. Must be implemented if
              * [jumping][PagingSource.jumpingSupported] is enabled. Optional otherwise.
              */
-            @IntRange(from = COUNT_UNDEFINED.toLong())
-            val itemsBefore: Int = COUNT_UNDEFINED,
+            @IntRange(from = COUNT_UNDEFINED.toLong()) val itemsBefore: Int = COUNT_UNDEFINED,
             /**
              * Count of items after the loaded data. Must be implemented if
              * [jumping][PagingSource.jumpingSupported] is enabled. Optional otherwise.
              */
-            @IntRange(from = COUNT_UNDEFINED.toLong())
-            val itemsAfter: Int = COUNT_UNDEFINED
+            @IntRange(from = COUNT_UNDEFINED.toLong()) val itemsAfter: Int = COUNT_UNDEFINED
         ) : LoadResult<Key, Value>(), Iterable<Value> {
 
             /**
@@ -266,9 +266,9 @@
              *
              * @param data Loaded data
              * @param prevKey [Key] for previous page if more data can be loaded in that direction,
-             * `null` otherwise.
+             *   `null` otherwise.
              * @param nextKey [Key] for next page if more data can be loaded in that direction,
-             * `null` otherwise.
+             *   `null` otherwise.
              */
             public constructor(
                 data: List<Value>,
@@ -299,7 +299,8 @@
                     |   prevKey: $prevKey
                     |   itemsBefore: $itemsBefore
                     |   itemsAfter: $itemsAfter
-                    |) """.trimMargin()
+                    |) """
+                    .trimMargin()
             }
 
             public companion object {
@@ -335,8 +336,8 @@
         get() = false
 
     /**
-     * `true` if this [PagingSource] expects to re-use keys to load distinct pages
-     * without a call to [invalidate], `false` otherwise.
+     * `true` if this [PagingSource] expects to re-use keys to load distinct pages without a call to
+     * [invalidate], `false` otherwise.
      */
     public open val keyReuseSupported: Boolean
         get() = false
@@ -372,7 +373,7 @@
      * triggered immediately.
      *
      * @param onInvalidatedCallback The callback that will be invoked on thread that invalidates the
-     * [PagingSource].
+     *   [PagingSource].
      */
     public fun registerInvalidatedCallback(onInvalidatedCallback: () -> Unit) {
         invalidateCallbackTracker.registerInvalidatedCallback(onInvalidatedCallback)
@@ -398,27 +399,26 @@
      * Provide a [Key] used for the initial [load] for the next [PagingSource] due to invalidation
      * of this [PagingSource]. The [Key] is provided to [load] via [LoadParams.key].
      *
-     * The [Key] returned by this method should cause [load] to load enough items to
-     * fill the viewport *around* the last accessed position, allowing the next generation to
-     * transparently animate in. The last accessed position can be retrieved via
-     * [state.anchorPosition][PagingState.anchorPosition], which is typically
-     * the *top-most* or *bottom-most* item in the viewport due to access being triggered by binding
-     * items as they scroll into view.
+     * The [Key] returned by this method should cause [load] to load enough items to fill the
+     * viewport *around* the last accessed position, allowing the next generation to transparently
+     * animate in. The last accessed position can be retrieved via
+     * [state.anchorPosition][PagingState.anchorPosition], which is typically the *top-most* or
+     * *bottom-most* item in the viewport due to access being triggered by binding items as they
+     * scroll into view.
      *
-     * For example, if items are loaded based on integer position keys, you can return
-     * `( (state.anchorPosition ?: 0) - state.config.initialLoadSize / 2).coerceAtLeast(0)`.
+     * For example, if items are loaded based on integer position keys, you can return `(
+     * (state.anchorPosition ?: 0) - state.config.initialLoadSize / 2).coerceAtLeast(0)`.
      *
      * Alternately, if items contain a key used to load, get the key from the item in the page at
      * index [state.anchorPosition][PagingState.anchorPosition] then try to center it based on
      * `state.config.initialLoadSize`.
      *
      * @param state [PagingState] of the currently fetched data, which includes the most recently
-     * accessed position in the list via [PagingState.anchorPosition].
-     *
+     *   accessed position in the list via [PagingState.anchorPosition].
      * @return [Key] passed to [load] after invalidation used for initial load of the next
-     * generation. The [Key] returned by [getRefreshKey] should load pages centered around
-     * user's current viewport. If the correct [Key] cannot be determined, `null` can be returned
-     * to allow [load] decide what default key to use.
+     *   generation. The [Key] returned by [getRefreshKey] should load pages centered around user's
+     *   current viewport. If the correct [Key] cannot be determined, `null` can be returned to
+     *   allow [load] decide what default key to use.
      */
     public abstract fun getRefreshKey(state: PagingState<Key, Value>): Key?
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingState.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingState.kt
index 2242b6b..ddca871 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingState.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PagingState.kt
@@ -23,10 +23,9 @@
  * Snapshot state of Paging system including the loaded [pages], the last accessed [anchorPosition],
  * and the [config] used.
  */
-public class PagingState<Key : Any, Value : Any> constructor(
-    /**
-     * Loaded pages of data in the list.
-     */
+public class PagingState<Key : Any, Value : Any>
+constructor(
+    /** Loaded pages of data in the list. */
     public val pages: List<Page<Key, Value>>,
     /**
      * Most recently accessed index in the list, including placeholders.
@@ -35,15 +34,12 @@
      * generated before or during the first load.
      */
     public val anchorPosition: Int?,
-    /**
-     * [PagingConfig] that was given when initializing the [PagingData] stream.
-     */
+    /** [PagingConfig] that was given when initializing the [PagingData] stream. */
     public val config: PagingConfig,
     /**
      * Number of placeholders before the first loaded item if placeholders are enabled, otherwise 0.
      */
-    @IntRange(from = 0)
-    private val leadingPlaceholderCount: Int
+    @IntRange(from = 0) private val leadingPlaceholderCount: Int
 ) {
 
     override fun equals(other: Any?): Boolean {
@@ -55,20 +51,21 @@
     }
 
     override fun hashCode(): Int {
-        return pages.hashCode() + anchorPosition.hashCode() + config.hashCode() +
+        return pages.hashCode() +
+            anchorPosition.hashCode() +
+            config.hashCode() +
             leadingPlaceholderCount.hashCode()
     }
 
     /**
      * Coerces [anchorPosition] to closest loaded value in [pages].
      *
-     * This function can be called with [anchorPosition] to fetch the loaded item that is closest
-     * to the last accessed index in the list.
+     * This function can be called with [anchorPosition] to fetch the loaded item that is closest to
+     * the last accessed index in the list.
      *
      * @param anchorPosition Index in the list, including placeholders.
-     *
-     * @return The closest loaded [Value] in [pages] to the provided [anchorPosition]. `null` if
-     * all loaded [pages] are empty.
+     * @return The closest loaded [Value] in [pages] to the provided [anchorPosition]. `null` if all
+     *   loaded [pages] are empty.
      */
     public fun closestItemToPosition(anchorPosition: Int): Value? {
         if (pages.all { it.data.isEmpty() }) return null
@@ -89,13 +86,12 @@
     /**
      * Coerces an index in the list, including placeholders, to closest loaded page in [pages].
      *
-     * This function can be called with [anchorPosition] to fetch the loaded page that is closest
-     * to the last accessed index in the list.
+     * This function can be called with [anchorPosition] to fetch the loaded page that is closest to
+     * the last accessed index in the list.
      *
      * @param anchorPosition Index in the list, including placeholders.
-     *
-     * @return The closest loaded [Value] in [pages] to the provided [anchorPosition]. `null` if
-     * all loaded [pages] are empty.
+     * @return The closest loaded [Value] in [pages] to the provided [anchorPosition]. `null` if all
+     *   loaded [pages] are empty.
      */
     public fun closestPageToPosition(anchorPosition: Int): Page<Key, Value>? {
         if (pages.all { it.data.isEmpty() }) return null
@@ -110,13 +106,13 @@
 
     /**
      * @return `true` if all loaded pages are empty or no pages were loaded when this [PagingState]
-     * was created, `false` otherwise.
+     *   was created, `false` otherwise.
      */
     public fun isEmpty(): Boolean = pages.all { it.data.isEmpty() }
 
     /**
      * @return The first loaded item in the list or `null` if all loaded pages are empty or no pages
-     * were loaded when this [PagingState] was created.
+     *   were loaded when this [PagingState] was created.
      */
     public fun firstItemOrNull(): Value? {
         return pages.firstOrNull { it.data.isNotEmpty() }?.data?.firstOrNull()
@@ -124,7 +120,7 @@
 
     /**
      * @return The last loaded item in the list or `null` if all loaded pages are empty or no pages
-     * were loaded when this [PagingState] was created.
+     *   were loaded when this [PagingState] was created.
      */
     public fun lastItemOrNull(): Value? {
         return pages.lastOrNull { it.data.isNotEmpty() }?.data?.lastOrNull()
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PlaceholderPaddedList.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PlaceholderPaddedList.kt
index f9dc9ec..4d31aa2 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/PlaceholderPaddedList.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/PlaceholderPaddedList.kt
@@ -19,15 +19,15 @@
 /**
  * Interface to paged list that could contain placeholders.
  *
- * Contains a paged list's snapshot state. For example, in the context of
- * [PagingDataEvent.Refresh] exposed by [PagingDataPresenter], each [PlaceholderPaddedList]
- * represents a generation of paged data whereby a new generation is distinguished with
- * a refresh load.
+ * Contains a paged list's snapshot state. For example, in the context of [PagingDataEvent.Refresh]
+ * exposed by [PagingDataPresenter], each [PlaceholderPaddedList] represents a generation of paged
+ * data whereby a new generation is distinguished with a refresh load.
  */
 public interface PlaceholderPaddedList<T> {
     public val placeholdersBefore: Int
     public val placeholdersAfter: Int
     public val size: Int
     public val dataCount: Int
+
     public fun getItem(index: Int): T
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediator.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediator.kt
index cb6f185..dea52cb 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediator.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediator.kt
@@ -21,7 +21,6 @@
 import androidx.paging.LoadType.REFRESH
 import androidx.paging.PagingSource.LoadResult
 import androidx.paging.RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-import androidx.paging.RemoteMediator.InitializeAction.SKIP_INITIAL_REFRESH
 import kotlin.jvm.JvmName
 
 /**
@@ -31,13 +30,14 @@
  * A [RemoteMediator] is registered by passing it to [Pager]'s constructor.
  *
  * [RemoteMediator] allows hooking into the following events:
- *  * Stream initialization
- *  * [REFRESH] signal driven from UI
- *  * [PagingSource] returns a [LoadResult] which signals a boundary condition, i.e., the most
- *  recent [LoadResult.Page] in the [PREPEND] or [APPEND] direction has [LoadResult.Page.prevKey]
- *  or [LoadResult.Page.nextKey] set to `null` respectively.
+ * * Stream initialization
+ * * [REFRESH] signal driven from UI
+ * * [PagingSource] returns a [LoadResult] which signals a boundary condition, i.e., the most recent
+ *   [LoadResult.Page] in the [PREPEND] or [APPEND] direction has [LoadResult.Page.prevKey] or
+ *   [LoadResult.Page.nextKey] set to `null` respectively.
  *
  * @sample androidx.paging.samples.remoteMediatorItemKeyedSample
+ *
  * @sample androidx.paging.samples.remoteMediatorPageKeyedSample
  */
 @ExperimentalPagingApi
@@ -45,46 +45,46 @@
     /**
      * Callback triggered when Paging needs to request more data from a remote source due to any of
      * the following events:
-     *  * Stream initialization if [initialize] returns [LAUNCH_INITIAL_REFRESH]
-     *  * [REFRESH] signal driven from UI
-     *  * [PagingSource] returns a [LoadResult] which signals a boundary condition, i.e., the most
-     *  recent [LoadResult.Page] in the [PREPEND] or [APPEND] direction has
-     *  [LoadResult.Page.prevKey] or [LoadResult.Page.nextKey] set to `null` respectively.
+     *     * Stream initialization if [initialize] returns [LAUNCH_INITIAL_REFRESH]
+     * * [REFRESH] signal driven from UI
+     * * [PagingSource] returns a [LoadResult] which signals a boundary condition, i.e., the most
+     *   recent [LoadResult.Page] in the [PREPEND] or [APPEND] direction has
+     *   [LoadResult.Page.prevKey] or [LoadResult.Page.nextKey] set to `null` respectively.
      *
      * It is the responsibility of this method to update the backing dataset and trigger
-     * [PagingSource.invalidate] to allow [androidx.paging.PagingDataAdapter] to pick up new
-     * items found by [load].
+     * [PagingSource.invalidate] to allow [androidx.paging.PagingDataAdapter] to pick up new items
+     * found by [load].
      *
-     * The runtime and result of this method defines the remote [LoadState] behavior sent to the
-     * UI via [CombinedLoadStates].
+     * The runtime and result of this method defines the remote [LoadState] behavior sent to the UI
+     * via [CombinedLoadStates].
      *
-     * This method is never called concurrently *unless* [Pager.flow] has multiple collectors.
-     * Note that Paging might cancel calls to this function if it is currently executing a
-     * [PREPEND] or [APPEND] and a [REFRESH] is requested. In that case, [REFRESH] has higher
-     * priority and will be executed after the previous call is cancelled. If the [load] call with
-     * [REFRESH] returns an error, Paging will call [load] with the previously cancelled [APPEND]
-     * or [PREPEND] request. If [REFRESH] succeeds, it won't make the [APPEND] or [PREPEND] requests
-     * unless they are necessary again after the [REFRESH] is applied to the UI.
+     * This method is never called concurrently *unless* [Pager.flow] has multiple collectors. Note
+     * that Paging might cancel calls to this function if it is currently executing a [PREPEND] or
+     * [APPEND] and a [REFRESH] is requested. In that case, [REFRESH] has higher priority and will
+     * be executed after the previous call is cancelled. If the [load] call with [REFRESH] returns
+     * an error, Paging will call [load] with the previously cancelled [APPEND] or [PREPEND]
+     * request. If [REFRESH] succeeds, it won't make the [APPEND] or [PREPEND] requests unless they
+     * are necessary again after the [REFRESH] is applied to the UI.
      *
      * @param loadType [LoadType] of the condition which triggered this callback.
-     *  * [PREPEND] indicates the end of pagination in the [PREPEND] direction was reached. This
-     *  occurs when [PagingSource.load] returns a [LoadResult.Page] with
-     *  [LoadResult.Page.prevKey] == `null`.
-     *  * [APPEND] indicates the end of pagination in the [APPEND] direction was reached. This
-     *  occurs when [PagingSource.load] returns a [LoadResult.Page] with
-     *  [LoadResult.Page.nextKey] == `null`.
-     *  * [REFRESH] indicates this method was triggered due to a requested refresh. Generally, this
-     *  means that a request to load remote data and **replace** all local data was made. This can
-     *  happen when:
-     *    * Stream initialization if [initialize] returns [LAUNCH_INITIAL_REFRESH]
-     *    * An explicit call to refresh driven by the UI
-     * @param state A copy of the state including the list of pages currently held in memory of the
-     * currently presented [PagingData] at the time of starting the load. E.g. for
-     * load(loadType = APPEND), you can use the page or item at the end as input for what to load
-     * from the network.
+     *     * [PREPEND] indicates the end of pagination in the [PREPEND] direction was reached. This
+     *       occurs when [PagingSource.load] returns a [LoadResult.Page] with
+     *       [LoadResult.Page.prevKey] == `null`.
+     *     * [APPEND] indicates the end of pagination in the [APPEND] direction was reached. This
+     *       occurs when [PagingSource.load] returns a [LoadResult.Page] with
+     *       [LoadResult.Page.nextKey] == `null`.
+     *     * [REFRESH] indicates this method was triggered due to a requested refresh. Generally,
+     *       this means that a request to load remote data and **replace** all local data was made.
+     *       This can happen when:
+     *         * Stream initialization if [initialize] returns [LAUNCH_INITIAL_REFRESH]
+     *         * An explicit call to refresh driven by the UI
      *
+     * @param state A copy of the state including the list of pages currently held in memory of the
+     *   currently presented [PagingData] at the time of starting the load. E.g. for load(loadType =
+     *   APPEND), you can use the page or item at the end as input for what to load from the
+     *   network.
      * @return [MediatorResult] signifying what [LoadState] to be passed to the UI, and whether
-     * there's more data available.
+     *   there's more data available.
      */
     public abstract suspend fun load(
         loadType: LoadType,
@@ -97,23 +97,19 @@
      * This function runs to completion before any loading is performed.
      *
      * @return [InitializeAction] used to control whether [load] with load type [REFRESH] will be
-     * immediately dispatched when the first [PagingData] is submitted:
-     *  * [LAUNCH_INITIAL_REFRESH] to immediately dispatch [load] asynchronously with load type
-     *  [REFRESH], to update paginated content when the stream is initialized.
-     *  Note: This also prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until
-     *  [REFRESH] succeeds.
-     *  * [SKIP_INITIAL_REFRESH] to wait for a refresh request from the UI before dispatching [load]
-     *  asynchronously with load type [REFRESH].
+     *   immediately dispatched when the first [PagingData] is submitted:
+     *     * [LAUNCH_INITIAL_REFRESH] to immediately dispatch [load] asynchronously with load type
+     *       [REFRESH], to update paginated content when the stream is initialized. Note: This also
+     *       prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until [REFRESH]
+     *       succeeds.
+     *     * [SKIP_INITIAL_REFRESH] to wait for a refresh request from the UI before dispatching
+     *       [load] asynchronously with load type [REFRESH].
      */
     public open suspend fun initialize(): InitializeAction = LAUNCH_INITIAL_REFRESH
 
-    /**
-     * Return type of [load], which determines [LoadState].
-     */
+    /** Return type of [load], which determines [LoadState]. */
     public sealed class MediatorResult {
-        /**
-         * Recoverable error that can be retried, sets the [LoadState] to [LoadState.Error].
-         */
+        /** Recoverable error that can be retried, sets the [LoadState] to [LoadState.Error]. */
         public class Error(public val throwable: Throwable) : MediatorResult()
 
         /**
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediatorAccessor.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediatorAccessor.kt
index 60e1cd7..21703e9e 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediatorAccessor.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/RemoteMediatorAccessor.kt
@@ -27,24 +27,15 @@
 import kotlinx.coroutines.flow.StateFlow
 import kotlinx.coroutines.launch
 
-/**
- * Interface provided to the snapshot to trigger load events.
- */
+/** Interface provided to the snapshot to trigger load events. */
 internal interface RemoteMediatorConnection<Key : Any, Value : Any> {
-    fun requestRefreshIfAllowed(
-        pagingState: PagingState<Key, Value>
-    )
+    fun requestRefreshIfAllowed(pagingState: PagingState<Key, Value>)
 
-    fun requestLoad(
-        loadType: LoadType,
-        pagingState: PagingState<Key, Value>
-    )
+    fun requestLoad(loadType: LoadType, pagingState: PagingState<Key, Value>)
 
     fun retryFailed(pagingState: PagingState<Key, Value>)
 
-    /**
-     * Allow a single call to [requestRefreshIfAllowed] to successfully get enqueued.
-     */
+    /** Allow a single call to [requestRefreshIfAllowed] to successfully get enqueued. */
     fun allowRefresh()
 }
 
@@ -63,9 +54,7 @@
     delegate: RemoteMediator<Key, Value>
 ): RemoteMediatorAccessor<Key, Value> = RemoteMediatorAccessImpl(scope, delegate)
 
-/**
- * Simple wrapper around the local state of accessor to ensure we don't concurrently change it.
- */
+/** Simple wrapper around the local state of accessor to ensure we don't concurrently change it. */
 private class AccessorStateHolder<Key : Any, Value : Any> {
     private val lock = ReentrantLock()
 
@@ -77,9 +66,7 @@
 
     fun <R> use(block: (AccessorState<Key, Value>) -> R): R {
         return lock.withLock {
-            block(internalState).also {
-                _loadStates.value = internalState.computeLoadStates()
-            }
+            block(internalState).also { _loadStates.value = internalState.computeLoadStates() }
         }
     }
 }
@@ -95,14 +82,10 @@
  */
 private class AccessorState<Key : Any, Value : Any> {
     // TODO this can be a bit flag instead
-    private val blockStates = Array<BlockState>(LoadType.values().size) {
-        UNBLOCKED
-    }
+    private val blockStates = Array<BlockState>(LoadType.values().size) { UNBLOCKED }
 
     // keep these as error states to avoid recreating them all the time
-    private val errors = Array<LoadState.Error?>(LoadType.values().size) {
-        null
-    }
+    private val errors = Array<LoadState.Error?>(LoadType.values().size) { null }
     private val pendingRequests = ArrayDeque<PendingRequest<Key, Value>>()
 
     /**
@@ -130,9 +113,7 @@
 
     private fun computeLoadTypeState(loadType: LoadType): LoadState {
         val blockState = blockStates[loadType.ordinal]
-        val hasPending = pendingRequests.any {
-            it.loadType == loadType
-        }
+        val hasPending = pendingRequests.any { it.loadType == loadType }
         // Boundary requests maybe queue in pendingRequest before getting launched later when
         // refresh resolves if their block state is REQUIRES_REFRESH.
         if (hasPending && blockState != REQUIRES_REFRESH) {
@@ -146,33 +127,28 @@
         // b) it might be blocked due to refresh being required first -> Incomplete
         // c) it might have never run -> Incomplete
         return when (blockState) {
-            COMPLETED -> when (loadType) {
-                LoadType.REFRESH -> LoadState.NotLoading.Incomplete
-                else -> LoadState.NotLoading.Complete
-            }
+            COMPLETED ->
+                when (loadType) {
+                    LoadType.REFRESH -> LoadState.NotLoading.Incomplete
+                    else -> LoadState.NotLoading.Complete
+                }
             REQUIRES_REFRESH -> LoadState.NotLoading.Incomplete
             UNBLOCKED -> LoadState.NotLoading.Incomplete
         }
     }
 
     /**
-     * Tries to add a new pending request for the provided [loadType], and launches it
-     * immediately if it should run.
+     * Tries to add a new pending request for the provided [loadType], and launches it immediately
+     * if it should run.
      *
-     * In cases where pending request for the provided [loadType] already exists, the
-     * [pagingState] will just be updated in the existing request instead of queuing up multiple
-     * requests. This effectively de-dupes requests by [loadType], but always keeps the most
-     * recent request.
+     * In cases where pending request for the provided [loadType] already exists, the [pagingState]
+     * will just be updated in the existing request instead of queuing up multiple requests. This
+     * effectively de-dupes requests by [loadType], but always keeps the most recent request.
      *
      * @return `true` if fetchers should be launched, `false` otherwise.
      */
-    fun add(
-        loadType: LoadType,
-        pagingState: PagingState<Key, Value>
-    ): Boolean {
-        val existing = pendingRequests.firstOrNull {
-            it.loadType == loadType
-        }
+    fun add(loadType: LoadType, pagingState: PagingState<Key, Value>): Boolean {
+        val existing = pendingRequests.firstOrNull { it.loadType == loadType }
         // De-dupe requests with the same LoadType, just update PagingState and return.
         if (existing != null) {
             existing.pagingState = pagingState
@@ -217,25 +193,25 @@
         blockStates[loadType.ordinal] = state
     }
 
-    fun getPendingRefresh() = pendingRequests.firstOrNull {
-        it.loadType == LoadType.REFRESH
-    }?.pagingState
+    fun getPendingRefresh() =
+        pendingRequests.firstOrNull { it.loadType == LoadType.REFRESH }?.pagingState
 
-    fun getPendingBoundary() = pendingRequests.firstOrNull {
-        it.loadType != LoadType.REFRESH && blockStates[it.loadType.ordinal] == UNBLOCKED
-    }?.let {
-        // make a copy
-        it.loadType to it.pagingState
-    }
+    fun getPendingBoundary() =
+        pendingRequests
+            .firstOrNull {
+                it.loadType != LoadType.REFRESH && blockStates[it.loadType.ordinal] == UNBLOCKED
+            }
+            ?.let {
+                // make a copy
+                it.loadType to it.pagingState
+            }
 
     fun clearPendingRequests() {
         pendingRequests.clear()
     }
 
     fun clearPendingRequest(loadType: LoadType) {
-        pendingRequests.removeAll {
-            it.loadType == loadType
-        }
+        pendingRequests.removeAll { it.loadType == loadType }
     }
 
     fun clearErrors() {
@@ -296,9 +272,7 @@
         loadType: LoadType,
         pagingState: PagingState<Key, Value>,
     ) {
-        val newRequest = use {
-            it.add(loadType, pagingState)
-        }
+        val newRequest = use { it.add(loadType, pagingState) }
 
         if (newRequest) {
             when (loadType) {
@@ -311,66 +285,69 @@
     private fun launchRefresh() {
         scope.launch {
             var launchAppendPrepend = false
-            isolationRunner.runInIsolation(
-                priority = PRIORITY_REFRESH
-            ) {
-                val pendingPagingState = accessorState.use {
-                    it.getPendingRefresh()
-                }
+            isolationRunner.runInIsolation(priority = PRIORITY_REFRESH) {
+                val pendingPagingState = accessorState.use { it.getPendingRefresh() }
                 pendingPagingState?.let {
                     val loadResult = remoteMediator.load(LoadType.REFRESH, pendingPagingState)
-                    launchAppendPrepend = when (loadResult) {
-                        is MediatorResult.Success -> {
-                            accessorState.use {
-                                // First clear refresh from pending requests to update LoadState.
-                                // Note: Only clear refresh request, allowing potentially
-                                // out-of-date boundary requests as there's no guarantee that
-                                // refresh will trigger invalidation, and clearing boundary requests
-                                // here could prevent Paging from making progress.
-                                it.clearPendingRequest(LoadType.REFRESH)
+                    launchAppendPrepend =
+                        when (loadResult) {
+                            is MediatorResult.Success -> {
+                                accessorState.use {
+                                    // First clear refresh from pending requests to update
+                                    // LoadState.
+                                    // Note: Only clear refresh request, allowing potentially
+                                    // out-of-date boundary requests as there's no guarantee that
+                                    // refresh will trigger invalidation, and clearing boundary
+                                    // requests
+                                    // here could prevent Paging from making progress.
+                                    it.clearPendingRequest(LoadType.REFRESH)
 
-                                if (loadResult.endOfPaginationReached) {
-                                    it.setBlockState(LoadType.REFRESH, COMPLETED)
-                                    it.setBlockState(LoadType.PREPEND, COMPLETED)
-                                    it.setBlockState(LoadType.APPEND, COMPLETED)
+                                    if (loadResult.endOfPaginationReached) {
+                                        it.setBlockState(LoadType.REFRESH, COMPLETED)
+                                        it.setBlockState(LoadType.PREPEND, COMPLETED)
+                                        it.setBlockState(LoadType.APPEND, COMPLETED)
 
-                                    // Now that blockState is updated, which should block
-                                    // new boundary requests, clear all requests since
-                                    // endOfPaginationReached from refresh should prevent prepend
-                                    // and append from triggering, even if they are queued up.
-                                    it.clearPendingRequests()
-                                } else {
-                                    // Update block state for boundary requests now that we can
-                                    // handle them if they required refresh.
-                                    it.setBlockState(LoadType.PREPEND, UNBLOCKED)
-                                    it.setBlockState(LoadType.APPEND, UNBLOCKED)
+                                        // Now that blockState is updated, which should block
+                                        // new boundary requests, clear all requests since
+                                        // endOfPaginationReached from refresh should prevent
+                                        // prepend
+                                        // and append from triggering, even if they are queued up.
+                                        it.clearPendingRequests()
+                                    } else {
+                                        // Update block state for boundary requests now that we can
+                                        // handle them if they required refresh.
+                                        it.setBlockState(LoadType.PREPEND, UNBLOCKED)
+                                        it.setBlockState(LoadType.APPEND, UNBLOCKED)
+                                    }
+
+                                    // clean their errors
+                                    it.setError(LoadType.PREPEND, null)
+                                    it.setError(LoadType.APPEND, null)
+
+                                    // If there is a pending boundary, trigger its launch, allowing
+                                    // out-of-date requests in the case where queued requests were
+                                    // from previous generation. See b/176855944.
+                                    it.getPendingBoundary() != null
                                 }
+                            }
+                            is MediatorResult.Error -> {
+                                // if refresh failed, don't change append/prepend states so that if
+                                // refresh is not required, they can run.
+                                accessorState.use {
+                                    // only clear refresh. we can use append prepend
+                                    it.clearPendingRequest(LoadType.REFRESH)
+                                    it.setError(
+                                        LoadType.REFRESH,
+                                        LoadState.Error(loadResult.throwable)
+                                    )
 
-                                // clean their errors
-                                it.setError(LoadType.PREPEND, null)
-                                it.setError(LoadType.APPEND, null)
-
-                                // If there is a pending boundary, trigger its launch, allowing
-                                // out-of-date requests in the case where queued requests were
-                                // from previous generation. See b/176855944.
-                                it.getPendingBoundary() != null
+                                    // If there is a pending boundary, trigger its launch, allowing
+                                    // out-of-date requests in the case where queued requests were
+                                    // from previous generation. See b/176855944.
+                                    it.getPendingBoundary() != null
+                                }
                             }
                         }
-                        is MediatorResult.Error -> {
-                            // if refresh failed, don't change append/prepend states so that if
-                            // refresh is not required, they can run.
-                            accessorState.use {
-                                // only clear refresh. we can use append prepend
-                                it.clearPendingRequest(LoadType.REFRESH)
-                                it.setError(LoadType.REFRESH, LoadState.Error(loadResult.throwable))
-
-                                // If there is a pending boundary, trigger its launch, allowing
-                                // out-of-date requests in the case where queued requests were
-                                // from previous generation. See b/176855944.
-                                it.getPendingBoundary() != null
-                            }
-                        }
-                    }
                 }
             }
             // launch this after we leave the restricted scope otherwise append / prepend won't
@@ -383,13 +360,10 @@
 
     private fun launchBoundary() {
         scope.launch {
-            isolationRunner.runInIsolation(
-                priority = PRIORITY_APPEND_PREPEND
-            ) {
+            isolationRunner.runInIsolation(priority = PRIORITY_APPEND_PREPEND) {
                 while (true) {
-                    val (loadType, pendingPagingState) = accessorState.use {
-                        it.getPendingBoundary()
-                    } ?: break
+                    val (loadType, pendingPagingState) =
+                        accessorState.use { it.getPendingBoundary() } ?: break
                     when (val loadResult = remoteMediator.load(loadType, pendingPagingState)) {
                         is MediatorResult.Success -> {
                             accessorState.use {
@@ -436,9 +410,7 @@
             }
         }
 
-        toBeStarted.forEach {
-            requestLoad(it, pagingState)
-        }
+        toBeStarted.forEach { requestLoad(it, pagingState) }
     }
 
     override suspend fun initialize(): RemoteMediator.InitializeAction {
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/Separators.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/Separators.kt
index 00f9e19..5452d3a 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/Separators.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/Separators.kt
@@ -39,8 +39,8 @@
      *
      * End of paginations occurs when [CombinedLoadStates] has set
      * [LoadState.endOfPaginationReached] to `true` for both [CombinedLoadStates.source] and
-     * [CombinedLoadStates.mediator] in the [PREPEND] direction for the header and in the
-     * [APPEND] direction for the footer.
+     * [CombinedLoadStates.mediator] in the [PREPEND] direction for the header and in the [APPEND]
+     * direction for the footer.
      *
      * In cases where [RemoteMediator] isn't used, only [CombinedLoadStates.source] will be
      * considered.
@@ -67,8 +67,7 @@
     generator: suspend (T?, T?) -> R?
 ): TransformablePage<R> {
     if (data.isEmpty()) {
-        @Suppress("UNCHECKED_CAST")
-        return this as TransformablePage<R>
+        @Suppress("UNCHECKED_CAST") return this as TransformablePage<R>
     }
 
     val initialCapacity = data.size + 4 // extra space to avoid bigger allocations
@@ -106,20 +105,19 @@
     }
 }
 
-/**
- * Create a [TransformablePage] with the given separator (or empty, if the separator is null)
- */
+/** Create a [TransformablePage] with the given separator (or empty, if the separator is null) */
 internal fun <T : Any> separatorPage(
     separator: T,
     originalPageOffsets: IntArray,
     hintOriginalPageOffset: Int,
     hintOriginalIndex: Int
-): TransformablePage<T> = TransformablePage(
-    originalPageOffsets = originalPageOffsets,
-    data = listOf(separator),
-    hintOriginalPageOffset = hintOriginalPageOffset,
-    hintOriginalIndices = listOf(hintOriginalIndex)
-)
+): TransformablePage<T> =
+    TransformablePage(
+        originalPageOffsets = originalPageOffsets,
+        data = listOf(separator),
+        hintOriginalPageOffset = hintOriginalPageOffset,
+        hintOriginalIndices = listOf(hintOriginalIndex)
+    )
 
 /**
  * Create a [TransformablePage] with the given separator, and add it if [separator] is non-null
@@ -135,12 +133,13 @@
 ) {
     if (separator == null) return
 
-    val separatorPage = separatorPage(
-        separator = separator,
-        originalPageOffsets = originalPageOffsets,
-        hintOriginalPageOffset = hintOriginalPageOffset,
-        hintOriginalIndex = hintOriginalIndex
-    )
+    val separatorPage =
+        separatorPage(
+            separator = separator,
+            originalPageOffsets = originalPageOffsets,
+            hintOriginalPageOffset = hintOriginalPageOffset,
+            hintOriginalIndex = hintOriginalIndex
+        )
     add(separatorPage)
 }
 
@@ -161,17 +160,19 @@
     val afterOffsets = adjacentPageAfter?.originalPageOffsets
     addSeparatorPage(
         separator = separator,
-        originalPageOffsets = when {
-            beforeOffsets != null && afterOffsets != null -> {
-                (beforeOffsets + afterOffsets).distinct().sorted().toIntArray()
-            }
-            beforeOffsets == null && afterOffsets != null -> afterOffsets
-            beforeOffsets != null && afterOffsets == null -> beforeOffsets
-            else -> throw IllegalArgumentException(
-                "Separator page expected adjacentPageBefore or adjacentPageAfter, but both were" +
-                    " null."
-            )
-        },
+        originalPageOffsets =
+            when {
+                beforeOffsets != null && afterOffsets != null -> {
+                    (beforeOffsets + afterOffsets).distinct().sorted().toIntArray()
+                }
+                beforeOffsets == null && afterOffsets != null -> afterOffsets
+                beforeOffsets != null && afterOffsets == null -> beforeOffsets
+                else ->
+                    throw IllegalArgumentException(
+                        "Separator page expected adjacentPageBefore or adjacentPageAfter, but both were" +
+                            " null."
+                    )
+            },
         hintOriginalPageOffset = hintOriginalPageOffset,
         hintOriginalIndex = hintOriginalIndex
     )
@@ -184,9 +185,9 @@
     /**
      * Lookup table of previously emitted pages, that skips empty pages.
      *
-     * This table is used to keep track of originalPageOffsets for separators that would span
-     * across empty pages. It includes a simplified version of loaded pages which only has the
-     * first and last item in each page to reduce memory pressure.
+     * This table is used to keep track of originalPageOffsets for separators that would span across
+     * empty pages. It includes a simplified version of loaded pages which only has the first and
+     * last item in each page to reduce memory pressure.
      *
      * Note: [TransformablePage] added to this stash must always have
      * [TransformablePage.originalPageOffsets] defined, since it needs to keep track of the
@@ -210,24 +211,24 @@
     var headerAdded = false
 
     @Suppress("UNCHECKED_CAST")
-    suspend fun onEvent(event: PageEvent<T>): PageEvent<R> = when (event) {
-        is Insert<T> -> onInsert(event)
-        is Drop -> onDrop(event)
-        is LoadStateUpdate -> onLoadStateUpdate(event)
-        is StaticList -> onStaticList(event)
-    }.also {
-        // validate internal state after each modification
-        if (endTerminalSeparatorDeferred) {
-            check(pageStash.isEmpty()) { "deferred endTerm, page stash should be empty" }
+    suspend fun onEvent(event: PageEvent<T>): PageEvent<R> =
+        when (event) {
+            is Insert<T> -> onInsert(event)
+            is Drop -> onDrop(event)
+            is LoadStateUpdate -> onLoadStateUpdate(event)
+            is StaticList -> onStaticList(event)
+        }.also {
+            // validate internal state after each modification
+            if (endTerminalSeparatorDeferred) {
+                check(pageStash.isEmpty()) { "deferred endTerm, page stash should be empty" }
+            }
+            if (startTerminalSeparatorDeferred) {
+                check(pageStash.isEmpty()) { "deferred startTerm, page stash should be empty" }
+            }
         }
-        if (startTerminalSeparatorDeferred) {
-            check(pageStash.isEmpty()) { "deferred startTerm, page stash should be empty" }
-        }
-    }
 
     fun Insert<T>.asRType(): Insert<R> {
-        @Suppress("UNCHECKED_CAST")
-        return this as Insert<R>
+        @Suppress("UNCHECKED_CAST") return this as Insert<R>
     }
 
     fun <T : Any> Insert<T>.terminatesStart(terminalSeparatorType: TerminalSeparatorType): Boolean {
@@ -411,16 +412,19 @@
                             separator = separator,
                             adjacentPageBefore = pageBefore,
                             adjacentPageAfter = page,
-                            hintOriginalPageOffset = if (event.loadType == PREPEND) {
-                                pageBefore.hintOriginalPageOffset
-                            } else {
-                                page.hintOriginalPageOffset
-                            },
-                            hintOriginalIndex = if (event.loadType == PREPEND) {
-                                pageBefore.hintOriginalIndices?.last() ?: pageBefore.data.lastIndex
-                            } else {
-                                page.hintOriginalIndices?.first() ?: 0
-                            }
+                            hintOriginalPageOffset =
+                                if (event.loadType == PREPEND) {
+                                    pageBefore.hintOriginalPageOffset
+                                } else {
+                                    page.hintOriginalPageOffset
+                                },
+                            hintOriginalIndex =
+                                if (event.loadType == PREPEND) {
+                                    pageBefore.hintOriginalIndices?.last()
+                                        ?: pageBefore.data.lastIndex
+                                } else {
+                                    page.hintOriginalIndices?.first() ?: 0
+                                }
                         )
                     }
 
@@ -443,8 +447,9 @@
                     adjacentPageBefore = lastNonEmptyPage,
                     adjacentPageAfter = pageAfter,
                     hintOriginalPageOffset = lastNonEmptyPage.hintOriginalPageOffset,
-                    hintOriginalIndex = lastNonEmptyPage.hintOriginalIndices?.last()
-                        ?: lastNonEmptyPage.data.lastIndex
+                    hintOriginalIndex =
+                        lastNonEmptyPage.hintOriginalIndices?.last()
+                            ?: lastNonEmptyPage.data.lastIndex
                 )
             }
 
@@ -465,8 +470,8 @@
                 adjacentPageBefore = pageBefore,
                 adjacentPageAfter = null,
                 hintOriginalPageOffset = pageBefore.hintOriginalPageOffset,
-                hintOriginalIndex = pageBefore.hintOriginalIndices?.last()
-                    ?: pageBefore.data.lastIndex
+                hintOriginalIndex =
+                    pageBefore.hintOriginalIndices?.last() ?: pageBefore.data.lastIndex
             )
         }
 
@@ -481,9 +486,7 @@
         return event.transformPages { outList }
     }
 
-    /**
-     * Process a [Drop] event to update [pageStash] stage.
-     */
+    /** Process a [Drop] event to update [pageStash] stage. */
     fun onDrop(event: Drop<T>): Drop<R> {
         sourceStates.set(type = event.loadType, state = NotLoading.Incomplete)
         if (event.loadType == PREPEND) {
@@ -508,8 +511,7 @@
             stash.originalPageOffsets.any { pageOffsetsToDrop.contains(it) }
         }
 
-        @Suppress("UNCHECKED_CAST")
-        return event as Drop<R>
+        @Suppress("UNCHECKED_CAST") return event as Drop<R>
     }
 
     suspend fun onLoadStateUpdate(event: LoadStateUpdate<T>): PageEvent<R> {
@@ -517,8 +519,7 @@
         // Check for redundant LoadStateUpdate events to avoid unnecessary mapping to empty inserts
         // that might cause terminal separators to get added out of place.
         if (sourceStates.snapshot() == event.source && prevMediator == event.mediator) {
-            @Suppress("UNCHECKED_CAST")
-            return event as PageEvent<R>
+            @Suppress("UNCHECKED_CAST") return event as PageEvent<R>
         }
 
         sourceStates.set(event.source)
@@ -530,29 +531,34 @@
         // isn't possible to add a separator to. Note: Adding a separate insert event also
         // doesn't work in the case where .insertSeparators() is called multiple times on the
         // same page event stream - we have to transform the terminating LoadStateUpdate event.
-        if (event.mediator != null && event.mediator.prepend.endOfPaginationReached &&
-            prevMediator?.prepend != event.mediator.prepend
+        if (
+            event.mediator != null &&
+                event.mediator.prepend.endOfPaginationReached &&
+                prevMediator?.prepend != event.mediator.prepend
         ) {
-            val prependTerminalInsert: Insert<T> = Insert.Prepend(
-                pages = emptyList(),
-                placeholdersBefore = placeholdersBefore,
-                sourceLoadStates = event.source,
-                mediatorLoadStates = event.mediator,
-            )
+            val prependTerminalInsert: Insert<T> =
+                Insert.Prepend(
+                    pages = emptyList(),
+                    placeholdersBefore = placeholdersBefore,
+                    sourceLoadStates = event.source,
+                    mediatorLoadStates = event.mediator,
+                )
             return onInsert(prependTerminalInsert)
-        } else if (event.mediator != null && event.mediator.append.endOfPaginationReached &&
-            prevMediator?.append != event.mediator.append
+        } else if (
+            event.mediator != null &&
+                event.mediator.append.endOfPaginationReached &&
+                prevMediator?.append != event.mediator.append
         ) {
-            val appendTerminalInsert: Insert<T> = Insert.Append(
-                pages = emptyList(),
-                placeholdersAfter = placeholdersAfter,
-                sourceLoadStates = event.source,
-                mediatorLoadStates = event.mediator,
-            )
+            val appendTerminalInsert: Insert<T> =
+                Insert.Append(
+                    pages = emptyList(),
+                    placeholdersAfter = placeholdersAfter,
+                    sourceLoadStates = event.source,
+                    mediatorLoadStates = event.mediator,
+                )
             return onInsert(appendTerminalInsert)
         }
-        @Suppress("UNCHECKED_CAST")
-        return event as PageEvent<R>
+        @Suppress("UNCHECKED_CAST") return event as PageEvent<R>
     }
 
     suspend fun onStaticList(event: StaticList<T>): PageEvent<R> {
@@ -584,24 +590,24 @@
             originalPageOffsets = originalPage.originalPageOffsets,
             data = listOf(originalPage.data.first(), originalPage.data.last()),
             hintOriginalPageOffset = originalPage.hintOriginalPageOffset,
-            hintOriginalIndices = listOf(
-                originalPage.hintOriginalIndices?.first() ?: 0,
-                originalPage.hintOriginalIndices?.last() ?: originalPage.data.lastIndex
-            )
+            hintOriginalIndices =
+                listOf(
+                    originalPage.hintOriginalIndices?.first() ?: 0,
+                    originalPage.hintOriginalIndices?.last() ?: originalPage.data.lastIndex
+                )
         )
     }
 }
 
 /**
- * This is intentionally not named insertSeparators to avoid creating a clashing import
- * with PagingData.insertSeparators, which is public
+ * This is intentionally not named insertSeparators to avoid creating a clashing import with
+ * PagingData.insertSeparators, which is public
  */
 internal fun <T : R, R : Any> Flow<PageEvent<T>>.insertEventSeparators(
     terminalSeparatorType: TerminalSeparatorType,
     generator: suspend (T?, T?) -> R?
 ): Flow<PageEvent<R>> {
-    val separatorState = SeparatorState(terminalSeparatorType) { before: T?, after: T? ->
-        generator(before, after)
-    }
+    val separatorState =
+        SeparatorState(terminalSeparatorType) { before: T?, after: T? -> generator(before, after) }
     return map { separatorState.onEvent(it) }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/SimpleChannelFlow.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/SimpleChannelFlow.kt
index 509cf455..63e1a29 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/SimpleChannelFlow.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/SimpleChannelFlow.kt
@@ -33,48 +33,48 @@
 import kotlinx.coroutines.suspendCancellableCoroutine
 
 /**
- * This is a simplified channelFlow implementation as a temporary measure until channel flow
- * leaves experimental state.
+ * This is a simplified channelFlow implementation as a temporary measure until channel flow leaves
+ * experimental state.
  *
- * The exact same implementation is not possible due to [FusibleFlow] being an internal API. To
- * get close to that implementation, internally we use a [Channel.RENDEZVOUS] channel and use a
- * [buffer] ([Channel.BUFFERED]) operator on the resulting Flow. This gives us a close behavior
- * where the default is buffered and any followup buffer operation will result in +1 value being
- * produced.
+ * The exact same implementation is not possible due to [FusibleFlow] being an internal API. To get
+ * close to that implementation, internally we use a [Channel.RENDEZVOUS] channel and use a [buffer]
+ * ([Channel.BUFFERED]) operator on the resulting Flow. This gives us a close behavior where the
+ * default is buffered and any followup buffer operation will result in +1 value being produced.
  */
-internal fun <T> simpleChannelFlow(
-    block: suspend SimpleProducerScope<T>.() -> Unit
-): Flow<T> {
+internal fun <T> simpleChannelFlow(block: suspend SimpleProducerScope<T>.() -> Unit): Flow<T> {
     return flow {
-        coroutineScope {
-            val channel = Channel<T>(capacity = Channel.RENDEZVOUS)
-            val producer = launch {
-                try {
-                    // run producer in a separate inner scope to ensure we wait for its children
-                    // to finish, in case it does more launches inside.
-                    coroutineScope {
-                        val producerScopeImpl = SimpleProducerScopeImpl(
-                            scope = this,
-                            channel = channel,
-                        )
-                        producerScopeImpl.block()
+            coroutineScope {
+                val channel = Channel<T>(capacity = Channel.RENDEZVOUS)
+                val producer = launch {
+                    try {
+                        // run producer in a separate inner scope to ensure we wait for its children
+                        // to finish, in case it does more launches inside.
+                        coroutineScope {
+                            val producerScopeImpl =
+                                SimpleProducerScopeImpl(
+                                    scope = this,
+                                    channel = channel,
+                                )
+                            producerScopeImpl.block()
+                        }
+                        channel.close()
+                    } catch (t: Throwable) {
+                        channel.close(t)
                     }
-                    channel.close()
-                } catch (t: Throwable) {
-                    channel.close(t)
                 }
+                for (item in channel) {
+                    emit(item)
+                }
+                // in case channel closed before producer completes, cancel the producer.
+                producer.cancel()
             }
-            for (item in channel) {
-                emit(item)
-            }
-            // in case channel closed before producer completes, cancel the producer.
-            producer.cancel()
         }
-    }.buffer(Channel.BUFFERED)
+        .buffer(Channel.BUFFERED)
 }
 
 internal interface SimpleProducerScope<T> : CoroutineScope, SendChannel<T> {
     val channel: SendChannel<T>
+
     suspend fun awaitClose(block: () -> Unit)
 }
 
@@ -84,13 +84,10 @@
 ) : SimpleProducerScope<T>, CoroutineScope by scope, SendChannel<T> by channel {
     override suspend fun awaitClose(block: () -> Unit) {
         try {
-            val job = checkNotNull(coroutineContext[Job]) {
-                "Internal error, context should have a job."
-            }
+            val job =
+                checkNotNull(coroutineContext[Job]) { "Internal error, context should have a job." }
             suspendCancellableCoroutine<Unit> { cont ->
-                job.invokeOnCompletion {
-                    cont.resume(Unit)
-                }
+                job.invokeOnCompletion { cont.resume(Unit) }
             }
         } finally {
             block()
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/SingleRunner.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/SingleRunner.kt
index e411de3..de49597 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/SingleRunner.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/SingleRunner.kt
@@ -29,31 +29,23 @@
  *
  * When priorities are used, if the currently running block has a higher priority, the new one is
  * cancelled. If the currently running block has lower priority, currently running block is
- * cancelled.
- * If they have equal priority:
- *  * if cancelPreviousInEqualPriority == true, existing block is cancelled
- *  * if cancelPreviousInEqualPriority == false, new block is cancelled
+ * cancelled. If they have equal priority:
+ * * if cancelPreviousInEqualPriority == true, existing block is cancelled
+ * * if cancelPreviousInEqualPriority == false, new block is cancelled
  *
  * Note: When a block is cancelled, the outer scope (which called runInIsolation) is NOT cancelled.
  */
-internal class SingleRunner(
-    cancelPreviousInEqualPriority: Boolean = true
-) {
+internal class SingleRunner(cancelPreviousInEqualPriority: Boolean = true) {
     private val holder = Holder(this, cancelPreviousInEqualPriority)
 
-    suspend fun runInIsolation(
-        priority: Int = DEFAULT_PRIORITY,
-        block: suspend () -> Unit
-    ) {
+    suspend fun runInIsolation(priority: Int = DEFAULT_PRIORITY, block: suspend () -> Unit) {
         try {
             coroutineScope {
-                val myJob = checkNotNull(coroutineContext[Job]) {
-                    "Internal error. coroutineScope should've created a job."
-                }
-                val run = holder.tryEnqueue(
-                    priority = priority,
-                    job = myJob
-                )
+                val myJob =
+                    checkNotNull(coroutineContext[Job]) {
+                        "Internal error. coroutineScope should've created a job."
+                    }
+                val run = holder.tryEnqueue(priority = priority, job = myJob)
                 if (run) {
                     try {
                         block()
@@ -71,13 +63,12 @@
     }
 
     /**
-     * Internal exception which is used to cancel previous instance of an isolated runner.
-     * We use this special class so that we can still support regular cancelation coming from the
-     * `block` but don't cancel its coroutine just to cancel the block.
+     * Internal exception which is used to cancel previous instance of an isolated runner. We use
+     * this special class so that we can still support regular cancelation coming from the `block`
+     * but don't cancel its coroutine just to cancel the block.
      */
-    private class CancelIsolatedRunnerException(
-        val runner: SingleRunner
-    ) : CancellationException("Cancelled isolated runner")
+    private class CancelIsolatedRunnerException(val runner: SingleRunner) :
+        CancellationException("Cancelled isolated runner")
 
     private class Holder(
         private val singleRunner: SingleRunner,
@@ -87,16 +78,14 @@
         private var previous: Job? = null
         private var previousPriority: Int = 0
 
-        suspend fun tryEnqueue(
-            priority: Int,
-            job: Job
-        ): Boolean {
+        suspend fun tryEnqueue(priority: Int, job: Job): Boolean {
             mutex.withLock {
                 val prev = previous
-                return if (prev == null ||
-                    !prev.isActive ||
-                    previousPriority < priority ||
-                    (previousPriority == priority && cancelPreviousInEqualPriority)
+                return if (
+                    prev == null ||
+                        !prev.isActive ||
+                        previousPriority < priority ||
+                        (previousPriority == priority && cancelPreviousInEqualPriority)
                 ) {
                     prev?.cancel(CancelIsolatedRunnerException(singleRunner))
                     prev?.join()
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/SuspendingPagingSourceFactory.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/SuspendingPagingSourceFactory.kt
index 1b15542f..2ff9c96 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/SuspendingPagingSourceFactory.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/SuspendingPagingSourceFactory.kt
@@ -22,9 +22,8 @@
 /**
  * Utility class to convert the paging source factory to a suspend one.
  *
- * This is internal because it is only necessary for the legacy paging source implementation
- * where the data source must be created on the given thread pool for API guarantees.
- * see: b/173029013
+ * This is internal because it is only necessary for the legacy paging source implementation where
+ * the data source must be created on the given thread pool for API guarantees. see: b/173029013
  * see: b/168061354
  */
 internal class SuspendingPagingSourceFactory<Key : Any, Value : Any>(
@@ -32,9 +31,7 @@
     private val delegate: () -> PagingSource<Key, Value>
 ) : () -> PagingSource<Key, Value> {
     suspend fun create(): PagingSource<Key, Value> {
-        return withContext(dispatcher) {
-            delegate()
-        }
+        return withContext(dispatcher) { delegate() }
     }
 
     override fun invoke(): PagingSource<Key, Value> {
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/TransformablePage.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/TransformablePage.kt
index ded4c66..89da0db 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/TransformablePage.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/TransformablePage.kt
@@ -25,9 +25,7 @@
      */
     val originalPageOffsets: IntArray,
 
-    /**
-     * Data to present (post-transformation)
-     */
+    /** Data to present (post-transformation) */
     val data: List<T>,
 
     /**
@@ -75,17 +73,20 @@
         presentedItemsAfter: Int,
         originalPageOffsetFirst: Int,
         originalPageOffsetLast: Int
-    ) = ViewportHint.Access(
-        pageOffset = hintOriginalPageOffset,
-        indexInPage = when {
-            hintOriginalIndices?.indices?.contains(index) == true -> hintOriginalIndices[index]
-            else -> index
-        },
-        presentedItemsBefore = presentedItemsBefore,
-        presentedItemsAfter = presentedItemsAfter,
-        originalPageOffsetFirst = originalPageOffsetFirst,
-        originalPageOffsetLast = originalPageOffsetLast
-    )
+    ) =
+        ViewportHint.Access(
+            pageOffset = hintOriginalPageOffset,
+            indexInPage =
+                when {
+                    hintOriginalIndices?.indices?.contains(index) == true ->
+                        hintOriginalIndices[index]
+                    else -> index
+                },
+            presentedItemsBefore = presentedItemsBefore,
+            presentedItemsAfter = presentedItemsAfter,
+            originalPageOffsetFirst = originalPageOffsetFirst,
+            originalPageOffsetLast = originalPageOffsetLast
+        )
 
     // Do not edit. Implementation generated by Studio, since data class uses referential equality
     // for IntArray.
@@ -116,6 +117,7 @@
     companion object {
         @Suppress("UNCHECKED_CAST")
         fun <T : Any> empty() = EMPTY_INITIAL_PAGE as TransformablePage<T>
+
         val EMPTY_INITIAL_PAGE: TransformablePage<Any> = TransformablePage(0, emptyList())
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/UiReceiver.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/UiReceiver.kt
index 3175ced..82174fc 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/UiReceiver.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/UiReceiver.kt
@@ -21,5 +21,6 @@
  */
 internal interface UiReceiver {
     fun retry()
+
     fun refresh()
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/ViewportHint.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/ViewportHint.kt
index faf472c..43b34ac 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/ViewportHint.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/ViewportHint.kt
@@ -18,31 +18,24 @@
 
 import androidx.paging.PagingSource.LoadResult.Page
 
-/**
- * Load access information blob, containing information from presenter.
- */
+/** Load access information blob, containing information from presenter. */
 internal sealed class ViewportHint(
     /**
-     * Number of loaded items presented before this hint. Calculated as the distance from this
-     * hint to first loaded item being presented: `anchorPosition - firstLoadedItemPosition`
+     * Number of loaded items presented before this hint. Calculated as the distance from this hint
+     * to first loaded item being presented: `anchorPosition - firstLoadedItemPosition`
      *
-     * Zero indicates access at boundary
-     * Positive -> Within loaded range or in placeholders after presented items if greater
-     * than the size of all presented items.
-     * Negative -> placeholder access before first loaded item.
-     *
+     * Zero indicates access at boundary Positive -> Within loaded range or in placeholders after
+     * presented items if greater than the size of all presented items. Negative -> placeholder
+     * access before first loaded item.
      */
     val presentedItemsBefore: Int,
     /**
-     * Number of loaded items presented after this hint. Calculated as the distance from this
-     * hint to last loaded item being presented:
-     * `presenterSize - anchorPosition - placeholdersAfter - 1`
+     * Number of loaded items presented after this hint. Calculated as the distance from this hint
+     * to last loaded item being presented: `presenterSize - anchorPosition - placeholdersAfter - 1`
      *
-     * Zero indicates access at boundary
-     * Positive -> Within loaded range or in placeholders before presented items if greater
-     * than the size of all presented items.
-     * Negative -> placeholder access after last loaded item.
-     *
+     * Zero indicates access at boundary Positive -> Within loaded range or in placeholders before
+     * presented items if greater than the size of all presented items. Negative -> placeholder
+     * access after last loaded item.
      */
     val presentedItemsAfter: Int,
     /**
@@ -68,45 +61,49 @@
 
     /**
      * @return Count of presented items between this hint, and either:
-     *  * the beginning of the list if [loadType] == PREPEND
-     *  * the end of the list if loadType == APPEND
+     *     * the beginning of the list if [loadType] == PREPEND
+     *     * the end of the list if loadType == APPEND
      */
-    internal fun presentedItemsBeyondAnchor(loadType: LoadType): Int = when (loadType) {
-        LoadType.REFRESH -> throw IllegalArgumentException(
-            "Cannot get presentedItems for loadType: REFRESH"
-        )
-        LoadType.PREPEND -> presentedItemsBefore
-        LoadType.APPEND -> presentedItemsAfter
-    }
+    internal fun presentedItemsBeyondAnchor(loadType: LoadType): Int =
+        when (loadType) {
+            LoadType.REFRESH ->
+                throw IllegalArgumentException("Cannot get presentedItems for loadType: REFRESH")
+            LoadType.PREPEND -> presentedItemsBefore
+            LoadType.APPEND -> presentedItemsAfter
+        }
 
     override fun hashCode(): Int {
-        return presentedItemsBefore.hashCode() + presentedItemsAfter.hashCode() +
-            originalPageOffsetFirst.hashCode() + originalPageOffsetLast.hashCode()
+        return presentedItemsBefore.hashCode() +
+            presentedItemsAfter.hashCode() +
+            originalPageOffsetFirst.hashCode() +
+            originalPageOffsetLast.hashCode()
     }
 
     /**
      * [ViewportHint] reporting presenter state after receiving initial page. An [Initial] hint
-     * should never take precedence over an [Access] hint and is only used to inform
-     * [PageFetcher] how many items from the initial page load were presented by [PagingDataPresenter]
+     * should never take precedence over an [Access] hint and is only used to inform [PageFetcher]
+     * how many items from the initial page load were presented by [PagingDataPresenter]
      */
     class Initial(
         presentedItemsBefore: Int,
         presentedItemsAfter: Int,
         originalPageOffsetFirst: Int,
         originalPageOffsetLast: Int
-    ) : ViewportHint(
-        presentedItemsBefore = presentedItemsBefore,
-        presentedItemsAfter = presentedItemsAfter,
-        originalPageOffsetFirst = originalPageOffsetFirst,
-        originalPageOffsetLast = originalPageOffsetLast,
-    ) {
+    ) :
+        ViewportHint(
+            presentedItemsBefore = presentedItemsBefore,
+            presentedItemsAfter = presentedItemsAfter,
+            originalPageOffsetFirst = originalPageOffsetFirst,
+            originalPageOffsetLast = originalPageOffsetLast,
+        ) {
         override fun toString(): String {
             return """ViewportHint.Initial(
             |    presentedItemsBefore=$presentedItemsBefore,
             |    presentedItemsAfter=$presentedItemsAfter,
             |    originalPageOffsetFirst=$originalPageOffsetFirst,
             |    originalPageOffsetLast=$originalPageOffsetLast,
-            |)""".trimMargin()
+            |)"""
+                .trimMargin()
         }
     }
 
@@ -115,30 +112,29 @@
      * prefetch distance.
      */
     class Access(
-        /**
-         *  Page index offset from initial load
-         */
+        /** Page index offset from initial load */
         val pageOffset: Int,
         /**
          * Original index of item in the [Page] with [pageOffset].
          *
          * Three cases to consider:
-         *  - [indexInPage] in Page.data.indices -> Hint references original item directly
-         *  - [indexInPage] > Page.data.indices -> Hint references a placeholder after the last
-         *    presented item.
-         *  - [indexInPage] < 0 -> Hint references a placeholder before the first presented item.
+         * - [indexInPage] in Page.data.indices -> Hint references original item directly
+         * - [indexInPage] > Page.data.indices -> Hint references a placeholder after the last
+         *   presented item.
+         * - [indexInPage] < 0 -> Hint references a placeholder before the first presented item.
          */
         val indexInPage: Int,
         presentedItemsBefore: Int,
         presentedItemsAfter: Int,
         originalPageOffsetFirst: Int,
         originalPageOffsetLast: Int
-    ) : ViewportHint(
-        presentedItemsBefore = presentedItemsBefore,
-        presentedItemsAfter = presentedItemsAfter,
-        originalPageOffsetFirst = originalPageOffsetFirst,
-        originalPageOffsetLast = originalPageOffsetLast,
-    ) {
+    ) :
+        ViewportHint(
+            presentedItemsBefore = presentedItemsBefore,
+            presentedItemsAfter = presentedItemsAfter,
+            originalPageOffsetFirst = originalPageOffsetFirst,
+            originalPageOffsetLast = originalPageOffsetLast,
+        ) {
         override fun equals(other: Any?): Boolean {
             if (this === other) return true
             if (other !is Access) return false
@@ -163,7 +159,8 @@
             |    presentedItemsAfter=$presentedItemsAfter,
             |    originalPageOffsetFirst=$originalPageOffsetFirst,
             |    originalPageOffsetLast=$originalPageOffsetLast,
-            |)""".trimMargin()
+            |)"""
+                .trimMargin()
         }
     }
 }
diff --git a/paging/paging-common/src/commonMain/kotlin/androidx/paging/internal/Atomics.kt b/paging/paging-common/src/commonMain/kotlin/androidx/paging/internal/Atomics.kt
index f4e790b..a1cc02b 100644
--- a/paging/paging-common/src/commonMain/kotlin/androidx/paging/internal/Atomics.kt
+++ b/paging/paging-common/src/commonMain/kotlin/androidx/paging/internal/Atomics.kt
@@ -22,12 +22,15 @@
 
 internal expect class CopyOnWriteArrayList<T>() : Iterable<T> {
     fun add(value: T): Boolean
+
     fun remove(value: T): Boolean
+
     override fun iterator(): Iterator<T>
 }
 
 internal expect class ReentrantLock constructor() {
     fun lock()
+
     fun unlock()
 }
 
@@ -35,8 +38,11 @@
     constructor(initialValue: Int)
 
     fun getAndIncrement(): Int
+
     fun incrementAndGet(): Int
+
     fun decrementAndGet(): Int
+
     fun get(): Int
 }
 
@@ -44,7 +50,9 @@
     constructor(initialValue: Boolean)
 
     fun get(): Boolean
+
     fun set(value: Boolean)
+
     fun compareAndSet(expect: Boolean, update: Boolean): Boolean
 }
 
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachedPageEventFlowTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachedPageEventFlowTest.kt
index 40550f8..b118031 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachedPageEventFlowTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachedPageEventFlowTest.kt
@@ -38,316 +38,234 @@
 class CachedPageEventFlowTest {
     private val testScope = TestScope(UnconfinedTestDispatcher())
 
-    @Test
-    fun slowFastCollectors_CloseUpstream() = slowFastCollectors(TerminationType.CloseUpstream)
+    @Test fun slowFastCollectors_CloseUpstream() = slowFastCollectors(TerminationType.CloseUpstream)
 
     @Test
     fun slowFastCollectors_CloseCachedEventFlow() =
         slowFastCollectors(TerminationType.CloseCachedEventFlow)
 
-    private fun slowFastCollectors(terminationType: TerminationType) = testScope.runTest {
-        val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
-        val subject = CachedPageEventFlow(
-            src = upstream.consumeAsFlow(),
-            scope = testScope
-        )
-        val fastCollector = PageCollector(subject.downstreamFlow)
-        fastCollector.collectIn(testScope)
-        val slowCollector = PageCollector(
-            subject.downstreamFlow.onEach {
-                delay(1_000)
-            }
-        )
-        slowCollector.collectIn(testScope)
-        val refreshEvent = localRefresh(
-            listOf(
-                TransformablePage(
-                    listOf("a", "b", "c")
+    private fun slowFastCollectors(terminationType: TerminationType) =
+        testScope.runTest {
+            val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
+            val subject = CachedPageEventFlow(src = upstream.consumeAsFlow(), scope = testScope)
+            val fastCollector = PageCollector(subject.downstreamFlow)
+            fastCollector.collectIn(testScope)
+            val slowCollector = PageCollector(subject.downstreamFlow.onEach { delay(1_000) })
+            slowCollector.collectIn(testScope)
+            val refreshEvent =
+                localRefresh(
+                    listOf(TransformablePage(listOf("a", "b", "c"))),
                 )
-            ),
-        )
-        upstream.send(refreshEvent)
-        runCurrent()
-        assertThat(fastCollector.items()).containsExactly(
-            refreshEvent
-        )
-        assertThat(slowCollector.items()).isEmpty()
+            upstream.send(refreshEvent)
+            runCurrent()
+            assertThat(fastCollector.items()).containsExactly(refreshEvent)
+            assertThat(slowCollector.items()).isEmpty()
 
-        val appendEvent = localAppend(
-            listOf(
-                TransformablePage(
-                    listOf("d", "e")
+            val appendEvent =
+                localAppend(
+                    listOf(TransformablePage(listOf("d", "e"))),
                 )
-            ),
-        )
-        upstream.send(appendEvent)
-        runCurrent()
-        assertThat(fastCollector.items()).containsExactly(
-            refreshEvent,
-            appendEvent
-        )
-        assertThat(slowCollector.items()).isEmpty()
-        advanceTimeBy(3_000)
-        assertThat(slowCollector.items()).containsExactly(
-            refreshEvent,
-            appendEvent
-        )
-        val manyNewAppendEvents = (0 until 100).map {
-            localAppend(
-                listOf(
-                    TransformablePage(
-                        listOf("f", "g")
+            upstream.send(appendEvent)
+            runCurrent()
+            assertThat(fastCollector.items()).containsExactly(refreshEvent, appendEvent)
+            assertThat(slowCollector.items()).isEmpty()
+            advanceTimeBy(3_000)
+            assertThat(slowCollector.items()).containsExactly(refreshEvent, appendEvent)
+            val manyNewAppendEvents =
+                (0 until 100).map {
+                    localAppend(
+                        listOf(TransformablePage(listOf("f", "g"))),
                     )
-                ),
-            )
-        }
-        manyNewAppendEvents.forEach {
-            upstream.send(it)
-        }
-        val lateSlowCollector = PageCollector(subject.downstreamFlow.onEach { delay(1_000) })
-        lateSlowCollector.collectIn(testScope)
-        val finalAppendEvent = localAppend(
-            listOf(
-                TransformablePage(
-                    listOf("d", "e")
+                }
+            manyNewAppendEvents.forEach { upstream.send(it) }
+            val lateSlowCollector = PageCollector(subject.downstreamFlow.onEach { delay(1_000) })
+            lateSlowCollector.collectIn(testScope)
+            val finalAppendEvent =
+                localAppend(
+                    listOf(TransformablePage(listOf("d", "e"))),
                 )
-            ),
-        )
-        upstream.send(finalAppendEvent)
-        when (terminationType) {
-            TerminationType.CloseUpstream -> upstream.close()
-            TerminationType.CloseCachedEventFlow -> subject.close()
+            upstream.send(finalAppendEvent)
+            when (terminationType) {
+                TerminationType.CloseUpstream -> upstream.close()
+                TerminationType.CloseCachedEventFlow -> subject.close()
+            }
+            val fullList =
+                listOf(refreshEvent, appendEvent) + manyNewAppendEvents + finalAppendEvent
+            runCurrent()
+            assertThat(fastCollector.items()).containsExactlyElementsIn(fullList).inOrder()
+            assertThat(fastCollector.isActive()).isFalse()
+            assertThat(slowCollector.isActive()).isTrue()
+            assertThat(lateSlowCollector.isActive()).isTrue()
+            advanceUntilIdle()
+            assertThat(slowCollector.items()).containsExactlyElementsIn(fullList).inOrder()
+            assertThat(slowCollector.isActive()).isFalse()
+
+            val lateCollectorState =
+                localRefresh(
+                    pages =
+                        (listOf(refreshEvent, appendEvent) + manyNewAppendEvents).flatMap {
+                            it.pages
+                        },
+                )
+            assertThat(lateSlowCollector.items())
+                .containsExactly(lateCollectorState, finalAppendEvent)
+                .inOrder()
+            assertThat(lateSlowCollector.isActive()).isFalse()
+
+            upstream.close()
         }
-        val fullList = listOf(
-            refreshEvent,
-            appendEvent
-        ) + manyNewAppendEvents + finalAppendEvent
-        runCurrent()
-        assertThat(fastCollector.items()).containsExactlyElementsIn(fullList).inOrder()
-        assertThat(fastCollector.isActive()).isFalse()
-        assertThat(slowCollector.isActive()).isTrue()
-        assertThat(lateSlowCollector.isActive()).isTrue()
-        advanceUntilIdle()
-        assertThat(slowCollector.items()).containsExactlyElementsIn(fullList).inOrder()
-        assertThat(slowCollector.isActive()).isFalse()
 
-        val lateCollectorState = localRefresh(
-            pages = (listOf(refreshEvent, appendEvent) + manyNewAppendEvents).flatMap {
-                it.pages
-            },
-        )
-        assertThat(lateSlowCollector.items()).containsExactly(
-            lateCollectorState, finalAppendEvent
-        ).inOrder()
-        assertThat(lateSlowCollector.isActive()).isFalse()
-
-        upstream.close()
-    }
+    @Test fun ensureSharing_CloseUpstream() = ensureSharing(TerminationType.CloseUpstream)
 
     @Test
-    fun ensureSharing_CloseUpstream() = ensureSharing(TerminationType.CloseUpstream)
+    fun ensureSharing_CloseCachedEventFlow() = ensureSharing(TerminationType.CloseCachedEventFlow)
 
-    @Test
-    fun ensureSharing_CloseCachedEventFlow() =
-        ensureSharing(TerminationType.CloseCachedEventFlow)
+    private fun ensureSharing(terminationType: TerminationType) =
+        testScope.runTest {
+            val refreshEvent =
+                localRefresh(
+                    listOf(TransformablePage(listOf("a", "b", "c"))),
+                )
+            val appendEvent =
+                localAppend(
+                    listOf(TransformablePage(listOf("d", "e"))),
+                )
+            val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
+            val subject = CachedPageEventFlow(src = upstream.consumeAsFlow(), scope = testScope)
 
-    private fun ensureSharing(terminationType: TerminationType) = testScope.runTest {
-        val refreshEvent = localRefresh(
-            listOf(
-                TransformablePage(
-                    listOf("a", "b", "c")
+            val collector1 = PageCollector(subject.downstreamFlow)
+            upstream.send(refreshEvent)
+            upstream.send(appendEvent)
+            collector1.collectIn(testScope)
+            runCurrent()
+            assertThat(collector1.items()).isEqualTo(listOf(refreshEvent, appendEvent))
+            val collector2 = PageCollector(subject.downstreamFlow)
+            collector2.collectIn(testScope)
+            runCurrent()
+            val firstSnapshotRefreshEvent =
+                localRefresh(
+                    listOf(
+                        TransformablePage(listOf("a", "b", "c")),
+                        TransformablePage(listOf("d", "e"))
+                    ),
                 )
-            ),
-        )
-        val appendEvent = localAppend(
-            listOf(
-                TransformablePage(
-                    listOf("d", "e")
+            assertThat(collector2.items()).containsExactly(firstSnapshotRefreshEvent)
+            val prependEvent =
+                localPrepend(
+                    listOf(
+                        TransformablePage(listOf("a0", "a1")),
+                        TransformablePage(listOf("a2", "a3"))
+                    ),
                 )
-            ),
-        )
-        val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
-        val subject = CachedPageEventFlow(
-            src = upstream.consumeAsFlow(),
-            scope = testScope
-        )
-
-        val collector1 = PageCollector(subject.downstreamFlow)
-        upstream.send(refreshEvent)
-        upstream.send(appendEvent)
-        collector1.collectIn(testScope)
-        runCurrent()
-        assertThat(collector1.items()).isEqualTo(
-            listOf(refreshEvent, appendEvent)
-        )
-        val collector2 = PageCollector(subject.downstreamFlow)
-        collector2.collectIn(testScope)
-        runCurrent()
-        val firstSnapshotRefreshEvent = localRefresh(
-            listOf(
-                TransformablePage(
-                    listOf("a", "b", "c")
-                ),
-                TransformablePage(
-                    listOf("d", "e")
+            upstream.send(prependEvent)
+            assertThat(collector1.items())
+                .isEqualTo(listOf(refreshEvent, appendEvent, prependEvent))
+            assertThat(collector2.items())
+                .isEqualTo(listOf(firstSnapshotRefreshEvent, prependEvent))
+            val collector3 = PageCollector(subject.downstreamFlow)
+            collector3.collectIn(testScope)
+            val finalState =
+                localRefresh(
+                    listOf(
+                        TransformablePage(listOf("a0", "a1")),
+                        TransformablePage(listOf("a2", "a3")),
+                        TransformablePage(listOf("a", "b", "c")),
+                        TransformablePage(listOf("d", "e"))
+                    ),
                 )
-            ),
-        )
-        assertThat(collector2.items()).containsExactly(firstSnapshotRefreshEvent)
-        val prependEvent = localPrepend(
-            listOf(
-                TransformablePage(
-                    listOf("a0", "a1")
-                ),
-                TransformablePage(
-                    listOf("a2", "a3")
-                )
-            ),
-        )
-        upstream.send(prependEvent)
-        assertThat(collector1.items()).isEqualTo(
-            listOf(refreshEvent, appendEvent, prependEvent)
-        )
-        assertThat(collector2.items()).isEqualTo(
-            listOf(firstSnapshotRefreshEvent, prependEvent)
-        )
-        val collector3 = PageCollector(subject.downstreamFlow)
-        collector3.collectIn(testScope)
-        val finalState = localRefresh(
-            listOf(
-                TransformablePage(
-                    listOf("a0", "a1")
-                ),
-                TransformablePage(
-                    listOf("a2", "a3")
-                ),
-                TransformablePage(
-                    listOf("a", "b", "c")
-                ),
-                TransformablePage(
-                    listOf("d", "e")
-                )
-            ),
-        )
-        assertThat(collector3.items()).containsExactly(
-            finalState
-        )
-        assertThat(collector1.isActive()).isTrue()
-        assertThat(collector2.isActive()).isTrue()
-        assertThat(collector3.isActive()).isTrue()
-        when (terminationType) {
-            TerminationType.CloseUpstream -> upstream.close()
-            TerminationType.CloseCachedEventFlow -> subject.close()
+            assertThat(collector3.items()).containsExactly(finalState)
+            assertThat(collector1.isActive()).isTrue()
+            assertThat(collector2.isActive()).isTrue()
+            assertThat(collector3.isActive()).isTrue()
+            when (terminationType) {
+                TerminationType.CloseUpstream -> upstream.close()
+                TerminationType.CloseCachedEventFlow -> subject.close()
+            }
+            runCurrent()
+            assertThat(collector1.isActive()).isFalse()
+            assertThat(collector2.isActive()).isFalse()
+            assertThat(collector3.isActive()).isFalse()
+            val collector4 = PageCollector(subject.downstreamFlow).also { it.collectIn(testScope) }
+            runCurrent()
+            // since upstream is closed, this should just close
+            assertThat(collector4.isActive()).isFalse()
+            assertThat(collector4.items()).containsExactly(finalState)
         }
-        runCurrent()
-        assertThat(collector1.isActive()).isFalse()
-        assertThat(collector2.isActive()).isFalse()
-        assertThat(collector3.isActive()).isFalse()
-        val collector4 = PageCollector(subject.downstreamFlow).also {
-            it.collectIn(testScope)
+
+    @Test
+    fun emptyPage_singlelocalLoadStateUpdate() =
+        testScope.runTest {
+            val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
+            val subject = CachedPageEventFlow(src = upstream.consumeAsFlow(), scope = testScope)
+
+            // creating two collectors and collecting right away to assert that all collectors
+            val collector = PageCollector(subject.downstreamFlow)
+            collector.collectIn(testScope)
+
+            val collector2 = PageCollector(subject.downstreamFlow)
+            collector2.collectIn(testScope)
+
+            runCurrent()
+
+            // until upstream sends events, collectors shouldn't receive any events
+            assertThat(collector.items()).isEmpty()
+            assertThat(collector2.items()).isEmpty()
+
+            // now send refresh event
+            val refreshEvent =
+                localRefresh(
+                    listOf(TransformablePage(listOf("a", "b", "c"))),
+                )
+            upstream.send(refreshEvent)
+            runCurrent()
+
+            assertThat(collector.items()).containsExactly(refreshEvent)
+
+            assertThat(collector2.items()).containsExactly(refreshEvent)
+
+            upstream.close()
         }
-        runCurrent()
-        // since upstream is closed, this should just close
-        assertThat(collector4.isActive()).isFalse()
-        assertThat(collector4.items()).containsExactly(
-            finalState
-        )
-    }
 
     @Test
-    fun emptyPage_singlelocalLoadStateUpdate() = testScope.runTest {
-        val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
-        val subject = CachedPageEventFlow(
-            src = upstream.consumeAsFlow(),
-            scope = testScope
-        )
+    fun idleStateUpdate_collectedBySingleCollector() =
+        testScope.runTest {
+            val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
+            val subject = CachedPageEventFlow(src = upstream.consumeAsFlow(), scope = testScope)
 
-        // creating two collectors and collecting right away to assert that all collectors
-        val collector = PageCollector(subject.downstreamFlow)
-        collector.collectIn(testScope)
-
-        val collector2 = PageCollector(subject.downstreamFlow)
-        collector2.collectIn(testScope)
-
-        runCurrent()
-
-        // until upstream sends events, collectors shouldn't receive any events
-        assertThat(collector.items()).isEmpty()
-        assertThat(collector2.items()).isEmpty()
-
-        // now send refresh event
-        val refreshEvent = localRefresh(
-            listOf(
-                TransformablePage(
-                    listOf("a", "b", "c")
+            val refreshEvent =
+                localRefresh(
+                    listOf(TransformablePage(listOf("a", "b", "c"))),
                 )
-            ),
-        )
-        upstream.send(refreshEvent)
-        runCurrent()
+            upstream.send(refreshEvent)
+            runCurrent()
 
-        assertThat(collector.items()).containsExactly(
-            refreshEvent
-        )
+            val collector = PageCollector(subject.downstreamFlow)
+            collector.collectIn(testScope)
 
-        assertThat(collector2.items()).containsExactly(
-            refreshEvent
-        )
+            runCurrent()
 
-        upstream.close()
-    }
+            // collector shouldn't receive any idle events before the refresh
+            assertThat(collector.items()).containsExactly(refreshEvent)
 
-    @Test
-    fun idleStateUpdate_collectedBySingleCollector() = testScope.runTest {
-        val upstream = Channel<PageEvent<String>>(Channel.UNLIMITED)
-        val subject = CachedPageEventFlow(
-            src = upstream.consumeAsFlow(),
-            scope = testScope
-        )
+            val delayedCollector = PageCollector(subject.downstreamFlow)
+            delayedCollector.collectIn(testScope)
 
-        val refreshEvent = localRefresh(
-            listOf(
-                TransformablePage(
-                    listOf("a", "b", "c")
-                )
-            ),
-        )
-        upstream.send(refreshEvent)
-        runCurrent()
+            // delayed collector shouldn't receive any idle events since we already have refresh
+            assertThat(delayedCollector.items()).containsExactly(refreshEvent)
 
-        val collector = PageCollector(subject.downstreamFlow)
-        collector.collectIn(testScope)
-
-        runCurrent()
-
-        // collector shouldn't receive any idle events before the refresh
-        assertThat(collector.items()).containsExactly(
-            refreshEvent
-        )
-
-        val delayedCollector = PageCollector(subject.downstreamFlow)
-        delayedCollector.collectIn(testScope)
-
-        // delayed collector shouldn't receive any idle events since we already have refresh
-        assertThat(delayedCollector.items()).containsExactly(
-            refreshEvent
-        )
-
-        upstream.close()
-    }
+            upstream.close()
+        }
 
     private class PageCollector<T : Any>(val src: Flow<T>) {
         private val items = mutableListOf<T>()
         private var job: Job? = null
+
         fun collectIn(scope: CoroutineScope) {
-            job = scope.launch {
-                src.collect {
-                    items.add(it)
-                }
-            }
+            job = scope.launch { src.collect { items.add(it) } }
         }
 
         fun isActive() = job?.isActive ?: false
+
         fun items() = items.toList()
     }
 
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachingTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachingTest.kt
index e7112cb..ffdd971 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachingTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/CachingTest.kt
@@ -50,570 +50,439 @@
     private val testScope = TestScope(UnconfinedTestDispatcher())
 
     @Test
-    fun noSharing() = testScope.runTest {
-        val pageFlow = buildPageFlow()
-        val firstCollect = pageFlow.collectItemsUntilSize(6)
-        val secondCollect = pageFlow.collectItemsUntilSize(9)
-        assertThat(firstCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            )
-        )
+    fun noSharing() =
+        testScope.runTest {
+            val pageFlow = buildPageFlow()
+            val firstCollect = pageFlow.collectItemsUntilSize(6)
+            val secondCollect = pageFlow.collectItemsUntilSize(9)
+            assertThat(firstCollect)
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 6))
 
-        assertThat(secondCollect).isEqualTo(
-            buildItems(
-                version = 1,
-                generation = 0,
-                start = 0,
-                size = 9
-            )
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(0)
-    }
-
-    @Test
-    fun cached() = testScope.runTest {
-        val pageFlow = buildPageFlow().cachedIn(backgroundScope, tracker)
-        val firstCollect = pageFlow.collectItemsUntilSize(6)
-        val secondCollect = pageFlow.collectItemsUntilSize(9)
-        assertThat(firstCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            )
-        )
-
-        assertThat(secondCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9
-            )
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
-
-    @Test
-    fun cachedData() = testScope.runTest {
-        val pageFlow = buildPageFlow().cachedIn(backgroundScope, tracker)
-        assertThat(pageFlow).isInstanceOf<SharedFlow<PagingData<Item>>>()
-        assertThat((pageFlow as SharedFlow<PagingData<Item>>).replayCache).isEmpty()
-
-        pageFlow.collectItemsUntilSize(6)
-        val firstCachedData = pageFlow.cachedData()
-        assertThat(firstCachedData).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            )
-        )
-
-        pageFlow.collectItemsUntilSize(9)
-        val secondCachedEvent = pageFlow.cachedData()
-        assertThat(secondCachedEvent).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9
-            )
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
-
-    @Test
-    fun cached_afterMapping() = testScope.runTest {
-        var mappingCnt = 0
-        val pageFlow = buildPageFlow().map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = mappingIndex.toString())
-            }
-        }.cachedIn(backgroundScope, tracker)
-        val firstCollect = pageFlow.collectItemsUntilSize(6)
-        val secondCollect = pageFlow.collectItemsUntilSize(9)
-        assertThat(firstCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            ) {
-                it.copy(metadata = "0")
-            }
-        )
-
-        assertThat(secondCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9
-            ) {
-                it.copy(metadata = "0")
-            }
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
-
-    @Test
-    fun cachedData_afterMapping() = testScope.runTest {
-        var mappingCnt = 0
-        val pageFlow = buildPageFlow().map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = mappingIndex.toString())
-            }
-        }.cachedIn(backgroundScope, tracker)
-
-        pageFlow.collectItemsUntilSize(6)
-        val firstCachedData = pageFlow.cachedData()
-        assertThat(firstCachedData).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            ) {
-                it.copy(metadata = "0")
-            }
-        )
-
-        pageFlow.collectItemsUntilSize(9)
-        val secondCachedData = pageFlow.cachedData()
-        assertThat(secondCachedData).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9
-            ) {
-                it.copy(metadata = "0")
-            }
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
-
-    @Test
-    fun cached_beforeMapping() = testScope.runTest {
-        var mappingCnt = 0
-        val pageFlow = buildPageFlow().cachedIn(backgroundScope, tracker).map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = mappingIndex.toString())
-            }
+            assertThat(secondCollect)
+                .isEqualTo(buildItems(version = 1, generation = 0, start = 0, size = 9))
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(0)
         }
-        val firstCollect = pageFlow.collectItemsUntilSize(6)
-        val secondCollect = pageFlow.collectItemsUntilSize(9)
-        assertThat(firstCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            ) {
-                it.copy(metadata = "0")
-            }
-        )
-
-        assertThat(secondCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9
-            ) {
-                it.copy(metadata = "1")
-            }
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
 
     @Test
-    fun cachedData_beforeMapping() = testScope.runTest {
-        var mappingCnt = 0
-        val pageFlow = buildPageFlow().cachedIn(backgroundScope, tracker)
-        val mappedFlow = pageFlow.map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = mappingIndex.toString())
-            }
+    fun cached() =
+        testScope.runTest {
+            val pageFlow = buildPageFlow().cachedIn(backgroundScope, tracker)
+            val firstCollect = pageFlow.collectItemsUntilSize(6)
+            val secondCollect = pageFlow.collectItemsUntilSize(9)
+            assertThat(firstCollect)
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 6))
+
+            assertThat(secondCollect)
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 9))
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
         }
-        // Mapping converts SharedFlow to Flow and thereby blocks access to cachedIn's
-        // replayCache. You can still access latest cachedData directly from pre-mapped flow.
-        mappedFlow.collectItemsUntilSize(6)
-        val firstCachedData = pageFlow.cachedData()
-        assertThat(firstCachedData).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6,
-                modifier = null // before mapping
-            )
-        )
-
-        mappedFlow.collectItemsUntilSize(9)
-        val secondCachedEvent = pageFlow.cachedData()
-        assertThat(secondCachedEvent).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9,
-                modifier = null // before mapping
-            )
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
 
     @Test
-    fun cached_afterMapping_withMoreMappingAfterwards() = testScope.runTest {
-        var mappingCnt = 0
-        val pageFlow = buildPageFlow().map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = mappingIndex.toString())
-            }
-        }.cachedIn(backgroundScope, tracker).map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = "${it.metadata}_$mappingIndex")
-            }
+    fun cachedData() =
+        testScope.runTest {
+            val pageFlow = buildPageFlow().cachedIn(backgroundScope, tracker)
+            assertThat(pageFlow).isInstanceOf<SharedFlow<PagingData<Item>>>()
+            assertThat((pageFlow as SharedFlow<PagingData<Item>>).replayCache).isEmpty()
+
+            pageFlow.collectItemsUntilSize(6)
+            val firstCachedData = pageFlow.cachedData()
+            assertThat(firstCachedData)
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 6))
+
+            pageFlow.collectItemsUntilSize(9)
+            val secondCachedEvent = pageFlow.cachedData()
+            assertThat(secondCachedEvent)
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 9))
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
         }
-        val firstCollect = pageFlow.collectItemsUntilSize(6)
-        val secondCollect = pageFlow.collectItemsUntilSize(9)
-        assertThat(firstCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            ) {
-                it.copy(metadata = "0_1")
-            }
-        )
-
-        assertThat(secondCollect).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9
-            ) {
-                it.copy(metadata = "0_2")
-            }
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
 
     @Test
-    fun cachedData_afterMapping_withMoreMappingAfterwards() = testScope.runTest {
-        var mappingCnt = 0
-        val pageFlow = buildPageFlow().map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = mappingIndex.toString())
-            }
-        }.cachedIn(backgroundScope, tracker)
-        val mappedFlow = pageFlow.map { pagingData ->
-            val mappingIndex = mappingCnt++
-            pagingData.map {
-                it.copy(metadata = "${it.metadata}_$mappingIndex")
-            }
+    fun cached_afterMapping() =
+        testScope.runTest {
+            var mappingCnt = 0
+            val pageFlow =
+                buildPageFlow()
+                    .map { pagingData ->
+                        val mappingIndex = mappingCnt++
+                        pagingData.map { it.copy(metadata = mappingIndex.toString()) }
+                    }
+                    .cachedIn(backgroundScope, tracker)
+            val firstCollect = pageFlow.collectItemsUntilSize(6)
+            val secondCollect = pageFlow.collectItemsUntilSize(9)
+            assertThat(firstCollect)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 6) {
+                        it.copy(metadata = "0")
+                    }
+                )
+
+            assertThat(secondCollect)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 9) {
+                        it.copy(metadata = "0")
+                    }
+                )
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
         }
-        // Mapping converts SharedFlow to Flow and thereby blocks access to cachedIn's
-        // replayCache. You can still access latest cachedData directly from pre-mapped flow.
-        mappedFlow.collectItemsUntilSize(6)
-        val firstCachedData = pageFlow.cachedData()
-        assertThat(firstCachedData).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 6
-            ) {
-                it.copy(metadata = "0") // with mapping before cache
-            }
-        )
-
-        mappedFlow.collectItemsUntilSize(9)
-        val secondCachedEvent = pageFlow.cachedData()
-        assertThat(secondCachedEvent).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 9
-            ) {
-                it.copy(metadata = "0") // with mapping before cache
-            }
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-    }
 
     @Test
-    fun pagesAreClosedProperty() = testScope.runTest {
-        val job = SupervisorJob()
-        val subScope = CoroutineScope(job + Dispatchers.Default)
-        val pageFlow = buildPageFlow().cachedIn(subScope, tracker)
-        assertThat(tracker.pageEventFlowCount()).isEqualTo(0)
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(0)
-        val items = pageFlow.collectItemsUntilSize(9)
-        val firstList = buildItems(
-            version = 0,
-            generation = 0,
-            start = 0,
-            size = 9
-        )
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-        val items2 = pageFlow.collectItemsUntilSize(21)
-        assertThat(items2).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 21
-            )
-        )
-        assertThat(tracker.pageEventFlowCount()).isEqualTo(0)
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
-        assertThat(items).isEqualTo(firstList)
-        job.cancelAndJoin()
-        assertThat(tracker.pageEventFlowCount()).isEqualTo(0)
-        assertThat(tracker.pageDataFlowCount()).isEqualTo(0)
-    }
+    fun cachedData_afterMapping() =
+        testScope.runTest {
+            var mappingCnt = 0
+            val pageFlow =
+                buildPageFlow()
+                    .map { pagingData ->
+                        val mappingIndex = mappingCnt++
+                        pagingData.map { it.copy(metadata = mappingIndex.toString()) }
+                    }
+                    .cachedIn(backgroundScope, tracker)
+
+            pageFlow.collectItemsUntilSize(6)
+            val firstCachedData = pageFlow.cachedData()
+            assertThat(firstCachedData)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 6) {
+                        it.copy(metadata = "0")
+                    }
+                )
+
+            pageFlow.collectItemsUntilSize(9)
+            val secondCachedData = pageFlow.cachedData()
+            assertThat(secondCachedData)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 9) {
+                        it.copy(metadata = "0")
+                    }
+                )
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
+        }
 
     @Test
-    fun cachedWithPassiveCollector() = testScope.runTest {
-        val flow = buildPageFlow().cachedIn(backgroundScope, tracker)
-        val passive = ItemCollector(flow)
-        passive.collectPassivelyIn(backgroundScope)
-        testScope.runCurrent()
-        // collecting on the paged source will trigger initial page
-        assertThat(passive.items()).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 3
-            )
-        )
-        val firstList = buildItems(
-            version = 0,
-            generation = 0,
-            start = 0,
-            size = 9
-        )
-        // another collector is causing more items to be loaded, they should be reflected in the
-        // passive one
-        assertThat(flow.collectItemsUntilSize(9)).isEqualTo(firstList)
-        assertThat(passive.items()).isEqualTo(firstList)
-        val passive2 = ItemCollector(flow)
-        passive2.collectPassivelyIn(backgroundScope)
-        testScope.runCurrent()
-        // a new passive one should receive all existing items immediately
-        assertThat(passive2.items()).isEqualTo(firstList)
+    fun cached_beforeMapping() =
+        testScope.runTest {
+            var mappingCnt = 0
+            val pageFlow =
+                buildPageFlow().cachedIn(backgroundScope, tracker).map { pagingData ->
+                    val mappingIndex = mappingCnt++
+                    pagingData.map { it.copy(metadata = mappingIndex.toString()) }
+                }
+            val firstCollect = pageFlow.collectItemsUntilSize(6)
+            val secondCollect = pageFlow.collectItemsUntilSize(9)
+            assertThat(firstCollect)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 6) {
+                        it.copy(metadata = "0")
+                    }
+                )
 
-        // now we get another collector that'll fetch more pages, it should reflect in passives
-        val secondList = buildItems(
-            version = 0,
-            generation = 0,
-            start = 0,
-            size = 12
-        )
-        // another collector is causing more items to be loaded, they should be reflected in the
-        // passive one
-        assertThat(flow.collectItemsUntilSize(12)).isEqualTo(secondList)
-        assertThat(passive.items()).isEqualTo(secondList)
-        assertThat(passive2.items()).isEqualTo(secondList)
-    }
+            assertThat(secondCollect)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 9) {
+                        it.copy(metadata = "1")
+                    }
+                )
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
+        }
+
+    @Test
+    fun cachedData_beforeMapping() =
+        testScope.runTest {
+            var mappingCnt = 0
+            val pageFlow = buildPageFlow().cachedIn(backgroundScope, tracker)
+            val mappedFlow =
+                pageFlow.map { pagingData ->
+                    val mappingIndex = mappingCnt++
+                    pagingData.map { it.copy(metadata = mappingIndex.toString()) }
+                }
+            // Mapping converts SharedFlow to Flow and thereby blocks access to cachedIn's
+            // replayCache. You can still access latest cachedData directly from pre-mapped flow.
+            mappedFlow.collectItemsUntilSize(6)
+            val firstCachedData = pageFlow.cachedData()
+            assertThat(firstCachedData)
+                .isEqualTo(
+                    buildItems(
+                        version = 0,
+                        generation = 0,
+                        start = 0,
+                        size = 6,
+                        modifier = null // before mapping
+                    )
+                )
+
+            mappedFlow.collectItemsUntilSize(9)
+            val secondCachedEvent = pageFlow.cachedData()
+            assertThat(secondCachedEvent)
+                .isEqualTo(
+                    buildItems(
+                        version = 0,
+                        generation = 0,
+                        start = 0,
+                        size = 9,
+                        modifier = null // before mapping
+                    )
+                )
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
+        }
+
+    @Test
+    fun cached_afterMapping_withMoreMappingAfterwards() =
+        testScope.runTest {
+            var mappingCnt = 0
+            val pageFlow =
+                buildPageFlow()
+                    .map { pagingData ->
+                        val mappingIndex = mappingCnt++
+                        pagingData.map { it.copy(metadata = mappingIndex.toString()) }
+                    }
+                    .cachedIn(backgroundScope, tracker)
+                    .map { pagingData ->
+                        val mappingIndex = mappingCnt++
+                        pagingData.map { it.copy(metadata = "${it.metadata}_$mappingIndex") }
+                    }
+            val firstCollect = pageFlow.collectItemsUntilSize(6)
+            val secondCollect = pageFlow.collectItemsUntilSize(9)
+            assertThat(firstCollect)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 6) {
+                        it.copy(metadata = "0_1")
+                    }
+                )
+
+            assertThat(secondCollect)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 9) {
+                        it.copy(metadata = "0_2")
+                    }
+                )
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
+        }
+
+    @Test
+    fun cachedData_afterMapping_withMoreMappingAfterwards() =
+        testScope.runTest {
+            var mappingCnt = 0
+            val pageFlow =
+                buildPageFlow()
+                    .map { pagingData ->
+                        val mappingIndex = mappingCnt++
+                        pagingData.map { it.copy(metadata = mappingIndex.toString()) }
+                    }
+                    .cachedIn(backgroundScope, tracker)
+            val mappedFlow =
+                pageFlow.map { pagingData ->
+                    val mappingIndex = mappingCnt++
+                    pagingData.map { it.copy(metadata = "${it.metadata}_$mappingIndex") }
+                }
+            // Mapping converts SharedFlow to Flow and thereby blocks access to cachedIn's
+            // replayCache. You can still access latest cachedData directly from pre-mapped flow.
+            mappedFlow.collectItemsUntilSize(6)
+            val firstCachedData = pageFlow.cachedData()
+            assertThat(firstCachedData)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 6) {
+                        it.copy(metadata = "0") // with mapping before cache
+                    }
+                )
+
+            mappedFlow.collectItemsUntilSize(9)
+            val secondCachedEvent = pageFlow.cachedData()
+            assertThat(secondCachedEvent)
+                .isEqualTo(
+                    buildItems(version = 0, generation = 0, start = 0, size = 9) {
+                        it.copy(metadata = "0") // with mapping before cache
+                    }
+                )
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
+        }
+
+    @Test
+    fun pagesAreClosedProperty() =
+        testScope.runTest {
+            val job = SupervisorJob()
+            val subScope = CoroutineScope(job + Dispatchers.Default)
+            val pageFlow = buildPageFlow().cachedIn(subScope, tracker)
+            assertThat(tracker.pageEventFlowCount()).isEqualTo(0)
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(0)
+            val items = pageFlow.collectItemsUntilSize(9)
+            val firstList = buildItems(version = 0, generation = 0, start = 0, size = 9)
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
+            val items2 = pageFlow.collectItemsUntilSize(21)
+            assertThat(items2)
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 21))
+            assertThat(tracker.pageEventFlowCount()).isEqualTo(0)
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(1)
+            assertThat(items).isEqualTo(firstList)
+            job.cancelAndJoin()
+            assertThat(tracker.pageEventFlowCount()).isEqualTo(0)
+            assertThat(tracker.pageDataFlowCount()).isEqualTo(0)
+        }
+
+    @Test
+    fun cachedWithPassiveCollector() =
+        testScope.runTest {
+            val flow = buildPageFlow().cachedIn(backgroundScope, tracker)
+            val passive = ItemCollector(flow)
+            passive.collectPassivelyIn(backgroundScope)
+            testScope.runCurrent()
+            // collecting on the paged source will trigger initial page
+            assertThat(passive.items())
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 3))
+            val firstList = buildItems(version = 0, generation = 0, start = 0, size = 9)
+            // another collector is causing more items to be loaded, they should be reflected in the
+            // passive one
+            assertThat(flow.collectItemsUntilSize(9)).isEqualTo(firstList)
+            assertThat(passive.items()).isEqualTo(firstList)
+            val passive2 = ItemCollector(flow)
+            passive2.collectPassivelyIn(backgroundScope)
+            testScope.runCurrent()
+            // a new passive one should receive all existing items immediately
+            assertThat(passive2.items()).isEqualTo(firstList)
+
+            // now we get another collector that'll fetch more pages, it should reflect in passives
+            val secondList = buildItems(version = 0, generation = 0, start = 0, size = 12)
+            // another collector is causing more items to be loaded, they should be reflected in the
+            // passive one
+            assertThat(flow.collectItemsUntilSize(12)).isEqualTo(secondList)
+            assertThat(passive.items()).isEqualTo(secondList)
+            assertThat(passive2.items()).isEqualTo(secondList)
+        }
 
     /**
      * Test that, when cache is active but there is no active downstream collectors, intermediate
      * invalidations create new PagingData BUT a new collector only sees the latest one.
      */
     @Test
-    public fun unusedPagingDataIsNeverCollectedByNewDownstream() = testScope.runTest {
-        val factory = StringPagingSource.VersionedFactory()
-        val flow = buildPageFlow(factory).cachedIn(backgroundScope, tracker)
-        val collector = ItemCollector(flow)
-        val job = SupervisorJob()
-        val subScope = CoroutineScope(coroutineContext + job)
-        collector.collectPassivelyIn(subScope)
-        testScope.runCurrent()
-        assertThat(collector.items()).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 3
-            )
-        )
-        // finish that collector
-        job.cancelAndJoin()
-        assertThat(factory.nextVersion).isEqualTo(1)
-        repeat(10) {
-            factory.invalidateLatest()
+    public fun unusedPagingDataIsNeverCollectedByNewDownstream() =
+        testScope.runTest {
+            val factory = StringPagingSource.VersionedFactory()
+            val flow = buildPageFlow(factory).cachedIn(backgroundScope, tracker)
+            val collector = ItemCollector(flow)
+            val job = SupervisorJob()
+            val subScope = CoroutineScope(coroutineContext + job)
+            collector.collectPassivelyIn(subScope)
             testScope.runCurrent()
-        }
-        runCurrent()
-        // next version is 11, the last paged data we've created has version 10
-        assertThat(factory.nextVersion).isEqualTo(11)
+            assertThat(collector.items())
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 3))
+            // finish that collector
+            job.cancelAndJoin()
+            assertThat(factory.nextVersion).isEqualTo(1)
+            repeat(10) {
+                factory.invalidateLatest()
+                testScope.runCurrent()
+            }
+            runCurrent()
+            // next version is 11, the last paged data we've created has version 10
+            assertThat(factory.nextVersion).isEqualTo(11)
 
-        // create another collector from shared, should only receive 1 paging data and that
-        // should be the latest because previous PagingData is invalidated
-        val collector2 = ItemCollector(flow)
-        collector2.collectPassivelyIn(backgroundScope)
-        testScope.runCurrent()
-        assertThat(collector2.items()).isEqualTo(
-            buildItems(
-                version = 10,
-                generation = 0,
-                start = 0,
-                size = 3
-            )
-        )
-        assertThat(collector2.receivedPagingDataCount).isEqualTo(1)
-        testScope.runCurrent()
-        assertThat(factory.nextVersion).isEqualTo(11)
-        val activeCollection = flow.collectItemsUntilSize(9)
-        assertThat(activeCollection).isEqualTo(
-            buildItems(
-                version = 10,
-                generation = 0,
-                start = 0,
-                size = 9
-            )
-        )
-        testScope.runCurrent()
-        // make sure passive collector received those items as well
-        assertThat(collector2.items()).isEqualTo(
-            buildItems(
-                version = 10,
-                generation = 0,
-                start = 0,
-                size = 9
-            )
-        )
-    }
+            // create another collector from shared, should only receive 1 paging data and that
+            // should be the latest because previous PagingData is invalidated
+            val collector2 = ItemCollector(flow)
+            collector2.collectPassivelyIn(backgroundScope)
+            testScope.runCurrent()
+            assertThat(collector2.items())
+                .isEqualTo(buildItems(version = 10, generation = 0, start = 0, size = 3))
+            assertThat(collector2.receivedPagingDataCount).isEqualTo(1)
+            testScope.runCurrent()
+            assertThat(factory.nextVersion).isEqualTo(11)
+            val activeCollection = flow.collectItemsUntilSize(9)
+            assertThat(activeCollection)
+                .isEqualTo(buildItems(version = 10, generation = 0, start = 0, size = 9))
+            testScope.runCurrent()
+            // make sure passive collector received those items as well
+            assertThat(collector2.items())
+                .isEqualTo(buildItems(version = 10, generation = 0, start = 0, size = 9))
+        }
 
     @Test
-    public fun unusedPagingDataIsNeverCached() = testScope.runTest {
-        val factory = StringPagingSource.VersionedFactory()
-        val flow = buildPageFlow(factory).cachedIn(backgroundScope, tracker)
-        val collector = ItemCollector(flow)
-        val job = SupervisorJob()
-        val subScope = CoroutineScope(coroutineContext + job)
-        collector.collectPassivelyIn(subScope)
-        testScope.runCurrent()
-        // check that cachedData contains data from passive collector
-        assertThat(flow.cachedData()).isEqualTo(
-            buildItems(
-                version = 0,
-                generation = 0,
-                start = 0,
-                size = 3
-            )
-        )
-        // finish that collector
-        job.cancelAndJoin()
-        assertThat(factory.nextVersion).isEqualTo(1)
-        repeat(10) {
-            factory.invalidateLatest()
+    public fun unusedPagingDataIsNeverCached() =
+        testScope.runTest {
+            val factory = StringPagingSource.VersionedFactory()
+            val flow = buildPageFlow(factory).cachedIn(backgroundScope, tracker)
+            val collector = ItemCollector(flow)
+            val job = SupervisorJob()
+            val subScope = CoroutineScope(coroutineContext + job)
+            collector.collectPassivelyIn(subScope)
             testScope.runCurrent()
+            // check that cachedData contains data from passive collector
+            assertThat(flow.cachedData())
+                .isEqualTo(buildItems(version = 0, generation = 0, start = 0, size = 3))
+            // finish that collector
+            job.cancelAndJoin()
+            assertThat(factory.nextVersion).isEqualTo(1)
+            repeat(10) {
+                factory.invalidateLatest()
+                testScope.runCurrent()
+            }
+            runCurrent()
+            // next version is 11, the last paged data we've created has version 10
+            assertThat(factory.nextVersion).isEqualTo(11)
+
+            // the replayCache has paged data version 10 but no collection on this pagingData yet
+            // so it has no cachedEvent.
+            val cachedPagingData = (flow as SharedFlow<PagingData<Item>>).replayCache.first()
+            assertThat(cachedPagingData.cachedEvent()).isNull()
+
+            // create another collector from shared, should only receive 1 paging data and that
+            // should be the latest because previous PagingData is invalidated
+            val collector2 = ItemCollector(flow)
+            collector2.collectPassivelyIn(backgroundScope)
+            testScope.runCurrent()
+            // now this PagingData has cachedEvents from version 10
+            assertThat(flow.cachedData())
+                .isEqualTo(buildItems(version = 10, generation = 0, start = 0, size = 3))
+            assertThat(factory.nextVersion).isEqualTo(11)
+            // collect some more and ensure cachedData is still up-to-date
+            flow.collectItemsUntilSize(9)
+            assertThat(flow.cachedData())
+                .isEqualTo(buildItems(version = 10, generation = 0, start = 0, size = 9))
         }
-        runCurrent()
-        // next version is 11, the last paged data we've created has version 10
-        assertThat(factory.nextVersion).isEqualTo(11)
-
-        // the replayCache has paged data version 10 but no collection on this pagingData yet
-        // so it has no cachedEvent.
-        val cachedPagingData = (flow as SharedFlow<PagingData<Item>>).replayCache.first()
-        assertThat(cachedPagingData.cachedEvent()).isNull()
-
-        // create another collector from shared, should only receive 1 paging data and that
-        // should be the latest because previous PagingData is invalidated
-        val collector2 = ItemCollector(flow)
-        collector2.collectPassivelyIn(backgroundScope)
-        testScope.runCurrent()
-        // now this PagingData has cachedEvents from version 10
-        assertThat(flow.cachedData()).isEqualTo(
-            buildItems(
-                version = 10,
-                generation = 0,
-                start = 0,
-                size = 3
-            )
-        )
-        assertThat(factory.nextVersion).isEqualTo(11)
-        // collect some more and ensure cachedData is still up-to-date
-        flow.collectItemsUntilSize(9)
-        assertThat(flow.cachedData()).isEqualTo(
-            buildItems(
-                version = 10,
-                generation = 0,
-                start = 0,
-                size = 9
-            )
-        )
-    }
 
     private fun buildPageFlow(
         factory: StringPagingSource.VersionedFactory = StringPagingSource.VersionedFactory()
     ): Flow<PagingData<Item>> {
         return Pager(
-            pagingSourceFactory = factory::create,
-            config = PagingConfig(
-                pageSize = 3,
-                prefetchDistance = 1,
-                enablePlaceholders = false,
-                initialLoadSize = 3,
-                maxSize = 1000
+                pagingSourceFactory = factory::create,
+                config =
+                    PagingConfig(
+                        pageSize = 3,
+                        prefetchDistance = 1,
+                        enablePlaceholders = false,
+                        initialLoadSize = 3,
+                        maxSize = 1000
+                    )
             )
-        ).flow
+            .flow
     }
 
     /**
-     * Used for assertions internally to ensure we don't get some data with wrong generation
-     * during collection. This shouldn't happen but happened during development so it is best to
-     * add assertions for it.
+     * Used for assertions internally to ensure we don't get some data with wrong generation during
+     * collection. This shouldn't happen but happened during development so it is best to add
+     * assertions for it.
      */
     private val PagingData<Item>.version
         get(): Int {
-            return (
-                (hintReceiver as PageFetcher<*, *>.PagerHintReceiver<*, *>)
-                    .pageFetcherSnapshot.pagingSource as StringPagingSource
-                ).version
+            return ((hintReceiver as PageFetcher<*, *>.PagerHintReceiver<*, *>)
+                    .pageFetcherSnapshot
+                    .pagingSource as StringPagingSource)
+                .version
         }
 
     private suspend fun Flow<PagingData<Item>>.collectItemsUntilSize(
         expectedSize: Int,
     ): List<Item> {
-        return this
-            .mapLatest { pagingData ->
+        return this.mapLatest { pagingData ->
                 val expectedVersion = pagingData.version
                 val items = mutableListOf<Item>()
                 yield() // this yield helps w/ cancellation wrt mapLatest
                 val receiver = pagingData.hintReceiver
                 var loadedPageCount = 0
-                pagingData.flow.filterIsInstance<PageEvent.Insert<Item>>()
+                pagingData.flow
+                    .filterIsInstance<PageEvent.Insert<Item>>()
                     .onEach {
                         items.addAll(
                             it.pages.flatMap {
-                                assertThat(
-                                    it.data.map { it.pagingSourceId }.toSet()
-                                ).containsExactly(
-                                    expectedVersion
-                                )
+                                assertThat(it.data.map { it.pagingSourceId }.toSet())
+                                    .containsExactly(expectedVersion)
                                 it.data
                             }
                         )
@@ -634,14 +503,16 @@
                         } else {
                             throw AbortCollectionException()
                         }
-                    }.catch { ex ->
+                    }
+                    .catch { ex ->
                         if (ex !is AbortCollectionException) {
                             throw ex
                         }
                     }
                     .toList()
                 items
-            }.first()
+            }
+            .first()
     }
 
     private fun Flow<PagingData<Item>>.cachedData(): List<Item> {
@@ -658,12 +529,8 @@
         return (event as PageEvent.Insert<Item>).pages.flatMap { it.data }
     }
 
-    /**
-     * Paged list collector that does not call any hints but always collects
-     */
-    private class ItemCollector(
-        val source: Flow<PagingData<Item>>
-    ) {
+    /** Paged list collector that does not call any hints but always collects */
+    private class ItemCollector(val source: Flow<PagingData<Item>>) {
         private var items: List<Item> = emptyList()
         private var job: Job? = null
         var receivedPagingDataCount = 0
@@ -673,12 +540,8 @@
          * Collect w/o calling any UI hints so it more like observing the stream w/o affecting it.
          */
         fun collectPassivelyIn(scope: CoroutineScope) {
-            check(job == null) {
-                "don't call collect twice"
-            }
-            job = scope.launch {
-                collectPassively()
-            }
+            check(job == null) { "don't call collect twice" }
+            job = scope.launch { collectPassively() }
         }
 
         private suspend fun collectPassively() {
@@ -688,9 +551,7 @@
                 val list = mutableListOf<Item>()
                 items = list
                 it.flow.filterIsInstance<PageEvent.Insert<Item>>().collect {
-                    it.pages.forEach {
-                        list.addAll(it.data)
-                    }
+                    it.pages.forEach { list.addAll(it.data) }
                 }
             }
         }
@@ -698,9 +559,7 @@
         fun items() = items.toList()
     }
 
-    private class StringPagingSource(
-        val version: Int
-    ) : PagingSource<Int, Item>() {
+    private class StringPagingSource(val version: Int) : PagingSource<Int, Item>() {
         private var generation = -1
 
         override val keyReuseSupported: Boolean
@@ -710,40 +569,29 @@
             when (params) {
                 is LoadParams.Refresh -> {
                     generation++
-                    return doLoad(
-                        position = params.key ?: 0,
-                        size = params.loadSize
-                    )
+                    return doLoad(position = params.key ?: 0, size = params.loadSize)
                 }
                 is LoadParams.Prepend -> {
                     val loadSize = minOf(params.key, params.loadSize)
-                    return doLoad(
-                        position = params.key - params.loadSize,
-                        size = loadSize
-                    )
+                    return doLoad(position = params.key - params.loadSize, size = loadSize)
                 }
                 is LoadParams.Append -> {
-                    return doLoad(
-                        position = params.key,
-                        size = params.loadSize
-                    )
+                    return doLoad(position = params.key, size = params.loadSize)
                 }
             }
         }
 
         override fun getRefreshKey(state: PagingState<Int, Item>): Int? = null
 
-        private fun doLoad(
-            position: Int,
-            size: Int
-        ): LoadResult<Int, Item> {
+        private fun doLoad(position: Int, size: Int): LoadResult<Int, Item> {
             return LoadResult.Page(
-                data = buildItems(
-                    version = version,
-                    generation = generation,
-                    start = position,
-                    size = size
-                ),
+                data =
+                    buildItems(
+                        version = version,
+                        generation = generation,
+                        start = position,
+                        size = size
+                    ),
                 prevKey = if (position == 0) null else position,
                 nextKey = position + size
             )
@@ -752,10 +600,11 @@
         class VersionedFactory {
             var nextVersion = 0
                 private set
+
             private var latestSource: StringPagingSource? = null
-            fun create() = StringPagingSource(nextVersion++).also {
-                latestSource = it
-            }
+
+            fun create() = StringPagingSource(nextVersion++).also { latestSource = it }
+
             fun invalidateLatest() = latestSource?.invalidate()
         }
     }
@@ -769,11 +618,7 @@
             modifier: ((Item) -> Item)? = null
         ): List<Item> {
             return (start until start + size).map { id ->
-                Item(
-                    pagingSourceId = version,
-                    generation = generation,
-                    value = id
-                ).let {
+                Item(pagingSourceId = version, generation = generation, value = id).let {
                     modifier?.invoke(it) ?: it
                 }
             }
@@ -781,33 +626,22 @@
     }
 
     private data class Item(
-        /**
-         * which paged source generated this item
-         */
+        /** which paged source generated this item */
         val pagingSourceId: Int,
-        /**
-         * # of refresh counts in the paged source
-         */
+        /** # of refresh counts in the paged source */
         val generation: Int,
-        /**
-         * Item unique identifier
-         */
+        /** Item unique identifier */
         val value: Int,
 
-        /**
-         * Any additional data by transformations etc
-         */
+        /** Any additional data by transformations etc */
         val metadata: String? = null
     )
 
     private class ActiveFlowTrackerImpl : ActiveFlowTracker {
-        private val counters = mapOf(
-            PAGED_DATA_FLOW to AtomicInt(0),
-            PAGE_EVENT_FLOW to AtomicInt(0)
-        )
+        private val counters =
+            mapOf(PAGED_DATA_FLOW to AtomicInt(0), PAGE_EVENT_FLOW to AtomicInt(0))
 
-        override fun onNewCachedEventFlow(cachedPageEventFlow: CachedPageEventFlow<*>) {
-        }
+        override fun onNewCachedEventFlow(cachedPageEventFlow: CachedPageEventFlow<*>) {}
 
         override suspend fun onStart(flowType: FlowType) {
             (counters[flowType] ?: error("invalid type $flowType")).incrementAndGet()
@@ -818,6 +652,7 @@
         }
 
         fun pageDataFlowCount() = (counters[PAGED_DATA_FLOW] ?: error("unexpected")).get()
+
         fun pageEventFlowCount() = (counters[PAGE_EVENT_FLOW] ?: error("unexpected")).get()
     }
 
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/ConflatedEventBusTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/ConflatedEventBusTest.kt
index f5e8c7b..63b908d 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/ConflatedEventBusTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/ConflatedEventBusTest.kt
@@ -31,52 +31,34 @@
     @Test
     fun noInitialValue() {
         val bus = ConflatedEventBus<Unit>(null)
-        val collector = bus.createCollector().also {
-            it.start()
-        }
+        val collector = bus.createCollector().also { it.start() }
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).isEmpty()
+        assertThat(collector.values).isEmpty()
         bus.send(Unit)
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).containsExactly(Unit)
+        assertThat(collector.values).containsExactly(Unit)
     }
 
     @Test
     fun withInitialValue() {
         val bus = ConflatedEventBus<Int>(1)
-        val collector = bus.createCollector().also {
-            it.start()
-        }
+        val collector = bus.createCollector().also { it.start() }
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).containsExactly(1)
+        assertThat(collector.values).containsExactly(1)
         bus.send(2)
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).containsExactly(1, 2)
+        assertThat(collector.values).containsExactly(1, 2)
     }
 
     @Test
     fun allowDuplicateValues() {
         val bus = ConflatedEventBus<Int>(1)
-        val collector = bus.createCollector().also {
-            it.start()
-        }
+        val collector = bus.createCollector().also { it.start() }
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).containsExactly(1)
+        assertThat(collector.values).containsExactly(1)
         bus.send(1)
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).containsExactly(1, 1)
+        assertThat(collector.values).containsExactly(1, 1)
     }
 
     @Test
@@ -87,28 +69,20 @@
         bus.send(2)
         collector.start()
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).containsExactly(2)
+        assertThat(collector.values).containsExactly(2)
         bus.send(3)
         testScope.runCurrent()
-        assertThat(
-            collector.values
-        ).containsExactly(2, 3)
+        assertThat(collector.values).containsExactly(2, 3)
     }
 
     @Test
     fun multipleCollectors() {
         val bus = ConflatedEventBus(1)
-        val c1 = bus.createCollector().also {
-            it.start()
-        }
+        val c1 = bus.createCollector().also { it.start() }
         testScope.runCurrent()
         bus.send(2)
         testScope.runCurrent()
-        val c2 = bus.createCollector().also {
-            it.start()
-        }
+        val c2 = bus.createCollector().also { it.start() }
         testScope.runCurrent()
         assertThat(c1.values).containsExactly(1, 2)
         assertThat(c2.values).containsExactly(2)
@@ -133,11 +107,7 @@
             get() = _values
 
         fun start() {
-            scope.launch {
-                bus.flow.collect {
-                    _values.add(it)
-                }
-            }
+            scope.launch { bus.flow.collect { _values.add(it) } }
         }
     }
 }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/FailDispatcher.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/FailDispatcher.kt
index 0642f31..7d33643 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/FailDispatcher.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/FailDispatcher.kt
@@ -21,9 +21,8 @@
 import kotlinx.coroutines.CoroutineDispatcher
 import kotlinx.coroutines.Runnable
 
-class FailDispatcher(
-    val string: String = "Executor expected to be unused"
-) : CoroutineDispatcher() {
+class FailDispatcher(val string: String = "Executor expected to be unused") :
+    CoroutineDispatcher() {
     override fun dispatch(context: CoroutineContext, block: Runnable) {
         fail(string)
     }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlattenedPageEventStorageTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlattenedPageEventStorageTest.kt
index 02bf478..b801dde 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlattenedPageEventStorageTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlattenedPageEventStorageTest.kt
@@ -40,129 +40,123 @@
     fun refresh() {
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c"))
-                ),
+                pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("a", "b", "c"),
-                placeholdersBefore = 3,
-                placeholdersAfter = 5
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    items = listOf("a", "b", "c"),
+                    placeholdersBefore = 3,
+                    placeholdersAfter = 5
+                )
             )
-        )
     }
 
     @Test
     fun refresh_thenPrepend() {
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c"))
-                ),
+                pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
             )
         )
         list.add(
             localPrepend(
-                pages = listOf(
-                    TransformablePage(data = listOf("x1")),
-                    TransformablePage(data = listOf("x2"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("x1")),
+                        TransformablePage(data = listOf("x2"))
+                    ),
                 placeholdersBefore = 1,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("x1", "x2", "a", "b", "c"),
-                placeholdersBefore = 1,
-                placeholdersAfter = 5
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    items = listOf("x1", "x2", "a", "b", "c"),
+                    placeholdersBefore = 1,
+                    placeholdersAfter = 5
+                )
             )
-        )
     }
 
     @Test
     fun refresh_thenAppend() {
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c"))
-                ),
+                pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
             )
         )
         list.add(
             localAppend(
-                pages = listOf(
-                    TransformablePage(data = listOf("x1")),
-                    TransformablePage(data = listOf("x2")),
-                    TransformablePage(data = listOf("x3"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("x1")),
+                        TransformablePage(data = listOf("x2")),
+                        TransformablePage(data = listOf("x3"))
+                    ),
                 placeholdersAfter = 2,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("a", "b", "c", "x1", "x2", "x3"),
-                placeholdersBefore = 3,
-                placeholdersAfter = 2
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    items = listOf("a", "b", "c", "x1", "x2", "x3"),
+                    placeholdersBefore = 3,
+                    placeholdersAfter = 2
+                )
             )
-        )
     }
 
     @Test
     fun refresh_refreshAgain() {
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c"))
-                ),
+                pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
             )
         )
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("x", "y"))
-                ),
+                pages = listOf(TransformablePage(data = listOf("x", "y"))),
                 placeholdersBefore = 2,
                 placeholdersAfter = 4,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("x", "y"),
-                placeholdersBefore = 2,
-                placeholdersAfter = 4
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(items = listOf("x", "y"), placeholdersBefore = 2, placeholdersAfter = 4)
             )
-        )
     }
 
     @Test
     fun drop_fromStart() {
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c")),
-                    TransformablePage(data = listOf("d", "e"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("a", "b", "c")),
+                        TransformablePage(data = listOf("d", "e"))
+                    ),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("a", "b", "c", "d", "e"),
-                placeholdersBefore = 3,
-                placeholdersAfter = 5
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    items = listOf("a", "b", "c", "d", "e"),
+                    placeholdersBefore = 3,
+                    placeholdersAfter = 5
+                )
             )
-        )
         list.add(
             Drop(
                 loadType = PREPEND,
@@ -171,80 +165,78 @@
                 placeholdersRemaining = 6
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("d", "e"),
-                placeholdersBefore = 6,
-                placeholdersAfter = 5
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(items = listOf("d", "e"), placeholdersBefore = 6, placeholdersAfter = 5)
             )
-        )
     }
 
     @Test
     fun drop_fromEnd() {
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c")),
-                    TransformablePage(data = listOf("d", "e"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("a", "b", "c")),
+                        TransformablePage(data = listOf("d", "e"))
+                    ),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("a", "b", "c", "d", "e"),
-                placeholdersBefore = 3,
-                placeholdersAfter = 5
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    items = listOf("a", "b", "c", "d", "e"),
+                    placeholdersBefore = 3,
+                    placeholdersAfter = 5
+                )
             )
-        )
         list.add(
-            Drop(
-                loadType = APPEND,
-                minPageOffset = 1,
-                maxPageOffset = 1,
-                placeholdersRemaining = 7
-            )
+            Drop(loadType = APPEND, minPageOffset = 1, maxPageOffset = 1, placeholdersRemaining = 7)
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("a", "b", "c"),
-                placeholdersBefore = 3,
-                placeholdersAfter = 7
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    items = listOf("a", "b", "c"),
+                    placeholdersBefore = 3,
+                    placeholdersAfter = 7
+                )
             )
-        )
     }
 
     @Test
     fun staticList_initWithoutLoadStates() {
         list.add(StaticList(listOf("a", "b", "c")))
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                items = listOf("a", "b", "c"),
-                sourceLoadStates = LoadStates.IDLE,
-                mediatorLoadStates = null,
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    items = listOf("a", "b", "c"),
+                    sourceLoadStates = LoadStates.IDLE,
+                    mediatorLoadStates = null,
+                )
             )
-        )
-        assertThat(list.getAsEvents()).containsExactly(
-            localRefresh(
-                pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                source = LoadStates.IDLE,
+        assertThat(list.getAsEvents())
+            .containsExactly(
+                localRefresh(
+                    pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    source = LoadStates.IDLE,
+                )
             )
-        )
     }
 
     @Test
     fun staticList_initWithLoadStates() {
-        val nonDefaultloadStates = loadStates(
-            refresh = Error(TEST_EXCEPTION),
-            prepend = Error(TEST_EXCEPTION),
-            append = Error(TEST_EXCEPTION),
-        )
+        val nonDefaultloadStates =
+            loadStates(
+                refresh = Error(TEST_EXCEPTION),
+                prepend = Error(TEST_EXCEPTION),
+                append = Error(TEST_EXCEPTION),
+            )
         list.add(
             StaticList(
                 data = listOf("a", "b", "c"),
@@ -252,44 +244,49 @@
                 mediatorLoadStates = nonDefaultloadStates,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                items = listOf("a", "b", "c"),
-                sourceLoadStates = nonDefaultloadStates,
-                mediatorLoadStates = nonDefaultloadStates,
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    items = listOf("a", "b", "c"),
+                    sourceLoadStates = nonDefaultloadStates,
+                    mediatorLoadStates = nonDefaultloadStates,
+                )
             )
-        )
-        assertThat(list.getAsEvents()).containsExactly(
-            remoteRefresh(
-                pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                source = nonDefaultloadStates,
-                mediator = nonDefaultloadStates,
+        assertThat(list.getAsEvents())
+            .containsExactly(
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf("a", "b", "c"))),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    source = nonDefaultloadStates,
+                    mediator = nonDefaultloadStates,
+                )
             )
-        )
     }
 
     @Test
     fun staticList_afterInsertOverridesStates() {
-        val initialLoadStates = loadStates(
-            refresh = Loading,
-            prepend = Loading,
-            append = Loading,
-        )
-        val overridenloadStates = loadStates(
-            refresh = Error(TEST_EXCEPTION),
-            prepend = Error(TEST_EXCEPTION),
-            append = Error(TEST_EXCEPTION),
-        )
+        val initialLoadStates =
+            loadStates(
+                refresh = Loading,
+                prepend = Loading,
+                append = Loading,
+            )
+        val overridenloadStates =
+            loadStates(
+                refresh = Error(TEST_EXCEPTION),
+                prepend = Error(TEST_EXCEPTION),
+                append = Error(TEST_EXCEPTION),
+            )
         list.add(
             remoteRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c")),
-                    TransformablePage(data = listOf("d", "e"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("a", "b", "c")),
+                        TransformablePage(data = listOf("d", "e"))
+                    ),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
                 source = initialLoadStates,
@@ -303,44 +300,49 @@
                 mediatorLoadStates = overridenloadStates,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                items = listOf("x", "y", "z"),
-                sourceLoadStates = overridenloadStates,
-                mediatorLoadStates = overridenloadStates,
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    items = listOf("x", "y", "z"),
+                    sourceLoadStates = overridenloadStates,
+                    mediatorLoadStates = overridenloadStates,
+                )
             )
-        )
-        assertThat(list.getAsEvents()).containsExactly(
-            remoteRefresh(
-                pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                source = overridenloadStates,
-                mediator = overridenloadStates,
+        assertThat(list.getAsEvents())
+            .containsExactly(
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    source = overridenloadStates,
+                    mediator = overridenloadStates,
+                )
             )
-        )
     }
 
     @Test
     fun staticList_afterInsertOverridesOnlySourceStates() {
-        val initialLoadStates = loadStates(
-            refresh = Loading,
-            prepend = Loading,
-            append = Loading,
-        )
-        val overridenloadStates = loadStates(
-            refresh = Error(TEST_EXCEPTION),
-            prepend = Error(TEST_EXCEPTION),
-            append = Error(TEST_EXCEPTION),
-        )
+        val initialLoadStates =
+            loadStates(
+                refresh = Loading,
+                prepend = Loading,
+                append = Loading,
+            )
+        val overridenloadStates =
+            loadStates(
+                refresh = Error(TEST_EXCEPTION),
+                prepend = Error(TEST_EXCEPTION),
+                append = Error(TEST_EXCEPTION),
+            )
         list.add(
             remoteRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c")),
-                    TransformablePage(data = listOf("d", "e"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("a", "b", "c")),
+                        TransformablePage(data = listOf("d", "e"))
+                    ),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
                 source = initialLoadStates,
@@ -354,44 +356,49 @@
                 mediatorLoadStates = null,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                items = listOf("x", "y", "z"),
-                sourceLoadStates = overridenloadStates,
-                mediatorLoadStates = initialLoadStates,
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    items = listOf("x", "y", "z"),
+                    sourceLoadStates = overridenloadStates,
+                    mediatorLoadStates = initialLoadStates,
+                )
             )
-        )
-        assertThat(list.getAsEvents()).containsExactly(
-            remoteRefresh(
-                pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                source = overridenloadStates,
-                mediator = initialLoadStates,
+        assertThat(list.getAsEvents())
+            .containsExactly(
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    source = overridenloadStates,
+                    mediator = initialLoadStates,
+                )
             )
-        )
     }
 
     @Test
     fun staticList_afterInsertOverridesOnlyMediatorStates() {
-        val initialLoadStates = loadStates(
-            refresh = Loading,
-            prepend = Loading,
-            append = Loading,
-        )
-        val overridenloadStates = loadStates(
-            refresh = Error(TEST_EXCEPTION),
-            prepend = Error(TEST_EXCEPTION),
-            append = Error(TEST_EXCEPTION),
-        )
+        val initialLoadStates =
+            loadStates(
+                refresh = Loading,
+                prepend = Loading,
+                append = Loading,
+            )
+        val overridenloadStates =
+            loadStates(
+                refresh = Error(TEST_EXCEPTION),
+                prepend = Error(TEST_EXCEPTION),
+                append = Error(TEST_EXCEPTION),
+            )
         list.add(
             remoteRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c")),
-                    TransformablePage(data = listOf("d", "e"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("a", "b", "c")),
+                        TransformablePage(data = listOf("d", "e"))
+                    ),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
                 source = initialLoadStates,
@@ -405,39 +412,43 @@
                 mediatorLoadStates = overridenloadStates,
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                items = listOf("x", "y", "z"),
-                sourceLoadStates = initialLoadStates,
-                mediatorLoadStates = overridenloadStates,
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    items = listOf("x", "y", "z"),
+                    sourceLoadStates = initialLoadStates,
+                    mediatorLoadStates = overridenloadStates,
+                )
             )
-        )
-        assertThat(list.getAsEvents()).containsExactly(
-            remoteRefresh(
-                pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                source = initialLoadStates,
-                mediator = overridenloadStates,
+        assertThat(list.getAsEvents())
+            .containsExactly(
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    source = initialLoadStates,
+                    mediator = overridenloadStates,
+                )
             )
-        )
     }
 
     @Test
     fun staticList_afterInsertPreservesStates() {
-        val nonDefaultloadStates = loadStates(
-            refresh = Error(TEST_EXCEPTION),
-            prepend = Error(TEST_EXCEPTION),
-            append = Error(TEST_EXCEPTION),
-        )
+        val nonDefaultloadStates =
+            loadStates(
+                refresh = Error(TEST_EXCEPTION),
+                prepend = Error(TEST_EXCEPTION),
+                append = Error(TEST_EXCEPTION),
+            )
         list.add(
             remoteRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c")),
-                    TransformablePage(data = listOf("d", "e"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("a", "b", "c")),
+                        TransformablePage(data = listOf("d", "e"))
+                    ),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
                 source = nonDefaultloadStates,
@@ -445,24 +456,26 @@
             )
         )
         list.add(StaticList(listOf("x", "y", "z")))
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                items = listOf("x", "y", "z"),
-                sourceLoadStates = nonDefaultloadStates,
-                mediatorLoadStates = nonDefaultloadStates,
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    items = listOf("x", "y", "z"),
+                    sourceLoadStates = nonDefaultloadStates,
+                    mediatorLoadStates = nonDefaultloadStates,
+                )
             )
-        )
-        assertThat(list.getAsEvents()).containsExactly(
-            remoteRefresh(
-                pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-                source = nonDefaultloadStates,
-                mediator = nonDefaultloadStates,
+        assertThat(list.getAsEvents())
+            .containsExactly(
+                remoteRefresh(
+                    pages = listOf(TransformablePage(data = listOf("x", "y", "z"))),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                    source = nonDefaultloadStates,
+                    mediator = nonDefaultloadStates,
+                )
             )
-        )
     }
 
     @Test
@@ -470,36 +483,37 @@
         val error = Error(RuntimeException("?"))
         list.add(
             localRefresh(
-                pages = listOf(
-                    TransformablePage(data = listOf("a", "b", "c")),
-                    TransformablePage(data = listOf("d", "e"))
-                ),
+                pages =
+                    listOf(
+                        TransformablePage(data = listOf("a", "b", "c")),
+                        TransformablePage(data = listOf("d", "e"))
+                    ),
                 placeholdersBefore = 3,
                 placeholdersAfter = 5,
                 source = loadStates(prepend = Loading, append = error)
             )
         )
-        assertThat(list.snapshot()).isEqualTo(
-            Snapshot(
-                items = listOf("a", "b", "c", "d", "e"),
-                placeholdersBefore = 3,
-                placeholdersAfter = 5,
-                sourceLoadStates = loadStates(
-                    refresh = NotLoading.Incomplete,
-                    prepend = Loading,
-                    append = error
+        assertThat(list.snapshot())
+            .isEqualTo(
+                Snapshot(
+                    items = listOf("a", "b", "c", "d", "e"),
+                    placeholdersBefore = 3,
+                    placeholdersAfter = 5,
+                    sourceLoadStates =
+                        loadStates(
+                            refresh = NotLoading.Incomplete,
+                            prepend = Loading,
+                            append = error
+                        )
                 )
             )
-        )
     }
 
     private fun <T : Any> FlattenedPageEventStorage<T>.snapshot(): Snapshot<T> {
         return this.getAsEvents().fold(Snapshot()) { snapshot, event ->
             when (event) {
                 is PageEvent.Insert -> {
-                    check(event.loadType == REFRESH) {
-                        "should only send refresh event"
-                    }
+                    check(event.loadType == REFRESH) { "should only send refresh event" }
                     snapshot.copy(
                         items = snapshot.items + event.pages.flatMap { it.data },
                         placeholdersBefore = event.placeholdersBefore,
@@ -520,8 +534,8 @@
                         placeholdersBefore = 0,
                         placeholdersAfter = 0,
                         sourceLoadStates = event.sourceLoadStates ?: snapshot.sourceLoadStates,
-                        mediatorLoadStates = event.mediatorLoadStates
-                            ?: snapshot.mediatorLoadStates,
+                        mediatorLoadStates =
+                            event.mediatorLoadStates ?: snapshot.mediatorLoadStates,
                     )
                 }
             }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlowExtTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlowExtTest.kt
index 2beb9e0..ae6bb09 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlowExtTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/FlowExtTest.kt
@@ -46,254 +46,242 @@
     val testScope = TestScope()
 
     @Test
-    fun scan_basic() = testScope.runTest {
-        val arguments = mutableListOf<Pair<Int, Int>>()
-        assertThat(
-            flowOf(1, 2, 3).simpleScan(0) { acc, value ->
-                arguments.add(acc to value)
-                value + acc
-            }.toList()
-        ).containsExactly(
-            0, 1, 3, 6
-        ).inOrder()
-        assertThat(arguments).containsExactly(
-            0 to 1,
-            1 to 2,
-            3 to 3
-        ).inOrder()
-    }
-
-    @Test
-    fun scan_initialValue() = testScope.runTest {
-        assertThat(
-            emptyFlow<Int>().simpleScan("x") { _, value ->
-                "$value"
-            }.toList()
-        ).containsExactly("x")
-    }
-
-    @Test
-    fun runningReduce_basic() = testScope.runTest {
-        assertThat(
-            flowOf(1, 2, 3, 4).simpleRunningReduce { acc, value ->
-                acc + value
-            }.toList()
-        ).containsExactly(1, 3, 6, 10)
-    }
-
-    @Test
-    fun runningReduce_empty() = testScope.runTest {
-        assertThat(
-            emptyFlow<Int>().simpleRunningReduce { acc, value ->
-                acc + value
-            }.toList()
-        ).isEmpty()
-    }
-
-    @Test
-    fun mapLatest() = testScope.runTest {
-        assertThat(
-            flowOf(1, 2, 3, 4)
-                .onEach {
-                    delay(1)
-                }
-                .simpleMapLatest { value ->
-                    delay(value.toLong())
-                    "$value-$value"
-                }.toList()
-        ).containsExactly(
-            "1-1", "4-4"
-        ).inOrder()
-    }
-
-    @Test
-    fun mapLatest_empty() = testScope.runTest {
-        assertThat(
-            emptyFlow<Int>().simpleMapLatest { value ->
-                "$value-$value"
-            }.toList()
-        ).isEmpty()
-    }
-
-    @Test
-    fun flatMapLatest() = testScope.runTest {
-        assertThat(
-            flowOf(1, 2, 3, 4)
-                .onEach {
-                    delay(1)
-                }
-                .simpleFlatMapLatest { value ->
-                    flow {
-                        repeat(value) {
-                            emit(value)
+    fun scan_basic() =
+        testScope.runTest {
+            val arguments = mutableListOf<Pair<Int, Int>>()
+            assertThat(
+                    flowOf(1, 2, 3)
+                        .simpleScan(0) { acc, value ->
+                            arguments.add(acc to value)
+                            value + acc
                         }
+                        .toList()
+                )
+                .containsExactly(0, 1, 3, 6)
+                .inOrder()
+            assertThat(arguments).containsExactly(0 to 1, 1 to 2, 3 to 3).inOrder()
+        }
+
+    @Test
+    fun scan_initialValue() =
+        testScope.runTest {
+            assertThat(emptyFlow<Int>().simpleScan("x") { _, value -> "$value" }.toList())
+                .containsExactly("x")
+        }
+
+    @Test
+    fun runningReduce_basic() =
+        testScope.runTest {
+            assertThat(
+                    flowOf(1, 2, 3, 4).simpleRunningReduce { acc, value -> acc + value }.toList()
+                )
+                .containsExactly(1, 3, 6, 10)
+        }
+
+    @Test
+    fun runningReduce_empty() =
+        testScope.runTest {
+            assertThat(emptyFlow<Int>().simpleRunningReduce { acc, value -> acc + value }.toList())
+                .isEmpty()
+        }
+
+    @Test
+    fun mapLatest() =
+        testScope.runTest {
+            assertThat(
+                    flowOf(1, 2, 3, 4)
+                        .onEach { delay(1) }
+                        .simpleMapLatest { value ->
+                            delay(value.toLong())
+                            "$value-$value"
+                        }
+                        .toList()
+                )
+                .containsExactly("1-1", "4-4")
+                .inOrder()
+        }
+
+    @Test
+    fun mapLatest_empty() =
+        testScope.runTest {
+            assertThat(emptyFlow<Int>().simpleMapLatest { value -> "$value-$value" }.toList())
+                .isEmpty()
+        }
+
+    @Test
+    fun flatMapLatest() =
+        testScope.runTest {
+            assertThat(
+                    flowOf(1, 2, 3, 4)
+                        .onEach { delay(1) }
+                        .simpleFlatMapLatest { value -> flow { repeat(value) { emit(value) } } }
+                        .toList()
+                )
+                .containsExactly(1, 2, 2, 3, 3, 3, 4, 4, 4, 4)
+                .inOrder()
+        }
+
+    @Test
+    fun flatMapLatest_empty() =
+        testScope.runTest {
+            assertThat(emptyFlow<Int>().simpleFlatMapLatest { flowOf(it) }.toList()).isEmpty()
+        }
+
+    @Test
+    fun combineWithoutBatching_buffersEmissions() =
+        testScope.runTest {
+            val flow1 = Channel<Int>(BUFFERED)
+            val flow2 = Channel<String>(BUFFERED)
+
+            val result = mutableListOf<String>()
+            launch {
+                flow1
+                    .consumeAsFlow()
+                    .combineWithoutBatching(flow2.consumeAsFlow()) { first, second, _ ->
+                        "$first$second"
                     }
-                }.toList()
-        ).containsExactly(
-            1, 2, 2, 3, 3, 3, 4, 4, 4, 4
-        ).inOrder()
-    }
-
-    @Test
-    fun flatMapLatest_empty() = testScope.runTest {
-        assertThat(
-            emptyFlow<Int>()
-                .simpleFlatMapLatest {
-                    flowOf(it)
-                }.toList()
-        ).isEmpty()
-    }
-
-    @Test
-    fun combineWithoutBatching_buffersEmissions() = testScope.runTest {
-        val flow1 = Channel<Int>(BUFFERED)
-        val flow2 = Channel<String>(BUFFERED)
-
-        val result = mutableListOf<String>()
-        launch {
-            flow1.consumeAsFlow()
-                .combineWithoutBatching(flow2.consumeAsFlow()) { first, second, _ ->
-                    "$first$second"
-                }
-                .collect(result::add)
-        }
-
-        flow1.send(1)
-        advanceUntilIdle()
-        assertThat(result).isEmpty()
-
-        flow1.send(2)
-        advanceUntilIdle()
-        assertThat(result).isEmpty()
-
-        flow2.send("A")
-        advanceUntilIdle()
-        assertThat(result).containsExactly("1A", "2A")
-
-        // This should automatically propagate cancellation to the launched collector.
-        flow1.close()
-        flow2.close()
-    }
-
-    @Test
-    fun combineWithoutBatching_doesNotBatchOnSlowTransform() = testScope.runTest {
-        val flow1 = flowOf(1, 2, 3)
-        val flow2 = flowOf("A", "B", "C")
-        val slowTransform: suspend (Int, String) -> String = { num: Int, letter: String ->
-            delay(10)
-            "$num$letter"
-        }
-
-        val batchedCombine = flow1
-            .combine(flow2, slowTransform)
-            .toList()
-        advanceUntilIdle()
-        assertThat(batchedCombine).containsExactly("1A", "3B", "3C")
-
-        val unbatchedCombine = flow1
-            .combineWithoutBatching(flow2) { num, letter, _ -> slowTransform(num, letter) }
-            .toList()
-        advanceUntilIdle()
-        assertThat(unbatchedCombine).containsExactly("1A", "2A", "2B", "3B", "3C")
-    }
-
-    @Test
-    fun combineWithoutBatching_updateFrom() = testScope.runTest {
-        val flow1 = Channel<Int>(BUFFERED)
-        val flow2 = Channel<Int>(BUFFERED)
-
-        val result = mutableListOf<CombineSource>()
-        launch {
-            flow1.consumeAsFlow()
-                .combineWithoutBatching(flow2.consumeAsFlow()) { _, _, updateFrom ->
-                    result.add(updateFrom)
-                }
-                .collect { }
-        }
-
-        flow1.send(1)
-        advanceUntilIdle()
-        assertThat(result).isEmpty()
-
-        flow1.send(1)
-        advanceUntilIdle()
-        assertThat(result).isEmpty()
-
-        flow2.send(2)
-        advanceUntilIdle()
-        assertThat(result).containsExactly(INITIAL, RECEIVER)
-
-        flow1.send(1)
-        flow2.send(2)
-        advanceUntilIdle()
-        assertThat(result).containsExactly(INITIAL, RECEIVER, RECEIVER, OTHER)
-
-        // This should automatically propagate cancellation to the launched collector.
-        flow1.close()
-        flow2.close()
-    }
-
-    @Test
-    fun combineWithoutBatching_collectorCancellationPropagates() = testScope.runTest {
-        val flow1Emissions = mutableListOf<Int>()
-        val flow1 = flowOf(1, 2, 3).onEach(flow1Emissions::add)
-        val flow2Emissions = mutableListOf<String>()
-        val flow2 = flowOf("A", "B", "C").onEach(flow2Emissions::add)
-        val result = mutableListOf<Unit>()
-
-        flow1
-            .combineWithoutBatching(flow2) { _, _, _ ->
-                result.add(Unit)
+                    .collect(result::add)
             }
-            .first()
 
-        advanceUntilIdle()
+            flow1.send(1)
+            advanceUntilIdle()
+            assertThat(result).isEmpty()
 
-        // We can't guarantee whether cancellation will propagate before or after the second item
-        // is emitted, but we should never get the third.
-        assertThat(flow1Emissions.size).isIn(1..2)
-        assertThat(flow2Emissions.size).isIn(1..2)
-        assertThat(result.size).isIn(1..2)
-    }
+            flow1.send(2)
+            advanceUntilIdle()
+            assertThat(result).isEmpty()
+
+            flow2.send("A")
+            advanceUntilIdle()
+            assertThat(result).containsExactly("1A", "2A")
+
+            // This should automatically propagate cancellation to the launched collector.
+            flow1.close()
+            flow2.close()
+        }
+
+    @Test
+    fun combineWithoutBatching_doesNotBatchOnSlowTransform() =
+        testScope.runTest {
+            val flow1 = flowOf(1, 2, 3)
+            val flow2 = flowOf("A", "B", "C")
+            val slowTransform: suspend (Int, String) -> String = { num: Int, letter: String ->
+                delay(10)
+                "$num$letter"
+            }
+
+            val batchedCombine = flow1.combine(flow2, slowTransform).toList()
+            advanceUntilIdle()
+            assertThat(batchedCombine).containsExactly("1A", "3B", "3C")
+
+            val unbatchedCombine =
+                flow1
+                    .combineWithoutBatching(flow2) { num, letter, _ -> slowTransform(num, letter) }
+                    .toList()
+            advanceUntilIdle()
+            assertThat(unbatchedCombine).containsExactly("1A", "2A", "2B", "3B", "3C")
+        }
+
+    @Test
+    fun combineWithoutBatching_updateFrom() =
+        testScope.runTest {
+            val flow1 = Channel<Int>(BUFFERED)
+            val flow2 = Channel<Int>(BUFFERED)
+
+            val result = mutableListOf<CombineSource>()
+            launch {
+                flow1
+                    .consumeAsFlow()
+                    .combineWithoutBatching(flow2.consumeAsFlow()) { _, _, updateFrom ->
+                        result.add(updateFrom)
+                    }
+                    .collect {}
+            }
+
+            flow1.send(1)
+            advanceUntilIdle()
+            assertThat(result).isEmpty()
+
+            flow1.send(1)
+            advanceUntilIdle()
+            assertThat(result).isEmpty()
+
+            flow2.send(2)
+            advanceUntilIdle()
+            assertThat(result).containsExactly(INITIAL, RECEIVER)
+
+            flow1.send(1)
+            flow2.send(2)
+            advanceUntilIdle()
+            assertThat(result).containsExactly(INITIAL, RECEIVER, RECEIVER, OTHER)
+
+            // This should automatically propagate cancellation to the launched collector.
+            flow1.close()
+            flow2.close()
+        }
+
+    @Test
+    fun combineWithoutBatching_collectorCancellationPropagates() =
+        testScope.runTest {
+            val flow1Emissions = mutableListOf<Int>()
+            val flow1 = flowOf(1, 2, 3).onEach(flow1Emissions::add)
+            val flow2Emissions = mutableListOf<String>()
+            val flow2 = flowOf("A", "B", "C").onEach(flow2Emissions::add)
+            val result = mutableListOf<Unit>()
+
+            flow1.combineWithoutBatching(flow2) { _, _, _ -> result.add(Unit) }.first()
+
+            advanceUntilIdle()
+
+            // We can't guarantee whether cancellation will propagate before or after the second
+            // item
+            // is emitted, but we should never get the third.
+            assertThat(flow1Emissions.size).isIn(1..2)
+            assertThat(flow2Emissions.size).isIn(1..2)
+            assertThat(result.size).isIn(1..2)
+        }
 
     @Ignore // b/329157121
     @Test
-    fun combineWithoutBatching_stressTest() = testScope.runTest {
-        val flow1 = flow {
-            repeat(1000) {
-                if (Random.nextBoolean()) {
-                    delay(1)
+    fun combineWithoutBatching_stressTest() =
+        testScope.runTest {
+            val flow1 = flow {
+                repeat(1000) {
+                    if (Random.nextBoolean()) {
+                        delay(1)
+                    }
+                    emit(it)
                 }
-                emit(it)
             }
-        }
-        val flow2 = flow {
-            repeat(1000) {
-                if (Random.nextBoolean()) {
-                    delay(1)
+            val flow2 = flow {
+                repeat(1000) {
+                    if (Random.nextBoolean()) {
+                        delay(1)
+                    }
+                    emit(it)
                 }
-                emit(it)
-            }
-        }
-
-        repeat(10) {
-            val result = flow1.combineWithoutBatching(flow2) { first, second, _ -> first to second }
-                .toList()
-
-            // Never emit the same values twice.
-            assertThat(result).containsNoDuplicates()
-
-            // Assert order of emissions
-            result.scan(0 to 0) { acc, next ->
-                assertThat(next.first).isAtLeast(acc.first)
-                assertThat(next.second).isAtLeast(acc.second)
-                next
             }
 
-            // Check we don't miss any emissions
-            assertThat(result).hasSize(1999)
+            repeat(10) {
+                val result =
+                    flow1
+                        .combineWithoutBatching(flow2) { first, second, _ -> first to second }
+                        .toList()
+
+                // Never emit the same values twice.
+                assertThat(result).containsNoDuplicates()
+
+                // Assert order of emissions
+                result.scan(0 to 0) { acc, next ->
+                    assertThat(next.first).isAtLeast(acc.first)
+                    assertThat(next.second).isAtLeast(acc.second)
+                    next
+                }
+
+                // Check we don't miss any emissions
+                assertThat(result).hasSize(1999)
+            }
         }
-    }
 
     class UnbatchedFlowCombinerTest {
         private data class SendResult<T1, T2>(
@@ -305,15 +293,12 @@
         @Test
         fun onNext_receiverBuffers() = runTest {
             val result = mutableListOf<SendResult<Int, Int>>()
-            val combiner = UnbatchedFlowCombiner<Int, Int> { a, b, c ->
-                result.add(SendResult(a, b, c))
-            }
+            val combiner =
+                UnbatchedFlowCombiner<Int, Int> { a, b, c -> result.add(SendResult(a, b, c)) }
 
             combiner.onNext(index = 0, value = 0)
             val job = launch {
-                repeat(9) { receiverValue ->
-                    combiner.onNext(index = 0, value = receiverValue + 1)
-                }
+                repeat(9) { receiverValue -> combiner.onNext(index = 0, value = receiverValue + 1) }
             }
 
             // Ensure subsequent calls to onNext from receiver suspends forever until onNext
@@ -327,32 +312,30 @@
 
             advanceUntilIdle()
             assertThat(job.isCompleted).isTrue()
-            assertThat(result).containsExactly(
-                SendResult(0, 0, INITIAL),
-                SendResult(1, 0, RECEIVER),
-                SendResult(2, 0, RECEIVER),
-                SendResult(3, 0, RECEIVER),
-                SendResult(4, 0, RECEIVER),
-                SendResult(5, 0, RECEIVER),
-                SendResult(6, 0, RECEIVER),
-                SendResult(7, 0, RECEIVER),
-                SendResult(8, 0, RECEIVER),
-                SendResult(9, 0, RECEIVER),
-            )
+            assertThat(result)
+                .containsExactly(
+                    SendResult(0, 0, INITIAL),
+                    SendResult(1, 0, RECEIVER),
+                    SendResult(2, 0, RECEIVER),
+                    SendResult(3, 0, RECEIVER),
+                    SendResult(4, 0, RECEIVER),
+                    SendResult(5, 0, RECEIVER),
+                    SendResult(6, 0, RECEIVER),
+                    SendResult(7, 0, RECEIVER),
+                    SendResult(8, 0, RECEIVER),
+                    SendResult(9, 0, RECEIVER),
+                )
         }
 
         @Test
         fun onNext_otherBuffers() = runTest {
             val result = mutableListOf<SendResult<Int, Int>>()
-            val combiner = UnbatchedFlowCombiner<Int, Int> { a, b, c ->
-                result.add(SendResult(a, b, c))
-            }
+            val combiner =
+                UnbatchedFlowCombiner<Int, Int> { a, b, c -> result.add(SendResult(a, b, c)) }
 
             combiner.onNext(index = 1, value = 0)
             val job = launch {
-                repeat(9) { receiverValue ->
-                    combiner.onNext(index = 1, value = receiverValue + 1)
-                }
+                repeat(9) { receiverValue -> combiner.onNext(index = 1, value = receiverValue + 1) }
             }
 
             // Ensure subsequent calls to onNext from receiver suspends forever until onNext
@@ -366,45 +349,40 @@
 
             advanceUntilIdle()
             assertThat(job.isCompleted).isTrue()
-            assertThat(result).containsExactly(
-                SendResult(0, 0, INITIAL),
-                SendResult(0, 1, OTHER),
-                SendResult(0, 2, OTHER),
-                SendResult(0, 3, OTHER),
-                SendResult(0, 4, OTHER),
-                SendResult(0, 5, OTHER),
-                SendResult(0, 6, OTHER),
-                SendResult(0, 7, OTHER),
-                SendResult(0, 8, OTHER),
-                SendResult(0, 9, OTHER),
-            )
+            assertThat(result)
+                .containsExactly(
+                    SendResult(0, 0, INITIAL),
+                    SendResult(0, 1, OTHER),
+                    SendResult(0, 2, OTHER),
+                    SendResult(0, 3, OTHER),
+                    SendResult(0, 4, OTHER),
+                    SendResult(0, 5, OTHER),
+                    SendResult(0, 6, OTHER),
+                    SendResult(0, 7, OTHER),
+                    SendResult(0, 8, OTHER),
+                    SendResult(0, 9, OTHER),
+                )
         }
 
         @Test
         fun onNext_initialDispatchesFirst() = runTest {
             val result = mutableListOf<SendResult<Int, Int>>()
-            val combiner = UnbatchedFlowCombiner<Int, Int> { a, b, c ->
-                // Give a chance for other calls to onNext to run.
-                yield()
-                result.add(SendResult(a, b, c))
-            }
-
-            launch {
-                repeat(1000) { value ->
-                    combiner.onNext(index = 0, value = value)
+            val combiner =
+                UnbatchedFlowCombiner<Int, Int> { a, b, c ->
+                    // Give a chance for other calls to onNext to run.
+                    yield()
+                    result.add(SendResult(a, b, c))
                 }
-            }
 
-            repeat(1) { value ->
-                launch {
-                    combiner.onNext(index = 1, value = value)
-                }
-            }
+            launch { repeat(1000) { value -> combiner.onNext(index = 0, value = value) } }
+
+            repeat(1) { value -> launch { combiner.onNext(index = 1, value = value) } }
 
             advanceUntilIdle()
-            assertThat(result.first()).isEqualTo(
-                SendResult(0, 0, INITIAL),
-            )
+            assertThat(result.first())
+                .isEqualTo(
+                    SendResult(0, 0, INITIAL),
+                )
         }
     }
 }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/HeaderFooterTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/HeaderFooterTest.kt
index f05f7f8..a450923 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/HeaderFooterTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/HeaderFooterTest.kt
@@ -26,208 +26,200 @@
 import kotlinx.coroutines.test.UnconfinedTestDispatcher
 import kotlinx.coroutines.test.runTest
 
-/**
- * Prepend and append are both Done, so that headers will appear
- */
-private val fullLoadStates = loadStates(
-    prepend = NotLoading.Complete,
-    append = NotLoading.Complete
-)
+/** Prepend and append are both Done, so that headers will appear */
+private val fullLoadStates = loadStates(prepend = NotLoading.Complete, append = NotLoading.Complete)
 
 @OptIn(ExperimentalCoroutinesApi::class)
 class HeaderFooterTest {
 
-    private fun <T : Any> PageEvent<T>.toPagingData() = PagingData(
-        flowOf(this),
-        PagingData.NOOP_UI_RECEIVER,
-        PagingData.NOOP_HINT_RECEIVER
-    )
+    private fun <T : Any> PageEvent<T>.toPagingData() =
+        PagingData(flowOf(this), PagingData.NOOP_UI_RECEIVER, PagingData.NOOP_HINT_RECEIVER)
 
-    private suspend fun <T : Any> PageEvent<T>.insertHeaderItem(item: T) = toPagingData()
-        .insertHeaderItem(item = item)
-        .flow
-        .single()
+    private suspend fun <T : Any> PageEvent<T>.insertHeaderItem(item: T) =
+        toPagingData().insertHeaderItem(item = item).flow.single()
 
-    private suspend fun <T : Any> PageEvent<T>.insertFooterItem(item: T) = toPagingData()
-        .insertFooterItem(item = item)
-        .flow
-        .single()
+    private suspend fun <T : Any> PageEvent<T>.insertFooterItem(item: T) =
+        toPagingData().insertFooterItem(item = item).flow.single()
 
     @Test
-    fun insertHeader_prepend() = runTest(UnconfinedTestDispatcher()) {
-        val actual = localPrepend(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf(0),
-                    originalPageOffset = -1
-                )
-            ),
-            source = fullLoadStates
-        ).insertHeaderItem(-1)
+    fun insertHeader_prepend() =
+        runTest(UnconfinedTestDispatcher()) {
+            val actual =
+                localPrepend(
+                        pages =
+                            listOf(TransformablePage(data = listOf(0), originalPageOffset = -1)),
+                        source = fullLoadStates
+                    )
+                    .insertHeaderItem(-1)
 
-        val expected = localPrepend(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf(-1),
-                    originalPageOffsets = intArrayOf(-1),
-                    hintOriginalPageOffset = -1,
-                    hintOriginalIndices = listOf(0)
-                ),
-                TransformablePage(
-                    data = listOf(0),
-                    originalPageOffset = -1
+            val expected =
+                localPrepend(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                data = listOf(-1),
+                                originalPageOffsets = intArrayOf(-1),
+                                hintOriginalPageOffset = -1,
+                                hintOriginalIndices = listOf(0)
+                            ),
+                            TransformablePage(data = listOf(0), originalPageOffset = -1)
+                        ),
+                    source = fullLoadStates
                 )
-            ),
-            source = fullLoadStates
-        )
 
-        assertThat(actual).isEqualTo(expected)
-    }
+            assertThat(actual).isEqualTo(expected)
+        }
 
     @Test
-    fun insertHeader_refresh() = runTest(UnconfinedTestDispatcher()) {
-        val actual = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("a"),
-                    originalPageOffset = 0
-                )
-            ),
-            source = fullLoadStates
-        ).insertHeaderItem("HEADER")
+    fun insertHeader_refresh() =
+        runTest(UnconfinedTestDispatcher()) {
+            val actual =
+                localRefresh(
+                        pages =
+                            listOf(TransformablePage(data = listOf("a"), originalPageOffset = 0)),
+                        source = fullLoadStates
+                    )
+                    .insertHeaderItem("HEADER")
 
-        val expected = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("HEADER"),
-                    originalPageOffsets = intArrayOf(0),
-                    hintOriginalPageOffset = 0,
-                    hintOriginalIndices = listOf(0)
-                ),
-                TransformablePage(
-                    data = listOf("a"),
-                    originalPageOffset = 0
+            val expected =
+                localRefresh(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                data = listOf("HEADER"),
+                                originalPageOffsets = intArrayOf(0),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0)
+                            ),
+                            TransformablePage(data = listOf("a"), originalPageOffset = 0)
+                        ),
+                    source = fullLoadStates
                 )
-            ),
-            source = fullLoadStates
-        )
 
-        assertThat(actual).isEqualTo(expected)
-    }
+            assertThat(actual).isEqualTo(expected)
+        }
 
     @Test
-    fun insertHeader_empty() = runTest(UnconfinedTestDispatcher()) {
-        val actual = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = emptyList<String>(),
-                    originalPageOffset = 0
-                )
-            ),
-            source = fullLoadStates
-        ).insertHeaderItem("HEADER")
+    fun insertHeader_empty() =
+        runTest(UnconfinedTestDispatcher()) {
+            val actual =
+                localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    data = emptyList<String>(),
+                                    originalPageOffset = 0
+                                )
+                            ),
+                        source = fullLoadStates
+                    )
+                    .insertHeaderItem("HEADER")
 
-        val expected = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("HEADER"),
-                    originalPageOffsets = intArrayOf(0),
-                    hintOriginalPageOffset = 0,
-                    hintOriginalIndices = listOf(0)
+            val expected =
+                localRefresh(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                data = listOf("HEADER"),
+                                originalPageOffsets = intArrayOf(0),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0)
+                            )
+                        ),
+                    source = fullLoadStates
                 )
-            ),
-            source = fullLoadStates
-        )
 
-        assertEquals(expected, actual)
-    }
+            assertEquals(expected, actual)
+        }
 
     @Test
-    fun insertFooter_append() = runTest(UnconfinedTestDispatcher()) {
-        val actual = localAppend(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("b"),
-                    originalPageOffset = 0
-                )
-            ),
-            source = fullLoadStates
-        ).insertFooterItem("FOOTER")
+    fun insertFooter_append() =
+        runTest(UnconfinedTestDispatcher()) {
+            val actual =
+                localAppend(
+                        pages =
+                            listOf(TransformablePage(data = listOf("b"), originalPageOffset = 0)),
+                        source = fullLoadStates
+                    )
+                    .insertFooterItem("FOOTER")
 
-        val expected = localAppend(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("b"),
-                    originalPageOffset = 0
-                ),
-                TransformablePage(
-                    data = listOf("FOOTER"),
-                    originalPageOffsets = intArrayOf(0),
-                    hintOriginalPageOffset = 0,
-                    hintOriginalIndices = listOf(0)
+            val expected =
+                localAppend(
+                    pages =
+                        listOf(
+                            TransformablePage(data = listOf("b"), originalPageOffset = 0),
+                            TransformablePage(
+                                data = listOf("FOOTER"),
+                                originalPageOffsets = intArrayOf(0),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0)
+                            )
+                        ),
+                    source = fullLoadStates
                 )
-            ),
-            source = fullLoadStates
-        )
 
-        assertEquals(expected, actual)
-    }
+            assertEquals(expected, actual)
+        }
 
     @Test
-    fun insertFooter_refresh() = runTest(UnconfinedTestDispatcher()) {
-        val actual = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("a"),
-                    originalPageOffset = 0
-                )
-            ),
-            source = fullLoadStates
-        ).insertFooterItem("FOOTER")
+    fun insertFooter_refresh() =
+        runTest(UnconfinedTestDispatcher()) {
+            val actual =
+                localRefresh(
+                        pages =
+                            listOf(TransformablePage(data = listOf("a"), originalPageOffset = 0)),
+                        source = fullLoadStates
+                    )
+                    .insertFooterItem("FOOTER")
 
-        val expected = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("a"),
-                    originalPageOffset = 0
-                ),
-                TransformablePage(
-                    data = listOf("FOOTER"),
-                    originalPageOffsets = intArrayOf(0),
-                    hintOriginalPageOffset = 0,
-                    hintOriginalIndices = listOf(0)
+            val expected =
+                localRefresh(
+                    pages =
+                        listOf(
+                            TransformablePage(data = listOf("a"), originalPageOffset = 0),
+                            TransformablePage(
+                                data = listOf("FOOTER"),
+                                originalPageOffsets = intArrayOf(0),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0)
+                            )
+                        ),
+                    source = fullLoadStates
                 )
-            ),
-            source = fullLoadStates
-        )
 
-        assertThat(actual).isEqualTo(expected)
-    }
+            assertThat(actual).isEqualTo(expected)
+        }
 
     @Test
-    fun insertFooter_empty() = runTest(UnconfinedTestDispatcher()) {
-        val actual = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = emptyList<String>(),
-                    originalPageOffset = 0
-                )
-            ),
-            source = fullLoadStates
-        ).insertFooterItem("FOOTER")
+    fun insertFooter_empty() =
+        runTest(UnconfinedTestDispatcher()) {
+            val actual =
+                localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    data = emptyList<String>(),
+                                    originalPageOffset = 0
+                                )
+                            ),
+                        source = fullLoadStates
+                    )
+                    .insertFooterItem("FOOTER")
 
-        val expected = localRefresh(
-            pages = listOf(
-                TransformablePage(
-                    data = listOf("FOOTER"),
-                    originalPageOffsets = intArrayOf(0),
-                    hintOriginalPageOffset = 0,
-                    hintOriginalIndices = listOf(0)
+            val expected =
+                localRefresh(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                data = listOf("FOOTER"),
+                                originalPageOffsets = intArrayOf(0),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0)
+                            )
+                        ),
+                    source = fullLoadStates
                 )
-            ),
-            source = fullLoadStates
-        )
 
-        assertThat(actual).isEqualTo(expected)
-    }
+            assertThat(actual).isEqualTo(expected)
+        }
 }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/HintHandlerTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/HintHandlerTest.kt
index 7e2df94..58b92bc 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/HintHandlerTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/HintHandlerTest.kt
@@ -44,36 +44,35 @@
     }
 
     @Test
-    fun noStateForRefresh() = runTest(UnconfinedTestDispatcher()) {
-        val refreshHints = kotlin.runCatching {
-            hintHandler.hintFor(REFRESH)
+    fun noStateForRefresh() =
+        runTest(UnconfinedTestDispatcher()) {
+            val refreshHints = kotlin.runCatching { hintHandler.hintFor(REFRESH) }
+            assertThat(refreshHints.exceptionOrNull()).isInstanceOf<IllegalArgumentException>()
         }
-        assertThat(refreshHints.exceptionOrNull()).isInstanceOf<IllegalArgumentException>()
-    }
 
     @Test
     fun expandChecks() {
-        val initialHint = ViewportHint.Initial(
-            presentedItemsAfter = 0,
-            presentedItemsBefore = 0,
-            originalPageOffsetFirst = 0,
-            originalPageOffsetLast = 0
-        ).also(hintHandler::processHint)
-        hintHandler.assertValues(
-            prepend = initialHint,
-            append = initialHint,
-            lastAccessHint = null
-        )
+        val initialHint =
+            ViewportHint.Initial(
+                    presentedItemsAfter = 0,
+                    presentedItemsBefore = 0,
+                    originalPageOffsetFirst = 0,
+                    originalPageOffsetLast = 0
+                )
+                .also(hintHandler::processHint)
+        hintHandler.assertValues(prepend = initialHint, append = initialHint, lastAccessHint = null)
 
         // both hints get updated w/ access hint
-        val accessHint1 = ViewportHint.Access(
-            pageOffset = 0,
-            indexInPage = 1,
-            presentedItemsBefore = 100,
-            presentedItemsAfter = 100,
-            originalPageOffsetLast = 0,
-            originalPageOffsetFirst = 0
-        ).also(hintHandler::processHint)
+        val accessHint1 =
+            ViewportHint.Access(
+                    pageOffset = 0,
+                    indexInPage = 1,
+                    presentedItemsBefore = 100,
+                    presentedItemsAfter = 100,
+                    originalPageOffsetLast = 0,
+                    originalPageOffsetFirst = 0
+                )
+                .also(hintHandler::processHint)
 
         hintHandler.assertValues(
             prepend = accessHint1,
@@ -82,10 +81,10 @@
         )
 
         // new access that only affects prepend
-        val accessHintPrepend = accessHint1.copy(
-            presentedItemsBefore = 70,
-            presentedItemsAfter = 110
-        ).also(hintHandler::processHint)
+        val accessHintPrepend =
+            accessHint1
+                .copy(presentedItemsBefore = 70, presentedItemsAfter = 110)
+                .also(hintHandler::processHint)
         hintHandler.assertValues(
             prepend = accessHintPrepend,
             append = accessHint1,
@@ -93,18 +92,24 @@
         )
 
         // new access hints that should be ignored
-        val ignoredPrependHint = accessHintPrepend.copy(
-            presentedItemsBefore = 90,
-        ).also(hintHandler::processHint)
+        val ignoredPrependHint =
+            accessHintPrepend
+                .copy(
+                    presentedItemsBefore = 90,
+                )
+                .also(hintHandler::processHint)
         hintHandler.assertValues(
             prepend = accessHintPrepend,
             append = accessHint1,
             lastAccessHint = ignoredPrependHint
         )
 
-        val accessHintAppend = accessHintPrepend.copy(
-            presentedItemsAfter = 80,
-        ).also(hintHandler::processHint)
+        val accessHintAppend =
+            accessHintPrepend
+                .copy(
+                    presentedItemsAfter = 80,
+                )
+                .also(hintHandler::processHint)
         hintHandler.assertValues(
             prepend = accessHintPrepend,
             append = accessHintAppend,
@@ -112,17 +117,13 @@
         )
 
         // more ignored access hints
-        hintHandler.processHint(
-            accessHint1
-        )
+        hintHandler.processHint(accessHint1)
         hintHandler.assertValues(
             prepend = accessHintPrepend,
             append = accessHintAppend,
             lastAccessHint = accessHint1
         )
-        hintHandler.processHint(
-            initialHint
-        )
+        hintHandler.processHint(initialHint)
         hintHandler.assertValues(
             prepend = accessHintPrepend,
             append = accessHintAppend,
@@ -130,17 +131,15 @@
         )
 
         // try changing original page offsets
-        val newFirstOffset = accessHintPrepend.copy(
-            originalPageOffsetFirst = 2
-        ).also(hintHandler::processHint)
+        val newFirstOffset =
+            accessHintPrepend.copy(originalPageOffsetFirst = 2).also(hintHandler::processHint)
         hintHandler.assertValues(
             prepend = newFirstOffset,
             append = newFirstOffset,
             lastAccessHint = newFirstOffset
         )
-        val newLastOffset = newFirstOffset.copy(
-            originalPageOffsetLast = 5
-        ).also(hintHandler::processHint)
+        val newLastOffset =
+            newFirstOffset.copy(originalPageOffsetLast = 5).also(hintHandler::processHint)
         hintHandler.assertValues(
             prepend = newLastOffset,
             append = newLastOffset,
@@ -150,38 +149,23 @@
 
     @Test
     fun reset() {
-        val initial = ViewportHint.Access(
-            pageOffset = 0,
-            indexInPage = 3,
-            presentedItemsBefore = 10,
-            presentedItemsAfter = 10,
-            originalPageOffsetFirst = 0,
-            originalPageOffsetLast = 0
-        )
+        val initial =
+            ViewportHint.Access(
+                pageOffset = 0,
+                indexInPage = 3,
+                presentedItemsBefore = 10,
+                presentedItemsAfter = 10,
+                originalPageOffsetFirst = 0,
+                originalPageOffsetLast = 0
+            )
         hintHandler.processHint(initial)
 
-        val appendReset = initial.copy(
-            presentedItemsBefore = 20,
-            presentedItemsAfter = 5
-        )
-        hintHandler.forceSetHint(
-            APPEND,
-            appendReset
-        )
-        hintHandler.assertValues(
-            prepend = initial,
-            append = appendReset,
-            lastAccessHint = initial
-        )
+        val appendReset = initial.copy(presentedItemsBefore = 20, presentedItemsAfter = 5)
+        hintHandler.forceSetHint(APPEND, appendReset)
+        hintHandler.assertValues(prepend = initial, append = appendReset, lastAccessHint = initial)
 
-        val prependReset = initial.copy(
-            presentedItemsBefore = 4,
-            presentedItemsAfter = 19
-        )
-        hintHandler.forceSetHint(
-            PREPEND,
-            prependReset
-        )
+        val prependReset = initial.copy(presentedItemsBefore = 4, presentedItemsAfter = 19)
+        hintHandler.forceSetHint(PREPEND, prependReset)
         hintHandler.assertValues(
             prepend = prependReset,
             append = appendReset,
@@ -190,45 +174,43 @@
     }
 
     @Test
-    fun resetCanReSendSameValues() = runTest(UnconfinedTestDispatcher()) {
-        val hint = ViewportHint.Access(
-            pageOffset = 0,
-            indexInPage = 1,
-            presentedItemsAfter = 10,
-            presentedItemsBefore = 10,
-            originalPageOffsetFirst = 0,
-            originalPageOffsetLast = 0,
-        )
-        val prependHints = collectAsync(
-            hintHandler.hintFor(PREPEND)
-        )
-        val appendHints = collectAsync(
-            hintHandler.hintFor(APPEND)
-        )
-        runCurrent()
-        assertThat(prependHints.values).isEmpty()
-        assertThat(appendHints.values).isEmpty()
-        hintHandler.processHint(hint)
-        runCurrent()
-        assertThat(prependHints.values).containsExactly(hint)
-        assertThat(appendHints.values).containsExactly(hint)
+    fun resetCanReSendSameValues() =
+        runTest(UnconfinedTestDispatcher()) {
+            val hint =
+                ViewportHint.Access(
+                    pageOffset = 0,
+                    indexInPage = 1,
+                    presentedItemsAfter = 10,
+                    presentedItemsBefore = 10,
+                    originalPageOffsetFirst = 0,
+                    originalPageOffsetLast = 0,
+                )
+            val prependHints = collectAsync(hintHandler.hintFor(PREPEND))
+            val appendHints = collectAsync(hintHandler.hintFor(APPEND))
+            runCurrent()
+            assertThat(prependHints.values).isEmpty()
+            assertThat(appendHints.values).isEmpty()
+            hintHandler.processHint(hint)
+            runCurrent()
+            assertThat(prependHints.values).containsExactly(hint)
+            assertThat(appendHints.values).containsExactly(hint)
 
-        // send same hint twice, it should not get dispatched
-        hintHandler.processHint(hint.copy())
-        runCurrent()
-        assertThat(prependHints.values).containsExactly(hint)
-        assertThat(appendHints.values).containsExactly(hint)
+            // send same hint twice, it should not get dispatched
+            hintHandler.processHint(hint.copy())
+            runCurrent()
+            assertThat(prependHints.values).containsExactly(hint)
+            assertThat(appendHints.values).containsExactly(hint)
 
-        // how send that hint as reset, now it should get dispatched
-        hintHandler.forceSetHint(PREPEND, hint)
-        runCurrent()
-        assertThat(prependHints.values).containsExactly(hint, hint)
-        assertThat(appendHints.values).containsExactly(hint)
-        hintHandler.forceSetHint(APPEND, hint)
-        runCurrent()
-        assertThat(prependHints.values).containsExactly(hint, hint)
-        assertThat(appendHints.values).containsExactly(hint, hint)
-    }
+            // how send that hint as reset, now it should get dispatched
+            hintHandler.forceSetHint(PREPEND, hint)
+            runCurrent()
+            assertThat(prependHints.values).containsExactly(hint, hint)
+            assertThat(appendHints.values).containsExactly(hint)
+            hintHandler.forceSetHint(APPEND, hint)
+            runCurrent()
+            assertThat(prependHints.values).containsExactly(hint, hint)
+            assertThat(appendHints.values).containsExactly(hint, hint)
+        }
 
     private fun HintHandler.assertValues(
         prepend: ViewportHint,
@@ -240,37 +222,27 @@
         assertThat(hintHandler.lastAccessHint).isEqualTo(lastAccessHint)
     }
 
-    private fun HintHandler.currentValue(
-        loadType: LoadType
-    ): ViewportHint? {
+    private fun HintHandler.currentValue(loadType: LoadType): ViewportHint? {
         var value: ViewportHint? = null
         runTest(UnconfinedTestDispatcher()) {
-            val job = launch {
-                this@currentValue.hintFor(loadType).take(1).collect {
-                    value = it
-                }
-            }
+            val job = launch { this@currentValue.hintFor(loadType).take(1).collect { value = it } }
             runCurrent()
             job.cancel()
         }
         return value
     }
 
-    private suspend fun CoroutineScope.collectAsync(
-        flow: Flow<ViewportHint>
-    ): TestCollection {
+    private suspend fun CoroutineScope.collectAsync(flow: Flow<ViewportHint>): TestCollection {
         val impl = TestCollectionImpl()
-        async(context = impl.job) {
-            flow.collect {
-                impl.values.add(it)
-            }
-        }
+        async(context = impl.job) { flow.collect { impl.values.add(it) } }
         return impl
     }
 
     private interface TestCollection {
         val values: List<ViewportHint>
+
         fun stop()
+
         val latest: ViewportHint?
             get() = values.lastOrNull()
     }
@@ -278,6 +250,7 @@
     private class TestCollectionImpl : TestCollection {
         val job = Job()
         override val values = mutableListOf<ViewportHint>()
+
         override fun stop() {
             job.cancel()
         }
@@ -290,12 +263,13 @@
         presentedItemsAfter: Int = this@copy.presentedItemsAfter,
         originalPageOffsetFirst: Int = this@copy.originalPageOffsetFirst,
         originalPageOffsetLast: Int = this@copy.originalPageOffsetLast
-    ) = ViewportHint.Access(
-        pageOffset = pageOffset,
-        indexInPage = indexInPage,
-        presentedItemsBefore = presentedItemsBefore,
-        presentedItemsAfter = presentedItemsAfter,
-        originalPageOffsetFirst = originalPageOffsetFirst,
-        originalPageOffsetLast = originalPageOffsetLast
-    )
+    ) =
+        ViewportHint.Access(
+            pageOffset = pageOffset,
+            indexInPage = indexInPage,
+            presentedItemsBefore = presentedItemsBefore,
+            presentedItemsAfter = presentedItemsAfter,
+            originalPageOffsetFirst = originalPageOffsetFirst,
+            originalPageOffsetLast = originalPageOffsetLast
+        )
 }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/InvalidatingPagingSourceFactoryTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/InvalidatingPagingSourceFactoryTest.kt
index 647d7c8..85a0f6d 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/InvalidatingPagingSourceFactoryTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/InvalidatingPagingSourceFactoryTest.kt
@@ -49,9 +49,7 @@
         val testFactory = InvalidatingPagingSourceFactory { TestPagingSource() }
         repeat(4) { testFactory() }
         testFactory.pagingSources().forEachIndexed { index, pagingSource ->
-            pagingSource.registerInvalidatedCallback {
-                invalidateCalls[index] = true
-            }
+            pagingSource.registerInvalidatedCallback { invalidateCalls[index] = true }
         }
         testFactory.invalidate()
         assertTrue { invalidateCalls.all { it } }
@@ -69,11 +67,7 @@
 
         var invalidateCount = 0
 
-        testFactory.pagingSources().forEach {
-            it.registerInvalidatedCallback {
-                invalidateCount++
-            }
-        }
+        testFactory.pagingSources().forEach { it.registerInvalidatedCallback { invalidateCount++ } }
 
         testFactory.invalidate()
 
@@ -96,15 +90,16 @@
     }
 
     @Test
-    fun invalidate_threadSafe() = runBlocking<Unit> {
-        val factory = InvalidatingPagingSourceFactory { TestPagingSource() }
-        (0 until 100).map {
-            async(Dispatchers.Default) {
-                factory().registerInvalidatedCallback {
-                    factory().invalidate()
+    fun invalidate_threadSafe() =
+        runBlocking<Unit> {
+            val factory = InvalidatingPagingSourceFactory { TestPagingSource() }
+            (0 until 100)
+                .map {
+                    async(Dispatchers.Default) {
+                        factory().registerInvalidatedCallback { factory().invalidate() }
+                        factory.invalidate()
+                    }
                 }
-                factory.invalidate()
-            }
-        }.awaitAll()
-    }
+                .awaitAll()
+        }
 }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageEventTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageEventTest.kt
index 79581ce..cc26a7f 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageEventTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageEventTest.kt
@@ -33,27 +33,18 @@
     page: List<T>,
     originalPageOffset: Int,
     placeholdersRemaining: Int
-) = if (isPrepend) {
-    localPrepend(
-        pages = listOf(
-            TransformablePage(
-                originalPageOffset = originalPageOffset,
-                data = page
-            )
-        ),
-        placeholdersBefore = placeholdersRemaining,
-    )
-} else {
-    localAppend(
-        pages = listOf(
-            TransformablePage(
-                originalPageOffset = originalPageOffset,
-                data = page
-            )
-        ),
-        placeholdersAfter = placeholdersRemaining,
-    )
-}
+) =
+    if (isPrepend) {
+        localPrepend(
+            pages = listOf(TransformablePage(originalPageOffset = originalPageOffset, data = page)),
+            placeholdersBefore = placeholdersRemaining,
+        )
+    } else {
+        localAppend(
+            pages = listOf(TransformablePage(originalPageOffset = originalPageOffset, data = page)),
+            placeholdersAfter = placeholdersRemaining,
+        )
+    }
 
 @OptIn(ExperimentalCoroutinesApi::class)
 class PageEventTest {
@@ -112,229 +103,234 @@
     }
 
     @Test
-    fun dropTransform() = runTest(UnconfinedTestDispatcher()) {
-        val drop = Drop<Char>(
-            loadType = PREPEND,
-            minPageOffset = 0,
-            maxPageOffset = 0,
-            placeholdersRemaining = 0
-        )
+    fun dropTransform() =
+        runTest(UnconfinedTestDispatcher()) {
+            val drop =
+                Drop<Char>(
+                    loadType = PREPEND,
+                    minPageOffset = 0,
+                    maxPageOffset = 0,
+                    placeholdersRemaining = 0
+                )
 
-        assertSame(drop, drop.map { it + 1 })
-        assertSame(drop, drop.flatMap { listOf(it, it) })
-        assertSame(drop, drop.filter { false })
-    }
-
-    @Test
-    fun stateTransform() = runTest(UnconfinedTestDispatcher()) {
-        val state = localLoadStateUpdate<Char>(
-            refreshLocal = LoadState.Loading
-        )
-
-        assertSame(state, state.map { it + 1 })
-        assertSame(state, state.flatMap { listOf(it, it) })
-        assertSame(state, state.filter { false })
-    }
-
-    @Test
-    fun insertMap() = runTest(UnconfinedTestDispatcher()) {
-        val insert = localAppend(
-            pages = listOf(TransformablePage(listOf('a', 'b'))),
-            placeholdersAfter = 4,
-        )
-        assertEquals(
-            localAppend(
-                pages = listOf(TransformablePage(listOf("a", "b"))),
-                placeholdersAfter = 4,
-            ),
-            insert.map { it.toString() }
-        )
-
-        assertEquals(
-            insert,
-            insert.map { it.toString() }.map { it[0] }
-        )
-    }
-
-    @Test
-    fun insertMapTransformed() = runTest(UnconfinedTestDispatcher()) {
-        assertEquals(
-            localAppend(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf("a", "b"),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = listOf(0, 2)
-                    )
-                ),
-                placeholdersAfter = 4,
-            ),
-            localAppend(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf("a", "b"),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = listOf(0, 2)
-                    )
-                ),
-                placeholdersAfter = 4,
-            ).map { it.toString() }
-        )
-    }
-
-    @Test
-    fun insertFilter() = runTest(UnconfinedTestDispatcher()) {
-        val insert = localAppend(
-            pages = listOf(TransformablePage(listOf('a', 'b', 'c', 'd'))),
-            placeholdersAfter = 4,
-        )
-
-        // filter out C
-        val insertNoC = insert.filter { it != 'c' }
-
-        assertEquals(
-            localAppend(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf('a', 'b', 'd'),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = listOf(0, 1, 3)
-                    )
-                ),
-                placeholdersAfter = 4,
-            ),
-            insertNoC
-        )
-
-        // now filter out A, to validate filtration when lookup present
-        assertEquals(
-            localAppend(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf('b', 'd'),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = listOf(1, 3)
-                    )
-                ),
-                placeholdersAfter = 4,
-            ),
-            insertNoC.filter { it != 'a' }
-        )
-    }
-
-    @Test
-    fun insertFlatMap() = runTest(UnconfinedTestDispatcher()) {
-        val insert = localAppend(
-            pages = listOf(TransformablePage(listOf('a', 'b'))),
-            placeholdersAfter = 4,
-        )
-
-        val flatMapped = insert.flatMap {
-            listOf("${it}1", "${it}2")
+            assertSame(drop, drop.map { it + 1 })
+            assertSame(drop, drop.flatMap { listOf(it, it) })
+            assertSame(drop, drop.filter { false })
         }
 
-        assertEquals(
-            localAppend(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf("a1", "a2", "b1", "b2"),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = listOf(0, 0, 1, 1)
-                    )
-                ),
-                placeholdersAfter = 4,
-            ),
-            flatMapped
-        )
+    @Test
+    fun stateTransform() =
+        runTest(UnconfinedTestDispatcher()) {
+            val state = localLoadStateUpdate<Char>(refreshLocal = LoadState.Loading)
 
-        val flatMappedAgain = flatMapped.flatMap {
-            listOf(it, "-")
+            assertSame(state, state.map { it + 1 })
+            assertSame(state, state.flatMap { listOf(it, it) })
+            assertSame(state, state.filter { false })
         }
 
-        assertEquals(
-            localAppend(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf("a1", "-", "a2", "-", "b1", "-", "b2", "-"),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = listOf(0, 0, 0, 0, 1, 1, 1, 1)
-                    )
+    @Test
+    fun insertMap() =
+        runTest(UnconfinedTestDispatcher()) {
+            val insert =
+                localAppend(
+                    pages = listOf(TransformablePage(listOf('a', 'b'))),
+                    placeholdersAfter = 4,
+                )
+            assertEquals(
+                localAppend(
+                    pages = listOf(TransformablePage(listOf("a", "b"))),
+                    placeholdersAfter = 4,
                 ),
-                placeholdersAfter = 4,
-            ),
-            flatMappedAgain
-        )
-    }
+                insert.map { it.toString() }
+            )
+
+            assertEquals(insert, insert.map { it.toString() }.map { it[0] })
+        }
+
+    @Test
+    fun insertMapTransformed() =
+        runTest(UnconfinedTestDispatcher()) {
+            assertEquals(
+                localAppend(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                originalPageOffsets = intArrayOf(0),
+                                data = listOf("a", "b"),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0, 2)
+                            )
+                        ),
+                    placeholdersAfter = 4,
+                ),
+                localAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("a", "b"),
+                                    hintOriginalPageOffset = 0,
+                                    hintOriginalIndices = listOf(0, 2)
+                                )
+                            ),
+                        placeholdersAfter = 4,
+                    )
+                    .map { it.toString() }
+            )
+        }
+
+    @Test
+    fun insertFilter() =
+        runTest(UnconfinedTestDispatcher()) {
+            val insert =
+                localAppend(
+                    pages = listOf(TransformablePage(listOf('a', 'b', 'c', 'd'))),
+                    placeholdersAfter = 4,
+                )
+
+            // filter out C
+            val insertNoC = insert.filter { it != 'c' }
+
+            assertEquals(
+                localAppend(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                originalPageOffsets = intArrayOf(0),
+                                data = listOf('a', 'b', 'd'),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0, 1, 3)
+                            )
+                        ),
+                    placeholdersAfter = 4,
+                ),
+                insertNoC
+            )
+
+            // now filter out A, to validate filtration when lookup present
+            assertEquals(
+                localAppend(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                originalPageOffsets = intArrayOf(0),
+                                data = listOf('b', 'd'),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(1, 3)
+                            )
+                        ),
+                    placeholdersAfter = 4,
+                ),
+                insertNoC.filter { it != 'a' }
+            )
+        }
+
+    @Test
+    fun insertFlatMap() =
+        runTest(UnconfinedTestDispatcher()) {
+            val insert =
+                localAppend(
+                    pages = listOf(TransformablePage(listOf('a', 'b'))),
+                    placeholdersAfter = 4,
+                )
+
+            val flatMapped = insert.flatMap { listOf("${it}1", "${it}2") }
+
+            assertEquals(
+                localAppend(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                originalPageOffsets = intArrayOf(0),
+                                data = listOf("a1", "a2", "b1", "b2"),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0, 0, 1, 1)
+                            )
+                        ),
+                    placeholdersAfter = 4,
+                ),
+                flatMapped
+            )
+
+            val flatMappedAgain = flatMapped.flatMap { listOf(it, "-") }
+
+            assertEquals(
+                localAppend(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                originalPageOffsets = intArrayOf(0),
+                                data = listOf("a1", "-", "a2", "-", "b1", "-", "b2", "-"),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = listOf(0, 0, 0, 0, 1, 1, 1, 1)
+                            )
+                        ),
+                    placeholdersAfter = 4,
+                ),
+                flatMappedAgain
+            )
+        }
 
     class StaticPagingData {
         companion object {
-            fun initParameters() = listOf(
-                listOf("a", "b", "c"),
-                emptyList(),
-            )
+            fun initParameters() =
+                listOf(
+                    listOf("a", "b", "c"),
+                    emptyList(),
+                )
         }
 
         private val presenter = TestPagingDataPresenter<String>(EmptyCoroutineContext)
 
-        @Test
-        fun map_nonEmpty() = map(PagingData.from(listOf("a", "b", "c")))
+        @Test fun map_nonEmpty() = map(PagingData.from(listOf("a", "b", "c")))
 
-        @Test
-        fun map_empty() = map(PagingData.empty())
+        @Test fun map_empty() = map(PagingData.empty())
 
-        private fun map(pagingData: PagingData<String>) = runTest(UnconfinedTestDispatcher()) {
-            val transform = { it: String -> it + it }
-            presenter.collectFrom(pagingData)
-            val originalItems = presenter.snapshot().items
-            val expectedItems = originalItems.map(transform)
-            val transformedPagingData = pagingData.map { transform(it) }
-            presenter.collectFrom(transformedPagingData)
-            assertEquals(expectedItems, presenter.snapshot().items)
-        }
+        private fun map(pagingData: PagingData<String>) =
+            runTest(UnconfinedTestDispatcher()) {
+                val transform = { it: String -> it + it }
+                presenter.collectFrom(pagingData)
+                val originalItems = presenter.snapshot().items
+                val expectedItems = originalItems.map(transform)
+                val transformedPagingData = pagingData.map { transform(it) }
+                presenter.collectFrom(transformedPagingData)
+                assertEquals(expectedItems, presenter.snapshot().items)
+            }
 
-        @Test
-        fun flatMap_nonEmpty() = flatMap(PagingData.from(listOf("a", "b", "c")))
+        @Test fun flatMap_nonEmpty() = flatMap(PagingData.from(listOf("a", "b", "c")))
 
-        @Test
-        fun flatMap_empty() = flatMap(PagingData.empty())
+        @Test fun flatMap_empty() = flatMap(PagingData.empty())
 
-        private fun flatMap(pagingData: PagingData<String>) = runTest(UnconfinedTestDispatcher()) {
-            val transform = { it: String -> listOf(it, it) }
-            presenter.collectFrom(pagingData)
-            val originalItems = presenter.snapshot().items
-            val expectedItems = originalItems.flatMap(transform)
-            val transformedPagingData = pagingData.flatMap { transform(it) }
-            presenter.collectFrom(transformedPagingData)
-            assertEquals(expectedItems, presenter.snapshot().items)
-        }
+        private fun flatMap(pagingData: PagingData<String>) =
+            runTest(UnconfinedTestDispatcher()) {
+                val transform = { it: String -> listOf(it, it) }
+                presenter.collectFrom(pagingData)
+                val originalItems = presenter.snapshot().items
+                val expectedItems = originalItems.flatMap(transform)
+                val transformedPagingData = pagingData.flatMap { transform(it) }
+                presenter.collectFrom(transformedPagingData)
+                assertEquals(expectedItems, presenter.snapshot().items)
+            }
 
-        @Test
-        fun filter_nonEmpty() = filter(PagingData.from(listOf("a", "b", "c")))
+        @Test fun filter_nonEmpty() = filter(PagingData.from(listOf("a", "b", "c")))
 
-        @Test
-        fun filter_empty() = filter(PagingData.empty())
+        @Test fun filter_empty() = filter(PagingData.empty())
 
-        private fun filter(pagingData: PagingData<String>) = runTest(UnconfinedTestDispatcher()) {
-            val predicate = { it: String -> it != "b" }
-            presenter.collectFrom(pagingData)
-            val originalItems = presenter.snapshot().items
-            val expectedItems = originalItems.filter(predicate)
-            val transformedPagingData = pagingData.filter { predicate(it) }
-            presenter.collectFrom(transformedPagingData)
-            assertEquals(expectedItems, presenter.snapshot().items)
-        }
+        private fun filter(pagingData: PagingData<String>) =
+            runTest(UnconfinedTestDispatcher()) {
+                val predicate = { it: String -> it != "b" }
+                presenter.collectFrom(pagingData)
+                val originalItems = presenter.snapshot().items
+                val expectedItems = originalItems.filter(predicate)
+                val transformedPagingData = pagingData.filter { predicate(it) }
+                presenter.collectFrom(transformedPagingData)
+                assertEquals(expectedItems, presenter.snapshot().items)
+            }
 
         @Test
         fun insertSeparators_nonEmpty() = insertSeparators(PagingData.from(listOf("a", "b", "c")))
 
-        @Test
-        fun insertSeparators_empty() = insertSeparators(PagingData.empty())
+        @Test fun insertSeparators_empty() = insertSeparators(PagingData.empty())
 
         private fun insertSeparators(pagingData: PagingData<String>) =
             runTest(UnconfinedTestDispatcher()) {
@@ -343,21 +339,21 @@
                 }
                 presenter.collectFrom(pagingData)
                 val originalItems = presenter.snapshot().items
-                val expectedItems = originalItems.flatMapIndexed { index, s ->
-                    val result = mutableListOf<String>()
-                    if (index == 0) {
-                        transform(null, s)?.let(result::add)
+                val expectedItems =
+                    originalItems.flatMapIndexed { index, s ->
+                        val result = mutableListOf<String>()
+                        if (index == 0) {
+                            transform(null, s)?.let(result::add)
+                        }
+                        result.add(s)
+                        transform(s, originalItems.getOrNull(index + 1))?.let(result::add)
+                        if (index == originalItems.lastIndex) {
+                            transform(s, null)?.let(result::add)
+                        }
+                        result
                     }
-                    result.add(s)
-                    transform(s, originalItems.getOrNull(index + 1))?.let(result::add)
-                    if (index == originalItems.lastIndex) {
-                        transform(s, null)?.let(result::add)
-                    }
-                    result
-                }
-                val transformedPagingData = pagingData.insertSeparators { left, right ->
-                    transform(left, right)
-                }
+                val transformedPagingData =
+                    pagingData.insertSeparators { left, right -> transform(left, right) }
                 presenter.collectFrom(transformedPagingData)
                 assertEquals(expectedItems, presenter.snapshot().items)
             }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageFetcherSnapshotStateTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageFetcherSnapshotStateTest.kt
index fc38034..32826ca 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageFetcherSnapshotStateTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageFetcherSnapshotStateTest.kt
@@ -35,472 +35,467 @@
     val testScope = TestScope()
 
     @Test
-    fun placeholders_uncounted() = testScope.runTest {
-        val pagerState = PageFetcherSnapshotState.Holder<Int, Int>(
-            config = PagingConfig(2, enablePlaceholders = false)
-        ).withLock { it }
+    fun placeholders_uncounted() =
+        testScope.runTest {
+            val pagerState =
+                PageFetcherSnapshotState.Holder<Int, Int>(
+                        config = PagingConfig(2, enablePlaceholders = false)
+                    )
+                    .withLock { it }
 
-        assertEquals(0, pagerState.placeholdersBefore)
-        assertEquals(0, pagerState.placeholdersAfter)
+            assertEquals(0, pagerState.placeholdersBefore)
+            assertEquals(0, pagerState.placeholdersAfter)
 
-        pagerState.insert(
-            loadId = 0, loadType = REFRESH,
-            page = Page(
-                data = listOf(),
-                prevKey = -1,
-                nextKey = 1,
-                itemsBefore = 50,
-                itemsAfter = 50
+            pagerState.insert(
+                loadId = 0,
+                loadType = REFRESH,
+                page =
+                    Page(
+                        data = listOf(),
+                        prevKey = -1,
+                        nextKey = 1,
+                        itemsBefore = 50,
+                        itemsAfter = 50
+                    )
             )
-        )
 
-        assertEquals(0, pagerState.placeholdersBefore)
-        assertEquals(0, pagerState.placeholdersAfter)
+            assertEquals(0, pagerState.placeholdersBefore)
+            assertEquals(0, pagerState.placeholdersAfter)
 
-        pagerState.insert(
-            loadId = 0, loadType = PREPEND,
-            page = Page(
-                data = listOf(),
-                prevKey = -2,
-                nextKey = 0,
-                itemsBefore = 25
-            )
-        )
-        pagerState.insert(
-            loadId = 0, loadType = APPEND,
-            page = Page(
-                data = listOf(),
-                prevKey = 0,
-                nextKey = 2,
-                itemsBefore = 25
-            )
-        )
-
-        assertEquals(0, pagerState.placeholdersBefore)
-        assertEquals(0, pagerState.placeholdersAfter)
-
-        // Should automatically decrement remaining placeholders when counted.
-        pagerState.insert(
-            loadId = 0,
-            loadType = PREPEND,
-            page = Page(
-                data = listOf(0),
-                prevKey = -3,
-                nextKey = 0,
-                itemsBefore = COUNT_UNDEFINED,
-                itemsAfter = COUNT_UNDEFINED
-            )
-        )
-        pagerState.insert(
-            loadId = 0,
-            loadType = APPEND,
-            page = Page(
-                data = listOf(0),
-                prevKey = 0,
-                nextKey = 3,
-                itemsBefore = COUNT_UNDEFINED,
-                itemsAfter = COUNT_UNDEFINED
-            )
-        )
-
-        assertEquals(0, pagerState.placeholdersBefore)
-        assertEquals(0, pagerState.placeholdersAfter)
-
-        pagerState.drop(
-            event = PageEvent.Drop(
+            pagerState.insert(
+                loadId = 0,
                 loadType = PREPEND,
-                minPageOffset = -2,
-                maxPageOffset = -2,
-                placeholdersRemaining = 100
+                page = Page(data = listOf(), prevKey = -2, nextKey = 0, itemsBefore = 25)
             )
-        )
-        pagerState.drop(
-            event = PageEvent.Drop(
+            pagerState.insert(
+                loadId = 0,
                 loadType = APPEND,
-                minPageOffset = 2,
-                maxPageOffset = 2,
-                placeholdersRemaining = 100
+                page = Page(data = listOf(), prevKey = 0, nextKey = 2, itemsBefore = 25)
             )
-        )
 
-        assertEquals(0, pagerState.placeholdersBefore)
-        assertEquals(0, pagerState.placeholdersAfter)
-    }
+            assertEquals(0, pagerState.placeholdersBefore)
+            assertEquals(0, pagerState.placeholdersAfter)
 
-    @Test
-    fun placeholders_counted() = testScope.runTest {
-        val pagerState = PageFetcherSnapshotState.Holder<Int, Int>(
-            config = PagingConfig(2, enablePlaceholders = true)
-        ).withLock { it }
-
-        assertEquals(0, pagerState.placeholdersBefore)
-        assertEquals(0, pagerState.placeholdersAfter)
-
-        pagerState.insert(
-            loadId = 0,
-            loadType = REFRESH,
-            page = Page(
-                data = listOf(),
-                prevKey = -1,
-                nextKey = 1,
-                itemsBefore = 50,
-                itemsAfter = 50
-            )
-        )
-
-        assertEquals(50, pagerState.placeholdersBefore)
-        assertEquals(50, pagerState.placeholdersAfter)
-
-        pagerState.insert(
-            loadId = 0,
-            loadType = PREPEND,
-            page = Page(
-                data = listOf(),
-                prevKey = -2,
-                nextKey = 0,
-                itemsBefore = 25,
-                itemsAfter = COUNT_UNDEFINED
-            )
-        )
-        pagerState.insert(
-            loadId = 0,
-            loadType = APPEND,
-            page = Page(
-                data = listOf(),
-                prevKey = 0,
-                nextKey = 2,
-                itemsBefore = COUNT_UNDEFINED,
-                itemsAfter = 25
-            )
-        )
-
-        assertEquals(25, pagerState.placeholdersBefore)
-        assertEquals(25, pagerState.placeholdersAfter)
-
-        // Should automatically decrement remaining placeholders when counted.
-        pagerState.insert(
-            loadId = 0,
-            loadType = PREPEND,
-            page = Page(
-                data = listOf(0),
-                prevKey = -3,
-                nextKey = 0,
-                itemsBefore = COUNT_UNDEFINED,
-                itemsAfter = COUNT_UNDEFINED
-            )
-        )
-        pagerState.insert(
-            loadId = 0,
-            loadType = APPEND,
-            page = Page(
-                data = listOf(0),
-                prevKey = 0,
-                nextKey = 3,
-                itemsBefore = COUNT_UNDEFINED,
-                itemsAfter = COUNT_UNDEFINED
-            )
-        )
-
-        assertEquals(24, pagerState.placeholdersBefore)
-        assertEquals(24, pagerState.placeholdersAfter)
-
-        pagerState.drop(
-            event = PageEvent.Drop(
+            // Should automatically decrement remaining placeholders when counted.
+            pagerState.insert(
+                loadId = 0,
                 loadType = PREPEND,
-                minPageOffset = -2,
-                maxPageOffset = -2,
-                placeholdersRemaining = 100
+                page =
+                    Page(
+                        data = listOf(0),
+                        prevKey = -3,
+                        nextKey = 0,
+                        itemsBefore = COUNT_UNDEFINED,
+                        itemsAfter = COUNT_UNDEFINED
+                    )
             )
-        )
-        pagerState.drop(
-            event = PageEvent.Drop(
+            pagerState.insert(
+                loadId = 0,
                 loadType = APPEND,
-                minPageOffset = 2,
-                maxPageOffset = 2,
-                placeholdersRemaining = 100
+                page =
+                    Page(
+                        data = listOf(0),
+                        prevKey = 0,
+                        nextKey = 3,
+                        itemsBefore = COUNT_UNDEFINED,
+                        itemsAfter = COUNT_UNDEFINED
+                    )
             )
-        )
 
-        assertEquals(100, pagerState.placeholdersBefore)
-        assertEquals(100, pagerState.placeholdersAfter)
-    }
+            assertEquals(0, pagerState.placeholdersBefore)
+            assertEquals(0, pagerState.placeholdersAfter)
+
+            pagerState.drop(
+                event =
+                    PageEvent.Drop(
+                        loadType = PREPEND,
+                        minPageOffset = -2,
+                        maxPageOffset = -2,
+                        placeholdersRemaining = 100
+                    )
+            )
+            pagerState.drop(
+                event =
+                    PageEvent.Drop(
+                        loadType = APPEND,
+                        minPageOffset = 2,
+                        maxPageOffset = 2,
+                        placeholdersRemaining = 100
+                    )
+            )
+
+            assertEquals(0, pagerState.placeholdersBefore)
+            assertEquals(0, pagerState.placeholdersAfter)
+        }
 
     @Test
-    fun currentPagingState() = testScope.runTest {
-        val config = PagingConfig(pageSize = 2)
-        val state = PageFetcherSnapshotState.Holder<Int, Int>(config = config).withLock { it }
+    fun placeholders_counted() =
+        testScope.runTest {
+            val pagerState =
+                PageFetcherSnapshotState.Holder<Int, Int>(
+                        config = PagingConfig(2, enablePlaceholders = true)
+                    )
+                    .withLock { it }
 
-        val pages = listOf(
-            Page(
-                data = listOf(2, 3),
-                prevKey = 1,
-                nextKey = 4
-            ),
-            Page(
-                data = listOf(4, 5),
-                prevKey = 3,
-                nextKey = 6,
-                itemsBefore = 4,
-                itemsAfter = 4
-            ),
-            Page(
-                data = listOf(6, 7),
-                prevKey = 5,
-                nextKey = 8
-            )
-        )
+            assertEquals(0, pagerState.placeholdersBefore)
+            assertEquals(0, pagerState.placeholdersAfter)
 
-        state.insert(0, REFRESH, pages[1])
-        state.insert(0, PREPEND, pages[0])
-        state.insert(0, APPEND, pages[2])
-
-        val storage = pages.toPageStore(1)
-        val storageMissingPrepend = pages.drop(1).toPageStore(0)
-        val storageMissingAppend = pages.dropLast(1).toPageStore(1)
-        val storageExtraPrepend = pages.toMutableList().apply {
-            add(
-                0,
-                Page(
-                    data = listOf(0, 1),
-                    prevKey = null,
-                    nextKey = 2
-                )
-            )
-        }.toPageStore(2)
-        val storageExtraAppend = pages.toMutableList().apply {
-            add(
-                Page(
-                    data = listOf(8, 9),
-                    prevKey = 7,
-                    nextKey = null
-                )
-            )
-        }.toPageStore(1)
-
-        // Hint in loaded items, fetcher state == storage state.
-        assertThat(state.currentPagingState(storage.accessHintForPresenterIndex(4)))
-            .isEqualTo(
-                PagingState(
-                    pages = pages,
-                    anchorPosition = 4,
-                    config = config,
-                    leadingPlaceholderCount = 2
-                )
+            pagerState.insert(
+                loadId = 0,
+                loadType = REFRESH,
+                page =
+                    Page(
+                        data = listOf(),
+                        prevKey = -1,
+                        nextKey = 1,
+                        itemsBefore = 50,
+                        itemsAfter = 50
+                    )
             )
 
-        // Hint in placeholders before, fetcher state == storage state.
-        assertThat(state.currentPagingState(storage.accessHintForPresenterIndex(0)))
-            .isEqualTo(
-                PagingState(
-                    pages = pages,
-                    anchorPosition = 0,
-                    config = config,
-                    leadingPlaceholderCount = 2
-                )
+            assertEquals(50, pagerState.placeholdersBefore)
+            assertEquals(50, pagerState.placeholdersAfter)
+
+            pagerState.insert(
+                loadId = 0,
+                loadType = PREPEND,
+                page =
+                    Page(
+                        data = listOf(),
+                        prevKey = -2,
+                        nextKey = 0,
+                        itemsBefore = 25,
+                        itemsAfter = COUNT_UNDEFINED
+                    )
+            )
+            pagerState.insert(
+                loadId = 0,
+                loadType = APPEND,
+                page =
+                    Page(
+                        data = listOf(),
+                        prevKey = 0,
+                        nextKey = 2,
+                        itemsBefore = COUNT_UNDEFINED,
+                        itemsAfter = 25
+                    )
             )
 
-        // Hint in placeholders after, fetcher state == storage state.
-        assertThat(state.currentPagingState(storage.accessHintForPresenterIndex(9)))
-            .isEqualTo(
-                PagingState(
-                    pages = pages,
-                    anchorPosition = 9,
-                    config = config,
-                    leadingPlaceholderCount = 2
-                )
+            assertEquals(25, pagerState.placeholdersBefore)
+            assertEquals(25, pagerState.placeholdersAfter)
+
+            // Should automatically decrement remaining placeholders when counted.
+            pagerState.insert(
+                loadId = 0,
+                loadType = PREPEND,
+                page =
+                    Page(
+                        data = listOf(0),
+                        prevKey = -3,
+                        nextKey = 0,
+                        itemsBefore = COUNT_UNDEFINED,
+                        itemsAfter = COUNT_UNDEFINED
+                    )
+            )
+            pagerState.insert(
+                loadId = 0,
+                loadType = APPEND,
+                page =
+                    Page(
+                        data = listOf(0),
+                        prevKey = 0,
+                        nextKey = 3,
+                        itemsBefore = COUNT_UNDEFINED,
+                        itemsAfter = COUNT_UNDEFINED
+                    )
             )
 
-        // Hint in loaded items, fetcher state has an extra prepended page.
-        assertThat(
-            state.currentPagingState(storageMissingPrepend.accessHintForPresenterIndex(4))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 4,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
+            assertEquals(24, pagerState.placeholdersBefore)
+            assertEquals(24, pagerState.placeholdersAfter)
 
-        // Hint in placeholders before, fetcher state has an extra prepended page.
-        assertThat(
-            state.currentPagingState(storageMissingPrepend.accessHintForPresenterIndex(0))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 0,
-                config = config,
-                leadingPlaceholderCount = 2
+            pagerState.drop(
+                event =
+                    PageEvent.Drop(
+                        loadType = PREPEND,
+                        minPageOffset = -2,
+                        maxPageOffset = -2,
+                        placeholdersRemaining = 100
+                    )
             )
-        )
+            pagerState.drop(
+                event =
+                    PageEvent.Drop(
+                        loadType = APPEND,
+                        minPageOffset = 2,
+                        maxPageOffset = 2,
+                        placeholdersRemaining = 100
+                    )
+            )
 
-        // Hint in placeholders after, fetcher state has an extra prepended page.
-        assertThat(
-            state.currentPagingState(storageMissingPrepend.accessHintForPresenterIndex(9))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 9,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in loaded items, fetcher state has an extra appended page.
-        assertThat(
-            state.currentPagingState(storageMissingAppend.accessHintForPresenterIndex(4))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 4,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in placeholders before, fetcher state has an extra appended page.
-        assertThat(
-            state.currentPagingState(storageMissingAppend.accessHintForPresenterIndex(0))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 0,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in placeholders after, fetcher state has an extra prepended page.
-        assertThat(
-            state.currentPagingState(storageMissingAppend.accessHintForPresenterIndex(9))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 9,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in loaded items, storage state has an extra prepended page.
-        assertThat(
-            state.currentPagingState(storageExtraPrepend.accessHintForPresenterIndex(4))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 4,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in placeholders before, storage state has an extra prepended page.
-        assertThat(
-            state.currentPagingState(storageExtraPrepend.accessHintForPresenterIndex(0))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 0,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in placeholders after, storage state has an extra prepended page.
-        assertThat(
-            state.currentPagingState(storageExtraPrepend.accessHintForPresenterIndex(9))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 9,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in loaded items, storage state has an extra appended page.
-        assertThat(
-            state.currentPagingState(storageExtraAppend.accessHintForPresenterIndex(4))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 4,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in placeholders before, storage state has an extra appended page.
-        assertThat(
-            state.currentPagingState(storageExtraAppend.accessHintForPresenterIndex(0))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 0,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-
-        // Hint in placeholders after, fetcher state has an extra appended page.
-        assertThat(
-            state.currentPagingState(storageExtraAppend.accessHintForPresenterIndex(9))
-        ).isEqualTo(
-            PagingState(
-                pages = pages,
-                anchorPosition = 9,
-                config = config,
-                leadingPlaceholderCount = 2
-            )
-        )
-    }
+            assertEquals(100, pagerState.placeholdersBefore)
+            assertEquals(100, pagerState.placeholdersAfter)
+        }
 
     @Test
-    fun loadStates() = testScope.runTest {
-        val config = PagingConfig(pageSize = 2)
-        val state = PageFetcherSnapshotState.Holder<Int, Int>(config = config).withLock { it }
+    fun currentPagingState() =
+        testScope.runTest {
+            val config = PagingConfig(pageSize = 2)
+            val state = PageFetcherSnapshotState.Holder<Int, Int>(config = config).withLock { it }
 
-        // assert initial state
-        assertThat(state.sourceLoadStates.snapshot()).isEqualTo(loadStates(refresh = Loading))
+            val pages =
+                listOf(
+                    Page(data = listOf(2, 3), prevKey = 1, nextKey = 4),
+                    Page(
+                        data = listOf(4, 5),
+                        prevKey = 3,
+                        nextKey = 6,
+                        itemsBefore = 4,
+                        itemsAfter = 4
+                    ),
+                    Page(data = listOf(6, 7), prevKey = 5, nextKey = 8)
+                )
 
-        // assert APPEND state is updated
-        state.sourceLoadStates.set(APPEND, NotLoading.Complete)
-        assertThat(state.sourceLoadStates.snapshot()).isEqualTo(
-            loadStates(
-                refresh = Loading,
-                append = NotLoading.Complete
-            )
-        )
+            state.insert(0, REFRESH, pages[1])
+            state.insert(0, PREPEND, pages[0])
+            state.insert(0, APPEND, pages[2])
 
-        // assert REFRESH state is incrementally updated
-        state.sourceLoadStates.set(REFRESH, NotLoading.Incomplete)
-        assertThat(state.sourceLoadStates.snapshot()).isEqualTo(
-            loadStates(
-                refresh = NotLoading.Incomplete,
-                append = NotLoading.Complete,
-            )
-        )
-        assertThat(state.sourceLoadStates.get(APPEND)).isEqualTo(NotLoading.Complete)
-    }
+            val storage = pages.toPageStore(1)
+            val storageMissingPrepend = pages.drop(1).toPageStore(0)
+            val storageMissingAppend = pages.dropLast(1).toPageStore(1)
+            val storageExtraPrepend =
+                pages
+                    .toMutableList()
+                    .apply { add(0, Page(data = listOf(0, 1), prevKey = null, nextKey = 2)) }
+                    .toPageStore(2)
+            val storageExtraAppend =
+                pages
+                    .toMutableList()
+                    .apply { add(Page(data = listOf(8, 9), prevKey = 7, nextKey = null)) }
+                    .toPageStore(1)
+
+            // Hint in loaded items, fetcher state == storage state.
+            assertThat(state.currentPagingState(storage.accessHintForPresenterIndex(4)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 4,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders before, fetcher state == storage state.
+            assertThat(state.currentPagingState(storage.accessHintForPresenterIndex(0)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 0,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders after, fetcher state == storage state.
+            assertThat(state.currentPagingState(storage.accessHintForPresenterIndex(9)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 9,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in loaded items, fetcher state has an extra prepended page.
+            assertThat(
+                    state.currentPagingState(storageMissingPrepend.accessHintForPresenterIndex(4))
+                )
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 4,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders before, fetcher state has an extra prepended page.
+            assertThat(
+                    state.currentPagingState(storageMissingPrepend.accessHintForPresenterIndex(0))
+                )
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 0,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders after, fetcher state has an extra prepended page.
+            assertThat(
+                    state.currentPagingState(storageMissingPrepend.accessHintForPresenterIndex(9))
+                )
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 9,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in loaded items, fetcher state has an extra appended page.
+            assertThat(
+                    state.currentPagingState(storageMissingAppend.accessHintForPresenterIndex(4))
+                )
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 4,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders before, fetcher state has an extra appended page.
+            assertThat(
+                    state.currentPagingState(storageMissingAppend.accessHintForPresenterIndex(0))
+                )
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 0,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders after, fetcher state has an extra prepended page.
+            assertThat(
+                    state.currentPagingState(storageMissingAppend.accessHintForPresenterIndex(9))
+                )
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 9,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in loaded items, storage state has an extra prepended page.
+            assertThat(state.currentPagingState(storageExtraPrepend.accessHintForPresenterIndex(4)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 4,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders before, storage state has an extra prepended page.
+            assertThat(state.currentPagingState(storageExtraPrepend.accessHintForPresenterIndex(0)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 0,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders after, storage state has an extra prepended page.
+            assertThat(state.currentPagingState(storageExtraPrepend.accessHintForPresenterIndex(9)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 9,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in loaded items, storage state has an extra appended page.
+            assertThat(state.currentPagingState(storageExtraAppend.accessHintForPresenterIndex(4)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 4,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders before, storage state has an extra appended page.
+            assertThat(state.currentPagingState(storageExtraAppend.accessHintForPresenterIndex(0)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 0,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+
+            // Hint in placeholders after, fetcher state has an extra appended page.
+            assertThat(state.currentPagingState(storageExtraAppend.accessHintForPresenterIndex(9)))
+                .isEqualTo(
+                    PagingState(
+                        pages = pages,
+                        anchorPosition = 9,
+                        config = config,
+                        leadingPlaceholderCount = 2
+                    )
+                )
+        }
+
+    @Test
+    fun loadStates() =
+        testScope.runTest {
+            val config = PagingConfig(pageSize = 2)
+            val state = PageFetcherSnapshotState.Holder<Int, Int>(config = config).withLock { it }
+
+            // assert initial state
+            assertThat(state.sourceLoadStates.snapshot()).isEqualTo(loadStates(refresh = Loading))
+
+            // assert APPEND state is updated
+            state.sourceLoadStates.set(APPEND, NotLoading.Complete)
+            assertThat(state.sourceLoadStates.snapshot())
+                .isEqualTo(loadStates(refresh = Loading, append = NotLoading.Complete))
+
+            // assert REFRESH state is incrementally updated
+            state.sourceLoadStates.set(REFRESH, NotLoading.Incomplete)
+            assertThat(state.sourceLoadStates.snapshot())
+                .isEqualTo(
+                    loadStates(
+                        refresh = NotLoading.Incomplete,
+                        append = NotLoading.Complete,
+                    )
+                )
+            assertThat(state.sourceLoadStates.get(APPEND)).isEqualTo(NotLoading.Complete)
+        }
 
     private fun List<Page<Int, Int>>.toPageStore(initialPageIndex: Int): PageStore<Int> {
         val pageSize = 2
         val initialPage = get(initialPageIndex)
-        val storage = PageStore(
-            insertEvent = localRefresh(
-                pages = listOf(TransformablePage(initialPage.data)),
-                placeholdersBefore = initialPage.itemsBefore,
-                placeholdersAfter = initialPage.itemsAfter,
+        val storage =
+            PageStore(
+                insertEvent =
+                    localRefresh(
+                        pages = listOf(TransformablePage(initialPage.data)),
+                        placeholdersBefore = initialPage.itemsBefore,
+                        placeholdersAfter = initialPage.itemsAfter,
+                    )
             )
-        )
 
         for (i in 0 until initialPageIndex) {
             val offset = i + 1
             storage.processEvent(
                 localPrepend(
-                    pages = listOf(
-                        TransformablePage(originalPageOffset = -offset, data = get(i).data)
-                    ),
+                    pages =
+                        listOf(TransformablePage(originalPageOffset = -offset, data = get(i).data)),
                     placeholdersBefore = initialPage.itemsBefore - (offset * pageSize),
                 )
             )
@@ -510,9 +505,8 @@
             val offset = i - initialPageIndex
             storage.processEvent(
                 localAppend(
-                    pages = listOf(
-                        TransformablePage(originalPageOffset = offset, data = get(i).data)
-                    ),
+                    pages =
+                        listOf(TransformablePage(originalPageOffset = offset, data = get(i).data)),
                     placeholdersAfter = initialPage.itemsAfter - (offset * pageSize),
                 )
             )
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageStoreTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageStoreTest.kt
index 76207ce..2c0ffce 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageStoreTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PageStoreTest.kt
@@ -30,45 +30,46 @@
     leadingNullCount: Int = COUNT_UNDEFINED,
     trailingNullCount: Int = COUNT_UNDEFINED,
     indexOfInitialPage: Int = 0
-) = PageStore(
-    localRefresh(
-        pages = pages.mapIndexed { index, list ->
-            TransformablePage(
-                originalPageOffset = index - indexOfInitialPage,
-                data = list
-            )
-        },
-        placeholdersBefore = leadingNullCount,
-        placeholdersAfter = trailingNullCount,
+) =
+    PageStore(
+        localRefresh(
+            pages =
+                pages.mapIndexed { index, list ->
+                    TransformablePage(originalPageOffset = index - indexOfInitialPage, data = list)
+                },
+            placeholdersBefore = leadingNullCount,
+            placeholdersAfter = trailingNullCount,
+        )
     )
-)
 
 internal fun <T : Any> PageStore<T>.insertPage(
     isPrepend: Boolean,
     page: List<T>,
     placeholdersRemaining: Int,
-) = processEvent(
-    adjacentInsertEvent(
-        isPrepend = isPrepend,
-        page = page,
-        originalPageOffset = 0,
-        placeholdersRemaining = placeholdersRemaining
+) =
+    processEvent(
+        adjacentInsertEvent(
+            isPrepend = isPrepend,
+            page = page,
+            originalPageOffset = 0,
+            placeholdersRemaining = placeholdersRemaining
+        )
     )
-)
 
 internal fun <T : Any> PageStore<T>.dropPages(
     isPrepend: Boolean,
     minPageOffset: Int,
     maxPageOffset: Int,
     placeholdersRemaining: Int,
-) = processEvent(
-    PageEvent.Drop(
-        loadType = if (isPrepend) PREPEND else APPEND,
-        minPageOffset = minPageOffset,
-        maxPageOffset = maxPageOffset,
-        placeholdersRemaining = placeholdersRemaining
+) =
+    processEvent(
+        PageEvent.Drop(
+            loadType = if (isPrepend) PREPEND else APPEND,
+            minPageOffset = minPageOffset,
+            maxPageOffset = maxPageOffset,
+            placeholdersRemaining = placeholdersRemaining
+        )
     )
-)
 
 internal fun <T : Any> PageStore<T>.asList() = List(size) { get(it) }
 
@@ -80,28 +81,30 @@
         newItems: Int,
         newNulls: Int = COUNT_UNDEFINED,
     ) {
-        val data = PageStore(
-            pages = mutableListOf(List(initialItems) { 'a' + it }),
-            leadingNullCount = 0,
-            trailingNullCount = initialNulls,
-            indexOfInitialPage = 0
-        )
+        val data =
+            PageStore(
+                pages = mutableListOf(List(initialItems) { 'a' + it }),
+                leadingNullCount = 0,
+                trailingNullCount = initialNulls,
+                indexOfInitialPage = 0
+            )
 
         val inserted = List(newItems) { 'a' + it + initialItems }
-        val event = data.insertPage(
-            isPrepend = false,
-            page = inserted,
-            placeholdersRemaining = newNulls,
-        )
+        val event =
+            data.insertPage(
+                isPrepend = false,
+                page = inserted,
+                placeholdersRemaining = newNulls,
+            )
 
         // Assert list contents first (since this shows more obvious errors)...
-        val expectedNulls = if (newNulls != COUNT_UNDEFINED) {
-            newNulls
-        } else {
-            maxOf(initialNulls - newItems, 0)
-        }
-        val expectedData =
-            List(initialItems + newItems) { 'a' + it } + List(expectedNulls) { null }
+        val expectedNulls =
+            if (newNulls != COUNT_UNDEFINED) {
+                newNulls
+            } else {
+                maxOf(initialNulls - newItems, 0)
+            }
+        val expectedData = List(initialItems + newItems) { 'a' + it } + List(expectedNulls) { null }
         assertEquals(expectedData, data.asList())
 
         // Then assert we got the right PagingDataEvent
@@ -122,27 +125,30 @@
         newItems: Int,
         newNulls: Int,
     ) {
-        val data = PageStore(
-            pages = mutableListOf(List(initialItems) { 'z' + it - initialItems - 1 }),
-            leadingNullCount = initialNulls,
-            trailingNullCount = 0,
-            indexOfInitialPage = 0
-        )
+        val data =
+            PageStore(
+                pages = mutableListOf(List(initialItems) { 'z' + it - initialItems - 1 }),
+                leadingNullCount = initialNulls,
+                trailingNullCount = 0,
+                indexOfInitialPage = 0
+            )
 
         val endItemCount = newItems + initialItems
         val inserted = List(newItems) { 'z' + it - endItemCount - 1 }
-        val event = data.insertPage(
-            isPrepend = true,
-            page = inserted,
-            placeholdersRemaining = newNulls,
-        )
+        val event =
+            data.insertPage(
+                isPrepend = true,
+                page = inserted,
+                placeholdersRemaining = newNulls,
+            )
 
         // Assert list contents first (since this shows more obvious errors)...
-        val expectedNulls = if (newNulls != COUNT_UNDEFINED) {
-            newNulls
-        } else {
-            maxOf(initialNulls - newItems, 0)
-        }
+        val expectedNulls =
+            if (newNulls != COUNT_UNDEFINED) {
+                newNulls
+            } else {
+                maxOf(initialNulls - newItems, 0)
+            }
         val expectedData =
             List(expectedNulls) { null } + List(endItemCount) { 'z' + it - endItemCount - 1 }
         assertEquals(expectedData, data.asList())
@@ -169,68 +175,76 @@
     }
 
     @Test
-    fun insertPageEmpty() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 0,
-        newNulls = 0,
-    )
+    fun insertPageEmpty() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 0,
+            newNulls = 0,
+        )
 
     @Test
-    fun insertPageSimple() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 2,
-        newNulls = 0,
-    )
+    fun insertPageSimple() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 2,
+            newNulls = 0,
+        )
 
     @Test
-    fun insertPageSimplePlaceholders() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 4,
-        newItems = 2,
-        newNulls = 2,
-    )
+    fun insertPageSimplePlaceholders() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 4,
+            newItems = 2,
+            newNulls = 2,
+        )
 
     @Test
-    fun insertPageInitPlaceholders() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 2,
-        newNulls = 3,
-    )
+    fun insertPageInitPlaceholders() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 2,
+            newNulls = 3,
+        )
 
     @Test
-    fun insertPageInitJustPlaceholders() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 0,
-        newNulls = 3,
-    )
+    fun insertPageInitJustPlaceholders() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 0,
+            newNulls = 3,
+        )
 
     @Test
-    fun insertPageInsertNulls() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 3,
-        newItems = 2,
-        newNulls = 2,
-    )
+    fun insertPageInsertNulls() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 3,
+            newItems = 2,
+            newNulls = 2,
+        )
 
     @Test
-    fun insertPageRemoveNulls() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 7,
-        newItems = 2,
-        newNulls = 0,
-    )
+    fun insertPageRemoveNulls() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 7,
+            newItems = 2,
+            newNulls = 0,
+        )
 
     @Test
-    fun insertPageReduceNulls() = verifyPrependAppend(
-        initialItems = 2,
-        initialNulls = 10,
-        newItems = 3,
-        newNulls = 4,
-    )
+    fun insertPageReduceNulls() =
+        verifyPrependAppend(
+            initialItems = 2,
+            initialNulls = 10,
+            newItems = 3,
+            newNulls = 4,
+        )
 
     private fun verifyDropEnd(
         initialPages: List<List<Char>>,
@@ -243,21 +257,23 @@
             fail("require at least 2 pages")
         }
 
-        val data = PageStore(
-            pages = initialPages.toMutableList(),
-            leadingNullCount = 0,
-            trailingNullCount = initialNulls,
-            indexOfInitialPage = 0
-        )
+        val data =
+            PageStore(
+                pages = initialPages.toMutableList(),
+                leadingNullCount = 0,
+                trailingNullCount = initialNulls,
+                indexOfInitialPage = 0
+            )
 
         assertEquals(initialPages.flatten() + List<Char?>(initialNulls) { null }, data.asList())
 
-        val event = data.dropPages(
-            isPrepend = false,
-            minPageOffset = initialPages.lastIndex - (pagesToDrop - 1),
-            maxPageOffset = initialPages.lastIndex,
-            placeholdersRemaining = newNulls,
-        )
+        val event =
+            data.dropPages(
+                isPrepend = false,
+                minPageOffset = initialPages.lastIndex - (pagesToDrop - 1),
+                maxPageOffset = initialPages.lastIndex,
+                placeholdersRemaining = newNulls,
+            )
 
         // assert PagingDataEvent and final list state
         assertEquals(
@@ -284,24 +300,26 @@
             fail("require at least 2 pages")
         }
 
-        val data = PageStore(
-            pages = initialPages.reversed().toMutableList(),
-            leadingNullCount = initialNulls,
-            trailingNullCount = 0,
-            indexOfInitialPage = 0
-        )
+        val data =
+            PageStore(
+                pages = initialPages.reversed().toMutableList(),
+                leadingNullCount = initialNulls,
+                trailingNullCount = 0,
+                indexOfInitialPage = 0
+            )
 
         assertEquals(
             List<Char?>(initialNulls) { null } + initialPages.reversed().flatten(),
             data.asList()
         )
 
-        val event = data.dropPages(
-            isPrepend = true,
-            minPageOffset = 0,
-            maxPageOffset = pagesToDrop - 1,
-            placeholdersRemaining = newNulls,
-        )
+        val event =
+            data.dropPages(
+                isPrepend = true,
+                minPageOffset = 0,
+                maxPageOffset = pagesToDrop - 1,
+                placeholdersRemaining = newNulls,
+            )
 
         // assert PagingDataEvent and final list state
         assertEquals(
@@ -328,115 +346,98 @@
     }
 
     @Test
-    fun dropPageMulti() = verifyDrop(
-        initialPages = listOf(
-            listOf('a', 'b'),
-            listOf('c', 'd'),
-            listOf('e')
-        ),
-        initialNulls = 0,
-        newNulls = 0,
-        pagesToDrop = 2,
-    )
+    fun dropPageMulti() =
+        verifyDrop(
+            initialPages = listOf(listOf('a', 'b'), listOf('c', 'd'), listOf('e')),
+            initialNulls = 0,
+            newNulls = 0,
+            pagesToDrop = 2,
+        )
 
     @Test
-    fun dropPageReturnNulls() = verifyDrop(
-        initialPages = listOf(
-            listOf('a', 'b'),
-            listOf('c', 'd'),
-            listOf('e')
-        ),
-        initialNulls = 1,
-        newNulls = 4,
-        pagesToDrop = 2,
-    )
+    fun dropPageReturnNulls() =
+        verifyDrop(
+            initialPages = listOf(listOf('a', 'b'), listOf('c', 'd'), listOf('e')),
+            initialNulls = 1,
+            newNulls = 4,
+            pagesToDrop = 2,
+        )
 
     @Test
-    fun dropPageFromNoNullsToHavingNulls() = verifyDrop(
-        initialPages = listOf(
-            listOf('a', 'b'),
-            listOf('c', 'd'),
-            listOf('e')
-        ),
-        initialNulls = 0,
-        newNulls = 3,
-        pagesToDrop = 2,
-    )
+    fun dropPageFromNoNullsToHavingNulls() =
+        verifyDrop(
+            initialPages = listOf(listOf('a', 'b'), listOf('c', 'd'), listOf('e')),
+            initialNulls = 0,
+            newNulls = 3,
+            pagesToDrop = 2,
+        )
 
     @Test
-    fun dropPageChangeRemovePlaceholders() = verifyDrop(
-        initialPages = listOf(
-            listOf('a', 'b'),
-            listOf('c', 'd'),
-            listOf('e')
-        ),
-        initialNulls = 2,
-        newNulls = 4,
-        pagesToDrop = 2,
-    )
+    fun dropPageChangeRemovePlaceholders() =
+        verifyDrop(
+            initialPages = listOf(listOf('a', 'b'), listOf('c', 'd'), listOf('e')),
+            initialNulls = 2,
+            newNulls = 4,
+            pagesToDrop = 2,
+        )
 
     @Test
-    fun dropPageChangeRemoveItems() = verifyDrop(
-        initialPages = listOf(
-            listOf('a', 'b'),
-            listOf('c', 'd'),
-            listOf('e')
-        ),
-        initialNulls = 0,
-        newNulls = 1,
-        pagesToDrop = 2,
-    )
+    fun dropPageChangeRemoveItems() =
+        verifyDrop(
+            initialPages = listOf(listOf('a', 'b'), listOf('c', 'd'), listOf('e')),
+            initialNulls = 0,
+            newNulls = 1,
+            pagesToDrop = 2,
+        )
 
     @Test
-    fun dropPageChangeDoubleRemove() = verifyDrop(
-        initialPages = listOf(
-            listOf('a', 'b'),
-            listOf('c', 'd'),
-            listOf('e')
-        ),
-        initialNulls = 3,
-        newNulls = 1,
-        pagesToDrop = 2,
-    )
+    fun dropPageChangeDoubleRemove() =
+        verifyDrop(
+            initialPages = listOf(listOf('a', 'b'), listOf('c', 'd'), listOf('e')),
+            initialNulls = 3,
+            newNulls = 1,
+            pagesToDrop = 2,
+        )
 
     @Test
     fun getOutOfBounds() {
-        val storage = PageStore(
-            pages = mutableListOf(listOf('a')),
-            leadingNullCount = 1,
-            trailingNullCount = 1,
-            indexOfInitialPage = 0
-        )
-        assertFailsWith<IndexOutOfBoundsException> {
-            storage.get(-1)
-        }
-        assertFailsWith<IndexOutOfBoundsException> {
-            storage.get(4)
-        }
+        val storage =
+            PageStore(
+                pages = mutableListOf(listOf('a')),
+                leadingNullCount = 1,
+                trailingNullCount = 1,
+                indexOfInitialPage = 0
+            )
+        assertFailsWith<IndexOutOfBoundsException> { storage.get(-1) }
+        assertFailsWith<IndexOutOfBoundsException> { storage.get(4) }
     }
 
     // TODO storageCount test
 
     @Test
     fun snapshot_uncounted() {
-        val pageStore = PageStore(
-            insertEvent = localRefresh(
-                pages = listOf(TransformablePage(listOf('a'))),
+        val pageStore =
+            PageStore(
+                insertEvent =
+                    localRefresh(
+                        pages = listOf(TransformablePage(listOf('a'))),
+                    )
             )
-        )
 
         assertEquals<List<Char?>>(listOf('a'), pageStore.snapshot())
     }
 
     @Test
     fun snapshot_counted() {
-        val pageStore = PageStore(
-            insertEvent = localRefresh(
-                pages = listOf(TransformablePage(listOf('a'))),
-                placeholdersBefore = 1,
-                placeholdersAfter = 3,
+        val pageStore =
+            PageStore(
+                insertEvent =
+                    localRefresh(
+                        pages = listOf(TransformablePage(listOf('a'))),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 3,
+                    )
             )
-        )
 
         assertEquals(listOf(null, 'a', null, null, null), pageStore.snapshot())
     }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingConfigTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingConfigTest.kt
index d5ad204..ddbd749 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingConfigTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingConfigTest.kt
@@ -35,22 +35,14 @@
     @Test
     fun requirePlaceholdersOrPrefetch() {
         assertFailsWith<IllegalArgumentException> {
-            PagingConfig(
-                pageSize = 10,
-                enablePlaceholders = false,
-                prefetchDistance = 0
-            )
+            PagingConfig(pageSize = 10, enablePlaceholders = false, prefetchDistance = 0)
         }
     }
 
     @Test
     fun prefetchWindowMustFitInMaxSize() {
         assertFailsWith<IllegalArgumentException> {
-            PagingConfig(
-                pageSize = 3,
-                prefetchDistance = 4,
-                maxSize = 10
-            )
+            PagingConfig(pageSize = 3, prefetchDistance = 4, maxSize = 10)
         }
     }
 }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingDataPresenterTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingDataPresenterTest.kt
index 96166ac..d20f8c9 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingDataPresenterTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingDataPresenterTest.kt
@@ -52,1407 +52,1423 @@
 import kotlinx.coroutines.test.runTest
 
 /**
- * run some tests with cached-in to ensure caching does not change behavior in the single
- * consumer cases.
+ * run some tests with cached-in to ensure caching does not change behavior in the single consumer
+ * cases.
  */
 @OptIn(ExperimentalCoroutinesApi::class, ExperimentalPagingApi::class)
 class PagingDataPresenterTest {
     private val testScope = TestScope(UnconfinedTestDispatcher())
 
     @Test
-    fun collectFrom_static() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val receiver = UiReceiverFake()
+    fun collectFrom_static() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val receiver = UiReceiverFake()
 
-        val job1 = launch {
-            presenter.collectFrom(infinitelySuspendingPagingData(receiver))
+            val job1 = launch { presenter.collectFrom(infinitelySuspendingPagingData(receiver)) }
+            advanceUntilIdle()
+            job1.cancel()
+
+            val job2 = launch { presenter.collectFrom(PagingData.empty()) }
+            advanceUntilIdle()
+            job2.cancel()
+
+            // Static replacement should also replace the UiReceiver from previous generation.
+            presenter.retry()
+            presenter.refresh()
+            advanceUntilIdle()
+
+            assertFalse { receiver.retryEvents.isNotEmpty() }
+            assertFalse { receiver.refreshEvents.isNotEmpty() }
         }
-        advanceUntilIdle()
-        job1.cancel()
-
-        val job2 = launch {
-            presenter.collectFrom(PagingData.empty())
-        }
-        advanceUntilIdle()
-        job2.cancel()
-
-        // Static replacement should also replace the UiReceiver from previous generation.
-        presenter.retry()
-        presenter.refresh()
-        advanceUntilIdle()
-
-        assertFalse { receiver.retryEvents.isNotEmpty() }
-        assertFalse { receiver.refreshEvents.isNotEmpty() }
-    }
 
     @Test
-    fun collectFrom_twice() = testScope.runTest {
-        val presenter = SimplePresenter()
+    fun collectFrom_twice() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
 
-        launch { presenter.collectFrom(infinitelySuspendingPagingData()) }
-            .cancel()
-        launch { presenter.collectFrom(infinitelySuspendingPagingData()) }
-            .cancel()
-    }
+            launch { presenter.collectFrom(infinitelySuspendingPagingData()) }.cancel()
+            launch { presenter.collectFrom(infinitelySuspendingPagingData()) }.cancel()
+        }
 
     @Test
-    fun collectFrom_twiceConcurrently() = testScope.runTest {
-        val presenter = SimplePresenter()
+    fun collectFrom_twiceConcurrently() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
 
-        val job1 = launch {
-            presenter.collectFrom(infinitelySuspendingPagingData())
+            val job1 = launch { presenter.collectFrom(infinitelySuspendingPagingData()) }
+
+            // Ensure job1 is running.
+            assertTrue { job1.isActive }
+
+            val job2 = launch { presenter.collectFrom(infinitelySuspendingPagingData()) }
+
+            // job2 collection should complete job1 but not cancel.
+            assertFalse { job1.isCancelled }
+            assertTrue { job1.isCompleted }
+            job2.cancel()
         }
 
-        // Ensure job1 is running.
-        assertTrue { job1.isActive }
-
-        val job2 = launch {
-            presenter.collectFrom(infinitelySuspendingPagingData())
-        }
-
-        // job2 collection should complete job1 but not cancel.
-        assertFalse { job1.isCancelled }
-        assertTrue { job1.isCompleted }
-        job2.cancel()
-    }
-
     @Test
-    fun retry() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val receiver = UiReceiverFake()
+    fun retry() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val receiver = UiReceiverFake()
 
-        val job = launch {
-            presenter.collectFrom(infinitelySuspendingPagingData(receiver))
+            val job = launch { presenter.collectFrom(infinitelySuspendingPagingData(receiver)) }
+
+            presenter.retry()
+            assertEquals(1, receiver.retryEvents.size)
+
+            job.cancel()
         }
 
-        presenter.retry()
-        assertEquals(1, receiver.retryEvents.size)
-
-        job.cancel()
-    }
-
     @Test
-    fun refresh() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val receiver = UiReceiverFake()
+    fun refresh() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val receiver = UiReceiverFake()
 
-        val job = launch {
-            presenter.collectFrom(infinitelySuspendingPagingData(receiver))
+            val job = launch { presenter.collectFrom(infinitelySuspendingPagingData(receiver)) }
+
+            presenter.refresh()
+
+            assertEquals(1, receiver.refreshEvents.size)
+
+            job.cancel()
         }
 
-        presenter.refresh()
-
-        assertEquals(1, receiver.refreshEvents.size)
-
-        job.cancel()
-    }
-
     @Test
-    fun uiReceiverSetImmediately() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val receiver = UiReceiverFake()
-        val pagingData1 = infinitelySuspendingPagingData(uiReceiver = receiver)
+    fun uiReceiverSetImmediately() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val receiver = UiReceiverFake()
+            val pagingData1 = infinitelySuspendingPagingData(uiReceiver = receiver)
 
-        val job1 = launch {
-            presenter.collectFrom(pagingData1)
+            val job1 = launch { presenter.collectFrom(pagingData1) }
+            assertTrue(job1.isActive) // ensure job started
+
+            assertThat(receiver.refreshEvents).hasSize(0)
+
+            presenter.refresh()
+            // double check that the pagingdata's receiver was registered and had received refresh
+            // call
+            // before any PageEvent is collected/presented
+            assertThat(receiver.refreshEvents).hasSize(1)
+
+            job1.cancel()
         }
-        assertTrue(job1.isActive) // ensure job started
-
-        assertThat(receiver.refreshEvents).hasSize(0)
-
-        presenter.refresh()
-        // double check that the pagingdata's receiver was registered and had received refresh call
-        // before any PageEvent is collected/presented
-        assertThat(receiver.refreshEvents).hasSize(1)
-
-        job1.cancel()
-    }
 
     @Test
-    fun hintReceiverSetAfterNewListPresented() = testScope.runTest {
-        val presenter = SimplePresenter()
+    fun hintReceiverSetAfterNewListPresented() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
 
-        // first generation, load something so next gen can access index to trigger hint
-        val hintReceiver1 = HintReceiverFake()
-        val flow = flowOf(
-            localRefresh(pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4)))),
-        )
+            // first generation, load something so next gen can access index to trigger hint
+            val hintReceiver1 = HintReceiverFake()
+            val flow =
+                flowOf(
+                    localRefresh(pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4)))),
+                )
 
-        val job1 = launch {
-            presenter.collectFrom(PagingData(flow, dummyUiReceiver, hintReceiver1))
-        }
+            val job1 = launch {
+                presenter.collectFrom(PagingData(flow, dummyUiReceiver, hintReceiver1))
+            }
 
-        // access any loaded item to make sure hint is sent
-        presenter[3]
-        assertThat(hintReceiver1.hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 3,
-                presentedItemsBefore = 3,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
+            // access any loaded item to make sure hint is sent
+            presenter[3]
+            assertThat(hintReceiver1.hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 3,
+                        presentedItemsBefore = 3,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
+
+            // trigger second generation
+            presenter.refresh()
+
+            // second generation
+            val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
+            val hintReceiver2 = HintReceiverFake()
+            val job2 = launch {
+                presenter.collectFrom(
+                    PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver2)
+                )
+            }
+
+            // we send the initial load state. this should NOT cause second gen hint receiver
+            // to register
+            pageEventCh.trySend(localLoadStateUpdate(refreshLocal = Loading))
+            assertThat(presenter.nonNullLoadStateFlow.first())
+                .isEqualTo(localLoadStatesOf(refreshLocal = Loading))
+
+            // ensure both hint receivers are idle before sending a hint
+            assertThat(hintReceiver1.hints).isEmpty()
+            assertThat(hintReceiver2.hints).isEmpty()
+
+            // try sending a hint, should be sent to first receiver
+            presenter[4]
+            assertThat(hintReceiver1.hints).hasSize(1)
+            assertThat(hintReceiver2.hints).isEmpty()
+
+            // now we send actual refresh load and make sure its presented
+            pageEventCh.trySend(
+                localRefresh(
+                    pages = listOf(TransformablePage(listOf(20, 21, 22, 23, 24))),
+                    placeholdersBefore = 20,
+                    placeholdersAfter = 75
+                ),
             )
-        )
+            assertThat(presenter.snapshot().items).containsExactlyElementsIn(20 until 25)
 
-        // trigger second generation
-        presenter.refresh()
+            // access any loaded item to make sure hint is sent to proper receiver
+            presenter[3]
+            // second receiver was registered and received the initial viewport hint
+            assertThat(hintReceiver1.hints).isEmpty()
+            assertThat(hintReceiver2.hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = -17,
+                        presentedItemsBefore = -17,
+                        presentedItemsAfter = 21,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
 
-        // second generation
-        val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
-        val hintReceiver2 = HintReceiverFake()
-        val job2 = launch {
-            presenter.collectFrom(
-                PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver2)
-            )
+            job2.cancel()
+            job1.cancel()
         }
 
-        // we send the initial load state. this should NOT cause second gen hint receiver
-        // to register
-        pageEventCh.trySend(
-            localLoadStateUpdate(refreshLocal = Loading)
-        )
-        assertThat(presenter.nonNullLoadStateFlow.first()).isEqualTo(
-            localLoadStatesOf(refreshLocal = Loading)
-        )
-
-        // ensure both hint receivers are idle before sending a hint
-        assertThat(hintReceiver1.hints).isEmpty()
-        assertThat(hintReceiver2.hints).isEmpty()
-
-        // try sending a hint, should be sent to first receiver
-        presenter[4]
-        assertThat(hintReceiver1.hints).hasSize(1)
-        assertThat(hintReceiver2.hints).isEmpty()
-
-        // now we send actual refresh load and make sure its presented
-        pageEventCh.trySend(
-            localRefresh(
-                pages = listOf(TransformablePage(listOf(20, 21, 22, 23, 24))),
-                placeholdersBefore = 20,
-                placeholdersAfter = 75
-            ),
-        )
-        assertThat(presenter.snapshot().items).containsExactlyElementsIn(20 until 25)
-
-        // access any loaded item to make sure hint is sent to proper receiver
-        presenter[3]
-        // second receiver was registered and received the initial viewport hint
-        assertThat(hintReceiver1.hints).isEmpty()
-        assertThat(hintReceiver2.hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = -17,
-                presentedItemsBefore = -17,
-                presentedItemsAfter = 21,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
-            )
-        )
-
-        job2.cancel()
-        job1.cancel()
-    }
-
-    @Test
-    fun refreshOnLatestGenerationReceiver() = refreshOnLatestGenerationReceiver(false)
+    @Test fun refreshOnLatestGenerationReceiver() = refreshOnLatestGenerationReceiver(false)
 
     @Test
     fun refreshOnLatestGenerationReceiver_collectWithCachedIn() =
         refreshOnLatestGenerationReceiver(true)
 
     private fun refreshOnLatestGenerationReceiver(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn) { presenter, _,
-        uiReceivers, hintReceivers ->
-        // first gen
-        advanceUntilIdle()
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+        runTest(collectWithCachedIn) { presenter, _, uiReceivers, hintReceivers ->
+            // first gen
+            advanceUntilIdle()
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
 
-        // append a page so we can cache an anchorPosition of [8]
-        presenter[8]
-        advanceUntilIdle()
+            // append a page so we can cache an anchorPosition of [8]
+            presenter[8]
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
 
-        // trigger gen 2, the refresh signal should to sent to gen 1
-        presenter.refresh()
-        assertThat(uiReceivers[0].refreshEvents).hasSize(1)
-        assertThat(uiReceivers[1].refreshEvents).hasSize(0)
+            // trigger gen 2, the refresh signal should to sent to gen 1
+            presenter.refresh()
+            assertThat(uiReceivers[0].refreshEvents).hasSize(1)
+            assertThat(uiReceivers[1].refreshEvents).hasSize(0)
 
-        // trigger gen 3, refresh signal should be sent to gen 2
-        presenter.refresh()
-        assertThat(uiReceivers[0].refreshEvents).hasSize(1)
-        assertThat(uiReceivers[1].refreshEvents).hasSize(1)
-        advanceUntilIdle()
+            // trigger gen 3, refresh signal should be sent to gen 2
+            presenter.refresh()
+            assertThat(uiReceivers[0].refreshEvents).hasSize(1)
+            assertThat(uiReceivers[1].refreshEvents).hasSize(1)
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(8 until 17)
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(8 until 17)
 
-        // access any item to make sure gen 3 receiver is recipient of the hint
-        presenter[0]
-        assertThat(hintReceivers[2].hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 8,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
-            )
-        )
-    }
+            // access any item to make sure gen 3 receiver is recipient of the hint
+            presenter[0]
+            assertThat(hintReceivers[2].hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 8,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
+        }
 
-    @Test
-    fun retryOnLatestGenerationReceiver() = retryOnLatestGenerationReceiver(false)
+    @Test fun retryOnLatestGenerationReceiver() = retryOnLatestGenerationReceiver(false)
 
     @Test
     fun retryOnLatestGenerationReceiver_collectWithCachedIn() =
         retryOnLatestGenerationReceiver(true)
 
     private fun retryOnLatestGenerationReceiver(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn) { presenter, pagingSources,
-        uiReceivers, hintReceivers ->
+        runTest(collectWithCachedIn) { presenter, pagingSources, uiReceivers, hintReceivers ->
 
-        // first gen
-        advanceUntilIdle()
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            // first gen
+            advanceUntilIdle()
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
 
-        // append a page so we can cache an anchorPosition of [8]
-        presenter[8]
-        advanceUntilIdle()
+            // append a page so we can cache an anchorPosition of [8]
+            presenter[8]
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
 
-        // trigger gen 2, the refresh signal should be sent to gen 1
-        presenter.refresh()
-        assertThat(uiReceivers[0].refreshEvents).hasSize(1)
-        assertThat(uiReceivers[1].refreshEvents).hasSize(0)
+            // trigger gen 2, the refresh signal should be sent to gen 1
+            presenter.refresh()
+            assertThat(uiReceivers[0].refreshEvents).hasSize(1)
+            assertThat(uiReceivers[1].refreshEvents).hasSize(0)
 
-        // to recreate a real use-case of retry based on load error
-        pagingSources[1].errorNextLoad = true
-        advanceUntilIdle()
-        // presenter should still have first gen presenter
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
+            // to recreate a real use-case of retry based on load error
+            pagingSources[1].errorNextLoad = true
+            advanceUntilIdle()
+            // presenter should still have first gen presenter
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
 
-        // retry should be sent to gen 2 even though it wasn't presented
-        presenter.retry()
-        assertThat(uiReceivers[0].retryEvents).hasSize(0)
-        assertThat(uiReceivers[1].retryEvents).hasSize(1)
-        advanceUntilIdle()
+            // retry should be sent to gen 2 even though it wasn't presented
+            presenter.retry()
+            assertThat(uiReceivers[0].retryEvents).hasSize(0)
+            assertThat(uiReceivers[1].retryEvents).hasSize(1)
+            advanceUntilIdle()
 
-        // will retry with the correct cached hint
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(8 until 17)
+            // will retry with the correct cached hint
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(8 until 17)
 
-        // access any item to ensure gen 2 receiver was recipient of the initial hint
-        presenter[0]
-        assertThat(hintReceivers[1].hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 0,
-                presentedItemsBefore = 0,
-                presentedItemsAfter = 8,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
-            )
-        )
-    }
-
-    @Test
-    fun refreshAfterStaticList() = testScope.runTest {
-        val presenter = SimplePresenter()
-
-        val pagingData1 = PagingData.from(listOf(1, 2, 3))
-        val job1 = launch { presenter.collectFrom(pagingData1) }
-        assertTrue(job1.isCompleted)
-        assertThat(presenter.snapshot()).containsAtLeastElementsIn(listOf(1, 2, 3))
-
-        val uiReceiver = UiReceiverFake()
-        val pagingData2 = infinitelySuspendingPagingData(uiReceiver = uiReceiver)
-        val job2 = launch { presenter.collectFrom(pagingData2) }
-        assertTrue(job2.isActive)
-
-        // even though the second paging data never presented, it should be receiver of the refresh
-        presenter.refresh()
-        assertThat(uiReceiver.refreshEvents).hasSize(1)
-
-        job2.cancel()
-    }
-
-    @Test
-    fun retryAfterStaticList() = testScope.runTest {
-        val presenter = SimplePresenter()
-
-        val pagingData1 = PagingData.from(listOf(1, 2, 3))
-        val job1 = launch { presenter.collectFrom(pagingData1) }
-        assertTrue(job1.isCompleted)
-        assertThat(presenter.snapshot()).containsAtLeastElementsIn(listOf(1, 2, 3))
-
-        val uiReceiver = UiReceiverFake()
-        val pagingData2 = infinitelySuspendingPagingData(uiReceiver = uiReceiver)
-        val job2 = launch { presenter.collectFrom(pagingData2) }
-        assertTrue(job2.isActive)
-
-        // even though the second paging data never presented, it should be receiver of the retry
-        presenter.retry()
-        assertThat(uiReceiver.retryEvents).hasSize(1)
-
-        job2.cancel()
-    }
-
-    @Test
-    fun hintCalculationBasedOnCurrentGeneration() = testScope.runTest {
-        val presenter = SimplePresenter()
-
-        // first generation
-        val hintReceiver1 = HintReceiverFake()
-        val uiReceiver1 = UiReceiverFake()
-        val flow = flowOf(
-            localRefresh(
-                pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4))),
-                placeholdersBefore = 0,
-                placeholdersAfter = 95
-            )
-        )
-
-        val job1 = launch {
-            presenter.collectFrom(PagingData(flow, uiReceiver1, hintReceiver1))
-        }
-        // access any item make sure hint is sent
-        presenter[3]
-        assertThat(hintReceiver1.hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = 3,
-                presentedItemsBefore = 3,
-                presentedItemsAfter = 1,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
-            )
-        )
-
-        // jump to another position, triggers invalidation
-        presenter[20]
-        assertThat(hintReceiver1.hints).isEqualTo(
-            listOf(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 20,
-                    presentedItemsBefore = 20,
-                    presentedItemsAfter = -16,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0,
-                ),
-            )
-        )
-
-        // jump invalidation happens
-        presenter.refresh()
-        assertThat(uiReceiver1.refreshEvents).hasSize(1)
-
-        // second generation
-        val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
-        val hintReceiver2 = HintReceiverFake()
-        val job2 = launch {
-            presenter.collectFrom(
-                PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver2)
-            )
+            // access any item to ensure gen 2 receiver was recipient of the initial hint
+            presenter[0]
+            assertThat(hintReceivers[1].hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 0,
+                        presentedItemsBefore = 0,
+                        presentedItemsAfter = 8,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
         }
 
-        // jump to another position while second gen is loading. It should be sent to first gen.
-        presenter[40]
-        assertThat(hintReceiver1.hints).isEqualTo(
-            listOf(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 40,
-                    presentedItemsBefore = 40,
-                    presentedItemsAfter = -36,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0,
-                ),
-            )
-        )
-        assertThat(hintReceiver2.hints).isEmpty()
-
-        // gen 2 initial load
-        pageEventCh.trySend(
-            localRefresh(
-                pages = listOf(TransformablePage(listOf(20, 21, 22, 23, 24))),
-                placeholdersBefore = 20,
-                placeholdersAfter = 75
-            ),
-        )
-        // access any item make sure hint is sent
-        presenter[3]
-        assertThat(hintReceiver2.hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = 0,
-                indexInPage = -17,
-                presentedItemsBefore = -17,
-                presentedItemsAfter = 21,
-                originalPageOffsetFirst = 0,
-                originalPageOffsetLast = 0,
-            )
-        )
-
-        // jumping to index 50. Hint.indexInPage should be adjusted accordingly based on
-        // the placeholdersBefore of new presenter. It should be
-        // (index - placeholdersBefore) = 50 - 20 = 30
-        presenter[50]
-        assertThat(hintReceiver2.hints).isEqualTo(
-            listOf(
-                ViewportHint.Access(
-                    pageOffset = 0,
-                    indexInPage = 30,
-                    presentedItemsBefore = 30,
-                    presentedItemsAfter = -26,
-                    originalPageOffsetFirst = 0,
-                    originalPageOffsetLast = 0,
-                ),
-            )
-        )
-
-        job2.cancel()
-        job1.cancel()
-    }
-
     @Test
-    fun fetch_loadHintResentWhenUnfulfilled() = testScope.runTest {
-        val presenter = SimplePresenter()
+    fun refreshAfterStaticList() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
 
-        val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
-        pageEventCh.trySend(
-            localRefresh(
-                pages = listOf(TransformablePage(0, listOf(0, 1))),
-                placeholdersBefore = 4,
-                placeholdersAfter = 4,
-            )
-        )
-        pageEventCh.trySend(
-            localPrepend(
-                pages = listOf(TransformablePage(-1, listOf(-1, -2))),
-                placeholdersBefore = 2,
-            )
-        )
-        pageEventCh.trySend(
-            localAppend(
-                pages = listOf(TransformablePage(1, listOf(2, 3))),
-                placeholdersAfter = 2,
-            )
-        )
+            val pagingData1 = PagingData.from(listOf(1, 2, 3))
+            val job1 = launch { presenter.collectFrom(pagingData1) }
+            assertTrue(job1.isCompleted)
+            assertThat(presenter.snapshot()).containsAtLeastElementsIn(listOf(1, 2, 3))
 
-        val hintReceiver = HintReceiverFake()
-        val job = launch {
-            presenter.collectFrom(
-                // Filter the original list of 10 items to 5, removing even numbers.
-                PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver)
-                    .filter { it % 2 != 0 }
-            )
+            val uiReceiver = UiReceiverFake()
+            val pagingData2 = infinitelySuspendingPagingData(uiReceiver = uiReceiver)
+            val job2 = launch { presenter.collectFrom(pagingData2) }
+            assertTrue(job2.isActive)
+
+            // even though the second paging data never presented, it should be receiver of the
+            // refresh
+            presenter.refresh()
+            assertThat(uiReceiver.refreshEvents).hasSize(1)
+
+            job2.cancel()
         }
 
-        // Initial state:
-        // [null, null, [-1], [1], [3], null, null]
-        assertNull(presenter[0])
-        assertThat(hintReceiver.hints).isEqualTo(
-            listOf(
-                ViewportHint.Access(
-                    pageOffset = -1,
-                    indexInPage = -2,
-                    presentedItemsBefore = -2,
-                    presentedItemsAfter = 4,
-                    originalPageOffsetFirst = -1,
-                    originalPageOffsetLast = 1
+    @Test
+    fun retryAfterStaticList() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+
+            val pagingData1 = PagingData.from(listOf(1, 2, 3))
+            val job1 = launch { presenter.collectFrom(pagingData1) }
+            assertTrue(job1.isCompleted)
+            assertThat(presenter.snapshot()).containsAtLeastElementsIn(listOf(1, 2, 3))
+
+            val uiReceiver = UiReceiverFake()
+            val pagingData2 = infinitelySuspendingPagingData(uiReceiver = uiReceiver)
+            val job2 = launch { presenter.collectFrom(pagingData2) }
+            assertTrue(job2.isActive)
+
+            // even though the second paging data never presented, it should be receiver of the
+            // retry
+            presenter.retry()
+            assertThat(uiReceiver.retryEvents).hasSize(1)
+
+            job2.cancel()
+        }
+
+    @Test
+    fun hintCalculationBasedOnCurrentGeneration() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+
+            // first generation
+            val hintReceiver1 = HintReceiverFake()
+            val uiReceiver1 = UiReceiverFake()
+            val flow =
+                flowOf(
+                    localRefresh(
+                        pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4))),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 95
+                    )
+                )
+
+            val job1 = launch {
+                presenter.collectFrom(PagingData(flow, uiReceiver1, hintReceiver1))
+            }
+            // access any item make sure hint is sent
+            presenter[3]
+            assertThat(hintReceiver1.hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = 3,
+                        presentedItemsBefore = 3,
+                        presentedItemsAfter = 1,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
+
+            // jump to another position, triggers invalidation
+            presenter[20]
+            assertThat(hintReceiver1.hints)
+                .isEqualTo(
+                    listOf(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 20,
+                            presentedItemsBefore = 20,
+                            presentedItemsAfter = -16,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0,
+                        ),
+                    )
+                )
+
+            // jump invalidation happens
+            presenter.refresh()
+            assertThat(uiReceiver1.refreshEvents).hasSize(1)
+
+            // second generation
+            val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
+            val hintReceiver2 = HintReceiverFake()
+            val job2 = launch {
+                presenter.collectFrom(
+                    PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver2)
+                )
+            }
+
+            // jump to another position while second gen is loading. It should be sent to first gen.
+            presenter[40]
+            assertThat(hintReceiver1.hints)
+                .isEqualTo(
+                    listOf(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 40,
+                            presentedItemsBefore = 40,
+                            presentedItemsAfter = -36,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0,
+                        ),
+                    )
+                )
+            assertThat(hintReceiver2.hints).isEmpty()
+
+            // gen 2 initial load
+            pageEventCh.trySend(
+                localRefresh(
+                    pages = listOf(TransformablePage(listOf(20, 21, 22, 23, 24))),
+                    placeholdersBefore = 20,
+                    placeholdersAfter = 75
                 ),
             )
-        )
+            // access any item make sure hint is sent
+            presenter[3]
+            assertThat(hintReceiver2.hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = 0,
+                        indexInPage = -17,
+                        presentedItemsBefore = -17,
+                        presentedItemsAfter = 21,
+                        originalPageOffsetFirst = 0,
+                        originalPageOffsetLast = 0,
+                    )
+                )
 
-        // Insert a new page, PagingDataPresenter should try to resend hint since index 0 still points
-        // to a placeholder:
-        // [null, null, [], [-1], [1], [3], null, null]
-        pageEventCh.trySend(
-            localPrepend(
-                pages = listOf(TransformablePage(-2, listOf())),
-                placeholdersBefore = 2,
-            )
-        )
-        assertThat(hintReceiver.hints).isEqualTo(
-            listOf(
-                ViewportHint.Access(
-                    pageOffset = -2,
-                    indexInPage = -2,
-                    presentedItemsBefore = -2,
-                    presentedItemsAfter = 4,
-                    originalPageOffsetFirst = -2,
-                    originalPageOffsetLast = 1
+            // jumping to index 50. Hint.indexInPage should be adjusted accordingly based on
+            // the placeholdersBefore of new presenter. It should be
+            // (index - placeholdersBefore) = 50 - 20 = 30
+            presenter[50]
+            assertThat(hintReceiver2.hints)
+                .isEqualTo(
+                    listOf(
+                        ViewportHint.Access(
+                            pageOffset = 0,
+                            indexInPage = 30,
+                            presentedItemsBefore = 30,
+                            presentedItemsAfter = -26,
+                            originalPageOffsetFirst = 0,
+                            originalPageOffsetLast = 0,
+                        ),
+                    )
+                )
+
+            job2.cancel()
+            job1.cancel()
+        }
+
+    @Test
+    fun fetch_loadHintResentWhenUnfulfilled() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+
+            val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
+            pageEventCh.trySend(
+                localRefresh(
+                    pages = listOf(TransformablePage(0, listOf(0, 1))),
+                    placeholdersBefore = 4,
+                    placeholdersAfter = 4,
                 )
             )
-        )
-
-        // Now index 0 has been loaded:
-        // [[-3], [], [-1], [1], [3], null, null]
-        pageEventCh.trySend(
-            localPrepend(
-                pages = listOf(TransformablePage(-3, listOf(-3, -4))),
-                placeholdersBefore = 0,
-                source = loadStates(prepend = NotLoading.Complete)
-            )
-        )
-        assertThat(hintReceiver.hints).isEmpty()
-
-        // This index points to a valid placeholder that ends up removed by filter().
-        assertNull(presenter[5])
-        assertThat(hintReceiver.hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = 1,
-                indexInPage = 2,
-                presentedItemsBefore = 5,
-                presentedItemsAfter = -2,
-                originalPageOffsetFirst = -3,
-                originalPageOffsetLast = 1
-            )
-        )
-
-        // Should only resend the hint for index 5, since index 0 has already been loaded:
-        // [[-3], [], [-1], [1], [3], [], null, null]
-        pageEventCh.trySend(
-            localAppend(
-                pages = listOf(TransformablePage(2, listOf())),
-                placeholdersAfter = 2,
-                source = loadStates(prepend = NotLoading.Complete)
-            )
-        )
-        assertThat(hintReceiver.hints).isEqualTo(
-            listOf(
-                ViewportHint.Access(
-                    pageOffset = 2,
-                    indexInPage = 1,
-                    presentedItemsBefore = 5,
-                    presentedItemsAfter = -2,
-                    originalPageOffsetFirst = -3,
-                    originalPageOffsetLast = 2
+            pageEventCh.trySend(
+                localPrepend(
+                    pages = listOf(TransformablePage(-1, listOf(-1, -2))),
+                    placeholdersBefore = 2,
                 )
             )
-        )
-
-        // Index 5 hasn't loaded, but we are at the end of the list:
-        // [[-3], [], [-1], [1], [3], [], [5]]
-        pageEventCh.trySend(
-            localAppend(
-                pages = listOf(TransformablePage(3, listOf(4, 5))),
-                placeholdersAfter = 0,
-                source = loadStates(prepend = NotLoading.Complete, append = NotLoading.Complete)
-            )
-        )
-        assertThat(hintReceiver.hints).isEmpty()
-
-        job.cancel()
-    }
-
-    @Test
-    fun fetch_loadHintResentUnlessPageDropped() = testScope.runTest {
-        val presenter = SimplePresenter()
-
-        val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
-        pageEventCh.trySend(
-            localRefresh(
-                pages = listOf(TransformablePage(0, listOf(0, 1))),
-                placeholdersBefore = 4,
-                placeholdersAfter = 4,
-            )
-        )
-        pageEventCh.trySend(
-            localPrepend(
-                pages = listOf(TransformablePage(-1, listOf(-1, -2))),
-                placeholdersBefore = 2,
-            )
-        )
-        pageEventCh.trySend(
-            localAppend(
-                pages = listOf(TransformablePage(1, listOf(2, 3))),
-                placeholdersAfter = 2,
-            )
-        )
-
-        val hintReceiver = HintReceiverFake()
-        val job = launch {
-            presenter.collectFrom(
-                // Filter the original list of 10 items to 5, removing even numbers.
-                PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver)
-                    .filter { it % 2 != 0 }
-            )
-        }
-
-        // Initial state:
-        // [null, null, [-1], [1], [3], null, null]
-        assertNull(presenter[0])
-        assertThat(hintReceiver.hints).containsExactly(
-            ViewportHint.Access(
-                pageOffset = -1,
-                indexInPage = -2,
-                presentedItemsBefore = -2,
-                presentedItemsAfter = 4,
-                originalPageOffsetFirst = -1,
-                originalPageOffsetLast = 1
-            )
-        )
-
-        // Insert a new page, PagingDataPresenter should try to resend hint since index 0 still points
-        // to a placeholder:
-        // [null, null, [], [-1], [1], [3], null, null]
-        pageEventCh.trySend(
-            localPrepend(
-                pages = listOf(TransformablePage(-2, listOf())),
-                placeholdersBefore = 2,
-            )
-        )
-        assertThat(hintReceiver.hints).isEqualTo(
-            listOf(
-                ViewportHint.Access(
-                    pageOffset = -2,
-                    indexInPage = -2,
-                    presentedItemsBefore = -2,
-                    presentedItemsAfter = 4,
-                    originalPageOffsetFirst = -2,
-                    originalPageOffsetLast = 1
+            pageEventCh.trySend(
+                localAppend(
+                    pages = listOf(TransformablePage(1, listOf(2, 3))),
+                    placeholdersAfter = 2,
                 )
             )
-        )
 
-        // Drop the previous page, which reset resendable index state in the PREPEND direction.
-        // [null, null, [-1], [1], [3], null, null]
-        pageEventCh.trySend(
-            Drop(
-                loadType = PREPEND,
-                minPageOffset = -2,
-                maxPageOffset = -2,
-                placeholdersRemaining = 2
+            val hintReceiver = HintReceiverFake()
+            val job = launch {
+                presenter.collectFrom(
+                    // Filter the original list of 10 items to 5, removing even numbers.
+                    PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver).filter {
+                        it % 2 != 0
+                    }
+                )
+            }
+
+            // Initial state:
+            // [null, null, [-1], [1], [3], null, null]
+            assertNull(presenter[0])
+            assertThat(hintReceiver.hints)
+                .isEqualTo(
+                    listOf(
+                        ViewportHint.Access(
+                            pageOffset = -1,
+                            indexInPage = -2,
+                            presentedItemsBefore = -2,
+                            presentedItemsAfter = 4,
+                            originalPageOffsetFirst = -1,
+                            originalPageOffsetLast = 1
+                        ),
+                    )
+                )
+
+            // Insert a new page, PagingDataPresenter should try to resend hint since index 0 still
+            // points
+            // to a placeholder:
+            // [null, null, [], [-1], [1], [3], null, null]
+            pageEventCh.trySend(
+                localPrepend(
+                    pages = listOf(TransformablePage(-2, listOf())),
+                    placeholdersBefore = 2,
+                )
             )
-        )
+            assertThat(hintReceiver.hints)
+                .isEqualTo(
+                    listOf(
+                        ViewportHint.Access(
+                            pageOffset = -2,
+                            indexInPage = -2,
+                            presentedItemsBefore = -2,
+                            presentedItemsAfter = 4,
+                            originalPageOffsetFirst = -2,
+                            originalPageOffsetLast = 1
+                        )
+                    )
+                )
 
-        // Re-insert the previous page, which should not trigger resending the index due to
-        // previous page drop:
-        // [[-3], [], [-1], [1], [3], null, null]
-        pageEventCh.trySend(
-            localPrepend(
-                pages = listOf(TransformablePage(-2, listOf())),
-                placeholdersBefore = 2,
+            // Now index 0 has been loaded:
+            // [[-3], [], [-1], [1], [3], null, null]
+            pageEventCh.trySend(
+                localPrepend(
+                    pages = listOf(TransformablePage(-3, listOf(-3, -4))),
+                    placeholdersBefore = 0,
+                    source = loadStates(prepend = NotLoading.Complete)
+                )
             )
-        )
+            assertThat(hintReceiver.hints).isEmpty()
 
-        job.cancel()
-    }
+            // This index points to a valid placeholder that ends up removed by filter().
+            assertNull(presenter[5])
+            assertThat(hintReceiver.hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = 1,
+                        indexInPage = 2,
+                        presentedItemsBefore = 5,
+                        presentedItemsAfter = -2,
+                        originalPageOffsetFirst = -3,
+                        originalPageOffsetLast = 1
+                    )
+                )
+
+            // Should only resend the hint for index 5, since index 0 has already been loaded:
+            // [[-3], [], [-1], [1], [3], [], null, null]
+            pageEventCh.trySend(
+                localAppend(
+                    pages = listOf(TransformablePage(2, listOf())),
+                    placeholdersAfter = 2,
+                    source = loadStates(prepend = NotLoading.Complete)
+                )
+            )
+            assertThat(hintReceiver.hints)
+                .isEqualTo(
+                    listOf(
+                        ViewportHint.Access(
+                            pageOffset = 2,
+                            indexInPage = 1,
+                            presentedItemsBefore = 5,
+                            presentedItemsAfter = -2,
+                            originalPageOffsetFirst = -3,
+                            originalPageOffsetLast = 2
+                        )
+                    )
+                )
+
+            // Index 5 hasn't loaded, but we are at the end of the list:
+            // [[-3], [], [-1], [1], [3], [], [5]]
+            pageEventCh.trySend(
+                localAppend(
+                    pages = listOf(TransformablePage(3, listOf(4, 5))),
+                    placeholdersAfter = 0,
+                    source = loadStates(prepend = NotLoading.Complete, append = NotLoading.Complete)
+                )
+            )
+            assertThat(hintReceiver.hints).isEmpty()
+
+            job.cancel()
+        }
 
     @Test
-    fun peek() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
-        pageEventCh.trySend(
-            localRefresh(
-                pages = listOf(TransformablePage(0, listOf(0, 1))),
-                placeholdersBefore = 4,
-                placeholdersAfter = 4,
-            )
-        )
-        pageEventCh.trySend(
-            localPrepend(
-                pages = listOf(TransformablePage(-1, listOf(-1, -2))),
-                placeholdersBefore = 2,
-            )
-        )
-        pageEventCh.trySend(
-            localAppend(
-                pages = listOf(TransformablePage(1, listOf(2, 3))),
-                placeholdersAfter = 2,
-            )
-        )
+    fun fetch_loadHintResentUnlessPageDropped() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
 
-        val hintReceiver = HintReceiverFake()
-        val job = launch {
+            val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
+            pageEventCh.trySend(
+                localRefresh(
+                    pages = listOf(TransformablePage(0, listOf(0, 1))),
+                    placeholdersBefore = 4,
+                    placeholdersAfter = 4,
+                )
+            )
+            pageEventCh.trySend(
+                localPrepend(
+                    pages = listOf(TransformablePage(-1, listOf(-1, -2))),
+                    placeholdersBefore = 2,
+                )
+            )
+            pageEventCh.trySend(
+                localAppend(
+                    pages = listOf(TransformablePage(1, listOf(2, 3))),
+                    placeholdersAfter = 2,
+                )
+            )
+
+            val hintReceiver = HintReceiverFake()
+            val job = launch {
+                presenter.collectFrom(
+                    // Filter the original list of 10 items to 5, removing even numbers.
+                    PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver).filter {
+                        it % 2 != 0
+                    }
+                )
+            }
+
+            // Initial state:
+            // [null, null, [-1], [1], [3], null, null]
+            assertNull(presenter[0])
+            assertThat(hintReceiver.hints)
+                .containsExactly(
+                    ViewportHint.Access(
+                        pageOffset = -1,
+                        indexInPage = -2,
+                        presentedItemsBefore = -2,
+                        presentedItemsAfter = 4,
+                        originalPageOffsetFirst = -1,
+                        originalPageOffsetLast = 1
+                    )
+                )
+
+            // Insert a new page, PagingDataPresenter should try to resend hint since index 0 still
+            // points
+            // to a placeholder:
+            // [null, null, [], [-1], [1], [3], null, null]
+            pageEventCh.trySend(
+                localPrepend(
+                    pages = listOf(TransformablePage(-2, listOf())),
+                    placeholdersBefore = 2,
+                )
+            )
+            assertThat(hintReceiver.hints)
+                .isEqualTo(
+                    listOf(
+                        ViewportHint.Access(
+                            pageOffset = -2,
+                            indexInPage = -2,
+                            presentedItemsBefore = -2,
+                            presentedItemsAfter = 4,
+                            originalPageOffsetFirst = -2,
+                            originalPageOffsetLast = 1
+                        )
+                    )
+                )
+
+            // Drop the previous page, which reset resendable index state in the PREPEND direction.
+            // [null, null, [-1], [1], [3], null, null]
+            pageEventCh.trySend(
+                Drop(
+                    loadType = PREPEND,
+                    minPageOffset = -2,
+                    maxPageOffset = -2,
+                    placeholdersRemaining = 2
+                )
+            )
+
+            // Re-insert the previous page, which should not trigger resending the index due to
+            // previous page drop:
+            // [[-3], [], [-1], [1], [3], null, null]
+            pageEventCh.trySend(
+                localPrepend(
+                    pages = listOf(TransformablePage(-2, listOf())),
+                    placeholdersBefore = 2,
+                )
+            )
+
+            job.cancel()
+        }
+
+    @Test
+    fun peek() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val pageEventCh = Channel<PageEvent<Int>>(Channel.UNLIMITED)
+            pageEventCh.trySend(
+                localRefresh(
+                    pages = listOf(TransformablePage(0, listOf(0, 1))),
+                    placeholdersBefore = 4,
+                    placeholdersAfter = 4,
+                )
+            )
+            pageEventCh.trySend(
+                localPrepend(
+                    pages = listOf(TransformablePage(-1, listOf(-1, -2))),
+                    placeholdersBefore = 2,
+                )
+            )
+            pageEventCh.trySend(
+                localAppend(
+                    pages = listOf(TransformablePage(1, listOf(2, 3))),
+                    placeholdersAfter = 2,
+                )
+            )
+
+            val hintReceiver = HintReceiverFake()
+            val job = launch {
+                presenter.collectFrom(
+                    // Filter the original list of 10 items to 5, removing even numbers.
+                    PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver)
+                )
+            }
+
+            // Check that peek fetches the correct placeholder
+            assertThat(presenter.peek(4)).isEqualTo(0)
+
+            // Check that peek fetches the correct placeholder
+            assertNull(presenter.peek(0))
+
+            // Check that peek does not trigger page fetch.
+            assertThat(hintReceiver.hints).isEmpty()
+
+            job.cancel()
+        }
+
+    @Test
+    fun onPagingDataPresentedListener_empty() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val listenerEvents = mutableListOf<Unit>()
+            presenter.addOnPagesUpdatedListener { listenerEvents.add(Unit) }
+
+            presenter.collectFrom(PagingData.empty())
+            assertThat(listenerEvents.size).isEqualTo(1)
+
+            // No change to LoadState or presented list should still trigger the listener.
+            presenter.collectFrom(PagingData.empty())
+            assertThat(listenerEvents.size).isEqualTo(2)
+
+            val pager = Pager(PagingConfig(pageSize = 1)) { TestPagingSource(items = listOf()) }
+            val job = launch { pager.flow.collectLatest { presenter.collectFrom(it) } }
+
+            // Should wait for new generation to load and apply it first.
+            assertThat(listenerEvents.size).isEqualTo(2)
+
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(3)
+
+            job.cancel()
+        }
+
+    @Test
+    fun onPagingDataPresentedListener_insertDrop() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val listenerEvents = mutableListOf<Unit>()
+            presenter.addOnPagesUpdatedListener { listenerEvents.add(Unit) }
+
+            val pager =
+                Pager(PagingConfig(pageSize = 1, maxSize = 4), initialKey = 50) {
+                    TestPagingSource()
+                }
+            val job = launch { pager.flow.collectLatest { presenter.collectFrom(it) } }
+
+            // Should wait for new generation to load and apply it first.
+            assertThat(listenerEvents.size).isEqualTo(0)
+
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(1)
+
+            // Trigger PREPEND.
+            presenter[50]
+            assertThat(listenerEvents.size).isEqualTo(1)
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(2)
+
+            // Trigger APPEND + Drop
+            presenter[52]
+            assertThat(listenerEvents.size).isEqualTo(2)
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(4)
+
+            job.cancel()
+        }
+
+    @Test
+    fun onPagingDataPresentedFlow_empty() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val listenerEvents = mutableListOf<Unit>()
+            val job1 = launch { presenter.onPagesUpdatedFlow.collect { listenerEvents.add(Unit) } }
+
+            presenter.collectFrom(PagingData.empty())
+            assertThat(listenerEvents.size).isEqualTo(1)
+
+            // No change to LoadState or presented list should still trigger the listener.
+            presenter.collectFrom(PagingData.empty())
+            assertThat(listenerEvents.size).isEqualTo(2)
+
+            val pager = Pager(PagingConfig(pageSize = 1)) { TestPagingSource(items = listOf()) }
+            val job2 = launch { pager.flow.collectLatest { presenter.collectFrom(it) } }
+
+            // Should wait for new generation to load and apply it first.
+            assertThat(listenerEvents.size).isEqualTo(2)
+
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(3)
+
+            job1.cancel()
+            job2.cancel()
+        }
+
+    @Test
+    fun onPagingDataPresentedFlow_insertDrop() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val listenerEvents = mutableListOf<Unit>()
+            val job1 = launch { presenter.onPagesUpdatedFlow.collect { listenerEvents.add(Unit) } }
+
+            val pager =
+                Pager(PagingConfig(pageSize = 1, maxSize = 4), initialKey = 50) {
+                    TestPagingSource()
+                }
+            val job2 = launch { pager.flow.collectLatest { presenter.collectFrom(it) } }
+
+            // Should wait for new generation to load and apply it first.
+            assertThat(listenerEvents.size).isEqualTo(0)
+
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(1)
+
+            // Trigger PREPEND.
+            presenter[50]
+            assertThat(listenerEvents.size).isEqualTo(1)
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(2)
+
+            // Trigger APPEND + Drop
+            presenter[52]
+            assertThat(listenerEvents.size).isEqualTo(2)
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(4)
+
+            job1.cancel()
+            job2.cancel()
+        }
+
+    @Test
+    fun onPagingDataPresentedFlow_buffer() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val listenerEvents = mutableListOf<Unit>()
+
+            // Trigger update, which should get ignored due to onPagesUpdatedFlow being hot.
+            presenter.collectFrom(PagingData.empty())
+
+            val job = launch {
+                presenter.onPagesUpdatedFlow.collect {
+                    listenerEvents.add(Unit)
+                    // Await advanceUntilIdle() before accepting another event.
+                    delay(100)
+                }
+            }
+
+            // Previous update before collection happened should be ignored.
+            assertThat(listenerEvents.size).isEqualTo(0)
+
+            // Trigger update; should get immediately received.
+            presenter.collectFrom(PagingData.empty())
+            assertThat(listenerEvents.size).isEqualTo(1)
+
+            // Trigger 64 update while collector is still processing; should all get buffered.
+            repeat(64) { presenter.collectFrom(PagingData.empty()) }
+
+            // Trigger another update while collector is still processing; should cause event to
+            // drop.
+            presenter.collectFrom(PagingData.empty())
+
+            // Await all; we should now receive the buffered event.
+            advanceUntilIdle()
+            assertThat(listenerEvents.size).isEqualTo(65)
+
+            job.cancel()
+        }
+
+    @Test
+    fun loadStateFlow_synchronouslyUpdates() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            var combinedLoadStates: CombinedLoadStates? = null
+            var itemCount = -1
+            val loadStateJob = launch {
+                presenter.nonNullLoadStateFlow.collect {
+                    combinedLoadStates = it
+                    itemCount = presenter.size
+                }
+            }
+
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            initialLoadSize = 10,
+                            prefetchDistance = 1
+                        ),
+                    initialKey = 50
+                ) {
+                    TestPagingSource()
+                }
+            val job = launch { pager.flow.collectLatest { presenter.collectFrom(it) } }
+
+            // Initial refresh
+            advanceUntilIdle()
+            assertEquals(localLoadStatesOf(), combinedLoadStates)
+            assertEquals(10, itemCount)
+            assertEquals(10, presenter.size)
+
+            // Append
+            presenter[9]
+            advanceUntilIdle()
+            assertEquals(localLoadStatesOf(), combinedLoadStates)
+            assertEquals(20, itemCount)
+            assertEquals(20, presenter.size)
+
+            // Prepend
+            presenter[0]
+            advanceUntilIdle()
+            assertEquals(localLoadStatesOf(), combinedLoadStates)
+            assertEquals(30, itemCount)
+            assertEquals(30, presenter.size)
+
+            job.cancel()
+            loadStateJob.cancel()
+        }
+
+    @Test
+    fun loadStateFlow_hasNoInitialValue() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+
+            // Should not immediately emit without a real value to a new collector.
+            val combinedLoadStates = mutableListOf<CombinedLoadStates>()
+            val loadStateJob = launch {
+                presenter.nonNullLoadStateFlow.collect { combinedLoadStates.add(it) }
+            }
+            assertThat(combinedLoadStates).isEmpty()
+
+            // Add a real value and now we should emit to collector.
             presenter.collectFrom(
-                // Filter the original list of 10 items to 5, removing even numbers.
-                PagingData(pageEventCh.consumeAsFlow(), dummyUiReceiver, hintReceiver)
+                PagingData.empty(
+                    sourceLoadStates =
+                        loadStates(prepend = NotLoading.Complete, append = NotLoading.Complete)
+                )
             )
-        }
+            assertThat(combinedLoadStates)
+                .containsExactly(
+                    localLoadStatesOf(
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                    )
+                )
 
-        // Check that peek fetches the correct placeholder
-        assertThat(presenter.peek(4)).isEqualTo(0)
-
-        // Check that peek fetches the correct placeholder
-        assertNull(presenter.peek(0))
-
-        // Check that peek does not trigger page fetch.
-        assertThat(hintReceiver.hints).isEmpty()
-
-        job.cancel()
-    }
-
-    @Test
-    fun onPagingDataPresentedListener_empty() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val listenerEvents = mutableListOf<Unit>()
-        presenter.addOnPagesUpdatedListener {
-            listenerEvents.add(Unit)
-        }
-
-        presenter.collectFrom(PagingData.empty())
-        assertThat(listenerEvents.size).isEqualTo(1)
-
-        // No change to LoadState or presented list should still trigger the listener.
-        presenter.collectFrom(PagingData.empty())
-        assertThat(listenerEvents.size).isEqualTo(2)
-
-        val pager = Pager(PagingConfig(pageSize = 1)) { TestPagingSource(items = listOf()) }
-        val job = launch {
-            pager.flow.collectLatest { presenter.collectFrom(it) }
-        }
-
-        // Should wait for new generation to load and apply it first.
-        assertThat(listenerEvents.size).isEqualTo(2)
-
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(3)
-
-        job.cancel()
-    }
-
-    @Test
-    fun onPagingDataPresentedListener_insertDrop() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val listenerEvents = mutableListOf<Unit>()
-        presenter.addOnPagesUpdatedListener {
-            listenerEvents.add(Unit)
-        }
-
-        val pager = Pager(PagingConfig(pageSize = 1, maxSize = 4), initialKey = 50) {
-            TestPagingSource()
-        }
-        val job = launch {
-            pager.flow.collectLatest { presenter.collectFrom(it) }
-        }
-
-        // Should wait for new generation to load and apply it first.
-        assertThat(listenerEvents.size).isEqualTo(0)
-
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(1)
-
-        // Trigger PREPEND.
-        presenter[50]
-        assertThat(listenerEvents.size).isEqualTo(1)
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(2)
-
-        // Trigger APPEND + Drop
-        presenter[52]
-        assertThat(listenerEvents.size).isEqualTo(2)
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(4)
-
-        job.cancel()
-    }
-
-    @Test
-    fun onPagingDataPresentedFlow_empty() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val listenerEvents = mutableListOf<Unit>()
-        val job1 = launch {
-            presenter.onPagesUpdatedFlow.collect {
-                listenerEvents.add(Unit)
+            // Should emit real values to new collectors immediately
+            val newCombinedLoadStates = mutableListOf<CombinedLoadStates>()
+            val newLoadStateJob = launch {
+                presenter.nonNullLoadStateFlow.collect { newCombinedLoadStates.add(it) }
             }
+            assertThat(newCombinedLoadStates)
+                .containsExactly(
+                    localLoadStatesOf(
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                    )
+                )
+
+            loadStateJob.cancel()
+            newLoadStateJob.cancel()
         }
 
-        presenter.collectFrom(PagingData.empty())
-        assertThat(listenerEvents.size).isEqualTo(1)
-
-        // No change to LoadState or presented list should still trigger the listener.
-        presenter.collectFrom(PagingData.empty())
-        assertThat(listenerEvents.size).isEqualTo(2)
-
-        val pager = Pager(PagingConfig(pageSize = 1)) { TestPagingSource(items = listOf()) }
-        val job2 = launch {
-            pager.flow.collectLatest { presenter.collectFrom(it) }
-        }
-
-        // Should wait for new generation to load and apply it first.
-        assertThat(listenerEvents.size).isEqualTo(2)
-
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(3)
-
-        job1.cancel()
-        job2.cancel()
-    }
-
     @Test
-    fun onPagingDataPresentedFlow_insertDrop() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val listenerEvents = mutableListOf<Unit>()
-        val job1 = launch {
-            presenter.onPagesUpdatedFlow.collect {
-                listenerEvents.add(Unit)
+    fun loadStateFlow_preservesLoadStatesOnEmptyList() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+
+            // Should not immediately emit without a real value to a new collector.
+            val combinedLoadStates = mutableListOf<CombinedLoadStates>()
+            val loadStateJob = launch {
+                presenter.nonNullLoadStateFlow.collect { combinedLoadStates.add(it) }
             }
-        }
+            assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
 
-        val pager = Pager(PagingConfig(pageSize = 1, maxSize = 4), initialKey = 50) {
-            TestPagingSource()
-        }
-        val job2 = launch {
-            pager.flow.collectLatest { presenter.collectFrom(it) }
-        }
+            // Send a static list without load states, which should not send anything.
+            presenter.collectFrom(PagingData.empty())
+            assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
 
-        // Should wait for new generation to load and apply it first.
-        assertThat(listenerEvents.size).isEqualTo(0)
+            // Send a real LoadStateUpdate.
+            presenter.collectFrom(
+                PagingData(
+                    flow =
+                        flowOf(
+                            remoteLoadStateUpdate(
+                                refreshLocal = Loading,
+                                prependLocal = Loading,
+                                appendLocal = Loading,
+                                refreshRemote = Loading,
+                                prependRemote = Loading,
+                                appendRemote = Loading,
+                            )
+                        ),
+                    uiReceiver = PagingData.NOOP_UI_RECEIVER,
+                    hintReceiver = PagingData.NOOP_HINT_RECEIVER
+                )
+            )
+            assertThat(combinedLoadStates.getAllAndClear())
+                .containsExactly(
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        prepend = Loading,
+                        append = Loading,
+                        refreshLocal = Loading,
+                        prependLocal = Loading,
+                        appendLocal = Loading,
+                        refreshRemote = Loading,
+                        prependRemote = Loading,
+                        appendRemote = Loading,
+                    )
+                )
 
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(1)
-
-        // Trigger PREPEND.
-        presenter[50]
-        assertThat(listenerEvents.size).isEqualTo(1)
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(2)
-
-        // Trigger APPEND + Drop
-        presenter[52]
-        assertThat(listenerEvents.size).isEqualTo(2)
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(4)
-
-        job1.cancel()
-        job2.cancel()
-    }
-
-    @Test
-    fun onPagingDataPresentedFlow_buffer() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val listenerEvents = mutableListOf<Unit>()
-
-        // Trigger update, which should get ignored due to onPagesUpdatedFlow being hot.
-        presenter.collectFrom(PagingData.empty())
-
-        val job = launch {
-            presenter.onPagesUpdatedFlow.collect {
-                listenerEvents.add(Unit)
-                // Await advanceUntilIdle() before accepting another event.
-                delay(100)
+            // Send a static list without load states, which should preserve the previous state.
+            presenter.collectFrom(PagingData.empty())
+            // Existing observers should not receive any updates
+            assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
+            // New observers should receive the previous state.
+            val newCombinedLoadStates = mutableListOf<CombinedLoadStates>()
+            val newLoadStateJob = launch {
+                presenter.nonNullLoadStateFlow.collect { newCombinedLoadStates.add(it) }
             }
+            assertThat(newCombinedLoadStates.getAllAndClear())
+                .containsExactly(
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        prepend = Loading,
+                        append = Loading,
+                        refreshLocal = Loading,
+                        prependLocal = Loading,
+                        appendLocal = Loading,
+                        refreshRemote = Loading,
+                        prependRemote = Loading,
+                        appendRemote = Loading,
+                    )
+                )
+
+            loadStateJob.cancel()
+            newLoadStateJob.cancel()
         }
 
-        // Previous update before collection happened should be ignored.
-        assertThat(listenerEvents.size).isEqualTo(0)
+    @Test
+    fun loadStateFlow_preservesLoadStatesOnStaticList() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
 
-        // Trigger update; should get immediately received.
-        presenter.collectFrom(PagingData.empty())
-        assertThat(listenerEvents.size).isEqualTo(1)
+            // Should not immediately emit without a real value to a new collector.
+            val combinedLoadStates = mutableListOf<CombinedLoadStates>()
+            val loadStateJob = launch {
+                presenter.nonNullLoadStateFlow.collect { combinedLoadStates.add(it) }
+            }
+            assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
 
-        // Trigger 64 update while collector is still processing; should all get buffered.
-        repeat(64) { presenter.collectFrom(PagingData.empty()) }
+            // Send a static list without load states, which should not send anything.
+            presenter.collectFrom(PagingData.from(listOf(1)))
+            assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
 
-        // Trigger another update while collector is still processing; should cause event to drop.
-        presenter.collectFrom(PagingData.empty())
+            // Send a real LoadStateUpdate.
+            presenter.collectFrom(
+                PagingData(
+                    flow =
+                        flowOf(
+                            remoteLoadStateUpdate(
+                                refreshLocal = Loading,
+                                prependLocal = Loading,
+                                appendLocal = Loading,
+                                refreshRemote = Loading,
+                                prependRemote = Loading,
+                                appendRemote = Loading,
+                            )
+                        ),
+                    uiReceiver = PagingData.NOOP_UI_RECEIVER,
+                    hintReceiver = PagingData.NOOP_HINT_RECEIVER
+                )
+            )
+            assertThat(combinedLoadStates.getAllAndClear())
+                .containsExactly(
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        prepend = Loading,
+                        append = Loading,
+                        refreshLocal = Loading,
+                        prependLocal = Loading,
+                        appendLocal = Loading,
+                        refreshRemote = Loading,
+                        prependRemote = Loading,
+                        appendRemote = Loading,
+                    )
+                )
 
-        // Await all; we should now receive the buffered event.
-        advanceUntilIdle()
-        assertThat(listenerEvents.size).isEqualTo(65)
+            // Send a static list without load states, which should preserve the previous state.
+            presenter.collectFrom(PagingData.from(listOf(1)))
+            // Existing observers should not receive any updates
+            assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
+            // New observers should receive the previous state.
+            val newCombinedLoadStates = mutableListOf<CombinedLoadStates>()
+            val newLoadStateJob = launch {
+                presenter.nonNullLoadStateFlow.collect { newCombinedLoadStates.add(it) }
+            }
+            assertThat(newCombinedLoadStates.getAllAndClear())
+                .containsExactly(
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        prepend = Loading,
+                        append = Loading,
+                        refreshLocal = Loading,
+                        prependLocal = Loading,
+                        appendLocal = Loading,
+                        refreshRemote = Loading,
+                        prependRemote = Loading,
+                        appendRemote = Loading,
+                    )
+                )
 
-        job.cancel()
-    }
+            loadStateJob.cancel()
+            newLoadStateJob.cancel()
+        }
 
     @Test
-    fun loadStateFlow_synchronouslyUpdates() = testScope.runTest {
-        val presenter = SimplePresenter()
-        var combinedLoadStates: CombinedLoadStates? = null
-        var itemCount = -1
-        val loadStateJob = launch {
-            presenter.nonNullLoadStateFlow.collect {
+    fun loadStateFlow_deduplicate() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+
+            val combinedLoadStates = mutableListOf<CombinedLoadStates>()
+            backgroundScope.launch {
+                presenter.nonNullLoadStateFlow.collect { combinedLoadStates.add(it) }
+            }
+
+            presenter.collectFrom(
+                PagingData(
+                    flow =
+                        flowOf(
+                            remoteLoadStateUpdate(
+                                prependLocal = Loading,
+                                appendLocal = Loading,
+                            ),
+                            remoteLoadStateUpdate(
+                                appendLocal = Loading,
+                            ),
+                            // duplicate update
+                            remoteLoadStateUpdate(
+                                appendLocal = Loading,
+                            ),
+                        ),
+                    uiReceiver = PagingData.NOOP_UI_RECEIVER,
+                    hintReceiver = PagingData.NOOP_HINT_RECEIVER
+                )
+            )
+            advanceUntilIdle()
+            assertThat(combinedLoadStates)
+                .containsExactly(
+                    remoteLoadStatesOf(
+                        prependLocal = Loading,
+                        appendLocal = Loading,
+                    ),
+                    remoteLoadStatesOf(
+                        appendLocal = Loading,
+                    )
+                )
+        }
+
+    @Test
+    fun loadStateFlowListeners_deduplicate() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val combinedLoadStates = mutableListOf<CombinedLoadStates>()
+
+            presenter.addLoadStateListener { combinedLoadStates.add(it) }
+
+            presenter.collectFrom(
+                PagingData(
+                    flow =
+                        flowOf(
+                            remoteLoadStateUpdate(
+                                prependLocal = Loading,
+                                appendLocal = Loading,
+                            ),
+                            remoteLoadStateUpdate(
+                                appendLocal = Loading,
+                            ),
+                            // duplicate update
+                            remoteLoadStateUpdate(
+                                appendLocal = Loading,
+                            ),
+                        ),
+                    uiReceiver = PagingData.NOOP_UI_RECEIVER,
+                    hintReceiver = PagingData.NOOP_HINT_RECEIVER
+                )
+            )
+            advanceUntilIdle()
+            assertThat(combinedLoadStates)
+                .containsExactly(
+                    remoteLoadStatesOf(
+                        prependLocal = Loading,
+                        appendLocal = Loading,
+                    ),
+                    remoteLoadStatesOf(
+                        appendLocal = Loading,
+                    )
+                )
+        }
+
+    @Test
+    fun addLoadStateListener_SynchronouslyUpdates() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            var combinedLoadStates: CombinedLoadStates? = null
+            var itemCount = -1
+            presenter.addLoadStateListener {
                 combinedLoadStates = it
                 itemCount = presenter.size
             }
+
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            initialLoadSize = 10,
+                            prefetchDistance = 1
+                        ),
+                    initialKey = 50
+                ) {
+                    TestPagingSource()
+                }
+            val job = launch { pager.flow.collectLatest { presenter.collectFrom(it) } }
+
+            // Initial refresh
+            advanceUntilIdle()
+            assertEquals(localLoadStatesOf(), combinedLoadStates)
+            assertEquals(10, itemCount)
+            assertEquals(10, presenter.size)
+
+            // Append
+            presenter[9]
+            advanceUntilIdle()
+            assertEquals(localLoadStatesOf(), combinedLoadStates)
+            assertEquals(20, itemCount)
+            assertEquals(20, presenter.size)
+
+            // Prepend
+            presenter[0]
+            advanceUntilIdle()
+            assertEquals(localLoadStatesOf(), combinedLoadStates)
+            assertEquals(30, itemCount)
+            assertEquals(30, presenter.size)
+
+            job.cancel()
         }
 
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 10,
-                enablePlaceholders = false,
-                initialLoadSize = 10,
-                prefetchDistance = 1
-            ),
-            initialKey = 50
-        ) { TestPagingSource() }
-        val job = launch {
-            pager.flow.collectLatest { presenter.collectFrom(it) }
-        }
-
-        // Initial refresh
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(10, itemCount)
-        assertEquals(10, presenter.size)
-
-        // Append
-        presenter[9]
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(20, itemCount)
-        assertEquals(20, presenter.size)
-
-        // Prepend
-        presenter[0]
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(30, itemCount)
-        assertEquals(30, presenter.size)
-
-        job.cancel()
-        loadStateJob.cancel()
-    }
-
     @Test
-    fun loadStateFlow_hasNoInitialValue() = testScope.runTest {
-        val presenter = SimplePresenter()
+    fun addLoadStateListener_hasNoInitialValue() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val combinedLoadStateCapture = CombinedLoadStatesCapture()
 
-        // Should not immediately emit without a real value to a new collector.
-        val combinedLoadStates = mutableListOf<CombinedLoadStates>()
-        val loadStateJob = launch {
-            presenter.nonNullLoadStateFlow.collect {
-                combinedLoadStates.add(it)
-            }
-        }
-        assertThat(combinedLoadStates).isEmpty()
+            // Adding a new listener without a real value should not trigger it.
+            presenter.addLoadStateListener(combinedLoadStateCapture)
+            assertThat(combinedLoadStateCapture.newEvents()).isEmpty()
 
-        // Add a real value and now we should emit to collector.
-        presenter.collectFrom(
-            PagingData.empty(
-                sourceLoadStates = loadStates(
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete
+            // Add a real value and now the listener should trigger.
+            presenter.collectFrom(
+                PagingData.empty(
+                    sourceLoadStates =
+                        loadStates(
+                            prepend = NotLoading.Complete,
+                            append = NotLoading.Complete,
+                        )
                 )
             )
-        )
-        assertThat(combinedLoadStates).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-            )
-        )
-
-        // Should emit real values to new collectors immediately
-        val newCombinedLoadStates = mutableListOf<CombinedLoadStates>()
-        val newLoadStateJob = launch {
-            presenter.nonNullLoadStateFlow.collect {
-                newCombinedLoadStates.add(it)
-            }
-        }
-        assertThat(newCombinedLoadStates).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-            )
-        )
-
-        loadStateJob.cancel()
-        newLoadStateJob.cancel()
-    }
-
-    @Test
-    fun loadStateFlow_preservesLoadStatesOnEmptyList() = testScope.runTest {
-        val presenter = SimplePresenter()
-
-        // Should not immediately emit without a real value to a new collector.
-        val combinedLoadStates = mutableListOf<CombinedLoadStates>()
-        val loadStateJob = launch {
-            presenter.nonNullLoadStateFlow.collect {
-                combinedLoadStates.add(it)
-            }
-        }
-        assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
-
-        // Send a static list without load states, which should not send anything.
-        presenter.collectFrom(PagingData.empty())
-        assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
-
-        // Send a real LoadStateUpdate.
-        presenter.collectFrom(
-            PagingData(
-                flow = flowOf(
-                    remoteLoadStateUpdate(
-                        refreshLocal = Loading,
-                        prependLocal = Loading,
-                        appendLocal = Loading,
-                        refreshRemote = Loading,
-                        prependRemote = Loading,
-                        appendRemote = Loading,
+            assertThat(combinedLoadStateCapture.newEvents())
+                .containsExactly(
+                    localLoadStatesOf(
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
                     )
-                ),
-                uiReceiver = PagingData.NOOP_UI_RECEIVER,
-                hintReceiver = PagingData.NOOP_HINT_RECEIVER
-            )
-        )
-        assertThat(combinedLoadStates.getAllAndClear()).containsExactly(
-            remoteLoadStatesOf(
-                refresh = Loading,
-                prepend = Loading,
-                append = Loading,
-                refreshLocal = Loading,
-                prependLocal = Loading,
-                appendLocal = Loading,
-                refreshRemote = Loading,
-                prependRemote = Loading,
-                appendRemote = Loading,
-            )
-        )
-
-        // Send a static list without load states, which should preserve the previous state.
-        presenter.collectFrom(PagingData.empty())
-        // Existing observers should not receive any updates
-        assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
-        // New observers should receive the previous state.
-        val newCombinedLoadStates = mutableListOf<CombinedLoadStates>()
-        val newLoadStateJob = launch {
-            presenter.nonNullLoadStateFlow.collect {
-                newCombinedLoadStates.add(it)
-            }
-        }
-        assertThat(newCombinedLoadStates.getAllAndClear()).containsExactly(
-            remoteLoadStatesOf(
-                refresh = Loading,
-                prepend = Loading,
-                append = Loading,
-                refreshLocal = Loading,
-                prependLocal = Loading,
-                appendLocal = Loading,
-                refreshRemote = Loading,
-                prependRemote = Loading,
-                appendRemote = Loading,
-            )
-        )
-
-        loadStateJob.cancel()
-        newLoadStateJob.cancel()
-    }
-
-    @Test
-    fun loadStateFlow_preservesLoadStatesOnStaticList() = testScope.runTest {
-        val presenter = SimplePresenter()
-
-        // Should not immediately emit without a real value to a new collector.
-        val combinedLoadStates = mutableListOf<CombinedLoadStates>()
-        val loadStateJob = launch {
-            presenter.nonNullLoadStateFlow.collect {
-                combinedLoadStates.add(it)
-            }
-        }
-        assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
-
-        // Send a static list without load states, which should not send anything.
-        presenter.collectFrom(PagingData.from(listOf(1)))
-        assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
-
-        // Send a real LoadStateUpdate.
-        presenter.collectFrom(
-            PagingData(
-                flow = flowOf(
-                    remoteLoadStateUpdate(
-                        refreshLocal = Loading,
-                        prependLocal = Loading,
-                        appendLocal = Loading,
-                        refreshRemote = Loading,
-                        prependRemote = Loading,
-                        appendRemote = Loading,
-                    )
-                ),
-                uiReceiver = PagingData.NOOP_UI_RECEIVER,
-                hintReceiver = PagingData.NOOP_HINT_RECEIVER
-            )
-        )
-        assertThat(combinedLoadStates.getAllAndClear()).containsExactly(
-            remoteLoadStatesOf(
-                refresh = Loading,
-                prepend = Loading,
-                append = Loading,
-                refreshLocal = Loading,
-                prependLocal = Loading,
-                appendLocal = Loading,
-                refreshRemote = Loading,
-                prependRemote = Loading,
-                appendRemote = Loading,
-            )
-        )
-
-        // Send a static list without load states, which should preserve the previous state.
-        presenter.collectFrom(PagingData.from(listOf(1)))
-        // Existing observers should not receive any updates
-        assertThat(combinedLoadStates.getAllAndClear()).isEmpty()
-        // New observers should receive the previous state.
-        val newCombinedLoadStates = mutableListOf<CombinedLoadStates>()
-        val newLoadStateJob = launch {
-            presenter.nonNullLoadStateFlow.collect {
-                newCombinedLoadStates.add(it)
-            }
-        }
-        assertThat(newCombinedLoadStates.getAllAndClear()).containsExactly(
-            remoteLoadStatesOf(
-                refresh = Loading,
-                prepend = Loading,
-                append = Loading,
-                refreshLocal = Loading,
-                prependLocal = Loading,
-                appendLocal = Loading,
-                refreshRemote = Loading,
-                prependRemote = Loading,
-                appendRemote = Loading,
-            )
-        )
-
-        loadStateJob.cancel()
-        newLoadStateJob.cancel()
-    }
-
-    @Test
-    fun loadStateFlow_deduplicate() = testScope.runTest {
-        val presenter = SimplePresenter()
-
-        val combinedLoadStates = mutableListOf<CombinedLoadStates>()
-        backgroundScope.launch {
-            presenter.nonNullLoadStateFlow.collect {
-                combinedLoadStates.add(it)
-            }
-        }
-
-        presenter.collectFrom(
-            PagingData(
-                flow = flowOf(
-                    remoteLoadStateUpdate(
-                        prependLocal = Loading,
-                        appendLocal = Loading,
-                    ),
-                    remoteLoadStateUpdate(
-                        appendLocal = Loading,
-                    ),
-                    // duplicate update
-                    remoteLoadStateUpdate(
-                        appendLocal = Loading,
-                    ),
-                ),
-                uiReceiver = PagingData.NOOP_UI_RECEIVER,
-                hintReceiver = PagingData.NOOP_HINT_RECEIVER
-            )
-        )
-        advanceUntilIdle()
-        assertThat(combinedLoadStates).containsExactly(
-            remoteLoadStatesOf(
-                prependLocal = Loading,
-                appendLocal = Loading,
-            ),
-            remoteLoadStatesOf(
-                appendLocal = Loading,
-            )
-        )
-    }
-
-    @Test
-    fun loadStateFlowListeners_deduplicate() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val combinedLoadStates = mutableListOf<CombinedLoadStates>()
-
-        presenter.addLoadStateListener {
-            combinedLoadStates.add(it)
-        }
-
-        presenter.collectFrom(
-            PagingData(
-                flow = flowOf(
-                    remoteLoadStateUpdate(
-                        prependLocal = Loading,
-                        appendLocal = Loading,
-                    ),
-                    remoteLoadStateUpdate(
-                        appendLocal = Loading,
-                    ),
-                    // duplicate update
-                    remoteLoadStateUpdate(
-                        appendLocal = Loading,
-                    ),
-                ),
-                uiReceiver = PagingData.NOOP_UI_RECEIVER,
-                hintReceiver = PagingData.NOOP_HINT_RECEIVER
-            )
-        )
-        advanceUntilIdle()
-        assertThat(combinedLoadStates).containsExactly(
-            remoteLoadStatesOf(
-                prependLocal = Loading,
-                appendLocal = Loading,
-            ),
-            remoteLoadStatesOf(
-                appendLocal = Loading,
-            )
-        )
-    }
-
-    @Test
-    fun addLoadStateListener_SynchronouslyUpdates() = testScope.runTest {
-        val presenter = SimplePresenter()
-        var combinedLoadStates: CombinedLoadStates? = null
-        var itemCount = -1
-        presenter.addLoadStateListener {
-            combinedLoadStates = it
-            itemCount = presenter.size
-        }
-
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 10,
-                enablePlaceholders = false,
-                initialLoadSize = 10,
-                prefetchDistance = 1
-            ),
-            initialKey = 50
-        ) { TestPagingSource() }
-        val job = launch {
-            pager.flow.collectLatest { presenter.collectFrom(it) }
-        }
-
-        // Initial refresh
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(10, itemCount)
-        assertEquals(10, presenter.size)
-
-        // Append
-        presenter[9]
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(20, itemCount)
-        assertEquals(20, presenter.size)
-
-        // Prepend
-        presenter[0]
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(30, itemCount)
-        assertEquals(30, presenter.size)
-
-        job.cancel()
-    }
-
-    @Test
-    fun addLoadStateListener_hasNoInitialValue() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val combinedLoadStateCapture = CombinedLoadStatesCapture()
-
-        // Adding a new listener without a real value should not trigger it.
-        presenter.addLoadStateListener(combinedLoadStateCapture)
-        assertThat(combinedLoadStateCapture.newEvents()).isEmpty()
-
-        // Add a real value and now the listener should trigger.
-        presenter.collectFrom(
-            PagingData.empty(
-                sourceLoadStates = loadStates(
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete,
                 )
-            )
-        )
-        assertThat(combinedLoadStateCapture.newEvents()).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-            )
-        )
 
-        // Should emit real values to new listeners immediately
-        val newCombinedLoadStateCapture = CombinedLoadStatesCapture()
-        presenter.addLoadStateListener(newCombinedLoadStateCapture)
-        assertThat(newCombinedLoadStateCapture.newEvents()).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-            )
-        )
-    }
+            // Should emit real values to new listeners immediately
+            val newCombinedLoadStateCapture = CombinedLoadStatesCapture()
+            presenter.addLoadStateListener(newCombinedLoadStateCapture)
+            assertThat(newCombinedLoadStateCapture.newEvents())
+                .containsExactly(
+                    localLoadStatesOf(
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                    )
+                )
+        }
 
     @Test
-    fun uncaughtException() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val pager = Pager(
-            PagingConfig(1),
-        ) {
-            object : PagingSource<Int, Int>() {
-                override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-                    throw IllegalStateException()
+    fun uncaughtException() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val pager =
+                Pager(
+                    PagingConfig(1),
+                ) {
+                    object : PagingSource<Int, Int>() {
+                        override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                            throw IllegalStateException()
+                        }
+
+                        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
+                    }
                 }
 
-                override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-            }
-        }
+            val pagingData = pager.flow.first()
+            val deferred = async(Job()) { presenter.collectFrom(pagingData) }
 
-        val pagingData = pager.flow.first()
-        val deferred = async(Job()) {
-            presenter.collectFrom(pagingData)
+            advanceUntilIdle()
+            assertFailsWith<IllegalStateException> { deferred.await() }
         }
 
-        advanceUntilIdle()
-        assertFailsWith<IllegalStateException> { deferred.await() }
-    }
-
     @Test
-    fun handledLoadResultInvalid() = testScope.runTest {
-        val presenter = SimplePresenter()
-        var generation = 0
-        val pager = Pager(
-            PagingConfig(1),
-        ) {
-            TestPagingSource().also {
-                if (generation == 0) {
-                    it.nextLoadResult = LoadResult.Invalid()
+    fun handledLoadResultInvalid() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            var generation = 0
+            val pager =
+                Pager(
+                    PagingConfig(1),
+                ) {
+                    TestPagingSource().also {
+                        if (generation == 0) {
+                            it.nextLoadResult = LoadResult.Invalid()
+                        }
+                        generation++
+                    }
                 }
-                generation++
+
+            val pagingData = pager.flow.first()
+            val deferred = async {
+                // only returns if flow is closed, or work canclled, or exception thrown
+                // in this case it should cancel due LoadResult.Invalid causing collectFrom to
+                // return
+                presenter.collectFrom(pagingData)
             }
+
+            advanceUntilIdle()
+            // this will return only if presenter.collectFrom returns
+            deferred.await()
         }
 
-        val pagingData = pager.flow.first()
-        val deferred = async {
-            // only returns if flow is closed, or work canclled, or exception thrown
-            // in this case it should cancel due LoadResult.Invalid causing collectFrom to return
-            presenter.collectFrom(pagingData)
-        }
+    @Test fun refresh_pagingDataEvent() = refresh_pagingDataEvent(false)
 
-        advanceUntilIdle()
-        // this will return only if presenter.collectFrom returns
-        deferred.await()
-    }
-
-    @Test
-    fun refresh_pagingDataEvent() = refresh_pagingDataEvent(false)
-
-    @Test
-    fun refresh_pagingDataEvent_collectWithCachedIn() = refresh_pagingDataEvent(true)
+    @Test fun refresh_pagingDataEvent_collectWithCachedIn() = refresh_pagingDataEvent(true)
 
     private fun refresh_pagingDataEvent(collectWithCachedIn: Boolean) =
         runTest(collectWithCachedIn, initialKey = 50) { presenter, _, _, _ ->
             // execute queued initial REFRESH
             advanceUntilIdle()
 
-            val event = PageStore(
-                pages = listOf(
-                    TransformablePage(
-                        originalPageOffsets = intArrayOf(0),
-                        data = listOf(50, 51, 52, 53, 54, 55, 56, 57, 58),
-                        hintOriginalPageOffset = 0,
-                        hintOriginalIndices = null,
-                    )
-                ),
-                placeholdersBefore = 0,
-                placeholdersAfter = 0,
-            ) as PlaceholderPaddedList<Int>
+            val event =
+                PageStore(
+                    pages =
+                        listOf(
+                            TransformablePage(
+                                originalPageOffsets = intArrayOf(0),
+                                data = listOf(50, 51, 52, 53, 54, 55, 56, 57, 58),
+                                hintOriginalPageOffset = 0,
+                                hintOriginalIndices = null,
+                            )
+                        ),
+                    placeholdersBefore = 0,
+                    placeholdersAfter = 0,
+                )
+                    as PlaceholderPaddedList<Int>
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
-            assertThat(presenter.newEvents()).containsExactly(
-                PagingDataEvent.Refresh(
-                    previousList = PageStore.initial<Int>(null) as PlaceholderPaddedList<Int>,
-                    newList = event
+            assertThat(presenter.newEvents())
+                .containsExactly(
+                    PagingDataEvent.Refresh(
+                        previousList = PageStore.initial<Int>(null) as PlaceholderPaddedList<Int>,
+                        newList = event
+                    )
                 )
-            )
 
             presenter.refresh()
 
@@ -1461,30 +1477,32 @@
 
             // // second refresh loads from initialKey = 0 because anchorPosition/refreshKey is null
             assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-            assertThat(presenter.newEvents()).containsExactly(
-                PagingDataEvent.Refresh(
-                    previousList = event,
-                    newList = PageStore(
-                        pages = listOf(
-                            TransformablePage(
-                                originalPageOffsets = intArrayOf(0),
-                                data = listOf(0, 1, 2, 3, 4, 5, 6, 7, 8),
-                                hintOriginalPageOffset = 0,
-                                hintOriginalIndices = null,
+            assertThat(presenter.newEvents())
+                .containsExactly(
+                    PagingDataEvent.Refresh(
+                        previousList = event,
+                        newList =
+                            PageStore(
+                                pages =
+                                    listOf(
+                                        TransformablePage(
+                                            originalPageOffsets = intArrayOf(0),
+                                            data = listOf(0, 1, 2, 3, 4, 5, 6, 7, 8),
+                                            hintOriginalPageOffset = 0,
+                                            hintOriginalIndices = null,
+                                        )
+                                    ),
+                                placeholdersBefore = 0,
+                                placeholdersAfter = 0,
                             )
-                        ),
-                        placeholdersBefore = 0,
-                        placeholdersAfter = 0,
-                    ) as PlaceholderPaddedList<Int>
+                                as PlaceholderPaddedList<Int>
+                    )
                 )
-            )
         }
 
-    @Test
-    fun append_pagingDataEvent() = append_pagingDataEvent(false)
+    @Test fun append_pagingDataEvent() = append_pagingDataEvent(false)
 
-    @Test
-    fun append_pagingDataEvent_collectWithCachedIn() = append_pagingDataEvent(true)
+    @Test fun append_pagingDataEvent_collectWithCachedIn() = append_pagingDataEvent(true)
 
     private fun append_pagingDataEvent(collectWithCachedIn: Boolean) =
         runTest(collectWithCachedIn) { presenter, _, _, _ ->
@@ -1499,31 +1517,26 @@
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
-            assertThat(presenter.newEvents().last()).isEqualTo(
-                PagingDataEvent.Append(
-                    startIndex = 9,
-                    inserted = listOf(9, 10, 11),
-                    newPlaceholdersAfter = 0,
-                    oldPlaceholdersAfter = 0
+            assertThat(presenter.newEvents().last())
+                .isEqualTo(
+                    PagingDataEvent.Append(
+                        startIndex = 9,
+                        inserted = listOf(9, 10, 11),
+                        newPlaceholdersAfter = 0,
+                        oldPlaceholdersAfter = 0
+                    )
                 )
-            )
         }
 
-    @Test
-    fun appendDrop_pagingDataEvent() = appendDrop_pagingDataEvent(false)
+    @Test fun appendDrop_pagingDataEvent() = appendDrop_pagingDataEvent(false)
 
-    @Test
-    fun appendDrop_pagingDataEvent_collectWithCachedIn() = appendDrop_pagingDataEvent(true)
+    @Test fun appendDrop_pagingDataEvent_collectWithCachedIn() = appendDrop_pagingDataEvent(true)
 
     private fun appendDrop_pagingDataEvent(collectWithCachedIn: Boolean) =
         runTest(
             collectWithCachedIn,
             initialKey = 96,
-            config = PagingConfig(
-                pageSize = 1,
-                maxSize = 4,
-                enablePlaceholders = false
-            )
+            config = PagingConfig(pageSize = 1, maxSize = 4, enablePlaceholders = false)
         ) { presenter, _, _, _ ->
             // initial REFRESH
             advanceUntilIdle()
@@ -1535,35 +1548,35 @@
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(96 until 100)
-            assertThat(presenter.newEvents().last()).isEqualTo(
-                PagingDataEvent.Append(
-                    startIndex = 3,
-                    inserted = listOf(99),
-                    newPlaceholdersAfter = 0,
-                    oldPlaceholdersAfter = 0
+            assertThat(presenter.newEvents().last())
+                .isEqualTo(
+                    PagingDataEvent.Append(
+                        startIndex = 3,
+                        inserted = listOf(99),
+                        newPlaceholdersAfter = 0,
+                        oldPlaceholdersAfter = 0
+                    )
                 )
-            )
             // trigger prepend and drop from append direction
             presenter[0]
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(95 until 99)
             // drop is processed before inserts
-            assertThat(presenter.newEvents().first()).isEqualTo(
-                PagingDataEvent.DropAppend<Int>(
-                    startIndex = 3,
-                    dropCount = 1,
-                    newPlaceholdersAfter = 0,
-                    oldPlaceholdersAfter = 0
+            assertThat(presenter.newEvents().first())
+                .isEqualTo(
+                    PagingDataEvent.DropAppend<Int>(
+                        startIndex = 3,
+                        dropCount = 1,
+                        newPlaceholdersAfter = 0,
+                        oldPlaceholdersAfter = 0
+                    )
                 )
-            )
         }
 
-    @Test
-    fun prepend_pagingDataEvent() = prepend_pagingDataEvent(false)
+    @Test fun prepend_pagingDataEvent() = prepend_pagingDataEvent(false)
 
-    @Test
-    fun prepend_pagingDataEvent_collectWithCachedIn() = prepend_pagingDataEvent(true)
+    @Test fun prepend_pagingDataEvent_collectWithCachedIn() = prepend_pagingDataEvent(true)
 
     private fun prepend_pagingDataEvent(collectWithCachedIn: Boolean) =
         runTest(collectWithCachedIn, initialKey = 50) { presenter, _, _, _ ->
@@ -1578,30 +1591,25 @@
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(47 until 59)
-            assertThat(presenter.newEvents().last()).isEqualTo(
-                PagingDataEvent.Prepend(
-                    inserted = listOf(47, 48, 49),
-                    newPlaceholdersBefore = 0,
-                    oldPlaceholdersBefore = 0
+            assertThat(presenter.newEvents().last())
+                .isEqualTo(
+                    PagingDataEvent.Prepend(
+                        inserted = listOf(47, 48, 49),
+                        newPlaceholdersBefore = 0,
+                        oldPlaceholdersBefore = 0
+                    )
                 )
-            )
         }
 
-    @Test
-    fun prependDrop_pagingDataEvent() = prependDrop_pagingDataEvent(false)
+    @Test fun prependDrop_pagingDataEvent() = prependDrop_pagingDataEvent(false)
 
-    @Test
-    fun prependDrop_pagingDataEvent_collectWithCachedIn() = prependDrop_pagingDataEvent(true)
+    @Test fun prependDrop_pagingDataEvent_collectWithCachedIn() = prependDrop_pagingDataEvent(true)
 
     private fun prependDrop_pagingDataEvent(collectWithCachedIn: Boolean) =
         runTest(
             collectWithCachedIn,
             initialKey = 1,
-            config = PagingConfig(
-                pageSize = 1,
-                maxSize = 4,
-                enablePlaceholders = false
-            )
+            config = PagingConfig(pageSize = 1, maxSize = 4, enablePlaceholders = false)
         ) { presenter, _, _, _ ->
             // initial REFRESH
             advanceUntilIdle()
@@ -1613,13 +1621,14 @@
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 4)
-            assertThat(presenter.newEvents().last()).isEqualTo(
-                PagingDataEvent.Prepend(
-                    inserted = listOf(0),
-                    newPlaceholdersBefore = 0,
-                    oldPlaceholdersBefore = 0
+            assertThat(presenter.newEvents().last())
+                .isEqualTo(
+                    PagingDataEvent.Prepend(
+                        inserted = listOf(0),
+                        newPlaceholdersBefore = 0,
+                        oldPlaceholdersBefore = 0
+                    )
                 )
-            )
 
             // trigger append and drop from prepend direction
             presenter[3]
@@ -1627,50 +1636,50 @@
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(1 until 5)
             // drop is processed before insert
-            assertThat(presenter.newEvents().first()).isEqualTo(
-                PagingDataEvent.DropPrepend<Int>(
-                    dropCount = 1,
-                    newPlaceholdersBefore = 0,
-                    oldPlaceholdersBefore = 0
+            assertThat(presenter.newEvents().first())
+                .isEqualTo(
+                    PagingDataEvent.DropPrepend<Int>(
+                        dropCount = 1,
+                        newPlaceholdersBefore = 0,
+                        oldPlaceholdersBefore = 0
+                    )
                 )
-            )
         }
 
-    @Test
-    fun refresh_loadStates() = refresh_loadStates(false)
+    @Test fun refresh_loadStates() = refresh_loadStates(false)
 
-    @Test
-    fun refresh_loadStates_collectWithCachedIn() = refresh_loadStates(true)
+    @Test fun refresh_loadStates_collectWithCachedIn() = refresh_loadStates(true)
 
     private fun refresh_loadStates(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn, initialKey = 50) { presenter,
-        pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+        runTest(collectWithCachedIn, initialKey = 50) { presenter, pagingSources, _, _ ->
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // execute queued initial REFRESH
-        advanceUntilIdle()
+            // execute queued initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(),
+                )
 
-        presenter.refresh()
+            presenter.refresh()
 
-        // execute second REFRESH load
-        advanceUntilIdle()
+            // execute second REFRESH load
+            advanceUntilIdle()
 
-        // second refresh loads from initialKey = 0 because anchorPosition/refreshKey is null
-        assertThat(pagingSources.size).isEqualTo(2)
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(prependLocal = NotLoading.Complete)
-        )
+            // second refresh loads from initialKey = 0 because anchorPosition/refreshKey is null
+            assertThat(pagingSources.size).isEqualTo(2)
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete)
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
     @Test
     fun refresh_loadStates_afterEndOfPagination() = refresh_loadStates_afterEndOfPagination(false)
@@ -1681,249 +1690,245 @@
 
     private fun refresh_loadStates_afterEndOfPagination(collectWithCachedIn: Boolean) =
         runTest(collectWithCachedIn) { presenter, _, _, _ ->
-        val loadStateCallbacks = mutableListOf<CombinedLoadStates>()
-        presenter.addLoadStateListener {
-            loadStateCallbacks.add(it)
+            val loadStateCallbacks = mutableListOf<CombinedLoadStates>()
+            presenter.addLoadStateListener { loadStateCallbacks.add(it) }
+            val collectLoadStates = launch { presenter.collectLoadStates() }
+            // execute initial refresh
+            advanceUntilIdle()
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(
+                        refreshLocal = NotLoading(endOfPaginationReached = false),
+                        prependLocal = NotLoading(endOfPaginationReached = true)
+                    )
+                )
+            loadStateCallbacks.clear()
+            presenter.refresh()
+            // after a refresh, make sure the loading event comes in 1 piece w/ the end of
+            // pagination
+            // reset
+            advanceUntilIdle()
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(
+                        refreshLocal = Loading,
+                        prependLocal = NotLoading(endOfPaginationReached = false)
+                    ),
+                    localLoadStatesOf(
+                        refreshLocal = NotLoading(endOfPaginationReached = false),
+                        prependLocal = NotLoading(endOfPaginationReached = true)
+                    ),
+                )
+            assertThat(loadStateCallbacks)
+                .containsExactly(
+                    localLoadStatesOf(
+                        refreshLocal = Loading,
+                        prependLocal = NotLoading(endOfPaginationReached = false)
+                    ),
+                    localLoadStatesOf(
+                        refreshLocal = NotLoading(endOfPaginationReached = false),
+                        prependLocal = NotLoading(endOfPaginationReached = true)
+                    ),
+                )
+            collectLoadStates.cancel()
         }
-        val collectLoadStates = launch { presenter.collectLoadStates() }
-        // execute initial refresh
-        advanceUntilIdle()
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(
-                refreshLocal = Loading
-            ),
-            localLoadStatesOf(
-                refreshLocal = NotLoading(endOfPaginationReached = false),
-                prependLocal = NotLoading(endOfPaginationReached = true)
-            )
-        )
-        loadStateCallbacks.clear()
-        presenter.refresh()
-        // after a refresh, make sure the loading event comes in 1 piece w/ the end of pagination
-        // reset
-        advanceUntilIdle()
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(
-                refreshLocal = Loading,
-                prependLocal = NotLoading(endOfPaginationReached = false)
-            ),
-            localLoadStatesOf(
-                refreshLocal = NotLoading(endOfPaginationReached = false),
-                prependLocal = NotLoading(endOfPaginationReached = true)
-            ),
-        )
-        assertThat(loadStateCallbacks).containsExactly(
-            localLoadStatesOf(
-                refreshLocal = Loading,
-                prependLocal = NotLoading(endOfPaginationReached = false)
-            ),
-            localLoadStatesOf(
-                refreshLocal = NotLoading(endOfPaginationReached = false),
-                prependLocal = NotLoading(endOfPaginationReached = true)
-            ),
-        )
-        collectLoadStates.cancel()
-    }
 
     // TODO(b/195028524) the tests from here on checks the state after Invalid/Error results.
     //  Upon changes due to b/195028524, the asserts on these tests should see a new resetting
     //  LoadStateUpdate event
 
-    @Test
-    fun appendInvalid_loadStates() = appendInvalid_loadStates(false)
+    @Test fun appendInvalid_loadStates() = appendInvalid_loadStates(false)
 
-    @Test
-    fun appendInvalid_loadStates_collectWithCachedIn() = appendInvalid_loadStates(true)
+    @Test fun appendInvalid_loadStates_collectWithCachedIn() = appendInvalid_loadStates(true)
 
     private fun appendInvalid_loadStates(collectWithCachedIn: Boolean) =
         runTest(collectWithCachedIn) { presenter, pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // initial REFRESH
-        advanceUntilIdle()
+            // initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(prependLocal = NotLoading.Complete),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
 
-        // normal append
-        presenter[8]
+            // normal append
+            presenter[8]
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = Loading
-            ),
-            localLoadStatesOf(prependLocal = NotLoading.Complete)
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = NotLoading.Complete, appendLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete)
+                )
 
-        // do invalid append which will return LoadResult.Invalid
-        presenter[11]
-        pagingSources[0].nextLoadResult = LoadResult.Invalid()
+            // do invalid append which will return LoadResult.Invalid
+            presenter[11]
+            pagingSources[0].nextLoadResult = LoadResult.Invalid()
 
-        // using advanceTimeBy instead of advanceUntilIdle, otherwise this invalid APPEND + subsequent
-        // REFRESH will auto run consecutively and we won't be able to assert them incrementally
-        advanceTimeBy(1001)
+            // using advanceTimeBy instead of advanceUntilIdle, otherwise this invalid APPEND +
+            // subsequent
+            // REFRESH will auto run consecutively and we won't be able to assert them incrementally
+            advanceTimeBy(1001)
 
-        assertThat(pagingSources.size).isEqualTo(2)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // the invalid append
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = Loading
-            ),
-            // REFRESH on new paging source. Append/Prepend local states is reset because the
-            // LoadStateUpdate from refresh sends the full map of a local LoadStates which was
-            // initialized as IDLE upon new Snapshot.
-            localLoadStatesOf(
-                refreshLocal = Loading,
-            ),
-        )
+            assertThat(pagingSources.size).isEqualTo(2)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // the invalid append
+                    localLoadStatesOf(prependLocal = NotLoading.Complete, appendLocal = Loading),
+                    // REFRESH on new paging source. Append/Prepend local states is reset because
+                    // the
+                    // LoadStateUpdate from refresh sends the full map of a local LoadStates which
+                    // was
+                    // initialized as IDLE upon new Snapshot.
+                    localLoadStatesOf(
+                        refreshLocal = Loading,
+                    ),
+                )
 
-        // the LoadResult.Invalid from failed APPEND triggers new pagingSource + initial REFRESH
-        advanceUntilIdle()
+            // the LoadResult.Invalid from failed APPEND triggers new pagingSource + initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(11 until 20)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(11 until 20)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(),
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun appendDrop_loadStates() = appendDrop_loadStates(false)
+    @Test fun appendDrop_loadStates() = appendDrop_loadStates(false)
 
-    @Test
-    fun appendDrop_loadStates_collectWithCachedIn() = appendDrop_loadStates(true)
+    @Test fun appendDrop_loadStates_collectWithCachedIn() = appendDrop_loadStates(true)
 
     private fun appendDrop_loadStates(collectWithCachedIn: Boolean) =
         runTest(
             collectWithCachedIn,
             initialKey = 96,
-            config = PagingConfig(
-                pageSize = 1,
-                maxSize = 4,
-                enablePlaceholders = false
-            )
+            config = PagingConfig(pageSize = 1, maxSize = 4, enablePlaceholders = false)
         ) { presenter, _, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // initial REFRESH
-        advanceUntilIdle()
+            // initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(96 until 99)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            // ensure append has reached end of pagination
-            localLoadStatesOf(),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(96 until 99)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    // ensure append has reached end of pagination
+                    localLoadStatesOf(),
+                )
 
-        // trigger append to reach max page size
-        presenter[2]
-        advanceUntilIdle()
+            // trigger append to reach max page size
+            presenter[2]
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(96 until 100)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(appendLocal = Loading),
-            localLoadStatesOf(appendLocal = NotLoading.Complete),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(96 until 100)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(appendLocal = Loading),
+                    localLoadStatesOf(appendLocal = NotLoading.Complete),
+                )
 
-        // trigger prepend and drop from append direction
-        presenter[0]
-        advanceUntilIdle()
+            // trigger prepend and drop from append direction
+            presenter[0]
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(95 until 99)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(prependLocal = Loading, appendLocal = NotLoading.Complete),
-            // page from the end is dropped so now appendLocal should be NotLoading.Incomplete
-            localLoadStatesOf(prependLocal = Loading),
-            localLoadStatesOf(),
-        )
-        collectLoadStates.cancel()
-    }
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(95 until 99)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = Loading, appendLocal = NotLoading.Complete),
+                    // page from the end is dropped so now appendLocal should be
+                    // NotLoading.Incomplete
+                    localLoadStatesOf(prependLocal = Loading),
+                    localLoadStatesOf(),
+                )
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun prependInvalid_loadStates() = prependInvalid_loadStates(false)
+    @Test fun prependInvalid_loadStates() = prependInvalid_loadStates(false)
 
-    @Test
-    fun prependInvalid_loadStates_collectWithCachedIn() = prependInvalid_loadStates(true)
+    @Test fun prependInvalid_loadStates_collectWithCachedIn() = prependInvalid_loadStates(true)
 
     private fun prependInvalid_loadStates(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn, initialKey = 50) { presenter,
-        pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+        runTest(collectWithCachedIn, initialKey = 50) { presenter, pagingSources, _, _ ->
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // initial REFRESH
-        advanceUntilIdle()
+            // initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            // all local states NotLoading.Incomplete
-            localLoadStatesOf(),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    // all local states NotLoading.Incomplete
+                    localLoadStatesOf(),
+                )
 
-        // normal prepend to ensure LoadStates for Page returns remains the same
-        presenter[0]
+            // normal prepend to ensure LoadStates for Page returns remains the same
+            presenter[0]
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(47 until 59)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(prependLocal = Loading),
-            // all local states NotLoading.Incomplete
-            localLoadStatesOf(),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(47 until 59)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = Loading),
+                    // all local states NotLoading.Incomplete
+                    localLoadStatesOf(),
+                )
 
-        // do an invalid prepend which will return LoadResult.Invalid
-        presenter[0]
-        pagingSources[0].nextLoadResult = LoadResult.Invalid()
-        advanceTimeBy(1001)
+            // do an invalid prepend which will return LoadResult.Invalid
+            presenter[0]
+            pagingSources[0].nextLoadResult = LoadResult.Invalid()
+            advanceTimeBy(1001)
 
-        assertThat(pagingSources.size).isEqualTo(2)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // the invalid prepend
-            localLoadStatesOf(prependLocal = Loading),
-            // REFRESH on new paging source. Append/Prepend local states is reset because the
-            // LoadStateUpdate from refresh sends the full map of a local LoadStates which was
-            // initialized as IDLE upon new Snapshot.
-            localLoadStatesOf(refreshLocal = Loading),
-        )
+            assertThat(pagingSources.size).isEqualTo(2)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // the invalid prepend
+                    localLoadStatesOf(prependLocal = Loading),
+                    // REFRESH on new paging source. Append/Prepend local states is reset because
+                    // the
+                    // LoadStateUpdate from refresh sends the full map of a local LoadStates which
+                    // was
+                    // initialized as IDLE upon new Snapshot.
+                    localLoadStatesOf(refreshLocal = Loading),
+                )
 
-        // the LoadResult.Invalid from failed PREPEND triggers new pagingSource + initial REFRESH
-        advanceUntilIdle()
+            // the LoadResult.Invalid from failed PREPEND triggers new pagingSource + initial
+            // REFRESH
+            advanceUntilIdle()
 
-        // load starts from 0 again because the provided initialKey = 50 is not multi-generational
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(prependLocal = NotLoading.Complete),
-        )
+            // load starts from 0 again because the provided initialKey = 50 is not
+            // multi-generational
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun prependDrop_loadStates() = prependDrop_loadStates(false)
+    @Test fun prependDrop_loadStates() = prependDrop_loadStates(false)
 
-    @Test
-    fun prependDrop_loadStates_collectWithCachedIn() = prependDrop_loadStates(true)
+    @Test fun prependDrop_loadStates_collectWithCachedIn() = prependDrop_loadStates(true)
 
     private fun prependDrop_loadStates(collectWithCachedIn: Boolean) =
         runTest(
             collectWithCachedIn,
             initialKey = 1,
-            config = PagingConfig(
-                pageSize = 1,
-                maxSize = 4,
-                enablePlaceholders = false
-            )
+            config = PagingConfig(pageSize = 1, maxSize = 4, enablePlaceholders = false)
         ) { presenter, _, _, _ ->
             val collectLoadStates = launch { presenter.collectLoadStates() }
 
@@ -1931,447 +1936,445 @@
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(1 until 4)
-            assertThat(presenter.newCombinedLoadStates()).containsExactly(
-                localLoadStatesOf(refreshLocal = Loading),
-                // ensure append has reached end of pagination
-                localLoadStatesOf(),
-            )
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    // ensure append has reached end of pagination
+                    localLoadStatesOf(),
+                )
 
             // trigger prepend to reach max page size
             presenter[0]
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 4)
-            assertThat(presenter.newCombinedLoadStates()).containsExactly(
-                localLoadStatesOf(prependLocal = Loading),
-                localLoadStatesOf(prependLocal = NotLoading.Complete),
-            )
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
 
             // trigger append and drop from prepend direction
             presenter[3]
             advanceUntilIdle()
 
             assertThat(presenter.snapshot()).containsExactlyElementsIn(1 until 5)
-            assertThat(presenter.newCombinedLoadStates()).containsExactly(
-                localLoadStatesOf(prependLocal = NotLoading.Complete, appendLocal = Loading),
-                // first page is dropped so now prependLocal should be NotLoading.Incomplete
-                localLoadStatesOf(appendLocal = Loading),
-                localLoadStatesOf(),
-            )
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = NotLoading.Complete, appendLocal = Loading),
+                    // first page is dropped so now prependLocal should be NotLoading.Incomplete
+                    localLoadStatesOf(appendLocal = Loading),
+                    localLoadStatesOf(),
+                )
 
             collectLoadStates.cancel()
         }
 
-    @Test
-    fun refreshInvalid_loadStates() = refreshInvalid_loadStates(false)
+    @Test fun refreshInvalid_loadStates() = refreshInvalid_loadStates(false)
 
-    @Test
-    fun refreshInvalid_loadStates_collectWithCachedIn() = refreshInvalid_loadStates(true)
+    @Test fun refreshInvalid_loadStates_collectWithCachedIn() = refreshInvalid_loadStates(true)
 
     private fun refreshInvalid_loadStates(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn, initialKey = 50) { presenter,
-        pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+        runTest(collectWithCachedIn, initialKey = 50) { presenter, pagingSources, _, _ ->
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // execute queued initial REFRESH load which will return LoadResult.Invalid()
-        pagingSources[0].nextLoadResult = LoadResult.Invalid()
-        advanceTimeBy(1001)
+            // execute queued initial REFRESH load which will return LoadResult.Invalid()
+            pagingSources[0].nextLoadResult = LoadResult.Invalid()
+            advanceTimeBy(1001)
 
-        assertThat(presenter.snapshot()).isEmpty()
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // invalid first refresh. The second refresh state update that follows is identical to
-            // this LoadStates so it gets de-duped
-            localLoadStatesOf(refreshLocal = Loading),
-        )
+            assertThat(presenter.snapshot()).isEmpty()
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // invalid first refresh. The second refresh state update that follows is
+                    // identical to
+                    // this LoadStates so it gets de-duped
+                    localLoadStatesOf(refreshLocal = Loading),
+                )
 
-        // execute second REFRESH load
-        advanceUntilIdle()
+            // execute second REFRESH load
+            advanceUntilIdle()
 
-        // second refresh still loads from initialKey = 50 because anchorPosition/refreshKey is null
-        assertThat(pagingSources.size).isEqualTo(2)
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-            )
-        )
+            // second refresh still loads from initialKey = 50 because anchorPosition/refreshKey is
+            // null
+            assertThat(pagingSources.size).isEqualTo(2)
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(
+                        prependLocal = NotLoading.Complete,
+                    )
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun appendError_retryLoadStates() = appendError_retryLoadStates(false)
+    @Test fun appendError_retryLoadStates() = appendError_retryLoadStates(false)
 
-    @Test
-    fun appendError_retryLoadStates_collectWithCachedIn() = appendError_retryLoadStates(true)
+    @Test fun appendError_retryLoadStates_collectWithCachedIn() = appendError_retryLoadStates(true)
 
     private fun appendError_retryLoadStates(collectWithCachedIn: Boolean) =
         runTest(collectWithCachedIn) { presenter, pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // initial REFRESH
-        advanceUntilIdle()
+            // initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(prependLocal = NotLoading.Complete),
-        )
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
 
-        // append returns LoadResult.Error
-        presenter[8]
-        val exception = Throwable()
-        pagingSources[0].nextLoadResult = LoadResult.Error(exception)
+            // append returns LoadResult.Error
+            presenter[8]
+            val exception = Throwable()
+            pagingSources[0].nextLoadResult = LoadResult.Error(exception)
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = Loading
-            ),
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = LoadState.Error(exception)
-            ),
-        )
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = NotLoading.Complete, appendLocal = Loading),
+                    localLoadStatesOf(
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = LoadState.Error(exception)
+                    ),
+                )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
 
-        // retry append
-        presenter.retry()
-        advanceUntilIdle()
+            // retry append
+            presenter.retry()
+            advanceUntilIdle()
 
-        // make sure append success
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
-        // no reset
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = Loading
-            ),
-            localLoadStatesOf(prependLocal = NotLoading.Complete),
-        )
+            // make sure append success
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 12)
+            // no reset
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = NotLoading.Complete, appendLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun prependError_retryLoadStates() = prependError_retryLoadStates(false)
+    @Test fun prependError_retryLoadStates() = prependError_retryLoadStates(false)
 
     @Test
     fun prependError_retryLoadStates_collectWithCachedIn() = prependError_retryLoadStates(true)
 
     private fun prependError_retryLoadStates(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn, initialKey = 50) { presenter,
-        pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+        runTest(collectWithCachedIn, initialKey = 50) { presenter, pagingSources, _, _ ->
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // initial REFRESH
-        advanceUntilIdle()
+            // initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(),
-        )
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(),
+                )
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
 
-        // prepend returns LoadResult.Error
-        presenter[0]
-        val exception = Throwable()
-        pagingSources[0].nextLoadResult = LoadResult.Error(exception)
+            // prepend returns LoadResult.Error
+            presenter[0]
+            val exception = Throwable()
+            pagingSources[0].nextLoadResult = LoadResult.Error(exception)
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(prependLocal = Loading),
-            localLoadStatesOf(prependLocal = LoadState.Error(exception)),
-        )
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = Loading),
+                    localLoadStatesOf(prependLocal = LoadState.Error(exception)),
+                )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
 
-        // retry prepend
-        presenter.retry()
+            // retry prepend
+            presenter.retry()
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        // make sure prepend success
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(47 until 59)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(prependLocal = Loading),
-            localLoadStatesOf(),
-        )
+            // make sure prepend success
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(47 until 59)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = Loading),
+                    localLoadStatesOf(),
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun refreshError_retryLoadStates() = refreshError_retryLoadStates(false)
+    @Test fun refreshError_retryLoadStates() = refreshError_retryLoadStates(false)
 
     @Test
     fun refreshError_retryLoadStates_collectWithCachedIn() = refreshError_retryLoadStates(true)
 
     private fun refreshError_retryLoadStates(collectWithCachedIn: Boolean) =
         runTest(collectWithCachedIn) { presenter, pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // initial load returns LoadResult.Error
-        val exception = Throwable()
-        pagingSources[0].nextLoadResult = LoadResult.Error(exception)
+            // initial load returns LoadResult.Error
+            val exception = Throwable()
+            pagingSources[0].nextLoadResult = LoadResult.Error(exception)
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(refreshLocal = LoadState.Error(exception)),
-        )
-        assertThat(presenter.snapshot()).isEmpty()
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(refreshLocal = LoadState.Error(exception)),
+                )
+            assertThat(presenter.snapshot()).isEmpty()
 
-        // retry refresh
-        presenter.retry()
+            // retry refresh
+            presenter.retry()
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        // refresh retry does not trigger new gen
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        // Goes directly from Error --> Loading without resetting refresh to NotLoading
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(prependLocal = NotLoading.Complete),
-        )
+            // refresh retry does not trigger new gen
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            // Goes directly from Error --> Loading without resetting refresh to NotLoading
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun prependError_refreshLoadStates() = prependError_refreshLoadStates(false)
+    @Test fun prependError_refreshLoadStates() = prependError_refreshLoadStates(false)
 
     @Test
     fun prependError_refreshLoadStates_collectWithCachedIn() = prependError_refreshLoadStates(true)
 
     private fun prependError_refreshLoadStates(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn, initialKey = 50) { presenter,
-        pagingSources, _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+        runTest(collectWithCachedIn, initialKey = 50) { presenter, pagingSources, _, _ ->
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // initial REFRESH
-        advanceUntilIdle()
+            // initial REFRESH
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(),
-        )
-        assertThat(presenter.size).isEqualTo(9)
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(),
+                )
+            assertThat(presenter.size).isEqualTo(9)
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(50 until 59)
 
-        // prepend returns LoadResult.Error
-        presenter[0]
-        val exception = Throwable()
-        pagingSources[0].nextLoadResult = LoadResult.Error(exception)
+            // prepend returns LoadResult.Error
+            presenter[0]
+            val exception = Throwable()
+            pagingSources[0].nextLoadResult = LoadResult.Error(exception)
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(prependLocal = Loading),
-            localLoadStatesOf(prependLocal = LoadState.Error(exception)),
-        )
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(prependLocal = Loading),
+                    localLoadStatesOf(prependLocal = LoadState.Error(exception)),
+                )
 
-        // refresh() should reset local LoadStates and trigger new REFRESH
-        presenter.refresh()
-        advanceUntilIdle()
+            // refresh() should reset local LoadStates and trigger new REFRESH
+            presenter.refresh()
+            advanceUntilIdle()
 
-        // Initial load starts from 0 because initialKey is single gen.
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // second gen REFRESH load. The Error prepend state was automatically reset to
-            // NotLoading.
-            localLoadStatesOf(refreshLocal = Loading),
-            // REFRESH complete
-            localLoadStatesOf(prependLocal = NotLoading.Complete),
-        )
+            // Initial load starts from 0 because initialKey is single gen.
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // second gen REFRESH load. The Error prepend state was automatically reset to
+                    // NotLoading.
+                    localLoadStatesOf(refreshLocal = Loading),
+                    // REFRESH complete
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
-    @Test
-    fun refreshError_refreshLoadStates() = refreshError_refreshLoadStates(false)
+    @Test fun refreshError_refreshLoadStates() = refreshError_refreshLoadStates(false)
 
     @Test
     fun refreshError_refreshLoadStates_collectWithCachedIn() = refreshError_refreshLoadStates(true)
 
     private fun refreshError_refreshLoadStates(collectWithCachedIn: Boolean) =
-        runTest(collectWithCachedIn) { presenter, pagingSources,
-        _, _ ->
-        val collectLoadStates = launch { presenter.collectLoadStates() }
+        runTest(collectWithCachedIn) { presenter, pagingSources, _, _ ->
+            val collectLoadStates = launch { presenter.collectLoadStates() }
 
-        // the initial load will return LoadResult.Error
-        val exception = Throwable()
-        pagingSources[0].nextLoadResult = LoadResult.Error(exception)
+            // the initial load will return LoadResult.Error
+            val exception = Throwable()
+            pagingSources[0].nextLoadResult = LoadResult.Error(exception)
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(refreshLocal = LoadState.Error(exception)),
-        )
-        assertThat(presenter.snapshot()).isEmpty()
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(refreshLocal = LoadState.Error(exception)),
+                )
+            assertThat(presenter.snapshot()).isEmpty()
 
-        // refresh should trigger new generation
-        presenter.refresh()
+            // refresh should trigger new generation
+            presenter.refresh()
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
-        // Goes directly from Error --> Loading without resetting refresh to NotLoading
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf(prependLocal = NotLoading.Complete),
-        )
+            assertThat(presenter.snapshot()).containsExactlyElementsIn(0 until 9)
+            // Goes directly from Error --> Loading without resetting refresh to NotLoading
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(prependLocal = NotLoading.Complete),
+                )
 
-        collectLoadStates.cancel()
-    }
+            collectLoadStates.cancel()
+        }
 
     @Test
-    fun remoteRefresh_refreshStatePersists() = testScope.runTest {
-        val presenter = SimplePresenter()
-        val remoteMediator = RemoteMediatorMock(loadDelay = 1500).apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+    fun remoteRefresh_refreshStatePersists() =
+        testScope.runTest {
+            val presenter = SimplePresenter()
+            val remoteMediator =
+                RemoteMediatorMock(loadDelay = 1500).apply {
+                    initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+                }
+            val pager =
+                Pager(
+                    PagingConfig(pageSize = 3, enablePlaceholders = false),
+                    remoteMediator = remoteMediator,
+                ) {
+                    TestPagingSource(loadDelay = 500, items = emptyList())
+                }
+
+            val collectLoadStates = launch { presenter.collectLoadStates() }
+            val job = launch { pager.flow.collectLatest { presenter.collectFrom(it) } }
+            // allow local refresh to complete but not remote refresh
+            advanceTimeBy(600)
+
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // local starts loading
+                    remoteLoadStatesOf(
+                        refreshLocal = Loading,
+                    ),
+                    // remote starts loading
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                    ),
+                    // local load returns with empty data, mediator is still loading
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                        refreshRemote = Loading,
+                    ),
+                )
+
+            // refresh triggers new generation & LoadState reset
+            presenter.refresh()
+
+            // allow local refresh to complete but not remote refresh
+            advanceTimeBy(600)
+
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // local starts second refresh while mediator continues remote refresh from
+                    // before
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        refreshLocal = Loading,
+                        refreshRemote = Loading,
+                    ),
+                    // local load returns empty data
+                    remoteLoadStatesOf(
+                        refresh = Loading,
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                        refreshRemote = Loading,
+                    ),
+                )
+
+            // allow remote refresh to complete
+            advanceTimeBy(600)
+
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // remote refresh returns empty and triggers remote append/prepend
+                    remoteLoadStatesOf(
+                        prepend = Loading,
+                        append = Loading,
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                        prependRemote = Loading,
+                        appendRemote = Loading,
+                    ),
+                )
+
+            // allow remote append and prepend to complete
+            advanceUntilIdle()
+
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(
+                    // prepend completes first
+                    remoteLoadStatesOf(
+                        append = Loading,
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                        appendRemote = Loading,
+                    ),
+                    remoteLoadStatesOf(
+                        prependLocal = NotLoading.Complete,
+                        appendLocal = NotLoading.Complete,
+                    ),
+                )
+
+            job.cancel()
+            collectLoadStates.cancel()
         }
-        val pager = Pager(
-            PagingConfig(pageSize = 3, enablePlaceholders = false),
-            remoteMediator = remoteMediator,
-        ) {
-            TestPagingSource(loadDelay = 500, items = emptyList())
-        }
-
-        val collectLoadStates = launch { presenter.collectLoadStates() }
-        val job = launch {
-            pager.flow.collectLatest {
-                presenter.collectFrom(it)
-            }
-        }
-        // allow local refresh to complete but not remote refresh
-        advanceTimeBy(600)
-
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // local starts loading
-            remoteLoadStatesOf(
-                refreshLocal = Loading,
-            ),
-            // remote starts loading
-            remoteLoadStatesOf(
-                refresh = Loading,
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            // local load returns with empty data, mediator is still loading
-            remoteLoadStatesOf(
-                refresh = Loading,
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-                refreshRemote = Loading,
-            ),
-        )
-
-        // refresh triggers new generation & LoadState reset
-        presenter.refresh()
-
-        // allow local refresh to complete but not remote refresh
-        advanceTimeBy(600)
-
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // local starts second refresh while mediator continues remote refresh from before
-            remoteLoadStatesOf(
-                refresh = Loading,
-                refreshLocal = Loading,
-                refreshRemote = Loading,
-            ),
-            // local load returns empty data
-            remoteLoadStatesOf(
-                refresh = Loading,
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-                refreshRemote = Loading,
-            ),
-        )
-
-        // allow remote refresh to complete
-        advanceTimeBy(600)
-
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // remote refresh returns empty and triggers remote append/prepend
-            remoteLoadStatesOf(
-                prepend = Loading,
-                append = Loading,
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-                prependRemote = Loading,
-                appendRemote = Loading,
-            ),
-        )
-
-        // allow remote append and prepend to complete
-        advanceUntilIdle()
-
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            // prepend completes first
-            remoteLoadStatesOf(
-                append = Loading,
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-                appendRemote = Loading,
-            ),
-            remoteLoadStatesOf(
-                prependLocal = NotLoading.Complete,
-                appendLocal = NotLoading.Complete,
-            ),
-        )
-
-        job.cancel()
-        collectLoadStates.cancel()
-    }
 
     @Test
-    fun recollectOnNewPresenter_initialLoadStates() = testScope.runTest {
-        val pager = Pager(
-            config = PagingConfig(pageSize = 3, enablePlaceholders = false),
-            initialKey = 50,
-            pagingSourceFactory = { TestPagingSource() }
-        ).flow.cachedIn(this)
+    fun recollectOnNewPresenter_initialLoadStates() =
+        testScope.runTest {
+            val pager =
+                Pager(
+                        config = PagingConfig(pageSize = 3, enablePlaceholders = false),
+                        initialKey = 50,
+                        pagingSourceFactory = { TestPagingSource() }
+                    )
+                    .flow
+                    .cachedIn(this)
 
-        val presenter = SimplePresenter()
-        backgroundScope.launch { presenter.collectLoadStates() }
+            val presenter = SimplePresenter()
+            backgroundScope.launch { presenter.collectLoadStates() }
 
-        val job = launch {
-            pager.collectLatest {
-                presenter.collectFrom(it)
-            }
+            val job = launch { pager.collectLatest { presenter.collectFrom(it) } }
+            advanceUntilIdle()
+
+            assertThat(presenter.newCombinedLoadStates())
+                .containsExactly(localLoadStatesOf(refreshLocal = Loading), localLoadStatesOf())
+
+            // we start a separate presenter to recollect on cached Pager.flow
+            val presenter2 = SimplePresenter()
+            backgroundScope.launch { presenter2.collectLoadStates() }
+
+            val job2 = launch { pager.collectLatest { presenter2.collectFrom(it) } }
+            advanceUntilIdle()
+
+            assertThat(presenter2.newCombinedLoadStates()).containsExactly(localLoadStatesOf())
+
+            job.cancel()
+            job2.cancel()
+            coroutineContext.cancelChildren()
         }
-        advanceUntilIdle()
-
-        assertThat(presenter.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf(refreshLocal = Loading),
-            localLoadStatesOf()
-        )
-
-        // we start a separate presenter to recollect on cached Pager.flow
-        val presenter2 = SimplePresenter()
-        backgroundScope.launch { presenter2.collectLoadStates() }
-
-        val job2 = launch {
-            pager.collectLatest {
-                presenter2.collectFrom(it)
-            }
-        }
-        advanceUntilIdle()
-
-        assertThat(presenter2.newCombinedLoadStates()).containsExactly(
-            localLoadStatesOf()
-        )
-
-        job.cancel()
-        job2.cancel()
-        coroutineContext.cancelChildren()
-    }
 
     @Test
     fun cachedData() {
@@ -2395,11 +2398,12 @@
         val data = List(50) { it }
         val localStates = loadStates(refresh = Loading)
         val mediatorStates = loadStates()
-        val cachedPagingData = createCachedPagingData(
-            data = data,
-            sourceLoadStates = localStates,
-            mediatorLoadStates = mediatorStates
-        )
+        val cachedPagingData =
+            createCachedPagingData(
+                data = data,
+                sourceLoadStates = localStates,
+                mediatorLoadStates = mediatorStates
+            )
         val simplePresenter = SimplePresenter(cachedPagingData)
         val expected = simplePresenter.loadStateFlow.value
         assertThat(expected).isNotNull()
@@ -2408,183 +2412,201 @@
     }
 
     @Test
-    fun cachedData_doesNotSetHintReceiver() = testScope.runTest {
-        val data = List(50) { it }
-        val hintReceiver = HintReceiverFake()
-        val cachedPagingData = createCachedPagingData(
-            data = data,
-            sourceLoadStates = loadStates(refresh = Loading),
-            mediatorLoadStates = null,
-            hintReceiver = hintReceiver
-        )
-        val presenter = SimplePresenter(cachedPagingData)
+    fun cachedData_doesNotSetHintReceiver() =
+        testScope.runTest {
+            val data = List(50) { it }
+            val hintReceiver = HintReceiverFake()
+            val cachedPagingData =
+                createCachedPagingData(
+                    data = data,
+                    sourceLoadStates = loadStates(refresh = Loading),
+                    mediatorLoadStates = null,
+                    hintReceiver = hintReceiver
+                )
+            val presenter = SimplePresenter(cachedPagingData)
 
-        // access item
-        presenter[5]
-        assertThat(hintReceiver.hints).hasSize(0)
+            // access item
+            presenter[5]
+            assertThat(hintReceiver.hints).hasSize(0)
 
-        val flow = flowOf(
-            localRefresh(pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4)))),
-        )
-        val hintReceiver2 = HintReceiverFake()
+            val flow =
+                flowOf(
+                    localRefresh(pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4)))),
+                )
+            val hintReceiver2 = HintReceiverFake()
 
-        val job1 = launch {
-            presenter.collectFrom(PagingData(flow, dummyUiReceiver, hintReceiver2))
+            val job1 = launch {
+                presenter.collectFrom(PagingData(flow, dummyUiReceiver, hintReceiver2))
+            }
+
+            // access item, hint should be sent to the first uncached PagingData
+            presenter[3]
+            assertThat(hintReceiver.hints).hasSize(0)
+            assertThat(hintReceiver2.hints).hasSize(1)
+            job1.cancel()
         }
 
-        // access item, hint should be sent to the first uncached PagingData
-        presenter[3]
-        assertThat(hintReceiver.hints).hasSize(0)
-        assertThat(hintReceiver2.hints).hasSize(1)
-        job1.cancel()
-    }
-
     @Test
-    fun cachedData_doesNotSetUiReceiver() = testScope.runTest {
-        val data = List(50) { it }
-        val uiReceiver = UiReceiverFake()
-        val cachedPagingData = createCachedPagingData(
-            data = data,
-            sourceLoadStates = loadStates(refresh = Loading),
-            mediatorLoadStates = null,
-            uiReceiver = uiReceiver
-        )
-        val presenter = SimplePresenter(cachedPagingData)
-        presenter.refresh()
-        advanceUntilIdle()
-        assertThat(uiReceiver.refreshEvents).hasSize(0)
+    fun cachedData_doesNotSetUiReceiver() =
+        testScope.runTest {
+            val data = List(50) { it }
+            val uiReceiver = UiReceiverFake()
+            val cachedPagingData =
+                createCachedPagingData(
+                    data = data,
+                    sourceLoadStates = loadStates(refresh = Loading),
+                    mediatorLoadStates = null,
+                    uiReceiver = uiReceiver
+                )
+            val presenter = SimplePresenter(cachedPagingData)
+            presenter.refresh()
+            advanceUntilIdle()
+            assertThat(uiReceiver.refreshEvents).hasSize(0)
 
-        val flow = flowOf(
-            localRefresh(pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4)))),
-        )
-        val uiReceiver2 = UiReceiverFake()
-        val job1 = launch {
-            presenter.collectFrom(PagingData(flow, uiReceiver2, dummyHintReceiver))
+            val flow =
+                flowOf(
+                    localRefresh(pages = listOf(TransformablePage(listOf(0, 1, 2, 3, 4)))),
+                )
+            val uiReceiver2 = UiReceiverFake()
+            val job1 = launch {
+                presenter.collectFrom(PagingData(flow, uiReceiver2, dummyHintReceiver))
+            }
+            presenter.refresh()
+            assertThat(uiReceiver.refreshEvents).hasSize(0)
+            assertThat(uiReceiver2.refreshEvents).hasSize(1)
+            job1.cancel()
         }
-        presenter.refresh()
-        assertThat(uiReceiver.refreshEvents).hasSize(0)
-        assertThat(uiReceiver2.refreshEvents).hasSize(1)
-        job1.cancel()
-    }
 
     @Test
-    fun cachedData_thenRealData() = testScope.runTest {
-        val data = List(2) { it }
-        val cachedPagingData = createCachedPagingData(
-            data = data,
-            sourceLoadStates = loadStates(refresh = Loading),
-            mediatorLoadStates = null,
-        )
-        val presenter = SimplePresenter(cachedPagingData)
-        val data2 = List(10) { it }
-        val flow = flowOf(
-            localRefresh(pages = listOf(TransformablePage(data2))),
-        )
-        val job1 = launch {
-            presenter.collectFrom(PagingData(flow, dummyUiReceiver, dummyHintReceiver))
-        }
+    fun cachedData_thenRealData() =
+        testScope.runTest {
+            val data = List(2) { it }
+            val cachedPagingData =
+                createCachedPagingData(
+                    data = data,
+                    sourceLoadStates = loadStates(refresh = Loading),
+                    mediatorLoadStates = null,
+                )
+            val presenter = SimplePresenter(cachedPagingData)
+            val data2 = List(10) { it }
+            val flow =
+                flowOf(
+                    localRefresh(pages = listOf(TransformablePage(data2))),
+                )
+            val job1 = launch {
+                presenter.collectFrom(PagingData(flow, dummyUiReceiver, dummyHintReceiver))
+            }
 
-        assertThat(presenter.snapshot()).isEqualTo(data2)
-        job1.cancel()
-    }
+            assertThat(presenter.snapshot()).isEqualTo(data2)
+            job1.cancel()
+        }
 
     @Test
-    fun cachedData_thenLoadError() = testScope.runTest {
-        val data = List(3) { it }
-        val cachedPagingData = createCachedPagingData(
-            data = data,
-            sourceLoadStates = loadStates(refresh = Loading),
-            mediatorLoadStates = null,
-        )
-        val presenter = SimplePresenter(cachedPagingData)
+    fun cachedData_thenLoadError() =
+        testScope.runTest {
+            val data = List(3) { it }
+            val cachedPagingData =
+                createCachedPagingData(
+                    data = data,
+                    sourceLoadStates = loadStates(refresh = Loading),
+                    mediatorLoadStates = null,
+                )
+            val presenter = SimplePresenter(cachedPagingData)
 
-        val channel = Channel<PageEvent<Int>>(Channel.UNLIMITED)
-        val hintReceiver = HintReceiverFake()
-        val uiReceiver = UiReceiverFake()
-        val job1 = launch {
-            presenter.collectFrom(PagingData(channel.consumeAsFlow(), uiReceiver, hintReceiver))
+            val channel = Channel<PageEvent<Int>>(Channel.UNLIMITED)
+            val hintReceiver = HintReceiverFake()
+            val uiReceiver = UiReceiverFake()
+            val job1 = launch {
+                presenter.collectFrom(PagingData(channel.consumeAsFlow(), uiReceiver, hintReceiver))
+            }
+            val error = LoadState.Error(Exception())
+            channel.trySend(localLoadStateUpdate(refreshLocal = error))
+            assertThat(presenter.nonNullLoadStateFlow.first())
+                .isEqualTo(localLoadStatesOf(refreshLocal = error))
+
+            // ui receiver is set upon processing a LoadStateUpdate so we can still trigger
+            // refresh/retry
+            presenter.refresh()
+            assertThat(uiReceiver.refreshEvents).hasSize(1)
+            // but hint receiver is only set if presenter has presented a refresh from this
+            // PagingData
+            // which did not happen in this case
+            presenter[2]
+            assertThat(hintReceiver.hints).hasSize(0)
+            job1.cancel()
         }
-        val error = LoadState.Error(Exception())
-        channel.trySend(
-            localLoadStateUpdate(refreshLocal = error)
-        )
-        assertThat(presenter.nonNullLoadStateFlow.first()).isEqualTo(
-            localLoadStatesOf(refreshLocal = error)
-        )
-
-        // ui receiver is set upon processing a LoadStateUpdate so we can still trigger
-        // refresh/retry
-        presenter.refresh()
-        assertThat(uiReceiver.refreshEvents).hasSize(1)
-        // but hint receiver is only set if presenter has presented a refresh from this PagingData
-        // which did not happen in this case
-        presenter[2]
-        assertThat(hintReceiver.hints).hasSize(0)
-        job1.cancel()
-    }
 
     private fun runTest(
         collectWithCachedIn: Boolean,
         initialKey: Int? = null,
         config: PagingConfig = PagingConfig(pageSize = 3, enablePlaceholders = false),
-        block: TestScope.(
-            presenter: SimplePresenter,
-            pagingSources: List<TestPagingSource>,
-            uiReceivers: List<TrackableUiReceiverWrapper>,
-            hintReceivers: List<TrackableHintReceiverWrapper>
-        ) -> Unit
-    ) = testScope.runTest {
-        val pagingSources = mutableListOf<TestPagingSource>()
-        val pager = Pager(
-            config = config,
-            initialKey = initialKey,
-            pagingSourceFactory = {
-                TestPagingSource(
-                    loadDelay = 1000,
-                ).also { pagingSources.add(it) }
-            }
-        )
-        val presenter = SimplePresenter()
-        val uiReceivers = mutableListOf<TrackableUiReceiverWrapper>()
-        val hintReceivers = mutableListOf<TrackableHintReceiverWrapper>()
-
-        val collection = launch {
-            pager.flow
-            .map { pagingData ->
-                PagingData(
-                    flow = pagingData.flow,
-                    uiReceiver = TrackableUiReceiverWrapper(pagingData.uiReceiver)
-                        .also { uiReceivers.add(it) },
-                    hintReceiver = TrackableHintReceiverWrapper(pagingData.hintReceiver)
-                        .also { hintReceivers.add(it) }
+        block:
+            TestScope.(
+                presenter: SimplePresenter,
+                pagingSources: List<TestPagingSource>,
+                uiReceivers: List<TrackableUiReceiverWrapper>,
+                hintReceivers: List<TrackableHintReceiverWrapper>
+            ) -> Unit
+    ) =
+        testScope.runTest {
+            val pagingSources = mutableListOf<TestPagingSource>()
+            val pager =
+                Pager(
+                    config = config,
+                    initialKey = initialKey,
+                    pagingSourceFactory = {
+                        TestPagingSource(
+                                loadDelay = 1000,
+                            )
+                            .also { pagingSources.add(it) }
+                    }
                 )
-            }.let {
-                if (collectWithCachedIn) {
-                    it.cachedIn(this)
-                } else {
-                    it
-                }
-            }.collect {
-                presenter.collectFrom(it)
+            val presenter = SimplePresenter()
+            val uiReceivers = mutableListOf<TrackableUiReceiverWrapper>()
+            val hintReceivers = mutableListOf<TrackableHintReceiverWrapper>()
+
+            val collection = launch {
+                pager.flow
+                    .map { pagingData ->
+                        PagingData(
+                            flow = pagingData.flow,
+                            uiReceiver =
+                                TrackableUiReceiverWrapper(pagingData.uiReceiver).also {
+                                    uiReceivers.add(it)
+                                },
+                            hintReceiver =
+                                TrackableHintReceiverWrapper(pagingData.hintReceiver).also {
+                                    hintReceivers.add(it)
+                                }
+                        )
+                    }
+                    .let {
+                        if (collectWithCachedIn) {
+                            it.cachedIn(this)
+                        } else {
+                            it
+                        }
+                    }
+                    .collect { presenter.collectFrom(it) }
+            }
+
+            try {
+                block(presenter, pagingSources, uiReceivers, hintReceivers)
+            } finally {
+                collection.cancel()
             }
         }
-
-        try {
-            block(presenter, pagingSources, uiReceivers, hintReceivers)
-        } finally {
-            collection.cancel()
-        }
-    }
 }
 
 private fun infinitelySuspendingPagingData(
     uiReceiver: UiReceiver = dummyUiReceiver,
     hintReceiver: HintReceiver = dummyHintReceiver
-) = PagingData(
-    flow { emit(suspendCancellableCoroutine<PageEvent<Int>> { }) },
-    uiReceiver,
-    hintReceiver
-)
+) =
+    PagingData(
+        flow { emit(suspendCancellableCoroutine<PageEvent<Int>> {}) },
+        uiReceiver,
+        hintReceiver
+    )
 
 private fun createCachedPagingData(
     data: List<Int>,
@@ -2628,8 +2650,7 @@
     val hints: List<ViewportHint>
         get() {
             val result = _hints.toList()
-            @OptIn(ExperimentalStdlibApi::class)
-            repeat(result.size) { _hints.removeFirst() }
+            @OptIn(ExperimentalStdlibApi::class) repeat(result.size) { _hints.removeFirst() }
             return result
         }
 
@@ -2662,8 +2683,7 @@
     val hints: List<ViewportHint>
         get() {
             val result = _hints.toList()
-            @OptIn(ExperimentalStdlibApi::class)
-            repeat(result.size) { _hints.removeFirst() }
+            @OptIn(ExperimentalStdlibApi::class) repeat(result.size) { _hints.removeFirst() }
             return result
         }
 
@@ -2675,10 +2695,11 @@
 
 private class SimplePresenter(
     cachedPagingData: PagingData<Int>? = null,
-) : PagingDataPresenter<Int>(
-    mainContext = EmptyCoroutineContext,
-    cachedPagingData = cachedPagingData
-) {
+) :
+    PagingDataPresenter<Int>(
+        mainContext = EmptyCoroutineContext,
+        cachedPagingData = cachedPagingData
+    ) {
     private val _localLoadStates = mutableListOf<CombinedLoadStates>()
 
     val nonNullLoadStateFlow = loadStateFlow.filterNotNull()
@@ -2708,11 +2729,14 @@
     }
 }
 
-internal val dummyUiReceiver = object : UiReceiver {
-    override fun retry() {}
-    override fun refresh() {}
-}
+internal val dummyUiReceiver =
+    object : UiReceiver {
+        override fun retry() {}
 
-internal val dummyHintReceiver = object : HintReceiver {
-    override fun accessHint(viewportHint: ViewportHint) {}
-}
+        override fun refresh() {}
+    }
+
+internal val dummyHintReceiver =
+    object : HintReceiver {
+        override fun accessHint(viewportHint: ViewportHint) {}
+    }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingSourceTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingSourceTest.kt
index 3e19c36..5f0400f 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingSourceTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingSourceTest.kt
@@ -61,9 +61,7 @@
         val errorParams = LoadParams.Refresh(key, 10, false)
         // Verify error is propagated correctly.
         pagingSource.enqueueError()
-        assertFailsWith<CustomException> {
-            pagingSource.load(errorParams)
-        }
+        assertFailsWith<CustomException> { pagingSource.load(errorParams) }
         // Verify LoadResult.Invalid is returned
         pagingSource.invalidateLoad()
         assertTrue(pagingSource.load(errorParams) is LoadResult.Invalid)
@@ -201,9 +199,7 @@
         val errorParams = LoadParams.Prepend(key, 5, false)
         // Verify error is propagated correctly.
         dataSource.enqueueError()
-        assertFailsWith<CustomException> {
-            dataSource.load(errorParams)
-        }
+        assertFailsWith<CustomException> { dataSource.load(errorParams) }
         // Verify LoadResult.Invalid is returned
         dataSource.invalidateLoad()
         assertTrue(dataSource.load(errorParams) is LoadResult.Invalid)
@@ -222,9 +218,7 @@
         val errorParams = LoadParams.Append(key, 5, false)
         // Verify error is propagated correctly.
         dataSource.enqueueError()
-        assertFailsWith<CustomException> {
-            dataSource.load(errorParams)
-        }
+        assertFailsWith<CustomException> { dataSource.load(errorParams) }
         // Verify LoadResult.Invalid is returned
         dataSource.invalidateLoad()
         assertTrue(dataSource.load(errorParams) is LoadResult.Invalid)
@@ -277,26 +271,19 @@
         }
 
         // second page
-        val params2 = LoadParams.Append(
-            ITEMS_BY_NAME_ID[10].key(), 5, false
-        )
+        val params2 = LoadParams.Append(ITEMS_BY_NAME_ID[10].key(), 5, false)
         val page2 = dataSource.load(params2) as LoadResult.Page
         pages.add(page2)
 
         // iterate through list of pages
-        assertThat(pages.flatten()).containsExactlyElementsIn(
-            ITEMS_BY_NAME_ID.subList(6, 16)
-        ).inOrder()
+        assertThat(pages.flatten())
+            .containsExactlyElementsIn(ITEMS_BY_NAME_ID.subList(6, 16))
+            .inOrder()
     }
 
     data class Key(val name: String, val id: Int)
 
-    data class Item(
-        val name: String,
-        val id: Int,
-        val balance: Double,
-        val address: String
-    )
+    data class Item(val name: String, val id: Int, val balance: Double, val address: String)
 
     fun Item.key() = Key(name, id)
 
@@ -309,13 +296,14 @@
         private fun List<Item>.asPage(
             itemsBefore: Int = COUNT_UNDEFINED,
             itemsAfter: Int = COUNT_UNDEFINED
-        ): LoadResult.Page<Key, Item> = LoadResult.Page(
-            data = this,
-            prevKey = firstOrNull()?.key(),
-            nextKey = lastOrNull()?.key(),
-            itemsBefore = itemsBefore,
-            itemsAfter = itemsAfter
-        )
+        ): LoadResult.Page<Key, Item> =
+            LoadResult.Page(
+                data = this,
+                prevKey = firstOrNull()?.key(),
+                nextKey = lastOrNull()?.key(),
+                itemsBefore = itemsBefore,
+                itemsAfter = itemsAfter
+            )
 
         private var error = false
 
@@ -387,9 +375,8 @@
         }
 
         private fun findFirstIndexAfter(key: Key): Int {
-            return items.indices.firstOrNull {
-                KEY_COMPARATOR.compare(key, items[it].key()) < 0
-            } ?: items.size
+            return items.indices.firstOrNull { KEY_COMPARATOR.compare(key, items[it].key()) < 0 }
+                ?: items.size
         }
 
         private fun findFirstIndexBefore(key: Key): Int {
@@ -413,15 +400,17 @@
         private val ITEM_COMPARATOR = compareBy<Item> { it.name }.thenByDescending { it.id }
         private val KEY_COMPARATOR = compareBy<Key> { it.name }.thenByDescending { it.id }
 
-        private val ITEMS_BY_NAME_ID = List(100) {
-            val names = Array(10) { index -> "f" + ('a' + index) }
-            Item(
-                names[it % 10],
-                it,
-                Random.nextDouble(1000.0),
-                Random.nextInt(200).toString() + " fake st."
-            )
-        }.sortedWith(ITEM_COMPARATOR)
+        private val ITEMS_BY_NAME_ID =
+            List(100) {
+                    val names = Array(10) { index -> "f" + ('a' + index) }
+                    Item(
+                        names[it % 10],
+                        it,
+                        Random.nextDouble(1000.0),
+                        Random.nextInt(200).toString() + " fake st."
+                    )
+                }
+                .sortedWith(ITEM_COMPARATOR)
 
         private val EXCEPTION = CustomException()
     }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingStateTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingStateTest.kt
index a88fad5..0d92de1 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingStateTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/PagingStateTest.kt
@@ -25,12 +25,13 @@
 class PagingStateTest {
     @Test
     fun closestItemToPosition_withoutPlaceholders() {
-        val pagingState = PagingState(
-            pages = listOf(List(10) { it }).asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 0
-        )
+        val pagingState =
+            PagingState(
+                pages = listOf(List(10) { it }).asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 0
+            )
 
         assertEquals(0, pagingState.closestItemToPosition(-1))
         assertEquals(5, pagingState.closestItemToPosition(5))
@@ -39,12 +40,13 @@
 
     @Test
     fun closestItemToPosition_withPlaceholders() {
-        val pagingState = PagingState(
-            pages = listOf(List(10) { it }).asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = listOf(List(10) { it }).asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(0, pagingState.closestItemToPosition(5))
         assertEquals(5, pagingState.closestItemToPosition(15))
@@ -53,16 +55,13 @@
 
     @Test
     fun closestItemToPosition_withEmptyPages() {
-        val pagingState = PagingState(
-            pages = listOf(
-                listOf(),
-                List(10) { it },
-                listOf()
-            ).asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = listOf(listOf(), List(10) { it }, listOf()).asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(0, pagingState.closestItemToPosition(5))
         assertEquals(5, pagingState.closestItemToPosition(15))
@@ -71,15 +70,13 @@
 
     @Test
     fun closestItemToPosition_onlyEmptyPages() {
-        val pagingState = PagingState(
-            pages = listOf<List<Int>>(
-                listOf(),
-                listOf()
-            ).asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = listOf<List<Int>>(listOf(), listOf()).asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(null, pagingState.closestItemToPosition(5))
         assertEquals(null, pagingState.closestItemToPosition(25))
@@ -88,12 +85,13 @@
     @Test
     fun closestPageToPosition_withoutPlaceholders() {
         val pages = List(10) { listOf(it) }.asPages()
-        val pagingState = PagingState(
-            pages = pages,
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 0
-        )
+        val pagingState =
+            PagingState(
+                pages = pages,
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 0
+            )
 
         assertEquals(pages.first(), pagingState.closestPageToPosition(-1))
         assertEquals(pages[5], pagingState.closestPageToPosition(5))
@@ -103,12 +101,13 @@
     @Test
     fun closestPageToPosition_withPlaceholders() {
         val pages = List(10) { listOf(it) }.asPages()
-        val pagingState = PagingState(
-            pages = pages,
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = pages,
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(pages.first(), pagingState.closestPageToPosition(5))
         assertEquals(pages[5], pagingState.closestPageToPosition(15))
@@ -117,18 +116,21 @@
 
     @Test
     fun closestPageToPosition_withEmptyPages() {
-        val pages = List(10) {
-            when {
-                it % 3 == 0 -> listOf()
-                else -> listOf(it)
-            }
-        }.asPages()
-        val pagingState = PagingState(
-            pages = pages,
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pages =
+            List(10) {
+                    when {
+                        it % 3 == 0 -> listOf()
+                        else -> listOf(it)
+                    }
+                }
+                .asPages()
+        val pagingState =
+            PagingState(
+                pages = pages,
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(pages.first(), pagingState.closestPageToPosition(5))
         assertEquals(pages[5], pagingState.closestPageToPosition(13)) // pages[5].data == [5]
@@ -137,15 +139,13 @@
 
     @Test
     fun closestPageToPosition_onlyEmptyPages() {
-        val pagingState = PagingState(
-            pages = listOf<List<Int>>(
-                listOf(),
-                listOf()
-            ).asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = listOf<List<Int>>(listOf(), listOf()).asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(null, pagingState.closestPageToPosition(5))
         assertEquals(null, pagingState.closestPageToPosition(25))
@@ -153,12 +153,13 @@
 
     @Test
     fun itemOrNull_noPages() {
-        val pagingState = PagingState(
-            pages = listOf<Page<Int, Int>>(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = listOf<Page<Int, Int>>(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(null, pagingState.firstItemOrNull())
         assertEquals(null, pagingState.lastItemOrNull())
@@ -166,12 +167,13 @@
 
     @Test
     fun itemOrNull_emptyPages() {
-        val pagingState = PagingState(
-            pages = List(10) { listOf<Int>() }.asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = List(10) { listOf<Int>() }.asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(null, pagingState.firstItemOrNull())
         assertEquals(null, pagingState.lastItemOrNull())
@@ -179,12 +181,13 @@
 
     @Test
     fun itemOrNull_emptyPagesAtEnds() {
-        val pagingState = PagingState(
-            pages = (listOf<List<Int>>() + List(10) { listOf(it) } + listOf()).asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = (listOf<List<Int>>() + List(10) { listOf(it) } + listOf()).asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertEquals(0, pagingState.firstItemOrNull())
         assertEquals(9, pagingState.lastItemOrNull())
@@ -192,36 +195,39 @@
 
     @Test
     fun isEmpty_noPages() {
-        val pagingState = PagingState(
-            pages = listOf<Page<Int, Int>>(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = listOf<Page<Int, Int>>(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertTrue { pagingState.isEmpty() }
     }
 
     @Test
     fun isEmpty_emptyPages() {
-        val pagingState = PagingState(
-            pages = List(10) { listOf<Int>() }.asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = List(10) { listOf<Int>() }.asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertTrue { pagingState.isEmpty() }
     }
 
     @Test
     fun isEmpty_emptyPagesAtEnds() {
-        val pagingState = PagingState(
-            pages = (listOf<List<Int>>() + List(10) { listOf(it) } + listOf()).asPages(),
-            anchorPosition = 10,
-            config = PagingConfig(pageSize = 10),
-            leadingPlaceholderCount = 10
-        )
+        val pagingState =
+            PagingState(
+                pages = (listOf<List<Int>>() + List(10) { listOf(it) } + listOf()).asPages(),
+                anchorPosition = 10,
+                config = PagingConfig(pageSize = 10),
+                leadingPlaceholderCount = 10
+            )
 
         assertFalse { pagingState.isEmpty() }
     }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/RemoteMediatorAccessorTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/RemoteMediatorAccessorTest.kt
index 2c9ebf2..78c0fea 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/RemoteMediatorAccessorTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/RemoteMediatorAccessorTest.kt
@@ -46,9 +46,7 @@
     private var mockStateId = 0
 
     // creates a unique state using the anchor position to be able to do equals check in assertions
-    private fun createMockState(
-        anchorPosition: Int? = mockStateId++
-    ): PagingState<Int, Int> {
+    private fun createMockState(anchorPosition: Int? = mockStateId++): PagingState<Int, Int> {
         return PagingState(
             pages = listOf(),
             anchorPosition = anchorPosition,
@@ -58,577 +56,593 @@
     }
 
     @Test
-    fun requestLoadIfRefreshAllowed_noop() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-        val pagingState = PagingState<Int, Int>(listOf(), null, PagingConfig(1), 0)
-
-        remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).isEmpty()
-    }
-
-    @Test
-    fun requestLoadIfRefreshAllowed_simple() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-        }
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-        val pagingState = PagingState<Int, Int>(listOf(), null, PagingConfig(1), 0)
-
-        remoteMediatorAccessor.allowRefresh()
-        remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(loadType = REFRESH, state = pagingState)
-        )
-
-        // allowRefresh should only allow one successful request to go through.
-        remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).isEmpty()
-    }
-
-    @Test
-    fun requestLoadIfRefreshAllowed_retry() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = LAUNCH_INITIAL_REFRESH
-        }
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-        val pagingState = PagingState<Int, Int>(listOf(), null, PagingConfig(1), 0)
-
-        remoteMediator.loadCallback = { _, _ ->
-            RemoteMediator.MediatorResult.Error(Exception())
-        }
-
-        remoteMediatorAccessor.allowRefresh()
-        remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(loadType = REFRESH, state = pagingState)
-        )
-
-        remoteMediator.loadCallback = { _, _ ->
-            RemoteMediator.MediatorResult.Success(endOfPaginationReached = false)
-        }
-
-        remoteMediatorAccessor.retryFailed(pagingState)
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(loadType = REFRESH, state = pagingState)
-        )
-    }
-
-    @Test
-    fun requestLoad_queuesBoundaryBehindRefresh() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 100)
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-        val firstState = createMockState()
-        val secondState = createMockState()
-
-        remoteMediatorAccessor.requestLoad(REFRESH, firstState)
-        advanceTimeBy(50) // Start remote refresh, but do not let it finish.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, firstState)
-        )
-        assertThat(remoteMediatorAccessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                prepend = LoadState.NotLoading.Incomplete,
-                append = LoadState.NotLoading.Incomplete
-            )
-        )
-
-        // Queue a boundary requests, but it should not launch since refresh is running.
-        remoteMediatorAccessor.requestLoad(PREPEND, firstState)
-        remoteMediatorAccessor.requestLoad(APPEND, firstState)
-        assertThat(remoteMediator.newLoadEvents).isEmpty()
-        assertThat(remoteMediatorAccessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                prepend = LoadState.Loading,
-                append = LoadState.Loading
-            )
-        )
-
-        // Queue more boundary requests, but with an updated PagingState.
-        remoteMediatorAccessor.requestLoad(PREPEND, secondState)
-        remoteMediatorAccessor.requestLoad(APPEND, secondState)
-        assertThat(remoteMediator.newLoadEvents).isEmpty()
-        assertThat(remoteMediatorAccessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                prepend = LoadState.Loading,
-                append = LoadState.Loading
-            )
-        )
-
-        // Now wait until all queued requests finish running
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(PREPEND, secondState),
-            LoadEvent(APPEND, secondState),
-        )
-        assertThat(remoteMediatorAccessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete,
-                append = LoadState.NotLoading.Incomplete
-            )
-        )
-    }
-
-    @Test
-    fun requestLoad_cancelledBoundaryRetriesAfterRefresh() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-        val firstState = createMockState()
-
-        // Launch boundary calls, but do not let them finish.
-        remoteMediatorAccessor.requestLoad(PREPEND, firstState)
-        // Single runner should prevent append from triggering, but it should still be queued.
-        remoteMediatorAccessor.requestLoad(APPEND, firstState)
-        advanceTimeBy(50)
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(PREPEND, firstState),
-        )
-
-        // Launch refresh, which should cancel running boundary calls
-        remoteMediatorAccessor.requestLoad(REFRESH, firstState)
-        advanceTimeBy(50)
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, firstState)
-        )
-
-        // Let refresh finish, retrying cancelled boundary calls
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(PREPEND, firstState),
-            LoadEvent(APPEND, firstState),
-        )
-    }
-
-    @Test
-    fun requestLoad_queuesBoundaryAfterRefreshFails() = testScope.runTest {
-        val firstState = createMockState()
-        val secondState = createMockState()
-        val remoteMediator = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-            loadCallback = { loadType, state ->
-                // Only error out on first refresh.
-                if (loadType == REFRESH && state == firstState) {
-                    RemoteMediator.MediatorResult.Error(throwable = LOAD_ERROR)
-                } else {
-                    RemoteMediator.MediatorResult.Success(endOfPaginationReached = false)
+    fun requestLoadIfRefreshAllowed_noop() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock(loadDelay = 100).apply {
+                    initializeResult = SKIP_INITIAL_REFRESH
                 }
-            }
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+            val pagingState = PagingState<Int, Int>(listOf(), null, PagingConfig(1), 0)
+
+            remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents).isEmpty()
         }
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-
-        // Queue up some remote boundary calls, which will not run immediately because they
-        // depend on refresh.
-        remoteMediatorAccessor.requestLoad(PREPEND, firstState)
-        remoteMediatorAccessor.requestLoad(APPEND, firstState)
-
-        // Trigger refresh, letting it fail.
-        remoteMediatorAccessor.requestLoad(REFRESH, firstState)
-        advanceUntilIdle()
-        // Boundary calls should be queued, but not started.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, firstState),
-        )
-        // Although boundary calls are queued, they should not trigger or update LoadState since
-        // they are waiting for refresh to succeed.
-        assertThat(remoteMediatorAccessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(LOAD_ERROR),
-                prepend = LoadState.NotLoading.Incomplete,
-                append = LoadState.NotLoading.Incomplete
-            )
-        )
-
-        // Let refresh finish, triggering queued boundary calls.
-        remoteMediatorAccessor.retryFailed(secondState)
-        advanceUntilIdle()
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, secondState),
-            LoadEvent(PREPEND, firstState),
-            LoadEvent(APPEND, firstState),
-        )
-        assertThat(remoteMediatorAccessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete,
-                append = LoadState.NotLoading.Incomplete
-            )
-        )
-    }
 
     @Test
-    fun requestLoad_refreshEndOfPaginationReachedClearsBoundaryCalls() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-            loadCallback = { _, _ ->
+    fun requestLoadIfRefreshAllowed_simple() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock(loadDelay = 100).apply {
+                    initializeResult = LAUNCH_INITIAL_REFRESH
+                }
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+            val pagingState = PagingState<Int, Int>(listOf(), null, PagingConfig(1), 0)
+
+            remoteMediatorAccessor.allowRefresh()
+            remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(LoadEvent(loadType = REFRESH, state = pagingState))
+
+            // allowRefresh should only allow one successful request to go through.
+            remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents).isEmpty()
+        }
+
+    @Test
+    fun requestLoadIfRefreshAllowed_retry() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock(loadDelay = 100).apply {
+                    initializeResult = LAUNCH_INITIAL_REFRESH
+                }
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+            val pagingState = PagingState<Int, Int>(listOf(), null, PagingConfig(1), 0)
+
+            remoteMediator.loadCallback = { _, _ ->
+                RemoteMediator.MediatorResult.Error(Exception())
+            }
+
+            remoteMediatorAccessor.allowRefresh()
+            remoteMediatorAccessor.requestRefreshIfAllowed(pagingState)
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(LoadEvent(loadType = REFRESH, state = pagingState))
+
+            remoteMediator.loadCallback = { _, _ ->
+                RemoteMediator.MediatorResult.Success(endOfPaginationReached = false)
+            }
+
+            remoteMediatorAccessor.retryFailed(pagingState)
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(LoadEvent(loadType = REFRESH, state = pagingState))
+        }
+
+    @Test
+    fun requestLoad_queuesBoundaryBehindRefresh() =
+        testScope.runTest {
+            val remoteMediator = RemoteMediatorMock(loadDelay = 100)
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+            val firstState = createMockState()
+            val secondState = createMockState()
+
+            remoteMediatorAccessor.requestLoad(REFRESH, firstState)
+            advanceTimeBy(50) // Start remote refresh, but do not let it finish.
+            assertThat(remoteMediator.newLoadEvents).containsExactly(LoadEvent(REFRESH, firstState))
+            assertThat(remoteMediatorAccessor.state.value)
+                .isEqualTo(
+                    LoadStates(
+                        refresh = LoadState.Loading,
+                        prepend = LoadState.NotLoading.Incomplete,
+                        append = LoadState.NotLoading.Incomplete
+                    )
+                )
+
+            // Queue a boundary requests, but it should not launch since refresh is running.
+            remoteMediatorAccessor.requestLoad(PREPEND, firstState)
+            remoteMediatorAccessor.requestLoad(APPEND, firstState)
+            assertThat(remoteMediator.newLoadEvents).isEmpty()
+            assertThat(remoteMediatorAccessor.state.value)
+                .isEqualTo(
+                    LoadStates(
+                        refresh = LoadState.Loading,
+                        prepend = LoadState.Loading,
+                        append = LoadState.Loading
+                    )
+                )
+
+            // Queue more boundary requests, but with an updated PagingState.
+            remoteMediatorAccessor.requestLoad(PREPEND, secondState)
+            remoteMediatorAccessor.requestLoad(APPEND, secondState)
+            assertThat(remoteMediator.newLoadEvents).isEmpty()
+            assertThat(remoteMediatorAccessor.state.value)
+                .isEqualTo(
+                    LoadStates(
+                        refresh = LoadState.Loading,
+                        prepend = LoadState.Loading,
+                        append = LoadState.Loading
+                    )
+                )
+
+            // Now wait until all queued requests finish running
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent(PREPEND, secondState),
+                    LoadEvent(APPEND, secondState),
+                )
+            assertThat(remoteMediatorAccessor.state.value)
+                .isEqualTo(
+                    LoadStates(
+                        refresh = LoadState.NotLoading.Incomplete,
+                        prepend = LoadState.NotLoading.Incomplete,
+                        append = LoadState.NotLoading.Incomplete
+                    )
+                )
+        }
+
+    @Test
+    fun requestLoad_cancelledBoundaryRetriesAfterRefresh() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock(loadDelay = 100).apply {
+                    initializeResult = SKIP_INITIAL_REFRESH
+                }
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+            val firstState = createMockState()
+
+            // Launch boundary calls, but do not let them finish.
+            remoteMediatorAccessor.requestLoad(PREPEND, firstState)
+            // Single runner should prevent append from triggering, but it should still be queued.
+            remoteMediatorAccessor.requestLoad(APPEND, firstState)
+            advanceTimeBy(50)
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent(PREPEND, firstState),
+                )
+
+            // Launch refresh, which should cancel running boundary calls
+            remoteMediatorAccessor.requestLoad(REFRESH, firstState)
+            advanceTimeBy(50)
+            assertThat(remoteMediator.newLoadEvents).containsExactly(LoadEvent(REFRESH, firstState))
+
+            // Let refresh finish, retrying cancelled boundary calls
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent(PREPEND, firstState),
+                    LoadEvent(APPEND, firstState),
+                )
+        }
+
+    @Test
+    fun requestLoad_queuesBoundaryAfterRefreshFails() =
+        testScope.runTest {
+            val firstState = createMockState()
+            val secondState = createMockState()
+            val remoteMediator =
+                RemoteMediatorMock(loadDelay = 100).apply {
+                    initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+                    loadCallback = { loadType, state ->
+                        // Only error out on first refresh.
+                        if (loadType == REFRESH && state == firstState) {
+                            RemoteMediator.MediatorResult.Error(throwable = LOAD_ERROR)
+                        } else {
+                            RemoteMediator.MediatorResult.Success(endOfPaginationReached = false)
+                        }
+                    }
+                }
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+
+            // Queue up some remote boundary calls, which will not run immediately because they
+            // depend on refresh.
+            remoteMediatorAccessor.requestLoad(PREPEND, firstState)
+            remoteMediatorAccessor.requestLoad(APPEND, firstState)
+
+            // Trigger refresh, letting it fail.
+            remoteMediatorAccessor.requestLoad(REFRESH, firstState)
+            advanceUntilIdle()
+            // Boundary calls should be queued, but not started.
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent(REFRESH, firstState),
+                )
+            // Although boundary calls are queued, they should not trigger or update LoadState since
+            // they are waiting for refresh to succeed.
+            assertThat(remoteMediatorAccessor.state.value)
+                .isEqualTo(
+                    LoadStates(
+                        refresh = LoadState.Error(LOAD_ERROR),
+                        prepend = LoadState.NotLoading.Incomplete,
+                        append = LoadState.NotLoading.Incomplete
+                    )
+                )
+
+            // Let refresh finish, triggering queued boundary calls.
+            remoteMediatorAccessor.retryFailed(secondState)
+            advanceUntilIdle()
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent(REFRESH, secondState),
+                    LoadEvent(PREPEND, firstState),
+                    LoadEvent(APPEND, firstState),
+                )
+            assertThat(remoteMediatorAccessor.state.value)
+                .isEqualTo(
+                    LoadStates(
+                        refresh = LoadState.NotLoading.Incomplete,
+                        prepend = LoadState.NotLoading.Incomplete,
+                        append = LoadState.NotLoading.Incomplete
+                    )
+                )
+        }
+
+    @Test
+    fun requestLoad_refreshEndOfPaginationReachedClearsBoundaryCalls() =
+        testScope.runTest {
+            val remoteMediator =
+                RemoteMediatorMock(loadDelay = 100).apply {
+                    initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+                    loadCallback = { _, _ ->
+                        RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+                    }
+                }
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+            val firstState = createMockState()
+
+            // Queue up some remote boundary calls, which will not run immediately because they
+            // depend on refresh.
+            remoteMediatorAccessor.requestLoad(PREPEND, firstState)
+            remoteMediatorAccessor.requestLoad(APPEND, firstState)
+
+            // Trigger refresh and let it mark endOfPaginationReached
+            remoteMediatorAccessor.requestLoad(REFRESH, firstState)
+            advanceUntilIdle()
+
+            // Ensure boundary calls are not triggered since they should be cleared by
+            // endOfPaginationReached from refresh.
+            assertThat(remoteMediator.newLoadEvents).containsExactly(LoadEvent(REFRESH, firstState))
+            // Although boundary calls are queued, they should not trigger or update LoadState since
+            // they are waiting for refresh.
+            assertThat(remoteMediatorAccessor.state.value)
+                .isEqualTo(
+                    LoadStates(
+                        refresh = LoadState.NotLoading.Incomplete,
+                        prepend = LoadState.NotLoading.Complete,
+                        append = LoadState.NotLoading.Complete
+                    )
+                )
+        }
+
+    @Test
+    fun load_reportsPrependLoadState() =
+        testScope.runTest {
+            val emptyState =
+                PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+
+            // Assert initial state is NotLoading.Incomplete.
+            assertEquals(
+                LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Incomplete),
+                remoteMediatorAccessor.state.value,
+            )
+
+            // Start a PREPEND load.
+            remoteMediatorAccessor.requestLoad(
+                loadType = PREPEND,
+                pagingState = emptyState,
+            )
+
+            // Assert state is immediately set to Loading.
+            assertEquals(
+                LoadStates.IDLE.copy(prepend = LoadState.Loading),
+                remoteMediatorAccessor.state.value,
+            )
+
+            // Wait for load to finish.
+            advanceUntilIdle()
+
+            // Assert state is set to NotLoading.Incomplete.
+            assertEquals(
+                LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Incomplete),
+                remoteMediatorAccessor.state.value,
+            )
+
+            // Start a PREPEND load which results in endOfPaginationReached = true.
+            remoteMediator.loadCallback = { _, _ ->
                 RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
             }
-        }
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-        val firstState = createMockState()
-
-        // Queue up some remote boundary calls, which will not run immediately because they
-        // depend on refresh.
-        remoteMediatorAccessor.requestLoad(PREPEND, firstState)
-        remoteMediatorAccessor.requestLoad(APPEND, firstState)
-
-        // Trigger refresh and let it mark endOfPaginationReached
-        remoteMediatorAccessor.requestLoad(REFRESH, firstState)
-        advanceUntilIdle()
-
-        // Ensure boundary calls are not triggered since they should be cleared by
-        // endOfPaginationReached from refresh.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, firstState)
-        )
-        // Although boundary calls are queued, they should not trigger or update LoadState since
-        // they are waiting for refresh.
-        assertThat(remoteMediatorAccessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Complete,
-                append = LoadState.NotLoading.Complete
+            remoteMediatorAccessor.requestLoad(
+                loadType = PREPEND,
+                pagingState = emptyState,
             )
-        )
-    }
 
-    @Test
-    fun load_reportsPrependLoadState() = testScope.runTest {
-        val emptyState = PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
+            // Wait for load to finish.
+            advanceUntilIdle()
 
-        // Assert initial state is NotLoading.Incomplete.
-        assertEquals(
-            LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Incomplete),
-            remoteMediatorAccessor.state.value,
-        )
-
-        // Start a PREPEND load.
-        remoteMediatorAccessor.requestLoad(
-            loadType = PREPEND,
-            pagingState = emptyState,
-        )
-
-        // Assert state is immediately set to Loading.
-        assertEquals(
-            LoadStates.IDLE.copy(prepend = LoadState.Loading),
-            remoteMediatorAccessor.state.value,
-        )
-
-        // Wait for load to finish.
-        advanceUntilIdle()
-
-        // Assert state is set to NotLoading.Incomplete.
-        assertEquals(
-            LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Incomplete),
-            remoteMediatorAccessor.state.value,
-        )
-
-        // Start a PREPEND load which results in endOfPaginationReached = true.
-        remoteMediator.loadCallback = { _, _ ->
-            RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
+            // Assert state is set to NotLoading.Incomplete.
+            assertEquals(
+                LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Complete),
+                remoteMediatorAccessor.state.value,
+            )
         }
-        remoteMediatorAccessor.requestLoad(
-            loadType = PREPEND,
-            pagingState = emptyState,
-        )
-
-        // Wait for load to finish.
-        advanceUntilIdle()
-
-        // Assert state is set to NotLoading.Incomplete.
-        assertEquals(
-            LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Complete),
-            remoteMediatorAccessor.state.value,
-        )
-    }
 
     @Test
-    fun load_reportsAppendLoadState() = testScope.runTest {
-        val emptyState = PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
+    fun load_reportsAppendLoadState() =
+        testScope.runTest {
+            val emptyState =
+                PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
 
-        // Assert initial state is NotLoading.Incomplete.
-        assertEquals(
-            LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Incomplete),
-            remoteMediatorAccessor.state.value,
-        )
+            // Assert initial state is NotLoading.Incomplete.
+            assertEquals(
+                LoadStates.IDLE.copy(prepend = LoadState.NotLoading.Incomplete),
+                remoteMediatorAccessor.state.value,
+            )
 
-        // Start a APPEND load.
-        remoteMediatorAccessor.requestLoad(
-            loadType = APPEND,
-            pagingState = emptyState,
-        )
+            // Start a APPEND load.
+            remoteMediatorAccessor.requestLoad(
+                loadType = APPEND,
+                pagingState = emptyState,
+            )
 
-        // Assert state is immediately set to Loading.
-        assertEquals(
-            LoadStates.IDLE.copy(append = LoadState.Loading),
-            remoteMediatorAccessor.state.value,
-        )
+            // Assert state is immediately set to Loading.
+            assertEquals(
+                LoadStates.IDLE.copy(append = LoadState.Loading),
+                remoteMediatorAccessor.state.value,
+            )
 
-        // Wait for load to finish.
-        advanceUntilIdle()
+            // Wait for load to finish.
+            advanceUntilIdle()
 
-        // Assert state is set to NotLoading.Incomplete.
-        assertEquals(
-            LoadStates.IDLE.copy(append = LoadState.NotLoading.Incomplete),
-            remoteMediatorAccessor.state.value,
-        )
+            // Assert state is set to NotLoading.Incomplete.
+            assertEquals(
+                LoadStates.IDLE.copy(append = LoadState.NotLoading.Incomplete),
+                remoteMediatorAccessor.state.value,
+            )
 
-        // Start a APPEND load which results in endOfPaginationReached = true.
-        remoteMediator.loadCallback = { _, _ ->
-            RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
-        }
-        remoteMediatorAccessor.requestLoad(
-            loadType = APPEND,
-            pagingState = emptyState,
-        )
-
-        // Wait for load to finish.
-        advanceUntilIdle()
-
-        // Assert state is set to NotLoading.Incomplete.
-        assertEquals(
-            LoadStates.IDLE.copy(append = LoadState.NotLoading.Complete),
-            remoteMediatorAccessor.state.value,
-        )
-    }
-
-    @Test
-    fun load_conflatesPrepend() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = PREPEND,
-            pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        )
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = PREPEND,
-            pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        )
-
-        // Assert that exactly one load request was started.
-        assertEquals(1, remoteMediator.newLoadEvents.size)
-
-        // Fast-forward time until both load requests jobs complete.
-        advanceUntilIdle()
-
-        // Assert that the second load request was skipped since it was launched while the first
-        // load request was still running.
-        assertEquals(0, remoteMediator.newLoadEvents.size)
-    }
-
-    @Test
-    fun load_conflatesAppend() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = APPEND,
-            pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        )
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = APPEND,
-            pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        )
-
-        // Assert that exactly one load request was started.
-        assertEquals(1, remoteMediator.newLoadEvents.size)
-
-        // Fast-forward time until both load requests jobs complete.
-        advanceUntilIdle()
-
-        // Assert that the second load request was skipped since it was launched while the first
-        // load request was still running.
-        assertEquals(0, remoteMediator.newLoadEvents.size)
-    }
-
-    @Test
-    fun load_conflatesRefresh() = testScope.runTest {
-        val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = REFRESH,
-            pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        )
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = REFRESH,
-            pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        )
-
-        // Assert that exactly one load request was started.
-        assertEquals(1, remoteMediator.newLoadEvents.size)
-
-        // Fast-forward time until both load requests jobs complete.
-        advanceUntilIdle()
-
-        // Assert that the second load request was skipped since it was launched while the first
-        // load request was still running.
-        assertEquals(0, remoteMediator.newLoadEvents.size)
-    }
-
-    @Test
-    fun load_concurrentInitializeJobCancelsBoundaryJobs() = testScope.runTest {
-        val emptyState = PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        val remoteMediator = object : RemoteMediatorMock(loadDelay = 1000) {
-            var loading = AtomicBoolean(false)
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                if (!loading.compareAndSet(false, true)) fail("Concurrent load")
-
-                return try {
-                    super.load(loadType, state)
-                } finally {
-                    loading.set(false)
-                }
+            // Start a APPEND load which results in endOfPaginationReached = true.
+            remoteMediator.loadCallback = { _, _ ->
+                RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
             }
+            remoteMediatorAccessor.requestLoad(
+                loadType = APPEND,
+                pagingState = emptyState,
+            )
+
+            // Wait for load to finish.
+            advanceUntilIdle()
+
+            // Assert state is set to NotLoading.Incomplete.
+            assertEquals(
+                LoadStates.IDLE.copy(append = LoadState.NotLoading.Complete),
+                remoteMediatorAccessor.state.value,
+            )
         }
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = PREPEND,
-            pagingState = emptyState
-        )
-
-        remoteMediatorAccessor.requestLoad(
-            loadType = APPEND,
-            pagingState = emptyState
-        )
-
-        // Start prependJob and appendJob, but do not let them finish.
-        advanceTimeBy(500)
-
-        // Assert that only the PREPEND RemoteMediator.load() call was made.
-        assertEquals(
-            listOf(LoadEvent(PREPEND, emptyState)),
-            remoteMediator.newLoadEvents
-        )
-
-        // Start refreshJob
-        remoteMediatorAccessor.requestLoad(
-            loadType = REFRESH,
-            pagingState = emptyState
-        )
-
-        // Give prependJob enough time to be cancelled and refresh started due to higher priority
-        advanceTimeBy(500)
-
-        assertEquals(
-            listOf(LoadEvent(REFRESH, emptyState)),
-            remoteMediator.newLoadEvents
-        )
-        // assert that all of them are in loading state as we don't know if refresh will succeed
-        // if refresh fails, we would retry append / prepend
-        assertEquals(
-            LoadStates(
-                refresh = LoadState.Loading,
-                append = LoadState.Loading,
-                prepend = LoadState.Loading
-            ),
-            remoteMediatorAccessor.state.value
-        )
-
-        // Wait for all outstanding / queued jobs to finish.
-        advanceUntilIdle()
-
-        // Assert all outstanding / queued jobs finished.
-        assertEquals(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                append = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete
-            ),
-            remoteMediatorAccessor.state.value
-        )
-
-        // Queued boundary requests should be triggered, even though they are out-of-date.
-        assertThat(remoteMediator.newLoadEvents).containsExactly(
-            LoadEvent(PREPEND, emptyState),
-            LoadEvent(APPEND, emptyState),
-        )
-    }
 
     @Test
-    fun load_concurrentBoundaryJobsRunsSerially() = testScope.runTest {
-        val emptyState = PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
-        val remoteMediator = object : RemoteMediatorMock(loadDelay = 1000) {
-            var loading = AtomicBoolean(false)
-            override suspend fun load(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): MediatorResult {
-                if (!loading.compareAndSet(false, true)) fail("Concurrent load")
+    fun load_conflatesPrepend() =
+        testScope.runTest {
+            val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
 
-                return try {
-                    super.load(loadType, state)
-                } finally {
-                    loading.set(false)
-                }
-            }
+            remoteMediatorAccessor.requestLoad(
+                loadType = PREPEND,
+                pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            )
+
+            remoteMediatorAccessor.requestLoad(
+                loadType = PREPEND,
+                pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            )
+
+            // Assert that exactly one load request was started.
+            assertEquals(1, remoteMediator.newLoadEvents.size)
+
+            // Fast-forward time until both load requests jobs complete.
+            advanceUntilIdle()
+
+            // Assert that the second load request was skipped since it was launched while the first
+            // load request was still running.
+            assertEquals(0, remoteMediator.newLoadEvents.size)
         }
 
-        val remoteMediatorAccessor = createAccessor(remoteMediator)
+    @Test
+    fun load_conflatesAppend() =
+        testScope.runTest {
+            val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
 
-        remoteMediatorAccessor.requestLoad(loadType = PREPEND, pagingState = emptyState)
+            remoteMediatorAccessor.requestLoad(
+                loadType = APPEND,
+                pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            )
 
-        remoteMediatorAccessor.requestLoad(loadType = APPEND, pagingState = emptyState)
+            remoteMediatorAccessor.requestLoad(
+                loadType = APPEND,
+                pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            )
 
-        // Assert that only one job runs due to second job joining the first before starting.
-        assertEquals(1, remoteMediator.newLoadEvents.size)
+            // Assert that exactly one load request was started.
+            assertEquals(1, remoteMediator.newLoadEvents.size)
 
-        // Advance some time, but not enough to finish first load.
-        advanceTimeBy(500)
-        assertEquals(0, remoteMediator.newLoadEvents.size)
+            // Fast-forward time until both load requests jobs complete.
+            advanceUntilIdle()
 
-        // Assert that second job starts after first finishes.
-        advanceTimeBy(500)
-        runCurrent()
-        assertEquals(1, remoteMediator.newLoadEvents.size)
+            // Assert that the second load request was skipped since it was launched while the first
+            // load request was still running.
+            assertEquals(0, remoteMediator.newLoadEvents.size)
+        }
 
-        // Allow second job to finish.
-        advanceTimeBy(1000)
-    }
+    @Test
+    fun load_conflatesRefresh() =
+        testScope.runTest {
+            val remoteMediator = RemoteMediatorMock(loadDelay = 1000)
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+
+            remoteMediatorAccessor.requestLoad(
+                loadType = REFRESH,
+                pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            )
+
+            remoteMediatorAccessor.requestLoad(
+                loadType = REFRESH,
+                pagingState = PagingState(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            )
+
+            // Assert that exactly one load request was started.
+            assertEquals(1, remoteMediator.newLoadEvents.size)
+
+            // Fast-forward time until both load requests jobs complete.
+            advanceUntilIdle()
+
+            // Assert that the second load request was skipped since it was launched while the first
+            // load request was still running.
+            assertEquals(0, remoteMediator.newLoadEvents.size)
+        }
+
+    @Test
+    fun load_concurrentInitializeJobCancelsBoundaryJobs() =
+        testScope.runTest {
+            val emptyState =
+                PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            val remoteMediator =
+                object : RemoteMediatorMock(loadDelay = 1000) {
+                    var loading = AtomicBoolean(false)
+
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        if (!loading.compareAndSet(false, true)) fail("Concurrent load")
+
+                        return try {
+                            super.load(loadType, state)
+                        } finally {
+                            loading.set(false)
+                        }
+                    }
+                }
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+
+            remoteMediatorAccessor.requestLoad(loadType = PREPEND, pagingState = emptyState)
+
+            remoteMediatorAccessor.requestLoad(loadType = APPEND, pagingState = emptyState)
+
+            // Start prependJob and appendJob, but do not let them finish.
+            advanceTimeBy(500)
+
+            // Assert that only the PREPEND RemoteMediator.load() call was made.
+            assertEquals(listOf(LoadEvent(PREPEND, emptyState)), remoteMediator.newLoadEvents)
+
+            // Start refreshJob
+            remoteMediatorAccessor.requestLoad(loadType = REFRESH, pagingState = emptyState)
+
+            // Give prependJob enough time to be cancelled and refresh started due to higher
+            // priority
+            advanceTimeBy(500)
+
+            assertEquals(listOf(LoadEvent(REFRESH, emptyState)), remoteMediator.newLoadEvents)
+            // assert that all of them are in loading state as we don't know if refresh will succeed
+            // if refresh fails, we would retry append / prepend
+            assertEquals(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    append = LoadState.Loading,
+                    prepend = LoadState.Loading
+                ),
+                remoteMediatorAccessor.state.value
+            )
+
+            // Wait for all outstanding / queued jobs to finish.
+            advanceUntilIdle()
+
+            // Assert all outstanding / queued jobs finished.
+            assertEquals(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    append = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.NotLoading.Incomplete
+                ),
+                remoteMediatorAccessor.state.value
+            )
+
+            // Queued boundary requests should be triggered, even though they are out-of-date.
+            assertThat(remoteMediator.newLoadEvents)
+                .containsExactly(
+                    LoadEvent(PREPEND, emptyState),
+                    LoadEvent(APPEND, emptyState),
+                )
+        }
+
+    @Test
+    fun load_concurrentBoundaryJobsRunsSerially() =
+        testScope.runTest {
+            val emptyState =
+                PagingState<Int, Int>(listOf(), null, PagingConfig(10), COUNT_UNDEFINED)
+            val remoteMediator =
+                object : RemoteMediatorMock(loadDelay = 1000) {
+                    var loading = AtomicBoolean(false)
+
+                    override suspend fun load(
+                        loadType: LoadType,
+                        state: PagingState<Int, Int>
+                    ): MediatorResult {
+                        if (!loading.compareAndSet(false, true)) fail("Concurrent load")
+
+                        return try {
+                            super.load(loadType, state)
+                        } finally {
+                            loading.set(false)
+                        }
+                    }
+                }
+
+            val remoteMediatorAccessor = createAccessor(remoteMediator)
+
+            remoteMediatorAccessor.requestLoad(loadType = PREPEND, pagingState = emptyState)
+
+            remoteMediatorAccessor.requestLoad(loadType = APPEND, pagingState = emptyState)
+
+            // Assert that only one job runs due to second job joining the first before starting.
+            assertEquals(1, remoteMediator.newLoadEvents.size)
+
+            // Advance some time, but not enough to finish first load.
+            advanceTimeBy(500)
+            assertEquals(0, remoteMediator.newLoadEvents.size)
+
+            // Assert that second job starts after first finishes.
+            advanceTimeBy(500)
+            runCurrent()
+            assertEquals(1, remoteMediator.newLoadEvents.size)
+
+            // Allow second job to finish.
+            advanceTimeBy(1000)
+        }
 
     @Test
     fun ignoreAppendPrependWhenRefreshIsRequired() {
-        val remoteMediatorMock = RemoteMediatorMock().apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock().apply {
+                initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+            }
         val accessor = testScope.createAccessor(remoteMediatorMock)
         accessor.requestLoad(APPEND, createMockState())
         accessor.requestLoad(PREPEND, createMockState())
         testScope.advanceUntilIdle()
-        assertThat(
-            remoteMediatorMock.loadEvents
-        ).isEmpty()
+        assertThat(remoteMediatorMock.loadEvents).isEmpty()
     }
 
     @Test
     fun allowAppendPrependWhenRefreshIsNotRequired() {
-        val remoteMediatorMock = RemoteMediatorMock().apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock().apply { initializeResult = SKIP_INITIAL_REFRESH }
         val accessor = testScope.createAccessor(remoteMediatorMock)
 
         val appendState = createMockState(1)
@@ -636,19 +650,16 @@
         accessor.requestLoad(APPEND, appendState)
         accessor.requestLoad(PREPEND, prependState)
         testScope.advanceUntilIdle()
-        assertThat(
-            remoteMediatorMock.loadEvents
-        ).containsExactly(
-            LoadEvent(APPEND, appendState),
-            LoadEvent(PREPEND, prependState)
-        )
+        assertThat(remoteMediatorMock.loadEvents)
+            .containsExactly(LoadEvent(APPEND, appendState), LoadEvent(PREPEND, prependState))
     }
 
     @Test
     fun ignoreAppendPrependBeforeRefresh() {
-        val remoteMediatorMock = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock(loadDelay = 100).apply {
+                initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+            }
         val testScope = TestScope(StandardTestDispatcher())
         val accessor = testScope.createAccessor(remoteMediatorMock)
 
@@ -670,17 +681,17 @@
         testScope.advanceTimeBy(1)
         accessor.requestLoad(PREPEND, prependState)
 
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, refreshState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(REFRESH, refreshState))
 
         // now advance enough that we can accept append prepend
         testScope.advanceUntilIdle()
         // queued append/prepend should be executed afterwards.
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(APPEND, appendState),
-            LoadEvent(PREPEND, prependState),
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(
+                LoadEvent(APPEND, appendState),
+                LoadEvent(PREPEND, prependState),
+            )
 
         val otherPrependState = createMockState()
         val otherAppendState = createMockState()
@@ -688,18 +699,16 @@
         accessor.requestLoad(APPEND, otherAppendState)
 
         testScope.advanceTimeBy(50)
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(PREPEND, otherPrependState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(PREPEND, otherPrependState))
         // while prepend running, any more requests should be ignored
         accessor.requestLoad(PREPEND, createMockState())
         testScope.advanceTimeBy(10)
         assertThat(remoteMediatorMock.newLoadEvents).isEmpty()
 
         testScope.advanceTimeBy(41)
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(APPEND, otherAppendState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(APPEND, otherAppendState))
         accessor.requestLoad(APPEND, createMockState())
         // while append running, any more requests should be ignored
         accessor.requestLoad(APPEND, createMockState())
@@ -710,47 +719,34 @@
         val newAppendState = createMockState()
         accessor.requestLoad(APPEND, newAppendState)
         testScope.advanceUntilIdle()
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(APPEND, newAppendState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(APPEND, newAppendState))
     }
 
     @Test
     fun dropAppendPrependIfRefreshIsTriggered() {
-        val remoteMediatorMock = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock(loadDelay = 100).apply { initializeResult = SKIP_INITIAL_REFRESH }
         val accessor = testScope.createAccessor(remoteMediatorMock)
         val initialAppend = createMockState()
         accessor.requestLoad(APPEND, initialAppend)
         testScope.advanceTimeBy(50)
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(
-            LoadEvent(APPEND, initialAppend)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(APPEND, initialAppend))
         // now before that append finishes, trigger a refresh
         val newRefresh = createMockState()
         accessor.requestLoad(REFRESH, newRefresh)
         testScope.advanceTimeBy(10)
         // check that we immediately get the new refresh because we'll cancel the append
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(
-            LoadEvent(REFRESH, newRefresh)
-        )
-        assertThat(
-            remoteMediatorMock.incompleteEvents
-        ).containsExactly(
-            LoadEvent(APPEND, initialAppend)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(LoadEvent(REFRESH, newRefresh))
+        assertThat(remoteMediatorMock.incompleteEvents)
+            .containsExactly(LoadEvent(APPEND, initialAppend))
     }
 
     @Test
     fun loadEvents() {
-        val remoteMediatorMock = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock(loadDelay = 100).apply { initializeResult = SKIP_INITIAL_REFRESH }
         val accessor = testScope.createAccessor(remoteMediatorMock)
 
         // Initial state
@@ -760,42 +756,45 @@
         val firstAppendState = createMockState()
         accessor.requestLoad(APPEND, firstAppendState)
         testScope.advanceTimeBy(40)
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete,
-                append = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.NotLoading.Incomplete,
+                    append = LoadState.Loading
+                )
             )
-        )
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(APPEND, firstAppendState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(APPEND, firstAppendState))
 
         // Trigger refresh, cancelling remote append
         val firstRefreshState = createMockState()
         accessor.requestLoad(REFRESH, firstRefreshState)
         testScope.advanceTimeBy(1)
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                prepend = LoadState.NotLoading.Incomplete,
-                append = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    prepend = LoadState.NotLoading.Incomplete,
+                    append = LoadState.Loading
+                )
             )
-        )
         // advance enough to complete refresh
         testScope.advanceUntilIdle()
         // assert that we receive refresh, and append is retried since it was cancelled
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, firstRefreshState),
-            LoadEvent(APPEND, firstAppendState),
-        )
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete,
-                append = LoadState.NotLoading.Incomplete
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(
+                LoadEvent(REFRESH, firstRefreshState),
+                LoadEvent(APPEND, firstAppendState),
             )
-        )
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.NotLoading.Incomplete,
+                    append = LoadState.NotLoading.Incomplete
+                )
+            )
 
         val appendState = createMockState()
         accessor.requestLoad(APPEND, appendState)
@@ -803,35 +802,32 @@
         accessor.requestLoad(PREPEND, prependState)
         testScope.advanceTimeBy(50)
         // both states should be set to loading even though prepend is not really running
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.Loading,
-                append = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.Loading,
+                    append = LoadState.Loading
+                )
             )
-        )
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(APPEND, appendState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(LoadEvent(APPEND, appendState))
         // advance enough to trigger prepend
         testScope.advanceTimeBy(51)
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.Loading,
-                append = LoadState.NotLoading.Incomplete
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.Loading,
+                    append = LoadState.NotLoading.Incomplete
+                )
             )
-        )
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(PREPEND, prependState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(PREPEND, prependState))
         testScope.advanceUntilIdle()
         val exception = Throwable()
         remoteMediatorMock.loadCallback = { type, _ ->
             if (type == PREPEND) {
-                RemoteMediator.MediatorResult.Error(
-                    exception
-                )
+                RemoteMediator.MediatorResult.Error(exception)
             } else {
                 null
             }
@@ -839,73 +835,69 @@
         accessor.requestLoad(APPEND, createMockState())
         accessor.requestLoad(PREPEND, createMockState())
         testScope.advanceUntilIdle()
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.Error(exception),
-                append = LoadState.NotLoading.Incomplete
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.Error(exception),
+                    append = LoadState.NotLoading.Incomplete
+                )
             )
-        )
         // now complete append, a.k.a. endOfPaginationReached
         remoteMediatorMock.loadCallback = { type, _ ->
             if (type == APPEND) {
-                RemoteMediator.MediatorResult.Success(
-                    endOfPaginationReached = true
-                )
+                RemoteMediator.MediatorResult.Success(endOfPaginationReached = true)
             } else {
                 null
             }
         }
         accessor.requestLoad(APPEND, createMockState())
         testScope.advanceUntilIdle()
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.Error(exception),
-                append = LoadState.NotLoading.Complete
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.Error(exception),
+                    append = LoadState.NotLoading.Complete
+                )
             )
-        )
         // clear events
         remoteMediatorMock.newLoadEvents
         // another append request should just be ignored
         accessor.requestLoad(APPEND, createMockState())
         testScope.advanceUntilIdle()
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).isEmpty()
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.Error(exception),
-                append = LoadState.NotLoading.Complete
+        assertThat(remoteMediatorMock.newLoadEvents).isEmpty()
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.Error(exception),
+                    append = LoadState.NotLoading.Complete
+                )
             )
-        )
         val refreshState = createMockState()
         accessor.requestLoad(REFRESH, refreshState)
         testScope.advanceTimeBy(50)
         // prepend error state is still present
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                prepend = LoadState.Error(exception),
-                append = LoadState.NotLoading.Complete
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    prepend = LoadState.Error(exception),
+                    append = LoadState.NotLoading.Complete
+                )
             )
-        )
         testScope.advanceUntilIdle()
         // if refresh succeeds, it will clear the error state for refresh
-        assertThat(accessor.state.value).isEqualTo(
-            LoadStates.IDLE
-        )
-        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(
-            LoadEvent(REFRESH, refreshState)
-        )
+        assertThat(accessor.state.value).isEqualTo(LoadStates.IDLE)
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(REFRESH, refreshState))
     }
 
     @Test
     fun retry_refresh() {
-        val remoteMediatorMock = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock(loadDelay = 100).apply { initializeResult = SKIP_INITIAL_REFRESH }
         val exception = Exception()
         val accessor = testScope.createAccessor(remoteMediatorMock)
         remoteMediatorMock.loadCallback = { loadType, _ ->
@@ -918,28 +910,22 @@
         }
         val firstRefreshState = createMockState()
         accessor.requestLoad(REFRESH, firstRefreshState)
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(LoadEvent(REFRESH, firstRefreshState))
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(REFRESH, firstRefreshState))
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value.refresh
-        ).isEqualTo(
-            LoadState.Error(exception)
-        )
+        assertThat(accessor.state.value.refresh).isEqualTo(LoadState.Error(exception))
         val retryState = createMockState()
         accessor.retryFailed(retryState)
         testScope.advanceUntilIdle()
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(LoadEvent(REFRESH, retryState))
+        assertThat(remoteMediatorMock.newLoadEvents).containsExactly(LoadEvent(REFRESH, retryState))
     }
 
     @Test
     fun failedRefreshShouldNotAllowAppendPrependIfRefreshIsRequired() {
-        val remoteMediatorMock = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock(loadDelay = 100).apply {
+                initializeResult = RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
+            }
         val exception = Exception()
         val accessor = testScope.createAccessor(remoteMediatorMock)
         remoteMediatorMock.loadCallback = { _, _ ->
@@ -952,30 +938,20 @@
         // fail
 
         // ensure that we didn't set append/prepend to loading when refresh is required
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates.IDLE.modifyState(REFRESH, LoadState.Loading)
-        )
+        assertThat(accessor.state.value)
+            .isEqualTo(LoadStates.IDLE.modifyState(REFRESH, LoadState.Loading))
         testScope.advanceUntilIdle()
         // make sure only refresh has happened
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(
-            LoadEvent(REFRESH, initialState)
-        )
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates.IDLE.modifyState(REFRESH, LoadState.Error(exception))
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(REFRESH, initialState))
+        assertThat(accessor.state.value)
+            .isEqualTo(LoadStates.IDLE.modifyState(REFRESH, LoadState.Error(exception)))
     }
 
     @Test
     fun failedRefreshShouldAllowAppendPrependIfRefreshIsNotRequired() {
-        val remoteMediatorMock = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock(loadDelay = 100).apply { initializeResult = SKIP_INITIAL_REFRESH }
         val exception = Exception()
         val accessor = testScope.createAccessor(remoteMediatorMock)
         remoteMediatorMock.loadCallback = { loadType, _ ->
@@ -991,41 +967,36 @@
         accessor.requestLoad(PREPEND, initialState)
         accessor.requestLoad(APPEND, initialState)
         // make sure we optimistically updated append prepend states
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                append = LoadState.Loading,
-                prepend = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    append = LoadState.Loading,
+                    prepend = LoadState.Loading
+                )
             )
-        )
         testScope.advanceUntilIdle()
         // make sure all requests did happen eventually
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(
-            LoadEvent(REFRESH, initialState),
-            LoadEvent(PREPEND, initialState),
-            LoadEvent(APPEND, initialState)
-
-        )
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception),
-                append = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.Error(exception)
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(
+                LoadEvent(REFRESH, initialState),
+                LoadEvent(PREPEND, initialState),
+                LoadEvent(APPEND, initialState)
             )
-        )
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception),
+                    append = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.Error(exception)
+                )
+            )
     }
 
     @Test
     fun retry_retryBothAppendAndPrepend() {
-        val remoteMediatorMock = RemoteMediatorMock(loadDelay = 100).apply {
-            initializeResult = SKIP_INITIAL_REFRESH
-        }
+        val remoteMediatorMock =
+            RemoteMediatorMock(loadDelay = 100).apply { initializeResult = SKIP_INITIAL_REFRESH }
         val exception = Exception()
         val accessor = testScope.createAccessor(remoteMediatorMock)
         remoteMediatorMock.loadCallback = { _, _ ->
@@ -1037,52 +1008,43 @@
         accessor.requestLoad(PREPEND, prependState)
         accessor.requestLoad(APPEND, appendState)
         testScope.advanceUntilIdle()
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(
-            LoadEvent(PREPEND, prependState),
-            LoadEvent(APPEND, appendState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(PREPEND, prependState), LoadEvent(APPEND, appendState))
         // now retry, ensure both runs
         val retryState = createMockState()
         accessor.retryFailed(retryState)
         // make sure they both move to loading
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                append = LoadState.Loading,
-                prepend = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    append = LoadState.Loading,
+                    prepend = LoadState.Loading
+                )
             )
-        )
         testScope.advanceUntilIdle()
         // ensure they both got called
-        assertThat(
-            remoteMediatorMock.newLoadEvents
-        ).containsExactly(
-            LoadEvent(PREPEND, retryState),
-            LoadEvent(APPEND, retryState)
-        )
+        assertThat(remoteMediatorMock.newLoadEvents)
+            .containsExactly(LoadEvent(PREPEND, retryState), LoadEvent(APPEND, retryState))
         // make sure new loading states are correct
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                append = LoadState.Error(exception),
-                prepend = LoadState.Error(exception)
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    append = LoadState.Error(exception),
+                    prepend = LoadState.Error(exception)
+                )
             )
-        )
     }
 
     @Test
     fun retry_multipleTriggersOnlyRefresh() {
-        val remoteMediator = object : RemoteMediatorMock(100) {
-            override suspend fun initialize(): InitializeAction {
-                return SKIP_INITIAL_REFRESH
+        val remoteMediator =
+            object : RemoteMediatorMock(100) {
+                override suspend fun initialize(): InitializeAction {
+                    return SKIP_INITIAL_REFRESH
+                }
             }
-        }
         val exception = Exception()
         remoteMediator.loadCallback = { _, _ ->
             // fail all
@@ -1093,49 +1055,47 @@
         accessor.requestLoad(REFRESH, createMockState())
         accessor.requestLoad(APPEND, createMockState())
         accessor.requestLoad(PREPEND, createMockState())
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                append = LoadState.Loading,
-                prepend = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    append = LoadState.Loading,
+                    prepend = LoadState.Loading
+                )
             )
-        )
         // let refresh start but don't let it finish
         testScope.advanceUntilIdle()
         // get all errors
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception),
-                append = LoadState.Error(exception),
-                prepend = LoadState.Error(exception)
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception),
+                    append = LoadState.Error(exception),
+                    prepend = LoadState.Error(exception)
+                )
             )
-        )
         // let requests succeed
         remoteMediator.loadCallback = null
         val retryState = createMockState()
         accessor.retryFailed(retryState)
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                append = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    append = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.NotLoading.Incomplete
+                )
             )
-        )
     }
 
     @Test
     fun failingRefreshRetriesAppendPrepend_refreshNotRequired() {
-        val remoteMediator = object : RemoteMediatorMock(100) {
-            override suspend fun initialize(): InitializeAction {
-                return SKIP_INITIAL_REFRESH
+        val remoteMediator =
+            object : RemoteMediatorMock(100) {
+                override suspend fun initialize(): InitializeAction {
+                    return SKIP_INITIAL_REFRESH
+                }
             }
-        }
         val exception = Exception()
         remoteMediator.loadCallback = { type, _ ->
             // only fail for refresh
@@ -1150,59 +1110,54 @@
         accessor.requestLoad(REFRESH, createMockState())
         accessor.requestLoad(APPEND, createMockState())
         accessor.requestLoad(PREPEND, createMockState())
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                append = LoadState.Loading,
-                prepend = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    append = LoadState.Loading,
+                    prepend = LoadState.Loading
+                )
             )
-        )
         // let refresh start but don't let it finish
         testScope.advanceTimeBy(50)
         // make sure refresh does not revert the append / prepend states
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                append = LoadState.Loading,
-                prepend = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    append = LoadState.Loading,
+                    prepend = LoadState.Loading
+                )
             )
-        )
         // let refresh fail, it should retry append prepend
         testScope.advanceTimeBy(20)
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception),
-                append = LoadState.Loading,
-                prepend = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception),
+                    append = LoadState.Loading,
+                    prepend = LoadState.Loading
+                )
             )
-        )
         // let the prepend retry start
         testScope.advanceTimeBy(100)
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception),
-                append = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.Loading
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception),
+                    append = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.Loading
+                )
             )
-        )
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception),
-                append = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception),
+                    append = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.NotLoading.Incomplete
+                )
             )
-        )
     }
 
     @Test
@@ -1217,33 +1172,17 @@
         val accessor = testScope.createAccessor(remoteMediator)
         val state1 = createMockState()
         accessor.requestLoad(REFRESH, state1)
-        assertThat(
-            accessor.state.value.refresh
-        ).isEqualTo(
-            LoadState.Loading
-        )
+        assertThat(accessor.state.value.refresh).isEqualTo(LoadState.Loading)
         // run to get the error
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value.refresh
-        ).isEqualTo(
-            LoadState.Error(exception)
-        )
+        assertThat(accessor.state.value.refresh).isEqualTo(LoadState.Error(exception))
         // now send another load type refresh, should trigger another load
         remoteMediator.loadCallback = null // let it succeed
         val state2 = createMockState()
         accessor.requestLoad(REFRESH, state2)
-        assertThat(
-            accessor.state.value.refresh
-        ).isEqualTo(
-            LoadState.Loading
-        )
+        assertThat(accessor.state.value.refresh).isEqualTo(LoadState.Loading)
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value.refresh
-        ).isEqualTo(
-            LoadState.NotLoading.Incomplete
-        )
+        assertThat(accessor.state.value.refresh).isEqualTo(LoadState.NotLoading.Incomplete)
     }
 
     @Test
@@ -1262,38 +1201,35 @@
         accessor.requestLoad(PREPEND, state1)
         // run to get the error
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception),
-                prepend = LoadState.Error(exception),
-                append = LoadState.Error(exception),
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception),
+                    prepend = LoadState.Error(exception),
+                    append = LoadState.Error(exception),
+                )
             )
-        )
         // now send another load type refresh, should trigger another load
         remoteMediator.loadCallback = null // let it succeed
         val state2 = createMockState()
         accessor.requestLoad(REFRESH, state2)
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                prepend = LoadState.Error(exception), // keep errors for these for now
-                append = LoadState.Error(exception),
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    prepend = LoadState.Error(exception), // keep errors for these for now
+                    append = LoadState.Error(exception),
+                )
             )
-        )
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.NotLoading.Incomplete,
-                prepend = LoadState.NotLoading.Incomplete, // clear errors
-                append = LoadState.NotLoading.Incomplete,
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.NotLoading.Incomplete,
+                    prepend = LoadState.NotLoading.Incomplete, // clear errors
+                    append = LoadState.NotLoading.Incomplete,
+                )
             )
-        )
     }
 
     @Test
@@ -1312,15 +1248,14 @@
         accessor.requestLoad(PREPEND, state1)
         // run to get the error
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception1),
-                prepend = LoadState.Error(exception1),
-                append = LoadState.Error(exception1),
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception1),
+                    prepend = LoadState.Error(exception1),
+                    append = LoadState.Error(exception1),
+                )
             )
-        )
         // now send another load type refresh, should trigger another load
         val exception2 = Exception("2")
         remoteMediator.loadCallback = { _, _ ->
@@ -1329,25 +1264,23 @@
         }
         val state2 = createMockState()
         accessor.requestLoad(REFRESH, state2)
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Loading,
-                prepend = LoadState.Error(exception1), // keep errors for these for now
-                append = LoadState.Error(exception1),
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Loading,
+                    prepend = LoadState.Error(exception1), // keep errors for these for now
+                    append = LoadState.Error(exception1),
+                )
             )
-        )
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value
-        ).isEqualTo(
-            LoadStates(
-                refresh = LoadState.Error(exception2),
-                prepend = LoadState.Error(exception1), // these keep their original exceptions
-                append = LoadState.Error(exception1),
+        assertThat(accessor.state.value)
+            .isEqualTo(
+                LoadStates(
+                    refresh = LoadState.Error(exception2),
+                    prepend = LoadState.Error(exception1), // these keep their original exceptions
+                    append = LoadState.Error(exception1),
+                )
             )
-        )
     }
 
     @Test
@@ -1371,69 +1304,32 @@
         val accessor = testScope.createAccessor(remoteMediator)
         val state1 = createMockState()
         accessor.requestLoad(loadType, state1)
-        assertThat(
-            accessor.state.value.get(loadType)
-        ).isEqualTo(
-            LoadState.Loading
-        )
+        assertThat(accessor.state.value.get(loadType)).isEqualTo(LoadState.Loading)
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value.get(loadType)
-        ).isEqualTo(
-            LoadState.Error(exception)
-        )
-        assertThat(
-            remoteMediator.newLoadEvents
-        ).containsExactly(
-            LoadEvent(loadType, state1)
-        )
+        assertThat(accessor.state.value.get(loadType)).isEqualTo(LoadState.Error(exception))
+        assertThat(remoteMediator.newLoadEvents).containsExactly(LoadEvent(loadType, state1))
         // subsequent add calls shouldn't do anything
         accessor.requestLoad(loadType, createMockState())
-        assertThat(
-            accessor.state.value.get(loadType)
-        ).isEqualTo(
-            LoadState.Error(exception)
-        )
+        assertThat(accessor.state.value.get(loadType)).isEqualTo(LoadState.Error(exception))
         testScope.advanceUntilIdle()
-        assertThat(
-            accessor.state.value.get(loadType)
-        ).isEqualTo(
-            LoadState.Error(exception)
-        )
+        assertThat(accessor.state.value.get(loadType)).isEqualTo(LoadState.Error(exception))
         assertThat(remoteMediator.newLoadEvents).isEmpty()
 
         // if we send a retry, then it will work
         remoteMediator.loadCallback = null
         val retryState = createMockState()
         accessor.retryFailed(retryState)
-        assertThat(
-            accessor.state.value.get(loadType)
-        ).isEqualTo(
-            LoadState.Loading
-        )
+        assertThat(accessor.state.value.get(loadType)).isEqualTo(LoadState.Loading)
         testScope.advanceUntilIdle()
-        assertThat(
-            remoteMediator.newLoadEvents
-        ).containsExactly(
-            LoadEvent(loadType, retryState)
-        )
-        assertThat(
-            accessor.state.value.get(loadType)
-        ).isEqualTo(
-            LoadState.NotLoading.Incomplete
-        )
+        assertThat(remoteMediator.newLoadEvents).containsExactly(LoadEvent(loadType, retryState))
+        assertThat(accessor.state.value.get(loadType)).isEqualTo(LoadState.NotLoading.Incomplete)
     }
 
     private fun TestScope.createAccessor(
         mediator: RemoteMediatorMock
     ): RemoteMediatorAccessor<Int, Int> {
-        val accessor = RemoteMediatorAccessor(
-            scope = this,
-            delegate = mediator
-        )
-        TestScope().launch(coroutineContext) {
-            accessor.initialize()
-        }
+        val accessor = RemoteMediatorAccessor(scope = this, delegate = mediator)
+        TestScope().launch(coroutineContext) { accessor.initialize() }
         return accessor
     }
 }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsTest.kt
index d350843..854a536 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsTest.kt
@@ -38,18 +38,9 @@
     }
 }
 
-/**
- * Simpler assert which only concerns itself with page data, all other event types are ignored.
- */
-private fun <T : Any> assertInsertData(
-    expected: List<PageEvent<T>>,
-    actual: List<PageEvent<T>>
-) {
-    @Suppress("UNCHECKED_CAST")
-    assertEquals(
-        expected.getItems(),
-        actual.getItems()
-    )
+/** Simpler assert which only concerns itself with page data, all other event types are ignored. */
+private fun <T : Any> assertInsertData(expected: List<PageEvent<T>>, actual: List<PageEvent<T>>) {
+    @Suppress("UNCHECKED_CAST") assertEquals(expected.getItems(), actual.getItems())
 }
 
 @OptIn(ExperimentalCoroutinesApi::class)
@@ -57,290 +48,275 @@
     @Test
     fun refreshFull() = runTest {
         assertThat(
-            flowOf(
-                localRefresh(
-                    pages = listOf(
-                        listOf("a2", "b1"),
-                        listOf("c1", "c2")
-                    ).toTransformablePages(),
-                    placeholdersAfter = 1,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                localRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("a2", "B", "b1"),
-                            hintOriginalPageOffset = 0,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("C"),
-                            hintOriginalPageOffset = 1,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1", "c2")
+                flowOf(
+                        localRefresh(
+                            pages =
+                                listOf(listOf("a2", "b1"), listOf("c1", "c2"))
+                                    .toTransformablePages(),
+                            placeholdersAfter = 1,
                         )
-                    ),
-                    placeholdersAfter = 1,
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("a2", "B", "b1"),
+                                    hintOriginalPageOffset = 0,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("C"),
+                                    hintOriginalPageOffset = 1,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(originalPageOffset = 1, data = listOf("c1", "c2"))
+                            ),
+                        placeholdersAfter = 1,
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun refreshStartFull() = runTest {
-        val refresh = localRefresh(
-            pages = listOf(
-                listOf("c1")
-            ).toTransformablePages(),
-            placeholdersAfter = 1,
-        )
+        val refresh =
+            localRefresh(
+                pages = listOf(listOf("c1")).toTransformablePages(),
+                placeholdersAfter = 1,
+            )
 
         assertThat(
-            flowOf(
-                refresh,
-                localPrepend(
-                    pages = listOf(
-                        listOf("a1", "b1"),
-                        listOf("b2", "b3")
-                    ).toTransformablePages(2),
-                    placeholdersBefore = 1,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                refresh,
-                localPrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-2),
-                            data = listOf("a1", "B", "b1"),
-                            hintOriginalPageOffset = -2,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("b2", "b3")
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1, 0),
-                            data = listOf("C"),
-                            hintOriginalPageOffset = -1,
-                            hintOriginalIndices = listOf(1)
+                flowOf(
+                        refresh,
+                        localPrepend(
+                            pages =
+                                listOf(listOf("a1", "b1"), listOf("b2", "b3"))
+                                    .toTransformablePages(2),
+                            placeholdersBefore = 1,
                         )
-                    ),
-                    placeholdersBefore = 1,
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    refresh,
+                    localPrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-2),
+                                    data = listOf("a1", "B", "b1"),
+                                    hintOriginalPageOffset = -2,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = -1,
+                                    data = listOf("b2", "b3")
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1, 0),
+                                    data = listOf("C"),
+                                    hintOriginalPageOffset = -1,
+                                    hintOriginalIndices = listOf(1)
+                                )
+                            ),
+                        placeholdersBefore = 1,
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun refreshEndFull() = runTest {
-        val refresh = localRefresh(
-            pages = listOf(
-                listOf("a1", "a2")
-            ).toTransformablePages(),
-            placeholdersBefore = 0,
-            placeholdersAfter = 1,
-        )
+        val refresh =
+            localRefresh(
+                pages = listOf(listOf("a1", "a2")).toTransformablePages(),
+                placeholdersBefore = 0,
+                placeholdersAfter = 1,
+            )
         assertThat(
-            flowOf(
-                refresh,
-                localAppend(
-                    pages = listOf(
-                        listOf("c1", "d1"),
-                        listOf("d2", "d3")
-                    ).toTransformablePages(-1),
-                    placeholdersAfter = 1,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                refresh,
-                localAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("C"),
-                            hintOriginalPageOffset = 1,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1),
-                            data = listOf("c1", "D", "d1"),
-                            hintOriginalPageOffset = 1,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 2,
-                            data = listOf("d2", "d3")
+                flowOf(
+                        refresh,
+                        localAppend(
+                            pages =
+                                listOf(listOf("c1", "d1"), listOf("d2", "d3"))
+                                    .toTransformablePages(-1),
+                            placeholdersAfter = 1,
                         )
-                    ),
-                    placeholdersAfter = 1,
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    refresh,
+                    localAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("C"),
+                                    hintOriginalPageOffset = 1,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1),
+                                    data = listOf("c1", "D", "d1"),
+                                    hintOriginalPageOffset = 1,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(originalPageOffset = 2, data = listOf("d2", "d3"))
+                            ),
+                        placeholdersAfter = 1,
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun refreshDropFull() = runTest {
         assertThat(
-            flowOf(
-                localRefresh(
-                    pages = listOf(
-                        listOf("a1"),
-                        listOf("a2")
-                    ).toTransformablePages(),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
-                ),
-                Drop(APPEND, 1, 1, 4)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                localRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("a1")
+                flowOf(
+                        localRefresh(
+                            pages = listOf(listOf("a1"), listOf("a2")).toTransformablePages(),
+                            placeholdersBefore = 0,
+                            placeholdersAfter = 1,
                         ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("a2")
-                        )
-                    ),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
-                ),
-                Drop<String>(APPEND, 1, 1, 4)
+                        Drop(APPEND, 1, 1, 4)
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = 0, data = listOf("a1")),
+                                TransformablePage(originalPageOffset = 1, data = listOf("a2"))
+                            ),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 1,
+                    ),
+                    Drop<String>(APPEND, 1, 1, 4)
+                )
+            )
     }
 
     private fun refresh(
         pages: List<String?>,
         prepend: LoadState = NotLoading.Incomplete,
         append: LoadState = NotLoading.Incomplete
-    ) = localRefresh(
-        pages = when {
-            pages.isEmpty() -> listOf(TransformablePage.empty())
-            else -> pages.map {
-                if (it != null) listOf(it)
-                else listOf()
-            }.toTransformablePages()
-        },
-        placeholdersBefore = 0,
-        placeholdersAfter = 1,
-        source = loadStates(prepend = prepend, append = append)
-    )
+    ) =
+        localRefresh(
+            pages =
+                when {
+                    pages.isEmpty() -> listOf(TransformablePage.empty())
+                    else ->
+                        pages
+                            .map { if (it != null) listOf(it) else listOf() }
+                            .toTransformablePages()
+                },
+            placeholdersBefore = 0,
+            placeholdersAfter = 1,
+            source = loadStates(prepend = prepend, append = append)
+        )
 
-    private fun prepend(
-        pages: List<String?>,
-        prepend: LoadState = NotLoading.Incomplete
-    ) = localPrepend(
-        pages = pages.map {
-            if (it != null) listOf(it) else listOf()
-        }.toTransformablePages(),
-        source = loadStates(prepend = prepend)
-    )
+    private fun prepend(pages: List<String?>, prepend: LoadState = NotLoading.Incomplete) =
+        localPrepend(
+            pages = pages.map { if (it != null) listOf(it) else listOf() }.toTransformablePages(),
+            source = loadStates(prepend = prepend)
+        )
 
-    private fun append(
-        pages: List<String?>,
-        append: LoadState = NotLoading.Incomplete
-    ) = localAppend(
-        pages = pages.map {
-            if (it != null) listOf(it) else listOf()
-        }.toTransformablePages(),
-        source = loadStates(append = append)
-    )
+    private fun append(pages: List<String?>, append: LoadState = NotLoading.Incomplete) =
+        localAppend(
+            pages = pages.map { if (it != null) listOf(it) else listOf() }.toTransformablePages(),
+            source = loadStates(append = append)
+        )
 
-    private fun drop(loadType: LoadType, minPageOffset: Int, maxPageOffset: Int) = Drop<String>(
-        loadType = loadType,
-        minPageOffset = minPageOffset,
-        maxPageOffset = maxPageOffset,
-        placeholdersRemaining = 0
-    )
+    private fun drop(loadType: LoadType, minPageOffset: Int, maxPageOffset: Int) =
+        Drop<String>(
+            loadType = loadType,
+            minPageOffset = minPageOffset,
+            maxPageOffset = maxPageOffset,
+            placeholdersRemaining = 0
+        )
 
     @Test
     fun refreshNoop() = runTest {
         assertInsertData(
-            listOf(
-                refresh(pages = listOf("a1"))
-            ),
-            flowOf(
-                refresh(pages = listOf("a1"))
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+            listOf(refresh(pages = listOf("a1"))),
+            flowOf(refresh(pages = listOf("a1")))
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
     @Test
     fun refreshStartDone() = runTest {
         assertInsertData(
-            listOf(
-                refresh(pages = listOf("A", "a1"))
-            ),
-            flowOf(
-                refresh(pages = listOf("a1"), prepend = NotLoading.Complete)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+            listOf(refresh(pages = listOf("A", "a1"))),
+            flowOf(refresh(pages = listOf("a1"), prepend = NotLoading.Complete))
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
     @Test
     fun refreshEndDone() = runTest {
         assertInsertData(
-            listOf(
-                refresh(pages = listOf("a1", "END"))
-            ),
-            flowOf(
-                refresh(pages = listOf("a1"), append = NotLoading.Complete)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+            listOf(refresh(pages = listOf("a1", "END"))),
+            flowOf(refresh(pages = listOf("a1"), append = NotLoading.Complete))
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
     @Test
     fun refreshBothDone() = runTest {
         assertInsertData(
-            listOf(
-                refresh(pages = listOf("A", "a1", "END"))
-            ),
+            listOf(refresh(pages = listOf("A", "a1", "END"))),
             flowOf(
-                refresh(
-                    pages = listOf("a1"),
-                    prepend = NotLoading.Complete,
-                    append = NotLoading.Complete
+                    refresh(
+                        pages = listOf("a1"),
+                        prepend = NotLoading.Complete,
+                        append = NotLoading.Complete
+                    )
                 )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -352,12 +328,12 @@
                 // both sides.
                 refresh(pages = listOf<String>())
             ),
-            flowOf(
-                refresh(pages = listOf())
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+            flowOf(refresh(pages = listOf()))
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -375,14 +351,16 @@
                 append(pages = listOf("END"))
             ),
             flowOf(
-                refresh(pages = listOf(), prepend = NotLoading.Complete),
-                append(pages = listOf("a1")),
-                append(pages = listOf()),
-                append(pages = listOf(), append = NotLoading.Complete)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+                    refresh(pages = listOf(), prepend = NotLoading.Complete),
+                    append(pages = listOf("a1")),
+                    append(pages = listOf()),
+                    append(pages = listOf(), append = NotLoading.Complete)
+                )
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -400,14 +378,16 @@
                 prepend(pages = listOf("A"))
             ),
             flowOf(
-                refresh(pages = listOf(), append = NotLoading.Complete),
-                prepend(pages = listOf("a1")),
-                prepend(pages = listOf()),
-                prepend(pages = listOf(), prepend = NotLoading.Complete)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+                    refresh(pages = listOf(), append = NotLoading.Complete),
+                    prepend(pages = listOf("a1")),
+                    prepend(pages = listOf()),
+                    prepend(pages = listOf(), prepend = NotLoading.Complete)
+                )
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -423,14 +403,16 @@
                 prepend(pages = listOf("A"))
             ),
             flowOf(
-                refresh(pages = listOf(), prepend = NotLoading.Complete),
-                drop(loadType = PREPEND, minPageOffset = 0, maxPageOffset = 0),
-                append(pages = listOf("a1")),
-                prepend(pages = listOf(), prepend = NotLoading.Complete)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+                    refresh(pages = listOf(), prepend = NotLoading.Complete),
+                    drop(loadType = PREPEND, minPageOffset = 0, maxPageOffset = 0),
+                    append(pages = listOf("a1")),
+                    prepend(pages = listOf(), prepend = NotLoading.Complete)
+                )
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -446,14 +428,16 @@
                 append(pages = listOf("END"))
             ),
             flowOf(
-                refresh(pages = listOf(), append = NotLoading.Complete),
-                drop(loadType = APPEND, minPageOffset = 0, maxPageOffset = 0),
-                prepend(pages = listOf("a1")),
-                append(pages = listOf(), append = NotLoading.Complete)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+                    refresh(pages = listOf(), append = NotLoading.Complete),
+                    drop(loadType = APPEND, minPageOffset = 0, maxPageOffset = 0),
+                    prepend(pages = listOf("a1")),
+                    append(pages = listOf(), append = NotLoading.Complete)
+                )
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -465,13 +449,12 @@
                 // not enough data to create separators yet
                 prepend(pages = listOf("a1"))
             ),
-            flowOf(
-                refresh(pages = listOf()),
-                prepend(pages = listOf("a1"))
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+            flowOf(refresh(pages = listOf()), prepend(pages = listOf("a1")))
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -483,13 +466,12 @@
                 // not enough data to create separators yet
                 append(pages = listOf("a1"))
             ),
-            flowOf(
-                refresh(pages = listOf()),
-                append(pages = listOf("a1"))
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
+            flowOf(refresh(pages = listOf()), append(pages = listOf("a1")))
+                .insertEventSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .toList()
         )
     }
 
@@ -497,95 +479,85 @@
     fun refreshEmptyStartDropFull() = runTest {
         // when start terminal separator is inserted, we need to drop count*2 + 1
         assertThat(
-            flowOf(
-                refresh(
-                    pages = listOf("a1", "b1"),
-                    prepend = NotLoading.Complete
-                ),
-                drop(loadType = PREPEND, minPageOffset = 0, maxPageOffset = 0)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                localRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("A"),
-                            hintOriginalPageOffset = 0,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("a1")
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("B"),
-                            hintOriginalPageOffset = 1,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("b1")
-                        )
-                    ),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
-                    source = loadStates(prepend = NotLoading.Complete)
-                ),
-                drop(loadType = PREPEND, minPageOffset = 0, maxPageOffset = 0)
+                flowOf(
+                        refresh(pages = listOf("a1", "b1"), prepend = NotLoading.Complete),
+                        drop(loadType = PREPEND, minPageOffset = 0, maxPageOffset = 0)
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("A"),
+                                    hintOriginalPageOffset = 0,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(originalPageOffset = 0, data = listOf("a1")),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("B"),
+                                    hintOriginalPageOffset = 1,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(originalPageOffset = 1, data = listOf("b1"))
+                            ),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 1,
+                        source = loadStates(prepend = NotLoading.Complete)
+                    ),
+                    drop(loadType = PREPEND, minPageOffset = 0, maxPageOffset = 0)
+                )
+            )
     }
 
     @Test
     fun refreshEmptyEndDropFull() = runTest {
         // when end terminal separator is inserted, we need to drop count*2 + 1
         assertThat(
-            flowOf(
-                refresh(
-                    pages = listOf("a1", "b1"),
-                    append = NotLoading.Complete
-                ),
-                drop(loadType = APPEND, minPageOffset = 0, maxPageOffset = 0)
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                localRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("a1")
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("B"),
-                            hintOriginalPageOffset = 1,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("b1")
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1),
-                            data = listOf("END"),
-                            hintOriginalPageOffset = 1,
-                            hintOriginalIndices = listOf(0)
-                        )
-                    ),
-                    placeholdersAfter = 1,
-                    source = loadStates(append = NotLoading.Complete),
-                ),
-                drop(loadType = APPEND, minPageOffset = 0, maxPageOffset = 0)
+                flowOf(
+                        refresh(pages = listOf("a1", "b1"), append = NotLoading.Complete),
+                        drop(loadType = APPEND, minPageOffset = 0, maxPageOffset = 0)
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = 0, data = listOf("a1")),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("B"),
+                                    hintOriginalPageOffset = 1,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(originalPageOffset = 1, data = listOf("b1")),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1),
+                                    data = listOf("END"),
+                                    hintOriginalPageOffset = 1,
+                                    hintOriginalIndices = listOf(0)
+                                )
+                            ),
+                        placeholdersAfter = 1,
+                        source = loadStates(append = NotLoading.Complete),
+                    ),
+                    drop(loadType = APPEND, minPageOffset = 0, maxPageOffset = 0)
+                )
+            )
     }
 
     @Test
@@ -597,1456 +569,1507 @@
         assertInsertData(
             listOf(
                 localRefresh(
-                    pages = listOf(
-                        listOf(
-                            PrimaryType("a1"),
-                            SeparatorType("B"),
-                            PrimaryType("b1")
-                        )
-                    ).toTransformablePages(),
+                    pages =
+                        listOf(listOf(PrimaryType("a1"), SeparatorType("B"), PrimaryType("b1")))
+                            .toTransformablePages(),
                     placeholdersBefore = 0,
                     placeholdersAfter = 1,
                 )
             ),
             flowOf(
-                localRefresh(
-                    pages = listOf(listOf(PrimaryType("a1"), PrimaryType("b1")))
-                        .toTransformablePages(),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
-                )
-            ).insertEventSeparators(terminalSeparatorType = FULLY_COMPLETE) { before, after ->
-                return@insertEventSeparators (
-                    if (before != null && after != null) {
-                        SeparatorType("B")
-                    } else null
+                    localRefresh(
+                        pages =
+                            listOf(listOf(PrimaryType("a1"), PrimaryType("b1")))
+                                .toTransformablePages(),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 1,
                     )
-            }.toList()
+                )
+                .insertEventSeparators(terminalSeparatorType = FULLY_COMPLETE) { before, after ->
+                    return@insertEventSeparators (if (before != null && after != null) {
+                        SeparatorType("B")
+                    } else null)
+                }
+                .toList()
         )
     }
 
     @Test
     fun refreshEmptyPagesExceptOne() = runTest {
         assertThat(
-            flowOf(
-                localRefresh(
-                    pages = listOf(
-                        listOf(),
-                        listOf(),
-                        listOf("a2", "b1"),
-                        listOf(),
-                        listOf()
-                    ).toTransformablePages(),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                localRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(2),
-                            data = listOf("a2", "B", "b1"),
-                            hintOriginalPageOffset = 2,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 3,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 4,
-                            data = listOf()
+                flowOf(
+                        localRefresh(
+                            pages =
+                                listOf(listOf(), listOf(), listOf("a2", "b1"), listOf(), listOf())
+                                    .toTransformablePages(),
+                            placeholdersBefore = 0,
+                            placeholdersAfter = 1,
                         )
-                    ),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = 0, data = listOf()),
+                                TransformablePage(originalPageOffset = 1, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(2),
+                                    data = listOf("a2", "B", "b1"),
+                                    hintOriginalPageOffset = 2,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(originalPageOffset = 3, data = listOf()),
+                                TransformablePage(originalPageOffset = 4, data = listOf())
+                            ),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 1,
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun refreshSparsePages() = runTest {
         assertThat(
-            flowOf(
-                localRefresh(
-                    pages = listOf(
-                        listOf(),
-                        listOf("a2", "b1"),
-                        listOf(),
-                        listOf("c1", "c2"),
-                        listOf()
-                    ).toTransformablePages(),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                localRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1),
-                            data = listOf("a2", "B", "b1"),
-                            hintOriginalPageOffset = 1,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 2,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1, 3),
-                            data = listOf("C"),
-                            hintOriginalPageOffset = 3,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 3,
-                            data = listOf("c1", "c2")
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 4,
-                            data = listOf()
+                flowOf(
+                        localRefresh(
+                            pages =
+                                listOf(
+                                        listOf(),
+                                        listOf("a2", "b1"),
+                                        listOf(),
+                                        listOf("c1", "c2"),
+                                        listOf()
+                                    )
+                                    .toTransformablePages(),
+                            placeholdersBefore = 0,
+                            placeholdersAfter = 1,
                         )
-                    ),
-                    placeholdersBefore = 0,
-                    placeholdersAfter = 1,
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    localRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = 0, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1),
+                                    data = listOf("a2", "B", "b1"),
+                                    hintOriginalPageOffset = 1,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(originalPageOffset = 2, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1, 3),
+                                    data = listOf("C"),
+                                    hintOriginalPageOffset = 3,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 3,
+                                    data = listOf("c1", "c2")
+                                ),
+                                TransformablePage(originalPageOffset = 4, data = listOf())
+                            ),
+                        placeholdersBefore = 0,
+                        placeholdersAfter = 1,
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun prependEmptyPagesExceptOne() = runTest {
-        val refresh = localRefresh(
-            pages = listOf(
-                listOf("c1", "c2")
-            ).toTransformablePages(),
-            placeholdersBefore = 2,
-        )
+        val refresh =
+            localRefresh(
+                pages = listOf(listOf("c1", "c2")).toTransformablePages(),
+                placeholdersBefore = 2,
+            )
 
         assertThat(
-            flowOf(
-                refresh,
-                localPrepend(
-                    pages = listOf(
-                        listOf(),
-                        listOf(),
-                        listOf("a1", "b1"),
-                        listOf(),
-                        listOf()
-                    ).toTransformablePages(5),
-                    placeholdersBefore = 0,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                refresh,
-                localPrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -5,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -4,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-3),
-                            data = listOf("a1", "B", "b1"),
-                            hintOriginalPageOffset = -3,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-3, 0),
-                            data = listOf("C"),
-                            hintOriginalPageOffset = -3,
-                            hintOriginalIndices = listOf(1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -2,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf()
+                flowOf(
+                        refresh,
+                        localPrepend(
+                            pages =
+                                listOf(listOf(), listOf(), listOf("a1", "b1"), listOf(), listOf())
+                                    .toTransformablePages(5),
+                            placeholdersBefore = 0,
                         )
-                    ),
-                    placeholdersBefore = 0,
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    refresh,
+                    localPrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = -5, data = listOf()),
+                                TransformablePage(originalPageOffset = -4, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-3),
+                                    data = listOf("a1", "B", "b1"),
+                                    hintOriginalPageOffset = -3,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-3, 0),
+                                    data = listOf("C"),
+                                    hintOriginalPageOffset = -3,
+                                    hintOriginalIndices = listOf(1)
+                                ),
+                                TransformablePage(originalPageOffset = -2, data = listOf()),
+                                TransformablePage(originalPageOffset = -1, data = listOf())
+                            ),
+                        placeholdersBefore = 0,
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun prependSparsePages() = runTest {
-        val refresh = localRefresh(
-            pages = listOf(
-                listOf("d1", "d2")
-            ).toTransformablePages(),
-            placeholdersBefore = 0,
-            placeholdersAfter = 4,
-        )
+        val refresh =
+            localRefresh(
+                pages = listOf(listOf("d1", "d2")).toTransformablePages(),
+                placeholdersBefore = 0,
+                placeholdersAfter = 4,
+            )
 
         assertThat(
-            flowOf(
-                refresh,
-                localPrepend(
-                    pages = listOf(
-                        listOf(),
-                        listOf("a1", "b1"),
-                        listOf(),
-                        listOf("c1", "c2"),
-                        listOf()
-                    ).toTransformablePages(5),
-                    placeholdersBefore = 0,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                refresh,
-                localPrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -5,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-4),
-                            data = listOf("a1", "B", "b1"),
-                            hintOriginalPageOffset = -4,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -3,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-4, -2),
-                            data = listOf("C"),
-                            hintOriginalPageOffset = -4,
-                            hintOriginalIndices = listOf(1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -2,
-                            data = listOf("c1", "c2")
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-2, 0),
-                            data = listOf("D"),
-                            hintOriginalPageOffset = -2,
-                            hintOriginalIndices = listOf(1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf()
+                flowOf(
+                        refresh,
+                        localPrepend(
+                            pages =
+                                listOf(
+                                        listOf(),
+                                        listOf("a1", "b1"),
+                                        listOf(),
+                                        listOf("c1", "c2"),
+                                        listOf()
+                                    )
+                                    .toTransformablePages(5),
+                            placeholdersBefore = 0,
                         )
-                    ),
-                    placeholdersBefore = 0,
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    refresh,
+                    localPrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = -5, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-4),
+                                    data = listOf("a1", "B", "b1"),
+                                    hintOriginalPageOffset = -4,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(originalPageOffset = -3, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-4, -2),
+                                    data = listOf("C"),
+                                    hintOriginalPageOffset = -4,
+                                    hintOriginalIndices = listOf(1)
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = -2,
+                                    data = listOf("c1", "c2")
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-2, 0),
+                                    data = listOf("D"),
+                                    hintOriginalPageOffset = -2,
+                                    hintOriginalIndices = listOf(1)
+                                ),
+                                TransformablePage(originalPageOffset = -1, data = listOf())
+                            ),
+                        placeholdersBefore = 0,
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun appendEmptyPagesExceptOne() = runTest {
-        val refresh = localRefresh(
-            pages = listOf(
-                listOf("a1", "a2")
-            ).toTransformablePages(),
-            placeholdersBefore = 0,
-            placeholdersAfter = 2,
-        )
+        val refresh =
+            localRefresh(
+                pages = listOf(listOf("a1", "a2")).toTransformablePages(),
+                placeholdersBefore = 0,
+                placeholdersAfter = 2,
+            )
 
         assertThat(
-            flowOf(
-                refresh,
-                localAppend(
-                    pages = listOf(
-                        listOf(),
-                        listOf(),
-                        listOf("b1", "c1"),
-                        listOf(),
-                        listOf()
-                    ).toTransformablePages(-1),
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                refresh,
-                localAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 2,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 3),
-                            data = listOf("B"),
-                            hintOriginalPageOffset = 3,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(3),
-                            data = listOf("b1", "C", "c1"),
-                            hintOriginalPageOffset = 3,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 4,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 5,
-                            data = listOf()
+                flowOf(
+                        refresh,
+                        localAppend(
+                            pages =
+                                listOf(listOf(), listOf(), listOf("b1", "c1"), listOf(), listOf())
+                                    .toTransformablePages(-1),
                         )
-                    ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    refresh,
+                    localAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = 1, data = listOf()),
+                                TransformablePage(originalPageOffset = 2, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 3),
+                                    data = listOf("B"),
+                                    hintOriginalPageOffset = 3,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(3),
+                                    data = listOf("b1", "C", "c1"),
+                                    hintOriginalPageOffset = 3,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(originalPageOffset = 4, data = listOf()),
+                                TransformablePage(originalPageOffset = 5, data = listOf())
+                            ),
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun appendSparsePages() = runTest {
-        val refresh = localRefresh(
-            pages = listOf(
-                listOf("a1", "a2")
-            ).toTransformablePages(),
-            placeholdersBefore = 0,
-            placeholdersAfter = 4,
-        )
+        val refresh =
+            localRefresh(
+                pages = listOf(listOf("a1", "a2")).toTransformablePages(),
+                placeholdersBefore = 0,
+                placeholdersAfter = 4,
+            )
 
         assertThat(
-            flowOf(
-                refresh,
-                localAppend(
-                    pages = listOf(
-                        listOf(),
-                        listOf("b1", "c1"),
-                        listOf(),
-                        listOf("d1", "d2"),
-                        listOf()
-                    ).toTransformablePages(-1),
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                refresh,
-                localAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 2),
-                            data = listOf("B"),
-                            hintOriginalPageOffset = 2,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(2),
-                            data = listOf("b1", "C", "c1"),
-                            hintOriginalPageOffset = 2,
-                            hintOriginalIndices = listOf(0, 1, 1)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 3,
-                            data = listOf()
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(2, 4),
-                            data = listOf("D"),
-                            hintOriginalPageOffset = 4,
-                            hintOriginalIndices = listOf(0)
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 4,
-                            data = listOf("d1", "d2")
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 5,
-                            data = listOf()
+                flowOf(
+                        refresh,
+                        localAppend(
+                            pages =
+                                listOf(
+                                        listOf(),
+                                        listOf("b1", "c1"),
+                                        listOf(),
+                                        listOf("d1", "d2"),
+                                        listOf()
+                                    )
+                                    .toTransformablePages(-1),
                         )
-                    ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
+            )
+            .isEqualTo(
+                listOf(
+                    refresh,
+                    localAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(originalPageOffset = 1, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 2),
+                                    data = listOf("B"),
+                                    hintOriginalPageOffset = 2,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(2),
+                                    data = listOf("b1", "C", "c1"),
+                                    hintOriginalPageOffset = 2,
+                                    hintOriginalIndices = listOf(0, 1, 1)
+                                ),
+                                TransformablePage(originalPageOffset = 3, data = listOf()),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(2, 4),
+                                    data = listOf("D"),
+                                    hintOriginalPageOffset = 4,
+                                    hintOriginalIndices = listOf(0)
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 4,
+                                    data = listOf("d1", "d2")
+                                ),
+                                TransformablePage(originalPageOffset = 5, data = listOf())
+                            ),
+                    )
                 )
             )
-        )
     }
 
     @Test
     fun remoteRefreshEndOfPaginationReached_fullyComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteLoadStateUpdate(
-                    refreshRemote = Loading
-                ),
-                remoteLoadStateUpdate(
-                    refreshLocal = Loading,
-                    refreshRemote = Loading
-                ),
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(append = NotLoading.Complete, prepend = NotLoading.Complete)
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete,
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteLoadStateUpdate(
-                    refreshRemote = Loading
-                ),
-                remoteLoadStateUpdate(
-                    refreshLocal = Loading,
-                    refreshRemote = Loading
-                ),
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(append = NotLoading.Complete, prepend = NotLoading.Complete)
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                flowOf(
+                        remoteLoadStateUpdate(refreshRemote = Loading),
+                        remoteLoadStateUpdate(refreshLocal = Loading, refreshRemote = Loading),
+                        remoteRefresh(
+                            pages = listOf(listOf("a1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    append = NotLoading.Complete,
+                                    prepend = NotLoading.Complete
+                                )
                         ),
-                    ),
-                    placeholdersBefore = 1,
-                    source = loadStates(
-                        append = NotLoading.Complete,
-                        prepend = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        refresh = NotLoading.Complete,
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            refreshRemote = NotLoading.Complete,
                         ),
-                    ),
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        append = NotLoading.Complete,
-                        prepend = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        refresh = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            refreshRemote = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        ),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            refreshRemote = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteLoadStateUpdate(refreshRemote = Loading),
+                    remoteLoadStateUpdate(refreshLocal = Loading, refreshRemote = Loading),
+                    remoteRefresh(
+                        pages = listOf(listOf("a1")).toTransformablePages(),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(append = NotLoading.Complete, prepend = NotLoading.Complete)
+                    ),
+                    remoteLoadStateUpdate(
+                        appendLocal = NotLoading.Complete,
+                        prependLocal = NotLoading.Complete,
+                        refreshRemote = NotLoading.Complete
+                    ),
+                    remotePrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersBefore = 1,
+                        source =
+                            loadStates(
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                refresh = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                    remoteAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                refresh = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remoteRefreshEndOfPaginationReached_sourceComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteLoadStateUpdate(
-                    refreshRemote = Loading
-                ),
-                remoteLoadStateUpdate(
-                    refreshLocal = Loading,
-                    refreshRemote = Loading
-                ),
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        append = NotLoading.Complete,
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = SOURCE_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteLoadStateUpdate(
-                    refreshRemote = Loading
-                ),
-                remoteLoadStateUpdate(
-                    refreshLocal = Loading,
-                    refreshRemote = Loading
-                ),
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                flowOf(
+                        remoteLoadStateUpdate(refreshRemote = Loading),
+                        remoteLoadStateUpdate(refreshLocal = Loading, refreshRemote = Loading),
+                        remoteRefresh(
+                            pages = listOf(listOf("a1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    append = NotLoading.Complete,
+                                    prepend = NotLoading.Complete,
+                                ),
                         ),
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("a1"),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            refreshRemote = NotLoading.Complete
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            refreshRemote = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
                         ),
-                    ),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    refreshRemote = NotLoading.Complete
-                ),
-                remotePrepend(
-                    pages = listOf(),
-                    placeholdersBefore = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        refresh = NotLoading.Complete,
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-                remoteAppend(
-                    pages = listOf(),
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        refresh = NotLoading.Complete,
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            refreshRemote = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = SOURCE_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteLoadStateUpdate(refreshRemote = Loading),
+                    remoteLoadStateUpdate(refreshLocal = Loading, refreshRemote = Loading),
+                    remoteRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 0,
+                                    data = listOf("a1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remoteLoadStateUpdate(
+                        appendLocal = NotLoading.Complete,
+                        prependLocal = NotLoading.Complete,
+                        refreshRemote = NotLoading.Complete
+                    ),
+                    remotePrepend(
+                        pages = listOf(),
+                        placeholdersBefore = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                refresh = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                    remoteAppend(
+                        pages = listOf(),
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                refresh = NotLoading.Complete,
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remotePrependEndOfPaginationReached_fullyComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote prepend is done triggers the header to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("a1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    placeholdersBefore = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
+                        // Signalling that remote prepend is done triggers the header to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        )
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages = listOf(listOf("a1")).toTransformablePages(),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remotePrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersBefore = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remotePrependEndOfPaginationReached_sourceComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote prepend is done triggers the header to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                )
-            ).insertEventSeparators(
-                terminalSeparatorType = SOURCE_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("a1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("a1"),
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
-                        ),
-                    ),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remotePrepend(
-                    pages = listOf(),
-                    placeholdersBefore = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
+                        // Signalling that remote prepend is done triggers the header to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        )
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = SOURCE_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 0,
+                                    data = listOf("a1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remotePrepend(
+                        pages = listOf(),
+                        placeholdersBefore = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remotePrependEndOfPaginationReachedWithDrops_fullyComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("b1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
-                        )
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote prepend is done triggers the header to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                ),
-                // Drop the first page, header and separator between "b1" and "a1"
-                Drop(
-                    loadType = PREPEND,
-                    minPageOffset = -1,
-                    maxPageOffset = -1,
-                    placeholdersRemaining = 1
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
-                        )
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(listOf("b1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("b1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1, 0),
-                            data = listOf("B"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1
+                        remotePrepend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = -1,
+                                        data = listOf("a1"),
+                                    )
+                                ),
+                            placeholdersBefore = 0,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1,
+                        // Signalling that remote prepend is done triggers the header to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
                         ),
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-                Drop(
-                    loadType = PREPEND,
-                    minPageOffset = -1,
-                    maxPageOffset = -1,
-                    placeholdersRemaining = 1
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1,
+                        // Drop the first page, header and separator between "b1" and "a1"
+                        Drop(
+                            loadType = PREPEND,
+                            minPageOffset = -1,
+                            maxPageOffset = -1,
+                            placeholdersRemaining = 1
                         ),
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
+                        remotePrepend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = -1,
+                                        data = listOf("a1"),
+                                    )
+                                ),
+                            placeholdersBefore = 0,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
+                            mediator =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                ),
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1, 0),
-                            data = listOf("B"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1
-                        ),
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages = listOf(listOf("b1")).toTransformablePages(),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remotePrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffset = -1,
+                                    data = listOf("a1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1, 0),
+                                    data = listOf("B"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1
+                                ),
+                            ),
+                        placeholdersBefore = 0,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remotePrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1,
+                                ),
+                            ),
+                        placeholdersBefore = 0,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                    Drop(
+                        loadType = PREPEND,
+                        minPageOffset = -1,
+                        maxPageOffset = -1,
+                        placeholdersRemaining = 1
+                    ),
+                    remotePrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1,
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = -1,
+                                    data = listOf("a1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1, 0),
+                                    data = listOf("B"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1
+                                ),
+                            ),
+                        placeholdersBefore = 0,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remotePrependEndOfPaginationReachedWithDrops_sourceComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("b1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(append = NotLoading.Complete),
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
-                        )
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote prepend is done triggers the header to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                ),
-                // Drop the first page, header and separator between "b1" and "a1"
-                Drop(
-                    loadType = PREPEND,
-                    minPageOffset = -1,
-                    maxPageOffset = -1,
-                    placeholdersRemaining = 1
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
-                        )
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = SOURCE_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("b1"),
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("b1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source = loadStates(append = NotLoading.Complete),
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                        remotePrepend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = -1,
+                                        data = listOf("a1"),
+                                    )
+                                ),
+                            placeholdersBefore = 0,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(append = NotLoading.Complete),
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1,
+                        // Signalling that remote prepend is done triggers the header to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
                         ),
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
+                        // Drop the first page, header and separator between "b1" and "a1"
+                        Drop(
+                            loadType = PREPEND,
+                            minPageOffset = -1,
+                            maxPageOffset = -1,
+                            placeholdersRemaining = 1
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1, 0),
-                            data = listOf("B"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1
+                        remotePrepend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = -1,
+                                        data = listOf("a1"),
+                                    )
+                                ),
+                            placeholdersBefore = 0,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
+                            mediator =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remotePrepend(
-                    pages = listOf(),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-                Drop(
-                    loadType = PREPEND,
-                    minPageOffset = -1,
-                    maxPageOffset = -1,
-                    placeholdersRemaining = 1
-                ),
-                remotePrepend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1,
-                        ),
-                        TransformablePage(
-                            originalPageOffset = -1,
-                            data = listOf("a1"),
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(-1, 0),
-                            data = listOf("B"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = -1
-                        ),
-                    ),
-                    placeholdersBefore = 0,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = SOURCE_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffset = 0,
+                                    data = listOf("b1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source = loadStates(append = NotLoading.Complete),
+                    ),
+                    remotePrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1,
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = -1,
+                                    data = listOf("a1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1, 0),
+                                    data = listOf("B"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1
+                                ),
+                            ),
+                        placeholdersBefore = 0,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remotePrepend(
+                        pages = listOf(),
+                        placeholdersBefore = 0,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                    Drop(
+                        loadType = PREPEND,
+                        minPageOffset = -1,
+                        maxPageOffset = -1,
+                        placeholdersRemaining = 1
+                    ),
+                    remotePrepend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1,
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = -1,
+                                    data = listOf("a1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(-1, 0),
+                                    data = listOf("B"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = -1
+                                ),
+                            ),
+                        placeholdersBefore = 0,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remoteAppendEndOfPaginationReached_fullyComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote append is done triggers the footer to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("a1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
+                        // Signalling that remote append is done triggers the footer to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
+                        ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages = listOf(listOf("a1")).toTransformablePages(),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remoteAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remoteAppendEndOfPaginationReached_sourceComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("a1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote append is done triggers the footer to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = SOURCE_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("A"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("a1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("a1"),
+                        // Signalling that remote append is done triggers the footer to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0,
-                        ),
-                    ),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remoteAppend(
-                    pages = listOf(),
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = SOURCE_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("A"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 0,
+                                    data = listOf("a1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0,
+                                ),
+                            ),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remoteAppend(
+                        pages = listOf(),
+                        placeholdersAfter = 1,
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remoteAppendEndOfPaginationReachedWithDrops_fullyComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("b1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                    ),
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
-                        )
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote append is done triggers the footer to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
-                ),
-                // Drop the last page, footer and separator between "b1" and "c1"
-                Drop(
-                    loadType = APPEND,
-                    minPageOffset = 1,
-                    maxPageOffset = 1,
-                    placeholdersRemaining = 1
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
-                        )
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(listOf("b1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(prepend = NotLoading.Complete)
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("C"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("b1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                ),
                         ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
+                        remoteAppend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = 1,
+                                        data = listOf("c1"),
+                                    )
+                                ),
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1,
+                        // Signalling that remote append is done triggers the footer to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
                         ),
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                Drop(
-                    loadType = APPEND,
-                    minPageOffset = 1,
-                    maxPageOffset = 1,
-                    placeholdersRemaining = 1
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("C"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1
+                        // Drop the last page, footer and separator between "b1" and "c1"
+                        Drop(
+                            loadType = APPEND,
+                            minPageOffset = 1,
+                            maxPageOffset = 1,
+                            placeholdersRemaining = 1
                         ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
+                        remoteAppend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = 1,
+                                        data = listOf("c1"),
+                                    )
+                                ),
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
+                            mediator =
+                                loadStates(
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1
-                        ),
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = FULLY_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages = listOf(listOf("b1")).toTransformablePages(),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source = loadStates(prepend = NotLoading.Complete)
+                    ),
+                    remoteAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("C"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 1,
+                                    data = listOf("c1"),
+                                ),
+                            ),
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remoteAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1,
+                                ),
+                            ),
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    Drop(
+                        loadType = APPEND,
+                        minPageOffset = 1,
+                        maxPageOffset = 1,
+                        placeholdersRemaining = 1
+                    ),
+                    remoteAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("C"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 1,
+                                    data = listOf("c1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1
+                                ),
+                            ),
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     @Test
     fun remoteAppendEndOfPaginationReachedWithDrops_sourceComplete() = runTest {
         assertThat(
-            flowOf(
-                remoteRefresh(
-                    pages = listOf(listOf("b1")).toTransformablePages(),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(prepend = NotLoading.Complete),
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
-                        )
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                // Signalling that remote append is done triggers the footer to resolve.
-                remoteLoadStateUpdate(
-                    appendLocal = NotLoading.Complete,
-                    prependLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
-                ),
-                // Drop the last page, footer and separator between "b1" and "c1"
-                Drop(
-                    loadType = APPEND,
-                    minPageOffset = 1,
-                    maxPageOffset = 1,
-                    placeholdersRemaining = 1
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
-                        )
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
-            ).insertEventSeparators(
-                terminalSeparatorType = SOURCE_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            ).toList()
-        ).isEqualTo(
-            listOf(
-                remoteRefresh(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0),
-                            data = listOf("B"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 0
+                flowOf(
+                        remoteRefresh(
+                            pages = listOf(listOf("b1")).toTransformablePages(),
+                            placeholdersBefore = 1,
+                            placeholdersAfter = 1,
+                            source = loadStates(prepend = NotLoading.Complete),
                         ),
-                        TransformablePage(
-                            originalPageOffset = 0,
-                            data = listOf("b1"),
+                        remoteAppend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = 1,
+                                        data = listOf("c1"),
+                                    )
+                                ),
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    placeholdersBefore = 1,
-                    placeholdersAfter = 1,
-                    source = loadStates(prepend = NotLoading.Complete),
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("C"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1
+                        // Signalling that remote append is done triggers the footer to resolve.
+                        remoteLoadStateUpdate(
+                            appendLocal = NotLoading.Complete,
+                            prependLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
                         ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
+                        // Drop the last page, footer and separator between "b1" and "c1"
+                        Drop(
+                            loadType = APPEND,
+                            minPageOffset = 1,
+                            maxPageOffset = 1,
+                            placeholdersRemaining = 1
                         ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1,
+                        remoteAppend(
+                            pages =
+                                listOf(
+                                    TransformablePage(
+                                        originalPageOffset = 1,
+                                        data = listOf("c1"),
+                                    )
+                                ),
+                            source =
+                                loadStates(
+                                    prepend = NotLoading.Complete,
+                                    append = NotLoading.Complete,
+                                ),
+                            mediator =
+                                loadStates(
+                                    append = NotLoading.Complete,
+                                ),
                         ),
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                remoteAppend(
-                    pages = listOf(),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
-                Drop(
-                    loadType = APPEND,
-                    minPageOffset = 1,
-                    maxPageOffset = 1,
-                    placeholdersRemaining = 1
-                ),
-                remoteAppend(
-                    pages = listOf(
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(0, 1),
-                            data = listOf("C"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1
-                        ),
-                        TransformablePage(
-                            originalPageOffset = 1,
-                            data = listOf("c1"),
-                        ),
-                        TransformablePage(
-                            originalPageOffsets = intArrayOf(1),
-                            data = listOf("END"),
-                            hintOriginalIndices = listOf(0),
-                            hintOriginalPageOffset = 1
-                        ),
-                    ),
-                    source = loadStates(
-                        prepend = NotLoading.Complete,
-                        append = NotLoading.Complete,
-                    ),
-                    mediator = loadStates(
-                        append = NotLoading.Complete,
-                    ),
-                ),
+                    )
+                    .insertEventSeparators(
+                        terminalSeparatorType = SOURCE_COMPLETE,
+                        generator = LETTER_SEPARATOR_GENERATOR
+                    )
+                    .toList()
             )
-        )
+            .isEqualTo(
+                listOf(
+                    remoteRefresh(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0),
+                                    data = listOf("B"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 0
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 0,
+                                    data = listOf("b1"),
+                                ),
+                            ),
+                        placeholdersBefore = 1,
+                        placeholdersAfter = 1,
+                        source = loadStates(prepend = NotLoading.Complete),
+                    ),
+                    remoteAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("C"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 1,
+                                    data = listOf("c1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1,
+                                ),
+                            ),
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    remoteAppend(
+                        pages = listOf(),
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                    Drop(
+                        loadType = APPEND,
+                        minPageOffset = 1,
+                        maxPageOffset = 1,
+                        placeholdersRemaining = 1
+                    ),
+                    remoteAppend(
+                        pages =
+                            listOf(
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(0, 1),
+                                    data = listOf("C"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1
+                                ),
+                                TransformablePage(
+                                    originalPageOffset = 1,
+                                    data = listOf("c1"),
+                                ),
+                                TransformablePage(
+                                    originalPageOffsets = intArrayOf(1),
+                                    data = listOf("END"),
+                                    hintOriginalIndices = listOf(0),
+                                    hintOriginalPageOffset = 1
+                                ),
+                            ),
+                        source =
+                            loadStates(
+                                prepend = NotLoading.Complete,
+                                append = NotLoading.Complete,
+                            ),
+                        mediator =
+                            loadStates(
+                                append = NotLoading.Complete,
+                            ),
+                    ),
+                )
+            )
     }
 
     companion object {
         /**
-         * Creates an upper-case letter at the beginning of each section of strings that start
-         * with the same letter, and the string "END" at the very end.
+         * Creates an upper-case letter at the beginning of each section of strings that start with
+         * the same letter, and the string "END" at the very end.
          */
         val LETTER_SEPARATOR_GENERATOR: suspend (String?, String?) -> String? = { before, after ->
             if (after == null) {
@@ -2059,16 +2082,11 @@
 }
 
 @Suppress("TestFunctionName")
-internal fun <T : Any> TransformablePage(data: List<T>) = TransformablePage(
-    data = data,
-    originalPageOffset = 0
-)
+internal fun <T : Any> TransformablePage(data: List<T>) =
+    TransformablePage(data = data, originalPageOffset = 0)
 
-internal fun <T : Any> List<List<T>>.toTransformablePages(
-    indexOfInitialPage: Int = 0
-) = mapIndexed { index, list ->
-    TransformablePage(
-        data = list,
-        originalPageOffset = index - indexOfInitialPage
-    )
-}.toMutableList()
+internal fun <T : Any> List<List<T>>.toTransformablePages(indexOfInitialPage: Int = 0) =
+    mapIndexed { index, list ->
+            TransformablePage(data = list, originalPageOffset = index - indexOfInitialPage)
+        }
+        .toMutableList()
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsWithRemoteMediatorTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsWithRemoteMediatorTest.kt
index 2731e76..27c9ae9 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsWithRemoteMediatorTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SeparatorsWithRemoteMediatorTest.kt
@@ -32,24 +32,27 @@
 class SeparatorsWithRemoteMediatorTest {
     @Test
     fun prependAfterPrependComplete() = runTest {
-        val pageEventFlow = flowOf(
-            generatePrepend(
-                originalPageOffset = 0,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
-                )
-            ),
-            generatePrepend(
-                originalPageOffset = -1,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
+        val pageEventFlow =
+            flowOf(
+                generatePrepend(
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        )
+                ),
+                generatePrepend(
+                    originalPageOffset = -1,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        )
                 )
             )
-        )
         assertFailsWith<IllegalArgumentException>(
             "Prepend after endOfPaginationReached already true is invalid"
         ) {
@@ -58,30 +61,34 @@
                     terminalSeparatorType = FULLY_COMPLETE,
                     generator = LETTER_SEPARATOR_GENERATOR
                 )
-                .flow.toList()
+                .flow
+                .toList()
         }
     }
 
     @Test
     fun appendAfterAppendComplete() = runTest {
-        val pageEventFlow = flowOf(
-            generateAppend(
-                originalPageOffset = 0,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
+        val pageEventFlow =
+            flowOf(
+                generateAppend(
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
+                        ),
                 ),
-            ),
-            generateAppend(
-                originalPageOffset = 1,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
+                generateAppend(
+                    originalPageOffset = 1,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
+                        ),
                 ),
-            ),
-        )
+            )
         assertFailsWith<IllegalArgumentException>(
             "Append after endOfPaginationReached already true is invalid"
         ) {
@@ -90,296 +97,334 @@
                     terminalSeparatorType = FULLY_COMPLETE,
                     generator = LETTER_SEPARATOR_GENERATOR
                 )
-                .flow.toList()
+                .flow
+                .toList()
         }
     }
 
     @Test
     fun insertValidation_emptyRemoteAfterHeaderAdded() = runTest {
-        val pageEventFlow = flowOf(
-            generatePrepend(
-                originalPageOffset = 0,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Incomplete,
-                    prependRemote = NotLoading.Complete,
+        val pageEventFlow =
+            flowOf(
+                generatePrepend(
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Incomplete,
+                            prependRemote = NotLoading.Complete,
+                        ),
                 ),
-            ),
-            generatePrepend(
-                originalPageOffset = 1,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete,
+                generatePrepend(
+                    originalPageOffset = 1,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete,
+                        ),
                 ),
-            ),
-        )
+            )
 
         // Verify asserts in separators do not throw IllegalArgumentException for a local prepend
         // or append that arrives after remote prepend or append marking endOfPagination.
         PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
-            .insertSeparators { _, _ -> -1 }.flow.toList()
+            .insertSeparators { _, _ -> -1 }
+            .flow
+            .toList()
     }
 
     @Test
     fun insertValidation_emptyRemoteAfterFooterAdded() = runTest {
-        val pageEventFlow = flowOf(
-            generateAppend(
-                originalPageOffset = 0,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Incomplete,
-                    appendRemote = NotLoading.Complete,
+        val pageEventFlow =
+            flowOf(
+                generateAppend(
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Incomplete,
+                            appendRemote = NotLoading.Complete,
+                        ),
                 ),
-            ),
-            generateAppend(
-                originalPageOffset = 1,
-                pages = listOf(listOf("a1")),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete,
+                generateAppend(
+                    originalPageOffset = 1,
+                    pages = listOf(listOf("a1")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete,
+                        ),
                 ),
-            ),
-        )
+            )
 
         // Verify asserts in separators do not throw IllegalArgumentException for a local prepend
         // or append that arrives after remote prepend or append marking endOfPagination.
         PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
-            .insertSeparators { _, _ -> -1 }.flow.toList()
+            .insertSeparators { _, _ -> -1 }
+            .flow
+            .toList()
     }
 
     @Test
     fun emptyPrependThenEmptyRemote_fullyComplete() = runTest {
-        val pageEventFlow = flowOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generatePrepend(
-                originalPageOffset = 1,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
-            ),
-            generatePrepend(
-                originalPageOffset = 2,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete
+        val pageEventFlow =
+            flowOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generatePrepend(
+                    originalPageOffset = 1,
+                    pages = listOf(),
+                    loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
+                ),
+                generatePrepend(
+                    originalPageOffset = 2,
+                    pages = listOf(),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
-        val expected = listOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generatePrepend(
-                originalPageOffset = 1,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
-            ),
-            generatePrepend(
-                // page offset becomes 0 here, as it's adjacent to page 0, the only page with data.
-                originalPageOffset = 0,
-                pages = listOf(listOf("A")),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete
+        val expected =
+            listOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generatePrepend(
+                    originalPageOffset = 1,
+                    pages = listOf(),
+                    loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
+                ),
+                generatePrepend(
+                    // page offset becomes 0 here, as it's adjacent to page 0, the only page with
+                    // data.
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("A")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
 
-        val actual = PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
-            .insertSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            )
-            .flow.toList()
+        val actual =
+            PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
+                .insertSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .flow
+                .toList()
 
         assertThat(actual).isEqualTo(expected)
     }
 
     @Test
     fun emptyPrependThenEmptyRemote_sourceComplete() = runTest {
-        val pageEventFlow = flowOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generatePrepend(
-                originalPageOffset = 1,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
-            ),
-            generatePrepend(
-                originalPageOffset = 2,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete
+        val pageEventFlow =
+            flowOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generatePrepend(
+                    originalPageOffset = 1,
+                    pages = listOf(),
+                    loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
+                ),
+                generatePrepend(
+                    originalPageOffset = 2,
+                    pages = listOf(),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
-        val expected = listOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generatePrepend(
-                // page offset becomes 0 here, as it's adjacent to page 0, the only page with data.
-                originalPageOffset = 0,
-                pages = listOf(listOf("A")),
-                loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
-            ),
-            generatePrepend(
-                originalPageOffset = 2,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(
-                    prependLocal = NotLoading.Complete,
-                    prependRemote = NotLoading.Complete
+        val expected =
+            listOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generatePrepend(
+                    // page offset becomes 0 here, as it's adjacent to page 0, the only page with
+                    // data.
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("A")),
+                    loadStates = remoteLoadStatesOf(prependLocal = NotLoading.Complete)
+                ),
+                generatePrepend(
+                    originalPageOffset = 2,
+                    pages = listOf(),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            prependLocal = NotLoading.Complete,
+                            prependRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
 
-        val actual = PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
-            .insertSeparators(
-                terminalSeparatorType = SOURCE_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            )
-            .flow.toList()
+        val actual =
+            PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
+                .insertSeparators(
+                    terminalSeparatorType = SOURCE_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .flow
+                .toList()
 
         assertThat(actual).isEqualTo(expected)
     }
 
     @Test
     fun emptyAppendThenEmptyRemote_fullyComplete() = runTest {
-        val pageEventFlow = flowOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generateAppend(
-                originalPageOffset = 1,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
-            ),
-            generateAppend(
-                originalPageOffset = 2,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete
+        val pageEventFlow =
+            flowOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generateAppend(
+                    originalPageOffset = 1,
+                    pages = listOf(),
+                    loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
+                ),
+                generateAppend(
+                    originalPageOffset = 2,
+                    pages = listOf(),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
-        val expected = listOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generateAppend(
-                originalPageOffset = 1,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
-            ),
-            generateAppend(
-                // page offset becomes 0 here, as it's adjacent to page 0, the only page with data.
-                originalPageOffset = 0,
-                pages = listOf(listOf("END")),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete
+        val expected =
+            listOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generateAppend(
+                    originalPageOffset = 1,
+                    pages = listOf(),
+                    loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
+                ),
+                generateAppend(
+                    // page offset becomes 0 here, as it's adjacent to page 0, the only page with
+                    // data.
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("END")),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
 
-        val actual = PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
-            .insertSeparators(
-                terminalSeparatorType = FULLY_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            )
-            .flow.toList()
+        val actual =
+            PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
+                .insertSeparators(
+                    terminalSeparatorType = FULLY_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .flow
+                .toList()
 
         assertThat(actual).isEqualTo(expected)
     }
 
     @Test
     fun emptyAppendThenEmptyRemote_sourceComplete() = runTest {
-        val pageEventFlow = flowOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generateAppend(
-                originalPageOffset = 1,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
-            ),
-            generateAppend(
-                originalPageOffset = 2,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete
+        val pageEventFlow =
+            flowOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generateAppend(
+                    originalPageOffset = 1,
+                    pages = listOf(),
+                    loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
+                ),
+                generateAppend(
+                    originalPageOffset = 2,
+                    pages = listOf(),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
-        val expected = listOf(
-            generateRefresh(listOf("a1"), remoteLoadStatesOf()),
-            generateAppend(
-                // page offset becomes 0 here, as it's adjacent to page 0, the only page with data.
-                originalPageOffset = 0,
-                pages = listOf(listOf("END")),
-                loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
-            ),
-            generateAppend(
-                originalPageOffset = 2,
-                pages = listOf(),
-                loadStates = remoteLoadStatesOf(
-                    appendLocal = NotLoading.Complete,
-                    appendRemote = NotLoading.Complete
+        val expected =
+            listOf(
+                generateRefresh(listOf("a1"), remoteLoadStatesOf()),
+                generateAppend(
+                    // page offset becomes 0 here, as it's adjacent to page 0, the only page with
+                    // data.
+                    originalPageOffset = 0,
+                    pages = listOf(listOf("END")),
+                    loadStates = remoteLoadStatesOf(appendLocal = NotLoading.Complete)
+                ),
+                generateAppend(
+                    originalPageOffset = 2,
+                    pages = listOf(),
+                    loadStates =
+                        remoteLoadStatesOf(
+                            appendLocal = NotLoading.Complete,
+                            appendRemote = NotLoading.Complete
+                        )
                 )
             )
-        )
 
-        val actual = PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
-            .insertSeparators(
-                terminalSeparatorType = SOURCE_COMPLETE,
-                generator = LETTER_SEPARATOR_GENERATOR
-            )
-            .flow.toList()
+        val actual =
+            PagingData(pageEventFlow, dummyUiReceiver, dummyHintReceiver)
+                .insertSeparators(
+                    terminalSeparatorType = SOURCE_COMPLETE,
+                    generator = LETTER_SEPARATOR_GENERATOR
+                )
+                .flow
+                .toList()
 
         assertThat(actual).isEqualTo(expected)
     }
 }
 
-private fun transformablePage(
-    originalPageOffset: Int,
-    data: List<String>
-) = TransformablePage(
-    originalPageOffsets = intArrayOf(originalPageOffset),
-    data = data,
-    hintOriginalPageOffset = originalPageOffset,
-    hintOriginalIndices = data.fold(mutableListOf()) { acc, s ->
-        acc.apply {
-            add(
-                when {
-                    acc.isEmpty() -> 0
-                    s.all { it.isUpperCase() } -> acc.last()
-                    else -> acc.last() + 1
+private fun transformablePage(originalPageOffset: Int, data: List<String>) =
+    TransformablePage(
+        originalPageOffsets = intArrayOf(originalPageOffset),
+        data = data,
+        hintOriginalPageOffset = originalPageOffset,
+        hintOriginalIndices =
+            data.fold(mutableListOf()) { acc, s ->
+                acc.apply {
+                    add(
+                        when {
+                            acc.isEmpty() -> 0
+                            s.all { it.isUpperCase() } -> acc.last()
+                            else -> acc.last() + 1
+                        }
+                    )
                 }
-            )
-        }
-    }
-)
+            }
+    )
 
-private fun generateRefresh(
-    data: List<String>,
-    loadStates: CombinedLoadStates
-) = remoteRefresh(
-    pages = listOf(transformablePage(0, data)),
-    source = loadStates.source,
-    mediator = loadStates.mediator ?: loadStates()
-)
+private fun generateRefresh(data: List<String>, loadStates: CombinedLoadStates) =
+    remoteRefresh(
+        pages = listOf(transformablePage(0, data)),
+        source = loadStates.source,
+        mediator = loadStates.mediator ?: loadStates()
+    )
 
 private fun generatePrepend(
     originalPageOffset: Int,
     pages: List<List<String>>,
     loadStates: CombinedLoadStates
-) = remotePrepend(
-    pages = pages.map { data -> transformablePage(originalPageOffset, data) },
-    placeholdersBefore = 0,
-    source = loadStates.source,
-    mediator = loadStates.mediator ?: loadStates()
-)
+) =
+    remotePrepend(
+        pages = pages.map { data -> transformablePage(originalPageOffset, data) },
+        placeholdersBefore = 0,
+        source = loadStates.source,
+        mediator = loadStates.mediator ?: loadStates()
+    )
 
 private fun generateAppend(
     originalPageOffset: Int,
     pages: List<List<String>>,
     loadStates: CombinedLoadStates
-) = remoteAppend(
-    pages = pages.map { data -> transformablePage(originalPageOffset, data) },
-    placeholdersAfter = 0,
-    source = loadStates.source,
-    mediator = loadStates.mediator ?: loadStates()
-)
+) =
+    remoteAppend(
+        pages = pages.map { data -> transformablePage(originalPageOffset, data) },
+        placeholdersAfter = 0,
+        source = loadStates.source,
+        mediator = loadStates.mediator ?: loadStates()
+    )
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleChannelFlowTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleChannelFlowTest.kt
index 156b6ec..2a60a0e 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleChannelFlowTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleChannelFlowTest.kt
@@ -47,58 +47,55 @@
 class SimpleChannelFlowTest {
     val testScope = TestScope(UnconfinedTestDispatcher())
 
-    @Test
-    fun basic_ChannelFlow() = basic(Impl.ChannelFlow)
+    @Test fun basic_ChannelFlow() = basic(Impl.ChannelFlow)
 
-    @Test
-    fun basic_SimpleChannelFlow() = basic(Impl.SimpleChannelFlow)
+    @Test fun basic_SimpleChannelFlow() = basic(Impl.SimpleChannelFlow)
 
     private fun basic(impl: Impl) {
-        val channelFlow = createFlow<Int>(impl) {
-            send(1)
-            send(2)
-        }
+        val channelFlow =
+            createFlow<Int>(impl) {
+                send(1)
+                send(2)
+            }
         testScope.runTest {
             val items = channelFlow.toList()
             assertThat(items).containsExactly(1, 2)
         }
     }
 
-    @Test
-    fun emitWithLaunch_ChannelFlow() = emitWithLaunch(Impl.ChannelFlow)
+    @Test fun emitWithLaunch_ChannelFlow() = emitWithLaunch(Impl.ChannelFlow)
 
-    @Test
-    fun emitWithLaunch_SimpleChannelFlow() = emitWithLaunch(Impl.SimpleChannelFlow)
+    @Test fun emitWithLaunch_SimpleChannelFlow() = emitWithLaunch(Impl.SimpleChannelFlow)
 
     private fun emitWithLaunch(impl: Impl) {
-        val channelFlow = createFlow<Int>(impl) {
-            launch(coroutineContext, CoroutineStart.UNDISPATCHED) {
-                send(1)
-                delay(100)
-                send(2)
+        val channelFlow =
+            createFlow<Int>(impl) {
+                launch(coroutineContext, CoroutineStart.UNDISPATCHED) {
+                    send(1)
+                    delay(100)
+                    send(2)
+                }
+                send(3)
             }
-            send(3)
-        }
         testScope.runTest {
             val items = channelFlow.toList()
             assertThat(items).containsExactly(1, 3, 2).inOrder()
         }
     }
 
-    @Test
-    fun closedByCollector_ChannelFlow() = closedByCollector(Impl.ChannelFlow)
+    @Test fun closedByCollector_ChannelFlow() = closedByCollector(Impl.ChannelFlow)
 
-    @Test
-    fun closedByCollector_SimpleChannelFlow() = closedByCollector(Impl.SimpleChannelFlow)
+    @Test fun closedByCollector_SimpleChannelFlow() = closedByCollector(Impl.SimpleChannelFlow)
 
     private fun closedByCollector(impl: Impl) {
         val emittedValues = mutableListOf<Int>()
-        val channelFlow = createFlow<Int>(impl) {
-            repeat(10) {
-                send(it)
-                emittedValues.add(it)
+        val channelFlow =
+            createFlow<Int>(impl) {
+                repeat(10) {
+                    send(it)
+                    emittedValues.add(it)
+                }
             }
-        }
         testScope.runTest {
             assertThat(channelFlow.take(4).toList()).containsExactly(0, 1, 2, 3)
             assertThat(emittedValues).containsExactlyElementsIn((0..9).toList())
@@ -114,12 +111,13 @@
 
     private fun closedByCollector_noBuffer(impl: Impl) {
         val emittedValues = mutableListOf<Int>()
-        val channelFlow = createFlow<Int>(impl) {
-            repeat(10) {
-                send(it)
-                emittedValues.add(it)
+        val channelFlow =
+            createFlow<Int>(impl) {
+                repeat(10) {
+                    send(it)
+                    emittedValues.add(it)
+                }
             }
-        }
         testScope.runTest {
             assertThat(channelFlow.buffer(0).take(4).toList()).containsExactly(0, 1, 2, 3)
             when (impl) {
@@ -134,132 +132,118 @@
         }
     }
 
-    @Test
-    fun awaitClose_ChannelFlow() = awaitClose(Impl.ChannelFlow)
+    @Test fun awaitClose_ChannelFlow() = awaitClose(Impl.ChannelFlow)
 
-    @Test
-    fun awaitClose_SimpleChannelFlow() = awaitClose(Impl.SimpleChannelFlow)
+    @Test fun awaitClose_SimpleChannelFlow() = awaitClose(Impl.SimpleChannelFlow)
 
     private fun awaitClose(impl: Impl) {
         val lastDispatched = CompletableDeferred<Int>()
-        val channelFlow = createFlow<Int>(impl) {
-            var dispatched = -1
-            launch {
-                repeat(10) {
-                    dispatched = it
-                    send(it)
-                    delay(100)
+        val channelFlow =
+            createFlow<Int>(impl) {
+                var dispatched = -1
+                launch {
+                    repeat(10) {
+                        dispatched = it
+                        send(it)
+                        delay(100)
+                    }
+                }
+                awaitClose {
+                    assertThat(lastDispatched.isActive).isTrue()
+                    lastDispatched.complete(dispatched)
                 }
             }
-            awaitClose {
-                assertThat(lastDispatched.isActive).isTrue()
-                lastDispatched.complete(dispatched)
-            }
-        }
         testScope.runTest {
             channelFlow.takeWhile { it < 3 }.toList()
             assertThat(lastDispatched.await()).isEqualTo(3)
         }
     }
 
-    @Test
-    fun scopeGetsCancelled_ChannelFlow() = scopeGetsCancelled(Impl.ChannelFlow)
+    @Test fun scopeGetsCancelled_ChannelFlow() = scopeGetsCancelled(Impl.ChannelFlow)
 
-    @Test
-    fun scopeGetsCancelled_SimpleChannelFlow() = scopeGetsCancelled(Impl.SimpleChannelFlow)
+    @Test fun scopeGetsCancelled_SimpleChannelFlow() = scopeGetsCancelled(Impl.SimpleChannelFlow)
 
     private fun scopeGetsCancelled(impl: Impl) {
         var producerException: Throwable? = null
         val dispatched = mutableListOf<Int>()
-        val channelFlow = createFlow<Int>(impl) {
-            try {
-                repeat(20) {
-                    send(it)
-                    dispatched.add(it)
-                    delay(100)
+        val channelFlow =
+            createFlow<Int>(impl) {
+                try {
+                    repeat(20) {
+                        send(it)
+                        dispatched.add(it)
+                        delay(100)
+                    }
+                } catch (th: Throwable) {
+                    producerException = th
+                    throw th
                 }
-            } catch (th: Throwable) {
-                producerException = th
-                throw th
             }
-        }
         testScope.runTest {
-            val collection = launch {
-                channelFlow.toList()
-            }
+            val collection = launch { channelFlow.toList() }
             advanceTimeBy(250)
             collection.cancel(CancellationException("test message"))
             collection.join()
             assertThat(dispatched).containsExactly(0, 1, 2)
-            assertThat(producerException).hasMessageThat()
-                .contains("test message")
+            assertThat(producerException).hasMessageThat().contains("test message")
         }
     }
 
-    @Test
-    fun collectorThrows_ChannelFlow() = collectorThrows(Impl.ChannelFlow)
+    @Test fun collectorThrows_ChannelFlow() = collectorThrows(Impl.ChannelFlow)
 
-    @Test
-    fun collectorThrows_SimpleChannelFlow() = collectorThrows(Impl.SimpleChannelFlow)
+    @Test fun collectorThrows_SimpleChannelFlow() = collectorThrows(Impl.SimpleChannelFlow)
 
     private fun collectorThrows(impl: Impl) {
         var producerException: Throwable? = null
-        val channelFlow = createFlow<Int>(impl) {
-            try {
-                send(1)
-                delay(1000)
-                fail("should not arrive here")
-            } catch (th: Throwable) {
-                producerException = th
-                throw th
-            }
-        }
-        testScope.runTest {
-            runCatching {
-                channelFlow.collect {
-                    throw IllegalArgumentException("expected failure")
-                }
-            }
-        }
-        assertThat(producerException).hasMessageThat()
-            .contains("consumer had failed")
-    }
-
-    @Test
-    fun upstreamThrows_ChannelFlow() = upstreamThrows(Impl.ChannelFlow)
-
-    @Test
-    fun upstreamThrows_SimpleChannelFlow() = upstreamThrows(Impl.SimpleChannelFlow)
-
-    private fun upstreamThrows(impl: Impl) {
-        var producerException: Throwable? = null
-        val upstream = flow<Int> {
-            emit(5)
-            delay(100)
-            emit(13)
-        }
-        val combinedFlow = upstream.flatMapLatest { upstreamValue ->
+        val channelFlow =
             createFlow<Int>(impl) {
                 try {
-                    send(upstreamValue)
-                    delay(2000)
-                    send(upstreamValue * 2)
+                    send(1)
+                    delay(1000)
+                    fail("should not arrive here")
                 } catch (th: Throwable) {
-                    if (producerException == null) {
-                        producerException = th
-                    }
+                    producerException = th
                     throw th
                 }
             }
-        }
         testScope.runTest {
-            assertThat(
-                combinedFlow.toList()
-            ).containsExactly(
-                5, 13, 26
-            )
+            runCatching {
+                channelFlow.collect { throw IllegalArgumentException("expected failure") }
+            }
         }
-        assertThat(producerException).hasMessageThat()
+        assertThat(producerException).hasMessageThat().contains("consumer had failed")
+    }
+
+    @Test fun upstreamThrows_ChannelFlow() = upstreamThrows(Impl.ChannelFlow)
+
+    @Test fun upstreamThrows_SimpleChannelFlow() = upstreamThrows(Impl.SimpleChannelFlow)
+
+    private fun upstreamThrows(impl: Impl) {
+        var producerException: Throwable? = null
+        val upstream =
+            flow<Int> {
+                emit(5)
+                delay(100)
+                emit(13)
+            }
+        val combinedFlow =
+            upstream.flatMapLatest { upstreamValue ->
+                createFlow<Int>(impl) {
+                    try {
+                        send(upstreamValue)
+                        delay(2000)
+                        send(upstreamValue * 2)
+                    } catch (th: Throwable) {
+                        if (producerException == null) {
+                            producerException = th
+                        }
+                        throw th
+                    }
+                }
+            }
+        testScope.runTest { assertThat(combinedFlow.toList()).containsExactly(5, 13, 26) }
+        assertThat(producerException)
+            .hasMessageThat()
             .contains("Child of the scoped flow was cancelled")
     }
 
@@ -272,14 +256,13 @@
         cancelingChannelClosesTheFlow(Impl.SimpleChannelFlow)
 
     private fun cancelingChannelClosesTheFlow(impl: Impl) {
-        val flow = createFlow<Int>(impl) {
-            send(1)
-            close()
-            awaitCancellation()
-        }
-        testScope.runTest {
-            assertThat(flow.toList()).containsExactly(1)
-        }
+        val flow =
+            createFlow<Int>(impl) {
+                send(1)
+                close()
+                awaitCancellation()
+            }
+        testScope.runTest { assertThat(flow.toList()).containsExactly(1) }
     }
 
     private fun <T> createFlow(
@@ -287,12 +270,9 @@
         block: suspend TestProducerScope<T>.() -> Unit
     ): Flow<T> {
         return when (impl) {
-            Impl.ChannelFlow -> channelFlow {
-                ChannelFlowTestProducerScope(this).block()
-            }
-            Impl.SimpleChannelFlow -> simpleChannelFlow {
-                SimpleChannelFlowTestProducerScope(this).block()
-            }
+            Impl.ChannelFlow -> channelFlow { ChannelFlowTestProducerScope(this).block() }
+            Impl.SimpleChannelFlow ->
+                simpleChannelFlow { SimpleChannelFlowTestProducerScope(this).block() }
         }
     }
 
@@ -310,9 +290,8 @@
         }
     }
 
-    class ChannelFlowTestProducerScope<T>(
-        private val delegate: ProducerScope<T>
-    ) : TestProducerScope<T>, CoroutineScope by delegate, SendChannel<T> by delegate {
+    class ChannelFlowTestProducerScope<T>(private val delegate: ProducerScope<T>) :
+        TestProducerScope<T>, CoroutineScope by delegate, SendChannel<T> by delegate {
         override suspend fun awaitClose(block: () -> Unit) {
             delegate.awaitClose(block)
         }
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleTransformLatestTest.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleTransformLatestTest.kt
index a1bf8a3..c26ea92 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleTransformLatestTest.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/SimpleTransformLatestTest.kt
@@ -34,48 +34,54 @@
 class SimpleTransformLatestTest {
     private val testScope = TestScope()
 
-    @Test
-    fun delayed_TransformLatest() = delayed(Impl.TransformLatest)
+    @Test fun delayed_TransformLatest() = delayed(Impl.TransformLatest)
 
-    @Test
-    fun delayed_SimpleTransformLatest() = delayed(Impl.SimpleTransformLatest)
+    @Test fun delayed_SimpleTransformLatest() = delayed(Impl.SimpleTransformLatest)
 
-    private fun delayed(impl: Impl) = testScope.runTest {
-        assertThat(
-            flowOf(1, 2, 3)
-                .onEach { delay(100) }
-                .testTransformLatest<Int, String>(impl) { value ->
-                    repeat(3) {
-                        emit("$value - $it")
-                        delay(75)
-                    }
-                }.toList()
-        ).containsExactly(
-            "1 - 0", "1 - 1",
-            "2 - 0", "2 - 1",
-            "3 - 0", "3 - 1", "3 - 2"
-        ).inOrder()
-    }
+    private fun delayed(impl: Impl) =
+        testScope.runTest {
+            assertThat(
+                    flowOf(1, 2, 3)
+                        .onEach { delay(100) }
+                        .testTransformLatest<Int, String>(impl) { value ->
+                            repeat(3) {
+                                emit("$value - $it")
+                                delay(75)
+                            }
+                        }
+                        .toList()
+                )
+                .containsExactly("1 - 0", "1 - 1", "2 - 0", "2 - 1", "3 - 0", "3 - 1", "3 - 2")
+                .inOrder()
+        }
 
-    @Test
-    fun allValues_TransformLatest() = allValues(Impl.TransformLatest)
+    @Test fun allValues_TransformLatest() = allValues(Impl.TransformLatest)
 
-    @Test
-    fun allValues_SimpleTransformLatest() = allValues(Impl.SimpleTransformLatest)
+    @Test fun allValues_SimpleTransformLatest() = allValues(Impl.SimpleTransformLatest)
 
-    private fun allValues(impl: Impl) = testScope.runTest {
-        assertThat(
-            flowOf(1, 2, 3)
-                .onEach { delay(1) }
-                .testTransformLatest<Int, String>(impl) { value ->
-                    repeat(3) { emit("$value - $it") }
-                }.toList()
-        ).containsExactly(
-            "1 - 0", "1 - 1", "1 - 2",
-            "2 - 0", "2 - 1", "2 - 2",
-            "3 - 0", "3 - 1", "3 - 2"
-        ).inOrder()
-    }
+    private fun allValues(impl: Impl) =
+        testScope.runTest {
+            assertThat(
+                    flowOf(1, 2, 3)
+                        .onEach { delay(1) }
+                        .testTransformLatest<Int, String>(impl) { value ->
+                            repeat(3) { emit("$value - $it") }
+                        }
+                        .toList()
+                )
+                .containsExactly(
+                    "1 - 0",
+                    "1 - 1",
+                    "1 - 2",
+                    "2 - 0",
+                    "2 - 1",
+                    "2 - 2",
+                    "3 - 0",
+                    "3 - 1",
+                    "3 - 2"
+                )
+                .inOrder()
+        }
 
     @Test
     fun reusePreviousCollector_TransformLatest() = reusePreviousCollector(Impl.TransformLatest)
@@ -84,31 +90,32 @@
     fun reusePreviousCollector_SimpleTransformLatest() =
         reusePreviousCollector(Impl.SimpleTransformLatest)
 
-    private fun reusePreviousCollector(impl: Impl) = testScope.runTest {
-        var prevCollector: FlowCollector<String>? = null
-        assertThat(
-            flowOf(1, 2, 3)
-                .onEach { delay(1) }
-                .testTransformLatest<Int, String>(impl) { value ->
-                    if (prevCollector == null) {
-                        prevCollector = this
-                        awaitCancellation()
-                    } else {
-                        prevCollector?.emit("x-$value")
-                    }
-                }.toList()
-        ).containsExactly("x-2", "x-3")
-    }
+    private fun reusePreviousCollector(impl: Impl) =
+        testScope.runTest {
+            var prevCollector: FlowCollector<String>? = null
+            assertThat(
+                    flowOf(1, 2, 3)
+                        .onEach { delay(1) }
+                        .testTransformLatest<Int, String>(impl) { value ->
+                            if (prevCollector == null) {
+                                prevCollector = this
+                                awaitCancellation()
+                            } else {
+                                prevCollector?.emit("x-$value")
+                            }
+                        }
+                        .toList()
+                )
+                .containsExactly("x-2", "x-3")
+        }
 
     private fun <T, R> Flow<T>.testTransformLatest(
         impl: Impl,
         transform: suspend FlowCollector<R>.(value: T) -> Unit
     ): Flow<R> {
         return when (impl) {
-            Impl.TransformLatest ->
-                this@testTransformLatest.transformLatest(transform)
-            Impl.SimpleTransformLatest ->
-                this@testTransformLatest.simpleTransformLatest(transform)
+            Impl.TransformLatest -> this@testTransformLatest.transformLatest(transform)
+            Impl.SimpleTransformLatest -> this@testTransformLatest.simpleTransformLatest(transform)
         }
     }
 
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestPagingSourceExt.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestPagingSourceExt.kt
index 6b50489..20beb73 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestPagingSourceExt.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestPagingSourceExt.kt
@@ -19,59 +19,53 @@
 import androidx.paging.LoadState.NotLoading
 import androidx.paging.TestPagingSource.Companion.ITEMS
 
-internal fun createRefresh(
-    range: IntRange,
-    combinedLoadStates: CombinedLoadStates
-) = PageEvent.Insert.Refresh(
-    pages = pages(0, range),
-    placeholdersBefore = range.first.coerceAtLeast(0),
-    placeholdersAfter = (ITEMS.size - range.last - 1).coerceAtLeast(0),
-    sourceLoadStates = combinedLoadStates.source,
-    mediatorLoadStates = combinedLoadStates.mediator,
-)
+internal fun createRefresh(range: IntRange, combinedLoadStates: CombinedLoadStates) =
+    PageEvent.Insert.Refresh(
+        pages = pages(0, range),
+        placeholdersBefore = range.first.coerceAtLeast(0),
+        placeholdersAfter = (ITEMS.size - range.last - 1).coerceAtLeast(0),
+        sourceLoadStates = combinedLoadStates.source,
+        mediatorLoadStates = combinedLoadStates.mediator,
+    )
 
 internal fun createRefresh(
     range: IntRange,
     startState: LoadState = NotLoading.Incomplete,
     endState: LoadState = NotLoading.Incomplete
-) = PageEvent.Insert.Refresh(
-    pages = pages(0, range),
-    placeholdersBefore = range.first.coerceAtLeast(0),
-    placeholdersAfter = (ITEMS.size - range.last - 1).coerceAtLeast(0),
-    sourceLoadStates = loadStates(prepend = startState, append = endState),
-    mediatorLoadStates = null,
-)
+) =
+    PageEvent.Insert.Refresh(
+        pages = pages(0, range),
+        placeholdersBefore = range.first.coerceAtLeast(0),
+        placeholdersAfter = (ITEMS.size - range.last - 1).coerceAtLeast(0),
+        sourceLoadStates = loadStates(prepend = startState, append = endState),
+        mediatorLoadStates = null,
+    )
 
 internal fun createPrepend(
     pageOffset: Int,
     range: IntRange,
     startState: LoadState = NotLoading.Incomplete,
     endState: LoadState = NotLoading.Incomplete
-) = PageEvent.Insert.Prepend(
-    pages = pages(pageOffset, range),
-    placeholdersBefore = range.first.coerceAtLeast(0),
-    sourceLoadStates = loadStates(prepend = startState, append = endState),
-    mediatorLoadStates = null,
-)
+) =
+    PageEvent.Insert.Prepend(
+        pages = pages(pageOffset, range),
+        placeholdersBefore = range.first.coerceAtLeast(0),
+        sourceLoadStates = loadStates(prepend = startState, append = endState),
+        mediatorLoadStates = null,
+    )
 
 internal fun createAppend(
     pageOffset: Int,
     range: IntRange,
     startState: LoadState = NotLoading.Incomplete,
     endState: LoadState = NotLoading.Incomplete
-) = PageEvent.Insert.Append(
-    pages = pages(pageOffset, range),
-    placeholdersAfter = (ITEMS.size - range.last - 1).coerceAtLeast(0),
-    sourceLoadStates = loadStates(prepend = startState, append = endState),
-    mediatorLoadStates = null,
-)
-
-private fun pages(
-    pageOffset: Int,
-    range: IntRange
-) = listOf(
-    TransformablePage(
-        originalPageOffset = pageOffset,
-        data = ITEMS.slice(range)
+) =
+    PageEvent.Insert.Append(
+        pages = pages(pageOffset, range),
+        placeholdersAfter = (ITEMS.size - range.last - 1).coerceAtLeast(0),
+        sourceLoadStates = loadStates(prepend = startState, append = endState),
+        mediatorLoadStates = null,
     )
-)
+
+private fun pages(pageOffset: Int, range: IntRange) =
+    listOf(TransformablePage(originalPageOffset = pageOffset, data = ITEMS.slice(range)))
diff --git a/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestUtils.kt b/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestUtils.kt
index 32ddbdf..cdff222 100644
--- a/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestUtils.kt
+++ b/paging/paging-common/src/commonTest/kotlin/androidx/paging/TestUtils.kt
@@ -27,64 +27,71 @@
     placeholdersBefore: Int,
     placeholdersAfter: Int,
     source: LoadStates
-) = when (loadType) {
-    REFRESH -> PageEvent.Insert.Refresh(
-        pages = pages,
-        placeholdersBefore = placeholdersBefore,
-        placeholdersAfter = placeholdersAfter,
-        sourceLoadStates = source,
-        mediatorLoadStates = null
-    )
-    PREPEND -> PageEvent.Insert.Prepend(
-        pages = pages,
-        placeholdersBefore = placeholdersBefore,
-        sourceLoadStates = source,
-        mediatorLoadStates = null,
-    )
-    APPEND -> PageEvent.Insert.Append(
-        pages = pages,
-        placeholdersAfter = placeholdersAfter,
-        sourceLoadStates = source,
-        mediatorLoadStates = null
-    )
-}
+) =
+    when (loadType) {
+        REFRESH ->
+            PageEvent.Insert.Refresh(
+                pages = pages,
+                placeholdersBefore = placeholdersBefore,
+                placeholdersAfter = placeholdersAfter,
+                sourceLoadStates = source,
+                mediatorLoadStates = null
+            )
+        PREPEND ->
+            PageEvent.Insert.Prepend(
+                pages = pages,
+                placeholdersBefore = placeholdersBefore,
+                sourceLoadStates = source,
+                mediatorLoadStates = null,
+            )
+        APPEND ->
+            PageEvent.Insert.Append(
+                pages = pages,
+                placeholdersAfter = placeholdersAfter,
+                sourceLoadStates = source,
+                mediatorLoadStates = null
+            )
+    }
 
 internal fun <T : Any> localRefresh(
     pages: List<TransformablePage<T>> = listOf(emptyPage()),
     placeholdersBefore: Int = 0,
     placeholdersAfter: Int = 0,
     source: LoadStates = loadStates()
-) = localInsert(
-    loadType = REFRESH,
-    pages = pages,
-    placeholdersBefore = placeholdersBefore,
-    placeholdersAfter = placeholdersAfter,
-    source = source
-)
+) =
+    localInsert(
+        loadType = REFRESH,
+        pages = pages,
+        placeholdersBefore = placeholdersBefore,
+        placeholdersAfter = placeholdersAfter,
+        source = source
+    )
 
 internal fun <T : Any> localPrepend(
     pages: List<TransformablePage<T>> = listOf(emptyPage()),
     placeholdersBefore: Int = 0,
     source: LoadStates = loadStates()
-) = localInsert(
-    loadType = PREPEND,
-    pages = pages,
-    placeholdersBefore = placeholdersBefore,
-    placeholdersAfter = -1,
-    source = source
-)
+) =
+    localInsert(
+        loadType = PREPEND,
+        pages = pages,
+        placeholdersBefore = placeholdersBefore,
+        placeholdersAfter = -1,
+        source = source
+    )
 
 internal fun <T : Any> localAppend(
     pages: List<TransformablePage<T>> = listOf(emptyPage()),
     placeholdersAfter: Int = 0,
     source: LoadStates = loadStates()
-) = localInsert(
-    loadType = APPEND,
-    pages = pages,
-    placeholdersBefore = -1,
-    placeholdersAfter = placeholdersAfter,
-    source = source
-)
+) =
+    localInsert(
+        loadType = APPEND,
+        pages = pages,
+        placeholdersBefore = -1,
+        placeholdersAfter = placeholdersAfter,
+        source = source
+    )
 
 private fun <T : Any> remoteInsert(
     loadType: LoadType,
@@ -93,27 +100,31 @@
     placeholdersAfter: Int,
     source: LoadStates,
     mediator: LoadStates,
-) = when (loadType) {
-    REFRESH -> PageEvent.Insert.Refresh(
-        pages = pages,
-        placeholdersBefore = placeholdersBefore,
-        placeholdersAfter = placeholdersAfter,
-        sourceLoadStates = source,
-        mediatorLoadStates = mediator,
-    )
-    PREPEND -> PageEvent.Insert.Prepend(
-        pages = pages,
-        placeholdersBefore = placeholdersBefore,
-        sourceLoadStates = source,
-        mediatorLoadStates = mediator,
-    )
-    APPEND -> PageEvent.Insert.Append(
-        pages = pages,
-        placeholdersAfter = placeholdersAfter,
-        sourceLoadStates = source,
-        mediatorLoadStates = mediator
-    )
-}
+) =
+    when (loadType) {
+        REFRESH ->
+            PageEvent.Insert.Refresh(
+                pages = pages,
+                placeholdersBefore = placeholdersBefore,
+                placeholdersAfter = placeholdersAfter,
+                sourceLoadStates = source,
+                mediatorLoadStates = mediator,
+            )
+        PREPEND ->
+            PageEvent.Insert.Prepend(
+                pages = pages,
+                placeholdersBefore = placeholdersBefore,
+                sourceLoadStates = source,
+                mediatorLoadStates = mediator,
+            )
+        APPEND ->
+            PageEvent.Insert.Append(
+                pages = pages,
+                placeholdersAfter = placeholdersAfter,
+                sourceLoadStates = source,
+                mediatorLoadStates = mediator
+            )
+    }
 
 internal fun <T : Any> remoteRefresh(
     pages: List<TransformablePage<T>> = listOf(emptyPage()),
@@ -121,55 +132,58 @@
     placeholdersAfter: Int = 0,
     source: LoadStates = loadStates(),
     mediator: LoadStates = loadStates(),
-) = remoteInsert(
-    loadType = REFRESH,
-    pages = pages,
-    placeholdersBefore = placeholdersBefore,
-    placeholdersAfter = placeholdersAfter,
-    source = source,
-    mediator = mediator,
-)
+) =
+    remoteInsert(
+        loadType = REFRESH,
+        pages = pages,
+        placeholdersBefore = placeholdersBefore,
+        placeholdersAfter = placeholdersAfter,
+        source = source,
+        mediator = mediator,
+    )
 
 internal fun <T : Any> remotePrepend(
     pages: List<TransformablePage<T>> = listOf(emptyPage()),
     placeholdersBefore: Int = 0,
     source: LoadStates = loadStates(),
     mediator: LoadStates = loadStates(),
-) = remoteInsert(
-    loadType = PREPEND,
-    pages = pages,
-    placeholdersBefore = placeholdersBefore,
-    placeholdersAfter = -1,
-    source = source,
-    mediator = mediator,
-)
+) =
+    remoteInsert(
+        loadType = PREPEND,
+        pages = pages,
+        placeholdersBefore = placeholdersBefore,
+        placeholdersAfter = -1,
+        source = source,
+        mediator = mediator,
+    )
 
 internal fun <T : Any> remoteAppend(
     pages: List<TransformablePage<T>> = listOf(emptyPage()),
     placeholdersAfter: Int = 0,
     source: LoadStates = loadStates(),
     mediator: LoadStates = loadStates(),
-) = remoteInsert(
-    loadType = APPEND,
-    pages = pages,
-    placeholdersBefore = -1,
-    placeholdersAfter = placeholdersAfter,
-    source = source,
-    mediator = mediator,
-)
+) =
+    remoteInsert(
+        loadType = APPEND,
+        pages = pages,
+        placeholdersBefore = -1,
+        placeholdersAfter = placeholdersAfter,
+        source = source,
+        mediator = mediator,
+    )
 
 internal fun <T : Any> localLoadStateUpdate(
     refreshLocal: LoadState = LoadState.NotLoading.Incomplete,
     prependLocal: LoadState = LoadState.NotLoading.Incomplete,
     appendLocal: LoadState = LoadState.NotLoading.Incomplete,
-) = LoadStateUpdate<T>(
-    source = loadStates(refreshLocal, prependLocal, appendLocal),
-    mediator = null
-)
+) =
+    LoadStateUpdate<T>(
+        source = loadStates(refreshLocal, prependLocal, appendLocal),
+        mediator = null
+    )
 
-internal fun <T : Any> localLoadStateUpdate(
-    source: LoadStates = LoadStates.IDLE
-) = LoadStateUpdate<T>(source, null)
+internal fun <T : Any> localLoadStateUpdate(source: LoadStates = LoadStates.IDLE) =
+    LoadStateUpdate<T>(source, null)
 
 internal fun <T : Any> remoteLoadStateUpdate(
     source: LoadStates = LoadStates.IDLE,
@@ -183,10 +197,11 @@
     refreshRemote: LoadState = LoadState.NotLoading.Incomplete,
     prependRemote: LoadState = LoadState.NotLoading.Incomplete,
     appendRemote: LoadState = LoadState.NotLoading.Incomplete,
-) = LoadStateUpdate<T>(
-    source = loadStates(refreshLocal, prependLocal, appendLocal),
-    mediator = loadStates(refreshRemote, prependRemote, appendRemote),
-)
+) =
+    LoadStateUpdate<T>(
+        source = loadStates(refreshLocal, prependLocal, appendLocal),
+        mediator = loadStates(refreshRemote, prependRemote, appendRemote),
+    )
 
 private fun <T : Any> emptyPage() = TransformablePage<T>(0, emptyList())
 
diff --git a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ContiguousPagedListTest.kt b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ContiguousPagedListTest.kt
index 0d0c175..2b30e80 100644
--- a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ContiguousPagedListTest.kt
+++ b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ContiguousPagedListTest.kt
@@ -61,15 +61,14 @@
      * and alignment restrictions. These tests were written before positional+contiguous enforced
      * these behaviors.
      */
-    private inner class TestPagingSource(
-        val listData: List<Item> = ITEMS
-    ) : PagingSource<Int, Item>() {
+    private inner class TestPagingSource(val listData: List<Item> = ITEMS) :
+        PagingSource<Int, Item>() {
         var invalidData = false
 
         override fun getRefreshKey(state: PagingState<Int, Item>): Int? {
-            return state.anchorPosition
-                ?.let { anchorPosition -> state.closestItemToPosition(anchorPosition)?.pos }
-                ?: 0
+            return state.anchorPosition?.let { anchorPosition ->
+                state.closestItemToPosition(anchorPosition)?.pos
+            } ?: 0
         }
 
         override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Item> {
@@ -97,24 +96,27 @@
             }
             return when {
                 result == null -> LoadResult.Error(EXCEPTION)
-                placeholdersEnabled -> Page(
-                    data = result,
-                    prevKey = result.firstOrNull()?.pos,
-                    nextKey = result.lastOrNull()?.pos,
-                    itemsBefore = start,
-                    itemsAfter = listData.size - result.size - start
-                )
-                else -> Page(
-                    data = result,
-                    prevKey = result.firstOrNull()?.pos,
-                    nextKey = result.lastOrNull()?.pos
-                )
+                placeholdersEnabled ->
+                    Page(
+                        data = result,
+                        prevKey = result.firstOrNull()?.pos,
+                        nextKey = result.lastOrNull()?.pos,
+                        itemsBefore = start,
+                        itemsAfter = listData.size - result.size - start
+                    )
+                else ->
+                    Page(
+                        data = result,
+                        prevKey = result.firstOrNull()?.pos,
+                        nextKey = result.lastOrNull()?.pos
+                    )
             }
         }
 
         private fun loadAfter(params: LoadParams<Int>): LoadResult<Int, Item> {
-            val result = getClampedRange(params.key!! + 1, params.key!! + 1 + params.loadSize)
-                ?: return LoadResult.Error(EXCEPTION)
+            val result =
+                getClampedRange(params.key!! + 1, params.key!! + 1 + params.loadSize)
+                    ?: return LoadResult.Error(EXCEPTION)
             if (invalidData) {
                 invalidData = false
                 return LoadResult.Invalid()
@@ -127,8 +129,9 @@
         }
 
         private fun loadBefore(params: LoadParams<Int>): LoadResult<Int, Item> {
-            val result = getClampedRange(params.key!! - params.loadSize, params.key!!)
-                ?: return LoadResult.Error(EXCEPTION)
+            val result =
+                getClampedRange(params.key!! - params.loadSize, params.key!!)
+                    ?: return LoadResult.Error(EXCEPTION)
             if (invalidData) {
                 invalidData = false
                 return LoadResult.Invalid()
@@ -202,13 +205,14 @@
         initialKey: Int,
         loadSize: Int
     ): Page<Int, Item> {
-        val result = load(
-            PagingSource.LoadParams.Refresh(
-                initialKey,
-                loadSize,
-                placeholdersEnabled,
+        val result =
+            load(
+                PagingSource.LoadParams.Refresh(
+                    initialKey,
+                    loadSize,
+                    placeholdersEnabled,
+                )
             )
-        )
 
         return result as? Page ?: throw RuntimeException("Unexpected load failure")
     }
@@ -223,18 +227,16 @@
         maxSize: Int = Config.MAX_SIZE_UNBOUNDED,
         pagingSource: PagingSource<Int, Item> = TestPagingSource(listData)
     ): PagedList<Item> {
-        val initialPage = pagingSource.getInitialPage(
-            initialPosition ?: 0,
-            initLoadSize
-        )
+        val initialPage = pagingSource.getInitialPage(initialPosition ?: 0, initLoadSize)
 
-        val config = Config.Builder()
-            .setPageSize(pageSize)
-            .setInitialLoadSizeHint(initLoadSize)
-            .setPrefetchDistance(prefetchDistance)
-            .setMaxSize(maxSize)
-            .setEnablePlaceholders(placeholdersEnabled)
-            .build()
+        val config =
+            Config.Builder()
+                .setPageSize(pageSize)
+                .setInitialLoadSizeHint(initLoadSize)
+                .setPrefetchDistance(prefetchDistance)
+                .setMaxSize(maxSize)
+                .setEnablePlaceholders(placeholdersEnabled)
+                .build()
 
         return PagedList.Builder(pagingSource, initialPage, config)
             .setBoundaryCallback(boundaryCallback)
@@ -260,8 +262,7 @@
         @Suppress("DEPRECATION")
         val pagedListWithDataSource = PagedList.Builder(ItemDataSource(), 10).build()
 
-        @Suppress("DEPRECATION")
-        assertTrue(pagedListWithDataSource.dataSource is ItemDataSource)
+        @Suppress("DEPRECATION") assertTrue(pagedListWithDataSource.dataSource is ItemDataSource)
 
         // snapshot keeps same DataSource
         @Suppress("DEPRECATION")
@@ -296,11 +297,7 @@
         pagedList.loadAround(pagedList.size)
     }
 
-    private fun verifyCallback(
-        callback: Callback,
-        countedPosition: Int,
-        uncountedPosition: Int
-    ) {
+    private fun verifyCallback(callback: Callback, countedPosition: Int, uncountedPosition: Int) {
         if (placeholdersEnabled) {
             verify(callback).onChanged(countedPosition, 20)
         } else {
@@ -445,12 +442,13 @@
 
     @Test
     fun prefetchFront() = runTest {
-        val pagedList = createCountedPagedList(
-            initialPosition = 50,
-            pageSize = 20,
-            initLoadSize = 20,
-            prefetchDistance = 1
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 50,
+                pageSize = 20,
+                initLoadSize = 20,
+                prefetchDistance = 1
+            )
         verifyRange(40, 20, pagedList)
 
         // access adjacent to front, shouldn't trigger prefetch
@@ -466,12 +464,13 @@
 
     @Test
     fun prefetchEnd() = runTest {
-        val pagedList = createCountedPagedList(
-            initialPosition = 50,
-            pageSize = 20,
-            initLoadSize = 20,
-            prefetchDistance = 1
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 50,
+                pageSize = 20,
+                initLoadSize = 20,
+                prefetchDistance = 1
+            )
         verifyRange(40, 20, pagedList)
 
         // access adjacent from end, shouldn't trigger prefetch
@@ -487,13 +486,14 @@
 
     @Test
     fun pageDropEnd() = runTest {
-        val pagedList = createCountedPagedList(
-            initialPosition = 0,
-            pageSize = 20,
-            initLoadSize = 20,
-            prefetchDistance = 1,
-            maxSize = 70
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 0,
+                pageSize = 20,
+                initLoadSize = 20,
+                prefetchDistance = 1,
+                maxSize = 70
+            )
         val callback = mock<Callback>()
         pagedList.addWeakCallback(callback)
         verifyRange(0, 20, pagedList)
@@ -524,13 +524,14 @@
 
     @Test
     fun pageDropFront() = runTest {
-        val pagedList = createCountedPagedList(
-            initialPosition = 90,
-            pageSize = 20,
-            initLoadSize = 20,
-            prefetchDistance = 1,
-            maxSize = 70
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 90,
+                pageSize = 20,
+                initLoadSize = 20,
+                prefetchDistance = 1,
+                maxSize = 70
+            )
         val callback = mock<Callback>()
         pagedList.addWeakCallback(callback)
         verifyRange(80, 20, pagedList)
@@ -564,13 +565,14 @@
     @Test
     fun pageDropCancelPrepend() = runTest {
         // verify that, based on most recent load position, a prepend can be dropped as it arrives
-        val pagedList = createCountedPagedList(
-            initialPosition = 2,
-            pageSize = 1,
-            initLoadSize = 1,
-            prefetchDistance = 1,
-            maxSize = 3
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 2,
+                pageSize = 1,
+                initLoadSize = 1,
+                prefetchDistance = 1,
+                maxSize = 3
+            )
 
         // load 3 pages - 2nd, 3rd, 4th
         pagedList.loadAround(if (placeholdersEnabled) 2 else 0)
@@ -607,13 +609,14 @@
     @Test
     fun pageDropCancelAppend() = runTest {
         // verify that, based on most recent load position, an append can be dropped as it arrives
-        val pagedList = createCountedPagedList(
-            initialPosition = 2,
-            pageSize = 1,
-            initLoadSize = 1,
-            prefetchDistance = 1,
-            maxSize = 3
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 2,
+                pageSize = 1,
+                initLoadSize = 1,
+                prefetchDistance = 1,
+                maxSize = 3
+            )
 
         // load 3 pages - 2nd, 3rd, 4th
         pagedList.loadAround(if (placeholdersEnabled) 2 else 0)
@@ -652,12 +655,7 @@
         pagedList.withLoadStateCapture(APPEND) { states ->
             // No loading going on currently
             assertEquals(
-                listOf(
-                    StateChange(
-                        APPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    )
-                ),
+                listOf(StateChange(APPEND, NotLoading(endOfPaginationReached = false))),
                 states.getAllAndClear()
             )
             verifyRange(0, 40, pagedList)
@@ -665,21 +663,13 @@
             // trigger load
             pagedList.loadAround(35)
             mainThread.executeAll()
-            assertEquals(
-                listOf(StateChange(APPEND, Loading)),
-                states.getAllAndClear()
-            )
+            assertEquals(listOf(StateChange(APPEND, Loading)), states.getAllAndClear())
             verifyRange(0, 40, pagedList)
 
             // load finishes
             drain()
             assertEquals(
-                listOf(
-                    StateChange(
-                        APPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    )
-                ),
+                listOf(StateChange(APPEND, NotLoading(endOfPaginationReached = false))),
                 states.getAllAndClear()
             )
             verifyRange(0, 60, pagedList)
@@ -689,37 +679,23 @@
             // trigger load which will error
             pagedList.loadAround(55)
             mainThread.executeAll()
-            assertEquals(
-                listOf(StateChange(APPEND, Loading)),
-                states.getAllAndClear()
-            )
+            assertEquals(listOf(StateChange(APPEND, Loading)), states.getAllAndClear())
             verifyRange(0, 60, pagedList)
 
             // load now in error state
             drain()
-            assertEquals(
-                listOf(StateChange(APPEND, Error(EXCEPTION))),
-                states.getAllAndClear()
-            )
+            assertEquals(listOf(StateChange(APPEND, Error(EXCEPTION))), states.getAllAndClear())
             verifyRange(0, 60, pagedList)
 
             // retry
             pagedList.retry()
             mainThread.executeAll()
-            assertEquals(
-                listOf(StateChange(APPEND, Loading)),
-                states.getAllAndClear()
-            )
+            assertEquals(listOf(StateChange(APPEND, Loading)), states.getAllAndClear())
 
             // load finishes
             drain()
             assertEquals(
-                listOf(
-                    StateChange(
-                        APPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    )
-                ),
+                listOf(StateChange(APPEND, NotLoading(endOfPaginationReached = false))),
                 states.getAllAndClear()
             )
             verifyRange(0, 80, pagedList)
@@ -729,13 +705,14 @@
     @Test
     fun pageDropCancelPrependError() = runTest {
         // verify a prepend in error state can be dropped
-        val pagedList = createCountedPagedList(
-            initialPosition = 2,
-            pageSize = 1,
-            initLoadSize = 1,
-            prefetchDistance = 1,
-            maxSize = 3
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 2,
+                pageSize = 1,
+                initLoadSize = 1,
+                prefetchDistance = 1,
+                maxSize = 3
+            )
         pagedList.withLoadStateCapture(PREPEND) { states ->
             // load 3 pages - 2nd, 3rd, 4th
             pagedList.loadAround(if (placeholdersEnabled) 2 else 0)
@@ -743,15 +720,9 @@
             verifyRange(1, 3, pagedList)
             assertEquals(
                 listOf(
-                    StateChange(
-                        PREPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    ),
+                    StateChange(PREPEND, NotLoading(endOfPaginationReached = false)),
                     StateChange(PREPEND, Loading),
-                    StateChange(
-                        PREPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    )
+                    StateChange(PREPEND, NotLoading(endOfPaginationReached = false))
                 ),
                 states.getAllAndClear()
             )
@@ -762,23 +733,16 @@
             drain()
             verifyRange(1, 3, pagedList)
             assertEquals(
-                listOf(
-                    StateChange(PREPEND, Loading),
-                    StateChange(PREPEND, Error(EXCEPTION))
-                ),
+                listOf(StateChange(PREPEND, Loading), StateChange(PREPEND, Error(EXCEPTION))),
                 states.getAllAndClear()
             )
 
-            // but without that failure being retried, access near end of list, which drops the error
+            // but without that failure being retried, access near end of list, which drops the
+            // error
             pagedList.loadAround(if (placeholdersEnabled) 3 else 2)
             drain()
             assertEquals(
-                listOf(
-                    StateChange(
-                        PREPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    )
-                ),
+                listOf(StateChange(PREPEND, NotLoading(endOfPaginationReached = false))),
                 states.getAllAndClear()
             )
             verifyRange(2, 3, pagedList)
@@ -788,13 +752,14 @@
     @Test
     fun pageDropCancelAppendError() = runTest {
         // verify an append in error state can be dropped
-        val pagedList = createCountedPagedList(
-            initialPosition = 2,
-            pageSize = 1,
-            initLoadSize = 1,
-            prefetchDistance = 1,
-            maxSize = 3
-        )
+        val pagedList =
+            createCountedPagedList(
+                initialPosition = 2,
+                pageSize = 1,
+                initLoadSize = 1,
+                prefetchDistance = 1,
+                maxSize = 3
+            )
         pagedList.withLoadStateCapture(APPEND) { states ->
             // load 3 pages - 2nd, 3rd, 4th
             pagedList.loadAround(if (placeholdersEnabled) 2 else 0)
@@ -802,15 +767,9 @@
             verifyRange(1, 3, pagedList)
             assertEquals(
                 listOf(
-                    StateChange(
-                        APPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    ),
+                    StateChange(APPEND, NotLoading(endOfPaginationReached = false)),
                     StateChange(APPEND, Loading),
-                    StateChange(
-                        APPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    )
+                    StateChange(APPEND, NotLoading(endOfPaginationReached = false))
                 ),
                 states.getAllAndClear()
             )
@@ -821,23 +780,16 @@
             drain()
             verifyRange(1, 3, pagedList)
             assertEquals(
-                listOf(
-                    StateChange(APPEND, Loading),
-                    StateChange(APPEND, Error(EXCEPTION))
-                ),
+                listOf(StateChange(APPEND, Loading), StateChange(APPEND, Error(EXCEPTION))),
                 states.getAllAndClear()
             )
 
-            // but without that failure being retried, access near start of list, which drops the error
+            // but without that failure being retried, access near start of list, which drops the
+            // error
             pagedList.loadAround(if (placeholdersEnabled) 1 else 0)
             drain()
             assertEquals(
-                listOf(
-                    StateChange(
-                        APPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    )
-                ),
+                listOf(StateChange(APPEND, NotLoading(endOfPaginationReached = false))),
                 states.getAllAndClear()
             )
             verifyRange(0, 3, pagedList)
@@ -854,10 +806,7 @@
             drain()
             assertEquals(
                 listOf(
-                    StateChange(
-                        APPEND,
-                        NotLoading(endOfPaginationReached = false)
-                    ),
+                    StateChange(APPEND, NotLoading(endOfPaginationReached = false)),
                     StateChange(APPEND, Loading),
                     StateChange(APPEND, Error(EXCEPTION))
                 ),
@@ -869,12 +818,8 @@
 
     @Test
     fun distantPrefetch() = runTest {
-        val pagedList = createCountedPagedList(
-            0,
-            initLoadSize = 10,
-            pageSize = 10,
-            prefetchDistance = 30
-        )
+        val pagedList =
+            createCountedPagedList(0, initLoadSize = 10, pageSize = 10, prefetchDistance = 30)
 
         val callback = mock<Callback>()
         pagedList.addWeakCallback(callback)
@@ -916,8 +861,7 @@
         // and verify the snapshot hasn't received them
         assertEquals(snapshotCopy, snapshot)
         val callback = mock<Callback>()
-        @Suppress("DEPRECATION")
-        pagedList.addWeakCallback(snapshot, callback)
+        @Suppress("DEPRECATION") pagedList.addWeakCallback(snapshot, callback)
         verify(callback).onChanged(0, snapshot.size)
         if (!placeholdersEnabled) {
             verify(callback).onInserted(60, 20)
@@ -946,8 +890,7 @@
 
         assertEquals(snapshotCopy, snapshot)
         val callback = mock<Callback>()
-        @Suppress("DEPRECATION")
-        pagedList.addWeakCallback(snapshot, callback)
+        @Suppress("DEPRECATION") pagedList.addWeakCallback(snapshot, callback)
         verify(callback).onChanged(0, snapshot.size)
         if (!placeholdersEnabled) {
             // deprecated snapshot compare dispatches as if inserts occur at the end
@@ -958,11 +901,8 @@
 
     @Test
     fun initialLoad_lastKey() = runTest {
-        val pagedList = createCountedPagedList(
-            initialPosition = 4,
-            initLoadSize = 20,
-            pageSize = 10
-        )
+        val pagedList =
+            createCountedPagedList(initialPosition = 4, initLoadSize = 20, pageSize = 10)
         verifyRange(0, 20, pagedList)
 
         // lastKey should return result of PagingSource.getRefreshKey after loading 20 items.
@@ -986,8 +926,7 @@
 
         // verify that adding callback notifies naive "everything changed" when snapshot passed
         var callback = mock<Callback>()
-        @Suppress("DEPRECATION")
-        pagedList.addWeakCallback(initSnapshot, callback)
+        @Suppress("DEPRECATION") pagedList.addWeakCallback(initSnapshot, callback)
         verify(callback).onChanged(0, pagedList.size)
         verifyNoMoreInteractions(callback)
         pagedList.removeWeakCallback(callback)
@@ -998,8 +937,7 @@
 
         // verify that adding callback notifies insert going from empty -> content
         callback = mock()
-        @Suppress("DEPRECATION")
-        pagedList.addWeakCallback(initSnapshot, callback)
+        @Suppress("DEPRECATION") pagedList.addWeakCallback(initSnapshot, callback)
         verify(callback).onChanged(0, initSnapshot.size)
         if (!placeholdersEnabled) {
             verify(callback).onInserted(40, 20)
@@ -1009,12 +947,9 @@
 
     @Test
     fun boundaryCallback_empty() = runTest {
-        @Suppress("UNCHECKED_CAST")
-        val boundaryCallback = mock<BoundaryCallback<Item>>()
-        val pagedList = createCountedPagedList(
-            0,
-            listData = ArrayList(), boundaryCallback = boundaryCallback
-        )
+        @Suppress("UNCHECKED_CAST") val boundaryCallback = mock<BoundaryCallback<Item>>()
+        val pagedList =
+            createCountedPagedList(0, listData = ArrayList(), boundaryCallback = boundaryCallback)
         assertEquals(0, pagedList.size)
 
         // nothing yet
@@ -1030,12 +965,14 @@
     fun boundaryCallback_singleInitialLoad() = runTest {
         val shortList = ITEMS.subList(0, 4)
 
-        @Suppress("UNCHECKED_CAST")
-        val boundaryCallback = mock<BoundaryCallback<Item>>()
-        val pagedList = createCountedPagedList(
-            0, listData = shortList,
-            initLoadSize = shortList.size, boundaryCallback = boundaryCallback
-        )
+        @Suppress("UNCHECKED_CAST") val boundaryCallback = mock<BoundaryCallback<Item>>()
+        val pagedList =
+            createCountedPagedList(
+                0,
+                listData = shortList,
+                initLoadSize = shortList.size,
+                boundaryCallback = boundaryCallback
+            )
         assertEquals(shortList.size, pagedList.size)
 
         // nothing yet
@@ -1052,12 +989,14 @@
 
     @Test
     fun boundaryCallback_delayed() = runTest {
-        @Suppress("UNCHECKED_CAST")
-        val boundaryCallback = mock<BoundaryCallback<Item>>()
-        val pagedList = createCountedPagedList(
-            90,
-            initLoadSize = 20, prefetchDistance = 5, boundaryCallback = boundaryCallback
-        )
+        @Suppress("UNCHECKED_CAST") val boundaryCallback = mock<BoundaryCallback<Item>>()
+        val pagedList =
+            createCountedPagedList(
+                90,
+                initLoadSize = 20,
+                prefetchDistance = 5,
+                boundaryCallback = boundaryCallback
+            )
         verifyRange(80, 20, pagedList)
 
         // nothing yet
diff --git a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ItemKeyedDataSourceTest.kt b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ItemKeyedDataSourceTest.kt
index 65e1e83..0c67dd3 100644
--- a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ItemKeyedDataSourceTest.kt
+++ b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/ItemKeyedDataSourceTest.kt
@@ -181,11 +181,11 @@
     @Test
     fun loadBefore() {
         val dataSource = ItemDataSource()
-        @Suppress("UNCHECKED_CAST")
-        val callback = mock<ItemKeyedDataSource.LoadCallback<Item>>()
+        @Suppress("UNCHECKED_CAST") val callback = mock<ItemKeyedDataSource.LoadCallback<Item>>()
 
         dataSource.loadBefore(
-            ItemKeyedDataSource.LoadParams(dataSource.getKey(ITEMS_BY_NAME_ID[5]), 5), callback
+            ItemKeyedDataSource.LoadParams(dataSource.getKey(ITEMS_BY_NAME_ID[5]), 5),
+            callback
         )
 
         @Suppress("UNCHECKED_CAST")
@@ -246,9 +246,8 @@
         }
 
         private fun findFirstIndexAfter(key: Key): Int {
-            return items.indices.firstOrNull {
-                KEY_COMPARATOR.compare(key, getKey(items[it])) < 0
-            } ?: items.size
+            return items.indices.firstOrNull { KEY_COMPARATOR.compare(key, getKey(items[it])) < 0 }
+                ?: items.size
         }
 
         private fun findFirstIndexBefore(key: Key): Int {
@@ -262,30 +261,34 @@
         invalidateDataSource: Boolean = false,
         callbackInvoker: (callback: ItemKeyedDataSource.LoadInitialCallback<String>) -> Unit
     ) {
-        val dataSource = object : ItemKeyedDataSource<String, String>() {
-            override fun getKey(item: String): String {
-                return ""
-            }
-
-            override fun loadInitial(
-                params: LoadInitialParams<String>,
-                callback: LoadInitialCallback<String>
-            ) {
-                if (invalidateDataSource) {
-                    // invalidate data source so it's invalid when onResult() called
-                    invalidate()
+        val dataSource =
+            object : ItemKeyedDataSource<String, String>() {
+                override fun getKey(item: String): String {
+                    return ""
                 }
-                callbackInvoker(callback)
-            }
 
-            override fun loadAfter(params: LoadParams<String>, callback: LoadCallback<String>) {
-                fail("loadAfter not expected")
-            }
+                override fun loadInitial(
+                    params: LoadInitialParams<String>,
+                    callback: LoadInitialCallback<String>
+                ) {
+                    if (invalidateDataSource) {
+                        // invalidate data source so it's invalid when onResult() called
+                        invalidate()
+                    }
+                    callbackInvoker(callback)
+                }
 
-            override fun loadBefore(params: LoadParams<String>, callback: LoadCallback<String>) {
-                fail("loadBefore not expected")
+                override fun loadAfter(params: LoadParams<String>, callback: LoadCallback<String>) {
+                    fail("loadAfter not expected")
+                }
+
+                override fun loadBefore(
+                    params: LoadParams<String>,
+                    callback: LoadCallback<String>
+                ) {
+                    fail("loadBefore not expected")
+                }
             }
-        }
 
         @Suppress("DEPRECATION")
         PagedList.Builder(dataSource, 10)
@@ -432,13 +435,9 @@
         val loadInitialCallback = mock<ItemKeyedDataSource.LoadInitialCallback<DecoratedItem>>()
         val initKey = orig.getKey(ITEMS_BY_NAME_ID.first())
         val initParams = ItemKeyedDataSource.LoadInitialParams(initKey, 10, false)
-        wrapper.loadInitial(
-            initParams,
-            loadInitialCallback
-        )
-        verify(loadInitialCallback).onResult(
-            ITEMS_BY_NAME_ID.subList(0, 10).map { DecoratedItem(it) }
-        )
+        wrapper.loadInitial(initParams, loadInitialCallback)
+        verify(loadInitialCallback)
+            .onResult(ITEMS_BY_NAME_ID.subList(0, 10).map { DecoratedItem(it) })
 
         val key = orig.getKey(ITEMS_BY_NAME_ID[20])
         @Suppress("UNCHECKED_CAST")
@@ -460,9 +459,7 @@
     }
 
     @Test
-    fun testManualWrappedDataSource() = verifyWrappedDataSource {
-        DecoratedWrapperDataSource(it)
-    }
+    fun testManualWrappedDataSource() = verifyWrappedDataSource { DecoratedWrapperDataSource(it) }
 
     @Test
     fun testListConverterWrappedDataSource() = verifyWrappedDataSource { dataSource ->
@@ -496,14 +493,16 @@
         private val ITEM_COMPARATOR = compareBy<Item> { it.name }.thenByDescending { it.id }
         private val KEY_COMPARATOR = compareBy<Key> { it.name }.thenByDescending { it.id }
 
-        private val ITEMS_BY_NAME_ID = List(100) {
-            val names = Array(10) { index -> "f" + ('a' + index) }
-            Item(
-                names[it % 10],
-                it,
-                Random.nextDouble(1000.0),
-                Random.nextInt(200).toString() + " fake st."
-            )
-        }.sortedWith(ITEM_COMPARATOR)
+        private val ITEMS_BY_NAME_ID =
+            List(100) {
+                    val names = Array(10) { index -> "f" + ('a' + index) }
+                    Item(
+                        names[it % 10],
+                        it,
+                        Random.nextDouble(1000.0),
+                        Random.nextInt(200).toString() + " fake st."
+                    )
+                }
+                .sortedWith(ITEM_COMPARATOR)
     }
 }
diff --git a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PageKeyedDataSourceTest.kt b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PageKeyedDataSourceTest.kt
index a22d2f0..f1c5f40 100644
--- a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PageKeyedDataSourceTest.kt
+++ b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PageKeyedDataSourceTest.kt
@@ -90,11 +90,12 @@
         val dispatcher = UnconfinedTestDispatcher()
         val testCoroutineScope = CoroutineScope(dispatcher)
         @Suppress("DEPRECATION")
-        val pagedList = PagedList.Builder(ItemDataSource(), 100)
-            .setCoroutineScope(testCoroutineScope)
-            .setNotifyDispatcher(dispatcher)
-            .setFetchDispatcher(dispatcher)
-            .build()
+        val pagedList =
+            PagedList.Builder(ItemDataSource(), 100)
+                .setCoroutineScope(testCoroutineScope)
+                .setNotifyDispatcher(dispatcher)
+                .setFetchDispatcher(dispatcher)
+                .build()
 
         // validate initial load
         assertEquals(PAGE_MAP[INIT_KEY]!!.data, pagedList)
@@ -113,35 +114,35 @@
     @Suppress("DEPRECATION")
     private fun performLoadInitial(
         invalidateDataSource: Boolean = false,
-        callbackInvoker:
-            (callback: PageKeyedDataSource.LoadInitialCallback<String, String>) -> Unit
+        callbackInvoker: (callback: PageKeyedDataSource.LoadInitialCallback<String, String>) -> Unit
     ) {
-        val dataSource = object : PageKeyedDataSource<String, String>() {
-            override fun loadInitial(
-                params: LoadInitialParams<String>,
-                callback: LoadInitialCallback<String, String>
-            ) {
-                if (invalidateDataSource) {
-                    // invalidate data source so it's invalid when onResult() called
-                    invalidate()
+        val dataSource =
+            object : PageKeyedDataSource<String, String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams<String>,
+                    callback: LoadInitialCallback<String, String>
+                ) {
+                    if (invalidateDataSource) {
+                        // invalidate data source so it's invalid when onResult() called
+                        invalidate()
+                    }
+                    callbackInvoker(callback)
                 }
-                callbackInvoker(callback)
-            }
 
-            override fun loadBefore(
-                params: LoadParams<String>,
-                callback: LoadCallback<String, String>
-            ) {
-                fail("loadBefore not expected")
-            }
+                override fun loadBefore(
+                    params: LoadParams<String>,
+                    callback: LoadCallback<String, String>
+                ) {
+                    fail("loadBefore not expected")
+                }
 
-            override fun loadAfter(
-                params: LoadParams<String>,
-                callback: LoadCallback<String, String>
-            ) {
-                fail("loadAfter not expected")
+                override fun loadAfter(
+                    params: LoadParams<String>,
+                    callback: LoadCallback<String, String>
+                ) {
+                    fail("loadAfter not expected")
+                }
             }
-        }
 
         @Suppress("DEPRECATION")
         PagedList.Builder(dataSource, 10)
@@ -211,30 +212,31 @@
     @Test
     fun testBoundaryCallback() {
         @Suppress("DEPRECATION")
-        val dataSource = object : PageKeyedDataSource<String, String>() {
-            override fun loadInitial(
-                params: LoadInitialParams<String>,
-                callback: LoadInitialCallback<String, String>
-            ) {
-                callback.onResult(listOf("B"), "a", "c")
-            }
+        val dataSource =
+            object : PageKeyedDataSource<String, String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams<String>,
+                    callback: LoadInitialCallback<String, String>
+                ) {
+                    callback.onResult(listOf("B"), "a", "c")
+                }
 
-            override fun loadBefore(
-                params: LoadParams<String>,
-                callback: LoadCallback<String, String>
-            ) {
-                assertEquals("a", params.key)
-                callback.onResult(listOf("A"), null)
-            }
+                override fun loadBefore(
+                    params: LoadParams<String>,
+                    callback: LoadCallback<String, String>
+                ) {
+                    assertEquals("a", params.key)
+                    callback.onResult(listOf("A"), null)
+                }
 
-            override fun loadAfter(
-                params: LoadParams<String>,
-                callback: LoadCallback<String, String>
-            ) {
-                assertEquals("c", params.key)
-                callback.onResult(listOf("C"), null)
+                override fun loadAfter(
+                    params: LoadParams<String>,
+                    callback: LoadCallback<String, String>
+                ) {
+                    assertEquals("c", params.key)
+                    callback.onResult(listOf("C"), null)
+                }
             }
-        }
 
         @Suppress("UNCHECKED_CAST", "DEPRECATION")
         val boundaryCallback =
@@ -243,12 +245,13 @@
 
         val testCoroutineScope = CoroutineScope(EmptyCoroutineContext)
         @Suppress("DEPRECATION")
-        val pagedList = PagedList.Builder(dataSource, 10)
-            .setBoundaryCallback(boundaryCallback)
-            .setCoroutineScope(testCoroutineScope)
-            .setFetchDispatcher(Dispatchers.Unconfined)
-            .setNotifyDispatcher(dispatcher)
-            .build()
+        val pagedList =
+            PagedList.Builder(dataSource, 10)
+                .setBoundaryCallback(boundaryCallback)
+                .setCoroutineScope(testCoroutineScope)
+                .setFetchDispatcher(Dispatchers.Unconfined)
+                .setNotifyDispatcher(dispatcher)
+                .build()
 
         pagedList.loadAround(0)
 
@@ -265,29 +268,30 @@
     @Test
     fun testBoundaryCallbackJustInitial() {
         @Suppress("DEPRECATION")
-        val dataSource = object : PageKeyedDataSource<String, String>() {
-            override fun loadInitial(
-                params: LoadInitialParams<String>,
-                callback: LoadInitialCallback<String, String>
-            ) {
-                // just the one load, but boundary callbacks should still be triggered
-                callback.onResult(listOf("B"), null, null)
-            }
+        val dataSource =
+            object : PageKeyedDataSource<String, String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams<String>,
+                    callback: LoadInitialCallback<String, String>
+                ) {
+                    // just the one load, but boundary callbacks should still be triggered
+                    callback.onResult(listOf("B"), null, null)
+                }
 
-            override fun loadBefore(
-                params: LoadParams<String>,
-                callback: LoadCallback<String, String>
-            ) {
-                fail("loadBefore not expected")
-            }
+                override fun loadBefore(
+                    params: LoadParams<String>,
+                    callback: LoadCallback<String, String>
+                ) {
+                    fail("loadBefore not expected")
+                }
 
-            override fun loadAfter(
-                params: LoadParams<String>,
-                callback: LoadCallback<String, String>
-            ) {
-                fail("loadBefore not expected")
+                override fun loadAfter(
+                    params: LoadParams<String>,
+                    callback: LoadCallback<String, String>
+                ) {
+                    fail("loadBefore not expected")
+                }
             }
-        }
 
         @Suppress("UNCHECKED_CAST", "DEPRECATION")
         val boundaryCallback =
@@ -296,12 +300,13 @@
 
         val testCoroutineScope = CoroutineScope(EmptyCoroutineContext)
         @Suppress("DEPRECATION")
-        val pagedList = PagedList.Builder(dataSource, 10)
-            .setBoundaryCallback(boundaryCallback)
-            .setCoroutineScope(testCoroutineScope)
-            .setFetchDispatcher(Dispatchers.Unconfined)
-            .setNotifyDispatcher(dispatcher)
-            .build()
+        val pagedList =
+            PagedList.Builder(dataSource, 10)
+                .setBoundaryCallback(boundaryCallback)
+                .setCoroutineScope(testCoroutineScope)
+                .setFetchDispatcher(Dispatchers.Unconfined)
+                .setNotifyDispatcher(dispatcher)
+                .build()
 
         pagedList.loadAround(0)
 
@@ -407,22 +412,26 @@
 
         // load initial
         @Suppress("UNCHECKED_CAST")
-        val loadInitialCallback = mock(PageKeyedDataSource.LoadInitialCallback::class.java)
-            as PageKeyedDataSource.LoadInitialCallback<String, String>
+        val loadInitialCallback =
+            mock(PageKeyedDataSource.LoadInitialCallback::class.java)
+                as PageKeyedDataSource.LoadInitialCallback<String, String>
 
         val initParams = PageKeyedDataSource.LoadInitialParams<String>(4, true)
         wrapper.loadInitial(initParams, loadInitialCallback)
         val expectedInitial = PAGE_MAP.getValue(INIT_KEY)
-        verify(loadInitialCallback).onResult(
-            expectedInitial.data.map { it.toString() },
-            expectedInitial.prev, expectedInitial.next
-        )
+        verify(loadInitialCallback)
+            .onResult(
+                expectedInitial.data.map { it.toString() },
+                expectedInitial.prev,
+                expectedInitial.next
+            )
         verifyNoMoreInteractions(loadInitialCallback)
 
         @Suppress("UNCHECKED_CAST")
         // load after
-        var loadCallback = mock(PageKeyedDataSource.LoadCallback::class.java)
-            as PageKeyedDataSource.LoadCallback<String, String>
+        var loadCallback =
+            mock(PageKeyedDataSource.LoadCallback::class.java)
+                as PageKeyedDataSource.LoadCallback<String, String>
         wrapper.loadAfter(PageKeyedDataSource.LoadParams(expectedInitial.next!!, 4), loadCallback)
         val expectedAfter = PAGE_MAP[expectedInitial.next]!!
         verify(loadCallback).onResult(expectedAfter.data.map { it.toString() }, expectedAfter.next)
@@ -433,13 +442,12 @@
 
         // load before
         @Suppress("UNCHECKED_CAST")
-        loadCallback = mock(PageKeyedDataSource.LoadCallback::class.java)
-            as PageKeyedDataSource.LoadCallback<String, String>
+        loadCallback =
+            mock(PageKeyedDataSource.LoadCallback::class.java)
+                as PageKeyedDataSource.LoadCallback<String, String>
         wrapper.loadBefore(PageKeyedDataSource.LoadParams(expectedAfter.prev!!, 4), loadCallback)
-        verify(loadCallback).onResult(
-            expectedInitial.data.map { it.toString() },
-            expectedInitial.prev
-        )
+        verify(loadCallback)
+            .onResult(expectedInitial.data.map { it.toString() }, expectedInitial.prev)
         verifyNoMoreInteractions(loadCallback)
         // load before - error
         orig.enqueueError()
@@ -452,9 +460,7 @@
     }
 
     @Test
-    fun testManualWrappedDataSource() = verifyWrappedDataSource {
-        StringWrapperDataSource(it)
-    }
+    fun testManualWrappedDataSource() = verifyWrappedDataSource { StringWrapperDataSource(it) }
 
     @Test
     fun testListConverterWrappedDataSource() = verifyWrappedDataSource { dataSource ->
diff --git a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PagedStorageTest.kt b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PagedStorageTest.kt
index c278dad..151b3ad 100644
--- a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PagedStorageTest.kt
+++ b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PagedStorageTest.kt
@@ -28,11 +28,8 @@
 import org.mockito.Mockito.verifyNoMoreInteractions
 
 class PagedStorageTest {
-    private fun pageOf(vararg strings: String): Page<Any, String> = Page(
-        data = strings.asList(),
-        prevKey = null,
-        nextKey = null
-    )
+    private fun pageOf(vararg strings: String): Page<Any, String> =
+        Page(data = strings.asList(), prevKey = null, nextKey = null)
 
     @Test
     fun construct() {
@@ -158,9 +155,7 @@
 
     @Test
     fun trim_remainderPreventsNoOp() {
-        val storage = PagedStorage(
-            listOf(pageOf("a", "b"), pageOf("c", "d"), pageOf("d", "e"))
-        )
+        val storage = PagedStorage(listOf(pageOf("a", "b"), pageOf("c", "d"), pageOf("d", "e")))
 
         // can't trim, since removing a page would mean fewer items than required
         assertFalse(storage.needsTrimFromFront(5, 5))
@@ -223,44 +218,47 @@
         val storage = PagedStorage(0, page, 0)
 
         storage.lastLoadAroundIndex = -5
-        var pagingState = storage.getRefreshKeyInfo(
-            @Suppress("DEPRECATION")
-            PagedList.Config(
-                pageSize = 3,
-                prefetchDistance = 0,
-                enablePlaceholders = true,
-                initialLoadSizeHint = 3,
-                maxSize = 3
+        var pagingState =
+            storage.getRefreshKeyInfo(
+                @Suppress("DEPRECATION")
+                PagedList.Config(
+                    pageSize = 3,
+                    prefetchDistance = 0,
+                    enablePlaceholders = true,
+                    initialLoadSizeHint = 3,
+                    maxSize = 3
+                )
             )
-        )
         assertNotNull(pagingState)
         assertEquals(0, pagingState.anchorPosition)
 
         storage.lastLoadAroundIndex = 1
-        pagingState = storage.getRefreshKeyInfo(
-            @Suppress("DEPRECATION")
-            PagedList.Config(
-                pageSize = 3,
-                prefetchDistance = 0,
-                enablePlaceholders = true,
-                initialLoadSizeHint = 3,
-                maxSize = 3
+        pagingState =
+            storage.getRefreshKeyInfo(
+                @Suppress("DEPRECATION")
+                PagedList.Config(
+                    pageSize = 3,
+                    prefetchDistance = 0,
+                    enablePlaceholders = true,
+                    initialLoadSizeHint = 3,
+                    maxSize = 3
+                )
             )
-        )
         assertNotNull(pagingState)
         assertEquals(1, pagingState.anchorPosition)
 
         storage.lastLoadAroundIndex = 5
-        pagingState = storage.getRefreshKeyInfo(
-            @Suppress("DEPRECATION")
-            PagedList.Config(
-                pageSize = 3,
-                prefetchDistance = 0,
-                enablePlaceholders = true,
-                initialLoadSizeHint = 3,
-                maxSize = 3
+        pagingState =
+            storage.getRefreshKeyInfo(
+                @Suppress("DEPRECATION")
+                PagedList.Config(
+                    pageSize = 3,
+                    prefetchDistance = 0,
+                    enablePlaceholders = true,
+                    initialLoadSizeHint = 3,
+                    maxSize = 3
+                )
             )
-        )
         assertNotNull(pagingState)
         assertEquals(2, pagingState.anchorPosition)
     }
@@ -271,44 +269,47 @@
         val storage = PagedStorage(10, page, 10)
 
         storage.lastLoadAroundIndex = 1
-        var pagingState = storage.getRefreshKeyInfo(
-            @Suppress("DEPRECATION")
-            PagedList.Config(
-                pageSize = 3,
-                prefetchDistance = 0,
-                enablePlaceholders = true,
-                initialLoadSizeHint = 3,
-                maxSize = 3
+        var pagingState =
+            storage.getRefreshKeyInfo(
+                @Suppress("DEPRECATION")
+                PagedList.Config(
+                    pageSize = 3,
+                    prefetchDistance = 0,
+                    enablePlaceholders = true,
+                    initialLoadSizeHint = 3,
+                    maxSize = 3
+                )
             )
-        )
         assertNotNull(pagingState)
         assertEquals(10, pagingState.anchorPosition)
 
         storage.lastLoadAroundIndex = 11
-        pagingState = storage.getRefreshKeyInfo(
-            @Suppress("DEPRECATION")
-            PagedList.Config(
-                pageSize = 3,
-                prefetchDistance = 0,
-                enablePlaceholders = true,
-                initialLoadSizeHint = 3,
-                maxSize = 3
+        pagingState =
+            storage.getRefreshKeyInfo(
+                @Suppress("DEPRECATION")
+                PagedList.Config(
+                    pageSize = 3,
+                    prefetchDistance = 0,
+                    enablePlaceholders = true,
+                    initialLoadSizeHint = 3,
+                    maxSize = 3
+                )
             )
-        )
         assertNotNull(pagingState)
         assertEquals(11, pagingState.anchorPosition)
 
         storage.lastLoadAroundIndex = 21
-        pagingState = storage.getRefreshKeyInfo(
-            @Suppress("DEPRECATION")
-            PagedList.Config(
-                pageSize = 3,
-                prefetchDistance = 0,
-                enablePlaceholders = true,
-                initialLoadSizeHint = 3,
-                maxSize = 3
+        pagingState =
+            storage.getRefreshKeyInfo(
+                @Suppress("DEPRECATION")
+                PagedList.Config(
+                    pageSize = 3,
+                    prefetchDistance = 0,
+                    enablePlaceholders = true,
+                    initialLoadSizeHint = 3,
+                    maxSize = 3
+                )
             )
-        )
         assertNotNull(pagingState)
         assertEquals(12, pagingState.anchorPosition)
     }
@@ -334,12 +335,17 @@
             return storage
         }
 
-        private val IGNORED_CALLBACK = object : PagedStorage.Callback {
-            override fun onInitialized(count: Int) {}
-            override fun onPagePrepended(leadingNulls: Int, changed: Int, added: Int) {}
-            override fun onPageAppended(endPosition: Int, changed: Int, added: Int) {}
-            override fun onPagesRemoved(startOfDrops: Int, count: Int) {}
-            override fun onPagesSwappedToPlaceholder(startOfDrops: Int, count: Int) {}
-        }
+        private val IGNORED_CALLBACK =
+            object : PagedStorage.Callback {
+                override fun onInitialized(count: Int) {}
+
+                override fun onPagePrepended(leadingNulls: Int, changed: Int, added: Int) {}
+
+                override fun onPageAppended(endPosition: Int, changed: Int, added: Int) {}
+
+                override fun onPagesRemoved(startOfDrops: Int, count: Int) {}
+
+                override fun onPagesSwappedToPlaceholder(startOfDrops: Int, count: Int) {}
+            }
     }
 }
diff --git a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PositionalDataSourceTest.kt b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PositionalDataSourceTest.kt
index a02a2f4..87b9329 100644
--- a/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PositionalDataSourceTest.kt
+++ b/paging/paging-common/src/jvmTest/kotlin/androidx/paging/PositionalDataSourceTest.kt
@@ -37,9 +37,13 @@
         pageSize: Int,
         totalCount: Int
     ): Int {
-        val params = PositionalDataSource.LoadInitialParams(
-            requestedStartPosition, requestedLoadSize, pageSize, true
-        )
+        val params =
+            PositionalDataSource.LoadInitialParams(
+                requestedStartPosition,
+                requestedLoadSize,
+                pageSize,
+                true
+            )
         return PositionalDataSource.computeInitialLoadPosition(params, totalCount)
     }
 
@@ -109,43 +113,49 @@
     }
 
     @OptIn(ExperimentalCoroutinesApi::class)
-    private fun validatePositionOffset(enablePlaceholders: Boolean) = testScope.runTest {
-        val config = PagedList.Config.Builder()
-            .setPageSize(10)
-            .setEnablePlaceholders(enablePlaceholders)
-            .build()
-        val success = mutableListOf(false)
-        val dataSource = object : PositionalDataSource<String>() {
-            override fun loadInitial(
-                params: LoadInitialParams,
-                callback: LoadInitialCallback<String>
-            ) {
-                if (enablePlaceholders) {
-                    // 36 - ((10 * 3) / 2) = 21, round down to 20
-                    assertEquals(20, params.requestedStartPosition)
-                } else {
-                    // 36 - ((10 * 3) / 2) = 21, no rounding
-                    assertEquals(21, params.requestedStartPosition)
+    private fun validatePositionOffset(enablePlaceholders: Boolean) =
+        testScope.runTest {
+            val config =
+                PagedList.Config.Builder()
+                    .setPageSize(10)
+                    .setEnablePlaceholders(enablePlaceholders)
+                    .build()
+            val success = mutableListOf(false)
+            val dataSource =
+                object : PositionalDataSource<String>() {
+                    override fun loadInitial(
+                        params: LoadInitialParams,
+                        callback: LoadInitialCallback<String>
+                    ) {
+                        if (enablePlaceholders) {
+                            // 36 - ((10 * 3) / 2) = 21, round down to 20
+                            assertEquals(20, params.requestedStartPosition)
+                        } else {
+                            // 36 - ((10 * 3) / 2) = 21, no rounding
+                            assertEquals(21, params.requestedStartPosition)
+                        }
+
+                        callback.onResult(listOf("a", "b"), 0, 2)
+                        success[0] = true
+                    }
+
+                    override fun loadRange(
+                        params: LoadRangeParams,
+                        callback: LoadRangeCallback<String>
+                    ) {
+                        fail("loadRange not expected")
+                    }
                 }
 
-                callback.onResult(listOf("a", "b"), 0, 2)
-                success[0] = true
-            }
-
-            override fun loadRange(params: LoadRangeParams, callback: LoadRangeCallback<String>) {
-                fail("loadRange not expected")
-            }
+            @Suppress("DEPRECATION")
+            PagedList.Builder(dataSource, config)
+                .setFetchExecutor(Executor { it.run() })
+                .setNotifyExecutor(Executor { it.run() })
+                .setInitialKey(36)
+                .build()
+            assertTrue(success[0])
         }
 
-        @Suppress("DEPRECATION")
-        PagedList.Builder(dataSource, config)
-            .setFetchExecutor(Executor { it.run() })
-            .setNotifyExecutor(Executor { it.run() })
-            .setInitialKey(36)
-            .build()
-        assertTrue(success[0])
-    }
-
     @Test
     fun initialPositionOffset() {
         validatePositionOffset(true)
@@ -161,39 +171,46 @@
         enablePlaceholders: Boolean = true,
         invalidateDataSource: Boolean = false,
         callbackInvoker: (callback: PositionalDataSource.LoadInitialCallback<String>) -> Unit
-    ) = testScope.runTest {
-        val dataSource = object : PositionalDataSource<String>() {
-            override fun loadInitial(
-                params: LoadInitialParams,
-                callback: LoadInitialCallback<String>
-            ) {
-                if (invalidateDataSource) {
-                    // invalidate data source so it's invalid when onResult() called
-                    invalidate()
+    ) =
+        testScope.runTest {
+            val dataSource =
+                object : PositionalDataSource<String>() {
+                    override fun loadInitial(
+                        params: LoadInitialParams,
+                        callback: LoadInitialCallback<String>
+                    ) {
+                        if (invalidateDataSource) {
+                            // invalidate data source so it's invalid when onResult() called
+                            invalidate()
+                        }
+                        callbackInvoker(callback)
+                    }
+
+                    override fun loadRange(
+                        params: LoadRangeParams,
+                        callback: LoadRangeCallback<String>
+                    ) {
+                        fail("loadRange not expected")
+                    }
                 }
-                callbackInvoker(callback)
-            }
 
-            override fun loadRange(params: LoadRangeParams, callback: LoadRangeCallback<String>) {
-                fail("loadRange not expected")
-            }
+            val config =
+                PagedList.Config.Builder()
+                    .setPageSize(10)
+                    .setEnablePlaceholders(enablePlaceholders)
+                    .build()
+
+            val params =
+                PositionalDataSource.LoadInitialParams(
+                    0,
+                    config.initialLoadSizeHint,
+                    config.pageSize,
+                    config.enablePlaceholders
+                )
+
+            dataSource.loadInitial(params)
         }
 
-        val config = PagedList.Config.Builder()
-            .setPageSize(10)
-            .setEnablePlaceholders(enablePlaceholders)
-            .build()
-
-        val params = PositionalDataSource.LoadInitialParams(
-            0,
-            config.initialLoadSizeHint,
-            config.pageSize,
-            config.enablePlaceholders
-        )
-
-        dataSource.loadInitial(params)
-    }
-
     @Test
     fun initialLoadCallbackSuccess() = performLoadInitial {
         // LoadInitialCallback correct usage
@@ -201,10 +218,11 @@
     }
 
     @Test(expected = IllegalStateException::class)
-    fun initialLoadCallbackRequireTotalCount() = performLoadInitial(enablePlaceholders = true) {
-        // LoadInitialCallback requires 3 args when placeholders enabled
-        it.onResult(listOf("a", "b"), 0)
-    }
+    fun initialLoadCallbackRequireTotalCount() =
+        performLoadInitial(enablePlaceholders = true) {
+            // LoadInitialCallback requires 3 args when placeholders enabled
+            it.onResult(listOf("a", "b"), 0)
+        }
 
     @Test(expected = IllegalArgumentException::class)
     fun initialLoadCallbackNotPageSizeMultiple() = performLoadInitial {
@@ -238,34 +256,39 @@
     }
 
     @Test
-    fun initialLoadCallbackSuccessTwoArg() = performLoadInitial(enablePlaceholders = false) {
-        // LoadInitialCallback correct 2 arg usage
-        it.onResult(listOf("a", "b"), 0)
-    }
+    fun initialLoadCallbackSuccessTwoArg() =
+        performLoadInitial(enablePlaceholders = false) {
+            // LoadInitialCallback correct 2 arg usage
+            it.onResult(listOf("a", "b"), 0)
+        }
 
     @Test(expected = IllegalArgumentException::class)
-    fun initialLoadCallbackPosNegativeTwoArg() = performLoadInitial(enablePlaceholders = false) {
-        // LoadInitialCallback can't accept negative position
-        it.onResult(listOf("a", "b"), -1)
-    }
+    fun initialLoadCallbackPosNegativeTwoArg() =
+        performLoadInitial(enablePlaceholders = false) {
+            // LoadInitialCallback can't accept negative position
+            it.onResult(listOf("a", "b"), -1)
+        }
 
     @Test(expected = IllegalArgumentException::class)
-    fun initialLoadCallbackEmptyWithOffset() = performLoadInitial(enablePlaceholders = false) {
-        // LoadInitialCallback can't accept empty result unless pos is 0
-        it.onResult(emptyList(), 1)
-    }
+    fun initialLoadCallbackEmptyWithOffset() =
+        performLoadInitial(enablePlaceholders = false) {
+            // LoadInitialCallback can't accept empty result unless pos is 0
+            it.onResult(emptyList(), 1)
+        }
 
     @Test
-    fun initialLoadCallbackInvalidTwoArg() = performLoadInitial(invalidateDataSource = true) {
-        // LoadInitialCallback doesn't throw on invalid args if DataSource is invalid
-        it.onResult(emptyList(), 1)
-    }
+    fun initialLoadCallbackInvalidTwoArg() =
+        performLoadInitial(invalidateDataSource = true) {
+            // LoadInitialCallback doesn't throw on invalid args if DataSource is invalid
+            it.onResult(emptyList(), 1)
+        }
 
     @Test
-    fun initialLoadCallbackInvalidThreeArg() = performLoadInitial(invalidateDataSource = true) {
-        // LoadInitialCallback doesn't throw on invalid args if DataSource is invalid
-        it.onResult(emptyList(), 0, 1)
-    }
+    fun initialLoadCallbackInvalidThreeArg() =
+        performLoadInitial(invalidateDataSource = true) {
+            // LoadInitialCallback doesn't throw on invalid args if DataSource is invalid
+            it.onResult(emptyList(), 0, 1)
+        }
 
     private abstract class WrapperDataSource<in A : Any, B : Any>(
         private val source: PositionalDataSource<A>
@@ -319,10 +342,8 @@
         }
     }
 
-    class ListDataSource<T : Any>(
-        val list: List<T>,
-        val counted: Boolean = true
-    ) : PositionalDataSource<T> () {
+    class ListDataSource<T : Any>(val list: List<T>, val counted: Boolean = true) :
+        PositionalDataSource<T>() {
         private var error = false
 
         override fun loadInitial(params: LoadInitialParams, callback: LoadInitialCallback<T>) {
@@ -369,8 +390,9 @@
 
         // load initial
         @Suppress("UNCHECKED_CAST")
-        val loadInitialCallback = mock(PositionalDataSource.LoadInitialCallback::class.java)
-            as PositionalDataSource.LoadInitialCallback<String>
+        val loadInitialCallback =
+            mock(PositionalDataSource.LoadInitialCallback::class.java)
+                as PositionalDataSource.LoadInitialCallback<String>
         val initParams = PositionalDataSource.LoadInitialParams(0, 2, 1, true)
         wrapper.loadInitial(initParams, loadInitialCallback)
         verify(loadInitialCallback).onResult(listOf("0", "5"), 0, 5)
@@ -381,8 +403,9 @@
 
         // load range
         @Suppress("UNCHECKED_CAST")
-        val loadRangeCallback = mock(PositionalDataSource.LoadRangeCallback::class.java)
-            as PositionalDataSource.LoadRangeCallback<String>
+        val loadRangeCallback =
+            mock(PositionalDataSource.LoadRangeCallback::class.java)
+                as PositionalDataSource.LoadRangeCallback<String>
         wrapper.loadRange(PositionalDataSource.LoadRangeParams(2, 3), loadRangeCallback)
         verify(loadRangeCallback).onResult(listOf("4", "8", "12"))
         // load range - error
@@ -403,9 +426,7 @@
     }
 
     @Test
-    fun testManualWrappedDataSource() = verifyWrappedDataSource {
-        StringWrapperDataSource(it)
-    }
+    fun testManualWrappedDataSource() = verifyWrappedDataSource { StringWrapperDataSource(it) }
 
     @Test
     fun testListConverterWrappedDataSource() = verifyWrappedDataSource { dataSource ->
@@ -438,10 +459,10 @@
     @Test
     fun addRemoveInvalidateFunction() {
         val datasource = ListDataSource(listOf(0, 1, 2))
-        val noopCallback = { }
+        val noopCallback = {}
         datasource.addInvalidatedCallback(noopCallback)
         assert(datasource.invalidateCallbackCount == 1)
-        datasource.removeInvalidatedCallback { }
+        datasource.removeInvalidatedCallback {}
         assert(datasource.invalidateCallbackCount == 1)
         datasource.removeInvalidatedCallback(noopCallback)
         assert(datasource.invalidateCallbackCount == 0)
@@ -451,43 +472,46 @@
     private val testScope = TestScope(UnconfinedTestDispatcher())
 
     @OptIn(ExperimentalCoroutinesApi::class)
-    private fun verifyRefreshIsTerminal(counted: Boolean) = testScope.runTest {
-        val dataSource = ListDataSource(list = listOf(0, 1, 2), counted = counted)
-        dataSource.load(
-            DataSource.Params(
-                type = LoadType.REFRESH,
-                key = 0,
-                initialLoadSize = 3,
-                placeholdersEnabled = false,
-                pageSize = 1
-            )
-        ).apply {
-            assertEquals(listOf(0, 1, 2), data)
-            // prepends always return prevKey = null if they return the first item
-            assertEquals(null, prevKey)
-            // appends only return nextKey if they return the last item, and are counted
-            assertEquals(if (counted) null else 3, nextKey)
+    private fun verifyRefreshIsTerminal(counted: Boolean) =
+        testScope.runTest {
+            val dataSource = ListDataSource(list = listOf(0, 1, 2), counted = counted)
+            dataSource
+                .load(
+                    DataSource.Params(
+                        type = LoadType.REFRESH,
+                        key = 0,
+                        initialLoadSize = 3,
+                        placeholdersEnabled = false,
+                        pageSize = 1
+                    )
+                )
+                .apply {
+                    assertEquals(listOf(0, 1, 2), data)
+                    // prepends always return prevKey = null if they return the first item
+                    assertEquals(null, prevKey)
+                    // appends only return nextKey if they return the last item, and are counted
+                    assertEquals(if (counted) null else 3, nextKey)
+                }
+
+            dataSource
+                .load(
+                    DataSource.Params(
+                        type = LoadType.PREPEND,
+                        key = 1,
+                        initialLoadSize = 3,
+                        placeholdersEnabled = false,
+                        pageSize = 1
+                    )
+                )
+                .apply {
+                    // prepends should return prevKey = null if they return the first item
+                    assertEquals(listOf(0), data)
+                    assertEquals(null, prevKey)
+                    assertEquals(1, nextKey)
+                }
         }
 
-        dataSource.load(
-            DataSource.Params(
-                type = LoadType.PREPEND,
-                key = 1,
-                initialLoadSize = 3,
-                placeholdersEnabled = false,
-                pageSize = 1
-            )
-        ).apply {
-            // prepends should return prevKey = null if they return the first item
-            assertEquals(listOf(0), data)
-            assertEquals(null, prevKey)
-            assertEquals(1, nextKey)
-        }
-    }
+    @Test fun terminalResultCounted() = verifyRefreshIsTerminal(counted = true)
 
-    @Test
-    fun terminalResultCounted() = verifyRefreshIsTerminal(counted = true)
-
-    @Test
-    fun terminalResultUncounted() = verifyRefreshIsTerminal(counted = false)
+    @Test fun terminalResultUncounted() = verifyRefreshIsTerminal(counted = false)
 }
diff --git a/paging/paging-common/src/nativeMain/kotlin/androidx/paging/PagingLogger.native.kt b/paging/paging-common/src/nativeMain/kotlin/androidx/paging/PagingLogger.native.kt
index c00cbbf..15b4880 100644
--- a/paging/paging-common/src/nativeMain/kotlin/androidx/paging/PagingLogger.native.kt
+++ b/paging/paging-common/src/nativeMain/kotlin/androidx/paging/PagingLogger.native.kt
@@ -23,5 +23,6 @@
     public actual fun isLoggable(level: Int): Boolean {
         return false
     }
-    public actual fun log(level: Int, message: String, tr: Throwable?) { }
+
+    public actual fun log(level: Int, message: String, tr: Throwable?) {}
 }
diff --git a/paging/paging-common/src/nativeMain/kotlin/androidx/paging/internal/Atomics.native.kt b/paging/paging-common/src/nativeMain/kotlin/androidx/paging/internal/Atomics.native.kt
index 35ad2c5..8f7329a 100644
--- a/paging/paging-common/src/nativeMain/kotlin/androidx/paging/internal/Atomics.native.kt
+++ b/paging/paging-common/src/nativeMain/kotlin/androidx/paging/internal/Atomics.native.kt
@@ -37,9 +37,8 @@
 import platform.posix.pthread_mutexattr_t
 
 /**
- * Wrapper for platform.posix.PTHREAD_MUTEX_RECURSIVE which
- * is represented as kotlin.Int on darwin platforms and kotlin.UInt on linuxX64
- * See: // https://youtrack.jetbrains.com/issue/KT-41509
+ * Wrapper for platform.posix.PTHREAD_MUTEX_RECURSIVE which is represented as kotlin.Int on darwin
+ * platforms and kotlin.UInt on linuxX64 See: // https://youtrack.jetbrains.com/issue/KT-41509
  */
 internal expect val PTHREAD_MUTEX_RECURSIVE: Int
 
@@ -116,19 +115,22 @@
 internal actual class CopyOnWriteArrayList<T> : Iterable<T> {
     private var data: List<T> = emptyList()
     private val lock = ReentrantLock()
+
     actual override fun iterator(): Iterator<T> {
         return data.iterator()
     }
 
-    actual fun add(value: T) = lock.withLock {
-        data = data + value
-        true
-    }
+    actual fun add(value: T) =
+        lock.withLock {
+            data = data + value
+            true
+        }
 
-    actual fun remove(value: T): Boolean = lock.withLock {
-        val newList = data.toMutableList()
-        val result = newList.remove(value)
-        data = newList
-        result
-    }
+    actual fun remove(value: T): Boolean =
+        lock.withLock {
+            val newList = data.toMutableList()
+            val result = newList.remove(value)
+            data = newList
+            result
+        }
 }
diff --git a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingDemos.kt b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingDemos.kt
index 34a4b73..e8a40f4 100644
--- a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingDemos.kt
+++ b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingDemos.kt
@@ -21,10 +21,11 @@
 import androidx.paging.compose.demos.room.PagingRoomDemo
 import androidx.paging.compose.samples.PagingBackendSample
 
-val PagingDemos = DemoCategory(
-    "Paging",
-    listOf(
-        ComposableDemo("Paging Backend Demo") { PagingBackendSample() },
-        ComposableDemo("Paging Room Demo") { PagingRoomDemo() }
+val PagingDemos =
+    DemoCategory(
+        "Paging",
+        listOf(
+            ComposableDemo("Paging Backend Demo") { PagingBackendSample() },
+            ComposableDemo("Paging Room Demo") { PagingRoomDemo() }
+        )
     )
-)
diff --git a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingFoundationDemos.kt b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingFoundationDemos.kt
index 1e3b9af..2904cf5 100644
--- a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingFoundationDemos.kt
+++ b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/PagingFoundationDemos.kt
@@ -23,12 +23,13 @@
 import androidx.paging.compose.samples.PagingWithLazyList
 import androidx.paging.compose.samples.PagingWithVerticalPager
 
-val PagingFoundationDemos = DemoCategory(
-    "Paging",
-    listOf(
-        ComposableDemo("Paging with HorizontalPager") { PagingWithHorizontalPager() },
-        ComposableDemo("Paging with VerticalPager") { PagingWithVerticalPager() },
-        ComposableDemo("Paging with LazyGrid") { PagingWithLazyGrid() },
-        ComposableDemo("Paging with LazyColumn") { PagingWithLazyList() },
+val PagingFoundationDemos =
+    DemoCategory(
+        "Paging",
+        listOf(
+            ComposableDemo("Paging with HorizontalPager") { PagingWithHorizontalPager() },
+            ComposableDemo("Paging with VerticalPager") { PagingWithVerticalPager() },
+            ComposableDemo("Paging with LazyGrid") { PagingWithLazyGrid() },
+            ComposableDemo("Paging with LazyColumn") { PagingWithLazyList() },
+        )
     )
-)
diff --git a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/AppDatabase.kt b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/AppDatabase.kt
index bdd74bf..adc0de7 100644
--- a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/AppDatabase.kt
+++ b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/AppDatabase.kt
@@ -27,18 +27,20 @@
     abstract fun userDao(): UserDao
 
     companion object {
-        @Volatile
-        private var Instance: AppDatabase? = null
+        @Volatile private var Instance: AppDatabase? = null
 
         fun getInstance(context: Context): AppDatabase {
             if (Instance != null) {
                 return Instance!!
             }
             return Room.databaseBuilder(
-                context.applicationContext,
-                AppDatabase::class.java,
-                "app_database"
-            ).fallbackToDestructiveMigration(true).build().also { Instance = it }
+                    context.applicationContext,
+                    AppDatabase::class.java,
+                    "app_database"
+                )
+                .fallbackToDestructiveMigration(true)
+                .build()
+                .also { Instance = it }
         }
     }
 }
diff --git a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/PagingRoomSample.kt b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/PagingRoomSample.kt
index 133aa41..8f2b8fa 100644
--- a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/PagingRoomSample.kt
+++ b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/PagingRoomSample.kt
@@ -47,13 +47,7 @@
 
     val pageSize = 15
     val pager = remember {
-        Pager(
-            PagingConfig(
-                pageSize = pageSize,
-                enablePlaceholders = true,
-                maxSize = 200
-            )
-        ) {
+        Pager(PagingConfig(pageSize = pageSize, enablePlaceholders = true, maxSize = 200)) {
             dao.allUsers()
         }
     }
@@ -70,13 +64,7 @@
             Text("Add random user")
         }
 
-        Button(
-            onClick = {
-                scope.launch(Dispatchers.IO) {
-                    dao.clearAll()
-                }
-            }
-        ) {
+        Button(onClick = { scope.launch(Dispatchers.IO) { dao.clearAll() } }) {
             Text("Clear all users")
         }
 
@@ -99,10 +87,7 @@
                     val randomUser = dao.getRandomUser()
                     if (randomUser != null) {
                         val newName = Names[Random.nextInt(Names.size)]
-                        val updatedUser = User(
-                            randomUser.id,
-                            newName
-                        )
+                        val updatedUser = User(randomUser.id, newName)
                         dao.update(updatedUser)
                     }
                 }
@@ -129,18 +114,19 @@
     }
 }
 
-val Names = listOf(
-    "John",
-    "Jack",
-    "Ben",
-    "Sally",
-    "Tom",
-    "Jinny",
-    "Mark",
-    "Betty",
-    "Liam",
-    "Noah",
-    "Olivia",
-    "Emma",
-    "Ava"
-)
+val Names =
+    listOf(
+        "John",
+        "Jack",
+        "Ben",
+        "Sally",
+        "Tom",
+        "Jinny",
+        "Mark",
+        "Betty",
+        "Liam",
+        "Noah",
+        "Olivia",
+        "Emma",
+        "Ava"
+    )
diff --git a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/User.kt b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/User.kt
index cba31f6..af21392 100644
--- a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/User.kt
+++ b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/User.kt
@@ -20,8 +20,4 @@
 import androidx.room.PrimaryKey
 
 @Entity(tableName = "users")
-data class User(
-    @PrimaryKey(autoGenerate = true)
-    val id: Int,
-    val name: String
-)
+data class User(@PrimaryKey(autoGenerate = true) val id: Int, val name: String)
diff --git a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/UserDao.kt b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/UserDao.kt
index 5e46a88..2538d4c 100644
--- a/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/UserDao.kt
+++ b/paging/paging-compose/integration-tests/paging-demos/src/main/java/androidx/paging/compose/demos/room/UserDao.kt
@@ -29,18 +29,13 @@
     @Query("SELECT * FROM Users ORDER BY name COLLATE NOCASE ASC")
     fun allUsers(): PagingSource<Int, User>
 
-    @Insert
-    fun insert(user: User)
+    @Insert fun insert(user: User)
 
-    @Delete
-    fun delete(user: User)
+    @Delete fun delete(user: User)
 
-    @Update
-    fun update(user: User)
+    @Update fun update(user: User)
 
-    @Query("DELETE FROM users")
-    fun clearAll()
+    @Query("DELETE FROM users") fun clearAll()
 
-    @Query("SELECT * FROM users ORDER BY RANDOM() LIMIT 1")
-    fun getRandomUser(): User?
+    @Query("SELECT * FROM users ORDER BY RANDOM() LIMIT 1") fun getRandomUser(): User?
 }
diff --git a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingFoundationSample.kt b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingFoundationSample.kt
index 407bb2e..8c94954 100644
--- a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingFoundationSample.kt
+++ b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingFoundationSample.kt
@@ -44,15 +44,15 @@
 import androidx.paging.compose.itemContentType
 import androidx.paging.compose.itemKey
 
-private val db: TestBackend = TestBackend(
-    loadDelay = 0,
-    backendDataList = (0..500).toList().map { "$it" }
-)
+private val db: TestBackend =
+    TestBackend(loadDelay = 0, backendDataList = (0..500).toList().map { "$it" })
 
-private val pager = Pager(
-    config = PagingConfig(pageSize = 5, initialLoadSize = 15, enablePlaceholders = true),
-    pagingSourceFactory = { db.getAllData() }
-).flow
+private val pager =
+    Pager(
+            config = PagingConfig(pageSize = 5, initialLoadSize = 15, enablePlaceholders = true),
+            pagingSourceFactory = { db.getAllData() }
+        )
+        .flow
 
 @OptIn(ExperimentalFoundationApi::class)
 @Sampled
@@ -118,10 +118,7 @@
             contentType = "My Header",
         ) {
             Box(
-                modifier = Modifier
-                    .padding(bottom = 10.dp)
-                    .background(Color.Red)
-                    .fillMaxWidth(),
+                modifier = Modifier.padding(bottom = 10.dp).background(Color.Red).fillMaxWidth(),
                 contentAlignment = Alignment.Center
             ) {
                 Text(text = "Header", fontSize = 32.sp)
@@ -141,11 +138,7 @@
 @Composable
 private fun PagingItem(item: String?) {
     Box(
-        modifier = Modifier
-            .padding(10.dp)
-            .background(Color.Blue)
-            .fillMaxWidth()
-            .aspectRatio(1f),
+        modifier = Modifier.padding(10.dp).background(Color.Blue).fillMaxWidth().aspectRatio(1f),
         contentAlignment = Alignment.Center
     ) {
         if (item != null) {
diff --git a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingPreviewSample.kt b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingPreviewSample.kt
index 1c6cb45..d3acce3 100644
--- a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingPreviewSample.kt
+++ b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingPreviewSample.kt
@@ -38,16 +38,14 @@
     /**
      * The composable that displays data from LazyPagingItems.
      *
-     * This composable is inlined only for the purposes of this sample. In production code,
-     * this function should be its own top-level function.
+     * This composable is inlined only for the purposes of this sample. In production code, this
+     * function should be its own top-level function.
      */
     @Composable
     fun DisplayPaging(flow: Flow<PagingData<String>>) {
         // Flow of real data i.e. flow from a ViewModel, or flow of fake data i.e. from a Preview.
         val lazyPagingItems = flow.collectAsLazyPagingItems()
-        LazyColumn(modifier = Modifier
-            .fillMaxSize()
-            .background(Color.Red)) {
+        LazyColumn(modifier = Modifier.fillMaxSize().background(Color.Red)) {
             items(count = lazyPagingItems.itemCount) { index ->
                 val item = lazyPagingItems[index]
                 Text(text = "$item", fontSize = 35.sp, color = Color.Black)
diff --git a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingSample.kt b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingSample.kt
index 596cade..06d117c 100644
--- a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingSample.kt
+++ b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/PagingSample.kt
@@ -49,7 +49,9 @@
                 enablePlaceholders = true,
                 maxSize = 200
             )
-        ) { myBackend.getAllData() }
+        ) {
+            myBackend.getAllData()
+        }
     }
 
     val lazyPagingItems = pager.flow.collectAsLazyPagingItems()
@@ -59,8 +61,8 @@
             item {
                 Text(
                     text = "Waiting for items to load from the backend",
-                    modifier = Modifier.fillMaxWidth()
-                        .wrapContentWidth(Alignment.CenterHorizontally)
+                    modifier =
+                        Modifier.fillMaxWidth().wrapContentWidth(Alignment.CenterHorizontally)
                 )
             }
         }
@@ -73,8 +75,8 @@
         if (lazyPagingItems.loadState.append == LoadState.Loading) {
             item {
                 CircularProgressIndicator(
-                    modifier = Modifier.fillMaxWidth()
-                        .wrapContentWidth(Alignment.CenterHorizontally)
+                    modifier =
+                        Modifier.fillMaxWidth().wrapContentWidth(Alignment.CenterHorizontally)
                 )
             }
         }
@@ -85,10 +87,7 @@
 fun ItemsDemo(flow: Flow<PagingData<String>>) {
     val lazyPagingItems = flow.collectAsLazyPagingItems()
     LazyColumn {
-        items(
-            count = lazyPagingItems.itemCount,
-            key = lazyPagingItems.itemKey()
-        ) { index ->
+        items(count = lazyPagingItems.itemCount, key = lazyPagingItems.itemKey()) { index ->
             val item = lazyPagingItems[index]
             Text("Item is $item")
         }
diff --git a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/SampleUtils.kt b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/SampleUtils.kt
index d13cc3e..1a2ad81 100644
--- a/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/SampleUtils.kt
+++ b/paging/paging-compose/samples/src/main/java/androidx/paging/compose/samples/SampleUtils.kt
@@ -27,13 +27,9 @@
 ) {
     val DataBatchSize = 5
 
-    class DesiredLoadResultPageResponse(
-        val data: List<String>
-    )
+    class DesiredLoadResultPageResponse(val data: List<String>)
 
-    /**
-     * Returns [DataBatchSize] items for a key
-     */
+    /** Returns [DataBatchSize] items for a key */
     fun searchItemsByKey(key: Int): DesiredLoadResultPageResponse {
         val maxKey = ceil(backendDataList.size.toFloat() / DataBatchSize).toInt()
 
@@ -72,11 +68,7 @@
         // data, we return `null` to signify no more pages should be loaded
         val nextKey = if (response.data.isNotEmpty()) pageNumber + 1 else null
 
-        return LoadResult.Page(
-            data = response.data,
-            prevKey = prevKey,
-            nextKey = nextKey
-        )
+        return LoadResult.Page(data = response.data, prevKey = prevKey, nextKey = nextKey)
     }
 
     override fun getRefreshKey(state: PagingState<Int, String>): Int? {
diff --git a/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsPreviewTest.kt b/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsPreviewTest.kt
index b6c324ce..534519f 100644
--- a/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsPreviewTest.kt
+++ b/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsPreviewTest.kt
@@ -39,27 +39,20 @@
 
 class LazyPagingItemsPreviewTest {
 
-    @get:Rule
-    val composeTestRule = createAndroidComposeRule<PreviewActivity>()
+    @get:Rule val composeTestRule = createAndroidComposeRule<PreviewActivity>()
 
     @Test
     fun pagingPreviewTest() {
-        composeTestRule.setContent {
-            PagingPreview()
-        }
+        composeTestRule.setContent { PagingPreview() }
         for (i in 0..9) {
-            composeTestRule.onNodeWithTag("$i")
-                .assertIsDisplayed()
+            composeTestRule.onNodeWithTag("$i").assertIsDisplayed()
         }
     }
 
     @Test
     fun emptyPreview() {
-        composeTestRule.setContent {
-            EmptyPreview()
-        }
-        composeTestRule.onNodeWithTag("0")
-            .assertDoesNotExist()
+        composeTestRule.setContent { EmptyPreview() }
+        composeTestRule.onNodeWithTag("0").assertDoesNotExist()
     }
 }
 
diff --git a/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsTest.kt b/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsTest.kt
index 28b1f8f..4055fc4 100644
--- a/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsTest.kt
+++ b/paging/paging-compose/src/androidInstrumentedTest/kotlin/androidx/paging/compose/LazyPagingItemsTest.kt
@@ -69,21 +69,21 @@
 @LargeTest
 @RunWith(AndroidJUnit4::class)
 class LazyPagingItemsTest {
-    @get:Rule
-    val rule = createComposeRule()
+    @get:Rule val rule = createComposeRule()
 
     val items = (1..10).toList().map { it }
     private val itemsSizePx = 30f
     private val itemsSizeDp = with(rule.density) { itemsSizePx.toDp() }
 
     private fun createPager(
-        config: PagingConfig = PagingConfig(
-            pageSize = 1,
-            enablePlaceholders = false,
-            maxSize = 200,
-            initialLoadSize = 3,
-            prefetchDistance = 1,
-        ),
+        config: PagingConfig =
+            PagingConfig(
+                pageSize = 1,
+                enablePlaceholders = false,
+                maxSize = 200,
+                initialLoadSize = 3,
+                prefetchDistance = 1,
+            ),
         loadDelay: Long = 0,
         pagingSourceFactory: () -> PagingSource<Int, Int> = {
             TestPagingSource(items = items, loadDelay = loadDelay)
@@ -93,17 +93,19 @@
     }
 
     private fun createPagerWithPlaceholders(
-        config: PagingConfig = PagingConfig(
-            pageSize = 1,
-            enablePlaceholders = true,
-            maxSize = 200,
-            initialLoadSize = 3,
-            prefetchDistance = 0,
+        config: PagingConfig =
+            PagingConfig(
+                pageSize = 1,
+                enablePlaceholders = true,
+                maxSize = 200,
+                initialLoadSize = 3,
+                prefetchDistance = 0,
+            )
+    ) =
+        Pager(
+            config = config,
+            pagingSourceFactory = { TestPagingSource(items = items, loadDelay = 0) }
         )
-    ) = Pager(
-        config = config,
-        pagingSourceFactory = { TestPagingSource(items = items, loadDelay = 0) }
-    )
 
     @Test
     fun lazyPagingInitialLoadState() {
@@ -116,17 +118,19 @@
 
         rule.waitForIdle()
 
-        val expected = CombinedLoadStates(
-            refresh = LoadState.Loading,
-            prepend = LoadState.NotLoading(false),
-            append = LoadState.NotLoading(false),
-            source = LoadStates(
-                LoadState.Loading,
-                LoadState.NotLoading(false),
-                LoadState.NotLoading(false)
-            ),
-            mediator = null
-        )
+        val expected =
+            CombinedLoadStates(
+                refresh = LoadState.Loading,
+                prepend = LoadState.NotLoading(false),
+                append = LoadState.NotLoading(false),
+                source =
+                    LoadStates(
+                        LoadState.Loading,
+                        LoadState.NotLoading(false),
+                        LoadState.NotLoading(false)
+                    ),
+                mediator = null
+            )
         assertThat(loadStates).isNotEmpty()
         assertThat(loadStates.first()).isEqualTo(expected)
     }
@@ -162,17 +166,19 @@
         }
 
         assertThat(loadStates).isNotEmpty()
-        val expected = CombinedLoadStates(
-            refresh = LoadState.Loading,
-            prepend = LoadState.NotLoading(false),
-            append = LoadState.NotLoading(false),
-            source = LoadStates(
-                LoadState.Loading,
-                LoadState.NotLoading(false),
-                LoadState.NotLoading(false)
-            ),
-            mediator = null
-        )
+        val expected =
+            CombinedLoadStates(
+                refresh = LoadState.Loading,
+                prepend = LoadState.NotLoading(false),
+                append = LoadState.NotLoading(false),
+                source =
+                    LoadStates(
+                        LoadState.Loading,
+                        LoadState.NotLoading(false),
+                        LoadState.NotLoading(false)
+                    ),
+                mediator = null
+            )
         assertThat(loadStates.first()).isEqualTo(expected)
     }
 
@@ -191,17 +197,13 @@
 
         rule.waitForIdle()
 
-        rule.onNodeWithTag("1")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("1").assertIsDisplayed()
 
-        rule.onNodeWithTag("2")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("2").assertIsDisplayed()
 
-        rule.onNodeWithTag("3")
-            .assertDoesNotExist()
+        rule.onNodeWithTag("3").assertDoesNotExist()
 
-        rule.onNodeWithTag("4")
-            .assertDoesNotExist()
+        rule.onNodeWithTag("4").assertDoesNotExist()
     }
 
     @Test
@@ -219,17 +221,13 @@
 
         rule.waitForIdle()
 
-        rule.onNodeWithTag("1")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("1").assertIsDisplayed()
 
-        rule.onNodeWithTag("2")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("2").assertIsDisplayed()
 
-        rule.onNodeWithTag("3")
-            .assertDoesNotExist()
+        rule.onNodeWithTag("3").assertDoesNotExist()
 
-        rule.onNodeWithTag("4")
-            .assertDoesNotExist()
+        rule.onNodeWithTag("4").assertDoesNotExist()
     }
 
     @Test
@@ -247,17 +245,14 @@
             }
 
             LazyColumn(Modifier.height(itemsSizeDp * 2.5f), state) {
-                item(contentType = "not-to-reuse--1") {
-                    Content("-1")
-                }
-                item(contentType = "reuse") {
-                    Content("0")
-                }
+                item(contentType = "not-to-reuse--1") { Content("-1") }
+                item(contentType = "reuse") { Content("0") }
                 items(
                     count = lazyPagingItems.itemCount,
-                    contentType = lazyPagingItems.itemContentType(
-                        contentType = { if (it == 8) "reuse" else "not-to-reuse-$it" }
-                    )
+                    contentType =
+                        lazyPagingItems.itemContentType(
+                            contentType = { if (it == 8) "reuse" else "not-to-reuse-$it" }
+                        )
                 ) { index ->
                     val item = lazyPagingItems[index]
                     Content("$item")
@@ -272,10 +267,8 @@
             }
         }
 
-        rule.onNodeWithTag("-1")
-            .assertIsDeactivated()
-        rule.onNodeWithTag("0")
-            .assertIsDeactivated()
+        rule.onNodeWithTag("-1").assertIsDeactivated()
+        rule.onNodeWithTag("0").assertIsDeactivated()
 
         rule.runOnIdle {
             runBlocking {
@@ -284,17 +277,12 @@
             }
         }
 
-        rule.onNodeWithTag("-1")
-            .assertIsDeactivated()
+        rule.onNodeWithTag("-1").assertIsDeactivated()
         // node reused
-        rule.onNodeWithTag("0")
-            .assertDoesNotExist()
-        rule.onNodeWithTag("7")
-            .assertIsDisplayed()
-        rule.onNodeWithTag("8")
-            .assertIsDisplayed()
-        rule.onNodeWithTag("9")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("0").assertDoesNotExist()
+        rule.onNodeWithTag("7").assertIsDisplayed()
+        rule.onNodeWithTag("8").assertIsDisplayed()
+        rule.onNodeWithTag("9").assertIsDisplayed()
     }
 
     @Test
@@ -315,19 +303,14 @@
             }
 
             LazyColumn(Modifier.height(itemsSizeDp * 2.5f), state) {
-                item(contentType = "not-to-reuse--1") {
-                    Content("-1")
-                }
+                item(contentType = "not-to-reuse--1") { Content("-1") }
                 // to be reused later by placeholder item
-                item(contentType = PagingPlaceholderContentType) {
-                    Content("0")
-                }
+                item(contentType = PagingPlaceholderContentType) { Content("0") }
                 items(
                     count = lazyPagingItems.itemCount,
                     // item 7 would be null, which should default to PagingPlaceholderContentType
-                    contentType = lazyPagingItems.itemContentType(
-                        contentType = { "not-to-reuse-$it" }
-                    )
+                    contentType =
+                        lazyPagingItems.itemContentType(contentType = { "not-to-reuse-$it" })
                 ) { index ->
                     val item = lazyPagingItems[index]
                     Content("$item")
@@ -335,9 +318,7 @@
             }
         }
 
-        rule.waitUntil {
-            loadedItem6
-        }
+        rule.waitUntil { loadedItem6 }
 
         rule.runOnIdle {
             runBlocking {
@@ -346,10 +327,8 @@
             }
         }
 
-        rule.onNodeWithTag("-1")
-            .assertIsDeactivated()
-        rule.onNodeWithTag("0")
-            .assertIsDeactivated()
+        rule.onNodeWithTag("-1").assertIsDeactivated()
+        rule.onNodeWithTag("0").assertIsDeactivated()
 
         rule.runOnIdle {
             runBlocking {
@@ -358,11 +337,9 @@
             }
         }
 
-        rule.onNodeWithTag("-1")
-            .assertIsDeactivated()
+        rule.onNodeWithTag("-1").assertIsDeactivated()
         // node reused
-        rule.onNodeWithTag("0")
-            .assertDoesNotExist()
+        rule.onNodeWithTag("0").assertDoesNotExist()
     }
 
     @Test
@@ -379,13 +356,9 @@
             }
 
             LazyColumn(Modifier.height(itemsSizeDp * 2.5f), state) {
-                item(contentType = "not-to-reuse--1") {
-                    Content("-1")
-                }
+                item(contentType = "not-to-reuse--1") { Content("-1") }
                 // to be reused later by real items
-                item(contentType = null) {
-                    Content("0")
-                }
+                item(contentType = null) { Content("0") }
                 items(
                     count = lazyPagingItems.itemCount,
                     // should default to null
@@ -404,10 +377,8 @@
             }
         }
 
-        rule.onNodeWithTag("-1")
-            .assertIsDeactivated()
-        rule.onNodeWithTag("0")
-            .assertIsDeactivated()
+        rule.onNodeWithTag("-1").assertIsDeactivated()
+        rule.onNodeWithTag("0").assertIsDeactivated()
 
         rule.runOnIdle {
             runBlocking {
@@ -416,14 +387,10 @@
             }
         }
 
-        rule.onNodeWithTag("-1")
-            .assertIsDeactivated()
+        rule.onNodeWithTag("-1").assertIsDeactivated()
         // node reused
-        rule.onNodeWithTag("0")
-            .assertDoesNotExist()
-        rule.onNodeWithTag("4")
-            .assertExists()
-            .assertIsDisplayed()
+        rule.onNodeWithTag("0").assertDoesNotExist()
+        rule.onNodeWithTag("4").assertExists().assertIsDisplayed()
     }
 
     @Test
@@ -440,9 +407,7 @@
             composedCount = lazyPagingItems.itemCount
         }
 
-        rule.waitUntil {
-            composedCount == items.size
-        }
+        rule.waitUntil { composedCount == items.size }
 
         assertThat(lazyPagingItems.itemSnapshotList).isEqualTo(items)
     }
@@ -462,9 +427,7 @@
             composedCount = lazyPagingItems.itemCount
         }
 
-        rule.waitUntil {
-            composedCount == 6
-        }
+        rule.waitUntil { composedCount == 6 }
 
         rule.runOnIdle {
             assertThat(lazyPagingItems.itemCount).isEqualTo(6)
@@ -493,9 +456,7 @@
         }
 
         lateinit var lazyPagingItems: LazyPagingItems<Int>
-        rule.setContent {
-            lazyPagingItems = pager.flow.collectAsLazyPagingItems()
-        }
+        rule.setContent { lazyPagingItems = pager.flow.collectAsLazyPagingItems() }
 
         assertThat(lazyPagingItems.itemSnapshotList).isEmpty()
 
@@ -521,9 +482,7 @@
         }
 
         lateinit var lazyPagingItems: LazyPagingItems<Int>
-        rule.setContent {
-            lazyPagingItems = pager.flow.collectAsLazyPagingItems()
-        }
+        rule.setContent { lazyPagingItems = pager.flow.collectAsLazyPagingItems() }
 
         assertThat(lazyPagingItems.itemSnapshotList).isEmpty()
 
@@ -537,9 +496,7 @@
     @Test
     fun itemCountIsObservable() {
         var items = listOf(0, 1)
-        val pager = createPager {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager = createPager { TestPagingSource(items = items, loadDelay = 0) }
 
         var composedCount = 0
         lateinit var lazyPagingItems: LazyPagingItems<Int>
@@ -548,35 +505,27 @@
             composedCount = lazyPagingItems.itemCount
         }
 
-        rule.waitUntil {
-            composedCount == 2
-        }
+        rule.waitUntil { composedCount == 2 }
 
         rule.runOnIdle {
             items = listOf(0, 1, 2)
             lazyPagingItems.refresh()
         }
 
-        rule.waitUntil {
-            composedCount == 3
-        }
+        rule.waitUntil { composedCount == 3 }
 
         rule.runOnIdle {
             items = listOf(0)
             lazyPagingItems.refresh()
         }
 
-        rule.waitUntil {
-            composedCount == 1
-        }
+        rule.waitUntil { composedCount == 1 }
     }
 
     @Test
     fun worksWhenUsedWithoutExtension() {
         var items = listOf(10, 20)
-        val pager = createPager {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager = createPager { TestPagingSource(items = items, loadDelay = 0) }
 
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         rule.setContent {
@@ -589,44 +538,39 @@
             }
         }
 
-        rule.onNodeWithTag("10")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("10").assertIsDisplayed()
 
-        rule.onNodeWithTag("20")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("20").assertIsDisplayed()
 
         rule.runOnIdle {
             items = listOf(30, 20, 40)
             lazyPagingItems.refresh()
         }
 
-        rule.onNodeWithTag("30")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("30").assertIsDisplayed()
 
-        rule.onNodeWithTag("20")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("20").assertIsDisplayed()
 
-        rule.onNodeWithTag("40")
-            .assertIsDisplayed()
+        rule.onNodeWithTag("40").assertIsDisplayed()
 
-        rule.onNodeWithTag("10")
-            .assertDoesNotExist()
+        rule.onNodeWithTag("10").assertDoesNotExist()
     }
 
     @Test
     fun updatingItem() {
         var items = listOf(1, 2, 3)
-        val pager = createPager(
-            PagingConfig(
-                pageSize = 3,
-                enablePlaceholders = false,
-                maxSize = 200,
-                initialLoadSize = 3,
-                prefetchDistance = 3,
-            )
-        ) {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager =
+            createPager(
+                PagingConfig(
+                    pageSize = 3,
+                    enablePlaceholders = false,
+                    maxSize = 200,
+                    initialLoadSize = 3,
+                    prefetchDistance = 3,
+                )
+            ) {
+                TestPagingSource(items = items, loadDelay = 0)
+            }
 
         val itemSize = with(rule.density) { 100.dp.roundToPx().toDp() }
 
@@ -646,33 +590,30 @@
             lazyPagingItems.refresh()
         }
 
-        rule.onNodeWithTag("1")
-            .assertTopPositionInRootIsEqualTo(0.dp)
+        rule.onNodeWithTag("1").assertTopPositionInRootIsEqualTo(0.dp)
 
-        rule.onNodeWithTag("4")
-            .assertTopPositionInRootIsEqualTo(itemSize)
+        rule.onNodeWithTag("4").assertTopPositionInRootIsEqualTo(itemSize)
 
-        rule.onNodeWithTag("3")
-            .assertTopPositionInRootIsEqualTo(itemSize * 2)
+        rule.onNodeWithTag("3").assertTopPositionInRootIsEqualTo(itemSize * 2)
 
-        rule.onNodeWithTag("2")
-            .assertDoesNotExist()
+        rule.onNodeWithTag("2").assertDoesNotExist()
     }
 
     @Test
     fun addingNewItem() {
         var items = listOf(1, 2)
-        val pager = createPager(
-            PagingConfig(
-                pageSize = 3,
-                enablePlaceholders = false,
-                maxSize = 200,
-                initialLoadSize = 3,
-                prefetchDistance = 3,
-            )
-        ) {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager =
+            createPager(
+                PagingConfig(
+                    pageSize = 3,
+                    enablePlaceholders = false,
+                    maxSize = 200,
+                    initialLoadSize = 3,
+                    prefetchDistance = 3,
+                )
+            ) {
+                TestPagingSource(items = items, loadDelay = 0)
+            }
 
         val itemSize = with(rule.density) { 100.dp.roundToPx().toDp() }
 
@@ -692,30 +633,28 @@
             lazyPagingItems.refresh()
         }
 
-        rule.onNodeWithTag("1")
-            .assertTopPositionInRootIsEqualTo(0.dp)
+        rule.onNodeWithTag("1").assertTopPositionInRootIsEqualTo(0.dp)
 
-        rule.onNodeWithTag("2")
-            .assertTopPositionInRootIsEqualTo(itemSize)
+        rule.onNodeWithTag("2").assertTopPositionInRootIsEqualTo(itemSize)
 
-        rule.onNodeWithTag("3")
-            .assertTopPositionInRootIsEqualTo(itemSize * 2)
+        rule.onNodeWithTag("3").assertTopPositionInRootIsEqualTo(itemSize * 2)
     }
 
     @Test
     fun removingItem() {
         var items = listOf(1, 2, 3)
-        val pager = createPager(
-            PagingConfig(
-                pageSize = 3,
-                enablePlaceholders = false,
-                maxSize = 200,
-                initialLoadSize = 3,
-                prefetchDistance = 3,
-            )
-        ) {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager =
+            createPager(
+                PagingConfig(
+                    pageSize = 3,
+                    enablePlaceholders = false,
+                    maxSize = 200,
+                    initialLoadSize = 3,
+                    prefetchDistance = 3,
+                )
+            ) {
+                TestPagingSource(items = items, loadDelay = 0)
+            }
 
         val itemSize = with(rule.density) { 100.dp.roundToPx().toDp() }
 
@@ -723,10 +662,8 @@
         rule.setContent {
             lazyPagingItems = pager.flow.collectAsLazyPagingItems()
             LazyColumn(Modifier.height(itemSize * 3)) {
-                items(
-                    count = lazyPagingItems.itemCount,
-                    key = lazyPagingItems.itemKey { it }
-                ) { index ->
+                items(count = lazyPagingItems.itemCount, key = lazyPagingItems.itemKey { it }) {
+                    index ->
                     val item = lazyPagingItems[index]
                     Spacer(Modifier.height(itemSize).fillParentMaxWidth().testTag("$item"))
                 }
@@ -738,22 +675,17 @@
             lazyPagingItems.refresh()
         }
 
-        rule.onNodeWithTag("2")
-            .assertTopPositionInRootIsEqualTo(0.dp)
+        rule.onNodeWithTag("2").assertTopPositionInRootIsEqualTo(0.dp)
 
-        rule.onNodeWithTag("3")
-            .assertTopPositionInRootIsEqualTo(itemSize)
+        rule.onNodeWithTag("3").assertTopPositionInRootIsEqualTo(itemSize)
 
-        rule.onNodeWithTag("1")
-            .assertIsNotDisplayed()
+        rule.onNodeWithTag("1").assertIsNotDisplayed()
     }
 
     @Test
     fun stateIsMovedWithItemWithCustomKey_items() {
         var items = listOf(1)
-        val pager = createPager {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager = createPager { TestPagingSource(items = items, loadDelay = 0) }
 
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         var counter = 0
@@ -765,9 +697,7 @@
                     key = lazyPagingItems.itemKey { it },
                 ) { index ->
                     val item = lazyPagingItems[index]
-                    BasicText(
-                        "Item=$item. counter=${remember { counter++ }}"
-                    )
+                    BasicText("Item=$item. counter=${remember { counter++ }}")
                 }
             }
         }
@@ -777,45 +707,31 @@
             lazyPagingItems.refresh()
         }
 
-        rule.onNodeWithText("Item=0. counter=1")
-            .assertExists()
+        rule.onNodeWithText("Item=0. counter=1").assertExists()
 
-        rule.onNodeWithText("Item=1. counter=0")
-            .assertExists()
+        rule.onNodeWithText("Item=1. counter=0").assertExists()
     }
 
     @Test
     fun collectOnDefaultThread() {
         val items = mutableListOf(1, 2, 3)
-        val pager = createPager {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager = createPager { TestPagingSource(items = items, loadDelay = 0) }
 
         lateinit var lazyPagingItems: LazyPagingItems<Int>
-        rule.setContent {
-            lazyPagingItems = pager.flow.collectAsLazyPagingItems()
-        }
+        rule.setContent { lazyPagingItems = pager.flow.collectAsLazyPagingItems() }
 
-        rule.waitUntil {
-            lazyPagingItems.itemCount == 3
-        }
-        assertThat(lazyPagingItems.itemSnapshotList).containsExactlyElementsIn(
-            items
-        )
+        rule.waitUntil { lazyPagingItems.itemCount == 3 }
+        assertThat(lazyPagingItems.itemSnapshotList).containsExactlyElementsIn(items)
     }
 
     @Test
     fun collectOnWorkerThread() {
         val items = mutableListOf(1, 2, 3)
-        val pager = createPager {
-            TestPagingSource(items = items, loadDelay = 0)
-        }
+        val pager = createPager { TestPagingSource(items = items, loadDelay = 0) }
 
         val context = StandardTestDispatcher()
         lateinit var lazyPagingItems: LazyPagingItems<Int>
-        rule.setContent {
-            lazyPagingItems = pager.flow.collectAsLazyPagingItems(context)
-        }
+        rule.setContent { lazyPagingItems = pager.flow.collectAsLazyPagingItems(context) }
 
         rule.runOnIdle {
             // collection should not have started yet
@@ -829,12 +745,8 @@
             // continue with pagingDataDiffer collections
             context.scheduler.advanceUntilIdle()
         }
-        rule.waitUntil {
-            lazyPagingItems.itemCount == items.size
-        }
-        assertThat(lazyPagingItems.itemSnapshotList).containsExactlyElementsIn(
-            items
-        )
+        rule.waitUntil { lazyPagingItems.itemCount == items.size }
+        assertThat(lazyPagingItems.itemSnapshotList).containsExactlyElementsIn(items)
     }
 
     @Test
@@ -893,9 +805,7 @@
             }
         }
 
-        rule.runOnIdle {
-            assertThat(lazyPagingItems.itemSnapshotList).isEmpty()
-        }
+        rule.runOnIdle { assertThat(lazyPagingItems.itemSnapshotList).isEmpty() }
 
         // we don't let dispatchers load and directly restore state
         restorationTester.emulateSavedInstanceStateRestore()
@@ -922,9 +832,7 @@
         val flow = MutableStateFlow(PagingData.from(items))
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         val dispatcher = StandardTestDispatcher()
-        rule.setContent {
-            lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher)
-        }
+        rule.setContent { lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher) }
 
         rule.waitForIdle()
 
@@ -939,17 +847,16 @@
 
     @Test
     fun cachedPagingDataFromWithLoadStates() {
-        val flow = MutableStateFlow(
-            PagingData.from(
-                data = items,
-                sourceLoadStates = loadStates(refresh = Loading),
+        val flow =
+            MutableStateFlow(
+                PagingData.from(
+                    data = items,
+                    sourceLoadStates = loadStates(refresh = Loading),
+                )
             )
-        )
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         val dispatcher = StandardTestDispatcher()
-        rule.setContent {
-            lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher)
-        }
+        rule.setContent { lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher) }
 
         rule.waitForIdle()
 
@@ -967,9 +874,7 @@
         val flow = MutableStateFlow(PagingData.from(emptyList<Int>()))
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         val dispatcher = StandardTestDispatcher()
-        rule.setContent {
-            lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher)
-        }
+        rule.setContent { lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher) }
 
         rule.waitForIdle()
 
@@ -984,41 +889,34 @@
 
     @Test
     fun cachedPagingDataFromWithEmptyDataAndLoadStates() {
-        val flow = MutableStateFlow(
-            PagingData.from(
-                emptyList<Int>(),
-                sourceLoadStates = loadStates(
-                    prepend = NotLoading(true),
-                    append = NotLoading(true)
+        val flow =
+            MutableStateFlow(
+                PagingData.from(
+                    emptyList<Int>(),
+                    sourceLoadStates =
+                        loadStates(prepend = NotLoading(true), append = NotLoading(true))
                 )
             )
-        )
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         val restorationTester = StateRestorationTester(rule)
         val dispatcher = StandardTestDispatcher()
-        restorationTester.setContent {
-            lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher)
-        }
+        restorationTester.setContent { lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher) }
 
         rule.waitForIdle()
 
         // assert before load
         assertThat(lazyPagingItems.itemSnapshotList).isEmpty()
-        assertThat(lazyPagingItems.loadState).isEqualTo(
-            localLoadStatesOf(
-                prependLocal = NotLoading(true),
-                appendLocal = NotLoading(true)
+        assertThat(lazyPagingItems.loadState)
+            .isEqualTo(
+                localLoadStatesOf(prependLocal = NotLoading(true), appendLocal = NotLoading(true))
             )
-        )
         dispatcher.scheduler.advanceUntilIdle()
         // assert data is still the same after load
         assertThat(lazyPagingItems.itemSnapshotList).isEmpty()
-        assertThat(lazyPagingItems.loadState).isEqualTo(
-            localLoadStatesOf(
-                prependLocal = NotLoading(true),
-                appendLocal = NotLoading(true)
+        assertThat(lazyPagingItems.loadState)
+            .isEqualTo(
+                localLoadStatesOf(prependLocal = NotLoading(true), appendLocal = NotLoading(true))
             )
-        )
     }
 
     @Test
@@ -1026,9 +924,7 @@
         val flow = MutableStateFlow(PagingData.empty<Int>())
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         val dispatcher = StandardTestDispatcher()
-        rule.setContent {
-            lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher)
-        }
+        rule.setContent { lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher) }
 
         rule.waitForIdle()
 
@@ -1043,45 +939,38 @@
 
     @Test
     fun cachedPagingDataEmptyWithLoadStates() {
-        val flow = MutableStateFlow(
-            PagingData.empty<Int>(
-                sourceLoadStates = loadStates(
-                    prepend = NotLoading(true),
-                    append = NotLoading(true)
+        val flow =
+            MutableStateFlow(
+                PagingData.empty<Int>(
+                    sourceLoadStates =
+                        loadStates(prepend = NotLoading(true), append = NotLoading(true))
                 )
             )
-        )
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         val dispatcher = StandardTestDispatcher()
-        rule.setContent {
-            lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher)
-        }
+        rule.setContent { lazyPagingItems = flow.collectAsLazyPagingItems(dispatcher) }
 
         rule.waitForIdle()
 
         // assert before load
         assertThat(lazyPagingItems.itemSnapshotList).isEmpty()
-        assertThat(lazyPagingItems.loadState).isEqualTo(
-            localLoadStatesOf(
-                prependLocal = NotLoading(true),
-                appendLocal = NotLoading(true)
+        assertThat(lazyPagingItems.loadState)
+            .isEqualTo(
+                localLoadStatesOf(prependLocal = NotLoading(true), appendLocal = NotLoading(true))
             )
-        )
         dispatcher.scheduler.advanceUntilIdle()
         // assert data is still the same after load
         assertThat(lazyPagingItems.itemSnapshotList).isEmpty()
-        assertThat(lazyPagingItems.loadState).isEqualTo(
-            localLoadStatesOf(
-                prependLocal = NotLoading(true),
-                appendLocal = NotLoading(true)
+        assertThat(lazyPagingItems.loadState)
+            .isEqualTo(
+                localLoadStatesOf(prependLocal = NotLoading(true), appendLocal = NotLoading(true))
             )
-        )
     }
 
     @Test
     fun cachedData_withPlaceholders() {
-        val flow = createPagerWithPlaceholders().flow
-            .cachedIn(TestScope(UnconfinedTestDispatcher()))
+        val flow =
+            createPagerWithPlaceholders().flow.cachedIn(TestScope(UnconfinedTestDispatcher()))
         lateinit var lazyPagingItems: LazyPagingItems<Int>
         val restorationTester = StateRestorationTester(rule)
         val dispatcher = StandardTestDispatcher()
@@ -1107,9 +996,8 @@
         // ensure we received the cached data + placeholders
         rule.runOnIdle {
             assertThat(lazyPagingItems.itemCount).isEqualTo(10)
-            assertThat(lazyPagingItems.itemSnapshotList).isEqualTo(
-                listOf(1, 2, 3, 4, 5, 6, null, null, null, null)
-            )
+            assertThat(lazyPagingItems.itemSnapshotList)
+                .isEqualTo(listOf(1, 2, 3, 4, 5, 6, null, null, null, null))
         }
 
         // try to load more data
@@ -1120,9 +1008,8 @@
             loadedMaxItem
         }
         rule.runOnIdle {
-            assertThat(lazyPagingItems.itemSnapshotList).isEqualTo(
-                listOf(1, 2, 3, 4, 5, 6, 7, null, null, null)
-            )
+            assertThat(lazyPagingItems.itemSnapshotList)
+                .isEqualTo(listOf(1, 2, 3, 4, 5, 6, 7, null, null, null))
         }
     }
 
@@ -1149,24 +1036,26 @@
                 lazyPagingItems.loadState.source.append is LoadState.NotLoading
         }
 
-        assertThat(lazyPagingItems.loadState).isEqualTo(
-            localLoadStatesOf(
-                refreshLocal = LoadState.NotLoading(false),
-                prependLocal = LoadState.NotLoading(true)
+        assertThat(lazyPagingItems.loadState)
+            .isEqualTo(
+                localLoadStatesOf(
+                    refreshLocal = LoadState.NotLoading(false),
+                    prependLocal = LoadState.NotLoading(true)
+                )
             )
-        )
 
         // we don't advance load dispatchers after restoration to prevent loads
         restorationTester.emulateSavedInstanceStateRestore()
 
         // ensure we received the cached loadstates
         rule.runOnIdle {
-            assertThat(lazyPagingItems.loadState).isEqualTo(
-                localLoadStatesOf(
-                    refreshLocal = LoadState.NotLoading(false),
-                    prependLocal = LoadState.NotLoading(true)
+            assertThat(lazyPagingItems.loadState)
+                .isEqualTo(
+                    localLoadStatesOf(
+                        refreshLocal = LoadState.NotLoading(false),
+                        prependLocal = LoadState.NotLoading(true)
+                    )
                 )
-            )
         }
     }
 
@@ -1186,12 +1075,8 @@
             }
             LazyColumn(Modifier.height(itemsSizeDp * 2.5f), state) {
                 // Static items are what triggers scroll state to erroneously reset to 0
-                item {
-                    Content("header")
-                }
-                items(
-                    lazyPagingItems.itemCount, lazyPagingItems.itemKey()
-                ) { index ->
+                item { Content("header") }
+                items(lazyPagingItems.itemCount, lazyPagingItems.itemKey()) { index ->
                     val item = lazyPagingItems[index]
                     Content("$item")
                 }
diff --git a/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyFoundationExtensions.kt b/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyFoundationExtensions.kt
index 73d786d..6391558 100644
--- a/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyFoundationExtensions.kt
+++ b/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyFoundationExtensions.kt
@@ -22,21 +22,22 @@
 /**
  * Returns a factory of stable and unique keys representing the item.
  *
- * Keys are generated with the key lambda that is passed in. If null is passed in, keys will
- * default to a placeholder key. If [PagingConfig.enablePlaceholders] is true,
- * LazyPagingItems may return null items. Null items will also automatically default to
- * a placeholder key.
+ * Keys are generated with the key lambda that is passed in. If null is passed in, keys will default
+ * to a placeholder key. If [PagingConfig.enablePlaceholders] is true, LazyPagingItems may return
+ * null items. Null items will also automatically default to a placeholder key.
  *
  * This factory can be applied to Lazy foundations such as [LazyGridScope.items] or Pagers.
  * Examples:
+ *
  * @sample androidx.paging.compose.samples.PagingWithHorizontalPager
+ *
  * @sample androidx.paging.compose.samples.PagingWithLazyGrid
  *
- * @param [key] a factory of stable and unique keys representing the item. Using the same key
- * for multiple items in the list is not allowed. Type of the key should be saveable
- * via Bundle on Android. When you specify the key the scroll position will be maintained
- * based on the key, which means if you add/remove items before the current visible item the
- * item with the given key will be kept as the first visible one.
+ * @param [key] a factory of stable and unique keys representing the item. Using the same key for
+ *   multiple items in the list is not allowed. Type of the key should be saveable via Bundle on
+ *   Android. When you specify the key the scroll position will be maintained based on the key,
+ *   which means if you add/remove items before the current visible item the item with the given key
+ *   will be kept as the first visible one.
  */
 public fun <T : Any> LazyPagingItems<T>.itemKey(
     key: ((item: @JvmSuppressWildcards T) -> Any)? = null
@@ -55,18 +56,20 @@
  * Returns a factory for the content type of the item.
  *
  * ContentTypes are generated with the contentType lambda that is passed in. If null is passed in,
- * contentType of all items will default to `null`.
- * If [PagingConfig.enablePlaceholders] is true, LazyPagingItems may return null items. Null
- * items will automatically default to placeholder contentType.
+ * contentType of all items will default to `null`. If [PagingConfig.enablePlaceholders] is true,
+ * LazyPagingItems may return null items. Null items will automatically default to placeholder
+ * contentType.
  *
  * This factory can be applied to Lazy foundations such as [LazyGridScope.items] or Pagers.
  * Examples:
+ *
  * @sample androidx.paging.compose.samples.PagingWithLazyGrid
+ *
  * @sample androidx.paging.compose.samples.PagingWithLazyList
  *
- * @param [contentType] a factory of the content types for the item. The item compositions of
- * the same type could be reused more efficiently. Note that null is a valid type and items of
- * such type will be considered compatible.
+ * @param [contentType] a factory of the content types for the item. The item compositions of the
+ *   same type could be reused more efficiently. Note that null is a valid type and items of such
+ *   type will be considered compatible.
  */
 public fun <T : Any> LazyPagingItems<T>.itemContentType(
     contentType: ((item: @JvmSuppressWildcards T) -> Any?)? = null
diff --git a/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyPagingItems.kt b/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyPagingItems.kt
index 71928b8..dbcee1e 100644
--- a/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyPagingItems.kt
+++ b/paging/paging-compose/src/commonMain/kotlin/androidx/paging/compose/LazyPagingItems.kt
@@ -42,11 +42,10 @@
 import kotlinx.coroutines.withContext
 
 /**
- * The class responsible for accessing the data from a [Flow] of [PagingData].
- * In order to obtain an instance of [LazyPagingItems] use the [collectAsLazyPagingItems] extension
- * method of [Flow] with [PagingData].
- * This instance can be used for Lazy foundations such as [LazyListScope.items] to display data
- * received from the [Flow] of [PagingData].
+ * The class responsible for accessing the data from a [Flow] of [PagingData]. In order to obtain an
+ * instance of [LazyPagingItems] use the [collectAsLazyPagingItems] extension method of [Flow] with
+ * [PagingData]. This instance can be used for Lazy foundations such as [LazyListScope.items] to
+ * display data received from the [Flow] of [PagingData].
  *
  * Previewing [LazyPagingItems] is supported on a list of mock data. See sample for how to preview
  * mock data.
@@ -55,10 +54,9 @@
  *
  * @param T the type of value used by [PagingData].
  */
-public class LazyPagingItems<T : Any> internal constructor(
-    /**
-     * the [Flow] object which contains a stream of [PagingData] elements.
-     */
+public class LazyPagingItems<T : Any>
+internal constructor(
+    /** the [Flow] object which contains a stream of [PagingData] elements. */
     private val flow: Flow<PagingData<T>>
 ) {
     private val mainDispatcher = AndroidUiDispatcher.Main
@@ -66,36 +64,34 @@
     /**
      * If the [flow] is a SharedFlow, it is expected to be the flow returned by from
      * pager.flow.cachedIn(scope) which could contain a cached PagingData. We pass the cached
-     * PagingData to the presenter so that if the PagingData contains cached data, the presenter
-     * can be initialized with the data prior to collection on pager.
+     * PagingData to the presenter so that if the PagingData contains cached data, the presenter can
+     * be initialized with the data prior to collection on pager.
      */
-    private val pagingDataPresenter = object : PagingDataPresenter<T>(
-        mainContext = mainDispatcher,
-        cachedPagingData =
-            if (flow is SharedFlow<PagingData<T>>) flow.replayCache.firstOrNull() else null
-    ) {
-        override suspend fun presentPagingDataEvent(
-            event: PagingDataEvent<T>,
-        ) {
-            updateItemSnapshotList()
+    private val pagingDataPresenter =
+        object :
+            PagingDataPresenter<T>(
+                mainContext = mainDispatcher,
+                cachedPagingData =
+                    if (flow is SharedFlow<PagingData<T>>) flow.replayCache.firstOrNull() else null
+            ) {
+            override suspend fun presentPagingDataEvent(
+                event: PagingDataEvent<T>,
+            ) {
+                updateItemSnapshotList()
+            }
         }
-    }
 
     /**
      * Contains the immutable [ItemSnapshotList] of currently presented items, including any
-     * placeholders if they are enabled.
-     * Note that similarly to [peek] accessing the items in a list will not trigger any loads.
-     * Use [get] to achieve such behavior.
+     * placeholders if they are enabled. Note that similarly to [peek] accessing the items in a list
+     * will not trigger any loads. Use [get] to achieve such behavior.
      */
-    var itemSnapshotList by mutableStateOf(
-        pagingDataPresenter.snapshot()
-    )
+    var itemSnapshotList by mutableStateOf(pagingDataPresenter.snapshot())
         private set
 
-    /**
-     * The number of items which can be accessed.
-     */
-    val itemCount: Int get() = itemSnapshotList.size
+    /** The number of items which can be accessed. */
+    val itemCount: Int
+        get() = itemSnapshotList.size
 
     private fun updateItemSnapshotList() {
         itemSnapshotList = pagingDataPresenter.snapshot()
@@ -131,8 +127,8 @@
      * within the same generation of [PagingData].
      *
      * [LoadState.Error] can be generated from two types of load requests:
-     *  * [PagingSource.load] returning [PagingSource.LoadResult.Error]
-     *  * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
+     * * [PagingSource.load] returning [PagingSource.LoadResult.Error]
+     * * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
      */
     fun retry() {
         pagingDataPresenter.retry()
@@ -156,39 +152,31 @@
         pagingDataPresenter.refresh()
     }
 
-    /**
-     * A [CombinedLoadStates] object which represents the current loading state.
-     */
-    public var loadState: CombinedLoadStates by mutableStateOf(
-        pagingDataPresenter.loadStateFlow.value
-            ?: CombinedLoadStates(
-                refresh = InitialLoadStates.refresh,
-                prepend = InitialLoadStates.prepend,
-                append = InitialLoadStates.append,
-                source = InitialLoadStates
-            )
+    /** A [CombinedLoadStates] object which represents the current loading state. */
+    public var loadState: CombinedLoadStates by
+        mutableStateOf(
+            pagingDataPresenter.loadStateFlow.value
+                ?: CombinedLoadStates(
+                    refresh = InitialLoadStates.refresh,
+                    prepend = InitialLoadStates.prepend,
+                    append = InitialLoadStates.append,
+                    source = InitialLoadStates
+                )
         )
         private set
 
     internal suspend fun collectLoadState() {
-        pagingDataPresenter.loadStateFlow.filterNotNull().collect {
-            loadState = it
-        }
+        pagingDataPresenter.loadStateFlow.filterNotNull().collect { loadState = it }
     }
 
     internal suspend fun collectPagingData() {
-        flow.collectLatest {
-            pagingDataPresenter.collectFrom(it)
-        }
+        flow.collectLatest { pagingDataPresenter.collectFrom(it) }
     }
 }
 
 private val IncompleteLoadState = LoadState.NotLoading(false)
-private val InitialLoadStates = LoadStates(
-    LoadState.Loading,
-    IncompleteLoadState,
-    IncompleteLoadState
-)
+private val InitialLoadStates =
+    LoadStates(LoadState.Loading, IncompleteLoadState, IncompleteLoadState)
 
 /**
  * Collects values from this [Flow] of [PagingData] and represents them inside a [LazyPagingItems]
@@ -197,8 +185,8 @@
  *
  * @sample androidx.paging.compose.samples.PagingBackendSample
  *
- * @param context the [CoroutineContext] to perform the collection of [PagingData]
- * and [CombinedLoadStates].
+ * @param context the [CoroutineContext] to perform the collection of [PagingData] and
+ *   [CombinedLoadStates].
  */
 @Composable
 public fun <T : Any> Flow<PagingData<T>>.collectAsLazyPagingItems(
@@ -211,9 +199,7 @@
         if (context == EmptyCoroutineContext) {
             lazyPagingItems.collectPagingData()
         } else {
-            withContext(context) {
-                lazyPagingItems.collectPagingData()
-            }
+            withContext(context) { lazyPagingItems.collectPagingData() }
         }
     }
 
@@ -221,9 +207,7 @@
         if (context == EmptyCoroutineContext) {
             lazyPagingItems.collectLoadState()
         } else {
-            withContext(context) {
-                lazyPagingItems.collectLoadState()
-            }
+            withContext(context) { lazyPagingItems.collectLoadState() }
         }
     }
 
diff --git a/paging/paging-guava/src/main/java/androidx/paging/ListenableFuturePagingData.kt b/paging/paging-guava/src/main/java/androidx/paging/ListenableFuturePagingData.kt
index 4ce7253..8b4aa02 100644
--- a/paging/paging-guava/src/main/java/androidx/paging/ListenableFuturePagingData.kt
+++ b/paging/paging-guava/src/main/java/androidx/paging/ListenableFuturePagingData.kt
@@ -26,8 +26,8 @@
 import kotlinx.coroutines.withContext
 
 /**
- * Returns a [PagingData] containing the result of applying the given [transform] to each
- * element, as it is loaded.
+ * Returns a [PagingData] containing the result of applying the given [transform] to each element,
+ * as it is loaded.
  *
  * @param transform [AsyncFunction] to transform an item of type [T] to [R].
  * @param executor [Executor] to run the [AsyncFunction] in.
@@ -38,9 +38,7 @@
     transform: AsyncFunction<T, R>,
     executor: Executor
 ): PagingData<R> = map {
-    withContext(executor.asCoroutineDispatcher()) {
-        transform.apply(it).await()
-    }
+    withContext(executor.asCoroutineDispatcher()) { transform.apply(it).await() }
 }
 
 /**
@@ -56,9 +54,7 @@
     transform: AsyncFunction<T, Iterable<R>>,
     executor: Executor
 ): PagingData<R> = flatMap {
-    withContext(executor.asCoroutineDispatcher()) {
-        transform.apply(it).await()
-    }
+    withContext(executor.asCoroutineDispatcher()) { transform.apply(it).await() }
 }
 
 /**
@@ -73,23 +69,22 @@
     predicate: AsyncFunction<T, Boolean>,
     executor: Executor
 ): PagingData<T> = filter {
-    withContext(executor.asCoroutineDispatcher()) {
-        predicate.apply(it).await()
-    }
+    withContext(executor.asCoroutineDispatcher()) { predicate.apply(it).await() }
 }
 
 /**
- * Returns a [PagingData] containing each original element, with an optional separator generated
- * by [generator], given the elements before and after (or null, in boundary conditions).
+ * Returns a [PagingData] containing each original element, with an optional separator generated by
+ * [generator], given the elements before and after (or null, in boundary conditions).
  *
  * Note that this transform is applied asynchronously, as pages are loaded. Potential separators
  * between pages are only computed once both pages are loaded.
  *
  * @param generator [AsyncFunction] used to generate separator between two [AdjacentItems] or the
- * header or footer if either [AdjacentItems.before] or [AdjacentItems.after] is `null`.
+ *   header or footer if either [AdjacentItems.before] or [AdjacentItems.after] is `null`.
  * @param executor [Executor] to run the [AsyncFunction] in.
  *
  * @sample androidx.paging.samples.insertSeparatorsFutureSample
+ *
  * @sample androidx.paging.samples.insertSeparatorsUiModelFutureSample
  */
 @JvmName("insertSeparators")
@@ -103,7 +98,5 @@
     }
 }
 
-/**
- * Represents a pair of adjacent items, null values are used to signal boundary conditions.
- */
+/** Represents a pair of adjacent items, null values are used to signal boundary conditions. */
 data class AdjacentItems<T>(val before: T?, val after: T?)
diff --git a/paging/paging-guava/src/main/java/androidx/paging/ListenableFutureRemoteMediator.kt b/paging/paging-guava/src/main/java/androidx/paging/ListenableFutureRemoteMediator.kt
index a28145c..fbeb9b7 100644
--- a/paging/paging-guava/src/main/java/androidx/paging/ListenableFutureRemoteMediator.kt
+++ b/paging/paging-guava/src/main/java/androidx/paging/ListenableFutureRemoteMediator.kt
@@ -16,30 +16,24 @@
 
 package androidx.paging
 
-import androidx.paging.LoadType.APPEND
-import androidx.paging.LoadType.PREPEND
-import androidx.paging.LoadType.REFRESH
 import androidx.paging.RemoteMediator.InitializeAction.LAUNCH_INITIAL_REFRESH
 import com.google.common.util.concurrent.Futures
 import com.google.common.util.concurrent.ListenableFuture
 import kotlinx.coroutines.guava.await
 
-/**
- * [ListenableFuture]-based  compatibility wrapper around [RemoteMediator]'s suspending APIs.
- */
+/** [ListenableFuture]-based compatibility wrapper around [RemoteMediator]'s suspending APIs. */
 @ExperimentalPagingApi
 abstract class ListenableFutureRemoteMediator<Key : Any, Value : Any> :
     RemoteMediator<Key, Value>() {
     /**
      * Implement this method to load additional remote data, which will then be stored for the
      * [PagingSource] to access. These loads take one of two forms:
-     *  * type == [LoadType.PREPEND] / [LoadType.APPEND]
-     *  The [PagingSource] has loaded a 'boundary' page, with a `null` adjacent key. This means
-     *  this method should load additional remote data to append / prepend as appropriate, and store
-     *  it locally.
-     *  * type == [LoadType.REFRESH]
-     *  The app (or [initialize]) has requested a remote refresh of data. This means the method
-     *  should generally load remote data, and **replace** all local data.
+     *     * type == [LoadType.PREPEND] / [LoadType.APPEND] The [PagingSource] has loaded a
+     *       'boundary' page, with a `null` adjacent key. This means this method should load
+     *       additional remote data to append / prepend as appropriate, and store it locally.
+     * * type == [LoadType.REFRESH] The app (or [initialize]) has requested a remote refresh of
+     *   data. This means the method should generally load remote data, and **replace** all local
+     *   data.
      *
      * The runtime of this method defines loading state behavior in boundary conditions, which
      * affects e.g., [LoadState] callbacks registered to [androidx.paging.PagingDataAdapter].
@@ -49,17 +43,16 @@
      * [LoadType.APPEND] or both. [LoadType.REFRESH] occurs as a result of [initialize].
      *
      * @param loadType [LoadType] of the boundary condition which triggered this callback.
-     *  * [LoadType.PREPEND] indicates a boundary condition at the front of the list.
-     *  * [LoadType.APPEND] indicates a boundary condition at the end of the list.
-     *  * [LoadType.REFRESH] indicates this callback was triggered as the result of a requested
-     *  refresh - either driven by the UI, or by [initialize].
-     * @param state A copy of the state including the list of pages currently held in
-     * memory of the currently presented [PagingData] at the time of starting the load. E.g. for
-     * load(loadType = END), you can use the page or item at the end as input for what to load from
-     * the network.
+     *     * [LoadType.PREPEND] indicates a boundary condition at the front of the list.
+     *     * [LoadType.APPEND] indicates a boundary condition at the end of the list.
+     *     * [LoadType.REFRESH] indicates this callback was triggered as the result of a requested
+     *       refresh - either driven by the UI, or by [initialize].
      *
+     * @param state A copy of the state including the list of pages currently held in memory of the
+     *   currently presented [PagingData] at the time of starting the load. E.g. for load(loadType =
+     *   END), you can use the page or item at the end as input for what to load from the network.
      * @return [MediatorResult] signifying what [LoadState] to be passed to the UI, and whether
-     * there's more data available.
+     *   there's more data available.
      */
     @Suppress("AsyncSuffixFuture")
     abstract fun loadFuture(
@@ -73,12 +66,12 @@
      * This function runs to completion before any loading is performed.
      *
      * @return [InitializeAction] indicating the action to take after initialization:
-     *  * [LAUNCH_INITIAL_REFRESH] to immediately dispatch a [load] asynchronously with load type
-     *  [LoadType.REFRESH], to update paginated content when the stream is initialized.
-     *  Note: This also prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until
-     *  [REFRESH] succeeds.
-     *  * [SKIP_INITIAL_REFRESH][InitializeAction.SKIP_INITIAL_REFRESH] to wait for a
-     *  refresh request from the UI before dispatching a [load] with load type [LoadType.REFRESH].
+     *     * [LAUNCH_INITIAL_REFRESH] to immediately dispatch a [load] asynchronously with load type
+     *       [LoadType.REFRESH], to update paginated content when the stream is initialized. Note:
+     *       This also prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until
+     *       [REFRESH] succeeds.
+     *     * [SKIP_INITIAL_REFRESH][InitializeAction.SKIP_INITIAL_REFRESH] to wait for a refresh
+     *       request from the UI before dispatching a [load] with load type [LoadType.REFRESH].
      */
     @Suppress("AsyncSuffixFuture")
     open fun initializeFuture(): ListenableFuture<InitializeAction> {
diff --git a/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingDataTest.kt b/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingDataTest.kt
index ea38a9f..6c50634 100644
--- a/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingDataTest.kt
+++ b/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingDataTest.kt
@@ -38,51 +38,55 @@
     private val presenter = TestPagingDataPresenter<String>(testDispatcher)
 
     @Test
-    fun map() = testScope.runTest {
-        val transformed = original.mapAsync(
-            AsyncFunction<String, String> {
-                Futures.immediateFuture(it + it)
-            },
-            testDispatcher.asExecutor()
-        )
-        presenter.collectFrom(transformed)
-        assertEquals(listOf("aa", "bb", "cc"), presenter.currentList)
-    }
+    fun map() =
+        testScope.runTest {
+            val transformed =
+                original.mapAsync(
+                    AsyncFunction<String, String> { Futures.immediateFuture(it + it) },
+                    testDispatcher.asExecutor()
+                )
+            presenter.collectFrom(transformed)
+            assertEquals(listOf("aa", "bb", "cc"), presenter.currentList)
+        }
 
     @Test
-    fun flatMap() = testScope.runTest {
-        val transformed = original.flatMapAsync(
-            AsyncFunction<String, Iterable<String>> {
-                Futures.immediateFuture(listOf(it!!, it))
-            },
-            testDispatcher.asExecutor()
-        )
-        presenter.collectFrom(transformed)
-        assertEquals(listOf("a", "a", "b", "b", "c", "c"), presenter.currentList)
-    }
+    fun flatMap() =
+        testScope.runTest {
+            val transformed =
+                original.flatMapAsync(
+                    AsyncFunction<String, Iterable<String>> {
+                        Futures.immediateFuture(listOf(it!!, it))
+                    },
+                    testDispatcher.asExecutor()
+                )
+            presenter.collectFrom(transformed)
+            assertEquals(listOf("a", "a", "b", "b", "c", "c"), presenter.currentList)
+        }
 
     @Test
-    fun filter() = testScope.runTest {
-        val filtered = original.filterAsync(
-            AsyncFunction {
-                Futures.immediateFuture(it != "b")
-            },
-            testDispatcher.asExecutor()
-        )
-        presenter.collectFrom(filtered)
-        assertEquals(listOf("a", "c"), presenter.currentList)
-    }
+    fun filter() =
+        testScope.runTest {
+            val filtered =
+                original.filterAsync(
+                    AsyncFunction { Futures.immediateFuture(it != "b") },
+                    testDispatcher.asExecutor()
+                )
+            presenter.collectFrom(filtered)
+            assertEquals(listOf("a", "c"), presenter.currentList)
+        }
 
     @Test
-    fun insertSeparators() = testScope.runTest {
-        val separated = original.insertSeparatorsAsync(
-            AsyncFunction<AdjacentItems<String>, String?> {
-                val (before, after) = it!!
-                Futures.immediateFuture(if (before == null || after == null) null else "|")
-            },
-            testDispatcher.asExecutor()
-        )
-        presenter.collectFrom(separated)
-        assertEquals(listOf("a", "|", "b", "|", "c"), presenter.currentList)
-    }
+    fun insertSeparators() =
+        testScope.runTest {
+            val separated =
+                original.insertSeparatorsAsync(
+                    AsyncFunction<AdjacentItems<String>, String?> {
+                        val (before, after) = it!!
+                        Futures.immediateFuture(if (before == null || after == null) null else "|")
+                    },
+                    testDispatcher.asExecutor()
+                )
+            presenter.collectFrom(separated)
+            assertEquals(listOf("a", "|", "b", "|", "c"), presenter.currentList)
+        }
 }
diff --git a/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingSourceTest.kt b/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingSourceTest.kt
index ae8a63a..feff4ff 100644
--- a/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingSourceTest.kt
+++ b/paging/paging-guava/src/test/java/androidx/paging/ListenableFuturePagingSourceTest.kt
@@ -40,27 +40,31 @@
         )
     }
 
-    private val pagingSource = object : PagingSource<Int, Int>() {
-        override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-            return loadInternal(params)
-        }
-
-        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-    }
-
-    private val listenableFuturePagingSource = object : ListenableFuturePagingSource<Int, Int>() {
-        override fun loadFuture(params: LoadParams<Int>): ListenableFuture<LoadResult<Int, Int>> {
-            val future = SettableFuture.create<LoadResult<Int, Int>>()
-            try {
-                future.set(loadInternal(params))
-            } catch (e: IllegalArgumentException) {
-                future.setException(e)
+    private val pagingSource =
+        object : PagingSource<Int, Int>() {
+            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                return loadInternal(params)
             }
-            return future
+
+            override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
         }
 
-        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-    }
+    private val listenableFuturePagingSource =
+        object : ListenableFuturePagingSource<Int, Int>() {
+            override fun loadFuture(
+                params: LoadParams<Int>
+            ): ListenableFuture<LoadResult<Int, Int>> {
+                val future = SettableFuture.create<LoadResult<Int, Int>>()
+                try {
+                    future.set(loadInternal(params))
+                } catch (e: IllegalArgumentException) {
+                    future.setException(e)
+                }
+                return future
+            }
+
+            override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
+        }
 
     @Test
     fun basic() = runBlocking {
diff --git a/paging/paging-guava/src/test/java/androidx/paging/ListenableFutureRemoteMediatorTest.kt b/paging/paging-guava/src/test/java/androidx/paging/ListenableFutureRemoteMediatorTest.kt
index 2bf2473..62801e6 100644
--- a/paging/paging-guava/src/test/java/androidx/paging/ListenableFutureRemoteMediatorTest.kt
+++ b/paging/paging-guava/src/test/java/androidx/paging/ListenableFutureRemoteMediatorTest.kt
@@ -33,30 +33,32 @@
 class ListenableFutureRemoteMediatorTest {
     @Test
     fun initializeFuture() = runTest {
-        val remoteMediator = object : ListenableFutureRemoteMediator<Int, Int>() {
-            override fun loadFuture(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): ListenableFuture<MediatorResult> {
-                fail("Unexpected call")
-            }
+        val remoteMediator =
+            object : ListenableFutureRemoteMediator<Int, Int>() {
+                override fun loadFuture(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): ListenableFuture<MediatorResult> {
+                    fail("Unexpected call")
+                }
 
-            override fun initializeFuture() = Futures.immediateFuture(SKIP_INITIAL_REFRESH)
-        }
+                override fun initializeFuture() = Futures.immediateFuture(SKIP_INITIAL_REFRESH)
+            }
 
         assertEquals(SKIP_INITIAL_REFRESH, remoteMediator.initialize())
     }
 
     @Test
     fun initializeFutureDefault() = runTest {
-        val remoteMediator = object : ListenableFutureRemoteMediator<Int, Int>() {
-            override fun loadFuture(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): ListenableFuture<MediatorResult> {
-                fail("Unexpected call")
+        val remoteMediator =
+            object : ListenableFutureRemoteMediator<Int, Int>() {
+                override fun loadFuture(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): ListenableFuture<MediatorResult> {
+                    fail("Unexpected call")
+                }
             }
-        }
 
         assertEquals(LAUNCH_INITIAL_REFRESH, remoteMediator.initialize())
     }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagedListDifferTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagedListDifferTest.kt
index 23de20f..88f70e2 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagedListDifferTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagedListDifferTest.kt
@@ -53,12 +53,13 @@
     private fun createDiffer(
         listUpdateCallback: ListUpdateCallback = IGNORE_CALLBACK
     ): AsyncPagedListDiffer<String> {
-        val differ = AsyncPagedListDiffer(
-            listUpdateCallback,
-            AsyncDifferConfig.Builder(STRING_DIFF_CALLBACK)
-                .setBackgroundThreadExecutor(diffThread)
-                .build()
-        )
+        val differ =
+            AsyncPagedListDiffer(
+                listUpdateCallback,
+                AsyncDifferConfig.Builder(STRING_DIFF_CALLBACK)
+                    .setBackgroundThreadExecutor(diffThread)
+                    .build()
+            )
         // by default, use ArchExecutor
         assertEquals(differ.mainThreadExecutor, ArchTaskExecutor.getMainThreadExecutor())
         differ.mainThreadExecutor = mainThread
@@ -77,9 +78,7 @@
             .setNotifyExecutor(mainThread)
             .setFetchExecutor(pageLoadingThread)
             .build()
-            .also {
-                pageLoadingThread.autoRun = false
-            }
+            .also { pageLoadingThread.autoRun = false }
     }
 
     @Test
@@ -158,79 +157,45 @@
 
         assertEquals(0, differ.itemCount)
 
-        differ.submitList(
-            StringPagedList(
-                leadingNulls = 0,
-                trailingNulls = 0, "a", "b"
-            )
-        )
+        differ.submitList(StringPagedList(leadingNulls = 0, trailingNulls = 0, "a", "b"))
 
-        fun submitAndAssert(
-            stringPagedList: PagedList<String>,
-            vararg expected: Any?
-        ) {
+        fun submitAndAssert(stringPagedList: PagedList<String>, vararg expected: Any?) {
             val prevEventsSize = callback.allEvents.size
             differ.submitList(stringPagedList)
             drain()
-            assertThat(
-                callback.allEvents.subList(prevEventsSize, callback.allEvents.size)
-            ).containsExactlyElementsIn(
-                expected
-            ).inOrder()
+            assertThat(callback.allEvents.subList(prevEventsSize, callback.allEvents.size))
+                .containsExactlyElementsIn(expected)
+                .inOrder()
         }
         // prepend nulls
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 4,
-                trailingNulls = 0,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 4, trailingNulls = 0, items = arrayOf("a", "b")),
             OnInsertedEvent(0, 4)
         )
         // remove leading nulls
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 0,
-                trailingNulls = 0,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 0, trailingNulls = 0, items = arrayOf("a", "b")),
             OnRemovedEvent(0, 4)
         )
         // append nulls
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 0,
-                trailingNulls = 3,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 0, trailingNulls = 3, items = arrayOf("a", "b")),
             OnInsertedEvent(2, 3)
         )
         // remove trailing nulls
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 0,
-                trailingNulls = 0,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 0, trailingNulls = 0, items = arrayOf("a", "b")),
             OnRemovedEvent(2, 3)
         )
         // add nulls on both ends
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 3,
-                trailingNulls = 2,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 3, trailingNulls = 2, items = arrayOf("a", "b")),
             OnInsertedEvent(0, 3),
             OnInsertedEvent(5, 2)
         )
         // remove some nulls from both ends
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 1,
-                trailingNulls = 1,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 1, trailingNulls = 1, items = arrayOf("a", "b")),
             OnRemovedEvent(0, 2),
             OnChangedEvent(0, 1, PLACEHOLDER_POSITION_CHANGE),
             OnRemovedEvent(4, 1),
@@ -238,22 +203,14 @@
         )
         // add to leading, remove from trailing
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 5,
-                trailingNulls = 0,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 5, trailingNulls = 0, items = arrayOf("a", "b")),
             OnChangedEvent(0, 1, PLACEHOLDER_POSITION_CHANGE),
             OnInsertedEvent(0, 4),
             OnRemovedEvent(7, 1)
         )
         // add trailing, remove from leading
         submitAndAssert(
-            StringPagedList(
-                leadingNulls = 1,
-                trailingNulls = 3,
-                items = arrayOf("a", "b")
-            ),
+            StringPagedList(leadingNulls = 1, trailingNulls = 3, items = arrayOf("a", "b")),
             OnRemovedEvent(0, 4),
             OnChangedEvent(0, 1, PLACEHOLDER_POSITION_CHANGE),
             OnInsertedEvent(3, 3)
@@ -288,11 +245,12 @@
 
     @Test
     fun pagingInContent() {
-        val config = PagedList.Config.Builder()
-            .setInitialLoadSizeHint(4)
-            .setPageSize(2)
-            .setPrefetchDistance(2)
-            .build()
+        val config =
+            PagedList.Config.Builder()
+                .setInitialLoadSizeHint(4)
+                .setPageSize(2)
+                .setPrefetchDistance(2)
+                .build()
 
         val callback = ListUpdateCallbackFake()
         val differ = createDiffer(callback)
@@ -338,9 +296,7 @@
     @Test
     fun simpleSwap() {
         // Page size large enough to load
-        val config = PagedList.Config.Builder()
-            .setPageSize(50)
-            .build()
+        val config = PagedList.Config.Builder().setPageSize(50).build()
 
         val callback = ListUpdateCallbackFake()
         val differ = createDiffer(callback)
@@ -372,11 +328,12 @@
 
     @Test
     fun oldListUpdateIgnoredWhileDiffing() {
-        val config = PagedList.Config.Builder()
-            .setInitialLoadSizeHint(4)
-            .setPageSize(2)
-            .setPrefetchDistance(2)
-            .build()
+        val config =
+            PagedList.Config.Builder()
+                .setInitialLoadSizeHint(4)
+                .setPageSize(2)
+                .setPrefetchDistance(2)
+                .build()
 
         val callback = ListUpdateCallbackFake()
         val differ = createDiffer(callback)
@@ -415,11 +372,7 @@
 
     @Test
     fun newPageChangesDeferredDuringDiff() {
-        val config = Config(
-            initialLoadSizeHint = 4,
-            pageSize = 2,
-            prefetchDistance = 2
-        )
+        val config = Config(initialLoadSizeHint = 4, pageSize = 2, prefetchDistance = 2)
 
         val callback = ListUpdateCallbackFake()
         val differ = createDiffer(callback)
@@ -463,30 +416,29 @@
         // provides access to differ, which must be constructed after callback
         val differAccessor = arrayOf<AsyncPagedListDiffer<*>?>(null)
 
-        val callback = object : ListUpdateCallback {
-            override fun onInserted(position: Int, count: Int) {
-                assertEquals(expectedCount[0], differAccessor[0]!!.itemCount)
-            }
+        val callback =
+            object : ListUpdateCallback {
+                override fun onInserted(position: Int, count: Int) {
+                    assertEquals(expectedCount[0], differAccessor[0]!!.itemCount)
+                }
 
-            override fun onRemoved(position: Int, count: Int) {
-                assertEquals(expectedCount[0], differAccessor[0]!!.itemCount)
-            }
+                override fun onRemoved(position: Int, count: Int) {
+                    assertEquals(expectedCount[0], differAccessor[0]!!.itemCount)
+                }
 
-            override fun onMoved(fromPosition: Int, toPosition: Int) {
-                fail("not expected")
-            }
+                override fun onMoved(fromPosition: Int, toPosition: Int) {
+                    fail("not expected")
+                }
 
-            override fun onChanged(position: Int, count: Int, payload: Any?) {
-                fail("not expected")
+                override fun onChanged(position: Int, count: Int, payload: Any?) {
+                    fail("not expected")
+                }
             }
-        }
 
         val differ = createDiffer(callback)
         differAccessor[0] = differ
 
-        val config = PagedList.Config.Builder()
-            .setPageSize(20)
-            .build()
+        val config = PagedList.Config.Builder().setPageSize(20).build()
 
         // in the fast-add case...
         expectedCount[0] = 5
@@ -512,10 +464,7 @@
     fun loadAroundHandlePrepend() {
         val differ = createDiffer()
 
-        val config = PagedList.Config.Builder()
-            .setPageSize(5)
-            .setEnablePlaceholders(false)
-            .build()
+        val config = PagedList.Config.Builder().setPageSize(5).setEnablePlaceholders(false).build()
 
         // initialize, initial key position is 0
         differ.submitList(createPagedListFromListAndPos(config, ALPHABET_LIST.subList(10, 20), 0))
@@ -532,12 +481,13 @@
     @Test
     fun submitSubset() {
         // Page size large enough to load
-        val config = PagedList.Config.Builder()
-            .setInitialLoadSizeHint(4)
-            .setPageSize(2)
-            .setPrefetchDistance(1)
-            .setEnablePlaceholders(false)
-            .build()
+        val config =
+            PagedList.Config.Builder()
+                .setInitialLoadSizeHint(4)
+                .setPageSize(2)
+                .setPrefetchDistance(1)
+                .setEnablePlaceholders(false)
+                .build()
 
         val differ = createDiffer()
 
@@ -657,32 +607,30 @@
 
     @Test
     fun submitList_initialPagedListEvents() {
-        val config = PagedList.Config.Builder().apply {
-            setPageSize(1)
-        }.build()
+        val config = PagedList.Config.Builder().apply { setPageSize(1) }.build()
         val listUpdateCallback = ListUpdateCapture()
         val loadStateListener = LoadStateCapture()
-        val differ = createDiffer(listUpdateCallback).apply {
-            addLoadStateListener(loadStateListener)
-        }
+        val differ =
+            createDiffer(listUpdateCallback).apply { addLoadStateListener(loadStateListener) }
 
         // Initial state.
         drain()
         assertThat(listUpdateCallback.newEvents()).isEmpty()
-        assertThat(loadStateListener.newEvents()).containsExactly(
-            LoadStateEvent(
-                loadType = LoadType.REFRESH,
-                loadState = LoadState.NotLoading(endOfPaginationReached = false)
-            ),
-            LoadStateEvent(
-                loadType = LoadType.PREPEND,
-                loadState = LoadState.NotLoading(endOfPaginationReached = false)
-            ),
-            LoadStateEvent(
-                loadType = LoadType.APPEND,
-                loadState = LoadState.NotLoading(endOfPaginationReached = false)
-            ),
-        )
+        assertThat(loadStateListener.newEvents())
+            .containsExactly(
+                LoadStateEvent(
+                    loadType = LoadType.REFRESH,
+                    loadState = LoadState.NotLoading(endOfPaginationReached = false)
+                ),
+                LoadStateEvent(
+                    loadType = LoadType.PREPEND,
+                    loadState = LoadState.NotLoading(endOfPaginationReached = false)
+                ),
+                LoadStateEvent(
+                    loadType = LoadType.APPEND,
+                    loadState = LoadState.NotLoading(endOfPaginationReached = false)
+                ),
+            )
 
         // First InitialPagedList.
         differ.submitList(
@@ -695,25 +643,24 @@
             )
         )
         drain()
-        assertThat(listUpdateCallback.newEvents()).containsExactly(
-            ListUpdateEvent.Inserted(position = 0, count = 0),
-        )
+        assertThat(listUpdateCallback.newEvents())
+            .containsExactly(
+                ListUpdateEvent.Inserted(position = 0, count = 0),
+            )
         assertThat(loadStateListener.newEvents()).isEmpty()
 
         // Real PagedList with non-empty data.
-        differ.submitList(
-            createPagedListFromListAndPos(config, ALPHABET_LIST, 0)
-        )
+        differ.submitList(createPagedListFromListAndPos(config, ALPHABET_LIST, 0))
         drain()
-        assertThat(listUpdateCallback.newEvents()).containsExactly(
-            ListUpdateEvent.Inserted(position = 0, count = 26)
-        )
-        assertThat(loadStateListener.newEvents()).containsExactly(
-            LoadStateEvent(
-                loadType = LoadType.PREPEND,
-                loadState = LoadState.NotLoading(endOfPaginationReached = true)
-            ),
-        )
+        assertThat(listUpdateCallback.newEvents())
+            .containsExactly(ListUpdateEvent.Inserted(position = 0, count = 26))
+        assertThat(loadStateListener.newEvents())
+            .containsExactly(
+                LoadStateEvent(
+                    loadType = LoadType.PREPEND,
+                    loadState = LoadState.NotLoading(endOfPaginationReached = true)
+                ),
+            )
 
         // Second InitialPagedList.
         differ.submitList(
@@ -727,16 +674,14 @@
         )
         drain()
         assertThat(listUpdateCallback.newEvents()).isEmpty()
-        assertThat(loadStateListener.newEvents()).containsExactly(
-            LoadStateEvent(
-                loadType = LoadType.REFRESH,
-                loadState = LoadState.Loading
-            ),
-            LoadStateEvent(
-                loadType = LoadType.PREPEND,
-                loadState = LoadState.NotLoading(endOfPaginationReached = false)
-            ),
-        )
+        assertThat(loadStateListener.newEvents())
+            .containsExactly(
+                LoadStateEvent(loadType = LoadType.REFRESH, loadState = LoadState.Loading),
+                LoadStateEvent(
+                    loadType = LoadType.PREPEND,
+                    loadState = LoadState.NotLoading(endOfPaginationReached = false)
+                ),
+            )
     }
 
     private fun drainExceptDiffThread() {
@@ -759,24 +704,26 @@
     companion object {
         private val ALPHABET_LIST = List(26) { "" + ('a' + it) }
 
-        private val STRING_DIFF_CALLBACK = object : DiffUtil.ItemCallback<String>() {
-            override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
-                return oldItem == newItem
+        private val STRING_DIFF_CALLBACK =
+            object : DiffUtil.ItemCallback<String>() {
+                override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
+                    return oldItem == newItem
+                }
+
+                override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
+                    return oldItem == newItem
+                }
             }
 
-            override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
-                return oldItem == newItem
+        private val IGNORE_CALLBACK =
+            object : ListUpdateCallback {
+                override fun onInserted(position: Int, count: Int) {}
+
+                override fun onRemoved(position: Int, count: Int) {}
+
+                override fun onMoved(fromPosition: Int, toPosition: Int) {}
+
+                override fun onChanged(position: Int, count: Int, payload: Any?) {}
             }
-        }
-
-        private val IGNORE_CALLBACK = object : ListUpdateCallback {
-            override fun onInserted(position: Int, count: Int) {}
-
-            override fun onRemoved(position: Int, count: Int) {}
-
-            override fun onMoved(fromPosition: Int, toPosition: Int) {}
-
-            override fun onChanged(position: Int, count: Int, payload: Any?) {}
-        }
     }
 }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagingDataDifferTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagingDataDifferTest.kt
index 98b8b06..28116aa 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagingDataDifferTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/AsyncPagingDataDifferTest.kt
@@ -72,562 +72,515 @@
     private val testScope = TestScope(StandardTestDispatcher())
 
     @get:Rule
-    val dispatcherRule = MainDispatcherRule(
-        testScope.coroutineContext[ContinuationInterceptor] as CoroutineDispatcher
-    )
+    val dispatcherRule =
+        MainDispatcherRule(
+            testScope.coroutineContext[ContinuationInterceptor] as CoroutineDispatcher
+        )
 
     private val listUpdateCapture = ListUpdateCapture()
-    private val differ = AsyncPagingDataDiffer(
-        diffCallback = object : DiffUtil.ItemCallback<Int>() {
-            override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                return oldItem == newItem
-            }
+    private val differ =
+        AsyncPagingDataDiffer(
+            diffCallback =
+                object : DiffUtil.ItemCallback<Int>() {
+                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                        return oldItem == newItem
+                    }
 
-            override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                return oldItem == newItem
-            }
-        },
-        updateCallback = listUpdateCapture,
-        workerDispatcher = Dispatchers.Main
-    )
+                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                        return oldItem == newItem
+                    }
+                },
+            updateCallback = listUpdateCapture,
+            workerDispatcher = Dispatchers.Main
+        )
 
     @SdkSuppress(minSdkVersion = 21) // b/189492631
     @Test
-    fun performDiff_fastPathLoadStates() = testScope.runTest {
-        val loadEvents = mutableListOf<CombinedLoadStates>()
-        differ.addLoadStateListener { loadEvents.add(it) }
+    fun performDiff_fastPathLoadStates() =
+        testScope.runTest {
+            val loadEvents = mutableListOf<CombinedLoadStates>()
+            differ.addLoadStateListener { loadEvents.add(it) }
 
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 2,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2
-            ),
-            initialKey = 50
-        ) {
-            TestPagingSource()
-        }
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 2,
+                            prefetchDistance = 1,
+                            enablePlaceholders = true,
+                            initialLoadSize = 2
+                        ),
+                    initialKey = 50
+                ) {
+                    TestPagingSource()
+                }
 
-        val job = launch {
-            pager.flow.collect {
-                differ.submitData(it)
-            }
-        }
+            val job = launch { pager.flow.collect { differ.submitData(it) } }
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        // Assert that all load state updates are sent, even when differ enters fast path for
-        // empty previous list.
-        assertEvents(
-            listOf(
-                localLoadStatesOf(refreshLocal = Loading),
-                localLoadStatesOf(refreshLocal = NotLoading(endOfPaginationReached = false)),
-            ),
-            loadEvents
-        )
-        loadEvents.clear()
+            // Assert that all load state updates are sent, even when differ enters fast path for
+            // empty previous list.
+            assertEvents(
+                listOf(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(refreshLocal = NotLoading(endOfPaginationReached = false)),
+                ),
+                loadEvents
+            )
+            loadEvents.clear()
 
-        job.cancel()
+            job.cancel()
 
-        differ.submitData(
-            TestLifecycleOwner().lifecycle, PagingData.empty(
-                sourceLoadStates = loadStates(
-                    refresh = NotLoading(endOfPaginationReached = false),
-                    prepend = NotLoading(endOfPaginationReached = true),
-                    append = NotLoading(endOfPaginationReached = true),
+            differ.submitData(
+                TestLifecycleOwner().lifecycle,
+                PagingData.empty(
+                    sourceLoadStates =
+                        loadStates(
+                            refresh = NotLoading(endOfPaginationReached = false),
+                            prepend = NotLoading(endOfPaginationReached = true),
+                            append = NotLoading(endOfPaginationReached = true),
+                        )
                 )
             )
-        )
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        // Assert that all load state updates are sent, even when differ enters fast path for
-        // empty next list.
-        assertEvents(
-            expected = listOf(
-                localLoadStatesOf(
-                    refreshLocal = NotLoading(endOfPaginationReached = false),
-                    prependLocal = NotLoading(endOfPaginationReached = true),
-                    appendLocal = NotLoading(endOfPaginationReached = true),
-                ),
-            ),
-            actual = loadEvents
-        )
-    }
+            // Assert that all load state updates are sent, even when differ enters fast path for
+            // empty next list.
+            assertEvents(
+                expected =
+                    listOf(
+                        localLoadStatesOf(
+                            refreshLocal = NotLoading(endOfPaginationReached = false),
+                            prependLocal = NotLoading(endOfPaginationReached = true),
+                            appendLocal = NotLoading(endOfPaginationReached = true),
+                        ),
+                    ),
+                actual = loadEvents
+            )
+        }
 
     @SdkSuppress(minSdkVersion = 21) // b/189492631
     @Test
-    fun performDiff_fastPathLoadStatesFlow() = testScope.runTest {
-        val loadEvents = mutableListOf<CombinedLoadStates>()
-        val loadEventJob = launch {
-            differ.loadStateFlow.collect { loadEvents.add(it) }
-        }
+    fun performDiff_fastPathLoadStatesFlow() =
+        testScope.runTest {
+            val loadEvents = mutableListOf<CombinedLoadStates>()
+            val loadEventJob = launch { differ.loadStateFlow.collect { loadEvents.add(it) } }
 
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 2,
-                prefetchDistance = 1,
-                enablePlaceholders = true,
-                initialLoadSize = 2
-            ),
-            initialKey = 50
-        ) {
-            TestPagingSource()
-        }
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 2,
+                            prefetchDistance = 1,
+                            enablePlaceholders = true,
+                            initialLoadSize = 2
+                        ),
+                    initialKey = 50
+                ) {
+                    TestPagingSource()
+                }
 
-        val job = launch {
-            pager.flow.collect {
-                differ.submitData(it)
-            }
-        }
+            val job = launch { pager.flow.collect { differ.submitData(it) } }
 
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        // Assert that all load state updates are sent, even when differ enters fast path for
-        // empty previous list.
-        assertEvents(
-            listOf(
-                localLoadStatesOf(refreshLocal = Loading),
-                localLoadStatesOf(refreshLocal = NotLoading(endOfPaginationReached = false)),
-            ),
-            loadEvents
-        )
-        loadEvents.clear()
+            // Assert that all load state updates are sent, even when differ enters fast path for
+            // empty previous list.
+            assertEvents(
+                listOf(
+                    localLoadStatesOf(refreshLocal = Loading),
+                    localLoadStatesOf(refreshLocal = NotLoading(endOfPaginationReached = false)),
+                ),
+                loadEvents
+            )
+            loadEvents.clear()
 
-        job.cancel()
+            job.cancel()
 
-        differ.submitData(
-            TestLifecycleOwner().lifecycle, PagingData.empty(
-                sourceLoadStates = loadStates(
-                    refresh = NotLoading(endOfPaginationReached = false),
-                    prepend = NotLoading(endOfPaginationReached = true),
-                    append = NotLoading(endOfPaginationReached = true),
+            differ.submitData(
+                TestLifecycleOwner().lifecycle,
+                PagingData.empty(
+                    sourceLoadStates =
+                        loadStates(
+                            refresh = NotLoading(endOfPaginationReached = false),
+                            prepend = NotLoading(endOfPaginationReached = true),
+                            append = NotLoading(endOfPaginationReached = true),
+                        )
                 )
             )
-        )
-        advanceUntilIdle()
-
-        // Assert that all load state updates are sent, even when differ enters fast path for
-        // empty next list.
-        assertEvents(
-            expected = listOf(
-                localLoadStatesOf(
-                    refreshLocal = NotLoading(endOfPaginationReached = false),
-                    prependLocal = NotLoading(endOfPaginationReached = true),
-                    appendLocal = NotLoading(endOfPaginationReached = true),
-                ),
-            ),
-            actual = loadEvents
-        )
-
-        loadEventJob.cancel()
-    }
-
-    @Test
-    fun lastAccessedIndex() = testScope.runTest {
-        withContext(coroutineContext) {
-            var currentPagedSource: TestPagingSource? = null
-            val pager = Pager(
-                config = PagingConfig(
-                    pageSize = 1,
-                    prefetchDistance = 1,
-                    enablePlaceholders = true,
-                    initialLoadSize = 2
-                ),
-                initialKey = 50
-            ) {
-                currentPagedSource = TestPagingSource()
-                currentPagedSource!!
-            }
-
-            val job = launch { pager.flow.collectLatest { differ.submitData(it) } }
-
-            // Load REFRESH [50, 51]
             advanceUntilIdle()
 
+            // Assert that all load state updates are sent, even when differ enters fast path for
+            // empty next list.
             assertEvents(
-                listOf(
-                    Inserted(0, 100), // [(50 placeholders), 50, 51, (48 placeholders)]
-                ),
-                listUpdateCapture.newEvents()
+                expected =
+                    listOf(
+                        localLoadStatesOf(
+                            refreshLocal = NotLoading(endOfPaginationReached = false),
+                            prependLocal = NotLoading(endOfPaginationReached = true),
+                            appendLocal = NotLoading(endOfPaginationReached = true),
+                        ),
+                    ),
+                actual = loadEvents
             )
 
-            // Load APPEND [52] to fulfill prefetch distance
-            differ.getItem(51)
-            advanceUntilIdle()
-
-            assertEvents(
-                // TODO(b/182510751): Every change event here should have payload.
-                listOf(
-                    Changed(52, 1, null), // [(50 placeholders), 50, 51, 52, (47 placeholders)]
-                ),
-                listUpdateCapture.newEvents()
-            )
-
-            // Load REFRESH [51, 52]
-            currentPagedSource!!.invalidate()
-            advanceUntilIdle()
-
-            // UI access refreshed items. Load PREPEND [50] to fulfill prefetch distance
-            differ.getItem(51)
-            advanceUntilIdle()
-
-            assertEvents(
-                // TODO(b/182510751): Every change event here should have payload.
-                listOf(
-                    // refresh
-                    Changed(50, 1, ITEM_TO_PLACEHOLDER), // 50 got unloaded
-                    // fix prefetch, 50 got reloaded
-                    Changed(50, 1, null), // [(50 placeholders), 50, 51, 52, (47 placeholders)]
-                ),
-                listUpdateCapture.newEvents()
-            )
-
-            job.cancel()
+            loadEventJob.cancel()
         }
-    }
 
     @Test
-    fun presentData_cancelsLastSubmit() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pager = Pager(
-                config = PagingConfig(2),
-                initialKey = 50
-            ) { TestPagingSource() }
-            val pager2 = Pager(
-                config = PagingConfig(2),
-                initialKey = 50
-            ) { TestPagingSource() }
+    fun lastAccessedIndex() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                var currentPagedSource: TestPagingSource? = null
+                val pager =
+                    Pager(
+                        config =
+                            PagingConfig(
+                                pageSize = 1,
+                                prefetchDistance = 1,
+                                enablePlaceholders = true,
+                                initialLoadSize = 2
+                            ),
+                        initialKey = 50
+                    ) {
+                        currentPagedSource = TestPagingSource()
+                        currentPagedSource!!
+                    }
 
-            val lifecycle = TestLifecycleOwner()
-            var jobSubmitted = false
-            val job = launch {
-                pager.flow.collectLatest {
-                    differ.submitData(lifecycle.lifecycle, it)
-                    jobSubmitted = true
-                }
+                val job = launch { pager.flow.collectLatest { differ.submitData(it) } }
+
+                // Load REFRESH [50, 51]
+                advanceUntilIdle()
+
+                assertEvents(
+                    listOf(
+                        Inserted(0, 100), // [(50 placeholders), 50, 51, (48 placeholders)]
+                    ),
+                    listUpdateCapture.newEvents()
+                )
+
+                // Load APPEND [52] to fulfill prefetch distance
+                differ.getItem(51)
+                advanceUntilIdle()
+
+                assertEvents(
+                    // TODO(b/182510751): Every change event here should have payload.
+                    listOf(
+                        Changed(52, 1, null), // [(50 placeholders), 50, 51, 52, (47 placeholders)]
+                    ),
+                    listUpdateCapture.newEvents()
+                )
+
+                // Load REFRESH [51, 52]
+                currentPagedSource!!.invalidate()
+                advanceUntilIdle()
+
+                // UI access refreshed items. Load PREPEND [50] to fulfill prefetch distance
+                differ.getItem(51)
+                advanceUntilIdle()
+
+                assertEvents(
+                    // TODO(b/182510751): Every change event here should have payload.
+                    listOf(
+                        // refresh
+                        Changed(50, 1, ITEM_TO_PLACEHOLDER), // 50 got unloaded
+                        // fix prefetch, 50 got reloaded
+                        Changed(50, 1, null), // [(50 placeholders), 50, 51, 52, (47 placeholders)]
+                    ),
+                    listUpdateCapture.newEvents()
+                )
+
+                job.cancel()
             }
-
-            advanceUntilIdle()
-
-            val job2 = launch {
-                pager2.flow.collectLatest {
-                    differ.submitData(it)
-                }
-            }
-
-            advanceUntilIdle()
-
-            assertTrue(jobSubmitted)
-
-            job.cancel()
-            job2.cancel()
         }
-    }
 
     @Test
-    fun submitData_cancelsLast() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pager = Pager(
-                config = PagingConfig(2),
-                initialKey = 50
-            ) { TestPagingSource() }
-            val pager2 = Pager(
-                config = PagingConfig(2),
-                initialKey = 50
-            ) { TestPagingSource() }
+    fun presentData_cancelsLastSubmit() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pager = Pager(config = PagingConfig(2), initialKey = 50) { TestPagingSource() }
+                val pager2 = Pager(config = PagingConfig(2), initialKey = 50) { TestPagingSource() }
 
-            val lifecycle = TestLifecycleOwner()
-            var jobSubmitted = false
-            val job = launch {
-                pager.flow.collectLatest {
-                    differ.submitData(lifecycle.lifecycle, it)
-                    jobSubmitted = true
+                val lifecycle = TestLifecycleOwner()
+                var jobSubmitted = false
+                val job = launch {
+                    pager.flow.collectLatest {
+                        differ.submitData(lifecycle.lifecycle, it)
+                        jobSubmitted = true
+                    }
                 }
+
+                advanceUntilIdle()
+
+                val job2 = launch { pager2.flow.collectLatest { differ.submitData(it) } }
+
+                advanceUntilIdle()
+
+                assertTrue(jobSubmitted)
+
+                job.cancel()
+                job2.cancel()
             }
-
-            advanceUntilIdle()
-
-            var job2Submitted = false
-            val job2 = launch {
-                pager2.flow.collectLatest {
-                    differ.submitData(lifecycle.lifecycle, it)
-                    job2Submitted = true
-                }
-            }
-
-            advanceUntilIdle()
-
-            assertTrue(jobSubmitted)
-            assertTrue(job2Submitted)
-
-            job.cancel()
-            job2.cancel()
         }
-    }
+
+    @Test
+    fun submitData_cancelsLast() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pager = Pager(config = PagingConfig(2), initialKey = 50) { TestPagingSource() }
+                val pager2 = Pager(config = PagingConfig(2), initialKey = 50) { TestPagingSource() }
+
+                val lifecycle = TestLifecycleOwner()
+                var jobSubmitted = false
+                val job = launch {
+                    pager.flow.collectLatest {
+                        differ.submitData(lifecycle.lifecycle, it)
+                        jobSubmitted = true
+                    }
+                }
+
+                advanceUntilIdle()
+
+                var job2Submitted = false
+                val job2 = launch {
+                    pager2.flow.collectLatest {
+                        differ.submitData(lifecycle.lifecycle, it)
+                        job2Submitted = true
+                    }
+                }
+
+                advanceUntilIdle()
+
+                assertTrue(jobSubmitted)
+                assertTrue(job2Submitted)
+
+                job.cancel()
+                job2.cancel()
+            }
+        }
 
     @SdkSuppress(minSdkVersion = 21) // b/189492631
     @Test
-    fun submitData_guaranteesOrder() = testScope.runTest {
-        val pager = Pager(config = PagingConfig(2, enablePlaceholders = false), initialKey = 50) {
-            TestPagingSource()
-        }
-
-        val reversedDispatcher = object : CoroutineDispatcher() {
-            var lastBlock: Runnable? = null
-            override fun dispatch(context: CoroutineContext, block: Runnable) {
-                // Save the first block to be dispatched, then run second one first after receiving
-                // calls to dispatch both.
-                val lastBlock = lastBlock
-                if (lastBlock == null) {
-                    this.lastBlock = block
-                } else {
-                    block.run()
-                    lastBlock.run()
+    fun submitData_guaranteesOrder() =
+        testScope.runTest {
+            val pager =
+                Pager(config = PagingConfig(2, enablePlaceholders = false), initialKey = 50) {
+                    TestPagingSource()
                 }
-            }
-        }
 
-        val lifecycle = TestLifecycleOwner()
-        differ.submitData(lifecycle.lifecycle, PagingData.empty())
-        differ.submitData(lifecycle.lifecycle, pager.flow.first()) // Loads 6 items
+            val reversedDispatcher =
+                object : CoroutineDispatcher() {
+                    var lastBlock: Runnable? = null
 
-        // Ensure the second call wins when dispatched in order of execution.
-        advanceUntilIdle()
-        assertEquals(6, differ.itemCount)
-
-        val reversedLifecycle = TestLifecycleOwner(coroutineDispatcher = reversedDispatcher)
-        differ.submitData(reversedLifecycle.lifecycle, PagingData.empty())
-        differ.submitData(reversedLifecycle.lifecycle, pager.flow.first()) // Loads 6 items
-
-        // Ensure the second call wins when dispatched in reverse order of execution.
-        advanceUntilIdle()
-        assertEquals(6, differ.itemCount)
-    }
-
-    @Test
-    fun submitData_cancelsLastSuspendSubmit() = testScope.runTest {
-        withContext(coroutineContext) {
-            val pager = Pager(
-                config = PagingConfig(2),
-                initialKey = 50
-            ) { TestPagingSource() }
-            val pager2 = Pager(
-                config = PagingConfig(2),
-                initialKey = 50
-            ) { TestPagingSource() }
+                    override fun dispatch(context: CoroutineContext, block: Runnable) {
+                        // Save the first block to be dispatched, then run second one first after
+                        // receiving
+                        // calls to dispatch both.
+                        val lastBlock = lastBlock
+                        if (lastBlock == null) {
+                            this.lastBlock = block
+                        } else {
+                            block.run()
+                            lastBlock.run()
+                        }
+                    }
+                }
 
             val lifecycle = TestLifecycleOwner()
-            var jobSubmitted = false
-            val job = launch {
-                pager.flow.collectLatest {
-                    jobSubmitted = true
-                    differ.submitData(it)
-                }
-            }
+            differ.submitData(lifecycle.lifecycle, PagingData.empty())
+            differ.submitData(lifecycle.lifecycle, pager.flow.first()) // Loads 6 items
 
+            // Ensure the second call wins when dispatched in order of execution.
             advanceUntilIdle()
+            assertEquals(6, differ.itemCount)
 
-            var job2Submitted = false
-            val job2 = launch {
-                pager2.flow.collectLatest {
-                    job2Submitted = true
-                    differ.submitData(lifecycle.lifecycle, it)
-                }
-            }
+            val reversedLifecycle = TestLifecycleOwner(coroutineDispatcher = reversedDispatcher)
+            differ.submitData(reversedLifecycle.lifecycle, PagingData.empty())
+            differ.submitData(reversedLifecycle.lifecycle, pager.flow.first()) // Loads 6 items
 
+            // Ensure the second call wins when dispatched in reverse order of execution.
             advanceUntilIdle()
-
-            assertTrue(jobSubmitted)
-            assertTrue(job2Submitted)
-
-            job.cancel()
-            job2.cancel()
+            assertEquals(6, differ.itemCount)
         }
-    }
 
     @Test
-    fun submitData_doesNotCancelCollectionsCoroutine() = testScope.runTest {
-        lateinit var source1: TestPagingSource
-        lateinit var source2: TestPagingSource
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 5,
-                enablePlaceholders = false,
-                prefetchDistance = 1,
-                initialLoadSize = 17
-            ),
-            initialKey = 50
-        ) {
-            TestPagingSource().also {
-                source1 = it
-            }
-        }
-        val pager2 = Pager(
-            config = PagingConfig(
-                pageSize = 7,
-                enablePlaceholders = false,
-                prefetchDistance = 1,
-                initialLoadSize = 19
-            ),
-            initialKey = 50
-        ) {
-            TestPagingSource().also {
-                source2 = it
+    fun submitData_cancelsLastSuspendSubmit() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                val pager = Pager(config = PagingConfig(2), initialKey = 50) { TestPagingSource() }
+                val pager2 = Pager(config = PagingConfig(2), initialKey = 50) { TestPagingSource() }
+
+                val lifecycle = TestLifecycleOwner()
+                var jobSubmitted = false
+                val job = launch {
+                    pager.flow.collectLatest {
+                        jobSubmitted = true
+                        differ.submitData(it)
+                    }
+                }
+
+                advanceUntilIdle()
+
+                var job2Submitted = false
+                val job2 = launch {
+                    pager2.flow.collectLatest {
+                        job2Submitted = true
+                        differ.submitData(lifecycle.lifecycle, it)
+                    }
+                }
+
+                advanceUntilIdle()
+
+                assertTrue(jobSubmitted)
+                assertTrue(job2Submitted)
+
+                job.cancel()
+                job2.cancel()
             }
         }
 
-        // Connect pager1
-        val job1 = launch {
-            pager.flow.collectLatest(differ::submitData)
+    @Test
+    fun submitData_doesNotCancelCollectionsCoroutine() =
+        testScope.runTest {
+            lateinit var source1: TestPagingSource
+            lateinit var source2: TestPagingSource
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 5,
+                            enablePlaceholders = false,
+                            prefetchDistance = 1,
+                            initialLoadSize = 17
+                        ),
+                    initialKey = 50
+                ) {
+                    TestPagingSource().also { source1 = it }
+                }
+            val pager2 =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 7,
+                            enablePlaceholders = false,
+                            prefetchDistance = 1,
+                            initialLoadSize = 19
+                        ),
+                    initialKey = 50
+                ) {
+                    TestPagingSource().also { source2 = it }
+                }
+
+            // Connect pager1
+            val job1 = launch { pager.flow.collectLatest(differ::submitData) }
+            advanceUntilIdle()
+            assertEquals(17, differ.itemCount)
+
+            // Connect pager2, which should override pager1
+            val job2 = launch { pager2.flow.collectLatest(differ::submitData) }
+            advanceUntilIdle()
+            assertEquals(19, differ.itemCount)
+
+            // now if pager1 gets an invalidation, it overrides pager2
+            source1.invalidate()
+            advanceUntilIdle()
+            // Only loads the initial page, since getRefreshKey returns 0, so there is no more
+            // prepend
+            assertEquals(17, differ.itemCount)
+
+            // now if we refresh via differ, it should go into source 1
+            differ.refresh()
+            advanceUntilIdle()
+            // Only loads the initial page, since getRefreshKey returns 0, so there is no more
+            // prepend
+            assertEquals(17, differ.itemCount)
+
+            // now manual set data that'll clear both
+            differ.submitData(PagingData.empty())
+            advanceUntilIdle()
+            assertEquals(0, differ.itemCount)
+
+            // if source2 has new value, we reconnect to that
+            source2.invalidate()
+            advanceUntilIdle()
+            // Only loads the initial page, since getRefreshKey returns 0, so there is no more
+            // prepend
+            assertEquals(19, differ.itemCount)
+
+            job1.cancelAndJoin()
+            job2.cancelAndJoin()
         }
-        advanceUntilIdle()
-        assertEquals(17, differ.itemCount)
-
-        // Connect pager2, which should override pager1
-        val job2 = launch {
-            pager2.flow.collectLatest(differ::submitData)
-        }
-        advanceUntilIdle()
-        assertEquals(19, differ.itemCount)
-
-        // now if pager1 gets an invalidation, it overrides pager2
-        source1.invalidate()
-        advanceUntilIdle()
-        // Only loads the initial page, since getRefreshKey returns 0, so there is no more prepend
-        assertEquals(17, differ.itemCount)
-
-        // now if we refresh via differ, it should go into source 1
-        differ.refresh()
-        advanceUntilIdle()
-        // Only loads the initial page, since getRefreshKey returns 0, so there is no more prepend
-        assertEquals(17, differ.itemCount)
-
-        // now manual set data that'll clear both
-        differ.submitData(PagingData.empty())
-        advanceUntilIdle()
-        assertEquals(0, differ.itemCount)
-
-        // if source2 has new value, we reconnect to that
-        source2.invalidate()
-        advanceUntilIdle()
-        // Only loads the initial page, since getRefreshKey returns 0, so there is no more prepend
-        assertEquals(19, differ.itemCount)
-
-        job1.cancelAndJoin()
-        job2.cancelAndJoin()
-    }
 
     /**
      * This test makes sure we don't inject unnecessary IDLE events when pages are cached. Caching
      * tests already validate that but it is still good to have an integration test to clarify end
-     * to end expected behavior.
-     * Repro for b/1987328.
+     * to end expected behavior. Repro for b/1987328.
      */
     @SdkSuppress(minSdkVersion = 21) // b/189492631
     @Test
-    fun refreshEventsAreImmediate_cached() = testScope.runTest {
-        val loadStates = mutableListOf<CombinedLoadStates>()
-        differ.addLoadStateListener { loadStates.add(it) }
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 10,
-                enablePlaceholders = false,
-                initialLoadSize = 30
-            )
-        ) { TestPagingSource() }
-        val job = launch {
-            pager.flow.cachedIn(this).collectLatest { differ.submitData(it) }
+    fun refreshEventsAreImmediate_cached() =
+        testScope.runTest {
+            val loadStates = mutableListOf<CombinedLoadStates>()
+            differ.addLoadStateListener { loadStates.add(it) }
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            initialLoadSize = 30
+                        )
+                ) {
+                    TestPagingSource()
+                }
+            val job = launch { pager.flow.cachedIn(this).collectLatest { differ.submitData(it) } }
+            advanceUntilIdle()
+            assertThat(loadStates.lastOrNull()?.prepend?.endOfPaginationReached).isTrue()
+            loadStates.clear()
+            differ.refresh()
+            advanceUntilIdle()
+            assertThat(loadStates)
+                .containsExactly(
+                    localLoadStatesOf(
+                        prependLocal = NotLoading(endOfPaginationReached = false),
+                        refreshLocal = Loading
+                    ),
+                    localLoadStatesOf(
+                        prependLocal = NotLoading(endOfPaginationReached = true),
+                        refreshLocal = NotLoading(endOfPaginationReached = false)
+                    )
+                )
+            job.cancelAndJoin()
         }
-        advanceUntilIdle()
-        assertThat(loadStates.lastOrNull()?.prepend?.endOfPaginationReached).isTrue()
-        loadStates.clear()
-        differ.refresh()
-        advanceUntilIdle()
-        assertThat(loadStates).containsExactly(
-            localLoadStatesOf(
-                prependLocal = NotLoading(endOfPaginationReached = false),
-                refreshLocal = Loading
-            ),
-            localLoadStatesOf(
-                prependLocal = NotLoading(endOfPaginationReached = true),
-                refreshLocal = NotLoading(endOfPaginationReached = false)
-            )
-        )
-        job.cancelAndJoin()
-    }
 
     @SdkSuppress(minSdkVersion = 21) // b/189492631
     @Test
-    fun loadStateFlowSynchronouslyUpdates() = testScope.runTest {
-        var combinedLoadStates: CombinedLoadStates? = null
-        var itemCount = -1
-        val loadStateJob = launch {
-            differ.loadStateFlow.collect {
-                combinedLoadStates = it
-                itemCount = differ.itemCount
-            }
-        }
-
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 10,
-                enablePlaceholders = false,
-                initialLoadSize = 10,
-                prefetchDistance = 1
-            ),
-            initialKey = 50
-        ) { TestPagingSource() }
-        val job = launch {
-            pager.flow.collectLatest { differ.submitData(it) }
-        }
-
-        // Initial refresh
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(10, itemCount)
-        assertEquals(10, differ.itemCount)
-
-        // Append
-        differ.getItem(9)
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(20, itemCount)
-        assertEquals(20, differ.itemCount)
-
-        // Prepend
-        differ.getItem(0)
-        advanceUntilIdle()
-        assertEquals(localLoadStatesOf(), combinedLoadStates)
-        assertEquals(30, itemCount)
-        assertEquals(30, differ.itemCount)
-
-        job.cancel()
-        loadStateJob.cancel()
-    }
-
-    @Test
-    fun loadStateListenerSynchronouslyUpdates() = testScope.runTest {
-        withContext(coroutineContext) {
+    fun loadStateFlowSynchronouslyUpdates() =
+        testScope.runTest {
             var combinedLoadStates: CombinedLoadStates? = null
             var itemCount = -1
-            differ.addLoadStateListener {
-                combinedLoadStates = it
-                itemCount = differ.itemCount
+            val loadStateJob = launch {
+                differ.loadStateFlow.collect {
+                    combinedLoadStates = it
+                    itemCount = differ.itemCount
+                }
             }
 
-            val pager = Pager(
-                config = PagingConfig(
-                    pageSize = 10,
-                    enablePlaceholders = false,
-                    initialLoadSize = 10,
-                    prefetchDistance = 1
-                ),
-                initialKey = 50
-            ) { TestPagingSource() }
-            val job = launch {
-                pager.flow.collectLatest { differ.submitData(it) }
-            }
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            initialLoadSize = 10,
+                            prefetchDistance = 1
+                        ),
+                    initialKey = 50
+                ) {
+                    TestPagingSource()
+                }
+            val job = launch { pager.flow.collectLatest { differ.submitData(it) } }
 
             // Initial refresh
             advanceUntilIdle()
@@ -650,73 +603,134 @@
             assertEquals(30, differ.itemCount)
 
             job.cancel()
+            loadStateJob.cancel()
         }
-    }
 
     @Test
-    fun listUpdateCallbackSynchronouslyUpdates() = testScope.runTest {
-        withContext(coroutineContext) {
-            // Keep track of .snapshot() result within each ListUpdateCallback
-            val initialSnapshot: ItemSnapshotList<Int> = ItemSnapshotList(0, 0, emptyList())
-            var onInsertedSnapshot = initialSnapshot
-            var onRemovedSnapshot = initialSnapshot
-
-            val listUpdateCallback = object : ListUpdateCallback {
-                lateinit var differ: AsyncPagingDataDiffer<Int>
-
-                override fun onChanged(position: Int, count: Int, payload: Any?) {
-                    // TODO: Trigger this callback so we can assert state at this point as well
+    fun loadStateListenerSynchronouslyUpdates() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                var combinedLoadStates: CombinedLoadStates? = null
+                var itemCount = -1
+                differ.addLoadStateListener {
+                    combinedLoadStates = it
+                    itemCount = differ.itemCount
                 }
 
-                override fun onMoved(fromPosition: Int, toPosition: Int) {
-                    // TODO: Trigger this callback so we can assert state at this point as well
-                }
-
-                override fun onInserted(position: Int, count: Int) {
-                    onInsertedSnapshot = differ.snapshot()
-                }
-
-                override fun onRemoved(position: Int, count: Int) {
-                    onRemovedSnapshot = differ.snapshot()
-                }
-            }
-
-            val differ = AsyncPagingDataDiffer(
-                diffCallback = object : DiffUtil.ItemCallback<Int>() {
-                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
+                val pager =
+                    Pager(
+                        config =
+                            PagingConfig(
+                                pageSize = 10,
+                                enablePlaceholders = false,
+                                initialLoadSize = 10,
+                                prefetchDistance = 1
+                            ),
+                        initialKey = 50
+                    ) {
+                        TestPagingSource()
                     }
+                val job = launch { pager.flow.collectLatest { differ.submitData(it) } }
 
-                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
-                },
-                updateCallback = listUpdateCallback,
-                mainDispatcher = Dispatchers.Main,
-                workerDispatcher = Dispatchers.Main,
-            ).also {
-                listUpdateCallback.differ = it
+                // Initial refresh
+                advanceUntilIdle()
+                assertEquals(localLoadStatesOf(), combinedLoadStates)
+                assertEquals(10, itemCount)
+                assertEquals(10, differ.itemCount)
+
+                // Append
+                differ.getItem(9)
+                advanceUntilIdle()
+                assertEquals(localLoadStatesOf(), combinedLoadStates)
+                assertEquals(20, itemCount)
+                assertEquals(20, differ.itemCount)
+
+                // Prepend
+                differ.getItem(0)
+                advanceUntilIdle()
+                assertEquals(localLoadStatesOf(), combinedLoadStates)
+                assertEquals(30, itemCount)
+                assertEquals(30, differ.itemCount)
+
+                job.cancel()
             }
-
-            // Initial insert; this only triggers onInserted
-            differ.submitData(PagingData.from(listOf(0)))
-            advanceUntilIdle()
-
-            val firstList = ItemSnapshotList(0, 0, listOf(0))
-            assertEquals(firstList, differ.snapshot())
-            assertEquals(firstList, onInsertedSnapshot)
-            assertEquals(initialSnapshot, onRemovedSnapshot)
-
-            // Switch item to 1; this triggers onInserted + onRemoved
-            differ.submitData(PagingData.from(listOf(1)))
-            advanceUntilIdle()
-
-            val secondList = ItemSnapshotList(0, 0, listOf(1))
-            assertEquals(secondList, differ.snapshot())
-            assertEquals(secondList, onInsertedSnapshot)
-            assertEquals(secondList, onRemovedSnapshot)
         }
-    }
+
+    @Test
+    fun listUpdateCallbackSynchronouslyUpdates() =
+        testScope.runTest {
+            withContext(coroutineContext) {
+                // Keep track of .snapshot() result within each ListUpdateCallback
+                val initialSnapshot: ItemSnapshotList<Int> = ItemSnapshotList(0, 0, emptyList())
+                var onInsertedSnapshot = initialSnapshot
+                var onRemovedSnapshot = initialSnapshot
+
+                val listUpdateCallback =
+                    object : ListUpdateCallback {
+                        lateinit var differ: AsyncPagingDataDiffer<Int>
+
+                        override fun onChanged(position: Int, count: Int, payload: Any?) {
+                            // TODO: Trigger this callback so we can assert state at this point as
+                            // well
+                        }
+
+                        override fun onMoved(fromPosition: Int, toPosition: Int) {
+                            // TODO: Trigger this callback so we can assert state at this point as
+                            // well
+                        }
+
+                        override fun onInserted(position: Int, count: Int) {
+                            onInsertedSnapshot = differ.snapshot()
+                        }
+
+                        override fun onRemoved(position: Int, count: Int) {
+                            onRemovedSnapshot = differ.snapshot()
+                        }
+                    }
+
+                val differ =
+                    AsyncPagingDataDiffer(
+                            diffCallback =
+                                object : DiffUtil.ItemCallback<Int>() {
+                                    override fun areContentsTheSame(
+                                        oldItem: Int,
+                                        newItem: Int
+                                    ): Boolean {
+                                        return oldItem == newItem
+                                    }
+
+                                    override fun areItemsTheSame(
+                                        oldItem: Int,
+                                        newItem: Int
+                                    ): Boolean {
+                                        return oldItem == newItem
+                                    }
+                                },
+                            updateCallback = listUpdateCallback,
+                            mainDispatcher = Dispatchers.Main,
+                            workerDispatcher = Dispatchers.Main,
+                        )
+                        .also { listUpdateCallback.differ = it }
+
+                // Initial insert; this only triggers onInserted
+                differ.submitData(PagingData.from(listOf(0)))
+                advanceUntilIdle()
+
+                val firstList = ItemSnapshotList(0, 0, listOf(0))
+                assertEquals(firstList, differ.snapshot())
+                assertEquals(firstList, onInsertedSnapshot)
+                assertEquals(initialSnapshot, onRemovedSnapshot)
+
+                // Switch item to 1; this triggers onInserted + onRemoved
+                differ.submitData(PagingData.from(listOf(1)))
+                advanceUntilIdle()
+
+                val secondList = ItemSnapshotList(0, 0, listOf(1))
+                assertEquals(secondList, differ.snapshot())
+                assertEquals(secondList, onInsertedSnapshot)
+                assertEquals(secondList, onRemovedSnapshot)
+            }
+        }
 
     @Test
     fun loadStateListenerYieldsToRecyclerView() {
@@ -725,48 +739,53 @@
         val mainDispatcher = Dispatchers.Main.immediate
         runTest {
             val events = mutableListOf<String>()
-            val asyncDiffer = AsyncPagingDataDiffer(
-                diffCallback = object : DiffUtil.ItemCallback<Int>() {
-                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
+            val asyncDiffer =
+                AsyncPagingDataDiffer(
+                    diffCallback =
+                        object : DiffUtil.ItemCallback<Int>() {
+                            override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
 
-                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
-                },
-                // override default Dispatcher.Main with Dispatchers.main.immediate so that
-                // main tasks run without queueing, we need this to simulate real life order of
-                // events
-                mainDispatcher = mainDispatcher,
-                updateCallback = listUpdateCapture,
-                workerDispatcher = backgroundScope.coroutineContext
-            )
-
-            val pager = Pager(
-                config = PagingConfig(
-                    pageSize = 10,
-                    enablePlaceholders = false,
-                    prefetchDistance = 3,
-                    initialLoadSize = 10,
+                            override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
+                        },
+                    // override default Dispatcher.Main with Dispatchers.main.immediate so that
+                    // main tasks run without queueing, we need this to simulate real life order of
+                    // events
+                    mainDispatcher = mainDispatcher,
+                    updateCallback = listUpdateCapture,
+                    workerDispatcher = backgroundScope.coroutineContext
                 )
-            ) { TestPagingSource() }
 
-            asyncDiffer.addLoadStateListener {
-                events.add(it.toString())
-            }
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            prefetchDistance = 3,
+                            initialLoadSize = 10,
+                        )
+                ) {
+                    TestPagingSource()
+                }
 
-            val collectPager = launch(mainDispatcher) {
-                pager.flow.collectLatest { asyncDiffer.submitData(it) }
-            }
+            asyncDiffer.addLoadStateListener { events.add(it.toString()) }
+
+            val collectPager =
+                launch(mainDispatcher) { pager.flow.collectLatest { asyncDiffer.submitData(it) } }
 
             // wait till we get all expected events
             asyncDiffer.loadStateFlow.awaitNotLoading()
 
-            assertThat(events).containsExactly(
-                localLoadStatesOf(refreshLocal = Loading).toString(),
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading).toString(),
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
             events.clear()
 
             // Simulate RV dispatch layout which calls multi onBind --> getItem. LoadStateUpdates
@@ -784,15 +803,15 @@
             asyncDiffer.loadStateFlow.awaitNotLoading()
 
             // make sure we received the LoadStateUpdate only after dispatchLayout ended
-            assertThat(events).containsExactly(
-                "start dispatchLayout",
-                "end dispatchLayout",
-                localLoadStatesOf(
-                    appendLocal = Loading,
-                    prependLocal = NotLoading(true)
-                ).toString(),
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    "start dispatchLayout",
+                    "end dispatchLayout",
+                    localLoadStatesOf(appendLocal = Loading, prependLocal = NotLoading(true))
+                        .toString(),
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
 
             collectPager.cancel()
         }
@@ -805,52 +824,58 @@
         val mainDispatcher = Dispatchers.Main.immediate
         runTest {
             val events = mutableListOf<String>()
-            val asyncDiffer = AsyncPagingDataDiffer(
-                diffCallback = object : DiffUtil.ItemCallback<Int>() {
-                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
+            val asyncDiffer =
+                AsyncPagingDataDiffer(
+                    diffCallback =
+                        object : DiffUtil.ItemCallback<Int>() {
+                            override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
 
-                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
-                },
-                // override default Dispatcher.Main with Dispatchers.main.immediate so that
-                // main tasks run without queueing, we need this to simulate real life order of
-                // events
-                mainDispatcher = mainDispatcher,
-                updateCallback = listUpdateCapture,
-                workerDispatcher = backgroundScope.coroutineContext
-            )
-
-            val pager = Pager(
-                config = PagingConfig(
-                    pageSize = 10,
-                    enablePlaceholders = false,
-                    prefetchDistance = 3,
-                    initialLoadSize = 10,
+                            override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
+                        },
+                    // override default Dispatcher.Main with Dispatchers.main.immediate so that
+                    // main tasks run without queueing, we need this to simulate real life order of
+                    // events
+                    mainDispatcher = mainDispatcher,
+                    updateCallback = listUpdateCapture,
+                    workerDispatcher = backgroundScope.coroutineContext
                 )
-            ) { TestPagingSource() }
 
-            val collectLoadState = launch(mainDispatcher) {
-                asyncDiffer.loadStateFlow.collect {
-                    events.add(it.toString())
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            prefetchDistance = 3,
+                            initialLoadSize = 10,
+                        )
+                ) {
+                    TestPagingSource()
                 }
-            }
 
-            val collectPager = launch(mainDispatcher) {
-                pager.flow.collectLatest { asyncDiffer.submitData(it) }
-            }
+            val collectLoadState =
+                launch(mainDispatcher) {
+                    asyncDiffer.loadStateFlow.collect { events.add(it.toString()) }
+                }
+
+            val collectPager =
+                launch(mainDispatcher) { pager.flow.collectLatest { asyncDiffer.submitData(it) } }
 
             // wait till we get all expected events
             asyncDiffer.loadStateFlow.awaitNotLoading()
 
             // withContext prevents flake in API 28 where sometimes we start asserting before
             // the NotLoading state is added to events list
-            assertThat(events).containsExactly(
-                localLoadStatesOf(refreshLocal = Loading).toString(),
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    localLoadStatesOf(refreshLocal = Loading).toString(),
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
 
             events.clear()
 
@@ -869,15 +894,15 @@
             asyncDiffer.loadStateFlow.awaitNotLoading()
 
             // make sure we received the LoadStateUpdate only after dispatchLayout ended
-            assertThat(events).containsExactly(
-                "start dispatchLayout",
-                "end dispatchLayout",
-                localLoadStatesOf(
-                    appendLocal = Loading,
-                    prependLocal = NotLoading(true)
-                ).toString(),
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    "start dispatchLayout",
+                    "end dispatchLayout",
+                    localLoadStatesOf(appendLocal = Loading, prependLocal = NotLoading(true))
+                        .toString(),
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
 
             collectLoadState.cancel()
             collectPager.cancel()
@@ -891,68 +916,74 @@
         val mainDispatcher = Dispatchers.Main.immediate
         runTest {
             val events = mutableListOf<String>()
-            val asyncDiffer = AsyncPagingDataDiffer(
-                diffCallback = object : DiffUtil.ItemCallback<Int>() {
-                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
+            val asyncDiffer =
+                AsyncPagingDataDiffer(
+                    diffCallback =
+                        object : DiffUtil.ItemCallback<Int>() {
+                            override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
 
-                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
-                },
-                // override default Dispatcher.Main with Dispatchers.main.immediate so that
-                // main tasks run without queueing, we need this to simulate real life order of
-                // events
-                mainDispatcher = mainDispatcher,
-                updateCallback = listUpdateCapture,
-                workerDispatcher = backgroundScope.coroutineContext
-            )
-
-            val pager = Pager(
-                config = PagingConfig(
-                    pageSize = 10,
-                    enablePlaceholders = false,
-                    prefetchDistance = 3,
-                    initialLoadSize = 10,
+                            override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
+                        },
+                    // override default Dispatcher.Main with Dispatchers.main.immediate so that
+                    // main tasks run without queueing, we need this to simulate real life order of
+                    // events
+                    mainDispatcher = mainDispatcher,
+                    updateCallback = listUpdateCapture,
+                    workerDispatcher = backgroundScope.coroutineContext
                 )
-            ) { TestPagingSource() }
 
-            val collectInGetItem = launch(mainDispatcher) {
-                asyncDiffer.inGetItem.collect {
-                    events.add("inGetItem $it")
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            prefetchDistance = 3,
+                            initialLoadSize = 10,
+                        )
+                ) {
+                    TestPagingSource()
                 }
-            }
 
-            val collectLoadState = launch(mainDispatcher) {
-                asyncDiffer.loadStateFlow.collect {
-                    events.add(it.toString())
+            val collectInGetItem =
+                launch(mainDispatcher) {
+                    asyncDiffer.inGetItem.collect { events.add("inGetItem $it") }
                 }
-            }
+
+            val collectLoadState =
+                launch(mainDispatcher) {
+                    asyncDiffer.loadStateFlow.collect { events.add(it.toString()) }
+                }
 
             // since we cannot intercept the internal loadStateFlow, we collect from its source
             // flow to see when the internal flow first collected the LoadState before
             // waiting for getItem
-            val collectParallelLoadState = launch(mainDispatcher) {
-                asyncDiffer.presenter.loadStateFlow.filterNotNull().collect {
-                    events.add("internal flow collected")
+            val collectParallelLoadState =
+                launch(mainDispatcher) {
+                    asyncDiffer.presenter.loadStateFlow.filterNotNull().collect {
+                        events.add("internal flow collected")
+                    }
                 }
-            }
 
-            val collectPager = launch(mainDispatcher) {
-                pager.flow.collectLatest { asyncDiffer.submitData(it) }
-            }
+            val collectPager =
+                launch(mainDispatcher) { pager.flow.collectLatest { asyncDiffer.submitData(it) } }
 
             // wait till we get all expected events
             asyncDiffer.loadStateFlow.awaitNotLoading()
 
-            assertThat(events).containsExactly(
-                "inGetItem false",
-                "internal flow collected",
-                localLoadStatesOf(refreshLocal = Loading).toString(),
-                "internal flow collected",
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    "inGetItem false",
+                    "internal flow collected",
+                    localLoadStatesOf(refreshLocal = Loading).toString(),
+                    "internal flow collected",
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
 
             // reset events count
             events.clear()
@@ -973,26 +1004,26 @@
 
             // assert two things: loadStates were received after dispatchLayout and that
             // the internal flow did collect a LoadState while inGetItem is true but had waited
-            assertThat(events).containsExactly(
-                "start dispatchLayout",
-                // getItem(6)
-                "inGetItem true",
-                "inGetItem false",
-                // getItem(7) triggers append
-                "inGetItem true",
-                "internal flow collected",
-                "inGetItem false",
-                // getItem(8)
-                "inGetItem true",
-                "inGetItem false",
-                "end dispatchLayout",
-                localLoadStatesOf(
-                    appendLocal = Loading,
-                    prependLocal = NotLoading(true)
-                ).toString(),
-                "internal flow collected",
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    "start dispatchLayout",
+                    // getItem(6)
+                    "inGetItem true",
+                    "inGetItem false",
+                    // getItem(7) triggers append
+                    "inGetItem true",
+                    "internal flow collected",
+                    "inGetItem false",
+                    // getItem(8)
+                    "inGetItem true",
+                    "inGetItem false",
+                    "end dispatchLayout",
+                    localLoadStatesOf(appendLocal = Loading, prependLocal = NotLoading(true))
+                        .toString(),
+                    "internal flow collected",
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
 
             collectInGetItem.cancel()
             collectLoadState.cancel()
@@ -1008,38 +1039,43 @@
         val mainDispatcher = Dispatchers.Main.immediate
         runTest {
             val events = mutableListOf<String>()
-            val asyncDiffer = AsyncPagingDataDiffer(
-                diffCallback = object : DiffUtil.ItemCallback<Int>() {
-                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
+            val asyncDiffer =
+                AsyncPagingDataDiffer(
+                    diffCallback =
+                        object : DiffUtil.ItemCallback<Int>() {
+                            override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
 
-                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
-                },
-                // override default Dispatcher.Main with Dispatchers.main.immediate so that
-                // main tasks run without queueing, we need this to simulate real life order of
-                // events
-                mainDispatcher = mainDispatcher,
-                updateCallback = listUpdateCapture,
-                workerDispatcher = backgroundScope.coroutineContext
-            )
-
-            val pager = Pager(
-                config = PagingConfig(
-                    pageSize = 10,
-                    enablePlaceholders = false,
-                    prefetchDistance = 3,
-                    initialLoadSize = 10,
+                            override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
+                        },
+                    // override default Dispatcher.Main with Dispatchers.main.immediate so that
+                    // main tasks run without queueing, we need this to simulate real life order of
+                    // events
+                    mainDispatcher = mainDispatcher,
+                    updateCallback = listUpdateCapture,
+                    workerDispatcher = backgroundScope.coroutineContext
                 )
-            ) { TestPagingSource() }
 
-            val collectInGetItem = launch(mainDispatcher) {
-                asyncDiffer.inGetItem.collect {
-                    events.add("inGetItem $it")
+            val pager =
+                Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 10,
+                            enablePlaceholders = false,
+                            prefetchDistance = 3,
+                            initialLoadSize = 10,
+                        )
+                ) {
+                    TestPagingSource()
                 }
-            }
+
+            val collectInGetItem =
+                launch(mainDispatcher) {
+                    asyncDiffer.inGetItem.collect { events.add("inGetItem $it") }
+                }
 
             // override internal loadStateListener that is registered with PagingDataPresenter
             asyncDiffer.addLoadStateListenerInternal {
@@ -1048,24 +1084,23 @@
             }
 
             // add actual UI listener
-            asyncDiffer.addLoadStateListener {
-                events.add(it.toString())
-            }
+            asyncDiffer.addLoadStateListener { events.add(it.toString()) }
 
-            val collectPager = launch(mainDispatcher) {
-                pager.flow.collectLatest { asyncDiffer.submitData(it) }
-            }
+            val collectPager =
+                launch(mainDispatcher) { pager.flow.collectLatest { asyncDiffer.submitData(it) } }
 
             // wait till we get all expected events
             asyncDiffer.loadStateFlow.awaitNotLoading()
 
-            assertThat(events).containsExactly(
-                "inGetItem false",
-                "internal listener invoked",
-                localLoadStatesOf(refreshLocal = Loading).toString(),
-                "internal listener invoked",
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    "inGetItem false",
+                    "internal listener invoked",
+                    localLoadStatesOf(refreshLocal = Loading).toString(),
+                    "internal listener invoked",
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
 
             // reset events count
             events.clear()
@@ -1086,26 +1121,26 @@
 
             // assert two things: loadStates were received after dispatchLayout and that
             // the internal listener was invoked while inGetItem is true but had waited
-            assertThat(events).containsExactly(
-                "start dispatchLayout",
-                // getItem(6)
-                "inGetItem true",
-                "inGetItem false",
-                // getItem(7) triggers append
-                "inGetItem true",
-                "internal listener invoked",
-                "inGetItem false",
-                // getItem(8)
-                "inGetItem true",
-                "inGetItem false",
-                "end dispatchLayout",
-                localLoadStatesOf(
-                    appendLocal = Loading,
-                    prependLocal = NotLoading(true)
-                ).toString(),
-                "internal listener invoked",
-                localLoadStatesOf(prependLocal = NotLoading(true)).toString()
-            ).inOrder()
+            assertThat(events)
+                .containsExactly(
+                    "start dispatchLayout",
+                    // getItem(6)
+                    "inGetItem true",
+                    "inGetItem false",
+                    // getItem(7) triggers append
+                    "inGetItem true",
+                    "internal listener invoked",
+                    "inGetItem false",
+                    // getItem(8)
+                    "inGetItem true",
+                    "inGetItem false",
+                    "end dispatchLayout",
+                    localLoadStatesOf(appendLocal = Loading, prependLocal = NotLoading(true))
+                        .toString(),
+                    "internal listener invoked",
+                    localLoadStatesOf(prependLocal = NotLoading(true)).toString()
+                )
+                .inOrder()
 
             collectInGetItem.cancel()
             collectPager.cancel()
@@ -1113,241 +1148,207 @@
     }
 
     @Test
-    fun insertPageEmpty() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 0,
-        newNulls = 0,
-        prependEvents = emptyList(),
-        appendEvents = emptyList()
-    )
-
-    @Test
-    fun insertPageSimple() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 2,
-        newNulls = 0,
-        prependEvents = listOf(
-            Inserted(0, 2)
-        ),
-        appendEvents = listOf(
-            Inserted(2, 2)
+    fun insertPageEmpty() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 0,
+            newNulls = 0,
+            prependEvents = emptyList(),
+            appendEvents = emptyList()
         )
-    )
 
     @Test
-    fun insertPageSimplePlaceholders() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 4,
-        newItems = 2,
-        newNulls = 2,
-        prependEvents = listOf(
-            Changed(2, 2, null)
-        ),
-        appendEvents = listOf(
-            Changed(2, 2, null)
+    fun insertPageSimple() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 2,
+            newNulls = 0,
+            prependEvents = listOf(Inserted(0, 2)),
+            appendEvents = listOf(Inserted(2, 2))
         )
-    )
 
     @Test
-    fun insertPageInitPlaceholders() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 2,
-        newNulls = 3,
-        prependEvents = listOf(
-            Inserted(0, 2),
-            Inserted(0, 3)
-        ),
-        appendEvents = listOf(
-            // NOTE: theoretically these could be combined
-            Inserted(2, 2),
-            Inserted(4, 3)
+    fun insertPageSimplePlaceholders() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 4,
+            newItems = 2,
+            newNulls = 2,
+            prependEvents = listOf(Changed(2, 2, null)),
+            appendEvents = listOf(Changed(2, 2, null))
         )
-    )
 
     @Test
-    fun insertPageInitJustPlaceholders() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 0,
-        newItems = 0,
-        newNulls = 3,
-        prependEvents = listOf(
-            Inserted(0, 3)
-        ),
-        appendEvents = listOf(
-            Inserted(2, 3)
+    fun insertPageInitPlaceholders() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 2,
+            newNulls = 3,
+            prependEvents = listOf(Inserted(0, 2), Inserted(0, 3)),
+            appendEvents =
+                listOf(
+                    // NOTE: theoretically these could be combined
+                    Inserted(2, 2),
+                    Inserted(4, 3)
+                )
         )
-    )
 
     @Test
-    fun insertPageInsertNulls() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 3,
-        newItems = 2,
-        newNulls = 2,
-        prependEvents = listOf(
-            Changed(1, 2, null),
-            Inserted(0, 1)
-        ),
-        appendEvents = listOf(
-            Changed(2, 2, null),
-            Inserted(5, 1)
+    fun insertPageInitJustPlaceholders() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 0,
+            newItems = 0,
+            newNulls = 3,
+            prependEvents = listOf(Inserted(0, 3)),
+            appendEvents = listOf(Inserted(2, 3))
         )
-    )
 
     @Test
-    fun insertPageRemoveNulls() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 7,
-        newItems = 2,
-        newNulls = 0,
-        prependEvents = listOf(
-            Changed(5, 2, null),
-            Removed(0, 5)
-        ),
-        appendEvents = listOf(
-            Changed(2, 2, null),
-            Removed(4, 5)
+    fun insertPageInsertNulls() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 3,
+            newItems = 2,
+            newNulls = 2,
+            prependEvents = listOf(Changed(1, 2, null), Inserted(0, 1)),
+            appendEvents = listOf(Changed(2, 2, null), Inserted(5, 1))
         )
-    )
 
     @Test
-    fun insertPageReduceNulls() = verifyPrependAppendCallback(
-        initialItems = 2,
-        initialNulls = 10,
-        newItems = 3,
-        newNulls = 4,
-        prependEvents = listOf(
-            Changed(7, 3, null),
-            Removed(0, 3)
-        ),
-        appendEvents = listOf(
-            Changed(2, 3, null),
-            Removed(9, 3)
+    fun insertPageRemoveNulls() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 7,
+            newItems = 2,
+            newNulls = 0,
+            prependEvents = listOf(Changed(5, 2, null), Removed(0, 5)),
+            appendEvents = listOf(Changed(2, 2, null), Removed(4, 5))
         )
-    )
 
     @Test
-    fun dropPageMulti() = verifyDrop(
-        initialPages = listOf(
-            listOf(1, 2),
-            listOf(3, 4),
-            listOf(5)
-        ),
-        initialNulls = 0,
-        newNulls = 0,
-        pagesToDrop = 2,
-        startEvents = listOf(Removed(0, 3)),
-        endEvents = listOf(Removed(2, 3))
-    )
-
-    @Test
-    fun dropPageReturnNulls() = verifyDrop(
-        initialPages = listOf(
-            listOf(1, 2),
-            listOf(3, 4),
-            listOf(5)
-        ),
-        initialNulls = 1,
-        newNulls = 4,
-        pagesToDrop = 2,
-        startEvents = listOf(Changed(1, 3, null)),
-        endEvents = listOf(Changed(2, 3, null))
-    )
-
-    @Test
-    fun dropPageFromNoNullsToHavingNulls() = verifyDrop(
-        initialPages = listOf(
-            listOf(1, 2),
-            listOf(3, 4),
-            listOf(5)
-        ),
-        initialNulls = 0,
-        newNulls = 3,
-        pagesToDrop = 2,
-        startEvents = listOf(
-            // [null, null, null, 'a', 'b']
-            Changed(0, 3, null)
-        ),
-        endEvents = listOf(
-            // ['a', 'b', null, null, null]
-            Changed(2, 3, null)
+    fun insertPageReduceNulls() =
+        verifyPrependAppendCallback(
+            initialItems = 2,
+            initialNulls = 10,
+            newItems = 3,
+            newNulls = 4,
+            prependEvents = listOf(Changed(7, 3, null), Removed(0, 3)),
+            appendEvents = listOf(Changed(2, 3, null), Removed(9, 3))
         )
-    )
 
     @Test
-    fun dropPageChangeRemovePlaceholders() = verifyDrop(
-        initialPages = listOf(
-            listOf(1, 2),
-            listOf(3, 4),
-            listOf(5)
-        ),
-        initialNulls = 2,
-        newNulls = 4,
-        pagesToDrop = 2,
-        startEvents = listOf(
-            // [null, 'e', 'c', 'd', 'a', 'b']
-            Removed(0, 1),
-            // [null, null, null, null, 'a', 'b']
-            Changed(1, 3, null)
-        ),
-        endEvents = listOf(
-            // ['a', 'b', 'c', 'd', 'e', null]
-            Removed(6, 1),
-            // ['a', 'b', null, null, null, null]
-            Changed(2, 3, null)
+    fun dropPageMulti() =
+        verifyDrop(
+            initialPages = listOf(listOf(1, 2), listOf(3, 4), listOf(5)),
+            initialNulls = 0,
+            newNulls = 0,
+            pagesToDrop = 2,
+            startEvents = listOf(Removed(0, 3)),
+            endEvents = listOf(Removed(2, 3))
         )
-    )
 
     @Test
-    fun dropPageChangeRemoveItems() = verifyDrop(
-        initialPages = listOf(
-            listOf(1, 2),
-            listOf(3, 4),
-            listOf(5)
-        ),
-        initialNulls = 0,
-        newNulls = 1,
-        pagesToDrop = 2,
-        startEvents = listOf(
-            // ['d', 'a', 'b']
-            Removed(0, 2),
-            // [null, 'a', 'b']
-            Changed(0, 1, null)
-        ),
-        endEvents = listOf(
-            // ['a', 'b', 'c']
-            Removed(3, 2),
-            // ['a', 'b', null]
-            Changed(2, 1, null)
+    fun dropPageReturnNulls() =
+        verifyDrop(
+            initialPages = listOf(listOf(1, 2), listOf(3, 4), listOf(5)),
+            initialNulls = 1,
+            newNulls = 4,
+            pagesToDrop = 2,
+            startEvents = listOf(Changed(1, 3, null)),
+            endEvents = listOf(Changed(2, 3, null))
         )
-    )
 
     @Test
-    fun dropPageChangeDoubleRemove() = verifyDrop(
-        initialPages = listOf(
-            listOf(1, 2),
-            listOf(3, 4),
-            listOf(5)
-        ),
-        initialNulls = 3,
-        newNulls = 1,
-        pagesToDrop = 2,
-        startEvents = listOf(
-            // ['d', 'a', 'b']
-            Removed(0, 5),
-            // [null, 'a', 'b']
-            Changed(0, 1, null)
-        ),
-        endEvents = listOf(
-            // ['a', 'b', 'c']
-            Removed(3, 5),
-            // ['a', 'b', null]
-            Changed(2, 1, null)
+    fun dropPageFromNoNullsToHavingNulls() =
+        verifyDrop(
+            initialPages = listOf(listOf(1, 2), listOf(3, 4), listOf(5)),
+            initialNulls = 0,
+            newNulls = 3,
+            pagesToDrop = 2,
+            startEvents =
+                listOf(
+                    // [null, null, null, 'a', 'b']
+                    Changed(0, 3, null)
+                ),
+            endEvents =
+                listOf(
+                    // ['a', 'b', null, null, null]
+                    Changed(2, 3, null)
+                )
         )
-    )
+
+    @Test
+    fun dropPageChangeRemovePlaceholders() =
+        verifyDrop(
+            initialPages = listOf(listOf(1, 2), listOf(3, 4), listOf(5)),
+            initialNulls = 2,
+            newNulls = 4,
+            pagesToDrop = 2,
+            startEvents =
+                listOf(
+                    // [null, 'e', 'c', 'd', 'a', 'b']
+                    Removed(0, 1),
+                    // [null, null, null, null, 'a', 'b']
+                    Changed(1, 3, null)
+                ),
+            endEvents =
+                listOf(
+                    // ['a', 'b', 'c', 'd', 'e', null]
+                    Removed(6, 1),
+                    // ['a', 'b', null, null, null, null]
+                    Changed(2, 3, null)
+                )
+        )
+
+    @Test
+    fun dropPageChangeRemoveItems() =
+        verifyDrop(
+            initialPages = listOf(listOf(1, 2), listOf(3, 4), listOf(5)),
+            initialNulls = 0,
+            newNulls = 1,
+            pagesToDrop = 2,
+            startEvents =
+                listOf(
+                    // ['d', 'a', 'b']
+                    Removed(0, 2),
+                    // [null, 'a', 'b']
+                    Changed(0, 1, null)
+                ),
+            endEvents =
+                listOf(
+                    // ['a', 'b', 'c']
+                    Removed(3, 2),
+                    // ['a', 'b', null]
+                    Changed(2, 1, null)
+                )
+        )
+
+    @Test
+    fun dropPageChangeDoubleRemove() =
+        verifyDrop(
+            initialPages = listOf(listOf(1, 2), listOf(3, 4), listOf(5)),
+            initialNulls = 3,
+            newNulls = 1,
+            pagesToDrop = 2,
+            startEvents =
+                listOf(
+                    // ['d', 'a', 'b']
+                    Removed(0, 5),
+                    // [null, 'a', 'b']
+                    Changed(0, 1, null)
+                ),
+            endEvents =
+                listOf(
+                    // ['a', 'b', 'c']
+                    Removed(3, 5),
+                    // ['a', 'b', null]
+                    Changed(2, 1, null)
+                )
+        )
 
     private fun verifyPrependAppendCallback(
         initialItems: Int,
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCallbackFake.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCallbackFake.kt
index 7356f61..e6f19ef 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCallbackFake.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCallbackFake.kt
@@ -28,13 +28,14 @@
     val interactions
         get() = allEvents.size
 
-    fun itemCountFromEvents() = allEvents.sumOf {
-        when (it) {
-            is OnInsertedEvent -> it.count
-            is OnRemovedEvent -> -it.count
-            else -> 0
+    fun itemCountFromEvents() =
+        allEvents.sumOf {
+            when (it) {
+                is OnInsertedEvent -> it.count
+                is OnRemovedEvent -> -it.count
+                else -> 0
+            }
         }
-    }
 
     override fun onInserted(position: Int, count: Int) {
         OnInsertedEvent(position, count).let {
@@ -69,7 +70,10 @@
     }
 
     data class OnInsertedEvent(val position: Int, val count: Int)
+
     data class OnRemovedEvent(val position: Int, val count: Int)
+
     data class OnMovedEvent(val fromPosition: Int, val toPosition: Int)
+
     data class OnChangedEvent(val position: Int, val count: Int, val payload: Any?)
 }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCapture.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCapture.kt
index 4e96af0..0f6a1d5 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCapture.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/ListUpdateCapture.kt
@@ -40,8 +40,6 @@
     }
 
     fun newEvents(): List<ListUpdateEvent> {
-        return events.drop(lastEventsListIndex + 1).also {
-            lastEventsListIndex = events.lastIndex
-        }
+        return events.drop(lastEventsListIndex + 1).also { lastEventsListIndex = events.lastIndex }
     }
 }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListBuilderTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListBuilderTest.kt
index 4a5dfdf..47f5ab8 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListBuilderTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListBuilderTest.kt
@@ -53,27 +53,27 @@
     private val backgroundExecutor = TestExecutor()
     private val lifecycleOwner = TestLifecycleOwner()
 
-    private data class LoadStateEvent(
-        val type: LoadType,
-        val state: LoadState
-    )
+    private data class LoadStateEvent(val type: LoadType, val state: LoadState)
 
     @OptIn(ExperimentalCoroutinesApi::class)
     @Before
     fun setup() {
-        ArchTaskExecutor.getInstance().setDelegate(object : TaskExecutor() {
-            override fun executeOnDiskIO(runnable: Runnable) {
-                fail("IO executor should be overwritten")
-            }
+        ArchTaskExecutor.getInstance()
+            .setDelegate(
+                object : TaskExecutor() {
+                    override fun executeOnDiskIO(runnable: Runnable) {
+                        fail("IO executor should be overwritten")
+                    }
 
-            override fun postToMainThread(runnable: Runnable) {
-                runnable.run()
-            }
+                    override fun postToMainThread(runnable: Runnable) {
+                        runnable.run()
+                    }
 
-            override fun isMainThread(): Boolean {
-                return true
-            }
-        })
+                    override fun isMainThread(): Boolean {
+                        return true
+                    }
+                }
+            )
         lifecycleOwner.handleLifecycleEvent(Lifecycle.Event.ON_START)
     }
 
@@ -99,10 +99,11 @@
 
             var invalidInitialLoadResult = false
 
-            override suspend fun load(params: LoadParams<Int>) = when (params) {
-                is LoadParams.Refresh -> loadInitial(params)
-                else -> loadRange()
-            }
+            override suspend fun load(params: LoadParams<Int>) =
+                when (params) {
+                    is LoadParams.Refresh -> loadInitial(params)
+                    else -> loadRange()
+                }
 
             override fun getRefreshKey(state: PagingState<Int, String>): Int? = null
 
@@ -134,19 +135,14 @@
 
             private fun loadRange(): LoadResult<Int, String> {
                 val data = listOf("c", "d")
-                return LoadResult.Page(
-                    data = data,
-                    prevKey = 2,
-                    nextKey = null
-                )
+                return LoadResult.Page(data = data, prevKey = 2, nextKey = null)
             }
         }
     }
 
     @Test
     fun initialValueAllowsGetDataSource() {
-        val livePagedList = LivePagedListBuilder(MockPagingSourceFactory()::create, 2)
-            .build()
+        val livePagedList = LivePagedListBuilder(MockPagingSourceFactory()::create, 2).build()
 
         // Calling .dataSource should never throw from the initial paged list.
         livePagedList.value!!.dataSource
@@ -158,23 +154,21 @@
         // represent the common case when writing tests.
         ArchTaskExecutor.getInstance().setDelegate(null)
 
-        LivePagedListBuilder(MockPagingSourceFactory()::create, 2)
-            .build()
+        LivePagedListBuilder(MockPagingSourceFactory()::create, 2).build()
     }
 
     @Test
     fun executorBehavior() {
         // specify a background dispatcher via builder, and verify it gets used for all loads,
         // overriding default IO dispatcher
-        val livePagedList = LivePagedListBuilder(MockPagingSourceFactory()::create, 2)
-            .setFetchExecutor(backgroundExecutor)
-            .build()
+        val livePagedList =
+            LivePagedListBuilder(MockPagingSourceFactory()::create, 2)
+                .setFetchExecutor(backgroundExecutor)
+                .build()
 
         val pagedListHolder: Array<PagedList<String>?> = arrayOfNulls(1)
 
-        livePagedList.observe(lifecycleOwner) { newList ->
-            pagedListHolder[0] = newList
-        }
+        livePagedList.observe(lifecycleOwner) { newList -> pagedListHolder[0] = newList }
 
         // initially, immediately get passed empty initial list
         assertNotNull(pagedListHolder[0])
@@ -199,15 +193,12 @@
         val factory = MockPagingSourceFactory()
         factory.enqueueError()
 
-        val livePagedList = LivePagedListBuilder(factory::create, 2)
-            .setFetchExecutor(backgroundExecutor)
-            .build()
+        val livePagedList =
+            LivePagedListBuilder(factory::create, 2).setFetchExecutor(backgroundExecutor).build()
 
         val pagedListHolder: Array<PagedList<String>?> = arrayOfNulls(1)
 
-        livePagedList.observe(lifecycleOwner) { newList ->
-            pagedListHolder[0] = newList
-        }
+        livePagedList.observe(lifecycleOwner) { newList -> pagedListHolder[0] = newList }
 
         val loadStates = mutableListOf<LoadStateEvent>()
 
@@ -230,9 +221,7 @@
         // TODO: Investigate removing initial IDLE state from callback updates.
         assertEquals(
             listOf(
-                LoadStateEvent(
-                    REFRESH, NotLoading(endOfPaginationReached = false)
-                ),
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false)),
                 LoadStateEvent(REFRESH, Loading),
                 LoadStateEvent(REFRESH, Error(EXCEPTION))
             ),
@@ -250,10 +239,7 @@
 
         assertEquals(
             listOf(
-                LoadStateEvent(
-                    REFRESH,
-                    NotLoading(endOfPaginationReached = false)
-                ),
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false)),
                 LoadStateEvent(REFRESH, Loading),
                 LoadStateEvent(REFRESH, Error(EXCEPTION)),
                 LoadStateEvent(REFRESH, Loading)
@@ -266,17 +252,11 @@
         pagedListHolder[0]!!.addWeakLoadStateListener(loadStateChangedCallback)
         assertEquals(
             listOf(
-                LoadStateEvent(
-                    REFRESH,
-                    NotLoading(endOfPaginationReached = false)
-                ),
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false)),
                 LoadStateEvent(REFRESH, Loading),
                 LoadStateEvent(REFRESH, Error(EXCEPTION)),
                 LoadStateEvent(REFRESH, Loading),
-                LoadStateEvent(
-                    REFRESH,
-                    NotLoading(endOfPaginationReached = false)
-                )
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false))
             ),
             loadStates
         )
@@ -288,20 +268,21 @@
         val pagingSources = mutableListOf<MockPagingSourceFactory.MockPagingSource>()
         val pagedListHolder = mutableListOf<PagedList<String>>()
 
-        val livePagedList = LivePagedListBuilder(
-            {
-                factory.create().also { pagingSource ->
-                    pagingSource as MockPagingSourceFactory.MockPagingSource
-                    if (pagingSources.size == 0) {
-                        pagingSource.invalidInitialLoadResult = true
-                    }
-                    pagingSources.add(pagingSource)
-                }
-            },
-            pageSize = 2
-        )
-            .setFetchExecutor(backgroundExecutor)
-            .build()
+        val livePagedList =
+            LivePagedListBuilder(
+                    {
+                        factory.create().also { pagingSource ->
+                            pagingSource as MockPagingSourceFactory.MockPagingSource
+                            if (pagingSources.size == 0) {
+                                pagingSource.invalidInitialLoadResult = true
+                            }
+                            pagingSources.add(pagingSource)
+                        }
+                    },
+                    pageSize = 2
+                )
+                .setFetchExecutor(backgroundExecutor)
+                .build()
 
         val loadStates = mutableListOf<LoadStateEvent>()
 
@@ -332,23 +313,15 @@
         assertThat(pagedListHolder.size).isEqualTo(2)
         assertThat(pagedListHolder[1]).isInstanceOf(ContiguousPagedList::class.java)
 
-        assertThat(loadStates).containsExactly(
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ),
-            LoadStateEvent(REFRESH, Loading),
-            // when LoadResult.Invalid is returned, REFRESH is reset back to NotLoading
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ),
-            LoadStateEvent(REFRESH, Loading),
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
+        assertThat(loadStates)
+            .containsExactly(
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false)),
+                LoadStateEvent(REFRESH, Loading),
+                // when LoadResult.Invalid is returned, REFRESH is reset back to NotLoading
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false)),
+                LoadStateEvent(REFRESH, Loading),
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false))
             )
-        )
     }
 
     @Test
@@ -357,16 +330,18 @@
         val pagedLists = mutableListOf<PagedList<Int>>()
         val factory = { TestPagingSource(loadDelay = 0).also { pagingSources.add(it) } }
 
-        val livePagedList = LivePagedListBuilder(
-            factory,
-            config = PagedList.Config.Builder()
-                .setPageSize(2)
-                .setInitialLoadSizeHint(6)
-                .setEnablePlaceholders(false)
+        val livePagedList =
+            LivePagedListBuilder(
+                    factory,
+                    config =
+                        PagedList.Config.Builder()
+                            .setPageSize(2)
+                            .setInitialLoadSizeHint(6)
+                            .setEnablePlaceholders(false)
+                            .build()
+                )
+                .setFetchExecutor(backgroundExecutor)
                 .build()
-        )
-            .setFetchExecutor(backgroundExecutor)
-            .build()
 
         val loadStates = mutableListOf<LoadStateEvent>()
 
@@ -407,26 +382,27 @@
 
         assertThat(pagingSources.size).isEqualTo(2)
         assertThat(pagedLists.size).isEqualTo(3)
-        assertThat(loadStates).containsExactly(
-            LoadStateEvent(
-                APPEND,
-                NotLoading(endOfPaginationReached = false)
-            ), // first empty paged list
-            LoadStateEvent(
-                APPEND,
-                NotLoading(endOfPaginationReached = false)
-            ), // second paged list
-            LoadStateEvent(APPEND, Loading), // second paged list append
-            LoadStateEvent(
-                APPEND,
-                NotLoading(endOfPaginationReached = false)
-            ), // append success
-            LoadStateEvent(APPEND, Loading), // second paged list append again but fails
-            LoadStateEvent(
-                APPEND,
-                NotLoading(endOfPaginationReached = false)
-            ) // third paged list
-        )
+        assertThat(loadStates)
+            .containsExactly(
+                LoadStateEvent(
+                    APPEND,
+                    NotLoading(endOfPaginationReached = false)
+                ), // first empty paged list
+                LoadStateEvent(
+                    APPEND,
+                    NotLoading(endOfPaginationReached = false)
+                ), // second paged list
+                LoadStateEvent(APPEND, Loading), // second paged list append
+                LoadStateEvent(
+                    APPEND,
+                    NotLoading(endOfPaginationReached = false)
+                ), // append success
+                LoadStateEvent(APPEND, Loading), // second paged list append again but fails
+                LoadStateEvent(
+                    APPEND,
+                    NotLoading(endOfPaginationReached = false)
+                ) // third paged list
+            )
     }
 
     @Test
@@ -434,36 +410,40 @@
         val dataSources = mutableListOf<DataSource<Int, Int>>()
         val pagedLists = mutableListOf<PagedList<Int>>()
         val requestedLoadSizes = mutableListOf<Int>()
-        val livePagedList = LivePagedListBuilder(
-            pagingSourceFactory = object : DataSource.Factory<Int, Int>() {
-                override fun create(): DataSource<Int, Int> {
-                    return object : PositionalDataSource<Int>() {
-                        override fun loadInitial(
-                            params: LoadInitialParams,
-                            callback: LoadInitialCallback<Int>
-                        ) {
-                            requestedLoadSizes.add(params.requestedLoadSize)
-                            callback.onResult(listOf(1, 2, 3), 0)
-                        }
+        val livePagedList =
+            LivePagedListBuilder(
+                    pagingSourceFactory =
+                        object : DataSource.Factory<Int, Int>() {
+                                override fun create(): DataSource<Int, Int> {
+                                    return object : PositionalDataSource<Int>() {
+                                            override fun loadInitial(
+                                                params: LoadInitialParams,
+                                                callback: LoadInitialCallback<Int>
+                                            ) {
+                                                requestedLoadSizes.add(params.requestedLoadSize)
+                                                callback.onResult(listOf(1, 2, 3), 0)
+                                            }
 
-                        override fun loadRange(
-                            params: LoadRangeParams,
-                            callback: LoadRangeCallback<Int>
-                        ) {
-                            requestedLoadSizes.add(params.loadSize)
-                        }
-                    }.also {
-                        dataSources.add(it)
-                    }
-                }
-            }.asPagingSourceFactory(backgroundExecutor.asCoroutineDispatcher()),
-            config = PagedList.Config.Builder()
-                .setPageSize(3)
-                .setInitialLoadSizeHint(3)
-                .setEnablePlaceholders(false)
+                                            override fun loadRange(
+                                                params: LoadRangeParams,
+                                                callback: LoadRangeCallback<Int>
+                                            ) {
+                                                requestedLoadSizes.add(params.loadSize)
+                                            }
+                                        }
+                                        .also { dataSources.add(it) }
+                                }
+                            }
+                            .asPagingSourceFactory(backgroundExecutor.asCoroutineDispatcher()),
+                    config =
+                        PagedList.Config.Builder()
+                            .setPageSize(3)
+                            .setInitialLoadSizeHint(3)
+                            .setEnablePlaceholders(false)
+                            .build()
+                )
+                .setFetchExecutor(backgroundExecutor)
                 .build()
-        ).setFetchExecutor(backgroundExecutor)
-            .build()
 
         livePagedList.observeForever { pagedLists.add(it) }
 
@@ -485,61 +465,72 @@
 
     @Test
     fun initialPagedListEvents() {
-        ArchTaskExecutor.getInstance().setDelegate(object : TaskExecutor() {
-            override fun executeOnDiskIO(runnable: Runnable) {
-                runnable.run()
-            }
+        ArchTaskExecutor.getInstance()
+            .setDelegate(
+                object : TaskExecutor() {
+                    override fun executeOnDiskIO(runnable: Runnable) {
+                        runnable.run()
+                    }
 
-            override fun postToMainThread(runnable: Runnable) {
-                runnable.run()
-            }
+                    override fun postToMainThread(runnable: Runnable) {
+                        runnable.run()
+                    }
 
-            override fun isMainThread(): Boolean {
-                return true
-            }
-        })
+                    override fun isMainThread(): Boolean {
+                        return true
+                    }
+                }
+            )
 
         val listUpdateCallback = ListUpdateCapture()
         val loadStateListener = LoadStateCapture()
-        val differ = AsyncPagedListDiffer<Int>(
-            listUpdateCallback = listUpdateCallback,
-            config = AsyncDifferConfig.Builder(
-                object : DiffUtil.ItemCallback<Int>() {
-                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
+        val differ =
+            AsyncPagedListDiffer<Int>(
+                listUpdateCallback = listUpdateCallback,
+                config =
+                    AsyncDifferConfig.Builder(
+                            object : DiffUtil.ItemCallback<Int>() {
+                                override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                    return oldItem == newItem
+                                }
 
-                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                        return oldItem == newItem
-                    }
-                }
-            ).apply {
-                setBackgroundThreadExecutor(backgroundExecutor)
-            }.build()
-        )
+                                override fun areContentsTheSame(
+                                    oldItem: Int,
+                                    newItem: Int
+                                ): Boolean {
+                                    return oldItem == newItem
+                                }
+                            }
+                        )
+                        .apply { setBackgroundThreadExecutor(backgroundExecutor) }
+                        .build()
+            )
         differ.addLoadStateListener(loadStateListener)
 
         val observer = Observer<PagedList<Int>> { t -> differ.submitList(t) }
 
         // LivePagedList which immediately produces a real PagedList, skipping InitialPagedList.
-        val livePagedList = LivePagedListBuilder(
-            pagingSourceFactory = { TestPagingSource(loadDelay = 0) },
-            pageSize = 10,
-        ).build()
+        val livePagedList =
+            LivePagedListBuilder(
+                    pagingSourceFactory = { TestPagingSource(loadDelay = 0) },
+                    pageSize = 10,
+                )
+                .build()
         livePagedList.observeForever(observer)
 
         drain()
         livePagedList.removeObserver(observer)
 
-        assertThat(listUpdateCallback.newEvents()).containsExactly(
-            ListUpdateEvent.Inserted(position = 0, count = 100)
-        )
+        assertThat(listUpdateCallback.newEvents())
+            .containsExactly(ListUpdateEvent.Inserted(position = 0, count = 100))
 
         // LivePagedList which will emit InitialPagedList first.
-        val livePagedListWithInitialPagedList = LivePagedListBuilder(
-            pagingSourceFactory = { TestPagingSource(loadDelay = 1000) },
-            pageSize = 10,
-        ).build()
+        val livePagedListWithInitialPagedList =
+            LivePagedListBuilder(
+                    pagingSourceFactory = { TestPagingSource(loadDelay = 1000) },
+                    pageSize = 10,
+                )
+                .build()
         livePagedListWithInitialPagedList.observeForever(observer)
 
         drain()
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListTest.kt
index 7d0442c..e840ef8 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/LivePagedListTest.kt
@@ -49,9 +49,7 @@
 @Suppress("DEPRECATION")
 @OptIn(ExperimentalCoroutinesApi::class)
 class LivePagedListTest {
-    @JvmField
-    @Rule
-    val instantTaskExecutorRule = InstantTaskExecutorRule()
+    @JvmField @Rule val instantTaskExecutorRule = InstantTaskExecutorRule()
 
     private val testScope = TestCoroutineScope()
 
@@ -61,24 +59,23 @@
         var pagingSourcesCreated = 0
         val pagingSourceFactory = {
             when (pagingSourcesCreated++) {
-                0 -> TestPagingSource().apply {
-                    invalidate()
-                }
+                0 -> TestPagingSource().apply { invalidate() }
                 else -> TestPagingSource()
             }
         }
 
-        val livePagedList = LivePagedList(
-            coroutineScope = GlobalScope,
-            initialKey = null,
-            config = PagedList.Config.Builder().setPageSize(10).build(),
-            boundaryCallback = null,
-            pagingSourceFactory = pagingSourceFactory,
-            notifyDispatcher = ArchTaskExecutor.getMainThreadExecutor().asCoroutineDispatcher(),
-            fetchDispatcher = ArchTaskExecutor.getIOThreadExecutor().asCoroutineDispatcher(),
-        )
+        val livePagedList =
+            LivePagedList(
+                coroutineScope = GlobalScope,
+                initialKey = null,
+                config = PagedList.Config.Builder().setPageSize(10).build(),
+                boundaryCallback = null,
+                pagingSourceFactory = pagingSourceFactory,
+                notifyDispatcher = ArchTaskExecutor.getMainThreadExecutor().asCoroutineDispatcher(),
+                fetchDispatcher = ArchTaskExecutor.getIOThreadExecutor().asCoroutineDispatcher(),
+            )
 
-        livePagedList.observeForever { }
+        livePagedList.observeForever {}
         assertThat(pagingSourcesCreated).isEqualTo(2)
     }
 
@@ -91,20 +88,21 @@
             TestPagingSource()
         }
         val testDispatcher = TestDispatcher()
-        val livePagedList = LivePagedList(
-            coroutineScope = GlobalScope,
-            initialKey = null,
-            config = PagedList.Config.Builder().setPageSize(10).build(),
-            boundaryCallback = null,
-            pagingSourceFactory = pagingSourceFactory,
-            notifyDispatcher = ArchTaskExecutor.getMainThreadExecutor().asCoroutineDispatcher(),
-            fetchDispatcher = testDispatcher,
-        )
+        val livePagedList =
+            LivePagedList(
+                coroutineScope = GlobalScope,
+                initialKey = null,
+                config = PagedList.Config.Builder().setPageSize(10).build(),
+                boundaryCallback = null,
+                pagingSourceFactory = pagingSourceFactory,
+                notifyDispatcher = ArchTaskExecutor.getMainThreadExecutor().asCoroutineDispatcher(),
+                fetchDispatcher = testDispatcher,
+            )
 
         assertTrue { testDispatcher.queue.isEmpty() }
         assertEquals(0, pagingSourcesCreated)
 
-        livePagedList.observeForever { }
+        livePagedList.observeForever {}
 
         assertTrue { testDispatcher.queue.isNotEmpty() }
         assertEquals(0, pagingSourcesCreated)
@@ -147,22 +145,21 @@
 
     /**
      * Some paging2 tests might be using InstantTaskExecutor and expect first page to be loaded
-     * immediately. This test replicates that by checking observe forever receives the value in
-     * its own call stack.
+     * immediately. This test replicates that by checking observe forever receives the value in its
+     * own call stack.
      */
     @Test
     fun instantExecutionWorksWithLegacy() {
         val totalSize = 300
         val data = (0 until totalSize).map { "$it/$it" }
-        val factory = object : DataSource.Factory<Int, String>() {
-            override fun create(): DataSource<Int, String> {
-                return TestPositionalDataSource(data)
+        val factory =
+            object : DataSource.Factory<Int, String>() {
+                override fun create(): DataSource<Int, String> {
+                    return TestPositionalDataSource(data)
+                }
             }
-        }
 
-        class TestAdapter : PagedListAdapter<String, RecyclerView.ViewHolder>(
-            DIFF_STRING
-        ) {
+        class TestAdapter : PagedListAdapter<String, RecyclerView.ViewHolder>(DIFF_STRING) {
             // open it up by overriding
             public override fun getItem(position: Int): String? {
                 return super.getItem(position)
@@ -175,24 +172,20 @@
                 return object : RecyclerView.ViewHolder(View(parent.context)) {}
             }
 
-            override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
-            }
+            override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {}
         }
 
-        val livePagedList = LivePagedListBuilder(
-            factory,
-            PagedList.Config.Builder()
-                .setEnablePlaceholders(false)
-                .setPageSize(30)
+        val livePagedList =
+            LivePagedListBuilder(
+                    factory,
+                    PagedList.Config.Builder().setEnablePlaceholders(false).setPageSize(30).build()
+                )
                 .build()
-        ).build()
 
         val adapter = TestAdapter()
         livePagedList.observeForever { pagedList ->
             // make sure observeForever worked sync where it did load the data immediately
-            assertThat(
-                Throwable().stackTraceToString()
-            ).contains("observeForever")
+            assertThat(Throwable().stackTraceToString()).contains("observeForever")
             assertThat(pagedList.loadedCount).isEqualTo(90)
         }
         adapter.submitList(checkNotNull(livePagedList.value))
@@ -206,74 +199,75 @@
 
     @OptIn(ExperimentalStdlibApi::class)
     @Test
-    fun initialLoad_loadResultInvalid() = testScope.runBlockingTest {
-        val dispatcher = coroutineContext[CoroutineDispatcher.Key]!!
-        val pagingSources = mutableListOf<TestPagingSource>()
-        val factory = {
-            TestPagingSource().also {
-                if (pagingSources.size == 0) it.nextLoadResult = PagingSource.LoadResult.Invalid()
-                pagingSources.add(it)
+    fun initialLoad_loadResultInvalid() =
+        testScope.runBlockingTest {
+            val dispatcher = coroutineContext[CoroutineDispatcher.Key]!!
+            val pagingSources = mutableListOf<TestPagingSource>()
+            val factory = {
+                TestPagingSource().also {
+                    if (pagingSources.size == 0)
+                        it.nextLoadResult = PagingSource.LoadResult.Invalid()
+                    pagingSources.add(it)
+                }
             }
+            val config =
+                PagedList.Config.Builder().setEnablePlaceholders(false).setPageSize(3).build()
+
+            val livePagedList =
+                LivePagedList(
+                    coroutineScope = testScope,
+                    initialKey = null,
+                    config = config,
+                    boundaryCallback = null,
+                    pagingSourceFactory = factory,
+                    notifyDispatcher = dispatcher,
+                    fetchDispatcher = dispatcher,
+                )
+
+            val pagedLists = mutableListOf<PagedList<Int>>()
+            livePagedList.observeForever { pagedLists.add(it) }
+
+            advanceUntilIdle()
+
+            assertThat(pagedLists.size).isEqualTo(2)
+            assertThat(pagingSources.size).isEqualTo(2)
+            assertThat(pagedLists.size).isEqualTo(2)
+            assertThat(pagedLists[1]).containsExactly(0, 1, 2, 3, 4, 5, 6, 7, 8)
         }
-        val config = PagedList.Config.Builder()
-            .setEnablePlaceholders(false)
-            .setPageSize(3)
-            .build()
-
-        val livePagedList = LivePagedList(
-            coroutineScope = testScope,
-            initialKey = null,
-            config = config,
-            boundaryCallback = null,
-            pagingSourceFactory = factory,
-            notifyDispatcher = dispatcher,
-            fetchDispatcher = dispatcher,
-        )
-
-        val pagedLists = mutableListOf<PagedList<Int>>()
-        livePagedList.observeForever {
-            pagedLists.add(it)
-        }
-
-        advanceUntilIdle()
-
-        assertThat(pagedLists.size).isEqualTo(2)
-        assertThat(pagingSources.size).isEqualTo(2)
-        assertThat(pagedLists.size).isEqualTo(2)
-        assertThat(pagedLists[1]).containsExactly(
-            0, 1, 2, 3, 4, 5, 6, 7, 8
-        )
-    }
 
     companion object {
         @Suppress("DEPRECATION")
-        private val dataSource = object : PositionalDataSource<String>() {
-            override fun loadInitial(
-                params: LoadInitialParams,
-                callback: LoadInitialCallback<String>
-            ) {
+        private val dataSource =
+            object : PositionalDataSource<String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams,
+                    callback: LoadInitialCallback<String>
+                ) {}
+
+                override fun loadRange(
+                    params: LoadRangeParams,
+                    callback: LoadRangeCallback<String>
+                ) {}
             }
 
-            override fun loadRange(params: LoadRangeParams, callback: LoadRangeCallback<String>) {}
-        }
+        private val dataSourceFactory =
+            object : DataSource.Factory<Int, String>() {
+                override fun create(): DataSource<Int, String> = dataSource
+            }
 
-        private val dataSourceFactory = object : DataSource.Factory<Int, String>() {
-            override fun create(): DataSource<Int, String> = dataSource
-        }
-
-        private val pagingSourceFactory = dataSourceFactory.asPagingSourceFactory(
-            fetchDispatcher = Dispatchers.Main
-        )
+        private val pagingSourceFactory =
+            dataSourceFactory.asPagingSourceFactory(fetchDispatcher = Dispatchers.Main)
 
         private val config = Config(10)
-        private val DIFF_STRING = object : DiffUtil.ItemCallback<String>() {
-            override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
-                return oldItem == newItem
-            }
+        private val DIFF_STRING =
+            object : DiffUtil.ItemCallback<String>() {
+                override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
+                    return oldItem == newItem
+                }
 
-            override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
-                return oldItem == newItem
+                override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
+                    return oldItem == newItem
+                }
             }
-        }
     }
 }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadFullListTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadFullListTest.kt
index be3aede..b4267d1 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadFullListTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadFullListTest.kt
@@ -42,72 +42,48 @@
  * Test that repeatedly accessing edge items in paging will make it load all of the page even when
  * there is heavy filtering involved.
  */
-class LoadFullListTest(
-    private val reverse: Boolean
-) {
+class LoadFullListTest(private val reverse: Boolean) {
 
     private val testScope = TestScope()
 
     @get:Rule
-    val dispatcherRule = MainDispatcherRule(
-        testScope.coroutineContext[ContinuationInterceptor] as CoroutineDispatcher
-    )
+    val dispatcherRule =
+        MainDispatcherRule(
+            testScope.coroutineContext[ContinuationInterceptor] as CoroutineDispatcher
+        )
 
-    private val differ = AsyncPagingDataDiffer(
-        diffCallback = object : DiffUtil.ItemCallback<Int>() {
-            override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                return oldItem == newItem
-            }
+    private val differ =
+        AsyncPagingDataDiffer(
+            diffCallback =
+                object : DiffUtil.ItemCallback<Int>() {
+                    override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                        return oldItem == newItem
+                    }
 
-            override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                return oldItem == newItem
-            }
-        },
-        updateCallback = ListUpdateCallbackFake(),
-        workerDispatcher = Dispatchers.Main
-    )
+                    override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                        return oldItem == newItem
+                    }
+                },
+            updateCallback = ListUpdateCallbackFake(),
+            workerDispatcher = Dispatchers.Main
+        )
+
+    @Test fun noFilter() = loadAll { true }
+
+    @Test fun everyOtherItem() = loadAll { it % 2 == 0 }
+
+    @Test fun only1Item_firstPage() = loadAll { it == 2 }
+
+    @Test fun only1Item_lastPage() = loadAll(sourceSize = 30) { it == 29 }
+
+    @Test fun noItems() = loadAll { false }
+
+    @Test fun firstItemInEachPage() = loadAll { it % pageConfig.pageSize == 0 }
+
+    @Test fun firstItemInEvenPages() = loadAll { it % (pageConfig.pageSize * 2) == 0 }
 
     @Test
-    fun noFilter() = loadAll {
-        true
-    }
-
-    @Test
-    fun everyOtherItem() = loadAll {
-        it % 2 == 0
-    }
-
-    @Test
-    fun only1Item_firstPage() = loadAll {
-        it == 2
-    }
-
-    @Test
-    fun only1Item_lastPage() = loadAll(
-        sourceSize = 30
-    ) {
-        it == 29
-    }
-
-    @Test
-    fun noItems() = loadAll {
-        false
-    }
-
-    @Test
-    fun firstItemInEachPage() = loadAll {
-        it % pageConfig.pageSize == 0
-    }
-
-    @Test
-    fun firstItemInEvenPages() = loadAll {
-        it % (pageConfig.pageSize * 2) == 0
-    }
-
-    @Test
-    fun firstItemInOddPages() = loadAll {
-        it % (pageConfig.pageSize * 2) == pageConfig.pageSize
-    }
+    fun firstItemInOddPages() = loadAll { it % (pageConfig.pageSize * 2) == pageConfig.pageSize }
 
     @Test
     fun endOfPrefetchDistance() = loadAll {
@@ -119,62 +95,58 @@
         it % (pageConfig.prefetchDistance * 2) == pageConfig.prefetchDistance
     }
 
-    private fun loadAll(
-        sourceSize: Int = 100,
-        testFilter: (Int) -> Boolean
-    ) = testScope.runTest {
-        val expectedFinalSize = (0 until sourceSize).count(testFilter)
-        val pager = Pager(
-            config = pageConfig,
-            initialKey = if (reverse) {
-                sourceSize - 1
-            } else {
-                0
-            }
-        ) {
-            TestPagingSource(
-                items = List(sourceSize) { it }
-            )
-        }
-
-        val job = launch {
-            pager.flow.map { pagingData ->
-                pagingData.filter {
-                    testFilter(it)
+    private fun loadAll(sourceSize: Int = 100, testFilter: (Int) -> Boolean) =
+        testScope.runTest {
+            val expectedFinalSize = (0 until sourceSize).count(testFilter)
+            val pager =
+                Pager(
+                    config = pageConfig,
+                    initialKey =
+                        if (reverse) {
+                            sourceSize - 1
+                        } else {
+                            0
+                        }
+                ) {
+                    TestPagingSource(items = List(sourceSize) { it })
                 }
-            }.collectLatest {
-                differ.submitData(it)
-            }
-        }
 
-        advanceUntilIdle()
-        // repeatedly load pages until all of the list is loaded
-        while (differ.itemCount < expectedFinalSize) {
-            val startSize = differ.itemCount
-            if (reverse) {
-                differ.getItem(0)
-            } else {
-                differ.getItem(differ.itemCount - 1)
+            val job = launch {
+                pager.flow
+                    .map { pagingData -> pagingData.filter { testFilter(it) } }
+                    .collectLatest { differ.submitData(it) }
             }
+
             advanceUntilIdle()
-            if (differ.itemCount == startSize) {
-                break
+            // repeatedly load pages until all of the list is loaded
+            while (differ.itemCount < expectedFinalSize) {
+                val startSize = differ.itemCount
+                if (reverse) {
+                    differ.getItem(0)
+                } else {
+                    differ.getItem(differ.itemCount - 1)
+                }
+                advanceUntilIdle()
+                if (differ.itemCount == startSize) {
+                    break
+                }
             }
-        }
-        assertThat(differ.itemCount).isEqualTo(expectedFinalSize)
+            assertThat(differ.itemCount).isEqualTo(expectedFinalSize)
 
-        job.cancel()
-    }
+            job.cancel()
+        }
 
     companion object {
         @JvmStatic
         @Parameterized.Parameters(name = "reverse_{0}")
         fun params() = listOf(false, true)
-        private val pageConfig = PagingConfig(
-            pageSize = 5,
-            prefetchDistance = 5,
-            enablePlaceholders = false,
-            initialLoadSize = 5
-        )
+
+        private val pageConfig =
+            PagingConfig(
+                pageSize = 5,
+                prefetchDistance = 5,
+                enablePlaceholders = false,
+                initialLoadSize = 5
+            )
     }
 }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadStateAdapterTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadStateAdapterTest.kt
index 03e4797..ef7a959 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadStateAdapterTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/LoadStateAdapterTest.kt
@@ -39,7 +39,9 @@
 class LoadStateAdapterTest {
     class AdapterEventRecorder : RecyclerView.AdapterDataObserver() {
         enum class Event {
-            CHANGE, INSERT, REMOVED
+            CHANGE,
+            INSERT,
+            REMOVED
         }
 
         private val observedEvents = mutableListOf<Event>()
@@ -93,24 +95,15 @@
             return object : RecyclerView.ViewHolder(View(parent.context)) {}
         }
 
-        override fun onBindViewHolder(holder: RecyclerView.ViewHolder, loadState: LoadState) {
-        }
+        override fun onBindViewHolder(holder: RecyclerView.ViewHolder, loadState: LoadState) {}
     }
 
     @Test
     fun init() {
         val adapter = SimpleLoadStateAdapter()
         assertEquals(0, adapter.itemCount)
-        assertFalse(
-            adapter.displayLoadStateAsItem(
-                NotLoading(endOfPaginationReached = false)
-            )
-        )
-        assertFalse(
-            adapter.displayLoadStateAsItem(
-                NotLoading(endOfPaginationReached = true)
-            )
-        )
+        assertFalse(adapter.displayLoadStateAsItem(NotLoading(endOfPaginationReached = false)))
+        assertFalse(adapter.displayLoadStateAsItem(NotLoading(endOfPaginationReached = true)))
         assertTrue(adapter.displayLoadStateAsItem(Error(Throwable())))
         assertTrue(adapter.displayLoadStateAsItem(Loading))
     }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListAdapterTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListAdapterTest.kt
index a342f2e..f3201dc 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListAdapterTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListAdapterTest.kt
@@ -34,9 +34,10 @@
     private val mainThread = TestExecutor()
     private val diffThread = TestExecutor()
 
-    private val differConfig = AsyncDifferConfig.Builder(STRING_DIFF_CALLBACK)
-        .setBackgroundThreadExecutor(diffThread)
-        .build()
+    private val differConfig =
+        AsyncDifferConfig.Builder(STRING_DIFF_CALLBACK)
+            .setBackgroundThreadExecutor(diffThread)
+            .build()
 
     @Suppress("DEPRECATION")
     inner class Adapter(
@@ -217,14 +218,15 @@
     }
 
     companion object {
-        private val STRING_DIFF_CALLBACK = object : DiffUtil.ItemCallback<String>() {
-            override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
-                return oldItem == newItem
-            }
+        private val STRING_DIFF_CALLBACK =
+            object : DiffUtil.ItemCallback<String>() {
+                override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
+                    return oldItem == newItem
+                }
 
-            override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
-                return oldItem == newItem
+                override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
+                    return oldItem == newItem
+                }
             }
-        }
     }
 }
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListListenerFake.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListListenerFake.kt
index 9bd09f5..8436389 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListListenerFake.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/PagedListListenerFake.kt
@@ -21,12 +21,7 @@
     val onCurrentListChangedEvents = mutableListOf<OnCurrentListChangedEvent<T>>()
 
     override fun onCurrentListChanged(previousList: PagedList<T>?, currentList: PagedList<T>?) {
-        onCurrentListChangedEvents.add(
-            OnCurrentListChangedEvent(
-                previousList,
-                currentList
-            )
-        )
+        onCurrentListChangedEvents.add(OnCurrentListChangedEvent(previousList, currentList))
     }
 
     data class OnCurrentListChangedEvent<T : Any>(
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/PagingDataAdapterTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/PagingDataAdapterTest.kt
index 9c2c2ee..502bed2 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/PagingDataAdapterTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/PagingDataAdapterTest.kt
@@ -43,28 +43,28 @@
 
     @Test
     fun hasStableIds() {
-        val pagingDataAdapter = object : PagingDataAdapter<Int, ViewHolder>(
-            diffCallback = object : DiffUtil.ItemCallback<Int>() {
-                override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                    return oldItem == newItem
+        val pagingDataAdapter =
+            object :
+                PagingDataAdapter<Int, ViewHolder>(
+                    diffCallback =
+                        object : DiffUtil.ItemCallback<Int>() {
+                            override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
+
+                            override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                                return oldItem == newItem
+                            }
+                        }
+                ) {
+                override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
+                    fail("Should never get here")
                 }
 
-                override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                    return oldItem == newItem
+                override fun onBindViewHolder(holder: ViewHolder, position: Int) {
+                    fail("Should never get here")
                 }
             }
-        ) {
-            override fun onCreateViewHolder(
-                parent: ViewGroup,
-                viewType: Int
-            ): ViewHolder {
-                fail("Should never get here")
-            }
-
-            override fun onBindViewHolder(holder: ViewHolder, position: Int) {
-                fail("Should never get here")
-            }
-        }
 
         assertFailsWith<UnsupportedOperationException> { pagingDataAdapter.setHasStableIds(true) }
     }
@@ -73,29 +73,28 @@
     fun workerContext() = runTest {
         val workerExecutor = TestExecutor()
         val workerContext: CoroutineContext = workerExecutor.asCoroutineDispatcher()
-        val adapter = object : PagingDataAdapter<Int, ViewHolder>(
-            object : DiffUtil.ItemCallback<Int>() {
-                override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
-                    return oldItem == newItem
+        val adapter =
+            object :
+                PagingDataAdapter<Int, ViewHolder>(
+                    object : DiffUtil.ItemCallback<Int>() {
+                        override fun areContentsTheSame(oldItem: Int, newItem: Int): Boolean {
+                            return oldItem == newItem
+                        }
+
+                        override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
+                            return oldItem == newItem
+                        }
+                    },
+                    coroutineContext,
+                    workerContext,
+                ) {
+                override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
+                    return object : ViewHolder(TextView(parent.context)) {}
                 }
 
-                override fun areItemsTheSame(oldItem: Int, newItem: Int): Boolean {
-                    return oldItem == newItem
-                }
-            },
-            coroutineContext,
-            workerContext,
-        ) {
-            override fun onCreateViewHolder(
-                parent: ViewGroup,
-                viewType: Int
-            ): ViewHolder {
-                return object : ViewHolder(TextView(parent.context)) {}
+                override fun onBindViewHolder(holder: ViewHolder, position: Int) {}
             }
 
-            override fun onBindViewHolder(holder: ViewHolder, position: Int) {}
-        }
-
         val job = launch {
             adapter.submitData(PagingData.from(listOf(1)))
             adapter.submitData(PagingData.from(listOf(2)))
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffHelperTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffHelperTest.kt
index 9a2eb07..5c919f0 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffHelperTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffHelperTest.kt
@@ -40,8 +40,10 @@
         override val placeholdersAfter: Int
     ) : PlaceholderPaddedList<String> {
         override fun getItem(index: Int): String = data[index]
+
         override val size: Int
             get() = placeholdersBefore + data.size + placeholdersAfter
+
         override val dataCount: Int
             get() = data.size
     }
@@ -58,14 +60,8 @@
 
     @Test
     fun appendFill() {
-        validateTwoListDiff(
-            Storage(5, listOf("a", "b"), 5),
-            Storage(5, listOf("a", "b", "c"), 4)
-        ) {
-            assertEquals(
-                OnChangedEvent(7, 1, PLACEHOLDER_TO_ITEM),
-                it.onChangedEvents[0]
-            )
+        validateTwoListDiff(Storage(5, listOf("a", "b"), 5), Storage(5, listOf("a", "b", "c"), 4)) {
+            assertEquals(OnChangedEvent(7, 1, PLACEHOLDER_TO_ITEM), it.onChangedEvents[0])
             assertEquals(1, it.interactions)
         }
     }
@@ -76,24 +72,15 @@
             Storage(5, listOf("a", "b", "c"), 4),
             Storage(5, listOf("a", "b"), 5),
         ) {
-            assertEquals(
-                OnChangedEvent(7, 1, ITEM_TO_PLACEHOLDER),
-                it.onChangedEvents[0]
-            )
+            assertEquals(OnChangedEvent(7, 1, ITEM_TO_PLACEHOLDER), it.onChangedEvents[0])
             assertEquals(1, it.interactions)
         }
     }
 
     @Test
     fun prependFill() {
-        validateTwoListDiff(
-            Storage(5, listOf("b", "c"), 5),
-            Storage(4, listOf("a", "b", "c"), 5)
-        ) {
-            assertEquals(
-                OnChangedEvent(4, 1, PLACEHOLDER_TO_ITEM),
-                it.onChangedEvents[0]
-            )
+        validateTwoListDiff(Storage(5, listOf("b", "c"), 5), Storage(4, listOf("a", "b", "c"), 5)) {
+            assertEquals(OnChangedEvent(4, 1, PLACEHOLDER_TO_ITEM), it.onChangedEvents[0])
             assertEquals(1, it.interactions)
         }
     }
@@ -104,10 +91,7 @@
             Storage(4, listOf("a", "b", "c"), 5),
             Storage(5, listOf("b", "c"), 5),
         ) {
-            assertEquals(
-                OnChangedEvent(4, 1, ITEM_TO_PLACEHOLDER),
-                it.onChangedEvents[0]
-            )
+            assertEquals(OnChangedEvent(4, 1, ITEM_TO_PLACEHOLDER), it.onChangedEvents[0])
             assertEquals(1, it.interactions)
         }
     }
@@ -142,20 +126,19 @@
             Storage(5, listOf("a", "b", "c"), 5),
             Storage(5, listOf("c", "x", "y", "a", "b"), 5)
         ) {
-            assertThat(
-                it.allEvents
-            ).containsExactly(
-                // convert 2 placeholders to x,y
-                OnChangedEvent(3, 2, PLACEHOLDER_TO_ITEM),
-                // move c to before x,y
-                OnMovedEvent(7, 3),
-                // these placeholders will shift down in the list as we'll re-add 2 placeholders
-                OnChangedEvent(0, 3, PLACEHOLDER_POSITION_CHANGE),
-                // now we need 2 new placeholders
-                OnInsertedEvent(0, 2),
-                // all trailing placeholders shifted 2 positions
-                OnChangedEvent(10, 5, PLACEHOLDER_POSITION_CHANGE),
-            )
+            assertThat(it.allEvents)
+                .containsExactly(
+                    // convert 2 placeholders to x,y
+                    OnChangedEvent(3, 2, PLACEHOLDER_TO_ITEM),
+                    // move c to before x,y
+                    OnMovedEvent(7, 3),
+                    // these placeholders will shift down in the list as we'll re-add 2 placeholders
+                    OnChangedEvent(0, 3, PLACEHOLDER_POSITION_CHANGE),
+                    // now we need 2 new placeholders
+                    OnInsertedEvent(0, 2),
+                    // all trailing placeholders shifted 2 positions
+                    OnChangedEvent(10, 5, PLACEHOLDER_POSITION_CHANGE),
+                )
         }
     }
 
@@ -165,12 +148,8 @@
             Storage(5, listOf("a", "b", "c"), 5),
             Storage(3, listOf("c", "x", "y", "a", "b"), 5)
         ) {
-            assertThat(
-                it.allEvents
-            ).containsExactly(
-                OnChangedEvent(3, 2, PLACEHOLDER_TO_ITEM),
-                OnMovedEvent(7, 3)
-            )
+            assertThat(it.allEvents)
+                .containsExactly(OnChangedEvent(3, 2, PLACEHOLDER_TO_ITEM), OnMovedEvent(7, 3))
         }
     }
 
@@ -180,16 +159,15 @@
             Storage(5, listOf("a", "b", "c"), 5),
             Storage(5, listOf("b", "c", "x", "y", "a"), 5)
         ) {
-            assertThat(
-                it.allEvents
-            ).containsExactly(
-                // insert x, y as placeholder changes
-                OnChangedEvent(8, 2, PLACEHOLDER_TO_ITEM),
-                // move a to after x,y
-                OnMovedEvent(5, 9),
-                // insert new placeholders to the end
-                OnInsertedEvent(13, 2)
-            )
+            assertThat(it.allEvents)
+                .containsExactly(
+                    // insert x, y as placeholder changes
+                    OnChangedEvent(8, 2, PLACEHOLDER_TO_ITEM),
+                    // move a to after x,y
+                    OnMovedEvent(5, 9),
+                    // insert new placeholders to the end
+                    OnInsertedEvent(13, 2)
+                )
         }
     }
 
@@ -199,22 +177,21 @@
             Storage(4, listOf("a", "b", "c", "d", "e"), 1),
             Storage(1, listOf("d", "e", "f", "g"), 20)
         ) {
-            assertThat(
-                it.allEvents
-            ).containsExactly(
-                // add f to replace the placeholder after e
-                OnChangedEvent(9, 1, PLACEHOLDER_TO_ITEM),
-                // add g, we don't have a placeholder for it so it is an insertion
-                OnInsertedEvent(10, 1),
-                // rm a,b,c
-                OnRemovedEvent(4, 3),
-                // rm 3 unnecessary leading placeholders
-                OnRemovedEvent(0, 3),
-                // 3rd placeholder moved to pos 0, so dispatch a change for it
-                OnChangedEvent(0, 1, PLACEHOLDER_POSITION_CHANGE),
-                // add 20 trailing placeholders
-                OnInsertedEvent(5, 20)
-            )
+            assertThat(it.allEvents)
+                .containsExactly(
+                    // add f to replace the placeholder after e
+                    OnChangedEvent(9, 1, PLACEHOLDER_TO_ITEM),
+                    // add g, we don't have a placeholder for it so it is an insertion
+                    OnInsertedEvent(10, 1),
+                    // rm a,b,c
+                    OnRemovedEvent(4, 3),
+                    // rm 3 unnecessary leading placeholders
+                    OnRemovedEvent(0, 3),
+                    // 3rd placeholder moved to pos 0, so dispatch a change for it
+                    OnChangedEvent(0, 1, PLACEHOLDER_POSITION_CHANGE),
+                    // add 20 trailing placeholders
+                    OnInsertedEvent(5, 20)
+                )
         }
     }
 
@@ -282,20 +259,16 @@
 
     @Test
     fun transformAnchorIndex_offset() {
-        validateTwoListDiffTransform(
-            Storage(5, listOf("a"), 6),
-            Storage(7, listOf("a"), 8)
-        ) { transformAnchorIndex ->
+        validateTwoListDiffTransform(Storage(5, listOf("a"), 6), Storage(7, listOf("a"), 8)) {
+            transformAnchorIndex ->
             assertEquals(7, transformAnchorIndex(5))
         }
     }
 
     @Test
     fun transformAnchorIndex_nullBehavior() {
-        validateTwoListDiffTransform(
-            Storage(3, listOf("a"), 4),
-            Storage(1, listOf("a"), 2)
-        ) { transformAnchorIndex ->
+        validateTwoListDiffTransform(Storage(3, listOf("a"), 4), Storage(1, listOf("a"), 2)) {
+            transformAnchorIndex ->
             // null, so map to same position in new list
             assertEquals(0, transformAnchorIndex(0))
             assertEquals(1, transformAnchorIndex(1))
@@ -313,10 +286,8 @@
 
     @Test
     fun transformAnchorIndex_boundaryBehavior() {
-        validateTwoListDiffTransform(
-            Storage(3, listOf("a"), 4),
-            Storage(1, listOf("a"), 2)
-        ) { transformAnchorIndex ->
+        validateTwoListDiffTransform(Storage(3, listOf("a"), 4), Storage(1, listOf("a"), 2)) {
+            transformAnchorIndex ->
             // shouldn't happen, but to be safe, indices are clamped
             assertEquals(0, transformAnchorIndex(-1))
             assertEquals(3, transformAnchorIndex(100))
@@ -329,14 +300,16 @@
             Storage(4, listOf("c_4", "4", "d_5", "5", "e_6", "6"), 3),
             Storage(0, listOf("a_0", "0", "b_1", "1"), 8)
         ) {
-            assertThat(it.allEvents).containsExactly(
-                // replace previous items with placeholders
-                OnChangedEvent(4, 6, ITEM_TO_PLACEHOLDER),
-                // swap first 4 placeholders with newly loaded items
-                OnChangedEvent(0, 4, PLACEHOLDER_TO_ITEM),
-                // remove extra placeholder
-                OnRemovedEvent(12, 1)
-            ).inOrder()
+            assertThat(it.allEvents)
+                .containsExactly(
+                    // replace previous items with placeholders
+                    OnChangedEvent(4, 6, ITEM_TO_PLACEHOLDER),
+                    // swap first 4 placeholders with newly loaded items
+                    OnChangedEvent(0, 4, PLACEHOLDER_TO_ITEM),
+                    // remove extra placeholder
+                    OnRemovedEvent(12, 1)
+                )
+                .inOrder()
         }
     }
 
@@ -346,32 +319,34 @@
             Storage(4, listOf("a_4", "4", "b_5", "5", "c_6", "6"), 3),
             Storage(8, listOf("d_8", "8", "e_9", "9"), 0),
         ) {
-            assertThat(it.allEvents).containsExactly(
-                // remove c_6 and 6, their positions overlap w/ newly loaded items
-                OnRemovedEvent(8, 2),
-                // now insert d_8 and 8
-                OnInsertedEvent(8, 2),
-                // first 4 of the loaded items becomes placeholders: "a_4", "4", "b_5", "5"
-                OnChangedEvent(4, 4, ITEM_TO_PLACEHOLDER),
-                // insert e_9 and 9 using placeholders
-                OnChangedEvent(10, 2, PLACEHOLDER_TO_ITEM),
-                // finally, remove the last placeholder that we won't use
-                OnRemovedEvent(12, 1)
-            )
+            assertThat(it.allEvents)
+                .containsExactly(
+                    // remove c_6 and 6, their positions overlap w/ newly loaded items
+                    OnRemovedEvent(8, 2),
+                    // now insert d_8 and 8
+                    OnInsertedEvent(8, 2),
+                    // first 4 of the loaded items becomes placeholders: "a_4", "4", "b_5", "5"
+                    OnChangedEvent(4, 4, ITEM_TO_PLACEHOLDER),
+                    // insert e_9 and 9 using placeholders
+                    OnChangedEvent(10, 2, PLACEHOLDER_TO_ITEM),
+                    // finally, remove the last placeholder that we won't use
+                    OnRemovedEvent(12, 1)
+                )
         }
     }
 
     companion object {
-        private val DIFF_CALLBACK = object : DiffUtil.ItemCallback<String>() {
-            override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
-                // first char means same item
-                return oldItem[0] == newItem[0]
-            }
+        private val DIFF_CALLBACK =
+            object : DiffUtil.ItemCallback<String>() {
+                override fun areItemsTheSame(oldItem: String, newItem: String): Boolean {
+                    // first char means same item
+                    return oldItem[0] == newItem[0]
+                }
 
-            override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
-                return oldItem == newItem
+                override fun areContentsTheSame(oldItem: String, newItem: String): Boolean {
+                    return oldItem == newItem
+                }
             }
-        }
 
         private fun validateTwoListDiff(
             oldList: Storage,
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffWithRecyclerViewTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffWithRecyclerViewTest.kt
index 812da03..139c077 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffWithRecyclerViewTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/PlaceholderPaddedListDiffWithRecyclerViewTest.kt
@@ -36,8 +36,8 @@
 import org.junit.runner.RunWith
 
 /**
- * For some tests, this test uses a real recyclerview with a real adapter to serve as an
- * integration test so that we can validate all updates and state restorations after updates.
+ * For some tests, this test uses a real recyclerview with a real adapter to serve as an integration
+ * test so that we can validate all updates and state restorations after updates.
  */
 @RunWith(AndroidJUnit4::class)
 @LargeTest
@@ -49,12 +49,11 @@
     @Before
     fun init() {
         context = ApplicationProvider.getApplicationContext()
-        recyclerView = RecyclerView(
-            context
-        ).also {
-            it.layoutManager = LinearLayoutManager(context)
-            it.itemAnimator = null
-        }
+        recyclerView =
+            RecyclerView(context).also {
+                it.layoutManager = LinearLayoutManager(context)
+                it.itemAnimator = null
+            }
         adapter = PlaceholderPaddedListAdapter()
         recyclerView.adapter = adapter
     }
@@ -71,35 +70,39 @@
 
     @Test
     fun basic() {
-        val storage = PlaceholderPaddedStorage(
-            placeholdersBefore = 0,
-            data = createItems(0, 10),
-            placeholdersAfter = 0
-        )
+        val storage =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 0,
+                data = createItems(0, 10),
+                placeholdersAfter = 0
+            )
         adapter.setItems(storage)
         measureAndLayout()
         val snapshot = captureUISnapshot()
-        assertThat(snapshot).containsExactlyElementsIn(
-            createExpectedSnapshot(
-                firstItemTopOffset = 0,
-                startItemIndex = 0,
-                backingList = storage
+        assertThat(snapshot)
+            .containsExactlyElementsIn(
+                createExpectedSnapshot(
+                    firstItemTopOffset = 0,
+                    startItemIndex = 0,
+                    backingList = storage
+                )
             )
-        )
     }
 
     @Test
     fun distinctLists_fullyOverlappingRange() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 10, count = 8),
-            placeholdersAfter = 30
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 100, count = 8),
-            placeholdersAfter = 30
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 10, count = 8),
+                placeholdersAfter = 30
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 100, count = 8),
+                placeholdersAfter = 30
+            )
         distinctListTest_withVariousInitialPositions(
             pre = pre,
             post = post,
@@ -108,34 +111,35 @@
 
     @Test
     fun distinctLists_loadedBefore_or_After() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 10, count = 10),
-            placeholdersAfter = 10
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 5,
-            data = createItems(startId = 5, count = 5),
-            placeholdersAfter = 20
-        )
-        distinctListTest_withVariousInitialPositions(
-            pre = pre,
-            post = post
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 10, count = 10),
+                placeholdersAfter = 10
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 5,
+                data = createItems(startId = 5, count = 5),
+                placeholdersAfter = 20
+            )
+        distinctListTest_withVariousInitialPositions(pre = pre, post = post)
     }
 
     @Test
     fun distinctLists_partiallyOverlapping() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 0, count = 8),
-            placeholdersAfter = 30
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 15,
-            data = createItems(startId = 100, count = 8),
-            placeholdersAfter = 30
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 0, count = 8),
+                placeholdersAfter = 30
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 15,
+                data = createItems(startId = 100, count = 8),
+                placeholdersAfter = 30
+            )
         distinctListTest_withVariousInitialPositions(
             pre = pre,
             post = post,
@@ -144,16 +148,18 @@
 
     @Test
     fun distinctLists_fewerItemsLoaded_withMorePlaceholdersBefore() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 10, count = 8),
-            placeholdersAfter = 30
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 15,
-            data = createItems(startId = 100, count = 3),
-            placeholdersAfter = 30
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 10, count = 8),
+                placeholdersAfter = 30
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 15,
+                data = createItems(startId = 100, count = 3),
+                placeholdersAfter = 30
+            )
         distinctListTest_withVariousInitialPositions(
             pre = pre,
             post = post,
@@ -162,16 +168,18 @@
 
     @Test
     fun distinctLists_noPlaceholdersLeft() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 10, count = 8),
-            placeholdersAfter = 30
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 0,
-            data = createItems(startId = 100, count = 3),
-            placeholdersAfter = 0
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 10, count = 8),
+                placeholdersAfter = 30
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 0,
+                data = createItems(startId = 100, count = 3),
+                placeholdersAfter = 0
+            )
         distinctListTest_withVariousInitialPositions(
             pre = pre,
             post = post,
@@ -180,16 +188,18 @@
 
     @Test
     fun distinctLists_moreItemsLoaded() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 10, count = 3),
-            placeholdersAfter = 30
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 100, count = 8),
-            placeholdersAfter = 30
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 10, count = 3),
+                placeholdersAfter = 30
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 100, count = 8),
+                placeholdersAfter = 30
+            )
         distinctListTest_withVariousInitialPositions(
             pre = pre,
             post = post,
@@ -198,16 +208,18 @@
 
     @Test
     fun distinctLists_moreItemsLoaded_andAlsoMoreOffset() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(startId = 10, count = 3),
-            placeholdersAfter = 30
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 15,
-            data = createItems(startId = 100, count = 8),
-            placeholdersAfter = 30
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(startId = 10, count = 3),
+                placeholdersAfter = 30
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 15,
+                data = createItems(startId = 100, count = 8),
+                placeholdersAfter = 30
+            )
         distinctListTest_withVariousInitialPositions(
             pre = pre,
             post = post,
@@ -216,25 +228,25 @@
 
     @Test
     fun distinctLists_expandShrink() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(10, 10),
-            placeholdersAfter = 20
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 0,
-            data = createItems(100, 1),
-            placeholdersAfter = 0
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(10, 10),
+                placeholdersAfter = 20
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 0,
+                data = createItems(100, 1),
+                placeholdersAfter = 0
+            )
         distinctListTest_withVariousInitialPositions(
             pre = pre,
             post = post,
         )
     }
 
-    /**
-     * Runs a state restoration test with various "current scroll positions".
-     */
+    /** Runs a state restoration test with various "current scroll positions". */
     private fun distinctListTest_withVariousInitialPositions(
         pre: PlaceholderPaddedStorage,
         post: PlaceholderPaddedStorage
@@ -260,45 +272,48 @@
 
     @Test
     fun distinctLists_visibleRangeRemoved() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(10, 10),
-            placeholdersAfter = 30
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 0,
-            data = createItems(100, 4),
-            placeholdersAfter = 20
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(10, 10),
+                placeholdersAfter = 30
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 0,
+                data = createItems(100, 4),
+                placeholdersAfter = 20
+            )
         swapListTest(
             pre = pre,
             post = post,
-            preSwapAction = {
-                recyclerView.scrollBy(0, 30 * ITEM_HEIGHT)
-            },
+            preSwapAction = { recyclerView.scrollBy(0, 30 * ITEM_HEIGHT) },
             validate = { _, newSnapshot ->
-                assertThat(newSnapshot).containsExactlyElementsIn(
-                    createExpectedSnapshot(
-                        startItemIndex = post.size - RV_HEIGHT / ITEM_HEIGHT,
-                        backingList = post
+                assertThat(newSnapshot)
+                    .containsExactlyElementsIn(
+                        createExpectedSnapshot(
+                            startItemIndex = post.size - RV_HEIGHT / ITEM_HEIGHT,
+                            backingList = post
+                        )
                     )
-                )
             }
         )
     }
 
     @Test
     fun distinctLists_validateDiff() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 10,
-            data = createItems(10, 10), // their positions won't be in the new list
-            placeholdersAfter = 20
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 0,
-            data = createItems(100, 1),
-            placeholdersAfter = 0
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 10,
+                data = createItems(10, 10), // their positions won't be in the new list
+                placeholdersAfter = 20
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 0,
+                data = createItems(100, 1),
+                placeholdersAfter = 0
+            )
         updateDiffTest(pre, post)
     }
 
@@ -308,14 +323,12 @@
         // this is a random test but if it fails, the exception will have enough information to
         // create an isolated test
         val rand = Random(System.nanoTime())
-        fun randomPlaceholderPaddedStorage(startId: Int) = PlaceholderPaddedStorage(
-            placeholdersBefore = rand.nextInt(0, 20),
-            data = createItems(
-                startId = startId,
-                count = rand.nextInt(0, 20)
-            ),
-            placeholdersAfter = rand.nextInt(0, 20)
-        )
+        fun randomPlaceholderPaddedStorage(startId: Int) =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = rand.nextInt(0, 20),
+                data = createItems(startId = startId, count = rand.nextInt(0, 20)),
+                placeholdersAfter = rand.nextInt(0, 20)
+            )
         repeat(RANDOM_TEST_REPEAT_SIZE) {
             updateDiffTest(
                 pre = randomPlaceholderPaddedStorage(0),
@@ -326,61 +339,69 @@
 
     @Test
     fun continuousMatch_1() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 4,
-            data = createItems(startId = 0, count = 16),
-            placeholdersAfter = 1
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 1,
-            data = createItems(startId = 13, count = 4),
-            placeholdersAfter = 19
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 4,
+                data = createItems(startId = 0, count = 16),
+                placeholdersAfter = 1
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 1,
+                data = createItems(startId = 13, count = 4),
+                placeholdersAfter = 19
+            )
         updateDiffTest(pre, post)
     }
 
     @Test
     fun continuousMatch_2() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 6,
-            data = createItems(startId = 0, count = 9),
-            placeholdersAfter = 19
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 14,
-            data = createItems(startId = 4, count = 3),
-            placeholdersAfter = 11
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 6,
+                data = createItems(startId = 0, count = 9),
+                placeholdersAfter = 19
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 14,
+                data = createItems(startId = 4, count = 3),
+                placeholdersAfter = 11
+            )
         updateDiffTest(pre, post)
     }
 
     @Test
     fun continuousMatch_3() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 11,
-            data = createItems(startId = 0, count = 4),
-            placeholdersAfter = 6
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 7,
-            data = createItems(startId = 0, count = 1),
-            placeholdersAfter = 11
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 11,
+                data = createItems(startId = 0, count = 4),
+                placeholdersAfter = 6
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 7,
+                data = createItems(startId = 0, count = 1),
+                placeholdersAfter = 11
+            )
         updateDiffTest(pre, post)
     }
 
     @Test
     fun continuousMatch_4() {
-        val pre = PlaceholderPaddedStorage(
-            placeholdersBefore = 4,
-            data = createItems(startId = 0, count = 15),
-            placeholdersAfter = 18
-        )
-        val post = PlaceholderPaddedStorage(
-            placeholdersBefore = 11,
-            data = createItems(startId = 5, count = 17),
-            placeholdersAfter = 9
-        )
+        val pre =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 4,
+                data = createItems(startId = 0, count = 15),
+                placeholdersAfter = 18
+            )
+        val post =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = 11,
+                data = createItems(startId = 5, count = 17),
+                placeholdersAfter = 9
+            )
         updateDiffTest(pre, post)
     }
 
@@ -397,47 +418,39 @@
     }
 
     /**
-     * Tests that if two lists have some overlaps, we dispatch the right diff events.
-     * It can also optionally shuffle the lists.
+     * Tests that if two lists have some overlaps, we dispatch the right diff events. It can also
+     * optionally shuffle the lists.
      */
     private fun randomContinuousMatchTest(shuffle: Boolean) {
         // this is a random test but if it fails, the exception will have enough information to
         // create an isolated test
         val rand = Random(System.nanoTime())
-        fun randomPlaceholderPaddedStorage(startId: Int) = PlaceholderPaddedStorage(
-            placeholdersBefore = rand.nextInt(0, 20),
-            data = createItems(
-                startId = startId,
-                count = rand.nextInt(0, 20)
-            ).let {
-                if (shuffle) it.shuffled()
-                else it
-            },
-            placeholdersAfter = rand.nextInt(0, 20)
-        )
+        fun randomPlaceholderPaddedStorage(startId: Int) =
+            PlaceholderPaddedStorage(
+                placeholdersBefore = rand.nextInt(0, 20),
+                data =
+                    createItems(startId = startId, count = rand.nextInt(0, 20)).let {
+                        if (shuffle) it.shuffled() else it
+                    },
+                placeholdersAfter = rand.nextInt(0, 20)
+            )
         repeat(RANDOM_TEST_REPEAT_SIZE) {
             val pre = randomPlaceholderPaddedStorage(0)
-            val post = randomPlaceholderPaddedStorage(
-                startId = if (pre.dataCount > 0) {
-                    pre.getItem(rand.nextInt(pre.dataCount)).id
-                } else {
-                    0
-                }
-            )
-            updateDiffTest(
-                pre = pre,
-                post = post
-            )
+            val post =
+                randomPlaceholderPaddedStorage(
+                    startId =
+                        if (pre.dataCount > 0) {
+                            pre.getItem(rand.nextInt(pre.dataCount)).id
+                        } else {
+                            0
+                        }
+                )
+            updateDiffTest(pre = pre, post = post)
         }
     }
 
-    /**
-     * Validates that the update events between [pre] and [post] are correct.
-     */
-    private fun updateDiffTest(
-        pre: PlaceholderPaddedStorage,
-        post: PlaceholderPaddedStorage
-    ) {
+    /** Validates that the update events between [pre] and [post] are correct. */
+    private fun updateDiffTest(pre: PlaceholderPaddedStorage, post: PlaceholderPaddedStorage) {
         val callback = ValidatingListUpdateCallback(pre, post)
         val diffResult = pre.computeDiff(post, PlaceholderPaddedListItem.CALLBACK)
         pre.dispatchDiff(callback, post, diffResult)
@@ -455,34 +468,29 @@
         swapListTest(
             pre = pre,
             post = post,
-            preSwapAction = {
-                recyclerView.scrollBy(
-                    0,
-                    initialListPos * ITEM_HEIGHT
-                )
-            },
+            preSwapAction = { recyclerView.scrollBy(0, initialListPos * ITEM_HEIGHT) },
             validate = { _, snapshot ->
                 assertWithMessage(
-                    """
+                        """
                     initial pos: $initialListPos
                     expected final pos: $finalListPos
                     pre: $pre
                     post: $post
-                    """.trimIndent()
-                ).that(snapshot).containsExactlyElementsIn(
-                    createExpectedSnapshot(
-                        startItemIndex = finalListPos,
-                        backingList = post
+                    """
+                            .trimIndent()
                     )
-                )
+                    .that(snapshot)
+                    .containsExactlyElementsIn(
+                        createExpectedSnapshot(startItemIndex = finalListPos, backingList = post)
+                    )
             }
         )
     }
 
     /**
      * Helper function to run tests where we submit the [pre] list, run [preSwapAction] (where it
-     * can scroll etc) then submit [post] list, run [postSwapAction] and then call [validate]
-     * with UI snapshots.
+     * can scroll etc) then submit [post] list, run [postSwapAction] and then call [validate] with
+     * UI snapshots.
      */
     private fun swapListTest(
         pre: PlaceholderPaddedStorage,
@@ -502,9 +510,7 @@
         validate(preSnapshot, postSnapshot)
     }
 
-    /**
-     * Captures positions and data of each visible item in the RecyclerView.
-     */
+    /** Captures positions and data of each visible item in the RecyclerView. */
     private fun captureUISnapshot(): List<UIItemSnapshot> {
         return (0 until recyclerView.childCount).mapNotNull { childPos ->
             val view = recyclerView.getChildAt(childPos)!!
@@ -522,9 +528,7 @@
         }
     }
 
-    /**
-     * Custom adapter class that also validates its update events to ensure they are correct.
-     */
+    /** Custom adapter class that also validates its update events to ensure they are correct. */
     private class PlaceholderPaddedListAdapter :
         RecyclerView.Adapter<PlaceholderPaddedListViewHolder>() {
         private var items: PlaceholderPaddedList<PlaceholderPaddedListItem>? = null
@@ -551,10 +555,8 @@
             viewType: Int
         ): PlaceholderPaddedListViewHolder {
             return PlaceholderPaddedListViewHolder(parent.context).also {
-                it.itemView.layoutParams = RecyclerView.LayoutParams(
-                    RecyclerView.LayoutParams.MATCH_PARENT,
-                    ITEM_HEIGHT
-                )
+                it.itemView.layoutParams =
+                    RecyclerView.LayoutParams(RecyclerView.LayoutParams.MATCH_PARENT, ITEM_HEIGHT)
             }
         }
 
@@ -569,34 +571,32 @@
         }
     }
 
-    private data class PlaceholderPaddedListItem(
-        val id: Int,
-        val value: String
-    ) {
+    private data class PlaceholderPaddedListItem(val id: Int, val value: String) {
         companion object {
-            val CALLBACK = object : DiffUtil.ItemCallback<PlaceholderPaddedListItem>() {
-                override fun areItemsTheSame(
-                    oldItem: PlaceholderPaddedListItem,
-                    newItem: PlaceholderPaddedListItem
-                ): Boolean {
-                    return oldItem.id == newItem.id
-                }
+            val CALLBACK =
+                object : DiffUtil.ItemCallback<PlaceholderPaddedListItem>() {
+                    override fun areItemsTheSame(
+                        oldItem: PlaceholderPaddedListItem,
+                        newItem: PlaceholderPaddedListItem
+                    ): Boolean {
+                        return oldItem.id == newItem.id
+                    }
 
-                override fun areContentsTheSame(
-                    oldItem: PlaceholderPaddedListItem,
-                    newItem: PlaceholderPaddedListItem
-                ): Boolean {
-                    return oldItem == newItem
+                    override fun areContentsTheSame(
+                        oldItem: PlaceholderPaddedListItem,
+                        newItem: PlaceholderPaddedListItem
+                    ): Boolean {
+                        return oldItem == newItem
+                    }
                 }
-            }
         }
     }
 
-    private class PlaceholderPaddedListViewHolder(
-        context: Context
-    ) : RecyclerView.ViewHolder(View(context)) {
+    private class PlaceholderPaddedListViewHolder(context: Context) :
+        RecyclerView.ViewHolder(View(context)) {
         var boundItem: PlaceholderPaddedListItem? = null
         var boundPos: Int = -1
+
         override fun toString(): String {
             return "VH[$boundPos , $boundItem]"
         }
@@ -620,7 +620,8 @@
             """
             $placeholdersBefore:${data.size}:$placeholdersAfter
             $data
-            """.trimIndent()
+            """
+                .trimIndent()
         }
 
         override fun getItem(index: Int): PlaceholderPaddedListItem = data[index]
@@ -634,41 +635,25 @@
         override fun toString() = stringRepresentation
     }
 
-    private fun createItems(
-        startId: Int,
-        count: Int
-    ): List<PlaceholderPaddedListItem> {
+    private fun createItems(startId: Int, count: Int): List<PlaceholderPaddedListItem> {
         return (startId until startId + count).map {
-            PlaceholderPaddedListItem(
-                id = it,
-                value = "$it"
-            )
+            PlaceholderPaddedListItem(id = it, value = "$it")
         }
     }
 
-    /**
-     * Creates an expected UI snapshot based on the given list and scroll position / offset.
-     */
+    /** Creates an expected UI snapshot based on the given list and scroll position / offset. */
     private fun createExpectedSnapshot(
         firstItemTopOffset: Int = 0,
         startItemIndex: Int,
         backingList: PlaceholderPaddedList<PlaceholderPaddedListItem>
     ): List<UIItemSnapshot> {
-        check(firstItemTopOffset <= 0) {
-            "first item offset should not be negative"
-        }
+        check(firstItemTopOffset <= 0) { "first item offset should not be negative" }
         var remainingHeight = RV_HEIGHT - firstItemTopOffset
         var pos = startItemIndex
         var top = firstItemTopOffset
         val result = mutableListOf<UIItemSnapshot>()
         while (remainingHeight > 0 && pos < backingList.size) {
-            result.add(
-                UIItemSnapshot(
-                    top = top,
-                    boundItem = backingList.get(pos),
-                    boundPos = pos
-                )
-            )
+            result.add(UIItemSnapshot(top = top, boundItem = backingList.get(pos), boundPos = pos))
             top += ITEM_HEIGHT
             remainingHeight -= ITEM_HEIGHT
             pos++
@@ -678,20 +663,20 @@
 
     /**
      * A ListUpdateCallback implementation that tracks all change notifications and then validate
-     * that
-     * a) changes are correct
-     * b) no unnecessary events are dispatched (e.g. dispatching change for an item then removing
-     * it)
+     * that a) changes are correct b) no unnecessary events are dispatched (e.g. dispatching change
+     * for an item then removing it)
      */
     private class ValidatingListUpdateCallback<T>(
         previousList: PlaceholderPaddedList<T>?,
         private val newList: PlaceholderPaddedList<T>
     ) : ListUpdateCallback {
         // used in assertion messages
-        val msg = """
+        val msg =
+            """
                 oldList: $previousList
                 newList: $newList
-        """.trimIndent()
+        """
+                .trimIndent()
 
         // all changes are applied to this list, at the end, we'll validate against the new list
         // to ensure all updates made sense and no unnecessary updates are made
@@ -709,9 +694,7 @@
         override fun onInserted(position: Int, count: Int) {
             position.assertWithinBounds()
             assertWithMessage(msg).that(count).isAtLeast(1)
-            repeat(count) {
-                runningList.add(position, ListSnapshotItem.Inserted)
-            }
+            repeat(count) { runningList.add(position, ListSnapshotItem.Inserted) }
         }
 
         override fun onRemoved(position: Int, count: Int) {
@@ -720,15 +703,13 @@
             assertWithMessage(msg).that(count).isAtLeast(1)
             (position until position + count).forEach { pos ->
                 assertWithMessage(
-                    "$msg\nshouldn't be removing an item that already got a change event" +
-                        " pos: $pos , ${runningList[pos]}"
-                )
+                        "$msg\nshouldn't be removing an item that already got a change event" +
+                            " pos: $pos , ${runningList[pos]}"
+                    )
                     .that(runningList[pos].isOriginalItem())
                     .isTrue()
             }
-            repeat(count) {
-                runningList.removeAt(position)
-            }
+            repeat(count) { runningList.removeAt(position) }
         }
 
         override fun onMoved(fromPosition: Int, toPosition: Int) {
@@ -744,25 +725,25 @@
             (position until position + count).forEach { pos ->
                 // make sure we don't dispatch overlapping updates
                 assertWithMessage(
-                    "$msg\nunnecessary change event for position $pos $payload " +
-                        "${runningList[pos]}"
-                )
+                        "$msg\nunnecessary change event for position $pos $payload " +
+                            "${runningList[pos]}"
+                    )
                     .that(runningList[pos].isOriginalItem())
                     .isTrue()
-                if (payload == DiffingChangePayload.PLACEHOLDER_TO_ITEM ||
-                    payload == DiffingChangePayload.PLACEHOLDER_POSITION_CHANGE
+                if (
+                    payload == DiffingChangePayload.PLACEHOLDER_TO_ITEM ||
+                        payload == DiffingChangePayload.PLACEHOLDER_POSITION_CHANGE
                 ) {
-                    assertWithMessage(msg).that(runningList[pos]).isInstanceOf(
-                        ListSnapshotItem.Placeholder::class.java
-                    )
+                    assertWithMessage(msg)
+                        .that(runningList[pos])
+                        .isInstanceOf(ListSnapshotItem.Placeholder::class.java)
                 } else {
-                    assertWithMessage(msg).that(runningList[pos]).isInstanceOf(
-                        ListSnapshotItem.Item::class.java
-                    )
+                    assertWithMessage(msg)
+                        .that(runningList[pos])
+                        .isInstanceOf(ListSnapshotItem.Item::class.java)
                 }
-                runningList[pos] = ListSnapshotItem.Changed(
-                    payload = payload as? DiffingChangePayload
-                )
+                runningList[pos] =
+                    ListSnapshotItem.Changed(payload = payload as? DiffingChangePayload)
             }
         }
 
@@ -772,10 +753,7 @@
             val newListSnapshot = newList.createSnapshot()
             runningList.forEachIndexed { index, listSnapshotItem ->
                 val newListItem = newListSnapshot[index]
-                listSnapshotItem.assertReplacement(
-                    msg,
-                    newListItem
-                )
+                listSnapshotItem.assertReplacement(msg, newListItem)
                 if (!listSnapshotItem.isOriginalItem()) {
                     // if it changed, replace from new snapshot
                     runningList[index] = newListSnapshot[index]
@@ -827,70 +805,39 @@
     return getItem(storageIndex)
 }
 
-/**
- * Create a snapshot of this current that can be used to verify diffs.
- */
-private fun <T> PlaceholderPaddedList<T>.createSnapshot():
-    MutableList<ListSnapshotItem> = (0 until size)
-    .mapTo(mutableListOf()) { pos ->
-        get(pos)?.let {
-            ListSnapshotItem.Item(it)
-        } ?: ListSnapshotItem.Placeholder(pos)
+/** Create a snapshot of this current that can be used to verify diffs. */
+private fun <T> PlaceholderPaddedList<T>.createSnapshot(): MutableList<ListSnapshotItem> =
+    (0 until size).mapTo(mutableListOf()) { pos ->
+        get(pos)?.let { ListSnapshotItem.Item(it) } ?: ListSnapshotItem.Placeholder(pos)
     }
 
-/**
- * Sealed classes to identify items in the list.
- */
+/** Sealed classes to identify items in the list. */
 internal sealed class ListSnapshotItem {
     // means the item didn't change at all in diffs.
     fun isOriginalItem() = this is Item<*> || this is Placeholder
 
-    /**
-     * Asserts that this item properly represents the replacement (newListItem).
-     */
-    abstract fun assertReplacement(
-        msg: String,
-        newListItem: ListSnapshotItem
-    )
+    /** Asserts that this item properly represents the replacement (newListItem). */
+    abstract fun assertReplacement(msg: String, newListItem: ListSnapshotItem)
 
     data class Item<T>(val item: T) : ListSnapshotItem() {
-        override fun assertReplacement(
-            msg: String,
-            newListItem: ListSnapshotItem
-        ) {
+        override fun assertReplacement(msg: String, newListItem: ListSnapshotItem) {
             // no change
-            assertWithMessage(msg).that(
-                newListItem
-            ).isEqualTo(this)
+            assertWithMessage(msg).that(newListItem).isEqualTo(this)
         }
     }
 
     data class Placeholder(val pos: Int) : ListSnapshotItem() {
-        override fun assertReplacement(
-            msg: String,
-            newListItem: ListSnapshotItem
-        ) {
-            assertWithMessage(msg).that(
-                newListItem
-            ).isInstanceOf(
-                Placeholder::class.java
-            )
+        override fun assertReplacement(msg: String, newListItem: ListSnapshotItem) {
+            assertWithMessage(msg).that(newListItem).isInstanceOf(Placeholder::class.java)
             val replacement = newListItem as Placeholder
             // make sure position didn't change. If it did, we would be replaced with a [Changed].
-            assertWithMessage(msg).that(
-                pos
-            ).isEqualTo(replacement.pos)
+            assertWithMessage(msg).that(pos).isEqualTo(replacement.pos)
         }
     }
 
-    /**
-     * Inserted into the list when we receive a change notification about an item/placeholder.
-     */
+    /** Inserted into the list when we receive a change notification about an item/placeholder. */
     data class Changed(val payload: DiffingChangePayload?) : ListSnapshotItem() {
-        override fun assertReplacement(
-            msg: String,
-            newListItem: ListSnapshotItem
-        ) {
+        override fun assertReplacement(msg: String, newListItem: ListSnapshotItem) {
             // there are 4 cases for changes.
             // is either placeholder -> placeholder with new position
             // placeholder to item
@@ -898,29 +845,23 @@
             // item change from original diffing.
             when (payload) {
                 DiffingChangePayload.ITEM_TO_PLACEHOLDER -> {
-                    assertWithMessage(msg).that(newListItem)
-                        .isInstanceOf(Placeholder::class.java)
+                    assertWithMessage(msg).that(newListItem).isInstanceOf(Placeholder::class.java)
                 }
                 DiffingChangePayload.PLACEHOLDER_TO_ITEM -> {
-                    assertWithMessage(msg).that(newListItem)
-                        .isInstanceOf(Item::class.java)
+                    assertWithMessage(msg).that(newListItem).isInstanceOf(Item::class.java)
                 }
                 DiffingChangePayload.PLACEHOLDER_POSITION_CHANGE -> {
-                    assertWithMessage(msg).that(newListItem)
-                        .isInstanceOf(Placeholder::class.java)
+                    assertWithMessage(msg).that(newListItem).isInstanceOf(Placeholder::class.java)
                 }
                 else -> {
                     // item change that came from diffing.
-                    assertWithMessage(msg).that(newListItem)
-                        .isInstanceOf(Item::class.java)
+                    assertWithMessage(msg).that(newListItem).isInstanceOf(Item::class.java)
                 }
             }
         }
     }
 
-    /**
-     * Used when an item/placeholder is inserted to the list
-     */
+    /** Used when an item/placeholder is inserted to the list */
     object Inserted : ListSnapshotItem() {
         override fun assertReplacement(msg: String, newListItem: ListSnapshotItem) {
             // nothing to assert here, it can represent anything in the new list.
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/RecordingCallbackTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/RecordingCallbackTest.kt
index 4af368a..70d766f 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/RecordingCallbackTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/RecordingCallbackTest.kt
@@ -31,11 +31,14 @@
         val recordingCallback = RecordingCallback()
 
         @Suppress("DEPRECATION")
-        val failCallback = object : PagedList.Callback() {
-            override fun onChanged(position: Int, count: Int) = fail("not expected")
-            override fun onInserted(position: Int, count: Int) = fail("not expected")
-            override fun onRemoved(position: Int, count: Int) = fail("not expected")
-        }
+        val failCallback =
+            object : PagedList.Callback() {
+                override fun onChanged(position: Int, count: Int) = fail("not expected")
+
+                override fun onInserted(position: Int, count: Int) = fail("not expected")
+
+                override fun onRemoved(position: Int, count: Int) = fail("not expected")
+            }
 
         // nothing recorded, verify nothing dispatched
         recordingCallback.dispatchRecordingTo(failCallback)
@@ -46,28 +49,29 @@
 
         var inc = 0
         @Suppress("DEPRECATION")
-        val verifyCallback = object : PagedList.Callback() {
-            override fun onChanged(position: Int, count: Int) {
-                assertEquals(inc, 0)
-                assertEquals(position, 1)
-                assertEquals(count, 2)
-                inc += 1
-            }
+        val verifyCallback =
+            object : PagedList.Callback() {
+                override fun onChanged(position: Int, count: Int) {
+                    assertEquals(inc, 0)
+                    assertEquals(position, 1)
+                    assertEquals(count, 2)
+                    inc += 1
+                }
 
-            override fun onInserted(position: Int, count: Int) {
-                assertEquals(inc, 1)
-                assertEquals(position, 3)
-                assertEquals(count, 4)
-                inc += 1
-            }
+                override fun onInserted(position: Int, count: Int) {
+                    assertEquals(inc, 1)
+                    assertEquals(position, 3)
+                    assertEquals(count, 4)
+                    inc += 1
+                }
 
-            override fun onRemoved(position: Int, count: Int) {
-                assertEquals(inc, 2)
-                assertEquals(position, 5)
-                assertEquals(count, 6)
-                inc += 1
+                override fun onRemoved(position: Int, count: Int) {
+                    assertEquals(inc, 2)
+                    assertEquals(position, 5)
+                    assertEquals(count, 6)
+                    inc += 1
+                }
             }
-        }
         recordingCallback.dispatchRecordingTo(verifyCallback)
         assertEquals(3, inc)
 
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/StateRestorationTest.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/StateRestorationTest.kt
index 11e54c5..c6c2146 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/StateRestorationTest.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/StateRestorationTest.kt
@@ -56,15 +56,15 @@
 import org.junit.runner.RunWith
 
 /**
- * We are only capable of restoring state if one the two is valid:
- * a) pager's flow is cached in the view model (only for config change)
- * b) data source is counted and placeholders are enabled (both config change and app restart)
+ * We are only capable of restoring state if one the two is valid: a) pager's flow is cached in the
+ * view model (only for config change) b) data source is counted and placeholders are enabled (both
+ * config change and app restart)
  *
- * Both of these cases actually work without using the initial key, except it is relatively
- * slower in option B because we need to load all items from initial key to the required position.
+ * Both of these cases actually work without using the initial key, except it is relatively slower
+ * in option B because we need to load all items from initial key to the required position.
  *
- * This test validates those two cases for now. For more complicated cases, we need some helper
- * as developer needs to intervene to provide more information.
+ * This test validates those two cases for now. For more complicated cases, we need some helper as
+ * developer needs to intervene to provide more information.
  */
 @ExperimentalCoroutinesApi
 @ExperimentalTime
@@ -72,10 +72,9 @@
 @RunWith(AndroidJUnit4::class)
 class StateRestorationTest {
     /**
-     * List of dispatchers we track in the test for idling + pushing execution.
-     * We have 3 dispatchers for more granular control:
-     * main, and background for pager.
-     * testScope for running tests.
+     * List of dispatchers we track in the test for idling + pushing execution. We have 3
+     * dispatchers for more granular control: main, and background for pager. testScope for running
+     * tests.
      */
     private val scheduler = TestCoroutineScheduler()
     private val mainDispatcher = StandardTestDispatcher(scheduler)
@@ -98,12 +97,7 @@
     @Test
     fun restoreState_withPlaceholders() {
         runTest {
-            collectPagesAsync(
-                createPager(
-                    pageSize = 100,
-                    enablePlaceholders = true
-                ).flow
-            )
+            collectPagesAsync(createPager(pageSize = 100, enablePlaceholders = true).flow)
             measureAndLayout()
             val visible = recyclerView.captureSnapshot()
             assertThat(visible).isNotEmpty()
@@ -111,36 +105,22 @@
             val expected = recyclerView.captureSnapshot()
             saveAndRestore()
             // make sure state is not restored before items are loaded
-            assertThat(
-                layoutManager.restoredState
-            ).isFalse()
+            assertThat(layoutManager.restoredState).isFalse()
             // pause item loads
-            val delayedJob = launch(start = CoroutineStart.LAZY) {
-                collectPagesAsync(
-                    createPager(
-                        pageSize = 10,
-                        enablePlaceholders = true
-                    ).flow
-                )
-            }
+            val delayedJob =
+                launch(start = CoroutineStart.LAZY) {
+                    collectPagesAsync(createPager(pageSize = 10, enablePlaceholders = true).flow)
+                }
             measureAndLayout()
             // item load is paused, still shouldn't restore state
-            assertThat(
-                layoutManager.restoredState
-            ).isFalse()
+            assertThat(layoutManager.restoredState).isFalse()
 
             // now load items
             delayedJob.start()
 
             measureAndLayout()
-            assertThat(
-                layoutManager.restoredState
-            ).isTrue()
-            assertThat(
-                recyclerView.captureSnapshot()
-            ).containsExactlyElementsIn(
-                expected
-            )
+            assertThat(layoutManager.restoredState).isTrue()
+            assertThat(recyclerView.captureSnapshot()).containsExactlyElementsIn(expected)
         }
     }
 
@@ -148,10 +128,7 @@
     @Test
     fun restoreState_withoutPlaceholders_cachedIn() {
         runTest {
-            val pager = createPager(
-                pageSize = 60,
-                enablePlaceholders = false
-            )
+            val pager = createPager(pageSize = 60, enablePlaceholders = false)
             val cacheScope = TestScope(Job() + scheduler)
             val cachedFlow = pager.flow.cachedIn(cacheScope)
             collectPagesAsync(cachedFlow)
@@ -160,14 +137,10 @@
             scrollToPosition(50)
             val snapshot = recyclerView.captureSnapshot()
             saveAndRestore()
-            assertThat(
-                layoutManager.restoredState
-            ).isFalse()
+            assertThat(layoutManager.restoredState).isFalse()
             collectPagesAsync(cachedFlow)
             measureAndLayout()
-            assertThat(
-                layoutManager.restoredState
-            ).isTrue()
+            assertThat(layoutManager.restoredState).isTrue()
             val restoredSnapshot = recyclerView.captureSnapshot()
             assertThat(restoredSnapshot).containsExactlyElementsIn(snapshot)
             cacheScope.cancel()
@@ -179,21 +152,14 @@
     fun emptyNewPage_allowRestoration() {
         // check that we don't block restoration indefinitely if new pager is empty.
         runTest {
-            val pager = createPager(
-                pageSize = 60,
-                enablePlaceholders = true
-            )
+            val pager = createPager(pageSize = 60, enablePlaceholders = true)
             collectPagesAsync(pager.flow)
             measureAndLayout()
             scrollToPosition(50)
             saveAndRestore()
             assertThat(layoutManager.restoredState).isFalse()
 
-            val emptyPager = createPager(
-                pageSize = 10,
-                itemCount = 0,
-                enablePlaceholders = true
-            )
+            val emptyPager = createPager(pageSize = 10, itemCount = 0, enablePlaceholders = true)
             collectPagesAsync(emptyPager.flow)
             measureAndLayout()
             assertThat(layoutManager.restoredState).isTrue()
@@ -204,35 +170,25 @@
     @Test
     fun userOverridesStateRestoration() {
         runTest {
-            val pager = createPager(
-                pageSize = 40,
-                enablePlaceholders = true
-            )
+            val pager = createPager(pageSize = 40, enablePlaceholders = true)
             collectPagesAsync(pager.flow)
             measureAndLayout()
             scrollToPosition(20)
             val snapshot = recyclerView.captureSnapshot()
             saveAndRestore()
-            val pager2 = createPager(
-                pageSize = 40,
-                enablePlaceholders = true
-            )
+            val pager2 = createPager(pageSize = 40, enablePlaceholders = true)
             // when user calls prevent, we should not trigger state restoration even after we
             // receive the first page
             adapter.stateRestorationPolicy = PREVENT
             collectPagesAsync(pager2.flow)
             measureAndLayout()
-            assertThat(
-                layoutManager.restoredState
-            ).isFalse()
+            assertThat(layoutManager.restoredState).isFalse()
             // make sure test did work as expected, that is, new items are loaded
             assertThat(adapter.itemCount).isGreaterThan(0)
             // now if user allows it, restoration should happen properly
             adapter.stateRestorationPolicy = ALLOW
             measureAndLayout()
-            assertThat(
-                layoutManager.restoredState
-            ).isTrue()
+            assertThat(layoutManager.restoredState).isTrue()
             assertThat(recyclerView.captureSnapshot()).isEqualTo(snapshot)
         }
     }
@@ -242,9 +198,7 @@
         if (this::lifecycleScope.isInitialized) {
             this.lifecycleScope.cancel()
         }
-        lifecycleScope = TestScope(
-            SupervisorJob() + mainDispatcher
-        )
+        lifecycleScope = TestScope(SupervisorJob() + mainDispatcher)
         val context = ApplicationProvider.getApplicationContext<Application>()
         recyclerView = TestRecyclerView(context)
         recyclerView.itemAnimator = null
@@ -268,14 +222,10 @@
         recyclerView.scrollToPosition(pos)
         measureAndLayout()
         val child = layoutManager.findViewByPosition(pos)
-        assertWithMessage("scrolled child $pos exists")
-            .that(child)
-            .isNotNull()
+        assertWithMessage("scrolled child $pos exists").that(child).isNotNull()
 
         val vh = recyclerView.getChildViewHolder(child!!) as ItemViewHolder
-        assertWithMessage("scrolled child should be fully loaded")
-            .that(vh.item)
-            .isNotNull()
+        assertWithMessage("scrolled child should be fully loaded").that(vh.item).isNotNull()
     }
 
     private fun measureAndLayout() {
@@ -313,20 +263,12 @@
                     lifecycleScope.cancel()
                 }
             }
-    }
-
-    /**
-     * collects pages in the lifecycle scope and sends them to the adapter
-     */
-    private fun collectPagesAsync(
-        flow: Flow<PagingData<Item>>
-    ) {
-        val targetAdapter = adapter
-        lifecycleScope.launch {
-            flow.collectLatest {
-                targetAdapter.submitData(it)
-            }
         }
+
+    /** collects pages in the lifecycle scope and sends them to the adapter */
+    private fun collectPagesAsync(flow: Flow<PagingData<Item>>) {
+        val targetAdapter = adapter
+        lifecycleScope.launch { flow.collectLatest { targetAdapter.submitData(it) } }
     }
 
     private fun createPager(
@@ -336,10 +278,11 @@
         initialKey: Int? = null
     ): Pager<Int, Item> {
         return Pager(
-            config = PagingConfig(
-                pageSize = pageSize,
-                enablePlaceholders = enablePlaceholders,
-            ),
+            config =
+                PagingConfig(
+                    pageSize = pageSize,
+                    enablePlaceholders = enablePlaceholders,
+                ),
             initialKey = initialKey,
             pagingSourceFactory = {
                 ItemPagingSource(
@@ -350,9 +293,7 @@
         )
     }
 
-    /**
-     * Returns the list of all visible items in the recyclerview including their locations.
-     */
+    /** Returns the list of all visible items in the recyclerview including their locations. */
     private fun RecyclerView.captureSnapshot(): List<PositionSnapshot> {
         return (0 until childCount).mapNotNull {
             val child = getChildAt(it)
@@ -380,11 +321,7 @@
 
         fun captureSnapshot(): PositionSnapshot {
             val item = checkNotNull(item)
-            return PositionSnapshot(
-                item = item,
-                top = itemView.top,
-                bottom = itemView.bottom
-            )
+            return PositionSnapshot(item = item, top = itemView.top, bottom = itemView.bottom)
         }
 
         fun bindTo(item: Item?) {
@@ -394,28 +331,27 @@
         }
     }
 
-    data class Item(
-        val id: Int,
-        val height: Int = (RV_HEIGHT / 10) + (1 + (id % 10))
-    ) {
+    data class Item(val id: Int, val height: Int = (RV_HEIGHT / 10) + (1 + (id % 10))) {
         companion object {
-            val DIFF_CALLBACK = object : DiffUtil.ItemCallback<Item>() {
-                override fun areItemsTheSame(oldItem: Item, newItem: Item): Boolean {
-                    return oldItem.id == newItem.id
-                }
+            val DIFF_CALLBACK =
+                object : DiffUtil.ItemCallback<Item>() {
+                    override fun areItemsTheSame(oldItem: Item, newItem: Item): Boolean {
+                        return oldItem.id == newItem.id
+                    }
 
-                override fun areContentsTheSame(oldItem: Item, newItem: Item): Boolean {
-                    return oldItem == newItem
+                    override fun areContentsTheSame(oldItem: Item, newItem: Item): Boolean {
+                        return oldItem == newItem
+                    }
                 }
-            }
         }
     }
 
-    inner class TestAdapter : PagingDataAdapter<Item, ItemViewHolder>(
-        diffCallback = Item.DIFF_CALLBACK,
-        mainDispatcher = mainDispatcher,
-        workerDispatcher = backgroundDispatcher
-    ) {
+    inner class TestAdapter :
+        PagingDataAdapter<Item, ItemViewHolder>(
+            diffCallback = Item.DIFF_CALLBACK,
+            mainDispatcher = mainDispatcher,
+            workerDispatcher = backgroundDispatcher
+        ) {
         override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ItemViewHolder {
             return ItemViewHolder(parent.context)
         }
@@ -427,10 +363,8 @@
         fun triggerItemLoad(pos: Int) = super.getItem(pos)
     }
 
-    class ItemPagingSource(
-        private val context: CoroutineContext,
-        private val items: List<Item>
-    ) : PagingSource<Int, Item>() {
+    class ItemPagingSource(private val context: CoroutineContext, private val items: List<Item>) :
+        PagingSource<Int, Item>() {
         override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Item> {
             return withContext(context) {
                 val key = params.key ?: 0
@@ -451,18 +385,10 @@
         override fun getRefreshKey(state: PagingState<Int, Item>): Int? = null
     }
 
-    /**
-     * Snapshot of an item in RecyclerView.
-     */
-    data class PositionSnapshot(
-        val item: Item,
-        val top: Int,
-        val bottom: Int
-    )
+    /** Snapshot of an item in RecyclerView. */
+    data class PositionSnapshot(val item: Item, val top: Int, val bottom: Int)
 
-    /**
-     * RecyclerView class that allows saving and restoring state.
-     */
+    /** RecyclerView class that allows saving and restoring state. */
     class TestRecyclerView(context: Context) : RecyclerView(context) {
         fun restoreState(state: Parcelable) {
             super.onRestoreInstanceState(state)
@@ -478,6 +404,7 @@
      */
     class RestoreAwareLayoutManager(context: Context) : LinearLayoutManager(context) {
         var restoredState = false
+
         override fun onRestoreInstanceState(state: Parcelable) {
             super.onRestoreInstanceState(state)
             restoredState = true
diff --git a/paging/paging-runtime/src/androidTest/java/androidx/paging/StringPagedList.kt b/paging/paging-runtime/src/androidTest/java/androidx/paging/StringPagedList.kt
index 4f550ff..6d3fde3 100644
--- a/paging/paging-runtime/src/androidTest/java/androidx/paging/StringPagedList.kt
+++ b/paging/paging-runtime/src/androidTest/java/androidx/paging/StringPagedList.kt
@@ -39,9 +39,7 @@
             )
         }
         // TODO: prevent null-key load start/end
-        return Error(
-            IllegalArgumentException("This test source only supports initial load")
-        )
+        return Error(IllegalArgumentException("This test source only supports initial load"))
     }
 
     override fun getRefreshKey(state: PagingState<Any, Value>): Any? = null
@@ -55,13 +53,14 @@
     vararg items: String
 ): PagedList<String> = runBlocking {
     PagedList.create(
-        initialPage = Page<Any, String>(
-            data = items.toList(),
-            prevKey = null,
-            nextKey = null,
-            itemsBefore = leadingNulls,
-            itemsAfter = trailingNulls
-        ),
+        initialPage =
+            Page<Any, String>(
+                data = items.toList(),
+                prevKey = null,
+                nextKey = null,
+                itemsBefore = leadingNulls,
+                itemsAfter = trailingNulls
+            ),
         pagingSource = FakeSource(leadingNulls, trailingNulls, items.toList()),
         coroutineScope = GlobalScope,
         notifyDispatcher = DirectDispatcher,
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagedListDiffer.kt b/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagedListDiffer.kt
index 27f5d14..9e58919 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagedListDiffer.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagedListDiffer.kt
@@ -42,8 +42,8 @@
  * adapter. It listens to PagedList loading callbacks, and uses DiffUtil on a background thread to
  * compute updates as new PagedLists are received.
  *
- * It provides a simple list-like API with [getItem] and [itemCount] for an adapter to acquire
- * and present data objects.
+ * It provides a simple list-like API with [getItem] and [itemCount] for an adapter to acquire and
+ * present data objects.
  *
  * A complete usage pattern with Room would look like this:
  * ```
@@ -116,10 +116,7 @@
  */
 @Deprecated(
     message = "AsyncPagedListDiffer is deprecated and has been replaced by AsyncPagingDataDiffer",
-    replaceWith = ReplaceWith(
-        "AsyncPagingDataDiffer<T>",
-        "androidx.paging.AsyncPagingDataDiffer"
-    )
+    replaceWith = ReplaceWith("AsyncPagingDataDiffer<T>", "androidx.paging.AsyncPagingDataDiffer")
 )
 open class AsyncPagedListDiffer<T : Any> {
     /**
@@ -137,15 +134,11 @@
     @VisibleForTesting
     internal val listeners = CopyOnWriteArrayList<PagedListListener<T>>()
 
-    @Suppress("DEPRECATION")
-    private var pagedList: PagedList<T>? = null
+    @Suppress("DEPRECATION") private var pagedList: PagedList<T>? = null
 
-    @Suppress("DEPRECATION")
-    private var snapshot: PagedList<T>? = null
+    @Suppress("DEPRECATION") private var snapshot: PagedList<T>? = null
 
-    /**
-     *  Max generation of currently scheduled runnable
-     */
+    /** Max generation of currently scheduled runnable */
     @Suppress("MemberVisibilityCanBePrivate") // synthetic access
     internal var maxScheduledGeneration: Int = 0
 
@@ -164,18 +157,19 @@
         CopyOnWriteArrayList()
 
     @Suppress("DEPRECATION")
-    private val pagedListCallback: PagedList.Callback = object : PagedList.Callback() {
-        override fun onInserted(position: Int, count: Int) =
-            updateCallback.onInserted(position, count)
+    private val pagedListCallback: PagedList.Callback =
+        object : PagedList.Callback() {
+            override fun onInserted(position: Int, count: Int) =
+                updateCallback.onInserted(position, count)
 
-        override fun onRemoved(position: Int, count: Int) =
-            updateCallback.onRemoved(position, count)
+            override fun onRemoved(position: Int, count: Int) =
+                updateCallback.onRemoved(position, count)
 
-        override fun onChanged(position: Int, count: Int) {
-            // NOTE: pass a null payload to convey null -> item
-            updateCallback.onChanged(position, count, null)
+            override fun onChanged(position: Int, count: Int) {
+                // NOTE: pass a null payload to convey null -> item
+                updateCallback.onChanged(position, count, null)
+            }
         }
-    }
 
     /**
      * Get the number of items currently presented by this Differ. This value can be directly
@@ -247,16 +241,17 @@
      */
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """AsyncPagingDataDiffer(
+        replaceWith =
+            ReplaceWith(
+                """AsyncPagingDataDiffer(
                 Dispatchers.Main,
                 Dispatchers.IO,
                 diffCallback,
                 listUpdateCallback
             )""",
-            "androidx.paging.AsyncPagingDataDiffer",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.AsyncPagingDataDiffer",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
     constructor(adapter: RecyclerView.Adapter<*>, diffCallback: DiffUtil.ItemCallback<T>) {
         updateCallback = AdapterListUpdateCallback(adapter)
@@ -265,21 +260,21 @@
 
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """AsyncPagingDataDiffer(
+        replaceWith =
+            ReplaceWith(
+                """AsyncPagingDataDiffer(
                 Dispatchers.Main,
                 Dispatchers.IO,
                 config.diffCallback,
                 listUpdateCallback
             )""",
-            "androidx.paging.AsyncPagingDataDiffer",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.AsyncPagingDataDiffer",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
     constructor(
         listUpdateCallback: ListUpdateCallback,
-        @Suppress("ListenerLast")
-        config: AsyncDifferConfig<T>
+        @Suppress("ListenerLast") config: AsyncDifferConfig<T>
     ) {
         updateCallback = listUpdateCallback
         this.config = config
@@ -292,7 +287,6 @@
      *
      * @param index Index of item to get, must be >= 0, and < `getItemCount`.
      * @return The item, or null, if a null placeholder is at the specified position.
-     *
      * @throws IndexOutOfBoundsException if [itemCount] is 0.
      */
     open fun getItem(index: Int): T? {
@@ -329,14 +323,13 @@
      * [ListUpdateCallback]), and the new PagedList will be swapped in as the
      * [current list][currentList].
      *
-     * The commit callback can be used to know when the PagedList is committed, but note that it
-     * may not be executed. If PagedList B is submitted immediately after PagedList A, and is
-     * committed directly, the callback associated with PagedList A will not be run.
+     * The commit callback can be used to know when the PagedList is committed, but note that it may
+     * not be executed. If PagedList B is submitted immediately after PagedList A, and is committed
+     * directly, the callback associated with PagedList A will not be run.
      *
      * @param pagedList The new [PagedList].
      * @param commitCallback Optional runnable that is executed when the PagedList is committed, if
-     * it is committed.
-     *
+     *   it is committed.
      * @throws IllegalStateException if previous PagedList wasn't snapshotted correctly.
      */
     open fun submitList(
@@ -417,15 +410,14 @@
             throw IllegalStateException("must be in snapshot state to diff")
         }
 
-        @Suppress("DEPRECATION")
-        val newSnapshot = pagedList.snapshot() as PagedList<T>
+        @Suppress("DEPRECATION") val newSnapshot = pagedList.snapshot() as PagedList<T>
         val recordingCallback = RecordingCallback()
         pagedList.addWeakCallback(recordingCallback)
         config.backgroundThreadExecutor.execute {
-            val result = oldSnapshot.getPlaceholderPaddedList().computeDiff(
-                newSnapshot.getPlaceholderPaddedList(),
-                config.diffCallback
-            )
+            val result =
+                oldSnapshot
+                    .getPlaceholderPaddedList()
+                    .computeDiff(newSnapshot.getPlaceholderPaddedList(), config.diffCallback)
 
             mainThreadExecutor.execute {
                 if (maxScheduledGeneration == runGeneration) {
@@ -461,11 +453,13 @@
         snapshot = null
 
         // dispatch updates to UI from previousSnapshot -> newSnapshot
-        previousSnapshot.getPlaceholderPaddedList().dispatchDiff(
-            callback = updateCallback,
-            newList = diffSnapshot.getPlaceholderPaddedList(),
-            diffResult = diffResult
-        )
+        previousSnapshot
+            .getPlaceholderPaddedList()
+            .dispatchDiff(
+                callback = updateCallback,
+                newList = diffSnapshot.getPlaceholderPaddedList(),
+                diffResult = diffResult
+            )
 
         // dispatch updates to UI from newSnapshot -> currentList
         // after this, the callback will be up to date with current pagedList...
@@ -481,11 +475,14 @@
             // Note: we don't take into account loads between new list snapshot and new list, but
             // this is only a problem in rare cases when placeholders are disabled, and a load
             // starts (for some reason) and finishes before diff completes.
-            val newPosition = previousSnapshot.getPlaceholderPaddedList().transformAnchorIndex(
-                diffResult,
-                diffSnapshot.getPlaceholderPaddedList(),
-                lastAccessIndex
-            )
+            val newPosition =
+                previousSnapshot
+                    .getPlaceholderPaddedList()
+                    .transformAnchorIndex(
+                        diffResult,
+                        diffSnapshot.getPlaceholderPaddedList(),
+                        lastAccessIndex
+                    )
 
             // Trigger load in new list at this position, clamped to list bounds.
             // This is a load, not just an update of last load position, since the new list may be
@@ -510,7 +507,6 @@
      * Add a [PagedListListener] to receive updates when the current [PagedList] changes.
      *
      * @param listener Listener to receive updates.
-     *
      * @see currentList
      * @see removePagedListListener
      */
@@ -522,7 +518,6 @@
      * Add a callback to receive updates when the current [PagedList] changes.
      *
      * @param callback to receive updates.
-     *
      * @see currentList
      * @see removePagedListListener
      */
@@ -536,7 +531,6 @@
      * Remove a previously registered [PagedListListener].
      *
      * @param listener Previously registered listener.
-     *
      * @see currentList
      * @see addPagedListListener
      */
@@ -548,7 +542,6 @@
      * Remove a previously registered callback via [addPagedListListener].
      *
      * @param callback Previously registered callback.
-     *
      * @see currentList
      * @see addPagedListListener
      */
@@ -565,7 +558,6 @@
      * current [LoadType.REFRESH], [LoadType.PREPEND], and [LoadType.APPEND] states.
      *
      * @param listener [LoadState] listener to receive updates.
-     *
      * @see removeLoadStateListener
      */
     open fun addLoadStateListener(listener: (LoadType, LoadState) -> Unit) {
@@ -582,7 +574,6 @@
      * Remove a previously registered [LoadState] listener.
      *
      * @param listener Previously registered listener.
-     *
      * @see currentList
      * @see addPagedListListener
      */
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagingDataDiffer.kt b/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagingDataDiffer.kt
index b046267..b1fd93d 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagingDataDiffer.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/AsyncPagingDataDiffer.kt
@@ -57,15 +57,15 @@
  * Construct an [AsyncPagingDataDiffer].
  *
  * @param diffCallback Callback for calculating the diff between two non-disjoint lists on
- * [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
- * path for generating the UI events required to display the new list.
+ *   [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
+ *   path for generating the UI events required to display the new list.
  * @param updateCallback [ListUpdateCallback] which receives UI events dispatched by this
- * [AsyncPagingDataDiffer] as items are loaded.
+ *   [AsyncPagingDataDiffer] as items are loaded.
  * @param mainDispatcher [CoroutineContext] where UI events are dispatched. Typically, this should
- * be [Dispatchers.Main].
+ *   be [Dispatchers.Main].
  * @param workerDispatcher [CoroutineContext] where the work to generate UI events is dispatched,
- * for example when diffing lists on [REFRESH]. Typically, this should dispatch on a background
- * thread; [Dispatchers.Default] by default.
+ *   for example when diffing lists on [REFRESH]. Typically, this should dispatch on a background
+ *   thread; [Dispatchers.Default] by default.
  */
 @JvmOverloads
 constructor(
@@ -81,12 +81,12 @@
      * Construct an [AsyncPagingDataDiffer].
      *
      * @param diffCallback Callback for calculating the diff between two non-disjoint lists on
-     * [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
-     * path for generating the UI events required to display the new list.
+     *   [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
+     *   path for generating the UI events required to display the new list.
      * @param updateCallback [ListUpdateCallback] which receives UI events dispatched by this
-     * [AsyncPagingDataDiffer] as items are loaded.
-     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically,
-     * this should be [Dispatchers.Main].
+     *   [AsyncPagingDataDiffer] as items are loaded.
+     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically, this
+     *   should be [Dispatchers.Main].
      */
     @Deprecated(
         message = "Superseded by constructors which accept CoroutineContext",
@@ -112,15 +112,15 @@
      * Construct an [AsyncPagingDataDiffer].
      *
      * @param diffCallback Callback for calculating the diff between two non-disjoint lists on
-     * [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
-     * path for generating the UI events required to display the new list.
+     *   [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
+     *   path for generating the UI events required to display the new list.
      * @param updateCallback [ListUpdateCallback] which receives UI events dispatched by this
-     * [AsyncPagingDataDiffer] as items are loaded.
-     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically,
-     * this should be [Dispatchers.Main].
+     *   [AsyncPagingDataDiffer] as items are loaded.
+     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically, this
+     *   should be [Dispatchers.Main].
      * @param workerDispatcher [CoroutineDispatcher] where the work to generate UI events is
-     * dispatched, for example when diffing lists on [REFRESH]. Typically, this should dispatch on a
-     * background thread; [Dispatchers.Default] by default.
+     *   dispatched, for example when diffing lists on [REFRESH]. Typically, this should dispatch on
+     *   a background thread; [Dispatchers.Default] by default.
      */
     @Deprecated(
         message = "Superseded by constructors which accept CoroutineContext",
@@ -147,178 +147,194 @@
     /** True if we're currently executing [getItem] */
     internal val inGetItem = MutableStateFlow(false)
 
-    internal val presenter = object : PagingDataPresenter<T>(mainDispatcher) {
-        override suspend fun presentPagingDataEvent(event: PagingDataEvent<T>) {
-            when (event) {
-                is PagingDataEvent.Refresh -> event.apply {
-                    when {
-                        // fast path for no items -> some items
-                        previousList.size == 0 -> {
-                            if (newList.size > 0) {
-                                updateCallback.onInserted(0, newList.size)
+    internal val presenter =
+        object : PagingDataPresenter<T>(mainDispatcher) {
+            override suspend fun presentPagingDataEvent(event: PagingDataEvent<T>) {
+                when (event) {
+                    is PagingDataEvent.Refresh ->
+                        event.apply {
+                            when {
+                                // fast path for no items -> some items
+                                previousList.size == 0 -> {
+                                    if (newList.size > 0) {
+                                        updateCallback.onInserted(0, newList.size)
+                                    }
+                                }
+                                // fast path for some items -> no items
+                                newList.size == 0 -> {
+                                    if (previousList.size > 0) {
+                                        updateCallback.onRemoved(0, previousList.size)
+                                    }
+                                }
+                                else -> {
+                                    val diffResult =
+                                        withContext(workerDispatcher) {
+                                            previousList.computeDiff(newList, diffCallback)
+                                        }
+                                    previousList.dispatchDiff(updateCallback, newList, diffResult)
+                                }
                             }
                         }
-                        // fast path for some items -> no items
-                        newList.size == 0 -> {
-                            if (previousList.size > 0) {
-                                updateCallback.onRemoved(0, previousList.size)
+                    /**
+                     * For each [PagingDataEvent.Prepend] or [PagingDataEvent.Append] there are
+                     * three potential events handled in the following order:
+                     * 1) change this covers any placeholder/item conversions, and is done first
+                     * 2) item insert/remove this covers any remaining items that are
+                     *    inserted/removed, but aren't swapping with placeholders
+                     * 3) placeholder insert/remove after the above, placeholder count can be wrong
+                     *    for a number of reasons - approximate counting or filtering are the most
+                     *    common. In either case, we adjust placeholders at the far end of the list,
+                     *    so that they don't trigger animations near the user.
+                     */
+                    is PagingDataEvent.Prepend ->
+                        event.apply {
+                            val insertSize = inserted.size
+
+                            val placeholdersChangedCount = minOf(oldPlaceholdersBefore, insertSize)
+                            val placeholdersChangedPos =
+                                oldPlaceholdersBefore - placeholdersChangedCount
+                            val itemsInsertedCount = insertSize - placeholdersChangedCount
+                            val itemsInsertedPos = 0
+
+                            // ... then trigger callbacks, so callbacks won't see inconsistent state
+                            if (placeholdersChangedCount > 0) {
+                                updateCallback.onChanged(
+                                    placeholdersChangedPos,
+                                    placeholdersChangedCount,
+                                    null
+                                )
+                            }
+                            if (itemsInsertedCount > 0) {
+                                updateCallback.onInserted(itemsInsertedPos, itemsInsertedCount)
+                            }
+                            val placeholderInsertedCount =
+                                newPlaceholdersBefore - oldPlaceholdersBefore +
+                                    placeholdersChangedCount
+                            if (placeholderInsertedCount > 0) {
+                                updateCallback.onInserted(0, placeholderInsertedCount)
+                            } else if (placeholderInsertedCount < 0) {
+                                updateCallback.onRemoved(0, -placeholderInsertedCount)
                             }
                         }
-                        else -> {
-                            val diffResult = withContext(workerDispatcher) {
-                                previousList.computeDiff(newList, diffCallback)
+                    is PagingDataEvent.Append ->
+                        event.apply {
+                            val insertSize = inserted.size
+                            val placeholdersChangedCount = minOf(oldPlaceholdersAfter, insertSize)
+                            val placeholdersChangedPos = startIndex
+                            val itemsInsertedCount = insertSize - placeholdersChangedCount
+                            val itemsInsertedPos = placeholdersChangedPos + placeholdersChangedCount
+
+                            if (placeholdersChangedCount > 0) {
+                                updateCallback.onChanged(
+                                    placeholdersChangedPos,
+                                    placeholdersChangedCount,
+                                    null
+                                )
                             }
-                            previousList.dispatchDiff(updateCallback, newList, diffResult)
+                            if (itemsInsertedCount > 0) {
+                                updateCallback.onInserted(itemsInsertedPos, itemsInsertedCount)
+                            }
+                            val placeholderInsertedCount =
+                                newPlaceholdersAfter - oldPlaceholdersAfter +
+                                    placeholdersChangedCount
+                            val newTotalSize = startIndex + insertSize + newPlaceholdersAfter
+                            if (placeholderInsertedCount > 0) {
+                                updateCallback.onInserted(
+                                    newTotalSize - placeholderInsertedCount,
+                                    placeholderInsertedCount
+                                )
+                            } else if (placeholderInsertedCount < 0) {
+                                updateCallback.onRemoved(newTotalSize, -placeholderInsertedCount)
+                            }
                         }
-                    }
-                }
-                /**
-                 * For each [PagingDataEvent.Prepend] or [PagingDataEvent.Append] there are
-                 * three potential events handled in the following order:
-                 *
-                 * 1) change
-                 *     this covers any placeholder/item conversions, and is done first
-                 * 2) item insert/remove
-                 *     this covers any remaining items that are inserted/removed, but aren't swapping with
-                 *     placeholders
-                 * 3) placeholder insert/remove
-                 *     after the above, placeholder count can be wrong for a number of reasons - approximate
-                 *     counting or filtering are the most common. In either case, we adjust placeholders at
-                 *     the far end of the list, so that they don't trigger animations near the user.
-                 */
-                is PagingDataEvent.Prepend -> event.apply {
-                    val insertSize = inserted.size
+                    /**
+                     * For [PagingDataEvent.DropPrepend] or [PagingDataEvent.DropAppend] events
+                     * there are two potential events handled in the following order
+                     * 1) placeholder insert/remove We first adjust placeholders at the far end of
+                     *    the list, so that they don't trigger animations near the user.
+                     * 2) change this covers any placeholder/item conversions, and is done after
+                     *    placeholders are trimmed/inserted to match new expected size
+                     *
+                     * Note: For drops we never run DiffUtil because it is safe to assume that empty
+                     * pages can never become non-empty no matter what transformations they go
+                     * through. [ListUpdateCallback] events generated by this helper always drop
+                     * contiguous sets of items because pages that depend on multiple
+                     * originalPageOffsets will always be the next closest page that's non-empty.
+                     */
+                    is PagingDataEvent.DropPrepend ->
+                        event.apply {
+                            // Trim or insert placeholders to match expected newSize.
+                            val placeholdersToInsert =
+                                newPlaceholdersBefore - dropCount - oldPlaceholdersBefore
+                            if (placeholdersToInsert > 0) {
+                                updateCallback.onInserted(0, placeholdersToInsert)
+                            } else if (placeholdersToInsert < 0) {
+                                updateCallback.onRemoved(0, -placeholdersToInsert)
+                            }
+                            // Compute the index of the first item that must be rebound as a
+                            // placeholder.
+                            // If any placeholders were inserted above, we only need to send
+                            // onChanged for the next
+                            // n = (newPlaceholdersBefore - placeholdersToInsert) items. E.g., if
+                            // two nulls
+                            // were inserted above, then the onChanged event can start from index =
+                            // 2.
+                            // Note: In cases where more items were dropped than there were
+                            // previously placeholders,
+                            // we can simply rebind n = newPlaceholdersBefore items starting from
+                            // position = 0.
+                            val firstItemIndex =
+                                maxOf(0, oldPlaceholdersBefore + placeholdersToInsert)
+                            // Compute the number of previously loaded items that were dropped and
+                            // now need to be
+                            // updated to null. This computes the distance between firstItemIndex
+                            // (inclusive),
+                            // and index of the last leading placeholder (inclusive) in the final
+                            // list.
+                            val changeCount = newPlaceholdersBefore - firstItemIndex
+                            if (changeCount > 0) {
+                                updateCallback.onChanged(firstItemIndex, changeCount, null)
+                            }
+                        }
+                    is PagingDataEvent.DropAppend ->
+                        event.apply {
+                            val placeholdersToInsert =
+                                newPlaceholdersAfter - dropCount - oldPlaceholdersAfter
+                            val newSize = startIndex + newPlaceholdersAfter
+                            if (placeholdersToInsert > 0) {
+                                updateCallback.onInserted(
+                                    newSize - placeholdersToInsert,
+                                    placeholdersToInsert
+                                )
+                            } else if (placeholdersToInsert < 0) {
+                                updateCallback.onRemoved(newSize, -placeholdersToInsert)
+                            }
 
-                    val placeholdersChangedCount =
-                        minOf(oldPlaceholdersBefore, insertSize)
-                    val placeholdersChangedPos = oldPlaceholdersBefore - placeholdersChangedCount
-                    val itemsInsertedCount = insertSize - placeholdersChangedCount
-                    val itemsInsertedPos = 0
-
-                    // ... then trigger callbacks, so callbacks won't see inconsistent state
-                    if (placeholdersChangedCount > 0) {
-                        updateCallback.onChanged(
-                            placeholdersChangedPos, placeholdersChangedCount, null
-                        )
-                    }
-                    if (itemsInsertedCount > 0) {
-                        updateCallback.onInserted(itemsInsertedPos, itemsInsertedCount)
-                    }
-                    val placeholderInsertedCount =
-                        newPlaceholdersBefore - oldPlaceholdersBefore + placeholdersChangedCount
-                    if (placeholderInsertedCount > 0) {
-                        updateCallback.onInserted(0, placeholderInsertedCount)
-                    } else if (placeholderInsertedCount < 0) {
-                        updateCallback.onRemoved(0, -placeholderInsertedCount)
-                    }
-                }
-                is PagingDataEvent.Append -> event.apply {
-                    val insertSize = inserted.size
-                    val placeholdersChangedCount = minOf(oldPlaceholdersAfter, insertSize)
-                    val placeholdersChangedPos = startIndex
-                    val itemsInsertedCount = insertSize - placeholdersChangedCount
-                    val itemsInsertedPos = placeholdersChangedPos + placeholdersChangedCount
-
-                    if (placeholdersChangedCount > 0) {
-                        updateCallback.onChanged(
-                            placeholdersChangedPos, placeholdersChangedCount, null
-                        )
-                    }
-                    if (itemsInsertedCount > 0) {
-                        updateCallback.onInserted(itemsInsertedPos, itemsInsertedCount)
-                    }
-                    val placeholderInsertedCount =
-                        newPlaceholdersAfter - oldPlaceholdersAfter + placeholdersChangedCount
-                    val newTotalSize = startIndex + insertSize + newPlaceholdersAfter
-                    if (placeholderInsertedCount > 0) {
-                        updateCallback.onInserted(
-                            newTotalSize - placeholderInsertedCount,
-                            placeholderInsertedCount
-                        )
-                    } else if (placeholderInsertedCount < 0) {
-                        updateCallback.onRemoved(newTotalSize, -placeholderInsertedCount)
-                    }
-                }
-                /**
-                 * For [PagingDataEvent.DropPrepend] or [PagingDataEvent.DropAppend] events
-                 * there are two potential events handled in the following order
-                 *
-                 * 1) placeholder insert/remove
-                 *     We first adjust placeholders at the far end of the list, so that they
-                 *     don't trigger animations near the user.
-                 * 2) change
-                 *     this covers any placeholder/item conversions, and is done after placeholders
-                 *     are trimmed/inserted to match new expected size
-                 *
-                 * Note: For drops we never run DiffUtil because it is safe to assume
-                 * that empty pages can never become non-empty no matter what transformations they
-                 * go through. [ListUpdateCallback] events generated by this helper always
-                 * drop contiguous sets of items because pages that depend on multiple
-                 * originalPageOffsets will always be the next closest page that's non-empty.
-                 */
-                is PagingDataEvent.DropPrepend -> event.apply {
-                    // Trim or insert placeholders to match expected newSize.
-                    val placeholdersToInsert = newPlaceholdersBefore - dropCount -
-                        oldPlaceholdersBefore
-                    if (placeholdersToInsert > 0) {
-                        updateCallback.onInserted(0, placeholdersToInsert)
-                    } else if (placeholdersToInsert < 0) {
-                        updateCallback.onRemoved(0, -placeholdersToInsert)
-                    }
-                    // Compute the index of the first item that must be rebound as a placeholder.
-                    // If any placeholders were inserted above, we only need to send onChanged for the next
-                    // n = (newPlaceholdersBefore - placeholdersToInsert) items. E.g., if two nulls
-                    // were inserted above, then the onChanged event can start from index = 2.
-                    // Note: In cases where more items were dropped than there were previously placeholders,
-                    // we can simply rebind n = newPlaceholdersBefore items starting from position = 0.
-                    val firstItemIndex = maxOf(
-                        0,
-                        oldPlaceholdersBefore + placeholdersToInsert
-                    )
-                    // Compute the number of previously loaded items that were dropped and now need to be
-                    // updated to null. This computes the distance between firstItemIndex (inclusive),
-                    // and index of the last leading placeholder (inclusive) in the final list.
-                    val changeCount = newPlaceholdersBefore - firstItemIndex
-                    if (changeCount > 0) {
-                        updateCallback.onChanged(firstItemIndex, changeCount, null)
-                    }
-                }
-                is PagingDataEvent.DropAppend -> event.apply {
-                    val placeholdersToInsert = newPlaceholdersAfter - dropCount -
-                        oldPlaceholdersAfter
-                    val newSize = startIndex + newPlaceholdersAfter
-                    if (placeholdersToInsert > 0) {
-                        updateCallback.onInserted(
-                            newSize - placeholdersToInsert, placeholdersToInsert
-                        )
-                    } else if (placeholdersToInsert < 0) {
-                        updateCallback.onRemoved(newSize, -placeholdersToInsert)
-                    }
-
-                    // Number of trailing placeholders in the list, before dropping, that were
-                    // removed above during size adjustment.
-                    val oldPlaceholdersRemoved = when {
-                        placeholdersToInsert < 0 ->
-                            minOf(oldPlaceholdersAfter, -placeholdersToInsert)
-                        else -> 0
-                    }
-                    // Compute the number of previously loaded items that were dropped and now need
-                    // to be updated to null. This subtracts the total number of existing
-                    // placeholders in the list, before dropping, that were not removed above
-                    // during size adjustment, from the total number of expected placeholders.
-                    val changeCount = newPlaceholdersAfter - oldPlaceholdersAfter +
-                        oldPlaceholdersRemoved
-                    if (changeCount > 0) {
-                        updateCallback.onChanged(
-                            startIndex,
-                            changeCount,
-                            null
-                        )
-                    }
+                            // Number of trailing placeholders in the list, before dropping, that
+                            // were
+                            // removed above during size adjustment.
+                            val oldPlaceholdersRemoved =
+                                when {
+                                    placeholdersToInsert < 0 ->
+                                        minOf(oldPlaceholdersAfter, -placeholdersToInsert)
+                                    else -> 0
+                                }
+                            // Compute the number of previously loaded items that were dropped and
+                            // now need
+                            // to be updated to null. This subtracts the total number of existing
+                            // placeholders in the list, before dropping, that were not removed
+                            // above
+                            // during size adjustment, from the total number of expected
+                            // placeholders.
+                            val changeCount =
+                                newPlaceholdersAfter - oldPlaceholdersAfter + oldPlaceholdersRemoved
+                            if (changeCount > 0) {
+                                updateCallback.onChanged(startIndex, changeCount, null)
+                            }
+                        }
                 }
             }
         }
-    }
 
     private val submitDataId = AtomicInteger(0)
 
@@ -374,8 +390,8 @@
      * within the same generation of [PagingData].
      *
      * [LoadState.Error] can be generated from two types of load requests:
-     *  * [PagingSource.load] returning [PagingSource.LoadResult.Error]
-     *  * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
+     * * [PagingSource.load] returning [PagingSource.LoadResult.Error]
+     * * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
      */
     fun retry() {
         presenter.retry()
@@ -450,41 +466,40 @@
      * A hot [Flow] of [CombinedLoadStates] that emits a snapshot whenever the loading state of the
      * current [PagingData] changes.
      *
-     * This flow is conflated, so it buffers the last update to [CombinedLoadStates] and
-     * delivers the current load states on collection when RecyclerView is not dispatching layout.
+     * This flow is conflated, so it buffers the last update to [CombinedLoadStates] and delivers
+     * the current load states on collection when RecyclerView is not dispatching layout.
      *
      * @sample androidx.paging.samples.loadStateFlowSample
      */
-    val loadStateFlow: Flow<CombinedLoadStates> = presenter.loadStateFlow
-        .filterNotNull()
-        .buffer(CONFLATED)
-        .transform { it ->
-            if (inGetItem.value) {
-                yield()
-                inGetItem.firstOrNull { isGettingItem ->
-                    !isGettingItem
+    val loadStateFlow: Flow<CombinedLoadStates> =
+        presenter.loadStateFlow
+            .filterNotNull()
+            .buffer(CONFLATED)
+            .transform { it ->
+                if (inGetItem.value) {
+                    yield()
+                    inGetItem.firstOrNull { isGettingItem -> !isGettingItem }
                 }
+                emit(it)
             }
-            emit(it)
-        }.flowOn(Dispatchers.Main)
+            .flowOn(Dispatchers.Main)
 
     /**
-     * A hot [Flow] that emits after the pages presented to the UI are updated, even if the
-     * actual items presented don't change.
+     * A hot [Flow] that emits after the pages presented to the UI are updated, even if the actual
+     * items presented don't change.
      *
      * An update is triggered from one of the following:
-     *   * [submitData] is called and initial load completes, regardless of any differences in
-     *     the loaded data
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
+     * * [submitData] is called and initial load completes, regardless of any differences in the
+     *   loaded data
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
      *
-     * Note: This is a [SharedFlow][kotlinx.coroutines.flow.SharedFlow] configured to replay
-     * 0 items with a buffer of size 64. If a collector lags behind page updates, it may
-     * trigger multiple times for each intermediate update that was presented while your collector
-     * was still working. To avoid this behavior, you can
-     * [conflate][kotlinx.coroutines.flow.conflate] this [Flow] so that you only receive the latest
-     * update, which is useful in cases where you are simply updating UI and don't care about
-     * tracking the exact number of page updates.
+     * Note: This is a [SharedFlow][kotlinx.coroutines.flow.SharedFlow] configured to replay 0 items
+     * with a buffer of size 64. If a collector lags behind page updates, it may trigger multiple
+     * times for each intermediate update that was presented while your collector was still working.
+     * To avoid this behavior, you can [conflate][kotlinx.coroutines.flow.conflate] this [Flow] so
+     * that you only receive the latest update, which is useful in cases where you are simply
+     * updating UI and don't care about tracking the exact number of page updates.
      */
     val onPagesUpdatedFlow: Flow<Unit> = presenter.onPagesUpdatedFlow
 
@@ -493,13 +508,12 @@
      * actual items presented don't change.
      *
      * An update is triggered from one of the following:
-     *   * [submitData] is called and initial load completes, regardless of any differences in
-     *     the loaded data
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
+     * * [submitData] is called and initial load completes, regardless of any differences in the
+     *   loaded data
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
      *
      * @param listener called after pages presented are updated.
-     *
      * @see removeOnPagesUpdatedListener
      */
     fun addOnPagesUpdatedListener(listener: () -> Unit) {
@@ -507,11 +521,10 @@
     }
 
     /**
-     * Remove a previously registered listener for new [PagingData] generations completing
-     * initial load and presenting to the UI.
+     * Remove a previously registered listener for new [PagingData] generations completing initial
+     * load and presenting to the UI.
      *
      * @param listener Previously registered listener.
-     *
      * @see addOnPagesUpdatedListener
      */
     fun removeOnPagesUpdatedListener(listener: () -> Unit) {
@@ -522,15 +535,15 @@
      * The loadStateListener registered internally with [PagingDataPresenter.addLoadStateListener]
      * when there are [childLoadStateListeners].
      *
-     * LoadStateUpdates are dispatched to this single internal listener, which will further
-     * dispatch the loadState to [childLoadStateListeners] when [inGetItem] is false.
+     * LoadStateUpdates are dispatched to this single internal listener, which will further dispatch
+     * the loadState to [childLoadStateListeners] when [inGetItem] is false.
      */
     private val parentLoadStateListener: AtomicReference<((CombinedLoadStates) -> Unit)?> =
         AtomicReference(null)
 
     /**
-     * Stores the list of listeners added through [addLoadStateListener]. Invoked
-     * when inGetItem is false.
+     * Stores the list of listeners added through [addLoadStateListener]. Invoked when inGetItem is
+     * false.
      */
     private val childLoadStateListeners = CopyOnWriteArrayList<(CombinedLoadStates) -> Unit>()
 
@@ -541,7 +554,6 @@
      * reflect the current [CombinedLoadStates].
      *
      * @param listener [LoadStates] listener to receive updates.
-     *
      * @see removeLoadStateListener
      *
      * @sample androidx.paging.samples.addLoadStateListenerSample
@@ -588,14 +600,12 @@
 
     private val LoadStateListenerHandler by lazy { Handler(Looper.getMainLooper()) }
 
-    private val LoadStateListenerRunnable = object : Runnable {
-        var loadState = AtomicReference<CombinedLoadStates>(null)
+    private val LoadStateListenerRunnable =
+        object : Runnable {
+            var loadState = AtomicReference<CombinedLoadStates>(null)
 
-        override fun run() {
-            loadState.get()
-                ?.let { state ->
-                    childLoadStateListeners.forEach { it(state) }
-                }
+            override fun run() {
+                loadState.get()?.let { state -> childLoadStateListeners.forEach { it(state) } }
+            }
         }
-    }
 }
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/LivePagedList.kt b/paging/paging-runtime/src/main/java/androidx/paging/LivePagedList.kt
index f4826a1..662fd96 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/LivePagedList.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/LivePagedList.kt
@@ -40,15 +40,16 @@
     private val pagingSourceFactory: () -> PagingSource<Key, Value>,
     private val notifyDispatcher: CoroutineDispatcher,
     private val fetchDispatcher: CoroutineDispatcher
-) : LiveData<PagedList<Value>>(
-    InitialPagedList(
-        coroutineScope = coroutineScope,
-        notifyDispatcher = notifyDispatcher,
-        backgroundDispatcher = fetchDispatcher,
-        config = config,
-        initialLastKey = initialKey
-    )
-) {
+) :
+    LiveData<PagedList<Value>>(
+        InitialPagedList(
+            coroutineScope = coroutineScope,
+            notifyDispatcher = notifyDispatcher,
+            backgroundDispatcher = fetchDispatcher,
+            config = config,
+            initialLastKey = initialKey
+        )
+    ) {
     private var currentData: PagedList<Value>
     private var currentJob: Job? = null
 
@@ -71,53 +72,46 @@
         if (currentJob != null && !force) return
 
         currentJob?.cancel()
-        currentJob = coroutineScope.launch(fetchDispatcher) {
-            currentData.pagingSource.unregisterInvalidatedCallback(callback)
-            val pagingSource = pagingSourceFactory()
-            pagingSource.registerInvalidatedCallback(callback)
-            if (pagingSource is LegacyPagingSource) {
-                pagingSource.setPageSize(config.pageSize)
-            }
-
-            withContext(notifyDispatcher) {
-                currentData.setInitialLoadState(REFRESH, Loading)
-            }
-
-            @Suppress("UNCHECKED_CAST")
-            val lastKey = currentData.lastKey as Key?
-            val params = config.toRefreshLoadParams(lastKey)
-
-            when (val initialResult = pagingSource.load(params)) {
-                is PagingSource.LoadResult.Invalid -> {
-                    currentData.setInitialLoadState(
-                        REFRESH,
-                        LoadState.NotLoading(false)
-                    )
-                    pagingSource.invalidate()
+        currentJob =
+            coroutineScope.launch(fetchDispatcher) {
+                currentData.pagingSource.unregisterInvalidatedCallback(callback)
+                val pagingSource = pagingSourceFactory()
+                pagingSource.registerInvalidatedCallback(callback)
+                if (pagingSource is LegacyPagingSource) {
+                    pagingSource.setPageSize(config.pageSize)
                 }
-                is PagingSource.LoadResult.Error -> {
-                    currentData.setInitialLoadState(
-                        REFRESH,
-                        Error(initialResult.throwable)
-                    )
-                }
-                is PagingSource.LoadResult.Page -> {
-                    val pagedList = PagedList.create(
-                        pagingSource,
-                        initialResult,
-                        coroutineScope,
-                        notifyDispatcher,
-                        fetchDispatcher,
-                        boundaryCallback,
-                        config,
-                        lastKey
-                    )
-                    onItemUpdate(currentData, pagedList)
-                    currentData = pagedList
-                    postValue(pagedList)
+
+                withContext(notifyDispatcher) { currentData.setInitialLoadState(REFRESH, Loading) }
+
+                @Suppress("UNCHECKED_CAST") val lastKey = currentData.lastKey as Key?
+                val params = config.toRefreshLoadParams(lastKey)
+
+                when (val initialResult = pagingSource.load(params)) {
+                    is PagingSource.LoadResult.Invalid -> {
+                        currentData.setInitialLoadState(REFRESH, LoadState.NotLoading(false))
+                        pagingSource.invalidate()
+                    }
+                    is PagingSource.LoadResult.Error -> {
+                        currentData.setInitialLoadState(REFRESH, Error(initialResult.throwable))
+                    }
+                    is PagingSource.LoadResult.Page -> {
+                        val pagedList =
+                            PagedList.create(
+                                pagingSource,
+                                initialResult,
+                                coroutineScope,
+                                notifyDispatcher,
+                                fetchDispatcher,
+                                boundaryCallback,
+                                config,
+                                lastKey
+                            )
+                        onItemUpdate(currentData, pagedList)
+                        currentData = pagedList
+                        postValue(pagedList)
+                    }
                 }
             }
-        }
     }
 
     private fun onItemUpdate(previous: PagedList<Value>, next: PagedList<Value>) {
@@ -137,14 +131,14 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param fetchExecutor [Executor] for fetching data from [PagingSource]s.
- *
  * @see LivePagedListBuilder
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -155,11 +149,11 @@
             initialLoadKey,
             this.asPagingSourceFactory(fetchExecutor.asCoroutineDispatcher())
         ).liveData""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.liveData",
-        "kotlinx.coroutines.asCoroutineDispatcher"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.liveData",
+            "kotlinx.coroutines.asCoroutineDispatcher"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toLiveData(
     config: PagedList.Config,
@@ -185,23 +179,23 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param fetchExecutor Executor for fetching data from DataSources.
- *
  * @see LivePagedListBuilder
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this.asPagingSourceFactory(fetchExecutor.asCoroutineDispatcher())
         ).liveData""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.liveData",
-        "kotlinx.coroutines.asCoroutineDispatcher"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.liveData",
+            "kotlinx.coroutines.asCoroutineDispatcher"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toLiveData(
     pageSize: Int,
@@ -226,21 +220,22 @@
  * @param config Paging configuration.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
- * @param coroutineScope Set the [CoroutineScope] that page loads should be launched within. The
- * set [coroutineScope] allows a [PagingSource] to cancel running load operations when the results
- * are no longer needed - for example, when the containing activity is destroyed.
+ * @param coroutineScope Set the [CoroutineScope] that page loads should be launched within. The set
+ *   [coroutineScope] allows a [PagingSource] to cancel running load operations when the results are
+ *   no longer needed - for example, when the containing activity is destroyed.
  *
  * Defaults to [GlobalScope].
- * @param fetchDispatcher [CoroutineDispatcher] for fetching data from [PagingSource]s.
  *
+ * @param fetchDispatcher [CoroutineDispatcher] for fetching data from [PagingSource]s.
  * @see LivePagedListBuilder
  */
 @OptIn(DelicateCoroutinesApi::class)
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -251,18 +246,18 @@
             initialLoadKey,
             this
         ).liveData""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.liveData"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.liveData"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toLiveData(
     config: PagedList.Config,
     initialLoadKey: Key? = null,
     boundaryCallback: PagedList.BoundaryCallback<Value>? = null,
     coroutineScope: CoroutineScope = GlobalScope,
-    fetchDispatcher: CoroutineDispatcher = ArchTaskExecutor.getIOThreadExecutor()
-        .asCoroutineDispatcher()
+    fetchDispatcher: CoroutineDispatcher =
+        ArchTaskExecutor.getIOThreadExecutor().asCoroutineDispatcher()
 ): LiveData<PagedList<Value>> {
     return LivePagedList(
         coroutineScope,
@@ -285,37 +280,38 @@
  * @param pageSize Page size.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
- * @param coroutineScope Set the [CoroutineScope] that page loads should be launched within. The
- * set [coroutineScope] allows a [PagingSource] to cancel running load operations when the results
- * are no longer needed - for example, when the containing activity is destroyed.
+ * @param coroutineScope Set the [CoroutineScope] that page loads should be launched within. The set
+ *   [coroutineScope] allows a [PagingSource] to cancel running load operations when the results are
+ *   no longer needed - for example, when the containing activity is destroyed.
  *
  * Defaults to [GlobalScope].
- * @param fetchDispatcher [CoroutineDispatcher] for fetching data from [PagingSource]s.
  *
+ * @param fetchDispatcher [CoroutineDispatcher] for fetching data from [PagingSource]s.
  * @see LivePagedListBuilder
  */
 @OptIn(DelicateCoroutinesApi::class)
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this
         ).liveData""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.liveData"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.liveData"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toLiveData(
     pageSize: Int,
     initialLoadKey: Key? = null,
     boundaryCallback: PagedList.BoundaryCallback<Value>? = null,
     coroutineScope: CoroutineScope = GlobalScope,
-    fetchDispatcher: CoroutineDispatcher = ArchTaskExecutor.getIOThreadExecutor()
-        .asCoroutineDispatcher()
+    fetchDispatcher: CoroutineDispatcher =
+        ArchTaskExecutor.getIOThreadExecutor().asCoroutineDispatcher()
 ): LiveData<PagedList<Value>> {
     return LivePagedList(
         coroutineScope,
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/LivePagedListBuilder.kt b/paging/paging-runtime/src/main/java/androidx/paging/LivePagedListBuilder.kt
index 34a64c7..e256b8e 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/LivePagedListBuilder.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/LivePagedListBuilder.kt
@@ -32,9 +32,8 @@
  * optionally enable extra features (such as initial load key, or BoundaryCallback).
  *
  * @param Key Type of input valued used to load data from the [DataSource]. Must be [Int] if you're
- * using [PositionalDataSource].
+ *   using [PositionalDataSource].
  * @param Value Item type being presented.
- *
  * @see toLiveData
  */
 @Deprecated("PagedList is deprecated and has been replaced by PagingData")
@@ -42,14 +41,11 @@
     private val pagingSourceFactory: (() -> PagingSource<Key, Value>)?
     private val dataSourceFactory: DataSource.Factory<Key, Value>?
 
-    @Suppress("DEPRECATION")
-    private val config: PagedList.Config
-    @OptIn(DelicateCoroutinesApi::class)
-    private var coroutineScope: CoroutineScope = GlobalScope
+    @Suppress("DEPRECATION") private val config: PagedList.Config
+    @OptIn(DelicateCoroutinesApi::class) private var coroutineScope: CoroutineScope = GlobalScope
     private var initialLoadKey: Key? = null
 
-    @Suppress("DEPRECATION")
-    private var boundaryCallback: PagedList.BoundaryCallback<Value>? = null
+    @Suppress("DEPRECATION") private var boundaryCallback: PagedList.BoundaryCallback<Value>? = null
     private var fetchDispatcher = ArchTaskExecutor.getIOThreadExecutor().asCoroutineDispatcher()
 
     /**
@@ -60,8 +56,9 @@
      */
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 PagingConfig(
                     config.pageSize,
                     config.prefetchDistance,
@@ -72,16 +69,15 @@
                 initialLoadKey,
                 dataSourceFactory.asPagingSourceFactory(Dispatchers.IO)
             ).liveData""",
-            "androidx.paging.Pager",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.liveData",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.Pager",
+                "androidx.paging.PagingConfig",
+                "androidx.paging.liveData",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
     constructor(
         dataSourceFactory: DataSource.Factory<Key, Value>,
-        @Suppress("DEPRECATION")
-        config: PagedList.Config
+        @Suppress("DEPRECATION") config: PagedList.Config
     ) {
         this.pagingSourceFactory = null
         this.dataSourceFactory = dataSourceFactory
@@ -103,22 +99,23 @@
     @Suppress("DEPRECATION")
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 PagingConfig(pageSize),
                 initialLoadKey,
                 dataSourceFactory.asPagingSourceFactory(Dispatchers.IO)
             ).liveData""",
-            "androidx.paging.Pager",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.liveData",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.Pager",
+                "androidx.paging.PagingConfig",
+                "androidx.paging.liveData",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
-    constructor(dataSourceFactory: DataSource.Factory<Key, Value>, pageSize: Int) : this(
-        dataSourceFactory,
-        PagedList.Config.Builder().setPageSize(pageSize).build()
-    )
+    constructor(
+        dataSourceFactory: DataSource.Factory<Key, Value>,
+        pageSize: Int
+    ) : this(dataSourceFactory, PagedList.Config.Builder().setPageSize(pageSize).build())
 
     /**
      * Creates a [LivePagedListBuilder] with required parameters.
@@ -132,12 +129,14 @@
      * [pagingSourceFactory] will invoked to construct a new [PagedList] and [PagingSource] when the
      * current [PagingSource] is invalidated, and pass the new [PagedList] through the
      * `LiveData<PagedList>` to observers.
+     *
      * @param config Paging configuration.
      */
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 PagingConfig(
                     config.pageSize,
                     config.prefetchDistance,
@@ -148,15 +147,14 @@
                 initialLoadKey,
                 this
             ).liveData""",
-            "androidx.paging.Pager",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.liveData"
-        )
+                "androidx.paging.Pager",
+                "androidx.paging.PagingConfig",
+                "androidx.paging.liveData"
+            )
     )
     constructor(
         pagingSourceFactory: () -> PagingSource<Key, Value>,
-        @Suppress("DEPRECATION")
-        config: PagedList.Config
+        @Suppress("DEPRECATION") config: PagedList.Config
     ) {
         this.pagingSourceFactory = pagingSourceFactory
         this.dataSourceFactory = null
@@ -181,26 +179,28 @@
      * [pagingSourceFactory] will invoked to construct a new [PagedList] and [PagingSource] when the
      * current [PagingSource] is invalidated, and pass the new [PagedList] through the
      * `LiveData<PagedList>` to observers.
+     *
      * @param pageSize Size of pages to load.
      */
     @Suppress("DEPRECATION")
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 PagingConfig(pageSize),
                 initialLoadKey,
                 this
             ).liveData""",
-            "androidx.paging.Pager",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.liveData"
-        )
+                "androidx.paging.Pager",
+                "androidx.paging.PagingConfig",
+                "androidx.paging.liveData"
+            )
     )
-    constructor(pagingSourceFactory: () -> PagingSource<Key, Value>, pageSize: Int) : this(
-        pagingSourceFactory,
-        PagedList.Config.Builder().setPageSize(pageSize).build()
-    )
+    constructor(
+        pagingSourceFactory: () -> PagingSource<Key, Value>,
+        pageSize: Int
+    ) : this(pagingSourceFactory, PagedList.Config.Builder().setPageSize(pageSize).build())
 
     /**
      * Set the [CoroutineScope] that page loads should be launched within. The set [coroutineScope]
@@ -213,9 +213,8 @@
      * @return this
      */
     @Suppress("unused") // Public API
-    fun setCoroutineScope(coroutineScope: CoroutineScope) = this.apply {
-        this.coroutineScope = coroutineScope
-    }
+    fun setCoroutineScope(coroutineScope: CoroutineScope) =
+        this.apply { this.coroutineScope = coroutineScope }
 
     /**
      * First loading key passed to the first PagedList/DataSource.
@@ -226,36 +225,31 @@
      * @param key Initial load key passed to the first PagedList/DataSource.
      * @return this
      */
-    fun setInitialLoadKey(key: Key?) = this.apply {
-        initialLoadKey = key
-    }
+    fun setInitialLoadKey(key: Key?) = this.apply { initialLoadKey = key }
 
     /**
-     * Sets a [androidx.paging.PagedList.BoundaryCallback] on each PagedList created,
-     * typically used to load additional data from network when paging from local storage.
+     * Sets a [androidx.paging.PagedList.BoundaryCallback] on each PagedList created, typically used
+     * to load additional data from network when paging from local storage.
      *
      * Pass a [PagedList.BoundaryCallback] to listen to when the PagedList runs out of data to load.
      * If this method is not called, or `null` is passed, you will not be notified when each
      * [PagingSource] runs out of data to provide to its [PagedList].
      *
      * If you are paging from a DataSource.Factory backed by local storage, you can set a
-     * BoundaryCallback to know when there is no more information to page from local storage.
-     * This is useful to page from the network when local storage is a cache of network data.
+     * BoundaryCallback to know when there is no more information to page from local storage. This
+     * is useful to page from the network when local storage is a cache of network data.
      *
-     * Note that when using a BoundaryCallback with a `LiveData<PagedList>`, method calls
-     * on the callback may be dispatched multiple times - one for each PagedList/DataSource
-     * pair. If loading network data from a BoundaryCallback, you should prevent multiple
-     * dispatches of the same method from triggering multiple simultaneous network loads.
+     * Note that when using a BoundaryCallback with a `LiveData<PagedList>`, method calls on the
+     * callback may be dispatched multiple times - one for each PagedList/DataSource pair. If
+     * loading network data from a BoundaryCallback, you should prevent multiple dispatches of the
+     * same method from triggering multiple simultaneous network loads.
      *
      * @param boundaryCallback The boundary callback for listening to PagedList load state.
      * @return this
      */
     fun setBoundaryCallback(
-        @Suppress("DEPRECATION")
-        boundaryCallback: PagedList.BoundaryCallback<Value>?
-    ) = this.apply {
-        this.boundaryCallback = boundaryCallback
-    }
+        @Suppress("DEPRECATION") boundaryCallback: PagedList.BoundaryCallback<Value>?
+    ) = this.apply { this.boundaryCallback = boundaryCallback }
 
     /**
      * Sets [Executor] used for background fetching of [PagedList]s, and the pages within.
@@ -269,9 +263,8 @@
      * @param fetchExecutor [Executor] for fetching data from [PagingSource]s.
      * @return this
      */
-    fun setFetchExecutor(fetchExecutor: Executor) = this.apply {
-        this.fetchDispatcher = fetchExecutor.asCoroutineDispatcher()
-    }
+    fun setFetchExecutor(fetchExecutor: Executor) =
+        this.apply { this.fetchDispatcher = fetchExecutor.asCoroutineDispatcher() }
 
     /**
      * Constructs the `LiveData<PagedList>`.
@@ -283,8 +276,8 @@
      */
     @Suppress("DEPRECATION")
     fun build(): LiveData<PagedList<Value>> {
-        val pagingSourceFactory = pagingSourceFactory
-            ?: dataSourceFactory?.asPagingSourceFactory(fetchDispatcher)
+        val pagingSourceFactory =
+            pagingSourceFactory ?: dataSourceFactory?.asPagingSourceFactory(fetchDispatcher)
 
         check(pagingSourceFactory != null) {
             "LivePagedList cannot be built without a PagingSourceFactory or DataSource.Factory"
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/LoadStateAdapter.kt b/paging/paging-runtime/src/main/java/androidx/paging/LoadStateAdapter.kt
index abb837a..e811c55 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/LoadStateAdapter.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/LoadStateAdapter.kt
@@ -20,14 +20,13 @@
 import androidx.recyclerview.widget.RecyclerView
 
 /**
- * Adapter for displaying a RecyclerView item based on [LoadState], such as a loading spinner, or
- * a retry error button.
+ * Adapter for displaying a RecyclerView item based on [LoadState], such as a loading spinner, or a
+ * retry error button.
  *
- * By default will use one shared [view type][RecyclerView.Adapter.getItemViewType] for all
- * items.
+ * By default will use one shared [view type][RecyclerView.Adapter.getItemViewType] for all items.
  *
- * By default, both [LoadState.Loading] and [LoadState.Error] are presented as adapter items,
- * other states are not. To configure this, override [displayLoadStateAsItem].
+ * By default, both [LoadState.Loading] and [LoadState.Error] are presented as adapter items, other
+ * states are not. To configure this, override [displayLoadStateAsItem].
  *
  * To present this Adapter as a header and or footer alongside your [PagingDataAdapter], see
  * [PagingDataAdapter.withLoadStateHeaderAndFooter], or use
@@ -78,10 +77,9 @@
     /**
      * Called to create a ViewHolder for the given LoadState.
      *
-     * @param parent The ViewGroup into which the new View will be added after it is bound to
-     *               an adapter position.
+     * @param parent The ViewGroup into which the new View will be added after it is bound to an
+     *   adapter position.
      * @param loadState The LoadState to be initially presented by the new ViewHolder.
-     *
      * @see [getItemViewType]
      * @see [displayLoadStateAsItem]
      */
@@ -92,7 +90,6 @@
      *
      * @param holder the ViewHolder to bind to
      * @param loadState LoadState to display.
-     *
      * @see [getItemViewType]
      * @see [displayLoadStateAsItem]
      */
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/PagedListAdapter.kt b/paging/paging-runtime/src/main/java/androidx/paging/PagedListAdapter.kt
index b0dbec5..1bb06c2 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/PagedListAdapter.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/PagedListAdapter.kt
@@ -99,22 +99,18 @@
  * ```
  *
  * Advanced users that wish for more control over adapter behavior, or to provide a specific base
- * class should refer to [AsyncPagedListDiffer], which provides the mapping from paging
- * events to adapter-friendly callbacks.
+ * class should refer to [AsyncPagedListDiffer], which provides the mapping from paging events to
+ * adapter-friendly callbacks.
  *
  * @param T Type of the PagedLists this Adapter will receive.
  * @param VH A class that extends ViewHolder that will be used by the adapter.
  */
 @Deprecated(
     message = "PagedListAdapter is deprecated and has been replaced by PagingDataAdapter",
-    replaceWith = ReplaceWith(
-        "PagingDataAdapter<T, VH>",
-        "androidx.paging.PagingDataAdapter"
-    )
+    replaceWith = ReplaceWith("PagingDataAdapter<T, VH>", "androidx.paging.PagingDataAdapter")
 )
 abstract class PagedListAdapter<T : Any, VH : RecyclerView.ViewHolder> : RecyclerView.Adapter<VH> {
-    @Suppress("DEPRECATION")
-    internal val differ: AsyncPagedListDiffer<T>
+    @Suppress("DEPRECATION") internal val differ: AsyncPagedListDiffer<T>
     @Suppress("DEPRECATION")
     private val listener = { previousList: PagedList<T>?, currentList: PagedList<T>? ->
         this@PagedListAdapter.onCurrentListChanged(currentList)
@@ -129,7 +125,6 @@
      * currentList value. May be null if no PagedList is being presented.
      *
      * @return The list currently being displayed.
-     *
      * @see onCurrentListChanged
      */
     @Suppress("DEPRECATION")
@@ -142,8 +137,7 @@
      *
      * Convenience for [PagedListAdapter], which uses default threading behavior.
      *
-     * @param diffCallback The [DiffUtil.ItemCallback] instance to
-     * compare items in the list.
+     * @param diffCallback The [DiffUtil.ItemCallback] instance to compare items in the list.
      */
     protected constructor(diffCallback: DiffUtil.ItemCallback<T>) {
         @Suppress("DEPRECATION")
@@ -174,13 +168,13 @@
      * If a list is already being displayed, a diff will be computed on a background thread, which
      * will dispatch Adapter.notifyItem events on the main thread.
      *
-     * The commit callback can be used to know when the PagedList is committed, but note that it
-     * may not be executed. If PagedList B is submitted immediately after PagedList A, and is
-     * committed directly, the callback associated with PagedList A will not be run.
+     * The commit callback can be used to know when the PagedList is committed, but note that it may
+     * not be executed. If PagedList B is submitted immediately after PagedList A, and is committed
+     * directly, the callback associated with PagedList A will not be run.
      *
      * @param pagedList The new list to be displayed.
      * @param commitCallback Optional runnable that is executed when the PagedList is committed, if
-     * it is committed.
+     *   it is committed.
      */
     open fun submitList(
         @Suppress("DEPRECATION") pagedList: PagedList<T>?,
@@ -194,48 +188,42 @@
     /**
      * Called when the current PagedList is updated.
      *
-     * This may be dispatched as part of [submitList] if a background diff isn't
-     * needed (such as when the first list is passed, or the list is cleared). In either case,
-     * PagedListAdapter will simply call
-     * [notifyItemRangeInserted/Removed(0, mPreviousSize)][notifyItemRangeInserted].
+     * This may be dispatched as part of [submitList] if a background diff isn't needed (such as
+     * when the first list is passed, or the list is cleared). In either case, PagedListAdapter will
+     * simply call [notifyItemRangeInserted/Removed(0, mPreviousSize)][notifyItemRangeInserted].
      *
-     * This method will *not*be called when the Adapter switches from presenting a PagedList
-     * to a snapshot version of the PagedList during a diff. This means you cannot observe each
-     * PagedList via this method.
+     * This method will *not*be called when the Adapter switches from presenting a PagedList to a
+     * snapshot version of the PagedList during a diff. This means you cannot observe each PagedList
+     * via this method.
      *
      * @param currentList new PagedList being displayed, may be null.
-     *
      * @see currentList
      */
     @Deprecated(
         "Use the two argument variant instead.",
         ReplaceWith("onCurrentListChanged(previousList, currentList)")
     )
-    open fun onCurrentListChanged(@Suppress("DEPRECATION") currentList: PagedList<T>?) {
-    }
+    open fun onCurrentListChanged(@Suppress("DEPRECATION") currentList: PagedList<T>?) {}
 
     /**
      * Called when the current PagedList is updated.
      *
-     * This may be dispatched as part of [submitList] if a background diff isn't
-     * needed (such as when the first list is passed, or the list is cleared). In either case,
-     * PagedListAdapter will simply call
-     * [notifyItemRangeInserted/Removed(0, mPreviousSize)][notifyItemRangeInserted].
+     * This may be dispatched as part of [submitList] if a background diff isn't needed (such as
+     * when the first list is passed, or the list is cleared). In either case, PagedListAdapter will
+     * simply call [notifyItemRangeInserted/Removed(0, mPreviousSize)][notifyItemRangeInserted].
      *
-     * This method will *not*be called when the Adapter switches from presenting a PagedList
-     * to a snapshot version of the PagedList during a diff. This means you cannot observe each
-     * PagedList via this method.
+     * This method will *not*be called when the Adapter switches from presenting a PagedList to a
+     * snapshot version of the PagedList during a diff. This means you cannot observe each PagedList
+     * via this method.
      *
      * @param previousList [PagedList] that was previously displayed, may be null.
      * @param currentList new [PagedList] being displayed, may be null.
-     *
      * @see currentList
      */
     open fun onCurrentListChanged(
         @Suppress("DEPRECATION") previousList: PagedList<T>?,
         @Suppress("DEPRECATION") currentList: PagedList<T>?
-    ) {
-    }
+    ) {}
 
     /**
      * Add a [LoadState] listener to observe the loading state of the current [PagedList].
@@ -244,7 +232,6 @@
      * current [LoadType.REFRESH], [LoadType.PREPEND], and [LoadType.APPEND] states.
      *
      * @param listener Listener to receive [LoadState] updates.
-     *
      * @see removeLoadStateListener
      */
     open fun addLoadStateListener(listener: (LoadType, LoadState) -> Unit) {
@@ -265,9 +252,7 @@
      * Create a [ConcatAdapter] with the provided [LoadStateAdapter]s displaying the
      * [LoadType.PREPEND] [LoadState] as a list item at the end of the presented list.
      */
-    fun withLoadStateHeader(
-        header: LoadStateAdapter<*>
-    ): ConcatAdapter {
+    fun withLoadStateHeader(header: LoadStateAdapter<*>): ConcatAdapter {
         addLoadStateListener { loadType, loadState ->
             if (loadType == LoadType.PREPEND) {
                 header.loadState = loadState
@@ -280,9 +265,7 @@
      * Create a [ConcatAdapter] with the provided [LoadStateAdapter]s displaying the
      * [LoadType.APPEND] [LoadState] as a list item at the start of the presented list.
      */
-    fun withLoadStateFooter(
-        footer: LoadStateAdapter<*>
-    ): ConcatAdapter {
+    fun withLoadStateFooter(footer: LoadStateAdapter<*>): ConcatAdapter {
         addLoadStateListener { loadType, loadState ->
             if (loadType == LoadType.APPEND) {
                 footer.loadState = loadState
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/PagingDataAdapter.kt b/paging/paging-runtime/src/main/java/androidx/paging/PagingDataAdapter.kt
index d85f5d0..e342b5c 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/PagingDataAdapter.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/PagingDataAdapter.kt
@@ -33,8 +33,8 @@
 import kotlinx.coroutines.flow.Flow
 
 /**
- * [RecyclerView.Adapter] base class for presenting paged data from [PagingData]s in
- * a [RecyclerView].
+ * [RecyclerView.Adapter] base class for presenting paged data from [PagingData]s in a
+ * [RecyclerView].
  *
  * This class is a convenience wrapper around [AsyncPagingDataDiffer] that implements common default
  * behavior for item counting, and listening to update events.
@@ -53,10 +53,10 @@
  * *State Restoration*: To be able to restore [RecyclerView] state (e.g. scroll position) after a
  * configuration change / application recreate, [PagingDataAdapter] calls
  * [RecyclerView.Adapter.setStateRestorationPolicy] with
- * [RecyclerView.Adapter.StateRestorationPolicy.PREVENT] upon initialization and waits for the
- * first page to load before allowing state restoration.
- * Any other call to [RecyclerView.Adapter.setStateRestorationPolicy] by the application will
- * disable this logic and will rely on the user set value.
+ * [RecyclerView.Adapter.StateRestorationPolicy.PREVENT] upon initialization and waits for the first
+ * page to load before allowing state restoration. Any other call to
+ * [RecyclerView.Adapter.setStateRestorationPolicy] by the application will disable this logic and
+ * will rely on the user set value.
  *
  * @sample androidx.paging.samples.pagingDataAdapterSample
  */
@@ -64,14 +64,14 @@
 /**
  * Construct a [PagingDataAdapter].
  *
- * @param mainDispatcher [CoroutineContext] where UI events are dispatched. Typically, this should be
- * [Dispatchers.Main].
- * @param workerDispatcher [CoroutineContext] where the work to generate UI events is dispatched, for
- * example when diffing lists on [REFRESH]. Typically, this should have a background
- * [CoroutineDispatcher] set; [Dispatchers.Default] by default.
+ * @param mainDispatcher [CoroutineContext] where UI events are dispatched. Typically, this should
+ *   be [Dispatchers.Main].
+ * @param workerDispatcher [CoroutineContext] where the work to generate UI events is dispatched,
+ *   for example when diffing lists on [REFRESH]. Typically, this should have a background
+ *   [CoroutineDispatcher] set; [Dispatchers.Default] by default.
  * @param diffCallback Callback for calculating the diff between two non-disjoint lists on
- * [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster path
- * for generating the UI events required to display the new list.
+ *   [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
+ *   path for generating the UI events required to display the new list.
  */
 @JvmOverloads
 constructor(
@@ -84,10 +84,10 @@
      * Construct a [PagingDataAdapter].
      *
      * @param diffCallback Callback for calculating the diff between two non-disjoint lists on
-     * [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
-     * path for generating the UI events required to display the new list.
-     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically,
-     * this should be [Dispatchers.Main].
+     *   [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
+     *   path for generating the UI events required to display the new list.
+     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically, this
+     *   should be [Dispatchers.Main].
      */
     @Deprecated(
         message = "Superseded by constructors which accept CoroutineContext",
@@ -109,13 +109,13 @@
      * Construct a [PagingDataAdapter].
      *
      * @param diffCallback Callback for calculating the diff between two non-disjoint lists on
-     * [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
-     * path for generating the UI events required to display the new list.
-     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically,
-     * this should be [Dispatchers.Main].
+     *   [REFRESH]. Used as a fallback for item-level diffing when Paging is unable to find a faster
+     *   path for generating the UI events required to display the new list.
+     * @param mainDispatcher [CoroutineDispatcher] where UI events are dispatched. Typically, this
+     *   should be [Dispatchers.Main].
      * @param workerDispatcher [CoroutineDispatcher] where the work to generate UI events is
-     * dispatched, for example when diffing lists on [REFRESH]. Typically, this should dispatch on a
-     * background thread; [Dispatchers.Default] by default.
+     *   dispatched, for example when diffing lists on [REFRESH]. Typically, this should dispatch on
+     *   a background thread; [Dispatchers.Default] by default.
      */
     @Deprecated(
         message = "Superseded by constructors which accept CoroutineContext",
@@ -145,12 +145,13 @@
         super.setStateRestorationPolicy(strategy)
     }
 
-    private val differ = AsyncPagingDataDiffer(
-        diffCallback = diffCallback,
-        updateCallback = AdapterListUpdateCallback(this),
-        mainDispatcher = mainDispatcher,
-        workerDispatcher = workerDispatcher
-    )
+    private val differ =
+        AsyncPagingDataDiffer(
+            diffCallback = diffCallback,
+            updateCallback = AdapterListUpdateCallback(this),
+            mainDispatcher = mainDispatcher,
+            workerDispatcher = workerDispatcher
+        )
 
     init {
         // Wait on state restoration until the first insert event.
@@ -165,30 +166,34 @@
         // Watch for adapter insert before triggering state restoration. This is almost redundant
         // with loadState below, but can handle cached case.
         @Suppress("LeakingThis")
-        registerAdapterDataObserver(object : RecyclerView.AdapterDataObserver() {
-            override fun onItemRangeInserted(positionStart: Int, itemCount: Int) {
-                considerAllowingStateRestoration()
-                unregisterAdapterDataObserver(this)
-                super.onItemRangeInserted(positionStart, itemCount)
+        registerAdapterDataObserver(
+            object : RecyclerView.AdapterDataObserver() {
+                override fun onItemRangeInserted(positionStart: Int, itemCount: Int) {
+                    considerAllowingStateRestoration()
+                    unregisterAdapterDataObserver(this)
+                    super.onItemRangeInserted(positionStart, itemCount)
+                }
             }
-        })
+        )
 
         // Watch for loadState update before triggering state restoration. This is almost
         // redundant with data observer above, but can handle empty page case.
-        addLoadStateListener(object : Function1<CombinedLoadStates, Unit> {
-            // Ignore the first event we get, which is always the initial state, since we only
-            // want to observe for Insert events.
-            private var ignoreNextEvent = true
+        addLoadStateListener(
+            object : Function1<CombinedLoadStates, Unit> {
+                // Ignore the first event we get, which is always the initial state, since we only
+                // want to observe for Insert events.
+                private var ignoreNextEvent = true
 
-            override fun invoke(loadStates: CombinedLoadStates) {
-                if (ignoreNextEvent) {
-                    ignoreNextEvent = false
-                } else if (loadStates.source.refresh is NotLoading) {
-                    considerAllowingStateRestoration()
-                    removeLoadStateListener(this)
+                override fun invoke(loadStates: CombinedLoadStates) {
+                    if (ignoreNextEvent) {
+                        ignoreNextEvent = false
+                    } else if (loadStates.source.refresh is NotLoading) {
+                        considerAllowingStateRestoration()
+                        removeLoadStateListener(this)
+                    }
                 }
             }
-        })
+        )
     }
 
     /**
@@ -208,9 +213,8 @@
      * result in an [UnsupportedOperationException].
      *
      * @param hasStableIds Whether items in data set have unique identifiers or not.
-     *
      * @throws UnsupportedOperationException Always thrown, since this is unsupported by
-     * [PagingDataAdapter].
+     *   [PagingDataAdapter].
      */
     final override fun setHasStableIds(hasStableIds: Boolean) {
         throw UnsupportedOperationException("Stable ids are unsupported on PagingDataAdapter.")
@@ -247,6 +251,7 @@
      * via [CoroutineScope][kotlinx.coroutines.CoroutineScope] instead of relying of [Lifecycle].
      *
      * @sample androidx.paging.samples.submitDataLiveDataSample
+     *
      * @sample androidx.paging.samples.submitDataRxSample
      *
      * @see submitData
@@ -264,8 +269,8 @@
      * within the same generation of [PagingData].
      *
      * [LoadState.Error] can be generated from two types of load requests:
-     *  * [PagingSource.load] returning [PagingSource.LoadResult.Error]
-     *  * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
+     * * [PagingSource.load] returning [PagingSource.LoadResult.Error]
+     * * [RemoteMediator.load] returning [RemoteMediator.MediatorResult.Error]
      */
     fun retry() {
         differ.retry()
@@ -298,8 +303,7 @@
      * @param position Index of the presented item to return, including placeholders.
      * @return The presented item at [position], `null` if it is a placeholder
      */
-    @MainThread
-    protected fun getItem(@IntRange(from = 0) position: Int) = differ.getItem(position)
+    @MainThread protected fun getItem(@IntRange(from = 0) position: Int) = differ.getItem(position)
 
     /**
      * Returns the presented item at the specified position, without notifying Paging of the item
@@ -308,8 +312,7 @@
      * @param index Index of the presented item to return, including placeholders.
      * @return The presented item at position [index], `null` if it is a placeholder.
      */
-    @MainThread
-    fun peek(@IntRange(from = 0) index: Int) = differ.peek(index)
+    @MainThread fun peek(@IntRange(from = 0) index: Int) = differ.peek(index)
 
     /**
      * Returns a new [ItemSnapshotList] representing the currently presented items, including any
@@ -323,28 +326,27 @@
      * A hot [Flow] of [CombinedLoadStates] that emits a snapshot whenever the loading state of the
      * current [PagingData] changes.
      *
-     * This flow is conflated, so it buffers the last update to [CombinedLoadStates] and
-     * immediately delivers the current load states on collection.
+     * This flow is conflated, so it buffers the last update to [CombinedLoadStates] and immediately
+     * delivers the current load states on collection.
      */
     val loadStateFlow: Flow<CombinedLoadStates> = differ.loadStateFlow
 
     /**
-     * A hot [Flow] that emits after the pages presented to the UI are updated, even if the
-     * actual items presented don't change.
+     * A hot [Flow] that emits after the pages presented to the UI are updated, even if the actual
+     * items presented don't change.
      *
      * An update is triggered from one of the following:
-     *   * [submitData] is called and initial load completes, regardless of any differences in
-     *     the loaded data
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
+     * * [submitData] is called and initial load completes, regardless of any differences in the
+     *   loaded data
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
      *
-     * Note: This is a [SharedFlow][kotlinx.coroutines.flow.SharedFlow] configured to replay
-     * 0 items with a buffer of size 64. If a collector lags behind page updates, it may
-     * trigger multiple times for each intermediate update that was presented while your collector
-     * was still working. To avoid this behavior, you can
-     * [conflate][kotlinx.coroutines.flow.conflate] this [Flow] so that you only receive the latest
-     * update, which is useful in cases where you are simply updating UI and don't care about
-     * tracking the exact number of page updates.
+     * Note: This is a [SharedFlow][kotlinx.coroutines.flow.SharedFlow] configured to replay 0 items
+     * with a buffer of size 64. If a collector lags behind page updates, it may trigger multiple
+     * times for each intermediate update that was presented while your collector was still working.
+     * To avoid this behavior, you can [conflate][kotlinx.coroutines.flow.conflate] this [Flow] so
+     * that you only receive the latest update, which is useful in cases where you are simply
+     * updating UI and don't care about tracking the exact number of page updates.
      */
     val onPagesUpdatedFlow: Flow<Unit> = differ.onPagesUpdatedFlow
 
@@ -355,8 +357,8 @@
      * reflect the current [CombinedLoadStates].
      *
      * @param listener [LoadStates] listener to receive updates.
-     *
      * @see removeLoadStateListener
+     *
      * @sample androidx.paging.samples.addLoadStateListenerSample
      */
     fun addLoadStateListener(listener: (CombinedLoadStates) -> Unit) {
@@ -378,13 +380,12 @@
      * actual items presented don't change.
      *
      * An update is triggered from one of the following:
-     *   * [submitData] is called and initial load completes, regardless of any differences in
-     *     the loaded data
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
-     *   * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
+     * * [submitData] is called and initial load completes, regardless of any differences in the
+     *   loaded data
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is inserted
+     * * A [Page][androidx.paging.PagingSource.LoadResult.Page] is dropped
      *
      * @param listener called after pages presented are updated.
-     *
      * @see removeOnPagesUpdatedListener
      */
     fun addOnPagesUpdatedListener(listener: () -> Unit) {
@@ -392,11 +393,10 @@
     }
 
     /**
-     * Remove a previously registered listener for new [PagingData] generations completing
-     * initial load and presenting to the UI.
+     * Remove a previously registered listener for new [PagingData] generations completing initial
+     * load and presenting to the UI.
      *
      * @param listener Previously registered listener.
-     *
      * @see addOnPagesUpdatedListener
      */
     fun removeOnPagesUpdatedListener(listener: () -> Unit) {
@@ -411,12 +411,8 @@
      * @see withLoadStateHeaderAndFooter
      * @see withLoadStateFooter
      */
-    fun withLoadStateHeader(
-        header: LoadStateAdapter<*>
-    ): ConcatAdapter {
-        addLoadStateListener { loadStates ->
-            header.loadState = loadStates.prepend
-        }
+    fun withLoadStateHeader(header: LoadStateAdapter<*>): ConcatAdapter {
+        addLoadStateListener { loadStates -> header.loadState = loadStates.prepend }
         return ConcatAdapter(header, this)
     }
 
@@ -428,12 +424,8 @@
      * @see withLoadStateHeaderAndFooter
      * @see withLoadStateHeader
      */
-    fun withLoadStateFooter(
-        footer: LoadStateAdapter<*>
-    ): ConcatAdapter {
-        addLoadStateListener { loadStates ->
-            footer.loadState = loadStates.append
-        }
+    fun withLoadStateFooter(footer: LoadStateAdapter<*>): ConcatAdapter {
+        addLoadStateListener { loadStates -> footer.loadState = loadStates.append }
         return ConcatAdapter(this, footer)
     }
 
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/PagingLiveData.kt b/paging/paging-runtime/src/main/java/androidx/paging/PagingLiveData.kt
index 51126b8..040fda2 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/PagingLiveData.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/PagingLiveData.kt
@@ -33,9 +33,9 @@
  *
  * NOTE: Instances of [PagingData] emitted by this [LiveData] are not re-usable and cannot be
  * submitted multiple times. This is especially relevant because [LiveData] will replays the latest
- * value downstream. To ensure you get a new instance of [PagingData] for each downstream
- * observer, you should use the [cachedIn] operator which multicasts the [LiveData] in a way that
- * returns a new instance of [PagingData] with cached data pre-loaded.
+ * value downstream. To ensure you get a new instance of [PagingData] for each downstream observer,
+ * you should use the [cachedIn] operator which multicasts the [LiveData] in a way that returns a
+ * new instance of [PagingData] with cached data pre-loaded.
  */
 val <Key : Any, Value : Any> Pager<Key, Value>.liveData: LiveData<PagingData<Value>>
     get() = flow.asLiveData()
@@ -43,57 +43,54 @@
 /**
  * Operator which caches a [LiveData] of [PagingData] within the scope of a [Lifecycle].
  *
- * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple
- * observers on the same instance of [PagingData] to receive the same events, avoiding redundant
- * work, but comes at the cost of buffering those pages in memory.
+ * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple observers
+ * on the same instance of [PagingData] to receive the same events, avoiding redundant work, but
+ * comes at the cost of buffering those pages in memory.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
  * @param lifecycle The [Lifecycle] where the page cache will be kept alive.
  */
-fun <T : Any> LiveData<PagingData<T>>.cachedIn(lifecycle: Lifecycle) = asFlow()
-    .cachedIn(lifecycle.coroutineScope)
-    .asLiveData()
+fun <T : Any> LiveData<PagingData<T>>.cachedIn(lifecycle: Lifecycle) =
+    asFlow().cachedIn(lifecycle.coroutineScope).asLiveData()
 
 /**
  * Operator which caches a [LiveData] of [PagingData] within the scope of a [ViewModel].
  *
- * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple
- * observers on the same instance of [PagingData] to receive the same events, avoiding redundant
- * work, but comes at the cost of buffering those pages in memory.
+ * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple observers
+ * on the same instance of [PagingData] to receive the same events, avoiding redundant work, but
+ * comes at the cost of buffering those pages in memory.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
- * @param viewModel The [ViewModel] whose [viewModelScope] will dictate how long the page
- * cache will be kept alive.
+ * @param viewModel The [ViewModel] whose [viewModelScope] will dictate how long the page cache will
+ *   be kept alive.
  */
-fun <T : Any> LiveData<PagingData<T>>.cachedIn(viewModel: ViewModel) = asFlow()
-    .cachedIn(viewModel.viewModelScope)
-    .asLiveData()
+fun <T : Any> LiveData<PagingData<T>>.cachedIn(viewModel: ViewModel) =
+    asFlow().cachedIn(viewModel.viewModelScope).asLiveData()
 
 /**
  * Operator which caches a [LiveData] of [PagingData] within a [CoroutineScope].
  *
- * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple
- * observers on the same instance of [PagingData] to receive the same events, avoiding redundant
- * work, but comes at the cost of buffering those pages in memory.
+ * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple observers
+ * on the same instance of [PagingData] to receive the same events, avoiding redundant work, but
+ * comes at the cost of buffering those pages in memory.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
- * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this
- * would be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after
- * the [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
- * manually cancelled to avoid memory leaks.
+ * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this would
+ *   be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after the
+ *   [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
+ *   manually cancelled to avoid memory leaks.
  */
-fun <T : Any> LiveData<PagingData<T>>.cachedIn(scope: CoroutineScope) = asFlow()
-    .cachedIn(scope)
-    .asLiveData()
+fun <T : Any> LiveData<PagingData<T>>.cachedIn(scope: CoroutineScope) =
+    asFlow().cachedIn(scope).asLiveData()
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/PlaceholderPaddedListDiffHelper.kt b/paging/paging-runtime/src/main/java/androidx/paging/PlaceholderPaddedListDiffHelper.kt
index 7f0ce24..06730b8 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/PlaceholderPaddedListDiffHelper.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/PlaceholderPaddedListDiffHelper.kt
@@ -29,8 +29,8 @@
  * To minimize the amount of diffing caused by placeholders, we only execute DiffUtil in a reduced
  * 'diff space' - in the range (computeLeadingNulls..size-computeTrailingNulls).
  *
- * This allows the diff of a PagedList, e.g.:
- * 100 nulls, placeholder page, (empty page) x 5, page, 100 nulls
+ * This allows the diff of a PagedList, e.g.: 100 nulls, placeholder page, (empty page) x 5, page,
+ * 100 nulls
  *
  * To only inform DiffUtil about single loaded page in this case, by pruning all other nulls from
  * consideration.
@@ -42,60 +42,62 @@
     val oldSize = dataCount
     val newSize = newList.dataCount
 
-    val diffResult = DiffUtil.calculateDiff(
-        object : DiffUtil.Callback() {
-            override fun getChangePayload(oldItemPosition: Int, newItemPosition: Int): Any? {
-                val oldItem = getItem(oldItemPosition)
-                val newItem = newList.getItem(newItemPosition)
+    val diffResult =
+        DiffUtil.calculateDiff(
+            object : DiffUtil.Callback() {
+                override fun getChangePayload(oldItemPosition: Int, newItemPosition: Int): Any? {
+                    val oldItem = getItem(oldItemPosition)
+                    val newItem = newList.getItem(newItemPosition)
 
-                return when {
-                    oldItem === newItem -> true
-                    else -> diffCallback.getChangePayload(oldItem, newItem)
+                    return when {
+                        oldItem === newItem -> true
+                        else -> diffCallback.getChangePayload(oldItem, newItem)
+                    }
                 }
-            }
 
-            override fun getOldListSize() = oldSize
+                override fun getOldListSize() = oldSize
 
-            override fun getNewListSize() = newSize
+                override fun getNewListSize() = newSize
 
-            override fun areItemsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean {
-                val oldItem = getItem(oldItemPosition)
-                val newItem = newList.getItem(newItemPosition)
+                override fun areItemsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean {
+                    val oldItem = getItem(oldItemPosition)
+                    val newItem = newList.getItem(newItemPosition)
 
-                return when {
-                    oldItem === newItem -> true
-                    else -> diffCallback.areItemsTheSame(oldItem, newItem)
+                    return when {
+                        oldItem === newItem -> true
+                        else -> diffCallback.areItemsTheSame(oldItem, newItem)
+                    }
                 }
-            }
 
-            override fun areContentsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean {
-                val oldItem = getItem(oldItemPosition)
-                val newItem = newList.getItem(newItemPosition)
+                override fun areContentsTheSame(
+                    oldItemPosition: Int,
+                    newItemPosition: Int
+                ): Boolean {
+                    val oldItem = getItem(oldItemPosition)
+                    val newItem = newList.getItem(newItemPosition)
 
-                return when {
-                    oldItem === newItem -> true
-                    else -> diffCallback.areContentsTheSame(oldItem, newItem)
+                    return when {
+                        oldItem === newItem -> true
+                        else -> diffCallback.areContentsTheSame(oldItem, newItem)
+                    }
                 }
-            }
-        },
-        true
-    )
+            },
+            true
+        )
     // find first overlap
-    val hasOverlap = (0 until dataCount).any {
-        diffResult.convertOldPositionToNew(it) != RecyclerView.NO_POSITION
-    }
-    return PlaceholderPaddedDiffResult(
-        diff = diffResult,
-        hasOverlap = hasOverlap
-    )
+    val hasOverlap =
+        (0 until dataCount).any {
+            diffResult.convertOldPositionToNew(it) != RecyclerView.NO_POSITION
+        }
+    return PlaceholderPaddedDiffResult(diff = diffResult, hasOverlap = hasOverlap)
 }
 
 /**
  * See PlaceholderPaddedDiffing.md for how this works and why it works that way :).
  *
- * Note: if lists mutate between diffing the snapshot and dispatching the diff here, then we
- * handle this by passing the snapshot to the callback, and dispatching those changes
- * immediately after dispatching this diff.
+ * Note: if lists mutate between diffing the snapshot and dispatching the diff here, then we handle
+ * this by passing the snapshot to the callback, and dispatching those changes immediately after
+ * dispatching this diff.
  */
 internal fun <T : Any> PlaceholderPaddedList<T>.dispatchDiff(
     callback: ListUpdateCallback,
@@ -122,8 +124,8 @@
 }
 
 /**
- * Given an oldPosition representing an anchor in the old data set, computes its new position
- * after the diff, or a guess if it no longer exists.
+ * Given an oldPosition representing an anchor in the old data set, computes its new position after
+ * the diff, or a guess if it no longer exists.
  */
 internal fun PlaceholderPaddedList<*>.transformAnchorIndex(
     diffResult: PlaceholderPaddedDiffResult,
@@ -169,9 +171,7 @@
     val hasOverlap: Boolean
 )
 
-/**
- * Helper class to implement the heuristic documented in PlaceholderPaddedDiffing.md.
- */
+/** Helper class to implement the heuristic documented in PlaceholderPaddedDiffing.md. */
 internal object OverlappingListsDiffDispatcher {
     fun <T> dispatchDiff(
         oldList: PlaceholderPaddedList<T>,
@@ -179,11 +179,12 @@
         callback: ListUpdateCallback,
         diffResult: PlaceholderPaddedDiffResult
     ) {
-        val callbackWrapper = PlaceholderUsingUpdateCallback(
-            oldList = oldList,
-            newList = newList,
-            callback = callback
-        )
+        val callbackWrapper =
+            PlaceholderUsingUpdateCallback(
+                oldList = oldList,
+                newList = newList,
+                callback = callback
+            )
         diffResult.diff.dispatchUpdatesTo(callbackWrapper)
         callbackWrapper.fixPlaceholders()
     }
@@ -205,9 +206,7 @@
         private var placeholdersBeforeState = UNUSED
         private var placeholdersAfterState = UNUSED
 
-        /**
-         * Offsets a value based on placeholders to make it suitable to pass into the callback.
-         */
+        /** Offsets a value based on placeholders to make it suitable to pass into the callback. */
         private inline fun Int.offsetForDispatch() = this + placeholdersBefore
 
         fun fixPlaceholders() {
@@ -234,10 +233,7 @@
                 // always remove from the end
                 // notice that postPlaceholdersToAdd is negative, thats why it is added to
                 // runningListEnd
-                callback.onRemoved(
-                    runningListSize + postPlaceholdersToAdd,
-                    -postPlaceholdersToAdd
-                )
+                callback.onRemoved(runningListSize + postPlaceholdersToAdd, -postPlaceholdersToAdd)
                 // remove them from unchanged placeholders, notice that it is an addition because
                 // postPlaceholdersToAdd is negative
                 unchangedPlaceholders += postPlaceholdersToAdd
@@ -273,7 +269,8 @@
                     // these have been shifted up, send a change event for them. We add the negative
                     // number of `prePlaceholdersToAdd` not to send change events for them
                     callback.onChanged(
-                        0, unchangedPlaceholders + prePlaceholdersToAdd,
+                        0,
+                        unchangedPlaceholders + prePlaceholdersToAdd,
                         PLACEHOLDER_POSITION_CHANGE
                     )
                 }
@@ -297,9 +294,7 @@
             storageCount += count
         }
 
-        /**
-         * Return true if it is dispatched, false otherwise.
-         */
+        /** Return true if it is dispatched, false otherwise. */
         private fun dispatchInsertAsPlaceholderBefore(position: Int, count: Int): Boolean {
             if (position > 0) {
                 return false // not at the edge
@@ -313,22 +308,20 @@
                 // this index is negative because we are going back. offsetForDispatch will fix it
                 val index = (0 - asPlaceholderChange)
                 callback.onChanged(
-                    index.offsetForDispatch(), asPlaceholderChange, PLACEHOLDER_TO_ITEM
+                    index.offsetForDispatch(),
+                    asPlaceholderChange,
+                    PLACEHOLDER_TO_ITEM
                 )
                 placeholdersBefore -= asPlaceholderChange
             }
             val asInsert = count - asPlaceholderChange
             if (asInsert > 0) {
-                callback.onInserted(
-                    0.offsetForDispatch(), asInsert
-                )
+                callback.onInserted(0.offsetForDispatch(), asInsert)
             }
             return true
         }
 
-        /**
-         * Return true if it is dispatched, false otherwise.
-         */
+        /** Return true if it is dispatched, false otherwise. */
         private fun dispatchInsertAsPlaceholderAfter(position: Int, count: Int): Boolean {
             if (position < storageCount) {
                 return false // not at the edge
@@ -340,15 +333,15 @@
             if (asPlaceholderChange > 0) {
                 placeholdersAfterState = USED_FOR_ADDITION
                 callback.onChanged(
-                    position.offsetForDispatch(), asPlaceholderChange, PLACEHOLDER_TO_ITEM
+                    position.offsetForDispatch(),
+                    asPlaceholderChange,
+                    PLACEHOLDER_TO_ITEM
                 )
                 placeholdersAfter -= asPlaceholderChange
             }
             val asInsert = count - asPlaceholderChange
             if (asInsert > 0) {
-                callback.onInserted(
-                    (position + asPlaceholderChange).offsetForDispatch(), asInsert
-                )
+                callback.onInserted((position + asPlaceholderChange).offsetForDispatch(), asInsert)
             }
             return true
         }
@@ -369,9 +362,7 @@
             storageCount -= count
         }
 
-        /**
-         * Return true if it is dispatched, false otherwise.
-         */
+        /** Return true if it is dispatched, false otherwise. */
         private fun dispatchRemovalAsPlaceholdersBefore(position: Int, count: Int): Boolean {
             if (position > 0) {
                 return false
@@ -392,19 +383,13 @@
             }
             if (asPlaceholders > 0) {
                 placeholdersBeforeState = USED_FOR_REMOVAL
-                callback.onChanged(
-                    0.offsetForDispatch(),
-                    asPlaceholders,
-                    ITEM_TO_PLACEHOLDER
-                )
+                callback.onChanged(0.offsetForDispatch(), asPlaceholders, ITEM_TO_PLACEHOLDER)
                 placeholdersBefore += asPlaceholders
             }
             return true
         }
 
-        /**
-         * Return true if it is dispatched, false otherwise.
-         */
+        /** Return true if it is dispatched, false otherwise. */
         private fun dispatchRemovalAsPlaceholdersAfter(position: Int, count: Int): Boolean {
             val end = position + count
             if (end < storageCount) {
@@ -457,9 +442,8 @@
  * Helper object to dispatch diffs when two lists do not overlap at all.
  *
  * We try to send change events when an item's position is replaced with a placeholder or vice
- * versa.
- * If there is an item in a given position in before and after lists, we dispatch add/remove for
- * them not to trigger unexpected change animations.
+ * versa. If there is an item in a given position in before and after lists, we dispatch add/remove
+ * for them not to trigger unexpected change animations.
  */
 internal object DistinctListsDiffDispatcher {
     fun <T : Any> dispatchDiff(
@@ -467,13 +451,12 @@
         oldList: PlaceholderPaddedList<T>,
         newList: PlaceholderPaddedList<T>,
     ) {
-        val storageOverlapStart = maxOf(
-            oldList.placeholdersBefore, newList.placeholdersBefore
-        )
-        val storageOverlapEnd = minOf(
-            oldList.placeholdersBefore + oldList.dataCount,
-            newList.placeholdersBefore + newList.dataCount
-        )
+        val storageOverlapStart = maxOf(oldList.placeholdersBefore, newList.placeholdersBefore)
+        val storageOverlapEnd =
+            minOf(
+                oldList.placeholdersBefore + oldList.dataCount,
+                newList.placeholdersBefore + newList.dataCount
+            )
         // we need to dispatch add/remove for overlapping storage positions
         val overlappingStorageSize = storageOverlapEnd - storageOverlapStart
         if (overlappingStorageSize > 0) {
diff --git a/paging/paging-runtime/src/main/java/androidx/paging/RecordingCallback.kt b/paging/paging-runtime/src/main/java/androidx/paging/RecordingCallback.kt
index b9489f5..de6f09a 100644
--- a/paging/paging-runtime/src/main/java/androidx/paging/RecordingCallback.kt
+++ b/paging/paging-runtime/src/main/java/androidx/paging/RecordingCallback.kt
@@ -19,6 +19,7 @@
 @Suppress("DEPRECATION")
 internal class RecordingCallback : PagedList.Callback() {
     private val list = mutableListOf<Int>()
+
     override fun onChanged(position: Int, count: Int) {
         list.add(Changed)
         list.add(position)
diff --git a/paging/paging-rxjava2/src/androidTest/java/androidx/paging/RxPagedListTest.kt b/paging/paging-rxjava2/src/androidTest/java/androidx/paging/RxPagedListTest.kt
index d5b0792..5a498de 100644
--- a/paging/paging-rxjava2/src/androidTest/java/androidx/paging/RxPagedListTest.kt
+++ b/paging/paging-rxjava2/src/androidTest/java/androidx/paging/RxPagedListTest.kt
@@ -28,14 +28,11 @@
 @RunWith(AndroidJUnit4::class)
 @SmallTest
 class RxPagedListTest {
-    @JvmField
-    @Rule
-    val instantTaskExecutorRule = InstantTaskExecutorRule()
+    @JvmField @Rule val instantTaskExecutorRule = InstantTaskExecutorRule()
 
     @Test
     fun observable_config() {
-        @Suppress("DEPRECATION")
-        val observable = dataSourceFactory.toObservable(config)
+        @Suppress("DEPRECATION") val observable = dataSourceFactory.toObservable(config)
         val first = observable.blockingFirst()
         assertNotNull(first)
         assertEquals(config, first.config)
@@ -43,8 +40,7 @@
 
     @Test
     fun observable_pageSize() {
-        @Suppress("DEPRECATION")
-        val observable = dataSourceFactory.toObservable(20)
+        @Suppress("DEPRECATION") val observable = dataSourceFactory.toObservable(20)
         val first = observable.blockingFirst()
         assertNotNull(first)
         assertEquals(20, first.config.pageSize)
@@ -52,8 +48,7 @@
 
     @Test
     fun flowable_config() {
-        @Suppress("DEPRECATION")
-        val flowable = dataSourceFactory.toFlowable(config)
+        @Suppress("DEPRECATION") val flowable = dataSourceFactory.toFlowable(config)
         val first = flowable.blockingFirst()
         assertNotNull(first)
         assertEquals(config, first.config)
@@ -61,8 +56,7 @@
 
     @Test
     fun flowable_pageSize() {
-        @Suppress("DEPRECATION")
-        val flowable = dataSourceFactory.toFlowable(20)
+        @Suppress("DEPRECATION") val flowable = dataSourceFactory.toFlowable(20)
         val first = flowable.blockingFirst()
         assertNotNull(first)
         assertEquals(20, first.config.pageSize)
@@ -70,22 +64,27 @@
 
     companion object {
         @Suppress("DEPRECATION")
-        private val dataSource = object : PositionalDataSource<String>() {
-            override fun loadInitial(
-                params: LoadInitialParams,
-                callback: LoadInitialCallback<String>
-            ) {
-                callback.onResult(listOf(), 0, 0)
+        private val dataSource =
+            object : PositionalDataSource<String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams,
+                    callback: LoadInitialCallback<String>
+                ) {
+                    callback.onResult(listOf(), 0, 0)
+                }
+
+                override fun loadRange(
+                    params: LoadRangeParams,
+                    callback: LoadRangeCallback<String>
+                ) {
+                    // never completes...
+                }
             }
 
-            override fun loadRange(params: LoadRangeParams, callback: LoadRangeCallback<String>) {
-                // never completes...
+        private val dataSourceFactory =
+            object : DataSource.Factory<Int, String>() {
+                override fun create() = dataSource
             }
-        }
-
-        private val dataSourceFactory = object : DataSource.Factory<Int, String>() {
-            override fun create() = dataSource
-        }
 
         private val config = Config(10)
     }
diff --git a/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedList.kt b/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedList.kt
index 12b5747..b0c3959 100644
--- a/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedList.kt
+++ b/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedList.kt
@@ -30,9 +30,10 @@
     fetchScheduler: Scheduler?,
     notifyScheduler: Scheduler?
 ): RxPagedListBuilder<Key, Value> {
-    val builder = RxPagedListBuilder(dataSourceFactory, config)
-        .setInitialLoadKey(initialLoadKey)
-        .setBoundaryCallback(boundaryCallback)
+    val builder =
+        RxPagedListBuilder(dataSourceFactory, config)
+            .setInitialLoadKey(initialLoadKey)
+            .setBoundaryCallback(boundaryCallback)
     if (fetchScheduler != null) builder.setFetchScheduler(fetchScheduler)
     if (notifyScheduler != null) builder.setNotifyScheduler(notifyScheduler)
     return builder
@@ -47,9 +48,10 @@
     fetchScheduler: Scheduler?,
     notifyScheduler: Scheduler?
 ): RxPagedListBuilder<Key, Value> {
-    val builder = RxPagedListBuilder(pagingSourceFactory, config)
-        .setInitialLoadKey(initialLoadKey)
-        .setBoundaryCallback(boundaryCallback)
+    val builder =
+        RxPagedListBuilder(pagingSourceFactory, config)
+            .setInitialLoadKey(initialLoadKey)
+            .setBoundaryCallback(boundaryCallback)
     if (fetchScheduler != null) builder.setFetchScheduler(fetchScheduler)
     if (notifyScheduler != null) builder.setNotifyScheduler(notifyScheduler)
     return builder
@@ -67,18 +69,18 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to PagedList load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -89,12 +91,12 @@
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getObservable",
-        "kotlinx.coroutines.rx2.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getObservable",
+            "kotlinx.coroutines.rx2.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toObservable(
     config: PagedList.Config,
@@ -104,13 +106,14 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            dataSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
@@ -125,28 +128,28 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getObservable",
-        "kotlinx.coroutines.rx2.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getObservable",
+            "kotlinx.coroutines.rx2.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toObservable(
     pageSize: Int,
@@ -156,40 +159,41 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            dataSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [DataSource.Factory], convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param config Paging configuration.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -200,12 +204,12 @@
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getFlowable",
-        "kotlinx.coroutines.rx2.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getFlowable",
+            "kotlinx.coroutines.rx2.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toFlowable(
     config: PagedList.Config,
@@ -216,50 +220,51 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            dataSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [DataSource.Factory], convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param pageSize Page size.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getFlowable",
-        "kotlinx.coroutines.rx2.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getFlowable",
+            "kotlinx.coroutines.rx2.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toFlowable(
     pageSize: Int,
@@ -270,13 +275,14 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            dataSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
 
 /**
@@ -291,18 +297,18 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to PagedList load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   thread pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -313,12 +319,12 @@
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getObservable",
-        "kotlinx.coroutines.rx2.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getObservable",
+            "kotlinx.coroutines.rx2.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toObservable(
     config: PagedList.Config,
@@ -328,13 +334,14 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            pagingSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
@@ -349,26 +356,26 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   thread pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getObservable"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getObservable"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toObservable(
     pageSize: Int,
@@ -378,40 +385,41 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            pagingSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [PagingSource] factory, convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param config Paging configuration.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   thread pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -422,10 +430,10 @@
             initialLoadKey,
             this
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getFlowable"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getFlowable"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toFlowable(
     config: PagedList.Config,
@@ -436,48 +444,49 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            pagingSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [PagingSource] factory, convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param pageSize Page size.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   thread pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava2.getFlowable"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava2.getFlowable"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toFlowable(
     pageSize: Int,
@@ -488,11 +497,12 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            pagingSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
diff --git a/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedListBuilder.kt b/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedListBuilder.kt
index 7bbc4d7..d70d567 100644
--- a/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedListBuilder.kt
+++ b/paging/paging-rxjava2/src/main/java/androidx/paging/RxPagedListBuilder.kt
@@ -45,22 +45,19 @@
  * will dispatch new PagedLists, as well as their updates to that scheduler.
  *
  * @param Key Type of input valued used to load data from the [DataSource]. Must be integer if
- * you're using [PositionalDataSource].
+ *   you're using [PositionalDataSource].
  * @param Value Item type being presented.
- *
  */
 @Deprecated("PagedList is deprecated and has been replaced by PagingData")
 class RxPagedListBuilder<Key : Any, Value : Any> {
     private val pagingSourceFactory: (() -> PagingSource<Key, Value>)?
     private val dataSourceFactory: DataSource.Factory<Key, Value>?
 
-    @Suppress("DEPRECATION")
-    private val config: PagedList.Config
+    @Suppress("DEPRECATION") private val config: PagedList.Config
 
     private var initialLoadKey: Key? = null
 
-    @Suppress("DEPRECATION")
-    private var boundaryCallback: PagedList.BoundaryCallback<Value>? = null
+    @Suppress("DEPRECATION") private var boundaryCallback: PagedList.BoundaryCallback<Value>? = null
     private var notifyDispatcher: CoroutineDispatcher? = null
     private var notifyScheduler: Scheduler? = null
     private var fetchDispatcher: CoroutineDispatcher? = null
@@ -74,8 +71,9 @@
      */
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(
                     config.pageSize,
                     config.prefetchDistance,
@@ -86,10 +84,10 @@
                 initialKey = null,
                 pagingSourceFactory = pagingSourceFactory
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava2.getFlowable"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava2.getFlowable"
+            )
     )
     constructor(
         pagingSourceFactory: () -> PagingSource<Key, Value>,
@@ -117,21 +115,22 @@
     @Suppress("DEPRECATION")
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(pageSize),
                 initialKey = null,
                 pagingSourceFactory = pagingSourceFactory
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava2.getFlowable"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava2.getFlowable"
+            )
     )
-    constructor(pagingSourceFactory: () -> PagingSource<Key, Value>, pageSize: Int) : this(
-        pagingSourceFactory,
-        PagedList.Config.Builder().setPageSize(pageSize).build()
-    )
+    constructor(
+        pagingSourceFactory: () -> PagingSource<Key, Value>,
+        pageSize: Int
+    ) : this(pagingSourceFactory, PagedList.Config.Builder().setPageSize(pageSize).build())
 
     /**
      * Creates a [RxPagedListBuilder] with required parameters.
@@ -141,8 +140,9 @@
      */
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(
                     config.pageSize,
                     config.prefetchDistance,
@@ -153,11 +153,11 @@
                 initialKey = null,
                 pagingSourceFactory = dataSourceFactory.asPagingSourceFactory(Dispatchers.IO)
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava2.getFlowable",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava2.getFlowable",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
     constructor(
         dataSourceFactory: DataSource.Factory<Key, Value>,
@@ -185,25 +185,23 @@
     @Suppress("DEPRECATION")
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(pageSize),
                 initialKey = null,
                 pagingSourceFactory = dataSourceFactory.asPagingSourceFactory(Dispatchers.IO)
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava2.getFlowable",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava2.getFlowable",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
     constructor(
         dataSourceFactory: DataSource.Factory<Key, Value>,
         pageSize: Int
-    ) : this(
-        dataSourceFactory,
-        PagedList.Config.Builder().setPageSize(pageSize).build()
-    )
+    ) : this(dataSourceFactory, PagedList.Config.Builder().setPageSize(pageSize).build())
 
     /**
      * First loading key passed to the first PagedList/DataSource.
@@ -214,26 +212,24 @@
      * @param key Initial load key passed to the first PagedList/DataSource.
      * @return this
      */
-    fun setInitialLoadKey(key: Key?) = apply {
-        initialLoadKey = key
-    }
+    fun setInitialLoadKey(key: Key?) = apply { initialLoadKey = key }
 
     /**
-     * Sets a [androidx.paging.PagedList.BoundaryCallback] on each PagedList created,
-     * typically used to load additional data from network when paging from local storage.
+     * Sets a [androidx.paging.PagedList.BoundaryCallback] on each PagedList created, typically used
+     * to load additional data from network when paging from local storage.
      *
      * Pass a BoundaryCallback to listen to when the PagedList runs out of data to load. If this
-     * method is not called, or `null` is passed, you will not be notified when each
-     * DataSource runs out of data to provide to its PagedList.
+     * method is not called, or `null` is passed, you will not be notified when each DataSource runs
+     * out of data to provide to its PagedList.
      *
      * If you are paging from a DataSource.Factory backed by local storage, you can set a
-     * BoundaryCallback to know when there is no more information to page from local storage.
-     * This is useful to page from the network when local storage is a cache of network data.
+     * BoundaryCallback to know when there is no more information to page from local storage. This
+     * is useful to page from the network when local storage is a cache of network data.
      *
-     * Note that when using a BoundaryCallback with a `Observable<PagedList>`, method calls
-     * on the callback may be dispatched multiple times - one for each PagedList/DataSource
-     * pair. If loading network data from a BoundaryCallback, you should prevent multiple
-     * dispatches of the same method from triggering multiple simultaneous network loads.
+     * Note that when using a BoundaryCallback with a `Observable<PagedList>`, method calls on the
+     * callback may be dispatched multiple times - one for each PagedList/DataSource pair. If
+     * loading network data from a BoundaryCallback, you should prevent multiple dispatches of the
+     * same method from triggering multiple simultaneous network loads.
      *
      * @param boundaryCallback The boundary callback for listening to PagedList load state.
      * @return this
@@ -252,7 +248,7 @@
      * receiving PagedLists will also receive the internal updates to the PagedList.
      *
      * @param scheduler Scheduler that receives PagedList updates, and where [PagedList.Callback]
-     * calls are dispatched. Generally, this is the UI/main thread.
+     *   calls are dispatched. Generally, this is the UI/main thread.
      * @return this
      */
     fun setNotifyScheduler(scheduler: Scheduler) = apply {
@@ -269,7 +265,7 @@
      * The built [Observable] / [Flowable] will be subscribed on this scheduler.
      *
      * @param scheduler [Scheduler] used to fetch from DataSources, generally a background thread
-     * pool for e.g. I/O or network loading.
+     *   pool for e.g. I/O or network loading.
      * @return this
      */
     fun setFetchScheduler(scheduler: Scheduler) = apply {
@@ -287,23 +283,22 @@
      */
     @Suppress("BuilderSetStyle", "DEPRECATION")
     fun buildObservable(): Observable<PagedList<Value>> {
-        val notifyScheduler = notifyScheduler
-            ?: ScheduledExecutor(ArchTaskExecutor.getMainThreadExecutor())
+        val notifyScheduler =
+            notifyScheduler ?: ScheduledExecutor(ArchTaskExecutor.getMainThreadExecutor())
         val notifyDispatcher = notifyDispatcher ?: notifyScheduler.asCoroutineDispatcher()
 
-        val fetchScheduler = fetchScheduler
-            ?: ScheduledExecutor(ArchTaskExecutor.getIOThreadExecutor())
+        val fetchScheduler =
+            fetchScheduler ?: ScheduledExecutor(ArchTaskExecutor.getIOThreadExecutor())
         val fetchDispatcher = fetchDispatcher ?: fetchScheduler.asCoroutineDispatcher()
 
-        val pagingSourceFactory = pagingSourceFactory
-            ?: dataSourceFactory?.asPagingSourceFactory(fetchDispatcher)
+        val pagingSourceFactory =
+            pagingSourceFactory ?: dataSourceFactory?.asPagingSourceFactory(fetchDispatcher)
 
         check(pagingSourceFactory != null) {
             "RxPagedList cannot be built without a PagingSourceFactory or DataSource.Factory"
         }
 
-        return Observable
-            .create(
+        return Observable.create(
                 PagingObservableOnSubscribe(
                     initialLoadKey,
                     config,
@@ -346,20 +341,19 @@
         private var currentJob: Job? = null
         private lateinit var emitter: ObservableEmitter<PagedList<Value>>
 
-        private val callback = {
-            invalidate(true)
-        }
+        private val callback = { invalidate(true) }
 
         private val refreshRetryCallback = Runnable { invalidate(true) }
 
         init {
-            currentData = InitialPagedList(
-                coroutineScope = GlobalScope,
-                notifyDispatcher = notifyDispatcher,
-                backgroundDispatcher = fetchDispatcher,
-                config = config,
-                initialLastKey = initialLoadKey
-            )
+            currentData =
+                InitialPagedList(
+                    coroutineScope = GlobalScope,
+                    notifyDispatcher = notifyDispatcher,
+                    backgroundDispatcher = fetchDispatcher,
+                    config = config,
+                    initialLastKey = initialLoadKey
+                )
             currentData.setRetryCallback(refreshRetryCallback)
         }
 
@@ -384,52 +378,53 @@
             if (currentJob != null && !force) return
 
             currentJob?.cancel()
-            currentJob = GlobalScope.launch(fetchDispatcher) {
-                currentData.pagingSource.unregisterInvalidatedCallback(callback)
-                val pagingSource = pagingSourceFactory()
-                pagingSource.registerInvalidatedCallback(callback)
-                if (pagingSource is LegacyPagingSource) {
-                    pagingSource.setPageSize(config.pageSize)
-                }
+            currentJob =
+                GlobalScope.launch(fetchDispatcher) {
+                    currentData.pagingSource.unregisterInvalidatedCallback(callback)
+                    val pagingSource = pagingSourceFactory()
+                    pagingSource.registerInvalidatedCallback(callback)
+                    if (pagingSource is LegacyPagingSource) {
+                        pagingSource.setPageSize(config.pageSize)
+                    }
 
-                withContext(notifyDispatcher) {
-                    currentData.setInitialLoadState(LoadType.REFRESH, Loading)
-                }
+                    withContext(notifyDispatcher) {
+                        currentData.setInitialLoadState(LoadType.REFRESH, Loading)
+                    }
 
-                @Suppress("UNCHECKED_CAST")
-                val lastKey = currentData.lastKey as Key?
-                val params = config.toRefreshLoadParams(lastKey)
-                when (val initialResult = pagingSource.load(params)) {
-                    is PagingSource.LoadResult.Invalid -> {
-                        currentData.setInitialLoadState(
-                            LoadType.REFRESH,
-                            LoadState.NotLoading(endOfPaginationReached = false)
-                        )
-                        pagingSource.invalidate()
-                    }
-                    is PagingSource.LoadResult.Error -> {
-                        currentData.setInitialLoadState(
-                            LoadType.REFRESH,
-                            LoadState.Error(initialResult.throwable)
-                        )
-                    }
-                    is PagingSource.LoadResult.Page -> {
-                        val pagedList = PagedList.create(
-                            pagingSource,
-                            initialResult,
-                            GlobalScope,
-                            notifyDispatcher,
-                            fetchDispatcher,
-                            boundaryCallback,
-                            config,
-                            lastKey
-                        )
-                        onItemUpdate(currentData, pagedList)
-                        currentData = pagedList
-                        emitter.onNext(pagedList)
+                    @Suppress("UNCHECKED_CAST") val lastKey = currentData.lastKey as Key?
+                    val params = config.toRefreshLoadParams(lastKey)
+                    when (val initialResult = pagingSource.load(params)) {
+                        is PagingSource.LoadResult.Invalid -> {
+                            currentData.setInitialLoadState(
+                                LoadType.REFRESH,
+                                LoadState.NotLoading(endOfPaginationReached = false)
+                            )
+                            pagingSource.invalidate()
+                        }
+                        is PagingSource.LoadResult.Error -> {
+                            currentData.setInitialLoadState(
+                                LoadType.REFRESH,
+                                LoadState.Error(initialResult.throwable)
+                            )
+                        }
+                        is PagingSource.LoadResult.Page -> {
+                            val pagedList =
+                                PagedList.create(
+                                    pagingSource,
+                                    initialResult,
+                                    GlobalScope,
+                                    notifyDispatcher,
+                                    fetchDispatcher,
+                                    boundaryCallback,
+                                    config,
+                                    lastKey
+                                )
+                            onItemUpdate(currentData, pagedList)
+                            currentData = pagedList
+                            emitter.onNext(pagedList)
+                        }
                     }
                 }
-            }
         }
 
         private fun onItemUpdate(previous: PagedList<Value>, next: PagedList<Value>) {
diff --git a/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/PagingRx.kt b/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/PagingRx.kt
index d86ce89..40c3add 100644
--- a/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/PagingRx.kt
+++ b/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/PagingRx.kt
@@ -43,13 +43,11 @@
  * returns a new instance of [PagingData] with cached data pre-loaded.
  */
 val <Key : Any, Value : Any> Pager<Key, Value>.observable: Observable<PagingData<Value>>
-    get() = flow
-        .conflate()
-        .asObservable()
+    get() = flow.conflate().asObservable()
 
 /**
- * A [Flowable] of [PagingData], which mirrors the stream provided by [Pager.flow], but exposes
- * it as a [Flowable].
+ * A [Flowable] of [PagingData], which mirrors the stream provided by [Pager.flow], but exposes it
+ * as a [Flowable].
  *
  * NOTE: Instances of [PagingData] emitted by this [Flowable] are not re-usable and cannot be
  * submitted multiple times. This is especially relevant for transforms, which would replay the
@@ -58,55 +56,48 @@
  * returns a new instance of [PagingData] with cached data pre-loaded.
  */
 val <Key : Any, Value : Any> Pager<Key, Value>.flowable: Flowable<PagingData<Value>>
-    get() = flow
-        .conflate()
-        .asFlowable()
+    get() = flow.conflate().asFlowable()
 
 /**
  * Operator which caches an [Observable] of [PagingData] within a [CoroutineScope].
  *
- * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple
- * observers on the same instance of [PagingData] to receive the same events, avoiding redundant
- * work, but comes at the cost of buffering those pages in memory.
+ * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple observers
+ * on the same instance of [PagingData] to receive the same events, avoiding redundant work, but
+ * comes at the cost of buffering those pages in memory.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
- * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this
- * would be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after
- * the [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
- * manually cancelled to avoid memory leaks.
+ * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this would
+ *   be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after the
+ *   [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
+ *   manually cancelled to avoid memory leaks.
  */
 @ExperimentalCoroutinesApi
 fun <T : Any> Observable<PagingData<T>>.cachedIn(scope: CoroutineScope): Observable<PagingData<T>> {
-    return toFlowable(BackpressureStrategy.LATEST)
-        .asFlow()
-        .cachedIn(scope)
-        .asObservable()
+    return toFlowable(BackpressureStrategy.LATEST).asFlow().cachedIn(scope).asObservable()
 }
 
 /**
  * Operator which caches a [Flowable] of [PagingData] within a [CoroutineScope].
  *
- * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple
- * observers on the same instance of [PagingData] to receive the same events, avoiding redundant
- * work, but comes at the cost of buffering those pages in memory.
+ * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple observers
+ * on the same instance of [PagingData] to receive the same events, avoiding redundant work, but
+ * comes at the cost of buffering those pages in memory.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
- * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this
- * would be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after
- * the [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
- * manually cancelled to avoid memory leaks.
+ * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this would
+ *   be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after the
+ *   [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
+ *   manually cancelled to avoid memory leaks.
  */
 @ExperimentalCoroutinesApi
 fun <T : Any> Flowable<PagingData<T>>.cachedIn(scope: CoroutineScope): Flowable<PagingData<T>> {
-    return asFlow()
-        .cachedIn(scope)
-        .asFlowable()
+    return asFlow().cachedIn(scope).asFlowable()
 }
diff --git a/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxPagingData.kt b/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxPagingData.kt
index 35d63af..3ef4df3 100644
--- a/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxPagingData.kt
+++ b/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxPagingData.kt
@@ -31,14 +31,14 @@
 import kotlinx.coroutines.rx2.awaitSingleOrNull
 
 /**
- * Returns a [PagingData] containing the result of applying the given [transform] to each
- * element, as it is loaded.
+ * Returns a [PagingData] containing the result of applying the given [transform] to each element,
+ * as it is loaded.
  */
 @JvmName("map")
 @CheckResult
-fun <T : Any, R : Any> PagingData<T>.mapAsync(
-    transform: (T) -> Single<R>
-): PagingData<R> = map { transform(it).await() }
+fun <T : Any, R : Any> PagingData<T>.mapAsync(transform: (T) -> Single<R>): PagingData<R> = map {
+    transform(it).await()
+}
 
 /**
  * Returns a [PagingData] of all elements returned from applying the given [transform] to each
@@ -50,23 +50,22 @@
     transform: (T) -> Single<Iterable<R>>
 ): PagingData<R> = flatMap { transform(it).await() }
 
-/**
- * Returns a [PagingData] containing only elements matching the given [predicate].
- */
+/** Returns a [PagingData] containing only elements matching the given [predicate]. */
 @JvmName("filter")
 @CheckResult
-fun <T : Any> PagingData<T>.filterAsync(
-    predicate: (T) -> Single<Boolean>
-): PagingData<T> = filter { predicate(it).await() }
+fun <T : Any> PagingData<T>.filterAsync(predicate: (T) -> Single<Boolean>): PagingData<T> = filter {
+    predicate(it).await()
+}
 
 /**
- * Returns a [PagingData] containing each original element, with an optional separator generated
- * by [generator], given the elements before and after (or null, in boundary conditions).
+ * Returns a [PagingData] containing each original element, with an optional separator generated by
+ * [generator], given the elements before and after (or null, in boundary conditions).
  *
  * Note that this transform is applied asynchronously, as pages are loaded. Potential separators
  * between pages are only computed once both pages are loaded.
  *
  * @sample androidx.paging.samples.insertSeparatorsRxSample
+ *
  * @sample androidx.paging.samples.insertSeparatorsUiModelRxSample
  */
 @JvmName("insertSeparators")
diff --git a/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxRemoteMediator.kt b/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxRemoteMediator.kt
index 076d04d..3242dcc 100644
--- a/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxRemoteMediator.kt
+++ b/paging/paging-rxjava2/src/main/java/androidx/paging/rxjava2/RxRemoteMediator.kt
@@ -19,9 +19,6 @@
 import androidx.paging.ExperimentalPagingApi
 import androidx.paging.LoadState
 import androidx.paging.LoadType
-import androidx.paging.LoadType.APPEND
-import androidx.paging.LoadType.PREPEND
-import androidx.paging.LoadType.REFRESH
 import androidx.paging.PagingData
 import androidx.paging.PagingSource
 import androidx.paging.PagingState
@@ -32,21 +29,18 @@
 import io.reactivex.Single
 import kotlinx.coroutines.rx2.await
 
-/**
- * RxJava2 compatibility wrapper around [RemoteMediator]'s suspending APIs.
- */
+/** RxJava2 compatibility wrapper around [RemoteMediator]'s suspending APIs. */
 @ExperimentalPagingApi
 abstract class RxRemoteMediator<Key : Any, Value : Any> : RemoteMediator<Key, Value>() {
     /**
      * Implement this method to load additional remote data, which will then be stored for the
      * [PagingSource] to access. These loads take one of two forms:
-     *  * type == [LoadType.PREPEND] / [LoadType.APPEND]
-     *  The [PagingSource] has loaded a 'boundary' page, with a `null` adjacent key. This means
-     *  this method should load additional remote data to append / prepend as appropriate, and store
-     *  it locally.
-     *  * type == [LoadType.REFRESH]
-     *  The app (or [initialize]) has requested a remote refresh of data. This means the method
-     *  should generally load remote data, and **replace** all local data.
+     *     * type == [LoadType.PREPEND] / [LoadType.APPEND] The [PagingSource] has loaded a
+     *       'boundary' page, with a `null` adjacent key. This means this method should load
+     *       additional remote data to append / prepend as appropriate, and store it locally.
+     * * type == [LoadType.REFRESH] The app (or [initialize]) has requested a remote refresh of
+     *   data. This means the method should generally load remote data, and **replace** all local
+     *   data.
      *
      * The runtime of this method defines loading state behavior in boundary conditions, which
      * affects e.g., [LoadState] callbacks registered to [androidx.paging.PagingDataAdapter].
@@ -56,17 +50,16 @@
      * [LoadType.APPEND] or both. [LoadType.REFRESH] occurs as a result of [initialize].
      *
      * @param loadType [LoadType] of the boundary condition which triggered this callback.
-     *  * [LoadType.PREPEND] indicates a boundary condition at the front of the list.
-     *  * [LoadType.APPEND] indicates a boundary condition at the end of the list.
-     *  * [LoadType.REFRESH] indicates this callback was triggered as the result of a requested
-     *  refresh - either driven by the UI, or by [initialize].
-     * @param state A copy of the state including the list of pages currently held in
-     * memory of the currently presented [PagingData] at the time of starting the load. E.g. for
-     * load(loadType = END), you can use the page or item at the end as input for what to load from
-     * the network.
+     *     * [LoadType.PREPEND] indicates a boundary condition at the front of the list.
+     *     * [LoadType.APPEND] indicates a boundary condition at the end of the list.
+     *     * [LoadType.REFRESH] indicates this callback was triggered as the result of a requested
+     *       refresh - either driven by the UI, or by [initialize].
      *
+     * @param state A copy of the state including the list of pages currently held in memory of the
+     *   currently presented [PagingData] at the time of starting the load. E.g. for load(loadType =
+     *   END), you can use the page or item at the end as input for what to load from the network.
      * @return [MediatorResult] signifying what [LoadState] to be passed to the UI, and whether
-     * there's more data available.
+     *   there's more data available.
      */
     abstract fun loadSingle(
         loadType: LoadType,
@@ -79,19 +72,21 @@
      * This function runs to completion before any loading is performed.
      *
      * @return [InitializeAction] indicating the action to take after initialization:
-     *  * [LAUNCH_INITIAL_REFRESH] to immediately dispatch a [load] asynchronously with load type
-     *  [LoadType.REFRESH], to update paginated content when the stream is initialized.
-     *  Note: This also prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until
-     *  [REFRESH] succeeds.
-     *  * [SKIP_INITIAL_REFRESH][InitializeAction.SKIP_INITIAL_REFRESH] to wait for a
-     *  refresh request from the UI before dispatching a [load] with load type [LoadType.REFRESH].
+     *     * [LAUNCH_INITIAL_REFRESH] to immediately dispatch a [load] asynchronously with load type
+     *       [LoadType.REFRESH], to update paginated content when the stream is initialized. Note:
+     *       This also prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until
+     *       [REFRESH] succeeds.
+     *     * [SKIP_INITIAL_REFRESH][InitializeAction.SKIP_INITIAL_REFRESH] to wait for a refresh
+     *       request from the UI before dispatching a [load] with load type [LoadType.REFRESH].
      */
     open fun initializeSingle(): Single<InitializeAction> = Single.just(LAUNCH_INITIAL_REFRESH)
 
-    final override suspend fun load(loadType: LoadType, state: PagingState<Key, Value>):
-        MediatorResult {
-            return loadSingle(loadType, state).await()
-        }
+    final override suspend fun load(
+        loadType: LoadType,
+        state: PagingState<Key, Value>
+    ): MediatorResult {
+        return loadSingle(loadType, state).await()
+    }
 
     final override suspend fun initialize(): InitializeAction {
         return initializeSingle().await()
diff --git a/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagedListBuilderTest.kt b/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagedListBuilderTest.kt
index 0c02a18..10b78b8 100644
--- a/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagedListBuilderTest.kt
+++ b/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagedListBuilderTest.kt
@@ -40,17 +40,13 @@
 @Suppress("DEPRECATION")
 @RunWith(JUnit4::class)
 class RxPagedListBuilderTest {
-    private data class LoadStateEvent(
-        val type: LoadType,
-        val state: LoadState
-    )
+    private data class LoadStateEvent(val type: LoadType, val state: LoadState)
 
-    /**
-     * Creates a data source that will sequentially supply the passed lists
-     */
+    /** Creates a data source that will sequentially supply the passed lists */
     private fun testDataSourceSequence(data: List<List<String>>): DataSource.Factory<Int, String> {
         return object : DataSource.Factory<Int, String>() {
             var localData = data
+
             override fun create(): DataSource<Int, String> {
                 val currentList = localData.first()
                 localData = localData.drop(1)
@@ -86,10 +82,11 @@
                     if (invalidInitialLoad) {
                         invalidInitialLoad = false
                         LoadResult.Invalid()
-                    } else when (params) {
-                        is LoadParams.Refresh -> loadInitial(params)
-                        else -> loadRange()
-                    }
+                    } else
+                        when (params) {
+                            is LoadParams.Refresh -> loadInitial(params)
+                            else -> loadRange()
+                        }
                 }
             }
 
@@ -125,18 +122,14 @@
 
     @Test
     fun basic() {
-        val factory = testDataSourceSequence(
-            listOf(
-                listOf("a", "b"),
-                listOf("c", "d")
-            )
-        )
+        val factory = testDataSourceSequence(listOf(listOf("a", "b"), listOf("c", "d")))
         val scheduler = TestScheduler()
 
-        val observable = RxPagedListBuilder(factory, 10)
-            .setFetchScheduler(scheduler)
-            .setNotifyScheduler(scheduler)
-            .buildObservable()
+        val observable =
+            RxPagedListBuilder(factory, 10)
+                .setFetchScheduler(scheduler)
+                .setNotifyScheduler(scheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
 
@@ -166,10 +159,11 @@
         val notifyScheduler = TestScheduler()
         val fetchScheduler = TestScheduler()
 
-        val observable: Observable<PagedList<String>> = RxPagedListBuilder(factory, 10)
-            .setFetchScheduler(fetchScheduler)
-            .setNotifyScheduler(notifyScheduler)
-            .buildObservable()
+        val observable: Observable<PagedList<String>> =
+            RxPagedListBuilder(factory, 10)
+                .setFetchScheduler(fetchScheduler)
+                .setNotifyScheduler(notifyScheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
         observable.subscribe(observer)
@@ -197,10 +191,11 @@
         val notifyScheduler = TestScheduler()
         val fetchScheduler = TestScheduler()
 
-        val observable = RxPagedListBuilder(factory::create, 2)
-            .setFetchScheduler(fetchScheduler)
-            .setNotifyScheduler(notifyScheduler)
-            .buildObservable()
+        val observable =
+            RxPagedListBuilder(factory::create, 2)
+                .setFetchScheduler(fetchScheduler)
+                .setNotifyScheduler(notifyScheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
         observable.subscribe(observer)
@@ -223,22 +218,14 @@
             }
         }
         initPagedList.addWeakLoadStateListener(loadStateChangedCallback)
-        assertEquals(
-            listOf(
-                LoadStateEvent(REFRESH, Loading)
-            ),
-            loadStates
-        )
+        assertEquals(listOf(LoadStateEvent(REFRESH, Loading)), loadStates)
 
         fetchScheduler.triggerActions()
         notifyScheduler.triggerActions()
         observer.assertValueCount(1)
 
         assertEquals(
-            listOf(
-                LoadStateEvent(REFRESH, Loading),
-                LoadStateEvent(REFRESH, Error(EXCEPTION))
-            ),
+            listOf(LoadStateEvent(REFRESH, Loading), LoadStateEvent(REFRESH, Error(EXCEPTION))),
             loadStates
         )
 
@@ -270,10 +257,7 @@
                 LoadStateEvent(REFRESH, Loading),
                 LoadStateEvent(REFRESH, Error(EXCEPTION)),
                 LoadStateEvent(REFRESH, Loading),
-                LoadStateEvent(
-                    REFRESH,
-                    NotLoading(endOfPaginationReached = false)
-                )
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false))
             ),
             loadStates
         )
@@ -294,10 +278,11 @@
         }
         // this is essentially a direct scheduler so jobs are run immediately
         val scheduler = Schedulers.from(DirectDispatcher.asExecutor())
-        val observable = RxPagedListBuilder(factory, 2)
-            .setFetchScheduler(scheduler)
-            .setNotifyScheduler(scheduler)
-            .buildObservable()
+        val observable =
+            RxPagedListBuilder(factory, 2)
+                .setFetchScheduler(scheduler)
+                .setNotifyScheduler(scheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
         // subscribe triggers the PagingObservableOnSubscribe's invalidate() to create first
@@ -321,15 +306,17 @@
 
         initPagedList.addWeakLoadStateListener(loadStateChangedCallback)
 
-        assertThat(loadStates).containsExactly(
-            // before first load() is called, REFRESH is set to loading, represents load
-            // attempt on first pagingSource
-            LoadStateEvent(REFRESH, Loading)
-        )
+        assertThat(loadStates)
+            .containsExactly(
+                // before first load() is called, REFRESH is set to loading, represents load
+                // attempt on first pagingSource
+                LoadStateEvent(REFRESH, Loading)
+            )
 
         // execute first load, represents load attempt on first paging source
         //
-        // using removeFirst().run() instead of executeAll(), because executeAll() + immediate schedulers
+        // using removeFirst().run() instead of executeAll(), because executeAll() + immediate
+        // schedulers
         // result in first load + subsequent loads executing immediately and we won't be able to
         // assert the pagedLists/loads incrementally
         loadDispatcher.queue.removeFirst().run()
@@ -340,18 +327,16 @@
         assertTrue(pagingSources[0].invalid)
         assertThat(pagingSources.size).isEqualTo(2)
 
-        assertThat(loadStates).containsExactly(
-            // the first load attempt
-            LoadStateEvent(REFRESH, Loading),
-            // LoadResult.Invalid resets RERFRESH state
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ),
-            // before second load() is called, REFRESH is set to loading, represents load
-            // attempt on second pagingSource
-            LoadStateEvent(REFRESH, Loading),
-        )
+        assertThat(loadStates)
+            .containsExactly(
+                // the first load attempt
+                LoadStateEvent(REFRESH, Loading),
+                // LoadResult.Invalid resets RERFRESH state
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false)),
+                // before second load() is called, REFRESH is set to loading, represents load
+                // attempt on second pagingSource
+                LoadStateEvent(REFRESH, Loading),
+            )
 
         // execute the load attempt on second pagingSource which succeeds
         loadDispatcher.queue.removeFirst().run()
@@ -364,18 +349,19 @@
         assertThat(secondPagedList).isInstanceOf(ContiguousPagedList::class.java)
 
         secondPagedList.addWeakLoadStateListener(loadStateChangedCallback)
-        assertThat(loadStates).containsExactly(
-            LoadStateEvent(REFRESH, Loading), // first load
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ), // first load reset
-            LoadStateEvent(REFRESH, Loading), // second load
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ), // second load succeeds
-        )
+        assertThat(loadStates)
+            .containsExactly(
+                LoadStateEvent(REFRESH, Loading), // first load
+                LoadStateEvent(
+                    REFRESH,
+                    NotLoading(endOfPaginationReached = false)
+                ), // first load reset
+                LoadStateEvent(REFRESH, Loading), // second load
+                LoadStateEvent(
+                    REFRESH,
+                    NotLoading(endOfPaginationReached = false)
+                ), // second load succeeds
+            )
     }
 
     @Test
@@ -387,18 +373,21 @@
         }
         val notifyScheduler = TestScheduler()
         val fetchScheduler = TestScheduler()
-        val rxPagedList = RxPagedListBuilder(
-            pagingSourceFactory = pagingSourceFactory,
-            pageSize = 10,
-        ).apply {
-            setNotifyScheduler(notifyScheduler)
-            setFetchScheduler(fetchScheduler)
-        }.buildObservable()
+        val rxPagedList =
+            RxPagedListBuilder(
+                    pagingSourceFactory = pagingSourceFactory,
+                    pageSize = 10,
+                )
+                .apply {
+                    setNotifyScheduler(notifyScheduler)
+                    setFetchScheduler(fetchScheduler)
+                }
+                .buildObservable()
 
         fetchScheduler.triggerActions()
         assertEquals(0, pagingSourcesCreated)
 
-        rxPagedList.subscribe { }
+        rxPagedList.subscribe {}
 
         assertEquals(0, pagingSourcesCreated)
 
@@ -408,13 +397,16 @@
 
     @Test
     fun initialValueAllowsGetDataSource() {
-        val rxPagedList = RxPagedListBuilder(
-            pagingSourceFactory = { TestPagingSource(loadDelay = 0) },
-            pageSize = 10,
-        ).apply {
-            setNotifyScheduler(Schedulers.from { it.run() })
-            setFetchScheduler(Schedulers.from { it.run() })
-        }.buildObservable()
+        val rxPagedList =
+            RxPagedListBuilder(
+                    pagingSourceFactory = { TestPagingSource(loadDelay = 0) },
+                    pageSize = 10,
+                )
+                .apply {
+                    setNotifyScheduler(Schedulers.from { it.run() })
+                    setFetchScheduler(Schedulers.from { it.run() })
+                }
+                .buildObservable()
 
         // Calling .dataSource should never throw from the initial paged list.
         rxPagedList.firstOrError().blockingGet().dataSource
@@ -426,21 +418,22 @@
         var pagingSourcesCreated = 0
         val pagingSourceFactory = {
             when (pagingSourcesCreated++) {
-                0 -> TestPagingSource().apply {
-                    invalidate()
-                }
+                0 -> TestPagingSource().apply { invalidate() }
                 else -> TestPagingSource()
             }
         }
 
         val testScheduler = TestScheduler()
-        val rxPagedList = RxPagedListBuilder(
-            pageSize = 10,
-            pagingSourceFactory = pagingSourceFactory,
-        ).apply {
-            setNotifyScheduler(testScheduler)
-            setFetchScheduler(testScheduler)
-        }.buildObservable()
+        val rxPagedList =
+            RxPagedListBuilder(
+                    pageSize = 10,
+                    pagingSourceFactory = pagingSourceFactory,
+                )
+                .apply {
+                    setNotifyScheduler(testScheduler)
+                    setFetchScheduler(testScheduler)
+                }
+                .buildObservable()
 
         rxPagedList.subscribe()
         testScheduler.triggerActions()
diff --git a/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagingSourceTest.kt b/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagingSourceTest.kt
index 7ca476d..7a0dfda 100644
--- a/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagingSourceTest.kt
+++ b/paging/paging-rxjava2/src/test/java/androidx/paging/RxPagingSourceTest.kt
@@ -37,23 +37,23 @@
         )
     }
 
-    private val pagingSource = object : PagingSource<Int, Int>() {
-        override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-            return loadInternal(params)
-        }
-
-        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-    }
-
-    private val rxPagingSource = object : RxPagingSource<Int, Int>() {
-        override fun loadSingle(params: LoadParams<Int>): Single<LoadResult<Int, Int>> {
-            return Single.create { emitter ->
-                emitter.onSuccess(loadInternal(params))
+    private val pagingSource =
+        object : PagingSource<Int, Int>() {
+            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                return loadInternal(params)
             }
+
+            override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
         }
 
-        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-    }
+    private val rxPagingSource =
+        object : RxPagingSource<Int, Int>() {
+            override fun loadSingle(params: LoadParams<Int>): Single<LoadResult<Int, Int>> {
+                return Single.create { emitter -> emitter.onSuccess(loadInternal(params)) }
+            }
+
+            override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
+        }
 
     @Test
     fun basic() = runBlocking {
diff --git a/paging/paging-rxjava2/src/test/java/androidx/paging/RxRemoteMediatorTest.kt b/paging/paging-rxjava2/src/test/java/androidx/paging/RxRemoteMediatorTest.kt
index 4816060..cfb0d97 100644
--- a/paging/paging-rxjava2/src/test/java/androidx/paging/RxRemoteMediatorTest.kt
+++ b/paging/paging-rxjava2/src/test/java/androidx/paging/RxRemoteMediatorTest.kt
@@ -33,32 +33,34 @@
 class RxRemoteMediatorTest {
     @Test
     fun initializeSingle() = runTest {
-        val remoteMediator = object : RxRemoteMediator<Int, Int>() {
-            override fun loadSingle(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): Single<MediatorResult> {
-                fail("Unexpected call")
-            }
+        val remoteMediator =
+            object : RxRemoteMediator<Int, Int>() {
+                override fun loadSingle(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): Single<MediatorResult> {
+                    fail("Unexpected call")
+                }
 
-            override fun initializeSingle(): Single<InitializeAction> {
-                return Single.just(SKIP_INITIAL_REFRESH)
+                override fun initializeSingle(): Single<InitializeAction> {
+                    return Single.just(SKIP_INITIAL_REFRESH)
+                }
             }
-        }
 
         assertEquals(SKIP_INITIAL_REFRESH, remoteMediator.initialize())
     }
 
     @Test
     fun initializeSingleDefault() = runTest {
-        val remoteMediator = object : RxRemoteMediator<Int, Int>() {
-            override fun loadSingle(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): Single<MediatorResult> {
-                fail("Unexpected call")
+        val remoteMediator =
+            object : RxRemoteMediator<Int, Int>() {
+                override fun loadSingle(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): Single<MediatorResult> {
+                    fail("Unexpected call")
+                }
             }
-        }
 
         assertEquals(LAUNCH_INITIAL_REFRESH, remoteMediator.initialize())
     }
diff --git a/paging/paging-rxjava2/src/test/java/androidx/paging/rxjava2/RxPagingDataTest.kt b/paging/paging-rxjava2/src/test/java/androidx/paging/rxjava2/RxPagingDataTest.kt
index 7fcfc05..2089d99 100644
--- a/paging/paging-rxjava2/src/test/java/androidx/paging/rxjava2/RxPagingDataTest.kt
+++ b/paging/paging-rxjava2/src/test/java/androidx/paging/rxjava2/RxPagingDataTest.kt
@@ -39,32 +39,38 @@
     private val presenter = TestPagingDataPresenter<String>(testDispatcher)
 
     @Test
-    fun map() = testScope.runTest {
-        val transformed = original.mapAsync { Single.just(it + it) }
-        presenter.collectFrom(transformed)
-        assertEquals(listOf("aa", "bb", "cc"), presenter.currentList)
-    }
-
-    @Test
-    fun flatMap() = testScope.runTest {
-        val transformed = original.flatMapAsync { Single.just(listOf(it, it) as Iterable<String>) }
-        presenter.collectFrom(transformed)
-        assertEquals(listOf("a", "a", "b", "b", "c", "c"), presenter.currentList)
-    }
-
-    @Test
-    fun filter() = testScope.runTest {
-        val filtered = original.filterAsync { Single.just(it != "b") }
-        presenter.collectFrom(filtered)
-        assertEquals(listOf("a", "c"), presenter.currentList)
-    }
-
-    @Test
-    fun insertSeparators() = testScope.runTest {
-        val separated = original.insertSeparatorsAsync { left, right ->
-            if (left == null || right == null) Maybe.empty() else Maybe.just("|")
+    fun map() =
+        testScope.runTest {
+            val transformed = original.mapAsync { Single.just(it + it) }
+            presenter.collectFrom(transformed)
+            assertEquals(listOf("aa", "bb", "cc"), presenter.currentList)
         }
-        presenter.collectFrom(separated)
-        assertEquals(listOf("a", "|", "b", "|", "c"), presenter.currentList)
-    }
+
+    @Test
+    fun flatMap() =
+        testScope.runTest {
+            val transformed =
+                original.flatMapAsync { Single.just(listOf(it, it) as Iterable<String>) }
+            presenter.collectFrom(transformed)
+            assertEquals(listOf("a", "a", "b", "b", "c", "c"), presenter.currentList)
+        }
+
+    @Test
+    fun filter() =
+        testScope.runTest {
+            val filtered = original.filterAsync { Single.just(it != "b") }
+            presenter.collectFrom(filtered)
+            assertEquals(listOf("a", "c"), presenter.currentList)
+        }
+
+    @Test
+    fun insertSeparators() =
+        testScope.runTest {
+            val separated =
+                original.insertSeparatorsAsync { left, right ->
+                    if (left == null || right == null) Maybe.empty() else Maybe.just("|")
+                }
+            presenter.collectFrom(separated)
+            assertEquals(listOf("a", "|", "b", "|", "c"), presenter.currentList)
+        }
 }
diff --git a/paging/paging-rxjava3/src/androidTest/java/androidx/paging/RxPagedListTest.kt b/paging/paging-rxjava3/src/androidTest/java/androidx/paging/RxPagedListTest.kt
index becbace..86ca4bb 100644
--- a/paging/paging-rxjava3/src/androidTest/java/androidx/paging/RxPagedListTest.kt
+++ b/paging/paging-rxjava3/src/androidTest/java/androidx/paging/RxPagedListTest.kt
@@ -30,14 +30,11 @@
 @RunWith(AndroidJUnit4::class)
 @SmallTest
 class RxPagedListTest {
-    @JvmField
-    @Rule
-    val instantTaskExecutorRule = InstantTaskExecutorRule()
+    @JvmField @Rule val instantTaskExecutorRule = InstantTaskExecutorRule()
 
     @Test
     fun observable_config() {
-        @Suppress("DEPRECATION")
-        val observable = dataSourceFactory.toObservable(config)
+        @Suppress("DEPRECATION") val observable = dataSourceFactory.toObservable(config)
         val first = observable.blockingFirst()
         assertNotNull(first)
         assertEquals(config, first.config)
@@ -45,8 +42,7 @@
 
     @Test
     fun observable_pageSize() {
-        @Suppress("DEPRECATION")
-        val observable = dataSourceFactory.toObservable(20)
+        @Suppress("DEPRECATION") val observable = dataSourceFactory.toObservable(20)
         val first = observable.blockingFirst()
         assertNotNull(first)
         assertEquals(20, first.config.pageSize)
@@ -54,8 +50,7 @@
 
     @Test
     fun flowable_config() {
-        @Suppress("DEPRECATION")
-        val flowable = dataSourceFactory.toFlowable(config)
+        @Suppress("DEPRECATION") val flowable = dataSourceFactory.toFlowable(config)
         val first = flowable.blockingFirst()
         assertNotNull(first)
         assertEquals(config, first.config)
@@ -63,8 +58,7 @@
 
     @Test
     fun flowable_pageSize() {
-        @Suppress("DEPRECATION")
-        val flowable = dataSourceFactory.toFlowable(20)
+        @Suppress("DEPRECATION") val flowable = dataSourceFactory.toFlowable(20)
         val first = flowable.blockingFirst()
         assertNotNull(first)
         assertEquals(20, first.config.pageSize)
@@ -72,22 +66,27 @@
 
     companion object {
         @Suppress("DEPRECATION")
-        private val dataSource = object : PositionalDataSource<String>() {
-            override fun loadInitial(
-                params: LoadInitialParams,
-                callback: LoadInitialCallback<String>
-            ) {
-                callback.onResult(listOf(), 0, 0)
+        private val dataSource =
+            object : PositionalDataSource<String>() {
+                override fun loadInitial(
+                    params: LoadInitialParams,
+                    callback: LoadInitialCallback<String>
+                ) {
+                    callback.onResult(listOf(), 0, 0)
+                }
+
+                override fun loadRange(
+                    params: LoadRangeParams,
+                    callback: LoadRangeCallback<String>
+                ) {
+                    // never completes...
+                }
             }
 
-            override fun loadRange(params: LoadRangeParams, callback: LoadRangeCallback<String>) {
-                // never completes...
+        private val dataSourceFactory =
+            object : DataSource.Factory<Int, String>() {
+                override fun create() = dataSource
             }
-        }
-
-        private val dataSourceFactory = object : DataSource.Factory<Int, String>() {
-            override fun create() = dataSource
-        }
 
         private val config = Config(10)
     }
diff --git a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/PagingRx.kt b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/PagingRx.kt
index df1e230..28eb677 100644
--- a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/PagingRx.kt
+++ b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/PagingRx.kt
@@ -43,13 +43,11 @@
  * returns a new instance of [PagingData] with cached data pre-loaded.
  */
 val <Key : Any, Value : Any> Pager<Key, Value>.observable: Observable<PagingData<Value>>
-    get() = flow
-        .conflate()
-        .asObservable()
+    get() = flow.conflate().asObservable()
 
 /**
- * A [Flowable] of [PagingData], which mirrors the stream provided by [Pager.flow], but exposes
- * it as a [Flowable].
+ * A [Flowable] of [PagingData], which mirrors the stream provided by [Pager.flow], but exposes it
+ * as a [Flowable].
  *
  * NOTE: Instances of [PagingData] emitted by this [Flowable] are not re-usable and cannot be
  * submitted multiple times. This is especially relevant for transforms, which would replay the
@@ -58,55 +56,48 @@
  * returns a new instance of [PagingData] with cached data pre-loaded.
  */
 val <Key : Any, Value : Any> Pager<Key, Value>.flowable: Flowable<PagingData<Value>>
-    get() = flow
-        .conflate()
-        .asFlowable()
+    get() = flow.conflate().asFlowable()
 
 /**
  * Operator which caches an [Observable] of [PagingData] within a [CoroutineScope].
  *
- * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple
- * observers on the same instance of [PagingData] to receive the same events, avoiding redundant
- * work, but comes at the cost of buffering those pages in memory.
+ * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple observers
+ * on the same instance of [PagingData] to receive the same events, avoiding redundant work, but
+ * comes at the cost of buffering those pages in memory.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
- * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this
- * would be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after
- * the [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
- * manually cancelled to avoid memory leaks.
+ * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this would
+ *   be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after the
+ *   [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
+ *   manually cancelled to avoid memory leaks.
  */
 @ExperimentalCoroutinesApi
 fun <T : Any> Observable<PagingData<T>>.cachedIn(scope: CoroutineScope): Observable<PagingData<T>> {
-    return toFlowable(BackpressureStrategy.LATEST)
-        .asFlow()
-        .cachedIn(scope)
-        .asObservable()
+    return toFlowable(BackpressureStrategy.LATEST).asFlow().cachedIn(scope).asObservable()
 }
 
 /**
  * Operator which caches a [Flowable] of [PagingData] within a [CoroutineScope].
  *
- * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple
- * observers on the same instance of [PagingData] to receive the same events, avoiding redundant
- * work, but comes at the cost of buffering those pages in memory.
+ * [cachedIn] multicasts pages loaded and transformed by a [PagingData], allowing multiple observers
+ * on the same instance of [PagingData] to receive the same events, avoiding redundant work, but
+ * comes at the cost of buffering those pages in memory.
  *
  * Calling [cachedIn] is required to allow calling
- * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData]
- * emitted by [Pager] or any of its transformed derivatives, as reloading data from scratch on the
- * same generation of [PagingData] is an unsupported operation.
+ * [submitData][androidx.paging.AsyncPagingDataAdapter] on the same instance of [PagingData] emitted
+ * by [Pager] or any of its transformed derivatives, as reloading data from scratch on the same
+ * generation of [PagingData] is an unsupported operation.
  *
- * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this
- * would be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after
- * the [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
- * manually cancelled to avoid memory leaks.
+ * @param scope The [CoroutineScope] where the page cache will be kept alive. Typically this would
+ *   be a managed scope such as `ViewModel.viewModelScope`, which automatically cancels after the
+ *   [PagingData] stream is no longer needed. Otherwise, the provided [CoroutineScope] must be
+ *   manually cancelled to avoid memory leaks.
  */
 @ExperimentalCoroutinesApi
 fun <T : Any> Flowable<PagingData<T>>.cachedIn(scope: CoroutineScope): Flowable<PagingData<T>> {
-    return asFlow()
-        .cachedIn(scope)
-        .asFlowable()
+    return asFlow().cachedIn(scope).asFlowable()
 }
diff --git a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedList.kt b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedList.kt
index 7923b35..4ce7dda 100644
--- a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedList.kt
+++ b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedList.kt
@@ -34,9 +34,10 @@
     fetchScheduler: Scheduler?,
     notifyScheduler: Scheduler?
 ): RxPagedListBuilder<Key, Value> {
-    val builder = RxPagedListBuilder(dataSourceFactory, config)
-        .setInitialLoadKey(initialLoadKey)
-        .setBoundaryCallback(boundaryCallback)
+    val builder =
+        RxPagedListBuilder(dataSourceFactory, config)
+            .setInitialLoadKey(initialLoadKey)
+            .setBoundaryCallback(boundaryCallback)
     if (fetchScheduler != null) builder.setFetchScheduler(fetchScheduler)
     if (notifyScheduler != null) builder.setNotifyScheduler(notifyScheduler)
     return builder
@@ -51,9 +52,10 @@
     fetchScheduler: Scheduler?,
     notifyScheduler: Scheduler?
 ): RxPagedListBuilder<Key, Value> {
-    val builder = RxPagedListBuilder(pagingSourceFactory, config)
-        .setInitialLoadKey(initialLoadKey)
-        .setBoundaryCallback(boundaryCallback)
+    val builder =
+        RxPagedListBuilder(pagingSourceFactory, config)
+            .setInitialLoadKey(initialLoadKey)
+            .setBoundaryCallback(boundaryCallback)
     if (fetchScheduler != null) builder.setFetchScheduler(fetchScheduler)
     if (notifyScheduler != null) builder.setNotifyScheduler(notifyScheduler)
     return builder
@@ -71,18 +73,18 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to PagedList load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -93,12 +95,12 @@
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.observable",
-        "kotlinx.coroutines.rx3.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.observable",
+            "kotlinx.coroutines.rx3.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toObservable(
     config: PagedList.Config,
@@ -108,13 +110,14 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            dataSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
@@ -129,28 +132,28 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.observable",
-        "kotlinx.coroutines.rx3.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.observable",
+            "kotlinx.coroutines.rx3.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toObservable(
     pageSize: Int,
@@ -160,40 +163,41 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            dataSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [DataSource.Factory], convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param config Paging configuration.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -204,12 +208,12 @@
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.flowable",
-        "kotlinx.coroutines.rx3.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.flowable",
+            "kotlinx.coroutines.rx3.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toFlowable(
     config: PagedList.Config,
@@ -220,50 +224,51 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            dataSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [DataSource.Factory], convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param pageSize Page size.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [DataSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
- * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ * @param fetchScheduler [Scheduler] used to fetch from [DataSource]s, generally a background thread
+ *   pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.flowable",
-        "kotlinx.coroutines.rx3.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.flowable",
+            "kotlinx.coroutines.rx3.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> DataSource.Factory<Key, Value>.toFlowable(
     pageSize: Int,
@@ -274,13 +279,14 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        dataSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            dataSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
 
 /**
@@ -295,18 +301,18 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to PagedList load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   thread pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -317,12 +323,12 @@
             initialLoadKey,
             this.asPagingSourceFactory(fetchScheduler?.asCoroutineDispatcher() ?: Dispatchers.IO)
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.observable",
-        "kotlinx.coroutines.rx3.asCoroutineDispatcher",
-        "kotlinx.coroutines.Dispatchers"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.observable",
+            "kotlinx.coroutines.rx3.asCoroutineDispatcher",
+            "kotlinx.coroutines.Dispatchers"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toObservable(
     config: PagedList.Config,
@@ -332,13 +338,14 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            pagingSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
@@ -353,26 +360,26 @@
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
- *
+ *   thread pool for e.g. I/O or network loading.
  * @see RxPagedListBuilder
  * @see toFlowable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this
         ).observable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.observable"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.observable"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toObservable(
     pageSize: Int,
@@ -382,40 +389,41 @@
     notifyScheduler: Scheduler? = null
 ): Observable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildObservable()
+            pagingSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildObservable()
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [PagingSource] factory, convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param config Paging configuration.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   thread pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(
                 config.pageSize,
                 config.prefetchDistance,
@@ -426,10 +434,10 @@
             initialLoadKey,
             this
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.flowable"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.flowable"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toFlowable(
     config: PagedList.Config,
@@ -440,48 +448,49 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = config,
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            pagingSourceFactory = this,
+            config = config,
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
 
 /**
  * Constructs a `Flowable<PagedList>`, from this [PagingSource] factory, convenience for
  * [RxPagedListBuilder].
  *
- * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform
- * all loading on that scheduler. It will already be observed on [notifyScheduler], and will
- * dispatch new [PagedList]s, as well as their updates to that scheduler.
+ * The returned [Flowable] will already be subscribed on the [fetchScheduler], and will perform all
+ * loading on that scheduler. It will already be observed on [notifyScheduler], and will dispatch
+ * new [PagedList]s, as well as their updates to that scheduler.
  *
  * @param pageSize Page size.
  * @param initialLoadKey Initial load key passed to the first [PagedList] / [PagingSource].
  * @param boundaryCallback The boundary callback for listening to [PagedList] load state.
  * @param notifyScheduler [Scheduler] that receives [PagedList] updates, and where
- * [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
+ *   [PagedList.Callback] calls are dispatched. Generally, this is the UI / main thread.
  * @param fetchScheduler [Scheduler] used to fetch from [PagingSource]s, generally a background
- * thread pool for e.g. I/O or network loading.
+ *   thread pool for e.g. I/O or network loading.
  * @param backpressureStrategy [BackpressureStrategy] for the [Flowable] to use.
- *
  * @see RxPagedListBuilder
  * @see toObservable
  */
 @Suppress("DEPRECATION")
 @Deprecated(
     message = "PagedList is deprecated and has been replaced by PagingData",
-    replaceWith = ReplaceWith(
-        """Pager(
+    replaceWith =
+        ReplaceWith(
+            """Pager(
             PagingConfig(pageSize),
             initialLoadKey,
             this
         ).flowable""",
-        "androidx.paging.Pager",
-        "androidx.paging.PagingConfig",
-        "androidx.paging.rxjava3.flowable"
-    )
+            "androidx.paging.Pager",
+            "androidx.paging.PagingConfig",
+            "androidx.paging.rxjava3.flowable"
+        )
 )
 fun <Key : Any, Value : Any> (() -> PagingSource<Key, Value>).toFlowable(
     pageSize: Int,
@@ -492,11 +501,12 @@
     backpressureStrategy: BackpressureStrategy = BackpressureStrategy.LATEST
 ): Flowable<PagedList<Value>> {
     return createRxPagedListBuilder(
-        pagingSourceFactory = this,
-        config = Config(pageSize),
-        initialLoadKey = initialLoadKey,
-        boundaryCallback = boundaryCallback,
-        fetchScheduler = fetchScheduler,
-        notifyScheduler = notifyScheduler
-    ).buildFlowable(backpressureStrategy)
+            pagingSourceFactory = this,
+            config = Config(pageSize),
+            initialLoadKey = initialLoadKey,
+            boundaryCallback = boundaryCallback,
+            fetchScheduler = fetchScheduler,
+            notifyScheduler = notifyScheduler
+        )
+        .buildFlowable(backpressureStrategy)
 }
diff --git a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedListBuilder.kt b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedListBuilder.kt
index 98e745a..4a8c097 100644
--- a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedListBuilder.kt
+++ b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagedListBuilder.kt
@@ -53,22 +53,19 @@
  * will dispatch new PagedLists, as well as their updates to that scheduler.
  *
  * @param Key Type of input valued used to load data from the [DataSource]. Must be integer if
- * you're using [PositionalDataSource].
+ *   you're using [PositionalDataSource].
  * @param Value Item type being presented.
- *
  */
 @Deprecated("PagedList is deprecated and has been replaced by PagingData")
 class RxPagedListBuilder<Key : Any, Value : Any> {
     private val pagingSourceFactory: (() -> PagingSource<Key, Value>)?
     private val dataSourceFactory: DataSource.Factory<Key, Value>?
 
-    @Suppress("DEPRECATION")
-    private val config: PagedList.Config
+    @Suppress("DEPRECATION") private val config: PagedList.Config
 
     private var initialLoadKey: Key? = null
 
-    @Suppress("DEPRECATION")
-    private var boundaryCallback: PagedList.BoundaryCallback<Value>? = null
+    @Suppress("DEPRECATION") private var boundaryCallback: PagedList.BoundaryCallback<Value>? = null
     private var notifyDispatcher: CoroutineDispatcher? = null
     private var notifyScheduler: Scheduler? = null
     private var fetchDispatcher: CoroutineDispatcher? = null
@@ -82,8 +79,9 @@
      */
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(
                     config.pageSize,
                     config.prefetchDistance,
@@ -94,10 +92,10 @@
                 initialKey = null,
                 pagingSourceFactory = pagingSourceFactory
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava3.flowable"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava3.flowable"
+            )
     )
     constructor(
         pagingSourceFactory: () -> PagingSource<Key, Value>,
@@ -125,21 +123,22 @@
     @Suppress("DEPRECATION")
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(pageSize),
                 initialKey = null,
                 pagingSourceFactory = pagingSourceFactory
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava3.flowable"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava3.flowable"
+            )
     )
-    constructor(pagingSourceFactory: () -> PagingSource<Key, Value>, pageSize: Int) : this(
-        pagingSourceFactory,
-        PagedList.Config.Builder().setPageSize(pageSize).build()
-    )
+    constructor(
+        pagingSourceFactory: () -> PagingSource<Key, Value>,
+        pageSize: Int
+    ) : this(pagingSourceFactory, PagedList.Config.Builder().setPageSize(pageSize).build())
 
     /**
      * Creates a [RxPagedListBuilder] with required parameters.
@@ -149,8 +148,9 @@
      */
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(
                     config.pageSize,
                     config.prefetchDistance,
@@ -161,11 +161,11 @@
                 initialKey = null,
                 pagingSourceFactory = dataSourceFactory.asPagingSourceFactory(Dispatchers.IO)
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava3.flowable",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava3.flowable",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
     constructor(
         dataSourceFactory: DataSource.Factory<Key, Value>,
@@ -193,25 +193,23 @@
     @Suppress("DEPRECATION")
     @Deprecated(
         message = "PagedList is deprecated and has been replaced by PagingData",
-        replaceWith = ReplaceWith(
-            """Pager(
+        replaceWith =
+            ReplaceWith(
+                """Pager(
                 config = PagingConfig(pageSize),
                 initialKey = null,
                 pagingSourceFactory = dataSourceFactory.asPagingSourceFactory(Dispatchers.IO)
             ).flowable""",
-            "androidx.paging.PagingConfig",
-            "androidx.paging.Pager",
-            "androidx.paging.rxjava3.flowable",
-            "kotlinx.coroutines.Dispatchers"
-        )
+                "androidx.paging.PagingConfig",
+                "androidx.paging.Pager",
+                "androidx.paging.rxjava3.flowable",
+                "kotlinx.coroutines.Dispatchers"
+            )
     )
     constructor(
         dataSourceFactory: DataSource.Factory<Key, Value>,
         pageSize: Int
-    ) : this(
-        dataSourceFactory,
-        PagedList.Config.Builder().setPageSize(pageSize).build()
-    )
+    ) : this(dataSourceFactory, PagedList.Config.Builder().setPageSize(pageSize).build())
 
     /**
      * First loading key passed to the first PagedList/DataSource.
@@ -222,26 +220,24 @@
      * @param key Initial load key passed to the first PagedList/DataSource.
      * @return this
      */
-    fun setInitialLoadKey(key: Key?) = apply {
-        initialLoadKey = key
-    }
+    fun setInitialLoadKey(key: Key?) = apply { initialLoadKey = key }
 
     /**
-     * Sets a [androidx.paging.PagedList.BoundaryCallback] on each PagedList created,
-     * typically used to load additional data from network when paging from local storage.
+     * Sets a [androidx.paging.PagedList.BoundaryCallback] on each PagedList created, typically used
+     * to load additional data from network when paging from local storage.
      *
      * Pass a BoundaryCallback to listen to when the PagedList runs out of data to load. If this
-     * method is not called, or `null` is passed, you will not be notified when each
-     * DataSource runs out of data to provide to its PagedList.
+     * method is not called, or `null` is passed, you will not be notified when each DataSource runs
+     * out of data to provide to its PagedList.
      *
      * If you are paging from a DataSource.Factory backed by local storage, you can set a
-     * BoundaryCallback to know when there is no more information to page from local storage.
-     * This is useful to page from the network when local storage is a cache of network data.
+     * BoundaryCallback to know when there is no more information to page from local storage. This
+     * is useful to page from the network when local storage is a cache of network data.
      *
-     * Note that when using a BoundaryCallback with a `Observable<PagedList>`, method calls
-     * on the callback may be dispatched multiple times - one for each PagedList/DataSource
-     * pair. If loading network data from a BoundaryCallback, you should prevent multiple
-     * dispatches of the same method from triggering multiple simultaneous network loads.
+     * Note that when using a BoundaryCallback with a `Observable<PagedList>`, method calls on the
+     * callback may be dispatched multiple times - one for each PagedList/DataSource pair. If
+     * loading network data from a BoundaryCallback, you should prevent multiple dispatches of the
+     * same method from triggering multiple simultaneous network loads.
      *
      * @param boundaryCallback The boundary callback for listening to PagedList load state.
      * @return this
@@ -260,7 +256,7 @@
      * receiving PagedLists will also receive the internal updates to the PagedList.
      *
      * @param scheduler Scheduler that receives PagedList updates, and where [PagedList.Callback]
-     * calls are dispatched. Generally, this is the UI/main thread.
+     *   calls are dispatched. Generally, this is the UI/main thread.
      * @return this
      */
     fun setNotifyScheduler(scheduler: Scheduler) = apply {
@@ -277,7 +273,7 @@
      * The built [Observable] / [Flowable] will be subscribed on this scheduler.
      *
      * @param scheduler [Scheduler] used to fetch from DataSources, generally a background thread
-     * pool for e.g. I/O or network loading.
+     *   pool for e.g. I/O or network loading.
      * @return this
      */
     fun setFetchScheduler(scheduler: Scheduler) = apply {
@@ -295,23 +291,22 @@
      */
     @Suppress("BuilderSetStyle", "DEPRECATION")
     fun buildObservable(): Observable<PagedList<Value>> {
-        val notifyScheduler = notifyScheduler
-            ?: ScheduledExecutor(ArchTaskExecutor.getMainThreadExecutor())
+        val notifyScheduler =
+            notifyScheduler ?: ScheduledExecutor(ArchTaskExecutor.getMainThreadExecutor())
         val notifyDispatcher = notifyDispatcher ?: notifyScheduler.asCoroutineDispatcher()
 
-        val fetchScheduler = fetchScheduler
-            ?: ScheduledExecutor(ArchTaskExecutor.getIOThreadExecutor())
+        val fetchScheduler =
+            fetchScheduler ?: ScheduledExecutor(ArchTaskExecutor.getIOThreadExecutor())
         val fetchDispatcher = fetchDispatcher ?: fetchScheduler.asCoroutineDispatcher()
 
-        val pagingSourceFactory = pagingSourceFactory
-            ?: dataSourceFactory?.asPagingSourceFactory(fetchDispatcher)
+        val pagingSourceFactory =
+            pagingSourceFactory ?: dataSourceFactory?.asPagingSourceFactory(fetchDispatcher)
 
         check(pagingSourceFactory != null) {
             "RxPagedList cannot be built without a PagingSourceFactory or DataSource.Factory"
         }
 
-        return Observable
-            .create(
+        return Observable.create(
                 PagingObservableOnSubscribe(
                     initialLoadKey,
                     config,
@@ -354,20 +349,19 @@
         private var currentJob: Job? = null
         private lateinit var emitter: ObservableEmitter<PagedList<Value>>
 
-        private val callback = {
-            invalidate(true)
-        }
+        private val callback = { invalidate(true) }
 
         private val refreshRetryCallback = Runnable { invalidate(true) }
 
         init {
-            currentData = InitialPagedList(
-                coroutineScope = GlobalScope,
-                notifyDispatcher = notifyDispatcher,
-                backgroundDispatcher = fetchDispatcher,
-                config = config,
-                initialLastKey = initialLoadKey
-            )
+            currentData =
+                InitialPagedList(
+                    coroutineScope = GlobalScope,
+                    notifyDispatcher = notifyDispatcher,
+                    backgroundDispatcher = fetchDispatcher,
+                    config = config,
+                    initialLastKey = initialLoadKey
+                )
             currentData.setRetryCallback(refreshRetryCallback)
         }
 
@@ -392,52 +386,53 @@
             if (currentJob != null && !force) return
 
             currentJob?.cancel()
-            currentJob = GlobalScope.launch(fetchDispatcher) {
-                currentData.pagingSource.unregisterInvalidatedCallback(callback)
-                val pagingSource = pagingSourceFactory()
-                pagingSource.registerInvalidatedCallback(callback)
-                if (pagingSource is LegacyPagingSource) {
-                    pagingSource.setPageSize(config.pageSize)
-                }
+            currentJob =
+                GlobalScope.launch(fetchDispatcher) {
+                    currentData.pagingSource.unregisterInvalidatedCallback(callback)
+                    val pagingSource = pagingSourceFactory()
+                    pagingSource.registerInvalidatedCallback(callback)
+                    if (pagingSource is LegacyPagingSource) {
+                        pagingSource.setPageSize(config.pageSize)
+                    }
 
-                withContext(notifyDispatcher) {
-                    currentData.setInitialLoadState(LoadType.REFRESH, Loading)
-                }
+                    withContext(notifyDispatcher) {
+                        currentData.setInitialLoadState(LoadType.REFRESH, Loading)
+                    }
 
-                @Suppress("UNCHECKED_CAST")
-                val lastKey = currentData.lastKey as Key?
-                val params = config.toRefreshLoadParams(lastKey)
-                when (val initialResult = pagingSource.load(params)) {
-                    is PagingSource.LoadResult.Invalid -> {
-                        currentData.setInitialLoadState(
-                            LoadType.REFRESH,
-                            LoadState.NotLoading(endOfPaginationReached = false)
-                        )
-                        pagingSource.invalidate()
-                    }
-                    is PagingSource.LoadResult.Error -> {
-                        currentData.setInitialLoadState(
-                            LoadType.REFRESH,
-                            LoadState.Error(initialResult.throwable)
-                        )
-                    }
-                    is PagingSource.LoadResult.Page -> {
-                        val pagedList = PagedList.create(
-                            pagingSource,
-                            initialResult,
-                            GlobalScope,
-                            notifyDispatcher,
-                            fetchDispatcher,
-                            boundaryCallback,
-                            config,
-                            lastKey
-                        )
-                        onItemUpdate(currentData, pagedList)
-                        currentData = pagedList
-                        emitter.onNext(pagedList)
+                    @Suppress("UNCHECKED_CAST") val lastKey = currentData.lastKey as Key?
+                    val params = config.toRefreshLoadParams(lastKey)
+                    when (val initialResult = pagingSource.load(params)) {
+                        is PagingSource.LoadResult.Invalid -> {
+                            currentData.setInitialLoadState(
+                                LoadType.REFRESH,
+                                LoadState.NotLoading(endOfPaginationReached = false)
+                            )
+                            pagingSource.invalidate()
+                        }
+                        is PagingSource.LoadResult.Error -> {
+                            currentData.setInitialLoadState(
+                                LoadType.REFRESH,
+                                LoadState.Error(initialResult.throwable)
+                            )
+                        }
+                        is PagingSource.LoadResult.Page -> {
+                            val pagedList =
+                                PagedList.create(
+                                    pagingSource,
+                                    initialResult,
+                                    GlobalScope,
+                                    notifyDispatcher,
+                                    fetchDispatcher,
+                                    boundaryCallback,
+                                    config,
+                                    lastKey
+                                )
+                            onItemUpdate(currentData, pagedList)
+                            currentData = pagedList
+                            emitter.onNext(pagedList)
+                        }
                     }
                 }
-            }
         }
 
         private fun onItemUpdate(previous: PagedList<Value>, next: PagedList<Value>) {
diff --git a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagingData.kt b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagingData.kt
index d5d9a2e..4591123 100644
--- a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagingData.kt
+++ b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxPagingData.kt
@@ -31,14 +31,14 @@
 import kotlinx.coroutines.rx3.awaitSingleOrNull
 
 /**
- * Returns a [PagingData] containing the result of applying the given [transform] to each
- * element, as it is loaded.
+ * Returns a [PagingData] containing the result of applying the given [transform] to each element,
+ * as it is loaded.
  */
 @JvmName("map")
 @CheckResult
-fun <T : Any, R : Any> PagingData<T>.mapAsync(
-    transform: (T) -> Single<R>
-): PagingData<R> = map { transform(it).await() }
+fun <T : Any, R : Any> PagingData<T>.mapAsync(transform: (T) -> Single<R>): PagingData<R> = map {
+    transform(it).await()
+}
 
 /**
  * Returns a [PagingData] of all elements returned from applying the given [transform] to each
@@ -50,23 +50,22 @@
     transform: (T) -> Single<Iterable<R>>
 ): PagingData<R> = flatMap { transform(it).await() }
 
-/**
- * Returns a [PagingData] containing only elements matching the given [predicate].
- */
+/** Returns a [PagingData] containing only elements matching the given [predicate]. */
 @JvmName("filter")
 @CheckResult
-fun <T : Any> PagingData<T>.filterAsync(
-    predicate: (T) -> Single<Boolean>
-): PagingData<T> = filter { predicate(it).await() }
+fun <T : Any> PagingData<T>.filterAsync(predicate: (T) -> Single<Boolean>): PagingData<T> = filter {
+    predicate(it).await()
+}
 
 /**
- * Returns a [PagingData] containing each original element, with an optional separator generated
- * by [generator], given the elements before and after (or null, in boundary conditions).
+ * Returns a [PagingData] containing each original element, with an optional separator generated by
+ * [generator], given the elements before and after (or null, in boundary conditions).
  *
  * Note that this transform is applied asynchronously, as pages are loaded. Potential separators
  * between pages are only computed once both pages are loaded.
  *
  * @sample androidx.paging.samples.insertSeparatorsRxSample
+ *
  * @sample androidx.paging.samples.insertSeparatorsUiModelRxSample
  */
 @JvmName("insertSeparators")
diff --git a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxRemoteMediator.kt b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxRemoteMediator.kt
index e359c6c..c5504e6 100644
--- a/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxRemoteMediator.kt
+++ b/paging/paging-rxjava3/src/main/java/androidx/paging/rxjava3/RxRemoteMediator.kt
@@ -19,9 +19,6 @@
 import androidx.paging.ExperimentalPagingApi
 import androidx.paging.LoadState
 import androidx.paging.LoadType
-import androidx.paging.LoadType.APPEND
-import androidx.paging.LoadType.PREPEND
-import androidx.paging.LoadType.REFRESH
 import androidx.paging.PagingData
 import androidx.paging.PagingSource
 import androidx.paging.PagingState
@@ -31,21 +28,18 @@
 import io.reactivex.rxjava3.core.Single
 import kotlinx.coroutines.rx3.await
 
-/**
- * RxJava3 compatibility wrapper around [RemoteMediator]'s suspending APIs.
- */
+/** RxJava3 compatibility wrapper around [RemoteMediator]'s suspending APIs. */
 @ExperimentalPagingApi
 abstract class RxRemoteMediator<Key : Any, Value : Any> : RemoteMediator<Key, Value>() {
     /**
      * Implement this method to load additional remote data, which will then be stored for the
      * [PagingSource] to access. These loads take one of two forms:
-     *  * type == [LoadType.PREPEND] / [LoadType.APPEND]
-     *  The [PagingSource] has loaded a 'boundary' page, with a `null` adjacent key. This means
-     *  this method should load additional remote data to append / prepend as appropriate, and store
-     *  it locally.
-     *  * type == [LoadType.REFRESH]
-     *  The app (or [initialize]) has requested a remote refresh of data. This means the method
-     *  should generally load remote data, and **replace** all local data.
+     *     * type == [LoadType.PREPEND] / [LoadType.APPEND] The [PagingSource] has loaded a
+     *       'boundary' page, with a `null` adjacent key. This means this method should load
+     *       additional remote data to append / prepend as appropriate, and store it locally.
+     * * type == [LoadType.REFRESH] The app (or [initialize]) has requested a remote refresh of
+     *   data. This means the method should generally load remote data, and **replace** all local
+     *   data.
      *
      * The runtime of this method defines loading state behavior in boundary conditions, which
      * affects e.g., [LoadState] callbacks registered to [androidx.paging.PagingDataAdapter].
@@ -55,17 +49,16 @@
      * [LoadType.APPEND] or both. [LoadType.REFRESH] occurs as a result of [initialize].
      *
      * @param loadType [LoadType] of the boundary condition which triggered this callback.
-     *  * [LoadType.PREPEND] indicates a boundary condition at the front of the list.
-     *  * [LoadType.APPEND] indicates a boundary condition at the end of the list.
-     *  * [LoadType.REFRESH] indicates this callback was triggered as the result of a requested
-     *  refresh - either driven by the UI, or by [initialize].
-     * @param state A copy of the state including the list of pages currently held in
-     * memory of the currently presented [PagingData] at the time of starting the load. E.g. for
-     * load(loadType = END), you can use the page or item at the end as input for what to load from
-     * the network.
+     *     * [LoadType.PREPEND] indicates a boundary condition at the front of the list.
+     *     * [LoadType.APPEND] indicates a boundary condition at the end of the list.
+     *     * [LoadType.REFRESH] indicates this callback was triggered as the result of a requested
+     *       refresh - either driven by the UI, or by [initialize].
      *
+     * @param state A copy of the state including the list of pages currently held in memory of the
+     *   currently presented [PagingData] at the time of starting the load. E.g. for load(loadType =
+     *   END), you can use the page or item at the end as input for what to load from the network.
      * @return [MediatorResult] signifying what [LoadState] to be passed to the UI, and whether
-     * there's more data available.
+     *   there's more data available.
      */
     abstract fun loadSingle(
         loadType: LoadType,
@@ -78,19 +71,21 @@
      * This function runs to completion before any loading is performed.
      *
      * @return [InitializeAction] indicating the action to take after initialization:
-     *  * [LAUNCH_INITIAL_REFRESH] to immediately dispatch a [load] asynchronously with load type
-     *  [LoadType.REFRESH], to update paginated content when the stream is initialized.
-     *  Note: This also prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until
-     *  [REFRESH] succeeds.
-     *  * [SKIP_INITIAL_REFRESH][InitializeAction.SKIP_INITIAL_REFRESH] to wait for a
-     *  refresh request from the UI before dispatching a [load] with load type [LoadType.REFRESH].
+     *     * [LAUNCH_INITIAL_REFRESH] to immediately dispatch a [load] asynchronously with load type
+     *       [LoadType.REFRESH], to update paginated content when the stream is initialized. Note:
+     *       This also prevents [RemoteMediator] from triggering [PREPEND] or [APPEND] until
+     *       [REFRESH] succeeds.
+     *     * [SKIP_INITIAL_REFRESH][InitializeAction.SKIP_INITIAL_REFRESH] to wait for a refresh
+     *       request from the UI before dispatching a [load] with load type [LoadType.REFRESH].
      */
     open fun initializeSingle(): Single<InitializeAction> = Single.just(LAUNCH_INITIAL_REFRESH)
 
-    final override suspend fun load(loadType: LoadType, state: PagingState<Key, Value>):
-        MediatorResult {
-            return loadSingle(loadType, state).await()
-        }
+    final override suspend fun load(
+        loadType: LoadType,
+        state: PagingState<Key, Value>
+    ): MediatorResult {
+        return loadSingle(loadType, state).await()
+    }
 
     final override suspend fun initialize(): InitializeAction {
         return initializeSingle().await()
diff --git a/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagedListBuilderTest.kt b/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagedListBuilderTest.kt
index 3bd051e..abf3604 100644
--- a/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagedListBuilderTest.kt
+++ b/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagedListBuilderTest.kt
@@ -42,17 +42,13 @@
 
 @RunWith(JUnit4::class)
 class RxPagedListBuilderTest {
-    private data class LoadStateEvent(
-        val type: LoadType,
-        val state: LoadState
-    )
+    private data class LoadStateEvent(val type: LoadType, val state: LoadState)
 
-    /**
-     * Creates a data source that will sequentially supply the passed lists
-     */
+    /** Creates a data source that will sequentially supply the passed lists */
     private fun testDataSourceSequence(data: List<List<String>>): DataSource.Factory<Int, String> {
         return object : DataSource.Factory<Int, String>() {
             var localData = data
+
             override fun create(): DataSource<Int, String> {
                 val currentList = localData.first()
                 localData = localData.drop(1)
@@ -88,10 +84,11 @@
                     if (invalidInitialLoad) {
                         invalidInitialLoad = false
                         LoadResult.Invalid()
-                    } else when (params) {
-                        is LoadParams.Refresh -> loadInitial(params)
-                        else -> loadRange()
-                    }
+                    } else
+                        when (params) {
+                            is LoadParams.Refresh -> loadInitial(params)
+                            else -> loadRange()
+                        }
                 }
             }
 
@@ -127,18 +124,14 @@
 
     @Test
     fun basic() {
-        val factory = testDataSourceSequence(
-            listOf(
-                listOf("a", "b"),
-                listOf("c", "d")
-            )
-        )
+        val factory = testDataSourceSequence(listOf(listOf("a", "b"), listOf("c", "d")))
         val scheduler = TestScheduler()
 
-        val observable = RxPagedListBuilder(factory, 10)
-            .setFetchScheduler(scheduler)
-            .setNotifyScheduler(scheduler)
-            .buildObservable()
+        val observable =
+            RxPagedListBuilder(factory, 10)
+                .setFetchScheduler(scheduler)
+                .setNotifyScheduler(scheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
 
@@ -168,10 +161,11 @@
         val notifyScheduler = TestScheduler()
         val fetchScheduler = TestScheduler()
 
-        val observable: Observable<PagedList<String>> = RxPagedListBuilder(factory, 10)
-            .setFetchScheduler(fetchScheduler)
-            .setNotifyScheduler(notifyScheduler)
-            .buildObservable()
+        val observable: Observable<PagedList<String>> =
+            RxPagedListBuilder(factory, 10)
+                .setFetchScheduler(fetchScheduler)
+                .setNotifyScheduler(notifyScheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
         observable.subscribe(observer)
@@ -199,10 +193,11 @@
         val notifyScheduler = TestScheduler()
         val fetchScheduler = TestScheduler()
 
-        val observable = RxPagedListBuilder(factory::create, 2)
-            .setFetchScheduler(fetchScheduler)
-            .setNotifyScheduler(notifyScheduler)
-            .buildObservable()
+        val observable =
+            RxPagedListBuilder(factory::create, 2)
+                .setFetchScheduler(fetchScheduler)
+                .setNotifyScheduler(notifyScheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
         observable.subscribe(observer)
@@ -225,22 +220,14 @@
             }
         }
         initPagedList.addWeakLoadStateListener(loadStateChangedCallback)
-        assertEquals(
-            listOf(
-                LoadStateEvent(REFRESH, Loading)
-            ),
-            loadStates
-        )
+        assertEquals(listOf(LoadStateEvent(REFRESH, Loading)), loadStates)
 
         fetchScheduler.triggerActions()
         notifyScheduler.triggerActions()
         observer.assertValueCount(1)
 
         assertEquals(
-            listOf(
-                LoadStateEvent(REFRESH, Loading),
-                LoadStateEvent(REFRESH, Error(EXCEPTION))
-            ),
+            listOf(LoadStateEvent(REFRESH, Loading), LoadStateEvent(REFRESH, Error(EXCEPTION))),
             loadStates
         )
 
@@ -272,10 +259,7 @@
                 LoadStateEvent(REFRESH, Loading),
                 LoadStateEvent(REFRESH, Error(EXCEPTION)),
                 LoadStateEvent(REFRESH, Loading),
-                LoadStateEvent(
-                    REFRESH,
-                    NotLoading(endOfPaginationReached = false)
-                )
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false))
             ),
             loadStates
         )
@@ -296,10 +280,11 @@
         }
         // this is essentially a direct scheduler so jobs are run immediately
         val scheduler = Schedulers.from(DirectDispatcher.asExecutor())
-        val observable = RxPagedListBuilder(factory, 2)
-            .setFetchScheduler(scheduler)
-            .setNotifyScheduler(scheduler)
-            .buildObservable()
+        val observable =
+            RxPagedListBuilder(factory, 2)
+                .setFetchScheduler(scheduler)
+                .setNotifyScheduler(scheduler)
+                .buildObservable()
 
         val observer = TestObserver<PagedList<String>>()
         // subscribe triggers the PagingObservableOnSubscribe's invalidate() to create first
@@ -323,15 +308,17 @@
 
         initPagedList.addWeakLoadStateListener(loadStateChangedCallback)
 
-        assertThat(loadStates).containsExactly(
-            // before first load() is called, REFRESH is set to loading, represents load
-            // attempt on first pagingSource
-            LoadStateEvent(REFRESH, Loading)
-        )
+        assertThat(loadStates)
+            .containsExactly(
+                // before first load() is called, REFRESH is set to loading, represents load
+                // attempt on first pagingSource
+                LoadStateEvent(REFRESH, Loading)
+            )
 
         // execute first load, represents load attempt on first paging source
         //
-        // using removeFirst().run() instead of executeAll(), because executeAll() + immediate schedulers
+        // using removeFirst().run() instead of executeAll(), because executeAll() + immediate
+        // schedulers
         // result in first load + subsequent loads executing immediately and we won't be able to
         // assert the pagedLists/loads incrementally
         loadDispatcher.queue.removeFirst().run()
@@ -342,18 +329,16 @@
         assertTrue(pagingSources[0].invalid)
         assertThat(pagingSources.size).isEqualTo(2)
 
-        assertThat(loadStates).containsExactly(
-            // the first load attempt
-            LoadStateEvent(REFRESH, Loading),
-            // LoadResult.Invalid resets RERFRESH state
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ),
-            // before second load() is called, REFRESH is set to loading, represents load
-            // attempt on second pagingSource
-            LoadStateEvent(REFRESH, Loading),
-        )
+        assertThat(loadStates)
+            .containsExactly(
+                // the first load attempt
+                LoadStateEvent(REFRESH, Loading),
+                // LoadResult.Invalid resets RERFRESH state
+                LoadStateEvent(REFRESH, NotLoading(endOfPaginationReached = false)),
+                // before second load() is called, REFRESH is set to loading, represents load
+                // attempt on second pagingSource
+                LoadStateEvent(REFRESH, Loading),
+            )
 
         // execute the load attempt on second pagingSource which succeeds
         loadDispatcher.queue.removeFirst().run()
@@ -366,18 +351,19 @@
         assertThat(secondPagedList).isInstanceOf(ContiguousPagedList::class.java)
 
         secondPagedList.addWeakLoadStateListener(loadStateChangedCallback)
-        assertThat(loadStates).containsExactly(
-            LoadStateEvent(REFRESH, Loading), // first load
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ), // first load reset
-            LoadStateEvent(REFRESH, Loading), // second load
-            LoadStateEvent(
-                REFRESH,
-                NotLoading(endOfPaginationReached = false)
-            ), // second load succeeds
-        )
+        assertThat(loadStates)
+            .containsExactly(
+                LoadStateEvent(REFRESH, Loading), // first load
+                LoadStateEvent(
+                    REFRESH,
+                    NotLoading(endOfPaginationReached = false)
+                ), // first load reset
+                LoadStateEvent(REFRESH, Loading), // second load
+                LoadStateEvent(
+                    REFRESH,
+                    NotLoading(endOfPaginationReached = false)
+                ), // second load succeeds
+            )
     }
 
     @Test
@@ -389,18 +375,21 @@
         }
         val notifyScheduler = TestScheduler()
         val fetchScheduler = TestScheduler()
-        val rxPagedList = RxPagedListBuilder(
-            pagingSourceFactory = pagingSourceFactory,
-            pageSize = 10,
-        ).apply {
-            setNotifyScheduler(notifyScheduler)
-            setFetchScheduler(fetchScheduler)
-        }.buildObservable()
+        val rxPagedList =
+            RxPagedListBuilder(
+                    pagingSourceFactory = pagingSourceFactory,
+                    pageSize = 10,
+                )
+                .apply {
+                    setNotifyScheduler(notifyScheduler)
+                    setFetchScheduler(fetchScheduler)
+                }
+                .buildObservable()
 
         fetchScheduler.triggerActions()
         assertEquals(0, pagingSourcesCreated)
 
-        rxPagedList.subscribe { }
+        rxPagedList.subscribe {}
 
         assertEquals(0, pagingSourcesCreated)
 
@@ -410,13 +399,16 @@
 
     @Test
     fun initialValueAllowsGetDataSource() {
-        val rxPagedList = RxPagedListBuilder(
-            pagingSourceFactory = { TestPagingSource(loadDelay = 0) },
-            pageSize = 10,
-        ).apply {
-            setNotifyScheduler(Schedulers.from { it.run() })
-            setFetchScheduler(Schedulers.from { it.run() })
-        }.buildObservable()
+        val rxPagedList =
+            RxPagedListBuilder(
+                    pagingSourceFactory = { TestPagingSource(loadDelay = 0) },
+                    pageSize = 10,
+                )
+                .apply {
+                    setNotifyScheduler(Schedulers.from { it.run() })
+                    setFetchScheduler(Schedulers.from { it.run() })
+                }
+                .buildObservable()
 
         // Calling .dataSource should never throw from the initial paged list.
         rxPagedList.firstOrError().blockingGet().dataSource
@@ -428,21 +420,22 @@
         var pagingSourcesCreated = 0
         val pagingSourceFactory = {
             when (pagingSourcesCreated++) {
-                0 -> TestPagingSource().apply {
-                    invalidate()
-                }
+                0 -> TestPagingSource().apply { invalidate() }
                 else -> TestPagingSource()
             }
         }
 
         val testScheduler = TestScheduler()
-        val rxPagedList = RxPagedListBuilder(
-            pageSize = 10,
-            pagingSourceFactory = pagingSourceFactory,
-        ).apply {
-            setNotifyScheduler(testScheduler)
-            setFetchScheduler(testScheduler)
-        }.buildObservable()
+        val rxPagedList =
+            RxPagedListBuilder(
+                    pageSize = 10,
+                    pagingSourceFactory = pagingSourceFactory,
+                )
+                .apply {
+                    setNotifyScheduler(testScheduler)
+                    setFetchScheduler(testScheduler)
+                }
+                .buildObservable()
 
         rxPagedList.subscribe()
         testScheduler.triggerActions()
diff --git a/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagingSourceTest.kt b/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagingSourceTest.kt
index 77be184..529e9ea 100644
--- a/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagingSourceTest.kt
+++ b/paging/paging-rxjava3/src/test/java/androidx/paging/RxPagingSourceTest.kt
@@ -37,23 +37,23 @@
         )
     }
 
-    private val pagingSource = object : PagingSource<Int, Int>() {
-        override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
-            return loadInternal(params)
-        }
-
-        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-    }
-
-    private val rxPagingSource = object : RxPagingSource<Int, Int>() {
-        override fun loadSingle(params: LoadParams<Int>): Single<LoadResult<Int, Int>> {
-            return Single.create { emitter ->
-                emitter.onSuccess(loadInternal(params))
+    private val pagingSource =
+        object : PagingSource<Int, Int>() {
+            override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
+                return loadInternal(params)
             }
+
+            override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
         }
 
-        override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
-    }
+    private val rxPagingSource =
+        object : RxPagingSource<Int, Int>() {
+            override fun loadSingle(params: LoadParams<Int>): Single<LoadResult<Int, Int>> {
+                return Single.create { emitter -> emitter.onSuccess(loadInternal(params)) }
+            }
+
+            override fun getRefreshKey(state: PagingState<Int, Int>): Int? = null
+        }
 
     @Test
     fun basic() = runBlocking {
diff --git a/paging/paging-rxjava3/src/test/java/androidx/paging/RxRemoteMediatorTest.kt b/paging/paging-rxjava3/src/test/java/androidx/paging/RxRemoteMediatorTest.kt
index 1861c8f..a385e03 100644
--- a/paging/paging-rxjava3/src/test/java/androidx/paging/RxRemoteMediatorTest.kt
+++ b/paging/paging-rxjava3/src/test/java/androidx/paging/RxRemoteMediatorTest.kt
@@ -33,32 +33,34 @@
 class RxRemoteMediatorTest {
     @Test
     fun initializeSingle() = runTest {
-        val remoteMediator = object : RxRemoteMediator<Int, Int>() {
-            override fun loadSingle(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): Single<MediatorResult> {
-                fail("Unexpected call")
-            }
+        val remoteMediator =
+            object : RxRemoteMediator<Int, Int>() {
+                override fun loadSingle(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): Single<MediatorResult> {
+                    fail("Unexpected call")
+                }
 
-            override fun initializeSingle(): Single<InitializeAction> {
-                return Single.just(SKIP_INITIAL_REFRESH)
+                override fun initializeSingle(): Single<InitializeAction> {
+                    return Single.just(SKIP_INITIAL_REFRESH)
+                }
             }
-        }
 
         assertEquals(SKIP_INITIAL_REFRESH, remoteMediator.initialize())
     }
 
     @Test
     fun initializeSingleDefault() = runTest {
-        val remoteMediator = object : RxRemoteMediator<Int, Int>() {
-            override fun loadSingle(
-                loadType: LoadType,
-                state: PagingState<Int, Int>
-            ): Single<MediatorResult> {
-                fail("Unexpected call")
+        val remoteMediator =
+            object : RxRemoteMediator<Int, Int>() {
+                override fun loadSingle(
+                    loadType: LoadType,
+                    state: PagingState<Int, Int>
+                ): Single<MediatorResult> {
+                    fail("Unexpected call")
+                }
             }
-        }
 
         assertEquals(LAUNCH_INITIAL_REFRESH, remoteMediator.initialize())
     }
diff --git a/paging/paging-rxjava3/src/test/java/androidx/paging/rxjava3/RxPagingDataTest.kt b/paging/paging-rxjava3/src/test/java/androidx/paging/rxjava3/RxPagingDataTest.kt
index 53cb3ee..20734d4 100644
--- a/paging/paging-rxjava3/src/test/java/androidx/paging/rxjava3/RxPagingDataTest.kt
+++ b/paging/paging-rxjava3/src/test/java/androidx/paging/rxjava3/RxPagingDataTest.kt
@@ -39,32 +39,38 @@
     private val presenter = TestPagingDataPresenter<String>(testDispatcher)
 
     @Test
-    fun map() = testScope.runTest {
-        val transformed = original.mapAsync { Single.just(it + it) }
-        presenter.collectFrom(transformed)
-        assertEquals(listOf("aa", "bb", "cc"), presenter.currentList)
-    }
-
-    @Test
-    fun flatMap() = testScope.runTest {
-        val transformed = original.flatMapAsync { Single.just(listOf(it, it) as Iterable<String>) }
-        presenter.collectFrom(transformed)
-        assertEquals(listOf("a", "a", "b", "b", "c", "c"), presenter.currentList)
-    }
-
-    @Test
-    fun filter() = testScope.runTest {
-        val filtered = original.filterAsync { Single.just(it != "b") }
-        presenter.collectFrom(filtered)
-        assertEquals(listOf("a", "c"), presenter.currentList)
-    }
-
-    @Test
-    fun insertSeparators() = testScope.runTest {
-        val separated = original.insertSeparatorsAsync { left, right ->
-            if (left == null || right == null) Maybe.empty() else Maybe.just("|")
+    fun map() =
+        testScope.runTest {
+            val transformed = original.mapAsync { Single.just(it + it) }
+            presenter.collectFrom(transformed)
+            assertEquals(listOf("aa", "bb", "cc"), presenter.currentList)
         }
-        presenter.collectFrom(separated)
-        assertEquals(listOf("a", "|", "b", "|", "c"), presenter.currentList)
-    }
+
+    @Test
+    fun flatMap() =
+        testScope.runTest {
+            val transformed =
+                original.flatMapAsync { Single.just(listOf(it, it) as Iterable<String>) }
+            presenter.collectFrom(transformed)
+            assertEquals(listOf("a", "a", "b", "b", "c", "c"), presenter.currentList)
+        }
+
+    @Test
+    fun filter() =
+        testScope.runTest {
+            val filtered = original.filterAsync { Single.just(it != "b") }
+            presenter.collectFrom(filtered)
+            assertEquals(listOf("a", "c"), presenter.currentList)
+        }
+
+    @Test
+    fun insertSeparators() =
+        testScope.runTest {
+            val separated =
+                original.insertSeparatorsAsync { left, right ->
+                    if (left == null || right == null) Maybe.empty() else Maybe.just("|")
+                }
+            presenter.collectFrom(separated)
+            assertEquals(listOf("a", "|", "b", "|", "c"), presenter.currentList)
+        }
 }
diff --git a/paging/paging-testing/src/commonJvmMain/kotlin/androidx/paging/testing/internal/Atomics.jvm.kt b/paging/paging-testing/src/commonJvmMain/kotlin/androidx/paging/testing/internal/Atomics.jvm.kt
index b9532be..468122d 100644
--- a/paging/paging-testing/src/commonJvmMain/kotlin/androidx/paging/testing/internal/Atomics.jvm.kt
+++ b/paging/paging-testing/src/commonJvmMain/kotlin/androidx/paging/testing/internal/Atomics.jvm.kt
@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 @file:Suppress("ACTUAL_WITHOUT_EXPECT") // https://youtrack.jetbrains.com/issue/KT-37316
+
 package androidx.paging.testing.internal
 
 internal actual typealias AtomicInt = java.util.concurrent.atomic.AtomicInteger
diff --git a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/LoadErrorHandler.kt b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/LoadErrorHandler.kt
index 0f7fd64..25e4cf3 100644
--- a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/LoadErrorHandler.kt
+++ b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/LoadErrorHandler.kt
@@ -24,48 +24,41 @@
 import androidx.paging.PagingSource.LoadResult
 
 /**
- * An interface to implement the error recovery strategy when [PagingSource]
- * returns a [LoadResult.Error].
+ * An interface to implement the error recovery strategy when [PagingSource] returns a
+ * [LoadResult.Error].
  */
 @VisibleForTesting
 public fun interface LoadErrorHandler {
     /**
-     * The lambda that should return an [ErrorRecovery] given the [CombinedLoadStates]
-     * indicating which [LoadState] contains the [LoadState.Error].
+     * The lambda that should return an [ErrorRecovery] given the [CombinedLoadStates] indicating
+     * which [LoadState] contains the [LoadState.Error].
      *
-     * Sample use case:
-     * val onError = LoadErrorHandler { combinedLoadStates ->
-     *     if (combinedLoadStates.refresh is LoadResult.Error) {
-     *         ErrorRecovery.RETRY
-     *     } else {
-     *         ErrorRecovery.THROW
-     *     }
-     * }
+     * Sample use case: val onError = LoadErrorHandler { combinedLoadStates -> if
+     * (combinedLoadStates.refresh is LoadResult.Error) { ErrorRecovery.RETRY } else {
+     * ErrorRecovery.THROW } }
      */
     public fun onError(combinedLoadStates: CombinedLoadStates): ErrorRecovery
 }
 
 /**
- * The method of recovery when [PagingSource] returns [LoadResult.Error]. The error
- * is indicated when [PagingDataPresenter.loadStateFlow] emits a [CombinedLoadStates] where one or
- * more of the [LoadState] is [LoadState.Error].
+ * The method of recovery when [PagingSource] returns [LoadResult.Error]. The error is indicated
+ * when [PagingDataPresenter.loadStateFlow] emits a [CombinedLoadStates] where one or more of the
+ * [LoadState] is [LoadState.Error].
  */
 @VisibleForTesting
 public enum class ErrorRecovery {
     /**
-     * Rethrow the original [Throwable][LoadState.Error.error] that was caught when loading from
-     * the data source.
+     * Rethrow the original [Throwable][LoadState.Error.error] that was caught when loading from the
+     * data source.
      */
     THROW,
 
     /**
-     * Retry the failed load. This does not guarantee a successful load as the data source
-     * may still return an error.
+     * Retry the failed load. This does not guarantee a successful load as the data source may still
+     * return an error.
      */
     RETRY,
 
-    /**
-     * Returns a snapshot with any data that has been loaded up till the point of error.
-     */
+    /** Returns a snapshot with any data that has been loaded up till the point of error. */
     RETURN_CURRENT_SNAPSHOT,
 }
diff --git a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/PagerFlowSnapshot.kt b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/PagerFlowSnapshot.kt
index b1af845..ba14c87 100644
--- a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/PagerFlowSnapshot.kt
+++ b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/PagerFlowSnapshot.kt
@@ -41,70 +41,69 @@
 import kotlinx.coroutines.launch
 
 /**
- * Runs the [SnapshotLoader] load operations that are passed in and returns a List of data
- * that would be presented to the UI after all load operations are complete.
+ * Runs the [SnapshotLoader] load operations that are passed in and returns a List of data that
+ * would be presented to the UI after all load operations are complete.
  *
  * @param onError The error recovery strategy when PagingSource returns LoadResult.Error. A lambda
- * that returns an [ErrorRecovery] value. The default strategy is [ErrorRecovery.THROW].
- *
+ *   that returns an [ErrorRecovery] value. The default strategy is [ErrorRecovery.THROW].
  * @param loadOperations The block containing [SnapshotLoader] load operations.
  */
 @VisibleForTesting
 public suspend fun <Value : Any> Flow<PagingData<Value>>.asSnapshot(
     onError: LoadErrorHandler = LoadErrorHandler { THROW },
-    loadOperations: suspend SnapshotLoader<Value>.() -> @JvmSuppressWildcards Unit = { }
+    loadOperations: suspend SnapshotLoader<Value>.() -> @JvmSuppressWildcards Unit = {}
 ): @JvmSuppressWildcards List<Value> = coroutineScope {
-
     lateinit var loader: SnapshotLoader<Value>
 
     // PagingDataPresenter will collect from coroutineContext instead of main dispatcher
-    val presenter = object : CompletablePagingDataPresenter<Value>(coroutineContext) {
-        override suspend fun presentPagingDataEvent(event: PagingDataEvent<Value>) {
-            if (event is PagingDataEvent.Refresh) {
-                /**
-                 * On new generation, SnapshotLoader needs the latest [ItemSnapshotList]
-                 * state so that it can initialize lastAccessedIndex to prepend/append from onwards.
-                 *
-                 * This initial lastAccessedIndex is necessary because initial load
-                 * key may not be 0, for example when [Pager].initialKey != 0. We don't know which
-                 * items are immediately displayed so we can only best-effort estimate that the middle
-                 * item has been presented.
-                 *
-                 * Therefore we calculate the actual index based on
-                 * [ItemSnapshotList.placeholdersBefore] + [1/2 initial load size].
-                 *
-                 * Any subsequent SnapshotLoader loads are based on the index tracked by
-                 * [SnapshotLoader] internally.
-                 */
-                val lastLoadedIndex = event.newList.placeholdersBefore +
-                    (event.newList.dataCount / 2)
-                loader.onDataSetChanged(
-                    loader.generations.value,
-                    LoaderCallback(LoadType.REFRESH, lastLoadedIndex, event.newList.size),
-                    this@coroutineScope
-                )
-            }
-            /**
-             * We only care about callbacks for prepend inserts so that we can adjust
-             * the lastAccessedIndex. For more detail, refer to docs on method
-             * #computeIndexOffset in SnapshotLoader.
-             */
-            if (event is PagingDataEvent.Prepend) {
-                val insertSize = event.inserted.size
-                val placeholdersChangedCount = minOf(event.oldPlaceholdersBefore, insertSize)
-                val itemsInsertedCount = insertSize - placeholdersChangedCount
-                val itemsInsertedPos = 0
-
-                if (itemsInsertedCount > 0) {
+    val presenter =
+        object : CompletablePagingDataPresenter<Value>(coroutineContext) {
+            override suspend fun presentPagingDataEvent(event: PagingDataEvent<Value>) {
+                if (event is PagingDataEvent.Refresh) {
+                    /**
+                     * On new generation, SnapshotLoader needs the latest [ItemSnapshotList] state
+                     * so that it can initialize lastAccessedIndex to prepend/append from onwards.
+                     *
+                     * This initial lastAccessedIndex is necessary because initial load key may not
+                     * be 0, for example when [Pager].initialKey != 0. We don't know which items are
+                     * immediately displayed so we can only best-effort estimate that the middle
+                     * item has been presented.
+                     *
+                     * Therefore we calculate the actual index based on
+                     * [ItemSnapshotList.placeholdersBefore] + [1/2 initial load size].
+                     *
+                     * Any subsequent SnapshotLoader loads are based on the index tracked by
+                     * [SnapshotLoader] internally.
+                     */
+                    val lastLoadedIndex =
+                        event.newList.placeholdersBefore + (event.newList.dataCount / 2)
                     loader.onDataSetChanged(
                         loader.generations.value,
-                        LoaderCallback(LoadType.PREPEND, itemsInsertedPos, itemsInsertedCount),
-                        null
+                        LoaderCallback(LoadType.REFRESH, lastLoadedIndex, event.newList.size),
+                        this@coroutineScope
                     )
                 }
+                /**
+                 * We only care about callbacks for prepend inserts so that we can adjust the
+                 * lastAccessedIndex. For more detail, refer to docs on method #computeIndexOffset
+                 * in SnapshotLoader.
+                 */
+                if (event is PagingDataEvent.Prepend) {
+                    val insertSize = event.inserted.size
+                    val placeholdersChangedCount = minOf(event.oldPlaceholdersBefore, insertSize)
+                    val itemsInsertedCount = insertSize - placeholdersChangedCount
+                    val itemsInsertedPos = 0
+
+                    if (itemsInsertedCount > 0) {
+                        loader.onDataSetChanged(
+                            loader.generations.value,
+                            LoaderCallback(LoadType.PREPEND, itemsInsertedPos, itemsInsertedCount),
+                            null
+                        )
+                    }
+                }
             }
         }
-    }
 
     loader = SnapshotLoader(presenter, onError)
 
@@ -112,7 +111,7 @@
      * Launches collection on this [Pager.flow].
      *
      * The collection job is cancelled automatically after [loadOperations] completes.
-      */
+     */
     val collectPagingData = launch {
         this@asSnapshot.collectLatest {
             incrementGeneration(loader)
@@ -125,8 +124,8 @@
      * Runs the input [loadOperations].
      *
      * Awaits for initial refresh to complete before invoking [loadOperations]. Automatically
-     * cancels the collection on this [Pager.flow] after [loadOperations] completes and Paging
-     * is idle.
+     * cancels the collection on this [Pager.flow] after [loadOperations] completes and Paging is
+     * idle.
      */
     try {
         presenter.awaitNotLoading(onError)
@@ -152,34 +151,34 @@
      */
     val hasCompleted = MutableStateFlow(false)
 
-    val completableLoadStateFlow = loadStateFlow.combine(
-        hasCompleted
-    ) { loadStates, hasCompleted ->
-        if (hasCompleted) {
-            CombinedLoadStates(
-                refresh = LoadState.NotLoading(true),
-                prepend = LoadState.NotLoading(true),
-                append = LoadState.NotLoading(true),
-                source = LoadStates(
+    val completableLoadStateFlow =
+        loadStateFlow.combine(hasCompleted) { loadStates, hasCompleted ->
+            if (hasCompleted) {
+                CombinedLoadStates(
                     refresh = LoadState.NotLoading(true),
                     prepend = LoadState.NotLoading(true),
-                    append = LoadState.NotLoading(true)
+                    append = LoadState.NotLoading(true),
+                    source =
+                        LoadStates(
+                            refresh = LoadState.NotLoading(true),
+                            prepend = LoadState.NotLoading(true),
+                            append = LoadState.NotLoading(true)
+                        )
                 )
-            )
-        } else {
-            loadStates
+            } else {
+                loadStates
+            }
         }
-    }
 }
 
 /**
  * Awaits until both source and mediator states are NotLoading. We do not care about the state of
- * endOfPaginationReached. Source and mediator states need to be checked individually because
- * the aggregated LoadStates can reflect `NotLoading` when source states are `Loading`.
+ * endOfPaginationReached. Source and mediator states need to be checked individually because the
+ * aggregated LoadStates can reflect `NotLoading` when source states are `Loading`.
  *
  * We debounce(1ms) to prevent returning too early if this collected a `NotLoading` from the
- * previous load. Without a way to determine whether the `NotLoading` it collected was from
- * a previous operation or current operation, we debounce 1ms to allow collection on a potential
+ * previous load. Without a way to determine whether the `NotLoading` it collected was from a
+ * previous operation or current operation, we debounce 1ms to allow collection on a potential
  * incoming `Loading` state.
  */
 @OptIn(kotlinx.coroutines.FlowPreview::class)
@@ -204,6 +203,7 @@
         RETURN_CURRENT_SNAPSHOT -> throw ReturnSnapshotStub()
     }
 }
+
 private class ReturnSnapshotStub : Exception()
 
 private fun CombinedLoadStates.getErrorState(): LoadState.Error {
@@ -219,8 +219,6 @@
 private fun <Value : Any> incrementGeneration(loader: SnapshotLoader<Value>) {
     val currGen = loader.generations.value
     if (currGen.id == loader.generations.value.id) {
-        loader.generations.value = Generation(
-            id = currGen.id + 1
-        )
+        loader.generations.value = Generation(id = currGen.id + 1)
     }
 }
diff --git a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/SnapshotLoader.kt b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/SnapshotLoader.kt
index ecb52eb..3376d7c 100644
--- a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/SnapshotLoader.kt
+++ b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/SnapshotLoader.kt
@@ -41,7 +41,8 @@
  * [PagingDataPresenter] operations.
  */
 @VisibleForTesting
-public class SnapshotLoader<Value : Any> internal constructor(
+public class SnapshotLoader<Value : Any>
+internal constructor(
     private val presenter: CompletablePagingDataPresenter<Value>,
     private val errorHandler: LoadErrorHandler,
 ) {
@@ -50,8 +51,8 @@
     /**
      * Refresh the data that is presented on the UI.
      *
-     * [refresh] triggers a new generation of [PagingData] / [PagingSource]
-     * to represent an updated snapshot of the backing dataset.
+     * [refresh] triggers a new generation of [PagingData] / [PagingSource] to represent an updated
+     * snapshot of the backing dataset.
      *
      * This fake paging operation mimics UI-driven refresh signals such as swipe-to-refresh.
      */
@@ -62,21 +63,20 @@
     }
 
     /**
-     * Imitates scrolling down paged items, [appending][APPEND] data until the given
-     * predicate returns false.
+     * Imitates scrolling down paged items, [appending][APPEND] data until the given predicate
+     * returns false.
      *
-     * Note: This API loads an item before passing it into the predicate. This means the
-     * loaded pages may include the page which contains the item that does not match the
-     * predicate. For example, if pageSize = 2, the predicate
-     * {item: Int -> item < 3 } will return items [[1, 2],[3, 4]] where [3, 4] is the page
-     * containing the boundary item[3] not matching the predicate.
+     * Note: This API loads an item before passing it into the predicate. This means the loaded
+     * pages may include the page which contains the item that does not match the predicate. For
+     * example, if pageSize = 2, the predicate {item: Int -> item < 3 } will return items [[1,
+     * 2],[3, 4]] where [3, 4] is the page containing the boundary item[3] not matching the
+     * predicate.
      *
      * The loaded pages are also dependent on [PagingConfig] settings such as
      * [PagingConfig.prefetchDistance]:
-     * - if `prefetchDistance` > 0, the resulting appends will include prefetched items.
-     * For example, if pageSize = 2 and prefetchDistance = 2, the predicate
-     * {item: Int -> item < 3 } will load items [[1, 2], [3, 4], [5, 6]] where [5, 6] is the
-     * prefetched page.
+     * - if `prefetchDistance` > 0, the resulting appends will include prefetched items. For
+     *   example, if pageSize = 2 and prefetchDistance = 2, the predicate {item: Int -> item < 3 }
+     *   will load items [[1, 2], [3, 4], [5, 6]] where [5, 6] is the prefetched page.
      *
      * @param [predicate] the predicate to match (return true) to continue append scrolls
      */
@@ -89,21 +89,21 @@
     }
 
     /**
-     * Imitates scrolling up paged items, [prepending][PREPEND] data until the given
-     * predicate returns false.
+     * Imitates scrolling up paged items, [prepending][PREPEND] data until the given predicate
+     * returns false.
      *
-     * Note: This API loads an item before passing it into the predicate. This means the
-     * loaded pages may include the page which contains the item that does not match the
-     * predicate. For example, if pageSize = 2, initialKey = 3, the predicate
-     * {item: Int -> item >= 3 } will return items [[1, 2],[3, 4]] where [1, 2] is the page
-     * containing the boundary item[2] not matching the predicate.
+     * Note: This API loads an item before passing it into the predicate. This means the loaded
+     * pages may include the page which contains the item that does not match the predicate. For
+     * example, if pageSize = 2, initialKey = 3, the predicate {item: Int -> item >= 3 } will return
+     * items [[1, 2],[3, 4]] where [1, 2] is the page containing the boundary item[2] not matching
+     * the predicate.
      *
      * The loaded pages are also dependent on [PagingConfig] settings such as
      * [PagingConfig.prefetchDistance]:
-     * - if `prefetchDistance` > 0, the resulting prepends will include prefetched items.
-     * For example, if pageSize = 2, initialKey = 3, and prefetchDistance = 2, the predicate
-     * {item: Int -> item > 4 } will load items [[1, 2], [3, 4], [5, 6]] where both [1,2] and
-     * [5, 6] are the prefetched pages.
+     * - if `prefetchDistance` > 0, the resulting prepends will include prefetched items. For
+     *   example, if pageSize = 2, initialKey = 3, and prefetchDistance = 2, the predicate {item:
+     *   Int -> item > 4 } will load items [[1, 2], [3, 4], [5, 6]] where both [1,2] and [5, 6] are
+     *   the prefetched pages.
      *
      * @param [predicate] the predicate to match (return true) to continue prepend scrolls
      */
@@ -133,25 +133,24 @@
      * through.
      *
      * The scroll direction (prepend or append) is dependent on current index and target index. In
-     * general, scrolling to a smaller index triggers [PREPEND] while scrolling to a larger
-     * index triggers [APPEND].
+     * general, scrolling to a smaller index triggers [PREPEND] while scrolling to a larger index
+     * triggers [APPEND].
      *
      * When [PagingConfig.enablePlaceholders] is false, the [index] is scoped within currently
      * loaded items. For example, in a list of items(0-20) with currently loaded items(10-15),
      * index[0] = item(10), index[4] = item(15).
      *
-     * Supports [index] beyond currently loaded items when [PagingConfig.enablePlaceholders]
-     * is false:
-     * 1. For prepends, it supports negative indices for as long as there are still available
-     * data to load from. For example, take a list of items(0-20), pageSize = 1, with currently
-     * loaded items(10-15). With index[0] = item(10), a `scrollTo(-4)` will scroll to item(6) and
-     * update index[0] = item(6).
+     * Supports [index] beyond currently loaded items when [PagingConfig.enablePlaceholders] is
+     * false:
+     * 1. For prepends, it supports negative indices for as long as there are still available data
+     *    to load from. For example, take a list of items(0-20), pageSize = 1, with currently loaded
+     *    items(10-15). With index[0] = item(10), a `scrollTo(-4)` will scroll to item(6) and update
+     *    index[0] = item(6).
      * 2. For appends, it supports indices >= loadedDataSize. For example, take a list of
-     * items(0-20), pageSize = 1, with currently loaded items(10-15). With
-     * index[4] = item(15), a `scrollTo(7)` will scroll to item(18) and update
-     * index[7] = item(18).
-     * Note that both examples does not account for prefetches.
-
+     *    items(0-20), pageSize = 1, with currently loaded items(10-15). With index[4] = item(15), a
+     *    `scrollTo(7)` will scroll to item(18) and update index[7] = item(18). Note that both
+     *    examples does not account for prefetches.
+     *
      * The [index] accounts for separators/headers/footers where each one of those consumes one
      * scrolled index.
      *
@@ -159,9 +158,8 @@
      * distance if there are no more data to load from.
      *
      * @param [index] The target index to scroll to
-     *
-     * @see [flingTo] for faking a scroll that continues scrolling without waiting for items to
-     * be loaded in. Supports jumping.
+     * @see [flingTo] for faking a scroll that continues scrolling without waiting for items to be
+     *   loaded in. Supports jumping.
      */
     public suspend fun scrollTo(index: Int): @JvmSuppressWildcards Unit {
         presenter.awaitNotLoading(errorHandler)
@@ -172,11 +170,11 @@
     /**
      * Scrolls from current index to targeted [index].
      *
-     * Internally this method scrolls until it fulfills requested index
-     * differential (Math.abs(requested index - current index)) rather than scrolling
-     * to the exact requested index. This is because item indices can shift depending on scroll
-     * direction and placeholders. Therefore we try to fulfill the expected amount of scrolling
-     * rather than the actual requested index.
+     * Internally this method scrolls until it fulfills requested index differential
+     * (Math.abs(requested index - current index)) rather than scrolling to the exact requested
+     * index. This is because item indices can shift depending on scroll direction and placeholders.
+     * Therefore we try to fulfill the expected amount of scrolling rather than the actual requested
+     * index.
      */
     private suspend fun appendOrPrependScrollTo(index: Int) {
         val startIndex = generations.value.lastAccessedIndex.get()
@@ -186,35 +184,33 @@
     }
 
     /**
-     * Imitates flinging from current index to the target index. It will continue scrolling
-     * even as data is being loaded in. Returns all available data that has been scrolled
-     * through.
+     * Imitates flinging from current index to the target index. It will continue scrolling even as
+     * data is being loaded in. Returns all available data that has been scrolled through.
      *
      * The scroll direction (prepend or append) is dependent on current index and target index. In
-     * general, scrolling to a smaller index triggers [PREPEND] while scrolling to a larger
-     * index triggers [APPEND].
+     * general, scrolling to a smaller index triggers [PREPEND] while scrolling to a larger index
+     * triggers [APPEND].
      *
      * This function will scroll into placeholders. This means jumping is supported when
-     * [PagingConfig.enablePlaceholders] is true and the amount of placeholders traversed
-     * has reached [PagingConfig.jumpThreshold]. Jumping is disabled when
+     * [PagingConfig.enablePlaceholders] is true and the amount of placeholders traversed has
+     * reached [PagingConfig.jumpThreshold]. Jumping is disabled when
      * [PagingConfig.enablePlaceholders] is false.
      *
      * When [PagingConfig.enablePlaceholders] is false, the [index] is scoped within currently
      * loaded items. For example, in a list of items(0-20) with currently loaded items(10-15),
      * index[0] = item(10), index[4] = item(15).
      *
-     * Supports [index] beyond currently loaded items when [PagingConfig.enablePlaceholders]
-     * is false:
-     * 1. For prepends, it supports negative indices for as long as there are still available
-     * data to load from. For example, take a list of items(0-20), pageSize = 1, with currently
-     * loaded items(10-15). With index[0] = item(10), a `scrollTo(-4)` will scroll to item(6) and
-     * update index[0] = item(6).
+     * Supports [index] beyond currently loaded items when [PagingConfig.enablePlaceholders] is
+     * false:
+     * 1. For prepends, it supports negative indices for as long as there are still available data
+     *    to load from. For example, take a list of items(0-20), pageSize = 1, with currently loaded
+     *    items(10-15). With index[0] = item(10), a `scrollTo(-4)` will scroll to item(6) and update
+     *    index[0] = item(6).
      * 2. For appends, it supports indices >= loadedDataSize. For example, take a list of
-     * items(0-20), pageSize = 1, with currently loaded items(10-15). With
-     * index[4] = item(15), a `scrollTo(7)` will scroll to item(18) and update
-     * index[7] = item(18).
-     * Note that both examples does not account for prefetches.
-
+     *    items(0-20), pageSize = 1, with currently loaded items(10-15). With index[4] = item(15), a
+     *    `scrollTo(7)` will scroll to item(18) and update index[7] = item(18). Note that both
+     *    examples does not account for prefetches.
+     *
      * The [index] accounts for separators/headers/footers where each one of those consumes one
      * scrolled index.
      *
@@ -222,9 +218,8 @@
      * distance if there are no more data to load from.
      *
      * @param [index] The target index to scroll to
-     *
-     * @see [scrollTo] for faking scrolls that awaits for placeholders to load before continuing
-     * to scroll.
+     * @see [scrollTo] for faking scrolls that awaits for placeholders to load before continuing to
+     *   scroll.
      */
     public suspend fun flingTo(index: Int): @JvmSuppressWildcards Unit {
         presenter.awaitNotLoading(errorHandler)
@@ -233,8 +228,8 @@
     }
 
     /**
-     * We start scrolling from startIndex +/- 1 so we don't accidentally trigger
-     * a prefetch on the opposite direction.
+     * We start scrolling from startIndex +/- 1 so we don't accidentally trigger a prefetch on the
+     * opposite direction.
      */
     private suspend fun appendOrPrependFlingTo(index: Int) {
         val startIndex = generations.value.lastAccessedIndex.get()
@@ -273,8 +268,8 @@
     /**
      * Append flings to target index.
      *
-     * If target index is beyond [PagingDataPresenter.size] - 1, from index(presenter.size) and onwards,
-     * it will normal scroll until it fulfills remaining distance.
+     * If target index is beyond [PagingDataPresenter.size] - 1, from index(presenter.size) and
+     * onwards, it will normal scroll until it fulfills remaining distance.
      */
     private suspend fun appendFlingTo(startIndex: Int, index: Int) {
         var lastAccessedIndex = startIndex
@@ -294,15 +289,15 @@
     }
 
     /**
-     * Delegated work from [flingTo] that is responsible for scrolling to indices that is
-     * beyond the range of [0 to presenter.size-1].
+     * Delegated work from [flingTo] that is responsible for scrolling to indices that is beyond the
+     * range of [0 to presenter.size-1].
      *
-     * When [PagingConfig.enablePlaceholders] is true, this function is no-op because
-     * there is no more data to load from.
+     * When [PagingConfig.enablePlaceholders] is true, this function is no-op because there is no
+     * more data to load from.
      *
      * When [PagingConfig.enablePlaceholders] is false, its delegated work to [awaitScroll]
-     * essentially loops (trigger next page --> await for next page) until
-     * it fulfills remaining (out of bounds) requested scroll distance.
+     * essentially loops (trigger next page --> await for next page) until it fulfills remaining
+     * (out of bounds) requested scroll distance.
      */
     private suspend fun flingToOutOfBounds(
         loadType: LoadType,
@@ -319,9 +314,7 @@
     }
 
     private suspend fun awaitScroll(loadType: LoadType, scrollCount: Int) {
-        repeat(scrollCount) {
-            awaitNextItem(loadType) ?: return
-        }
+        repeat(scrollCount) { awaitNextItem(loadType) ?: return }
     }
 
     /**
@@ -375,29 +368,32 @@
         var offsetIndex = index
 
         // awaits for the item to be loaded
-        return generations.map { generation ->
-            // reset callbackState to null so it doesn't get applied on the next load
-            val callbackState = generation.callbackState.getAndSet(null)
-            // offsetIndex accounts for items prepended when placeholders are disabled. This
-            // is necessary because the new items shift the position of existing items, and
-            // the index no longer tracks the correct item.
-            offsetIndex += callbackState?.computeIndexOffset() ?: 0
-            presenter.peek(offsetIndex)
-        }.filterNotNull().first() to offsetIndex
+        return generations
+            .map { generation ->
+                // reset callbackState to null so it doesn't get applied on the next load
+                val callbackState = generation.callbackState.getAndSet(null)
+                // offsetIndex accounts for items prepended when placeholders are disabled. This
+                // is necessary because the new items shift the position of existing items, and
+                // the index no longer tracks the correct item.
+                offsetIndex += callbackState?.computeIndexOffset() ?: 0
+                presenter.peek(offsetIndex)
+            }
+            .filterNotNull()
+            .first() to offsetIndex
     }
 
     /**
      * Computes the offset to add to the index when loading items from presenter.
      *
-     * The purpose of this is to address shifted item positions when new items are prepended
-     * with placeholders disabled. For example, loaded items(10-12) in the PlaceholderPaddedList
-     * would have item(12) at presenter[2]. If we prefetched items(7-9), item(12) would now be in
+     * The purpose of this is to address shifted item positions when new items are prepended with
+     * placeholders disabled. For example, loaded items(10-12) in the PlaceholderPaddedList would
+     * have item(12) at presenter[2]. If we prefetched items(7-9), item(12) would now be in
      * presenter[5].
      *
-     * Without the offset, [PREPEND] operations would call presenter[1] to load next item(11)
-     * which would now yield item(8) instead of item(11). The offset would add the
-     * inserted count to the next load index such that after prepending 3 new items(7-9), the next
-     * [PREPEND] operation would call presenter[1+3 = 4] to properly load next item(11).
+     * Without the offset, [PREPEND] operations would call presenter[1] to load next item(11) which
+     * would now yield item(8) instead of item(11). The offset would add the inserted count to the
+     * next load index such that after prepending 3 new items(7-9), the next [PREPEND] operation
+     * would call presenter[1+3 = 4] to properly load next item(11).
      *
      * This method is essentially no-op unless the callback meets three conditions:
      * - the [LoaderCallback.loadType] is [LoadType.PREPEND]
@@ -412,9 +408,7 @@
         generations.value.lastAccessedIndex.set(index)
     }
 
-    /**
-     * The callback to be invoked when presenter emits a new PagingDataEvent.
-     */
+    /** The callback to be invoked when presenter emits a new PagingDataEvent. */
     internal fun onDataSetChanged(
         gen: Generation,
         callback: LoaderCallback,
@@ -437,9 +431,8 @@
                     }
                 }
                 if (loadType == LoadType.PREPEND) {
-                    generations.value = gen.copy(
-                        callbackState = currGen.callbackState.apply { set(callback) }
-                    )
+                    generations.value =
+                        gen.copy(callbackState = currGen.callbackState.apply { set(callback) })
                 }
             }
         }
@@ -459,9 +452,7 @@
      */
     val callbackState: AtomicRef<LoaderCallback?> = AtomicRef(null),
 
-    /**
-     * Tracks the last accessed(peeked) index on the presenter for this generation
-     */
+    /** Tracks the last accessed(peeked) index on the presenter for this generation */
     var lastAccessedIndex: AtomicInt = AtomicInt(0)
 )
 
diff --git a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSource.kt b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSource.kt
index 36496ca..0b9c84b 100644
--- a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSource.kt
+++ b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSource.kt
@@ -25,13 +25,12 @@
 import androidx.paging.PagingState
 
 /**
- * An implementation of [PagingSource] that loads data from a static [dataList]. The source
- * of data is expected to be immutable. This [PagingSource] should be be invalidated
- * externally whenever the [dataList] passed to this [PagingSource] becomes obsolete.
+ * An implementation of [PagingSource] that loads data from a static [dataList]. The source of data
+ * is expected to be immutable. This [PagingSource] should be be invalidated externally whenever the
+ * [dataList] passed to this [PagingSource] becomes obsolete.
  */
-internal class StaticListPagingSource<Value : Any>(
-    private val dataList: List<Value>
-) : PagingSource<Int, Value>() {
+internal class StaticListPagingSource<Value : Any>(private val dataList: List<Value>) :
+    PagingSource<Int, Value>() {
 
     override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Value> {
         val key = params.key ?: 0
@@ -50,19 +49,18 @@
     /**
      * Returns the index to start loading from the [dataList] for each [load] call.
      *
-     * Prepend: The [key] represents the index before the first loaded Page's first index, i.e.
-     * if first loaded page contains items in index[25, 26, 27], then [key] = 24. The `startIndex`
-     * is offset negatively by [LoadParams.loadSize]. For example, if [key] = 24 and loadSize = 5,
-     * then the startIndex = 19, such that items in index[20, 21, 22, 23, 24] are loaded.
+     * Prepend: The [key] represents the index before the first loaded Page's first index, i.e. if
+     * first loaded page contains items in index[25, 26, 27], then [key] = 24. The `startIndex` is
+     * offset negatively by [LoadParams.loadSize]. For example, if [key] = 24 and loadSize = 5, then
+     * the startIndex = 19, such that items in index[20, 21, 22, 23, 24] are loaded.
      *
-     * Refresh: The [key] may derive from either [getRefreshKey] or from the `initialKey` passed
-     * in to [Pager]. If the [key] is larger than [dataList].lastIndex (i.e. an initialKey
-     * that is out of bounds), the `startIndex` will be offset negatively from the lastIndex
-     * by [LoadParams.loadSize] such that it will start loading from the last page.
-     * For example if index[0 - 49] is available with [key] = 55 and loadSize = 5,
-     * the `startIndex` will be offset to 45 such that items in index[45, 46, 47, 48, 49] are
-     * loaded. The largest possible `startIndex` that can be returned for
-     * Refresh is [dataList].lastIndex.
+     * Refresh: The [key] may derive from either [getRefreshKey] or from the `initialKey` passed in
+     * to [Pager]. If the [key] is larger than [dataList].lastIndex (i.e. an initialKey that is out
+     * of bounds), the `startIndex` will be offset negatively from the lastIndex by
+     * [LoadParams.loadSize] such that it will start loading from the last page. For example if
+     * index[0 - 49] is available with [key] = 55 and loadSize = 5, the `startIndex` will be offset
+     * to 45 such that items in index[45, 46, 47, 48, 49] are loaded. The largest possible
+     * `startIndex` that can be returned for Refresh is [dataList].lastIndex.
      *
      * Negative startIndices are clipped to 0.
      */
@@ -82,17 +80,17 @@
     /**
      * Returns the index to stop loading from the [dataList] for each [load] call.
      *
-     * Prepend: The [key] represents the index before the first loaded Page's first index, i.e.
-     * if first loaded page contains items in index[25, 26, 27], then [key] = 24. If loadSize
-     * exceeds available data to load, i.e. loadSize = 5 with only items in index[0, 1, 2] are
-     * available, the `endIndex` is clipped to the value of [key]. Reusing example with [key] = 2
-     * and items[0, 1, 2] available, the `startIndex` = 0 and the `endIndex` of `4` is clipped
-     * to `2` such that only items [0, 1, 2] are loaded.
+     * Prepend: The [key] represents the index before the first loaded Page's first index, i.e. if
+     * first loaded page contains items in index[25, 26, 27], then [key] = 24. If loadSize exceeds
+     * available data to load, i.e. loadSize = 5 with only items in index[0, 1, 2] are available,
+     * the `endIndex` is clipped to the value of [key]. Reusing example with [key] = 2 and items[0,
+     * 1, 2] available, the `startIndex` = 0 and the `endIndex` of `4` is clipped to `2` such that
+     * only items [0, 1, 2] are loaded.
      *
-     * Refresh: The [key] may derive from either [getRefreshKey] or from the `initialKey` passed
-     * in to [Pager]. As long as the `endIndex` is within bounds of [dataList] indices, `endIndex`
-     * will load the maximum amount of available data as requested by [LoadParams.loadSize]. If
-     * the [key] is out of bounds, it will be clipped to a maximum value of [dataList].lastIndex.
+     * Refresh: The [key] may derive from either [getRefreshKey] or from the `initialKey` passed in
+     * to [Pager]. As long as the `endIndex` is within bounds of [dataList] indices, `endIndex` will
+     * load the maximum amount of available data as requested by [LoadParams.loadSize]. If the [key]
+     * is out of bounds, it will be clipped to a maximum value of [dataList].lastIndex.
      */
     private fun computeIndexEnd(params: LoadParams<Int>, key: Int, startIndex: Int): Int {
         val defaultOffset = startIndex + params.loadSize - 1
@@ -107,11 +105,11 @@
      *
      * It is unknown whether anchorPosition represents the item at the top of the screen or item at
      * the bottom of the screen. To ensure the number of items loaded is enough to fill up the
-     * screen, half of loadSize is loaded before the anchorPosition and the other half is
-     * loaded after the anchorPosition -- anchorPosition becomes the middle item.
+     * screen, half of loadSize is loaded before the anchorPosition and the other half is loaded
+     * after the anchorPosition -- anchorPosition becomes the middle item.
      *
      * Negative refreshKeys are clipped to 0.
-    */
+     */
     override fun getRefreshKey(state: PagingState<Int, Value>): Int? {
         return when (val anchorPosition = state.anchorPosition) {
             null -> null
diff --git a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSourceFactory.kt b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSourceFactory.kt
index fc5ea4d..8458def 100644
--- a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSourceFactory.kt
+++ b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/StaticListPagingSourceFactory.kt
@@ -34,9 +34,9 @@
  * should be reused within the lifetime of a ViewModel.
  *
  * Extension method on a [Flow] of list that represents the data source, with each static list
- * representing a generation of data from which a [PagingSource] will load from. With every
- * emission to the flow, the current [PagingSource] will be invalidated, thereby triggering
- * a new generation of Paged data.
+ * representing a generation of data from which a [PagingSource] will load from. With every emission
+ * to the flow, the current [PagingSource] will be invalidated, thereby triggering a new generation
+ * of Paged data.
  *
  * Supports multiple factories and thus multiple collection on the same flow.
  *
@@ -52,8 +52,7 @@
     val factory = InvalidatingPagingSourceFactory {
         val dataSource = data ?: emptyList()
 
-        @Suppress("UNCHECKED_CAST")
-        StaticListPagingSource(dataSource)
+        @Suppress("UNCHECKED_CAST") StaticListPagingSource(dataSource)
     }
 
     coroutineScope.launch {
@@ -74,9 +73,11 @@
  *
  * Extension method on a [List] of data from which a [PagingSource] will load from. While this
  * factory supports multi-generational operations such as [REFRESH], it does not support updating
- * the data source. This means any PagingSources generated by the same factory will load from
- * the exact same list of data.
+ * the data source. This means any PagingSources generated by the same factory will load from the
+ * exact same list of data.
  */
 @VisibleForTesting
 public fun <Value : Any> List<Value>.asPagingSourceFactory(): PagingSourceFactory<Int, Value> =
-    PagingSourceFactory { StaticListPagingSource(this) }
+    PagingSourceFactory {
+        StaticListPagingSource(this)
+    }
diff --git a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/TestPager.kt b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/TestPager.kt
index 6cca56c..2c2918f 100644
--- a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/TestPager.kt
+++ b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/TestPager.kt
@@ -36,12 +36,12 @@
 /**
  * A fake [Pager] class to simulate how a real Pager and UI would load data from a PagingSource.
  *
- * As Paging's first load is always of type [LoadType.REFRESH], the first load operation of
- * the [TestPager] must be a call to [refresh].
+ * As Paging's first load is always of type [LoadType.REFRESH], the first load operation of the
+ * [TestPager] must be a call to [refresh].
  *
  * This class only supports loads from a single instance of PagingSource. To simulate
- * multi-generational Paging behavior, you must create a new [TestPager] by supplying a
- * new instance of [PagingSource].
+ * multi-generational Paging behavior, you must create a new [TestPager] by supplying a new instance
+ * of [PagingSource].
  *
  * @param config the [PagingConfig] to configure this TestPager's loading behavior.
  * @param pagingSource the [PagingSource] to load data from.
@@ -62,29 +62,30 @@
      *
      * If initialKey != null, refresh will start loading from the supplied key.
      *
-     * Since Paging's first load is always of [LoadType.REFRESH], this method must be the very
-     * first load operation to be called on the TestPager before either [append] or [prepend]
-     * can be called. However, other non-loading operations can still be invoked. For example,
-     * you can call [getLastLoadedPage] before any load operations.
+     * Since Paging's first load is always of [LoadType.REFRESH], this method must be the very first
+     * load operation to be called on the TestPager before either [append] or [prepend] can be
+     * called. However, other non-loading operations can still be invoked. For example, you can call
+     * [getLastLoadedPage] before any load operations.
      *
      * Returns the LoadResult upon refresh on the [PagingSource].
      *
      * @param initialKey the [Key] to start loading data from on initial refresh.
-     *
      * @throws IllegalStateException TestPager does not support multi-generational paging behavior.
-     * As such, multiple calls to refresh() on this TestPager is illegal. The [PagingSource] passed
-     * in to this [TestPager] will also be invalidated to prevent reuse of this pager for loads.
-     * However, other [TestPager] methods that does not invoke loads can still be called,
-     * such as [getLastLoadedPage].
+     *   As such, multiple calls to refresh() on this TestPager is illegal. The [PagingSource]
+     *   passed in to this [TestPager] will also be invalidated to prevent reuse of this pager for
+     *   loads. However, other [TestPager] methods that does not invoke loads can still be called,
+     *   such as [getLastLoadedPage].
      */
     public suspend fun refresh(
         initialKey: Key? = null
     ): @JvmSuppressWildcards LoadResult<Key, Value> {
         if (!hasRefreshed.compareAndSet(false, true)) {
             pagingSource.invalidate()
-            throw IllegalStateException("TestPager does not support multi-generational access " +
-                "and refresh() can only be called once per TestPager. To start a new generation," +
-                "create a new TestPager with a new PagingSource.")
+            throw IllegalStateException(
+                "TestPager does not support multi-generational access " +
+                    "and refresh() can only be called once per TestPager. To start a new generation," +
+                    "create a new TestPager with a new PagingSource."
+            )
         }
         return doInitialLoad(initialKey)
     }
@@ -121,112 +122,106 @@
         return doLoad(PREPEND)
     }
 
-    /**
-     * Helper to perform REFRESH loads.
-     */
+    /** Helper to perform REFRESH loads. */
     private suspend fun doInitialLoad(
         initialKey: Key?
     ): @JvmSuppressWildcards LoadResult<Key, Value> {
         return lock.withLock {
-            pagingSource.load(
-                LoadParams.Refresh(initialKey, config.initialLoadSize, config.enablePlaceholders)
-            ).also { result ->
-                if (result is LoadResult.Page) {
-                    pages.addLast(result)
+            pagingSource
+                .load(
+                    LoadParams.Refresh(
+                        initialKey,
+                        config.initialLoadSize,
+                        config.enablePlaceholders
+                    )
+                )
+                .also { result ->
+                    if (result is LoadResult.Page) {
+                        pages.addLast(result)
+                    }
                 }
-            }
         }
     }
 
-    /**
-     * Helper to perform APPEND or PREPEND loads.
-     */
+    /** Helper to perform APPEND or PREPEND loads. */
     private suspend fun doLoad(loadType: LoadType): LoadResult<Key, Value>? {
         return lock.withLock {
             if (!hasRefreshed.get()) {
-                throw IllegalStateException("TestPager's first load operation must be a refresh. " +
-                    "Please call refresh() once before calling ${loadType.name.lowercase()}().")
+                throw IllegalStateException(
+                    "TestPager's first load operation must be a refresh. " +
+                        "Please call refresh() once before calling ${loadType.name.lowercase()}()."
+                )
             }
             when (loadType) {
-                REFRESH -> throw IllegalArgumentException(
-                    "For LoadType.REFRESH use doInitialLoad()"
-                )
+                REFRESH ->
+                    throw IllegalArgumentException("For LoadType.REFRESH use doInitialLoad()")
                 APPEND -> {
                     val key = pages.lastOrNull()?.nextKey ?: return null
-                    pagingSource.load(
-                        LoadParams.Append(key, config.pageSize, config.enablePlaceholders)
-                    ).also { result ->
-                        if (result is LoadResult.Page) {
-                            pages.addLast(result)
+                    pagingSource
+                        .load(LoadParams.Append(key, config.pageSize, config.enablePlaceholders))
+                        .also { result ->
+                            if (result is LoadResult.Page) {
+                                pages.addLast(result)
+                            }
+                            dropPagesOrNoOp(PREPEND)
                         }
-                        dropPagesOrNoOp(PREPEND)
-                    }
-                } PREPEND -> {
+                }
+                PREPEND -> {
                     val key = pages.firstOrNull()?.prevKey ?: return null
-                    pagingSource.load(
-                        LoadParams.Prepend(key, config.pageSize, config.enablePlaceholders)
-                    ).also { result ->
-                        if (result is LoadResult.Page) {
-                            pages.addFirst(result)
+                    pagingSource
+                        .load(LoadParams.Prepend(key, config.pageSize, config.enablePlaceholders))
+                        .also { result ->
+                            if (result is LoadResult.Page) {
+                                pages.addFirst(result)
+                            }
+                            dropPagesOrNoOp(APPEND)
                         }
-                        dropPagesOrNoOp(APPEND)
-                    }
                 }
             }
         }
     }
 
     /**
-     * Returns the most recent [LoadResult.Page] loaded from the [PagingSource]. Null if
-     * no pages have been returned from [PagingSource]. For example, if PagingSource has
-     * only returned [LoadResult.Error] or [LoadResult.Invalid].
+     * Returns the most recent [LoadResult.Page] loaded from the [PagingSource]. Null if no pages
+     * have been returned from [PagingSource]. For example, if PagingSource has only returned
+     * [LoadResult.Error] or [LoadResult.Invalid].
      */
     public suspend fun getLastLoadedPage(): @JvmSuppressWildcards LoadResult.Page<Key, Value>? {
-        return lock.withLock {
-            pages.lastOrNull()
-        }
+        return lock.withLock { pages.lastOrNull() }
     }
 
-    /**
-     * Returns the current list of [LoadResult.Page] loaded so far from the [PagingSource].
-     */
+    /** Returns the current list of [LoadResult.Page] loaded so far from the [PagingSource]. */
     public suspend fun getPages(): @JvmSuppressWildcards List<LoadResult.Page<Key, Value>> {
-        return lock.withLock {
-            pages.toList()
-        }
+        return lock.withLock { pages.toList() }
     }
 
     /**
      * Returns a [PagingState] to generate a [LoadParams.key] by supplying it to
-     * [PagingSource.getRefreshKey]. The key returned from [PagingSource.getRefreshKey]
-     * should be used as the [LoadParams.Refresh.key] when calling [refresh] on a new generation of
-     * TestPager.
+     * [PagingSource.getRefreshKey]. The key returned from [PagingSource.getRefreshKey] should be
+     * used as the [LoadParams.Refresh.key] when calling [refresh] on a new generation of TestPager.
      *
-     * The anchorPosition must be within index of loaded items, which can include
-     * placeholders if [PagingConfig.enablePlaceholders] is true. For example:
-     * - No placeholders: If 40 items have been loaded so far , anchorPosition must be
-     * in [0 .. 39].
-     * - With placeholders: If there are a total of 100 loadable items, the anchorPosition
-     * must be in [0..99].
+     * The anchorPosition must be within index of loaded items, which can include placeholders if
+     * [PagingConfig.enablePlaceholders] is true. For example:
+     * - No placeholders: If 40 items have been loaded so far , anchorPosition must be in [0 .. 39].
+     * - With placeholders: If there are a total of 100 loadable items, the anchorPosition must be
+     *   in [0..99].
      *
-     * The [anchorPosition] should be the index that the user has hypothetically
-     * scrolled to on the UI. Since the [PagingState.anchorPosition] in Paging can be based
-     * on any item or placeholder currently visible on the screen, the actual
-     * value of [PagingState.anchorPosition] may not exactly match the [anchorPosition] passed
-     * to this function even if viewing the same page of data.
+     * The [anchorPosition] should be the index that the user has hypothetically scrolled to on the
+     * UI. Since the [PagingState.anchorPosition] in Paging can be based on any item or placeholder
+     * currently visible on the screen, the actual value of [PagingState.anchorPosition] may not
+     * exactly match the [anchorPosition] passed to this function even if viewing the same page of
+     * data.
      *
-     * Note that when `[PagingConfig.enablePlaceholders] = false`, the
-     * [PagingState.anchorPosition] returned from this function references the absolute index
-     * within all loadable data. For example, with items[0 - 99]:
-     * If items[20 - 30] were loaded without placeholders, anchorPosition 0 references item[20].
-     * But once translated into [PagingState.anchorPosition], anchorPosition 0 references item[0].
-     * The [PagingSource] is expected to handle this correctly within [PagingSource.getRefreshKey]
-     * when [PagingConfig.enablePlaceholders] = false.
+     * Note that when `[PagingConfig.enablePlaceholders] = false`, the [PagingState.anchorPosition]
+     * returned from this function references the absolute index within all loadable data. For
+     * example, with items[0 - 99]: If items[20 - 30] were loaded without placeholders,
+     * anchorPosition 0 references item[20]. But once translated into [PagingState.anchorPosition],
+     * anchorPosition 0 references item[0]. The [PagingSource] is expected to handle this correctly
+     * within [PagingSource.getRefreshKey] when [PagingConfig.enablePlaceholders] = false.
      *
-     * @param anchorPosition the index representing the last accessed item within the
-     * items presented on the UI, which may be a placeholder if
-     * [PagingConfig.enablePlaceholders] is true.
-     *
+     * @param anchorPosition the index representing the last accessed item within the items
+     *   presented on the UI, which may be a placeholder if [PagingConfig.enablePlaceholders] is
+     *   true.
      * @throws IllegalStateException if anchorPosition is out of bounds.
      */
     public suspend fun getPagingState(
@@ -245,50 +240,47 @@
 
     /**
      * Returns a [PagingState] to generate a [LoadParams.key] by supplying it to
-     * [PagingSource.getRefreshKey]. The key returned from [PagingSource.getRefreshKey]
-     * should be used as the [LoadParams.Refresh.key] when calling [refresh] on a new generation of
-     * TestPager.
+     * [PagingSource.getRefreshKey]. The key returned from [PagingSource.getRefreshKey] should be
+     * used as the [LoadParams.Refresh.key] when calling [refresh] on a new generation of TestPager.
      *
      * The [anchorPositionLookup] lambda should return an item that the user has hypothetically
-     * scrolled to on the UI. The item must have already been loaded prior to using this helper.
-     * To generate a PagingState anchored to a placeholder, use the overloaded [getPagingState]
-     * function instead. Since the [PagingState.anchorPosition] in Paging can be based
-     * on any item or placeholder currently visible on the screen, the actual
-     * value of [PagingState.anchorPosition] may not exactly match the anchorPosition returned
-     * from this function even if viewing the same page of data.
+     * scrolled to on the UI. The item must have already been loaded prior to using this helper. To
+     * generate a PagingState anchored to a placeholder, use the overloaded [getPagingState]
+     * function instead. Since the [PagingState.anchorPosition] in Paging can be based on any item
+     * or placeholder currently visible on the screen, the actual value of
+     * [PagingState.anchorPosition] may not exactly match the anchorPosition returned from this
+     * function even if viewing the same page of data.
      *
-     * Note that when `[PagingConfig.enablePlaceholders] = false`, the
-     * [PagingState.anchorPosition] returned from this function references the absolute index
-     * within all loadable data. For example, with items[0 - 99]:
-     * If items[20 - 30] were loaded without placeholders, anchorPosition 0 references item[20].
-     * But once translated into [PagingState.anchorPosition], anchorPosition 0 references item[0].
-     * The [PagingSource] is expected to handle this correctly within [PagingSource.getRefreshKey]
-     * when [PagingConfig.enablePlaceholders] = false.
+     * Note that when `[PagingConfig.enablePlaceholders] = false`, the [PagingState.anchorPosition]
+     * returned from this function references the absolute index within all loadable data. For
+     * example, with items[0 - 99]: If items[20 - 30] were loaded without placeholders,
+     * anchorPosition 0 references item[20]. But once translated into [PagingState.anchorPosition],
+     * anchorPosition 0 references item[0]. The [PagingSource] is expected to handle this correctly
+     * within [PagingSource.getRefreshKey] when [PagingConfig.enablePlaceholders] = false.
      *
      * @param anchorPositionLookup the predicate to match with an item which will serve as the basis
-     * for generating the [PagingState].
-     *
+     *   for generating the [PagingState].
      * @throws IllegalArgumentException if the given predicate fails to match with an item.
      */
     public suspend fun getPagingState(
         anchorPositionLookup: (item: @JvmSuppressWildcards Value) -> Boolean
     ): @JvmSuppressWildcards PagingState<Key, Value> {
         lock.withLock {
-            val indexInPages = pages.flatten().indexOfFirst {
-                anchorPositionLookup(it)
-            }
+            val indexInPages = pages.flatten().indexOfFirst { anchorPositionLookup(it) }
             return when {
-                indexInPages < 0 -> throw IllegalArgumentException(
-                    "The given predicate has returned false for every loaded item. To generate a" +
-                        "PagingState anchored to an item, the expected item must have already " +
-                        "been loaded."
-                )
+                indexInPages < 0 ->
+                    throw IllegalArgumentException(
+                        "The given predicate has returned false for every loaded item. To generate a" +
+                            "PagingState anchored to an item, the expected item must have already " +
+                            "been loaded."
+                    )
                 else -> {
-                    val finalIndex = if (config.enablePlaceholders) {
-                        indexInPages + (pages.firstOrNull()?.itemsBefore ?: 0)
-                    } else {
-                        indexInPages
-                    }
+                    val finalIndex =
+                        if (config.enablePlaceholders) {
+                            indexInPages + (pages.firstOrNull()?.itemsBefore ?: 0)
+                        } else {
+                            indexInPages
+                        }
                     PagingState(
                         pages = pages.toList(),
                         anchorPosition = finalIndex,
@@ -313,12 +305,14 @@
      */
     private fun checkWithinBoundary(anchorPosition: Int) {
         val loadedSize = pages.flatten().size
-        val maxBoundary = if (config.enablePlaceholders) {
-            (pages.firstOrNull()?.itemsBefore ?: 0) + loadedSize +
-                (pages.lastOrNull()?.itemsAfter ?: 0) - 1
-        } else {
-            loadedSize - 1
-        }
+        val maxBoundary =
+            if (config.enablePlaceholders) {
+                (pages.firstOrNull()?.itemsBefore ?: 0) +
+                    loadedSize +
+                    (pages.lastOrNull()?.itemsAfter ?: 0) - 1
+            } else {
+                loadedSize - 1
+            }
         check(anchorPosition in 0..maxBoundary) {
             "anchorPosition $anchorPosition is out of bounds between [0..$maxBoundary]. Please " +
                 "provide a valid anchorPosition."
@@ -335,11 +329,12 @@
             // 3. COUNT_UNDEFINED if not implemented
             val itemsBefore: Int? = pages.firstOrNull()?.itemsBefore
             // finalItemsBefore is `null` if it is either case 2. or 3.
-            val finalItemsBefore = if (itemsBefore == null || itemsBefore == COUNT_UNDEFINED) {
-                null
-            } else {
-                itemsBefore
-            }
+            val finalItemsBefore =
+                if (itemsBefore == null || itemsBefore == COUNT_UNDEFINED) {
+                    null
+                } else {
+                    itemsBefore
+                }
             // This will ultimately return 0 if user didn't implement itemsBefore or if pages
             // are empty, i.e. user called getPagingState before any loads.
             finalItemsBefore ?: 0
@@ -349,9 +344,7 @@
     }
 
     private fun dropPagesOrNoOp(dropType: LoadType) {
-        require(dropType != REFRESH) {
-            "Drop loadType must be APPEND or PREPEND but got $dropType"
-        }
+        require(dropType != REFRESH) { "Drop loadType must be APPEND or PREPEND but got $dropType" }
 
         // check if maxSize has been set
         if (config.maxSize == PagingConfig.MAX_SIZE_UNBOUNDED) return
@@ -360,21 +353,21 @@
         if (itemCount < config.maxSize) return
 
         // represents the max droppable amount of items
-        val presentedItemsBeforeOrAfter = when (dropType) {
-            PREPEND -> pages.take(pages.lastIndex)
-            else -> pages.takeLast(pages.lastIndex)
-        }.fold(0) { acc, page ->
-            acc + page.data.size
-        }
+        val presentedItemsBeforeOrAfter =
+            when (dropType) {
+                PREPEND -> pages.take(pages.lastIndex)
+                else -> pages.takeLast(pages.lastIndex)
+            }.fold(0) { acc, page -> acc + page.data.size }
 
         var itemsDropped = 0
 
         // mirror Paging requirement to never drop below 2 pages
         while (pages.size > 2 && itemCount - itemsDropped > config.maxSize) {
-            val pageSize = when (dropType) {
-                PREPEND -> pages.first().data.size
-                else -> pages.last().data.size
-            }
+            val pageSize =
+                when (dropType) {
+                    PREPEND -> pages.first().data.size
+                    else -> pages.last().data.size
+                }
 
             val itemsAfterDrop = presentedItemsBeforeOrAfter - itemsDropped - pageSize
 
diff --git a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/internal/Atomics.kt b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/internal/Atomics.kt
index 8aed900..824cb00 100644
--- a/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/internal/Atomics.kt
+++ b/paging/paging-testing/src/commonMain/kotlin/androidx/paging/testing/internal/Atomics.kt
@@ -18,17 +18,22 @@
 
 internal expect class AtomicInt(initialValue: Int) {
     fun get(): Int
+
     fun set(value: Int)
 }
 
 internal expect class AtomicBoolean(initialValue: Boolean) {
     fun get(): Boolean
+
     fun set(value: Boolean)
+
     fun compareAndSet(expect: Boolean, update: Boolean): Boolean
 }
 
 internal expect class AtomicRef<T>(initialValue: T) {
     fun get(): T
+
     fun set(value: T)
+
     fun getAndSet(value: T): T
 }
diff --git a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/PagerFlowSnapshotTest.kt b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/PagerFlowSnapshotTest.kt
index f14079d..700f914 100644
--- a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/PagerFlowSnapshotTest.kt
+++ b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/PagerFlowSnapshotTest.kt
@@ -53,16 +53,11 @@
         )
 
     private fun createSingleGenFactory(data: List<Int>, loadDelay: Long) =
-        WrappedPagingSourceFactory(
-            data.asPagingSourceFactory(),
-            loadDelay
-        )
+        WrappedPagingSourceFactory(data.asPagingSourceFactory(), loadDelay)
 
-    @Test
-    fun initialRefresh_loadDelay0() = initialRefresh(0)
+    @Test fun initialRefresh_loadDelay0() = initialRefresh(0)
 
-    @Test
-    fun initialRefresh_loadDelay10000() = initialRefresh(10000)
+    @Test fun initialRefresh_loadDelay10000() = initialRefresh(10000)
 
     private fun initialRefresh(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
@@ -70,17 +65,13 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
             // first page + prefetched page
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
         }
     }
 
-    @Test
-    fun initialRefreshSingleGen_loadDelay0() = initialRefreshSingleGen(0)
+    @Test fun initialRefreshSingleGen_loadDelay0() = initialRefreshSingleGen(0)
 
-    @Test
-    fun initialRefreshSingleGen_loadDelay10000() = initialRefreshSingleGen(10000)
+    @Test fun initialRefreshSingleGen_loadDelay10000() = initialRefreshSingleGen(10000)
 
     private fun initialRefreshSingleGen(loadDelay: Long) {
         val data = List(30) { it }
@@ -88,18 +79,14 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
             // first page + prefetched page
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
         }
     }
 
-    @Test
-    fun initialRefresh_emptyOperations_loadDelay0() = initialRefresh_emptyOperations(0)
+    @Test fun initialRefresh_emptyOperations_loadDelay0() = initialRefresh_emptyOperations(0)
 
     @Test
-    fun initialRefresh_emptyOperations_loadDelay10000() =
-        initialRefresh_emptyOperations(10000)
+    fun initialRefresh_emptyOperations_loadDelay10000() = initialRefresh_emptyOperations(10000)
 
     private fun initialRefresh_emptyOperations(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
@@ -107,36 +94,31 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot {}
             // first page + prefetched page
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
         }
     }
 
-    @Test
-    fun initialRefresh_withSeparators_loadDelay0() = initialRefresh_withSeparators(0)
+    @Test fun initialRefresh_withSeparators_loadDelay0() = initialRefresh_withSeparators(0)
 
-    @Test
-    fun initialRefresh_withSeparators_loadDelay10000() = initialRefresh_withSeparators(10000)
+    @Test fun initialRefresh_withSeparators_loadDelay10000() = initialRefresh_withSeparators(10000)
 
     private fun initialRefresh_withSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
-        val pager = createPager(dataFlow, loadDelay).map { pagingData ->
-            pagingData.insertSeparators { before: Int?, after: Int? ->
-                if (before != null && after != null) "sep" else null
+        val pager =
+            createPager(dataFlow, loadDelay).map { pagingData ->
+                pagingData.insertSeparators { before: Int?, after: Int? ->
+                    if (before != null && after != null) "sep" else null
+                }
             }
-        }
         testScope.runTest {
             val snapshot = pager.asSnapshot()
             // loads 8[initial 5 + prefetch 3] items total, including separators
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, "sep", 1, "sep", 2, "sep", 3, "sep", 4)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, "sep", 1, "sep", 2, "sep", 3, "sep", 4))
         }
     }
 
-    @Test
-    fun initialRefresh_withoutPrefetch_loadDelay0() = initialRefresh_withoutPrefetch(0)
+    @Test fun initialRefresh_withoutPrefetch_loadDelay0() = initialRefresh_withoutPrefetch(0)
 
     @Test
     fun initialRefresh_withoutPrefetch_loadDelay10000() = initialRefresh_withoutPrefetch(10000)
@@ -147,17 +129,13 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
 
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
         }
     }
 
-    @Test
-    fun initialRefresh_withInitialKey_loadDelay0() = initialRefresh_withInitialKey(0)
+    @Test fun initialRefresh_withInitialKey_loadDelay0() = initialRefresh_withInitialKey(0)
 
-    @Test
-    fun initialRefresh_withInitialKey_loadDelay10000() = initialRefresh_withInitialKey(10000)
+    @Test fun initialRefresh_withInitialKey_loadDelay10000() = initialRefresh_withInitialKey(10000)
 
     private fun initialRefresh_withInitialKey(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
@@ -165,9 +143,8 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
 
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))
         }
     }
 
@@ -185,9 +162,7 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
 
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(10, 11, 12, 13, 14)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(10, 11, 12, 13, 14))
         }
     }
 
@@ -198,34 +173,34 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
             // first page + prefetched page
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))
         }
     }
 
     @Test
     fun initialRefresh_PagingDataFrom_withLoadStates() {
         val data = List(10) { it }
-        val pager = flowOf(PagingData.from(data, LoadStates(
-            refresh = LoadState.NotLoading(true),
-            prepend = LoadState.NotLoading(true),
-            append = LoadState.NotLoading(true)
-        )))
+        val pager =
+            flowOf(
+                PagingData.from(
+                    data,
+                    LoadStates(
+                        refresh = LoadState.NotLoading(true),
+                        prepend = LoadState.NotLoading(true),
+                        append = LoadState.NotLoading(true)
+                    )
+                )
+            )
         testScope.runTest {
             val snapshot = pager.asSnapshot()
             // first page + prefetched page
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))
         }
     }
 
-    @Test
-    fun emptyInitialRefresh_loadDelay0() = emptyInitialRefresh(0)
+    @Test fun emptyInitialRefresh_loadDelay0() = emptyInitialRefresh(0)
 
-    @Test
-    fun emptyInitialRefresh_loadDelay10000() = emptyInitialRefresh(10000)
+    @Test fun emptyInitialRefresh_loadDelay10000() = emptyInitialRefresh(10000)
 
     private fun emptyInitialRefresh(loadDelay: Long) {
         val dataFlow = emptyFlow<List<Int>>()
@@ -233,17 +208,13 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
 
-            assertThat(snapshot).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            assertThat(snapshot).containsExactlyElementsIn(emptyList<Int>())
         }
     }
 
-    @Test
-    fun emptyInitialRefreshSingleGen_loadDelay0() = emptyInitialRefreshSingleGen(0)
+    @Test fun emptyInitialRefreshSingleGen_loadDelay0() = emptyInitialRefreshSingleGen(0)
 
-    @Test
-    fun emptyInitialRefreshSingleGen_loadDelay10000() = emptyInitialRefreshSingleGen(10000)
+    @Test fun emptyInitialRefreshSingleGen_loadDelay10000() = emptyInitialRefreshSingleGen(10000)
 
     private fun emptyInitialRefreshSingleGen(loadDelay: Long) {
         val data = emptyList<Int>()
@@ -251,9 +222,7 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
 
-            assertThat(snapshot).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            assertThat(snapshot).containsExactlyElementsIn(emptyList<Int>())
         }
     }
 
@@ -270,47 +239,39 @@
         testScope.runTest {
             val snapshot = pager.asSnapshot()
 
-            assertThat(snapshot).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            assertThat(snapshot).containsExactlyElementsIn(emptyList<Int>())
         }
     }
 
-    @Test
-    fun manualRefresh_loadDelay0() = manualRefresh(0)
+    @Test fun manualRefresh_loadDelay0() = manualRefresh(0)
 
-    @Test
-    fun manualRefresh_loadDelay10000() = manualRefresh(10000)
+    @Test fun manualRefresh_loadDelay10000() = manualRefresh(10000)
 
     private fun manualRefresh(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPagerNoPrefetch(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                refresh()
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4),
-            )
+            val snapshot = pager.asSnapshot { refresh() }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4),
+                )
         }
     }
 
-    @Test
-    fun manualRefreshSingleGen_loadDelay0() = manualRefreshSingleGen(0)
+    @Test fun manualRefreshSingleGen_loadDelay0() = manualRefreshSingleGen(0)
 
-    @Test
-    fun manualRefreshSingleGen_loadDelay10000() = manualRefreshSingleGen(10000)
+    @Test fun manualRefreshSingleGen_loadDelay10000() = manualRefreshSingleGen(10000)
 
     private fun manualRefreshSingleGen(loadDelay: Long) {
         val data = List(30) { it }
         val pager = createPager(data, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                refresh()
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7),
-            )
+            val snapshot = pager.asSnapshot { refresh() }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7),
+                )
         }
     }
 
@@ -319,14 +280,14 @@
         val data = List(30) { it }
         val sources = mutableListOf<PagingSource<Int, Int>>()
         val factory = data.asPagingSourceFactory()
-        val pager = Pager(
-            config = PagingConfig(pageSize = 3, initialLoadSize = 5),
-            pagingSourceFactory = { factory().also { sources.add(it) } },
-        ).flow
+        val pager =
+            Pager(
+                    config = PagingConfig(pageSize = 3, initialLoadSize = 5),
+                    pagingSourceFactory = { factory().also { sources.add(it) } },
+                )
+                .flow
         testScope.runTest {
-            pager.asSnapshot {
-                refresh()
-            }
+            pager.asSnapshot { refresh() }
             assertThat(sources.first().invalid).isTrue()
         }
     }
@@ -336,158 +297,151 @@
         val data = List(10) { it }
         val pager = flowOf(PagingData.from(data))
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                refresh()
-            }
+            val snapshot = pager.asSnapshot { refresh() }
             // first page + prefetched page
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))
         }
     }
 
     @Test
     fun manualRefresh_PagingDataFrom_withLoadStates() {
         val data = List(10) { it }
-        val pager = flowOf(PagingData.from(data, LoadStates(
-            refresh = LoadState.NotLoading(true),
-            prepend = LoadState.NotLoading(true),
-            append = LoadState.NotLoading(true)
-        )))
-        testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                refresh()
-            }
-            // first page + prefetched page
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
+        val pager =
+            flowOf(
+                PagingData.from(
+                    data,
+                    LoadStates(
+                        refresh = LoadState.NotLoading(true),
+                        prepend = LoadState.NotLoading(true),
+                        append = LoadState.NotLoading(true)
+                    )
+                )
             )
+        testScope.runTest {
+            val snapshot = pager.asSnapshot { refresh() }
+            // first page + prefetched page
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))
         }
     }
 
-    @Test
-    fun manualEmptyRefresh_loadDelay0() = manualEmptyRefresh(0)
+    @Test fun manualEmptyRefresh_loadDelay0() = manualEmptyRefresh(0)
 
-    @Test
-    fun manualEmptyRefresh_loadDelay10000() = manualEmptyRefresh(10000)
+    @Test fun manualEmptyRefresh_loadDelay10000() = manualEmptyRefresh(10000)
 
     private fun manualEmptyRefresh(loadDelay: Long) {
         val dataFlow = emptyFlow<List<Int>>()
         val pager = createPagerNoPrefetch(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                refresh()
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            val snapshot = pager.asSnapshot { refresh() }
+            assertThat(snapshot).containsExactlyElementsIn(emptyList<Int>())
         }
     }
 
-    @Test
-    fun appendWhile_loadDelay0() = appendWhile(0)
+    @Test fun appendWhile_loadDelay0() = appendWhile(0)
 
-    @Test
-    fun appendWhile_loadDelay10000() = appendWhile(10000)
+    @Test fun appendWhile_loadDelay10000() = appendWhile(10000)
 
     private fun appendWhile(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item < 14
-                }
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // initial load [0-4]
-                // prefetched [5-7]
-                // appended [8-16]
-                // prefetched [17-19]
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
-            )
+            val snapshot = pager.asSnapshot { appendScrollWhile { item: Int -> item < 14 } }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // initial load [0-4]
+                    // prefetched [5-7]
+                    // appended [8-16]
+                    // prefetched [17-19]
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
+                )
         }
     }
 
-    @Test
-    fun appendWhile_withDrops_loadDelay0() = appendWhile_withDrops(0)
+    @Test fun appendWhile_withDrops_loadDelay0() = appendWhile_withDrops(0)
 
-    @Test
-    fun appendWhile_withDrops_loadDelay10000() = appendWhile_withDrops(10000)
+    @Test fun appendWhile_withDrops_loadDelay10000() = appendWhile_withDrops(10000)
 
     private fun appendWhile_withDrops(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPagerWithDrops(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item ->
-                    item < 14
-                }
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // dropped [0-10]
-                listOf(11, 12, 13, 14, 15, 16, 17, 18, 19)
-            )
+            val snapshot = pager.asSnapshot { appendScrollWhile { item -> item < 14 } }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // dropped [0-10]
+                    listOf(11, 12, 13, 14, 15, 16, 17, 18, 19)
+                )
         }
     }
 
-    @Test
-    fun appendWhile_withSeparators_loadDelay0() = appendWhile_withSeparators(0)
+    @Test fun appendWhile_withSeparators_loadDelay0() = appendWhile_withSeparators(0)
 
-    @Test
-    fun appendWhile_withSeparators_loadDelay10000() = appendWhile_withSeparators(10000)
+    @Test fun appendWhile_withSeparators_loadDelay10000() = appendWhile_withSeparators(10000)
 
     private fun appendWhile_withSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
-        val pager = createPager(dataFlow, loadDelay).map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 9 || before == 12) "sep" else null
-            }
-        }
-        testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item ->
-                    item !is Int || item < 14
+        val pager =
+            createPager(dataFlow, loadDelay).map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ ->
+                    if (before == 9 || before == 12) "sep" else null
                 }
             }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // initial load [0-4]
-                // prefetched [5-7]
-                // appended [8-16]
-                // prefetched [17-19]
-                listOf(
-                    0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "sep", 10, 11, 12, "sep", 13, 14, 15,
-                    16, 17, 18, 19
+        testScope.runTest {
+            val snapshot =
+                pager.asSnapshot { appendScrollWhile { item -> item !is Int || item < 14 } }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // initial load [0-4]
+                    // prefetched [5-7]
+                    // appended [8-16]
+                    // prefetched [17-19]
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        "sep",
+                        10,
+                        11,
+                        12,
+                        "sep",
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun appendWhile_withoutPrefetch_loadDelay0() = appendWhile_withoutPrefetch(0)
+    @Test fun appendWhile_withoutPrefetch_loadDelay0() = appendWhile_withoutPrefetch(0)
 
-    @Test
-    fun appendWhile_withoutPrefetch_loadDelay10000() = appendWhile_withoutPrefetch(10000)
+    @Test fun appendWhile_withoutPrefetch_loadDelay10000() = appendWhile_withoutPrefetch(10000)
 
     private fun appendWhile_withoutPrefetch(loadDelay: Long) {
         val dataFlow = flowOf(List(50) { it })
         val pager = createPagerNoPrefetch(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item < 14
-                }
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // initial load [0-4]
-                // appended [5-16]
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            val snapshot = pager.asSnapshot { appendScrollWhile { item: Int -> item < 14 } }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // initial load [0-4]
+                    // appended [5-16]
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
         }
     }
 
-    @Test
-    fun appendWhile_withoutPlaceholders_loadDelay0() = appendWhile_withoutPlaceholders(0)
+    @Test fun appendWhile_withoutPlaceholders_loadDelay0() = appendWhile_withoutPlaceholders(0)
 
     @Test
     fun appendWhile_withoutPlaceholders_loadDelay10000() = appendWhile_withoutPlaceholders(10000)
@@ -496,125 +450,118 @@
         val dataFlow = flowOf(List(50) { it })
         val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item != 14
-                }
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // initial load [0-4]
-                // prefetched [5-7]
-                // appended [8-16]
-                // prefetched [17-19]
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
-            )
+            val snapshot = pager.asSnapshot { appendScrollWhile { item: Int -> item != 14 } }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // initial load [0-4]
+                    // prefetched [5-7]
+                    // appended [8-16]
+                    // prefetched [17-19]
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
+                )
         }
     }
 
-    @Test
-    fun prependWhile_loadDelay0() = prependWhile(0)
+    @Test fun prependWhile_loadDelay0() = prependWhile(0)
 
-    @Test
-    fun prependWhile_loadDelay10000() = prependWhile(10000)
+    @Test fun prependWhile_loadDelay10000() = prependWhile(10000)
 
     private fun prependWhile(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay, 20)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item > 14
-                }
-            }
+            val snapshot = pager.asSnapshot { prependScrollWhile { item: Int -> item > 14 } }
             // initial load [20-24]
             // prefetched [17-19], [25-27]
             // prepended [14-16]
             // prefetched [11-13]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27)
+                )
         }
     }
 
-    @Test
-    fun prependWhile_withDrops_loadDelay0() = prependWhile_withDrops(0)
+    @Test fun prependWhile_withDrops_loadDelay0() = prependWhile_withDrops(0)
 
-    @Test
-    fun prependWhile_withDrops_loadDelay10000() = prependWhile_withDrops(10000)
+    @Test fun prependWhile_withDrops_loadDelay10000() = prependWhile_withDrops(10000)
 
     private fun prependWhile_withDrops(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPagerWithDrops(dataFlow, loadDelay, 20)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item > 14
-                }
-            }
+            val snapshot = pager.asSnapshot { prependScrollWhile { item: Int -> item > 14 } }
             // dropped [20-27]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(11, 12, 13, 14, 15, 16, 17, 18, 19)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(11, 12, 13, 14, 15, 16, 17, 18, 19))
         }
     }
 
-    @Test
-    fun prependWhile_withSeparators_loadDelay0() = prependWhile_withSeparators(0)
+    @Test fun prependWhile_withSeparators_loadDelay0() = prependWhile_withSeparators(0)
 
-    @Test
-    fun prependWhile_withSeparators_loadDelay10000() = prependWhile_withSeparators(10000)
+    @Test fun prependWhile_withSeparators_loadDelay10000() = prependWhile_withSeparators(10000)
 
     private fun prependWhile_withSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
-        val pager = createPager(dataFlow, loadDelay, 20).map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 14 || before == 18) "sep" else null
-            }
-        }
-        testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item ->
-                    item !is Int || item > 14
+        val pager =
+            createPager(dataFlow, loadDelay, 20).map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ ->
+                    if (before == 14 || before == 18) "sep" else null
                 }
             }
+        testScope.runTest {
+            val snapshot =
+                pager.asSnapshot { prependScrollWhile { item -> item !is Int || item > 14 } }
             // initial load [20-24]
             // prefetched [17-19], no append prefetch because separator fulfilled prefetchDistance
             // prepended [14-16]
             // prefetched [11-13]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    11, 12, 13, 14, "sep", 15, 16, 17, 18, "sep", 19, 20, 21, 22, 23,
-                    24, 25, 26, 27
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        11,
+                        12,
+                        13,
+                        14,
+                        "sep",
+                        15,
+                        16,
+                        17,
+                        18,
+                        "sep",
+                        19,
+                        20,
+                        21,
+                        22,
+                        23,
+                        24,
+                        25,
+                        26,
+                        27
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun prependWhile_withoutPrefetch_loadDelay0() = prependWhile_withoutPrefetch(0)
+    @Test fun prependWhile_withoutPrefetch_loadDelay0() = prependWhile_withoutPrefetch(0)
 
-    @Test
-    fun prependWhile_withoutPrefetch_loadDelay10000() = prependWhile_withoutPrefetch(10000)
+    @Test fun prependWhile_withoutPrefetch_loadDelay10000() = prependWhile_withoutPrefetch(10000)
 
     private fun prependWhile_withoutPrefetch(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPagerNoPrefetch(dataFlow, loadDelay, 20)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item > 14
-                }
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // initial load [20-24]
-                // prepended [14-19]
-                listOf(14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24)
-            )
+            val snapshot = pager.asSnapshot { prependScrollWhile { item: Int -> item > 14 } }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // initial load [20-24]
+                    // prepended [14-19]
+                    listOf(14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24)
+                )
         }
     }
 
-    @Test
-    fun prependWhile_withoutPlaceholders_loadDelay0() = prependWhile_withoutPlaceholders(0)
+    @Test fun prependWhile_withoutPlaceholders_loadDelay0() = prependWhile_withoutPlaceholders(0)
 
     @Test
     fun prependWhile_withoutPlaceholders_loadDelay10000() = prependWhile_withoutPlaceholders(10000)
@@ -623,45 +570,56 @@
         val dataFlow = flowOf(List(50) { it })
         val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 30)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item != 22
-                }
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // initial load [30-34]
-                // prefetched [27-29], [35-37]
-                // prepended [21-26]
-                // prefetched [18-20]
-                listOf(
-                    18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37
+            val snapshot = pager.asSnapshot { prependScrollWhile { item: Int -> item != 22 } }
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // initial load [30-34]
+                    // prefetched [27-29], [35-37]
+                    // prepended [21-26]
+                    // prefetched [18-20]
+                    listOf(
+                        18,
+                        19,
+                        20,
+                        21,
+                        22,
+                        23,
+                        24,
+                        25,
+                        26,
+                        27,
+                        28,
+                        29,
+                        30,
+                        31,
+                        32,
+                        33,
+                        34,
+                        35,
+                        36,
+                        37
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun appendWhile_withInitialKey_loadDelay0() = appendWhile_withInitialKey(0)
+    @Test fun appendWhile_withInitialKey_loadDelay0() = appendWhile_withInitialKey(0)
 
-    @Test
-    fun appendWhile_withInitialKey_loadDelay10000() = appendWhile_withInitialKey(10000)
+    @Test fun appendWhile_withInitialKey_loadDelay10000() = appendWhile_withInitialKey(10000)
 
     private fun appendWhile_withInitialKey(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay, 10)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item < 18
-                }
-            }
+            val snapshot = pager.asSnapshot { appendScrollWhile { item: Int -> item < 18 } }
             // initial load [10-14]
             // prefetched [7-9], [15-17]
             // appended [18-20]
             // prefetched [21-23]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23)
+                )
         }
     }
 
@@ -677,18 +635,15 @@
         val dataFlow = flowOf(List(30) { it })
         val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 10)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item != 19
-                }
-            }
+            val snapshot = pager.asSnapshot { appendScrollWhile { item: Int -> item != 19 } }
             // initial load [10-14]
             // prefetched [7-9], [15-17]
             // appended [18-20]
             // prefetched [21-23]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23)
+                )
         }
     }
 
@@ -704,21 +659,15 @@
         val dataFlow = flowOf(List(30) { it })
         val pager = createPagerNoPrefetch(dataFlow, loadDelay, 10)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item < 18
-                }
-            }
+            val snapshot = pager.asSnapshot { appendScrollWhile { item: Int -> item < 18 } }
             // initial load [10-14]
             // appended [15-20]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20))
         }
     }
 
-    @Test
-    fun prependWhile_withoutInitialKey_loadDelay0() = prependWhile_withoutInitialKey(0)
+    @Test fun prependWhile_withoutInitialKey_loadDelay0() = prependWhile_withoutInitialKey(0)
 
     @Test
     fun prependWhile_withoutInitialKey_loadDelay10000() = prependWhile_withoutInitialKey(10000)
@@ -727,80 +676,49 @@
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item > -3
-                }
-            }
+            val snapshot = pager.asSnapshot { prependScrollWhile { item: Int -> item > -3 } }
             // initial load [0-4]
             // prefetched [5-7]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
         }
     }
 
-    @Test
-    fun consecutiveAppendWhile_loadDelay0() = consecutiveAppendWhile(0)
+    @Test fun consecutiveAppendWhile_loadDelay0() = consecutiveAppendWhile(0)
 
-    @Test
-    fun consecutiveAppendWhile_loadDelay10000() = consecutiveAppendWhile(10000)
+    @Test fun consecutiveAppendWhile_loadDelay10000() = consecutiveAppendWhile(10000)
 
     private fun consecutiveAppendWhile(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot1 = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item < 7
-                }
-            }
+            val snapshot1 = pager.asSnapshot { appendScrollWhile { item: Int -> item < 7 } }
 
-            val snapshot2 = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item < 22
-                }
-            }
+            val snapshot2 = pager.asSnapshot { appendScrollWhile { item: Int -> item < 22 } }
 
             // includes initial load, 1st page, 2nd page (from prefetch)
-            assertThat(snapshot1).containsExactlyElementsIn(
-                List(11) { it }
-            )
+            assertThat(snapshot1).containsExactlyElementsIn(List(11) { it })
 
             // includes extra page from prefetch
-            assertThat(snapshot2).containsExactlyElementsIn(
-                List(26) { it }
-            )
+            assertThat(snapshot2).containsExactlyElementsIn(List(26) { it })
         }
     }
 
-    @Test
-    fun consecutivePrependWhile_loadDelay0() = consecutivePrependWhile(0)
+    @Test fun consecutivePrependWhile_loadDelay0() = consecutivePrependWhile(0)
 
-    @Test
-    fun consecutivePrependWhile_loadDelay10000() = consecutivePrependWhile(10000)
+    @Test fun consecutivePrependWhile_loadDelay10000() = consecutivePrependWhile(10000)
 
     private fun consecutivePrependWhile(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
-        val pager = createPagerNoPrefetch(dataFlow, loadDelay, 20)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPrefetch(dataFlow, loadDelay, 20).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot1 = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item > 17
-                }
-            }
-            assertThat(snapshot1).containsExactlyElementsIn(
-                listOf(17, 18, 19, 20, 21, 22, 23, 24)
-            )
-            val snapshot2 = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item > 11
-                }
-            }
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24)
-            )
+            val snapshot1 = pager.asSnapshot { prependScrollWhile { item: Int -> item > 17 } }
+            assertThat(snapshot1).containsExactlyElementsIn(listOf(17, 18, 19, 20, 21, 22, 23, 24))
+            val snapshot2 = pager.asSnapshot { prependScrollWhile { item: Int -> item > 11 } }
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24)
+                )
         }
     }
 
@@ -816,17 +734,16 @@
         val dataFlow = flowOf(List(10) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    // condition scrolls till end of data since we only have 10 items
-                    item < 18
+            val snapshot =
+                pager.asSnapshot {
+                    appendScrollWhile { item: Int ->
+                        // condition scrolls till end of data since we only have 10 items
+                        item < 18
+                    }
                 }
-            }
 
             // returns the items loaded before index becomes out of bounds
-            assertThat(snapshot).containsExactlyElementsIn(
-                List(10) { it }
-            )
+            assertThat(snapshot).containsExactlyElementsIn(List(10) { it })
         }
     }
 
@@ -842,128 +759,119 @@
         val dataFlow = flowOf(List(20) { it })
         val pager = createPager(dataFlow, loadDelay, 10)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    // condition scrolls till index = 0
-                    item > -3
+            val snapshot =
+                pager.asSnapshot {
+                    prependScrollWhile { item: Int ->
+                        // condition scrolls till index = 0
+                        item > -3
+                    }
                 }
-            }
             // returns the items loaded before index becomes out of bounds
-            assertThat(snapshot).containsExactlyElementsIn(
-                // initial load [10-14]
-                // prefetched [7-9], [15-17]
-                // prepended [0-6]
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // initial load [10-14]
+                    // prefetched [7-9], [15-17]
+                    // prepended [0-6]
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)
+                )
         }
     }
 
-    @Test
-    fun refreshAndAppendWhile_loadDelay0() = refreshAndAppendWhile(0)
+    @Test fun refreshAndAppendWhile_loadDelay0() = refreshAndAppendWhile(0)
 
-    @Test
-    fun refreshAndAppendWhile_loadDelay10000() = refreshAndAppendWhile(10000)
+    @Test fun refreshAndAppendWhile_loadDelay10000() = refreshAndAppendWhile(10000)
 
     private fun refreshAndAppendWhile(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                refresh() // triggers second gen
-                appendScrollWhile { item: Int ->
-                    item < 10
+            val snapshot =
+                pager.asSnapshot {
+                    refresh() // triggers second gen
+                    appendScrollWhile { item: Int -> item < 10 }
                 }
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))
         }
     }
 
-    @Test
-    fun refreshAndPrependWhile_loadDelay0() = refreshAndPrependWhile(0)
+    @Test fun refreshAndPrependWhile_loadDelay0() = refreshAndPrependWhile(0)
 
-    @Test
-    fun refreshAndPrependWhile_loadDelay10000() = refreshAndPrependWhile(10000)
+    @Test fun refreshAndPrependWhile_loadDelay10000() = refreshAndPrependWhile(10000)
 
     private fun refreshAndPrependWhile(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay, 20).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // this prependScrollWhile does not cause paging to load more items
-                // but it helps this test register a non-null anchorPosition so the upcoming
-                // refresh doesn't start at index 0
-                prependScrollWhile { item -> item > 20 }
-                // triggers second gen
-                refresh()
-                prependScrollWhile { item: Int ->
-                    item > 12
+            val snapshot =
+                pager.asSnapshot {
+                    // this prependScrollWhile does not cause paging to load more items
+                    // but it helps this test register a non-null anchorPosition so the upcoming
+                    // refresh doesn't start at index 0
+                    prependScrollWhile { item -> item > 20 }
+                    // triggers second gen
+                    refresh()
+                    prependScrollWhile { item: Int -> item > 12 }
                 }
-            }
             // second gen initial load, anchorPos = 20, refreshKey = 18, loaded
             // initial load [18-22]
             // prefetched [15-17], [23-25]
             // prepended [12-14]
             // prefetched [9-11]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25)
+                )
         }
     }
 
-    @Test
-    fun appendWhileAndRefresh_loadDelay0() = appendWhileAndRefresh(0)
+    @Test fun appendWhileAndRefresh_loadDelay0() = appendWhileAndRefresh(0)
 
-    @Test
-    fun appendWhileAndRefresh_loadDelay10000() = appendWhileAndRefresh(10000)
+    @Test fun appendWhileAndRefresh_loadDelay10000() = appendWhileAndRefresh(10000)
 
     private fun appendWhileAndRefresh(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                appendScrollWhile { item: Int ->
-                    item < 10
+            val snapshot =
+                pager.asSnapshot {
+                    appendScrollWhile { item: Int -> item < 10 }
+                    refresh()
                 }
-                refresh()
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // second gen initial load, anchorPos = 10, refreshKey = 8
-                // initial load [8-12]
-                // prefetched [5-7], [13-15]
-                listOf(5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // second gen initial load, anchorPos = 10, refreshKey = 8
+                    // initial load [8-12]
+                    // prefetched [5-7], [13-15]
+                    listOf(5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15)
+                )
         }
     }
 
-    @Test
-    fun prependWhileAndRefresh_loadDelay0() = prependWhileAndRefresh(0)
+    @Test fun prependWhileAndRefresh_loadDelay0() = prependWhileAndRefresh(0)
 
-    @Test
-    fun prependWhileAndRefresh_loadDelay10000() = prependWhileAndRefresh(10000)
+    @Test fun prependWhileAndRefresh_loadDelay10000() = prependWhileAndRefresh(10000)
 
     private fun prependWhileAndRefresh(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val pager = createPager(dataFlow, loadDelay, 15).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                prependScrollWhile { item: Int ->
-                    item > 8
+            val snapshot =
+                pager.asSnapshot {
+                    prependScrollWhile { item: Int -> item > 8 }
+                    refresh()
                 }
-                refresh()
-            }
-            assertThat(snapshot).containsExactlyElementsIn(
-                // second gen initial load, anchorPos = 8, refreshKey = 6
-                // initial load [6-10]
-                // prefetched [3-5], [11-13]
-                listOf(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    // second gen initial load, anchorPos = 8, refreshKey = 6
+                    // initial load [6-10]
+                    // prefetched [3-5], [11-13]
+                    listOf(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13)
+                )
         }
     }
 
-    @Test
-    fun consecutiveGenerations_fromFlow_loadDelay0() = consecutiveGenerations_fromFlow(0)
+    @Test fun consecutiveGenerations_fromFlow_loadDelay0() = consecutiveGenerations_fromFlow(0)
 
     @Test
     fun consecutiveGenerations_fromFlow_loadDelay10000() = consecutiveGenerations_fromFlow(10000)
@@ -982,23 +890,17 @@
         val pager = createPagerNoPrefetch(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
             val snapshot1 = pager.asSnapshot()
-            assertThat(snapshot1).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            assertThat(snapshot1).containsExactlyElementsIn(emptyList<Int>())
 
             delay(500)
 
             val snapshot2 = pager.asSnapshot()
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4)
-            )
+            assertThat(snapshot2).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
             delay(500)
 
             val snapshot3 = pager.asSnapshot()
-            assertThat(snapshot3).containsExactlyElementsIn(
-                listOf(30, 31, 32, 33, 34)
-            )
+            assertThat(snapshot3).containsExactlyElementsIn(listOf(30, 31, 32, 33, 34))
         }
     }
 
@@ -1024,9 +926,8 @@
         testScope.runTest {
             val snapshot1 = pager.asSnapshot()
             assertWithMessage("Only the last generation should be loaded without LoadStates")
-                .that(snapshot1).containsExactlyElementsIn(
-                listOf(30, 31, 32, 33, 34, 35, 36, 37, 38, 39)
-            )
+                .that(snapshot1)
+                .containsExactlyElementsIn(listOf(30, 31, 32, 33, 34, 35, 36, 37, 38, 39))
         }
     }
 
@@ -1040,46 +941,57 @@
 
     private fun consecutiveGenerations_PagingDataFrom_withLoadStates(loadDelay: Long) {
         // wait for 500 + loadDelay between each emission
-        val pager = flow {
-            emit(PagingData.empty(LoadStates(
-                refresh = LoadState.NotLoading(true),
-                prepend = LoadState.NotLoading(true),
-                append = LoadState.NotLoading(true)
-            )))
-            delay(500 + loadDelay)
+        val pager =
+            flow {
+                    emit(
+                        PagingData.empty(
+                            LoadStates(
+                                refresh = LoadState.NotLoading(true),
+                                prepend = LoadState.NotLoading(true),
+                                append = LoadState.NotLoading(true)
+                            )
+                        )
+                    )
+                    delay(500 + loadDelay)
 
-            emit(PagingData.from(List(10) { it }, LoadStates(
-                refresh = LoadState.NotLoading(true),
-                prepend = LoadState.NotLoading(true),
-                append = LoadState.NotLoading(true)
-            )))
-            delay(500 + loadDelay)
+                    emit(
+                        PagingData.from(
+                            List(10) { it },
+                            LoadStates(
+                                refresh = LoadState.NotLoading(true),
+                                prepend = LoadState.NotLoading(true),
+                                append = LoadState.NotLoading(true)
+                            )
+                        )
+                    )
+                    delay(500 + loadDelay)
 
-            emit(PagingData.from(List(10) { it + 30 }, LoadStates(
-                refresh = LoadState.NotLoading(true),
-                prepend = LoadState.NotLoading(true),
-                append = LoadState.NotLoading(true)
-            )))
-        }.cachedIn(testScope.backgroundScope)
+                    emit(
+                        PagingData.from(
+                            List(10) { it + 30 },
+                            LoadStates(
+                                refresh = LoadState.NotLoading(true),
+                                prepend = LoadState.NotLoading(true),
+                                append = LoadState.NotLoading(true)
+                            )
+                        )
+                    )
+                }
+                .cachedIn(testScope.backgroundScope)
         testScope.runTest {
             val snapshot1 = pager.asSnapshot()
-            assertThat(snapshot1).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            assertThat(snapshot1).containsExactlyElementsIn(emptyList<Int>())
 
             delay(500 + loadDelay)
 
             val snapshot2 = pager.asSnapshot()
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
-            )
+            assertThat(snapshot2).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))
 
             delay(500 + loadDelay)
 
             val snapshot3 = pager.asSnapshot()
-            assertThat(snapshot3).containsExactlyElementsIn(
-                listOf(30, 31, 32, 33, 34, 35, 36, 37, 38, 39)
-            )
+            assertThat(snapshot3)
+                .containsExactlyElementsIn(listOf(30, 31, 32, 33, 34, 35, 36, 37, 38, 39))
         }
     }
 
@@ -1096,23 +1008,13 @@
         val pager = createPagerNoPrefetch(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
             val snapshot1 = pager.asSnapshot()
-            assertThat(snapshot1).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            assertThat(snapshot1).containsExactlyElementsIn(emptyList<Int>())
 
-            val snapshot2 = pager.asSnapshot {
-                dataFlow.emit(List(30) { it })
-            }
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4)
-            )
+            val snapshot2 = pager.asSnapshot { dataFlow.emit(List(30) { it }) }
+            assertThat(snapshot2).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
-            val snapshot3 = pager.asSnapshot {
-                dataFlow.emit(List(30) { it + 30 })
-            }
-            assertThat(snapshot3).containsExactlyElementsIn(
-                listOf(30, 31, 32, 33, 34)
-            )
+            val snapshot3 = pager.asSnapshot { dataFlow.emit(List(30) { it + 30 }) }
+            assertThat(snapshot3).containsExactlyElementsIn(listOf(30, 31, 32, 33, 34))
         }
     }
 
@@ -1130,31 +1032,21 @@
         testScope.runTest {
             dataFlow.emit(emptyList())
             val snapshot1 = pager.asSnapshot()
-            assertThat(snapshot1).containsExactlyElementsIn(
-                emptyList<Int>()
-            )
+            assertThat(snapshot1).containsExactlyElementsIn(emptyList<Int>())
 
             dataFlow.emit(List(30) { it })
             val snapshot2 = pager.asSnapshot()
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4)
-            )
+            assertThat(snapshot2).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
             dataFlow.emit(List(30) { it + 30 })
             val snapshot3 = pager.asSnapshot()
-            assertThat(snapshot3).containsExactlyElementsIn(
-                listOf(30, 31, 32, 33, 34)
-            )
+            assertThat(snapshot3).containsExactlyElementsIn(listOf(30, 31, 32, 33, 34))
         }
     }
 
-    @Test
-    fun consecutiveGenerations_nonNullRefreshKey_loadDelay0() =
-        consecutiveGenerations(0)
+    @Test fun consecutiveGenerations_nonNullRefreshKey_loadDelay0() = consecutiveGenerations(0)
 
-    @Test
-    fun consecutiveGenerations_loadDelay10000() =
-        consecutiveGenerations(10000)
+    @Test fun consecutiveGenerations_loadDelay10000() = consecutiveGenerations(10000)
 
     private fun consecutiveGenerations(loadDelay: Long) {
         val dataFlow = flow {
@@ -1167,22 +1059,17 @@
         }
         val pager = createPagerNoPrefetch(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot1 = pager.asSnapshot {
-                // we scroll to register a non-null anchorPos
-                appendScrollWhile { item: Int ->
-                    item < 5
+            val snapshot1 =
+                pager.asSnapshot {
+                    // we scroll to register a non-null anchorPos
+                    appendScrollWhile { item: Int -> item < 5 }
                 }
-            }
-            assertThat(snapshot1).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot1).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
 
             delay(1000)
             val snapshot2 = pager.asSnapshot()
             // anchorPos = 5, refreshKey = 3
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot2).containsExactlyElementsIn(listOf(3, 4, 5, 6, 7))
         }
     }
 
@@ -1203,127 +1090,172 @@
             // second gen
             emit(List(20) { it })
         }
-        val pager = createPagerNoPrefetch(dataFlow, loadDelay, 10)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPrefetch(dataFlow, loadDelay, 10).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot1 = pager.asSnapshot {
-                // we scroll to register a non-null anchorPos
-                appendScrollWhile { item: Int ->
-                    item < 15
+            val snapshot1 =
+                pager.asSnapshot {
+                    // we scroll to register a non-null anchorPos
+                    appendScrollWhile { item: Int -> item < 15 }
                 }
-            }
-            assertThat(snapshot1).containsExactlyElementsIn(
-                listOf(10, 11, 12, 13, 14, 15, 16, 17)
-            )
+            assertThat(snapshot1).containsExactlyElementsIn(listOf(10, 11, 12, 13, 14, 15, 16, 17))
 
             delay(1000)
             val snapshot2 = pager.asSnapshot()
             // anchorPos = 15, refreshKey = 13
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(13, 14, 15, 16, 17)
-            )
+            assertThat(snapshot2).containsExactlyElementsIn(listOf(13, 14, 15, 16, 17))
         }
     }
 
-    @Test
-    fun prependScroll_loadDelay0() = prependScroll(0)
+    @Test fun prependScroll_loadDelay0() = prependScroll(0)
 
-    @Test
-    fun prependScroll_loadDelay10000() = prependScroll(10000)
+    @Test fun prependScroll_loadDelay10000() = prependScroll(10000)
 
     private fun prependScroll(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(42)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(42) }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [41-46]
             // prefetched [38-40]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun prependScroll_withDrops_loadDelay0() = prependScroll_withDrops(0)
+    @Test fun prependScroll_withDrops_loadDelay0() = prependScroll_withDrops(0)
 
-    @Test
-    fun prependScroll_withDrops_loadDelay10000() = prependScroll_withDrops(10000)
+    @Test fun prependScroll_withDrops_loadDelay10000() = prependScroll_withDrops(10000)
 
     private fun prependScroll_withDrops(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithDrops(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(42)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(42) }
             // dropped [47-57]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(38, 39, 40, 41, 42, 43, 44, 45, 46)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(38, 39, 40, 41, 42, 43, 44, 45, 46))
         }
     }
 
-    @Test
-    fun prependScroll_withSeparators_loadDelay0() = prependScroll_withSeparators(0)
+    @Test fun prependScroll_withSeparators_loadDelay0() = prependScroll_withSeparators(0)
 
-    @Test
-    fun prependScroll_withSeparators_loadDelay10000() = prependScroll_withSeparators(10000)
+    @Test fun prependScroll_withSeparators_loadDelay10000() = prependScroll_withSeparators(10000)
 
     private fun prependScroll_withSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPager(dataFlow, loadDelay, 50).map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 42 || before == 49) "sep" else null
+        val pager =
+            createPager(dataFlow, loadDelay, 50).map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ ->
+                    if (before == 42 || before == 49) "sep" else null
+                }
             }
-        }
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(42)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(42) }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [41-46]
             // prefetched [38-40]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    38, 39, 40, 41, 42, "sep", 43, 44, 45, 46, 47, 48, 49, "sep", 50, 51, 52,
-                    53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        "sep",
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        "sep",
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun consecutivePrependScroll_loadDelay0() = consecutivePrependScroll(0)
+    @Test fun consecutivePrependScroll_loadDelay0() = consecutivePrependScroll(0)
 
-    @Test
-    fun consecutivePrependScroll_loadDelay10000() = consecutivePrependScroll(10000)
+    @Test fun consecutivePrependScroll_loadDelay10000() = consecutivePrependScroll(10000)
 
     private fun consecutivePrependScroll(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(42)
-                scrollTo(38)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    scrollTo(42)
+                    scrollTo(38)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [38-46]
             // prefetched [35-37]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
-                    51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -1339,34 +1271,71 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(42)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(42) }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [41-46]
             // prefetched [38-40]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
 
-            val snapshot2 = pager.asSnapshot {
-                scrollTo(38)
-            }
+            val snapshot2 = pager.asSnapshot { scrollTo(38) }
             // prefetched [35-37]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(
-                    35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
-                    51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun prependScroll_indexOutOfBounds_loadDelay0() = prependScroll_indexOutOfBounds(0)
+    @Test fun prependScroll_indexOutOfBounds_loadDelay0() = prependScroll_indexOutOfBounds(0)
 
     @Test
     fun prependScroll_indexOutOfBounds_loadDelay10000() = prependScroll_indexOutOfBounds(10000)
@@ -1375,21 +1344,17 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 5).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(-5)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(-5) }
             // ensure index is capped when no more data to load
             // initial load [5-9]
             // prefetched [2-4], [10-12]
             // scrollTo prepended [0-1]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))
         }
     }
 
-    @Test
-    fun prependScroll_accessPageBoundary_loadDelay0() = prependScroll_accessPageBoundary(0)
+    @Test fun prependScroll_accessPageBoundary_loadDelay0() = prependScroll_accessPageBoundary(0)
 
     @Test
     fun prependScroll_accessPageBoundary_loadDelay10000() = prependScroll_accessPageBoundary(10000)
@@ -1398,42 +1363,37 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(47)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(47) }
             // ensure that SnapshotLoader waited for last prefetch before returning
             // initial load [50-54]
             // prefetched [47-49], [55-57] - expect only one extra page to be prefetched after this
             // scrollTo prepended [44-46]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
+                )
         }
     }
 
-    @Test
-    fun prependScroll_withoutPrefetch_loadDelay0() = prependScroll_withoutPrefetch(0)
+    @Test fun prependScroll_withoutPrefetch_loadDelay0() = prependScroll_withoutPrefetch(0)
 
-    @Test
-    fun prependScroll_withoutPrefetch_loadDelay10000() = prependScroll_withoutPrefetch(10000)
+    @Test fun prependScroll_withoutPrefetch_loadDelay10000() = prependScroll_withoutPrefetch(10000)
 
     private fun prependScroll_withoutPrefetch(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerNoPrefetch(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(42)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(42) }
             // initial load [50-54]
             // prepended [41-49]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54)
+                )
         }
     }
 
-    @Test
-    fun prependScroll_withoutPlaceholders_loadDelay0() = prependScroll_withoutPlaceholders(0)
+    @Test fun prependScroll_withoutPlaceholders_loadDelay0() = prependScroll_withoutPlaceholders(0)
 
     @Test
     fun prependScroll_withoutPlaceholders_loadDelay10000() =
@@ -1441,19 +1401,21 @@
 
     private fun prependScroll_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                scrollTo(0)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    scrollTo(0)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [44-46]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
+                )
         }
     }
 
@@ -1467,22 +1429,40 @@
 
     private fun prependScroll_withoutPlaceholders_indexOutOfBounds(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(-5)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(-5) }
             // ensure it honors negative indices starting with index[0] = item[47]
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // scrollTo prepended [41-46]
             // prefetched [38-40]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -1496,19 +1476,16 @@
 
     private fun prependScroll_withoutPlaceholders_indexOutOfBoundsIsCapped(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 5)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 5).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(-5)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(-5) }
             // ensure index is capped when no more data to load
             // initial load [5-9]
             // prefetched [2-4], [10-12]
             // scrollTo prepended [0-1]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))
         }
     }
 
@@ -1522,27 +1499,53 @@
 
     private fun consecutivePrependScroll_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                scrollTo(-1)
-                // Without placeholders, first loaded page always starts at index[0]
-                scrollTo(-5)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    scrollTo(-1)
+                    // Without placeholders, first loaded page always starts at index[0]
+                    scrollTo(-5)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // first scrollTo prepended [41-46]
             // index[0] is now anchored to [41]
             // second scrollTo prepended [35-40]
             // prefetched [32-34]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
-                    50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        32,
+                        33,
+                        34,
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -1556,33 +1559,61 @@
 
     private fun consecutivePrependScroll_withoutPlaceholders_multiSnapshot(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                scrollTo(-1)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    scrollTo(-1)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // scrollTo prepended [44-46]
             // prefetched [41-43]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
+                )
 
-            val snapshot2 = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                scrollTo(-5)
-            }
+            val snapshot2 =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    scrollTo(-5)
+                }
             // scrollTo prepended [35-40]
             // prefetched [32-34]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(
-                    32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
-                    50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        32,
+                        33,
+                        34,
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -1596,127 +1627,144 @@
 
     private fun prependScroll_withoutPlaceholders_noPrefetchTriggered(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 4,
-                initialLoadSize = 8,
-                enablePlaceholders = false,
-                // a small prefetchDistance to prevent prefetch until we scroll to boundary
-                prefetchDistance = 1
-            ),
-            initialKey = 50,
-            pagingSourceFactory = createFactory(dataFlow, loadDelay),
-        ).flow.cachedIn(testScope.backgroundScope)
+        val pager =
+            Pager(
+                    config =
+                        PagingConfig(
+                            pageSize = 4,
+                            initialLoadSize = 8,
+                            enablePlaceholders = false,
+                            // a small prefetchDistance to prevent prefetch until we scroll to
+                            // boundary
+                            prefetchDistance = 1
+                        ),
+                    initialKey = 50,
+                    pagingSourceFactory = createFactory(dataFlow, loadDelay),
+                )
+                .flow
+                .cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                scrollTo(0)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    scrollTo(0)
+                }
             // initial load [50-57]
             // no prefetch after initial load because it didn't hit prefetch distance
             // scrollTo prepended [46-49]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57))
         }
     }
 
-    @Test
-    fun appendScroll_loadDelay0() = appendScroll(0)
+    @Test fun appendScroll_loadDelay0() = appendScroll(0)
 
-    @Test
-    fun appendScroll_loadDelay10000() = appendScroll(10000)
+    @Test fun appendScroll_loadDelay10000() = appendScroll(10000)
 
     private fun appendScroll(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(12)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
         }
     }
 
-    @Test
-    fun appendScroll_withDrops_loadDelay0() = appendScroll_withDrops(0)
+    @Test fun appendScroll_withDrops_loadDelay0() = appendScroll_withDrops(0)
 
-    @Test
-    fun appendScroll_withDrops_loadDelay10000() = appendScroll_withDrops(10000)
+    @Test fun appendScroll_withDrops_loadDelay10000() = appendScroll_withDrops(10000)
 
     private fun appendScroll_withDrops(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithDrops(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(12)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(12) }
             // dropped [0-7]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(8, 9, 10, 11, 12, 13, 14, 15, 16))
         }
     }
 
-    @Test
-    fun appendScroll_withSeparators_loadDelay0() = appendScroll_withSeparators(0)
+    @Test fun appendScroll_withSeparators_loadDelay0() = appendScroll_withSeparators(0)
 
-    @Test
-    fun appendScroll_withSeparators_loadDelay10000() = appendScroll_withSeparators(10000)
+    @Test fun appendScroll_withSeparators_loadDelay10000() = appendScroll_withSeparators(10000)
 
     private fun appendScroll_withSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPager(dataFlow, loadDelay).map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 0 || before == 14) "sep" else null
+        val pager =
+            createPager(dataFlow, loadDelay).map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ ->
+                    if (before == 0 || before == 14) "sep" else null
+                }
             }
-        }
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(12)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, "sep", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, "sep", 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, "sep", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, "sep", 15, 16)
+                )
         }
     }
 
-        @Test
-    fun consecutiveAppendScroll_loadDelay0() = consecutiveAppendScroll(0)
+    @Test fun consecutiveAppendScroll_loadDelay0() = consecutiveAppendScroll(0)
 
-    @Test
-    fun consecutiveAppendScroll_loadDelay10000() = consecutiveAppendScroll(10000)
+    @Test fun consecutiveAppendScroll_loadDelay10000() = consecutiveAppendScroll(10000)
 
     private fun consecutiveAppendScroll(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(12)
-                scrollTo(18)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    scrollTo(12)
+                    scrollTo(18)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-19]
             // prefetched [20-22]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
-                21, 22)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
+                )
         }
     }
 
-        @Test
+    @Test
     fun consecutiveAppendScroll_multiSnapshots_loadDelay0() =
         consecutiveAppendScroll_multiSnapshots(0)
 
@@ -1728,55 +1776,72 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(12)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
 
-            val snapshot2 = pager.asSnapshot {
-                scrollTo(18)
-            }
+            val snapshot2 = pager.asSnapshot { scrollTo(18) }
             // appended [17-19]
             // prefetched [20-22]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
-                    18, 19, 20, 21, 22
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun appendScroll_indexOutOfBounds_loadDelay0() = appendScroll_indexOutOfBounds(0)
+    @Test fun appendScroll_indexOutOfBounds_loadDelay0() = appendScroll_indexOutOfBounds(0)
 
-    @Test
-    fun appendScroll_indexOutOfBounds_loadDelay10000() = appendScroll_indexOutOfBounds(10000)
+    @Test fun appendScroll_indexOutOfBounds_loadDelay10000() = appendScroll_indexOutOfBounds(10000)
 
     private fun appendScroll_indexOutOfBounds(loadDelay: Long) {
         val dataFlow = flowOf(List(15) { it })
         val pager = createPager(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // index out of bounds
-                scrollTo(50)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // index out of bounds
+                    scrollTo(50)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // scrollTo appended [8-10]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))
         }
     }
 
-    @Test
-    fun appendScroll_accessPageBoundary_loadDelay0() = appendScroll_accessPageBoundary(0)
+    @Test fun appendScroll_accessPageBoundary_loadDelay0() = appendScroll_accessPageBoundary(0)
 
     @Test
     fun appendScroll_accessPageBoundary_loadDelay10000() = appendScroll_accessPageBoundary(10000)
@@ -1785,62 +1850,53 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // after initial Load and prefetch, max loaded index is 7
-                scrollTo(7)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // after initial Load and prefetch, max loaded index is 7
+                    scrollTo(7)
+                }
             // ensure that SnapshotLoader waited for last prefetch before returning
             // initial load [0-4]
             // prefetched [5-7] - expect only one extra page to be prefetched after this
             // scrollTo appended [8-10]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
         }
     }
 
-    @Test
-    fun appendScroll_withoutPrefetch_loadDelay0() = appendScroll_withoutPrefetch(0)
+    @Test fun appendScroll_withoutPrefetch_loadDelay0() = appendScroll_withoutPrefetch(0)
 
-    @Test
-    fun appendScroll_withoutPrefetch_loadDelay10000() = appendScroll_withoutPrefetch(10000)
+    @Test fun appendScroll_withoutPrefetch_loadDelay10000() = appendScroll_withoutPrefetch(10000)
 
     private fun appendScroll_withoutPrefetch(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerNoPrefetch(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(10)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(10) }
             // initial load [0-4]
             // appended [5-10]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
         }
     }
 
-    @Test
-    fun appendScroll_withoutPlaceholders_loadDelay0() = appendScroll_withoutPlaceholders(0)
+    @Test fun appendScroll_withoutPlaceholders_loadDelay0() = appendScroll_withoutPlaceholders(0)
 
     @Test
     fun appendScroll_withoutPlaceholders_loadDelay10000() = appendScroll_withoutPlaceholders(10000)
 
     private fun appendScroll_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // scroll to max loaded index
-                scrollTo(7)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // scroll to max loaded index
+                    scrollTo(7)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // scrollTo appended [8-10]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
         }
     }
 
@@ -1854,21 +1910,23 @@
 
     private fun appendScroll_withoutPlaceholders_indexOutOfBounds(loadDelay: Long) {
         val dataFlow = flowOf(List(20) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // 12 is larger than differ.size = 8 after initial refresh
-                scrollTo(12)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // 12 is larger than differ.size = 8 after initial refresh
+                    scrollTo(12)
+                }
             // ensure it honors scrollTo indices >= differ.size
             // initial load [0-4]
             // prefetched [5-7]
             // scrollTo appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
         }
     }
 
@@ -1882,19 +1940,18 @@
 
     private fun appendToScroll_withoutPlaceholders_indexOutOfBoundsIsCapped(loadDelay: Long) {
         val dataFlow = flowOf(List(20) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(50)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(50) }
             // ensure index is still capped to max index available
             // initial load [0-4]
             // prefetched [5-7]
             // scrollTo appended [8-19]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
+                )
         }
     }
 
@@ -1908,22 +1965,47 @@
 
     private fun consecutiveAppendScroll_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(12)
-                scrollTo(17)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    scrollTo(12)
+                    scrollTo(17)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // first scrollTo appended [8-13]
             // second scrollTo appended [14-19]
             // prefetched [19-22]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
-                21, 22)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
+                )
         }
     }
 
@@ -1937,32 +2019,53 @@
 
     private fun consecutiveAppendScroll_withoutPlaceholders_multiSnapshot(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(12)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // scrollTo appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
 
-            val snapshot2 = pager.asSnapshot {
-                scrollTo(17)
-            }
+            val snapshot2 = pager.asSnapshot { scrollTo(17) }
             // initial load [0-4]
             // prefetched [5-7]
             // first scrollTo appended [8-13]
             // second scrollTo appended [14-19]
             // prefetched [19-22]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
-                    21, 22)
-            )
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
+                )
         }
     }
 
@@ -1976,135 +2079,178 @@
     private fun scrollTo_indexAccountsForSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay)
-        val pagerWithSeparator = pager.map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 6) "sep" else null
+        val pagerWithSeparator =
+            pager.map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ -> if (before == 6) "sep" else null }
             }
-        }
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(8)
-            }
+            val snapshot = pager.asSnapshot { scrollTo(8) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-10]
             // prefetched [11-13]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))
 
-            val snapshotWithSeparator = pagerWithSeparator.asSnapshot {
-                scrollTo(8)
-            }
+            val snapshotWithSeparator = pagerWithSeparator.asSnapshot { scrollTo(8) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-10]
             // no prefetch on [11-13] because separator fulfilled prefetchDistance
-            assertThat(snapshotWithSeparator).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, "sep", 7, 8, 9, 10)
-            )
+            assertThat(snapshotWithSeparator)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, "sep", 7, 8, 9, 10))
         }
     }
 
-    @Test
-    fun prependFling_loadDelay0() = prependFling(0)
+    @Test fun prependFling_loadDelay0() = prependFling(0)
 
-    @Test
-    fun prependFling_loadDelay10000() = prependFling(10000)
+    @Test fun prependFling_loadDelay10000() = prependFling(10000)
 
     private fun prependFling(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(42)
-            }
+            val snapshot = pager.asSnapshot { flingTo(42) }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [41-46]
             // prefetched [38-40]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun prependFling_withDrops_loadDelay0() = prependFling_withDrops(0)
+    @Test fun prependFling_withDrops_loadDelay0() = prependFling_withDrops(0)
 
-    @Test
-    fun prependFling_withDrops_loadDelay10000() = prependFling_withDrops(10000)
+    @Test fun prependFling_withDrops_loadDelay10000() = prependFling_withDrops(10000)
 
     private fun prependFling_withDrops(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithDrops(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(42)
-            }
+            val snapshot = pager.asSnapshot { flingTo(42) }
             // dropped [47-57]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(38, 39, 40, 41, 42, 43, 44, 45, 46)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(38, 39, 40, 41, 42, 43, 44, 45, 46))
         }
     }
 
-    @Test
-    fun prependFling_withSeparators_loadDelay0() = prependFling_withSeparators(0)
+    @Test fun prependFling_withSeparators_loadDelay0() = prependFling_withSeparators(0)
 
-    @Test
-    fun prependFling_withSeparators_loadDelay10000() = prependFling_withSeparators(10000)
+    @Test fun prependFling_withSeparators_loadDelay10000() = prependFling_withSeparators(10000)
 
     private fun prependFling_withSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPager(dataFlow, loadDelay, 50).map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 42 || before == 49) "sep" else null
+        val pager =
+            createPager(dataFlow, loadDelay, 50).map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ ->
+                    if (before == 42 || before == 49) "sep" else null
+                }
             }
-        }
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(42)
-            }
+            val snapshot = pager.asSnapshot { flingTo(42) }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [41-46]
             // prefetched [38-40]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    38, 39, 40, 41, 42, "sep", 43, 44, 45, 46, 47, 48, 49, "sep", 50, 51, 52,
-                    53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        "sep",
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        "sep",
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun consecutivePrependFling_loadDelay0() = consecutivePrependFling(0)
+    @Test fun consecutivePrependFling_loadDelay0() = consecutivePrependFling(0)
 
-    @Test
-    fun consecutivePrependFling_loadDelay10000() = consecutivePrependFling(10000)
+    @Test fun consecutivePrependFling_loadDelay10000() = consecutivePrependFling(10000)
 
     private fun consecutivePrependFling(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(42)
-                flingTo(38)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    flingTo(42)
+                    flingTo(38)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [38-46]
             // prefetched [35-37]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
-                    51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -2120,126 +2266,156 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(42)
-            }
+            val snapshot = pager.asSnapshot { flingTo(42) }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [41-46]
             // prefetched [38-40]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
 
-            val snapshot2 = pager.asSnapshot {
-                flingTo(38)
-            }
+            val snapshot2 = pager.asSnapshot { flingTo(38) }
             // prefetched [35-37]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(
-                    35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
-                    51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun prependFling_jump_loadDelay0() = prependFling_jump(0)
+    @Test fun prependFling_jump_loadDelay0() = prependFling_jump(0)
 
-    @Test
-    fun prependFling_jump_loadDelay10000() = prependFling_jump(10000)
+    @Test fun prependFling_jump_loadDelay10000() = prependFling_jump(10000)
 
     private fun prependFling_jump(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithJump(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(30)
-                // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    flingTo(30)
+                    // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
+                }
             // initial load [28-32]
             // prefetched [25-27], [33-35]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35))
         }
     }
 
-    @Test
-    fun prependFling_scrollThenJump_loadDelay0() = prependFling_scrollThenJump(0)
+    @Test fun prependFling_scrollThenJump_loadDelay0() = prependFling_scrollThenJump(0)
 
-    @Test
-    fun prependFling_scrollThenJump_loadDelay10000() = prependFling_scrollThenJump(10000)
+    @Test fun prependFling_scrollThenJump_loadDelay10000() = prependFling_scrollThenJump(10000)
 
     private fun prependFling_scrollThenJump(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithJump(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(43)
-                flingTo(30)
-                // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    scrollTo(43)
+                    flingTo(30)
+                    // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
+                }
             // initial load [28-32]
             // prefetched [25-27], [33-35]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35))
         }
     }
 
-    @Test
-    fun prependFling_jumpThenFling_loadDelay0() = prependFling_jumpThenFling(0)
+    @Test fun prependFling_jumpThenFling_loadDelay0() = prependFling_jumpThenFling(0)
 
-    @Test
-    fun prependFling_jumpThenFling_loadDelay10000() = prependFling_jumpThenFling(10000)
+    @Test fun prependFling_jumpThenFling_loadDelay10000() = prependFling_jumpThenFling(10000)
 
     private fun prependFling_jumpThenFling(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithJump(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(30)
-                // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
-                flingTo(22)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    flingTo(30)
+                    // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
+                    flingTo(22)
+                }
             // initial load [28-32]
             // prefetched [25-27], [33-35]
             // flingTo prepended [22-24]
             // prefetched [19-21]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35)
+                )
         }
     }
 
-    @Test
-    fun prependFling_indexOutOfBounds_loadDelay0() = prependFling_indexOutOfBounds(0)
+    @Test fun prependFling_indexOutOfBounds_loadDelay0() = prependFling_indexOutOfBounds(0)
 
-    @Test
-    fun prependFling_indexOutOfBounds_loadDelay10000() = prependFling_indexOutOfBounds(10000)
+    @Test fun prependFling_indexOutOfBounds_loadDelay10000() = prependFling_indexOutOfBounds(10000)
 
     private fun prependFling_indexOutOfBounds(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 10)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(-3)
-            }
+            val snapshot = pager.asSnapshot { flingTo(-3) }
             // initial load [10-14]
             // prefetched [7-9], [15-17]
             // flingTo prepended [0-6]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)
+                )
         }
     }
 
-    @Test
-    fun prependFling_accessPageBoundary_loadDelay0() = prependFling_accessPageBoundary(0)
+    @Test fun prependFling_accessPageBoundary_loadDelay0() = prependFling_accessPageBoundary(0)
 
     @Test
     fun prependFling_accessPageBoundary_loadDelay10000() = prependFling_accessPageBoundary(10000)
@@ -2248,42 +2424,45 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // page boundary
-                flingTo(44)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // page boundary
+                    flingTo(44)
+                }
             // ensure that SnapshotLoader waited for last prefetch before returning
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [44-46] - expect only one extra page to be prefetched after this
             // prefetched [41-43]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
+                )
         }
     }
 
-    @Test
-    fun prependFling_withoutPlaceholders_loadDelay0() = prependFling_withoutPlaceholders(0)
+    @Test fun prependFling_withoutPlaceholders_loadDelay0() = prependFling_withoutPlaceholders(0)
 
     @Test
     fun prependFling_withoutPlaceholders_loadDelay10000() = prependFling_withoutPlaceholders(10000)
 
     private fun prependFling_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                flingTo(0)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    flingTo(0)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [44-46]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
+                )
         }
     }
 
@@ -2299,20 +2478,40 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(-8)
-            }
+            val snapshot = pager.asSnapshot { flingTo(-8) }
             // ensure we honor negative indices if there is data to load
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // prepended [38-46]
             // prefetched [35-37]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
-                    54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -2326,19 +2525,16 @@
 
     private fun prependFling_withoutPlaceholders_indexOutOfBoundsIsCapped(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 5)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 5).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(-20)
-            }
+            val snapshot = pager.asSnapshot { flingTo(-20) }
             // ensure index is capped when no more data to load
             // initial load [5-9]
             // prefetched [2-4], [10-12]
             // flingTo prepended [0-1]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))
         }
     }
 
@@ -2352,27 +2548,53 @@
 
     private fun consecutivePrependFling_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                flingTo(-1)
-                // Without placeholders, first loaded page always starts at index[0]
-                flingTo(-5)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    flingTo(-1)
+                    // Without placeholders, first loaded page always starts at index[0]
+                    flingTo(-5)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // first flingTo prepended [41-46]
             // index[0] is now anchored to [41]
             // second flingTo prepended [35-40]
             // prefetched [32-34]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(
-                    32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
-                    50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        32,
+                        33,
+                        34,
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -2386,33 +2608,61 @@
 
     private fun consecutivePrependFling_withoutPlaceholders_multiSnapshot(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay, 50)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay, 50).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                flingTo(-1)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    flingTo(-1)
+                }
             // initial load [50-54]
             // prefetched [47-49], [55-57]
             // flingTo prepended [44-46]
             // prefetched [41-43]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57)
+                )
 
-            val snapshot2 = pager.asSnapshot {
-                // Without placeholders, first loaded page always starts at index[0]
-                flingTo(-5)
-            }
+            val snapshot2 =
+                pager.asSnapshot {
+                    // Without placeholders, first loaded page always starts at index[0]
+                    flingTo(-5)
+                }
             // flingTo prepended [35-40]
             // prefetched [32-34]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(
-                    32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
-                    50, 51, 52, 53, 54, 55, 56, 57
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        32,
+                        33,
+                        34,
+                        35,
+                        36,
+                        37,
+                        38,
+                        39,
+                        40,
+                        41,
+                        42,
+                        43,
+                        44,
+                        45,
+                        46,
+                        47,
+                        48,
+                        49,
+                        50,
+                        51,
+                        52,
+                        53,
+                        54,
+                        55,
+                        56,
+                        57
+                    )
                 )
-            )
         }
     }
 
@@ -2427,123 +2677,136 @@
     private fun prependFling_withoutPlaceholders_indexPrecision(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         // load sizes and prefetch set to 1 to test precision of flingTo indexing
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 1,
-                initialLoadSize = 1,
-                enablePlaceholders = false,
-                prefetchDistance = 1
-            ),
-            initialKey = 50,
-            pagingSourceFactory = createFactory(dataFlow, loadDelay),
-        )
+        val pager =
+            Pager(
+                config =
+                    PagingConfig(
+                        pageSize = 1,
+                        initialLoadSize = 1,
+                        enablePlaceholders = false,
+                        prefetchDistance = 1
+                    ),
+                initialKey = 50,
+                pagingSourceFactory = createFactory(dataFlow, loadDelay),
+            )
         testScope.runTest {
-            val snapshot = pager.flow.asSnapshot {
-                // after refresh, lastAccessedIndex == index[2] == item(9)
-                flingTo(-1)
-            }
+            val snapshot =
+                pager.flow.asSnapshot {
+                    // after refresh, lastAccessedIndex == index[2] == item(9)
+                    flingTo(-1)
+                }
             // initial load [50]
             // prefetched [49], [51]
             // prepended [48]
             // prefetched [47]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(47, 48, 49, 50, 51)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(47, 48, 49, 50, 51))
         }
     }
 
-    @Test
-    fun appendFling_loadDelay0() = appendFling(0)
+    @Test fun appendFling_loadDelay0() = appendFling(0)
 
-    @Test
-    fun appendFling_loadDelay10000() = appendFling(10000)
+    @Test fun appendFling_loadDelay10000() = appendFling(10000)
 
     private fun appendFling(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(12)
-            }
+            val snapshot = pager.asSnapshot { flingTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
         }
     }
 
-    @Test
-    fun appendFling_withDrops_loadDelay0() = appendFling_withDrops(0)
+    @Test fun appendFling_withDrops_loadDelay0() = appendFling_withDrops(0)
 
-    @Test
-    fun appendFling_withDrops_loadDelay10000() = appendFling_withDrops(10000)
+    @Test fun appendFling_withDrops_loadDelay10000() = appendFling_withDrops(10000)
 
     private fun appendFling_withDrops(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithDrops(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(12)
-            }
+            val snapshot = pager.asSnapshot { flingTo(12) }
             // dropped [0-7]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(8, 9, 10, 11, 12, 13, 14, 15, 16))
         }
     }
 
-    @Test
-    fun appendFling_withSeparators_loadDelay0() = appendFling_withSeparators(0)
+    @Test fun appendFling_withSeparators_loadDelay0() = appendFling_withSeparators(0)
 
-    @Test
-    fun appendFling_withSeparators_loadDelay10000() = appendFling_withSeparators(10000)
+    @Test fun appendFling_withSeparators_loadDelay10000() = appendFling_withSeparators(10000)
 
     private fun appendFling_withSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPager(dataFlow, loadDelay).map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 0 || before == 14) "sep" else null
+        val pager =
+            createPager(dataFlow, loadDelay).map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ ->
+                    if (before == 0 || before == 14) "sep" else null
+                }
             }
-        }
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(12)
-            }
+            val snapshot = pager.asSnapshot { flingTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, "sep", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, "sep", 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, "sep", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, "sep", 15, 16)
+                )
         }
     }
 
-    @Test
-    fun consecutiveAppendFling_loadDelay0() = consecutiveAppendFling(0)
+    @Test fun consecutiveAppendFling_loadDelay0() = consecutiveAppendFling(0)
 
-    @Test
-    fun consecutiveAppendFling_loadDelay10000() = consecutiveAppendFling(10000)
+    @Test fun consecutiveAppendFling_loadDelay10000() = consecutiveAppendFling(10000)
 
     private fun consecutiveAppendFling(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(12)
-                flingTo(18)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    flingTo(12)
+                    flingTo(18)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-19]
             // prefetched [20-22]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
-                    21, 22)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
+                )
         }
     }
 
@@ -2559,125 +2822,138 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(12)
-            }
+            val snapshot = pager.asSnapshot { flingTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
 
-            val snapshot2 = pager.asSnapshot {
-                flingTo(18)
-            }
+            val snapshot2 = pager.asSnapshot { flingTo(18) }
             // appended [17-19]
             // prefetched [20-22]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
-                    18, 19, 20, 21, 22
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
                 )
-            )
         }
     }
 
-    @Test
-    fun appendFling_jump_loadDelay0() = appendFling_jump(0)
+    @Test fun appendFling_jump_loadDelay0() = appendFling_jump(0)
 
-    @Test
-    fun appendFling_jump_loadDelay10000() = appendFling_jump(10000)
+    @Test fun appendFling_jump_loadDelay10000() = appendFling_jump(10000)
 
     private fun appendFling_jump(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithJump(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(30)
-                // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    flingTo(30)
+                    // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
+                }
             // initial load [28-32]
             // prefetched [25-27], [33-35]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35))
         }
     }
 
-    @Test
-    fun appendFling_scrollThenJump_loadDelay0() = appendFling_scrollThenJump(0)
+    @Test fun appendFling_scrollThenJump_loadDelay0() = appendFling_scrollThenJump(0)
 
-    @Test
-    fun appendFling_scrollThenJump_loadDelay10000() = appendFling_scrollThenJump(10000)
+    @Test fun appendFling_scrollThenJump_loadDelay10000() = appendFling_scrollThenJump(10000)
 
     private fun appendFling_scrollThenJump(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithJump(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                scrollTo(30)
-                flingTo(43)
-                // jump triggered when flingTo registered lastAccessedIndex[43], refreshKey[41]
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    scrollTo(30)
+                    flingTo(43)
+                    // jump triggered when flingTo registered lastAccessedIndex[43], refreshKey[41]
+                }
             // initial load [41-45]
             // prefetched [38-40], [46-48]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48))
         }
     }
 
-    @Test
-    fun appendFling_jumpThenFling_loadDelay0() = appendFling_jumpThenFling(0)
+    @Test fun appendFling_jumpThenFling_loadDelay0() = appendFling_jumpThenFling(0)
 
-    @Test
-    fun appendFling_jumpThenFling_loadDelay10000() = appendFling_jumpThenFling(10000)
+    @Test fun appendFling_jumpThenFling_loadDelay10000() = appendFling_jumpThenFling(10000)
 
     private fun appendFling_jumpThenFling(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         val pager = createPagerWithJump(dataFlow, loadDelay)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(30)
-                // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
-                flingTo(38)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    flingTo(30)
+                    // jump triggered when flingTo registered lastAccessedIndex[30], refreshKey[28]
+                    flingTo(38)
+                }
             // initial load [28-32]
             // prefetched [25-27], [33-35]
             // flingTo appended [36-38]
             // prefetched [39-41]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41)
+                )
         }
     }
 
-    @Test
-    fun appendFling_indexOutOfBounds_loadDelay0() = appendFling_indexOutOfBounds(0)
+    @Test fun appendFling_indexOutOfBounds_loadDelay0() = appendFling_indexOutOfBounds(0)
 
-    @Test
-    fun appendFling_indexOutOfBounds_loadDelay10000() = appendFling_indexOutOfBounds(10000)
+    @Test fun appendFling_indexOutOfBounds_loadDelay10000() = appendFling_indexOutOfBounds(10000)
 
     private fun appendFling_indexOutOfBounds(loadDelay: Long) {
         val dataFlow = flowOf(List(15) { it })
         val pager = createPager(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // index out of bounds
-                flingTo(50)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // index out of bounds
+                    flingTo(50)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // flingTo appended [8-10]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))
         }
     }
 
-    @Test
-    fun appendFling_accessPageBoundary_loadDelay0() = appendFling_accessPageBoundary(0)
+    @Test fun appendFling_accessPageBoundary_loadDelay0() = appendFling_accessPageBoundary(0)
 
     @Test
     fun appendFling_accessPageBoundary_loadDelay10000() = appendFling_accessPageBoundary(10000)
@@ -2686,41 +2962,38 @@
         val dataFlow = flowOf(List(100) { it })
         val pager = createPager(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // after initial Load and prefetch, max loaded index is 7
-                flingTo(7)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // after initial Load and prefetch, max loaded index is 7
+                    flingTo(7)
+                }
             // ensure that SnapshotLoader waited for last prefetch before returning
             // initial load [0-4]
             // prefetched [5-7] - expect only one extra page to be prefetched after this
             // flingTo appended [8-10]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
         }
     }
 
-    @Test
-    fun appendFling_withoutPlaceholders_loadDelay0() = appendFling_withoutPlaceholders(0)
+    @Test fun appendFling_withoutPlaceholders_loadDelay0() = appendFling_withoutPlaceholders(0)
 
     @Test
     fun appendFling_withoutPlaceholders_loadDelay10000() = appendFling_withoutPlaceholders(10000)
 
     private fun appendFling_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // scroll to max loaded index
-                flingTo(7)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // scroll to max loaded index
+                    flingTo(7)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // flingTo appended [8-10]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
         }
     }
 
@@ -2734,21 +3007,23 @@
 
     private fun appendFling_withoutPlaceholders_indexOutOfBounds(loadDelay: Long) {
         val dataFlow = flowOf(List(20) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                // 12 is larger than differ.size = 8 after initial refresh
-                flingTo(12)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    // 12 is larger than differ.size = 8 after initial refresh
+                    flingTo(12)
+                }
             // ensure it honors scrollTo indices >= differ.size
             // initial load [0-4]
             // prefetched [5-7]
             // flingTo appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
         }
     }
 
@@ -2762,19 +3037,18 @@
 
     private fun appendFling_withoutPlaceholders_indexOutOfBoundsIsCapped(loadDelay: Long) {
         val dataFlow = flowOf(List(20) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(50)
-            }
+            val snapshot = pager.asSnapshot { flingTo(50) }
             // ensure index is still capped to max index available
             // initial load [0-4]
             // prefetched [5-7]
             // flingTo appended [8-19]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19)
+                )
         }
     }
 
@@ -2788,22 +3062,47 @@
 
     private fun consecutiveAppendFling_withoutPlaceholders(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(12)
-                flingTo(17)
-            }
+            val snapshot =
+                pager.asSnapshot {
+                    flingTo(12)
+                    flingTo(17)
+                }
             // initial load [0-4]
             // prefetched [5-7]
             // first flingTo appended [8-13]
             // second flingTo appended [14-19]
             // prefetched [19-22]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
-                    21, 22)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
+                )
         }
     }
 
@@ -2817,32 +3116,53 @@
 
     private fun consecutiveAppendFling_withoutPlaceholders_multiSnapshot(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPagerNoPlaceholders(dataFlow, loadDelay)
-            .cachedIn(testScope.backgroundScope)
+        val pager =
+            createPagerNoPlaceholders(dataFlow, loadDelay).cachedIn(testScope.backgroundScope)
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(12)
-            }
+            val snapshot = pager.asSnapshot { flingTo(12) }
             // initial load [0-4]
             // prefetched [5-7]
             // flingTo appended [8-13]
             // prefetched [14-16]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
-            )
+            assertThat(snapshot)
+                .containsExactlyElementsIn(
+                    listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
+                )
 
-            val snapshot2 = pager.asSnapshot {
-                flingTo(17)
-            }
+            val snapshot2 = pager.asSnapshot { flingTo(17) }
             // initial load [0-4]
             // prefetched [5-7]
             // first flingTo appended [8-13]
             // second flingTo appended [14-19]
             // prefetched [19-22]
-            assertThat(snapshot2).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
-                    21, 22)
-            )
+            assertThat(snapshot2)
+                .containsExactlyElementsIn(
+                    listOf(
+                        0,
+                        1,
+                        2,
+                        3,
+                        4,
+                        5,
+                        6,
+                        7,
+                        8,
+                        9,
+                        10,
+                        11,
+                        12,
+                        13,
+                        14,
+                        15,
+                        16,
+                        17,
+                        18,
+                        19,
+                        20,
+                        21,
+                        22
+                    )
+                )
         }
     }
 
@@ -2857,27 +3177,28 @@
     private fun appendFling_withoutPlaceholders_indexPrecision(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
         // load sizes and prefetch set to 1 to test precision of flingTo indexing
-        val pager = Pager(
-            config = PagingConfig(
-                pageSize = 1,
-                initialLoadSize = 1,
-                enablePlaceholders = false,
-                prefetchDistance = 1
-            ),
-            pagingSourceFactory = createFactory(dataFlow, loadDelay),
-        )
+        val pager =
+            Pager(
+                config =
+                    PagingConfig(
+                        pageSize = 1,
+                        initialLoadSize = 1,
+                        enablePlaceholders = false,
+                        prefetchDistance = 1
+                    ),
+                pagingSourceFactory = createFactory(dataFlow, loadDelay),
+            )
         testScope.runTest {
-            val snapshot = pager.flow.asSnapshot {
-                // after refresh, lastAccessedIndex == index[2] == item(9)
-                flingTo(2)
-            }
+            val snapshot =
+                pager.flow.asSnapshot {
+                    // after refresh, lastAccessedIndex == index[2] == item(9)
+                    flingTo(2)
+                }
             // initial load [0]
             // prefetched [1]
             // appended [2]
             // prefetched [3]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3))
         }
     }
 
@@ -2890,188 +3211,174 @@
 
     private fun flingTo_indexAccountsForSeparators(loadDelay: Long) {
         val dataFlow = flowOf(List(100) { it })
-        val pager = createPager(
-            dataFlow,
-            PagingConfig(
-                pageSize = 1,
-                initialLoadSize = 1,
-                prefetchDistance = 1
-            ),
-            loadDelay,
-            50
-        )
-        val pagerWithSeparator = pager.map { pagingData ->
-            pagingData.insertSeparators { before: Int?, _ ->
-                if (before == 49) "sep" else null
+        val pager =
+            createPager(
+                dataFlow,
+                PagingConfig(pageSize = 1, initialLoadSize = 1, prefetchDistance = 1),
+                loadDelay,
+                50
+            )
+        val pagerWithSeparator =
+            pager.map { pagingData ->
+                pagingData.insertSeparators { before: Int?, _ -> if (before == 49) "sep" else null }
             }
-        }
         testScope.runTest {
-            val snapshot = pager.asSnapshot {
-                flingTo(51)
-            }
+            val snapshot = pager.asSnapshot { flingTo(51) }
             // initial load [50]
             // prefetched [49], [51]
             // flingTo [51] accessed item[51]prefetched [52]
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(49, 50, 51, 52)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(49, 50, 51, 52))
 
-            val snapshotWithSeparator = pagerWithSeparator.asSnapshot {
-                flingTo(51)
-            }
+            val snapshotWithSeparator = pagerWithSeparator.asSnapshot { flingTo(51) }
             // initial load [50]
             // prefetched [49], [51]
             // flingTo [51] accessed item[50], no prefetch triggered
-            assertThat(snapshotWithSeparator).containsExactlyElementsIn(
-                listOf(49, "sep", 50, 51)
-            )
+            assertThat(snapshotWithSeparator).containsExactlyElementsIn(listOf(49, "sep", 50, 51))
         }
     }
 
-    @Test
-    fun errorHandler_throw_loadDelay0() = errorHandler_throw(0)
+    @Test fun errorHandler_throw_loadDelay0() = errorHandler_throw(0)
 
-    @Test
-    fun errorHandler_throw_loadDelay10000() = errorHandler_throw(10000)
+    @Test fun errorHandler_throw_loadDelay10000() = errorHandler_throw(10000)
 
     private fun errorHandler_throw(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val factory = createFactory(dataFlow, loadDelay)
         val pagingSources = mutableListOf<TestPagingSource>()
-        val pager = Pager(
-            config = PagingConfig(pageSize = 3, initialLoadSize = 5),
-            pagingSourceFactory = {
-                factory.invoke().also { pagingSources.add(it as TestPagingSource) }
-            },
-        ).flow
+        val pager =
+            Pager(
+                    config = PagingConfig(pageSize = 3, initialLoadSize = 5),
+                    pagingSourceFactory = {
+                        factory.invoke().also { pagingSources.add(it as TestPagingSource) }
+                    },
+                )
+                .flow
         testScope.runTest {
-            val error = assertFailsWith(IllegalArgumentException::class) {
-                pager.asSnapshot(onError = { ErrorRecovery.THROW }) {
-                    val source = pagingSources.first()
-                    source.errorOnNextLoad = true
-                    scrollTo(12)
+            val error =
+                assertFailsWith(IllegalArgumentException::class) {
+                    pager.asSnapshot(onError = { ErrorRecovery.THROW }) {
+                        val source = pagingSources.first()
+                        source.errorOnNextLoad = true
+                        scrollTo(12)
+                    }
                 }
-            }
             assertThat(error.message).isEqualTo("PagingSource load error")
         }
     }
 
-    @Test
-    fun errorHandler_retry_loadDelay0() = errorHandler_retry(0)
+    @Test fun errorHandler_retry_loadDelay0() = errorHandler_retry(0)
 
-    @Test
-    fun errorHandler_retry_loadDelay10000() = errorHandler_retry(10000)
+    @Test fun errorHandler_retry_loadDelay10000() = errorHandler_retry(10000)
 
     private fun errorHandler_retry(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val factory = createFactory(dataFlow, loadDelay)
         val pagingSources = mutableListOf<TestPagingSource>()
-        val pager = Pager(
-            config = PagingConfig(pageSize = 3, initialLoadSize = 5),
-            pagingSourceFactory = {
-                factory.invoke().also { pagingSources.add(it as TestPagingSource) }
-            },
-        ).flow
+        val pager =
+            Pager(
+                    config = PagingConfig(pageSize = 3, initialLoadSize = 5),
+                    pagingSourceFactory = {
+                        factory.invoke().also { pagingSources.add(it as TestPagingSource) }
+                    },
+                )
+                .flow
         testScope.runTest {
-            val snapshot = pager.asSnapshot(onError = { ErrorRecovery.RETRY }) {
-                val source = pagingSources.first()
-                // should have two loads to far - refresh and append(prefetch)
-                assertThat(source.loads.size).isEqualTo(2)
+            val snapshot =
+                pager.asSnapshot(onError = { ErrorRecovery.RETRY }) {
+                    val source = pagingSources.first()
+                    // should have two loads to far - refresh and append(prefetch)
+                    assertThat(source.loads.size).isEqualTo(2)
 
-                // throw error on next load, should trigger a retry
-                source.errorOnNextLoad = true
-                scrollTo(7)
+                    // throw error on next load, should trigger a retry
+                    source.errorOnNextLoad = true
+                    scrollTo(7)
 
-                // make sure it did retry
-                assertThat(source.loads.size).isEqualTo(4)
-                // failed load
-                val failedLoad = source.loads[2]
-                assertThat(failedLoad is LoadParams.Append).isTrue()
-                assertThat(failedLoad.key).isEqualTo(8)
-                // retry load
-                val retryLoad = source.loads[3]
-                assertThat(retryLoad is LoadParams.Append).isTrue()
-                assertThat(retryLoad.key).isEqualTo(8)
-            }
+                    // make sure it did retry
+                    assertThat(source.loads.size).isEqualTo(4)
+                    // failed load
+                    val failedLoad = source.loads[2]
+                    assertThat(failedLoad is LoadParams.Append).isTrue()
+                    assertThat(failedLoad.key).isEqualTo(8)
+                    // retry load
+                    val retryLoad = source.loads[3]
+                    assertThat(retryLoad is LoadParams.Append).isTrue()
+                    assertThat(retryLoad.key).isEqualTo(8)
+                }
             // retry success
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
         }
     }
 
-    @Test
-    fun errorHandler_retryFails_loadDelay0() = errorHandler_retryFails(0)
+    @Test fun errorHandler_retryFails_loadDelay0() = errorHandler_retryFails(0)
 
-    @Test
-    fun errorHandler_retryFails_loadDelay10000() = errorHandler_retryFails(10000)
+    @Test fun errorHandler_retryFails_loadDelay10000() = errorHandler_retryFails(10000)
 
     private fun errorHandler_retryFails(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val factory = createFactory(dataFlow, loadDelay)
         val pagingSources = mutableListOf<TestPagingSource>()
-        val pager = Pager(
-            config = PagingConfig(pageSize = 3, initialLoadSize = 5),
-            pagingSourceFactory = {
-                factory.invoke().also { pagingSources.add(it as TestPagingSource) }
-            },
-        ).flow
+        val pager =
+            Pager(
+                    config = PagingConfig(pageSize = 3, initialLoadSize = 5),
+                    pagingSourceFactory = {
+                        factory.invoke().also { pagingSources.add(it as TestPagingSource) }
+                    },
+                )
+                .flow
         var retryCount = 0
         testScope.runTest {
-            val snapshot = pager.asSnapshot(
-                onError = {
-                    // retry twice
-                    if (retryCount < 2) {
-                        retryCount++
-                        ErrorRecovery.RETRY
-                    } else {
-                        ErrorRecovery.RETURN_CURRENT_SNAPSHOT
+            val snapshot =
+                pager.asSnapshot(
+                    onError = {
+                        // retry twice
+                        if (retryCount < 2) {
+                            retryCount++
+                            ErrorRecovery.RETRY
+                        } else {
+                            ErrorRecovery.RETURN_CURRENT_SNAPSHOT
+                        }
                     }
+                ) {
+                    val source = pagingSources.first()
+                    // should have two loads to far - refresh and append(prefetch)
+                    assertThat(source.loads.size).isEqualTo(2)
+
+                    source.errorOnLoads = true
+                    scrollTo(8)
+
+                    // additional failed load + two retries
+                    assertThat(source.loads.size).isEqualTo(5)
                 }
-            ) {
-                val source = pagingSources.first()
-                // should have two loads to far - refresh and append(prefetch)
-                assertThat(source.loads.size).isEqualTo(2)
-
-                source.errorOnLoads = true
-                scrollTo(8)
-
-                // additional failed load + two retries
-                assertThat(source.loads.size).isEqualTo(5)
-            }
             // retry failed, returned existing snapshot
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
         }
     }
 
-    @Test
-    fun errorHandler_returnSnapshot_loadDelay0() = errorHandler_returnSnapshot(0)
+    @Test fun errorHandler_returnSnapshot_loadDelay0() = errorHandler_returnSnapshot(0)
 
-    @Test
-    fun errorHandler_returnSnapshot_loadDelay10000() = errorHandler_returnSnapshot(10000)
+    @Test fun errorHandler_returnSnapshot_loadDelay10000() = errorHandler_returnSnapshot(10000)
 
     private fun errorHandler_returnSnapshot(loadDelay: Long) {
         val dataFlow = flowOf(List(30) { it })
         val factory = createFactory(dataFlow, loadDelay)
         val pagingSources = mutableListOf<TestPagingSource>()
-        val pager = Pager(
-            config = PagingConfig(pageSize = 3, initialLoadSize = 5),
-            pagingSourceFactory = {
-                factory.invoke().also { pagingSources.add(it as TestPagingSource) }
-            },
-        ).flow
+        val pager =
+            Pager(
+                    config = PagingConfig(pageSize = 3, initialLoadSize = 5),
+                    pagingSourceFactory = {
+                        factory.invoke().also { pagingSources.add(it as TestPagingSource) }
+                    },
+                )
+                .flow
         testScope.runTest {
-            val snapshot = pager.asSnapshot(onError = { ErrorRecovery.RETURN_CURRENT_SNAPSHOT }) {
-                val source = pagingSources.first()
-                source.errorOnNextLoad = true
-                scrollTo(12)
-            }
+            val snapshot =
+                pager.asSnapshot(onError = { ErrorRecovery.RETURN_CURRENT_SNAPSHOT }) {
+                    val source = pagingSources.first()
+                    source.errorOnNextLoad = true
+                    scrollTo(12)
+                }
             // snapshot items before scrollTo
-            assertThat(snapshot).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4, 5, 6, 7)
-            )
+            assertThat(snapshot).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
         }
     }
 
@@ -3085,10 +3392,11 @@
 
     private fun createPager(data: List<Int>, loadDelay: Long, initialKey: Int = 0) =
         Pager(
-            PagingConfig(pageSize = 3, initialLoadSize = 5),
-            initialKey,
-            createSingleGenFactory(data, loadDelay),
-        ).flow
+                PagingConfig(pageSize = 3, initialLoadSize = 5),
+                initialKey,
+                createSingleGenFactory(data, loadDelay),
+            )
+            .flow
 
     private fun createPagerNoPlaceholders(
         dataFlow: Flow<List<Int>>,
@@ -3104,7 +3412,8 @@
                 prefetchDistance = 3
             ),
             loadDelay,
-            initialKey)
+            initialKey
+        )
 
     private fun createPagerNoPrefetch(
         dataFlow: Flow<List<Int>>,
@@ -3147,11 +3456,13 @@
         config: PagingConfig,
         loadDelay: Long,
         initialKey: Int = 0,
-    ) = Pager(
-            config = config,
-            initialKey = initialKey,
-            pagingSourceFactory = createFactory(dataFlow, loadDelay),
-        ).flow
+    ) =
+        Pager(
+                config = config,
+                initialKey = initialKey,
+                pagingSourceFactory = createFactory(dataFlow, loadDelay),
+            )
+            .flow
 }
 
 private class WrappedPagingSourceFactory(
@@ -3173,10 +3484,9 @@
         get() = _loads.toList()
 
     init {
-        originalSource.registerInvalidatedCallback {
-            invalidate()
-        }
+        originalSource.registerInvalidatedCallback { invalidate() }
     }
+
     override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Int> {
         delay(loadDelay)
         _loads.add(params)
diff --git a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceFactoryTest.kt b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceFactoryTest.kt
index 0419b4f..c6fbae8 100644
--- a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceFactoryTest.kt
+++ b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceFactoryTest.kt
@@ -37,10 +37,7 @@
 class StaticListPagingSourceFactoryTest {
 
     private val testScope = TestScope(UnconfinedTestDispatcher())
-    private val CONFIG = PagingConfig(
-        pageSize = 3,
-        initialLoadSize = 5
-    )
+    private val CONFIG = PagingConfig(pageSize = 3, initialLoadSize = 5)
 
     @Test
     fun emptyFlow() {
@@ -57,214 +54,194 @@
 
     @Test
     fun simpleCollect_singleGen() {
-        val flow = flowOf(
-            List(20) { it }
-        )
+        val flow = flowOf(List(20) { it })
 
-        val factory: PagingSourceFactory<Int, Int> =
-            flow.asPagingSourceFactory(testScope)
+        val factory: PagingSourceFactory<Int, Int> = flow.asPagingSourceFactory(testScope)
         val pagingSource = factory()
         val pager = TestPager(CONFIG, pagingSource)
 
         runTest {
             val result = pager.refresh() as Page
-            assertThat(result.data).containsExactlyElementsIn(
-                listOf(0, 1, 2, 3, 4)
-            )
+            assertThat(result.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
         }
     }
 
     @Test
-    fun simpleCollect_multiGeneration() = testScope.runTest {
-        val flow = flow {
-            emit(List(20) { it }) // first gen
-            delay(1500)
-            emit(List(15) { it + 30 }) // second gen
+    fun simpleCollect_multiGeneration() =
+        testScope.runTest {
+            val flow = flow {
+                emit(List(20) { it }) // first gen
+                delay(1500)
+                emit(List(15) { it + 30 }) // second gen
+            }
+
+            val factory: PagingSourceFactory<Int, Int> = flow.asPagingSourceFactory(testScope)
+
+            advanceTimeBy(1000)
+
+            // first gen
+            val pagingSource1 = factory()
+            val pager1 = TestPager(CONFIG, pagingSource1)
+            val result1 = pager1.refresh() as Page
+            assertThat(result1.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
+
+            // second list emits -- this should invalidate original pagingSource and trigger new gen
+            advanceUntilIdle()
+
+            assertThat(pagingSource1.invalid).isTrue()
+
+            // second gen
+            val pagingSource2 = factory()
+            val pager2 = TestPager(CONFIG, pagingSource2)
+            val result2 = pager2.refresh() as Page
+            assertThat(result2.data).containsExactlyElementsIn(listOf(30, 31, 32, 33, 34))
         }
 
-        val factory: PagingSourceFactory<Int, Int> =
-            flow.asPagingSourceFactory(testScope)
+    @Test
+    fun collection_cancellation() =
+        testScope.runTest {
+            val mutableFlow = MutableSharedFlow<List<Int>>()
+            val collectionScope = this.backgroundScope
 
-        advanceTimeBy(1000)
+            val factory: PagingSourceFactory<Int, Int> =
+                mutableFlow.asPagingSourceFactory(collectionScope)
 
-        // first gen
-        val pagingSource1 = factory()
-        val pager1 = TestPager(CONFIG, pagingSource1)
-        val result1 = pager1.refresh() as Page
-        assertThat(result1.data).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4)
-        )
+            mutableFlow.emit(List(10) { it })
 
-        // second list emits -- this should invalidate original pagingSource and trigger new gen
-        advanceUntilIdle()
+            advanceUntilIdle()
 
-        assertThat(pagingSource1.invalid).isTrue()
+            val pagingSource = factory()
+            val pager = TestPager(CONFIG, pagingSource)
+            val result = pager.refresh() as Page
+            assertThat(result.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
-        // second gen
-        val pagingSource2 = factory()
-        val pager2 = TestPager(CONFIG, pagingSource2)
-        val result2 = pager2.refresh() as Page
-        assertThat(result2.data).containsExactlyElementsIn(
-            listOf(30, 31, 32, 33, 34)
-        )
-    }
+            // cancel collection scope inside the pagingSourceFactory
+            collectionScope.cancel()
+
+            mutableFlow.emit(List(10) { it })
+
+            advanceUntilIdle()
+
+            // new list should not be collected, meaning the previous generation should still be
+            // valid
+            assertThat(pagingSource.invalid).isFalse()
+        }
 
     @Test
-    fun collection_cancellation() = testScope.runTest {
-        val mutableFlow = MutableSharedFlow<List<Int>>()
-        val collectionScope = this.backgroundScope
+    fun multipleFactories_fromSameFlow() =
+        testScope.runTest {
+            val mutableFlow = MutableSharedFlow<List<Int>>()
 
-        val factory: PagingSourceFactory<Int, Int> =
-            mutableFlow.asPagingSourceFactory(collectionScope)
+            val factory1: PagingSourceFactory<Int, Int> =
+                mutableFlow.asPagingSourceFactory(testScope.backgroundScope)
 
-        mutableFlow.emit(List(10) { it })
+            val factory2: PagingSourceFactory<Int, Int> =
+                mutableFlow.asPagingSourceFactory(testScope.backgroundScope)
 
-        advanceUntilIdle()
+            mutableFlow.emit(List(10) { it })
 
-        val pagingSource = factory()
-        val pager = TestPager(CONFIG, pagingSource)
-        val result = pager.refresh() as Page
-        assertThat(result.data).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4)
-        )
+            advanceUntilIdle()
 
-        // cancel collection scope inside the pagingSourceFactory
-        collectionScope.cancel()
+            // factory 1 first gen
+            val pagingSource = factory1()
+            val pager = TestPager(CONFIG, pagingSource)
+            val result = pager.refresh() as Page
+            assertThat(result.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
-        mutableFlow.emit(List(10) { it })
+            // factory 2 first gen
+            val pagingSource2 = factory2()
+            val pager2 = TestPager(CONFIG, pagingSource2)
+            val result2 = pager2.refresh() as Page
+            assertThat(result2.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
-        advanceUntilIdle()
+            // trigger second generation
+            mutableFlow.emit(List(10) { it + 30 })
 
-        // new list should not be collected, meaning the previous generation should still be valid
-        assertThat(pagingSource.invalid).isFalse()
-    }
+            advanceUntilIdle()
+
+            assertThat(pagingSource.invalid).isTrue()
+            assertThat(pagingSource2.invalid).isTrue()
+
+            // factory 1 second gen
+            val pagingSource3 = factory1()
+            val pager3 = TestPager(CONFIG, pagingSource3)
+            val result3 = pager3.refresh() as Page
+            assertThat(result3.data).containsExactlyElementsIn(listOf(30, 31, 32, 33, 34))
+
+            // factory 2 second gen
+            val pagingSource4 = factory2()
+            val pager4 = TestPager(CONFIG, pagingSource4)
+            val result4 = pager4.refresh() as Page
+            assertThat(result4.data).containsExactlyElementsIn(listOf(30, 31, 32, 33, 34))
+        }
 
     @Test
-    fun multipleFactories_fromSameFlow() = testScope.runTest {
-        val mutableFlow = MutableSharedFlow<List<Int>>()
+    fun singleListFactory_refresh() =
+        testScope.runTest {
+            val data = List(20) { it }
+            val factory = data.asPagingSourceFactory()
 
-        val factory1: PagingSourceFactory<Int, Int> =
-            mutableFlow.asPagingSourceFactory(testScope.backgroundScope)
+            val pagingSource1 = factory()
+            val pager1 = TestPager(CONFIG, pagingSource1)
+            val refresh1 = pager1.refresh() as Page
+            assertThat(refresh1.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
-        val factory2: PagingSourceFactory<Int, Int> =
-            mutableFlow.asPagingSourceFactory(testScope.backgroundScope)
-
-        mutableFlow.emit(List(10) { it })
-
-        advanceUntilIdle()
-
-        // factory 1 first gen
-        val pagingSource = factory1()
-        val pager = TestPager(CONFIG, pagingSource)
-        val result = pager.refresh() as Page
-        assertThat(result.data).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4)
-        )
-
-        // factory 2 first gen
-        val pagingSource2 = factory2()
-        val pager2 = TestPager(CONFIG, pagingSource2)
-        val result2 = pager2.refresh() as Page
-        assertThat(result2.data).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4)
-        )
-
-        // trigger second generation
-        mutableFlow.emit(List(10) { it + 30 })
-
-        advanceUntilIdle()
-
-        assertThat(pagingSource.invalid).isTrue()
-        assertThat(pagingSource2.invalid).isTrue()
-
-        // factory 1 second gen
-        val pagingSource3 = factory1()
-        val pager3 = TestPager(CONFIG, pagingSource3)
-        val result3 = pager3.refresh() as Page
-        assertThat(result3.data).containsExactlyElementsIn(
-            listOf(30, 31, 32, 33, 34)
-        )
-
-        // factory 2 second gen
-        val pagingSource4 = factory2()
-        val pager4 = TestPager(CONFIG, pagingSource4)
-        val result4 = pager4.refresh() as Page
-        assertThat(result4.data).containsExactlyElementsIn(
-            listOf(30, 31, 32, 33, 34)
-        )
-    }
+            val pagingSource2 = factory()
+            val pager2 = TestPager(CONFIG, pagingSource2)
+            val refresh2 = pager2.refresh() as Page
+            assertThat(refresh2.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
+        }
 
     @Test
-    fun singleListFactory_refresh() = testScope.runTest {
-        val data = List(20) { it }
-        val factory = data.asPagingSourceFactory()
+    fun singleListFactory_empty() =
+        testScope.runTest {
+            val data = emptyList<Int>()
+            val factory = data.asPagingSourceFactory()
 
-        val pagingSource1 = factory()
-        val pager1 = TestPager(CONFIG, pagingSource1)
-        val refresh1 = pager1.refresh() as Page
-        assertThat(refresh1.data).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4)
-        )
+            val pagingSource1 = factory()
+            val pager1 = TestPager(CONFIG, pagingSource1)
+            val refresh1 = pager1.refresh() as Page
+            assertThat(refresh1.data).isEmpty()
 
-        val pagingSource2 = factory()
-        val pager2 = TestPager(CONFIG, pagingSource2)
-        val refresh2 = pager2.refresh() as Page
-        assertThat(refresh2.data).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4)
-        )
-    }
+            val pagingSource2 = factory()
+            val pager2 = TestPager(CONFIG, pagingSource2)
+            val refresh2 = pager2.refresh() as Page
+            assertThat(refresh2.data).isEmpty()
+        }
 
     @Test
-    fun singleListFactory_empty() = testScope.runTest {
-        val data = emptyList<Int>()
-        val factory = data.asPagingSourceFactory()
+    fun singleListFactory_append() =
+        testScope.runTest {
+            val data = List(20) { it }
+            val factory = data.asPagingSourceFactory()
+            val pagingSource1 = factory()
+            val pager1 = TestPager(CONFIG, pagingSource1)
 
-        val pagingSource1 = factory()
-        val pager1 = TestPager(CONFIG, pagingSource1)
-        val refresh1 = pager1.refresh() as Page
-        assertThat(refresh1.data).isEmpty()
+            pager1.refresh() as Page
+            pager1.append()
+            assertThat(pager1.getPages().flatMap { it.data })
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7))
 
-        val pagingSource2 = factory()
-        val pager2 = TestPager(CONFIG, pagingSource2)
-        val refresh2 = pager2.refresh() as Page
-        assertThat(refresh2.data).isEmpty()
-    }
+            pager1.append()
+            assertThat(pager1.getPages().flatMap { it.data })
+                .containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
+        }
 
     @Test
-    fun singleListFactory_append() = testScope.runTest {
-        val data = List(20) { it }
-        val factory = data.asPagingSourceFactory()
-        val pagingSource1 = factory()
-        val pager1 = TestPager(CONFIG, pagingSource1)
+    fun singleListFactory_prepend() =
+        testScope.runTest {
+            val data = List(20) { it }
+            val factory = data.asPagingSourceFactory()
+            val pagingSource1 = factory()
+            val pager1 = TestPager(CONFIG, pagingSource1)
 
-        pager1.refresh() as Page
-        pager1.append()
-        assertThat(pager1.getPages().flatMap { it.data }).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4, 5, 6, 7)
-        )
+            pager1.refresh(initialKey = 10) as Page
+            pager1.prepend()
+            assertThat(pager1.getPages().flatMap { it.data })
+                .containsExactlyElementsIn(listOf(7, 8, 9, 10, 11, 12, 13, 14))
 
-        pager1.append()
-        assertThat(pager1.getPages().flatMap { it.data }).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
-        )
-    }
-
-    @Test
-    fun singleListFactory_prepend() = testScope.runTest {
-        val data = List(20) { it }
-        val factory = data.asPagingSourceFactory()
-        val pagingSource1 = factory()
-        val pager1 = TestPager(CONFIG, pagingSource1)
-
-        pager1.refresh(initialKey = 10) as Page
-        pager1.prepend()
-        assertThat(pager1.getPages().flatMap { it.data }).containsExactlyElementsIn(
-            listOf(7, 8, 9, 10, 11, 12, 13, 14)
-        )
-
-        pager1.prepend()
-        assertThat(pager1.getPages().flatMap { it.data }).containsExactlyElementsIn(
-            listOf(4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14)
-        )
-    }
+            pager1.prepend()
+            assertThat(pager1.getPages().flatMap { it.data })
+                .containsExactlyElementsIn(listOf(4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))
+        }
 }
diff --git a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceTest.kt b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceTest.kt
index ae8ce3b..1d6964d 100644
--- a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceTest.kt
+++ b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/StaticListPagingSourceTest.kt
@@ -26,88 +26,86 @@
 class StaticListPagingSourceTest {
 
     private val DATA = List(100) { it }
-    private val CONFIG = PagingConfig(
-        pageSize = 3,
-        initialLoadSize = 5,
-    )
+    private val CONFIG =
+        PagingConfig(
+            pageSize = 3,
+            initialLoadSize = 5,
+        )
 
     @Test
     fun refresh() = runPagingSourceTest { _, pager ->
         val result = pager.refresh() as LoadResult.Page
-        assertThat(result).isEqualTo(
-            LoadResult.Page(
-                data = listOf(0, 1, 2, 3, 4),
-                prevKey = null,
-                nextKey = 5,
-                itemsBefore = 0,
-                itemsAfter = 95
+        assertThat(result)
+            .isEqualTo(
+                LoadResult.Page(
+                    data = listOf(0, 1, 2, 3, 4),
+                    prevKey = null,
+                    nextKey = 5,
+                    itemsBefore = 0,
+                    itemsAfter = 95
+                )
             )
-        )
     }
 
     @Test
-    fun refresh_withEmptyData() = runPagingSourceTest(StaticListPagingSource(emptyList())) {
-            _, pager ->
-
-        val result = pager.refresh() as LoadResult.Page
-        assertThat(result).isEqualTo(
-            LoadResult.Page(
-                data = emptyList(),
-                prevKey = null,
-                nextKey = null,
-                itemsBefore = 0,
-                itemsAfter = 0
-            )
-        )
-    }
+    fun refresh_withEmptyData() =
+        runPagingSourceTest(StaticListPagingSource(emptyList())) { _, pager ->
+            val result = pager.refresh() as LoadResult.Page
+            assertThat(result)
+                .isEqualTo(
+                    LoadResult.Page(
+                        data = emptyList(),
+                        prevKey = null,
+                        nextKey = null,
+                        itemsBefore = 0,
+                        itemsAfter = 0
+                    )
+                )
+        }
 
     @Test
     fun refresh_initialKey() = runPagingSourceTest { _, pager ->
         val result = pager.refresh(initialKey = 20) as LoadResult.Page
-        assertThat(result).isEqualTo(
-            LoadResult.Page(
-                data = listOf(20, 21, 22, 23, 24),
-                prevKey = 19,
-                nextKey = 25,
-                itemsBefore = 20,
-                itemsAfter = 75
+        assertThat(result)
+            .isEqualTo(
+                LoadResult.Page(
+                    data = listOf(20, 21, 22, 23, 24),
+                    prevKey = 19,
+                    nextKey = 25,
+                    itemsBefore = 20,
+                    itemsAfter = 75
+                )
             )
-        )
     }
 
     @Test
-    fun refresh_initialKey_withEmptyData() = runPagingSourceTest(
-        StaticListPagingSource(emptyList())
-    ) { _, pager ->
-
-        val result = pager.refresh(initialKey = 20) as LoadResult.Page
-        assertThat(result).isEqualTo(
-            LoadResult.Page(
-                data = emptyList(),
-                prevKey = null,
-                nextKey = null,
-                itemsBefore = 0,
-                itemsAfter = 0
-            )
-        )
-    }
+    fun refresh_initialKey_withEmptyData() =
+        runPagingSourceTest(StaticListPagingSource(emptyList())) { _, pager ->
+            val result = pager.refresh(initialKey = 20) as LoadResult.Page
+            assertThat(result)
+                .isEqualTo(
+                    LoadResult.Page(
+                        data = emptyList(),
+                        prevKey = null,
+                        nextKey = null,
+                        itemsBefore = 0,
+                        itemsAfter = 0
+                    )
+                )
+        }
 
     @Test
     fun refresh_negativeKeyClippedToZero() = runPagingSourceTest { _, pager ->
         val result = pager.refresh(initialKey = -1) as LoadResult.Page
         // loads first page
-        assertThat(result).isEqualTo(
-            listOf(0, 1, 2, 3, 4).asPage()
-        )
+        assertThat(result).isEqualTo(listOf(0, 1, 2, 3, 4).asPage())
     }
 
     @Test
     fun refresh_KeyLargerThanDataSize_loadsLastPage() = runPagingSourceTest { _, pager ->
         val result = pager.refresh(initialKey = 140) as LoadResult.Page
         // loads last page
-        assertThat(result).isEqualTo(
-            listOf(95, 96, 97, 98, 99).asPage()
-        )
+        assertThat(result).isEqualTo(listOf(95, 96, 97, 98, 99).asPage())
     }
 
     @Test
@@ -116,24 +114,26 @@
             refresh()
             append()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                LoadResult.Page(
-                    data = listOf(0, 1, 2, 3, 4),
-                    prevKey = null,
-                    nextKey = 5,
-                    itemsBefore = 0,
-                    itemsAfter = 95
-                ),
-                LoadResult.Page(
-                    data = listOf(5, 6, 7),
-                    prevKey = 4,
-                    nextKey = 8,
-                    itemsBefore = 5,
-                    itemsAfter = 92
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    LoadResult.Page(
+                        data = listOf(0, 1, 2, 3, 4),
+                        prevKey = null,
+                        nextKey = 5,
+                        itemsBefore = 0,
+                        itemsAfter = 95
+                    ),
+                    LoadResult.Page(
+                        data = listOf(5, 6, 7),
+                        prevKey = 4,
+                        nextKey = 8,
+                        itemsBefore = 5,
+                        itemsAfter = 92
+                    )
                 )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -144,31 +144,35 @@
             append()
             append()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(0, 1, 2, 3, 4).asPage(),
-                listOf(5, 6, 7).asPage(),
-                listOf(8, 9, 10).asPage(),
-                listOf(11, 12, 13).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(0, 1, 2, 3, 4).asPage(),
+                    listOf(5, 6, 7).asPage(),
+                    listOf(8, 9, 10).asPage(),
+                    listOf(11, 12, 13).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
     fun append_loadSizeLargerThanAvailableData() = runPagingSourceTest { _, pager ->
-        val result = pager.run {
-            refresh(initialKey = 94)
-            append() as LoadResult.Page
-        }
-        assertThat(result).isEqualTo(
-            LoadResult.Page(
-                data = listOf(99),
-                prevKey = 98,
-                nextKey = null,
-                itemsBefore = 99,
-                itemsAfter = 0
+        val result =
+            pager.run {
+                refresh(initialKey = 94)
+                append() as LoadResult.Page
+            }
+        assertThat(result)
+            .isEqualTo(
+                LoadResult.Page(
+                    data = listOf(99),
+                    prevKey = 98,
+                    nextKey = null,
+                    itemsBefore = 99,
+                    itemsAfter = 0
+                )
             )
-        )
     }
 
     @Test
@@ -177,24 +181,26 @@
             refresh(20)
             prepend()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                LoadResult.Page(
-                    data = listOf(17, 18, 19),
-                    prevKey = 16,
-                    nextKey = 20,
-                    itemsBefore = 17,
-                    itemsAfter = 80
-                ),
-                LoadResult.Page(
-                    data = listOf(20, 21, 22, 23, 24),
-                    prevKey = 19,
-                    nextKey = 25,
-                    itemsBefore = 20,
-                    itemsAfter = 75
-                ),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    LoadResult.Page(
+                        data = listOf(17, 18, 19),
+                        prevKey = 16,
+                        nextKey = 20,
+                        itemsBefore = 17,
+                        itemsAfter = 80
+                    ),
+                    LoadResult.Page(
+                        data = listOf(20, 21, 22, 23, 24),
+                        prevKey = 19,
+                        nextKey = 25,
+                        itemsBefore = 20,
+                        itemsAfter = 75
+                    ),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -205,31 +211,35 @@
             prepend()
             prepend()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(41, 42, 43).asPage(),
-                listOf(44, 45, 46).asPage(),
-                listOf(47, 48, 49).asPage(),
-                listOf(50, 51, 52, 53, 54).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(41, 42, 43).asPage(),
+                    listOf(44, 45, 46).asPage(),
+                    listOf(47, 48, 49).asPage(),
+                    listOf(50, 51, 52, 53, 54).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
     fun prepend_loadSizeLargerThanAvailableData() = runPagingSourceTest { _, pager ->
-        val result = pager.run {
-            refresh(initialKey = 2)
-            prepend()
-        }
-        assertThat(result).isEqualTo(
-            LoadResult.Page(
-                data = listOf(0, 1),
-                prevKey = null,
-                nextKey = 2,
-                itemsBefore = 0,
-                itemsAfter = 98
+        val result =
+            pager.run {
+                refresh(initialKey = 2)
+                prepend()
+            }
+        assertThat(result)
+            .isEqualTo(
+                LoadResult.Page(
+                    data = listOf(0, 1),
+                    prevKey = null,
+                    nextKey = 2,
+                    itemsBefore = 0,
+                    itemsAfter = 98
+                )
             )
-        )
     }
 
     @Test
@@ -240,12 +250,13 @@
 
     @Test
     fun refreshKey() = runPagingSourceTest { pagingSource, pager ->
-        val state = pager.run {
-            refresh() // [0, 1, 2, 3, 4]
-            append() // [5, 6, 7]
-            // the anchorPos should be 7
-            getPagingState(anchorPosition = 7)
-        }
+        val state =
+            pager.run {
+                refresh() // [0, 1, 2, 3, 4]
+                append() // [5, 6, 7]
+                // the anchorPos should be 7
+                getPagingState(anchorPosition = 7)
+            }
 
         val refreshKey = pagingSource.getRefreshKey(state)
         val expected = 7 - (CONFIG.initialLoadSize / 2)
@@ -255,11 +266,12 @@
 
     @Test
     fun refreshKey_negativeKeyClippedToZero() = runPagingSourceTest { pagingSource, pager ->
-        val state = pager.run {
-            refresh(2) // [2, 3, 4, 5, 6]
-            prepend() // [0, 1]
-            getPagingState(anchorPosition = 1)
-        }
+        val state =
+            pager.run {
+                refresh(2) // [2, 3, 4, 5, 6]
+                prepend() // [0, 1]
+                getPagingState(anchorPosition = 1)
+            }
         // before clipping, refreshKey = 1 - (CONFIG.initialLoadSize / 2) = -1
         val refreshKey = pagingSource.getRefreshKey(state)
         assertThat(refreshKey).isEqualTo(0)
@@ -271,9 +283,7 @@
         pager: TestPager<Int, Int> = TestPager(CONFIG, source),
         block: suspend (pagingSource: PagingSource<Int, Int>, pager: TestPager<Int, Int>) -> Unit
     ) {
-        runTest {
-            block(source, pager)
-        }
+        runTest { block(source, pager) }
     }
 
     private fun List<Int>.asPage(): LoadResult.Page<Int, Int> {
@@ -281,12 +291,12 @@
         val indexEnd = lastOrNull()
         return LoadResult.Page(
             data = this,
-            prevKey = indexStart?.let {
-                if (indexStart <= 0 || isEmpty()) null else indexStart - 1
-            },
-            nextKey = indexEnd?.let {
-                if (indexEnd >= DATA.lastIndex || isEmpty()) null else indexEnd + 1
-            },
+            prevKey =
+                indexStart?.let { if (indexStart <= 0 || isEmpty()) null else indexStart - 1 },
+            nextKey =
+                indexEnd?.let {
+                    if (indexEnd >= DATA.lastIndex || isEmpty()) null else indexEnd + 1
+                },
             itemsBefore = indexStart ?: -1,
             itemsAfter = if (indexEnd == null) -1 else DATA.lastIndex - indexEnd
         )
diff --git a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/TestPagerTest.kt b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/TestPagerTest.kt
index b534856..53c69eb 100644
--- a/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/TestPagerTest.kt
+++ b/paging/paging-testing/src/commonTest/kotlin/androidx/paging/testing/TestPagerTest.kt
@@ -108,10 +108,11 @@
         val pager = TestPager(CONFIG, source)
 
         runTest {
-            val page: LoadResult.Page<Int, Int>? = pager.run {
-                refresh()
-                getLastLoadedPage()
-            }
+            val page: LoadResult.Page<Int, Int>? =
+                pager.run {
+                    refresh()
+                    getLastLoadedPage()
+                }
             assertThat(page).isNotNull()
             assertThat(page?.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4)).inOrder()
         }
@@ -123,13 +124,14 @@
         val pager = TestPager(CONFIG, source)
 
         runTest {
-            val page = pager.run {
-                refresh()
-                append() // page should be this appended page
-                source.invalidate()
-                assertTrue(source.invalid)
-                getLastLoadedPage()
-            }
+            val page =
+                pager.run {
+                    refresh()
+                    append() // page should be this appended page
+                    source.invalidate()
+                    assertTrue(source.invalid)
+                    getLastLoadedPage()
+                }
             assertThat(page).isNotNull()
             assertThat(page?.data).containsExactlyElementsIn(listOf(5, 6, 7)).inOrder()
         }
@@ -141,16 +143,15 @@
         val pager = TestPager(CONFIG, source)
 
         runTest {
-            val pages = pager.run {
-                refresh()
-                getPages()
-            }
+            val pages =
+                pager.run {
+                    refresh()
+                    getPages()
+                }
             assertThat(pages).hasSize(1)
-            assertThat(pages).containsExactlyElementsIn(
-                listOf(
-                    listOf(0, 1, 2, 3, 4).asPage()
-                )
-            ).inOrder()
+            assertThat(pages)
+                .containsExactlyElementsIn(listOf(listOf(0, 1, 2, 3, 4).asPage()))
+                .inOrder()
         }
     }
 
@@ -163,14 +164,16 @@
             refresh(20)
             prepend()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                // prepend
-                listOf(17, 18, 19).asPage(),
-                // refresh
-                listOf(20, 21, 22, 23, 24).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    // prepend
+                    listOf(17, 18, 19).asPage(),
+                    // refresh
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -187,19 +190,19 @@
         val pager = TestPager(CONFIG, source)
 
         runTest {
-            val pages = pager.run {
-                refresh()
-                append()
-                source.invalidate()
-                assertTrue(source.invalid)
-                getPages()
-            }
-            assertThat(pages).containsExactlyElementsIn(
-                listOf(
-                    listOf(0, 1, 2, 3, 4).asPage(),
-                    listOf(5, 6, 7).asPage()
+            val pages =
+                pager.run {
+                    refresh()
+                    append()
+                    source.invalidate()
+                    assertTrue(source.invalid)
+                    getPages()
+                }
+            assertThat(pages)
+                .containsExactlyElementsIn(
+                    listOf(listOf(0, 1, 2, 3, 4).asPage(), listOf(5, 6, 7).asPage())
                 )
-            ).inOrder()
+                .inOrder()
         }
     }
 
@@ -218,30 +221,35 @@
         }
         job.start()
         assertTrue(job.isActive)
-        val pages2 = pager.run {
-            delay(200) // let launch start first
-            append() // second
-            prepend() // fourth
-            getPages() // sixth
-        }
+        val pages2 =
+            pager.run {
+                delay(200) // let launch start first
+                append() // second
+                prepend() // fourth
+                getPages() // sixth
+            }
 
         advanceUntilIdle()
-        assertThat(pages).containsExactlyElementsIn(
-            listOf(
-                // should contain first and second load
-                listOf(20, 21, 22, 23, 24).asPage(), // refresh
-                listOf(25, 26, 27).asPage(), // append
+        assertThat(pages)
+            .containsExactlyElementsIn(
+                listOf(
+                    // should contain first and second load
+                    listOf(20, 21, 22, 23, 24).asPage(), // refresh
+                    listOf(25, 26, 27).asPage(), // append
+                )
             )
-        ).inOrder()
-        assertThat(pages2).containsExactlyElementsIn(
-            // should contain all loads
-            listOf(
-                listOf(14, 15, 16).asPage(),
-                listOf(17, 18, 19).asPage(),
-                listOf(20, 21, 22, 23, 24).asPage(),
-                listOf(25, 26, 27).asPage(),
+            .inOrder()
+        assertThat(pages2)
+            .containsExactlyElementsIn(
+                // should contain all loads
+                listOf(
+                    listOf(14, 15, 16).asPage(),
+                    listOf(17, 18, 19).asPage(),
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    listOf(25, 26, 27).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -269,9 +277,7 @@
         val pager1 = TestPager(CONFIG, source1)
 
         // first gen
-        val result1 = pager1.run {
-            refresh()
-        } as LoadResult.Page
+        val result1 = pager1.run { refresh() } as LoadResult.Page
 
         assertThat(result1.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4)).inOrder()
 
@@ -279,9 +285,7 @@
         val source2 = TestPagingSource()
         val pager2 = TestPager(CONFIG, source2)
 
-        val result2 = pager2.run {
-            refresh()
-        } as LoadResult.Page
+        val result2 = pager2.run { refresh() } as LoadResult.Page
 
         assertThat(result2.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4)).inOrder()
     }
@@ -291,18 +295,18 @@
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
 
-        val result = pager.run {
-            refresh(null)
-            append()
-        } as LoadResult.Page
+        val result =
+            pager.run {
+                refresh(null)
+                append()
+            } as LoadResult.Page
 
         assertThat(result.data).containsExactlyElementsIn(listOf(5, 6, 7)).inOrder()
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(0, 1, 2, 3, 4).asPage(),
-                listOf(5, 6, 7).asPage()
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(listOf(0, 1, 2, 3, 4).asPage(), listOf(5, 6, 7).asPage())
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -310,39 +314,38 @@
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
 
-        val result = pager.run {
-            refresh(30)
-            prepend()
-        } as LoadResult.Page
+        val result =
+            pager.run {
+                refresh(30)
+                prepend()
+            } as LoadResult.Page
 
         assertThat(result.data).containsExactlyElementsIn(listOf(27, 28, 29)).inOrder()
         // prepended pages should be inserted before refresh
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                // prepend
-                listOf(27, 28, 29).asPage(),
-                // refresh
-                listOf(30, 31, 32, 33, 34).asPage()
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    // prepend
+                    listOf(27, 28, 29).asPage(),
+                    // refresh
+                    listOf(30, 31, 32, 33, 34).asPage()
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
     fun append_beforeRefresh_throws() = runTest {
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
-        assertFailsWith<IllegalStateException> {
-            pager.append()
-        }
+        assertFailsWith<IllegalStateException> { pager.append() }
     }
 
     @Test
     fun prepend_beforeRefresh_throws() = runTest {
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
-        assertFailsWith<IllegalStateException> {
-            pager.prepend()
-        }
+        assertFailsWith<IllegalStateException> { pager.prepend() }
     }
 
     @Test
@@ -350,14 +353,15 @@
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
 
-        val result = pager.run {
-            refresh()
-            source.invalidate()
-            assertThat(source.invalid).isTrue()
-            // simulate a PagingSource which returns LoadResult.Invalid when it's invalidated
-            source.nextLoadResult = LoadResult.Invalid()
-            append()
-        }
+        val result =
+            pager.run {
+                refresh()
+                source.invalidate()
+                assertThat(source.invalid).isTrue()
+                // simulate a PagingSource which returns LoadResult.Invalid when it's invalidated
+                source.nextLoadResult = LoadResult.Invalid()
+                append()
+            }
         assertThat(result).isInstanceOf<LoadResult.Invalid<Int, Int>>()
     }
 
@@ -366,14 +370,15 @@
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
 
-        val result = pager.run {
-            refresh(initialKey = 20)
-            source.invalidate()
-            assertThat(source.invalid).isTrue()
-            // simulate a PagingSource which returns LoadResult.Invalid when it's invalidated
-            source.nextLoadResult = LoadResult.Invalid()
-            prepend()
-        }
+        val result =
+            pager.run {
+                refresh(initialKey = 20)
+                source.invalidate()
+                assertThat(source.invalid).isTrue()
+                // simulate a PagingSource which returns LoadResult.Invalid when it's invalidated
+                source.nextLoadResult = LoadResult.Invalid()
+                prepend()
+            }
         assertThat(result).isInstanceOf<LoadResult.Invalid<Int, Int>>()
     }
 
@@ -388,13 +393,15 @@
             append()
         } as LoadResult.Page
 
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(20, 21, 22, 23, 24).asPage(),
-                listOf(25, 26, 27).asPage(),
-                listOf(28, 29, 30).asPage()
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    listOf(25, 26, 27).asPage(),
+                    listOf(28, 29, 30).asPage()
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -409,16 +416,18 @@
         } as LoadResult.Page
 
         // prepended pages should be ordered before the refresh
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                // 2nd prepend
-                listOf(14, 15, 16).asPage(),
-                // 1st prepend
-                listOf(17, 18, 19).asPage(),
-                // refresh
-                listOf(20, 21, 22, 23, 24).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    // 2nd prepend
+                    listOf(14, 15, 16).asPage(),
+                    // 1st prepend
+                    listOf(17, 18, 19).asPage(),
+                    // refresh
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -432,16 +441,18 @@
             prepend()
         } as LoadResult.Page
 
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                // prepend
-                listOf(17, 18, 19).asPage(),
-                // refresh
-                listOf(20, 21, 22, 23, 24).asPage(),
-                // append
-                listOf(25, 26, 27).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    // prepend
+                    listOf(17, 18, 19).asPage(),
+                    // refresh
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    // append
+                    listOf(25, 26, 27).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -455,16 +466,18 @@
             append()
         } as LoadResult.Page
 
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                // prepend
-                listOf(17, 18, 19).asPage(),
-                // refresh
-                listOf(20, 21, 22, 23, 24).asPage(),
-                // append
-                listOf(25, 26, 27).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    // prepend
+                    listOf(17, 18, 19).asPage(),
+                    // refresh
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    // append
+                    listOf(25, 26, 27).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -494,15 +507,17 @@
 
         advanceUntilIdle()
         assertThat(loadOrder).containsExactlyElementsIn(listOf(1, 2, 3, 4, 5)).inOrder()
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(14, 15, 16).asPage(),
-                listOf(17, 18, 19).asPage(),
-                listOf(20, 21, 22, 23, 24).asPage(),
-                listOf(25, 26, 27).asPage(),
-                listOf(28, 29, 30).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(14, 15, 16).asPage(),
+                    listOf(17, 18, 19).asPage(),
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    listOf(25, 26, 27).asPage(),
+                    listOf(28, 29, 30).asPage(),
+                )
             )
-        ).inOrder()
+            .inOrder()
     }
 
     @Test
@@ -526,31 +541,33 @@
         job.start()
         assertTrue(job.isActive)
 
-        val pages = pager.run {
-            // give some time for job to start first
-            delay(200)
-            append().also { loadOrder.add(2) } // second operation
-            prepend().also { loadOrder.add(4) } // fourth operation
-            // sixth operation, should return 4 pages
-            getPages().also { loadOrder.add(6) }
-        }
+        val pages =
+            pager.run {
+                // give some time for job to start first
+                delay(200)
+                append().also { loadOrder.add(2) } // second operation
+                prepend().also { loadOrder.add(4) } // fourth operation
+                // sixth operation, should return 4 pages
+                getPages().also { loadOrder.add(6) }
+            }
 
         advanceUntilIdle()
-        assertThat(loadOrder).containsExactlyElementsIn(
-            listOf(1, 2, 3, 4, 5, 6, 7)
-        ).inOrder()
-        assertThat(lastLoadedPage).isEqualTo(
-            listOf(25, 26, 27).asPage(),
-        )
-        // should not contain the second prepend, with a total of 4 pages
-        assertThat(pages).containsExactlyElementsIn(
-            listOf(
-                listOf(17, 18, 19).asPage(), // first prepend
-                listOf(20, 21, 22, 23, 24).asPage(), // refresh
-                listOf(25, 26, 27).asPage(), // first append
-                listOf(28, 29, 30).asPage(), // second append
+        assertThat(loadOrder).containsExactlyElementsIn(listOf(1, 2, 3, 4, 5, 6, 7)).inOrder()
+        assertThat(lastLoadedPage)
+            .isEqualTo(
+                listOf(25, 26, 27).asPage(),
             )
-        ).inOrder()
+        // should not contain the second prepend, with a total of 4 pages
+        assertThat(pages)
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(17, 18, 19).asPage(), // first prepend
+                    listOf(20, 21, 22, 23, 24).asPage(), // refresh
+                    listOf(25, 26, 27).asPage(), // first append
+                    listOf(28, 29, 30).asPage(), // second append
+                )
+            )
+            .inOrder()
     }
 
     @Test
@@ -558,70 +575,68 @@
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
 
-        val state = pager.run {
-            refresh(20)
-            prepend()
-            append()
-            getPagingState(7)
-        }
+        val state =
+            pager.run {
+                refresh(20)
+                prepend()
+                append()
+                getPagingState(7)
+            }
         // in this case anchorPos is a placeholder at index 7
-        assertThat(state).isEqualTo(
-            PagingState(
-                pages = listOf(
-                    listOf(17, 18, 19).asPage(),
-                    // refresh
-                    listOf(20, 21, 22, 23, 24).asPage(),
-                    // append
-                    listOf(25, 26, 27).asPage(),
-                ),
-                anchorPosition = 7,
-                config = CONFIG,
-                leadingPlaceholderCount = 17
+        assertThat(state)
+            .isEqualTo(
+                PagingState(
+                    pages =
+                        listOf(
+                            listOf(17, 18, 19).asPage(),
+                            // refresh
+                            listOf(20, 21, 22, 23, 24).asPage(),
+                            // append
+                            listOf(25, 26, 27).asPage(),
+                        ),
+                    anchorPosition = 7,
+                    config = CONFIG,
+                    leadingPlaceholderCount = 17
+                )
             )
-        )
         val source2 = TestPagingSource()
         val pager2 = TestPager(CONFIG, source)
-        val page = pager2.run {
-            refresh(source2.getRefreshKey(state))
-        }
+        val page = pager2.run { refresh(source2.getRefreshKey(state)) }
         assertThat(page).isEqualTo(listOf(7, 8, 9, 10, 11).asPage())
     }
 
     @Test
     fun getPagingStateWithAnchorPosition_placeHoldersDisabled() = runTest {
         val source = TestPagingSource(placeholdersEnabled = false)
-        val config = PagingConfig(
-            pageSize = 3,
-            initialLoadSize = 5,
-            enablePlaceholders = false
-        )
+        val config = PagingConfig(pageSize = 3, initialLoadSize = 5, enablePlaceholders = false)
         val pager = TestPager(config, source)
 
-        val state = pager.run {
-            refresh(20)
-            prepend()
-            append()
-            getPagingState(7)
-        }
-        assertThat(state).isEqualTo(
-            PagingState(
-                pages = listOf(
-                    listOf(17, 18, 19).asPage(placeholdersEnabled = false),
-                    // refresh
-                    listOf(20, 21, 22, 23, 24).asPage(placeholdersEnabled = false),
-                    // append
-                    listOf(25, 26, 27).asPage(placeholdersEnabled = false),
-                ),
-                anchorPosition = 7,
-                config = config,
-                leadingPlaceholderCount = 0
+        val state =
+            pager.run {
+                refresh(20)
+                prepend()
+                append()
+                getPagingState(7)
+            }
+        assertThat(state)
+            .isEqualTo(
+                PagingState(
+                    pages =
+                        listOf(
+                            listOf(17, 18, 19).asPage(placeholdersEnabled = false),
+                            // refresh
+                            listOf(20, 21, 22, 23, 24).asPage(placeholdersEnabled = false),
+                            // append
+                            listOf(25, 26, 27).asPage(placeholdersEnabled = false),
+                        ),
+                    anchorPosition = 7,
+                    config = config,
+                    leadingPlaceholderCount = 0
+                )
             )
-        )
         val source2 = TestPagingSource()
         val pager2 = TestPager(CONFIG, source)
-        val page = pager2.run {
-            refresh(source2.getRefreshKey(state))
-        }
+        val page = pager2.run { refresh(source2.getRefreshKey(state)) }
         // without placeholders, Paging currently has no way to translate item[7] within loaded
         // pages into its absolute position within available data. Hence anchorPosition 7 will
         // reference item[7] within available data.
@@ -633,59 +648,61 @@
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
 
-        val msg = assertFailsWith<IllegalStateException> {
-            pager.run {
-                refresh()
-                append()
-                getPagingState(-1)
-            }
-        }.message
-        assertThat(msg).isEqualTo(
-            "anchorPosition -1 is out of bounds between [0..${ITEM_COUNT - 1}]. Please " +
-                "provide a valid anchorPosition."
-        )
+        val msg =
+            assertFailsWith<IllegalStateException> {
+                    pager.run {
+                        refresh()
+                        append()
+                        getPagingState(-1)
+                    }
+                }
+                .message
+        assertThat(msg)
+            .isEqualTo(
+                "anchorPosition -1 is out of bounds between [0..${ITEM_COUNT - 1}]. Please " +
+                    "provide a valid anchorPosition."
+            )
 
-        val msg2 = assertFailsWith<IllegalStateException> {
-            pager.getPagingState(ITEM_COUNT)
-        }.message
-        assertThat(msg2).isEqualTo(
-            "anchorPosition $ITEM_COUNT is out of bounds between [0..${ITEM_COUNT - 1}]. " +
-                "Please provide a valid anchorPosition."
-        )
+        val msg2 =
+            assertFailsWith<IllegalStateException> { pager.getPagingState(ITEM_COUNT) }.message
+        assertThat(msg2)
+            .isEqualTo(
+                "anchorPosition $ITEM_COUNT is out of bounds between [0..${ITEM_COUNT - 1}]. " +
+                    "Please provide a valid anchorPosition."
+            )
     }
 
     @Test
     fun getPagingStateWithAnchorPosition_indexOutOfBoundsWithoutPlaceholders() = runTest {
         val source = TestPagingSource()
-        val pager = TestPager(
-            PagingConfig(
-                pageSize = 3,
-                initialLoadSize = 5,
-                enablePlaceholders = false
-            ),
-            source
-        )
+        val pager =
+            TestPager(
+                PagingConfig(pageSize = 3, initialLoadSize = 5, enablePlaceholders = false),
+                source
+            )
 
-        val msg = assertFailsWith<IllegalStateException> {
-            pager.run {
-                refresh()
-                append()
-                getPagingState(-1)
-            }
-        }.message
-        assertThat(msg).isEqualTo(
-            "anchorPosition -1 is out of bounds between [0..7]. Please " +
-                "provide a valid anchorPosition."
-        )
+        val msg =
+            assertFailsWith<IllegalStateException> {
+                    pager.run {
+                        refresh()
+                        append()
+                        getPagingState(-1)
+                    }
+                }
+                .message
+        assertThat(msg)
+            .isEqualTo(
+                "anchorPosition -1 is out of bounds between [0..7]. Please " +
+                    "provide a valid anchorPosition."
+            )
 
         // total loaded items = 8, anchorPos with index 8 should be out of bounds
-        val msg2 = assertFailsWith<IllegalStateException> {
-            pager.getPagingState(8)
-        }.message
-        assertThat(msg2).isEqualTo(
-            "anchorPosition 8 is out of bounds between [0..7]. Please " +
-        "provide a valid anchorPosition."
-        )
+        val msg2 = assertFailsWith<IllegalStateException> { pager.getPagingState(8) }.message
+        assertThat(msg2)
+            .isEqualTo(
+                "anchorPosition 8 is out of bounds between [0..7]. Please " +
+                    "provide a valid anchorPosition."
+            )
     }
 
     @Test
@@ -693,71 +710,69 @@
         val source = TestPagingSource()
         val pager = TestPager(CONFIG, source)
 
-        val state = pager.run {
-            refresh(20)
-            prepend()
-            append()
-            getPagingState { it == TestPagingSource.ITEMS[22] }
-        }
-        assertThat(state).isEqualTo(
-            PagingState(
-                pages = listOf(
-                    listOf(17, 18, 19).asPage(),
-                    // refresh
-                    listOf(20, 21, 22, 23, 24).asPage(),
-                    // append
-                    listOf(25, 26, 27).asPage(),
-                ),
-                anchorPosition = 22,
-                config = CONFIG,
-                leadingPlaceholderCount = 17
+        val state =
+            pager.run {
+                refresh(20)
+                prepend()
+                append()
+                getPagingState { it == TestPagingSource.ITEMS[22] }
+            }
+        assertThat(state)
+            .isEqualTo(
+                PagingState(
+                    pages =
+                        listOf(
+                            listOf(17, 18, 19).asPage(),
+                            // refresh
+                            listOf(20, 21, 22, 23, 24).asPage(),
+                            // append
+                            listOf(25, 26, 27).asPage(),
+                        ),
+                    anchorPosition = 22,
+                    config = CONFIG,
+                    leadingPlaceholderCount = 17
+                )
             )
-        )
         // use state to getRefreshKey
         val source2 = TestPagingSource()
         val pager2 = TestPager(CONFIG, source)
-        val page = pager2.run {
-            refresh(source2.getRefreshKey(state))
-        }
+        val page = pager2.run { refresh(source2.getRefreshKey(state)) }
         assertThat(page).isEqualTo(listOf(22, 23, 24, 25, 26).asPage())
     }
 
     @Test
     fun getPagingStateWithAnchorLookup_placeHoldersDisabled() = runTest {
         val source = TestPagingSource(placeholdersEnabled = false)
-        val config = PagingConfig(
-            pageSize = 3,
-            initialLoadSize = 5,
-            enablePlaceholders = false
-        )
+        val config = PagingConfig(pageSize = 3, initialLoadSize = 5, enablePlaceholders = false)
         val pager = TestPager(config, source)
 
-        val state = pager.run {
-            refresh(20)
-            prepend()
-            append()
-            getPagingState { it == TestPagingSource.ITEMS[22] } // item 22 in this case
-        }
-        assertThat(state).isEqualTo(
-            PagingState(
-                pages = listOf(
-                    listOf(17, 18, 19).asPage(placeholdersEnabled = false),
-                    // refresh
-                    listOf(20, 21, 22, 23, 24).asPage(placeholdersEnabled = false),
-                    // append
-                    listOf(25, 26, 27).asPage(placeholdersEnabled = false),
-                ),
-                anchorPosition = 5,
-                config = config,
-                leadingPlaceholderCount = 0
+        val state =
+            pager.run {
+                refresh(20)
+                prepend()
+                append()
+                getPagingState { it == TestPagingSource.ITEMS[22] } // item 22 in this case
+            }
+        assertThat(state)
+            .isEqualTo(
+                PagingState(
+                    pages =
+                        listOf(
+                            listOf(17, 18, 19).asPage(placeholdersEnabled = false),
+                            // refresh
+                            listOf(20, 21, 22, 23, 24).asPage(placeholdersEnabled = false),
+                            // append
+                            listOf(25, 26, 27).asPage(placeholdersEnabled = false),
+                        ),
+                    anchorPosition = 5,
+                    config = config,
+                    leadingPlaceholderCount = 0
+                )
             )
-        )
         // use state to getRefreshKey
         val source2 = TestPagingSource()
         val pager2 = TestPager(CONFIG, source)
-        val page = pager2.run {
-            refresh(source2.getRefreshKey(state))
-        }
+        val page = pager2.run { refresh(source2.getRefreshKey(state)) }
         // without placeholders, Paging currently has no way to translate item[5] within loaded
         // pages into its absolute position within available data. anchorPosition 5 will reference
         // item[5] within available data.
@@ -767,139 +782,149 @@
     @Test
     fun getPagingStateWithAnchorLookup_itemNotFoundThrows() = runTest {
         val source = TestPagingSource(placeholdersEnabled = false)
-        val config = PagingConfig(
-            pageSize = 3,
-            initialLoadSize = 5,
-            enablePlaceholders = false
-        )
+        val config = PagingConfig(pageSize = 3, initialLoadSize = 5, enablePlaceholders = false)
         val pager = TestPager(config, source)
 
-        val msg = assertFailsWith<IllegalArgumentException> {
-            pager.run {
-                refresh(20)
-                prepend()
-                append()
-                getPagingState { it == TestPagingSource.ITEMS[10] }
-            }
-        }.message
-        assertThat(msg).isEqualTo(
-            "The given predicate has returned false for every loaded item. To generate a" +
-                "PagingState anchored to an item, the expected item must have already " +
-                "been loaded."
-        )
+        val msg =
+            assertFailsWith<IllegalArgumentException> {
+                    pager.run {
+                        refresh(20)
+                        prepend()
+                        append()
+                        getPagingState { it == TestPagingSource.ITEMS[10] }
+                    }
+                }
+                .message
+        assertThat(msg)
+            .isEqualTo(
+                "The given predicate has returned false for every loaded item. To generate a" +
+                    "PagingState anchored to an item, the expected item must have already " +
+                    "been loaded."
+            )
     }
 
     @Test
     fun dropPrependedPage() = runTest {
         val source = TestPagingSource()
-        val config = PagingConfig(
-            pageSize = 3,
-            initialLoadSize = 5,
-            enablePlaceholders = false,
-            maxSize = 10
-        )
+        val config =
+            PagingConfig(
+                pageSize = 3,
+                initialLoadSize = 5,
+                enablePlaceholders = false,
+                maxSize = 10
+            )
         val pager = TestPager(config, source)
         pager.run {
             refresh(20)
             prepend()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(17, 18, 19).asPage(),
-                // refresh
-                listOf(20, 21, 22, 23, 24).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(17, 18, 19).asPage(),
+                    // refresh
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                )
             )
-        )
 
         // this append should trigger paging to drop the prepended page
         pager.append()
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(20, 21, 22, 23, 24).asPage(),
-                listOf(25, 26, 27).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    listOf(25, 26, 27).asPage(),
+                )
             )
-        )
     }
 
     @Test
     fun dropAppendedPage() = runTest {
         val source = TestPagingSource()
-        val config = PagingConfig(
-            pageSize = 3,
-            initialLoadSize = 5,
-            enablePlaceholders = false,
-            maxSize = 10
-        )
+        val config =
+            PagingConfig(
+                pageSize = 3,
+                initialLoadSize = 5,
+                enablePlaceholders = false,
+                maxSize = 10
+            )
         val pager = TestPager(config, source)
         pager.run {
             refresh(20)
             append()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(20, 21, 22, 23, 24).asPage(),
-                listOf(25, 26, 27).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    listOf(25, 26, 27).asPage(),
+                )
             )
-        )
 
         // this prepend should trigger paging to drop the prepended page
         pager.prepend()
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(17, 18, 19).asPage(),
-                listOf(20, 21, 22, 23, 24).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(17, 18, 19).asPage(),
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                )
             )
-        )
     }
 
     @Test
     fun dropInitialRefreshedPage() = runTest {
         val source = TestPagingSource()
-        val config = PagingConfig(
-            pageSize = 3,
-            initialLoadSize = 5,
-            enablePlaceholders = false,
-            maxSize = 10
-        )
+        val config =
+            PagingConfig(
+                pageSize = 3,
+                initialLoadSize = 5,
+                enablePlaceholders = false,
+                maxSize = 10
+            )
         val pager = TestPager(config, source)
         pager.run {
             refresh(20)
             append()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(20, 21, 22, 23, 24).asPage(),
-                listOf(25, 26, 27).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(20, 21, 22, 23, 24).asPage(),
+                    listOf(25, 26, 27).asPage(),
+                )
             )
-        )
 
         // this append should trigger paging to drop the first page which is the initial refresh
         pager.append()
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(25, 26, 27).asPage(),
-                listOf(28, 29, 30).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(25, 26, 27).asPage(),
+                    listOf(28, 29, 30).asPage(),
+                )
             )
-        )
     }
 
     @Test
     fun dropRespectsPrefetchDistance_InDroppedDirection() = runTest {
         val source = TestPagingSource()
-        val config = PagingConfig(
-            pageSize = 1,
-            initialLoadSize = 10,
-            enablePlaceholders = false,
-            maxSize = 5,
-            prefetchDistance = 2
-        )
+        val config =
+            PagingConfig(
+                pageSize = 1,
+                initialLoadSize = 10,
+                enablePlaceholders = false,
+                maxSize = 5,
+                prefetchDistance = 2
+            )
         val pager = TestPager(config, source)
         pager.refresh(20)
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                listOf(20, 21, 22, 23, 24, 25, 26, 27, 28, 29).asPage(),
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    listOf(20, 21, 22, 23, 24, 25, 26, 27, 28, 29).asPage(),
+                )
             )
-        )
 
         // these appends should would normally trigger paging to drop first page, but it won't
         // in this case due to prefetchDistance
@@ -907,56 +932,57 @@
             append()
             append()
         }
-        assertThat(pager.getPages()).containsExactlyElementsIn(
-            listOf(
-                // second page counted towards prefetch distance
-                listOf(20, 21, 22, 23, 24, 25, 26, 27, 28, 29).asPage(),
-                // first page counted towards prefetch distance
-                listOf(30).asPage(),
-                listOf(31).asPage()
+        assertThat(pager.getPages())
+            .containsExactlyElementsIn(
+                listOf(
+                    // second page counted towards prefetch distance
+                    listOf(20, 21, 22, 23, 24, 25, 26, 27, 28, 29).asPage(),
+                    // first page counted towards prefetch distance
+                    listOf(30).asPage(),
+                    listOf(31).asPage()
+                )
             )
-        )
     }
 
     @Test
     fun drop_noOpUnderTwoPages() = runTest {
         val source = TestPagingSource()
-        val config = PagingConfig(
-            pageSize = 1,
-            initialLoadSize = 5,
-            enablePlaceholders = false,
-            maxSize = 3,
-            prefetchDistance = 1
-        )
+        val config =
+            PagingConfig(
+                pageSize = 1,
+                initialLoadSize = 5,
+                enablePlaceholders = false,
+                maxSize = 3,
+                prefetchDistance = 1
+            )
         val pager = TestPager(config, source)
         val result = pager.refresh() as LoadResult.Page
-        assertThat(result.data).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4)
-        )
+        assertThat(result.data).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4))
 
         pager.append()
         // data size exceeds maxSize but no data should be dropped
-        assertThat(pager.getPages().flatten()).containsExactlyElementsIn(
-            listOf(0, 1, 2, 3, 4, 5)
-        )
+        assertThat(pager.getPages().flatten()).containsExactlyElementsIn(listOf(0, 1, 2, 3, 4, 5))
     }
 
-    private val CONFIG = PagingConfig(
-        pageSize = 3,
-        initialLoadSize = 5,
-    )
+    private val CONFIG =
+        PagingConfig(
+            pageSize = 3,
+            initialLoadSize = 5,
+        )
 
     private fun List<Int>.asPage(placeholdersEnabled: Boolean = true): LoadResult.Page<Int, Int> {
-        val itemsBefore = if (placeholdersEnabled) {
-            if (first() == 0) 0 else first()
-        } else {
-            Int.MIN_VALUE
-        }
-        val itemsAfter = if (placeholdersEnabled) {
-            if (last() == ITEM_COUNT - 1) 0 else ITEM_COUNT - 1 - last()
-        } else {
-            Int.MIN_VALUE
-        }
+        val itemsBefore =
+            if (placeholdersEnabled) {
+                if (first() == 0) 0 else first()
+            } else {
+                Int.MIN_VALUE
+            }
+        val itemsAfter =
+            if (placeholdersEnabled) {
+                if (last() == ITEM_COUNT - 1) 0 else ITEM_COUNT - 1 - last()
+            } else {
+                Int.MIN_VALUE
+            }
         return LoadResult.Page(
             data = this,
             prevKey = if (first() == 0) null else first() - 1,
diff --git a/paging/samples/src/main/java/androidx/paging/samples/BasePagingAdapter.kt b/paging/samples/src/main/java/androidx/paging/samples/BasePagingAdapter.kt
index f762d5b..e6cbc12 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/BasePagingAdapter.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/BasePagingAdapter.kt
@@ -21,20 +21,19 @@
 import androidx.recyclerview.widget.DiffUtil
 import androidx.recyclerview.widget.RecyclerView
 
-/**
- * No-op PagingAdapter interface impl to be used by sample code that doesn't show adapter impl
- */
-internal open class BasePagingAdapter<T : Any> : PagingDataAdapter<T, RecyclerView.ViewHolder>(
-    object : DiffUtil.ItemCallback<T>() {
-        override fun areItemsTheSame(oldItem: T, newItem: T): Boolean {
-            return true
-        }
+/** No-op PagingAdapter interface impl to be used by sample code that doesn't show adapter impl */
+internal open class BasePagingAdapter<T : Any> :
+    PagingDataAdapter<T, RecyclerView.ViewHolder>(
+        object : DiffUtil.ItemCallback<T>() {
+            override fun areItemsTheSame(oldItem: T, newItem: T): Boolean {
+                return true
+            }
 
-        override fun areContentsTheSame(oldItem: T, newItem: T): Boolean {
-            return true
+            override fun areContentsTheSame(oldItem: T, newItem: T): Boolean {
+                return true
+            }
         }
-    }
-) {
+    ) {
     override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder {
         throw NotImplementedError()
     }
diff --git a/paging/samples/src/main/java/androidx/paging/samples/BaseViewModel.kt b/paging/samples/src/main/java/androidx/paging/samples/BaseViewModel.kt
index 9662758..d4e499fd 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/BaseViewModel.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/BaseViewModel.kt
@@ -27,16 +27,12 @@
 import androidx.paging.rxjava2.flowable
 import kotlinx.coroutines.ExperimentalCoroutinesApi
 
-/**
- * No-op ViewModel base class to be used by sample code that doesn't show ViewModel impl
- */
+/** No-op ViewModel base class to be used by sample code that doesn't show ViewModel impl */
 open class BaseViewModel<T : Any> : ViewModel() {
     private lateinit var pagingSourceFactory: () -> PagingSource<String, T>
 
-    private val pager = Pager(
-        config = PagingConfig(pageSize = 40),
-        pagingSourceFactory = pagingSourceFactory
-    )
+    private val pager =
+        Pager(config = PagingConfig(pageSize = 40), pagingSourceFactory = pagingSourceFactory)
 
     val pagingFlow = pager.flow.cachedIn(viewModelScope)
 
diff --git a/paging/samples/src/main/java/androidx/paging/samples/CachedInSample.kt b/paging/samples/src/main/java/androidx/paging/samples/CachedInSample.kt
index 7de466d..1783da6 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/CachedInSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/CachedInSample.kt
@@ -35,7 +35,9 @@
 import kotlinx.coroutines.launch
 
 private class UiModel(@Suppress("UNUSED_PARAMETER") string: String)
+
 private class MyPagingAdapter : BasePagingAdapter<UiModel>()
+
 private class MyViewModel : BaseViewModel<UiModel>()
 
 private lateinit var pagingSourceFactory: () -> PagingSource<String, String>
@@ -43,14 +45,13 @@
 @Sampled
 fun cachedInSample() {
     class MyViewModel : ViewModel() {
-        val flow = Pager(
-            config = PagingConfig(pageSize = 40),
-            pagingSourceFactory = pagingSourceFactory
-        ).flow
-            // Loads and transformations before the cachedIn operation will be cached, so that
-            // multiple observers get the same data. This is true either for simultaneous
-            // observers, or e.g. an Activity re-subscribing after being recreated
-            .cachedIn(viewModelScope)
+        val flow =
+            Pager(config = PagingConfig(pageSize = 40), pagingSourceFactory = pagingSourceFactory)
+                .flow
+                // Loads and transformations before the cachedIn operation will be cached, so that
+                // multiple observers get the same data. This is true either for simultaneous
+                // observers, or e.g. an Activity re-subscribing after being recreated
+                .cachedIn(viewModelScope)
     }
 
     class MyActivity : AppCompatActivity() {
@@ -68,9 +69,7 @@
                         // example un-cached transformation
                         pagingData.map { UiModel(it) }
                     }
-                    .collectLatest {
-                        pagingAdapter.submitData(it)
-                    }
+                    .collectLatest { pagingAdapter.submitData(it) }
             }
         }
     }
diff --git a/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsSample.kt b/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsSample.kt
index da92c7b..d94246d 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsSample.kt
@@ -75,14 +75,16 @@
         // map outer stream, so we can perform transformations on each paging generation
         pagingData.insertSeparatorsAsync { before: String?, after: String? ->
             Maybe.fromCallable<String> {
-                if (after != null && before?.first() != after.first()) {
-                    // separator - after is first item that starts with its first letter
-                    after.first().uppercaseChar().toString()
-                } else {
-                    // no separator - either end of list, or first letters of before/after are the same
-                    null
+                    if (after != null && before?.first() != after.first()) {
+                        // separator - after is first item that starts with its first letter
+                        after.first().uppercaseChar().toString()
+                    } else {
+                        // no separator - either end of list, or first letters of before/after are
+                        // the same
+                        null
+                    }
                 }
-            }.subscribeOn(Schedulers.computation())
+                .subscribeOn(Schedulers.computation())
         }
     }
 }
@@ -112,7 +114,8 @@
                             // separator - after is first item that starts with its first letter
                             after.first().uppercaseChar().toString()
                         } else {
-                            // no separator - either end of list, or first letters of before/after are the same
+                            // no separator - either end of list, or first letters of before/after
+                            // are the same
                             null
                         }
                     },
diff --git a/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsUiModelSample.kt b/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsUiModelSample.kt
index 9a2bd7f..78a0d81 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsUiModelSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/InsertSeparatorsUiModelSample.kt
@@ -34,12 +34,7 @@
 import kotlinx.coroutines.flow.Flow
 import kotlinx.coroutines.flow.map
 
-class Item(
-    @JvmField
-    val id: String,
-    @JvmField
-    val label: String
-)
+class Item(@JvmField val id: String, @JvmField val label: String)
 
 private lateinit var pagingDataStream: Flow<PagingData<Item>>
 
@@ -69,7 +64,8 @@
                     // separator - after is first item that starts with its first letter
                     SeparatorUiModel(after.item.label.first().uppercaseChar())
                 } else {
-                    // no separator - either end of list, or first letters of before/after are the same
+                    // no separator - either end of list, or first letters of before/after are the
+                    // same
                     null
                 }
             }
@@ -99,14 +95,19 @@
             }
             .insertSeparatorsAsync { before: ItemUiModel?, after: ItemUiModel? ->
                 Maybe.fromCallable<UiModel> {
-                    if (after != null && before?.item?.label?.first() != after.item.label.first()) {
-                        // separator - after is first item that starts with its first letter
-                        SeparatorUiModel(after.item.label.first().uppercaseChar())
-                    } else {
-                        // no separator - either end of list, or first letters of before/after are the same
-                        null
+                        if (
+                            after != null &&
+                                before?.item?.label?.first() != after.item.label.first()
+                        ) {
+                            // separator - after is first item that starts with its first letter
+                            SeparatorUiModel(after.item.label.first().uppercaseChar())
+                        } else {
+                            // no separator - either end of list, or first letters of before/after
+                            // are the same
+                            null
+                        }
                     }
-                }.subscribeOn(Schedulers.computation())
+                    .subscribeOn(Schedulers.computation())
             }
     }
 }
@@ -140,13 +141,15 @@
                     Futures.submit(
                         Callable<UiModel> {
                             val (before, after) = it!!
-                            if (after != null &&
-                                before?.item?.label?.first() != after.item.label.first()
+                            if (
+                                after != null &&
+                                    before?.item?.label?.first() != after.item.label.first()
                             ) {
                                 // separator - after is first item that starts with its first letter
                                 SeparatorUiModel(after.item.label.first().uppercaseChar())
                             } else {
-                                // no separator - either end of list, or first letters of before/after are the same
+                                // no separator - either end of list, or first letters of
+                                // before/after are the same
                                 null
                             }
                         },
diff --git a/paging/samples/src/main/java/androidx/paging/samples/ListenableFuturePagingSourceSample.kt b/paging/samples/src/main/java/androidx/paging/samples/ListenableFuturePagingSourceSample.kt
index a13a3e6..234d68e 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/ListenableFuturePagingSourceSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/ListenableFuturePagingSourceSample.kt
@@ -27,11 +27,7 @@
 import java.util.concurrent.Executor
 import retrofit2.HttpException
 
-data class RemoteResult(
-    val items: List<Item>,
-    val prev: String,
-    val next: String
-)
+data class RemoteResult(val items: List<Item>, val prev: String, val next: String)
 
 private class GuavaBackendService {
     @Suppress("UNUSED_PARAMETER")
@@ -52,10 +48,7 @@
             params: LoadParams<String>
         ): ListenableFuture<LoadResult<String, Item>> {
             return myBackend
-                .searchUsers(
-                    searchTerm = searchTerm,
-                    pageKey = params.key
-                )
+                .searchUsers(searchTerm = searchTerm, pageKey = params.key)
                 .transform<LoadResult<String, Item>>(
                     { response ->
                         LoadResult.Page(
diff --git a/paging/samples/src/main/java/androidx/paging/samples/LoadStateAdapterSample.kt b/paging/samples/src/main/java/androidx/paging/samples/LoadStateAdapterSample.kt
index 7c5e617..efcd8cb 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/LoadStateAdapterSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/LoadStateAdapterSample.kt
@@ -31,17 +31,16 @@
 
 @Sampled
 fun loadStateAdapterSample() {
-    class LoadStateViewHolder(
-        parent: ViewGroup,
-        retry: () -> Unit
-    ) : RecyclerView.ViewHolder(
-        LayoutInflater.from(parent.context)
-            .inflate(R.layout.load_state_item, parent, false)
-    ) {
+    class LoadStateViewHolder(parent: ViewGroup, retry: () -> Unit) :
+        RecyclerView.ViewHolder(
+            LayoutInflater.from(parent.context).inflate(R.layout.load_state_item, parent, false)
+        ) {
         private val progressBar: ProgressBar = itemView.findViewById(R.id.progress_bar)
         private val errorMsg: TextView = itemView.findViewById(R.id.error_msg)
-        private val retry: Button = itemView.findViewById<Button>(R.id.retry_button)
-            .also { it.setOnClickListener { retry.invoke() } }
+        private val retry: Button =
+            itemView.findViewById<Button>(R.id.retry_button).also {
+                it.setOnClickListener { retry.invoke() }
+            }
 
         fun bind(loadState: LoadState) {
             if (loadState is LoadState.Error) {
@@ -52,20 +51,20 @@
             errorMsg.visibility = toVisibility(loadState !is LoadState.Loading)
         }
 
-        private fun toVisibility(constraint: Boolean): Int = if (constraint) {
-            View.VISIBLE
-        } else {
-            View.GONE
-        }
+        private fun toVisibility(constraint: Boolean): Int =
+            if (constraint) {
+                View.VISIBLE
+            } else {
+                View.GONE
+            }
     }
 
     /**
      * Adapter which displays a loading spinner when `state = LoadState.Loading`, and an error
      * message and retry button when `state is LoadState.Error`.
      */
-    class MyLoadStateAdapter(
-        private val retry: () -> Unit
-    ) : LoadStateAdapter<LoadStateViewHolder>() {
+    class MyLoadStateAdapter(private val retry: () -> Unit) :
+        LoadStateAdapter<LoadStateViewHolder>() {
 
         override fun onCreateViewHolder(parent: ViewGroup, loadState: LoadState) =
             LoadStateViewHolder(parent, retry)
diff --git a/paging/samples/src/main/java/androidx/paging/samples/PagingDataAdapterSample.kt b/paging/samples/src/main/java/androidx/paging/samples/PagingDataAdapterSample.kt
index 91fd531..3c063ed 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/PagingDataAdapterSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/PagingDataAdapterSample.kt
@@ -40,11 +40,7 @@
 import kotlinx.coroutines.flow.map
 import kotlinx.coroutines.launch
 
-data class User(
-    val userId: String,
-    val favoriteFood: String,
-    val isFavorite: Boolean
-)
+data class User(val userId: String, val favoriteFood: String, val isFavorite: Boolean)
 
 // TODO: consider adding a fleshed out ViewHolder as part of the sample
 @Suppress("UNUSED_PARAMETER")
@@ -61,15 +57,16 @@
 @Suppress("LocalVariableName") // We're pretending local val is global
 @Sampled
 fun pagingDataAdapterSample() {
-    val USER_COMPARATOR = object : DiffUtil.ItemCallback<User>() {
-        override fun areItemsTheSame(oldItem: User, newItem: User): Boolean =
-            // User ID serves as unique ID
-            oldItem.userId == newItem.userId
+    val USER_COMPARATOR =
+        object : DiffUtil.ItemCallback<User>() {
+            override fun areItemsTheSame(oldItem: User, newItem: User): Boolean =
+                // User ID serves as unique ID
+                oldItem.userId == newItem.userId
 
-        override fun areContentsTheSame(oldItem: User, newItem: User): Boolean =
-            // Compare full contents (note: Java users should call .equals())
-            oldItem == newItem
-    }
+            override fun areContentsTheSame(oldItem: User, newItem: User): Boolean =
+                // Compare full contents (note: Java users should call .equals())
+                oldItem == newItem
+        }
 
     class UserAdapter : PagingDataAdapter<User, UserViewHolder>(USER_COMPARATOR) {
         override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): UserViewHolder {
@@ -85,6 +82,7 @@
 }
 
 internal class UserPagingAdapter : BasePagingAdapter<User>()
+
 internal class UserListViewModel : BaseViewModel<User>()
 
 internal class MyActivityBinding {
@@ -116,9 +114,7 @@
                 binding.swipeRefreshLayout.isRefreshing = loadStates.refresh is LoadState.Loading
             }
 
-            binding.swipeRefreshLayout.setOnRefreshListener {
-                pagingAdapter.refresh()
-            }
+            binding.swipeRefreshLayout.setOnRefreshListener { pagingAdapter.refresh() }
         }
     }
 }
@@ -182,12 +178,11 @@
             val viewModel by viewModels<UserListViewModel>()
 
             lifecycleScope.launch {
-                viewModel.pagingFlow
-                    .collectLatest { pagingData ->
-                        // submitData suspends until loading this generation of data stops
-                        // so be sure to use collectLatest {} when presenting a Flow<PagingData>
-                        pagingAdapter.submitData(pagingData)
-                    }
+                viewModel.pagingFlow.collectLatest { pagingData ->
+                    // submitData suspends until loading this generation of data stops
+                    // so be sure to use collectLatest {} when presenting a Flow<PagingData>
+                    pagingAdapter.submitData(pagingData)
+                }
             }
         }
     }
@@ -227,9 +222,7 @@
 
             viewModel.pagingFlowable
                 .autoDispose(this) // Using AutoDispose to handle subscription lifecycle
-                .subscribe { pagingData ->
-                    pagingAdapter.submitData(lifecycle, pagingData)
-                }
+                .subscribe { pagingData -> pagingAdapter.submitData(lifecycle, pagingData) }
         }
     }
 }
diff --git a/paging/samples/src/main/java/androidx/paging/samples/PagingSourceSample.kt b/paging/samples/src/main/java/androidx/paging/samples/PagingSourceSample.kt
index 273996e..970381f 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/PagingSourceSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/PagingSourceSample.kt
@@ -26,11 +26,7 @@
 import retrofit2.HttpException
 
 internal class MyBackendService {
-    data class RemoteResult(
-        val items: List<Item>,
-        val prev: String?,
-        val next: String?
-    )
+    data class RemoteResult(val items: List<Item>, val prev: String?, val next: String?)
 
     @Suppress("RedundantSuspendModifier", "UNUSED_PARAMETER")
     suspend fun searchItems(pageKey: String?): RemoteResult {
@@ -55,9 +51,7 @@
      *
      * Loads Items from network requests via Retrofit to a backend service.
      */
-    class MyPagingSource(
-        val myBackend: MyBackendService
-    ) : PagingSource<String, Item>() {
+    class MyPagingSource(val myBackend: MyBackendService) : PagingSource<String, Item>() {
         override suspend fun load(params: LoadParams<String>): LoadResult<String, Item> {
             // Retrofit calls that return the body type throw either IOException for network
             // failures, or HttpException for any non-2xx HTTP status codes. This code reports all
@@ -94,9 +88,7 @@
      *
      * Note that the key type is Int, since we're using page number to load a page.
      */
-    class MyPagingSource(
-        val myBackend: MyBackendService
-    ) : PagingSource<Int, Item>() {
+    class MyPagingSource(val myBackend: MyBackendService) : PagingSource<Int, Item>() {
         override suspend fun load(params: LoadParams<Int>): LoadResult<Int, Item> {
 
             // Retrofit calls that return the body type throw either IOException for network
@@ -119,11 +111,7 @@
                 // This API defines that it's out of data when a page returns empty. When out of
                 // data, we return `null` to signify no more pages should be loaded
                 val nextKey = if (response.items.isNotEmpty()) pageNumber + 1 else null
-                LoadResult.Page(
-                    data = response.items,
-                    prevKey = prevKey,
-                    nextKey = nextKey
-                )
+                LoadResult.Page(data = response.items, prevKey = prevKey, nextKey = nextKey)
             } catch (e: IOException) {
                 LoadResult.Error(e)
             } catch (e: HttpException) {
@@ -152,20 +140,19 @@
 
     // The following shows how you use convert such a response loaded in PagingSource.load() to
     // a Page, which can be returned from that method
-    fun NetworkResponseObject.toPage() = LoadResult.Page(
-        data = items,
-        prevKey = null, // this implementation can only append, can't load a prepend
-        nextKey = next, // next token will be the params.key of a subsequent append load
-        itemsAfter = approximateItemsRemaining
-    )
+    fun NetworkResponseObject.toPage() =
+        LoadResult.Page(
+            data = items,
+            prevKey = null, // this implementation can only append, can't load a prepend
+            nextKey = next, // next token will be the params.key of a subsequent append load
+            itemsAfter = approximateItemsRemaining
+        )
 }
 
 @Sampled
 fun pageIndexedPage() {
     // If you load by page number, the response may not define how to load the next page.
-    data class NetworkResponseObject(
-        val items: List<Item>
-    )
+    data class NetworkResponseObject(val items: List<Item>)
 
     // The following shows how you use the current page number (e.g., the current key in
     // PagingSource.load() to convert a response into a Page, which can be returned from that method
diff --git a/paging/samples/src/main/java/androidx/paging/samples/RemoteMediatorSample.kt b/paging/samples/src/main/java/androidx/paging/samples/RemoteMediatorSample.kt
index 6cbefcb..b7d31f6 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/RemoteMediatorSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/RemoteMediatorSample.kt
@@ -34,15 +34,21 @@
 
 private interface ItemDao {
     fun withTransaction(block: () -> Any)
+
     fun insertAll(items: List<Item>)
+
     fun removeAll()
+
     fun lastUpdated(): Long
 }
 
 private interface ItemKeyDao {
     fun withTransaction(block: () -> Any)
+
     fun queryKey(item: Item): String
+
     fun insertKey(item: Item, key: String): String
+
     fun removeAll()
 }
 
@@ -86,25 +92,29 @@
                 // The network load method takes an optional `after=<user.id>` parameter. For every
                 // page after the first, we pass the last user ID to let it continue from where it
                 // left off. For REFRESH, pass `null` to load the first page.
-                val loadKey = when (loadType) {
-                    LoadType.REFRESH -> null
-                    // In this example, we never need to prepend, since REFRESH will always load the
-                    // first page in the list. Immediately return, reporting end of pagination.
-                    LoadType.PREPEND -> return MediatorResult.Success(endOfPaginationReached = true)
-                    LoadType.APPEND -> {
-                        val lastItem = state.lastItemOrNull()
-
-                        // We must explicitly check if the last item is `null` when appending,
-                        // since passing `null` to networkService is only valid for initial load.
-                        // If lastItem is `null` it means no items were loaded after the initial
-                        // REFRESH and there are no more items to load.
-                        if (lastItem == null) {
+                val loadKey =
+                    when (loadType) {
+                        LoadType.REFRESH -> null
+                        // In this example, we never need to prepend, since REFRESH will always load
+                        // the
+                        // first page in the list. Immediately return, reporting end of pagination.
+                        LoadType.PREPEND ->
                             return MediatorResult.Success(endOfPaginationReached = true)
-                        }
+                        LoadType.APPEND -> {
+                            val lastItem = state.lastItemOrNull()
 
-                        lastItem.id
+                            // We must explicitly check if the last item is `null` when appending,
+                            // since passing `null` to networkService is only valid for initial
+                            // load.
+                            // If lastItem is `null` it means no items were loaded after the initial
+                            // REFRESH and there are no more items to load.
+                            if (lastItem == null) {
+                                return MediatorResult.Success(endOfPaginationReached = true)
+                            }
+
+                            lastItem.id
+                        }
                     }
-                }
 
                 // Suspending network load via Retrofit. This doesn't need to be wrapped in a
                 // withContext(Dispatcher.IO) { ... } block since Retrofit's Coroutine CallAdapter
@@ -173,28 +183,30 @@
                 // after the first, we pass the [String] token returned from the previous page to
                 // let it continue from where it left off. For REFRESH, pass `null` to load the
                 // first page.
-                val loadKey = when (loadType) {
-                    LoadType.REFRESH -> null
-                    // In this example, we never need to prepend, since REFRESH will always load the
-                    // first page in the list. Immediately return, reporting end of pagination.
-                    LoadType.PREPEND -> return MediatorResult.Success(endOfPaginationReached = true)
-                    // Query remoteKeyDao for the next RemoteKey.
-                    LoadType.APPEND -> {
-                        val remoteKey = database.withTransaction {
-                            remoteKeyDao.remoteKeyByQuery(query)
-                        }
-
-                        // We must explicitly check if the page key is `null` when appending,
-                        // since `null` is only valid for initial load. If we receive `null`
-                        // for APPEND, that means we have reached the end of pagination and
-                        // there are no more items to load.
-                        if (remoteKey.nextKey == null) {
+                val loadKey =
+                    when (loadType) {
+                        LoadType.REFRESH -> null
+                        // In this example, we never need to prepend, since REFRESH will always load
+                        // the
+                        // first page in the list. Immediately return, reporting end of pagination.
+                        LoadType.PREPEND ->
                             return MediatorResult.Success(endOfPaginationReached = true)
-                        }
+                        // Query remoteKeyDao for the next RemoteKey.
+                        LoadType.APPEND -> {
+                            val remoteKey =
+                                database.withTransaction { remoteKeyDao.remoteKeyByQuery(query) }
 
-                        remoteKey.nextKey
+                            // We must explicitly check if the page key is `null` when appending,
+                            // since `null` is only valid for initial load. If we receive `null`
+                            // for APPEND, that means we have reached the end of pagination and
+                            // there are no more items to load.
+                            if (remoteKey.nextKey == null) {
+                                return MediatorResult.Success(endOfPaginationReached = true)
+                            }
+
+                            remoteKey.nextKey
+                        }
                     }
-                }
 
                 // Suspending network load via Retrofit. This doesn't need to be wrapped in a
                 // withContext(Dispatcher.IO) { ... } block since Retrofit's Coroutine CallAdapter
diff --git a/paging/samples/src/main/java/androidx/paging/samples/RxPagingSourceSample.kt b/paging/samples/src/main/java/androidx/paging/samples/RxPagingSourceSample.kt
index 6665998..2f1e4b0 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/RxPagingSourceSample.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/RxPagingSourceSample.kt
@@ -27,11 +27,7 @@
 import retrofit2.HttpException
 
 private class RxBackendService {
-    data class RemoteResult(
-        val items: List<Item>,
-        val prev: String,
-        val next: String
-    )
+    data class RemoteResult(val items: List<Item>, val prev: String, val next: String)
 
     @Suppress("UNUSED_PARAMETER")
     fun searchUsers(searchTerm: String, pageKey: String?): Single<RemoteResult> {
@@ -45,10 +41,8 @@
      * Sample RxPagingSource which loads `Item`s from network requests via Retrofit to a backend
      * service, which uses String tokens to load pages (each response has a next/previous token).
      */
-    class MyPagingSource(
-        val myBackend: RxBackendService,
-        val searchTerm: String
-    ) : RxPagingSource<String, Item>() {
+    class MyPagingSource(val myBackend: RxBackendService, val searchTerm: String) :
+        RxPagingSource<String, Item>() {
         override fun loadSingle(params: LoadParams<String>): Single<LoadResult<String, Item>> {
             return myBackend
                 // Single-based network load
diff --git a/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleGuavaBackendService.kt b/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleGuavaBackendService.kt
index 4432451..e7c3747 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleGuavaBackendService.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleGuavaBackendService.kt
@@ -20,5 +20,6 @@
 
 interface ExampleGuavaBackendService {
     fun searchUsers(query: String, after: String?): ListenableFuture<SearchUserResponse>
+
     fun searchUsers(query: String, pageNumber: Int?): ListenableFuture<SearchUserResponse>
 }
diff --git a/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleRxBackendService.kt b/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleRxBackendService.kt
index b92aaab..bd3653e 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleRxBackendService.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/shared/ExampleRxBackendService.kt
@@ -20,5 +20,6 @@
 
 interface ExampleRxBackendService {
     fun searchUsers(query: String, after: String?): Single<SearchUserResponse>
+
     fun searchUsers(query: String, pageNumber: Int?): Single<SearchUserResponse>
 }
diff --git a/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKey.kt b/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKey.kt
index 88a8523d..72c0c07 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKey.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKey.kt
@@ -18,5 +18,4 @@
 
 import androidx.room.Entity
 
-@Entity(tableName = "remote_keys")
-data class RemoteKey(val label: String, val nextKey: String?)
+@Entity(tableName = "remote_keys") data class RemoteKey(val label: String, val nextKey: String?)
diff --git a/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKeyDao.kt b/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKeyDao.kt
index ef13266..7f96d54 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKeyDao.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/shared/RemoteKeyDao.kt
@@ -27,8 +27,7 @@
 interface RemoteKeyDao {
     // Normally suspend when using Kotlin Coroutines, but sync version allows this Dao to be used
     // in both Java and Kotlin samples.
-    @Insert(onConflict = OnConflictStrategy.REPLACE)
-    fun insertOrReplace(remoteKey: RemoteKey)
+    @Insert(onConflict = OnConflictStrategy.REPLACE) fun insertOrReplace(remoteKey: RemoteKey)
 
     @Query("SELECT * FROM remote_keys WHERE label = :query")
     fun remoteKeyByQuery(query: String): RemoteKey
@@ -41,6 +40,5 @@
 
     // Normally suspend when using Kotlin Coroutines, but sync version allows this Dao to be used
     // in both Java and Kotlin samples.
-    @Query("DELETE FROM remote_keys WHERE label = :query")
-    fun deleteByQuery(query: String)
+    @Query("DELETE FROM remote_keys WHERE label = :query") fun deleteByQuery(query: String)
 }
diff --git a/paging/samples/src/main/java/androidx/paging/samples/shared/RoomDb.kt b/paging/samples/src/main/java/androidx/paging/samples/shared/RoomDb.kt
index eb2626c..074553c 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/shared/RoomDb.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/shared/RoomDb.kt
@@ -21,11 +21,7 @@
 import androidx.room.Room
 import androidx.room.RoomDatabase
 
-@Database(
-    entities = [User::class, RemoteKey::class],
-    version = 1,
-    exportSchema = false
-)
+@Database(entities = [User::class, RemoteKey::class], version = 1, exportSchema = false)
 abstract class RoomDb : RoomDatabase() {
     companion object {
         fun create(context: Context): RoomDb {
@@ -37,5 +33,6 @@
     }
 
     abstract fun userDao(): UserDao
+
     abstract fun remoteKeyDao(): RemoteKeyDao
 }
diff --git a/paging/samples/src/main/java/androidx/paging/samples/shared/User.kt b/paging/samples/src/main/java/androidx/paging/samples/shared/User.kt
index a4d341a..ff281e4 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/shared/User.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/shared/User.kt
@@ -18,5 +18,4 @@
 
 import androidx.room.Entity
 
-@Entity(tableName = "users")
-data class User(val id: String, val label: String)
+@Entity(tableName = "users") data class User(val id: String, val label: String)
diff --git a/paging/samples/src/main/java/androidx/paging/samples/shared/UserDao.kt b/paging/samples/src/main/java/androidx/paging/samples/shared/UserDao.kt
index b5aca9f..343d199 100644
--- a/paging/samples/src/main/java/androidx/paging/samples/shared/UserDao.kt
+++ b/paging/samples/src/main/java/androidx/paging/samples/shared/UserDao.kt
@@ -28,15 +28,13 @@
 interface UserDao {
     // Normally suspend when using Kotlin Coroutines, but sync version allows this Dao to be used
     // in both Java and Kotlin samples.
-    @Insert(onConflict = OnConflictStrategy.REPLACE)
-    fun insertAll(users: List<User>)
+    @Insert(onConflict = OnConflictStrategy.REPLACE) fun insertAll(users: List<User>)
 
     fun pagingSource(): PagingSource<Int, User>
 
     // Normally suspend when using Kotlin Coroutines, but sync version allows this Dao to be used
     // in both Java and Kotlin samples.
-    @Query("DELETE FROM users WHERE label = :query")
-    fun deleteByQuery(query: String)
+    @Query("DELETE FROM users WHERE label = :query") fun deleteByQuery(query: String)
 
     suspend fun lastUpdated(): Long
 
diff --git a/palette/palette-ktx/src/androidTest/java/androidx/palette/graphics/PaletteTest.kt b/palette/palette-ktx/src/androidTest/java/androidx/palette/graphics/PaletteTest.kt
index eac76c1..8d60a5e 100644
--- a/palette/palette-ktx/src/androidTest/java/androidx/palette/graphics/PaletteTest.kt
+++ b/palette/palette-ktx/src/androidTest/java/androidx/palette/graphics/PaletteTest.kt
@@ -27,10 +27,9 @@
 
 @SmallTest
 class PaletteTest {
-    @Test fun operatorGet() {
-        val bitmap = Bitmap.createBitmap(10, 10, ARGB_8888).apply {
-            Canvas(this).drawColor(RED)
-        }
+    @Test
+    fun operatorGet() {
+        val bitmap = Bitmap.createBitmap(10, 10, ARGB_8888).apply { Canvas(this).drawColor(RED) }
         val palette = Palette.from(bitmap).generate()
         assertSame(palette.getSwatchForTarget(VIBRANT), palette[VIBRANT])
     }
diff --git a/palette/palette-ktx/src/main/java/androidx/palette/graphics/Palette.kt b/palette/palette-ktx/src/main/java/androidx/palette/graphics/Palette.kt
index f981dc4..d70e78b 100644
--- a/palette/palette-ktx/src/main/java/androidx/palette/graphics/Palette.kt
+++ b/palette/palette-ktx/src/main/java/androidx/palette/graphics/Palette.kt
@@ -19,8 +19,8 @@
 package androidx.palette.graphics
 
 /**
- * Returns the selected swatch for the given target from the palette, or `null` if one
- * could not be found.
+ * Returns the selected swatch for the given target from the palette, or `null` if one could not be
+ * found.
  *
  * @see Palette.getSwatchForTarget
  */
diff --git a/preference/preference-ktx/src/androidTest/java/androidx/preference/PreferenceGroupTest.kt b/preference/preference-ktx/src/androidTest/java/androidx/preference/PreferenceGroupTest.kt
index 2ad2bf3..5cf71b3 100644
--- a/preference/preference-ktx/src/androidTest/java/androidx/preference/PreferenceGroupTest.kt
+++ b/preference/preference-ktx/src/androidTest/java/androidx/preference/PreferenceGroupTest.kt
@@ -139,9 +139,7 @@
     @UiThreadTest
     @Test
     fun forEach() {
-        preferenceGroup.forEach {
-            fail("Empty preference group should not invoke lambda")
-        }
+        preferenceGroup.forEach { fail("Empty preference group should not invoke lambda") }
 
         val preference1 = Preference(context).apply { key = "ASD" }
         preferenceGroup.addPreference(preference1)
@@ -149,18 +147,14 @@
         preferenceGroup.addPreference(preference2)
 
         val preferences = mutableListOf<Preference>()
-        preferenceGroup.forEach {
-            preferences += it
-        }
+        preferenceGroup.forEach { preferences += it }
         assertThat(preferences).containsExactly(preference1, preference2)
     }
 
     @UiThreadTest
     @Test
     fun forEachIndexed() {
-        preferenceGroup.forEach {
-            fail("Empty preference group should not invoke lambda")
-        }
+        preferenceGroup.forEach { fail("Empty preference group should not invoke lambda") }
 
         val preference1 = Preference(context)
         preferenceGroup.addPreference(preference1)
@@ -189,9 +183,7 @@
         assertTrue(iterator.hasNext())
         assertSame(preference2, iterator.next())
         assertFalse(iterator.hasNext())
-        assertThrows<IndexOutOfBoundsException> {
-            iterator.next()
-        }
+        assertThrows<IndexOutOfBoundsException> { iterator.next() }
     }
 
     @UiThreadTest
diff --git a/preference/preference-ktx/src/main/java/androidx/preference/PreferenceGroup.kt b/preference/preference-ktx/src/main/java/androidx/preference/PreferenceGroup.kt
index b5b1a7e..508fa4f 100644
--- a/preference/preference-ktx/src/main/java/androidx/preference/PreferenceGroup.kt
+++ b/preference/preference-ktx/src/main/java/androidx/preference/PreferenceGroup.kt
@@ -18,9 +18,7 @@
 
 package androidx.preference
 
-/**
- * Returns the preference with `key`, or `null` if no preference with `key` is found.
- */
+/** Returns the preference with `key`, or `null` if no preference with `key` is found. */
 public inline operator fun <T : Preference> PreferenceGroup.get(key: CharSequence): T? =
     findPreference(key)
 
@@ -52,7 +50,8 @@
 }
 
 /** Returns the number of preferences in this preference group. */
-public inline val PreferenceGroup.size: Int get() = preferenceCount
+public inline val PreferenceGroup.size: Int
+    get() = preferenceCount
 
 /** Returns true if this preference group contains no preferences. */
 public inline fun PreferenceGroup.isEmpty(): Boolean = size == 0
@@ -68,8 +67,8 @@
 }
 
 /**
- * Performs the given action on each preference in this preference group,
- * providing its sequential index.
+ * Performs the given action on each preference in this preference group, providing its sequential
+ * index.
  */
 public inline fun PreferenceGroup.forEachIndexed(
     action: (index: Int, preference: Preference) -> Unit
@@ -83,8 +82,11 @@
 public operator fun PreferenceGroup.iterator(): Iterator<Preference> =
     object : MutableIterator<Preference> {
         private var index = 0
+
         override fun hasNext() = index < size
+
         override fun next() = getPreference(index++)
+
         override fun remove() {
             removePreference(getPreference(--index))
         }
@@ -92,6 +94,7 @@
 
 /** Returns a [Sequence] over the preferences in this preference group. */
 public val PreferenceGroup.children: Sequence<Preference>
-    get() = object : Sequence<Preference> {
-        override fun iterator() = this@children.iterator()
-    }
+    get() =
+        object : Sequence<Preference> {
+            override fun iterator() = this@children.iterator()
+        }
diff --git a/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceDialogFragmentCompatTest.kt b/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceDialogFragmentCompatTest.kt
index b458e54..43d7aa7 100644
--- a/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceDialogFragmentCompatTest.kt
+++ b/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceDialogFragmentCompatTest.kt
@@ -54,9 +54,8 @@
 
     @Suppress("DEPRECATION")
     @get:Rule
-    val activityTestRule = androidx.test.rule.ActivityTestRule(
-        PreferenceTestHelperActivity::class.java
-    )
+    val activityTestRule =
+        androidx.test.rule.ActivityTestRule(PreferenceTestHelperActivity::class.java)
 
     @Test
     fun testInflatedChildDialogFragment() {
@@ -66,9 +65,7 @@
         activityTestRule.runOnUiThread {
             fragment = InflatedFragment(xmlLayoutId)
 
-            fm.beginTransaction()
-                .add(fragment, null)
-                .commitNow()
+            fm.beginTransaction().add(fragment, null).commitNow()
         }
 
         // Show the dialog
@@ -86,15 +83,17 @@
 class InflatedFragment(val xmlLayoutId: Int) : PreferenceFragmentCompat() {
 
     lateinit var dialogFragment: DialogFragment
+
     override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
         setPreferencesFromResource(xmlLayoutId, rootKey)
     }
 
     @Suppress("DEPRECATION")
     override fun onDisplayPreferenceDialog(preference: Preference) {
-        dialogFragment = DialogFragment(preference.key)
-            .also { it.setTargetFragment(this, 0) }
-            .also { it.show(parentFragmentManager, null) }
+        dialogFragment =
+            DialogFragment(preference.key)
+                .also { it.setTargetFragment(this, 0) }
+                .also { it.show(parentFragmentManager, null) }
     }
 }
 
@@ -102,16 +101,23 @@
 
 class TestFragmentContainerViewDialogPreference(context: Context, attrs: AttributeSet?) :
     DialogPreference(context, attrs) {
-    init { dialogLayoutResource = R.layout.inflated_fragment_container_view }
+    init {
+        dialogLayoutResource = R.layout.inflated_fragment_container_view
+    }
 }
 
 class TestFragmentTagDialogPreference(context: Context, attrs: AttributeSet?) :
     DialogPreference(context, attrs) {
-    init { dialogLayoutResource = R.layout.inflated_fragment_tag }
+    init {
+        dialogLayoutResource = R.layout.inflated_fragment_tag
+    }
 }
 
 class DialogFragment(val key: String) : PreferenceDialogFragmentCompat() {
-    init { arguments = Bundle(1).apply { putString(ARG_KEY, key) } }
+    init {
+        arguments = Bundle(1).apply { putString(ARG_KEY, key) }
+    }
+
     override fun onCreateView(
         inflater: LayoutInflater,
         container: ViewGroup?,
@@ -119,5 +125,6 @@
     ): View? {
         return inflater.inflate(R.layout.simple_layout, container, false)
     }
+
     override fun onDialogClosed(positiveResult: Boolean) {}
 }
diff --git a/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceFragmentCompatInterfaceTest.kt b/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceFragmentCompatInterfaceTest.kt
index 0b16bd9..91f7b8d 100644
--- a/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceFragmentCompatInterfaceTest.kt
+++ b/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceFragmentCompatInterfaceTest.kt
@@ -49,8 +49,8 @@
 import org.junit.runner.RunWith
 
 /**
- * Test for [PreferenceFragmentCompat] interfaces that can be implemented via subclasses,
- * [Context] and [android.app.Activity], to ensure that they are called, and only once.
+ * Test for [PreferenceFragmentCompat] interfaces that can be implemented via subclasses, [Context]
+ * and [android.app.Activity], to ensure that they are called, and only once.
  *
  * This test doesn't test the paths including [PreferenceFragmentCompat.getCallbackFragment], as
  * this API is @RestrictTo and we don't expect developers to be using it.
@@ -61,53 +61,39 @@
 
     @Suppress("DEPRECATION")
     @get:Rule
-    val noInterfaceActivityRule = androidx.test.rule.ActivityTestRule(
-        NoInterfaceTestActivity::class.java,
-        false,
-        false
-    )
+    val noInterfaceActivityRule =
+        androidx.test.rule.ActivityTestRule(NoInterfaceTestActivity::class.java, false, false)
 
     @Suppress("DEPRECATION")
     @get:Rule
-    val withInterfaceActivityRule = androidx.test.rule.ActivityTestRule(
-        WithInterfaceTestActivity::class.java,
-        false,
-        false
-    )
+    val withInterfaceActivityRule =
+        androidx.test.rule.ActivityTestRule(WithInterfaceTestActivity::class.java, false, false)
 
     @Test
     fun onPreferenceStartFragmentTest_contextCallback() {
         verifyCallsWithContext {
-            Preference(requireContext()).apply {
-                fragment = "dummy.fragment"
-            }
+            Preference(requireContext()).apply { fragment = "dummy.fragment" }
         }
     }
 
     @Test
     fun onPreferenceStartFragmentTest_activityCallback() {
         verifyCallsWithActivity {
-            Preference(requireContext()).apply {
-                fragment = "dummy.fragment"
-            }
+            Preference(requireContext()).apply { fragment = "dummy.fragment" }
         }
     }
 
     @Test
     fun onPreferenceStartFragmentTest_contextAndActivityCallback_contextHandlesCall() {
         verifyCallsWithContextAndActivity(contextHandlesCall = true) {
-            Preference(requireContext()).apply {
-                fragment = "dummy.fragment"
-            }
+            Preference(requireContext()).apply { fragment = "dummy.fragment" }
         }
     }
 
     @Test
     fun onPreferenceStartFragmentTest_contextAndActivityCallback_contextDoesNotHandleCall() {
         verifyCallsWithContextAndActivity(contextHandlesCall = false) {
-            Preference(requireContext()).apply {
-                fragment = "dummy.fragment"
-            }
+            Preference(requireContext()).apply { fragment = "dummy.fragment" }
         }
     }
 
@@ -167,16 +153,12 @@
 
     @Test
     fun onPreferenceDisplayDialogTest_contextCallback() {
-        verifyCallsWithContext {
-            EditTextPreference(requireContext())
-        }
+        verifyCallsWithContext { EditTextPreference(requireContext()) }
     }
 
     @Test
     fun onPreferenceDisplayDialogTest_activityCallback() {
-        verifyCallsWithActivity {
-            EditTextPreference(requireContext())
-        }
+        verifyCallsWithActivity { EditTextPreference(requireContext()) }
     }
 
     @Test
@@ -207,25 +189,18 @@
         noInterfaceActivityRule.run {
             runOnUiThread {
                 activity.displayPreferenceFragment(
-                    TestFragment(
-                        testPreferenceFactory,
-                        contextCallback = incrementCount
-                    )
+                    TestFragment(testPreferenceFactory, contextCallback = incrementCount)
                 )
             }
         }
 
         TestFragment.assertPreferenceIsDisplayed()
 
-        noInterfaceActivityRule.runOnUiThread {
-            assertEquals(0, count)
-        }
+        noInterfaceActivityRule.runOnUiThread { assertEquals(0, count) }
 
         TestFragment.clickOnPreference()
 
-        noInterfaceActivityRule.runOnUiThread {
-            assertEquals(1, count)
-        }
+        noInterfaceActivityRule.runOnUiThread { assertEquals(1, count) }
     }
 
     private fun verifyCallsWithActivity(
@@ -243,30 +218,23 @@
             runOnUiThread {
                 activity.setTestCallback(incrementCount)
                 activity.displayPreferenceFragment(
-                    TestFragment(
-                        testPreferenceFactory,
-                        contextCallback = null
-                    )
+                    TestFragment(testPreferenceFactory, contextCallback = null)
                 )
             }
         }
 
         TestFragment.assertPreferenceIsDisplayed()
 
-        withInterfaceActivityRule.runOnUiThread {
-            assertEquals(0, count)
-        }
+        withInterfaceActivityRule.runOnUiThread { assertEquals(0, count) }
 
         TestFragment.clickOnPreference()
 
-        withInterfaceActivityRule.runOnUiThread {
-            assertEquals(1, count)
-        }
+        withInterfaceActivityRule.runOnUiThread { assertEquals(1, count) }
     }
 
     /**
-     * @param contextHandlesCall whether the context implementation 'handles' the interface call,
-     * by returning true. If it does, then the activity implementation should not be called.
+     * @param contextHandlesCall whether the context implementation 'handles' the interface call, by
+     *   returning true. If it does, then the activity implementation should not be called.
      */
     private fun verifyCallsWithContextAndActivity(
         contextHandlesCall: Boolean,
@@ -290,10 +258,7 @@
             runOnUiThread {
                 activity.setTestCallback(incrementActivityCount)
                 activity.displayPreferenceFragment(
-                    TestFragment(
-                        testPreferenceFactory,
-                        contextCallback = incrementContextCount
-                    )
+                    TestFragment(testPreferenceFactory, contextCallback = incrementContextCount)
                 )
             }
         }
@@ -311,30 +276,30 @@
             // Context should be checked before activity, so this will always be called
             assertEquals(1, contextCount)
 
-            val expectedActivityCount = if (contextHandlesCall) {
-                // If context returns true, then we should never call the activity implementation
-                0
-            } else {
-                // If context returns false, it has not handled the call, so we should call the
-                // activity implementation
-                1
-            }
+            val expectedActivityCount =
+                if (contextHandlesCall) {
+                    // If context returns true, then we should never call the activity
+                    // implementation
+                    0
+                } else {
+                    // If context returns false, it has not handled the call, so we should call the
+                    // activity implementation
+                    1
+                }
             assertEquals(expectedActivityCount, activityCount)
         }
     }
 
     /**
      * Verify the callback is dispatched to the parent fragment via the fragment hierarchy. Use
-     * [fragmentHandlesCall] to indicates whether or not the
-     * corresponding fragment handles the callback.
+     * [fragmentHandlesCall] to indicates whether or not the corresponding fragment handles the
+     * callback.
      *
-     * @param fragmentHandlesCall A boolean array indicates whether or not the corresponding
-     * child fragment handles the callback. The first element in the array represents the
-     * parent fragment, and the second element is the child fragment.
+     * @param fragmentHandlesCall A boolean array indicates whether or not the corresponding child
+     *   fragment handles the callback. The first element in the array represents the parent
+     *   fragment, and the second element is the child fragment.
      */
-    private fun verifyCallsWithNestedFragment(
-        fragmentHandlesCall: BooleanArray
-    ) {
+    private fun verifyCallsWithNestedFragment(fragmentHandlesCall: BooleanArray) {
         var parentCount = 0
         val incrementParentCount: () -> Boolean = {
             Log.i("DEBUG_TEST", "parent get called ")
@@ -353,10 +318,7 @@
         noInterfaceActivityRule.run {
             runOnUiThread {
                 activity.displayPreferenceFragment(
-                    WithInterfaceParentFragment(
-                        incrementParentCount,
-                        incrementChildCount
-                    )
+                    WithInterfaceParentFragment(incrementParentCount, incrementChildCount)
                 )
             }
         }
@@ -379,9 +341,7 @@
 }
 
 open class NoInterfaceTestActivity : AppCompatActivity() {
-    /**
-     * Displays the given [fragment] by adding it to a FragmentTransaction
-     */
+    /** Displays the given [fragment] by adding it to a FragmentTransaction */
     fun displayPreferenceFragment(fragment: Fragment) {
         supportFragmentManager
             .beginTransaction()
@@ -399,8 +359,8 @@
     private lateinit var testCallback: () -> Boolean
 
     /**
-     * Sets the [callback] to be invoked when an interface method from [PreferenceFragmentCompat]
-     * is invoked on this Activity.
+     * Sets the [callback] to be invoked when an interface method from [PreferenceFragmentCompat] is
+     * invoked on this Activity.
      *
      * @param callback returns true if it handles the event, false if not
      */
@@ -408,27 +368,21 @@
         testCallback = callback
     }
 
-    override fun onPreferenceStartFragment(
-        caller: PreferenceFragmentCompat,
-        pref: Preference
-    ) = testCallback()
+    override fun onPreferenceStartFragment(caller: PreferenceFragmentCompat, pref: Preference) =
+        testCallback()
 
-    override fun onPreferenceStartScreen(
-        caller: PreferenceFragmentCompat,
-        pref: PreferenceScreen
-    ) = testCallback()
+    override fun onPreferenceStartScreen(caller: PreferenceFragmentCompat, pref: PreferenceScreen) =
+        testCallback()
 
-    override fun onPreferenceDisplayDialog(
-        caller: PreferenceFragmentCompat,
-        pref: Preference
-    ) = testCallback()
+    override fun onPreferenceDisplayDialog(caller: PreferenceFragmentCompat, pref: Preference) =
+        testCallback()
 }
 
 /**
  * [Context] that implements interface methods so that we can return it from inside getContext().
  *
  * @property testCallback invoked when an interface method from [PreferenceFragmentCompat] is
- * invoked on this object. Returns true if it handles the event, false if not.
+ *   invoked on this object. Returns true if it handles the event, false if not.
  */
 private class TestContext(baseContext: Context, private val testCallback: () -> Boolean) :
     ContextWrapper(baseContext),
@@ -436,20 +390,14 @@
     PreferenceFragmentCompat.OnPreferenceStartScreenCallback,
     PreferenceFragmentCompat.OnPreferenceDisplayDialogCallback {
 
-    override fun onPreferenceStartFragment(
-        caller: PreferenceFragmentCompat,
-        pref: Preference
-    ) = testCallback()
+    override fun onPreferenceStartFragment(caller: PreferenceFragmentCompat, pref: Preference) =
+        testCallback()
 
-    override fun onPreferenceStartScreen(
-        caller: PreferenceFragmentCompat,
-        pref: PreferenceScreen
-    ) = testCallback()
+    override fun onPreferenceStartScreen(caller: PreferenceFragmentCompat, pref: PreferenceScreen) =
+        testCallback()
 
-    override fun onPreferenceDisplayDialog(
-        caller: PreferenceFragmentCompat,
-        pref: Preference
-    ) = testCallback()
+    override fun onPreferenceDisplayDialog(caller: PreferenceFragmentCompat, pref: Preference) =
+        testCallback()
 }
 
 /**
@@ -458,9 +406,9 @@
  *
  * @property testPreferenceFactory factory that creates the [Preference] to be tested
  * @property contextCallback optional callback that will be used in the interface methods
- * implemented by a wrapped [TestContext] returned by [getContext] if not null. This simulates the
- * case where a non-Activity object is returned by [getContext], with the interface methods
- * implemented, for non-Activity based Fragment hosts.
+ *   implemented by a wrapped [TestContext] returned by [getContext] if not null. This simulates the
+ *   case where a non-Activity object is returned by [getContext], with the interface methods
+ *   implemented, for non-Activity based Fragment hosts.
  */
 class TestFragment(
     private val testPreferenceFactory: PreferenceFragmentCompat.() -> Preference,
@@ -484,15 +432,13 @@
 
     companion object {
         private const val preferenceTitle = "preference"
-        /**
-         * Asserts the preference created by [TestFragment.testPreferenceFactory] is displayed.
-         */
+
+        /** Asserts the preference created by [TestFragment.testPreferenceFactory] is displayed. */
         fun assertPreferenceIsDisplayed() {
             onView(withText(preferenceTitle)).check(matches(isDisplayed()))
         }
-        /**
-         * Clicks on the preference created by [TestFragment.testPreferenceFactory].
-         */
+
+        /** Clicks on the preference created by [TestFragment.testPreferenceFactory]. */
         fun clickOnPreference() {
             onView(withText(preferenceTitle)).perform(click())
         }
@@ -500,12 +446,12 @@
 }
 
 /**
- * Testing a nested fragment that implements the interface [PreferenceFragmentCompat
- * .OnPreferenceStartFragmentCallback].
+ * Testing a nested fragment that implements the interface
+ * [PreferenceFragmentCompat .OnPreferenceStartFragmentCallback].
  *
- * @property parentTestCallback invoked when an interface method from [PreferenceFragmentCompat
- * .OnPreferenceStartFragmentCallback] is invoked on parent fragment. Returns true if it handles
- * the event, false if not.
+ * @property parentTestCallback invoked when an interface method from
+ *   [PreferenceFragmentCompat .OnPreferenceStartFragmentCallback] is invoked on parent fragment.
+ *   Returns true if it handles the event, false if not.
  * @property childTestCallback
  */
 class WithInterfaceParentFragment(
@@ -530,9 +476,7 @@
         ): View? {
             val contentView = FrameLayout(inflater.context)
             contentView.addView(
-                FragmentContainerView(inflater.context).apply {
-                    id = R.id.child_fragment
-                },
+                FragmentContainerView(inflater.context).apply { id = R.id.child_fragment },
                 ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT)
             )
 
@@ -555,20 +499,16 @@
             return contentView
         }
 
-        override fun onPreferenceStartFragment(
-            caller: PreferenceFragmentCompat,
-            pref: Preference
-        ) = callback()
+        override fun onPreferenceStartFragment(caller: PreferenceFragmentCompat, pref: Preference) =
+            callback()
 
         override fun onPreferenceStartScreen(
             caller: PreferenceFragmentCompat,
             pref: PreferenceScreen
         ) = callback()
 
-        override fun onPreferenceDisplayDialog(
-            caller: PreferenceFragmentCompat,
-            pref: Preference
-        ) = callback()
+        override fun onPreferenceDisplayDialog(caller: PreferenceFragmentCompat, pref: Preference) =
+            callback()
     }
 
     override fun onCreateView(
@@ -591,18 +531,12 @@
         return contentView
     }
 
-    override fun onPreferenceStartFragment(
-        caller: PreferenceFragmentCompat,
-        pref: Preference
-    ) = parentTestCallback()
+    override fun onPreferenceStartFragment(caller: PreferenceFragmentCompat, pref: Preference) =
+        parentTestCallback()
 
-    override fun onPreferenceStartScreen(
-        caller: PreferenceFragmentCompat,
-        pref: PreferenceScreen
-    ) = parentTestCallback()
+    override fun onPreferenceStartScreen(caller: PreferenceFragmentCompat, pref: PreferenceScreen) =
+        parentTestCallback()
 
-    override fun onPreferenceDisplayDialog(
-        caller: PreferenceFragmentCompat,
-        pref: Preference
-    ) = parentTestCallback()
+    override fun onPreferenceDisplayDialog(caller: PreferenceFragmentCompat, pref: Preference) =
+        parentTestCallback()
 }
diff --git a/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceViewHolderStateTest.kt b/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceViewHolderStateTest.kt
index 64dd3d2..b683604 100644
--- a/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceViewHolderStateTest.kt
+++ b/preference/preference/src/androidTest/java/androidx/preference/tests/PreferenceViewHolderStateTest.kt
@@ -44,9 +44,7 @@
 import org.junit.Test
 import org.junit.runner.RunWith
 
-/**
- * Test for resetting [PreferenceViewHolder] state.
- */
+/** Test for resetting [PreferenceViewHolder] state. */
 @RunWith(AndroidJUnit4::class)
 @LargeTest
 class PreferenceViewHolderStateTest {
@@ -72,18 +70,17 @@
         // Add 20 unselectable + copyable Preferences. This is so that when we add a new item, it
         // will be offscreen, and when scrolling to it RecyclerView will attempt to reuse an
         // existing cached ViewHolder.
-        val preferences = (1..20).map { index ->
-            TestPreference(fragment.context!!).apply {
-                title = copyableTitle + index
-                summary = "Summary to copy"
-                isCopyingEnabled = true
-                isSelectable = false
+        val preferences =
+            (1..20).map { index ->
+                TestPreference(fragment.context!!).apply {
+                    title = copyableTitle + index
+                    summary = "Summary to copy"
+                    isCopyingEnabled = true
+                    isSelectable = false
+                }
             }
-        }
 
-        activityRule.runOnUiThread {
-            preferences.forEach { preferenceScreen.addPreference(it) }
-        }
+        activityRule.runOnUiThread { preferences.forEach { preferenceScreen.addPreference(it) } }
 
         // Wait for a Preference to be visible
         onView(withText("${copyableTitle}1")).check(matches(isDisplayed()))
@@ -98,19 +95,18 @@
 
         // Add a normal, selectable Preference to the end. This will currently be displayed off
         // screen, and not yet bound.
-        val normalPreference = TestPreference(fragment.context!!).apply {
-            title = normalTitle
-            summary = "Normal summary"
-        }
+        val normalPreference =
+            TestPreference(fragment.context!!).apply {
+                title = normalTitle
+                summary = "Normal summary"
+            }
 
         // Assert that we haven't bound this Preference yet
         assertNull(normalPreference.background)
         assertNull(normalPreference.titleColor)
         assertNull(normalPreference.summaryColor)
 
-        activityRule.runOnUiThread {
-            preferenceScreen.addPreference(normalPreference)
-        }
+        activityRule.runOnUiThread { preferenceScreen.addPreference(normalPreference) }
 
         val maxAttempts = 10
 
@@ -138,16 +134,15 @@
         // Add 40 disabled Preferences. The ones at the end haven't been bound yet, and we want
         // to ensure that when they are bound, reusing a ViewHolder, they should have the correct
         // disabled state.
-        val preferences = (1..40).map { index ->
-            TestPreference(fragment.context!!).apply {
-                title = disabledTitle + index
-                isEnabled = false
+        val preferences =
+            (1..40).map { index ->
+                TestPreference(fragment.context!!).apply {
+                    title = disabledTitle + index
+                    isEnabled = false
+                }
             }
-        }
 
-        activityRule.runOnUiThread {
-            preferences.forEach { preferenceScreen.addPreference(it) }
-        }
+        activityRule.runOnUiThread { preferences.forEach { preferenceScreen.addPreference(it) } }
 
         // Wait for a Preference to be visible
         onView(withText("${disabledTitle}1")).check(matches(isDisplayed()))
@@ -174,8 +169,8 @@
 }
 
 /**
- * Testing [Preference] class that records the background [Drawable] and the color of its title
- * and summary once bound.
+ * Testing [Preference] class that records the background [Drawable] and the color of its title and
+ * summary once bound.
  */
 private class TestPreference(context: Context) : Preference(context) {
     var background: Drawable? = null
diff --git a/preference/preference/src/androidTest/java/androidx/preference/tests/SeekBarPreferenceTest.kt b/preference/preference/src/androidTest/java/androidx/preference/tests/SeekBarPreferenceTest.kt
index d2ddd4e..0193c7a 100644
--- a/preference/preference/src/androidTest/java/androidx/preference/tests/SeekBarPreferenceTest.kt
+++ b/preference/preference/src/androidTest/java/androidx/preference/tests/SeekBarPreferenceTest.kt
@@ -48,9 +48,7 @@
 import org.junit.Test
 import org.junit.runner.RunWith
 
-/**
- * Test for [androidx.preference.SeekBarPreference].
- */
+/** Test for [androidx.preference.SeekBarPreference]. */
 @RunWith(AndroidJUnit4::class)
 @LargeTest
 class SeekBarPreferenceTest {
@@ -64,9 +62,7 @@
     @Before
     @UiThreadTest
     fun setUp() {
-        val fragment = activityRule.activity.setupPreferenceHierarchy(
-            R.xml.test_seekbar
-        )
+        val fragment = activityRule.activity.setupPreferenceHierarchy(R.xml.test_seekbar)
         seekBarPreference = fragment.preferenceScreen.getPreference(0) as SeekBarPreference
         seekBarPreference.min = 0
         seekBarPreference.max = 5
@@ -245,9 +241,7 @@
         }
     }
 
-    /**
-     * A [ViewAction] that drags a [SeekBar] from its left edge to the right edge of the screen
-     */
+    /** A [ViewAction] that drags a [SeekBar] from its left edge to the right edge of the screen */
     private fun dragSeekBar(): ViewAction {
         return GeneralSwipeAction(
             Swipe.FAST,
@@ -287,8 +281,7 @@
             }
 
             override fun describeTo(description: Description?) {
-                description?.appendText("with SeekBar progress:")
-                    ?.appendValue(progress)
+                description?.appendText("with SeekBar progress:")?.appendValue(progress)
             }
         }
     }
diff --git a/preference/preference/src/androidTest/java/androidx/preference/tests/SelectableTest.kt b/preference/preference/src/androidTest/java/androidx/preference/tests/SelectableTest.kt
index 5421cbe..642aa087 100644
--- a/preference/preference/src/androidTest/java/androidx/preference/tests/SelectableTest.kt
+++ b/preference/preference/src/androidTest/java/androidx/preference/tests/SelectableTest.kt
@@ -44,9 +44,7 @@
 import org.junit.Test
 import org.junit.runner.RunWith
 
-/**
- * Test for selectable [Preference] logic.
- */
+/** Test for selectable [Preference] logic. */
 @SdkSuppress(minSdkVersion = Build.VERSION_CODES.LOLLIPOP)
 @RunWith(AndroidJUnit4::class)
 @LargeTest
@@ -64,9 +62,7 @@
     @Before
     @UiThreadTest
     fun setUp() {
-        fragment = activityRule.activity.setupPreferenceHierarchy(
-            R.xml.test_selectable
-        )
+        fragment = activityRule.activity.setupPreferenceHierarchy(R.xml.test_selectable)
         preference = fragment.preferenceScreen.findPreference("preference")!!
         category = fragment.preferenceScreen.findPreference("category")!!
     }
@@ -84,9 +80,7 @@
         }
         // We should receive one click
         onView(withText("Preference")).perform(click())
-        activityRule.runOnUiThread {
-            assertEquals(1, clicks)
-        }
+        activityRule.runOnUiThread { assertEquals(1, clicks) }
     }
 
     @Test
@@ -101,9 +95,7 @@
         }
         // No clicks should occur
         onView(withText("Preference")).perform(click())
-        activityRule.runOnUiThread {
-            assertEquals(0, clicks)
-        }
+        activityRule.runOnUiThread { assertEquals(0, clicks) }
     }
 
     @Test
@@ -119,9 +111,7 @@
         }
         // No clicks should occur
         onView(withText("Category")).perform(click())
-        activityRule.runOnUiThread {
-            assertEquals(0, clicks)
-        }
+        activityRule.runOnUiThread { assertEquals(0, clicks) }
     }
 
     @Test
diff --git a/preference/preference/src/main/java/androidx/preference/PreferenceHeaderFragmentCompat.kt b/preference/preference/src/main/java/androidx/preference/PreferenceHeaderFragmentCompat.kt
index 2207983..584f14f 100644
--- a/preference/preference/src/main/java/androidx/preference/PreferenceHeaderFragmentCompat.kt
+++ b/preference/preference/src/main/java/androidx/preference/PreferenceHeaderFragmentCompat.kt
@@ -35,16 +35,14 @@
 import androidx.slidingpanelayout.widget.SlidingPaneLayout
 
 /**
- * [PreferenceHeaderFragmentCompat] implements a two-pane fragment for preferences. The list
- * pane is a container of preference headers. Tapping on a preference header swaps out the fragment
- * shown in the detail pane. Subclasses are expected to implement [onCreatePreferenceHeader] to
- * provide your own [PreferenceFragmentCompat] in the list pane. The preference header hierarchy
- * is defined by either providing an XML resource or build in code through
- * [PreferenceFragmentCompat]. In both cases, users need to use a [PreferenceScreen] as the root
- * component in the hierarchy.
+ * [PreferenceHeaderFragmentCompat] implements a two-pane fragment for preferences. The list pane is
+ * a container of preference headers. Tapping on a preference header swaps out the fragment shown in
+ * the detail pane. Subclasses are expected to implement [onCreatePreferenceHeader] to provide your
+ * own [PreferenceFragmentCompat] in the list pane. The preference header hierarchy is defined by
+ * either providing an XML resource or build in code through [PreferenceFragmentCompat]. In both
+ * cases, users need to use a [PreferenceScreen] as the root component in the hierarchy.
  *
  * Usage:
- *
  * ```
  * class TwoPanePreference : PreferenceHeaderFragmentCompat() {
  *     override fun onCreatePreferenceHeader(): PreferenceFragmentCompat {
@@ -53,15 +51,14 @@
  * }
  * ```
  *
- * [PreferenceHeaderFragmentCompat] handles the fragment transaction when users defines a
- * fragment or intent associated with the preference header. By default, the initial state fragment
- * for the detail pane is set to the associated fragment that first found in preference
- * headers. You can override [onCreateInitialDetailFragment] to provide the custom empty state
- * fragment for the detail pane.
+ * [PreferenceHeaderFragmentCompat] handles the fragment transaction when users defines a fragment
+ * or intent associated with the preference header. By default, the initial state fragment for the
+ * detail pane is set to the associated fragment that first found in preference headers. You can
+ * override [onCreateInitialDetailFragment] to provide the custom empty state fragment for the
+ * detail pane.
  */
 abstract class PreferenceHeaderFragmentCompat :
-    Fragment(),
-    PreferenceFragmentCompat.OnPreferenceStartFragmentCallback {
+    Fragment(), PreferenceFragmentCompat.OnPreferenceStartFragmentCallback {
     private var onBackPressedCallback: OnBackPressedCallback? = null
 
     /**
@@ -84,10 +81,11 @@
         }
         if (caller.id == R.id.preferences_detail) {
             // Opens an preference in detail pane.
-            val frag = childFragmentManager.fragmentFactory.instantiate(
-                requireContext().classLoader,
-                pref.fragment!!
-            )
+            val frag =
+                childFragmentManager.fragmentFactory.instantiate(
+                    requireContext().classLoader,
+                    pref.fragment!!
+                )
             frag.arguments = pref.extras
 
             childFragmentManager.commit {
@@ -101,11 +99,8 @@
         return false
     }
 
-    private class InnerOnBackPressedCallback(
-        private val caller: PreferenceHeaderFragmentCompat
-    ) :
-        OnBackPressedCallback(true),
-        SlidingPaneLayout.PanelSlideListener {
+    private class InnerOnBackPressedCallback(private val caller: PreferenceHeaderFragmentCompat) :
+        OnBackPressedCallback(true), SlidingPaneLayout.PanelSlideListener {
 
         init {
             caller.slidingPaneLayout.addPanelSlideListener(this)
@@ -144,9 +139,7 @@
     ): View {
         val slidingPaneLayout = buildContentView(inflater)
         // Now create the header fragment
-        val existingHeaderFragment = childFragmentManager.findFragmentById(
-            R.id.preferences_header
-        )
+        val existingHeaderFragment = childFragmentManager.findFragmentById(R.id.preferences_header)
         if (existingHeaderFragment == null) {
             onCreatePreferenceHeader().also { newHeaderFragment ->
                 childFragmentManager.commit {
@@ -160,45 +153,42 @@
     }
 
     private fun buildContentView(inflater: LayoutInflater): SlidingPaneLayout {
-        val slidingPaneLayout = SlidingPaneLayout(inflater.context).apply {
-            id = R.id.preferences_sliding_pane_layout
-        }
+        val slidingPaneLayout =
+            SlidingPaneLayout(inflater.context).apply { id = R.id.preferences_sliding_pane_layout }
         // Add Preference Header Pane
-        val headerContainer = FragmentContainerView(inflater.context).apply {
-            id = R.id.preferences_header
-        }
-        val headerLayoutParams = SlidingPaneLayout.LayoutParams(
-            resources.getDimensionPixelSize(R.dimen.preferences_header_width),
-            MATCH_PARENT
-        ).apply {
-            weight = resources.getInteger(R.integer.preferences_header_pane_weight).toFloat()
-        }
-        slidingPaneLayout.addView(
-            headerContainer,
-            headerLayoutParams
-        )
+        val headerContainer =
+            FragmentContainerView(inflater.context).apply { id = R.id.preferences_header }
+        val headerLayoutParams =
+            SlidingPaneLayout.LayoutParams(
+                    resources.getDimensionPixelSize(R.dimen.preferences_header_width),
+                    MATCH_PARENT
+                )
+                .apply {
+                    weight =
+                        resources.getInteger(R.integer.preferences_header_pane_weight).toFloat()
+                }
+        slidingPaneLayout.addView(headerContainer, headerLayoutParams)
 
         // Add Preference Detail Pane
-        val detailContainer = FragmentContainerView(inflater.context).apply {
-            id = R.id.preferences_detail
-        }
-        val detailLayoutParams = SlidingPaneLayout.LayoutParams(
-            resources.getDimensionPixelSize(R.dimen.preferences_detail_width),
-            MATCH_PARENT
-        ).apply {
-            weight = resources.getInteger(R.integer.preferences_detail_pane_weight).toFloat()
-        }
-        slidingPaneLayout.addView(
-            detailContainer,
-            detailLayoutParams
-        )
+        val detailContainer =
+            FragmentContainerView(inflater.context).apply { id = R.id.preferences_detail }
+        val detailLayoutParams =
+            SlidingPaneLayout.LayoutParams(
+                    resources.getDimensionPixelSize(R.dimen.preferences_detail_width),
+                    MATCH_PARENT
+                )
+                .apply {
+                    weight =
+                        resources.getInteger(R.integer.preferences_detail_pane_weight).toFloat()
+                }
+        slidingPaneLayout.addView(detailContainer, detailLayoutParams)
         return slidingPaneLayout
     }
 
     /**
-     * Called to supply the preference header for this fragment. The subclasses are expected
-     * to call [setPreferenceScreen(PreferenceScreen)] either directly or via helper methods
-     * such as [setPreferenceFromResource(int)] to set headers.
+     * Called to supply the preference header for this fragment. The subclasses are expected to call
+     * [setPreferenceScreen(PreferenceScreen)] either directly or via helper methods such as
+     * [setPreferenceFromResource(int)] to set headers.
      */
     abstract fun onCreatePreferenceHeader(): PreferenceFragmentCompat
 
@@ -214,10 +204,9 @@
             onBackPressedCallback!!.isEnabled = childFragmentManager.backStackEntryCount == 0
         }
         val onBackPressedDispatcherOwner = view.findViewTreeOnBackPressedDispatcherOwner()
-        onBackPressedDispatcherOwner?.onBackPressedDispatcher?.addCallback(
-            viewLifecycleOwner,
-            onBackPressedCallback!!
-        )
+        onBackPressedDispatcherOwner
+            ?.onBackPressedDispatcher
+            ?.addCallback(viewLifecycleOwner, onBackPressedCallback!!)
     }
 
     override fun onViewStateRestored(savedInstanceState: Bundle?) {
@@ -234,14 +223,14 @@
 
     /**
      * Override this method to set initial detail fragment that to be shown. The default
-     * implementation returns the first preference that has a fragment defined on
-     * it.
+     * implementation returns the first preference that has a fragment defined on it.
      *
      * @return Fragment The first fragment that found in the list of preference headers.
      */
     open fun onCreateInitialDetailFragment(): Fragment? {
-        val headerFragment = childFragmentManager.findFragmentById(R.id.preferences_header)
-            as PreferenceFragmentCompat
+        val headerFragment =
+            childFragmentManager.findFragmentById(R.id.preferences_header)
+                as PreferenceFragmentCompat
         if (headerFragment.preferenceScreen.preferenceCount <= 0) {
             return null
         }
@@ -250,15 +239,14 @@
             if (header.fragment == null) {
                 continue
             }
-            val fragment = header.fragment?.let {
-                childFragmentManager.fragmentFactory.instantiate(
-                    requireContext().classLoader,
-                    it
-                )
-            }
-            fragment?.apply {
-                arguments = header.extras
-            }
+            val fragment =
+                header.fragment?.let {
+                    childFragmentManager.fragmentFactory.instantiate(
+                        requireContext().classLoader,
+                        it
+                    )
+                }
+            fragment?.apply { arguments = header.extras }
             return fragment
         }
         return null
@@ -275,16 +263,12 @@
             openPreferenceHeader(header.intent)
             return
         }
-        val fragment = header.fragment?.let {
-            childFragmentManager.fragmentFactory.instantiate(
-                requireContext().classLoader,
-                it
-            )
-        }
+        val fragment =
+            header.fragment?.let {
+                childFragmentManager.fragmentFactory.instantiate(requireContext().classLoader, it)
+            }
 
-        fragment?.apply {
-            arguments = header.extras
-        }
+        fragment?.apply { arguments = header.extras }
 
         // Clear back stack
         if (childFragmentManager.backStackEntryCount > 0) {
diff --git a/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/BaseQueryTest.kt b/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/BaseQueryTest.kt
index 0166c7d..2434b08 100644
--- a/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/BaseQueryTest.kt
+++ b/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/BaseQueryTest.kt
@@ -199,6 +199,34 @@
     }
 
     @Test
+    fun insertListMap() = runTest {
+        val sampleEntity1 = SampleEntity(1, 1)
+        val sampleEntity2 = SampleEntity2(1, 2)
+        val dao = getRoomDatabase().dao()
+
+        dao.insert(sampleEntity1)
+        dao.insert(sampleEntity2)
+        assertThat(dao.getSingleItemWithColumn().data).isEqualTo(1)
+
+        val map = dao.getMapReturnTypeWithList()
+        assertThat(map[sampleEntity1]).isEqualTo(listOf(sampleEntity2))
+    }
+
+    @Test
+    fun insertSetMap() = runTest {
+        val sampleEntity1 = SampleEntity(1, 1)
+        val sampleEntity2 = SampleEntity2(1, 2)
+        val dao = getRoomDatabase().dao()
+
+        dao.insert(sampleEntity1)
+        dao.insert(sampleEntity2)
+        assertThat(dao.getSingleItemWithColumn().data).isEqualTo(1)
+
+        val map = dao.getMapReturnTypeWithSet()
+        assertThat(map[sampleEntity1]).isEqualTo(setOf(sampleEntity2))
+    }
+
+    @Test
     fun mapWithDupeColumns() = runTest {
         val sampleEntity1 = SampleEntity(1, 1)
         val sampleEntity2 = SampleEntityCopy(1, 2)
diff --git a/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/SampleDatabase.kt b/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/SampleDatabase.kt
index f41e88e..3a78d66 100644
--- a/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/SampleDatabase.kt
+++ b/room/integration-tests/multiplatformtestapp/src/commonTest/kotlin/androidx/room/integration/multiplatformtestapp/test/SampleDatabase.kt
@@ -128,6 +128,12 @@
     )
     suspend fun getMapWithDupeColumns(): Map<SampleEntity, SampleEntityCopy>
 
+    @Query("SELECT * FROM SampleEntity JOIN SampleEntity2 ON SampleEntity.pk = SampleEntity2.pk2")
+    suspend fun getMapReturnTypeWithList(): Map<SampleEntity, List<SampleEntity2>>
+
+    @Query("SELECT * FROM SampleEntity JOIN SampleEntity2 ON SampleEntity.pk = SampleEntity2.pk2")
+    suspend fun getMapReturnTypeWithSet(): Map<SampleEntity, Set<SampleEntity2>>
+
     @Query(
         """
         SELECT * FROM SampleEntity
diff --git a/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapQueryResultAdapter.kt b/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapQueryResultAdapter.kt
index bb3790a..70d732e 100644
--- a/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapQueryResultAdapter.kt
+++ b/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapQueryResultAdapter.kt
@@ -16,7 +16,6 @@
 
 package androidx.room.solver.query.result
 
-import androidx.room.compiler.codegen.XCodeBlock
 import androidx.room.parser.ParsedQuery
 import androidx.room.processor.Context
 import androidx.room.solver.CodeGenScope
@@ -33,10 +32,7 @@
             addLocalVariable(
                 name = outVarName,
                 typeName = mapValueResultAdapter.getDeclarationTypeName(),
-                assignExpr = XCodeBlock.ofNewInstance(
-                    language,
-                    mapValueResultAdapter.getInstantiationTypeName(language)
-                )
+                assignExpr = mapValueResultAdapter.getInstantiationCodeBlock(language)
             )
             val stepName = if (scope.useDriverApi) "step" else "moveToNext"
             beginControlFlow("while (%L.$stepName())", cursorVarName).apply {
diff --git a/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapValueResultAdapter.kt b/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapValueResultAdapter.kt
index 3576409..c4ab320 100644
--- a/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapValueResultAdapter.kt
+++ b/room/room-compiler/src/main/kotlin/androidx/room/solver/query/result/MapValueResultAdapter.kt
@@ -22,6 +22,9 @@
 import androidx.room.compiler.processing.XNullability
 import androidx.room.compiler.processing.XType
 import androidx.room.ext.CommonTypeNames
+import androidx.room.ext.CommonTypeNames.ARRAY_LIST
+import androidx.room.ext.CommonTypeNames.HASH_SET
+import androidx.room.ext.KotlinCollectionMemberNames
 import androidx.room.ext.KotlinTypeNames
 import androidx.room.solver.CodeGenScope
 import androidx.room.solver.query.result.MultimapQueryResultAdapter.MapType.Companion.isSparseArray
@@ -60,7 +63,7 @@
     /**
      * Right-Hand-Side of a Map value type arg initialization.
      */
-    abstract fun getInstantiationTypeName(language: CodeLanguage): XTypeName
+    abstract fun getInstantiationCodeBlock(language: CodeLanguage): XCodeBlock
 
     abstract fun isMigratedToDriver(): Boolean
 
@@ -115,30 +118,39 @@
                 )
         }
 
-        override fun getInstantiationTypeName(
+        override fun getInstantiationCodeBlock(
             language: CodeLanguage
-        ) = when (val typeOfMap = this.mapType) {
+        ): XCodeBlock = when (val typeOfMap = this.mapType) {
             MultimapQueryResultAdapter.MapType.DEFAULT ->
                 // LinkedHashMap is used as impl to preserve key ordering for ordered
                 // query results.
-                when (language) {
-                    CodeLanguage.JAVA -> CommonTypeNames.LINKED_HASH_MAP
-                    CodeLanguage.KOTLIN -> KotlinTypeNames.LINKED_HASH_MAP
-                }.parametrizedBy(
-                    keyTypeName,
-                    mapValueResultAdapter.getDeclarationTypeName()
+                XCodeBlock.ofNewInstance(
+                    language,
+                    when (language) {
+                        CodeLanguage.JAVA -> CommonTypeNames.LINKED_HASH_MAP
+                        CodeLanguage.KOTLIN -> KotlinTypeNames.LINKED_HASH_MAP
+                    }.parametrizedBy(
+                        keyTypeName,
+                        mapValueResultAdapter.getDeclarationTypeName()
+                    )
                 )
 
             MultimapQueryResultAdapter.MapType.ARRAY_MAP ->
-                typeOfMap.className.parametrizedBy(
-                    keyTypeName,
-                    mapValueResultAdapter.getDeclarationTypeName()
+                XCodeBlock.ofNewInstance(
+                    language,
+                    typeOfMap.className.parametrizedBy(
+                        keyTypeName,
+                        mapValueResultAdapter.getDeclarationTypeName()
+                    )
                 )
 
             MultimapQueryResultAdapter.MapType.LONG_SPARSE,
             MultimapQueryResultAdapter.MapType.INT_SPARSE ->
-                typeOfMap.className.parametrizedBy(
-                    mapValueResultAdapter.getDeclarationTypeName()
+                XCodeBlock.ofNewInstance(
+                    language,
+                    typeOfMap.className.parametrizedBy(
+                        mapValueResultAdapter.getDeclarationTypeName()
+                    )
                 )
         }
 
@@ -196,10 +208,7 @@
                             addStatement(
                                 "%L = %L",
                                 tmpValuesVarName,
-                                XCodeBlock.ofNewInstance(
-                                    language,
-                                    mapValueResultAdapter.getInstantiationTypeName(language)
-                                )
+                                mapValueResultAdapter.getInstantiationCodeBlock(language)
                             )
                             addStatement(
                                 "%L.put(%L, %L)",
@@ -302,14 +311,37 @@
         // The type name of the result map value
         // For Map<Foo, Bar> it is Bar
         // for Map<Foo, List<Bar> it is List<Bar>
-        override fun getInstantiationTypeName(language: CodeLanguage): XTypeName {
+        override fun getInstantiationCodeBlock(language: CodeLanguage): XCodeBlock {
             return when (valueCollectionType) {
                 MultimapQueryResultAdapter.CollectionValueType.LIST ->
-                    CommonTypeNames.ARRAY_LIST.parametrizedBy(valueTypeArg.asTypeName())
+                    when (language) {
+                        CodeLanguage.JAVA -> XCodeBlock.ofNewInstance(
+                            language,
+                            ARRAY_LIST.parametrizedBy(valueTypeArg.asTypeName())
+                        )
+                        CodeLanguage.KOTLIN -> XCodeBlock.of(
+                            language,
+                            "%M()",
+                            KotlinCollectionMemberNames.MUTABLE_LIST_OF
+                        )
+                    }
                 MultimapQueryResultAdapter.CollectionValueType.SET ->
-                    CommonTypeNames.HASH_SET.parametrizedBy(valueTypeArg.asTypeName())
+                    when (language) {
+                        CodeLanguage.JAVA -> XCodeBlock.ofNewInstance(
+                            language,
+                            HASH_SET.parametrizedBy(valueTypeArg.asTypeName())
+                        )
+                        CodeLanguage.KOTLIN -> XCodeBlock.of(
+                            language,
+                            "%M()",
+                            KotlinCollectionMemberNames.MUTABLE_SET_OF
+                        )
+                    }
                 else ->
-                    valueTypeArg.asTypeName()
+                    XCodeBlock.ofNewInstance(
+                        language,
+                        valueTypeArg.asTypeName()
+                    )
             }
         }
 
diff --git a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map.kt b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map.kt
index bcb119e..afb26f3 100644
--- a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map.kt
+++ b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map.kt
@@ -2,7 +2,6 @@
 import androidx.room.util.getColumnIndexOrThrow
 import androidx.room.util.performBlocking
 import androidx.sqlite.SQLiteStatement
-import java.util.ArrayList
 import javax.`annotation`.processing.Generated
 import kotlin.Int
 import kotlin.String
@@ -12,6 +11,7 @@
 import kotlin.collections.Map
 import kotlin.collections.MutableList
 import kotlin.collections.MutableMap
+import kotlin.collections.mutableListOf
 import kotlin.reflect.KClass
 
 @Generated(value = ["androidx.room.RoomProcessor"])
@@ -77,7 +77,7 @@
           if (_result.containsKey(_key)) {
             _values = _result.getValue(_key)
           } else {
-            _values = ArrayList<Song>()
+            _values = mutableListOf()
             _result.put(_key, _values)
           }
           if (_stmt.isNull(_cursorIndexOfSongId) && _stmt.isNull(_cursorIndexOfArtistKey)) {
@@ -148,7 +148,7 @@
           if (_result.containsKey(_key)) {
             _values = _result.getValue(_key)
           } else {
-            _values = ArrayList<String>()
+            _values = mutableListOf()
             _result.put(_key, _values)
           }
           if (_stmt.isNull(_columnIndexOfSongId)) {
diff --git a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map_ambiguousIndexAdapter.kt b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map_ambiguousIndexAdapter.kt
index 3da7cbd..1fca428 100644
--- a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map_ambiguousIndexAdapter.kt
+++ b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_map_ambiguousIndexAdapter.kt
@@ -8,7 +8,6 @@
 import androidx.room.util.query
 import androidx.room.util.wrapMappedColumns
 import androidx.sqlite.SQLiteStatement
-import java.util.ArrayList
 import javax.`annotation`.processing.Generated
 import kotlin.Array
 import kotlin.Int
@@ -20,6 +19,7 @@
 import kotlin.collections.Map
 import kotlin.collections.MutableList
 import kotlin.collections.MutableMap
+import kotlin.collections.mutableListOf
 import kotlin.reflect.KClass
 
 @Generated(value = ["androidx.room.RoomProcessor"])
@@ -53,7 +53,7 @@
           if (_result.containsKey(_key)) {
             _values = _result.getValue(_key)
           } else {
-            _values = ArrayList<Comment>()
+            _values = mutableListOf()
             _result.put(_key, _values)
           }
           if (_stmt.isNull(_cursorIndices[1][0]) && _stmt.isNull(_cursorIndices[1][1]) &&
@@ -97,7 +97,7 @@
           if (_result.containsKey(_key)) {
             _values = _result.getValue(_key)
           } else {
-            _values = ArrayList<Comment>()
+            _values = mutableListOf()
             _result.put(_key, _values)
           }
           if (_stmt.isNull(_cursorIndices[1][0]) && _stmt.isNull(_cursorIndices[1][1]) &&
@@ -143,7 +143,7 @@
         if (_result.containsKey(_key)) {
           _values = _result.getValue(_key)
         } else {
-          _values = ArrayList<Comment>()
+          _values = mutableListOf()
           _result.put(_key, _values)
         }
         if (_cursor.isNull(_cursorIndices[1][0]) && _cursor.isNull(_cursorIndices[1][1]) &&
diff --git a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap.kt b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap.kt
index ef5c59e..896abf1 100644
--- a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap.kt
+++ b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap.kt
@@ -2,7 +2,6 @@
 import androidx.room.util.getColumnIndexOrThrow
 import androidx.room.util.performBlocking
 import androidx.sqlite.SQLiteStatement
-import java.util.ArrayList
 import javax.`annotation`.processing.Generated
 import kotlin.Int
 import kotlin.String
@@ -12,6 +11,7 @@
 import kotlin.collections.Map
 import kotlin.collections.MutableList
 import kotlin.collections.MutableMap
+import kotlin.collections.mutableListOf
 import kotlin.reflect.KClass
 
 @Generated(value = ["androidx.room.RoomProcessor"])
@@ -70,7 +70,7 @@
           if (_values.containsKey(_key_1)) {
             _values_1 = _values.getValue(_key_1)
           } else {
-            _values_1 = ArrayList<Song>()
+            _values_1 = mutableListOf()
             _values.put(_key_1, _values_1)
           }
           if (_stmt.isNull(_cursorIndexOfSongId) && _stmt.isNull(_cursorIndexOfAlbum) &&
@@ -158,7 +158,7 @@
           if (_values_1.containsKey(_key_2)) {
             _values_2 = _values_1.getValue(_key_2)
           } else {
-            _values_2 = ArrayList<Song>()
+            _values_2 = mutableListOf()
             _values_1.put(_key_2, _values_2)
           }
           if (_stmt.isNull(_cursorIndexOfSongId) && _stmt.isNull(_cursorIndexOfAlbum) &&
diff --git a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap_ambiguousIndexAdapter.kt b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap_ambiguousIndexAdapter.kt
index 64822fb..b7d18b5 100644
--- a/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap_ambiguousIndexAdapter.kt
+++ b/room/room-compiler/src/test/test-data/kotlinCodeGen/queryResultAdapter_nestedMap_ambiguousIndexAdapter.kt
@@ -3,7 +3,6 @@
 import androidx.room.util.performBlocking
 import androidx.sqlite.SQLiteStatement
 import java.nio.ByteBuffer
-import java.util.ArrayList
 import javax.`annotation`.processing.Generated
 import kotlin.Array
 import kotlin.Int
@@ -15,6 +14,7 @@
 import kotlin.collections.Map
 import kotlin.collections.MutableList
 import kotlin.collections.MutableMap
+import kotlin.collections.mutableListOf
 import kotlin.reflect.KClass
 
 @Generated(value = ["androidx.room.RoomProcessor"])
@@ -68,7 +68,7 @@
           if (_values.containsKey(_key_1)) {
             _values_1 = _values.getValue(_key_1)
           } else {
-            _values_1 = ArrayList<Comment>()
+            _values_1 = mutableListOf()
             _values.put(_key_1, _values_1)
           }
           if (_stmt.isNull(_cursorIndices[2][0]) && _stmt.isNull(_cursorIndices[2][1]) &&
diff --git a/settings.gradle b/settings.gradle
index 606bf9d..d8806ea 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -520,12 +520,8 @@
 includeProject(":compose:material:material", [BuildType.COMPOSE])
 includeProject(":compose:material:material-benchmark", "compose/material/material/benchmark", [BuildType.COMPOSE])
 includeProject(":compose:material:material-lint", [BuildType.COMPOSE])
-includeProject(":compose:material:material-icons-core", [BuildType.COMPOSE])
-includeProject(":compose:material:material-icons-core:material-icons-core-samples", "compose/material/material-icons-core/samples", [BuildType.COMPOSE])
-includeProject(":compose:material:material-icons-extended", [BuildType.COMPOSE])
 includeProject(":compose:material:material-ripple", [BuildType.COMPOSE])
 includeProject(":compose:material:material-ripple:material-ripple-benchmark", "compose/material/material-ripple/benchmark", [BuildType.COMPOSE])
-includeProject(":compose:material:material:icons:generator", [BuildType.COMPOSE])
 includeProject(":compose:material:material-navigation", [BuildType.COMPOSE])
 includeProject(":compose:material:material-navigation-samples", "compose/material/material-navigation/samples", [BuildType.COMPOSE])
 includeProject(":compose:material:material:integration-tests:material-demos", [BuildType.COMPOSE])
diff --git a/sqlite/integration-tests/driver-conformance-test/build.gradle b/sqlite/integration-tests/driver-conformance-test/build.gradle
index cd02e2c..fd7b912 100644
--- a/sqlite/integration-tests/driver-conformance-test/build.gradle
+++ b/sqlite/integration-tests/driver-conformance-test/build.gradle
@@ -40,8 +40,10 @@
         commonTest {
             dependencies {
                 implementation(project(":sqlite:sqlite"))
+                implementation(project(":sqlite:sqlite-bundled"))
                 implementation(libs.kotlinStdlib)
                 implementation(libs.kotlinTest)
+                implementation(libs.kotlinCoroutinesTest)
                 implementation(project(":kruth:kruth"))
             }
         }
@@ -49,8 +51,6 @@
             dependsOn(commonTest)
             dependencies {
                 implementation(project(":sqlite:sqlite-framework"))
-                implementation(project(":sqlite:sqlite-bundled"))
-
                 implementation(libs.kotlinTestJunit)
                 implementation(libs.testRunner)
                 implementation(libs.testCore)
@@ -59,8 +59,6 @@
         jvmTest {
             dependsOn(commonTest)
             dependencies {
-                implementation(project(":sqlite:sqlite-bundled"))
-
                 implementation(libs.kotlinTestJunit)
             }
         }
@@ -68,7 +66,6 @@
             dependsOn(commonTest)
             dependencies {
                 implementation(project(":sqlite:sqlite-framework"))
-                implementation(project(":sqlite:sqlite-bundled"))
             }
         }
         targets.configureEach { target ->
diff --git a/sqlite/integration-tests/driver-conformance-test/src/androidInstrumentedTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt b/sqlite/integration-tests/driver-conformance-test/src/androidInstrumentedTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
index 1772073..fca79a9 100644
--- a/sqlite/integration-tests/driver-conformance-test/src/androidInstrumentedTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
+++ b/sqlite/integration-tests/driver-conformance-test/src/androidInstrumentedTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
@@ -16,14 +16,38 @@
 
 package androidx.sqlite.driver.test
 
-import androidx.sqlite.SQLiteDriver
+import androidx.kruth.assertThat
 import androidx.sqlite.driver.bundled.BundledSQLiteDriver
+import androidx.test.platform.app.InstrumentationRegistry
+import kotlin.test.AfterTest
+import kotlin.test.BeforeTest
 
 class BundledSQLiteDriverTest : BaseBundledConformanceTest() {
 
+    private val instrumentation = InstrumentationRegistry.getInstrumentation()
+    private val file = instrumentation.targetContext.getDatabasePath("test.db")
+
     override val driverType = TestDriverType.BUNDLED
 
-    override fun getDriver(): SQLiteDriver {
+    override fun getDatabaseFileName(): String = file.path
+
+    override fun getDriver(): BundledSQLiteDriver {
         return BundledSQLiteDriver()
     }
+
+    @BeforeTest
+    fun before() {
+        assertThat(file).isNotNull()
+        file.parentFile?.mkdirs()
+        deleteDatabaseFile()
+    }
+
+    @AfterTest
+    fun after() {
+        deleteDatabaseFile()
+    }
+
+    private fun deleteDatabaseFile() {
+        instrumentation.targetContext.deleteDatabase(file.name)
+    }
 }
diff --git a/sqlite/integration-tests/driver-conformance-test/src/commonTest/kotlin/androidx/sqlite/driver/test/BaseBundledConformanceTest.kt b/sqlite/integration-tests/driver-conformance-test/src/commonTest/kotlin/androidx/sqlite/driver/test/BaseBundledConformanceTest.kt
index d7b5dcd7..be8bf32 100644
--- a/sqlite/integration-tests/driver-conformance-test/src/commonTest/kotlin/androidx/sqlite/driver/test/BaseBundledConformanceTest.kt
+++ b/sqlite/integration-tests/driver-conformance-test/src/commonTest/kotlin/androidx/sqlite/driver/test/BaseBundledConformanceTest.kt
@@ -17,11 +17,25 @@
 package androidx.sqlite.driver.test
 
 import androidx.kruth.assertThat
+import androidx.sqlite.driver.bundled.BundledSQLiteDriver
+import androidx.sqlite.driver.bundled.SQLITE_OPEN_CREATE
+import androidx.sqlite.driver.bundled.SQLITE_OPEN_FULLMUTEX
+import androidx.sqlite.driver.bundled.SQLITE_OPEN_READWRITE
+import androidx.sqlite.execSQL
 import androidx.sqlite.use
 import kotlin.test.Test
+import kotlinx.coroutines.Dispatchers
+import kotlinx.coroutines.IO
+import kotlinx.coroutines.coroutineScope
+import kotlinx.coroutines.launch
+import kotlinx.coroutines.test.runTest
 
 abstract class BaseBundledConformanceTest : BaseConformanceTest() {
 
+    abstract fun getDatabaseFileName(): String
+
+    abstract override fun getDriver(): BundledSQLiteDriver
+
     @Test
     fun readSQLiteVersion() {
         val connection = getDriver().open(":memory:")
@@ -37,6 +51,35 @@
         }
     }
 
+    @Test
+    fun openWithFullMutexFlag() = runTest {
+        val connection = getDriver().open(
+            fileName = getDatabaseFileName(),
+            flags = SQLITE_OPEN_READWRITE or SQLITE_OPEN_CREATE or SQLITE_OPEN_FULLMUTEX
+        )
+        connection.execSQL("CREATE TABLE Test (col)")
+        // Concurrently use the connection, due to being opened with the full mutex flag, it should
+        // be safe.
+        coroutineScope {
+            repeat(20) { i ->
+                launch(Dispatchers.IO) {
+                    connection.prepare("INSERT INTO Test (col) VALUES (?)").use {
+                        it.bindInt(1, i)
+                        it.step()
+                    }
+                }
+            }
+        }
+        connection.close()
+    }
+
+    @Test
+    fun threadSafeMode() {
+        // Validate bundled SQLite is compiled with SQLITE_THREADSAFE = 2
+        val driver = BundledSQLiteDriver()
+        assertThat(driver.threadingMode).isEqualTo(2)
+    }
+
     companion object {
         const val EXPECTED_SQLITE_VERSION = "3.42.0"
     }
diff --git a/sqlite/integration-tests/driver-conformance-test/src/jvmTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt b/sqlite/integration-tests/driver-conformance-test/src/jvmTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
index 1772073..d134a65 100644
--- a/sqlite/integration-tests/driver-conformance-test/src/jvmTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
+++ b/sqlite/integration-tests/driver-conformance-test/src/jvmTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
@@ -16,14 +16,19 @@
 
 package androidx.sqlite.driver.test
 
-import androidx.sqlite.SQLiteDriver
 import androidx.sqlite.driver.bundled.BundledSQLiteDriver
+import kotlin.io.path.createTempFile
+import kotlin.io.path.pathString
 
 class BundledSQLiteDriverTest : BaseBundledConformanceTest() {
 
     override val driverType = TestDriverType.BUNDLED
 
-    override fun getDriver(): SQLiteDriver {
+    override fun getDatabaseFileName(): String {
+        return createTempFile("test.db").also { it.toFile().deleteOnExit() }.pathString
+    }
+
+    override fun getDriver(): BundledSQLiteDriver {
         return BundledSQLiteDriver()
     }
 }
diff --git a/sqlite/integration-tests/driver-conformance-test/src/nativeTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt b/sqlite/integration-tests/driver-conformance-test/src/nativeTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
index 1772073..e34f6dc 100644
--- a/sqlite/integration-tests/driver-conformance-test/src/nativeTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
+++ b/sqlite/integration-tests/driver-conformance-test/src/nativeTest/kotlin/androidx/sqlite/driver/test/BundledSQLiteDriverTest.kt
@@ -16,14 +16,37 @@
 
 package androidx.sqlite.driver.test
 
-import androidx.sqlite.SQLiteDriver
 import androidx.sqlite.driver.bundled.BundledSQLiteDriver
+import kotlin.random.Random
+import kotlin.test.AfterTest
+import kotlin.test.BeforeTest
+import platform.posix.remove
 
 class BundledSQLiteDriverTest : BaseBundledConformanceTest() {
 
+    private val filename = "/tmp/test-${Random.nextInt()}.db"
+
     override val driverType = TestDriverType.BUNDLED
 
-    override fun getDriver(): SQLiteDriver {
+    override fun getDatabaseFileName(): String = filename
+
+    override fun getDriver(): BundledSQLiteDriver {
         return BundledSQLiteDriver()
     }
+
+    @BeforeTest
+    fun before() {
+        deleteDatabaseFile()
+    }
+
+    @AfterTest
+    fun after() {
+        deleteDatabaseFile()
+    }
+
+    private fun deleteDatabaseFile() {
+        remove(filename)
+        remove("$filename-wal")
+        remove("$filename-shm")
+    }
 }
diff --git a/sqlite/sqlite-bundled/api/api_lint.ignore b/sqlite/sqlite-bundled/api/api_lint.ignore
index 2f12705..499ebfc 100644
--- a/sqlite/sqlite-bundled/api/api_lint.ignore
+++ b/sqlite/sqlite-bundled/api/api_lint.ignore
@@ -1,3 +1,5 @@
 // Baseline format: 1.0
 AcronymName: androidx.sqlite.driver.bundled.BundledSQLiteDriver:
     Acronyms should not be capitalized in class names: was `BundledSQLiteDriver`, should this be `BundledSqLiteDriver`?
+AcronymName: androidx.sqlite.driver.bundled.BundledSQLiteKt:
+    Acronyms should not be capitalized in class names: was `BundledSQLiteKt`, should this be `BundledSqLiteKt`?
diff --git a/sqlite/sqlite-bundled/api/current.txt b/sqlite/sqlite-bundled/api/current.txt
index a0f2650..e7dfc96 100644
--- a/sqlite/sqlite-bundled/api/current.txt
+++ b/sqlite/sqlite-bundled/api/current.txt
@@ -4,6 +4,18 @@
   public final class BundledSQLiteDriver implements androidx.sqlite.SQLiteDriver {
     ctor public BundledSQLiteDriver();
     method public androidx.sqlite.SQLiteConnection open(String fileName);
+    method public androidx.sqlite.SQLiteConnection open(String fileName, int flags);
+  }
+
+  public final class BundledSQLiteKt {
+    field public static final int SQLITE_OPEN_CREATE = 4; // 0x4
+    field public static final int SQLITE_OPEN_FULLMUTEX = 65536; // 0x10000
+    field public static final int SQLITE_OPEN_MEMORY = 128; // 0x80
+    field public static final int SQLITE_OPEN_NOFOLLOW = 16777216; // 0x1000000
+    field public static final int SQLITE_OPEN_NOMUTEX = 32768; // 0x8000
+    field public static final int SQLITE_OPEN_READONLY = 1; // 0x1
+    field public static final int SQLITE_OPEN_READWRITE = 2; // 0x2
+    field public static final int SQLITE_OPEN_URI = 64; // 0x40
   }
 
 }
diff --git a/sqlite/sqlite-bundled/api/restricted_current.txt b/sqlite/sqlite-bundled/api/restricted_current.txt
index a0f2650..da05ac9 100644
--- a/sqlite/sqlite-bundled/api/restricted_current.txt
+++ b/sqlite/sqlite-bundled/api/restricted_current.txt
@@ -3,7 +3,21 @@
 
   public final class BundledSQLiteDriver implements androidx.sqlite.SQLiteDriver {
     ctor public BundledSQLiteDriver();
+    method @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public int getThreadingMode();
     method public androidx.sqlite.SQLiteConnection open(String fileName);
+    method public androidx.sqlite.SQLiteConnection open(String fileName, int flags);
+    property @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public final int threadingMode;
+  }
+
+  public final class BundledSQLiteKt {
+    field public static final int SQLITE_OPEN_CREATE = 4; // 0x4
+    field public static final int SQLITE_OPEN_FULLMUTEX = 65536; // 0x10000
+    field public static final int SQLITE_OPEN_MEMORY = 128; // 0x80
+    field public static final int SQLITE_OPEN_NOFOLLOW = 16777216; // 0x1000000
+    field public static final int SQLITE_OPEN_NOMUTEX = 32768; // 0x8000
+    field public static final int SQLITE_OPEN_READONLY = 1; // 0x1
+    field public static final int SQLITE_OPEN_READWRITE = 2; // 0x2
+    field public static final int SQLITE_OPEN_URI = 64; // 0x40
   }
 
 }
diff --git a/sqlite/sqlite-bundled/src/androidJvmCommonMain/jni/sqlite_bindings.cpp b/sqlite/sqlite-bundled/src/androidJvmCommonMain/jni/sqlite_bindings.cpp
index da884f2..ffc8b89 100644
--- a/sqlite/sqlite-bundled/src/androidJvmCommonMain/jni/sqlite_bindings.cpp
+++ b/sqlite/sqlite-bundled/src/androidJvmCommonMain/jni/sqlite_bindings.cpp
@@ -41,14 +41,21 @@
     return false;
 }
 
+extern "C" JNIEXPORT jint JNICALL
+Java_androidx_sqlite_driver_bundled_BundledSQLiteDriverKt_nativeThreadSafeMode(
+        JNIEnv* env,
+        jclass clazz) {
+    return sqlite3_threadsafe();
+}
+
 extern "C" JNIEXPORT jlong JNICALL
 Java_androidx_sqlite_driver_bundled_BundledSQLiteDriverKt_nativeOpen(
         JNIEnv* env,
         jclass clazz,
-        jstring name) {
+        jstring name,
+        int openFlags) {
     const char *path = env->GetStringUTFChars(name, nullptr);
     sqlite3 *db;
-    int openFlags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE;
     int rc = sqlite3_open_v2(path, &db, openFlags, nullptr);
     env->ReleaseStringUTFChars(name, path);
     if (rc != SQLITE_OK) {
diff --git a/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.androidJvmCommon.kt b/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.androidJvmCommon.kt
index 7708fba..4ec65dc 100644
--- a/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.androidJvmCommon.kt
+++ b/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.androidJvmCommon.kt
@@ -16,6 +16,28 @@
 
 package androidx.sqlite.driver.bundled
 
+import androidx.annotation.IntDef
+import androidx.annotation.RestrictTo
+
+/**
+ * The flags constant that can be used with [BundledSQLiteDriver.open].
+ */
+@IntDef(
+    flag = true,
+    value = [
+        SQLITE_OPEN_READONLY,
+        SQLITE_OPEN_READWRITE,
+        SQLITE_OPEN_CREATE,
+        SQLITE_OPEN_URI,
+        SQLITE_OPEN_MEMORY,
+        SQLITE_OPEN_NOMUTEX,
+        SQLITE_OPEN_FULLMUTEX,
+        SQLITE_OPEN_NOFOLLOW
+    ])
+@Retention(AnnotationRetention.SOURCE)
+@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
+actual annotation class OpenFlag
+
 internal object ResultCode {
     const val SQLITE_MISUSE = 21
 }
diff --git a/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.androidJvmCommon.kt b/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.androidJvmCommon.kt
index 22b981a..1f1bebd 100644
--- a/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.androidJvmCommon.kt
+++ b/sqlite/sqlite-bundled/src/androidJvmCommonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.androidJvmCommon.kt
@@ -17,6 +17,7 @@
 
 package androidx.sqlite.driver.bundled
 
+import androidx.annotation.RestrictTo
 import androidx.sqlite.SQLiteConnection
 import androidx.sqlite.SQLiteDriver
 
@@ -26,8 +27,31 @@
  */
 // TODO(b/313895287): Explore usability of @FastNative and @CriticalNative for the external functions.
 actual class BundledSQLiteDriver : SQLiteDriver {
+
+    /**
+     * The thread safe mode SQLite was compiled with.
+     *
+     * See also [SQLite In Multi-Threaded Applications](https://www.sqlite.org/threadsafe.html)
+     */
+    @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX)
+    actual val threadingMode: Int
+        get() = nativeThreadSafeMode()
+
     override fun open(fileName: String): SQLiteConnection {
-        val address = nativeOpen(fileName)
+        return open(fileName, SQLITE_OPEN_READWRITE or SQLITE_OPEN_CREATE)
+    }
+
+    /**
+     * Opens a new database connection.
+     *
+     * See also [Opening A New Database Connection](https://www.sqlite.org/c3ref/open.html)
+     *
+     * @param fileName Name of the database file.
+     * @param flags Connection open flags.
+     * @return the database connection.
+     */
+    actual fun open(fileName: String, @OpenFlag flags: Int): SQLiteConnection {
+        val address = nativeOpen(fileName, flags)
         return BundledSQLiteConnection(address)
     }
 
@@ -38,4 +62,5 @@
     }
 }
 
-private external fun nativeOpen(name: String): Long
+private external fun nativeThreadSafeMode(): Int
+private external fun nativeOpen(name: String, openFlags: Int): Long
diff --git a/sqlite/sqlite-bundled/src/commonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.kt b/sqlite/sqlite-bundled/src/commonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.kt
new file mode 100644
index 0000000..5229a68
--- /dev/null
+++ b/sqlite/sqlite-bundled/src/commonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.kt
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package androidx.sqlite.driver.bundled
+
+import androidx.annotation.IntDef
+import androidx.annotation.RestrictTo
+
+const val SQLITE_OPEN_READONLY = 0x00000001
+const val SQLITE_OPEN_READWRITE = 0x00000002
+const val SQLITE_OPEN_CREATE = 0x00000004
+const val SQLITE_OPEN_URI = 0x00000040
+const val SQLITE_OPEN_MEMORY = 0x00000080
+const val SQLITE_OPEN_NOMUTEX = 0x00008000
+const val SQLITE_OPEN_FULLMUTEX = 0x00010000
+const val SQLITE_OPEN_NOFOLLOW = 0x01000000
+
+/**
+ * The flags constant that can be used with [BundledSQLiteDriver.open].
+ */
+@IntDef(
+    flag = true,
+    value = [
+        SQLITE_OPEN_READONLY,
+        SQLITE_OPEN_READWRITE,
+        SQLITE_OPEN_CREATE,
+        SQLITE_OPEN_URI,
+        SQLITE_OPEN_MEMORY,
+        SQLITE_OPEN_NOMUTEX,
+        SQLITE_OPEN_FULLMUTEX,
+        SQLITE_OPEN_NOFOLLOW
+    ])
+@Retention(AnnotationRetention.SOURCE)
+@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
+expect annotation class OpenFlag()
diff --git a/sqlite/sqlite-bundled/src/commonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.kt b/sqlite/sqlite-bundled/src/commonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.kt
index 86e016cf..3d64cfc 100644
--- a/sqlite/sqlite-bundled/src/commonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.kt
+++ b/sqlite/sqlite-bundled/src/commonMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLiteDriver.kt
@@ -16,10 +16,32 @@
 
 package androidx.sqlite.driver.bundled
 
+import androidx.annotation.RestrictTo
+import androidx.sqlite.SQLiteConnection
 import androidx.sqlite.SQLiteDriver
 
 /**
  * A [SQLiteDriver] that uses a bundled version of SQLite included as a native component of this
  * library.
  */
-expect class BundledSQLiteDriver() : SQLiteDriver
+expect class BundledSQLiteDriver() : SQLiteDriver {
+
+    /**
+     * The thread safe mode SQLite was compiled with.
+     *
+     * See also [SQLite In Multi-Threaded Applications](https://www.sqlite.org/threadsafe.html)
+     */
+    @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX)
+    val threadingMode: Int
+
+    /**
+     * Opens a new database connection.
+     *
+     * See also [Opening A New Database Connection](https://www.sqlite.org/c3ref/open.html)
+     *
+     * @param fileName Name of the database file.
+     * @param flags Connection open flags.
+     * @return the database connection.
+     */
+    fun open(fileName: String, @OpenFlag flags: Int): SQLiteConnection
+}
diff --git a/sqlite/sqlite-bundled/src/nativeMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.nativeCommon.kt b/sqlite/sqlite-bundled/src/nativeMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.nativeCommon.kt
new file mode 100644
index 0000000..d3d1d5d
--- /dev/null
+++ b/sqlite/sqlite-bundled/src/nativeMain/kotlin/androidx/sqlite/driver/bundled/BundledSQLite.nativeCommon.kt
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package androidx.sqlite.driver.bundled
+
+actual typealias OpenFlag = androidx.sqlite.driver.OpenFlag
diff --git a/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLite.kt b/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLite.kt
index 6a7177f..9cd765d 100644
--- a/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLite.kt
+++ b/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLite.kt
@@ -18,13 +18,43 @@
 
 package androidx.sqlite.driver
 
+import androidx.annotation.IntDef
+import androidx.annotation.RestrictTo
 import cnames.structs.sqlite3
 import kotlinx.cinterop.CPointer
 import kotlinx.cinterop.UShortVar
 import kotlinx.cinterop.reinterpret
 import kotlinx.cinterop.toKStringFromUtf16
+import sqlite3.SQLITE_OPEN_CREATE
+import sqlite3.SQLITE_OPEN_FULLMUTEX
+import sqlite3.SQLITE_OPEN_MEMORY
+import sqlite3.SQLITE_OPEN_NOFOLLOW
+import sqlite3.SQLITE_OPEN_NOMUTEX
+import sqlite3.SQLITE_OPEN_READONLY
+import sqlite3.SQLITE_OPEN_READWRITE
+import sqlite3.SQLITE_OPEN_URI
 import sqlite3.sqlite3_errmsg16
 
+/**
+ * The flags constant that can be used with [NativeSQLiteDriver.open].
+ */
+@IntDef(
+    flag = true,
+    value = [
+        SQLITE_OPEN_READONLY,
+        SQLITE_OPEN_READWRITE,
+        SQLITE_OPEN_CREATE,
+        SQLITE_OPEN_URI,
+        SQLITE_OPEN_MEMORY,
+        SQLITE_OPEN_NOMUTEX,
+        SQLITE_OPEN_FULLMUTEX,
+        SQLITE_OPEN_NOFOLLOW
+    ],
+)
+@Retention(AnnotationRetention.SOURCE)
+@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
+annotation class OpenFlag
+
 internal fun CPointer<sqlite3>.getErrorMsg(): String? {
     return sqlite3_errmsg16(this)?.reinterpret<UShortVar>()?.toKStringFromUtf16()
 }
diff --git a/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLiteDriver.kt b/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLiteDriver.kt
index 4bd45ed..42d331c 100644
--- a/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLiteDriver.kt
+++ b/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/NativeSQLiteDriver.kt
@@ -16,6 +16,7 @@
 
 package androidx.sqlite.driver
 
+import androidx.annotation.RestrictTo
 import androidx.sqlite.SQLiteConnection
 import androidx.sqlite.SQLiteDriver
 import androidx.sqlite.throwSQLiteException
@@ -28,6 +29,7 @@
 import sqlite3.SQLITE_OPEN_CREATE
 import sqlite3.SQLITE_OPEN_READWRITE
 import sqlite3.sqlite3_open_v2
+import sqlite3.sqlite3_threadsafe
 
 /**
  * A [SQLiteDriver] that uses a version of SQLite included with the host operating system.
@@ -35,16 +37,38 @@
  * Usage of this driver expects that `libsqlite` can be found in the shared library path.
  */
 // TODO:
-//    (b/307917398) more open flags
 //    (b/304295573) busy handler registering
 @OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
 class NativeSQLiteDriver : SQLiteDriver {
-    override fun open(fileName: String): SQLiteConnection = memScoped {
+
+    /**
+     * The thread safe mode SQLite was compiled with.
+     *
+     * See also [SQLite In Multi-Threaded Applications](https://www.sqlite.org/threadsafe.html)
+     */
+    @get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX)
+    val threadingMode: Int
+        get() = sqlite3_threadsafe()
+
+    override fun open(fileName: String): SQLiteConnection {
+        return open(fileName, SQLITE_OPEN_READWRITE or SQLITE_OPEN_CREATE)
+    }
+
+    /**
+     * Opens a new database connection.
+     *
+     * See also [Opening A New Database Connection](https://www.sqlite.org/c3ref/open.html)
+     *
+     * @param fileName Name of the database file.
+     * @param flags Connection open flags.
+     * @return the database connection.
+     */
+    fun open(fileName: String, @OpenFlag flags: Int): SQLiteConnection = memScoped {
         val dbPointer = allocPointerTo<sqlite3>()
         val resultCode = sqlite3_open_v2(
             filename = fileName,
             ppDb = dbPointer.ptr,
-            flags = SQLITE_OPEN_READWRITE or SQLITE_OPEN_CREATE,
+            flags = flags,
             zVfs = null
         )
         if (resultCode != SQLITE_OK) {
diff --git a/wear/compose/compose-foundation/src/main/java/androidx/wear/compose/foundation/SwipeToReveal.kt b/wear/compose/compose-foundation/src/main/java/androidx/wear/compose/foundation/SwipeToReveal.kt
index 00474ee..ba4c233 100644
--- a/wear/compose/compose-foundation/src/main/java/androidx/wear/compose/foundation/SwipeToReveal.kt
+++ b/wear/compose/compose-foundation/src/main/java/androidx/wear/compose/foundation/SwipeToReveal.kt
@@ -54,7 +54,7 @@
 import androidx.compose.ui.input.nestedscroll.NestedScrollConnection
 import androidx.compose.ui.input.nestedscroll.NestedScrollDispatcher
 import androidx.compose.ui.input.nestedscroll.nestedScroll
-import androidx.compose.ui.platform.LocalDensity
+import androidx.compose.ui.layout.layout
 import androidx.compose.ui.unit.Density
 import androidx.compose.ui.unit.IntOffset
 import androidx.compose.ui.unit.dp
@@ -440,35 +440,28 @@
             // connection applied before this modifier consume the scroll/fling events.
             .nestedScroll(noOpNestedScrollConnection, state.nestedScrollDispatcher)
     ) {
-        val swipeCompleted by remember {
-            derivedStateOf { state.currentValue == RevealValue.Revealed }
+        val swipeCompleted = state.currentValue == RevealValue.Revealed
+        val lastActionIsSecondary = state.lastActionType == RevealActionType.SecondaryAction
+        val isWithinRevealOffset by remember {
+            derivedStateOf {
+                abs(state.offset) <= revealScope.revealOffset
+            }
         }
-        val density = LocalDensity.current
-
-        // Total width available for the slot(s) based on the current swipe offset
-        val availableWidth = if (state.offset.isNaN()) 0.dp
-        else with(density) { abs(state.offset).toDp() }
-        val offsetWidth = with(density) { revealScope.revealOffset.toDp() }
 
         // Determines whether the secondary action will be visible based on the current
         // reveal offset
-        val showSecondaryAction by remember {
-            derivedStateOf {
-                abs(state.offset) <= revealScope.revealOffset ||
-                    state.lastActionType == RevealActionType.SecondaryAction
-            }
-        }
+        val showSecondaryAction = isWithinRevealOffset || lastActionIsSecondary
+
         // Determines whether both primary and secondary action should be hidden, usually the case
         // when secondary action is clicked
-        val hideActions by remember {
-            derivedStateOf {
-                abs(state.offset) >= revealScope.revealOffset &&
-                    state.lastActionType == RevealActionType.SecondaryAction
-            }
+        val hideActions = !isWithinRevealOffset && lastActionIsSecondary
+
+        val shouldDrawActions by remember {
+            derivedStateOf { abs(state.offset) > 0 }
         }
 
         // Draw the buttons only when offset is greater than zero.
-        if (abs(state.offset) > 0) {
+        if (shouldDrawActions) {
             Box(
                 modifier = Modifier.matchParentSize(),
                 contentAlignment = AbsoluteAlignment.CenterRight
@@ -533,7 +526,20 @@
                         Row(
                             modifier = Modifier
                                 .graphicsLayer { alpha = revealedContentAlpha.value }
-                                .width(if (hideActions) offsetWidth else availableWidth),
+                                .layout { measurable, constraints ->
+                                    val placeable = measurable.measure(
+                                        constraints.copy(
+                                            maxWidth = if (hideActions) {
+                                                revealScope.revealOffset
+                                            } else {
+                                                abs(state.offset)
+                                            }.roundToInt()
+                                        )
+                                    )
+                                    layout(placeable.width, placeable.height) {
+                                        placeable.placeRelative(0, 0)
+                                    }
+                                },
                             horizontalArrangement = Arrangement.Absolute.Right
                         ) {
                             // weight cannot be 0 so remove the composable when weight becomes 0
diff --git a/wear/compose/compose-material3/api/current.txt b/wear/compose/compose-material3/api/current.txt
index 5e780d6..720e423 100644
--- a/wear/compose/compose-material3/api/current.txt
+++ b/wear/compose/compose-material3/api/current.txt
@@ -65,15 +65,15 @@
   }
 
   public final class ButtonKt {
-    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
-    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
-    method @androidx.compose.runtime.Composable public static void CompactButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? label);
-    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
-    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void CompactButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? label);
+    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
   }
 
   @androidx.compose.runtime.Immutable public final class CardColors {
diff --git a/wear/compose/compose-material3/api/restricted_current.txt b/wear/compose/compose-material3/api/restricted_current.txt
index 5e780d6..720e423 100644
--- a/wear/compose/compose-material3/api/restricted_current.txt
+++ b/wear/compose/compose-material3/api/restricted_current.txt
@@ -65,15 +65,15 @@
   }
 
   public final class ButtonKt {
-    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
-    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
-    method @androidx.compose.runtime.Composable public static void CompactButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? label);
-    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
-    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
-    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void Button(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void ChildButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void CompactButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? label);
+    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void FilledTonalButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
+    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> content);
+    method @androidx.compose.runtime.Composable public static void OutlinedButton(kotlin.jvm.functions.Function0<kotlin.Unit> onClick, optional androidx.compose.ui.Modifier modifier, optional kotlin.jvm.functions.Function0<kotlin.Unit>? onLongClick, optional String? onLongClickLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit>? secondaryLabel, optional kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.BoxScope,kotlin.Unit>? icon, optional boolean enabled, optional androidx.compose.ui.graphics.Shape shape, optional androidx.wear.compose.material3.ButtonColors colors, optional androidx.compose.foundation.BorderStroke? border, optional androidx.compose.foundation.layout.PaddingValues contentPadding, optional androidx.compose.foundation.interaction.MutableInteractionSource? interactionSource, kotlin.jvm.functions.Function1<? super androidx.compose.foundation.layout.RowScope,kotlin.Unit> label);
   }
 
   @androidx.compose.runtime.Immutable public final class CardColors {
diff --git a/wear/compose/compose-material3/benchmark/src/androidTest/java/androidx/wear/compose/material3/benchmark/CardBenchmark.kt b/wear/compose/compose-material3/benchmark/src/androidTest/java/androidx/wear/compose/material3/benchmark/CardBenchmark.kt
index 879e338..1e24a83 100644
--- a/wear/compose/compose-material3/benchmark/src/androidTest/java/androidx/wear/compose/material3/benchmark/CardBenchmark.kt
+++ b/wear/compose/compose-material3/benchmark/src/androidTest/java/androidx/wear/compose/material3/benchmark/CardBenchmark.kt
@@ -21,10 +21,12 @@
 import androidx.compose.testutils.benchmark.ComposeBenchmarkRule
 import androidx.compose.testutils.benchmark.benchmarkToFirstPixel
 import androidx.test.filters.MediumTest
+import androidx.wear.compose.material3.AppCard
 import androidx.wear.compose.material3.Card
 import androidx.wear.compose.material3.MaterialTheme
 import androidx.wear.compose.material3.OutlinedCard
 import androidx.wear.compose.material3.Text
+import androidx.wear.compose.material3.TitleCard
 import org.junit.Rule
 import org.junit.Test
 import org.junit.runner.RunWith
@@ -58,6 +60,22 @@
         when (type) {
             CardType.Card ->
                 Card(onClick = { /* do something */ }) { Text("Card") }
+
+            CardType.AppCard ->
+                AppCard(
+                    onClick = { /* do something */ },
+                    appName = { Text("App name") },
+                    title = { Text("Card title") },
+                ) { Text("App Card") }
+
+            CardType.TitleCard ->
+                TitleCard(
+                    onClick = { /* do something */ },
+                    title = { Text("Title card") },
+                ) {
+                    Text("Title Card")
+                }
+
             CardType.OutlinedCard ->
                 OutlinedCard(onClick = { /* do something */ }) { Text("Outlined Card") }
         }
@@ -72,5 +90,5 @@
 }
 
 enum class CardType {
-    Card, OutlinedCard
+    Card, AppCard, TitleCard, OutlinedCard
 }
diff --git a/wear/compose/compose-material3/integration-tests/build.gradle b/wear/compose/compose-material3/integration-tests/build.gradle
index 3aa8b91..19bacd4 100644
--- a/wear/compose/compose-material3/integration-tests/build.gradle
+++ b/wear/compose/compose-material3/integration-tests/build.gradle
@@ -44,7 +44,7 @@
     implementation(project(':wear:compose:compose-material3'))
     implementation(project(':wear:compose:compose-material3-samples'))
     implementation(project(':wear:compose:integration-tests:demos:common'))
-    implementation(project(':compose:material:material-icons-core'))
+    implementation("androidx.compose.material:material-icons-core:1.6.7")
 }
 
 androidx {
diff --git a/wear/compose/compose-material3/integration-tests/src/main/java/androidx/wear/compose/material3/demos/ButtonDemo.kt b/wear/compose/compose-material3/integration-tests/src/main/java/androidx/wear/compose/material3/demos/ButtonDemo.kt
index 0518e7a..7cf93a0 100644
--- a/wear/compose/compose-material3/integration-tests/src/main/java/androidx/wear/compose/material3/demos/ButtonDemo.kt
+++ b/wear/compose/compose-material3/integration-tests/src/main/java/androidx/wear/compose/material3/demos/ButtonDemo.kt
@@ -16,6 +16,8 @@
 
 package androidx.wear.compose.material3.demos
 
+import android.content.Context
+import android.widget.Toast
 import androidx.compose.foundation.layout.BoxScope
 import androidx.compose.foundation.layout.RowScope
 import androidx.compose.foundation.layout.fillMaxSize
@@ -25,6 +27,7 @@
 import androidx.compose.runtime.Composable
 import androidx.compose.ui.Alignment
 import androidx.compose.ui.Modifier
+import androidx.compose.ui.platform.LocalContext
 import androidx.compose.ui.text.style.TextOverflow
 import androidx.wear.compose.foundation.lazy.ScalingLazyColumn
 import androidx.wear.compose.material3.Button
@@ -38,11 +41,16 @@
 import androidx.wear.compose.material3.OutlinedButton
 import androidx.wear.compose.material3.Text
 import androidx.wear.compose.material3.samples.ButtonSample
+import androidx.wear.compose.material3.samples.ButtonWithOnLongClick
 import androidx.wear.compose.material3.samples.ChildButtonSample
+import androidx.wear.compose.material3.samples.ChildButtonWithOnLongClick
 import androidx.wear.compose.material3.samples.CompactButtonSample
+import androidx.wear.compose.material3.samples.CompactButtonWithOnLongClick
 import androidx.wear.compose.material3.samples.FilledTonalButtonSample
+import androidx.wear.compose.material3.samples.FilledTonalButtonWithOnLongClick
 import androidx.wear.compose.material3.samples.FilledTonalCompactButtonSample
 import androidx.wear.compose.material3.samples.OutlinedButtonSample
+import androidx.wear.compose.material3.samples.OutlinedButtonWithOnLongClick
 import androidx.wear.compose.material3.samples.OutlinedCompactButtonSample
 import androidx.wear.compose.material3.samples.SimpleButtonSample
 import androidx.wear.compose.material3.samples.SimpleChildButtonSample
@@ -51,6 +59,7 @@
 
 @Composable
 fun ButtonDemo() {
+    val context = LocalContext.current
     ScalingLazyColumn(
         modifier = Modifier.fillMaxSize(),
         horizontalAlignment = Alignment.CenterHorizontally,
@@ -64,6 +73,11 @@
             SimpleButtonSample()
         }
         item {
+            ButtonWithOnLongClick({ showOnClickToast(context) }) {
+                showOnLongClickToast(context)
+            }
+        }
+        item {
             Button(
                 onClick = { /* Do something */ },
                 label = { Text("Button") },
@@ -98,6 +112,7 @@
 
 @Composable
 fun FilledTonalButtonDemo() {
+    val context = LocalContext.current
     ScalingLazyColumn(
         modifier = Modifier.fillMaxSize(),
         horizontalAlignment = Alignment.CenterHorizontally,
@@ -111,6 +126,11 @@
             SimpleFilledTonalButtonSample()
         }
         item {
+            FilledTonalButtonWithOnLongClick({ showOnClickToast(context) }) {
+                showOnLongClickToast(context)
+            }
+        }
+        item {
             FilledTonalButton(
                 onClick = { /* Do something */ },
                 label = { Text("Filled Tonal Button") },
@@ -145,6 +165,7 @@
 
 @Composable
 fun OutlinedButtonDemo() {
+    val context = LocalContext.current
     ScalingLazyColumn(
         modifier = Modifier.fillMaxSize(),
         horizontalAlignment = Alignment.CenterHorizontally,
@@ -158,6 +179,11 @@
             SimpleOutlinedButtonSample()
         }
         item {
+            OutlinedButtonWithOnLongClick({ showOnClickToast(context) }) {
+                showOnLongClickToast(context)
+            }
+        }
+        item {
             OutlinedButton(
                 onClick = { /* Do something */ },
                 label = { Text("Outlined Button") },
@@ -192,6 +218,7 @@
 
 @Composable
 fun ChildButtonDemo() {
+    val context = LocalContext.current
     ScalingLazyColumn(
         modifier = Modifier.fillMaxSize(),
         horizontalAlignment = Alignment.CenterHorizontally,
@@ -205,6 +232,11 @@
             SimpleChildButtonSample()
         }
         item {
+            ChildButtonWithOnLongClick({ showOnClickToast(context) }) {
+                showOnLongClickToast(context)
+            }
+        }
+        item {
             ChildButton(
                 onClick = { /* Do something */ },
                 label = { Text("Child Button") },
@@ -239,6 +271,7 @@
 
 @Composable
 fun CompactButtonDemo() {
+    val context = LocalContext.current
     ScalingLazyColumn(
         modifier = Modifier.fillMaxSize(),
         horizontalAlignment = Alignment.CenterHorizontally,
@@ -252,6 +285,11 @@
             CompactButtonSample()
         }
         item {
+            CompactButtonWithOnLongClick({ showOnClickToast(context) }) {
+                showOnLongClickToast(context)
+            }
+        }
+        item {
             FilledTonalCompactButtonSample()
         }
         item {
@@ -483,3 +521,11 @@
         colors = colors,
     )
 }
+
+private fun showOnClickToast(context: Context) {
+    Toast.makeText(context, "onClick triggered", Toast.LENGTH_SHORT).show()
+}
+
+private fun showOnLongClickToast(context: Context) {
+    Toast.makeText(context, "onLongClick triggered", Toast.LENGTH_SHORT).show()
+}
diff --git a/wear/compose/compose-material3/samples/src/main/java/androidx/wear/compose/material3/samples/ButtonSample.kt b/wear/compose/compose-material3/samples/src/main/java/androidx/wear/compose/material3/samples/ButtonSample.kt
index 3f0279d..9d8c610 100644
--- a/wear/compose/compose-material3/samples/src/main/java/androidx/wear/compose/material3/samples/ButtonSample.kt
+++ b/wear/compose/compose-material3/samples/src/main/java/androidx/wear/compose/material3/samples/ButtonSample.kt
@@ -44,6 +44,20 @@
 
 @Sampled
 @Composable
+fun ButtonWithOnLongClick(
+    onClickHandler: () -> Unit,
+    onLongClickHandler: () -> Unit
+) {
+    Button(
+        onClick = onClickHandler,
+        onLongClick = onLongClickHandler,
+        onLongClickLabel = "OnLongClick action",
+        label = { Text("With onLongClick") }
+    )
+}
+
+@Sampled
+@Composable
 fun ButtonSample() {
     Button(
         onClick = { /* Do something */ },
@@ -70,6 +84,20 @@
 
 @Sampled
 @Composable
+fun FilledTonalButtonWithOnLongClick(
+    onClickHandler: () -> Unit,
+    onLongClickHandler: () -> Unit
+) {
+    FilledTonalButton(
+        onClick = onClickHandler,
+        onLongClick = onLongClickHandler,
+        onLongClickLabel = "OnLongClick action",
+        label = { Text("With onLongClick") }
+    )
+}
+
+@Sampled
+@Composable
 fun FilledTonalButtonSample() {
     FilledTonalButton(
         onClick = { /* Do something */ },
@@ -96,6 +124,20 @@
 
 @Sampled
 @Composable
+fun OutlinedButtonWithOnLongClick(
+    onClickHandler: () -> Unit,
+    onLongClickHandler: () -> Unit
+) {
+    OutlinedButton(
+        onClick = onClickHandler,
+        onLongClick = onLongClickHandler,
+        onLongClickLabel = "OnLongClick action",
+        label = { Text("With onLongClick") }
+    )
+}
+
+@Sampled
+@Composable
 fun OutlinedButtonSample() {
     OutlinedButton(
         onClick = { /* Do something */ },
@@ -122,6 +164,20 @@
 
 @Sampled
 @Composable
+fun ChildButtonWithOnLongClick(
+    onClickHandler: () -> Unit,
+    onLongClickHandler: () -> Unit
+) {
+    ChildButton(
+        onClick = onClickHandler,
+        onLongClick = onLongClickHandler,
+        onLongClickLabel = "OnLongClick action",
+        label = { Text("With onLongClick") }
+    )
+}
+
+@Sampled
+@Composable
 fun ChildButtonSample() {
     ChildButton(
         onClick = { /* Do something */ },
@@ -156,6 +212,20 @@
 
 @Sampled
 @Composable
+fun CompactButtonWithOnLongClick(
+    onClickHandler: () -> Unit,
+    onLongClickHandler: () -> Unit
+) {
+    CompactButton(
+        onClick = onClickHandler,
+        onLongClick = onLongClickHandler,
+        onLongClickLabel = "OnLongClick action",
+        label = { Text("With onLongClick") }
+    )
+}
+
+@Sampled
+@Composable
 fun FilledTonalCompactButtonSample() {
     CompactButton(
         onClick = { /* Do something */ },
diff --git a/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/ButtonTest.kt b/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/ButtonTest.kt
index 224e22e..5b43b7e 100644
--- a/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/ButtonTest.kt
+++ b/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/ButtonTest.kt
@@ -50,10 +50,12 @@
 import androidx.compose.ui.test.getUnclippedBoundsInRoot
 import androidx.compose.ui.test.junit4.ComposeContentTestRule
 import androidx.compose.ui.test.junit4.createComposeRule
+import androidx.compose.ui.test.longClick
 import androidx.compose.ui.test.onNodeWithContentDescription
 import androidx.compose.ui.test.onNodeWithTag
 import androidx.compose.ui.test.onRoot
 import androidx.compose.ui.test.performClick
+import androidx.compose.ui.test.performTouchInput
 import androidx.compose.ui.text.TextStyle
 import androidx.compose.ui.unit.dp
 import androidx.compose.ui.unit.height
@@ -161,6 +163,47 @@
     }
 
     @Test
+    fun responds_to_long_click_when_enabled() {
+        var longClicked = false
+
+        rule.setContentWithTheme {
+            Button(
+                onClick = { /* Do nothing */ },
+                onLongClick = { longClicked = true },
+                enabled = true,
+                modifier = Modifier.testTag(TEST_TAG)
+            ) {
+                Text("Test")
+            }
+        }
+
+        rule.onNodeWithTag(TEST_TAG).performTouchInput {
+            longClick()
+        }
+
+        rule.runOnIdle {
+            assertEquals(true, longClicked)
+        }
+    }
+
+    @Test
+    fun onLongClickLabel_includedInSemantics() {
+        val testLabel = "Long click action"
+
+        rule.setContentWithTheme {
+            Button(
+                modifier = Modifier.testTag(TEST_TAG),
+                onClick = {},
+                onLongClick = {},
+                onLongClickLabel = testLabel) {
+                Text("Button")
+            }
+        }
+
+        rule.onNodeWithTag(TEST_TAG).assertOnLongClickLabelMatches(testLabel)
+    }
+
+    @Test
     fun does_not_respond_to_click_when_disabled() {
         var clicked = false
 
@@ -182,6 +225,30 @@
     }
 
     @Test
+    fun does_not_respond_to_long_click_when_disabled() {
+        var longClicked = false
+
+        rule.setContentWithTheme {
+            Button(
+                onClick = { /* Do nothing */ },
+                onLongClick = { longClicked = true },
+                enabled = false,
+                modifier = Modifier.testTag(TEST_TAG)
+            ) {
+                Text("Test")
+            }
+        }
+
+        rule.onNodeWithTag(TEST_TAG).performTouchInput {
+            longClick()
+        }
+
+        rule.runOnIdle {
+            assertEquals(false, longClicked)
+        }
+    }
+
+    @Test
     fun has_role_button() {
         rule.setContentWithTheme {
             Button(
diff --git a/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/Material3Test.kt b/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/Material3Test.kt
index f1ce6bc..f8b5ba8 100644
--- a/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/Material3Test.kt
+++ b/wear/compose/compose-material3/src/androidTest/kotlin/androidx/wear/compose/material3/Material3Test.kt
@@ -45,7 +45,9 @@
 import androidx.compose.ui.platform.testTag
 import androidx.compose.ui.semantics.SemanticsActions
 import androidx.compose.ui.semantics.SemanticsNode
+import androidx.compose.ui.test.SemanticsMatcher
 import androidx.compose.ui.test.SemanticsNodeInteraction
+import androidx.compose.ui.test.assert
 import androidx.compose.ui.test.assertHeightIsEqualTo
 import androidx.compose.ui.test.assertTouchHeightIsEqualTo
 import androidx.compose.ui.test.assertTouchWidthIsEqualTo
@@ -269,6 +271,13 @@
     return this
 }
 
+internal fun SemanticsNodeInteraction.assertOnLongClickLabelMatches(expectedValue: String):
+    SemanticsNodeInteraction {
+    return assert(SemanticsMatcher("onLongClickLabel = '$expectedValue'") {
+        it.config.getOrElseNullable(SemanticsActions.OnLongClick) { null }?.label == expectedValue
+    })
+}
+
 private val SemanticsNode.unclippedBoundsInRoot: Rect
     get() {
         return if (layoutInfo.isPlaced) {
diff --git a/wear/compose/compose-material3/src/main/java/androidx/wear/compose/material3/Button.kt b/wear/compose/compose-material3/src/main/java/androidx/wear/compose/material3/Button.kt
index 11f0b66..53a96b4 100644
--- a/wear/compose/compose-material3/src/main/java/androidx/wear/compose/material3/Button.kt
+++ b/wear/compose/compose-material3/src/main/java/androidx/wear/compose/material3/Button.kt
@@ -17,8 +17,9 @@
 package androidx.wear.compose.material3
 
 import androidx.compose.foundation.BorderStroke
+import androidx.compose.foundation.ExperimentalFoundationApi
 import androidx.compose.foundation.border
-import androidx.compose.foundation.clickable
+import androidx.compose.foundation.combinedClickable
 import androidx.compose.foundation.interaction.Interaction
 import androidx.compose.foundation.interaction.MutableInteractionSource
 import androidx.compose.foundation.layout.Box
@@ -90,8 +91,14 @@
  * Example of a [Button]:
  * @sample androidx.wear.compose.material3.samples.SimpleButtonSample
  *
+ * Example of a [Button] with onLongClick:
+ * @sample androidx.wear.compose.material3.samples.ButtonWithOnLongClick
+ *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param enabled Controls the enabled state of the button. When `false`, this button will not
  * be clickable
  * @param shape Defines the button's shape. It is strongly recommended to use the default as this
@@ -112,6 +119,8 @@
 fun Button(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     enabled: Boolean = true,
     shape: Shape = ButtonDefaults.shape,
     colors: ButtonColors = ButtonDefaults.buttonColors(),
@@ -122,6 +131,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     enabled = enabled,
     shape = shape,
     labelFont = FilledButtonTokens.LabelFont.value,
@@ -161,8 +172,14 @@
  * Example of a [FilledTonalButton]:
  * @sample androidx.wear.compose.material3.samples.SimpleFilledTonalButtonSample
  *
+ * Example of a [FilledTonalButton] with onLongClick:
+ * @sample androidx.wear.compose.material3.samples.FilledTonalButtonWithOnLongClick
+ *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param enabled Controls the enabled state of the button. When `false`, this button will not
  * be clickable
  * @param shape Defines the button's shape. It is strongly recommended to use the default as this
@@ -183,6 +200,8 @@
 fun FilledTonalButton(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     enabled: Boolean = true,
     shape: Shape = ButtonDefaults.shape,
     colors: ButtonColors = ButtonDefaults.filledTonalButtonColors(),
@@ -193,6 +212,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     enabled = enabled,
     shape = shape,
     labelFont = FilledTonalButtonTokens.LabelFont.value,
@@ -231,8 +252,14 @@
  * Example of an [OutlinedButton]:
  * @sample androidx.wear.compose.material3.samples.SimpleOutlinedButtonSample
  *
+ * Example of a [OutlinedButton] with onLongClick:
+ * @sample androidx.wear.compose.material3.samples.OutlinedButtonWithOnLongClick
+ *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param enabled Controls the enabled state of the button. When `false`, this button will not
  * be clickable
  * @param shape Defines the button's shape. It is strongly recommended to use the default as this
@@ -253,6 +280,8 @@
 fun OutlinedButton(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     enabled: Boolean = true,
     shape: Shape = ButtonDefaults.shape,
     colors: ButtonColors = ButtonDefaults.outlinedButtonColors(),
@@ -263,6 +292,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     enabled = enabled,
     shape = shape,
     labelFont = OutlinedButtonTokens.LabelFont.value,
@@ -301,8 +332,14 @@
  * Example of a [ChildButton]:
  * @sample androidx.wear.compose.material3.samples.SimpleChildButtonSample
  *
+ * Example of a [ChildButton] with onLongClick:
+ * @sample androidx.wear.compose.material3.samples.ChildButtonWithOnLongClick
+ *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param enabled Controls the enabled state of the button. When `false`, this button will not
  * be clickable
  * @param shape Defines the button's shape. It is strongly recommended to use the default as this
@@ -323,6 +360,8 @@
 fun ChildButton(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     enabled: Boolean = true,
     shape: Shape = ButtonDefaults.shape,
     colors: ButtonColors = ButtonDefaults.childButtonColors(),
@@ -333,6 +372,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     enabled = enabled,
     shape = shape,
     labelFont = OutlinedButtonTokens.LabelFont.value,
@@ -377,6 +418,9 @@
  *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param secondaryLabel A slot for providing the button's secondary label. The contents are
  * expected to be text which is "start" aligned if there is an icon preset and
  * "start" or "center" aligned if not.
@@ -406,6 +450,8 @@
 fun Button(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     secondaryLabel: (@Composable RowScope.() -> Unit)? = null,
     icon: (@Composable BoxScope.() -> Unit)? = null,
     enabled: Boolean = true,
@@ -418,6 +464,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     secondaryLabel = secondaryLabel,
     icon = icon,
     enabled = enabled,
@@ -470,6 +518,9 @@
  *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param secondaryLabel A slot for providing the button's secondary label. The contents are
  * expected to be text which is "start" aligned if there is an icon preset and
  * "start" or "center" aligned if not.
@@ -498,6 +549,8 @@
 fun FilledTonalButton(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     secondaryLabel: (@Composable RowScope.() -> Unit)? = null,
     icon: (@Composable BoxScope.() -> Unit)? = null,
     enabled: Boolean = true,
@@ -510,6 +563,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     secondaryLabel = secondaryLabel,
     icon = icon,
     enabled = enabled,
@@ -557,6 +612,9 @@
  *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param secondaryLabel A slot for providing the button's secondary label. The contents are
  * expected to be text which is "start" aligned if there is an icon preset and
  * "start" or "center" aligned if not.
@@ -585,6 +643,8 @@
 fun OutlinedButton(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     secondaryLabel: (@Composable RowScope.() -> Unit)? = null,
     icon: (@Composable BoxScope.() -> Unit)? = null,
     enabled: Boolean = true,
@@ -597,6 +657,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     secondaryLabel = secondaryLabel,
     icon = icon,
     enabled = enabled,
@@ -643,6 +705,9 @@
  *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param secondaryLabel A slot for providing the button's secondary label. The contents are
  * expected to be text which is "start" aligned if there is an icon preset and
  * "start" or "center" aligned if not.
@@ -671,6 +736,8 @@
 fun ChildButton(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     secondaryLabel: (@Composable RowScope.() -> Unit)? = null,
     icon: (@Composable BoxScope.() -> Unit)? = null,
     enabled: Boolean = true,
@@ -683,6 +750,8 @@
 ) = ButtonImpl(
     onClick = onClick,
     modifier = modifier.buttonSizeModifier(),
+    onLongClick = onLongClick,
+    onLongClickLabel = onLongClickLabel,
     secondaryLabel = secondaryLabel,
     icon = icon,
     enabled = enabled,
@@ -748,8 +817,14 @@
  * [ButtonDefaults.outlinedButtonBorder] and [ButtonDefaults.outlinedButtonColors]
  * @sample androidx.wear.compose.material3.samples.OutlinedCompactButtonSample
  *
+ * Example of a [CompactButton] with onLongClick:
+ * @sample androidx.wear.compose.material3.samples.CompactButtonWithOnLongClick
+ *
  * @param onClick Will be called when the user clicks the button
  * @param modifier Modifier to be applied to the button
+ * @param onLongClick Called when this button is long clicked (long-pressed). When this callback
+ * is set, [onLongClickLabel] should be set as well.
+ * @param onLongClickLabel Semantic / accessibility label for the [onLongClick] action.
  * @param label A slot for providing the button's main label. The contents are expected to be text
  * which is "start" aligned if there is an icon preset and "center" aligned if not.
  * @param icon A slot for providing the button's icon. The contents are expected to be a
@@ -774,6 +849,8 @@
 fun CompactButton(
     onClick: () -> Unit,
     modifier: Modifier = Modifier,
+    onLongClick: (() -> Unit)? = null,
+    onLongClickLabel: String? = null,
     icon: (@Composable BoxScope.() -> Unit)? = null,
     enabled: Boolean = true,
     shape: Shape = ButtonDefaults.compactButtonShape,
@@ -789,6 +866,8 @@
             modifier = modifier
                 .compactButtonModifier()
                 .padding(ButtonDefaults.CompactButtonTapTargetPadding),
+            onLongClick = onLongClick,
+            onLongClickLabel = onLongClickLabel,
             secondaryLabel = null,
             icon = icon,
             enabled = enabled,
@@ -810,6 +889,8 @@
                 .compactButtonModifier()
                 .width(ButtonDefaults.IconOnlyCompactButtonWidth)
                 .padding(ButtonDefaults.CompactButtonTapTargetPadding),
+            onLongClick = onLongClick,
+            onLongClickLabel = onLongClickLabel,
             enabled = enabled,
             shape = shape,
             labelFont = CompactButtonTokens.LabelFont.value,
@@ -820,9 +901,11 @@
         ) {
             // Use a box to fill and center align the icon into the single slot of the
             // Button
-            Box(modifier = Modifier
-                .fillMaxSize()
-                .wrapContentSize(align = Alignment.Center)) {
+            Box(
+                modifier = Modifier
+                    .fillMaxSize()
+                    .wrapContentSize(align = Alignment.Center)
+            ) {
                 if (icon != null) {
                     icon()
                 }
@@ -1483,10 +1566,13 @@
  * Button with label. This allows to use the token values for
  * individual buttons instead of relying on common values.
  */
+@OptIn(ExperimentalFoundationApi::class)
 @Composable
 private fun ButtonImpl(
     onClick: () -> Unit,
     modifier: Modifier,
+    onLongClick: (() -> Unit)?,
+    onLongClickLabel: String?,
     enabled: Boolean,
     shape: Shape,
     labelFont: TextStyle,
@@ -1509,9 +1595,11 @@
                 painter = colors.containerPainter(enabled = enabled),
                 contentScale = ContentScale.Crop
             )
-            .clickable(
+            .combinedClickable(
                 enabled = enabled,
                 onClick = onClick,
+                onLongClick = onLongClick,
+                onLongClickLabel = onLongClickLabel,
                 role = Role.Button,
                 indication = rippleOrFallbackImplementation(),
                 interactionSource = interactionSource,
@@ -1533,6 +1621,8 @@
 private fun ButtonImpl(
     onClick: () -> Unit,
     modifier: Modifier,
+    onLongClick: (() -> Unit)?,
+    onLongClickLabel: String?,
     secondaryLabel: (@Composable RowScope.() -> Unit)?,
     icon: (@Composable BoxScope.() -> Unit)?,
     enabled: Boolean,
@@ -1548,6 +1638,8 @@
     ButtonImpl(
         onClick = onClick,
         modifier = modifier,
+        onLongClick = onLongClick,
+        onLongClickLabel = onLongClickLabel,
         enabled = enabled,
         shape = shape,
         labelFont = labelFont,
diff --git a/wear/compose/integration-tests/demos/build.gradle b/wear/compose/integration-tests/demos/build.gradle
index 759cef8..6235d9a 100644
--- a/wear/compose/integration-tests/demos/build.gradle
+++ b/wear/compose/integration-tests/demos/build.gradle
@@ -55,7 +55,7 @@
     implementation(project(":compose:ui:ui"))
     implementation(project(":compose:ui:ui-util"))
     implementation(project(":compose:ui:ui:ui-samples"))
-    implementation(project(":compose:material:material-icons-core"))
+    implementation("androidx.compose.material:material-icons-core:1.6.7")
 
     implementation(project(':wear:compose:compose-foundation'))
     implementation(project(":wear:compose:compose-foundation-samples"))